packages <- c("tidyverse", "caret", "randomForest", "e1071", "xgboost", "data.table","car","ROSE", "dplyr", "corrplot")
install_if_missing <- function(pkg) {
if (!requireNamespace(pkg, quietly = TRUE)) {
install.packages(pkg, dependencies = TRUE)
}
}
sapply(packages, install_if_missing)
## $tidyverse
## NULL
##
## $caret
## NULL
##
## $randomForest
## NULL
##
## $e1071
## NULL
##
## $xgboost
## NULL
##
## $data.table
## NULL
##
## $car
## NULL
##
## $ROSE
## NULL
##
## $dplyr
## NULL
##
## $corrplot
## NULL
sapply(packages, library, character.only = TRUE)
## Warning: package 'tidyverse' was built under R version 4.4.2
## Warning: package 'readr' was built under R version 4.4.2
## Warning: package 'lubridate' was built under R version 4.4.2
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.4 ✔ readr 2.1.5
## ✔ forcats 1.0.0 ✔ stringr 1.5.1
## ✔ ggplot2 3.5.1 ✔ tibble 3.2.1
## ✔ lubridate 1.9.4 ✔ tidyr 1.3.1
## ✔ purrr 1.0.2
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
## Warning: package 'caret' was built under R version 4.4.2
## Loading required package: lattice
##
## Attaching package: 'caret'
##
## The following object is masked from 'package:purrr':
##
## lift
## Warning: package 'randomForest' was built under R version 4.4.2
## randomForest 4.7-1.2
## Type rfNews() to see new features/changes/bug fixes.
##
## Attaching package: 'randomForest'
##
## The following object is masked from 'package:dplyr':
##
## combine
##
## The following object is masked from 'package:ggplot2':
##
## margin
## Warning: package 'e1071' was built under R version 4.4.2
## Warning: package 'xgboost' was built under R version 4.4.2
##
## Attaching package: 'xgboost'
##
## The following object is masked from 'package:dplyr':
##
## slice
## Warning: package 'data.table' was built under R version 4.4.2
##
## Attaching package: 'data.table'
##
## The following objects are masked from 'package:lubridate':
##
## hour, isoweek, mday, minute, month, quarter, second, wday, week,
## yday, year
##
## The following objects are masked from 'package:dplyr':
##
## between, first, last
##
## The following object is masked from 'package:purrr':
##
## transpose
## Warning: package 'car' was built under R version 4.4.2
## Loading required package: carData
## Warning: package 'carData' was built under R version 4.4.2
##
## Attaching package: 'car'
##
## The following object is masked from 'package:dplyr':
##
## recode
##
## The following object is masked from 'package:purrr':
##
## some
## Warning: package 'ROSE' was built under R version 4.4.2
## Loaded ROSE 0.0-4
## Warning: package 'corrplot' was built under R version 4.4.2
## corrplot 0.95 loaded
## $tidyverse
## [1] "lubridate" "forcats" "stringr" "dplyr" "purrr" "readr"
## [7] "tidyr" "tibble" "ggplot2" "tidyverse" "stats" "graphics"
## [13] "grDevices" "utils" "datasets" "methods" "base"
##
## $caret
## [1] "caret" "lattice" "lubridate" "forcats" "stringr" "dplyr"
## [7] "purrr" "readr" "tidyr" "tibble" "ggplot2" "tidyverse"
## [13] "stats" "graphics" "grDevices" "utils" "datasets" "methods"
## [19] "base"
##
## $randomForest
## [1] "randomForest" "caret" "lattice" "lubridate" "forcats"
## [6] "stringr" "dplyr" "purrr" "readr" "tidyr"
## [11] "tibble" "ggplot2" "tidyverse" "stats" "graphics"
## [16] "grDevices" "utils" "datasets" "methods" "base"
##
## $e1071
## [1] "e1071" "randomForest" "caret" "lattice" "lubridate"
## [6] "forcats" "stringr" "dplyr" "purrr" "readr"
## [11] "tidyr" "tibble" "ggplot2" "tidyverse" "stats"
## [16] "graphics" "grDevices" "utils" "datasets" "methods"
## [21] "base"
##
## $xgboost
## [1] "xgboost" "e1071" "randomForest" "caret" "lattice"
## [6] "lubridate" "forcats" "stringr" "dplyr" "purrr"
## [11] "readr" "tidyr" "tibble" "ggplot2" "tidyverse"
## [16] "stats" "graphics" "grDevices" "utils" "datasets"
## [21] "methods" "base"
##
## $data.table
## [1] "data.table" "xgboost" "e1071" "randomForest" "caret"
## [6] "lattice" "lubridate" "forcats" "stringr" "dplyr"
## [11] "purrr" "readr" "tidyr" "tibble" "ggplot2"
## [16] "tidyverse" "stats" "graphics" "grDevices" "utils"
## [21] "datasets" "methods" "base"
##
## $car
## [1] "car" "carData" "data.table" "xgboost" "e1071"
## [6] "randomForest" "caret" "lattice" "lubridate" "forcats"
## [11] "stringr" "dplyr" "purrr" "readr" "tidyr"
## [16] "tibble" "ggplot2" "tidyverse" "stats" "graphics"
## [21] "grDevices" "utils" "datasets" "methods" "base"
##
## $ROSE
## [1] "ROSE" "car" "carData" "data.table" "xgboost"
## [6] "e1071" "randomForest" "caret" "lattice" "lubridate"
## [11] "forcats" "stringr" "dplyr" "purrr" "readr"
## [16] "tidyr" "tibble" "ggplot2" "tidyverse" "stats"
## [21] "graphics" "grDevices" "utils" "datasets" "methods"
## [26] "base"
##
## $dplyr
## [1] "ROSE" "car" "carData" "data.table" "xgboost"
## [6] "e1071" "randomForest" "caret" "lattice" "lubridate"
## [11] "forcats" "stringr" "dplyr" "purrr" "readr"
## [16] "tidyr" "tibble" "ggplot2" "tidyverse" "stats"
## [21] "graphics" "grDevices" "utils" "datasets" "methods"
## [26] "base"
##
## $corrplot
## [1] "corrplot" "ROSE" "car" "carData" "data.table"
## [6] "xgboost" "e1071" "randomForest" "caret" "lattice"
## [11] "lubridate" "forcats" "stringr" "dplyr" "purrr"
## [16] "readr" "tidyr" "tibble" "ggplot2" "tidyverse"
## [21] "stats" "graphics" "grDevices" "utils" "datasets"
## [26] "methods" "base"
library(tidyverse)
library(caret)
library(randomForest)
library(e1071)
library(xgboost)
library(corrplot)
library(data.table)
library(car)
library(ROSE)
library(dplyr)
data <- read.csv("C:/Users/Public/bank-additional-full.csv", sep = ";")
data
## age job marital education default housing loan
## 1 56 housemaid married basic.4y no no no
## 2 57 services married high.school unknown no no
## 3 37 services married high.school no yes no
## 4 40 admin. married basic.6y no no no
## 5 56 services married high.school no no yes
## 6 45 services married basic.9y unknown no no
## 7 59 admin. married professional.course no no no
## 8 41 blue-collar married unknown unknown no no
## 9 24 technician single professional.course no yes no
## 10 25 services single high.school no yes no
## 11 41 blue-collar married unknown unknown no no
## 12 25 services single high.school no yes no
## 13 29 blue-collar single high.school no no yes
## 14 57 housemaid divorced basic.4y no yes no
## 15 35 blue-collar married basic.6y no yes no
## 16 54 retired married basic.9y unknown yes yes
## 17 35 blue-collar married basic.6y no yes no
## 18 46 blue-collar married basic.6y unknown yes yes
## 19 50 blue-collar married basic.9y no yes yes
## 20 39 management single basic.9y unknown no no
## 21 30 unemployed married high.school no no no
## 22 55 blue-collar married basic.4y unknown yes no
## 23 55 retired single high.school no yes no
## 24 41 technician single high.school no yes no
## 25 37 admin. married high.school no yes no
## 26 35 technician married university.degree no no yes
## 27 59 technician married unknown no yes no
## 28 39 self-employed married basic.9y unknown no no
## 29 54 technician single university.degree unknown no no
## 30 55 unknown married university.degree unknown unknown unknown
## 31 46 admin. married unknown no no no
## 32 59 technician married unknown no yes no
## 33 49 blue-collar married unknown no no no
## 34 54 management married basic.4y unknown yes no
## 35 54 blue-collar divorced basic.4y no no no
## 36 55 unknown married basic.4y unknown yes no
## 37 34 services married high.school no no no
## 38 52 technician married basic.9y no yes no
## 39 41 admin. married university.degree no yes no
## 40 56 technician married basic.4y no yes no
## 41 58 management unknown university.degree no yes no
## 42 32 entrepreneur married high.school no yes no
## 43 38 admin. single professional.course no no no
## 44 57 admin. married university.degree no no yes
## 45 44 admin. married university.degree unknown yes no
## 46 42 technician single professional.course unknown no no
## 47 57 admin. married university.degree no yes yes
## 48 40 blue-collar married basic.9y no no yes
## 49 35 admin. married university.degree no yes no
## 50 45 blue-collar married basic.9y no yes no
## 51 54 admin. married high.school no no no
## 52 39 housemaid married basic.4y no no yes
## 53 60 admin. married high.school no no no
## 54 53 admin. single professional.course no no no
## 55 55 blue-collar married basic.4y unknown no no
## 56 55 technician married professional.course unknown yes no
## 57 50 management married university.degree unknown no yes
## 58 45 services married high.school unknown yes no
## 59 55 unemployed married professional.course unknown yes yes
## 60 25 technician single university.degree no yes no
## 61 47 entrepreneur married university.degree unknown no no
## 62 51 blue-collar married basic.9y no yes no
## 63 42 blue-collar married basic.6y unknown yes no
## 64 42 blue-collar married basic.6y unknown no no
## 65 48 admin. married high.school no no no
## 66 37 admin. married university.degree no no no
## 67 44 blue-collar single basic.9y no yes no
## 68 33 admin. married unknown no yes no
## 69 56 admin. married basic.9y no yes no
## 70 44 blue-collar single basic.4y unknown yes yes
## 71 41 management married basic.6y no no no
## 72 44 management divorced university.degree no yes no
## 73 47 admin. married university.degree unknown yes no
## 74 57 unknown married unknown unknown no no
## 75 37 admin. married university.degree unknown yes no
## 76 41 blue-collar divorced basic.4y unknown yes no
## 77 55 technician married university.degree no no no
## 78 33 services married high.school unknown yes no
## 79 55 management married unknown unknown yes no
## 80 42 blue-collar married basic.9y unknown no no
## 81 50 blue-collar married basic.4y unknown yes no
## 82 51 blue-collar married basic.4y unknown unknown unknown
## 83 38 admin. married high.school unknown no no
## 84 49 entrepreneur married university.degree unknown yes no
## 85 38 technician single university.degree no no yes
## 86 31 admin. divorced high.school no no no
## 87 41 management married basic.6y no no no
## 88 39 admin. married university.degree no yes yes
## 89 49 technician married basic.9y no no no
## 90 34 admin. married high.school no yes no
## 91 35 admin. married university.degree no yes no
## 92 57 unknown married unknown unknown yes no
## 93 60 admin. married unknown unknown no yes
## 94 33 unemployed married basic.9y no no no
## 95 42 blue-collar married basic.6y no no yes
## 96 45 services married professional.course no yes no
## 97 42 management married university.degree no no no
## 98 53 admin. divorced university.degree unknown no no
## 99 37 technician single professional.course no no no
## 100 44 blue-collar married basic.6y no no no
## 101 54 services married unknown no yes no
## 102 49 blue-collar married basic.4y no no no
## 103 54 services married unknown no no no
## 104 52 admin. divorced university.degree no no no
## 105 52 admin. divorced university.degree no no no
## 106 43 services single high.school unknown no no
## 107 34 housemaid married basic.6y no yes no
## 108 35 admin. married high.school no yes no
## 109 42 entrepreneur married unknown unknown yes no
## 110 43 technician married unknown unknown yes yes
## 111 60 retired divorced university.degree unknown no no
## 112 58 unemployed married basic.4y unknown no no
## 113 35 services divorced high.school no yes no
## 114 55 blue-collar married basic.9y unknown yes no
## 115 37 management married university.degree no no no
## 116 36 blue-collar married high.school no no no
## 117 52 admin. divorced university.degree no no no
## 118 57 blue-collar divorced unknown unknown yes no
## 119 56 admin. married unknown no yes no
## 120 48 blue-collar divorced basic.4y unknown yes no
## 121 40 blue-collar married high.school unknown yes no
## 122 49 blue-collar divorced high.school no no no
## 123 41 services married high.school no no no
## 124 45 technician married high.school no yes no
## 125 32 admin. married university.degree no yes yes
## 126 42 admin. married university.degree no no yes
## 127 50 admin. married basic.6y no no no
## 128 31 technician divorced professional.course no yes yes
## 129 56 retired married basic.4y no yes no
## 130 41 technician married professional.course unknown yes no
## 131 37 blue-collar married basic.6y no yes yes
## 132 41 technician married professional.course unknown no no
## 133 35 blue-collar married unknown no yes no
## 134 37 blue-collar married basic.6y no yes no
## 135 52 management married university.degree no no no
## 136 39 management divorced university.degree no no no
## 137 39 housemaid married basic.4y unknown no no
## 138 56 blue-collar married basic.4y unknown no no
## 139 34 services married high.school no yes no
## 140 45 blue-collar married basic.9y unknown yes no
## 141 43 unemployed single university.degree no yes no
## 142 56 management married unknown no yes no
## 143 39 management married university.degree no yes no
## 144 53 blue-collar married basic.4y no yes no
## 145 38 unknown divorced high.school unknown yes no
## 146 42 blue-collar married basic.4y unknown yes no
## 147 42 blue-collar married basic.4y unknown no no
## 148 35 admin. single high.school no yes no
## 149 40 admin. married university.degree unknown yes no
## 150 51 blue-collar married basic.4y no yes no
## 151 60 blue-collar married basic.9y unknown no no
## 152 56 entrepreneur married unknown unknown yes no
## 153 39 services divorced high.school unknown yes no
## 154 56 entrepreneur married unknown unknown no no
## 155 40 blue-collar married unknown no yes yes
## 156 36 blue-collar married basic.9y no yes yes
## 157 51 blue-collar married unknown unknown yes no
## 158 51 blue-collar married unknown unknown no no
## 159 43 technician single professional.course no yes no
## 160 59 services married high.school no no no
## 161 24 management single university.degree no yes no
## 162 37 blue-collar single basic.9y unknown yes yes
## 163 40 blue-collar married basic.9y unknown no no
## 164 42 blue-collar married basic.9y unknown no no
## 165 39 services divorced high.school unknown no no
## 166 37 entrepreneur married basic.6y no no no
## 167 38 services married high.school no yes yes
## 168 56 admin. divorced unknown unknown no no
## 169 40 blue-collar married unknown no no no
## 170 54 management divorced university.degree no yes no
## 171 43 blue-collar married high.school unknown no yes
## 172 36 services married high.school unknown no no
## 173 45 technician married university.degree no yes yes
## 174 42 admin. single university.degree unknown no no
## 175 43 services married high.school no no no
## 176 46 management married basic.9y no no no
## 177 44 services married high.school no yes yes
## 178 51 admin. single basic.6y no no no
## 179 28 services married high.school no yes no
## 180 37 blue-collar married basic.9y no no no
## 181 34 technician married high.school no no no
## 182 46 blue-collar married basic.6y unknown yes no
## 183 42 blue-collar married basic.9y no yes yes
## 184 36 admin. married university.degree no yes no
## 185 54 blue-collar married basic.4y unknown no no
## 186 57 management married university.degree no no no
## 187 51 technician married basic.6y unknown no no
## 188 54 retired married high.school unknown no no
## 189 49 blue-collar married basic.4y unknown no no
## 190 34 admin. married university.degree no yes no
## 191 41 technician married professional.course no no no
## 192 38 blue-collar single basic.9y no yes no
## 193 45 management divorced university.degree no no no
## 194 42 technician married university.degree no no no
## 195 34 blue-collar single basic.9y unknown yes no
## 196 48 blue-collar married basic.4y no yes no
## 197 37 admin. married high.school unknown yes no
## 198 34 blue-collar single basic.9y unknown no no
## 199 40 admin. married basic.9y unknown yes no
## 200 43 blue-collar married basic.6y no yes no
## 201 33 services married high.school no no no
## 202 32 services single basic.6y no no no
## 203 39 blue-collar married high.school no yes no
## 204 43 admin. married unknown no no no
## 205 44 blue-collar married basic.9y no yes no
## 206 35 student single university.degree unknown no no
## 207 35 student single university.degree unknown yes yes
## 208 35 unemployed married professional.course no no no
## 209 36 services single basic.4y no no no
## 210 35 student single university.degree unknown yes no
## 211 36 student single basic.9y no yes no
## 212 55 housemaid divorced university.degree no no no
## 213 59 admin. married university.degree no no no
## 214 57 retired married unknown unknown no no
## 215 39 blue-collar married professional.course unknown yes no
## 216 39 housemaid married basic.4y unknown yes no
## 217 30 blue-collar single unknown no yes no
## 218 30 blue-collar single unknown no yes yes
## 219 50 housemaid married basic.4y unknown no no
## 220 40 services married high.school no no no
## 221 35 admin. married high.school no yes no
## 222 43 technician married unknown unknown no no
## 223 36 services single basic.6y unknown yes no
## 224 46 technician married basic.4y unknown yes no
## 225 40 technician married basic.9y no no no
## 226 58 retired married university.degree no no no
## 227 42 technician married university.degree no no no
## 228 35 admin. single university.degree no no no
## 229 43 retired married basic.4y unknown no no
## 230 45 blue-collar married basic.4y no yes yes
## 231 39 admin. married professional.course no yes no
## 232 50 services divorced professional.course no yes no
## 233 32 management divorced basic.4y unknown yes no
## 234 39 admin. married high.school unknown no no
## 235 52 self-employed married university.degree unknown no no
## 236 44 admin. married professional.course no yes no
## 237 56 blue-collar married basic.4y no no no
## 238 48 admin. married high.school no no no
## 239 33 services married high.school unknown no yes
## 240 43 management married university.degree unknown no yes
## 241 57 retired married high.school no no no
## 242 36 technician single professional.course no no no
## 243 34 management married university.degree no yes no
## 244 34 services single basic.9y no no no
## 245 30 technician married university.degree unknown no no
## 246 33 services divorced unknown no no no
## 247 32 technician single professional.course no no no
## 248 36 technician single high.school no yes no
## 249 36 blue-collar single high.school no no yes
## 250 33 services single high.school no no no
## 251 40 technician divorced professional.course no no no
## 252 41 blue-collar married basic.4y no yes no
## 253 51 services married basic.6y no yes no
## 254 36 technician married professional.course no yes no
## 255 28 services married unknown no no no
## 256 53 services married high.school no yes yes
## 257 58 blue-collar married basic.9y unknown yes no
## 258 45 management married basic.9y no no yes
## 259 43 technician married unknown no yes no
## 260 33 admin. married high.school no no yes
## 261 33 admin. married high.school no no yes
## 262 27 blue-collar single basic.6y no unknown unknown
## 263 42 technician married high.school no no no
## 264 43 admin. divorced basic.9y no no no
## 265 42 admin. married university.degree no no no
## 266 27 blue-collar single basic.6y no no no
## 267 34 self-employed single university.degree no yes no
## 268 31 student single university.degree unknown no no
## 269 54 management divorced university.degree no no no
## 270 40 self-employed married basic.4y unknown no no
## 271 52 unemployed married high.school unknown yes no
## 272 47 management divorced university.degree no no no
## 273 49 housemaid married basic.9y unknown no no
## 274 32 admin. single high.school no no no
## 275 49 housemaid single high.school unknown yes yes
## 276 50 blue-collar married basic.9y unknown no no
## 277 34 services married high.school no no no
## 278 55 blue-collar married basic.4y unknown no no
## 279 47 technician single basic.9y no no no
## 280 51 retired married professional.course no no no
## 281 47 blue-collar married basic.6y no no no
## 282 56 technician married basic.4y no yes no
## 283 53 admin. married basic.9y no no no
## 284 36 blue-collar married basic.9y no yes no
## 285 42 blue-collar divorced basic.9y no yes no
## 286 44 blue-collar divorced basic.6y no no no
## 287 39 housemaid married basic.9y no yes no
## 288 37 admin. single high.school no yes yes
## 289 60 blue-collar married unknown unknown yes no
## 290 36 services married high.school no no no
## 291 42 management divorced university.degree no yes no
## 292 31 admin. married high.school no yes yes
## 293 53 technician divorced professional.course unknown no yes
## 294 45 blue-collar married basic.4y no yes no
## 295 37 technician single professional.course no yes no
## 296 47 self-employed married professional.course no no no
## 297 49 blue-collar divorced high.school no no yes
## 298 36 admin. married university.degree no yes no
## 299 35 services divorced high.school no no no
## 300 38 unknown married unknown unknown no no
## 301 38 services single high.school unknown no no
## 302 50 blue-collar divorced high.school unknown no yes
## 303 59 retired married professional.course unknown no no
## 304 43 unknown married unknown no yes no
## 305 42 admin. married high.school no yes no
## 306 40 admin. married basic.6y unknown yes no
## 307 46 blue-collar married unknown unknown no no
## 308 57 housemaid divorced basic.4y no yes yes
## 309 42 admin. married university.degree no yes no
## 310 41 blue-collar married basic.4y no yes no
## 311 54 management divorced university.degree no yes no
## 312 27 admin. single university.degree no no no
## 313 36 admin. married high.school no no no
## 314 58 blue-collar married professional.course unknown yes no
## 315 40 management married university.degree unknown yes no
## 316 34 admin. single basic.9y unknown no no
## 317 33 admin. divorced high.school no no no
## 318 56 retired married basic.6y no no no
## 319 42 blue-collar married basic.9y no no no
## 320 43 services married high.school no yes no
## 321 54 management single basic.9y no yes no
## 322 53 admin. single basic.6y no yes yes
## 323 42 technician single unknown no no no
## 324 40 services married basic.6y unknown no no
## 325 54 technician married professional.course no yes yes
## 326 40 housemaid single professional.course no no no
## 327 26 admin. single university.degree no yes no
## 328 33 admin. married high.school no no no
## 329 35 blue-collar married basic.9y unknown no no
## 330 36 admin. married high.school no no no
## 331 29 services single high.school no yes no
## 332 36 blue-collar married basic.9y no yes no
## 333 35 management married high.school no yes no
## 334 50 self-employed single university.degree no no yes
## 335 46 services married high.school unknown yes no
## 336 49 entrepreneur married high.school no yes no
## 337 42 technician single professional.course unknown yes no
## 338 36 blue-collar single high.school no yes yes
## 339 55 blue-collar married basic.9y unknown yes no
## 340 41 management married university.degree unknown no no
## 341 57 management married professional.course unknown yes no
## 342 32 services single high.school no yes no
## 343 49 admin. married basic.9y no no no
## 344 57 unknown married unknown unknown yes no
## 345 58 blue-collar divorced basic.4y no yes no
## 346 52 technician married high.school no yes no
## 347 50 services divorced professional.course no no no
## 348 41 blue-collar single basic.9y unknown yes no
## 349 33 entrepreneur married university.degree no yes no
## 350 57 blue-collar married basic.4y no no no
## 351 48 blue-collar married basic.6y unknown no no
## 352 55 technician married professional.course no no no
## 353 38 management married university.degree no no no
## 354 38 services married high.school no yes no
## 355 53 admin. married university.degree no yes no
## 356 43 unemployed single university.degree no no no
## 357 36 blue-collar single high.school no no no
## 358 32 blue-collar married basic.9y no no no
## 359 33 services married basic.4y no no no
## 360 58 entrepreneur married basic.4y no yes no
## 361 40 unemployed divorced high.school unknown no no
## 362 57 management married university.degree no yes no
## 363 45 technician married high.school no yes no
## 364 42 blue-collar married basic.4y unknown yes no
## 365 46 admin. married university.degree no yes no
## 366 36 technician married university.degree no no no
## 367 41 self-employed married high.school no yes no
## 368 57 admin. divorced basic.9y no no no
## 369 49 blue-collar married basic.9y unknown yes no
## 370 56 management divorced high.school no no no
## 371 37 blue-collar married basic.9y no no no
## 372 37 blue-collar married basic.9y no no yes
## 373 46 admin. single high.school no yes no
## 374 22 blue-collar single basic.9y no yes no
## 375 43 services married high.school no no no
## 376 49 blue-collar married unknown no no no
## 377 41 technician married basic.6y no yes no
## 378 38 admin. single university.degree no no no
## 379 33 admin. married basic.9y no no no
## 380 49 admin. married university.degree no yes yes
## 381 30 blue-collar single unknown no no no
## 382 33 admin. married basic.9y no yes no
## 383 34 management single university.degree no no no
## 384 30 student single unknown unknown no no
## 385 59 management married basic.4y unknown yes yes
## 386 59 management married basic.4y unknown unknown unknown
## 387 41 self-employed married university.degree no no no
## 388 48 housemaid married basic.6y unknown yes yes
## 389 28 unknown single unknown unknown yes yes
## 390 44 services married high.school no yes no
## 391 59 retired unknown university.degree unknown no no
## 392 50 management married high.school unknown no no
## 393 35 admin. married university.degree no no no
## 394 42 admin. married high.school no no no
## 395 45 admin. married basic.9y no no no
## 396 36 technician married professional.course no no no
## 397 56 services married high.school unknown no no
## 398 29 blue-collar divorced basic.4y no no no
## 399 41 self-employed married university.degree no yes yes
## 400 42 blue-collar married basic.9y unknown no no
## 401 52 services single high.school no no no
## 402 48 services married high.school unknown unknown unknown
## 403 31 blue-collar married high.school unknown yes no
## 404 43 unemployed married university.degree unknown yes no
## 405 36 blue-collar married basic.4y unknown no no
## 406 42 entrepreneur married university.degree no yes no
## 407 52 services divorced basic.6y no no no
## 408 39 admin. married high.school no yes no
## 409 36 services married high.school no no yes
## 410 42 blue-collar married basic.9y unknown yes no
## 411 41 admin. married high.school no no no
## 412 55 technician married basic.4y no no yes
## 413 30 blue-collar married basic.9y no no no
## 414 57 retired unknown basic.4y no no no
## 415 45 entrepreneur married basic.4y unknown yes no
## 416 51 blue-collar married basic.4y unknown yes yes
## 417 39 self-employed single basic.9y unknown yes yes
## 418 47 admin. married high.school unknown no no
## 419 27 services married high.school no yes no
## 420 34 technician single university.degree no yes no
## 421 57 blue-collar married basic.4y unknown yes no
## 422 43 entrepreneur married basic.4y no no no
## 423 49 blue-collar married basic.4y unknown no no
## 424 39 management married university.degree unknown no no
## 425 38 blue-collar married basic.4y unknown yes no
## 426 49 blue-collar married basic.9y no no no
## 427 58 management married basic.6y no no no
## 428 43 technician married professional.course no yes no
## 429 50 unknown married unknown unknown yes no
## 430 31 services married high.school unknown no no
## 431 43 self-employed divorced university.degree no no no
## 432 43 self-employed married basic.9y unknown no no
## 433 30 self-employed single university.degree no yes no
## 434 27 services single professional.course no yes yes
## 435 51 services married unknown unknown no no
## 436 37 technician married professional.course no yes no
## 437 46 housemaid married basic.9y no yes no
## 438 35 blue-collar married professional.course no no no
## 439 47 admin. divorced university.degree no no no
## 440 46 management married unknown no yes no
## 441 40 technician married professional.course unknown no yes
## 442 26 housemaid married university.degree no no no
## 443 32 blue-collar divorced basic.9y unknown no no
## 444 45 management married university.degree no yes no
## 445 34 admin. married basic.9y no no no
## 446 47 blue-collar married unknown unknown no no
## 447 42 technician married professional.course no no no
## 448 57 technician married basic.4y unknown no yes
## 449 57 technician married basic.4y unknown no no
## 450 38 blue-collar married basic.4y no no yes
## 451 57 technician married basic.4y unknown no no
## 452 28 student single basic.9y unknown yes no
## 453 60 management married university.degree no no no
## 454 48 admin. married university.degree no yes no
## 455 47 technician married professional.course no yes no
## 456 40 admin. married high.school no no no
## 457 51 management married professional.course unknown yes no
## 458 48 unemployed single basic.4y no yes no
## 459 54 housemaid married basic.4y no no no
## 460 40 blue-collar married basic.6y no no yes
## 461 44 admin. single basic.9y unknown no no
## 462 42 technician divorced high.school no no no
## 463 52 self-employed married university.degree no yes no
## 464 31 blue-collar single basic.9y no yes no
## 465 32 services married high.school no no no
## 466 44 admin. married high.school no yes yes
## 467 39 management married basic.6y unknown no no
## 468 57 management married professional.course unknown yes no
## 469 52 admin. married basic.4y no yes no
## 470 42 management married university.degree no no no
## 471 42 technician single professional.course unknown unknown unknown
## 472 43 management married professional.course no yes no
## 473 31 admin. divorced high.school no no no
## 474 29 admin. married university.degree unknown yes no
## 475 57 blue-collar divorced basic.4y no no no
## 476 44 blue-collar married basic.9y unknown no no
## 477 59 unknown married unknown unknown no no
## 478 39 blue-collar married basic.4y unknown no no
## 479 57 retired married university.degree no no no
## 480 41 management married unknown unknown no no
## 481 37 technician single high.school unknown no yes
## 482 38 services married high.school no yes no
## 483 42 retired married basic.4y no no no
## 484 49 unknown married unknown unknown yes no
## 485 54 management married basic.6y unknown yes yes
## 486 36 admin. married university.degree no unknown unknown
## 487 32 admin. single university.degree unknown no no
## 488 35 technician married professional.course no yes no
## 489 45 housemaid married professional.course unknown no no
## 490 56 technician married unknown no yes no
## 491 34 technician married university.degree no yes no
## 492 41 unemployed married basic.9y unknown no no
## 493 41 services married basic.9y no no no
## 494 36 blue-collar married basic.9y unknown no no
## 495 32 admin. single university.degree unknown unknown unknown
## 496 31 services married high.school unknown unknown unknown
## 497 38 technician married professional.course no yes no
## 498 35 admin. divorced university.degree unknown yes no
## 499 53 admin. married professional.course no yes no
## 500 51 admin. married basic.6y unknown yes no
## 501 56 entrepreneur married university.degree unknown no no
## 502 33 admin. married basic.9y no unknown unknown
## 503 33 admin. married basic.9y no no no
## 504 51 services divorced high.school unknown yes no
## 505 39 services married high.school unknown yes no
## 506 45 entrepreneur married university.degree no no no
## 507 40 technician single university.degree no no no
## 508 60 unknown single unknown unknown yes no
## 509 33 technician married university.degree no yes no
## 510 47 blue-collar married high.school unknown yes no
## 511 48 blue-collar married basic.4y no no no
## 512 43 entrepreneur married high.school no no no
## 513 37 management married university.degree no yes no
## 514 50 services married basic.9y no yes yes
## 515 59 entrepreneur married high.school no yes no
## 516 32 technician married unknown unknown yes no
## 517 42 housemaid single basic.4y unknown yes no
## 518 52 blue-collar married basic.4y no no no
## 519 42 blue-collar married unknown unknown no no
## 520 42 admin. married unknown no no no
## 521 40 management married basic.9y unknown unknown unknown
## 522 38 blue-collar married basic.9y no no no
## 523 39 blue-collar married basic.6y no yes no
## 524 39 blue-collar married basic.6y no no no
## 525 38 admin. married high.school no no no
## 526 47 admin. single unknown unknown yes no
## 527 30 services single high.school no no no
## 528 38 admin. divorced high.school no yes yes
## 529 39 technician divorced university.degree no no no
## 530 44 admin. married high.school no no no
## 531 36 admin. married high.school no no no
## 532 41 services married high.school unknown yes yes
## 533 41 blue-collar married basic.6y no no no
## 534 35 blue-collar married basic.9y no no no
## 535 41 technician married high.school no no no
## 536 36 services married high.school unknown no no
## 537 35 admin. single high.school no yes yes
## 538 33 blue-collar single basic.4y unknown no no
## 539 38 admin. single basic.6y unknown no no
## 540 33 self-employed married university.degree no no no
## 541 55 self-employed married unknown unknown no no
## 542 36 blue-collar single basic.9y unknown no no
## 543 57 technician married professional.course unknown no yes
## 544 32 entrepreneur single university.degree no yes no
## 545 30 self-employed single high.school no yes no
## 546 43 admin. married professional.course no yes yes
## 547 46 admin. married university.degree no no no
## 548 35 admin. divorced high.school no no yes
## 549 34 admin. single university.degree no yes yes
## 550 50 blue-collar married basic.4y unknown unknown unknown
## 551 39 admin. single university.degree no no no
## 552 39 blue-collar married basic.9y unknown no no
## 553 42 entrepreneur married basic.6y no no no
## 554 57 retired married university.degree no yes no
## 555 45 blue-collar married basic.4y unknown no no
## 556 40 technician married basic.4y no no yes
## 557 42 blue-collar married high.school no no yes
## 558 40 technician married basic.4y no no no
## 559 38 blue-collar single basic.4y unknown no no
## 560 39 blue-collar married basic.6y unknown yes yes
## 561 41 blue-collar married basic.4y no no no
## 562 39 blue-collar married basic.6y unknown yes no
## 563 41 blue-collar married basic.4y no yes yes
## 564 45 admin. married university.degree unknown no no
## 565 35 admin. divorced university.degree no unknown unknown
## 566 35 admin. married basic.6y no yes no
## 567 49 blue-collar married high.school unknown no no
## 568 36 technician married unknown no no no
## 569 23 admin. single university.degree no no no
## 570 43 unemployed married university.degree unknown unknown unknown
## 571 49 entrepreneur married professional.course no unknown unknown
## 572 36 technician married professional.course no unknown unknown
## 573 51 blue-collar married basic.9y unknown yes no
## 574 56 retired married basic.4y unknown yes yes
## 575 45 housemaid married high.school no no no
## 576 42 admin. married high.school no no no
## 577 41 admin. divorced high.school no no no
## 578 32 services married high.school unknown no yes
## 579 46 management married university.degree no no no
## 580 37 blue-collar married unknown no no no
## 581 53 management married university.degree unknown no no
## 582 30 blue-collar married basic.4y no no no
## 583 45 unknown married unknown unknown no no
## 584 24 technician single professional.course no no yes
## 585 45 unknown married unknown unknown no no
## 586 34 admin. single university.degree no no yes
## 587 41 management married university.degree unknown no no
## 588 59 blue-collar married basic.4y no yes no
## 589 45 blue-collar married basic.4y unknown no no
## 590 54 blue-collar married basic.6y unknown no no
## 591 32 technician married professional.course no no no
## 592 33 technician married professional.course no yes no
## 593 32 admin. married university.degree no no no
## 594 34 services single high.school no unknown unknown
## 595 46 management married university.degree no no no
## 596 57 technician married professional.course no yes no
## 597 42 technician married basic.9y no no no
## 598 48 admin. married professional.course no yes no
## 599 58 admin. divorced university.degree unknown yes no
## 600 34 services married high.school no no no
## 601 32 admin. single university.degree no yes yes
## 602 48 blue-collar married basic.9y no no no
## 603 47 blue-collar married basic.9y no no no
## 604 31 services married high.school unknown no no
## 605 32 admin. single university.degree no yes no
## 606 32 admin. single university.degree no no no
## 607 36 services married high.school no no no
## 608 53 blue-collar married basic.4y unknown no yes
## 609 37 blue-collar married basic.9y unknown no no
## 610 50 services married high.school no no no
## 611 46 blue-collar married basic.6y no yes no
## 612 41 admin. married high.school no no no
## 613 43 blue-collar single basic.4y no no no
## 614 51 management married university.degree no yes no
## 615 38 admin. married university.degree no yes no
## 616 41 technician married basic.6y no yes no
## 617 39 services married high.school unknown no no
## 618 52 blue-collar married basic.4y no no no
## 619 37 technician married professional.course no yes no
## 620 41 admin. married basic.9y no yes no
## 621 46 admin. divorced university.degree no yes yes
## 622 47 technician married professional.course no no no
## 623 35 technician married professional.course no no no
## 624 38 services married high.school unknown no no
## 625 30 blue-collar single unknown no yes yes
## 626 46 blue-collar married basic.9y no yes no
## 627 30 technician married professional.course no no no
## 628 35 services single basic.4y no no no
## 629 58 admin. married unknown unknown yes no
## 630 40 technician married professional.course no no no
## 631 34 technician married university.degree no no no
## 632 30 admin. single university.degree no no no
## 633 38 services married basic.6y no no no
## 634 55 management single basic.4y no no no
## 635 55 management married university.degree unknown yes no
## 636 45 technician single professional.course no yes no
## 637 36 admin. married university.degree no yes yes
## 638 32 admin. single university.degree no no no
## 639 35 technician married unknown unknown yes no
## 640 55 management divorced university.degree no yes no
## 641 49 housemaid married basic.4y unknown unknown unknown
## 642 29 admin. married high.school no yes no
## 643 34 blue-collar married basic.4y no yes no
## 644 54 retired married high.school unknown yes no
## 645 36 technician single professional.course no no no
## 646 30 management single university.degree no yes no
## 647 33 housemaid divorced university.degree no no no
## 648 37 blue-collar married high.school no no no
## 649 36 technician married basic.9y unknown yes no
## 650 33 blue-collar married high.school no no no
## 651 32 housemaid married high.school no yes no
## 652 32 housemaid married high.school no no no
## 653 50 blue-collar married basic.4y unknown yes no
## 654 39 blue-collar married basic.9y no no yes
## 655 51 blue-collar divorced unknown unknown yes yes
## 656 33 services married high.school no no no
## 657 33 services married basic.4y no no no
## 658 56 management married university.degree unknown no yes
## 659 39 management divorced university.degree unknown yes no
## 660 33 self-employed single university.degree no no no
## 661 59 retired divorced basic.4y unknown no no
## 662 42 admin. single unknown no yes no
## 663 43 services married high.school no no yes
## 664 35 admin. married university.degree no unknown unknown
## 665 46 blue-collar married basic.6y unknown yes no
## 666 27 technician married basic.9y no no yes
## 667 47 admin. divorced university.degree no yes no
## 668 31 admin. single university.degree no no no
## 669 32 blue-collar married basic.9y no yes no
## 670 54 admin. married high.school no no no
## 671 56 management married university.degree unknown no no
## 672 48 services single high.school unknown yes no
## 673 44 admin. married high.school no yes no
## 674 46 admin. married high.school no no yes
## 675 45 services married high.school no yes no
## 676 43 admin. married professional.course no no yes
## 677 40 admin. single high.school unknown no no
## 678 56 management married university.degree no yes no
## 679 47 entrepreneur married professional.course no no no
## 680 39 management divorced university.degree unknown yes no
## 681 48 technician married basic.4y unknown no no
## 682 45 housemaid married professional.course unknown yes no
## 683 36 self-employed married university.degree no no no
## 684 49 management married professional.course unknown yes no
## 685 46 services married high.school no no no
## 686 38 blue-collar married basic.9y no yes no
## 687 50 housemaid married basic.4y unknown yes no
## 688 27 admin. single high.school no yes no
## 689 40 technician married professional.course unknown yes no
## 690 46 management married university.degree no yes no
## 691 40 admin. divorced university.degree no yes no
## 692 33 management single university.degree no no no
## 693 54 retired married high.school no yes no
## 694 52 blue-collar married basic.4y unknown yes no
## 695 53 admin. married university.degree unknown yes no
## 696 49 services married high.school unknown no no
## 697 42 blue-collar married basic.4y unknown no no
## 698 49 housemaid married basic.4y no no no
## 699 40 entrepreneur married basic.9y no no no
## 700 59 admin. married university.degree unknown no no
## 701 51 self-employed married basic.9y no yes no
## 702 57 housemaid married basic.6y unknown yes no
## 703 38 self-employed divorced basic.9y no yes no
## 704 52 self-employed married university.degree no no no
## 705 26 unemployed single basic.9y no yes no
## 706 35 admin. married university.degree no yes yes
## 707 51 admin. married university.degree no no no
## 708 43 blue-collar married basic.4y unknown yes yes
## 709 42 admin. married high.school unknown yes no
## 710 60 retired divorced university.degree unknown yes no
## 711 36 blue-collar married basic.9y no yes no
## 712 57 management married university.degree unknown no no
## 713 35 student single university.degree unknown no no
## 714 30 admin. married university.degree no no no
## 715 43 services married high.school no no no
## 716 40 technician married basic.9y no no no
## 717 45 technician married university.degree no no no
## 718 56 retired married high.school no no no
## 719 46 services married basic.6y no no no
## 720 41 blue-collar married basic.4y no yes no
## 721 42 admin. married university.degree no yes no
## 722 56 blue-collar married basic.4y no no no
## 723 43 entrepreneur married basic.4y no yes no
## 724 34 blue-collar married basic.4y no no no
## 725 38 services married high.school no yes no
## 726 40 technician married basic.9y no no no
## 727 38 admin. married high.school no no no
## 728 48 entrepreneur married university.degree no yes no
## 729 27 blue-collar married basic.9y unknown yes no
## 730 24 technician single professional.course no no no
## 731 47 admin. single unknown unknown yes yes
## 732 48 blue-collar married professional.course unknown no no
## 733 31 admin. single high.school no yes yes
## 734 39 self-employed single basic.4y unknown yes no
## 735 41 technician single university.degree unknown no no
## 736 49 blue-collar married basic.4y unknown yes no
## 737 56 retired married basic.4y no no no
## 738 49 admin. married high.school no no no
## 739 47 unemployed divorced university.degree no no no
## 740 44 blue-collar married unknown unknown yes no
## 741 48 admin. divorced high.school no no no
## 742 55 housemaid married basic.4y no yes yes
## 743 59 management married basic.4y unknown yes no
## 744 44 technician single professional.course no yes yes
## 745 46 blue-collar married basic.9y no no yes
## 746 39 blue-collar divorced basic.6y unknown yes no
## 747 38 unemployed married basic.4y unknown yes yes
## 748 36 services married high.school no yes no
## 749 29 admin. single university.degree no no no
## 750 31 technician single professional.course no yes no
## 751 30 services divorced basic.9y no no yes
## 752 36 blue-collar married basic.4y no yes no
## 753 60 blue-collar married professional.course no no no
## 754 36 admin. married university.degree no yes no
## 755 32 services married high.school no no no
## 756 39 blue-collar married basic.9y unknown yes no
## 757 30 services married university.degree no yes no
## 758 39 blue-collar married basic.4y unknown no no
## 759 37 blue-collar married basic.9y unknown yes no
## 760 39 blue-collar married professional.course unknown yes no
## 761 46 blue-collar married basic.4y no no no
## 762 43 unemployed married basic.4y no no no
## 763 37 services married high.school no yes no
## 764 30 technician married university.degree unknown no no
## 765 38 technician married professional.course no no no
## 766 31 technician married university.degree no yes no
## 767 44 admin. married university.degree no no no
## 768 44 self-employed married university.degree unknown no no
## 769 38 technician married unknown unknown unknown unknown
## 770 30 student single high.school unknown no no
## 771 37 blue-collar married basic.4y unknown unknown unknown
## 772 54 housemaid divorced unknown no yes no
## 773 41 management married unknown unknown yes no
## 774 43 technician married professional.course no no no
## 775 38 housemaid married basic.9y no no no
## 776 41 blue-collar married basic.4y no yes no
## 777 38 blue-collar single unknown unknown no yes
## 778 33 blue-collar married basic.9y no unknown unknown
## 779 32 admin. married high.school no yes no
## 780 30 services married high.school unknown no no
## 781 43 technician married basic.6y no yes no
## 782 30 services married high.school unknown yes no
## 783 36 technician divorced professional.course no no no
## 784 38 blue-collar married basic.6y no unknown unknown
## 785 35 blue-collar single basic.6y no yes no
## 786 50 self-employed married university.degree no no no
## 787 38 blue-collar married basic.9y no yes no
## 788 58 admin. married basic.4y unknown no yes
## 789 50 technician married professional.course no yes no
## 790 33 blue-collar single basic.9y unknown no no
## 791 33 blue-collar single basic.9y unknown unknown unknown
## 792 44 management single university.degree unknown yes yes
## 793 31 management married high.school no no no
## 794 40 entrepreneur married basic.9y no no no
## 795 28 unknown single basic.9y unknown no no
## 796 36 services single unknown no yes no
## 797 44 blue-collar single high.school no no no
## 798 38 blue-collar divorced unknown no yes no
## 799 33 blue-collar married basic.9y no unknown unknown
## 800 39 blue-collar divorced basic.6y unknown yes yes
## 801 47 blue-collar single basic.4y unknown yes no
## 802 47 services divorced high.school no no no
## 803 35 entrepreneur single professional.course no no no
## 804 42 admin. divorced university.degree no no no
## 805 36 admin. married high.school no no no
## 806 35 technician married basic.6y no no no
## 807 36 services single unknown no yes no
## 808 56 entrepreneur married university.degree unknown yes no
## 809 26 admin. single high.school no no no
## 810 31 admin. single university.degree no yes yes
## 811 57 self-employed single high.school unknown no no
## 812 39 services married high.school no no no
## 813 43 blue-collar married high.school no yes no
## 814 50 admin. married university.degree no no no
## 815 52 blue-collar single high.school unknown unknown unknown
## 816 39 blue-collar divorced basic.9y no no no
## 817 44 technician single unknown unknown yes no
## 818 36 housemaid married basic.4y no yes no
## 819 54 management married high.school unknown yes no
## 820 27 admin. single basic.9y no yes no
## 821 31 admin. single university.degree no no no
## 822 31 admin. married university.degree unknown no no
## 823 28 blue-collar married basic.6y no no no
## 824 31 management single university.degree no yes no
## 825 30 management divorced high.school no no yes
## 826 52 technician married professional.course no yes no
## 827 37 technician divorced professional.course no no no
## 828 30 services married university.degree no yes no
## 829 45 blue-collar married basic.9y unknown yes yes
## 830 54 technician married university.degree no yes no
## 831 49 entrepreneur married basic.9y no yes no
## 832 44 admin. married high.school no no no
## 833 28 student single basic.9y unknown yes yes
## 834 53 technician married high.school no yes no
## 835 45 blue-collar married basic.9y unknown yes no
## 836 45 blue-collar married basic.9y unknown no no
## 837 51 admin. married high.school unknown yes no
## 838 41 blue-collar married basic.9y unknown yes no
## 839 43 technician married professional.course no yes no
## 840 31 admin. single university.degree no yes no
## 841 39 admin. single unknown no yes no
## 842 38 technician married professional.course no no no
## 843 50 entrepreneur married basic.9y no yes yes
## 844 53 admin. single university.degree unknown yes no
## 845 44 admin. divorced high.school unknown yes no
## 846 53 blue-collar married basic.9y unknown yes yes
## 847 24 services single high.school no no no
## 848 34 admin. single high.school no yes no
## 849 40 technician married professional.course no yes no
## 850 57 management divorced university.degree no yes no
## 851 43 blue-collar married basic.4y unknown yes no
## 852 31 blue-collar married basic.6y unknown no no
## 853 31 services married basic.6y no yes no
## 854 31 blue-collar married basic.6y unknown yes no
## 855 45 housemaid married basic.4y unknown yes no
## 856 38 admin. married university.degree no no no
## 857 41 entrepreneur married university.degree no yes no
## 858 47 blue-collar married professional.course unknown yes no
## 859 42 blue-collar married basic.6y no no no
## 860 35 blue-collar single unknown no yes no
## 861 40 management married university.degree no yes no
## 862 42 blue-collar married basic.6y no no no
## 863 34 technician married professional.course unknown yes no
## 864 48 admin. single university.degree no yes no
## 865 35 blue-collar married unknown no yes yes
## 866 33 blue-collar married high.school no yes no
## 867 37 technician married professional.course no yes no
## 868 43 technician married professional.course no yes no
## 869 42 admin. single unknown unknown no no
## 870 46 admin. divorced university.degree no yes no
## 871 37 blue-collar single basic.9y unknown yes no
## 872 40 blue-collar married high.school no yes no
## 873 40 blue-collar married high.school no yes no
## 874 59 entrepreneur divorced high.school unknown yes no
## 875 43 technician single university.degree no no no
## 876 44 blue-collar married basic.6y no yes yes
## 877 44 blue-collar married basic.4y no yes no
## 878 41 admin. married university.degree no yes no
## 879 28 unknown single basic.9y unknown yes no
## 880 48 services married high.school unknown yes no
## 881 31 admin. single high.school no yes no
## 882 27 blue-collar married basic.9y no yes no
## 883 43 technician single university.degree no yes no
## 884 47 retired married basic.4y unknown yes no
## 885 40 blue-collar divorced unknown no yes no
## 886 43 unknown married high.school unknown no no
## 887 29 technician married professional.course no yes no
## 888 54 admin. married university.degree no no no
## 889 36 technician married professional.course no no no
## 890 30 admin. single university.degree no no no
## 891 38 services single unknown unknown yes no
## 892 39 blue-collar married basic.6y no no no
## 893 33 blue-collar married basic.9y no no no
## 894 39 retired single high.school no yes no
## 895 38 technician single professional.course no no no
## 896 44 admin. married high.school no yes no
## 897 33 blue-collar married basic.9y no yes no
## 898 37 blue-collar married basic.6y no no no
## 899 32 management married basic.6y no no no
## 900 46 technician married professional.course no yes no
## 901 34 technician divorced professional.course no yes no
## 902 52 technician married basic.4y unknown no no
## 903 46 blue-collar married basic.6y unknown no no
## 904 57 management divorced university.degree no unknown unknown
## 905 52 technician married basic.4y unknown no yes
## 906 32 technician single professional.course no no no
## 907 31 blue-collar single basic.9y no no no
## 908 46 admin. divorced basic.9y unknown no no
## 909 59 services divorced high.school no no no
## 910 38 blue-collar married unknown unknown no yes
## 911 42 blue-collar divorced basic.6y unknown yes no
## 912 40 blue-collar married basic.4y no no no
## 913 46 admin. married professional.course no no no
## 914 35 admin. single high.school no no no
## 915 28 blue-collar married basic.9y no no yes
## 916 47 services married high.school unknown yes no
## 917 35 blue-collar married basic.4y no yes no
## 918 48 retired married basic.9y no yes no
## 919 40 blue-collar married basic.6y unknown yes no
## 920 32 services single high.school no yes no
## 921 59 retired divorced basic.4y no yes no
## 922 48 entrepreneur married basic.9y unknown no no
## 923 45 blue-collar married basic.9y unknown yes no
## 924 49 blue-collar single basic.6y no yes no
## 925 51 admin. married university.degree no yes no
## 926 38 technician single university.degree no yes no
## 927 53 technician married high.school no yes no
## 928 49 blue-collar married basic.9y no yes no
## 929 31 blue-collar married basic.9y no yes yes
## 930 36 services married high.school unknown yes no
## 931 54 retired married basic.4y unknown yes no
## 932 29 admin. single high.school no yes no
## 933 31 blue-collar married basic.6y unknown yes no
## 934 35 admin. married high.school no yes no
## 935 38 blue-collar married basic.9y no no no
## 936 54 management married high.school unknown yes yes
## 937 48 admin. married basic.9y unknown no no
## 938 48 management divorced university.degree no yes no
## 939 32 admin. single university.degree unknown yes no
## 940 34 technician married professional.course unknown yes no
## 941 49 technician single university.degree unknown yes no
## 942 44 blue-collar married basic.9y unknown unknown unknown
## 943 42 services divorced high.school unknown no no
## 944 55 blue-collar married basic.4y unknown no no
## 945 42 services divorced high.school unknown no no
## 946 44 admin. married university.degree unknown no no
## 947 51 blue-collar married basic.9y no no no
## 948 43 blue-collar married basic.4y unknown yes no
## 949 52 technician married high.school no yes no
## 950 45 blue-collar single basic.6y no yes no
## 951 41 services divorced high.school no yes yes
## 952 35 technician divorced unknown no yes yes
## 953 41 services divorced high.school no no yes
## 954 46 management married basic.9y no no no
## 955 36 housemaid divorced basic.9y unknown no no
## 956 29 technician married professional.course no no no
## 957 47 services married unknown no no no
## 958 43 blue-collar married basic.4y unknown yes no
## 959 38 blue-collar single basic.9y unknown no no
## 960 44 blue-collar married basic.4y no yes no
## 961 29 services married high.school no no no
## 962 58 unknown married unknown unknown no no
## 963 48 blue-collar married professional.course no no yes
## 964 46 blue-collar married basic.9y unknown no no
## 965 31 blue-collar married basic.4y no yes no
## 966 47 services married unknown no no no
## 967 44 admin. married university.degree no yes no
## 968 31 blue-collar married basic.4y no yes no
## 969 38 unemployed divorced professional.course no no no
## 970 33 admin. married university.degree no no no
## 971 53 blue-collar married basic.9y no yes no
## 972 33 management single unknown no yes no
## 973 33 self-employed married basic.9y no yes no
## 974 37 admin. divorced university.degree no yes no
## 975 55 blue-collar married basic.9y no yes no
## 976 41 admin. single basic.6y no unknown unknown
## 977 46 blue-collar married basic.6y unknown yes no
## 978 32 entrepreneur divorced university.degree no no no
## 979 48 blue-collar married high.school no no no
## 980 34 entrepreneur married basic.4y no yes no
## 981 35 admin. single university.degree no no no
## 982 55 blue-collar married basic.4y no yes yes
## 983 45 entrepreneur single university.degree no unknown unknown
## 984 48 management divorced university.degree no no no
## 985 34 blue-collar married basic.6y no yes no
## 986 46 admin. divorced university.degree unknown no no
## 987 34 blue-collar married basic.6y no yes no
## 988 51 unemployed married professional.course unknown no no
## 989 37 admin. married university.degree no no no
## 990 54 housemaid divorced basic.4y no no no
## 991 45 services married high.school unknown yes no
## 992 39 services single high.school no unknown unknown
## 993 39 blue-collar married basic.9y no no no
## 994 39 technician single basic.6y unknown no no
## 995 39 services married basic.9y no no no
## 996 32 entrepreneur married basic.6y no yes no
## 997 41 services single high.school no yes yes
## 998 59 housemaid married basic.6y no yes no
## 999 57 technician married basic.9y no yes no
## 1000 30 services married unknown no no no
## 1001 34 entrepreneur married basic.4y no no no
## 1002 34 technician married high.school no no no
## 1003 38 blue-collar divorced unknown no no no
## 1004 31 blue-collar married basic.6y no yes no
## 1005 47 admin. married university.degree no unknown unknown
## 1006 57 self-employed single high.school unknown no no
## 1007 44 blue-collar married basic.9y unknown no no
## 1008 45 services married high.school unknown yes no
## 1009 36 unemployed married basic.4y no yes no
## 1010 44 services married high.school no yes no
## 1011 51 management married university.degree no no no
## 1012 28 admin. single university.degree no no no
## 1013 50 technician married high.school no no no
## 1014 51 entrepreneur married university.degree no no no
## 1015 38 blue-collar single basic.9y no no no
## 1016 44 blue-collar married basic.4y no yes no
## 1017 35 admin. single basic.4y unknown no no
## 1018 35 admin. single basic.4y unknown yes no
## 1019 32 admin. single high.school no no no
## 1020 48 blue-collar married basic.9y no yes no
## 1021 35 admin. single basic.4y unknown no no
## 1022 44 technician married professional.course unknown no no
## 1023 43 technician married professional.course no no no
## 1024 40 management married high.school no no no
## 1025 50 self-employed married basic.4y unknown unknown unknown
## 1026 44 technician married professional.course unknown yes no
## 1027 37 blue-collar single basic.9y unknown no no
## 1028 32 services divorced high.school no yes no
## 1029 58 admin. married high.school no no yes
## 1030 49 technician married high.school no yes no
## 1031 32 blue-collar married basic.4y unknown no no
## 1032 30 services married high.school no no yes
## 1033 28 admin. married high.school no yes no
## 1034 40 blue-collar married basic.4y unknown unknown unknown
## 1035 44 management married university.degree no no no
## 1036 30 services married professional.course unknown yes no
## 1037 30 services married professional.course unknown no no
## 1038 28 technician single professional.course no yes no
## 1039 58 housemaid married basic.4y no yes no
## 1040 45 blue-collar single high.school unknown no yes
## 1041 35 blue-collar married professional.course no no no
## 1042 57 retired divorced high.school no no no
## 1043 35 admin. divorced high.school no yes no
## 1044 41 technician single university.degree unknown no no
## 1045 42 services married high.school unknown no no
## 1046 42 blue-collar married basic.4y unknown no no
## 1047 51 blue-collar married basic.4y unknown yes no
## 1048 48 management married university.degree no yes no
## 1049 39 blue-collar married basic.6y no no no
## 1050 47 retired married basic.4y unknown unknown unknown
## 1051 34 technician single professional.course no unknown unknown
## 1052 44 services married basic.6y unknown no no
## 1053 52 housemaid divorced professional.course no yes no
## 1054 51 blue-collar married basic.4y no yes no
## 1055 49 services married high.school no no no
## 1056 35 admin. single basic.4y unknown yes no
## 1057 44 admin. married high.school no no no
## 1058 37 admin. married high.school no yes no
## 1059 47 management married university.degree no no no
## 1060 43 management married professional.course no no no
## 1061 40 blue-collar married basic.9y unknown yes no
## 1062 32 management divorced basic.4y unknown no no
## 1063 42 blue-collar married basic.4y unknown unknown unknown
## 1064 42 self-employed married university.degree no yes no
## 1065 39 technician married professional.course no unknown unknown
## 1066 32 housemaid married basic.4y no no no
## 1067 30 services married unknown no yes no
## 1068 42 blue-collar married basic.4y unknown yes no
## 1069 35 blue-collar married basic.6y no yes yes
## 1070 56 retired married basic.4y no no no
## 1071 40 blue-collar married basic.9y unknown no no
## 1072 26 admin. single university.degree no yes no
## 1073 57 management divorced university.degree no no no
## 1074 51 blue-collar married basic.4y no no no
## 1075 31 technician married professional.course no no no
## 1076 31 admin. married university.degree no no no
## 1077 60 services married unknown no no no
## 1078 29 admin. single university.degree no yes no
## 1079 44 entrepreneur married basic.4y unknown no no
## 1080 26 technician single basic.9y no yes no
## 1081 54 blue-collar married basic.4y no yes no
## 1082 34 blue-collar single high.school unknown no yes
## 1083 29 admin. single high.school no yes no
## 1084 33 admin. divorced high.school no yes no
## 1085 35 blue-collar single high.school no yes no
## 1086 42 management married basic.6y no yes yes
## 1087 53 retired married basic.4y unknown yes no
## 1088 51 technician married professional.course no yes no
## 1089 59 retired divorced basic.4y no yes no
## 1090 51 admin. married basic.6y unknown no no
## 1091 36 blue-collar married basic.9y no yes no
## 1092 47 technician divorced professional.course unknown no no
## 1093 51 admin. married university.degree no no no
## 1094 42 admin. married university.degree unknown yes no
## 1095 40 technician married professional.course no yes no
## 1096 26 blue-collar married basic.9y unknown no no
## 1097 45 technician married professional.course no yes no
## 1098 51 blue-collar married basic.4y unknown yes no
## 1099 42 services married high.school no no no
## 1100 31 technician married professional.course no yes no
## 1101 38 blue-collar married basic.4y no no no
## 1102 51 services divorced basic.6y unknown no yes
## 1103 39 entrepreneur married high.school no yes no
## 1104 36 blue-collar married unknown unknown yes yes
## 1105 60 services married unknown no yes no
## 1106 34 management married university.degree no yes no
## 1107 41 blue-collar married basic.4y no yes no
## 1108 34 management married university.degree no yes yes
## 1109 36 blue-collar married basic.9y no no no
## 1110 33 technician married professional.course no no no
## 1111 46 admin. single university.degree no unknown unknown
## 1112 44 blue-collar married basic.4y no yes no
## 1113 30 blue-collar married basic.6y no no no
## 1114 34 management married university.degree no no no
## 1115 54 admin. divorced university.degree no no no
## 1116 58 self-employed married professional.course no yes no
## 1117 29 services married high.school no yes yes
## 1118 41 entrepreneur married university.degree no no no
## 1119 53 blue-collar married basic.9y unknown yes no
## 1120 35 admin. married university.degree no no no
## 1121 34 blue-collar single basic.9y no no no
## 1122 36 blue-collar single unknown no yes no
## 1123 31 blue-collar married basic.9y no no no
## 1124 59 retired married basic.4y unknown no no
## 1125 49 technician married professional.course unknown unknown unknown
## 1126 37 management married high.school unknown no no
## 1127 50 management married university.degree no yes no
## 1128 34 services married high.school no no no
## 1129 32 admin. married university.degree unknown no no
## 1130 45 blue-collar married basic.9y unknown yes no
## 1131 39 management married university.degree no yes no
## 1132 43 unknown married high.school unknown no no
## 1133 43 blue-collar married basic.4y unknown no no
## 1134 52 blue-collar married basic.9y unknown no no
## 1135 54 blue-collar married basic.9y no yes no
## 1136 54 blue-collar married basic.9y no yes no
## 1137 31 services single high.school no yes no
## 1138 35 blue-collar married basic.6y no no no
## 1139 28 admin. married high.school no yes no
## 1140 56 retired married basic.9y no yes yes
## 1141 35 admin. single basic.4y unknown no no
## 1142 45 blue-collar married basic.9y unknown no no
## 1143 38 entrepreneur married basic.9y no no no
## 1144 42 technician married professional.course no yes no
## 1145 44 blue-collar married basic.4y no no no
## 1146 58 admin. divorced university.degree no yes no
## 1147 43 admin. divorced high.school no yes no
## 1148 37 technician married professional.course no yes no
## 1149 45 blue-collar married basic.9y unknown no no
## 1150 59 retired married university.degree no no no
## 1151 50 blue-collar married basic.9y unknown no no
## 1152 41 admin. married high.school no yes yes
## 1153 33 admin. married university.degree no yes no
## 1154 46 blue-collar married professional.course no no no
## 1155 30 admin. single high.school no no no
## 1156 28 services single high.school no no no
## 1157 58 admin. married university.degree no no yes
## 1158 43 blue-collar married basic.4y no no no
## 1159 39 self-employed married high.school no yes no
## 1160 25 services married professional.course unknown no no
## 1161 39 admin. single unknown no no no
## 1162 42 retired married basic.9y unknown yes no
## 1163 43 admin. married high.school no yes no
## 1164 43 admin. married high.school no no no
## 1165 33 admin. single university.degree no no no
## 1166 52 unknown married basic.4y no no no
## 1167 42 services married professional.course no yes no
## 1168 53 blue-collar married basic.4y unknown no no
## 1169 41 housemaid married basic.6y no no no
## 1170 48 blue-collar married professional.course no yes no
## 1171 40 admin. single high.school no yes no
## 1172 40 admin. single high.school no no yes
## 1173 53 blue-collar married high.school unknown no yes
## 1174 55 admin. married high.school no no no
## 1175 39 technician married professional.course no no no
## 1176 35 blue-collar married basic.9y no no yes
## 1177 50 housemaid divorced basic.4y unknown no no
## 1178 38 services divorced basic.6y no no no
## 1179 41 unemployed married basic.9y unknown no no
## 1180 44 technician married professional.course unknown no no
## 1181 39 admin. married basic.6y unknown no no
## 1182 44 unknown married basic.6y no no no
## 1183 51 technician married professional.course no no yes
## 1184 41 technician married high.school no yes yes
## 1185 31 technician married professional.course no no no
## 1186 40 blue-collar married high.school no yes no
## 1187 38 self-employed single university.degree no no no
## 1188 48 blue-collar married basic.6y no no yes
## 1189 32 admin. married high.school no no no
## 1190 46 blue-collar single basic.9y no yes no
## 1191 49 housemaid married basic.4y unknown no no
## 1192 47 blue-collar married basic.6y no yes yes
## 1193 28 blue-collar married basic.6y unknown no no
## 1194 38 admin. single university.degree unknown yes no
## 1195 28 blue-collar married basic.6y unknown no no
## 1196 51 services married unknown no yes no
## 1197 50 blue-collar married basic.9y no yes no
## 1198 38 admin. single university.degree unknown yes yes
## 1199 48 blue-collar married basic.6y no yes no
## 1200 44 technician divorced unknown no yes no
## 1201 30 technician married professional.course no no no
## 1202 34 blue-collar single basic.4y no no no
## 1203 36 blue-collar married basic.6y no yes no
## 1204 41 management married university.degree unknown no no
## 1205 40 blue-collar married basic.6y unknown no no
## 1206 35 unknown married basic.9y no yes yes
## 1207 46 blue-collar married basic.4y unknown no no
## 1208 35 unknown married basic.9y no yes no
## 1209 32 management single university.degree no no no
## 1210 34 admin. married university.degree unknown no no
## 1211 35 blue-collar married basic.9y no yes no
## 1212 28 admin. single professional.course no no no
## 1213 30 services married high.school unknown no no
## 1214 48 unemployed married basic.4y no yes yes
## 1215 53 blue-collar married professional.course no yes yes
## 1216 31 management married university.degree no yes yes
## 1217 59 retired married unknown no yes no
## 1218 51 unemployed married high.school no yes no
## 1219 47 services married high.school unknown yes no
## 1220 40 technician married university.degree unknown no no
## 1221 42 entrepreneur single university.degree no yes no
## 1222 30 housemaid married high.school unknown no no
## 1223 40 blue-collar married basic.9y no no no
## 1224 30 housemaid married high.school unknown no no
## 1225 50 entrepreneur married basic.9y no yes no
## 1226 36 blue-collar married basic.6y unknown no no
## 1227 29 unemployed single university.degree no no no
## 1228 43 blue-collar married basic.9y no no no
## 1229 35 services married high.school no no no
## 1230 35 unknown single basic.4y unknown no no
## 1231 48 blue-collar divorced basic.4y no no no
## 1232 49 technician married professional.course no no no
## 1233 44 blue-collar married basic.6y unknown no yes
## 1234 32 blue-collar married professional.course no no no
## 1235 55 admin. married high.school no no no
## 1236 41 admin. married basic.4y unknown no yes
## 1237 27 student single high.school unknown no no
## 1238 41 blue-collar married basic.9y no yes no
## 1239 36 blue-collar married basic.6y unknown yes no
## 1240 45 services married basic.9y no no no
## 1241 36 blue-collar married high.school no no no
## 1242 54 technician married basic.9y no no no
## 1243 48 admin. married high.school unknown no yes
## 1244 32 blue-collar married basic.6y unknown no no
## 1245 33 management married university.degree no no yes
## 1246 43 blue-collar married basic.4y unknown no no
## 1247 44 technician single high.school no no no
## 1248 50 technician married professional.course no no no
## 1249 32 student single university.degree no no no
## 1250 43 blue-collar married basic.4y unknown yes no
## 1251 32 student single university.degree no yes no
## 1252 43 blue-collar married basic.4y unknown no no
## 1253 40 admin. divorced professional.course no yes no
## 1254 24 services single high.school no yes yes
## 1255 32 technician married university.degree no no yes
## 1256 43 blue-collar married basic.4y unknown yes yes
## 1257 43 technician single university.degree no yes no
## 1258 35 admin. married university.degree no yes yes
## 1259 33 admin. single high.school unknown yes no
## 1260 43 blue-collar married basic.4y unknown yes no
## 1261 48 technician married professional.course unknown yes no
## 1262 52 housemaid married basic.4y no no no
## 1263 49 blue-collar married basic.4y unknown yes no
## 1264 30 admin. married high.school no yes yes
## 1265 36 services married high.school no yes no
## 1266 39 blue-collar married basic.6y no no no
## 1267 39 blue-collar married basic.6y no no no
## 1268 36 admin. divorced university.degree no no no
## 1269 39 blue-collar married basic.6y no no no
## 1270 31 admin. married high.school no no no
## 1271 41 technician married professional.course no yes yes
## 1272 35 unknown married basic.9y no no no
## 1273 55 retired married university.degree unknown no no
## 1274 57 retired married high.school unknown yes no
## 1275 38 entrepreneur married basic.6y no yes no
## 1276 52 blue-collar married basic.9y no yes no
## 1277 60 services married high.school no yes no
## 1278 24 student single high.school no yes no
## 1279 38 entrepreneur married basic.6y no no no
## 1280 44 technician divorced high.school no no no
## 1281 42 blue-collar married basic.9y unknown yes no
## 1282 25 services divorced high.school no yes no
## 1283 32 admin. married basic.6y no no no
## 1284 51 blue-collar married basic.4y unknown no no
## 1285 28 admin. single university.degree no no no
## 1286 27 housemaid married basic.9y no yes no
## 1287 35 blue-collar married basic.9y no yes no
## 1288 45 services married basic.9y no yes yes
## 1289 30 services single high.school no yes no
## 1290 60 entrepreneur married basic.4y no yes no
## 1291 28 services single unknown no yes no
## 1292 45 blue-collar married basic.4y unknown no yes
## 1293 37 unemployed married professional.course no no no
## 1294 37 unemployed married professional.course no no yes
## 1295 36 services married basic.6y no yes no
## 1296 49 blue-collar married basic.4y no yes no
## 1297 35 services married professional.course unknown yes no
## 1298 34 admin. single high.school no no no
## 1299 31 blue-collar married basic.9y no no no
## 1300 42 admin. married university.degree unknown yes no
## 1301 39 blue-collar married basic.6y no yes no
## 1302 33 services married university.degree no yes no
## 1303 38 unemployed married high.school no no yes
## 1304 30 admin. divorced university.degree unknown no no
## 1305 31 blue-collar divorced professional.course no yes no
## 1306 39 management married university.degree no no no
## 1307 37 blue-collar married unknown unknown yes no
## 1308 48 blue-collar married basic.4y unknown no no
## 1309 32 services married high.school no no no
## 1310 48 blue-collar married basic.6y no yes no
## 1311 37 technician single university.degree no yes no
## 1312 37 technician single university.degree no no no
## 1313 26 services divorced basic.6y no no no
## 1314 33 management married high.school unknown no no
## 1315 54 admin. married university.degree no yes no
## 1316 37 blue-collar married basic.9y unknown yes no
## 1317 35 entrepreneur married university.degree no yes yes
## 1318 45 admin. married university.degree no no no
## 1319 33 services single high.school no yes no
## 1320 54 admin. married university.degree no no no
## 1321 37 blue-collar married basic.4y no no yes
## 1322 35 blue-collar married basic.9y unknown no no
## 1323 33 blue-collar divorced basic.6y unknown yes no
## 1324 49 technician married professional.course no no no
## 1325 43 technician married university.degree no yes no
## 1326 43 entrepreneur married university.degree no no no
## 1327 39 blue-collar married basic.6y no no no
## 1328 47 blue-collar married basic.9y no yes no
## 1329 30 services divorced high.school no no no
## 1330 51 admin. divorced university.degree no yes no
## 1331 59 blue-collar married basic.6y no yes no
## 1332 31 blue-collar married basic.9y no yes no
## 1333 39 unemployed married university.degree no yes no
## 1334 43 blue-collar married basic.6y unknown no no
## 1335 30 blue-collar married basic.9y unknown yes no
## 1336 37 blue-collar married professional.course no no no
## 1337 42 blue-collar married basic.6y no no no
## 1338 37 blue-collar married professional.course no yes yes
## 1339 37 admin. divorced university.degree no yes no
## 1340 37 blue-collar single basic.6y unknown yes no
## 1341 36 management single basic.6y no no no
## 1342 48 blue-collar married basic.9y no yes yes
## 1343 43 services married high.school no no no
## 1344 28 blue-collar married basic.6y no no no
## 1345 30 admin. divorced high.school no yes no
## 1346 60 entrepreneur married basic.4y no yes no
## 1347 31 blue-collar married basic.9y no no no
## 1348 38 entrepreneur married university.degree no no no
## 1349 50 technician married high.school no yes no
## 1350 36 blue-collar married basic.9y no yes no
## 1351 50 unemployed married professional.course no no no
## 1352 54 entrepreneur married basic.4y unknown no yes
## 1353 33 management married university.degree no no no
## 1354 20 entrepreneur single high.school no no no
## 1355 24 blue-collar married basic.9y unknown yes no
## 1356 28 management single unknown no yes no
## 1357 55 housemaid married basic.4y no yes no
## 1358 25 blue-collar married high.school no no no
## 1359 41 admin. married basic.9y unknown yes no
## 1360 39 blue-collar married basic.6y no yes no
## 1361 27 blue-collar married basic.9y no yes no
## 1362 27 blue-collar married basic.9y no no no
## 1363 34 blue-collar married basic.6y unknown yes yes
## 1364 25 technician single professional.course no no no
## 1365 48 management married university.degree unknown yes no
## 1366 36 blue-collar single basic.6y no no no
## 1367 36 blue-collar married basic.9y no no no
## 1368 27 blue-collar married basic.9y no no yes
## 1369 45 management married university.degree no yes yes
## 1370 28 blue-collar married basic.6y unknown yes no
## 1371 30 technician single basic.6y unknown yes no
## 1372 43 blue-collar married basic.4y no no no
## 1373 32 admin. single high.school no unknown unknown
## 1374 29 services single basic.9y no no no
## 1375 35 blue-collar married basic.9y no no no
## 1376 43 admin. married high.school no yes no
## 1377 35 unknown married basic.9y no no no
## 1378 36 admin. married high.school no yes no
## 1379 36 admin. married high.school no no no
## 1380 48 admin. married high.school unknown no no
## 1381 38 blue-collar single basic.4y unknown no no
## 1382 38 blue-collar single basic.9y unknown no no
## 1383 45 admin. married high.school no yes no
## 1384 35 technician married professional.course no no yes
## 1385 42 services married high.school unknown no yes
## 1386 56 blue-collar married basic.4y unknown no no
## 1387 30 technician married professional.course no no no
## 1388 45 blue-collar married basic.4y unknown yes no
## 1389 39 services single high.school unknown no no
## 1390 36 blue-collar married basic.6y unknown no no
## 1391 32 admin. married university.degree unknown no yes
## 1392 29 admin. single high.school no no no
## 1393 34 blue-collar married basic.9y no no no
## 1394 36 self-employed single basic.6y no no no
## 1395 33 management married high.school unknown no no
## 1396 43 unemployed married basic.4y no no no
## 1397 31 services married basic.6y no no no
## 1398 35 blue-collar married basic.6y no no no
## 1399 42 admin. married university.degree no no no
## 1400 35 blue-collar married basic.6y no no no
## 1401 44 blue-collar married basic.4y unknown no no
## 1402 36 technician divorced professional.course no yes no
## 1403 47 admin. married university.degree no no no
## 1404 59 technician married professional.course unknown no no
## 1405 29 blue-collar single high.school unknown unknown unknown
## 1406 30 services single high.school no no no
## 1407 38 blue-collar married basic.9y unknown no no
## 1408 45 management single university.degree no no no
## 1409 28 self-employed single university.degree no no no
## 1410 37 blue-collar married basic.4y no no no
## 1411 38 entrepreneur married basic.6y no yes yes
## 1412 28 admin. single basic.9y no yes yes
## 1413 31 technician divorced professional.course no yes yes
## 1414 37 blue-collar married basic.4y no yes no
## 1415 36 housemaid divorced university.degree no no no
## 1416 54 housemaid married basic.9y no yes no
## 1417 53 retired married basic.6y unknown no yes
## 1418 43 unemployed married basic.9y no yes no
## 1419 49 admin. married high.school no no yes
## 1420 32 self-employed divorced professional.course no no no
## 1421 36 services married high.school no yes no
## 1422 50 blue-collar single basic.9y unknown yes yes
## 1423 51 blue-collar divorced basic.9y no no no
## 1424 38 blue-collar married basic.4y no yes no
## 1425 44 self-employed married professional.course no no no
## 1426 29 blue-collar married high.school no no no
## 1427 46 blue-collar divorced basic.6y no no no
## 1428 32 unemployed divorced basic.4y no unknown unknown
## 1429 43 blue-collar divorced basic.4y unknown no no
## 1430 53 admin. married university.degree no no no
## 1431 43 blue-collar married basic.6y unknown no no
## 1432 35 services single basic.4y no no yes
## 1433 49 admin. divorced basic.9y no yes no
## 1434 35 blue-collar married basic.6y unknown yes no
## 1435 40 services single professional.course no no no
## 1436 29 services divorced high.school no no no
## 1437 43 blue-collar married basic.4y unknown no no
## 1438 47 blue-collar married basic.6y no no no
## 1439 38 technician married university.degree unknown no no
## 1440 48 technician married professional.course no yes no
## 1441 53 retired married high.school unknown yes no
## 1442 53 management married university.degree no yes no
## 1443 51 blue-collar married basic.9y unknown yes no
## 1444 35 services married basic.9y no yes yes
## 1445 31 entrepreneur divorced high.school no yes no
## 1446 46 entrepreneur married basic.4y no no no
## 1447 28 blue-collar married basic.6y unknown yes yes
## 1448 38 admin. married basic.9y unknown yes no
## 1449 28 self-employed single university.degree no yes no
## 1450 50 technician married professional.course no yes no
## 1451 32 management single university.degree no no no
## 1452 31 blue-collar divorced basic.4y no yes no
## 1453 39 blue-collar married basic.9y unknown no no
## 1454 41 blue-collar married basic.9y no no yes
## 1455 31 admin. married high.school no yes yes
## 1456 54 blue-collar married basic.9y unknown no yes
## 1457 34 blue-collar married basic.6y unknown no yes
## 1458 51 services married high.school unknown yes no
## 1459 45 blue-collar single basic.9y no no no
## 1460 32 admin. divorced high.school no no yes
## 1461 28 student married university.degree no no yes
## 1462 40 management married university.degree no yes no
## 1463 55 admin. divorced university.degree no yes no
## 1464 41 self-employed single university.degree no no no
## 1465 57 services divorced high.school unknown no yes
## 1466 44 entrepreneur married high.school no yes no
## 1467 29 blue-collar single high.school unknown yes no
## 1468 38 admin. single university.degree no no no
## 1469 34 blue-collar married basic.4y no yes no
## 1470 36 technician single university.degree no yes no
## 1471 39 services divorced high.school no yes no
## 1472 30 blue-collar married basic.9y no yes yes
## 1473 35 services married basic.9y no no no
## 1474 60 entrepreneur married basic.4y no no no
## 1475 35 blue-collar married basic.9y no yes no
## 1476 38 self-employed single university.degree no no no
## 1477 57 blue-collar divorced professional.course no no no
## 1478 44 technician divorced unknown no no yes
## 1479 40 entrepreneur married basic.9y no yes no
## 1480 46 technician divorced basic.9y no yes no
## 1481 50 technician married professional.course unknown yes no
## 1482 45 management married university.degree no yes no
## 1483 57 services married basic.6y no no no
## 1484 35 admin. single basic.6y no yes no
## 1485 38 blue-collar married basic.6y no no no
## 1486 30 services divorced high.school no yes no
## 1487 25 services divorced high.school no no no
## 1488 52 self-employed single university.degree unknown yes no
## 1489 37 technician single university.degree no yes no
## 1490 60 retired divorced high.school no yes no
## 1491 42 blue-collar married basic.4y unknown no no
## 1492 37 blue-collar married professional.course no yes no
## 1493 43 services married high.school no no no
## 1494 33 services unknown high.school no yes yes
## 1495 32 technician married professional.course no yes yes
## 1496 41 technician married professional.course no no no
## 1497 37 blue-collar married basic.6y unknown no no
## 1498 39 blue-collar married basic.9y unknown no no
## 1499 36 services married high.school no no yes
## 1500 38 blue-collar married basic.6y unknown no no
## 1501 33 admin. married high.school no yes yes
## 1502 41 services divorced high.school no yes no
## 1503 58 services married basic.4y no no no
## 1504 44 blue-collar single basic.9y unknown no no
## 1505 36 blue-collar married basic.9y unknown no no
## 1506 33 admin. married high.school no yes no
## 1507 30 technician married professional.course no no no
## 1508 44 blue-collar married basic.9y unknown no no
## 1509 32 admin. married high.school no yes yes
## 1510 38 admin. married basic.9y unknown no no
## 1511 41 blue-collar married professional.course unknown yes no
## 1512 40 services married basic.9y unknown no no
## 1513 33 blue-collar married basic.6y unknown yes yes
## 1514 28 admin. single university.degree no yes no
## 1515 46 blue-collar married basic.4y no no no
## 1516 35 technician married university.degree no yes no
## 1517 40 admin. married university.degree unknown yes yes
## 1518 36 services married high.school no yes no
## 1519 38 management married university.degree unknown no no
## 1520 36 services married high.school no yes no
## 1521 40 admin. married high.school unknown yes no
## 1522 31 services married basic.9y no yes no
## 1523 47 technician married professional.course no yes no
## 1524 35 technician single professional.course no yes no
## 1525 29 admin. single university.degree no no no
## 1526 29 blue-collar single high.school no yes yes
## 1527 35 self-employed married university.degree no no yes
## 1528 33 services single basic.6y unknown no no
## 1529 41 management divorced university.degree unknown yes yes
## 1530 54 admin. married university.degree no yes no
## 1531 31 admin. single university.degree no no yes
## 1532 55 technician married university.degree no yes no
## 1533 38 admin. married high.school no no no
## 1534 41 services married high.school no no yes
## 1535 49 unemployed married university.degree no yes yes
## 1536 39 services married high.school no yes no
## 1537 34 blue-collar divorced professional.course no no yes
## 1538 39 services divorced high.school no yes no
## 1539 37 services married high.school no no no
## 1540 45 blue-collar married high.school no yes no
## 1541 49 admin. married university.degree no yes yes
## 1542 43 blue-collar married basic.4y unknown no no
## 1543 40 management married high.school no no no
## 1544 42 admin. married university.degree no yes no
## 1545 47 services single high.school no no no
## 1546 56 entrepreneur married university.degree no yes no
## 1547 43 management married university.degree no no no
## 1548 34 blue-collar married basic.9y no no no
## 1549 29 admin. divorced university.degree no no no
## 1550 53 entrepreneur married university.degree no yes no
## 1551 50 entrepreneur married basic.9y no yes no
## 1552 51 self-employed married university.degree unknown no no
## 1553 20 entrepreneur single high.school no no no
## 1554 41 blue-collar married professional.course unknown yes no
## 1555 47 blue-collar married basic.9y no yes no
## 1556 48 technician married professional.course no yes no
## 1557 29 entrepreneur married university.degree no yes no
## 1558 28 technician single professional.course no yes yes
## 1559 31 blue-collar single professional.course no no no
## 1560 29 blue-collar single basic.6y no no no
## 1561 42 blue-collar married basic.4y unknown yes no
## 1562 40 blue-collar single basic.6y unknown no no
## 1563 33 management married university.degree no no no
## 1564 33 services single professional.course no no no
## 1565 34 management divorced basic.6y unknown yes no
## 1566 36 admin. married high.school no yes no
## 1567 35 admin. married university.degree no yes no
## 1568 38 technician divorced professional.course no yes no
## 1569 31 blue-collar single basic.9y no no no
## 1570 30 blue-collar married basic.6y no no no
## 1571 42 admin. single university.degree no no no
## 1572 27 technician single high.school no yes no
## 1573 39 retired single high.school no no no
## 1574 38 admin. married high.school no yes no
## 1575 30 management married university.degree no yes no
## 1576 52 housemaid married university.degree no yes no
## 1577 38 admin. married high.school no yes no
## 1578 54 technician married basic.9y no no no
## 1579 29 admin. single university.degree no yes no
## 1580 32 blue-collar married basic.9y unknown no no
## 1581 28 admin. married high.school no no no
## 1582 30 admin. married high.school no yes no
## 1583 44 technician married professional.course unknown no yes
## 1584 37 blue-collar married basic.4y no no no
## 1585 48 admin. married professional.course unknown yes no
## 1586 25 blue-collar married professional.course unknown no no
## 1587 49 blue-collar married basic.4y unknown no no
## 1588 60 technician married university.degree unknown yes no
## 1589 29 admin. single high.school no no no
## 1590 55 technician married basic.9y unknown unknown unknown
## 1591 41 blue-collar married basic.9y unknown yes no
## 1592 39 services single high.school no no no
## 1593 39 management married high.school no no no
## 1594 31 admin. married university.degree no yes no
## 1595 38 services married high.school no no no
## 1596 32 technician married university.degree no yes no
## 1597 53 housemaid divorced basic.6y unknown unknown unknown
## 1598 37 admin. married high.school no unknown unknown
## 1599 34 self-employed married professional.course no unknown unknown
## 1600 31 admin. married high.school no yes yes
## 1601 39 unemployed married high.school no no no
## 1602 39 unemployed married high.school no yes no
## 1603 39 unemployed married high.school no yes no
## 1604 37 admin. married high.school no yes no
## 1605 30 blue-collar married basic.4y no no no
## 1606 32 blue-collar married professional.course no no no
## 1607 37 technician married basic.9y no no no
## 1608 27 blue-collar married university.degree no no yes
## 1609 32 unknown unknown university.degree no no no
## 1610 33 blue-collar single basic.9y no yes no
## 1611 47 blue-collar single basic.4y no no no
## 1612 40 blue-collar married basic.9y unknown no no
## 1613 38 blue-collar married basic.4y unknown yes yes
## 1614 33 services married high.school unknown no no
## 1615 54 admin. married university.degree no no no
## 1616 51 services married high.school no yes no
## 1617 41 blue-collar single basic.9y no yes no
## 1618 51 blue-collar married high.school no no no
## 1619 55 services married high.school no yes no
## 1620 39 admin. single high.school no yes no
## 1621 37 self-employed married basic.9y no yes yes
## 1622 39 blue-collar married basic.9y no yes no
## 1623 33 management married university.degree no no yes
## 1624 33 management married university.degree no no no
## 1625 59 management married university.degree no no no
## 1626 55 technician married basic.9y unknown yes no
## 1627 53 blue-collar married basic.9y unknown yes no
## 1628 36 services married basic.6y no no no
## 1629 40 services married high.school no no no
## 1630 37 technician single professional.course no no no
## 1631 56 housemaid divorced high.school no no no
## 1632 32 admin. married high.school no yes no
## 1633 38 management married basic.9y unknown no no
## 1634 28 services married high.school unknown no no
## 1635 30 blue-collar married basic.9y no yes no
## 1636 45 management married basic.4y unknown yes no
## 1637 60 housemaid married high.school unknown no no
## 1638 32 student single university.degree no no no
## 1639 39 unemployed single basic.9y unknown yes no
## 1640 56 services married basic.4y unknown yes yes
## 1641 31 blue-collar married basic.9y no no no
## 1642 20 entrepreneur single high.school no no no
## 1643 42 blue-collar married basic.6y no no no
## 1644 46 admin. married university.degree no yes yes
## 1645 28 technician single university.degree unknown no no
## 1646 41 admin. single university.degree no no no
## 1647 33 admin. divorced basic.9y no no no
## 1648 43 admin. married university.degree unknown yes no
## 1649 43 admin. married university.degree unknown no no
## 1650 47 unemployed married high.school unknown yes no
## 1651 24 technician single professional.course no no no
## 1652 31 blue-collar married basic.4y no no no
## 1653 25 services divorced high.school no no no
## 1654 35 blue-collar married basic.6y no unknown unknown
## 1655 58 blue-collar married basic.4y unknown no no
## 1656 35 blue-collar married professional.course no yes yes
## 1657 35 blue-collar married basic.9y no no no
## 1658 25 admin. married high.school no no no
## 1659 31 blue-collar married basic.4y no no no
## 1660 39 admin. married basic.9y no no no
## 1661 39 blue-collar married basic.6y unknown yes yes
## 1662 37 blue-collar married basic.9y no yes yes
## 1663 36 unemployed divorced professional.course unknown yes no
## 1664 45 unemployed married high.school unknown yes no
## 1665 30 blue-collar married basic.9y no yes yes
## 1666 60 retired married high.school no no no
## 1667 37 admin. divorced university.degree no no no
## 1668 28 services single high.school no yes yes
## 1669 45 admin. married basic.9y unknown yes no
## 1670 31 entrepreneur single basic.9y no no no
## 1671 49 unemployed single professional.course unknown no no
## 1672 46 unknown married basic.4y unknown no no
## 1673 36 services divorced university.degree no no no
## 1674 33 technician divorced professional.course no yes no
## 1675 27 services single high.school unknown no no
## 1676 60 retired married university.degree unknown no no
## 1677 60 retired married university.degree unknown yes no
## 1678 27 services single high.school unknown no no
## 1679 39 blue-collar married high.school no yes no
## 1680 39 services married high.school no yes no
## 1681 35 unknown single basic.4y unknown no no
## 1682 56 admin. single high.school no no no
## 1683 39 admin. married university.degree no yes no
## 1684 35 entrepreneur married basic.9y no no no
## 1685 35 technician divorced high.school no no no
## 1686 58 management married unknown unknown yes no
## 1687 29 management single university.degree no yes no
## 1688 32 blue-collar married high.school no no yes
## 1689 35 management married university.degree no yes yes
## 1690 26 admin. married high.school no yes yes
## 1691 31 technician married professional.course no no no
## 1692 33 blue-collar married basic.6y unknown yes yes
## 1693 39 blue-collar divorced basic.9y no yes no
## 1694 49 blue-collar married basic.6y unknown yes no
## 1695 31 admin. married high.school no no no
## 1696 31 admin. married high.school unknown no no
## 1697 49 blue-collar married basic.4y no no no
## 1698 49 blue-collar married basic.4y no no no
## 1699 31 entrepreneur married basic.9y unknown no no
## 1700 36 management married basic.9y no no no
## 1701 52 management married professional.course no no no
## 1702 37 blue-collar single unknown unknown no no
## 1703 40 blue-collar divorced basic.9y no no no
## 1704 36 blue-collar single basic.4y no no no
## 1705 34 technician single professional.course unknown no no
## 1706 39 management single university.degree no no no
## 1707 39 management single university.degree no no no
## 1708 58 retired divorced university.degree no yes no
## 1709 56 services married high.school unknown no no
## 1710 29 blue-collar single basic.9y no no no
## 1711 39 admin. married high.school no no no
## 1712 31 technician married professional.course no no no
## 1713 60 management married university.degree unknown no no
## 1714 39 blue-collar married basic.6y no yes no
## 1715 49 admin. divorced high.school no yes no
## 1716 45 unemployed married high.school unknown no no
## 1717 32 blue-collar married high.school unknown yes no
## 1718 41 technician married high.school no no no
## 1719 32 services married high.school no no no
## 1720 46 services married professional.course no no no
## 1721 28 services single basic.9y unknown no no
## 1722 51 blue-collar married basic.9y no no no
## 1723 50 services single high.school no no no
## 1724 35 admin. married professional.course no yes yes
## 1725 24 services single high.school no yes no
## 1726 51 blue-collar married basic.9y no no yes
## 1727 59 admin. married university.degree no no yes
## 1728 33 technician married professional.course no no no
## 1729 36 unemployed single basic.4y unknown no no
## 1730 24 services single high.school no no no
## 1731 30 blue-collar single basic.9y no yes no
## 1732 49 admin. married university.degree unknown no no
## 1733 38 technician married professional.course no yes no
## 1734 34 admin. married university.degree no yes no
## 1735 25 technician single professional.course no yes yes
## 1736 35 unemployed married basic.9y unknown no no
## 1737 43 entrepreneur married high.school unknown yes no
## 1738 36 unemployed single basic.4y unknown no no
## 1739 36 unemployed single basic.4y unknown no no
## 1740 37 technician married professional.course unknown yes no
## 1741 36 self-employed married university.degree no no no
## 1742 32 admin. divorced high.school no yes no
## 1743 33 blue-collar single high.school no no no
## 1744 42 services married high.school no no no
## 1745 37 admin. married high.school no yes yes
## 1746 35 admin. married high.school no no no
## 1747 50 admin. married high.school unknown yes yes
## 1748 48 admin. married high.school no yes yes
## 1749 50 management single university.degree no yes yes
## 1750 39 technician divorced professional.course no yes no
## 1751 33 management single university.degree no no no
## 1752 29 admin. married high.school no no no
## 1753 33 admin. married high.school no yes no
## 1754 41 admin. single university.degree no yes no
## 1755 46 blue-collar married basic.4y no yes no
## 1756 27 services single high.school unknown no no
## 1757 42 admin. single basic.9y no no no
## 1758 44 admin. married high.school no yes no
## 1759 37 housemaid married high.school unknown no yes
## 1760 24 services single high.school no no yes
## 1761 30 blue-collar married basic.6y unknown yes no
## 1762 53 management married basic.4y no yes no
## 1763 36 entrepreneur married university.degree no no yes
## 1764 24 services single high.school no yes no
## 1765 49 entrepreneur married high.school no no no
## 1766 41 blue-collar married high.school no yes no
## 1767 40 admin. married high.school no yes yes
## 1768 40 housemaid married basic.4y no yes yes
## 1769 49 entrepreneur married high.school no no no
## 1770 25 admin. single high.school no yes no
## 1771 34 management married university.degree no yes no
## 1772 34 technician married professional.course no yes yes
## 1773 28 blue-collar single basic.6y no no no
## 1774 39 admin. married basic.9y no yes no
## 1775 34 technician married professional.course no no yes
## 1776 36 technician married professional.course no no no
## 1777 60 technician divorced professional.course unknown yes no
## 1778 32 retired married high.school no no no
## 1779 40 housemaid divorced high.school no no no
## 1780 56 blue-collar married basic.6y unknown no no
## 1781 36 technician married professional.course no yes no
## 1782 27 entrepreneur married university.degree no no no
## 1783 33 blue-collar single basic.9y unknown yes yes
## 1784 36 technician married professional.course no no yes
## 1785 47 blue-collar married basic.4y no no no
## 1786 47 blue-collar married basic.4y no yes no
## 1787 40 unemployed married basic.9y no yes yes
## 1788 30 blue-collar married basic.9y no yes no
## 1789 37 housemaid married basic.4y unknown yes yes
## 1790 39 technician married professional.course no no no
## 1791 58 blue-collar married basic.9y no no no
## 1792 32 admin. married university.degree no no yes
## 1793 34 blue-collar married basic.9y unknown yes no
## 1794 43 blue-collar married basic.4y unknown no no
## 1795 30 technician married professional.course no yes no
## 1796 52 admin. married university.degree no no no
## 1797 46 blue-collar divorced basic.9y no yes no
## 1798 32 admin. single university.degree no yes yes
## 1799 53 self-employed married university.degree no no no
## 1800 45 blue-collar married basic.9y unknown no no
## 1801 31 blue-collar married basic.9y no no no
## 1802 51 technician married professional.course no no no
## 1803 45 admin. married high.school no no yes
## 1804 32 admin. married high.school no no no
## 1805 43 admin. married high.school no yes no
## 1806 34 admin. married high.school no yes yes
## 1807 25 blue-collar single basic.4y no yes no
## 1808 41 management married unknown no yes no
## 1809 25 blue-collar single basic.4y no no no
## 1810 43 admin. married university.degree unknown yes no
## 1811 34 blue-collar married basic.9y unknown yes no
## 1812 44 admin. married basic.9y no no no
## 1813 59 admin. married university.degree no no no
## 1814 39 technician divorced professional.course no no no
## 1815 52 management married high.school unknown yes no
## 1816 50 blue-collar married basic.4y unknown unknown unknown
## 1817 42 admin. divorced university.degree no yes no
## 1818 30 technician married university.degree no no no
## 1819 49 services married high.school no yes no
## 1820 44 blue-collar single basic.6y unknown yes no
## 1821 41 technician married university.degree no yes no
## 1822 27 services single high.school no yes no
## 1823 32 admin. single university.degree no yes no
## 1824 27 admin. single high.school no yes no
## 1825 29 management single university.degree no no no
## 1826 53 admin. married university.degree unknown yes no
## 1827 30 blue-collar single basic.9y no yes no
## 1828 29 management single university.degree no yes no
## 1829 32 technician single university.degree no no no
## 1830 55 admin. divorced university.degree no yes no
## 1831 39 admin. married university.degree no yes no
## 1832 37 blue-collar single high.school no no no
## 1833 26 admin. married university.degree no yes yes
## 1834 52 self-employed married university.degree no no no
## 1835 28 admin. single university.degree no yes no
## 1836 33 management single university.degree no yes yes
## 1837 60 management married university.degree unknown no no
## 1838 45 blue-collar married basic.4y unknown yes yes
## 1839 32 admin. single university.degree no yes yes
## 1840 50 unemployed married basic.9y no yes no
## 1841 47 management divorced basic.4y no no no
## 1842 40 technician married university.degree no no no
## 1843 45 services married high.school no no no
## 1844 52 blue-collar married basic.9y unknown yes no
## 1845 43 management married unknown no no no
## 1846 40 blue-collar married basic.6y unknown yes no
## 1847 43 blue-collar single basic.9y no yes no
## 1848 28 blue-collar single basic.9y no yes no
## 1849 36 technician married professional.course no yes no
## 1850 37 services married high.school no yes no
## 1851 32 admin. single university.degree no no no
## 1852 26 technician married high.school no yes no
## 1853 35 admin. married high.school no yes no
## 1854 56 admin. married university.degree no no no
## 1855 56 blue-collar married basic.4y unknown no no
## 1856 37 entrepreneur single university.degree no no no
## 1857 43 technician single professional.course no no no
## 1858 41 housemaid married high.school no yes no
## 1859 55 unemployed single basic.4y unknown unknown unknown
## 1860 43 technician single professional.course no no no
## 1861 29 unknown married university.degree no unknown unknown
## 1862 31 services married high.school no yes no
## 1863 39 admin. single university.degree no no no
## 1864 38 blue-collar single basic.9y unknown yes no
## 1865 56 admin. married high.school no yes no
## 1866 36 entrepreneur married unknown unknown yes no
## 1867 54 management married basic.4y unknown no no
## 1868 34 admin. married university.degree no yes no
## 1869 28 services single basic.9y unknown yes no
## 1870 34 blue-collar married basic.4y no yes no
## 1871 45 blue-collar married basic.9y no yes no
## 1872 59 admin. married university.degree no yes no
## 1873 46 blue-collar married professional.course no yes no
## 1874 25 blue-collar married basic.9y no yes no
## 1875 33 admin. divorced university.degree no no yes
## 1876 27 admin. married university.degree no yes no
## 1877 33 admin. divorced university.degree no no no
## 1878 56 blue-collar married basic.4y unknown yes no
## 1879 25 admin. married high.school no yes no
## 1880 30 housemaid married high.school unknown yes no
## 1881 38 blue-collar divorced basic.9y no no yes
## 1882 37 self-employed single university.degree unknown yes no
## 1883 58 entrepreneur married university.degree unknown no no
## 1884 28 blue-collar married basic.6y unknown no no
## 1885 42 blue-collar married basic.9y unknown no no
## 1886 36 technician single professional.course unknown no no
## 1887 52 management married professional.course no unknown unknown
## 1888 33 technician single high.school no no yes
## 1889 33 management single university.degree no no no
## 1890 29 blue-collar single high.school unknown no no
## 1891 34 blue-collar married basic.9y no yes no
## 1892 50 management single university.degree no yes no
## 1893 38 management married university.degree no no no
## 1894 33 services married high.school no no no
## 1895 42 admin. married university.degree no no no
## 1896 52 self-employed married university.degree no yes no
## 1897 28 blue-collar married basic.9y unknown yes no
## 1898 56 services married high.school unknown yes no
## 1899 35 technician married professional.course no no no
## 1900 33 admin. married high.school unknown yes no
## 1901 32 blue-collar married basic.9y no yes no
## 1902 50 retired married basic.4y unknown yes no
## 1903 29 admin. single basic.9y unknown no no
## 1904 30 technician married professional.course no no yes
## 1905 46 blue-collar married basic.9y no yes yes
## 1906 26 admin. single high.school unknown yes no
## 1907 34 admin. single basic.9y no no no
## 1908 46 self-employed married basic.9y unknown yes no
## 1909 33 management married high.school no yes no
## 1910 50 housemaid divorced high.school no no no
## 1911 31 technician single basic.9y unknown no no
## 1912 48 blue-collar married professional.course no no no
## 1913 57 entrepreneur married high.school unknown yes no
## 1914 45 admin. divorced basic.9y unknown no no
## 1915 50 services married professional.course unknown yes no
## 1916 44 unknown single basic.9y unknown unknown unknown
## 1917 44 services married high.school no no no
## 1918 32 services married high.school no yes no
## 1919 37 housemaid single basic.9y unknown yes yes
## 1920 34 admin. single high.school no no no
## 1921 27 services married basic.9y no yes no
## 1922 40 housemaid single university.degree no yes no
## 1923 39 services married high.school unknown no yes
## 1924 29 admin. married high.school no yes no
## 1925 34 blue-collar married basic.6y unknown yes yes
## 1926 25 blue-collar married basic.9y no no no
## 1927 29 services married basic.9y no no no
## 1928 44 technician single professional.course no no no
## 1929 33 admin. single university.degree no yes no
## 1930 33 blue-collar married basic.4y no yes no
## 1931 40 blue-collar married high.school no no no
## 1932 59 retired married basic.4y unknown no no
## 1933 38 technician single professional.course no no no
## 1934 41 blue-collar married basic.6y unknown no no
## 1935 33 services married high.school no yes no
## 1936 36 admin. married high.school no yes no
## 1937 48 admin. married basic.9y no no yes
## 1938 44 services divorced high.school unknown yes no
## 1939 50 blue-collar divorced basic.9y no no no
## 1940 35 self-employed married professional.course no no no
## 1941 51 entrepreneur married basic.4y unknown no no
## 1942 24 blue-collar married basic.9y no yes yes
## 1943 32 management married high.school no yes no
## 1944 56 services divorced high.school unknown no no
## 1945 50 technician married university.degree no yes no
## 1946 38 blue-collar married high.school no no no
## 1947 25 self-employed single university.degree no unknown unknown
## 1948 28 services single high.school no unknown unknown
## 1949 41 blue-collar married basic.4y no no no
## 1950 34 blue-collar married unknown unknown unknown unknown
## 1951 27 services single high.school no no no
## 1952 31 admin. married university.degree unknown no no
## 1953 39 housemaid married basic.4y no yes yes
## 1954 26 entrepreneur married unknown no no no
## 1955 37 blue-collar married basic.6y unknown yes yes
## 1956 25 student single high.school no no no
## 1957 33 services married high.school no yes no
## 1958 40 blue-collar married unknown no no no
## 1959 37 entrepreneur single university.degree no no no
## 1960 46 housemaid married basic.9y no no no
## 1961 53 admin. divorced high.school no yes no
## 1962 32 unemployed married basic.9y no no no
## 1963 43 services divorced basic.9y no yes no
## 1964 38 technician single professional.course no yes no
## 1965 26 technician married professional.course no yes no
## 1966 52 blue-collar single basic.9y unknown yes no
## 1967 54 admin. married basic.4y unknown no no
## 1968 51 services married professional.course unknown no no
## 1969 42 admin. married basic.9y no yes no
## 1970 41 management single unknown no no no
## 1971 26 services single high.school no no no
## 1972 38 housemaid married basic.6y unknown yes no
## 1973 54 technician married unknown unknown no no
## 1974 41 blue-collar divorced basic.4y no no no
## 1975 26 blue-collar single high.school no no no
## 1976 43 management married basic.4y no yes no
## 1977 28 technician single professional.course no yes no
## 1978 35 technician divorced professional.course no no yes
## 1979 45 admin. married high.school no no yes
## 1980 40 admin. married high.school no no no
## 1981 37 technician married professional.course no yes no
## 1982 52 technician married university.degree no no no
## 1983 36 admin. married high.school no yes no
## 1984 40 blue-collar married basic.9y unknown yes no
## 1985 43 blue-collar married basic.4y no yes no
## 1986 36 blue-collar married basic.6y unknown no no
## 1987 36 blue-collar single high.school no no yes
## 1988 43 blue-collar married basic.4y unknown yes yes
## 1989 44 blue-collar married basic.9y unknown yes no
## 1990 49 blue-collar married professional.course unknown no no
## 1991 56 retired married basic.4y unknown yes yes
## 1992 39 blue-collar divorced basic.9y no no no
## 1993 29 blue-collar married professional.course unknown yes no
## 1994 41 admin. single university.degree unknown no no
## 1995 47 admin. married university.degree no yes no
## 1996 38 blue-collar married basic.6y unknown yes no
## 1997 36 technician married high.school no yes no
## 1998 46 technician divorced professional.course no yes no
## 1999 47 services divorced high.school no yes no
## 2000 47 blue-collar single basic.4y no yes no
## 2001 42 self-employed married university.degree no yes no
## 2002 42 management married university.degree unknown yes no
## 2003 59 management married university.degree no no no
## 2004 33 unemployed married professional.course unknown yes no
## 2005 48 entrepreneur married high.school no yes no
## 2006 53 technician single professional.course no yes no
## 2007 57 blue-collar married unknown unknown unknown unknown
## 2008 34 services married high.school unknown yes no
## 2009 51 services divorced professional.course no yes no
## 2010 39 blue-collar married basic.6y unknown yes no
## 2011 45 unknown married unknown unknown no no
## 2012 37 admin. married high.school no yes no
## 2013 44 blue-collar married basic.6y no yes no
## 2014 48 admin. married university.degree no no yes
## 2015 59 retired married university.degree unknown no no
## 2016 44 admin. single high.school no no no
## 2017 50 blue-collar married basic.9y unknown yes no
## 2018 35 services married high.school no yes no
## 2019 53 self-employed married university.degree no no no
## 2020 41 technician married professional.course unknown no no
## 2021 55 admin. married high.school no yes yes
## 2022 36 blue-collar married basic.4y unknown no no
## 2023 37 blue-collar married basic.4y no yes no
## 2024 36 management divorced high.school no no no
## 2025 45 management married basic.9y no yes yes
## 2026 35 admin. single basic.6y no yes no
## 2027 32 admin. married high.school no yes no
## 2028 43 blue-collar married basic.6y unknown yes no
## 2029 36 entrepreneur married university.degree no yes no
## 2030 55 admin. divorced university.degree no yes no
## 2031 55 technician divorced professional.course unknown yes no
## 2032 54 services married basic.4y unknown yes no
## 2033 39 housemaid married university.degree no yes no
## 2034 40 technician married professional.course unknown no no
## 2035 49 services married high.school unknown unknown unknown
## 2036 45 unemployed married high.school unknown no no
## 2037 32 admin. single university.degree no no no
## 2038 57 management divorced university.degree no yes no
## 2039 41 admin. divorced high.school no no no
## 2040 24 services single high.school no no no
## 2041 49 management divorced high.school unknown yes no
## 2042 49 management divorced high.school unknown no no
## 2043 59 retired single university.degree no no no
## 2044 44 blue-collar married professional.course no no no
## 2045 43 management married basic.6y unknown no no
## 2046 59 blue-collar married basic.4y unknown no no
## 2047 36 unemployed married unknown unknown no no
## 2048 49 technician divorced basic.9y unknown yes no
## 2049 39 entrepreneur divorced high.school no no no
## 2050 39 entrepreneur divorced high.school no no no
## 2051 33 blue-collar single high.school no no no
## 2052 42 blue-collar married professional.course no yes no
## 2053 33 management married university.degree no no no
## 2054 51 blue-collar married basic.4y unknown no no
## 2055 29 management single university.degree no yes yes
## 2056 35 admin. married university.degree no yes no
## 2057 29 student single high.school unknown no no
## 2058 34 management married university.degree unknown no no
## 2059 33 services married high.school unknown no no
## 2060 54 management divorced university.degree no no no
## 2061 56 services divorced high.school unknown no no
## 2062 34 blue-collar married basic.4y no yes no
## 2063 51 blue-collar married basic.4y no yes yes
## 2064 33 blue-collar married professional.course no no no
## 2065 39 admin. married university.degree no no no
## 2066 32 blue-collar married professional.course no no no
## 2067 37 admin. married university.degree unknown yes no
## 2068 47 technician divorced university.degree no no no
## 2069 26 technician married university.degree no no no
## 2070 26 self-employed married university.degree no no no
## 2071 25 blue-collar married high.school no no no
## 2072 52 entrepreneur married university.degree unknown no no
## 2073 59 blue-collar married basic.4y unknown no no
## 2074 39 blue-collar divorced high.school no no no
## 2075 31 blue-collar married basic.4y unknown no no
## 2076 56 housemaid divorced basic.4y unknown no no
## 2077 29 technician single university.degree no no no
## 2078 36 technician married university.degree no yes yes
## 2079 44 blue-collar married basic.4y unknown no no
## 2080 31 admin. divorced high.school no no no
## 2081 40 housemaid single university.degree no no yes
## 2082 34 technician single university.degree unknown no no
## 2083 56 entrepreneur married basic.4y no no no
## 2084 46 blue-collar married basic.4y unknown no yes
## 2085 38 services divorced high.school no no no
## 2086 42 management married university.degree no yes no
## 2087 42 management married university.degree no no no
## 2088 40 services married high.school unknown no no
## 2089 47 blue-collar married basic.4y unknown no no
## 2090 44 blue-collar married professional.course unknown yes no
## 2091 48 services married high.school no no no
## 2092 36 blue-collar single basic.9y no yes no
## 2093 31 blue-collar married basic.9y unknown yes no
## 2094 30 technician married university.degree no no no
## 2095 29 admin. single basic.9y unknown no no
## 2096 40 self-employed married university.degree unknown no no
## 2097 39 unemployed married university.degree no yes no
## 2098 35 technician married professional.course no yes no
## 2099 33 entrepreneur married high.school no no no
## 2100 48 unemployed married high.school unknown yes yes
## 2101 39 technician married professional.course no yes no
## 2102 41 admin. married university.degree no yes yes
## 2103 28 management single unknown no no no
## 2104 34 housemaid married university.degree no no no
## 2105 41 admin. single unknown no yes yes
## 2106 27 admin. single high.school unknown unknown unknown
## 2107 27 blue-collar married basic.9y unknown no no
## 2108 30 technician single professional.course no no no
## 2109 41 services married high.school unknown yes yes
## 2110 38 blue-collar married professional.course no no no
## 2111 37 entrepreneur single university.degree no yes no
## 2112 34 admin. single university.degree no yes no
## 2113 33 technician married basic.9y no yes no
## 2114 36 blue-collar single basic.9y unknown yes no
## 2115 33 technician married basic.9y no yes no
## 2116 36 technician married high.school no yes no
## 2117 33 technician married basic.9y no no no
## 2118 28 student single university.degree unknown yes no
## 2119 28 student single university.degree unknown yes no
## 2120 38 technician married professional.course no no no
## 2121 50 management divorced professional.course no no no
## 2122 32 management married high.school no yes no
## 2123 45 blue-collar married basic.4y no no no
## 2124 36 admin. married university.degree no no no
## 2125 30 blue-collar single basic.9y unknown unknown unknown
## 2126 41 blue-collar married basic.9y unknown no no
## 2127 34 blue-collar single basic.6y unknown yes no
## 2128 57 retired single high.school no no no
## 2129 50 blue-collar married high.school unknown no no
## 2130 57 retired single high.school no yes yes
## 2131 32 blue-collar married basic.4y unknown no no
## 2132 44 blue-collar married basic.4y no yes yes
## 2133 57 retired single high.school no unknown unknown
## 2134 46 technician married basic.9y no no no
## 2135 44 services married basic.4y unknown yes no
## 2136 32 blue-collar single basic.9y no no no
## 2137 41 entrepreneur married basic.6y no no no
## 2138 38 unemployed married basic.9y unknown no no
## 2139 33 technician married basic.9y no no no
## 2140 30 blue-collar single basic.9y no yes yes
## 2141 37 blue-collar divorced basic.4y unknown yes no
## 2142 51 blue-collar married basic.9y no no no
## 2143 52 management married university.degree unknown no no
## 2144 39 blue-collar married basic.9y no no no
## 2145 50 management married basic.9y no no no
## 2146 53 retired divorced basic.4y no no no
## 2147 51 technician married professional.course no yes yes
## 2148 40 admin. single university.degree no yes no
## 2149 55 blue-collar married basic.4y unknown yes no
## 2150 42 unemployed married basic.4y unknown yes no
## 2151 47 admin. divorced university.degree no yes no
## 2152 33 blue-collar married basic.9y unknown yes no
## 2153 37 self-employed divorced university.degree no yes yes
## 2154 37 self-employed divorced university.degree no yes no
## 2155 45 blue-collar married basic.4y unknown yes no
## 2156 30 admin. single high.school no unknown unknown
## 2157 30 admin. single high.school no no no
## 2158 38 blue-collar married basic.6y no no no
## 2159 31 services married high.school no yes no
## 2160 48 blue-collar married basic.9y no yes no
## 2161 29 admin. single high.school no yes no
## 2162 44 blue-collar married basic.9y unknown yes no
## 2163 38 blue-collar single basic.9y unknown yes no
## 2164 48 blue-collar married basic.9y no yes no
## 2165 41 blue-collar married basic.4y no yes no
## 2166 32 services married high.school no unknown unknown
## 2167 56 admin. married high.school no yes no
## 2168 39 technician married university.degree no yes no
## 2169 33 technician married professional.course no yes no
## 2170 31 admin. married high.school no no no
## 2171 54 retired divorced professional.course no no no
## 2172 26 services divorced professional.course no no no
## 2173 54 blue-collar married professional.course unknown yes yes
## 2174 45 management married professional.course no no no
## 2175 41 blue-collar divorced basic.6y no yes no
## 2176 35 admin. single university.degree no no yes
## 2177 28 admin. married high.school no yes no
## 2178 34 self-employed married university.degree no yes yes
## 2179 57 retired single high.school no no no
## 2180 35 admin. married high.school unknown no no
## 2181 39 technician married basic.6y no no yes
## 2182 30 services married professional.course unknown no no
## 2183 35 blue-collar married basic.9y no no no
## 2184 58 management married university.degree no no no
## 2185 34 blue-collar married basic.9y no no yes
## 2186 29 management single university.degree no yes no
## 2187 37 admin. married basic.4y no yes no
## 2188 25 blue-collar married basic.9y no yes no
## 2189 31 blue-collar married basic.9y no unknown unknown
## 2190 56 admin. married basic.9y unknown no no
## 2191 39 services married professional.course no no no
## 2192 27 blue-collar married basic.9y unknown no no
## 2193 52 management married university.degree unknown no no
## 2194 39 technician married university.degree no yes no
## 2195 34 management single university.degree no no no
## 2196 47 services divorced high.school no no no
## 2197 31 blue-collar married basic.6y no yes no
## 2198 33 admin. married high.school no yes yes
## 2199 36 blue-collar married basic.6y unknown no no
## 2200 31 services single high.school no unknown unknown
## 2201 36 blue-collar married basic.6y unknown yes no
## 2202 57 blue-collar married basic.4y unknown yes no
## 2203 41 management married high.school no no no
## 2204 40 admin. married basic.9y unknown yes yes
## 2205 40 services married high.school unknown yes no
## 2206 29 blue-collar married basic.9y no no no
## 2207 39 blue-collar married basic.9y no no no
## 2208 31 blue-collar single high.school unknown yes no
## 2209 50 blue-collar married basic.4y unknown yes no
## 2210 47 blue-collar married basic.4y no unknown unknown
## 2211 37 admin. married unknown no no no
## 2212 37 admin. married high.school no yes no
## 2213 32 unemployed married basic.9y no unknown unknown
## 2214 56 admin. married high.school no yes yes
## 2215 36 services married high.school unknown yes no
## 2216 51 technician married professional.course no yes no
## 2217 47 blue-collar divorced basic.4y no no yes
## 2218 54 technician married university.degree unknown no yes
## 2219 41 blue-collar married basic.4y unknown no no
## 2220 44 blue-collar married high.school unknown yes no
## 2221 41 admin. single university.degree unknown yes yes
## 2222 57 services divorced high.school no no no
## 2223 44 blue-collar married high.school no no no
## 2224 42 admin. single unknown no no no
## 2225 46 admin. divorced university.degree unknown no no
## 2226 35 services married high.school no no no
## 2227 54 unknown married unknown unknown no no
## 2228 35 admin. single basic.4y unknown no no
## 2229 37 technician married basic.9y unknown yes no
## 2230 52 housemaid married basic.4y unknown yes no
## 2231 41 admin. married basic.9y unknown yes no
## 2232 31 technician married professional.course no no no
## 2233 40 blue-collar divorced basic.6y no no no
## 2234 45 entrepreneur married basic.9y no no no
## 2235 47 management married university.degree no no no
## 2236 39 admin. married high.school no unknown unknown
## 2237 45 admin. divorced university.degree unknown yes no
## 2238 26 admin. single high.school no yes no
## 2239 36 blue-collar single basic.4y no yes no
## 2240 33 blue-collar married basic.9y no no no
## 2241 38 management married university.degree no yes no
## 2242 50 blue-collar married basic.4y unknown yes no
## 2243 37 blue-collar single high.school no no no
## 2244 39 blue-collar married basic.9y no no no
## 2245 36 admin. single high.school no yes yes
## 2246 35 admin. married high.school no yes no
## 2247 31 blue-collar married basic.9y no yes no
## 2248 31 unemployed single professional.course no no no
## 2249 32 blue-collar married basic.9y no no no
## 2250 51 entrepreneur divorced unknown no yes no
## 2251 39 blue-collar divorced basic.9y no yes no
## 2252 25 services married high.school no yes no
## 2253 40 housemaid single university.degree no no no
## 2254 28 services married high.school no yes no
## 2255 29 management married university.degree no no no
## 2256 57 blue-collar married professional.course unknown unknown unknown
## 2257 53 blue-collar married basic.9y unknown no no
## 2258 39 blue-collar married basic.9y unknown no no
## 2259 60 technician divorced professional.course unknown yes no
## 2260 42 blue-collar married basic.4y unknown no no
## 2261 30 admin. married university.degree no yes no
## 2262 34 technician married university.degree no no no
## 2263 43 technician single professional.course no no no
## 2264 38 blue-collar married basic.6y no yes no
## 2265 35 admin. single university.degree no yes no
## 2266 26 admin. single high.school no no no
## 2267 31 blue-collar married basic.9y no yes no
## 2268 55 unemployed married basic.4y unknown yes no
## 2269 59 housemaid married basic.4y unknown no yes
## 2270 28 blue-collar single basic.9y no unknown unknown
## 2271 48 blue-collar married basic.9y no yes no
## 2272 37 services married basic.9y no yes no
## 2273 35 blue-collar married basic.6y unknown no no
## 2274 30 admin. single high.school no yes yes
## 2275 30 admin. single high.school no no no
## 2276 32 admin. single university.degree unknown no no
## 2277 53 admin. married high.school no yes no
## 2278 34 blue-collar married basic.4y no no no
## 2279 51 unemployed married basic.9y unknown yes no
## 2280 43 admin. married high.school no yes no
## 2281 54 retired divorced basic.4y no yes no
## 2282 45 services single professional.course unknown no no
## 2283 46 management single university.degree no no no
## 2284 57 admin. divorced university.degree no yes no
## 2285 34 admin. divorced university.degree no no no
## 2286 33 housemaid married basic.4y no no no
## 2287 48 admin. married high.school no yes no
## 2288 37 unknown married university.degree no no yes
## 2289 33 self-employed married university.degree no yes no
## 2290 36 admin. single university.degree no no yes
## 2291 48 unknown married basic.4y unknown no no
## 2292 28 blue-collar single basic.9y no yes no
## 2293 30 admin. single university.degree no yes no
## 2294 31 management single university.degree no no no
## 2295 51 unemployed married basic.9y unknown no no
## 2296 26 admin. married high.school unknown no no
## 2297 40 blue-collar married basic.6y unknown no no
## 2298 40 blue-collar married basic.6y unknown yes no
## 2299 51 blue-collar divorced basic.4y no no no
## 2300 30 blue-collar single basic.9y no yes no
## 2301 34 entrepreneur married professional.course no yes no
## 2302 51 blue-collar divorced basic.4y no no no
## 2303 39 admin. single high.school unknown no no
## 2304 57 blue-collar married basic.4y unknown no yes
## 2305 33 technician divorced high.school no no no
## 2306 33 management married basic.4y no yes yes
## 2307 22 blue-collar single basic.6y unknown unknown unknown
## 2308 38 admin. married university.degree no unknown unknown
## 2309 56 technician married basic.4y unknown unknown unknown
## 2310 45 services married high.school no no no
## 2311 50 technician married professional.course no no no
## 2312 28 admin. married university.degree no yes no
## 2313 53 technician married professional.course unknown yes no
## 2314 39 self-employed married basic.4y unknown yes no
## 2315 33 technician divorced professional.course no no no
## 2316 38 management married basic.9y no yes no
## 2317 35 admin. single high.school no yes yes
## 2318 28 blue-collar married basic.9y unknown no no
## 2319 30 technician single university.degree unknown no no
## 2320 37 admin. single university.degree no no no
## 2321 42 housemaid married high.school unknown yes no
## 2322 35 services single high.school no no yes
## 2323 48 admin. divorced high.school no no yes
## 2324 41 technician married professional.course unknown yes no
## 2325 26 blue-collar married basic.9y no no no
## 2326 26 blue-collar single high.school unknown no no
## 2327 47 blue-collar married basic.4y unknown no yes
## 2328 58 retired married unknown no unknown unknown
## 2329 58 retired married unknown no unknown unknown
## 2330 54 management divorced university.degree no yes no
## 2331 38 blue-collar single basic.9y no yes no
## 2332 40 technician divorced university.degree no yes no
## 2333 35 admin. married university.degree no yes no
## 2334 35 blue-collar married basic.9y no no no
## 2335 34 admin. married professional.course no yes no
## 2336 28 technician married high.school no no no
## 2337 36 services single basic.9y no yes yes
## 2338 42 admin. single high.school no no no
## 2339 37 technician single university.degree no yes no
## 2340 45 services married basic.9y no no no
## 2341 48 self-employed married basic.9y unknown yes no
## 2342 53 technician married professional.course unknown yes no
## 2343 42 technician married basic.6y no yes no
## 2344 53 technician married professional.course unknown yes no
## 2345 53 technician married professional.course unknown yes yes
## 2346 33 blue-collar divorced basic.6y unknown yes no
## 2347 30 unknown single university.degree no no no
## 2348 34 admin. married university.degree no no no
## 2349 48 technician married high.school no no no
## 2350 34 admin. married university.degree no no no
## 2351 49 services divorced basic.9y no yes no
## 2352 48 technician married high.school no no yes
## 2353 38 blue-collar single university.degree unknown no no
## 2354 44 technician married professional.course unknown yes no
## 2355 36 blue-collar married basic.9y unknown no yes
## 2356 44 blue-collar divorced basic.4y unknown yes no
## 2357 50 self-employed married university.degree no yes yes
## 2358 38 blue-collar single university.degree unknown no no
## 2359 41 technician married professional.course no yes no
## 2360 45 blue-collar married basic.4y no no no
## 2361 53 admin. married university.degree no yes no
## 2362 36 entrepreneur married university.degree no yes no
## 2363 45 services married high.school no yes no
## 2364 34 services married basic.9y unknown yes no
## 2365 37 blue-collar married professional.course no no yes
## 2366 25 technician single university.degree no yes no
## 2367 35 admin. divorced university.degree no no yes
## 2368 34 admin. married university.degree no no no
## 2369 32 unknown married basic.6y unknown no no
## 2370 32 admin. divorced high.school no no no
## 2371 39 self-employed single university.degree no no no
## 2372 36 admin. married high.school no no yes
## 2373 46 entrepreneur married university.degree no yes no
## 2374 56 entrepreneur married university.degree no no no
## 2375 37 technician single basic.9y unknown no yes
## 2376 37 technician single basic.9y unknown no no
## 2377 39 blue-collar married high.school no yes no
## 2378 52 services married unknown unknown no no
## 2379 39 services married unknown unknown no no
## 2380 52 services married unknown unknown no no
## 2381 51 technician married professional.course unknown no no
## 2382 42 technician single unknown no no no
## 2383 34 technician married high.school no no yes
## 2384 28 blue-collar married basic.9y no yes no
## 2385 43 self-employed single professional.course unknown yes yes
## 2386 41 technician single professional.course no yes no
## 2387 54 technician married professional.course no no yes
## 2388 53 blue-collar married basic.9y no yes no
## 2389 47 admin. married university.degree unknown no no
## 2390 47 admin. married university.degree unknown no no
## 2391 39 blue-collar married basic.9y no no no
## 2392 37 services married high.school no no no
## 2393 40 technician married professional.course unknown no no
## 2394 35 services divorced professional.course unknown no no
## 2395 56 admin. divorced unknown unknown yes yes
## 2396 36 admin. married high.school unknown no no
## 2397 45 blue-collar married basic.4y unknown yes no
## 2398 38 technician single university.degree no yes yes
## 2399 41 technician married professional.course no no no
## 2400 37 blue-collar married professional.course unknown no no
## 2401 45 admin. single university.degree no no yes
## 2402 48 services married high.school unknown no no
## 2403 29 admin. single basic.9y unknown no no
## 2404 38 technician single university.degree no no no
## 2405 48 services married high.school unknown yes no
## 2406 40 blue-collar married high.school no no no
## 2407 38 blue-collar single university.degree unknown yes no
## 2408 42 blue-collar married basic.4y no no no
## 2409 32 blue-collar married basic.9y no no no
## 2410 56 admin. married unknown unknown yes no
## 2411 54 services married unknown no no no
## 2412 60 retired married basic.4y unknown no no
## 2413 47 admin. married high.school unknown yes no
## 2414 46 blue-collar married unknown unknown no no
## 2415 42 admin. single high.school no no no
## 2416 55 blue-collar married basic.4y unknown yes yes
## 2417 37 services married high.school no yes no
## 2418 38 technician single university.degree no no no
## 2419 45 technician married university.degree unknown yes no
## 2420 32 blue-collar married basic.6y no no yes
## 2421 37 blue-collar married professional.course unknown yes yes
## 2422 30 technician married university.degree no yes no
## 2423 36 blue-collar married high.school no no yes
## 2424 48 admin. married high.school no no no
## 2425 51 admin. single basic.6y no no no
## 2426 46 housemaid married basic.4y no no yes
## 2427 48 blue-collar divorced basic.4y unknown no no
## 2428 47 services married high.school unknown no no
## 2429 41 blue-collar married basic.4y unknown yes no
## 2430 53 retired single professional.course unknown yes no
## 2431 55 retired married basic.4y unknown yes no
## 2432 44 management married university.degree unknown no no
## 2433 48 blue-collar married basic.4y no yes no
## 2434 50 services married unknown unknown no no
## 2435 34 blue-collar married basic.9y no no no
## 2436 38 entrepreneur married basic.9y no no no
## 2437 42 unemployed single university.degree no no no
## 2438 57 retired married university.degree no yes no
## 2439 58 blue-collar divorced basic.4y no yes no
## 2440 48 management married university.degree unknown yes no
## 2441 32 admin. divorced high.school no no no
## 2442 35 admin. single university.degree no no no
## 2443 55 retired married basic.6y unknown no no
## 2444 47 blue-collar married basic.4y no yes yes
## 2445 31 services married basic.6y unknown no no
## 2446 38 technician married professional.course no yes no
## 2447 49 self-employed married professional.course no yes no
## 2448 33 self-employed divorced basic.9y no yes no
## 2449 27 admin. single university.degree no yes yes
## 2450 45 technician married university.degree no yes yes
## 2451 34 management divorced university.degree no yes no
## 2452 38 blue-collar married basic.4y unknown yes no
## 2453 45 technician single professional.course no no no
## 2454 28 admin. single unknown no no no
## 2455 54 blue-collar married basic.4y unknown no no
## 2456 58 retired married professional.course unknown no yes
## 2457 48 blue-collar married unknown unknown no no
## 2458 57 admin. divorced basic.9y unknown no no
## 2459 28 admin. married university.degree no unknown unknown
## 2460 49 blue-collar married basic.9y unknown no no
## 2461 60 retired married university.degree unknown unknown unknown
## 2462 39 services divorced basic.9y no no no
## 2463 40 self-employed married professional.course no no no
## 2464 58 unknown married basic.4y no no yes
## 2465 36 blue-collar married basic.9y unknown no no
## 2466 59 retired married university.degree no no no
## 2467 42 admin. married basic.6y no no no
## 2468 35 student single university.degree unknown no no
## 2469 42 blue-collar divorced high.school no no no
## 2470 37 blue-collar married high.school no yes no
## 2471 49 blue-collar married basic.4y unknown no no
## 2472 39 blue-collar married basic.9y unknown yes yes
## 2473 46 blue-collar married basic.9y unknown no no
## 2474 36 admin. married high.school no no no
## 2475 35 technician married professional.course no no no
## 2476 51 blue-collar married basic.4y unknown no no
## 2477 40 blue-collar divorced basic.9y unknown yes yes
## 2478 32 blue-collar married basic.9y no yes no
## 2479 42 admin. divorced university.degree no no no
## 2480 25 admin. single university.degree no no no
## 2481 46 blue-collar married basic.6y unknown yes no
## 2482 42 admin. married basic.6y no no no
## 2483 47 management married basic.4y unknown yes no
## 2484 56 admin. married high.school no no no
## 2485 27 blue-collar married basic.4y unknown no no
## 2486 47 housemaid married university.degree no no no
## 2487 30 management single university.degree no yes no
## 2488 48 admin. divorced high.school no no no
## 2489 45 management married unknown unknown yes no
## 2490 58 retired married high.school no yes no
## 2491 39 blue-collar married basic.9y unknown yes no
## 2492 54 admin. married university.degree no no no
## 2493 33 management single university.degree no yes yes
## 2494 58 retired divorced professional.course unknown yes no
## 2495 39 admin. married high.school unknown yes no
## 2496 49 self-employed married professional.course no yes no
## 2497 33 blue-collar married basic.9y no no no
## 2498 40 housemaid divorced unknown no no no
## 2499 49 services married high.school no yes no
## 2500 50 housemaid single unknown no yes no
## 2501 40 blue-collar single basic.9y no no no
## 2502 50 services married unknown unknown no no
## 2503 30 technician married university.degree unknown no no
## 2504 32 admin. married university.degree no yes no
## 2505 59 retired married basic.4y unknown no no
## 2506 53 technician married professional.course no no no
## 2507 43 admin. divorced basic.9y no unknown unknown
## 2508 48 self-employed married basic.9y unknown yes no
## 2509 47 unknown divorced basic.4y unknown no no
## 2510 53 blue-collar married basic.9y unknown yes no
## 2511 37 admin. married high.school unknown no no
## 2512 26 services single high.school no yes no
## 2513 38 technician single professional.course no yes no
## 2514 36 admin. married university.degree no no no
## 2515 45 admin. married basic.9y no yes no
## 2516 47 technician married basic.9y no yes no
## 2517 36 technician married professional.course no no yes
## 2518 47 technician married basic.9y no no no
## 2519 31 management married university.degree no no no
## 2520 29 blue-collar married basic.6y no no yes
## 2521 42 technician single unknown no no no
## 2522 41 services married basic.9y no yes yes
## 2523 27 technician single professional.course no yes no
## 2524 35 admin. single high.school no yes no
## 2525 49 blue-collar married basic.4y unknown yes no
## 2526 45 blue-collar married basic.4y no unknown unknown
## 2527 50 technician married basic.6y no yes no
## 2528 49 blue-collar married basic.9y no yes no
## 2529 27 blue-collar married basic.9y no yes no
## 2530 58 retired married professional.course unknown unknown unknown
## 2531 39 services married high.school no no no
## 2532 41 technician married basic.9y no yes no
## 2533 45 services married high.school unknown yes no
## 2534 48 blue-collar married basic.4y unknown yes no
## 2535 46 admin. divorced high.school unknown yes no
## 2536 49 blue-collar married basic.4y unknown no no
## 2537 33 services married high.school unknown no no
## 2538 46 blue-collar married basic.4y unknown no no
## 2539 51 retired married basic.4y unknown yes yes
## 2540 43 admin. married high.school no yes no
## 2541 51 admin. married high.school unknown no no
## 2542 43 blue-collar married basic.9y no no no
## 2543 38 blue-collar married basic.6y no no no
## 2544 56 unemployed married basic.9y unknown no yes
## 2545 34 services married high.school no yes yes
## 2546 35 admin. single university.degree no yes yes
## 2547 45 admin. married basic.9y unknown yes no
## 2548 43 technician married basic.9y unknown no yes
## 2549 47 services divorced high.school no unknown unknown
## 2550 49 unknown married unknown no no no
## 2551 36 housemaid married high.school no no no
## 2552 35 services married high.school no yes no
## 2553 27 blue-collar married basic.9y no unknown unknown
## 2554 54 retired married high.school unknown no no
## 2555 31 admin. married high.school unknown yes no
## 2556 33 blue-collar married basic.4y unknown no no
## 2557 29 management married university.degree no no no
## 2558 40 blue-collar married basic.6y unknown yes no
## 2559 36 admin. married university.degree no no no
## 2560 51 entrepreneur married basic.9y no yes no
## 2561 39 technician married professional.course no no no
## 2562 36 management married university.degree no no no
## 2563 30 services single high.school no no no
## 2564 36 blue-collar divorced high.school no no no
## 2565 37 technician married professional.course no no no
## 2566 46 housemaid married basic.4y no no no
## 2567 44 blue-collar married unknown no no yes
## 2568 30 management married university.degree no no no
## 2569 30 admin. single high.school no no no
## 2570 33 technician single high.school no no no
## 2571 54 management divorced university.degree no yes no
## 2572 44 blue-collar married unknown unknown no no
## 2573 39 blue-collar single unknown unknown no no
## 2574 35 services married high.school no no no
## 2575 55 technician married professional.course no no no
## 2576 29 admin. single high.school no yes no
## 2577 55 services married high.school no no no
## 2578 36 technician married university.degree no no no
## 2579 39 blue-collar married basic.6y no yes no
## 2580 58 admin. married basic.6y no yes no
## 2581 37 admin. single high.school no no no
## 2582 28 blue-collar single basic.6y unknown yes no
## 2583 34 management married university.degree no yes no
## 2584 54 retired divorced basic.4y no yes no
## 2585 27 management single university.degree no yes no
## 2586 31 entrepreneur single basic.9y no no no
## 2587 48 blue-collar married basic.4y no no no
## 2588 46 housemaid married basic.4y no no no
## 2589 40 technician single high.school no no no
## 2590 47 services married high.school unknown no yes
## 2591 47 blue-collar married professional.course unknown yes no
## 2592 58 entrepreneur married university.degree unknown no no
## 2593 51 self-employed married professional.course unknown yes yes
## 2594 36 blue-collar married basic.9y unknown no no
## 2595 36 admin. married high.school no yes no
## 2596 36 blue-collar single university.degree unknown yes no
## 2597 46 blue-collar married basic.4y unknown yes no
## 2598 50 services married high.school unknown yes no
## 2599 47 management divorced university.degree no no no
## 2600 60 retired married high.school unknown yes no
## 2601 36 services married high.school no no no
## 2602 25 self-employed single university.degree no no no
## 2603 40 entrepreneur married university.degree unknown yes no
## 2604 36 technician married unknown no yes no
## 2605 37 services married high.school unknown yes no
## 2606 46 blue-collar married unknown unknown yes no
## 2607 49 services married high.school no no yes
## 2608 42 technician married professional.course unknown no no
## 2609 37 blue-collar married high.school no no no
## 2610 36 technician married university.degree no yes yes
## 2611 57 blue-collar married basic.4y no yes yes
## 2612 39 services married basic.9y no yes no
## 2613 28 admin. married high.school no no no
## 2614 47 blue-collar married basic.4y no yes no
## 2615 42 blue-collar married basic.9y unknown yes no
## 2616 34 entrepreneur married professional.course no no no
## 2617 51 blue-collar married professional.course no no yes
## 2618 30 services single unknown no yes no
## 2619 33 admin. single university.degree no yes no
## 2620 58 blue-collar married basic.4y no yes no
## 2621 36 technician married basic.9y unknown no no
## 2622 39 blue-collar divorced basic.9y unknown no no
## 2623 31 services single high.school no no no
## 2624 45 services single professional.course unknown unknown unknown
## 2625 34 blue-collar single basic.4y no yes yes
## 2626 33 services divorced high.school no no no
## 2627 35 blue-collar married basic.6y unknown yes no
## 2628 39 technician married professional.course no no no
## 2629 42 technician single high.school unknown no no
## 2630 37 admin. married high.school no no no
## 2631 42 blue-collar single basic.9y no unknown unknown
## 2632 48 technician single unknown no unknown unknown
## 2633 29 admin. married high.school no no no
## 2634 59 retired married basic.9y no yes no
## 2635 32 blue-collar single basic.9y no no no
## 2636 31 services married basic.9y no no no
## 2637 52 management married basic.4y unknown yes no
## 2638 46 blue-collar married unknown no no no
## 2639 25 blue-collar married basic.9y no no no
## 2640 36 entrepreneur married basic.6y no yes no
## 2641 23 blue-collar married professional.course no yes no
## 2642 42 admin. single university.degree no yes no
## 2643 43 admin. married high.school no no no
## 2644 29 services single high.school no no yes
## 2645 45 admin. married high.school no yes no
## 2646 45 entrepreneur married university.degree no yes no
## 2647 27 technician single high.school unknown no yes
## 2648 35 admin. married high.school no yes no
## 2649 35 technician married professional.course no no no
## 2650 39 blue-collar divorced high.school no yes yes
## 2651 29 technician married professional.course no no no
## 2652 46 blue-collar divorced basic.4y unknown no no
## 2653 39 admin. married university.degree no no no
## 2654 34 blue-collar married basic.6y no no no
## 2655 44 entrepreneur divorced university.degree no yes no
## 2656 35 blue-collar married unknown no no no
## 2657 33 technician single professional.course no yes yes
## 2658 41 blue-collar single basic.9y unknown no no
## 2659 37 technician married university.degree no no no
## 2660 40 admin. single university.degree unknown yes no
## 2661 42 blue-collar divorced basic.9y no yes no
## 2662 55 blue-collar married basic.9y no yes no
## 2663 46 management married basic.6y unknown no no
## 2664 37 management married university.degree no yes no
## 2665 39 technician married professional.course no no no
## 2666 40 blue-collar married high.school no no no
## 2667 52 technician married high.school no yes yes
## 2668 43 management married university.degree no unknown unknown
## 2669 51 blue-collar married basic.4y no yes no
## 2670 45 management divorced basic.9y unknown no no
## 2671 40 management divorced university.degree unknown no no
## 2672 28 student single high.school unknown yes no
## 2673 33 admin. single high.school no unknown unknown
## 2674 47 self-employed married unknown unknown no no
## 2675 54 management divorced university.degree no yes no
## 2676 46 unknown married university.degree no no no
## 2677 36 admin. married high.school no no no
## 2678 46 unemployed married professional.course unknown yes no
## 2679 45 blue-collar divorced basic.9y no yes no
## 2680 46 management married university.degree no no yes
## 2681 30 services married unknown no no no
## 2682 55 management married unknown no yes yes
## 2683 45 admin. married basic.9y unknown yes yes
## 2684 45 admin. married high.school no yes no
## 2685 51 admin. married basic.4y unknown yes no
## 2686 31 admin. single university.degree no no no
## 2687 33 admin. married unknown no yes no
## 2688 45 services divorced high.school unknown yes no
## 2689 52 blue-collar married basic.4y unknown yes yes
## 2690 35 unemployed married university.degree no yes no
## 2691 50 admin. married high.school unknown yes no
## 2692 48 admin. married university.degree no yes yes
## 2693 41 management married unknown unknown yes no
## 2694 58 housemaid married university.degree unknown no no
## 2695 36 admin. single university.degree unknown no no
## 2696 44 blue-collar single basic.4y no no no
## 2697 38 blue-collar single university.degree no no no
## 2698 38 blue-collar married basic.6y unknown yes no
## 2699 53 blue-collar married basic.9y no no no
## 2700 37 blue-collar married basic.9y no yes no
## 2701 29 admin. single university.degree no no no
## 2702 35 services married high.school no no no
## 2703 59 entrepreneur married high.school no no no
## 2704 38 technician married basic.6y unknown yes yes
## 2705 34 technician single professional.course no no no
## 2706 28 blue-collar married basic.9y no yes no
## 2707 43 blue-collar married unknown unknown no yes
## 2708 45 blue-collar divorced basic.9y no yes yes
## 2709 31 blue-collar single basic.9y no no no
## 2710 34 blue-collar married basic.9y no no no
## 2711 50 management divorced high.school unknown no no
## 2712 38 technician single university.degree no no no
## 2713 39 technician married university.degree unknown no no
## 2714 41 technician married high.school no yes no
## 2715 29 blue-collar married basic.6y no no yes
## 2716 34 admin. single high.school no yes yes
## 2717 45 technician married professional.course unknown no no
## 2718 42 blue-collar married basic.4y unknown unknown unknown
## 2719 32 blue-collar married basic.9y no no no
## 2720 41 blue-collar married basic.4y no no no
## 2721 49 blue-collar married basic.4y no no no
## 2722 46 blue-collar married basic.4y unknown no no
## 2723 39 blue-collar married high.school unknown no no
## 2724 45 unknown married unknown unknown unknown unknown
## 2725 48 management married basic.4y unknown no no
## 2726 33 blue-collar married basic.9y no yes yes
## 2727 52 blue-collar married basic.6y no yes no
## 2728 44 blue-collar married basic.4y unknown no yes
## 2729 44 management married university.degree no no no
## 2730 33 unemployed divorced basic.9y no yes no
## 2731 57 blue-collar divorced professional.course no no no
## 2732 31 management married high.school no no no
## 2733 52 admin. married high.school no unknown unknown
## 2734 40 blue-collar single basic.9y unknown yes no
## 2735 37 admin. married university.degree no no yes
## 2736 39 blue-collar married basic.6y no no no
## 2737 34 self-employed single university.degree no yes no
## 2738 38 technician single professional.course unknown unknown unknown
## 2739 43 services married high.school no no no
## 2740 33 blue-collar married basic.9y no no yes
## 2741 51 services married high.school no yes no
## 2742 51 services married high.school no yes no
## 2743 50 housemaid married basic.9y unknown yes yes
## 2744 45 blue-collar married basic.9y unknown no yes
## 2745 27 admin. single high.school no yes no
## 2746 50 admin. married university.degree no yes no
## 2747 53 services married high.school unknown yes no
## 2748 42 management married university.degree unknown yes no
## 2749 41 admin. married high.school no yes no
## 2750 57 retired married university.degree unknown no no
## 2751 47 blue-collar single basic.9y no no yes
## 2752 29 housemaid married high.school no no no
## 2753 39 unemployed single university.degree no no yes
## 2754 33 services single basic.6y unknown yes no
## 2755 51 services married high.school unknown yes no
## 2756 37 blue-collar married basic.4y unknown yes no
## 2757 36 admin. married university.degree unknown yes no
## 2758 48 blue-collar married basic.4y no yes no
## 2759 44 technician single unknown unknown no no
## 2760 34 blue-collar single high.school unknown yes yes
## 2761 54 management married university.degree unknown no no
## 2762 40 housemaid divorced basic.6y unknown yes no
## 2763 52 management married professional.course no yes no
## 2764 33 unemployed divorced basic.9y no no no
## 2765 35 blue-collar married basic.9y no yes no
## 2766 43 unknown married high.school unknown no no
## 2767 38 services married high.school no no no
## 2768 55 admin. married high.school no no yes
## 2769 42 blue-collar married basic.4y no no no
## 2770 40 services single high.school no yes no
## 2771 49 admin. divorced basic.9y no yes no
## 2772 54 blue-collar married basic.9y unknown yes no
## 2773 49 blue-collar married basic.6y unknown yes yes
## 2774 37 services married high.school no yes no
## 2775 54 blue-collar married basic.9y no no no
## 2776 33 blue-collar married high.school no no no
## 2777 49 blue-collar married basic.9y no yes no
## 2778 36 blue-collar married basic.6y unknown no no
## 2779 48 entrepreneur married university.degree no yes no
## 2780 35 student married university.degree no yes no
## 2781 42 blue-collar divorced basic.6y unknown no no
## 2782 35 technician divorced professional.course no no no
## 2783 51 unemployed married professional.course no no no
## 2784 48 retired married basic.9y no no no
## 2785 50 admin. divorced basic.9y no yes no
## 2786 35 admin. married high.school unknown unknown unknown
## 2787 45 services married high.school unknown no no
## 2788 46 management divorced university.degree no unknown unknown
## 2789 29 services married high.school unknown unknown unknown
## 2790 39 management married university.degree no yes no
## 2791 34 entrepreneur married basic.4y no no no
## 2792 37 admin. married high.school no yes no
## 2793 26 services single high.school no no no
## 2794 52 blue-collar married basic.9y no no no
## 2795 42 admin. married basic.9y no yes no
## 2796 44 blue-collar divorced basic.4y unknown yes no
## 2797 55 blue-collar married basic.4y unknown yes no
## 2798 41 technician married basic.9y no no no
## 2799 53 services married high.school no no no
## 2800 39 admin. married basic.4y no yes no
## 2801 40 technician married professional.course no no no
## 2802 42 services married professional.course no yes no
## 2803 29 services divorced high.school no no no
## 2804 30 blue-collar divorced basic.9y no yes no
## 2805 41 housemaid married basic.6y no no no
## 2806 30 blue-collar divorced basic.9y no yes no
## 2807 52 blue-collar married basic.9y no yes no
## 2808 41 housemaid married basic.6y no no no
## 2809 34 technician divorced professional.course no no no
## 2810 40 admin. single high.school no no no
## 2811 34 blue-collar married basic.9y no no no
## 2812 42 blue-collar married basic.6y no yes no
## 2813 35 blue-collar married basic.9y no no yes
## 2814 28 entrepreneur married university.degree no no no
## 2815 29 services divorced high.school no no no
## 2816 50 housemaid divorced basic.4y unknown no no
## 2817 56 unemployed divorced high.school no yes no
## 2818 48 admin. divorced high.school no yes no
## 2819 29 admin. single university.degree no no no
## 2820 42 blue-collar married basic.6y no no no
## 2821 51 management married basic.4y no no no
## 2822 29 technician single professional.course no no no
## 2823 41 admin. single university.degree no yes no
## 2824 28 services single high.school no no no
## 2825 34 management married university.degree no yes no
## 2826 31 admin. married university.degree no no no
## 2827 47 blue-collar married basic.9y no yes no
## 2828 40 blue-collar married basic.4y unknown yes no
## 2829 31 blue-collar married basic.9y no no no
## 2830 39 unemployed married university.degree no no no
## 2831 52 blue-collar married basic.4y unknown yes yes
## 2832 50 technician married professional.course unknown yes no
## 2833 36 blue-collar married basic.6y no yes no
## 2834 56 blue-collar married basic.9y unknown no no
## 2835 35 unknown married basic.9y no no no
## 2836 29 admin. single university.degree no yes no
## 2837 29 blue-collar married professional.course no yes yes
## 2838 34 blue-collar single basic.9y no no yes
## 2839 29 blue-collar married high.school no no yes
## 2840 50 admin. married high.school unknown no no
## 2841 39 blue-collar married basic.4y unknown yes no
## 2842 29 blue-collar married professional.course no yes no
## 2843 41 admin. single high.school no yes yes
## 2844 34 blue-collar married high.school no no no
## 2845 43 technician divorced professional.course unknown unknown unknown
## 2846 48 admin. divorced high.school no yes no
## 2847 38 admin. married university.degree no no no
## 2848 32 admin. single high.school no no no
## 2849 35 admin. married high.school no no no
## 2850 39 blue-collar married basic.6y no no no
## 2851 47 blue-collar married basic.6y no no yes
## 2852 41 entrepreneur married basic.4y no no no
## 2853 41 management married unknown no no no
## 2854 40 blue-collar married high.school no no no
## 2855 43 unknown married university.degree no no no
## 2856 35 services married high.school no no no
## 2857 49 services married high.school no yes no
## 2858 40 services married high.school unknown yes no
## 2859 24 student single high.school unknown no no
## 2860 49 blue-collar married basic.9y unknown yes no
## 2861 41 management married university.degree unknown yes no
## 2862 44 admin. married university.degree no yes no
## 2863 28 services divorced high.school no yes no
## 2864 41 blue-collar married basic.9y no no no
## 2865 35 technician married university.degree no no no
## 2866 35 blue-collar single basic.6y unknown yes no
## 2867 32 blue-collar married basic.6y unknown yes yes
## 2868 45 admin. married university.degree no no no
## 2869 36 technician married professional.course no yes no
## 2870 41 technician married basic.9y no yes no
## 2871 40 admin. single high.school no yes no
## 2872 41 admin. single university.degree no no no
## 2873 43 blue-collar single basic.4y unknown no no
## 2874 38 technician married professional.course unknown yes no
## 2875 28 entrepreneur married basic.4y unknown yes no
## 2876 36 services single unknown no yes no
## 2877 28 entrepreneur married basic.4y unknown no no
## 2878 35 technician married professional.course no no no
## 2879 56 management married university.degree no no no
## 2880 25 blue-collar single basic.9y no yes no
## 2881 59 blue-collar married basic.4y no yes no
## 2882 28 entrepreneur married basic.4y unknown yes no
## 2883 56 services married basic.9y unknown no no
## 2884 33 admin. single university.degree no no no
## 2885 36 admin. divorced high.school no yes no
## 2886 41 technician married basic.9y no no no
## 2887 35 unknown married basic.9y no no yes
## 2888 24 services single high.school no yes no
## 2889 35 self-employed single basic.6y unknown no yes
## 2890 32 technician divorced professional.course no yes no
## 2891 29 technician married professional.course no no no
## 2892 31 blue-collar married basic.6y unknown yes no
## 2893 33 blue-collar married basic.6y unknown no no
## 2894 33 management married high.school unknown yes no
## 2895 42 admin. married professional.course no no no
## 2896 34 services married high.school unknown no no
## 2897 29 technician married professional.course no yes no
## 2898 38 blue-collar married basic.9y no no no
## 2899 45 blue-collar married basic.9y unknown no no
## 2900 33 admin. married university.degree no yes no
## 2901 42 blue-collar married basic.9y unknown yes no
## 2902 36 services married basic.6y no no no
## 2903 45 blue-collar married basic.4y no yes no
## 2904 32 services single high.school no no no
## 2905 37 admin. married university.degree no yes no
## 2906 40 blue-collar married basic.6y no yes no
## 2907 26 blue-collar married basic.6y no no no
## 2908 35 management married university.degree no yes yes
## 2909 35 management married university.degree no no no
## 2910 30 services married high.school unknown no no
## 2911 36 management married university.degree no yes no
## 2912 36 management married university.degree no no no
## 2913 40 blue-collar married unknown unknown no no
## 2914 26 student single university.degree no yes no
## 2915 54 housemaid divorced basic.4y unknown no no
## 2916 51 technician married professional.course no no no
## 2917 45 blue-collar single basic.9y no yes yes
## 2918 36 blue-collar married basic.9y no no no
## 2919 58 admin. divorced university.degree no no no
## 2920 33 entrepreneur married high.school no no no
## 2921 50 housemaid married basic.9y unknown no no
## 2922 33 blue-collar married basic.4y no yes yes
## 2923 31 services married high.school no no no
## 2924 34 admin. single high.school no no no
## 2925 34 unemployed single university.degree no no no
## 2926 30 admin. married high.school unknown no no
## 2927 27 student single university.degree no yes no
## 2928 30 services married high.school no no no
## 2929 23 services single high.school no no no
## 2930 33 admin. married high.school no yes yes
## 2931 23 services single high.school no no no
## 2932 36 blue-collar married basic.9y no yes yes
## 2933 42 admin. divorced university.degree no no no
## 2934 36 blue-collar married basic.9y no no no
## 2935 60 housemaid married high.school no unknown unknown
## 2936 26 entrepreneur single high.school no no no
## 2937 45 blue-collar divorced basic.4y unknown no no
## 2938 32 admin. married university.degree no no no
## 2939 37 services married high.school no no no
## 2940 40 blue-collar married basic.4y unknown no no
## 2941 36 admin. single university.degree no yes yes
## 2942 35 entrepreneur married basic.9y no yes no
## 2943 45 self-employed single professional.course unknown yes no
## 2944 48 admin. married university.degree unknown no no
## 2945 36 entrepreneur married basic.9y no no no
## 2946 37 technician divorced high.school no yes no
## 2947 36 blue-collar married basic.9y unknown no no
## 2948 56 blue-collar divorced basic.9y no yes no
## 2949 28 blue-collar single basic.9y no yes no
## 2950 43 blue-collar married basic.9y no no yes
## 2951 30 technician married professional.course unknown no no
## 2952 33 blue-collar single basic.9y unknown no no
## 2953 30 technician single professional.course no yes no
## 2954 33 technician divorced professional.course no no no
## 2955 42 technician married professional.course unknown no no
## 2956 30 blue-collar married basic.9y no yes no
## 2957 33 blue-collar married high.school no yes no
## 2958 39 admin. married high.school no no no
## 2959 37 blue-collar married basic.9y no no no
## 2960 41 self-employed married basic.9y no yes no
## 2961 53 self-employed married university.degree no yes no
## 2962 31 admin. single university.degree no no no
## 2963 47 technician married professional.course unknown no no
## 2964 46 blue-collar married basic.4y unknown no no
## 2965 52 admin. single basic.9y no no no
## 2966 28 technician single basic.9y no no no
## 2967 60 blue-collar married basic.9y unknown no no
## 2968 50 admin. married high.school no no yes
## 2969 31 technician married university.degree no no no
## 2970 39 blue-collar married basic.9y no yes no
## 2971 27 blue-collar single basic.6y no yes no
## 2972 33 blue-collar married basic.9y no no no
## 2973 47 services divorced high.school no no no
## 2974 39 admin. married high.school unknown yes no
## 2975 37 services married high.school unknown yes no
## 2976 32 services married high.school no no no
## 2977 37 blue-collar married basic.4y no yes no
## 2978 31 blue-collar married basic.9y no yes yes
## 2979 32 blue-collar married basic.9y no no no
## 2980 59 retired married professional.course unknown yes no
## 2981 48 technician married university.degree unknown yes no
## 2982 48 services married high.school no no no
## 2983 32 technician married professional.course no no no
## 2984 32 blue-collar single basic.9y unknown no no
## 2985 38 blue-collar married professional.course no yes no
## 2986 34 entrepreneur married high.school unknown no no
## 2987 44 blue-collar married basic.9y unknown yes no
## 2988 54 services divorced high.school unknown no no
## 2989 39 services married high.school no yes yes
## 2990 32 admin. single university.degree no no no
## 2991 43 services single high.school unknown yes no
## 2992 30 technician married professional.course no unknown unknown
## 2993 26 unemployed single basic.9y no no no
## 2994 38 admin. single university.degree no yes yes
## 2995 35 technician married professional.course no no no
## 2996 33 self-employed married basic.9y no yes no
## 2997 36 technician married professional.course no no no
## 2998 44 blue-collar married basic.4y no no no
## 2999 35 technician married professional.course no yes yes
## 3000 42 blue-collar married basic.4y no yes yes
## 3001 35 technician married professional.course no no no
## 3002 54 self-employed married professional.course unknown no no
## 3003 36 blue-collar married basic.9y no no no
## 3004 26 student single high.school no no no
## 3005 27 blue-collar married basic.9y no yes no
## 3006 44 blue-collar divorced basic.6y no no no
## 3007 28 services married unknown no no no
## 3008 53 retired divorced high.school no unknown unknown
## 3009 46 blue-collar married basic.9y unknown no no
## 3010 49 blue-collar married basic.4y unknown no no
## 3011 33 admin. married university.degree no no no
## 3012 30 student single unknown unknown no no
## 3013 29 admin. single high.school no yes yes
## 3014 51 self-employed married basic.4y unknown no yes
## 3015 55 admin. married high.school no yes no
## 3016 41 admin. single high.school no no no
## 3017 39 blue-collar divorced basic.9y no yes no
## 3018 49 management married university.degree no no no
## 3019 39 blue-collar divorced unknown no no no
## 3020 30 admin. married university.degree no yes no
## 3021 31 services married high.school no no no
## 3022 59 blue-collar divorced basic.4y no no no
## 3023 33 blue-collar single high.school no no no
## 3024 44 blue-collar married basic.4y no yes no
## 3025 28 services married high.school no yes yes
## 3026 26 blue-collar single basic.9y no no no
## 3027 28 blue-collar married basic.6y no yes yes
## 3028 32 technician single high.school no yes no
## 3029 47 services divorced high.school no yes no
## 3030 33 blue-collar married basic.9y no yes no
## 3031 28 student married university.degree no no no
## 3032 51 blue-collar divorced basic.9y unknown no no
## 3033 37 housemaid married university.degree unknown no no
## 3034 37 blue-collar married basic.4y unknown yes no
## 3035 34 blue-collar single basic.4y unknown no yes
## 3036 31 blue-collar married basic.9y no no yes
## 3037 38 self-employed single university.degree no no yes
## 3038 33 management married high.school no no no
## 3039 28 services married unknown no yes no
## 3040 41 admin. married high.school no no no
## 3041 29 technician married university.degree no yes no
## 3042 38 blue-collar married basic.4y unknown no no
## 3043 46 admin. married high.school no yes no
## 3044 36 blue-collar married unknown no no no
## 3045 59 retired married professional.course unknown no no
## 3046 44 management married university.degree unknown no yes
## 3047 34 technician married professional.course unknown no yes
## 3048 36 technician married professional.course no no no
## 3049 51 blue-collar married basic.6y unknown yes no
## 3050 36 services married high.school no no yes
## 3051 58 retired married basic.9y no no no
## 3052 39 entrepreneur married high.school unknown no yes
## 3053 42 blue-collar married basic.4y unknown no yes
## 3054 46 blue-collar married basic.9y unknown no yes
## 3055 46 admin. divorced university.degree no yes no
## 3056 41 admin. single university.degree no no no
## 3057 36 admin. married university.degree no no no
## 3058 60 retired married high.school no no no
## 3059 43 technician divorced basic.9y no no yes
## 3060 30 services married high.school no yes no
## 3061 43 admin. married university.degree no yes yes
## 3062 37 admin. married high.school unknown yes no
## 3063 52 self-employed married basic.4y unknown yes no
## 3064 41 admin. married university.degree no yes no
## 3065 39 services single high.school unknown no no
## 3066 29 unemployed single university.degree no no yes
## 3067 29 admin. single university.degree no yes yes
## 3068 55 technician married professional.course unknown no no
## 3069 33 blue-collar single basic.9y no no no
## 3070 41 self-employed single university.degree no yes no
## 3071 53 retired divorced professional.course unknown yes yes
## 3072 43 technician married professional.course no yes no
## 3073 51 services divorced basic.4y unknown yes no
## 3074 31 blue-collar married basic.6y unknown no no
## 3075 45 blue-collar married basic.4y unknown no no
## 3076 40 management married university.degree no no no
## 3077 30 blue-collar married basic.9y no no yes
## 3078 37 admin. married unknown no yes no
## 3079 56 services divorced high.school unknown no no
## 3080 29 admin. single high.school no yes no
## 3081 30 services married high.school no no no
## 3082 36 blue-collar married basic.9y no yes no
## 3083 32 admin. single basic.9y unknown no no
## 3084 41 admin. married basic.6y no no no
## 3085 35 blue-collar married unknown no yes no
## 3086 45 blue-collar married basic.9y unknown no no
## 3087 40 blue-collar divorced high.school unknown no no
## 3088 34 admin. single university.degree no yes no
## 3089 45 admin. married basic.6y no yes no
## 3090 31 admin. married high.school no no yes
## 3091 35 housemaid married basic.4y no no no
## 3092 58 blue-collar married basic.4y unknown yes no
## 3093 48 admin. married basic.9y unknown no no
## 3094 38 management married basic.6y unknown yes no
## 3095 39 admin. single university.degree unknown no no
## 3096 38 blue-collar married basic.6y unknown unknown unknown
## 3097 49 blue-collar single basic.4y no no no
## 3098 60 unknown married university.degree no no yes
## 3099 37 services married professional.course unknown no no
## 3100 48 technician married university.degree no no no
## 3101 37 admin. divorced basic.9y unknown no no
## 3102 30 technician divorced professional.course no yes no
## 3103 32 admin. married university.degree no yes no
## 3104 30 entrepreneur married university.degree no no no
## 3105 39 unemployed married high.school no no yes
## 3106 56 blue-collar married basic.4y unknown yes no
## 3107 37 self-employed married basic.9y no yes no
## 3108 37 admin. divorced high.school no yes no
## 3109 41 blue-collar married basic.6y no no no
## 3110 42 technician divorced basic.9y no no no
## 3111 52 entrepreneur married university.degree unknown no no
## 3112 42 technician divorced basic.9y no no no
## 3113 58 management divorced university.degree no no no
## 3114 32 services married basic.9y no no no
## 3115 26 technician married professional.course no no no
## 3116 28 services married basic.9y unknown unknown unknown
## 3117 31 blue-collar single unknown no no no
## 3118 31 services married high.school no yes no
## 3119 27 admin. single high.school unknown no no
## 3120 37 blue-collar married basic.9y no yes yes
## 3121 32 admin. single university.degree no no no
## 3122 33 admin. married university.degree no yes no
## 3123 35 technician single professional.course no yes yes
## 3124 32 housemaid married basic.4y no no no
## 3125 43 unknown married high.school unknown yes yes
## 3126 32 housemaid married basic.4y no yes no
## 3127 31 entrepreneur single basic.9y no no no
## 3128 51 blue-collar married basic.9y no no no
## 3129 38 technician single professional.course unknown yes no
## 3130 40 admin. divorced professional.course no yes no
## 3131 42 unemployed divorced high.school unknown yes yes
## 3132 45 housemaid married basic.6y unknown no no
## 3133 35 blue-collar single unknown no no no
## 3134 40 services married high.school no no no
## 3135 44 blue-collar single high.school no yes no
## 3136 31 admin. married high.school no no no
## 3137 30 blue-collar married basic.9y no no no
## 3138 33 blue-collar married basic.6y unknown no no
## 3139 28 blue-collar married basic.9y unknown no no
## 3140 36 technician married professional.course unknown yes no
## 3141 49 services divorced basic.6y unknown yes no
## 3142 31 technician married professional.course no yes no
## 3143 45 admin. divorced basic.6y no yes no
## 3144 29 services married high.school no yes no
## 3145 34 blue-collar single basic.9y no no no
## 3146 45 blue-collar married basic.4y unknown yes no
## 3147 30 blue-collar single basic.4y no no no
## 3148 38 technician married professional.course no no no
## 3149 33 admin. married university.degree no no no
## 3150 46 blue-collar married basic.9y no no no
## 3151 41 entrepreneur divorced university.degree no yes no
## 3152 44 blue-collar single basic.4y no yes no
## 3153 32 blue-collar married high.school unknown yes no
## 3154 46 housemaid married basic.4y no yes no
## 3155 35 blue-collar married basic.9y no unknown unknown
## 3156 44 technician married professional.course no yes no
## 3157 35 technician married professional.course no no no
## 3158 39 services single high.school unknown no no
## 3159 52 blue-collar married basic.4y no yes no
## 3160 44 blue-collar married basic.4y unknown no no
## 3161 53 unknown married high.school unknown no no
## 3162 33 services divorced high.school no yes no
## 3163 41 technician single university.degree unknown yes no
## 3164 33 admin. single university.degree no no no
## 3165 46 admin. single high.school no unknown unknown
## 3166 38 blue-collar married basic.4y unknown no no
## 3167 44 blue-collar divorced unknown no no yes
## 3168 57 retired unknown basic.4y no yes no
## 3169 45 management married unknown unknown no no
## 3170 55 unknown married unknown unknown yes no
## 3171 26 admin. married high.school no no no
## 3172 38 blue-collar divorced unknown no yes no
## 3173 41 technician married basic.9y no yes no
## 3174 53 retired divorced basic.4y no no no
## 3175 42 services divorced basic.6y no yes no
## 3176 56 technician married professional.course unknown no no
## 3177 41 management married high.school no no no
## 3178 49 blue-collar married basic.9y no no no
## 3179 31 admin. married high.school no no no
## 3180 37 self-employed married professional.course no yes no
## 3181 40 blue-collar married basic.6y unknown no no
## 3182 43 blue-collar married basic.4y no no no
## 3183 48 self-employed married university.degree unknown yes no
## 3184 45 admin. married high.school no yes no
## 3185 49 technician married high.school no yes no
## 3186 52 blue-collar married basic.9y no yes no
## 3187 35 blue-collar married basic.9y unknown no no
## 3188 52 technician married basic.9y no yes no
## 3189 59 retired married basic.4y unknown yes no
## 3190 34 admin. single high.school no yes no
## 3191 33 admin. single high.school no unknown unknown
## 3192 34 services married basic.6y no yes yes
## 3193 33 blue-collar married basic.6y no no no
## 3194 46 blue-collar married basic.4y no no yes
## 3195 37 technician single university.degree no yes no
## 3196 35 entrepreneur married basic.9y no no yes
## 3197 41 admin. married university.degree no yes no
## 3198 39 blue-collar married basic.6y unknown no no
## 3199 52 blue-collar married basic.4y unknown unknown unknown
## 3200 46 entrepreneur divorced university.degree no no no
## 3201 41 services married basic.9y no yes yes
## 3202 57 blue-collar married unknown unknown yes no
## 3203 54 admin. married university.degree no unknown unknown
## 3204 38 services single high.school unknown no yes
## 3205 48 admin. married high.school no no yes
## 3206 59 admin. married high.school no yes no
## 3207 42 blue-collar divorced basic.4y unknown yes no
## 3208 45 unknown married unknown no no yes
## 3209 40 housemaid single university.degree no no no
## 3210 50 admin. married high.school no no no
## 3211 49 services married basic.6y unknown yes no
## 3212 45 blue-collar married basic.4y no no no
## 3213 42 self-employed married university.degree no no no
## 3214 36 services married high.school no no no
## 3215 41 blue-collar divorced basic.9y unknown yes no
## 3216 47 blue-collar married basic.4y no yes no
## 3217 45 blue-collar married basic.4y no no no
## 3218 44 blue-collar married basic.6y unknown no no
## 3219 34 blue-collar married basic.9y unknown yes no
## 3220 39 blue-collar married basic.9y no no no
## 3221 45 admin. married basic.6y unknown yes no
## 3222 48 technician married professional.course no no no
## 3223 31 blue-collar single high.school no yes no
## 3224 45 self-employed married basic.6y unknown no no
## 3225 36 services married high.school unknown no no
## 3226 40 unemployed divorced high.school no no no
## 3227 34 blue-collar married basic.9y no no no
## 3228 33 technician married professional.course no no no
## 3229 40 admin. married high.school unknown no no
## 3230 55 blue-collar married basic.9y unknown no no
## 3231 30 management married university.degree no no no
## 3232 38 admin. married basic.6y no yes no
## 3233 36 blue-collar single basic.9y no no no
## 3234 34 admin. married high.school no no no
## 3235 55 technician divorced professional.course unknown yes yes
## 3236 34 admin. married high.school no yes yes
## 3237 34 blue-collar married basic.4y no no yes
## 3238 33 services married basic.4y no no no
## 3239 43 unemployed married university.degree unknown yes no
## 3240 46 admin. married university.degree no no no
## 3241 48 blue-collar married basic.6y no yes yes
## 3242 50 management married university.degree unknown no no
## 3243 48 entrepreneur married basic.4y no no no
## 3244 39 admin. single high.school unknown yes no
## 3245 30 management single university.degree no unknown unknown
## 3246 27 services single high.school unknown no no
## 3247 31 services married basic.6y unknown yes no
## 3248 55 blue-collar married basic.9y no no no
## 3249 42 unknown divorced high.school no no no
## 3250 35 services single high.school unknown yes no
## 3251 53 retired married basic.4y unknown yes no
## 3252 41 blue-collar single basic.9y no no no
## 3253 36 blue-collar single basic.4y no no no
## 3254 36 technician single university.degree no no no
## 3255 46 management married basic.9y no yes no
## 3256 57 technician divorced basic.4y no yes no
## 3257 53 services married high.school unknown no no
## 3258 36 blue-collar married unknown unknown no no
## 3259 48 blue-collar married basic.9y no no no
## 3260 49 blue-collar divorced basic.4y unknown no no
## 3261 58 self-employed married university.degree no no no
## 3262 36 unknown single basic.6y unknown no no
## 3263 34 admin. single high.school no no no
## 3264 42 admin. married university.degree no no no
## 3265 41 blue-collar married basic.9y no no no
## 3266 55 retired married professional.course no yes no
## 3267 43 blue-collar married basic.4y unknown no no
## 3268 59 technician married unknown no yes no
## 3269 37 admin. married high.school no yes no
## 3270 38 unknown married unknown unknown yes no
## 3271 46 blue-collar single basic.4y no no no
## 3272 52 technician married high.school no yes no
## 3273 53 unemployed divorced basic.9y unknown no no
## 3274 40 admin. married high.school unknown yes no
## 3275 45 unknown married unknown no no yes
## 3276 55 blue-collar married basic.9y unknown yes no
## 3277 54 management divorced university.degree no yes no
## 3278 32 housemaid single basic.4y no yes no
## 3279 36 admin. divorced university.degree no yes no
## 3280 32 housemaid single basic.4y no no no
## 3281 35 blue-collar single professional.course no yes no
## 3282 44 services married high.school unknown yes no
## 3283 37 services married high.school no no no
## 3284 38 blue-collar single basic.4y no yes no
## 3285 50 blue-collar single basic.9y unknown yes no
## 3286 38 blue-collar single basic.6y unknown yes no
## 3287 49 self-employed married professional.course no unknown unknown
## 3288 37 admin. divorced high.school no no no
## 3289 46 unknown married basic.6y unknown no no
## 3290 36 blue-collar married basic.9y unknown yes no
## 3291 47 blue-collar married basic.9y unknown yes no
## 3292 33 blue-collar married basic.4y unknown no no
## 3293 31 services married high.school no no no
## 3294 45 entrepreneur married university.degree no no no
## 3295 36 blue-collar married basic.9y no no no
## 3296 49 self-employed married basic.9y no yes no
## 3297 39 services married professional.course unknown yes no
## 3298 34 housemaid divorced basic.6y no no no
## 3299 39 technician married professional.course no no no
## 3300 26 admin. single high.school no yes no
## 3301 36 blue-collar married basic.4y no no no
## 3302 31 admin. single university.degree no yes no
## 3303 54 blue-collar divorced basic.4y no no no
## 3304 39 admin. married university.degree no no no
## 3305 32 admin. married university.degree unknown yes no
## 3306 43 technician divorced professional.course no yes no
## 3307 53 blue-collar married basic.4y no no no
## 3308 28 admin. single high.school no yes no
## 3309 50 blue-collar single basic.9y unknown yes no
## 3310 44 admin. single university.degree unknown no no
## 3311 45 housemaid divorced university.degree no yes no
## 3312 56 admin. divorced unknown unknown yes no
## 3313 35 unemployed divorced basic.4y no yes no
## 3314 31 housemaid married basic.4y unknown no no
## 3315 47 management divorced university.degree no yes no
## 3316 39 admin. single high.school unknown no no
## 3317 35 admin. single university.degree no no no
## 3318 24 student single high.school no no no
## 3319 31 entrepreneur married high.school no yes no
## 3320 39 entrepreneur single university.degree no yes no
## 3321 45 blue-collar married basic.9y unknown no no
## 3322 39 blue-collar single basic.4y no no no
## 3323 60 management married university.degree unknown yes no
## 3324 45 admin. married basic.9y unknown yes no
## 3325 35 technician married university.degree unknown yes no
## 3326 53 retired divorced high.school no no yes
## 3327 54 blue-collar divorced basic.4y no no no
## 3328 36 services single basic.6y unknown yes no
## 3329 39 services divorced basic.9y no yes no
## 3330 48 admin. married professional.course no yes no
## 3331 32 admin. married university.degree no no no
## 3332 36 blue-collar married professional.course no yes yes
## 3333 42 admin. single university.degree no no no
## 3334 36 blue-collar married basic.9y no no no
## 3335 49 blue-collar married basic.4y unknown yes no
## 3336 38 admin. divorced high.school no no no
## 3337 34 entrepreneur single unknown unknown yes no
## 3338 34 management married university.degree no yes no
## 3339 30 admin. married university.degree no yes no
## 3340 36 technician single professional.course no yes no
## 3341 48 admin. single university.degree no yes no
## 3342 32 management married basic.6y no yes no
## 3343 51 admin. married high.school no unknown unknown
## 3344 47 blue-collar married basic.4y no no yes
## 3345 43 technician divorced professional.course no no no
## 3346 29 services married high.school no yes yes
## 3347 44 blue-collar divorced unknown no no no
## 3348 38 blue-collar married basic.6y no yes no
## 3349 59 retired married professional.course no no no
## 3350 29 admin. single university.degree no no no
## 3351 35 unemployed married basic.4y unknown unknown unknown
## 3352 36 blue-collar single basic.9y no no yes
## 3353 33 services married high.school unknown yes no
## 3354 34 admin. divorced basic.9y no no no
## 3355 25 blue-collar single basic.9y unknown no no
## 3356 48 management married university.degree no yes no
## 3357 25 blue-collar single basic.9y unknown yes no
## 3358 25 blue-collar single basic.9y unknown yes no
## 3359 52 self-employed married basic.4y unknown yes no
## 3360 34 blue-collar single basic.9y unknown no yes
## 3361 27 unemployed married basic.9y no no no
## 3362 44 blue-collar married basic.4y no no yes
## 3363 36 blue-collar married basic.9y no no no
## 3364 40 blue-collar married basic.9y unknown yes no
## 3365 38 blue-collar married basic.6y unknown no no
## 3366 57 blue-collar married basic.4y unknown yes no
## 3367 45 unknown married unknown no yes no
## 3368 27 blue-collar single basic.6y unknown no no
## 3369 31 blue-collar married basic.6y no yes yes
## 3370 30 blue-collar single high.school no yes no
## 3371 31 admin. single high.school no no no
## 3372 58 blue-collar married basic.4y unknown yes yes
## 3373 40 admin. married unknown no no no
## 3374 44 admin. married university.degree unknown yes no
## 3375 42 management divorced university.degree no no no
## 3376 28 student single basic.4y no no no
## 3377 47 blue-collar married unknown unknown yes yes
## 3378 47 blue-collar married unknown unknown yes no
## 3379 58 retired divorced university.degree no yes no
## 3380 32 services single professional.course no yes no
## 3381 50 services single high.school unknown yes no
## 3382 53 technician married professional.course unknown yes no
## 3383 29 technician single professional.course no no no
## 3384 34 technician single professional.course no no no
## 3385 35 technician married unknown unknown no no
## 3386 32 services single professional.course no no no
## 3387 26 blue-collar single basic.6y no no yes
## 3388 27 blue-collar married basic.4y unknown no no
## 3389 47 technician married professional.course no yes no
## 3390 47 blue-collar married professional.course unknown no yes
## 3391 38 housemaid married high.school unknown no no
## 3392 41 admin. single unknown no yes no
## 3393 41 blue-collar married basic.4y no no no
## 3394 58 management married university.degree unknown no no
## 3395 24 services single high.school no no no
## 3396 51 management married university.degree unknown no yes
## 3397 26 entrepreneur married university.degree no no no
## 3398 28 blue-collar married basic.9y no no no
## 3399 49 admin. married high.school unknown no no
## 3400 55 blue-collar married basic.4y unknown yes no
## 3401 38 blue-collar single basic.9y no no no
## 3402 50 blue-collar married basic.6y unknown no no
## 3403 46 blue-collar married basic.4y unknown no no
## 3404 35 admin. married university.degree no no no
## 3405 30 technician single professional.course no no no
## 3406 39 entrepreneur married basic.9y unknown no no
## 3407 28 admin. divorced high.school no no yes
## 3408 46 blue-collar married basic.6y unknown no yes
## 3409 38 student single university.degree no no no
## 3410 34 management married university.degree no no yes
## 3411 44 technician married professional.course no yes no
## 3412 36 management married basic.9y no yes no
## 3413 40 admin. married university.degree no yes no
## 3414 32 admin. divorced high.school no yes no
## 3415 29 admin. married university.degree no yes no
## 3416 50 unemployed married professional.course no no no
## 3417 53 admin. divorced university.degree no yes yes
## 3418 46 management married basic.4y unknown no no
## 3419 57 blue-collar married basic.4y unknown yes no
## 3420 45 blue-collar married basic.4y no yes no
## 3421 57 admin. married university.degree no yes no
## 3422 29 technician married university.degree no no yes
## 3423 32 blue-collar married basic.9y no unknown unknown
## 3424 25 technician single university.degree no yes no
## 3425 43 admin. married university.degree unknown yes no
## 3426 26 unemployed single basic.9y no no yes
## 3427 34 admin. married university.degree no yes no
## 3428 33 blue-collar divorced basic.9y unknown no no
## 3429 37 technician single university.degree no no no
## 3430 34 technician married university.degree no yes no
## 3431 53 admin. married basic.9y no yes yes
## 3432 28 technician single professional.course no yes no
## 3433 48 blue-collar married basic.9y no yes no
## 3434 36 blue-collar married basic.4y unknown yes no
## 3435 54 admin. married high.school no yes yes
## 3436 44 technician married professional.course unknown no no
## 3437 44 services married high.school unknown yes no
## 3438 56 management married basic.6y no no yes
## 3439 35 unemployed married university.degree no no no
## 3440 37 blue-collar married basic.9y unknown no no
## 3441 43 admin. married university.degree unknown yes no
## 3442 31 self-employed married basic.9y no no no
## 3443 31 student single unknown unknown yes no
## 3444 31 blue-collar divorced basic.9y no no no
## 3445 38 technician married university.degree no yes no
## 3446 40 blue-collar single basic.4y unknown no no
## 3447 44 services married high.school no no no
## 3448 36 admin. married basic.6y no no no
## 3449 49 admin. divorced high.school no no no
## 3450 30 admin. married university.degree no yes no
## 3451 28 technician single university.degree no yes no
## 3452 48 technician single unknown unknown no no
## 3453 35 self-employed married university.degree unknown yes yes
## 3454 50 blue-collar married basic.9y no yes no
## 3455 49 management married university.degree no no yes
## 3456 50 self-employed married basic.4y unknown no no
## 3457 29 technician single professional.course no yes yes
## 3458 29 blue-collar married basic.6y no no no
## 3459 60 entrepreneur married basic.4y no unknown unknown
## 3460 41 entrepreneur married high.school unknown no no
## 3461 46 admin. married university.degree no no no
## 3462 54 retired divorced professional.course no yes no
## 3463 49 blue-collar married unknown no no no
## 3464 41 admin. married high.school no yes no
## 3465 26 unemployed single professional.course no no no
## 3466 43 admin. married university.degree no yes no
## 3467 40 services single high.school unknown yes no
## 3468 35 management married university.degree no no no
## 3469 34 admin. single high.school no no no
## 3470 36 admin. divorced university.degree no yes no
## 3471 50 blue-collar married unknown unknown no no
## 3472 45 technician divorced professional.course no yes no
## 3473 49 technician married university.degree no yes no
## 3474 59 admin. married high.school unknown yes yes
## 3475 35 blue-collar married basic.9y no no no
## 3476 41 blue-collar married basic.9y no yes no
## 3477 34 blue-collar married basic.9y no yes no
## 3478 56 blue-collar married basic.9y unknown yes no
## 3479 37 management unknown high.school no no no
## 3480 46 blue-collar married basic.6y unknown yes no
## 3481 50 retired married basic.4y unknown yes no
## 3482 46 admin. single high.school no no no
## 3483 39 blue-collar married basic.4y unknown no yes
## 3484 27 technician single professional.course no no no
## 3485 59 technician married basic.6y unknown no no
## 3486 55 blue-collar divorced basic.9y no yes no
## 3487 36 admin. single university.degree no no no
## 3488 57 management married university.degree no yes no
## 3489 58 retired married basic.6y unknown no no
## 3490 36 services married high.school no unknown unknown
## 3491 42 blue-collar married basic.4y unknown no no
## 3492 37 technician married university.degree no no no
## 3493 34 services married high.school no no no
## 3494 32 admin. married university.degree no no no
## 3495 40 technician married professional.course no no no
## 3496 48 blue-collar married high.school unknown no no
## 3497 56 blue-collar married basic.9y unknown no no
## 3498 25 admin. single high.school no no yes
## 3499 36 blue-collar married high.school no yes yes
## 3500 48 entrepreneur married basic.4y no no yes
## 3501 28 student single basic.9y unknown yes no
## 3502 55 unemployed married basic.4y unknown no no
## 3503 31 blue-collar married basic.9y no unknown unknown
## 3504 57 retired single high.school no yes no
## 3505 42 technician married high.school no no no
## 3506 44 admin. single high.school no yes no
## 3507 30 admin. single high.school no no yes
## 3508 30 blue-collar married basic.9y no yes no
## 3509 37 technician married professional.course no yes no
## 3510 45 blue-collar married basic.4y unknown yes no
## 3511 35 blue-collar married basic.4y no no no
## 3512 43 management married professional.course no no no
## 3513 32 services married high.school unknown yes no
## 3514 47 blue-collar divorced basic.9y unknown yes no
## 3515 31 services single high.school no yes no
## 3516 49 blue-collar married basic.6y no yes no
## 3517 36 admin. divorced university.degree no no no
## 3518 40 blue-collar single basic.9y no yes no
## 3519 47 services married high.school no unknown unknown
## 3520 29 unemployed single university.degree no no no
## 3521 58 self-employed divorced unknown no yes no
## 3522 37 blue-collar married basic.9y no yes no
## 3523 33 blue-collar single basic.9y unknown yes yes
## 3524 36 self-employed married basic.9y no yes yes
## 3525 46 unemployed married high.school unknown no no
## 3526 37 services married basic.9y unknown no yes
## 3527 33 entrepreneur married basic.9y unknown no no
## 3528 32 entrepreneur married high.school no no no
## 3529 36 admin. married university.degree no yes no
## 3530 28 blue-collar single basic.9y no no yes
## 3531 35 technician married university.degree no yes no
## 3532 47 entrepreneur married university.degree no yes no
## 3533 31 blue-collar divorced basic.6y no yes no
## 3534 51 blue-collar married high.school no no yes
## 3535 51 admin. married basic.6y unknown yes no
## 3536 34 blue-collar single university.degree no yes yes
## 3537 42 admin. married unknown no no no
## 3538 39 technician married professional.course no yes no
## 3539 32 services married high.school no no yes
## 3540 46 unemployed divorced high.school unknown yes yes
## 3541 37 services married high.school no yes no
## 3542 45 entrepreneur married university.degree no yes yes
## 3543 30 self-employed single high.school no yes no
## 3544 58 management married basic.9y no no no
## 3545 38 services married high.school no yes no
## 3546 35 admin. single high.school no no yes
## 3547 32 technician single professional.course no yes no
## 3548 25 services divorced basic.4y no yes no
## 3549 56 technician married professional.course no no yes
## 3550 41 unemployed married basic.9y unknown yes no
## 3551 39 admin. married university.degree no no no
## 3552 40 services divorced high.school no no no
## 3553 48 management married university.degree no no no
## 3554 53 blue-collar married basic.9y unknown yes no
## 3555 38 admin. single basic.9y no no no
## 3556 42 technician divorced professional.course unknown no yes
## 3557 37 blue-collar married high.school no no no
## 3558 26 admin. single high.school no yes no
## 3559 50 management married high.school unknown no yes
## 3560 50 management married university.degree unknown no no
## 3561 46 services married basic.4y unknown no no
## 3562 39 admin. single unknown no no no
## 3563 53 technician married high.school no no no
## 3564 57 management divorced university.degree no no no
## 3565 29 blue-collar single high.school no yes no
## 3566 35 admin. married university.degree no yes no
## 3567 44 management single university.degree unknown yes no
## 3568 46 admin. married high.school no no no
## 3569 57 retired married unknown unknown yes no
## 3570 41 admin. single university.degree unknown no no
## 3571 31 blue-collar married basic.6y unknown unknown unknown
## 3572 27 admin. single high.school no no no
## 3573 47 blue-collar married basic.6y unknown yes yes
## 3574 43 admin. divorced high.school no yes no
## 3575 56 blue-collar married basic.4y unknown yes yes
## 3576 51 blue-collar married basic.9y unknown no no
## 3577 45 technician married university.degree no yes no
## 3578 35 admin. single basic.4y unknown no no
## 3579 59 retired divorced basic.4y no yes no
## 3580 38 self-employed single university.degree no no no
## 3581 41 technician single professional.course no yes no
## 3582 29 blue-collar single basic.6y no no no
## 3583 50 housemaid divorced basic.4y unknown no no
## 3584 35 admin. married university.degree no yes no
## 3585 25 housemaid single basic.9y no no no
## 3586 44 management married university.degree no no no
## 3587 28 services single high.school no yes no
## 3588 45 admin. divorced university.degree no no no
## 3589 39 admin. married high.school no no no
## 3590 28 admin. single university.degree no yes no
## 3591 42 admin. single university.degree no yes no
## 3592 59 blue-collar married basic.4y no no no
## 3593 49 blue-collar married basic.4y unknown yes no
## 3594 24 student single high.school no unknown unknown
## 3595 49 admin. married unknown no yes no
## 3596 34 admin. married university.degree no yes no
## 3597 39 blue-collar married high.school no no no
## 3598 41 admin. married high.school no no no
## 3599 48 technician married professional.course unknown yes no
## 3600 39 blue-collar married basic.4y no no no
## 3601 41 blue-collar married basic.4y unknown no no
## 3602 48 admin. divorced basic.9y no yes no
## 3603 52 management divorced university.degree no no no
## 3604 35 technician married professional.course no yes no
## 3605 56 blue-collar single basic.6y no yes no
## 3606 54 blue-collar divorced unknown unknown yes no
## 3607 60 entrepreneur married basic.4y no no no
## 3608 34 technician married professional.course no no yes
## 3609 26 blue-collar single basic.9y no no no
## 3610 39 blue-collar married basic.4y unknown unknown unknown
## 3611 29 housemaid single high.school no no no
## 3612 38 technician married professional.course no yes no
## 3613 35 housemaid married basic.4y no no no
## 3614 32 blue-collar married basic.9y no no no
## 3615 47 blue-collar married high.school unknown no no
## 3616 50 blue-collar single basic.9y unknown no no
## 3617 24 services married high.school no no no
## 3618 53 blue-collar married basic.9y no no no
## 3619 34 blue-collar married basic.9y no no no
## 3620 57 retired married high.school unknown yes no
## 3621 26 student single unknown unknown no no
## 3622 52 technician married professional.course no no no
## 3623 40 admin. married university.degree no no no
## 3624 28 management married high.school unknown no no
## 3625 30 blue-collar single basic.4y unknown unknown unknown
## 3626 37 technician single university.degree no no no
## 3627 45 technician divorced professional.course no yes no
## 3628 26 blue-collar single high.school unknown no no
## 3629 40 entrepreneur married university.degree no no no
## 3630 44 blue-collar divorced basic.4y unknown yes no
## 3631 56 blue-collar married basic.9y unknown yes no
## 3632 57 management divorced university.degree no yes no
## 3633 33 services married high.school no yes no
## 3634 35 admin. divorced university.degree no yes no
## 3635 52 management married professional.course no no no
## 3636 48 technician single high.school no yes no
## 3637 44 technician single university.degree no yes no
## 3638 52 blue-collar married basic.9y no yes no
## 3639 48 technician married unknown unknown no yes
## 3640 43 blue-collar married basic.4y unknown no no
## 3641 39 admin. married high.school no yes no
## 3642 46 services married high.school unknown yes no
## 3643 50 blue-collar married basic.9y no yes no
## 3644 37 admin. married university.degree unknown no no
## 3645 29 entrepreneur married basic.6y no no no
## 3646 40 technician married professional.course unknown yes no
## 3647 31 blue-collar married basic.4y unknown no yes
## 3648 36 services married high.school unknown yes no
## 3649 25 blue-collar single basic.4y no no no
## 3650 33 blue-collar single basic.9y unknown yes no
## 3651 32 admin. married university.degree no no no
## 3652 52 services divorced unknown unknown yes yes
## 3653 52 self-employed single basic.4y unknown yes no
## 3654 30 entrepreneur married high.school no yes no
## 3655 28 admin. single high.school no yes no
## 3656 42 blue-collar married basic.6y unknown no no
## 3657 41 management married university.degree no no no
## 3658 35 services married high.school unknown no no
## 3659 59 blue-collar married basic.4y unknown no no
## 3660 34 blue-collar married basic.4y no no no
## 3661 42 management married university.degree no yes yes
## 3662 49 admin. divorced high.school no yes no
## 3663 39 management married university.degree no no no
## 3664 24 services married high.school no no yes
## 3665 53 unemployed married basic.4y unknown no no
## 3666 29 admin. single university.degree no yes no
## 3667 26 blue-collar single high.school no yes no
## 3668 53 blue-collar divorced basic.4y unknown no no
## 3669 35 admin. married high.school no yes yes
## 3670 32 services married high.school no no yes
## 3671 37 management married university.degree no unknown unknown
## 3672 36 entrepreneur married university.degree no no yes
## 3673 32 blue-collar married basic.9y unknown yes no
## 3674 33 admin. married university.degree no yes no
## 3675 27 services married high.school no yes no
## 3676 28 admin. married university.degree no no no
## 3677 41 housemaid married high.school no no no
## 3678 26 admin. single high.school no no no
## 3679 40 blue-collar married basic.6y unknown no no
## 3680 56 retired married professional.course unknown no no
## 3681 33 admin. married high.school no yes yes
## 3682 58 admin. divorced basic.9y unknown yes no
## 3683 36 admin. married university.degree no yes no
## 3684 49 blue-collar married basic.4y unknown no no
## 3685 59 retired divorced basic.9y unknown yes no
## 3686 37 blue-collar single basic.9y unknown no no
## 3687 29 blue-collar single basic.9y no yes no
## 3688 32 services married professional.course no yes no
## 3689 53 blue-collar married basic.6y no yes no
## 3690 48 technician married high.school unknown yes no
## 3691 56 blue-collar married basic.4y unknown yes no
## 3692 37 services single basic.9y no yes no
## 3693 43 self-employed single professional.course unknown no no
## 3694 37 admin. single high.school no yes no
## 3695 46 blue-collar married basic.6y no no no
## 3696 28 blue-collar single basic.9y no no no
## 3697 44 housemaid married basic.9y no no no
## 3698 38 blue-collar single university.degree unknown no no
## 3699 31 admin. single basic.9y no yes no
## 3700 31 blue-collar single basic.9y no yes no
## 3701 36 technician married professional.course no no yes
## 3702 51 admin. single basic.6y no yes no
## 3703 29 technician married university.degree no no no
## 3704 28 admin. single university.degree no yes no
## 3705 49 self-employed married professional.course no no no
## 3706 30 technician married university.degree no yes no
## 3707 36 services married basic.9y unknown no no
## 3708 36 blue-collar married basic.4y unknown yes no
## 3709 57 blue-collar married basic.4y unknown no no
## 3710 40 blue-collar married basic.4y unknown no no
## 3711 52 blue-collar married basic.4y no no no
## 3712 29 blue-collar single unknown no no no
## 3713 45 management married university.degree no no no
## 3714 55 retired married basic.4y unknown no no
## 3715 52 management married university.degree no yes no
## 3716 24 admin. married high.school no yes no
## 3717 44 blue-collar divorced basic.4y unknown yes yes
## 3718 46 services divorced high.school no no no
## 3719 25 student single high.school no no no
## 3720 33 blue-collar single basic.9y no yes no
## 3721 29 services single basic.9y no no no
## 3722 44 admin. single university.degree no yes no
## 3723 41 blue-collar married basic.9y unknown no no
## 3724 50 technician married professional.course no no no
## 3725 41 blue-collar married basic.9y unknown no no
## 3726 48 admin. single university.degree no no yes
## 3727 26 services single high.school no no no
## 3728 48 unknown married basic.4y unknown no no
## 3729 47 blue-collar married basic.9y unknown yes no
## 3730 36 admin. married university.degree no no no
## 3731 54 technician divorced basic.9y unknown no no
## 3732 26 admin. single university.degree unknown no no
## 3733 35 technician married basic.9y no no no
## 3734 54 services divorced high.school unknown yes no
## 3735 51 services married basic.6y no no no
## 3736 28 technician single professional.course no no no
## 3737 52 services married university.degree no no no
## 3738 31 admin. married basic.9y unknown yes no
## 3739 28 services single high.school no yes no
## 3740 32 blue-collar married basic.9y no no no
## 3741 46 admin. divorced university.degree no no no
## 3742 38 admin. married university.degree no yes no
## 3743 36 blue-collar married basic.9y no no no
## 3744 31 admin. married university.degree no yes no
## 3745 38 management married university.degree no no no
## 3746 35 admin. married high.school unknown yes no
## 3747 39 housemaid married high.school no yes no
## 3748 31 housemaid divorced high.school no yes no
## 3749 39 self-employed married high.school no yes no
## 3750 36 housemaid married high.school no no no
## 3751 29 services married basic.9y unknown no no
## 3752 37 management married university.degree no no no
## 3753 28 blue-collar married basic.9y no yes no
## 3754 41 management married unknown no no no
## 3755 38 services married high.school unknown yes no
## 3756 31 technician married university.degree no no no
## 3757 50 blue-collar married basic.4y unknown yes no
## 3758 36 admin. married basic.9y no no no
## 3759 40 management married unknown no no no
## 3760 37 admin. married university.degree no no no
## 3761 28 unemployed single high.school no no no
## 3762 50 services divorced basic.4y unknown unknown unknown
## 3763 38 housemaid married basic.9y no no no
## 3764 43 blue-collar married basic.9y unknown no no
## 3765 37 technician married high.school no yes no
## 3766 47 blue-collar divorced basic.9y unknown no no
## 3767 52 technician married high.school unknown no no
## 3768 30 admin. single university.degree no no no
## 3769 33 admin. divorced high.school no yes no
## 3770 43 blue-collar married basic.4y unknown yes no
## 3771 52 technician married basic.9y no no no
## 3772 44 blue-collar married basic.6y unknown yes no
## 3773 48 management married university.degree no yes no
## 3774 40 admin. divorced professional.course no no no
## 3775 35 student single high.school no no yes
## 3776 56 management married basic.4y unknown unknown unknown
## 3777 53 technician married high.school no no no
## 3778 33 blue-collar married professional.course no yes no
## 3779 54 retired married basic.9y unknown no no
## 3780 35 technician married professional.course no no no
## 3781 33 services single high.school no no no
## 3782 36 services single basic.9y no yes no
## 3783 41 housemaid married university.degree unknown no no
## 3784 48 blue-collar married professional.course no no no
## 3785 35 admin. married university.degree no no no
## 3786 42 admin. single university.degree no yes no
## 3787 35 admin. married university.degree no yes no
## 3788 34 admin. married high.school no yes yes
## 3789 29 management single university.degree no yes no
## 3790 32 admin. single university.degree no yes no
## 3791 31 blue-collar married basic.9y no yes yes
## 3792 46 blue-collar married basic.4y no yes no
## 3793 25 blue-collar single basic.4y no yes no
## 3794 28 admin. single university.degree no yes no
## 3795 48 technician single university.degree unknown yes no
## 3796 42 retired married basic.9y unknown no no
## 3797 32 technician divorced professional.course no yes no
## 3798 30 admin. married university.degree no yes no
## 3799 32 services single high.school no no no
## 3800 28 services single basic.9y no yes no
## 3801 28 blue-collar married basic.9y no yes no
## 3802 40 blue-collar married basic.6y no yes no
## 3803 46 blue-collar married basic.9y unknown yes no
## 3804 38 entrepreneur married basic.6y no no no
## 3805 47 blue-collar married basic.4y no no no
## 3806 37 services married high.school no no no
## 3807 55 technician married basic.4y unknown yes no
## 3808 28 admin. single university.degree no yes no
## 3809 43 blue-collar single basic.9y no yes no
## 3810 56 unknown married unknown unknown yes no
## 3811 33 management single university.degree no no yes
## 3812 33 blue-collar married basic.9y no no yes
## 3813 35 admin. divorced university.degree no yes no
## 3814 41 blue-collar divorced basic.6y no unknown unknown
## 3815 59 entrepreneur divorced high.school unknown yes no
## 3816 29 services single university.degree no no no
## 3817 30 self-employed married basic.9y no yes no
## 3818 39 admin. single high.school unknown yes no
## 3819 51 retired married university.degree no yes yes
## 3820 34 blue-collar married basic.9y no no no
## 3821 31 technician single professional.course unknown yes yes
## 3822 36 blue-collar married basic.9y unknown yes yes
## 3823 46 technician married basic.9y no yes no
## 3824 31 technician married university.degree no no no
## 3825 37 technician married professional.course unknown yes no
## 3826 30 self-employed single high.school no yes yes
## 3827 47 admin. married high.school no no no
## 3828 41 blue-collar married high.school no yes no
## 3829 27 services single high.school no yes yes
## 3830 27 blue-collar divorced unknown no yes no
## 3831 39 blue-collar divorced basic.6y unknown no no
## 3832 32 services married high.school no no no
## 3833 42 blue-collar married basic.4y unknown yes yes
## 3834 37 services married high.school no no no
## 3835 41 blue-collar married basic.6y unknown yes no
## 3836 51 blue-collar married basic.9y unknown no no
## 3837 48 technician married high.school no no no
## 3838 36 technician married basic.9y no no no
## 3839 50 management single university.degree no no no
## 3840 25 admin. married high.school no yes no
## 3841 49 blue-collar married basic.9y unknown no no
## 3842 44 self-employed single basic.6y unknown yes no
## 3843 52 entrepreneur married university.degree unknown yes no
## 3844 33 self-employed single university.degree no yes no
## 3845 48 admin. divorced professional.course no yes no
## 3846 42 blue-collar married basic.9y unknown no no
## 3847 35 management married university.degree no yes no
## 3848 45 management married university.degree no no no
## 3849 28 admin. married high.school no yes no
## 3850 56 entrepreneur married university.degree no yes no
## 3851 60 retired married basic.9y unknown yes no
## 3852 37 admin. married high.school no no yes
## 3853 38 entrepreneur married basic.9y no no no
## 3854 41 self-employed married high.school unknown no no
## 3855 57 services divorced high.school no yes yes
## 3856 23 services married basic.9y no no no
## 3857 33 admin. married high.school no yes no
## 3858 48 blue-collar married basic.9y no yes no
## 3859 38 technician married university.degree unknown yes no
## 3860 32 blue-collar married basic.4y unknown yes no
## 3861 31 management married high.school no no no
## 3862 43 blue-collar divorced basic.9y no yes no
## 3863 44 management married high.school no yes no
## 3864 44 admin. married university.degree unknown no no
## 3865 33 services married high.school no no yes
## 3866 36 admin. married basic.9y no no no
## 3867 47 technician married professional.course unknown no no
## 3868 30 admin. married university.degree no no no
## 3869 34 blue-collar married basic.9y unknown no yes
## 3870 28 admin. single high.school no no no
## 3871 46 blue-collar married basic.9y no no yes
## 3872 32 blue-collar married basic.4y no no no
## 3873 36 retired married high.school no no no
## 3874 24 student single university.degree no yes yes
## 3875 35 blue-collar married basic.4y no yes no
## 3876 31 admin. single university.degree no no no
## 3877 51 admin. divorced university.degree unknown no no
## 3878 33 admin. married university.degree no no no
## 3879 28 services single basic.9y no yes no
## 3880 43 blue-collar married unknown unknown no no
## 3881 43 blue-collar married basic.6y no no no
## 3882 33 self-employed married university.degree no yes no
## 3883 31 services married basic.9y no yes no
## 3884 39 admin. married professional.course no no no
## 3885 52 self-employed married university.degree no yes no
## 3886 24 student single high.school unknown yes yes
## 3887 30 admin. single university.degree unknown no yes
## 3888 28 blue-collar married basic.9y no no yes
## 3889 28 blue-collar married basic.9y no no no
## 3890 41 technician single university.degree unknown yes no
## 3891 39 blue-collar married basic.9y no no no
## 3892 37 technician married basic.9y no no no
## 3893 51 blue-collar married basic.4y no no yes
## 3894 50 management married university.degree unknown unknown unknown
## 3895 53 technician married high.school no no yes
## 3896 53 technician married unknown no yes no
## 3897 52 blue-collar married basic.4y no no yes
## 3898 33 services married high.school no no no
## 3899 36 self-employed single university.degree no yes no
## 3900 41 blue-collar married basic.9y unknown no no
## 3901 43 admin. divorced high.school no no no
## 3902 39 self-employed married basic.4y unknown no no
## 3903 43 technician divorced university.degree unknown no no
## 3904 56 blue-collar married basic.4y unknown yes yes
## 3905 52 admin. married university.degree no no yes
## 3906 36 technician married professional.course no yes no
## 3907 35 self-employed divorced basic.9y no no yes
## 3908 30 services married high.school no yes no
## 3909 30 management divorced high.school no yes no
## 3910 36 housemaid married basic.4y unknown no no
## 3911 38 admin. divorced high.school no yes no
## 3912 38 blue-collar married basic.6y no yes no
## 3913 39 entrepreneur divorced university.degree no yes no
## 3914 34 management married high.school no no no
## 3915 35 unknown single basic.4y unknown yes yes
## 3916 59 retired married basic.4y unknown yes no
## 3917 32 blue-collar married basic.9y no yes no
## 3918 37 blue-collar single professional.course no no no
## 3919 52 self-employed single university.degree unknown yes no
## 3920 29 technician married professional.course no yes no
## 3921 44 blue-collar married basic.6y no yes yes
## 3922 41 blue-collar married basic.4y unknown no no
## 3923 37 services divorced high.school no yes no
## 3924 46 admin. married high.school unknown yes yes
## 3925 49 services single basic.4y unknown no no
## 3926 46 admin. divorced university.degree no no no
## 3927 40 admin. single unknown unknown no yes
## 3928 32 student single university.degree no no no
## 3929 40 self-employed married high.school unknown no no
## 3930 28 technician divorced professional.course no no no
## 3931 40 blue-collar married basic.6y unknown yes no
## 3932 32 admin. single professional.course no no no
## 3933 47 management married basic.4y unknown yes no
## 3934 38 blue-collar married basic.9y no yes yes
## 3935 32 management single high.school no yes no
## 3936 34 admin. single high.school no no yes
## 3937 53 technician married professional.course unknown yes yes
## 3938 36 technician married university.degree no yes no
## 3939 45 entrepreneur married basic.4y unknown no no
## 3940 47 management married basic.4y unknown no no
## 3941 44 blue-collar divorced basic.6y no no no
## 3942 44 blue-collar divorced basic.9y no no no
## 3943 37 admin. married high.school no yes no
## 3944 47 services married unknown unknown yes yes
## 3945 58 retired divorced university.degree no yes no
## 3946 28 services single high.school no yes no
## 3947 46 technician married professional.course no no no
## 3948 48 admin. married high.school no yes no
## 3949 41 blue-collar married professional.course no no no
## 3950 32 blue-collar single basic.6y no yes no
## 3951 48 technician married unknown no yes no
## 3952 49 management married university.degree no no no
## 3953 27 services single high.school no yes no
## 3954 55 blue-collar married basic.4y unknown yes no
## 3955 46 admin. married professional.course no no no
## 3956 47 technician married professional.course no unknown unknown
## 3957 42 admin. divorced university.degree no no no
## 3958 51 blue-collar married basic.9y unknown no no
## 3959 57 retired married basic.4y unknown yes no
## 3960 32 services single basic.6y no yes yes
## 3961 54 blue-collar married basic.4y unknown yes yes
## 3962 33 admin. married professional.course no no no
## 3963 50 blue-collar married basic.6y no no no
## 3964 45 services divorced high.school unknown yes no
## 3965 49 services divorced basic.9y no no no
## 3966 47 management married basic.4y unknown no no
## 3967 45 services married basic.9y no no yes
## 3968 36 technician married professional.course no yes no
## 3969 38 blue-collar married basic.4y no no no
## 3970 30 self-employed single high.school no yes no
## 3971 41 management married university.degree unknown yes no
## 3972 31 technician single university.degree unknown yes yes
## 3973 35 blue-collar married basic.6y no yes yes
## 3974 36 technician married basic.6y no yes no
## 3975 51 services married high.school unknown yes yes
## 3976 41 management married university.degree no no no
## 3977 37 blue-collar married basic.9y no yes no
## 3978 36 management married basic.9y no unknown unknown
## 3979 35 student single high.school no no no
## 3980 57 technician married professional.course no yes no
## 3981 28 admin. single university.degree no yes no
## 3982 54 housemaid divorced basic.4y no no no
## 3983 38 admin. single university.degree unknown yes no
## 3984 52 management divorced high.school no unknown unknown
## 3985 43 blue-collar married basic.4y unknown no yes
## 3986 30 student single basic.9y no no no
## 3987 51 blue-collar married basic.4y unknown yes no
## 3988 31 technician married university.degree no no no
## 3989 45 blue-collar married unknown no yes yes
## 3990 42 blue-collar married basic.4y no yes no
## 3991 37 blue-collar married basic.6y no no no
## 3992 49 blue-collar married basic.4y unknown yes no
## 3993 34 blue-collar married basic.9y unknown yes yes
## 3994 50 services married basic.6y no yes no
## 3995 47 services divorced high.school no no no
## 3996 44 unknown married basic.6y no yes yes
## 3997 42 blue-collar married basic.9y no yes no
## 3998 31 blue-collar married basic.9y no unknown unknown
## 3999 52 management married high.school unknown no no
## 4000 56 housemaid married basic.4y no no no
## 4001 36 blue-collar married basic.6y unknown unknown unknown
## 4002 45 admin. married university.degree no no no
## 4003 31 self-employed married university.degree no no yes
## 4004 39 housemaid married university.degree no no no
## 4005 45 blue-collar married basic.6y unknown yes no
## 4006 46 self-employed married basic.9y unknown no no
## 4007 32 blue-collar married basic.6y unknown yes no
## 4008 29 management single university.degree no yes yes
## 4009 41 blue-collar married basic.9y no no no
## 4010 35 admin. married university.degree no yes yes
## 4011 29 services married basic.9y no yes no
## 4012 34 admin. married university.degree no no no
## 4013 31 blue-collar single basic.9y no no no
## 4014 36 technician single professional.course no no yes
## 4015 41 technician married university.degree no no no
## 4016 59 retired married basic.9y unknown no no
## 4017 45 unemployed married basic.6y unknown no no
## 4018 31 blue-collar married basic.9y no yes no
## 4019 25 services married high.school unknown yes yes
## 4020 38 management married unknown no no no
## 4021 32 blue-collar divorced basic.9y no no no
## 4022 33 admin. single high.school unknown yes no
## 4023 35 self-employed married university.degree no unknown unknown
## 4024 37 blue-collar married professional.course no no no
## 4025 47 technician married professional.course no no no
## 4026 28 blue-collar married basic.6y no no no
## 4027 36 admin. married high.school no no no
## 4028 32 admin. married university.degree no yes no
## 4029 36 blue-collar single high.school no yes yes
## 4030 51 blue-collar married basic.4y no yes yes
## 4031 32 admin. married high.school no no no
## 4032 50 unemployed married basic.4y unknown yes no
## 4033 48 services divorced high.school unknown yes yes
## 4034 32 admin. married high.school unknown yes no
## 4035 48 blue-collar married basic.9y no no no
## 4036 52 technician divorced basic.9y no yes yes
## 4037 30 blue-collar single basic.9y unknown no yes
## 4038 36 blue-collar single basic.9y no no no
## 4039 48 admin. married university.degree no yes no
## 4040 25 blue-collar single basic.9y unknown yes no
## 4041 28 admin. single high.school no no no
## 4042 28 self-employed single basic.9y no no no
## 4043 34 blue-collar married basic.6y no no no
## 4044 39 admin. married basic.4y no no no
## 4045 42 services married professional.course no no no
## 4046 57 retired married basic.4y no yes no
## 4047 44 admin. married basic.4y unknown no no
## 4048 28 admin. single basic.9y no yes yes
## 4049 25 self-employed single university.degree no no no
## 4050 29 housemaid single high.school no no no
## 4051 28 services married high.school no no no
## 4052 41 admin. divorced university.degree unknown yes no
## 4053 28 self-employed married professional.course no no no
## 4054 32 admin. married high.school no no no
## 4055 49 blue-collar married basic.4y unknown yes no
## 4056 59 technician married university.degree unknown unknown unknown
## 4057 55 admin. married university.degree no no no
## 4058 43 management married university.degree no unknown unknown
## 4059 58 retired married basic.4y unknown no no
## 4060 54 blue-collar married basic.4y unknown no no
## 4061 25 blue-collar married basic.4y no no no
## 4062 24 technician single professional.course unknown no no
## 4063 53 self-employed married university.degree no no no
## 4064 36 admin. married university.degree no no no
## 4065 49 housemaid married basic.4y no no no
## 4066 44 entrepreneur married professional.course no no no
## 4067 51 blue-collar married basic.4y no unknown unknown
## 4068 37 housemaid married high.school no yes yes
## 4069 41 blue-collar married basic.9y no no no
## 4070 40 blue-collar married basic.9y no yes no
## 4071 35 services married professional.course unknown yes yes
## 4072 24 services single professional.course no yes no
## 4073 34 technician married university.degree no yes no
## 4074 30 blue-collar married basic.9y no no no
## 4075 48 services married high.school unknown yes yes
## 4076 27 blue-collar married basic.9y no yes no
## 4077 40 admin. divorced professional.course no no no
## 4078 40 admin. married university.degree unknown yes yes
## 4079 48 admin. married basic.9y unknown no yes
## 4080 35 admin. single high.school no yes yes
## 4081 26 admin. married high.school no no yes
## 4082 33 admin. married university.degree no no no
## 4083 29 services single university.degree unknown yes no
## 4084 45 blue-collar married basic.4y unknown yes yes
## 4085 35 admin. married university.degree no yes no
## 4086 32 blue-collar married basic.9y no yes no
## 4087 34 blue-collar married basic.9y no yes no
## 4088 33 services single high.school no no yes
## 4089 37 blue-collar married basic.9y unknown no no
## 4090 29 admin. single basic.9y unknown no no
## 4091 27 student single university.degree no yes no
## 4092 43 services divorced high.school no yes no
## 4093 47 blue-collar married professional.course unknown no no
## 4094 32 housemaid single high.school no unknown unknown
## 4095 33 unemployed divorced professional.course no unknown unknown
## 4096 26 unemployed married high.school no yes no
## 4097 39 blue-collar married basic.4y unknown yes no
## 4098 38 blue-collar married basic.6y unknown yes yes
## 4099 48 blue-collar married professional.course no no no
## 4100 42 entrepreneur married university.degree no no no
## 4101 35 blue-collar divorced basic.9y no yes yes
## 4102 42 blue-collar divorced basic.6y no yes no
## 4103 36 blue-collar single basic.9y unknown no no
## 4104 28 blue-collar married basic.9y no no yes
## 4105 32 technician single basic.9y no yes no
## 4106 28 blue-collar divorced high.school no yes no
## 4107 41 blue-collar divorced basic.9y no no no
## 4108 32 admin. married university.degree unknown unknown unknown
## 4109 42 blue-collar divorced basic.9y no unknown unknown
## 4110 29 technician single university.degree no unknown unknown
## 4111 38 services married high.school no yes no
## 4112 22 services single high.school no yes no
## 4113 34 blue-collar married basic.9y no no no
## 4114 31 blue-collar married basic.9y unknown yes yes
## 4115 52 entrepreneur married university.degree no no no
## 4116 55 services divorced high.school no no yes
## 4117 24 services single high.school no no no
## 4118 46 admin. divorced high.school unknown no yes
## 4119 31 admin. divorced university.degree no no no
## 4120 34 admin. married university.degree no no no
## 4121 45 entrepreneur married basic.9y no no no
## 4122 45 blue-collar married basic.9y unknown yes no
## 4123 39 technician divorced professional.course no unknown unknown
## 4124 29 technician single university.degree no unknown unknown
## 4125 44 technician divorced high.school no yes no
## 4126 29 technician single university.degree no yes no
## 4127 32 technician married professional.course no no yes
## 4128 32 technician single high.school no yes yes
## 4129 48 technician divorced professional.course no no yes
## 4130 29 technician single university.degree no yes no
## 4131 32 blue-collar married professional.course no yes no
## 4132 38 blue-collar single basic.4y no yes no
## 4133 28 unemployed single high.school no yes yes
## 4134 46 blue-collar married basic.4y no unknown unknown
## 4135 46 management married basic.9y unknown no no
## 4136 27 admin. single university.degree no yes no
## 4137 26 blue-collar married basic.4y no yes no
## 4138 33 blue-collar married basic.9y no yes no
## 4139 28 management married university.degree no no no
## 4140 52 management married basic.4y unknown no no
## 4141 35 admin. single university.degree no no no
## 4142 33 blue-collar married basic.9y no unknown unknown
## 4143 46 blue-collar married basic.9y no yes no
## 4144 26 services married high.school no no no
## 4145 39 services married high.school unknown no no
## 4146 47 admin. married university.degree no no no
## 4147 26 blue-collar married basic.4y no no yes
## 4148 34 blue-collar married professional.course no yes no
## 4149 24 admin. single high.school no yes no
## 4150 31 technician married professional.course no no no
## 4151 26 admin. single high.school no no yes
## 4152 31 admin. married high.school no no no
## 4153 34 blue-collar married basic.6y no yes no
## 4154 60 admin. married professional.course no yes no
## 4155 32 blue-collar married basic.6y unknown yes no
## 4156 24 blue-collar married basic.9y no yes no
## 4157 28 admin. married high.school no no no
## 4158 55 entrepreneur divorced university.degree no yes yes
## 4159 38 admin. divorced high.school no no no
## 4160 37 blue-collar married professional.course no yes no
## 4161 36 services divorced university.degree no no no
## 4162 47 technician married professional.course unknown yes no
## 4163 49 technician married professional.course unknown yes no
## 4164 31 blue-collar married basic.4y no yes no
## 4165 52 services married high.school unknown yes no
## 4166 36 services married high.school unknown yes no
## 4167 51 blue-collar married basic.6y unknown yes no
## 4168 52 services divorced high.school no no no
## 4169 29 technician married professional.course no yes no
## 4170 51 services married professional.course unknown no no
## 4171 31 blue-collar married basic.9y no yes no
## 4172 36 admin. married high.school no no no
## 4173 42 services married basic.9y unknown no no
## 4174 32 management single basic.4y no no no
## 4175 30 technician single professional.course no yes no
## 4176 27 blue-collar married basic.9y no yes no
## 4177 47 management married basic.4y unknown no no
## 4178 56 blue-collar married basic.4y unknown yes no
## 4179 57 housemaid married basic.6y no no yes
## 4180 27 services married professional.course no yes no
## 4181 46 blue-collar divorced basic.4y no no no
## 4182 43 technician single professional.course no yes no
## 4183 44 technician single professional.course unknown no no
## 4184 52 self-employed married university.degree unknown yes no
## 4185 38 technician single professional.course no no no
## 4186 48 blue-collar married basic.6y no no no
## 4187 31 technician married basic.9y unknown yes no
## 4188 33 management married university.degree no yes no
## 4189 37 blue-collar single university.degree no yes no
## 4190 34 blue-collar married basic.9y no yes no
## 4191 59 housemaid married unknown no no no
## 4192 34 admin. married university.degree no yes yes
## 4193 34 blue-collar single basic.9y no no no
## 4194 29 blue-collar single professional.course no yes no
## 4195 46 entrepreneur married university.degree no yes no
## 4196 46 blue-collar married basic.9y unknown no no
## 4197 31 admin. unknown high.school no no no
## 4198 58 blue-collar divorced unknown no no no
## 4199 33 blue-collar married basic.4y unknown no no
## 4200 32 admin. single university.degree no no no
## 4201 38 services single high.school unknown yes no
## 4202 51 admin. single university.degree no no no
## 4203 34 services married high.school no no no
## 4204 30 blue-collar married basic.9y no no no
## 4205 39 blue-collar married professional.course no no no
## 4206 47 blue-collar married basic.4y no yes no
## 4207 36 services married high.school no yes no
## 4208 47 services divorced high.school no no no
## 4209 49 self-employed single basic.9y no no no
## 4210 33 technician divorced professional.course no no no
## 4211 54 blue-collar married basic.9y unknown no yes
## 4212 35 admin. married university.degree no yes yes
## 4213 25 services single high.school no no no
## 4214 42 management married basic.6y unknown yes no
## 4215 26 admin. single high.school no no no
## 4216 36 technician married professional.course no no no
## 4217 47 technician single professional.course unknown no no
## 4218 43 services married basic.9y unknown no no
## 4219 27 admin. married university.degree no yes no
## 4220 40 housemaid married high.school unknown yes no
## 4221 56 management married unknown no no no
## 4222 59 admin. married basic.6y no yes no
## 4223 49 technician married professional.course unknown yes no
## 4224 40 blue-collar married basic.9y unknown no no
## 4225 54 technician divorced professional.course no no no
## 4226 43 housemaid married basic.4y unknown no no
## 4227 36 blue-collar married basic.9y no yes no
## 4228 53 technician married professional.course no yes no
## 4229 31 admin. married high.school no no no
## 4230 53 technician divorced professional.course no no no
## 4231 52 services married high.school unknown yes no
## 4232 34 admin. married university.degree no no no
## 4233 31 unemployed single professional.course no no no
## 4234 54 technician single university.degree unknown unknown unknown
## 4235 45 blue-collar married basic.9y unknown no no
## 4236 40 admin. married basic.9y no no no
## 4237 31 admin. married high.school no yes no
## 4238 41 entrepreneur single university.degree unknown yes no
## 4239 25 admin. married high.school no no yes
## 4240 35 student single university.degree unknown yes no
## 4241 49 admin. divorced university.degree no no no
## 4242 53 blue-collar married high.school no no no
## 4243 40 admin. married professional.course unknown yes no
## 4244 46 blue-collar married basic.4y no yes yes
## 4245 40 unemployed married basic.4y unknown yes no
## 4246 48 technician married unknown no yes yes
## 4247 58 retired married university.degree no no yes
## 4248 30 technician married university.degree unknown no no
## 4249 49 blue-collar married unknown unknown yes no
## 4250 54 technician married high.school no no no
## 4251 45 technician single professional.course no yes yes
## 4252 34 services married high.school no yes no
## 4253 32 services single basic.6y no no yes
## 4254 41 blue-collar married basic.4y unknown no no
## 4255 50 blue-collar married basic.4y no yes no
## 4256 52 blue-collar single basic.9y unknown yes no
## 4257 45 admin. married unknown no no no
## 4258 37 admin. married high.school unknown yes yes
## 4259 25 management single basic.4y no no no
## 4260 50 blue-collar married basic.4y no yes no
## 4261 43 blue-collar married basic.4y no yes no
## 4262 34 management married university.degree no no yes
## 4263 41 blue-collar married basic.9y no no no
## 4264 35 admin. married high.school no no no
## 4265 31 blue-collar single high.school no no no
## 4266 34 management single university.degree no no no
## 4267 47 services married high.school no no no
## 4268 52 self-employed married basic.4y unknown yes no
## 4269 47 blue-collar married unknown unknown no no
## 4270 42 technician divorced university.degree no no no
## 4271 28 admin. married high.school no no no
## 4272 43 admin. married university.degree no yes no
## 4273 41 services married basic.9y no no no
## 4274 33 technician married high.school no no no
## 4275 53 admin. married university.degree no yes no
## 4276 49 blue-collar married basic.4y unknown no no
## 4277 45 blue-collar married basic.4y unknown yes no
## 4278 33 services married university.degree no yes no
## 4279 45 blue-collar married basic.4y unknown yes no
## 4280 30 unemployed single basic.9y no no no
## 4281 49 technician married professional.course no yes no
## 4282 38 technician married professional.course no yes yes
## 4283 39 services divorced high.school no yes no
## 4284 50 blue-collar married basic.4y unknown no yes
## 4285 58 blue-collar married unknown no yes no
## 4286 46 blue-collar married basic.6y no yes no
## 4287 46 housemaid married high.school unknown no no
## 4288 40 technician married professional.course no no no
## 4289 36 admin. married high.school no no no
## 4290 53 self-employed married basic.4y no no no
## 4291 32 technician married unknown unknown no no
## 4292 42 admin. divorced university.degree no no no
## 4293 39 services married high.school unknown yes no
## 4294 39 services married high.school no no yes
## 4295 53 blue-collar married basic.4y unknown no no
## 4296 34 blue-collar single basic.9y no no no
## 4297 39 services married high.school unknown yes yes
## 4298 50 blue-collar married basic.9y unknown yes yes
## 4299 40 admin. married high.school no no no
## 4300 56 technician married professional.course unknown no no
## 4301 41 technician married professional.course no unknown unknown
## 4302 46 blue-collar married basic.9y no no yes
## 4303 36 blue-collar married unknown unknown no no
## 4304 42 blue-collar married unknown unknown yes yes
## 4305 38 technician married professional.course unknown yes no
## 4306 30 services divorced basic.9y no yes no
## 4307 42 technician married basic.9y no no no
## 4308 38 technician married professional.course no no no
## 4309 31 services married high.school unknown no no
## 4310 45 management married unknown unknown no no
## 4311 33 blue-collar married basic.9y no no no
## 4312 36 admin. married university.degree unknown yes no
## 4313 41 services married high.school unknown yes no
## 4314 31 admin. married high.school unknown no no
## 4315 36 admin. married high.school no yes yes
## 4316 21 admin. single basic.9y no yes yes
## 4317 29 admin. married high.school no yes no
## 4318 53 management married university.degree unknown yes no
## 4319 39 blue-collar married basic.6y no no yes
## 4320 31 blue-collar single basic.9y no yes no
## 4321 44 admin. divorced university.degree unknown yes yes
## 4322 38 admin. single basic.6y unknown no no
## 4323 47 entrepreneur married unknown unknown no no
## 4324 36 blue-collar married basic.9y no no no
## 4325 27 blue-collar single basic.9y no no no
## 4326 45 blue-collar married basic.9y unknown no no
## 4327 34 blue-collar married basic.4y no no no
## 4328 50 blue-collar married basic.4y unknown no no
## 4329 40 blue-collar married basic.4y no no no
## 4330 36 admin. divorced high.school no yes yes
## 4331 40 admin. married university.degree no yes no
## 4332 53 blue-collar married basic.4y no no no
## 4333 40 admin. divorced university.degree no yes no
## 4334 25 blue-collar married basic.9y no no no
## 4335 42 admin. married university.degree unknown no no
## 4336 47 admin. divorced professional.course unknown no no
## 4337 46 admin. divorced university.degree no no no
## 4338 35 technician married professional.course no no no
## 4339 45 blue-collar married basic.6y unknown no no
## 4340 43 technician married professional.course no no no
## 4341 58 admin. divorced basic.9y unknown no no
## 4342 43 admin. married high.school no yes no
## 4343 33 blue-collar single basic.9y no yes no
## 4344 38 blue-collar divorced unknown unknown unknown unknown
## 4345 32 unknown unknown university.degree no yes yes
## 4346 49 technician married professional.course no yes no
## 4347 36 services single unknown no no no
## 4348 35 admin. married high.school no no no
## 4349 45 blue-collar married basic.9y unknown no no
## 4350 36 admin. divorced high.school no no no
## 4351 45 services married basic.9y no yes no
## 4352 34 services married high.school unknown yes no
## 4353 54 management married high.school unknown yes no
## 4354 35 services single basic.4y no yes no
## 4355 30 admin. married university.degree no no yes
## 4356 40 services married high.school no no no
## 4357 31 blue-collar married basic.6y no yes no
## 4358 52 technician married basic.9y unknown no no
## 4359 46 admin. married basic.4y no no no
## 4360 27 admin. married high.school unknown no yes
## 4361 39 unemployed married professional.course no no yes
## 4362 59 technician married university.degree unknown no no
## 4363 39 admin. single unknown no no no
## 4364 55 retired divorced professional.course no no no
## 4365 43 unknown married university.degree no no no
## 4366 42 self-employed married high.school no no no
## 4367 42 admin. single university.degree no no no
## 4368 56 management married unknown no yes no
## 4369 45 services married high.school no yes no
## 4370 38 blue-collar single basic.9y no no yes
## 4371 49 blue-collar married basic.9y no no no
## 4372 57 blue-collar divorced basic.4y unknown yes no
## 4373 51 admin. married basic.6y unknown no no
## 4374 31 technician divorced basic.9y no no no
## 4375 52 management married university.degree unknown yes no
## 4376 57 retired married university.degree no yes no
## 4377 47 blue-collar married basic.9y no yes no
## 4378 42 blue-collar married basic.6y no yes no
## 4379 35 blue-collar single unknown no yes no
## 4380 31 admin. single university.degree no yes no
## 4381 43 technician single university.degree no no no
## 4382 44 blue-collar married basic.6y unknown yes no
## 4383 59 entrepreneur divorced high.school unknown no no
## 4384 57 blue-collar married unknown unknown yes no
## 4385 41 blue-collar married high.school unknown yes no
## 4386 32 services married high.school no no no
## 4387 33 blue-collar single basic.4y no no no
## 4388 54 entrepreneur married basic.6y unknown no no
## 4389 22 blue-collar single basic.9y no yes no
## 4390 36 management married university.degree unknown no no
## 4391 56 retired married high.school unknown no no
## 4392 41 management married high.school no no yes
## 4393 46 blue-collar married professional.course unknown no yes
## 4394 60 admin. single high.school no no yes
## 4395 50 services married high.school no no no
## 4396 49 entrepreneur married basic.4y unknown yes yes
## 4397 47 admin. married university.degree unknown no yes
## 4398 34 services married high.school unknown no no
## 4399 49 admin. married university.degree unknown no no
## 4400 30 blue-collar single high.school no yes no
## 4401 35 blue-collar divorced high.school unknown yes no
## 4402 40 entrepreneur married basic.9y unknown yes yes
## 4403 42 housemaid married high.school no no no
## 4404 45 blue-collar single basic.9y no yes yes
## 4405 40 blue-collar married basic.9y no yes no
## 4406 32 entrepreneur single university.degree unknown yes no
## 4407 41 services married basic.9y no yes no
## 4408 57 blue-collar divorced professional.course no yes no
## 4409 34 services married high.school no no no
## 4410 40 management married university.degree no no yes
## 4411 44 blue-collar married basic.4y unknown no no
## 4412 51 blue-collar married basic.9y unknown unknown unknown
## 4413 42 technician married basic.9y no no no
## 4414 32 technician divorced high.school no yes no
## 4415 33 blue-collar married basic.9y no yes no
## 4416 43 blue-collar married basic.4y unknown yes yes
## 4417 28 blue-collar married basic.6y unknown yes no
## 4418 37 services married high.school no yes no
## 4419 37 services single high.school no yes no
## 4420 41 housemaid married basic.9y unknown yes no
## 4421 37 admin. married university.degree no no no
## 4422 42 blue-collar married unknown no yes no
## 4423 60 services married unknown no no no
## 4424 28 admin. single university.degree no yes no
## 4425 45 housemaid divorced university.degree no no no
## 4426 34 blue-collar married basic.6y unknown yes no
## 4427 52 technician married high.school no yes no
## 4428 33 admin. married university.degree no no no
## 4429 43 entrepreneur married university.degree no no no
## 4430 41 management married university.degree no yes no
## 4431 31 technician married professional.course no no no
## 4432 48 entrepreneur married basic.9y unknown yes no
## 4433 47 services married high.school unknown no no
## 4434 38 admin. married basic.9y unknown yes no
## 4435 51 unemployed married professional.course no no no
## 4436 49 admin. married university.degree unknown yes no
## 4437 31 entrepreneur married basic.9y no no no
## 4438 45 self-employed married basic.4y unknown yes no
## 4439 41 blue-collar married basic.6y no no no
## 4440 51 retired married basic.9y no no no
## 4441 46 admin. divorced university.degree unknown no no
## 4442 48 self-employed married university.degree unknown no no
## 4443 51 retired married basic.9y no yes no
## 4444 44 services married high.school no unknown unknown
## 4445 30 services married high.school no yes no
## 4446 35 blue-collar divorced basic.9y no no yes
## 4447 35 unemployed married university.degree no no no
## 4448 57 technician married basic.9y no yes no
## 4449 38 admin. married university.degree no yes no
## 4450 36 self-employed married basic.6y unknown yes yes
## 4451 30 admin. single university.degree no no no
## 4452 37 services married high.school unknown no yes
## 4453 31 technician divorced basic.9y no no no
## 4454 37 admin. married high.school no yes yes
## 4455 31 blue-collar unknown unknown unknown no no
## 4456 38 technician married professional.course no unknown unknown
## 4457 29 student single university.degree no yes no
## 4458 36 services married high.school no unknown unknown
## 4459 41 management married basic.9y no yes no
## 4460 32 student single high.school unknown yes no
## 4461 42 blue-collar married basic.4y unknown yes no
## 4462 27 blue-collar married basic.9y no yes no
## 4463 34 technician married professional.course no no no
## 4464 44 management married university.degree no yes no
## 4465 42 services married professional.course no no no
## 4466 29 services divorced high.school no yes no
## 4467 40 blue-collar married basic.6y unknown no no
## 4468 57 retired single professional.course no no no
## 4469 42 blue-collar married basic.9y unknown yes no
## 4470 50 admin. married basic.9y no yes yes
## 4471 58 retired married basic.4y no yes no
## 4472 34 technician married professional.course no yes no
## 4473 40 admin. single university.degree no no no
## 4474 46 management married basic.9y no yes yes
## 4475 33 admin. married high.school no yes no
## 4476 42 retired married basic.9y unknown no no
## 4477 27 blue-collar married basic.6y no no no
## 4478 41 management single high.school no no no
## 4479 39 admin. married professional.course no yes no
## 4480 58 retired married basic.4y unknown no no
## 4481 31 blue-collar married basic.9y no no no
## 4482 48 blue-collar divorced professional.course no yes no
## 4483 45 housemaid married professional.course unknown no no
## 4484 30 self-employed married professional.course no no no
## 4485 58 management married basic.4y no no no
## 4486 39 blue-collar single basic.9y no no no
## 4487 41 technician married professional.course no no no
## 4488 44 blue-collar married basic.4y no no no
## 4489 47 blue-collar married basic.9y no no no
## 4490 32 admin. married university.degree no no yes
## 4491 39 management single basic.9y unknown yes no
## 4492 45 blue-collar married basic.4y unknown no no
## 4493 33 management married professional.course no no no
## 4494 27 blue-collar married basic.9y unknown yes no
## 4495 57 retired married basic.4y no yes yes
## 4496 32 blue-collar married basic.9y no yes no
## 4497 33 blue-collar divorced basic.9y no no no
## 4498 57 self-employed married unknown unknown no yes
## 4499 34 blue-collar married basic.4y no no yes
## 4500 58 unemployed married basic.4y unknown no no
## 4501 50 admin. single university.degree no yes no
## 4502 44 blue-collar married basic.9y no yes yes
## 4503 48 blue-collar married professional.course no yes no
## 4504 56 retired divorced high.school no yes no
## 4505 42 blue-collar married basic.6y no yes yes
## 4506 37 blue-collar married high.school unknown no no
## 4507 29 technician married professional.course no no no
## 4508 32 services married professional.course no yes no
## 4509 40 admin. single high.school no no no
## 4510 39 management married high.school no yes yes
## 4511 34 services married basic.6y unknown yes no
## 4512 50 housemaid divorced basic.4y unknown yes yes
## 4513 28 blue-collar single basic.4y no no no
## 4514 43 housemaid married basic.4y no unknown unknown
## 4515 27 admin. married high.school no yes no
## 4516 38 services married basic.9y no unknown unknown
## 4517 37 technician married professional.course no yes no
## 4518 39 admin. married basic.6y unknown yes yes
## 4519 36 technician divorced university.degree unknown yes no
## 4520 43 services married high.school no no no
## 4521 55 technician married basic.9y unknown yes yes
## 4522 35 admin. married university.degree no no no
## 4523 27 blue-collar married basic.6y unknown unknown unknown
## 4524 51 entrepreneur married basic.4y no no no
## 4525 34 housemaid married high.school no no no
## 4526 28 technician married professional.course no yes no
## 4527 50 blue-collar married basic.6y unknown no no
## 4528 26 blue-collar married basic.4y no yes yes
## 4529 50 admin. married basic.9y unknown yes yes
## 4530 52 blue-collar married basic.4y unknown no no
## 4531 52 blue-collar married basic.9y no yes yes
## 4532 45 admin. married high.school no no no
## 4533 37 blue-collar married unknown no no no
## 4534 43 technician married basic.9y unknown yes no
## 4535 46 admin. married high.school no yes no
## 4536 45 unemployed married university.degree no no no
## 4537 31 technician married professional.course no yes no
## 4538 39 blue-collar married professional.course unknown no no
## 4539 55 admin. divorced university.degree no no no
## 4540 55 admin. married high.school no no no
## 4541 27 technician single university.degree no yes no
## 4542 38 self-employed single university.degree no unknown unknown
## 4543 24 student married university.degree no no no
## 4544 36 services married high.school no no no
## 4545 44 admin. married basic.4y unknown yes yes
## 4546 33 blue-collar single basic.9y no no no
## 4547 30 technician married university.degree no no no
## 4548 28 self-employed single basic.9y no no no
## 4549 60 admin. married university.degree unknown no no
## 4550 38 technician single university.degree no yes no
## 4551 42 admin. married basic.9y no yes yes
## 4552 35 blue-collar married high.school no yes yes
## 4553 53 retired married high.school unknown no no
## 4554 24 admin. single high.school no no no
## 4555 35 admin. divorced university.degree no no no
## 4556 25 admin. single high.school no no no
## 4557 59 entrepreneur married university.degree unknown yes yes
## 4558 48 blue-collar married basic.4y unknown no no
## 4559 56 admin. married basic.9y no no no
## 4560 43 technician married unknown no yes no
## 4561 32 entrepreneur married basic.6y no no no
## 4562 27 blue-collar married basic.9y no yes yes
## 4563 34 management single basic.9y no no no
## 4564 31 blue-collar divorced professional.course no yes no
## 4565 37 unemployed married high.school no no no
## 4566 29 services married high.school no no no
## 4567 35 technician married university.degree no yes no
## 4568 57 technician divorced unknown no no no
## 4569 43 services married professional.course no yes no
## 4570 49 admin. single high.school no no no
## 4571 50 technician married basic.6y no yes no
## 4572 33 technician married university.degree unknown yes no
## 4573 34 blue-collar married basic.9y no yes no
## 4574 24 services single high.school no no no
## 4575 43 blue-collar married basic.4y unknown yes no
## 4576 44 admin. married university.degree no no no
## 4577 37 technician married professional.course no yes no
## 4578 39 blue-collar married basic.9y no yes no
## 4579 33 admin. single professional.course no no no
## 4580 46 blue-collar married basic.4y unknown yes no
## 4581 39 blue-collar married basic.9y no yes no
## 4582 28 admin. single university.degree no yes no
## 4583 25 technician single professional.course no yes yes
## 4584 39 services married high.school no no no
## 4585 31 blue-collar married basic.9y no no no
## 4586 32 admin. single high.school no no no
## 4587 32 services married high.school unknown no yes
## 4588 41 admin. married unknown unknown no no
## 4589 22 blue-collar married basic.4y no unknown unknown
## 4590 39 housemaid married basic.9y no no no
## 4591 29 admin. single high.school no no no
## 4592 50 technician married professional.course unknown yes no
## 4593 46 housemaid married basic.9y no no no
## 4594 39 housemaid married basic.4y no yes no
## 4595 55 services divorced basic.4y unknown yes no
## 4596 43 admin. married university.degree no no no
## 4597 42 services married high.school unknown yes no
## 4598 41 blue-collar married basic.6y unknown yes no
## 4599 31 technician single university.degree no no no
## 4600 56 blue-collar married basic.4y unknown yes no
## 4601 40 blue-collar married basic.4y unknown yes no
## 4602 46 management married basic.9y no yes no
## 4603 56 admin. divorced high.school no yes no
## 4604 42 blue-collar divorced basic.4y no no no
## 4605 41 admin. single high.school no yes no
## 4606 41 technician divorced basic.4y no yes no
## 4607 53 admin. married university.degree no no yes
## 4608 33 housemaid married basic.4y no unknown unknown
## 4609 25 services single high.school no no no
## 4610 42 admin. married high.school no no no
## 4611 34 services married high.school unknown yes yes
## 4612 41 technician divorced basic.4y no yes no
## 4613 38 admin. married high.school no no no
## 4614 31 technician single high.school no no yes
## 4615 46 services married professional.course no yes no
## 4616 58 retired married university.degree no no no
## 4617 39 services married high.school no no yes
## 4618 54 blue-collar married basic.9y unknown yes no
## 4619 31 admin. divorced university.degree no yes no
## 4620 40 services single high.school no yes yes
## 4621 56 retired divorced basic.4y no no no
## 4622 41 admin. married university.degree no no no
## 4623 33 admin. divorced high.school no no no
## 4624 55 technician married high.school no yes no
## 4625 33 admin. divorced high.school no no no
## 4626 48 admin. divorced high.school no no no
## 4627 28 blue-collar married basic.6y unknown yes no
## 4628 39 unemployed married university.degree no no no
## 4629 42 admin. single basic.9y unknown no yes
## 4630 60 housemaid married high.school unknown yes no
## 4631 35 technician married basic.9y no no no
## 4632 45 admin. married university.degree no yes yes
## 4633 36 blue-collar married basic.6y no yes no
## 4634 33 unemployed married basic.9y no yes no
## 4635 54 management divorced basic.6y unknown yes no
## 4636 49 housemaid married basic.4y unknown no yes
## 4637 46 housemaid married basic.4y no no no
## 4638 32 management single university.degree no no no
## 4639 42 blue-collar divorced basic.4y no no no
## 4640 37 blue-collar married basic.6y no no no
## 4641 35 technician married university.degree no no no
## 4642 47 blue-collar married basic.6y no no no
## 4643 33 technician married professional.course no yes no
## 4644 38 blue-collar married basic.9y no yes yes
## 4645 39 housemaid married university.degree no no no
## 4646 55 admin. married high.school no yes no
## 4647 35 services married high.school no yes no
## 4648 55 admin. married high.school no yes no
## 4649 33 blue-collar married basic.6y unknown no no
## 4650 32 blue-collar married basic.9y unknown yes no
## 4651 32 blue-collar married basic.9y no yes no
## 4652 32 blue-collar divorced basic.9y no no no
## 4653 42 admin. single university.degree no yes yes
## 4654 38 blue-collar married high.school unknown yes no
## 4655 56 self-employed married basic.4y no no no
## 4656 55 admin. married high.school no yes yes
## 4657 33 technician married professional.course no yes yes
## 4658 45 admin. single high.school unknown yes yes
## 4659 58 management married university.degree unknown no no
## 4660 46 self-employed married university.degree no yes yes
## 4661 33 management married university.degree no yes no
## 4662 50 self-employed married basic.4y unknown no yes
## 4663 56 blue-collar married basic.4y unknown no no
## 4664 33 blue-collar married basic.4y unknown yes yes
## 4665 26 admin. married university.degree no yes yes
## 4666 49 housemaid single high.school unknown yes no
## 4667 36 services married high.school no yes yes
## 4668 52 self-employed single university.degree unknown no no
## 4669 49 blue-collar married basic.9y unknown no yes
## 4670 49 blue-collar married basic.4y unknown no no
## 4671 28 admin. single high.school no no no
## 4672 36 services married high.school no no no
## 4673 45 admin. single professional.course no yes no
## 4674 41 technician married university.degree no no no
## 4675 49 admin. married high.school unknown no no
## 4676 31 services married professional.course no no no
## 4677 32 technician married professional.course no no no
## 4678 59 retired married professional.course unknown no no
## 4679 25 services divorced high.school no yes yes
## 4680 22 services single basic.4y no no no
## 4681 43 blue-collar married basic.9y no no no
## 4682 35 blue-collar married basic.9y no yes no
## 4683 60 entrepreneur married basic.4y no yes no
## 4684 40 admin. married university.degree no no no
## 4685 37 unemployed married professional.course no yes no
## 4686 37 technician married university.degree no yes yes
## 4687 36 technician single university.degree no no no
## 4688 35 blue-collar married basic.9y no yes no
## 4689 43 entrepreneur married basic.9y no yes no
## 4690 39 housemaid married basic.9y no yes no
## 4691 56 blue-collar married unknown unknown yes no
## 4692 37 services single high.school no no no
## 4693 38 blue-collar married professional.course no no no
## 4694 37 technician single university.degree no no no
## 4695 54 blue-collar married basic.9y unknown no no
## 4696 53 retired married high.school unknown no no
## 4697 38 services married basic.9y no no no
## 4698 47 technician single professional.course unknown no no
## 4699 33 management married high.school unknown no no
## 4700 39 blue-collar married basic.4y unknown yes no
## 4701 36 technician single professional.course unknown no no
## 4702 35 blue-collar married basic.9y no no no
## 4703 40 admin. married university.degree unknown yes yes
## 4704 55 admin. single university.degree unknown yes yes
## 4705 37 blue-collar married basic.4y no yes no
## 4706 53 blue-collar married basic.9y unknown no no
## 4707 36 admin. married high.school no unknown unknown
## 4708 32 blue-collar married basic.9y no no no
## 4709 42 admin. married high.school no yes no
## 4710 52 management married university.degree no yes no
## 4711 33 services married high.school no no yes
## 4712 51 admin. married professional.course unknown no no
## 4713 32 management single university.degree no yes no
## 4714 33 technician divorced professional.course no yes no
## 4715 34 services married high.school no no no
## 4716 34 services married high.school no no no
## 4717 55 admin. divorced university.degree no yes no
## 4718 33 management married high.school unknown yes no
## 4719 34 blue-collar married basic.9y no yes yes
## 4720 52 services married university.degree no yes no
## 4721 55 technician married basic.9y unknown yes no
## 4722 45 blue-collar married basic.4y unknown yes no
## 4723 34 blue-collar married basic.9y unknown yes yes
## 4724 53 self-employed married university.degree no yes no
## 4725 43 admin. married university.degree no no no
## 4726 33 management married basic.9y no yes no
## 4727 39 blue-collar married basic.9y no no no
## 4728 29 blue-collar married basic.9y unknown yes no
## 4729 35 self-employed married basic.9y no yes no
## 4730 45 blue-collar married basic.4y no yes no
## 4731 35 blue-collar married basic.9y no yes no
## 4732 37 technician single university.degree no no no
## 4733 38 blue-collar married basic.6y unknown no no
## 4734 35 retired married professional.course no no no
## 4735 36 technician married university.degree no no no
## 4736 30 blue-collar married basic.4y no no no
## 4737 53 entrepreneur single basic.9y no no no
## 4738 30 admin. single university.degree no no no
## 4739 41 blue-collar married basic.4y unknown no no
## 4740 40 blue-collar married basic.9y unknown no no
## 4741 36 technician married university.degree no no no
## 4742 36 management married high.school no no no
## 4743 44 services divorced high.school unknown no no
## 4744 56 retired married high.school unknown no no
## 4745 38 management married university.degree no yes no
## 4746 35 blue-collar married professional.course no yes yes
## 4747 35 management married university.degree no no yes
## 4748 28 management married high.school unknown yes no
## 4749 43 housemaid married basic.4y unknown no yes
## 4750 30 entrepreneur married professional.course no no no
## 4751 36 student single university.degree unknown yes no
## 4752 40 blue-collar married basic.9y no yes yes
## 4753 35 technician single university.degree no yes no
## 4754 27 admin. single basic.9y no yes yes
## 4755 42 technician divorced basic.9y no no no
## 4756 49 blue-collar married basic.6y no yes no
## 4757 38 technician married professional.course no yes yes
## 4758 31 admin. married high.school no yes no
## 4759 57 retired married basic.4y no no no
## 4760 29 blue-collar single basic.6y no no no
## 4761 36 management married university.degree no yes no
## contact month day_of_week duration campaign pdays previous poutcome
## 1 telephone may mon 261 1 999 0 nonexistent
## 2 telephone may mon 149 1 999 0 nonexistent
## 3 telephone may mon 226 1 999 0 nonexistent
## 4 telephone may mon 151 1 999 0 nonexistent
## 5 telephone may mon 307 1 999 0 nonexistent
## 6 telephone may mon 198 1 999 0 nonexistent
## 7 telephone may mon 139 1 999 0 nonexistent
## 8 telephone may mon 217 1 999 0 nonexistent
## 9 telephone may mon 380 1 999 0 nonexistent
## 10 telephone may mon 50 1 999 0 nonexistent
## 11 telephone may mon 55 1 999 0 nonexistent
## 12 telephone may mon 222 1 999 0 nonexistent
## 13 telephone may mon 137 1 999 0 nonexistent
## 14 telephone may mon 293 1 999 0 nonexistent
## 15 telephone may mon 146 1 999 0 nonexistent
## 16 telephone may mon 174 1 999 0 nonexistent
## 17 telephone may mon 312 1 999 0 nonexistent
## 18 telephone may mon 440 1 999 0 nonexistent
## 19 telephone may mon 353 1 999 0 nonexistent
## 20 telephone may mon 195 1 999 0 nonexistent
## 21 telephone may mon 38 1 999 0 nonexistent
## 22 telephone may mon 262 1 999 0 nonexistent
## 23 telephone may mon 342 1 999 0 nonexistent
## 24 telephone may mon 181 1 999 0 nonexistent
## 25 telephone may mon 172 1 999 0 nonexistent
## 26 telephone may mon 99 1 999 0 nonexistent
## 27 telephone may mon 93 1 999 0 nonexistent
## 28 telephone may mon 233 1 999 0 nonexistent
## 29 telephone may mon 255 2 999 0 nonexistent
## 30 telephone may mon 362 1 999 0 nonexistent
## 31 telephone may mon 348 1 999 0 nonexistent
## 32 telephone may mon 386 1 999 0 nonexistent
## 33 telephone may mon 73 1 999 0 nonexistent
## 34 telephone may mon 230 1 999 0 nonexistent
## 35 telephone may mon 208 1 999 0 nonexistent
## 36 telephone may mon 336 1 999 0 nonexistent
## 37 telephone may mon 365 1 999 0 nonexistent
## 38 telephone may mon 1666 1 999 0 nonexistent
## 39 telephone may mon 577 1 999 0 nonexistent
## 40 telephone may mon 137 1 999 0 nonexistent
## 41 telephone may mon 366 1 999 0 nonexistent
## 42 telephone may mon 314 1 999 0 nonexistent
## 43 telephone may mon 160 1 999 0 nonexistent
## 44 telephone may mon 212 1 999 0 nonexistent
## 45 telephone may mon 188 1 999 0 nonexistent
## 46 telephone may mon 22 1 999 0 nonexistent
## 47 telephone may mon 616 1 999 0 nonexistent
## 48 telephone may mon 178 1 999 0 nonexistent
## 49 telephone may mon 355 1 999 0 nonexistent
## 50 telephone may mon 225 2 999 0 nonexistent
## 51 telephone may mon 160 1 999 0 nonexistent
## 52 telephone may mon 266 1 999 0 nonexistent
## 53 telephone may mon 253 1 999 0 nonexistent
## 54 telephone may mon 179 1 999 0 nonexistent
## 55 telephone may mon 269 2 999 0 nonexistent
## 56 telephone may mon 135 1 999 0 nonexistent
## 57 telephone may mon 161 1 999 0 nonexistent
## 58 telephone may mon 787 1 999 0 nonexistent
## 59 telephone may mon 145 1 999 0 nonexistent
## 60 telephone may mon 174 1 999 0 nonexistent
## 61 telephone may mon 449 1 999 0 nonexistent
## 62 telephone may mon 812 1 999 0 nonexistent
## 63 telephone may mon 164 1 999 0 nonexistent
## 64 telephone may mon 366 1 999 0 nonexistent
## 65 telephone may mon 357 1 999 0 nonexistent
## 66 telephone may mon 232 1 999 0 nonexistent
## 67 telephone may mon 91 1 999 0 nonexistent
## 68 telephone may mon 273 1 999 0 nonexistent
## 69 telephone may mon 158 2 999 0 nonexistent
## 70 telephone may mon 177 1 999 0 nonexistent
## 71 telephone may mon 200 1 999 0 nonexistent
## 72 telephone may mon 172 1 999 0 nonexistent
## 73 telephone may mon 176 1 999 0 nonexistent
## 74 telephone may mon 211 1 999 0 nonexistent
## 75 telephone may mon 214 1 999 0 nonexistent
## 76 telephone may mon 1575 1 999 0 nonexistent
## 77 telephone may mon 349 1 999 0 nonexistent
## 78 telephone may mon 337 2 999 0 nonexistent
## 79 telephone may mon 272 1 999 0 nonexistent
## 80 telephone may mon 208 1 999 0 nonexistent
## 81 telephone may mon 193 1 999 0 nonexistent
## 82 telephone may mon 212 1 999 0 nonexistent
## 83 telephone may mon 165 2 999 0 nonexistent
## 84 telephone may mon 1042 1 999 0 nonexistent
## 85 telephone may mon 20 1 999 0 nonexistent
## 86 telephone may mon 246 1 999 0 nonexistent
## 87 telephone may mon 529 2 999 0 nonexistent
## 88 telephone may mon 192 1 999 0 nonexistent
## 89 telephone may mon 1467 1 999 0 nonexistent
## 90 telephone may mon 188 2 999 0 nonexistent
## 91 telephone may mon 180 2 999 0 nonexistent
## 92 telephone may mon 48 1 999 0 nonexistent
## 93 telephone may mon 213 2 999 0 nonexistent
## 94 telephone may mon 545 1 999 0 nonexistent
## 95 telephone may mon 583 1 999 0 nonexistent
## 96 telephone may mon 221 1 999 0 nonexistent
## 97 telephone may mon 426 1 999 0 nonexistent
## 98 telephone may mon 287 1 999 0 nonexistent
## 99 telephone may mon 197 1 999 0 nonexistent
## 100 telephone may mon 257 1 999 0 nonexistent
## 101 telephone may mon 229 1 999 0 nonexistent
## 102 telephone may mon 55 3 999 0 nonexistent
## 103 telephone may mon 400 1 999 0 nonexistent
## 104 telephone may mon 197 1 999 0 nonexistent
## 105 telephone may mon 190 1 999 0 nonexistent
## 106 telephone may mon 21 1 999 0 nonexistent
## 107 telephone may mon 300 2 999 0 nonexistent
## 108 telephone may mon 123 2 999 0 nonexistent
## 109 telephone may mon 293 1 999 0 nonexistent
## 110 telephone may mon 325 1 999 0 nonexistent
## 111 telephone may mon 514 1 999 0 nonexistent
## 112 telephone may mon 849 2 999 0 nonexistent
## 113 telephone may mon 194 1 999 0 nonexistent
## 114 telephone may mon 212 2 999 0 nonexistent
## 115 telephone may mon 337 2 999 0 nonexistent
## 116 telephone may mon 286 1 999 0 nonexistent
## 117 telephone may mon 247 2 999 0 nonexistent
## 118 telephone may mon 518 1 999 0 nonexistent
## 119 telephone may mon 364 1 999 0 nonexistent
## 120 telephone may mon 178 1 999 0 nonexistent
## 121 telephone may mon 98 1 999 0 nonexistent
## 122 telephone may mon 439 1 999 0 nonexistent
## 123 telephone may mon 139 1 999 0 nonexistent
## 124 telephone may mon 79 1 999 0 nonexistent
## 125 telephone may mon 175 1 999 0 nonexistent
## 126 telephone may mon 262 2 999 0 nonexistent
## 127 telephone may mon 61 1 999 0 nonexistent
## 128 telephone may mon 78 1 999 0 nonexistent
## 129 telephone may mon 102 2 999 0 nonexistent
## 130 telephone may mon 579 1 999 0 nonexistent
## 131 telephone may mon 143 1 999 0 nonexistent
## 132 telephone may mon 677 1 999 0 nonexistent
## 133 telephone may mon 267 1 999 0 nonexistent
## 134 telephone may mon 345 1 999 0 nonexistent
## 135 telephone may mon 185 1 999 0 nonexistent
## 136 telephone may mon 207 1 999 0 nonexistent
## 137 telephone may mon 69 2 999 0 nonexistent
## 138 telephone may mon 100 2 999 0 nonexistent
## 139 telephone may mon 125 2 999 0 nonexistent
## 140 telephone may mon 461 1 999 0 nonexistent
## 141 telephone may mon 240 1 999 0 nonexistent
## 142 telephone may mon 70 1 999 0 nonexistent
## 143 telephone may mon 193 1 999 0 nonexistent
## 144 telephone may mon 136 1 999 0 nonexistent
## 145 telephone may mon 73 1 999 0 nonexistent
## 146 telephone may mon 528 1 999 0 nonexistent
## 147 telephone may mon 541 1 999 0 nonexistent
## 148 telephone may mon 338 1 999 0 nonexistent
## 149 telephone may mon 163 1 999 0 nonexistent
## 150 telephone may mon 87 1 999 0 nonexistent
## 151 telephone may mon 301 1 999 0 nonexistent
## 152 telephone may mon 46 1 999 0 nonexistent
## 153 telephone may mon 52 1 999 0 nonexistent
## 154 telephone may mon 204 1 999 0 nonexistent
## 155 telephone may mon 155 1 999 0 nonexistent
## 156 telephone may mon 98 1 999 0 nonexistent
## 157 telephone may mon 71 1 999 0 nonexistent
## 158 telephone may mon 243 1 999 0 nonexistent
## 159 telephone may mon 186 2 999 0 nonexistent
## 160 telephone may mon 579 2 999 0 nonexistent
## 161 telephone may mon 165 2 999 0 nonexistent
## 162 telephone may mon 163 2 999 0 nonexistent
## 163 telephone may mon 46 1 999 0 nonexistent
## 164 telephone may mon 559 3 999 0 nonexistent
## 165 telephone may mon 2033 1 999 0 nonexistent
## 166 telephone may mon 85 1 999 0 nonexistent
## 167 telephone may mon 506 1 999 0 nonexistent
## 168 telephone may mon 114 2 999 0 nonexistent
## 169 telephone may mon 114 2 999 0 nonexistent
## 170 telephone may mon 843 2 999 0 nonexistent
## 171 telephone may mon 181 1 999 0 nonexistent
## 172 telephone may mon 427 1 999 0 nonexistent
## 173 telephone may mon 292 1 999 0 nonexistent
## 174 telephone may mon 192 1 999 0 nonexistent
## 175 telephone may mon 93 3 999 0 nonexistent
## 176 telephone may mon 128 2 999 0 nonexistent
## 177 telephone may mon 107 1 999 0 nonexistent
## 178 telephone may mon 303 2 999 0 nonexistent
## 179 telephone may mon 81 1 999 0 nonexistent
## 180 telephone may mon 270 1 999 0 nonexistent
## 181 telephone may mon 228 1 999 0 nonexistent
## 182 telephone may mon 240 1 999 0 nonexistent
## 183 telephone may mon 673 2 999 0 nonexistent
## 184 telephone may mon 233 3 999 0 nonexistent
## 185 telephone may mon 102 1 999 0 nonexistent
## 186 telephone may mon 461 1 999 0 nonexistent
## 187 telephone may mon 250 1 999 0 nonexistent
## 188 telephone may mon 130 1 999 0 nonexistent
## 189 telephone may mon 252 1 999 0 nonexistent
## 190 telephone may mon 138 1 999 0 nonexistent
## 191 telephone may mon 412 1 999 0 nonexistent
## 192 telephone may mon 179 2 999 0 nonexistent
## 193 telephone may mon 19 2 999 0 nonexistent
## 194 telephone may mon 228 2 999 0 nonexistent
## 195 telephone may mon 55 1 999 0 nonexistent
## 196 telephone may mon 717 1 999 0 nonexistent
## 197 telephone may mon 313 1 999 0 nonexistent
## 198 telephone may mon 289 1 999 0 nonexistent
## 199 telephone may mon 683 2 999 0 nonexistent
## 200 telephone may mon 1077 1 999 0 nonexistent
## 201 telephone may mon 146 2 999 0 nonexistent
## 202 telephone may mon 167 1 999 0 nonexistent
## 203 telephone may mon 356 2 999 0 nonexistent
## 204 telephone may mon 277 1 999 0 nonexistent
## 205 telephone may mon 172 1 999 0 nonexistent
## 206 telephone may mon 218 1 999 0 nonexistent
## 207 telephone may mon 217 1 999 0 nonexistent
## 208 telephone may mon 67 1 999 0 nonexistent
## 209 telephone may mon 291 1 999 0 nonexistent
## 210 telephone may mon 248 1 999 0 nonexistent
## 211 telephone may mon 256 1 999 0 nonexistent
## 212 telephone may mon 286 1 999 0 nonexistent
## 213 telephone may mon 477 1 999 0 nonexistent
## 214 telephone may mon 611 2 999 0 nonexistent
## 215 telephone may mon 471 1 999 0 nonexistent
## 216 telephone may mon 381 2 999 0 nonexistent
## 217 telephone may mon 251 1 999 0 nonexistent
## 218 telephone may mon 408 1 999 0 nonexistent
## 219 telephone may mon 287 1 999 0 nonexistent
## 220 telephone may mon 322 3 999 0 nonexistent
## 221 telephone may mon 216 2 999 0 nonexistent
## 222 telephone may mon 366 2 999 0 nonexistent
## 223 telephone may mon 210 1 999 0 nonexistent
## 224 telephone may mon 288 1 999 0 nonexistent
## 225 telephone may mon 168 1 999 0 nonexistent
## 226 telephone may mon 132 1 999 0 nonexistent
## 227 telephone may mon 64 2 999 0 nonexistent
## 228 telephone may mon 209 2 999 0 nonexistent
## 229 telephone may mon 410 3 999 0 nonexistent
## 230 telephone may mon 177 1 999 0 nonexistent
## 231 telephone may mon 580 2 999 0 nonexistent
## 232 telephone may mon 165 1 999 0 nonexistent
## 233 telephone may mon 127 2 999 0 nonexistent
## 234 telephone may mon 357 1 999 0 nonexistent
## 235 telephone may mon 175 1 999 0 nonexistent
## 236 telephone may mon 300 1 999 0 nonexistent
## 237 telephone may mon 136 1 999 0 nonexistent
## 238 telephone may mon 125 2 999 0 nonexistent
## 239 telephone may mon 189 2 999 0 nonexistent
## 240 telephone may mon 213 3 999 0 nonexistent
## 241 telephone may mon 238 2 999 0 nonexistent
## 242 telephone may mon 124 1 999 0 nonexistent
## 243 telephone may mon 18 1 999 0 nonexistent
## 244 telephone may mon 730 2 999 0 nonexistent
## 245 telephone may mon 40 1 999 0 nonexistent
## 246 telephone may mon 181 2 999 0 nonexistent
## 247 telephone may mon 79 1 999 0 nonexistent
## 248 telephone may mon 142 2 999 0 nonexistent
## 249 telephone may mon 389 1 999 0 nonexistent
## 250 telephone may mon 702 1 999 0 nonexistent
## 251 telephone may mon 151 1 999 0 nonexistent
## 252 telephone may mon 211 1 999 0 nonexistent
## 253 telephone may mon 117 1 999 0 nonexistent
## 254 telephone may mon 232 3 999 0 nonexistent
## 255 telephone may mon 408 2 999 0 nonexistent
## 256 telephone may mon 370 3 999 0 nonexistent
## 257 telephone may mon 179 2 999 0 nonexistent
## 258 telephone may mon 46 1 999 0 nonexistent
## 259 telephone may mon 200 1 999 0 nonexistent
## 260 telephone may mon 50 1 999 0 nonexistent
## 261 telephone may mon 181 1 999 0 nonexistent
## 262 telephone may mon 119 1 999 0 nonexistent
## 263 telephone may mon 361 1 999 0 nonexistent
## 264 telephone may mon 73 3 999 0 nonexistent
## 265 telephone may mon 67 2 999 0 nonexistent
## 266 telephone may mon 350 1 999 0 nonexistent
## 267 telephone may mon 150 2 999 0 nonexistent
## 268 telephone may mon 332 2 999 0 nonexistent
## 269 telephone may mon 611 2 999 0 nonexistent
## 270 telephone may mon 58 3 999 0 nonexistent
## 271 telephone may mon 151 1 999 0 nonexistent
## 272 telephone may mon 89 2 999 0 nonexistent
## 273 telephone may mon 152 1 999 0 nonexistent
## 274 telephone may mon 611 2 999 0 nonexistent
## 275 telephone may mon 110 2 999 0 nonexistent
## 276 telephone may mon 463 1 999 0 nonexistent
## 277 telephone may mon 962 1 999 0 nonexistent
## 278 telephone may mon 102 2 999 0 nonexistent
## 279 telephone may mon 10 4 999 0 nonexistent
## 280 telephone may mon 118 3 999 0 nonexistent
## 281 telephone may mon 92 2 999 0 nonexistent
## 282 telephone may mon 143 3 999 0 nonexistent
## 283 telephone may mon 189 3 999 0 nonexistent
## 284 telephone may mon 75 2 999 0 nonexistent
## 285 telephone may mon 189 2 999 0 nonexistent
## 286 telephone may mon 55 2 999 0 nonexistent
## 287 telephone may mon 935 3 999 0 nonexistent
## 288 telephone may mon 56 2 999 0 nonexistent
## 289 telephone may mon 5 2 999 0 nonexistent
## 290 telephone may mon 225 2 999 0 nonexistent
## 291 telephone may mon 125 2 999 0 nonexistent
## 292 telephone may mon 286 2 999 0 nonexistent
## 293 telephone may mon 206 2 999 0 nonexistent
## 294 telephone may mon 164 2 999 0 nonexistent
## 295 telephone may mon 98 2 999 0 nonexistent
## 296 telephone may mon 446 2 999 0 nonexistent
## 297 telephone may mon 742 2 999 0 nonexistent
## 298 telephone may mon 120 2 999 0 nonexistent
## 299 telephone may mon 122 3 999 0 nonexistent
## 300 telephone may mon 362 4 999 0 nonexistent
## 301 telephone may mon 357 2 999 0 nonexistent
## 302 telephone may mon 200 2 999 0 nonexistent
## 303 telephone may mon 107 2 999 0 nonexistent
## 304 telephone may mon 267 2 999 0 nonexistent
## 305 telephone may mon 248 2 999 0 nonexistent
## 306 telephone may mon 215 2 999 0 nonexistent
## 307 telephone may mon 209 2 999 0 nonexistent
## 308 telephone may mon 205 2 999 0 nonexistent
## 309 telephone may mon 261 3 999 0 nonexistent
## 310 telephone may mon 83 2 999 0 nonexistent
## 311 telephone may mon 106 3 999 0 nonexistent
## 312 telephone may mon 106 2 999 0 nonexistent
## 313 telephone may mon 108 2 999 0 nonexistent
## 314 telephone may mon 214 2 999 0 nonexistent
## 315 telephone may mon 358 2 999 0 nonexistent
## 316 telephone may mon 453 2 999 0 nonexistent
## 317 telephone may mon 364 2 999 0 nonexistent
## 318 telephone may mon 136 2 999 0 nonexistent
## 319 telephone may mon 173 2 999 0 nonexistent
## 320 telephone may mon 241 2 999 0 nonexistent
## 321 telephone may mon 224 3 999 0 nonexistent
## 322 telephone may mon 148 2 999 0 nonexistent
## 323 telephone may mon 230 2 999 0 nonexistent
## 324 telephone may mon 199 3 999 0 nonexistent
## 325 telephone may mon 196 2 999 0 nonexistent
## 326 telephone may mon 111 4 999 0 nonexistent
## 327 telephone may mon 231 3 999 0 nonexistent
## 328 telephone may mon 316 3 999 0 nonexistent
## 329 telephone may mon 240 2 999 0 nonexistent
## 330 telephone may mon 669 3 999 0 nonexistent
## 331 telephone may mon 425 2 999 0 nonexistent
## 332 telephone may mon 121 2 999 0 nonexistent
## 333 telephone may mon 174 5 999 0 nonexistent
## 334 telephone may mon 88 5 999 0 nonexistent
## 335 telephone may mon 313 3 999 0 nonexistent
## 336 telephone may mon 135 4 999 0 nonexistent
## 337 telephone may mon 152 2 999 0 nonexistent
## 338 telephone may mon 402 3 999 0 nonexistent
## 339 telephone may mon 221 2 999 0 nonexistent
## 340 telephone may mon 213 2 999 0 nonexistent
## 341 telephone may mon 144 3 999 0 nonexistent
## 342 telephone may mon 158 3 999 0 nonexistent
## 343 telephone may mon 220 3 999 0 nonexistent
## 344 telephone may mon 325 2 999 0 nonexistent
## 345 telephone may mon 254 2 999 0 nonexistent
## 346 telephone may mon 503 2 999 0 nonexistent
## 347 telephone may mon 680 2 999 0 nonexistent
## 348 telephone may mon 421 4 999 0 nonexistent
## 349 telephone may mon 130 3 999 0 nonexistent
## 350 telephone may mon 164 2 999 0 nonexistent
## 351 telephone may mon 174 3 999 0 nonexistent
## 352 telephone may mon 113 2 999 0 nonexistent
## 353 telephone may mon 195 2 999 0 nonexistent
## 354 telephone may mon 347 3 999 0 nonexistent
## 355 telephone may mon 208 2 999 0 nonexistent
## 356 telephone may mon 404 4 999 0 nonexistent
## 357 telephone may mon 396 2 999 0 nonexistent
## 358 telephone may mon 98 2 999 0 nonexistent
## 359 telephone may mon 229 3 999 0 nonexistent
## 360 telephone may mon 350 2 999 0 nonexistent
## 361 telephone may tue 88 3 999 0 nonexistent
## 362 telephone may tue 379 2 999 0 nonexistent
## 363 telephone may tue 168 3 999 0 nonexistent
## 364 telephone may tue 190 3 999 0 nonexistent
## 365 telephone may tue 158 1 999 0 nonexistent
## 366 telephone may tue 210 1 999 0 nonexistent
## 367 telephone may tue 102 1 999 0 nonexistent
## 368 telephone may tue 306 1 999 0 nonexistent
## 369 telephone may tue 64 1 999 0 nonexistent
## 370 telephone may tue 218 1 999 0 nonexistent
## 371 telephone may tue 77 1 999 0 nonexistent
## 372 telephone may tue 54 1 999 0 nonexistent
## 373 telephone may tue 344 1 999 0 nonexistent
## 374 telephone may tue 195 1 999 0 nonexistent
## 375 telephone may tue 202 1 999 0 nonexistent
## 376 telephone may tue 286 1 999 0 nonexistent
## 377 telephone may tue 278 1 999 0 nonexistent
## 378 telephone may tue 189 1 999 0 nonexistent
## 379 telephone may tue 83 1 999 0 nonexistent
## 380 telephone may tue 18 1 999 0 nonexistent
## 381 telephone may tue 184 2 999 0 nonexistent
## 382 telephone may tue 235 1 999 0 nonexistent
## 383 telephone may tue 290 1 999 0 nonexistent
## 384 telephone may tue 133 1 999 0 nonexistent
## 385 telephone may tue 318 1 999 0 nonexistent
## 386 telephone may tue 437 1 999 0 nonexistent
## 387 telephone may tue 402 1 999 0 nonexistent
## 388 telephone may tue 501 4 999 0 nonexistent
## 389 telephone may tue 1201 1 999 0 nonexistent
## 390 telephone may tue 1030 1 999 0 nonexistent
## 391 telephone may tue 253 1 999 0 nonexistent
## 392 telephone may tue 149 1 999 0 nonexistent
## 393 telephone may tue 144 1 999 0 nonexistent
## 394 telephone may tue 69 1 999 0 nonexistent
## 395 telephone may tue 243 1 999 0 nonexistent
## 396 telephone may tue 769 2 999 0 nonexistent
## 397 telephone may tue 135 3 999 0 nonexistent
## 398 telephone may tue 231 1 999 0 nonexistent
## 399 telephone may tue 442 2 999 0 nonexistent
## 400 telephone may tue 199 1 999 0 nonexistent
## 401 telephone may tue 455 1 999 0 nonexistent
## 402 telephone may tue 152 1 999 0 nonexistent
## 403 telephone may tue 124 1 999 0 nonexistent
## 404 telephone may tue 424 1 999 0 nonexistent
## 405 telephone may tue 43 1 999 0 nonexistent
## 406 telephone may tue 154 1 999 0 nonexistent
## 407 telephone may tue 393 1 999 0 nonexistent
## 408 telephone may tue 203 2 999 0 nonexistent
## 409 telephone may tue 140 2 999 0 nonexistent
## 410 telephone may tue 326 1 999 0 nonexistent
## 411 telephone may tue 483 1 999 0 nonexistent
## 412 telephone may tue 259 1 999 0 nonexistent
## 413 telephone may tue 227 1 999 0 nonexistent
## 414 telephone may tue 673 1 999 0 nonexistent
## 415 telephone may tue 576 1 999 0 nonexistent
## 416 telephone may tue 180 2 999 0 nonexistent
## 417 telephone may tue 90 1 999 0 nonexistent
## 418 telephone may tue 505 1 999 0 nonexistent
## 419 telephone may tue 245 1 999 0 nonexistent
## 420 telephone may tue 186 1 999 0 nonexistent
## 421 telephone may tue 208 1 999 0 nonexistent
## 422 telephone may tue 623 1 999 0 nonexistent
## 423 telephone may tue 180 1 999 0 nonexistent
## 424 telephone may tue 496 3 999 0 nonexistent
## 425 telephone may tue 118 1 999 0 nonexistent
## 426 telephone may tue 102 2 999 0 nonexistent
## 427 telephone may tue 342 1 999 0 nonexistent
## 428 telephone may tue 225 1 999 0 nonexistent
## 429 telephone may tue 185 3 999 0 nonexistent
## 430 telephone may tue 276 1 999 0 nonexistent
## 431 telephone may tue 87 1 999 0 nonexistent
## 432 telephone may tue 744 1 999 0 nonexistent
## 433 telephone may tue 262 1 999 0 nonexistent
## 434 telephone may tue 271 1 999 0 nonexistent
## 435 telephone may tue 141 1 999 0 nonexistent
## 436 telephone may tue 198 2 999 0 nonexistent
## 437 telephone may tue 150 1 999 0 nonexistent
## 438 telephone may tue 241 1 999 0 nonexistent
## 439 telephone may tue 196 1 999 0 nonexistent
## 440 telephone may tue 149 1 999 0 nonexistent
## 441 telephone may tue 264 1 999 0 nonexistent
## 442 telephone may tue 246 1 999 0 nonexistent
## 443 telephone may tue 309 2 999 0 nonexistent
## 444 telephone may tue 140 1 999 0 nonexistent
## 445 telephone may tue 175 1 999 0 nonexistent
## 446 telephone may tue 136 1 999 0 nonexistent
## 447 telephone may tue 1623 1 999 0 nonexistent
## 448 telephone may tue 50 1 999 0 nonexistent
## 449 telephone may tue 101 1 999 0 nonexistent
## 450 telephone may tue 144 1 999 0 nonexistent
## 451 telephone may tue 238 1 999 0 nonexistent
## 452 telephone may tue 354 1 999 0 nonexistent
## 453 telephone may tue 451 2 999 0 nonexistent
## 454 telephone may tue 159 1 999 0 nonexistent
## 455 telephone may tue 170 1 999 0 nonexistent
## 456 telephone may tue 243 1 999 0 nonexistent
## 457 telephone may tue 141 2 999 0 nonexistent
## 458 telephone may tue 112 1 999 0 nonexistent
## 459 telephone may tue 262 2 999 0 nonexistent
## 460 telephone may tue 53 1 999 0 nonexistent
## 461 telephone may tue 134 1 999 0 nonexistent
## 462 telephone may tue 204 4 999 0 nonexistent
## 463 telephone may tue 678 1 999 0 nonexistent
## 464 telephone may tue 182 1 999 0 nonexistent
## 465 telephone may tue 162 1 999 0 nonexistent
## 466 telephone may tue 177 1 999 0 nonexistent
## 467 telephone may tue 27 1 999 0 nonexistent
## 468 telephone may tue 699 3 999 0 nonexistent
## 469 telephone may tue 358 1 999 0 nonexistent
## 470 telephone may tue 1677 1 999 0 nonexistent
## 471 telephone may tue 529 1 999 0 nonexistent
## 472 telephone may tue 310 1 999 0 nonexistent
## 473 telephone may tue 47 1 999 0 nonexistent
## 474 telephone may tue 379 1 999 0 nonexistent
## 475 telephone may tue 30 2 999 0 nonexistent
## 476 telephone may tue 472 1 999 0 nonexistent
## 477 telephone may tue 113 1 999 0 nonexistent
## 478 telephone may tue 114 1 999 0 nonexistent
## 479 telephone may tue 116 1 999 0 nonexistent
## 480 telephone may tue 448 1 999 0 nonexistent
## 481 telephone may tue 264 1 999 0 nonexistent
## 482 telephone may tue 169 1 999 0 nonexistent
## 483 telephone may tue 145 1 999 0 nonexistent
## 484 telephone may tue 288 1 999 0 nonexistent
## 485 telephone may tue 381 1 999 0 nonexistent
## 486 telephone may tue 176 2 999 0 nonexistent
## 487 telephone may tue 215 1 999 0 nonexistent
## 488 telephone may tue 278 1 999 0 nonexistent
## 489 telephone may tue 188 2 999 0 nonexistent
## 490 telephone may tue 174 2 999 0 nonexistent
## 491 telephone may tue 226 2 999 0 nonexistent
## 492 telephone may tue 111 2 999 0 nonexistent
## 493 telephone may tue 157 2 999 0 nonexistent
## 494 telephone may tue 46 1 999 0 nonexistent
## 495 telephone may tue 49 1 999 0 nonexistent
## 496 telephone may tue 374 1 999 0 nonexistent
## 497 telephone may tue 349 1 999 0 nonexistent
## 498 telephone may tue 325 1 999 0 nonexistent
## 499 telephone may tue 233 2 999 0 nonexistent
## 500 telephone may tue 531 1 999 0 nonexistent
## 501 telephone may tue 153 1 999 0 nonexistent
## 502 telephone may tue 80 1 999 0 nonexistent
## 503 telephone may tue 198 1 999 0 nonexistent
## 504 telephone may tue 568 1 999 0 nonexistent
## 505 telephone may tue 918 1 999 0 nonexistent
## 506 telephone may tue 82 1 999 0 nonexistent
## 507 telephone may tue 198 3 999 0 nonexistent
## 508 telephone may tue 211 1 999 0 nonexistent
## 509 telephone may tue 120 1 999 0 nonexistent
## 510 telephone may tue 269 1 999 0 nonexistent
## 511 telephone may tue 128 1 999 0 nonexistent
## 512 telephone may tue 166 2 999 0 nonexistent
## 513 telephone may tue 211 1 999 0 nonexistent
## 514 telephone may tue 369 1 999 0 nonexistent
## 515 telephone may tue 91 1 999 0 nonexistent
## 516 telephone may tue 267 2 999 0 nonexistent
## 517 telephone may tue 198 1 999 0 nonexistent
## 518 telephone may tue 371 2 999 0 nonexistent
## 519 telephone may tue 288 2 999 0 nonexistent
## 520 telephone may tue 221 1 999 0 nonexistent
## 521 telephone may tue 427 1 999 0 nonexistent
## 522 telephone may tue 310 1 999 0 nonexistent
## 523 telephone may tue 158 1 999 0 nonexistent
## 524 telephone may tue 198 1 999 0 nonexistent
## 525 telephone may tue 145 1 999 0 nonexistent
## 526 telephone may tue 247 1 999 0 nonexistent
## 527 telephone may tue 102 1 999 0 nonexistent
## 528 telephone may tue 179 2 999 0 nonexistent
## 529 telephone may tue 73 1 999 0 nonexistent
## 530 telephone may tue 263 2 999 0 nonexistent
## 531 telephone may tue 342 2 999 0 nonexistent
## 532 telephone may tue 41 1 999 0 nonexistent
## 533 telephone may tue 13 1 999 0 nonexistent
## 534 telephone may tue 79 2 999 0 nonexistent
## 535 telephone may tue 358 1 999 0 nonexistent
## 536 telephone may tue 162 1 999 0 nonexistent
## 537 telephone may tue 150 1 999 0 nonexistent
## 538 telephone may tue 26 1 999 0 nonexistent
## 539 telephone may tue 250 1 999 0 nonexistent
## 540 telephone may tue 792 1 999 0 nonexistent
## 541 telephone may tue 146 1 999 0 nonexistent
## 542 telephone may tue 440 1 999 0 nonexistent
## 543 telephone may tue 289 1 999 0 nonexistent
## 544 telephone may tue 242 2 999 0 nonexistent
## 545 telephone may tue 123 1 999 0 nonexistent
## 546 telephone may tue 161 2 999 0 nonexistent
## 547 telephone may tue 268 2 999 0 nonexistent
## 548 telephone may tue 259 2 999 0 nonexistent
## 549 telephone may tue 26 1 999 0 nonexistent
## 550 telephone may tue 153 1 999 0 nonexistent
## 551 telephone may tue 424 2 999 0 nonexistent
## 552 telephone may tue 375 1 999 0 nonexistent
## 553 telephone may tue 179 2 999 0 nonexistent
## 554 telephone may tue 383 1 999 0 nonexistent
## 555 telephone may tue 440 1 999 0 nonexistent
## 556 telephone may tue 195 1 999 0 nonexistent
## 557 telephone may tue 1297 3 999 0 nonexistent
## 558 telephone may tue 217 1 999 0 nonexistent
## 559 telephone may tue 87 1 999 0 nonexistent
## 560 telephone may tue 427 1 999 0 nonexistent
## 561 telephone may tue 189 1 999 0 nonexistent
## 562 telephone may tue 502 1 999 0 nonexistent
## 563 telephone may tue 260 1 999 0 nonexistent
## 564 telephone may tue 209 1 999 0 nonexistent
## 565 telephone may tue 179 1 999 0 nonexistent
## 566 telephone may tue 179 1 999 0 nonexistent
## 567 telephone may tue 69 1 999 0 nonexistent
## 568 telephone may tue 105 2 999 0 nonexistent
## 569 telephone may tue 266 3 999 0 nonexistent
## 570 telephone may tue 87 2 999 0 nonexistent
## 571 telephone may tue 524 2 999 0 nonexistent
## 572 telephone may tue 155 2 999 0 nonexistent
## 573 telephone may tue 162 2 999 0 nonexistent
## 574 telephone may tue 316 4 999 0 nonexistent
## 575 telephone may tue 352 2 999 0 nonexistent
## 576 telephone may tue 695 3 999 0 nonexistent
## 577 telephone may tue 76 4 999 0 nonexistent
## 578 telephone may tue 535 2 999 0 nonexistent
## 579 telephone may tue 310 2 999 0 nonexistent
## 580 telephone may tue 390 3 999 0 nonexistent
## 581 telephone may tue 369 1 999 0 nonexistent
## 582 telephone may tue 112 2 999 0 nonexistent
## 583 telephone may tue 79 1 999 0 nonexistent
## 584 telephone may tue 140 2 999 0 nonexistent
## 585 telephone may tue 315 1 999 0 nonexistent
## 586 telephone may tue 262 2 999 0 nonexistent
## 587 telephone may tue 174 2 999 0 nonexistent
## 588 telephone may tue 424 2 999 0 nonexistent
## 589 telephone may tue 135 1 999 0 nonexistent
## 590 telephone may tue 36 5 999 0 nonexistent
## 591 telephone may tue 1906 3 999 0 nonexistent
## 592 telephone may tue 219 2 999 0 nonexistent
## 593 telephone may tue 135 1 999 0 nonexistent
## 594 telephone may tue 147 2 999 0 nonexistent
## 595 telephone may tue 407 2 999 0 nonexistent
## 596 telephone may tue 402 4 999 0 nonexistent
## 597 telephone may tue 209 1 999 0 nonexistent
## 598 telephone may tue 92 2 999 0 nonexistent
## 599 telephone may tue 208 1 999 0 nonexistent
## 600 telephone may tue 193 1 999 0 nonexistent
## 601 telephone may tue 65 1 999 0 nonexistent
## 602 telephone may tue 284 2 999 0 nonexistent
## 603 telephone may tue 285 1 999 0 nonexistent
## 604 telephone may tue 231 1 999 0 nonexistent
## 605 telephone may tue 278 1 999 0 nonexistent
## 606 telephone may tue 389 1 999 0 nonexistent
## 607 telephone may tue 158 1 999 0 nonexistent
## 608 telephone may tue 78 2 999 0 nonexistent
## 609 telephone may tue 258 5 999 0 nonexistent
## 610 telephone may tue 87 1 999 0 nonexistent
## 611 telephone may tue 147 2 999 0 nonexistent
## 612 telephone may tue 635 1 999 0 nonexistent
## 613 telephone may tue 289 1 999 0 nonexistent
## 614 telephone may tue 170 3 999 0 nonexistent
## 615 telephone may tue 802 1 999 0 nonexistent
## 616 telephone may tue 381 2 999 0 nonexistent
## 617 telephone may tue 218 4 999 0 nonexistent
## 618 telephone may tue 57 2 999 0 nonexistent
## 619 telephone may tue 304 2 999 0 nonexistent
## 620 telephone may tue 241 3 999 0 nonexistent
## 621 telephone may tue 230 1 999 0 nonexistent
## 622 telephone may tue 79 4 999 0 nonexistent
## 623 telephone may tue 262 3 999 0 nonexistent
## 624 telephone may tue 392 2 999 0 nonexistent
## 625 telephone may tue 201 2 999 0 nonexistent
## 626 telephone may tue 145 1 999 0 nonexistent
## 627 telephone may tue 252 1 999 0 nonexistent
## 628 telephone may tue 329 1 999 0 nonexistent
## 629 telephone may tue 328 2 999 0 nonexistent
## 630 telephone may tue 191 2 999 0 nonexistent
## 631 telephone may tue 116 2 999 0 nonexistent
## 632 telephone may tue 246 1 999 0 nonexistent
## 633 telephone may tue 532 2 999 0 nonexistent
## 634 telephone may tue 293 1 999 0 nonexistent
## 635 telephone may tue 416 3 999 0 nonexistent
## 636 telephone may tue 37 2 999 0 nonexistent
## 637 telephone may tue 132 2 999 0 nonexistent
## 638 telephone may tue 530 2 999 0 nonexistent
## 639 telephone may tue 175 3 999 0 nonexistent
## 640 telephone may tue 90 5 999 0 nonexistent
## 641 telephone may tue 524 2 999 0 nonexistent
## 642 telephone may tue 29 3 999 0 nonexistent
## 643 telephone may tue 311 2 999 0 nonexistent
## 644 telephone may tue 412 1 999 0 nonexistent
## 645 telephone may tue 211 2 999 0 nonexistent
## 646 telephone may tue 312 3 999 0 nonexistent
## 647 telephone may tue 392 1 999 0 nonexistent
## 648 telephone may tue 191 1 999 0 nonexistent
## 649 telephone may tue 284 2 999 0 nonexistent
## 650 telephone may tue 328 1 999 0 nonexistent
## 651 telephone may tue 100 1 999 0 nonexistent
## 652 telephone may tue 226 1 999 0 nonexistent
## 653 telephone may tue 507 1 999 0 nonexistent
## 654 telephone may tue 333 2 999 0 nonexistent
## 655 telephone may tue 128 2 999 0 nonexistent
## 656 telephone may tue 322 2 999 0 nonexistent
## 657 telephone may tue 202 4 999 0 nonexistent
## 658 telephone may tue 92 2 999 0 nonexistent
## 659 telephone may tue 205 2 999 0 nonexistent
## 660 telephone may tue 739 3 999 0 nonexistent
## 661 telephone may tue 273 2 999 0 nonexistent
## 662 telephone may tue 339 3 999 0 nonexistent
## 663 telephone may tue 262 1 999 0 nonexistent
## 664 telephone may tue 308 3 999 0 nonexistent
## 665 telephone may tue 467 2 999 0 nonexistent
## 666 telephone may tue 245 2 999 0 nonexistent
## 667 telephone may tue 160 3 999 0 nonexistent
## 668 telephone may tue 189 2 999 0 nonexistent
## 669 telephone may tue 477 1 999 0 nonexistent
## 670 telephone may tue 65 3 999 0 nonexistent
## 671 telephone may tue 191 1 999 0 nonexistent
## 672 telephone may tue 196 2 999 0 nonexistent
## 673 telephone may tue 221 2 999 0 nonexistent
## 674 telephone may tue 197 2 999 0 nonexistent
## 675 telephone may tue 178 2 999 0 nonexistent
## 676 telephone may tue 221 2 999 0 nonexistent
## 677 telephone may tue 64 2 999 0 nonexistent
## 678 telephone may tue 75 2 999 0 nonexistent
## 679 telephone may tue 400 2 999 0 nonexistent
## 680 telephone may tue 378 3 999 0 nonexistent
## 681 telephone may tue 118 2 999 0 nonexistent
## 682 telephone may tue 1597 2 999 0 nonexistent
## 683 telephone may tue 346 2 999 0 nonexistent
## 684 telephone may tue 107 2 999 0 nonexistent
## 685 telephone may tue 60 3 999 0 nonexistent
## 686 telephone may tue 276 2 999 0 nonexistent
## 687 telephone may tue 176 2 999 0 nonexistent
## 688 telephone may tue 390 2 999 0 nonexistent
## 689 telephone may tue 251 3 999 0 nonexistent
## 690 telephone may tue 716 2 999 0 nonexistent
## 691 telephone may tue 189 3 999 0 nonexistent
## 692 telephone may tue 125 2 999 0 nonexistent
## 693 telephone may tue 234 2 999 0 nonexistent
## 694 telephone may tue 79 2 999 0 nonexistent
## 695 telephone may tue 13 6 999 0 nonexistent
## 696 telephone may tue 296 3 999 0 nonexistent
## 697 telephone may tue 114 2 999 0 nonexistent
## 698 telephone may tue 283 3 999 0 nonexistent
## 699 telephone may tue 109 2 999 0 nonexistent
## 700 telephone may tue 132 2 999 0 nonexistent
## 701 telephone may tue 144 2 999 0 nonexistent
## 702 telephone may tue 121 2 999 0 nonexistent
## 703 telephone may tue 95 3 999 0 nonexistent
## 704 telephone may tue 31 3 999 0 nonexistent
## 705 telephone may tue 112 3 999 0 nonexistent
## 706 telephone may tue 161 2 999 0 nonexistent
## 707 telephone may tue 87 4 999 0 nonexistent
## 708 telephone may tue 593 2 999 0 nonexistent
## 709 telephone may tue 99 2 999 0 nonexistent
## 710 telephone may tue 198 2 999 0 nonexistent
## 711 telephone may tue 285 2 999 0 nonexistent
## 712 telephone may tue 190 3 999 0 nonexistent
## 713 telephone may tue 172 5 999 0 nonexistent
## 714 telephone may tue 178 2 999 0 nonexistent
## 715 telephone may tue 174 2 999 0 nonexistent
## 716 telephone may tue 631 2 999 0 nonexistent
## 717 telephone may tue 152 3 999 0 nonexistent
## 718 telephone may tue 176 5 999 0 nonexistent
## 719 telephone may tue 32 3 999 0 nonexistent
## 720 telephone may tue 1529 2 999 0 nonexistent
## 721 telephone may tue 254 2 999 0 nonexistent
## 722 telephone may tue 214 2 999 0 nonexistent
## 723 telephone may tue 147 3 999 0 nonexistent
## 724 telephone may tue 800 4 999 0 nonexistent
## 725 telephone may tue 106 2 999 0 nonexistent
## 726 telephone may tue 135 2 999 0 nonexistent
## 727 telephone may tue 112 4 999 0 nonexistent
## 728 telephone may tue 222 2 999 0 nonexistent
## 729 telephone may tue 314 3 999 0 nonexistent
## 730 telephone may tue 421 2 999 0 nonexistent
## 731 telephone may tue 410 2 999 0 nonexistent
## 732 telephone may tue 207 3 999 0 nonexistent
## 733 telephone may tue 239 2 999 0 nonexistent
## 734 telephone may tue 83 4 999 0 nonexistent
## 735 telephone may tue 160 3 999 0 nonexistent
## 736 telephone may tue 42 3 999 0 nonexistent
## 737 telephone may tue 55 2 999 0 nonexistent
## 738 telephone may tue 157 2 999 0 nonexistent
## 739 telephone may tue 303 3 999 0 nonexistent
## 740 telephone may tue 336 3 999 0 nonexistent
## 741 telephone may tue 233 2 999 0 nonexistent
## 742 telephone may tue 211 2 999 0 nonexistent
## 743 telephone may tue 88 5 999 0 nonexistent
## 744 telephone may tue 139 2 999 0 nonexistent
## 745 telephone may tue 329 3 999 0 nonexistent
## 746 telephone may tue 305 2 999 0 nonexistent
## 747 telephone may tue 206 2 999 0 nonexistent
## 748 telephone may tue 128 2 999 0 nonexistent
## 749 telephone may tue 122 3 999 0 nonexistent
## 750 telephone may tue 343 3 999 0 nonexistent
## 751 telephone may tue 126 2 999 0 nonexistent
## 752 telephone may tue 249 3 999 0 nonexistent
## 753 telephone may tue 59 3 999 0 nonexistent
## 754 telephone may tue 166 3 999 0 nonexistent
## 755 telephone may tue 190 3 999 0 nonexistent
## 756 telephone may tue 216 2 999 0 nonexistent
## 757 telephone may wed 51 3 999 0 nonexistent
## 758 telephone may wed 169 3 999 0 nonexistent
## 759 telephone may wed 148 3 999 0 nonexistent
## 760 telephone may wed 132 3 999 0 nonexistent
## 761 telephone may wed 117 3 999 0 nonexistent
## 762 telephone may wed 275 4 999 0 nonexistent
## 763 telephone may wed 124 2 999 0 nonexistent
## 764 telephone may wed 118 3 999 0 nonexistent
## 765 telephone may wed 479 2 999 0 nonexistent
## 766 telephone may wed 285 3 999 0 nonexistent
## 767 telephone may wed 322 2 999 0 nonexistent
## 768 telephone may wed 202 2 999 0 nonexistent
## 769 telephone may wed 162 2 999 0 nonexistent
## 770 telephone may wed 216 3 999 0 nonexistent
## 771 telephone may wed 195 2 999 0 nonexistent
## 772 telephone may wed 96 2 999 0 nonexistent
## 773 telephone may wed 149 2 999 0 nonexistent
## 774 telephone may wed 720 2 999 0 nonexistent
## 775 telephone may wed 92 2 999 0 nonexistent
## 776 telephone may wed 188 2 999 0 nonexistent
## 777 telephone may wed 70 2 999 0 nonexistent
## 778 telephone may wed 141 3 999 0 nonexistent
## 779 telephone may wed 395 2 999 0 nonexistent
## 780 telephone may wed 629 2 999 0 nonexistent
## 781 telephone may wed 261 3 999 0 nonexistent
## 782 telephone may wed 502 1 999 0 nonexistent
## 783 telephone may wed 446 1 999 0 nonexistent
## 784 telephone may wed 131 3 999 0 nonexistent
## 785 telephone may wed 198 3 999 0 nonexistent
## 786 telephone may wed 312 1 999 0 nonexistent
## 787 telephone may wed 275 6 999 0 nonexistent
## 788 telephone may wed 120 2 999 0 nonexistent
## 789 telephone may wed 333 4 999 0 nonexistent
## 790 telephone may wed 113 1 999 0 nonexistent
## 791 telephone may wed 150 1 999 0 nonexistent
## 792 telephone may wed 91 1 999 0 nonexistent
## 793 telephone may wed 296 1 999 0 nonexistent
## 794 telephone may wed 128 3 999 0 nonexistent
## 795 telephone may wed 298 1 999 0 nonexistent
## 796 telephone may wed 326 1 999 0 nonexistent
## 797 telephone may wed 292 1 999 0 nonexistent
## 798 telephone may wed 215 1 999 0 nonexistent
## 799 telephone may wed 97 1 999 0 nonexistent
## 800 telephone may wed 32 1 999 0 nonexistent
## 801 telephone may wed 162 1 999 0 nonexistent
## 802 telephone may wed 421 1 999 0 nonexistent
## 803 telephone may wed 268 1 999 0 nonexistent
## 804 telephone may wed 232 1 999 0 nonexistent
## 805 telephone may wed 152 3 999 0 nonexistent
## 806 telephone may wed 104 2 999 0 nonexistent
## 807 telephone may wed 852 1 999 0 nonexistent
## 808 telephone may wed 159 2 999 0 nonexistent
## 809 telephone may wed 416 2 999 0 nonexistent
## 810 telephone may wed 174 1 999 0 nonexistent
## 811 telephone may wed 139 1 999 0 nonexistent
## 812 telephone may wed 193 1 999 0 nonexistent
## 813 telephone may wed 294 1 999 0 nonexistent
## 814 telephone may wed 102 1 999 0 nonexistent
## 815 telephone may wed 124 1 999 0 nonexistent
## 816 telephone may wed 143 1 999 0 nonexistent
## 817 telephone may wed 231 1 999 0 nonexistent
## 818 telephone may wed 128 1 999 0 nonexistent
## 819 telephone may wed 74 1 999 0 nonexistent
## 820 telephone may wed 105 2 999 0 nonexistent
## 821 telephone may wed 992 1 999 0 nonexistent
## 822 telephone may wed 168 1 999 0 nonexistent
## 823 telephone may wed 250 1 999 0 nonexistent
## 824 telephone may wed 254 1 999 0 nonexistent
## 825 telephone may wed 149 1 999 0 nonexistent
## 826 telephone may wed 133 2 999 0 nonexistent
## 827 telephone may wed 374 1 999 0 nonexistent
## 828 telephone may wed 425 6 999 0 nonexistent
## 829 telephone may wed 207 1 999 0 nonexistent
## 830 telephone may wed 464 1 999 0 nonexistent
## 831 telephone may wed 439 1 999 0 nonexistent
## 832 telephone may wed 83 3 999 0 nonexistent
## 833 telephone may wed 732 2 999 0 nonexistent
## 834 telephone may wed 149 1 999 0 nonexistent
## 835 telephone may wed 142 1 999 0 nonexistent
## 836 telephone may wed 121 1 999 0 nonexistent
## 837 telephone may wed 359 1 999 0 nonexistent
## 838 telephone may wed 112 1 999 0 nonexistent
## 839 telephone may wed 274 4 999 0 nonexistent
## 840 telephone may wed 325 2 999 0 nonexistent
## 841 telephone may wed 1521 1 999 0 nonexistent
## 842 telephone may wed 216 1 999 0 nonexistent
## 843 telephone may wed 161 1 999 0 nonexistent
## 844 telephone may wed 122 2 999 0 nonexistent
## 845 telephone may wed 800 1 999 0 nonexistent
## 846 telephone may wed 615 1 999 0 nonexistent
## 847 telephone may wed 111 1 999 0 nonexistent
## 848 telephone may wed 359 1 999 0 nonexistent
## 849 telephone may wed 327 3 999 0 nonexistent
## 850 telephone may wed 236 1 999 0 nonexistent
## 851 telephone may wed 227 1 999 0 nonexistent
## 852 telephone may wed 109 1 999 0 nonexistent
## 853 telephone may wed 492 2 999 0 nonexistent
## 854 telephone may wed 298 1 999 0 nonexistent
## 855 telephone may wed 83 2 999 0 nonexistent
## 856 telephone may wed 241 2 999 0 nonexistent
## 857 telephone may wed 1138 1 999 0 nonexistent
## 858 telephone may wed 131 1 999 0 nonexistent
## 859 telephone may wed 123 1 999 0 nonexistent
## 860 telephone may wed 125 1 999 0 nonexistent
## 861 telephone may wed 295 2 999 0 nonexistent
## 862 telephone may wed 287 1 999 0 nonexistent
## 863 telephone may wed 109 1 999 0 nonexistent
## 864 telephone may wed 140 2 999 0 nonexistent
## 865 telephone may wed 52 1 999 0 nonexistent
## 866 telephone may wed 233 1 999 0 nonexistent
## 867 telephone may wed 254 1 999 0 nonexistent
## 868 telephone may wed 255 1 999 0 nonexistent
## 869 telephone may wed 126 1 999 0 nonexistent
## 870 telephone may wed 184 2 999 0 nonexistent
## 871 telephone may wed 591 1 999 0 nonexistent
## 872 telephone may wed 294 1 999 0 nonexistent
## 873 telephone may wed 285 1 999 0 nonexistent
## 874 telephone may wed 173 1 999 0 nonexistent
## 875 telephone may wed 336 1 999 0 nonexistent
## 876 telephone may wed 344 1 999 0 nonexistent
## 877 telephone may wed 786 1 999 0 nonexistent
## 878 telephone may wed 153 1 999 0 nonexistent
## 879 telephone may wed 99 2 999 0 nonexistent
## 880 telephone may wed 243 1 999 0 nonexistent
## 881 telephone may wed 260 1 999 0 nonexistent
## 882 telephone may wed 164 2 999 0 nonexistent
## 883 telephone may wed 255 2 999 0 nonexistent
## 884 telephone may wed 47 1 999 0 nonexistent
## 885 telephone may wed 110 2 999 0 nonexistent
## 886 telephone may wed 463 1 999 0 nonexistent
## 887 telephone may wed 192 1 999 0 nonexistent
## 888 telephone may wed 388 7 999 0 nonexistent
## 889 telephone may wed 221 1 999 0 nonexistent
## 890 telephone may wed 25 1 999 0 nonexistent
## 891 telephone may wed 256 6 999 0 nonexistent
## 892 telephone may wed 104 1 999 0 nonexistent
## 893 telephone may wed 283 2 999 0 nonexistent
## 894 telephone may wed 448 1 999 0 nonexistent
## 895 telephone may wed 127 1 999 0 nonexistent
## 896 telephone may wed 378 1 999 0 nonexistent
## 897 telephone may wed 67 1 999 0 nonexistent
## 898 telephone may wed 221 2 999 0 nonexistent
## 899 telephone may wed 150 1 999 0 nonexistent
## 900 telephone may wed 144 2 999 0 nonexistent
## 901 telephone may wed 296 2 999 0 nonexistent
## 902 telephone may wed 161 1 999 0 nonexistent
## 903 telephone may wed 401 2 999 0 nonexistent
## 904 telephone may wed 435 2 999 0 nonexistent
## 905 telephone may wed 388 1 999 0 nonexistent
## 906 telephone may wed 245 1 999 0 nonexistent
## 907 telephone may wed 143 1 999 0 nonexistent
## 908 telephone may wed 423 1 999 0 nonexistent
## 909 telephone may wed 231 1 999 0 nonexistent
## 910 telephone may wed 181 1 999 0 nonexistent
## 911 telephone may wed 107 1 999 0 nonexistent
## 912 telephone may wed 227 1 999 0 nonexistent
## 913 telephone may wed 69 1 999 0 nonexistent
## 914 telephone may wed 799 1 999 0 nonexistent
## 915 telephone may wed 109 1 999 0 nonexistent
## 916 telephone may wed 127 1 999 0 nonexistent
## 917 telephone may wed 45 1 999 0 nonexistent
## 918 telephone may wed 120 1 999 0 nonexistent
## 919 telephone may wed 68 3 999 0 nonexistent
## 920 telephone may wed 180 2 999 0 nonexistent
## 921 telephone may wed 112 3 999 0 nonexistent
## 922 telephone may wed 444 1 999 0 nonexistent
## 923 telephone may wed 246 2 999 0 nonexistent
## 924 telephone may wed 148 4 999 0 nonexistent
## 925 telephone may wed 223 3 999 0 nonexistent
## 926 telephone may wed 566 2 999 0 nonexistent
## 927 telephone may wed 274 2 999 0 nonexistent
## 928 telephone may wed 49 3 999 0 nonexistent
## 929 telephone may wed 97 2 999 0 nonexistent
## 930 telephone may wed 376 2 999 0 nonexistent
## 931 telephone may wed 421 2 999 0 nonexistent
## 932 telephone may wed 511 2 999 0 nonexistent
## 933 telephone may wed 121 2 999 0 nonexistent
## 934 telephone may wed 157 2 999 0 nonexistent
## 935 telephone may wed 101 1 999 0 nonexistent
## 936 telephone may wed 328 2 999 0 nonexistent
## 937 telephone may wed 19 1 999 0 nonexistent
## 938 telephone may wed 866 2 999 0 nonexistent
## 939 telephone may wed 229 3 999 0 nonexistent
## 940 telephone may wed 154 2 999 0 nonexistent
## 941 telephone may wed 56 1 999 0 nonexistent
## 942 telephone may wed 199 1 999 0 nonexistent
## 943 telephone may wed 117 1 999 0 nonexistent
## 944 telephone may wed 1581 2 999 0 nonexistent
## 945 telephone may wed 185 1 999 0 nonexistent
## 946 telephone may wed 202 1 999 0 nonexistent
## 947 telephone may wed 279 1 999 0 nonexistent
## 948 telephone may wed 180 5 999 0 nonexistent
## 949 telephone may wed 530 2 999 0 nonexistent
## 950 telephone may wed 129 5 999 0 nonexistent
## 951 telephone may wed 60 1 999 0 nonexistent
## 952 telephone may wed 432 1 999 0 nonexistent
## 953 telephone may wed 516 1 999 0 nonexistent
## 954 telephone may wed 617 1 999 0 nonexistent
## 955 telephone may wed 179 2 999 0 nonexistent
## 956 telephone may wed 125 2 999 0 nonexistent
## 957 telephone may wed 262 2 999 0 nonexistent
## 958 telephone may wed 396 2 999 0 nonexistent
## 959 telephone may wed 294 2 999 0 nonexistent
## 960 telephone may wed 171 2 999 0 nonexistent
## 961 telephone may wed 614 2 999 0 nonexistent
## 962 telephone may wed 118 3 999 0 nonexistent
## 963 telephone may wed 485 4 999 0 nonexistent
## 964 telephone may wed 406 2 999 0 nonexistent
## 965 telephone may wed 287 1 999 0 nonexistent
## 966 telephone may wed 216 2 999 0 nonexistent
## 967 telephone may wed 37 2 999 0 nonexistent
## 968 telephone may wed 650 1 999 0 nonexistent
## 969 telephone may wed 590 3 999 0 nonexistent
## 970 telephone may wed 55 1 999 0 nonexistent
## 971 telephone may wed 166 1 999 0 nonexistent
## 972 telephone may wed 371 2 999 0 nonexistent
## 973 telephone may wed 48 1 999 0 nonexistent
## 974 telephone may wed 72 1 999 0 nonexistent
## 975 telephone may wed 55 1 999 0 nonexistent
## 976 telephone may wed 92 1 999 0 nonexistent
## 977 telephone may wed 196 2 999 0 nonexistent
## 978 telephone may wed 96 1 999 0 nonexistent
## 979 telephone may wed 144 1 999 0 nonexistent
## 980 telephone may wed 474 1 999 0 nonexistent
## 981 telephone may wed 559 1 999 0 nonexistent
## 982 telephone may wed 1101 1 999 0 nonexistent
## 983 telephone may wed 229 3 999 0 nonexistent
## 984 telephone may wed 236 2 999 0 nonexistent
## 985 telephone may wed 164 1 999 0 nonexistent
## 986 telephone may wed 93 1 999 0 nonexistent
## 987 telephone may wed 123 1 999 0 nonexistent
## 988 telephone may wed 912 2 999 0 nonexistent
## 989 telephone may wed 209 2 999 0 nonexistent
## 990 telephone may wed 485 1 999 0 nonexistent
## 991 telephone may wed 206 2 999 0 nonexistent
## 992 telephone may wed 239 2 999 0 nonexistent
## 993 telephone may wed 311 1 999 0 nonexistent
## 994 telephone may wed 362 1 999 0 nonexistent
## 995 telephone may wed 274 1 999 0 nonexistent
## 996 telephone may wed 163 1 999 0 nonexistent
## 997 telephone may wed 345 1 999 0 nonexistent
## 998 telephone may wed 329 1 999 0 nonexistent
## 999 telephone may wed 68 1 999 0 nonexistent
## 1000 telephone may wed 143 3 999 0 nonexistent
## 1001 telephone may wed 214 2 999 0 nonexistent
## 1002 telephone may wed 1062 1 999 0 nonexistent
## 1003 telephone may wed 258 3 999 0 nonexistent
## 1004 telephone may wed 253 2 999 0 nonexistent
## 1005 telephone may wed 106 1 999 0 nonexistent
## 1006 telephone may wed 688 2 999 0 nonexistent
## 1007 telephone may wed 103 3 999 0 nonexistent
## 1008 telephone may wed 349 2 999 0 nonexistent
## 1009 telephone may wed 170 1 999 0 nonexistent
## 1010 telephone may wed 78 5 999 0 nonexistent
## 1011 telephone may wed 194 1 999 0 nonexistent
## 1012 telephone may wed 126 1 999 0 nonexistent
## 1013 telephone may wed 224 5 999 0 nonexistent
## 1014 telephone may wed 98 1 999 0 nonexistent
## 1015 telephone may wed 252 5 999 0 nonexistent
## 1016 telephone may wed 607 1 999 0 nonexistent
## 1017 telephone may wed 331 1 999 0 nonexistent
## 1018 telephone may wed 398 1 999 0 nonexistent
## 1019 telephone may wed 103 2 999 0 nonexistent
## 1020 telephone may wed 241 2 999 0 nonexistent
## 1021 telephone may wed 803 1 999 0 nonexistent
## 1022 telephone may wed 203 1 999 0 nonexistent
## 1023 telephone may wed 96 3 999 0 nonexistent
## 1024 telephone may wed 238 3 999 0 nonexistent
## 1025 telephone may wed 153 3 999 0 nonexistent
## 1026 telephone may wed 481 1 999 0 nonexistent
## 1027 telephone may wed 119 3 999 0 nonexistent
## 1028 telephone may wed 245 2 999 0 nonexistent
## 1029 telephone may wed 152 2 999 0 nonexistent
## 1030 telephone may wed 418 2 999 0 nonexistent
## 1031 telephone may wed 421 2 999 0 nonexistent
## 1032 telephone may wed 198 2 999 0 nonexistent
## 1033 telephone may wed 175 1 999 0 nonexistent
## 1034 telephone may wed 374 1 999 0 nonexistent
## 1035 telephone may wed 51 1 999 0 nonexistent
## 1036 telephone may wed 263 1 999 0 nonexistent
## 1037 telephone may wed 257 1 999 0 nonexistent
## 1038 telephone may wed 229 2 999 0 nonexistent
## 1039 telephone may wed 154 2 999 0 nonexistent
## 1040 telephone may wed 278 6 999 0 nonexistent
## 1041 telephone may wed 306 5 999 0 nonexistent
## 1042 telephone may wed 114 2 999 0 nonexistent
## 1043 telephone may wed 24 2 999 0 nonexistent
## 1044 telephone may wed 79 8 999 0 nonexistent
## 1045 telephone may wed 169 2 999 0 nonexistent
## 1046 telephone may wed 332 2 999 0 nonexistent
## 1047 telephone may wed 263 6 999 0 nonexistent
## 1048 telephone may wed 353 3 999 0 nonexistent
## 1049 telephone may wed 108 6 999 0 nonexistent
## 1050 telephone may wed 441 2 999 0 nonexistent
## 1051 telephone may wed 46 3 999 0 nonexistent
## 1052 telephone may wed 266 2 999 0 nonexistent
## 1053 telephone may wed 222 4 999 0 nonexistent
## 1054 telephone may wed 1009 3 999 0 nonexistent
## 1055 telephone may wed 105 2 999 0 nonexistent
## 1056 telephone may wed 381 2 999 0 nonexistent
## 1057 telephone may wed 228 3 999 0 nonexistent
## 1058 telephone may wed 128 2 999 0 nonexistent
## 1059 telephone may wed 550 3 999 0 nonexistent
## 1060 telephone may wed 764 3 999 0 nonexistent
## 1061 telephone may wed 113 3 999 0 nonexistent
## 1062 telephone may wed 396 4 999 0 nonexistent
## 1063 telephone may wed 42 2 999 0 nonexistent
## 1064 telephone may wed 234 4 999 0 nonexistent
## 1065 telephone may wed 50 2 999 0 nonexistent
## 1066 telephone may wed 110 2 999 0 nonexistent
## 1067 telephone may wed 274 4 999 0 nonexistent
## 1068 telephone may wed 191 4 999 0 nonexistent
## 1069 telephone may wed 305 3 999 0 nonexistent
## 1070 telephone may wed 134 2 999 0 nonexistent
## 1071 telephone may wed 112 4 999 0 nonexistent
## 1072 telephone may wed 217 2 999 0 nonexistent
## 1073 telephone may wed 283 3 999 0 nonexistent
## 1074 telephone may wed 353 4 999 0 nonexistent
## 1075 telephone may wed 212 2 999 0 nonexistent
## 1076 telephone may wed 225 2 999 0 nonexistent
## 1077 telephone may wed 283 1 999 0 nonexistent
## 1078 telephone may wed 1273 1 999 0 nonexistent
## 1079 telephone may wed 1574 2 999 0 nonexistent
## 1080 telephone may wed 139 3 999 0 nonexistent
## 1081 telephone may wed 62 5 999 0 nonexistent
## 1082 telephone may wed 256 3 999 0 nonexistent
## 1083 telephone may wed 245 2 999 0 nonexistent
## 1084 telephone may wed 161 2 999 0 nonexistent
## 1085 telephone may wed 245 3 999 0 nonexistent
## 1086 telephone may wed 89 3 999 0 nonexistent
## 1087 telephone may wed 591 3 999 0 nonexistent
## 1088 telephone may wed 113 2 999 0 nonexistent
## 1089 telephone may wed 517 3 999 0 nonexistent
## 1090 telephone may wed 193 3 999 0 nonexistent
## 1091 telephone may wed 231 2 999 0 nonexistent
## 1092 telephone may wed 348 3 999 0 nonexistent
## 1093 telephone may wed 299 2 999 0 nonexistent
## 1094 telephone may wed 103 4 999 0 nonexistent
## 1095 telephone may wed 253 8 999 0 nonexistent
## 1096 telephone may wed 73 2 999 0 nonexistent
## 1097 telephone may wed 164 5 999 0 nonexistent
## 1098 telephone may wed 244 7 999 0 nonexistent
## 1099 telephone may wed 191 2 999 0 nonexistent
## 1100 telephone may wed 157 6 999 0 nonexistent
## 1101 telephone may wed 548 2 999 0 nonexistent
## 1102 telephone may wed 114 3 999 0 nonexistent
## 1103 telephone may wed 126 5 999 0 nonexistent
## 1104 telephone may wed 161 3 999 0 nonexistent
## 1105 telephone may wed 333 1 999 0 nonexistent
## 1106 telephone may wed 155 1 999 0 nonexistent
## 1107 telephone may wed 152 3 999 0 nonexistent
## 1108 telephone may wed 145 1 999 0 nonexistent
## 1109 telephone may wed 66 3 999 0 nonexistent
## 1110 telephone may wed 123 2 999 0 nonexistent
## 1111 telephone may wed 74 1 999 0 nonexistent
## 1112 telephone may wed 248 3 999 0 nonexistent
## 1113 telephone may wed 275 2 999 0 nonexistent
## 1114 telephone may wed 984 1 999 0 nonexistent
## 1115 telephone may wed 1689 4 999 0 nonexistent
## 1116 telephone may wed 84 2 999 0 nonexistent
## 1117 telephone may wed 27 3 999 0 nonexistent
## 1118 telephone may wed 130 4 999 0 nonexistent
## 1119 telephone may wed 489 2 999 0 nonexistent
## 1120 telephone may wed 41 3 999 0 nonexistent
## 1121 telephone may wed 159 3 999 0 nonexistent
## 1122 telephone may wed 276 4 999 0 nonexistent
## 1123 telephone may wed 196 2 999 0 nonexistent
## 1124 telephone may wed 81 2 999 0 nonexistent
## 1125 telephone may wed 865 2 999 0 nonexistent
## 1126 telephone may wed 149 1 999 0 nonexistent
## 1127 telephone may wed 281 2 999 0 nonexistent
## 1128 telephone may wed 122 5 999 0 nonexistent
## 1129 telephone may wed 361 2 999 0 nonexistent
## 1130 telephone may wed 944 3 999 0 nonexistent
## 1131 telephone may wed 319 3 999 0 nonexistent
## 1132 telephone may wed 35 3 999 0 nonexistent
## 1133 telephone may wed 143 2 999 0 nonexistent
## 1134 telephone may wed 22 2 999 0 nonexistent
## 1135 telephone may wed 90 2 999 0 nonexistent
## 1136 telephone may wed 505 2 999 0 nonexistent
## 1137 telephone may wed 17 2 999 0 nonexistent
## 1138 telephone may wed 404 5 999 0 nonexistent
## 1139 telephone may wed 238 2 999 0 nonexistent
## 1140 telephone may wed 71 4 999 0 nonexistent
## 1141 telephone may wed 309 2 999 0 nonexistent
## 1142 telephone may wed 408 3 999 0 nonexistent
## 1143 telephone may wed 157 3 999 0 nonexistent
## 1144 telephone may wed 280 3 999 0 nonexistent
## 1145 telephone may wed 374 2 999 0 nonexistent
## 1146 telephone may wed 365 4 999 0 nonexistent
## 1147 telephone may thu 177 3 999 0 nonexistent
## 1148 telephone may thu 238 3 999 0 nonexistent
## 1149 telephone may thu 31 2 999 0 nonexistent
## 1150 telephone may thu 425 6 999 0 nonexistent
## 1151 telephone may thu 77 2 999 0 nonexistent
## 1152 telephone may thu 223 2 999 0 nonexistent
## 1153 telephone may thu 239 2 999 0 nonexistent
## 1154 telephone may thu 116 2 999 0 nonexistent
## 1155 telephone may thu 308 3 999 0 nonexistent
## 1156 telephone may thu 137 2 999 0 nonexistent
## 1157 telephone may thu 162 2 999 0 nonexistent
## 1158 telephone may thu 134 1 999 0 nonexistent
## 1159 telephone may thu 175 5 999 0 nonexistent
## 1160 telephone may thu 125 3 999 0 nonexistent
## 1161 telephone may thu 211 3 999 0 nonexistent
## 1162 telephone may thu 180 1 999 0 nonexistent
## 1163 telephone may thu 67 1 999 0 nonexistent
## 1164 telephone may thu 196 1 999 0 nonexistent
## 1165 telephone may thu 342 1 999 0 nonexistent
## 1166 telephone may thu 156 1 999 0 nonexistent
## 1167 telephone may thu 813 1 999 0 nonexistent
## 1168 telephone may thu 178 1 999 0 nonexistent
## 1169 telephone may thu 142 1 999 0 nonexistent
## 1170 telephone may thu 194 1 999 0 nonexistent
## 1171 telephone may thu 132 1 999 0 nonexistent
## 1172 telephone may thu 110 1 999 0 nonexistent
## 1173 telephone may thu 109 1 999 0 nonexistent
## 1174 telephone may thu 94 1 999 0 nonexistent
## 1175 telephone may thu 31 1 999 0 nonexistent
## 1176 telephone may thu 220 1 999 0 nonexistent
## 1177 telephone may thu 489 1 999 0 nonexistent
## 1178 telephone may thu 180 1 999 0 nonexistent
## 1179 telephone may thu 314 1 999 0 nonexistent
## 1180 telephone may thu 203 1 999 0 nonexistent
## 1181 telephone may thu 328 2 999 0 nonexistent
## 1182 telephone may thu 207 1 999 0 nonexistent
## 1183 telephone may thu 193 1 999 0 nonexistent
## 1184 telephone may thu 177 2 999 0 nonexistent
## 1185 telephone may thu 528 1 999 0 nonexistent
## 1186 telephone may thu 183 1 999 0 nonexistent
## 1187 telephone may thu 238 1 999 0 nonexistent
## 1188 telephone may thu 61 1 999 0 nonexistent
## 1189 telephone may thu 70 1 999 0 nonexistent
## 1190 telephone may thu 541 3 999 0 nonexistent
## 1191 telephone may thu 41 1 999 0 nonexistent
## 1192 telephone may thu 93 1 999 0 nonexistent
## 1193 telephone may thu 149 1 999 0 nonexistent
## 1194 telephone may thu 35 1 999 0 nonexistent
## 1195 telephone may thu 262 1 999 0 nonexistent
## 1196 telephone may thu 151 1 999 0 nonexistent
## 1197 telephone may thu 135 2 999 0 nonexistent
## 1198 telephone may thu 221 1 999 0 nonexistent
## 1199 telephone may thu 604 1 999 0 nonexistent
## 1200 telephone may thu 86 1 999 0 nonexistent
## 1201 telephone may thu 65 1 999 0 nonexistent
## 1202 telephone may thu 380 3 999 0 nonexistent
## 1203 telephone may thu 11 1 999 0 nonexistent
## 1204 telephone may thu 184 2 999 0 nonexistent
## 1205 telephone may thu 405 1 999 0 nonexistent
## 1206 telephone may thu 20 1 999 0 nonexistent
## 1207 telephone may thu 202 1 999 0 nonexistent
## 1208 telephone may thu 235 1 999 0 nonexistent
## 1209 telephone may thu 75 1 999 0 nonexistent
## 1210 telephone may thu 134 1 999 0 nonexistent
## 1211 telephone may thu 255 1 999 0 nonexistent
## 1212 telephone may thu 462 1 999 0 nonexistent
## 1213 telephone may thu 80 1 999 0 nonexistent
## 1214 telephone may thu 56 1 999 0 nonexistent
## 1215 telephone may thu 418 1 999 0 nonexistent
## 1216 telephone may thu 139 2 999 0 nonexistent
## 1217 telephone may thu 96 2 999 0 nonexistent
## 1218 telephone may thu 39 1 999 0 nonexistent
## 1219 telephone may thu 231 2 999 0 nonexistent
## 1220 telephone may thu 66 2 999 0 nonexistent
## 1221 telephone may thu 204 1 999 0 nonexistent
## 1222 telephone may thu 159 1 999 0 nonexistent
## 1223 telephone may thu 129 2 999 0 nonexistent
## 1224 telephone may thu 200 1 999 0 nonexistent
## 1225 telephone may thu 187 3 999 0 nonexistent
## 1226 telephone may thu 166 1 999 0 nonexistent
## 1227 telephone may thu 144 1 999 0 nonexistent
## 1228 telephone may thu 323 1 999 0 nonexistent
## 1229 telephone may thu 194 1 999 0 nonexistent
## 1230 telephone may thu 82 1 999 0 nonexistent
## 1231 telephone may thu 521 7 999 0 nonexistent
## 1232 telephone may thu 269 1 999 0 nonexistent
## 1233 telephone may thu 285 1 999 0 nonexistent
## 1234 telephone may thu 1119 1 999 0 nonexistent
## 1235 telephone may thu 294 1 999 0 nonexistent
## 1236 telephone may thu 106 1 999 0 nonexistent
## 1237 telephone may thu 158 1 999 0 nonexistent
## 1238 telephone may thu 152 1 999 0 nonexistent
## 1239 telephone may thu 12 2 999 0 nonexistent
## 1240 telephone may thu 187 1 999 0 nonexistent
## 1241 telephone may thu 268 1 999 0 nonexistent
## 1242 telephone may thu 193 1 999 0 nonexistent
## 1243 telephone may thu 95 1 999 0 nonexistent
## 1244 telephone may thu 60 1 999 0 nonexistent
## 1245 telephone may thu 206 1 999 0 nonexistent
## 1246 telephone may thu 155 1 999 0 nonexistent
## 1247 telephone may thu 216 1 999 0 nonexistent
## 1248 telephone may thu 103 3 999 0 nonexistent
## 1249 telephone may thu 107 1 999 0 nonexistent
## 1250 telephone may thu 219 1 999 0 nonexistent
## 1251 telephone may thu 147 1 999 0 nonexistent
## 1252 telephone may thu 190 1 999 0 nonexistent
## 1253 telephone may thu 339 2 999 0 nonexistent
## 1254 telephone may thu 198 1 999 0 nonexistent
## 1255 telephone may thu 141 1 999 0 nonexistent
## 1256 telephone may thu 255 1 999 0 nonexistent
## 1257 telephone may thu 1120 2 999 0 nonexistent
## 1258 telephone may thu 369 1 999 0 nonexistent
## 1259 telephone may thu 226 1 999 0 nonexistent
## 1260 telephone may thu 215 1 999 0 nonexistent
## 1261 telephone may thu 306 1 999 0 nonexistent
## 1262 telephone may thu 249 1 999 0 nonexistent
## 1263 telephone may thu 143 1 999 0 nonexistent
## 1264 telephone may thu 162 1 999 0 nonexistent
## 1265 telephone may thu 81 1 999 0 nonexistent
## 1266 telephone may thu 124 1 999 0 nonexistent
## 1267 telephone may thu 124 1 999 0 nonexistent
## 1268 telephone may thu 33 4 999 0 nonexistent
## 1269 telephone may thu 393 1 999 0 nonexistent
## 1270 telephone may thu 784 1 999 0 nonexistent
## 1271 telephone may thu 87 2 999 0 nonexistent
## 1272 telephone may thu 108 2 999 0 nonexistent
## 1273 telephone may thu 207 1 999 0 nonexistent
## 1274 telephone may thu 278 2 999 0 nonexistent
## 1275 telephone may thu 196 1 999 0 nonexistent
## 1276 telephone may thu 149 1 999 0 nonexistent
## 1277 telephone may thu 154 1 999 0 nonexistent
## 1278 telephone may thu 287 2 999 0 nonexistent
## 1279 telephone may thu 229 1 999 0 nonexistent
## 1280 telephone may thu 21 1 999 0 nonexistent
## 1281 telephone may thu 191 1 999 0 nonexistent
## 1282 telephone may thu 147 1 999 0 nonexistent
## 1283 telephone may thu 93 1 999 0 nonexistent
## 1284 telephone may thu 665 1 999 0 nonexistent
## 1285 telephone may thu 131 1 999 0 nonexistent
## 1286 telephone may thu 160 1 999 0 nonexistent
## 1287 telephone may thu 74 1 999 0 nonexistent
## 1288 telephone may thu 60 1 999 0 nonexistent
## 1289 telephone may thu 97 2 999 0 nonexistent
## 1290 telephone may thu 82 1 999 0 nonexistent
## 1291 telephone may thu 475 1 999 0 nonexistent
## 1292 telephone may thu 111 1 999 0 nonexistent
## 1293 telephone may thu 140 1 999 0 nonexistent
## 1294 telephone may thu 110 1 999 0 nonexistent
## 1295 telephone may thu 64 1 999 0 nonexistent
## 1296 telephone may thu 149 1 999 0 nonexistent
## 1297 telephone may thu 156 1 999 0 nonexistent
## 1298 telephone may thu 63 3 999 0 nonexistent
## 1299 telephone may thu 362 1 999 0 nonexistent
## 1300 telephone may thu 712 1 999 0 nonexistent
## 1301 telephone may thu 338 2 999 0 nonexistent
## 1302 telephone may thu 102 2 999 0 nonexistent
## 1303 telephone may thu 446 1 999 0 nonexistent
## 1304 telephone may thu 249 2 999 0 nonexistent
## 1305 telephone may thu 176 1 999 0 nonexistent
## 1306 telephone may thu 1007 1 999 0 nonexistent
## 1307 telephone may thu 266 1 999 0 nonexistent
## 1308 telephone may thu 172 1 999 0 nonexistent
## 1309 telephone may thu 175 1 999 0 nonexistent
## 1310 telephone may thu 211 2 999 0 nonexistent
## 1311 telephone may thu 237 1 999 0 nonexistent
## 1312 telephone may thu 500 1 999 0 nonexistent
## 1313 telephone may thu 186 1 999 0 nonexistent
## 1314 telephone may thu 96 1 999 0 nonexistent
## 1315 telephone may thu 98 1 999 0 nonexistent
## 1316 telephone may thu 364 4 999 0 nonexistent
## 1317 telephone may thu 477 1 999 0 nonexistent
## 1318 telephone may thu 319 1 999 0 nonexistent
## 1319 telephone may thu 789 1 999 0 nonexistent
## 1320 telephone may thu 513 1 999 0 nonexistent
## 1321 telephone may thu 280 2 999 0 nonexistent
## 1322 telephone may thu 170 1 999 0 nonexistent
## 1323 telephone may thu 365 1 999 0 nonexistent
## 1324 telephone may thu 63 2 999 0 nonexistent
## 1325 telephone may thu 159 4 999 0 nonexistent
## 1326 telephone may thu 177 2 999 0 nonexistent
## 1327 telephone may thu 108 3 999 0 nonexistent
## 1328 telephone may thu 194 3 999 0 nonexistent
## 1329 telephone may thu 366 2 999 0 nonexistent
## 1330 telephone may thu 213 1 999 0 nonexistent
## 1331 telephone may thu 166 1 999 0 nonexistent
## 1332 telephone may thu 141 1 999 0 nonexistent
## 1333 telephone may thu 168 2 999 0 nonexistent
## 1334 telephone may thu 468 1 999 0 nonexistent
## 1335 telephone may thu 180 1 999 0 nonexistent
## 1336 telephone may thu 195 1 999 0 nonexistent
## 1337 telephone may thu 352 3 999 0 nonexistent
## 1338 telephone may thu 91 1 999 0 nonexistent
## 1339 telephone may thu 93 2 999 0 nonexistent
## 1340 telephone may thu 288 1 999 0 nonexistent
## 1341 telephone may thu 218 2 999 0 nonexistent
## 1342 telephone may thu 289 1 999 0 nonexistent
## 1343 telephone may thu 130 3 999 0 nonexistent
## 1344 telephone may thu 208 1 999 0 nonexistent
## 1345 telephone may thu 177 1 999 0 nonexistent
## 1346 telephone may thu 442 2 999 0 nonexistent
## 1347 telephone may thu 101 1 999 0 nonexistent
## 1348 telephone may thu 166 1 999 0 nonexistent
## 1349 telephone may thu 756 1 999 0 nonexistent
## 1350 telephone may thu 342 1 999 0 nonexistent
## 1351 telephone may thu 189 1 999 0 nonexistent
## 1352 telephone may thu 108 1 999 0 nonexistent
## 1353 telephone may thu 178 2 999 0 nonexistent
## 1354 telephone may thu 238 1 999 0 nonexistent
## 1355 telephone may thu 226 1 999 0 nonexistent
## 1356 telephone may thu 136 1 999 0 nonexistent
## 1357 telephone may thu 14 1 999 0 nonexistent
## 1358 telephone may thu 250 1 999 0 nonexistent
## 1359 telephone may thu 161 1 999 0 nonexistent
## 1360 telephone may thu 269 3 999 0 nonexistent
## 1361 telephone may thu 491 1 999 0 nonexistent
## 1362 telephone may thu 44 1 999 0 nonexistent
## 1363 telephone may thu 26 1 999 0 nonexistent
## 1364 telephone may thu 22 1 999 0 nonexistent
## 1365 telephone may thu 293 2 999 0 nonexistent
## 1366 telephone may thu 989 1 999 0 nonexistent
## 1367 telephone may thu 147 5 999 0 nonexistent
## 1368 telephone may thu 1170 1 999 0 nonexistent
## 1369 telephone may thu 807 2 999 0 nonexistent
## 1370 telephone may thu 347 2 999 0 nonexistent
## 1371 telephone may thu 58 2 999 0 nonexistent
## 1372 telephone may thu 534 2 999 0 nonexistent
## 1373 telephone may thu 155 2 999 0 nonexistent
## 1374 telephone may thu 159 2 999 0 nonexistent
## 1375 telephone may thu 343 2 999 0 nonexistent
## 1376 telephone may thu 152 2 999 0 nonexistent
## 1377 telephone may thu 461 3 999 0 nonexistent
## 1378 telephone may thu 389 2 999 0 nonexistent
## 1379 telephone may thu 90 2 999 0 nonexistent
## 1380 telephone may thu 314 3 999 0 nonexistent
## 1381 telephone may thu 28 3 999 0 nonexistent
## 1382 telephone may thu 30 2 999 0 nonexistent
## 1383 telephone may thu 103 4 999 0 nonexistent
## 1384 telephone may thu 32 2 999 0 nonexistent
## 1385 telephone may thu 252 2 999 0 nonexistent
## 1386 telephone may thu 20 2 999 0 nonexistent
## 1387 telephone may thu 369 2 999 0 nonexistent
## 1388 telephone may thu 116 1 999 0 nonexistent
## 1389 telephone may thu 302 2 999 0 nonexistent
## 1390 telephone may thu 31 1 999 0 nonexistent
## 1391 telephone may thu 190 1 999 0 nonexistent
## 1392 telephone may thu 149 1 999 0 nonexistent
## 1393 telephone may thu 210 1 999 0 nonexistent
## 1394 telephone may thu 180 2 999 0 nonexistent
## 1395 telephone may thu 234 1 999 0 nonexistent
## 1396 telephone may thu 92 1 999 0 nonexistent
## 1397 telephone may thu 2087 2 999 0 nonexistent
## 1398 telephone may thu 102 1 999 0 nonexistent
## 1399 telephone may thu 193 1 999 0 nonexistent
## 1400 telephone may thu 245 1 999 0 nonexistent
## 1401 telephone may thu 190 1 999 0 nonexistent
## 1402 telephone may thu 223 2 999 0 nonexistent
## 1403 telephone may thu 42 1 999 0 nonexistent
## 1404 telephone may thu 206 2 999 0 nonexistent
## 1405 telephone may thu 242 2 999 0 nonexistent
## 1406 telephone may thu 66 2 999 0 nonexistent
## 1407 telephone may thu 173 2 999 0 nonexistent
## 1408 telephone may thu 477 2 999 0 nonexistent
## 1409 telephone may thu 77 1 999 0 nonexistent
## 1410 telephone may thu 219 2 999 0 nonexistent
## 1411 telephone may thu 205 2 999 0 nonexistent
## 1412 telephone may thu 376 2 999 0 nonexistent
## 1413 telephone may thu 453 2 999 0 nonexistent
## 1414 telephone may thu 151 2 999 0 nonexistent
## 1415 telephone may thu 767 5 999 0 nonexistent
## 1416 telephone may thu 200 2 999 0 nonexistent
## 1417 telephone may thu 298 5 999 0 nonexistent
## 1418 telephone may thu 305 2 999 0 nonexistent
## 1419 telephone may thu 627 3 999 0 nonexistent
## 1420 telephone may thu 242 1 999 0 nonexistent
## 1421 telephone may thu 287 1 999 0 nonexistent
## 1422 telephone may thu 184 1 999 0 nonexistent
## 1423 telephone may thu 119 2 999 0 nonexistent
## 1424 telephone may thu 403 2 999 0 nonexistent
## 1425 telephone may thu 626 6 999 0 nonexistent
## 1426 telephone may thu 12 1 999 0 nonexistent
## 1427 telephone may thu 266 1 999 0 nonexistent
## 1428 telephone may thu 23 4 999 0 nonexistent
## 1429 telephone may thu 154 2 999 0 nonexistent
## 1430 telephone may thu 10 7 999 0 nonexistent
## 1431 telephone may thu 301 2 999 0 nonexistent
## 1432 telephone may thu 240 3 999 0 nonexistent
## 1433 telephone may thu 312 3 999 0 nonexistent
## 1434 telephone may thu 224 2 999 0 nonexistent
## 1435 telephone may thu 202 2 999 0 nonexistent
## 1436 telephone may thu 144 3 999 0 nonexistent
## 1437 telephone may thu 263 2 999 0 nonexistent
## 1438 telephone may thu 543 3 999 0 nonexistent
## 1439 telephone may thu 257 2 999 0 nonexistent
## 1440 telephone may thu 237 2 999 0 nonexistent
## 1441 telephone may thu 23 5 999 0 nonexistent
## 1442 telephone may thu 209 3 999 0 nonexistent
## 1443 telephone may thu 1178 2 999 0 nonexistent
## 1444 telephone may thu 442 2 999 0 nonexistent
## 1445 telephone may thu 1120 2 999 0 nonexistent
## 1446 telephone may thu 186 2 999 0 nonexistent
## 1447 telephone may thu 318 2 999 0 nonexistent
## 1448 telephone may thu 617 2 999 0 nonexistent
## 1449 telephone may thu 226 1 999 0 nonexistent
## 1450 telephone may thu 275 1 999 0 nonexistent
## 1451 telephone may thu 81 2 999 0 nonexistent
## 1452 telephone may thu 74 7 999 0 nonexistent
## 1453 telephone may thu 285 1 999 0 nonexistent
## 1454 telephone may thu 261 5 999 0 nonexistent
## 1455 telephone may thu 151 2 999 0 nonexistent
## 1456 telephone may thu 422 2 999 0 nonexistent
## 1457 telephone may thu 159 2 999 0 nonexistent
## 1458 telephone may thu 102 2 999 0 nonexistent
## 1459 telephone may thu 78 3 999 0 nonexistent
## 1460 telephone may thu 15 1 999 0 nonexistent
## 1461 telephone may thu 352 2 999 0 nonexistent
## 1462 telephone may thu 345 2 999 0 nonexistent
## 1463 telephone may thu 230 4 999 0 nonexistent
## 1464 telephone may thu 296 1 999 0 nonexistent
## 1465 telephone may thu 185 2 999 0 nonexistent
## 1466 telephone may thu 181 2 999 0 nonexistent
## 1467 telephone may thu 133 2 999 0 nonexistent
## 1468 telephone may thu 335 9 999 0 nonexistent
## 1469 telephone may thu 139 1 999 0 nonexistent
## 1470 telephone may thu 163 2 999 0 nonexistent
## 1471 telephone may thu 956 2 999 0 nonexistent
## 1472 telephone may thu 166 2 999 0 nonexistent
## 1473 telephone may thu 95 2 999 0 nonexistent
## 1474 telephone may thu 71 2 999 0 nonexistent
## 1475 telephone may thu 191 2 999 0 nonexistent
## 1476 telephone may thu 459 2 999 0 nonexistent
## 1477 telephone may thu 100 5 999 0 nonexistent
## 1478 telephone may thu 233 2 999 0 nonexistent
## 1479 telephone may thu 255 6 999 0 nonexistent
## 1480 telephone may thu 128 2 999 0 nonexistent
## 1481 telephone may thu 56 2 999 0 nonexistent
## 1482 telephone may thu 4 3 999 0 nonexistent
## 1483 telephone may thu 43 2 999 0 nonexistent
## 1484 telephone may thu 210 2 999 0 nonexistent
## 1485 telephone may thu 21 9 999 0 nonexistent
## 1486 telephone may thu 67 2 999 0 nonexistent
## 1487 telephone may thu 219 4 999 0 nonexistent
## 1488 telephone may thu 169 2 999 0 nonexistent
## 1489 telephone may thu 248 3 999 0 nonexistent
## 1490 telephone may thu 223 2 999 0 nonexistent
## 1491 telephone may thu 92 3 999 0 nonexistent
## 1492 telephone may thu 112 3 999 0 nonexistent
## 1493 telephone may thu 205 4 999 0 nonexistent
## 1494 telephone may thu 155 2 999 0 nonexistent
## 1495 telephone may thu 105 2 999 0 nonexistent
## 1496 telephone may thu 112 2 999 0 nonexistent
## 1497 telephone may thu 383 3 999 0 nonexistent
## 1498 telephone may thu 193 2 999 0 nonexistent
## 1499 telephone may thu 207 2 999 0 nonexistent
## 1500 telephone may thu 132 2 999 0 nonexistent
## 1501 telephone may thu 10 2 999 0 nonexistent
## 1502 telephone may thu 985 2 999 0 nonexistent
## 1503 telephone may thu 249 5 999 0 nonexistent
## 1504 telephone may thu 122 2 999 0 nonexistent
## 1505 telephone may thu 300 2 999 0 nonexistent
## 1506 telephone may thu 672 3 999 0 nonexistent
## 1507 telephone may thu 390 3 999 0 nonexistent
## 1508 telephone may thu 116 2 999 0 nonexistent
## 1509 telephone may thu 21 3 999 0 nonexistent
## 1510 telephone may thu 192 2 999 0 nonexistent
## 1511 telephone may thu 8 2 999 0 nonexistent
## 1512 telephone may thu 13 2 999 0 nonexistent
## 1513 telephone may thu 369 2 999 0 nonexistent
## 1514 telephone may thu 393 2 999 0 nonexistent
## 1515 telephone may thu 246 3 999 0 nonexistent
## 1516 telephone may thu 330 3 999 0 nonexistent
## 1517 telephone may thu 91 3 999 0 nonexistent
## 1518 telephone may thu 84 2 999 0 nonexistent
## 1519 telephone may thu 277 3 999 0 nonexistent
## 1520 telephone may thu 399 4 999 0 nonexistent
## 1521 telephone may thu 89 4 999 0 nonexistent
## 1522 telephone may thu 297 2 999 0 nonexistent
## 1523 telephone may thu 111 3 999 0 nonexistent
## 1524 telephone may thu 170 2 999 0 nonexistent
## 1525 telephone may thu 141 2 999 0 nonexistent
## 1526 telephone may thu 886 2 999 0 nonexistent
## 1527 telephone may thu 49 4 999 0 nonexistent
## 1528 telephone may thu 89 7 999 0 nonexistent
## 1529 telephone may thu 341 2 999 0 nonexistent
## 1530 telephone may thu 461 3 999 0 nonexistent
## 1531 telephone may thu 515 3 999 0 nonexistent
## 1532 telephone may thu 123 2 999 0 nonexistent
## 1533 telephone may thu 179 5 999 0 nonexistent
## 1534 telephone may thu 102 4 999 0 nonexistent
## 1535 telephone may thu 272 4 999 0 nonexistent
## 1536 telephone may thu 17 3 999 0 nonexistent
## 1537 telephone may thu 291 2 999 0 nonexistent
## 1538 telephone may thu 209 3 999 0 nonexistent
## 1539 telephone may thu 1187 2 999 0 nonexistent
## 1540 telephone may thu 89 5 999 0 nonexistent
## 1541 telephone may thu 123 2 999 0 nonexistent
## 1542 telephone may thu 200 2 999 0 nonexistent
## 1543 telephone may thu 104 3 999 0 nonexistent
## 1544 telephone may thu 117 3 999 0 nonexistent
## 1545 telephone may thu 37 3 999 0 nonexistent
## 1546 telephone may thu 51 3 999 0 nonexistent
## 1547 telephone may thu 627 4 999 0 nonexistent
## 1548 telephone may thu 466 2 999 0 nonexistent
## 1549 telephone may thu 101 2 999 0 nonexistent
## 1550 telephone may thu 303 3 999 0 nonexistent
## 1551 telephone may thu 283 3 999 0 nonexistent
## 1552 telephone may thu 826 3 999 0 nonexistent
## 1553 telephone may thu 598 3 999 0 nonexistent
## 1554 telephone may thu 120 5 999 0 nonexistent
## 1555 telephone may thu 185 7 999 0 nonexistent
## 1556 telephone may thu 220 2 999 0 nonexistent
## 1557 telephone may thu 423 2 999 0 nonexistent
## 1558 telephone may thu 337 4 999 0 nonexistent
## 1559 telephone may thu 99 3 999 0 nonexistent
## 1560 telephone may thu 27 3 999 0 nonexistent
## 1561 telephone may thu 160 3 999 0 nonexistent
## 1562 telephone may thu 201 2 999 0 nonexistent
## 1563 telephone may thu 166 3 999 0 nonexistent
## 1564 telephone may thu 182 1 999 0 nonexistent
## 1565 telephone may thu 271 5 999 0 nonexistent
## 1566 telephone may thu 103 3 999 0 nonexistent
## 1567 telephone may thu 379 4 999 0 nonexistent
## 1568 telephone may thu 287 4 999 0 nonexistent
## 1569 telephone may thu 732 2 999 0 nonexistent
## 1570 telephone may thu 126 3 999 0 nonexistent
## 1571 telephone may thu 172 4 999 0 nonexistent
## 1572 telephone may thu 43 2 999 0 nonexistent
## 1573 telephone may thu 109 4 999 0 nonexistent
## 1574 telephone may thu 191 2 999 0 nonexistent
## 1575 telephone may thu 117 2 999 0 nonexistent
## 1576 telephone may thu 64 1 999 0 nonexistent
## 1577 telephone may thu 260 5 999 0 nonexistent
## 1578 telephone may thu 207 3 999 0 nonexistent
## 1579 telephone may thu 128 3 999 0 nonexistent
## 1580 telephone may fri 180 2 999 0 nonexistent
## 1581 telephone may fri 144 2 999 0 nonexistent
## 1582 telephone may fri 110 4 999 0 nonexistent
## 1583 telephone may fri 203 4 999 0 nonexistent
## 1584 telephone may fri 85 2 999 0 nonexistent
## 1585 telephone may fri 211 2 999 0 nonexistent
## 1586 telephone may fri 94 2 999 0 nonexistent
## 1587 telephone may fri 122 4 999 0 nonexistent
## 1588 telephone may fri 175 5 999 0 nonexistent
## 1589 telephone may fri 132 5 999 0 nonexistent
## 1590 telephone may fri 130 2 999 0 nonexistent
## 1591 telephone may fri 208 2 999 0 nonexistent
## 1592 telephone may fri 346 4 999 0 nonexistent
## 1593 telephone may fri 205 1 999 0 nonexistent
## 1594 telephone may fri 218 1 999 0 nonexistent
## 1595 telephone may fri 62 1 999 0 nonexistent
## 1596 telephone may fri 93 5 999 0 nonexistent
## 1597 telephone may fri 85 2 999 0 nonexistent
## 1598 telephone may fri 97 1 999 0 nonexistent
## 1599 telephone may fri 252 4 999 0 nonexistent
## 1600 telephone may fri 286 1 999 0 nonexistent
## 1601 telephone may fri 241 1 999 0 nonexistent
## 1602 telephone may fri 283 1 999 0 nonexistent
## 1603 telephone may fri 380 1 999 0 nonexistent
## 1604 telephone may fri 584 1 999 0 nonexistent
## 1605 telephone may fri 371 1 999 0 nonexistent
## 1606 telephone may fri 274 1 999 0 nonexistent
## 1607 telephone may fri 71 3 999 0 nonexistent
## 1608 telephone may fri 357 1 999 0 nonexistent
## 1609 telephone may fri 617 4 999 0 nonexistent
## 1610 telephone may fri 215 1 999 0 nonexistent
## 1611 telephone may fri 131 1 999 0 nonexistent
## 1612 telephone may fri 188 1 999 0 nonexistent
## 1613 telephone may fri 383 3 999 0 nonexistent
## 1614 telephone may fri 483 3 999 0 nonexistent
## 1615 telephone may fri 847 1 999 0 nonexistent
## 1616 telephone may fri 57 2 999 0 nonexistent
## 1617 telephone may fri 306 1 999 0 nonexistent
## 1618 telephone may fri 147 1 999 0 nonexistent
## 1619 telephone may fri 244 1 999 0 nonexistent
## 1620 telephone may fri 59 1 999 0 nonexistent
## 1621 telephone may fri 24 1 999 0 nonexistent
## 1622 telephone may fri 85 2 999 0 nonexistent
## 1623 telephone may fri 70 1 999 0 nonexistent
## 1624 telephone may fri 21 1 999 0 nonexistent
## 1625 telephone may fri 659 2 999 0 nonexistent
## 1626 telephone may fri 327 2 999 0 nonexistent
## 1627 telephone may fri 267 1 999 0 nonexistent
## 1628 telephone may fri 296 3 999 0 nonexistent
## 1629 telephone may fri 307 1 999 0 nonexistent
## 1630 telephone may fri 120 1 999 0 nonexistent
## 1631 telephone may fri 390 2 999 0 nonexistent
## 1632 telephone may fri 83 2 999 0 nonexistent
## 1633 telephone may fri 772 1 999 0 nonexistent
## 1634 telephone may fri 143 1 999 0 nonexistent
## 1635 telephone may fri 198 1 999 0 nonexistent
## 1636 telephone may fri 100 1 999 0 nonexistent
## 1637 telephone may fri 929 3 999 0 nonexistent
## 1638 telephone may fri 21 3 999 0 nonexistent
## 1639 telephone may fri 254 1 999 0 nonexistent
## 1640 telephone may fri 166 1 999 0 nonexistent
## 1641 telephone may fri 93 1 999 0 nonexistent
## 1642 telephone may fri 217 2 999 0 nonexistent
## 1643 telephone may fri 134 2 999 0 nonexistent
## 1644 telephone may fri 375 2 999 0 nonexistent
## 1645 telephone may fri 352 1 999 0 nonexistent
## 1646 telephone may fri 45 1 999 0 nonexistent
## 1647 telephone may fri 93 1 999 0 nonexistent
## 1648 telephone may fri 165 1 999 0 nonexistent
## 1649 telephone may fri 266 1 999 0 nonexistent
## 1650 telephone may fri 237 1 999 0 nonexistent
## 1651 telephone may fri 410 1 999 0 nonexistent
## 1652 telephone may fri 157 1 999 0 nonexistent
## 1653 telephone may fri 72 2 999 0 nonexistent
## 1654 telephone may fri 171 1 999 0 nonexistent
## 1655 telephone may fri 70 3 999 0 nonexistent
## 1656 telephone may fri 710 1 999 0 nonexistent
## 1657 telephone may fri 131 3 999 0 nonexistent
## 1658 telephone may fri 498 1 999 0 nonexistent
## 1659 telephone may fri 514 1 999 0 nonexistent
## 1660 telephone may fri 127 1 999 0 nonexistent
## 1661 telephone may fri 162 1 999 0 nonexistent
## 1662 telephone may fri 198 1 999 0 nonexistent
## 1663 telephone may fri 705 1 999 0 nonexistent
## 1664 telephone may fri 239 1 999 0 nonexistent
## 1665 telephone may fri 117 1 999 0 nonexistent
## 1666 telephone may fri 155 1 999 0 nonexistent
## 1667 telephone may fri 18 1 999 0 nonexistent
## 1668 telephone may fri 386 1 999 0 nonexistent
## 1669 telephone may fri 138 1 999 0 nonexistent
## 1670 telephone may fri 341 1 999 0 nonexistent
## 1671 telephone may fri 339 2 999 0 nonexistent
## 1672 telephone may fri 232 1 999 0 nonexistent
## 1673 telephone may fri 208 1 999 0 nonexistent
## 1674 telephone may fri 44 1 999 0 nonexistent
## 1675 telephone may fri 75 1 999 0 nonexistent
## 1676 telephone may fri 485 1 999 0 nonexistent
## 1677 telephone may fri 576 1 999 0 nonexistent
## 1678 telephone may fri 280 1 999 0 nonexistent
## 1679 telephone may fri 480 2 999 0 nonexistent
## 1680 telephone may fri 86 2 999 0 nonexistent
## 1681 telephone may fri 121 4 999 0 nonexistent
## 1682 telephone may fri 93 2 999 0 nonexistent
## 1683 telephone may fri 238 2 999 0 nonexistent
## 1684 telephone may fri 399 3 999 0 nonexistent
## 1685 telephone may fri 93 2 999 0 nonexistent
## 1686 telephone may fri 106 1 999 0 nonexistent
## 1687 telephone may fri 123 1 999 0 nonexistent
## 1688 telephone may fri 92 2 999 0 nonexistent
## 1689 telephone may fri 219 1 999 0 nonexistent
## 1690 telephone may fri 2462 1 999 0 nonexistent
## 1691 telephone may fri 114 1 999 0 nonexistent
## 1692 telephone may fri 1132 2 999 0 nonexistent
## 1693 telephone may fri 249 3 999 0 nonexistent
## 1694 telephone may fri 210 1 999 0 nonexistent
## 1695 telephone may fri 187 1 999 0 nonexistent
## 1696 telephone may fri 172 1 999 0 nonexistent
## 1697 telephone may fri 122 1 999 0 nonexistent
## 1698 telephone may fri 207 1 999 0 nonexistent
## 1699 telephone may fri 136 2 999 0 nonexistent
## 1700 telephone may fri 117 2 999 0 nonexistent
## 1701 telephone may fri 393 1 999 0 nonexistent
## 1702 telephone may fri 107 1 999 0 nonexistent
## 1703 telephone may fri 25 1 999 0 nonexistent
## 1704 telephone may fri 136 1 999 0 nonexistent
## 1705 telephone may fri 384 2 999 0 nonexistent
## 1706 telephone may fri 38 1 999 0 nonexistent
## 1707 telephone may fri 164 1 999 0 nonexistent
## 1708 telephone may fri 825 1 999 0 nonexistent
## 1709 telephone may fri 331 1 999 0 nonexistent
## 1710 telephone may fri 479 2 999 0 nonexistent
## 1711 telephone may fri 229 2 999 0 nonexistent
## 1712 telephone may fri 258 2 999 0 nonexistent
## 1713 telephone may fri 490 1 999 0 nonexistent
## 1714 telephone may fri 308 1 999 0 nonexistent
## 1715 telephone may fri 137 1 999 0 nonexistent
## 1716 telephone may fri 545 2 999 0 nonexistent
## 1717 telephone may fri 109 1 999 0 nonexistent
## 1718 telephone may fri 257 6 999 0 nonexistent
## 1719 telephone may fri 213 2 999 0 nonexistent
## 1720 telephone may fri 115 1 999 0 nonexistent
## 1721 telephone may fri 646 1 999 0 nonexistent
## 1722 telephone may fri 202 1 999 0 nonexistent
## 1723 telephone may fri 106 1 999 0 nonexistent
## 1724 telephone may fri 95 2 999 0 nonexistent
## 1725 telephone may fri 64 1 999 0 nonexistent
## 1726 telephone may fri 653 1 999 0 nonexistent
## 1727 telephone may fri 186 1 999 0 nonexistent
## 1728 telephone may fri 205 1 999 0 nonexistent
## 1729 telephone may fri 122 1 999 0 nonexistent
## 1730 telephone may fri 377 1 999 0 nonexistent
## 1731 telephone may fri 322 1 999 0 nonexistent
## 1732 telephone may fri 208 3 999 0 nonexistent
## 1733 telephone may fri 46 2 999 0 nonexistent
## 1734 telephone may fri 211 2 999 0 nonexistent
## 1735 telephone may fri 156 2 999 0 nonexistent
## 1736 telephone may fri 471 2 999 0 nonexistent
## 1737 telephone may fri 206 2 999 0 nonexistent
## 1738 telephone may fri 544 1 999 0 nonexistent
## 1739 telephone may fri 143 1 999 0 nonexistent
## 1740 telephone may fri 200 3 999 0 nonexistent
## 1741 telephone may fri 71 1 999 0 nonexistent
## 1742 telephone may fri 324 2 999 0 nonexistent
## 1743 telephone may fri 164 5 999 0 nonexistent
## 1744 telephone may fri 137 3 999 0 nonexistent
## 1745 telephone may fri 87 2 999 0 nonexistent
## 1746 telephone may fri 91 2 999 0 nonexistent
## 1747 telephone may fri 280 1 999 0 nonexistent
## 1748 telephone may fri 230 2 999 0 nonexistent
## 1749 telephone may fri 63 1 999 0 nonexistent
## 1750 telephone may fri 135 1 999 0 nonexistent
## 1751 telephone may fri 261 1 999 0 nonexistent
## 1752 telephone may fri 215 2 999 0 nonexistent
## 1753 telephone may fri 125 1 999 0 nonexistent
## 1754 telephone may fri 391 2 999 0 nonexistent
## 1755 telephone may fri 107 3 999 0 nonexistent
## 1756 telephone may fri 108 2 999 0 nonexistent
## 1757 telephone may fri 145 2 999 0 nonexistent
## 1758 telephone may fri 142 2 999 0 nonexistent
## 1759 telephone may fri 106 1 999 0 nonexistent
## 1760 telephone may fri 134 1 999 0 nonexistent
## 1761 telephone may fri 190 1 999 0 nonexistent
## 1762 telephone may fri 241 1 999 0 nonexistent
## 1763 telephone may fri 180 1 999 0 nonexistent
## 1764 telephone may fri 654 1 999 0 nonexistent
## 1765 telephone may fri 189 1 999 0 nonexistent
## 1766 telephone may fri 70 1 999 0 nonexistent
## 1767 telephone may fri 1087 2 999 0 nonexistent
## 1768 telephone may fri 62 1 999 0 nonexistent
## 1769 telephone may fri 323 1 999 0 nonexistent
## 1770 telephone may fri 111 2 999 0 nonexistent
## 1771 telephone may fri 197 4 999 0 nonexistent
## 1772 telephone may fri 224 3 999 0 nonexistent
## 1773 telephone may fri 557 1 999 0 nonexistent
## 1774 telephone may fri 150 2 999 0 nonexistent
## 1775 telephone may fri 388 2 999 0 nonexistent
## 1776 telephone may fri 194 1 999 0 nonexistent
## 1777 telephone may fri 57 2 999 0 nonexistent
## 1778 telephone may fri 209 3 999 0 nonexistent
## 1779 telephone may fri 188 1 999 0 nonexistent
## 1780 telephone may fri 342 1 999 0 nonexistent
## 1781 telephone may fri 84 1 999 0 nonexistent
## 1782 telephone may fri 530 2 999 0 nonexistent
## 1783 telephone may fri 97 1 999 0 nonexistent
## 1784 telephone may fri 365 1 999 0 nonexistent
## 1785 telephone may fri 285 1 999 0 nonexistent
## 1786 telephone may fri 352 1 999 0 nonexistent
## 1787 telephone may fri 316 3 999 0 nonexistent
## 1788 telephone may fri 79 4 999 0 nonexistent
## 1789 telephone may fri 331 2 999 0 nonexistent
## 1790 telephone may fri 126 2 999 0 nonexistent
## 1791 telephone may fri 76 2 999 0 nonexistent
## 1792 telephone may fri 1692 2 999 0 nonexistent
## 1793 telephone may fri 24 1 999 0 nonexistent
## 1794 telephone may fri 73 1 999 0 nonexistent
## 1795 telephone may fri 253 1 999 0 nonexistent
## 1796 telephone may fri 622 1 999 0 nonexistent
## 1797 telephone may fri 133 1 999 0 nonexistent
## 1798 telephone may fri 178 1 999 0 nonexistent
## 1799 telephone may fri 404 2 999 0 nonexistent
## 1800 telephone may fri 275 1 999 0 nonexistent
## 1801 telephone may fri 109 1 999 0 nonexistent
## 1802 telephone may fri 134 1 999 0 nonexistent
## 1803 telephone may fri 225 1 999 0 nonexistent
## 1804 telephone may fri 129 1 999 0 nonexistent
## 1805 telephone may fri 93 3 999 0 nonexistent
## 1806 telephone may fri 20 1 999 0 nonexistent
## 1807 telephone may fri 247 1 999 0 nonexistent
## 1808 telephone may fri 129 3 999 0 nonexistent
## 1809 telephone may fri 324 1 999 0 nonexistent
## 1810 telephone may fri 2016 2 999 0 nonexistent
## 1811 telephone may fri 1054 2 999 0 nonexistent
## 1812 telephone may fri 163 2 999 0 nonexistent
## 1813 telephone may fri 279 2 999 0 nonexistent
## 1814 telephone may fri 251 2 999 0 nonexistent
## 1815 telephone may fri 113 4 999 0 nonexistent
## 1816 telephone may fri 193 2 999 0 nonexistent
## 1817 telephone may fri 125 3 999 0 nonexistent
## 1818 telephone may fri 282 2 999 0 nonexistent
## 1819 telephone may fri 344 2 999 0 nonexistent
## 1820 telephone may fri 665 2 999 0 nonexistent
## 1821 telephone may fri 67 3 999 0 nonexistent
## 1822 telephone may fri 167 4 999 0 nonexistent
## 1823 telephone may fri 395 1 999 0 nonexistent
## 1824 telephone may fri 137 2 999 0 nonexistent
## 1825 telephone may fri 118 1 999 0 nonexistent
## 1826 telephone may fri 231 2 999 0 nonexistent
## 1827 telephone may fri 128 1 999 0 nonexistent
## 1828 telephone may fri 174 1 999 0 nonexistent
## 1829 telephone may fri 195 1 999 0 nonexistent
## 1830 telephone may fri 412 1 999 0 nonexistent
## 1831 telephone may fri 127 1 999 0 nonexistent
## 1832 telephone may fri 79 1 999 0 nonexistent
## 1833 telephone may fri 13 1 999 0 nonexistent
## 1834 telephone may fri 61 1 999 0 nonexistent
## 1835 telephone may fri 286 5 999 0 nonexistent
## 1836 telephone may fri 274 2 999 0 nonexistent
## 1837 telephone may fri 409 3 999 0 nonexistent
## 1838 telephone may fri 325 1 999 0 nonexistent
## 1839 telephone may fri 144 2 999 0 nonexistent
## 1840 telephone may fri 1713 1 999 0 nonexistent
## 1841 telephone may fri 241 2 999 0 nonexistent
## 1842 telephone may fri 338 3 999 0 nonexistent
## 1843 telephone may fri 182 1 999 0 nonexistent
## 1844 telephone may fri 346 3 999 0 nonexistent
## 1845 telephone may fri 204 2 999 0 nonexistent
## 1846 telephone may fri 296 2 999 0 nonexistent
## 1847 telephone may fri 551 2 999 0 nonexistent
## 1848 telephone may fri 663 3 999 0 nonexistent
## 1849 telephone may fri 338 4 999 0 nonexistent
## 1850 telephone may fri 153 1 999 0 nonexistent
## 1851 telephone may fri 188 2 999 0 nonexistent
## 1852 telephone may fri 305 2 999 0 nonexistent
## 1853 telephone may fri 1080 5 999 0 nonexistent
## 1854 telephone may fri 1461 2 999 0 nonexistent
## 1855 telephone may fri 116 1 999 0 nonexistent
## 1856 telephone may fri 129 2 999 0 nonexistent
## 1857 telephone may fri 98 3 999 0 nonexistent
## 1858 telephone may fri 262 1 999 0 nonexistent
## 1859 telephone may fri 147 7 999 0 nonexistent
## 1860 telephone may fri 150 1 999 0 nonexistent
## 1861 telephone may fri 282 2 999 0 nonexistent
## 1862 telephone may fri 332 2 999 0 nonexistent
## 1863 telephone may fri 94 1 999 0 nonexistent
## 1864 telephone may fri 455 1 999 0 nonexistent
## 1865 telephone may fri 49 1 999 0 nonexistent
## 1866 telephone may fri 181 1 999 0 nonexistent
## 1867 telephone may fri 345 9 999 0 nonexistent
## 1868 telephone may fri 154 3 999 0 nonexistent
## 1869 telephone may fri 294 2 999 0 nonexistent
## 1870 telephone may fri 750 7 999 0 nonexistent
## 1871 telephone may fri 202 2 999 0 nonexistent
## 1872 telephone may fri 191 2 999 0 nonexistent
## 1873 telephone may fri 106 1 999 0 nonexistent
## 1874 telephone may fri 214 2 999 0 nonexistent
## 1875 telephone may fri 128 1 999 0 nonexistent
## 1876 telephone may fri 70 1 999 0 nonexistent
## 1877 telephone may fri 279 1 999 0 nonexistent
## 1878 telephone may fri 400 2 999 0 nonexistent
## 1879 telephone may fri 231 2 999 0 nonexistent
## 1880 telephone may fri 175 2 999 0 nonexistent
## 1881 telephone may fri 70 4 999 0 nonexistent
## 1882 telephone may fri 179 2 999 0 nonexistent
## 1883 telephone may fri 107 4 999 0 nonexistent
## 1884 telephone may fri 142 2 999 0 nonexistent
## 1885 telephone may fri 119 2 999 0 nonexistent
## 1886 telephone may fri 180 3 999 0 nonexistent
## 1887 telephone may fri 135 2 999 0 nonexistent
## 1888 telephone may fri 213 2 999 0 nonexistent
## 1889 telephone may fri 136 2 999 0 nonexistent
## 1890 telephone may fri 44 3 999 0 nonexistent
## 1891 telephone may fri 229 5 999 0 nonexistent
## 1892 telephone may fri 184 2 999 0 nonexistent
## 1893 telephone may fri 32 2 999 0 nonexistent
## 1894 telephone may fri 73 4 999 0 nonexistent
## 1895 telephone may fri 126 2 999 0 nonexistent
## 1896 telephone may fri 83 4 999 0 nonexistent
## 1897 telephone may fri 379 2 999 0 nonexistent
## 1898 telephone may fri 26 2 999 0 nonexistent
## 1899 telephone may fri 169 2 999 0 nonexistent
## 1900 telephone may fri 179 2 999 0 nonexistent
## 1901 telephone may fri 280 1 999 0 nonexistent
## 1902 telephone may fri 89 2 999 0 nonexistent
## 1903 telephone may fri 210 3 999 0 nonexistent
## 1904 telephone may fri 393 2 999 0 nonexistent
## 1905 telephone may fri 128 3 999 0 nonexistent
## 1906 telephone may fri 161 2 999 0 nonexistent
## 1907 telephone may fri 1178 4 999 0 nonexistent
## 1908 telephone may fri 182 7 999 0 nonexistent
## 1909 telephone may fri 178 2 999 0 nonexistent
## 1910 telephone may fri 177 2 999 0 nonexistent
## 1911 telephone may fri 191 2 999 0 nonexistent
## 1912 telephone may fri 245 4 999 0 nonexistent
## 1913 telephone may fri 255 2 999 0 nonexistent
## 1914 telephone may fri 488 2 999 0 nonexistent
## 1915 telephone may fri 211 2 999 0 nonexistent
## 1916 telephone may fri 226 2 999 0 nonexistent
## 1917 telephone may fri 460 2 999 0 nonexistent
## 1918 telephone may fri 432 2 999 0 nonexistent
## 1919 telephone may fri 136 3 999 0 nonexistent
## 1920 telephone may fri 176 2 999 0 nonexistent
## 1921 telephone may fri 162 2 999 0 nonexistent
## 1922 telephone may fri 237 3 999 0 nonexistent
## 1923 telephone may fri 134 3 999 0 nonexistent
## 1924 telephone may fri 44 2 999 0 nonexistent
## 1925 telephone may fri 47 5 999 0 nonexistent
## 1926 telephone may fri 483 1 999 0 nonexistent
## 1927 telephone may fri 116 3 999 0 nonexistent
## 1928 telephone may fri 182 3 999 0 nonexistent
## 1929 telephone may fri 122 2 999 0 nonexistent
## 1930 telephone may fri 232 2 999 0 nonexistent
## 1931 telephone may fri 51 3 999 0 nonexistent
## 1932 telephone may fri 260 4 999 0 nonexistent
## 1933 telephone may fri 214 2 999 0 nonexistent
## 1934 telephone may fri 407 4 999 0 nonexistent
## 1935 telephone may fri 389 2 999 0 nonexistent
## 1936 telephone may fri 31 3 999 0 nonexistent
## 1937 telephone may fri 145 3 999 0 nonexistent
## 1938 telephone may fri 115 2 999 0 nonexistent
## 1939 telephone may fri 878 3 999 0 nonexistent
## 1940 telephone may fri 268 2 999 0 nonexistent
## 1941 telephone may fri 277 3 999 0 nonexistent
## 1942 telephone may fri 101 6 999 0 nonexistent
## 1943 telephone may fri 119 2 999 0 nonexistent
## 1944 telephone may fri 185 2 999 0 nonexistent
## 1945 telephone may fri 162 2 999 0 nonexistent
## 1946 telephone may fri 18 7 999 0 nonexistent
## 1947 telephone may fri 317 2 999 0 nonexistent
## 1948 telephone may fri 71 3 999 0 nonexistent
## 1949 telephone may fri 43 2 999 0 nonexistent
## 1950 telephone may fri 298 2 999 0 nonexistent
## 1951 telephone may fri 86 4 999 0 nonexistent
## 1952 telephone may fri 255 2 999 0 nonexistent
## 1953 telephone may fri 83 3 999 0 nonexistent
## 1954 telephone may fri 194 3 999 0 nonexistent
## 1955 telephone may fri 268 3 999 0 nonexistent
## 1956 telephone may fri 97 1 999 0 nonexistent
## 1957 telephone may fri 263 5 999 0 nonexistent
## 1958 telephone may fri 338 4 999 0 nonexistent
## 1959 telephone may fri 180 2 999 0 nonexistent
## 1960 telephone may fri 322 5 999 0 nonexistent
## 1961 telephone may fri 64 4 999 0 nonexistent
## 1962 telephone may fri 71 4 999 0 nonexistent
## 1963 telephone may fri 284 4 999 0 nonexistent
## 1964 telephone may fri 166 3 999 0 nonexistent
## 1965 telephone may fri 210 3 999 0 nonexistent
## 1966 telephone may fri 160 3 999 0 nonexistent
## 1967 telephone may fri 77 2 999 0 nonexistent
## 1968 telephone may fri 328 7 999 0 nonexistent
## 1969 telephone may fri 164 8 999 0 nonexistent
## 1970 telephone may fri 154 2 999 0 nonexistent
## 1971 telephone may fri 155 3 999 0 nonexistent
## 1972 telephone may fri 153 4 999 0 nonexistent
## 1973 telephone may fri 111 2 999 0 nonexistent
## 1974 telephone may fri 91 3 999 0 nonexistent
## 1975 telephone may fri 213 4 999 0 nonexistent
## 1976 telephone may fri 257 3 999 0 nonexistent
## 1977 telephone may fri 315 4 999 0 nonexistent
## 1978 telephone may fri 102 3 999 0 nonexistent
## 1979 telephone may fri 35 3 999 0 nonexistent
## 1980 telephone may fri 83 3 999 0 nonexistent
## 1981 telephone may fri 834 9 999 0 nonexistent
## 1982 telephone may fri 244 5 999 0 nonexistent
## 1983 telephone may fri 143 3 999 0 nonexistent
## 1984 telephone may fri 277 3 999 0 nonexistent
## 1985 telephone may fri 1534 2 999 0 nonexistent
## 1986 telephone may fri 291 4 999 0 nonexistent
## 1987 telephone may mon 163 2 999 0 nonexistent
## 1988 telephone may mon 149 6 999 0 nonexistent
## 1989 telephone may mon 33 4 999 0 nonexistent
## 1990 telephone may mon 144 6 999 0 nonexistent
## 1991 telephone may mon 146 4 999 0 nonexistent
## 1992 telephone may mon 40 3 999 0 nonexistent
## 1993 telephone may mon 79 6 999 0 nonexistent
## 1994 telephone may mon 112 2 999 0 nonexistent
## 1995 telephone may mon 147 5 999 0 nonexistent
## 1996 telephone may mon 836 4 999 0 nonexistent
## 1997 telephone may mon 290 5 999 0 nonexistent
## 1998 telephone may mon 148 2 999 0 nonexistent
## 1999 telephone may mon 289 5 999 0 nonexistent
## 2000 telephone may mon 345 2 999 0 nonexistent
## 2001 telephone may mon 1002 5 999 0 nonexistent
## 2002 telephone may mon 181 4 999 0 nonexistent
## 2003 telephone may mon 460 5 999 0 nonexistent
## 2004 telephone may mon 129 2 999 0 nonexistent
## 2005 telephone may mon 76 2 999 0 nonexistent
## 2006 telephone may mon 111 2 999 0 nonexistent
## 2007 telephone may mon 98 3 999 0 nonexistent
## 2008 telephone may mon 221 2 999 0 nonexistent
## 2009 telephone may mon 150 7 999 0 nonexistent
## 2010 telephone may mon 399 3 999 0 nonexistent
## 2011 telephone may mon 139 6 999 0 nonexistent
## 2012 telephone may mon 115 4 999 0 nonexistent
## 2013 telephone may mon 149 5 999 0 nonexistent
## 2014 telephone may mon 327 2 999 0 nonexistent
## 2015 telephone may mon 92 4 999 0 nonexistent
## 2016 telephone may mon 111 2 999 0 nonexistent
## 2017 telephone may mon 192 2 999 0 nonexistent
## 2018 telephone may mon 88 5 999 0 nonexistent
## 2019 telephone may mon 592 2 999 0 nonexistent
## 2020 telephone may mon 105 3 999 0 nonexistent
## 2021 telephone may mon 62 2 999 0 nonexistent
## 2022 telephone may mon 114 5 999 0 nonexistent
## 2023 telephone may mon 59 4 999 0 nonexistent
## 2024 telephone may mon 144 7 999 0 nonexistent
## 2025 telephone may mon 346 4 999 0 nonexistent
## 2026 telephone may mon 57 2 999 0 nonexistent
## 2027 telephone may mon 396 3 999 0 nonexistent
## 2028 telephone may mon 286 4 999 0 nonexistent
## 2029 telephone may mon 59 4 999 0 nonexistent
## 2030 telephone may mon 38 4 999 0 nonexistent
## 2031 telephone may mon 252 4 999 0 nonexistent
## 2032 telephone may mon 566 7 999 0 nonexistent
## 2033 telephone may mon 167 2 999 0 nonexistent
## 2034 telephone may mon 127 2 999 0 nonexistent
## 2035 telephone may mon 71 2 999 0 nonexistent
## 2036 telephone may mon 120 2 999 0 nonexistent
## 2037 telephone may mon 409 2 999 0 nonexistent
## 2038 telephone may mon 117 2 999 0 nonexistent
## 2039 telephone may mon 177 4 999 0 nonexistent
## 2040 telephone may mon 757 2 999 0 nonexistent
## 2041 telephone may mon 145 1 999 0 nonexistent
## 2042 telephone may mon 124 1 999 0 nonexistent
## 2043 telephone may mon 36 4 999 0 nonexistent
## 2044 telephone may mon 94 2 999 0 nonexistent
## 2045 telephone may mon 189 1 999 0 nonexistent
## 2046 telephone may mon 24 1 999 0 nonexistent
## 2047 telephone may mon 33 2 999 0 nonexistent
## 2048 telephone may mon 185 1 999 0 nonexistent
## 2049 telephone may mon 122 1 999 0 nonexistent
## 2050 telephone may mon 225 1 999 0 nonexistent
## 2051 telephone may mon 165 1 999 0 nonexistent
## 2052 telephone may mon 186 1 999 0 nonexistent
## 2053 telephone may mon 405 3 999 0 nonexistent
## 2054 telephone may mon 172 2 999 0 nonexistent
## 2055 telephone may mon 207 3 999 0 nonexistent
## 2056 telephone may mon 325 3 999 0 nonexistent
## 2057 telephone may mon 57 8 999 0 nonexistent
## 2058 telephone may mon 102 1 999 0 nonexistent
## 2059 telephone may mon 164 3 999 0 nonexistent
## 2060 telephone may mon 288 2 999 0 nonexistent
## 2061 telephone may mon 154 1 999 0 nonexistent
## 2062 telephone may mon 102 1 999 0 nonexistent
## 2063 telephone may mon 136 2 999 0 nonexistent
## 2064 telephone may mon 53 1 999 0 nonexistent
## 2065 telephone may mon 744 6 999 0 nonexistent
## 2066 telephone may mon 202 1 999 0 nonexistent
## 2067 telephone may mon 113 3 999 0 nonexistent
## 2068 telephone may mon 130 3 999 0 nonexistent
## 2069 telephone may mon 523 1 999 0 nonexistent
## 2070 telephone may mon 231 1 999 0 nonexistent
## 2071 telephone may mon 217 1 999 0 nonexistent
## 2072 telephone may mon 151 1 999 0 nonexistent
## 2073 telephone may mon 293 1 999 0 nonexistent
## 2074 telephone may mon 281 1 999 0 nonexistent
## 2075 telephone may mon 363 2 999 0 nonexistent
## 2076 telephone may mon 86 1 999 0 nonexistent
## 2077 telephone may mon 1147 2 999 0 nonexistent
## 2078 telephone may mon 486 1 999 0 nonexistent
## 2079 telephone may mon 49 2 999 0 nonexistent
## 2080 telephone may mon 170 2 999 0 nonexistent
## 2081 telephone may mon 539 1 999 0 nonexistent
## 2082 telephone may mon 66 3 999 0 nonexistent
## 2083 telephone may mon 820 1 999 0 nonexistent
## 2084 telephone may mon 125 1 999 0 nonexistent
## 2085 telephone may mon 398 1 999 0 nonexistent
## 2086 telephone may mon 112 1 999 0 nonexistent
## 2087 telephone may mon 64 1 999 0 nonexistent
## 2088 telephone may mon 255 1 999 0 nonexistent
## 2089 telephone may mon 95 8 999 0 nonexistent
## 2090 telephone may mon 140 3 999 0 nonexistent
## 2091 telephone may mon 788 2 999 0 nonexistent
## 2092 telephone may mon 239 4 999 0 nonexistent
## 2093 telephone may mon 194 2 999 0 nonexistent
## 2094 telephone may mon 165 4 999 0 nonexistent
## 2095 telephone may mon 306 2 999 0 nonexistent
## 2096 telephone may mon 63 3 999 0 nonexistent
## 2097 telephone may mon 501 2 999 0 nonexistent
## 2098 telephone may mon 832 3 999 0 nonexistent
## 2099 telephone may mon 214 4 999 0 nonexistent
## 2100 telephone may mon 283 6 999 0 nonexistent
## 2101 telephone may mon 101 2 999 0 nonexistent
## 2102 telephone may mon 77 2 999 0 nonexistent
## 2103 telephone may mon 290 6 999 0 nonexistent
## 2104 telephone may mon 388 2 999 0 nonexistent
## 2105 telephone may mon 1111 3 999 0 nonexistent
## 2106 telephone may mon 1495 4 999 0 nonexistent
## 2107 telephone may mon 322 1 999 0 nonexistent
## 2108 telephone may mon 480 1 999 0 nonexistent
## 2109 telephone may mon 146 3 999 0 nonexistent
## 2110 telephone may mon 393 1 999 0 nonexistent
## 2111 telephone may mon 744 2 999 0 nonexistent
## 2112 telephone may mon 593 2 999 0 nonexistent
## 2113 telephone may mon 215 1 999 0 nonexistent
## 2114 telephone may mon 379 2 999 0 nonexistent
## 2115 telephone may mon 315 1 999 0 nonexistent
## 2116 telephone may mon 162 1 999 0 nonexistent
## 2117 telephone may mon 493 1 999 0 nonexistent
## 2118 telephone may mon 225 1 999 0 nonexistent
## 2119 telephone may mon 208 1 999 0 nonexistent
## 2120 telephone may mon 80 4 999 0 nonexistent
## 2121 telephone may mon 39 3 999 0 nonexistent
## 2122 telephone may mon 132 1 999 0 nonexistent
## 2123 telephone may mon 101 1 999 0 nonexistent
## 2124 telephone may mon 188 1 999 0 nonexistent
## 2125 telephone may mon 386 2 999 0 nonexistent
## 2126 telephone may mon 457 4 999 0 nonexistent
## 2127 telephone may mon 891 1 999 0 nonexistent
## 2128 telephone may mon 53 1 999 0 nonexistent
## 2129 telephone may mon 326 1 999 0 nonexistent
## 2130 telephone may mon 507 1 999 0 nonexistent
## 2131 telephone may mon 1083 2 999 0 nonexistent
## 2132 telephone may mon 123 2 999 0 nonexistent
## 2133 telephone may mon 1266 1 999 0 nonexistent
## 2134 telephone may mon 171 6 999 0 nonexistent
## 2135 telephone may mon 160 4 999 0 nonexistent
## 2136 telephone may mon 178 2 999 0 nonexistent
## 2137 telephone may mon 156 3 999 0 nonexistent
## 2138 telephone may mon 200 2 999 0 nonexistent
## 2139 telephone may mon 154 2 999 0 nonexistent
## 2140 telephone may mon 163 4 999 0 nonexistent
## 2141 telephone may mon 391 1 999 0 nonexistent
## 2142 telephone may mon 470 1 999 0 nonexistent
## 2143 telephone may mon 268 4 999 0 nonexistent
## 2144 telephone may mon 793 5 999 0 nonexistent
## 2145 telephone may mon 219 4 999 0 nonexistent
## 2146 telephone may mon 460 1 999 0 nonexistent
## 2147 telephone may mon 246 1 999 0 nonexistent
## 2148 telephone may mon 194 3 999 0 nonexistent
## 2149 telephone may mon 413 1 999 0 nonexistent
## 2150 telephone may mon 574 6 999 0 nonexistent
## 2151 telephone may mon 256 4 999 0 nonexistent
## 2152 telephone may mon 88 2 999 0 nonexistent
## 2153 telephone may mon 146 1 999 0 nonexistent
## 2154 telephone may mon 596 1 999 0 nonexistent
## 2155 telephone may mon 170 2 999 0 nonexistent
## 2156 telephone may mon 139 1 999 0 nonexistent
## 2157 telephone may mon 577 1 999 0 nonexistent
## 2158 telephone may mon 177 3 999 0 nonexistent
## 2159 telephone may mon 335 1 999 0 nonexistent
## 2160 telephone may mon 262 2 999 0 nonexistent
## 2161 telephone may mon 115 1 999 0 nonexistent
## 2162 telephone may mon 136 4 999 0 nonexistent
## 2163 telephone may mon 289 3 999 0 nonexistent
## 2164 telephone may mon 529 2 999 0 nonexistent
## 2165 telephone may mon 247 2 999 0 nonexistent
## 2166 telephone may mon 72 2 999 0 nonexistent
## 2167 telephone may mon 166 2 999 0 nonexistent
## 2168 telephone may mon 320 3 999 0 nonexistent
## 2169 telephone may mon 307 4 999 0 nonexistent
## 2170 telephone may mon 220 3 999 0 nonexistent
## 2171 telephone may mon 241 3 999 0 nonexistent
## 2172 telephone may mon 241 1 999 0 nonexistent
## 2173 telephone may mon 198 3 999 0 nonexistent
## 2174 telephone may mon 98 2 999 0 nonexistent
## 2175 telephone may mon 391 2 999 0 nonexistent
## 2176 telephone may mon 126 2 999 0 nonexistent
## 2177 telephone may mon 55 2 999 0 nonexistent
## 2178 telephone may mon 86 4 999 0 nonexistent
## 2179 telephone may mon 166 2 999 0 nonexistent
## 2180 telephone may mon 66 4 999 0 nonexistent
## 2181 telephone may mon 155 3 999 0 nonexistent
## 2182 telephone may mon 311 3 999 0 nonexistent
## 2183 telephone may mon 63 5 999 0 nonexistent
## 2184 telephone may mon 236 10 999 0 nonexistent
## 2185 telephone may mon 92 3 999 0 nonexistent
## 2186 telephone may mon 253 2 999 0 nonexistent
## 2187 telephone may mon 65 1 999 0 nonexistent
## 2188 telephone may mon 41 1 999 0 nonexistent
## 2189 telephone may mon 163 2 999 0 nonexistent
## 2190 telephone may mon 10 11 999 0 nonexistent
## 2191 telephone may mon 221 1 999 0 nonexistent
## 2192 telephone may mon 484 3 999 0 nonexistent
## 2193 telephone may mon 467 5 999 0 nonexistent
## 2194 telephone may mon 241 3 999 0 nonexistent
## 2195 telephone may mon 248 2 999 0 nonexistent
## 2196 telephone may mon 198 3 999 0 nonexistent
## 2197 telephone may mon 212 2 999 0 nonexistent
## 2198 telephone may mon 115 4 999 0 nonexistent
## 2199 telephone may mon 58 7 999 0 nonexistent
## 2200 telephone may mon 456 6 999 0 nonexistent
## 2201 telephone may mon 145 4 999 0 nonexistent
## 2202 telephone may mon 300 3 999 0 nonexistent
## 2203 telephone may mon 264 2 999 0 nonexistent
## 2204 telephone may mon 184 4 999 0 nonexistent
## 2205 telephone may mon 177 4 999 0 nonexistent
## 2206 telephone may mon 65 5 999 0 nonexistent
## 2207 telephone may mon 299 5 999 0 nonexistent
## 2208 telephone may mon 93 4 999 0 nonexistent
## 2209 telephone may mon 22 5 999 0 nonexistent
## 2210 telephone may mon 170 8 999 0 nonexistent
## 2211 telephone may mon 89 3 999 0 nonexistent
## 2212 telephone may mon 166 4 999 0 nonexistent
## 2213 telephone may mon 128 3 999 0 nonexistent
## 2214 telephone may mon 197 3 999 0 nonexistent
## 2215 telephone may mon 395 3 999 0 nonexistent
## 2216 telephone may mon 220 2 999 0 nonexistent
## 2217 telephone may mon 298 2 999 0 nonexistent
## 2218 telephone may mon 123 7 999 0 nonexistent
## 2219 telephone may mon 334 7 999 0 nonexistent
## 2220 telephone may mon 73 3 999 0 nonexistent
## 2221 telephone may mon 186 6 999 0 nonexistent
## 2222 telephone may mon 78 3 999 0 nonexistent
## 2223 telephone may mon 13 5 999 0 nonexistent
## 2224 telephone may mon 51 9 999 0 nonexistent
## 2225 telephone may mon 303 3 999 0 nonexistent
## 2226 telephone may mon 159 3 999 0 nonexistent
## 2227 telephone may mon 103 8 999 0 nonexistent
## 2228 telephone may mon 95 3 999 0 nonexistent
## 2229 telephone may mon 46 3 999 0 nonexistent
## 2230 telephone may mon 84 3 999 0 nonexistent
## 2231 telephone may mon 344 3 999 0 nonexistent
## 2232 telephone may mon 157 5 999 0 nonexistent
## 2233 telephone may mon 162 4 999 0 nonexistent
## 2234 telephone may mon 249 4 999 0 nonexistent
## 2235 telephone may mon 24 12 999 0 nonexistent
## 2236 telephone may mon 185 4 999 0 nonexistent
## 2237 telephone may mon 212 5 999 0 nonexistent
## 2238 telephone may mon 195 2 999 0 nonexistent
## 2239 telephone may mon 143 4 999 0 nonexistent
## 2240 telephone may mon 68 2 999 0 nonexistent
## 2241 telephone may mon 274 6 999 0 nonexistent
## 2242 telephone may mon 152 5 999 0 nonexistent
## 2243 telephone may mon 325 4 999 0 nonexistent
## 2244 telephone may mon 249 4 999 0 nonexistent
## 2245 telephone may mon 111 4 999 0 nonexistent
## 2246 telephone may mon 81 4 999 0 nonexistent
## 2247 telephone may mon 181 4 999 0 nonexistent
## 2248 telephone may tue 92 2 999 0 nonexistent
## 2249 telephone may tue 85 2 999 0 nonexistent
## 2250 telephone may tue 141 6 999 0 nonexistent
## 2251 telephone may tue 182 6 999 0 nonexistent
## 2252 telephone may tue 530 7 999 0 nonexistent
## 2253 telephone may tue 160 3 999 0 nonexistent
## 2254 telephone may tue 176 4 999 0 nonexistent
## 2255 telephone may tue 134 2 999 0 nonexistent
## 2256 telephone may tue 514 5 999 0 nonexistent
## 2257 telephone may tue 181 5 999 0 nonexistent
## 2258 telephone may tue 504 4 999 0 nonexistent
## 2259 telephone may tue 160 3 999 0 nonexistent
## 2260 telephone may tue 267 3 999 0 nonexistent
## 2261 telephone may tue 907 2 999 0 nonexistent
## 2262 telephone may tue 200 1 999 0 nonexistent
## 2263 telephone may tue 139 1 999 0 nonexistent
## 2264 telephone may tue 147 1 999 0 nonexistent
## 2265 telephone may tue 153 1 999 0 nonexistent
## 2266 telephone may tue 109 1 999 0 nonexistent
## 2267 telephone may tue 97 2 999 0 nonexistent
## 2268 telephone may tue 164 1 999 0 nonexistent
## 2269 telephone may tue 70 1 999 0 nonexistent
## 2270 telephone may tue 71 1 999 0 nonexistent
## 2271 telephone may tue 723 1 999 0 nonexistent
## 2272 telephone may tue 518 1 999 0 nonexistent
## 2273 telephone may tue 147 1 999 0 nonexistent
## 2274 telephone may tue 101 1 999 0 nonexistent
## 2275 telephone may tue 142 1 999 0 nonexistent
## 2276 telephone may tue 1346 1 999 0 nonexistent
## 2277 telephone may tue 520 1 999 0 nonexistent
## 2278 telephone may tue 611 2 999 0 nonexistent
## 2279 telephone may tue 66 1 999 0 nonexistent
## 2280 telephone may tue 135 3 999 0 nonexistent
## 2281 telephone may tue 276 2 999 0 nonexistent
## 2282 telephone may tue 449 1 999 0 nonexistent
## 2283 telephone may tue 98 1 999 0 nonexistent
## 2284 telephone may tue 105 1 999 0 nonexistent
## 2285 telephone may tue 382 2 999 0 nonexistent
## 2286 telephone may tue 213 1 999 0 nonexistent
## 2287 telephone may tue 116 1 999 0 nonexistent
## 2288 telephone may tue 249 3 999 0 nonexistent
## 2289 telephone may tue 50 1 999 0 nonexistent
## 2290 telephone may tue 138 1 999 0 nonexistent
## 2291 telephone may tue 375 1 999 0 nonexistent
## 2292 telephone may tue 49 1 999 0 nonexistent
## 2293 telephone may tue 178 2 999 0 nonexistent
## 2294 telephone may tue 169 1 999 0 nonexistent
## 2295 telephone may tue 1386 1 999 0 nonexistent
## 2296 telephone may tue 155 1 999 0 nonexistent
## 2297 telephone may tue 120 1 999 0 nonexistent
## 2298 telephone may tue 203 1 999 0 nonexistent
## 2299 telephone may tue 244 1 999 0 nonexistent
## 2300 telephone may tue 428 1 999 0 nonexistent
## 2301 telephone may tue 53 1 999 0 nonexistent
## 2302 telephone may tue 360 1 999 0 nonexistent
## 2303 telephone may tue 215 1 999 0 nonexistent
## 2304 telephone may tue 500 2 999 0 nonexistent
## 2305 telephone may tue 207 1 999 0 nonexistent
## 2306 telephone may tue 568 4 999 0 nonexistent
## 2307 telephone may tue 270 1 999 0 nonexistent
## 2308 telephone may tue 154 1 999 0 nonexistent
## 2309 telephone may tue 272 1 999 0 nonexistent
## 2310 telephone may tue 229 1 999 0 nonexistent
## 2311 telephone may tue 108 1 999 0 nonexistent
## 2312 telephone may tue 210 1 999 0 nonexistent
## 2313 telephone may tue 383 1 999 0 nonexistent
## 2314 telephone may tue 3366 3 999 0 nonexistent
## 2315 telephone may tue 259 6 999 0 nonexistent
## 2316 telephone may tue 1000 1 999 0 nonexistent
## 2317 telephone may tue 618 1 999 0 nonexistent
## 2318 telephone may tue 237 1 999 0 nonexistent
## 2319 telephone may tue 106 1 999 0 nonexistent
## 2320 telephone may tue 351 1 999 0 nonexistent
## 2321 telephone may tue 218 1 999 0 nonexistent
## 2322 telephone may tue 198 1 999 0 nonexistent
## 2323 telephone may tue 284 2 999 0 nonexistent
## 2324 telephone may tue 190 1 999 0 nonexistent
## 2325 telephone may tue 295 1 999 0 nonexistent
## 2326 telephone may tue 106 1 999 0 nonexistent
## 2327 telephone may tue 93 1 999 0 nonexistent
## 2328 telephone may tue 174 1 999 0 nonexistent
## 2329 telephone may tue 124 1 999 0 nonexistent
## 2330 telephone may tue 62 3 999 0 nonexistent
## 2331 telephone may tue 2231 1 999 0 nonexistent
## 2332 telephone may tue 217 1 999 0 nonexistent
## 2333 telephone may tue 343 1 999 0 nonexistent
## 2334 telephone may tue 227 4 999 0 nonexistent
## 2335 telephone may tue 248 2 999 0 nonexistent
## 2336 telephone may tue 180 1 999 0 nonexistent
## 2337 telephone may tue 117 1 999 0 nonexistent
## 2338 telephone may tue 205 1 999 0 nonexistent
## 2339 telephone may tue 370 1 999 0 nonexistent
## 2340 telephone may tue 427 1 999 0 nonexistent
## 2341 telephone may tue 289 2 999 0 nonexistent
## 2342 telephone may tue 170 1 999 0 nonexistent
## 2343 telephone may tue 705 1 999 0 nonexistent
## 2344 telephone may tue 198 1 999 0 nonexistent
## 2345 telephone may tue 247 1 999 0 nonexistent
## 2346 telephone may tue 226 1 999 0 nonexistent
## 2347 telephone may tue 213 1 999 0 nonexistent
## 2348 telephone may tue 174 1 999 0 nonexistent
## 2349 telephone may tue 166 1 999 0 nonexistent
## 2350 telephone may tue 373 1 999 0 nonexistent
## 2351 telephone may tue 259 1 999 0 nonexistent
## 2352 telephone may tue 340 1 999 0 nonexistent
## 2353 telephone may tue 392 1 999 0 nonexistent
## 2354 telephone may tue 245 1 999 0 nonexistent
## 2355 telephone may tue 136 1 999 0 nonexistent
## 2356 telephone may tue 148 1 999 0 nonexistent
## 2357 telephone may tue 137 1 999 0 nonexistent
## 2358 telephone may tue 456 1 999 0 nonexistent
## 2359 telephone may tue 107 1 999 0 nonexistent
## 2360 telephone may tue 44 1 999 0 nonexistent
## 2361 telephone may tue 118 1 999 0 nonexistent
## 2362 telephone may tue 135 1 999 0 nonexistent
## 2363 telephone may tue 276 1 999 0 nonexistent
## 2364 telephone may tue 150 2 999 0 nonexistent
## 2365 telephone may tue 118 1 999 0 nonexistent
## 2366 telephone may tue 38 1 999 0 nonexistent
## 2367 telephone may tue 232 3 999 0 nonexistent
## 2368 telephone may tue 1167 1 999 0 nonexistent
## 2369 telephone may tue 39 2 999 0 nonexistent
## 2370 telephone may tue 325 1 999 0 nonexistent
## 2371 telephone may tue 311 1 999 0 nonexistent
## 2372 telephone may tue 147 1 999 0 nonexistent
## 2373 telephone may tue 125 1 999 0 nonexistent
## 2374 telephone may tue 98 1 999 0 nonexistent
## 2375 telephone may tue 93 1 999 0 nonexistent
## 2376 telephone may tue 83 1 999 0 nonexistent
## 2377 telephone may tue 67 1 999 0 nonexistent
## 2378 telephone may tue 77 1 999 0 nonexistent
## 2379 telephone may tue 191 1 999 0 nonexistent
## 2380 telephone may tue 144 1 999 0 nonexistent
## 2381 telephone may tue 20 1 999 0 nonexistent
## 2382 telephone may tue 27 1 999 0 nonexistent
## 2383 telephone may tue 174 4 999 0 nonexistent
## 2384 telephone may tue 260 3 999 0 nonexistent
## 2385 telephone may tue 94 1 999 0 nonexistent
## 2386 telephone may tue 122 1 999 0 nonexistent
## 2387 telephone may tue 334 1 999 0 nonexistent
## 2388 telephone may tue 609 2 999 0 nonexistent
## 2389 telephone may tue 202 1 999 0 nonexistent
## 2390 telephone may tue 262 1 999 0 nonexistent
## 2391 telephone may tue 302 1 999 0 nonexistent
## 2392 telephone may tue 121 2 999 0 nonexistent
## 2393 telephone may tue 202 3 999 0 nonexistent
## 2394 telephone may tue 806 1 999 0 nonexistent
## 2395 telephone may tue 31 1 999 0 nonexistent
## 2396 telephone may tue 21 1 999 0 nonexistent
## 2397 telephone may tue 334 2 999 0 nonexistent
## 2398 telephone may tue 156 1 999 0 nonexistent
## 2399 telephone may tue 92 1 999 0 nonexistent
## 2400 telephone may tue 128 2 999 0 nonexistent
## 2401 telephone may tue 766 1 999 0 nonexistent
## 2402 telephone may tue 162 1 999 0 nonexistent
## 2403 telephone may tue 255 5 999 0 nonexistent
## 2404 telephone may tue 137 1 999 0 nonexistent
## 2405 telephone may tue 189 1 999 0 nonexistent
## 2406 telephone may tue 110 1 999 0 nonexistent
## 2407 telephone may tue 395 2 999 0 nonexistent
## 2408 telephone may tue 135 1 999 0 nonexistent
## 2409 telephone may tue 102 4 999 0 nonexistent
## 2410 telephone may tue 705 1 999 0 nonexistent
## 2411 telephone may tue 192 1 999 0 nonexistent
## 2412 telephone may tue 188 2 999 0 nonexistent
## 2413 telephone may tue 139 1 999 0 nonexistent
## 2414 telephone may tue 131 1 999 0 nonexistent
## 2415 telephone may tue 65 1 999 0 nonexistent
## 2416 telephone may tue 266 2 999 0 nonexistent
## 2417 telephone may tue 76 1 999 0 nonexistent
## 2418 telephone may tue 1015 1 999 0 nonexistent
## 2419 telephone may tue 122 1 999 0 nonexistent
## 2420 telephone may tue 60 1 999 0 nonexistent
## 2421 telephone may tue 111 3 999 0 nonexistent
## 2422 telephone may tue 683 2 999 0 nonexistent
## 2423 telephone may tue 100 1 999 0 nonexistent
## 2424 telephone may tue 82 1 999 0 nonexistent
## 2425 telephone may tue 470 1 999 0 nonexistent
## 2426 telephone may tue 149 1 999 0 nonexistent
## 2427 telephone may tue 106 1 999 0 nonexistent
## 2428 telephone may tue 127 2 999 0 nonexistent
## 2429 telephone may tue 320 1 999 0 nonexistent
## 2430 telephone may tue 145 1 999 0 nonexistent
## 2431 telephone may tue 129 1 999 0 nonexistent
## 2432 telephone may tue 730 1 999 0 nonexistent
## 2433 telephone may tue 36 1 999 0 nonexistent
## 2434 telephone may tue 521 1 999 0 nonexistent
## 2435 telephone may tue 95 3 999 0 nonexistent
## 2436 telephone may tue 120 1 999 0 nonexistent
## 2437 telephone may tue 349 1 999 0 nonexistent
## 2438 telephone may tue 768 1 999 0 nonexistent
## 2439 telephone may tue 277 1 999 0 nonexistent
## 2440 telephone may tue 289 1 999 0 nonexistent
## 2441 telephone may tue 473 1 999 0 nonexistent
## 2442 telephone may tue 133 1 999 0 nonexistent
## 2443 telephone may tue 129 1 999 0 nonexistent
## 2444 telephone may tue 386 2 999 0 nonexistent
## 2445 telephone may tue 1001 4 999 0 nonexistent
## 2446 telephone may tue 76 1 999 0 nonexistent
## 2447 telephone may tue 214 1 999 0 nonexistent
## 2448 telephone may tue 355 1 999 0 nonexistent
## 2449 telephone may tue 194 2 999 0 nonexistent
## 2450 telephone may tue 845 1 999 0 nonexistent
## 2451 telephone may tue 208 1 999 0 nonexistent
## 2452 telephone may tue 173 1 999 0 nonexistent
## 2453 telephone may tue 113 2 999 0 nonexistent
## 2454 telephone may tue 109 2 999 0 nonexistent
## 2455 telephone may tue 853 1 999 0 nonexistent
## 2456 telephone may tue 518 1 999 0 nonexistent
## 2457 telephone may tue 124 2 999 0 nonexistent
## 2458 telephone may tue 452 2 999 0 nonexistent
## 2459 telephone may tue 203 2 999 0 nonexistent
## 2460 telephone may tue 813 2 999 0 nonexistent
## 2461 telephone may tue 81 1 999 0 nonexistent
## 2462 telephone may tue 93 1 999 0 nonexistent
## 2463 telephone may tue 119 1 999 0 nonexistent
## 2464 telephone may tue 295 3 999 0 nonexistent
## 2465 telephone may tue 296 1 999 0 nonexistent
## 2466 telephone may tue 916 2 999 0 nonexistent
## 2467 telephone may tue 60 2 999 0 nonexistent
## 2468 telephone may tue 443 1 999 0 nonexistent
## 2469 telephone may tue 225 2 999 0 nonexistent
## 2470 telephone may tue 262 2 999 0 nonexistent
## 2471 telephone may tue 431 2 999 0 nonexistent
## 2472 telephone may tue 358 2 999 0 nonexistent
## 2473 telephone may tue 565 2 999 0 nonexistent
## 2474 telephone may tue 753 6 999 0 nonexistent
## 2475 telephone may tue 103 3 999 0 nonexistent
## 2476 telephone may tue 708 2 999 0 nonexistent
## 2477 telephone may tue 265 1 999 0 nonexistent
## 2478 telephone may tue 255 2 999 0 nonexistent
## 2479 telephone may tue 434 2 999 0 nonexistent
## 2480 telephone may tue 59 1 999 0 nonexistent
## 2481 telephone may tue 305 1 999 0 nonexistent
## 2482 telephone may tue 155 2 999 0 nonexistent
## 2483 telephone may tue 805 2 999 0 nonexistent
## 2484 telephone may tue 242 1 999 0 nonexistent
## 2485 telephone may tue 19 9 999 0 nonexistent
## 2486 telephone may tue 93 6 999 0 nonexistent
## 2487 telephone may tue 211 3 999 0 nonexistent
## 2488 telephone may tue 31 2 999 0 nonexistent
## 2489 telephone may tue 213 5 999 0 nonexistent
## 2490 telephone may tue 104 2 999 0 nonexistent
## 2491 telephone may tue 342 3 999 0 nonexistent
## 2492 telephone may tue 172 2 999 0 nonexistent
## 2493 telephone may tue 160 3 999 0 nonexistent
## 2494 telephone may tue 535 2 999 0 nonexistent
## 2495 telephone may tue 514 5 999 0 nonexistent
## 2496 telephone may tue 276 1 999 0 nonexistent
## 2497 telephone may tue 176 3 999 0 nonexistent
## 2498 telephone may tue 20 1 999 0 nonexistent
## 2499 telephone may tue 161 1 999 0 nonexistent
## 2500 telephone may tue 473 1 999 0 nonexistent
## 2501 telephone may tue 245 4 999 0 nonexistent
## 2502 telephone may tue 144 1 999 0 nonexistent
## 2503 telephone may tue 123 1 999 0 nonexistent
## 2504 telephone may tue 93 2 999 0 nonexistent
## 2505 telephone may tue 188 3 999 0 nonexistent
## 2506 telephone may tue 332 1 999 0 nonexistent
## 2507 telephone may tue 178 2 999 0 nonexistent
## 2508 telephone may tue 318 2 999 0 nonexistent
## 2509 telephone may tue 94 1 999 0 nonexistent
## 2510 telephone may tue 139 2 999 0 nonexistent
## 2511 telephone may tue 152 1 999 0 nonexistent
## 2512 telephone may tue 188 1 999 0 nonexistent
## 2513 telephone may tue 94 2 999 0 nonexistent
## 2514 telephone may tue 54 3 999 0 nonexistent
## 2515 telephone may tue 29 1 999 0 nonexistent
## 2516 telephone may tue 271 1 999 0 nonexistent
## 2517 telephone may tue 95 1 999 0 nonexistent
## 2518 telephone may tue 227 1 999 0 nonexistent
## 2519 telephone may tue 190 1 999 0 nonexistent
## 2520 telephone may tue 60 1 999 0 nonexistent
## 2521 telephone may tue 162 4 999 0 nonexistent
## 2522 telephone may tue 296 1 999 0 nonexistent
## 2523 telephone may tue 125 1 999 0 nonexistent
## 2524 telephone may tue 78 3 999 0 nonexistent
## 2525 telephone may tue 67 2 999 0 nonexistent
## 2526 telephone may tue 93 1 999 0 nonexistent
## 2527 telephone may tue 119 2 999 0 nonexistent
## 2528 telephone may tue 3 1 999 0 nonexistent
## 2529 telephone may tue 297 3 999 0 nonexistent
## 2530 telephone may tue 179 1 999 0 nonexistent
## 2531 telephone may tue 342 2 999 0 nonexistent
## 2532 telephone may tue 420 1 999 0 nonexistent
## 2533 telephone may tue 378 1 999 0 nonexistent
## 2534 telephone may tue 190 1 999 0 nonexistent
## 2535 telephone may tue 354 2 999 0 nonexistent
## 2536 telephone may tue 190 1 999 0 nonexistent
## 2537 telephone may tue 131 1 999 0 nonexistent
## 2538 telephone may tue 367 1 999 0 nonexistent
## 2539 telephone may tue 394 1 999 0 nonexistent
## 2540 telephone may tue 91 2 999 0 nonexistent
## 2541 telephone may tue 280 1 999 0 nonexistent
## 2542 telephone may tue 768 2 999 0 nonexistent
## 2543 telephone may tue 184 1 999 0 nonexistent
## 2544 telephone may tue 43 2 999 0 nonexistent
## 2545 telephone may tue 108 2 999 0 nonexistent
## 2546 telephone may tue 195 2 999 0 nonexistent
## 2547 telephone may tue 109 1 999 0 nonexistent
## 2548 telephone may tue 226 1 999 0 nonexistent
## 2549 telephone may tue 299 3 999 0 nonexistent
## 2550 telephone may tue 192 1 999 0 nonexistent
## 2551 telephone may tue 141 4 999 0 nonexistent
## 2552 telephone may tue 87 1 999 0 nonexistent
## 2553 telephone may tue 169 2 999 0 nonexistent
## 2554 telephone may tue 119 10 999 0 nonexistent
## 2555 telephone may tue 101 13 999 0 nonexistent
## 2556 telephone may tue 210 1 999 0 nonexistent
## 2557 telephone may tue 129 4 999 0 nonexistent
## 2558 telephone may tue 481 3 999 0 nonexistent
## 2559 telephone may tue 215 1 999 0 nonexistent
## 2560 telephone may tue 142 2 999 0 nonexistent
## 2561 telephone may tue 411 2 999 0 nonexistent
## 2562 telephone may tue 93 1 999 0 nonexistent
## 2563 telephone may tue 65 1 999 0 nonexistent
## 2564 telephone may tue 531 2 999 0 nonexistent
## 2565 telephone may tue 34 4 999 0 nonexistent
## 2566 telephone may tue 788 3 999 0 nonexistent
## 2567 telephone may tue 431 1 999 0 nonexistent
## 2568 telephone may tue 851 4 999 0 nonexistent
## 2569 telephone may tue 315 3 999 0 nonexistent
## 2570 telephone may tue 214 1 999 0 nonexistent
## 2571 telephone may tue 92 4 999 0 nonexistent
## 2572 telephone may tue 73 3 999 0 nonexistent
## 2573 telephone may tue 181 3 999 0 nonexistent
## 2574 telephone may tue 159 2 999 0 nonexistent
## 2575 telephone may tue 58 2 999 0 nonexistent
## 2576 telephone may tue 1052 1 999 0 nonexistent
## 2577 telephone may tue 165 2 999 0 nonexistent
## 2578 telephone may tue 309 2 999 0 nonexistent
## 2579 telephone may tue 163 2 999 0 nonexistent
## 2580 telephone may tue 210 3 999 0 nonexistent
## 2581 telephone may tue 165 3 999 0 nonexistent
## 2582 telephone may tue 331 2 999 0 nonexistent
## 2583 telephone may tue 230 3 999 0 nonexistent
## 2584 telephone may tue 584 2 999 0 nonexistent
## 2585 telephone may tue 134 2 999 0 nonexistent
## 2586 telephone may tue 185 6 999 0 nonexistent
## 2587 telephone may tue 295 2 999 0 nonexistent
## 2588 telephone may tue 86 4 999 0 nonexistent
## 2589 telephone may tue 151 4 999 0 nonexistent
## 2590 telephone may tue 69 11 999 0 nonexistent
## 2591 telephone may tue 15 11 999 0 nonexistent
## 2592 telephone may tue 437 2 999 0 nonexistent
## 2593 telephone may tue 139 4 999 0 nonexistent
## 2594 telephone may tue 267 2 999 0 nonexistent
## 2595 telephone may tue 259 5 999 0 nonexistent
## 2596 telephone may tue 165 2 999 0 nonexistent
## 2597 telephone may tue 566 2 999 0 nonexistent
## 2598 telephone may tue 175 2 999 0 nonexistent
## 2599 telephone may tue 198 2 999 0 nonexistent
## 2600 telephone may tue 220 2 999 0 nonexistent
## 2601 telephone may tue 168 2 999 0 nonexistent
## 2602 telephone may tue 247 3 999 0 nonexistent
## 2603 telephone may tue 291 2 999 0 nonexistent
## 2604 telephone may tue 322 2 999 0 nonexistent
## 2605 telephone may tue 194 2 999 0 nonexistent
## 2606 telephone may tue 379 2 999 0 nonexistent
## 2607 telephone may tue 151 2 999 0 nonexistent
## 2608 telephone may tue 166 4 999 0 nonexistent
## 2609 telephone may tue 64 2 999 0 nonexistent
## 2610 telephone may tue 232 4 999 0 nonexistent
## 2611 telephone may tue 647 7 999 0 nonexistent
## 2612 telephone may tue 322 3 999 0 nonexistent
## 2613 telephone may tue 337 6 999 0 nonexistent
## 2614 telephone may tue 133 12 999 0 nonexistent
## 2615 telephone may tue 50 3 999 0 nonexistent
## 2616 telephone may tue 87 2 999 0 nonexistent
## 2617 telephone may tue 771 2 999 0 nonexistent
## 2618 telephone may tue 205 3 999 0 nonexistent
## 2619 telephone may tue 76 2 999 0 nonexistent
## 2620 telephone may tue 318 2 999 0 nonexistent
## 2621 telephone may tue 109 9 999 0 nonexistent
## 2622 telephone may tue 304 2 999 0 nonexistent
## 2623 telephone may tue 209 2 999 0 nonexistent
## 2624 telephone may tue 271 2 999 0 nonexistent
## 2625 telephone may tue 1093 3 999 0 nonexistent
## 2626 telephone may tue 326 4 999 0 nonexistent
## 2627 telephone may tue 389 2 999 0 nonexistent
## 2628 telephone may tue 273 2 999 0 nonexistent
## 2629 telephone may tue 264 3 999 0 nonexistent
## 2630 telephone may tue 1106 4 999 0 nonexistent
## 2631 telephone may tue 195 5 999 0 nonexistent
## 2632 telephone may tue 69 19 999 0 nonexistent
## 2633 telephone may tue 214 2 999 0 nonexistent
## 2634 telephone may tue 87 9 999 0 nonexistent
## 2635 telephone may tue 122 7 999 0 nonexistent
## 2636 telephone may tue 945 2 999 0 nonexistent
## 2637 telephone may tue 288 2 999 0 nonexistent
## 2638 telephone may tue 50 3 999 0 nonexistent
## 2639 telephone may tue 816 3 999 0 nonexistent
## 2640 telephone may tue 284 2 999 0 nonexistent
## 2641 telephone may tue 116 4 999 0 nonexistent
## 2642 telephone may tue 72 4 999 0 nonexistent
## 2643 telephone may tue 232 2 999 0 nonexistent
## 2644 telephone may tue 262 2 999 0 nonexistent
## 2645 telephone may tue 190 5 999 0 nonexistent
## 2646 telephone may tue 1721 2 999 0 nonexistent
## 2647 telephone may tue 351 2 999 0 nonexistent
## 2648 telephone may tue 166 2 999 0 nonexistent
## 2649 telephone may tue 104 2 999 0 nonexistent
## 2650 telephone may tue 163 3 999 0 nonexistent
## 2651 telephone may tue 492 2 999 0 nonexistent
## 2652 telephone may tue 152 3 999 0 nonexistent
## 2653 telephone may tue 109 4 999 0 nonexistent
## 2654 telephone may tue 384 1 999 0 nonexistent
## 2655 telephone may tue 1032 1 999 0 nonexistent
## 2656 telephone may wed 128 2 999 0 nonexistent
## 2657 telephone may wed 65 6 999 0 nonexistent
## 2658 telephone may wed 194 4 999 0 nonexistent
## 2659 telephone may wed 360 2 999 0 nonexistent
## 2660 telephone may wed 96 4 999 0 nonexistent
## 2661 telephone may wed 20 11 999 0 nonexistent
## 2662 telephone may wed 323 4 999 0 nonexistent
## 2663 telephone may wed 332 2 999 0 nonexistent
## 2664 telephone may wed 735 8 999 0 nonexistent
## 2665 telephone may wed 151 2 999 0 nonexistent
## 2666 telephone may wed 158 3 999 0 nonexistent
## 2667 telephone may wed 73 2 999 0 nonexistent
## 2668 telephone may wed 407 4 999 0 nonexistent
## 2669 telephone may wed 438 2 999 0 nonexistent
## 2670 telephone may wed 174 3 999 0 nonexistent
## 2671 telephone may wed 175 3 999 0 nonexistent
## 2672 telephone may wed 313 4 999 0 nonexistent
## 2673 telephone may wed 137 4 999 0 nonexistent
## 2674 telephone may wed 22 3 999 0 nonexistent
## 2675 telephone may wed 328 4 999 0 nonexistent
## 2676 telephone may wed 93 4 999 0 nonexistent
## 2677 telephone may wed 97 2 999 0 nonexistent
## 2678 telephone may wed 219 4 999 0 nonexistent
## 2679 telephone may wed 455 3 999 0 nonexistent
## 2680 telephone may wed 103 6 999 0 nonexistent
## 2681 telephone may wed 133 2 999 0 nonexistent
## 2682 telephone may wed 77 2 999 0 nonexistent
## 2683 telephone may wed 211 2 999 0 nonexistent
## 2684 telephone may wed 72 2 999 0 nonexistent
## 2685 telephone may wed 942 3 999 0 nonexistent
## 2686 telephone may wed 89 2 999 0 nonexistent
## 2687 telephone may wed 108 4 999 0 nonexistent
## 2688 telephone may wed 101 2 999 0 nonexistent
## 2689 telephone may wed 305 3 999 0 nonexistent
## 2690 telephone may wed 387 9 999 0 nonexistent
## 2691 telephone may wed 146 4 999 0 nonexistent
## 2692 telephone may wed 160 1 999 0 nonexistent
## 2693 telephone may wed 70 1 999 0 nonexistent
## 2694 telephone may wed 162 1 999 0 nonexistent
## 2695 telephone may wed 117 4 999 0 nonexistent
## 2696 telephone may wed 381 1 999 0 nonexistent
## 2697 telephone may wed 109 1 999 0 nonexistent
## 2698 telephone may wed 476 1 999 0 nonexistent
## 2699 telephone may wed 178 1 999 0 nonexistent
## 2700 telephone may wed 260 1 999 0 nonexistent
## 2701 telephone may wed 231 1 999 0 nonexistent
## 2702 telephone may wed 188 1 999 0 nonexistent
## 2703 telephone may wed 145 1 999 0 nonexistent
## 2704 telephone may wed 163 3 999 0 nonexistent
## 2705 telephone may wed 27 1 999 0 nonexistent
## 2706 telephone may wed 282 1 999 0 nonexistent
## 2707 telephone may wed 73 1 999 0 nonexistent
## 2708 telephone may wed 48 1 999 0 nonexistent
## 2709 telephone may wed 220 1 999 0 nonexistent
## 2710 telephone may wed 606 1 999 0 nonexistent
## 2711 telephone may wed 82 7 999 0 nonexistent
## 2712 telephone may wed 451 3 999 0 nonexistent
## 2713 telephone may wed 202 2 999 0 nonexistent
## 2714 telephone may wed 832 1 999 0 nonexistent
## 2715 telephone may wed 168 3 999 0 nonexistent
## 2716 telephone may wed 230 1 999 0 nonexistent
## 2717 telephone may wed 69 1 999 0 nonexistent
## 2718 telephone may wed 200 1 999 0 nonexistent
## 2719 telephone may wed 170 1 999 0 nonexistent
## 2720 telephone may wed 142 1 999 0 nonexistent
## 2721 telephone may wed 283 8 999 0 nonexistent
## 2722 telephone may wed 421 1 999 0 nonexistent
## 2723 telephone may wed 278 1 999 0 nonexistent
## 2724 telephone may wed 179 1 999 0 nonexistent
## 2725 telephone may wed 238 1 999 0 nonexistent
## 2726 telephone may wed 110 2 999 0 nonexistent
## 2727 telephone may wed 138 3 999 0 nonexistent
## 2728 telephone may wed 218 2 999 0 nonexistent
## 2729 telephone may wed 158 2 999 0 nonexistent
## 2730 telephone may wed 105 1 999 0 nonexistent
## 2731 telephone may wed 106 1 999 0 nonexistent
## 2732 telephone may wed 217 1 999 0 nonexistent
## 2733 telephone may wed 132 1 999 0 nonexistent
## 2734 telephone may wed 824 2 999 0 nonexistent
## 2735 telephone may wed 243 1 999 0 nonexistent
## 2736 telephone may wed 488 12 999 0 nonexistent
## 2737 telephone may wed 148 2 999 0 nonexistent
## 2738 telephone may wed 159 2 999 0 nonexistent
## 2739 telephone may wed 124 1 999 0 nonexistent
## 2740 telephone may wed 452 1 999 0 nonexistent
## 2741 telephone may wed 114 1 999 0 nonexistent
## 2742 telephone may wed 92 1 999 0 nonexistent
## 2743 telephone may wed 125 1 999 0 nonexistent
## 2744 telephone may wed 145 2 999 0 nonexistent
## 2745 telephone may wed 1328 1 999 0 nonexistent
## 2746 telephone may wed 686 1 999 0 nonexistent
## 2747 telephone may wed 80 1 999 0 nonexistent
## 2748 telephone may wed 265 1 999 0 nonexistent
## 2749 telephone may wed 300 1 999 0 nonexistent
## 2750 telephone may wed 203 1 999 0 nonexistent
## 2751 telephone may wed 71 1 999 0 nonexistent
## 2752 telephone may wed 534 1 999 0 nonexistent
## 2753 telephone may wed 243 1 999 0 nonexistent
## 2754 telephone may wed 230 1 999 0 nonexistent
## 2755 telephone may wed 127 3 999 0 nonexistent
## 2756 telephone may wed 1125 2 999 0 nonexistent
## 2757 telephone may wed 136 2 999 0 nonexistent
## 2758 telephone may wed 158 2 999 0 nonexistent
## 2759 telephone may wed 267 2 999 0 nonexistent
## 2760 telephone may wed 257 1 999 0 nonexistent
## 2761 telephone may wed 110 1 999 0 nonexistent
## 2762 telephone may wed 477 5 999 0 nonexistent
## 2763 telephone may wed 456 9 999 0 nonexistent
## 2764 telephone may wed 1321 2 999 0 nonexistent
## 2765 telephone may wed 298 1 999 0 nonexistent
## 2766 telephone may wed 96 1 999 0 nonexistent
## 2767 telephone may wed 483 2 999 0 nonexistent
## 2768 telephone may wed 213 1 999 0 nonexistent
## 2769 telephone may wed 51 1 999 0 nonexistent
## 2770 telephone may wed 44 1 999 0 nonexistent
## 2771 telephone may wed 164 2 999 0 nonexistent
## 2772 telephone may wed 166 1 999 0 nonexistent
## 2773 telephone may wed 220 2 999 0 nonexistent
## 2774 telephone may wed 178 1 999 0 nonexistent
## 2775 telephone may wed 452 2 999 0 nonexistent
## 2776 telephone may wed 858 1 999 0 nonexistent
## 2777 telephone may wed 87 1 999 0 nonexistent
## 2778 telephone may wed 97 1 999 0 nonexistent
## 2779 telephone may wed 122 1 999 0 nonexistent
## 2780 telephone may wed 629 2 999 0 nonexistent
## 2781 telephone may wed 116 1 999 0 nonexistent
## 2782 telephone may wed 120 1 999 0 nonexistent
## 2783 telephone may wed 122 1 999 0 nonexistent
## 2784 telephone may wed 262 1 999 0 nonexistent
## 2785 telephone may wed 179 1 999 0 nonexistent
## 2786 telephone may wed 35 1 999 0 nonexistent
## 2787 telephone may wed 156 1 999 0 nonexistent
## 2788 telephone may wed 201 1 999 0 nonexistent
## 2789 telephone may wed 159 1 999 0 nonexistent
## 2790 telephone may wed 68 1 999 0 nonexistent
## 2791 telephone may wed 75 1 999 0 nonexistent
## 2792 telephone may wed 191 1 999 0 nonexistent
## 2793 telephone may wed 461 1 999 0 nonexistent
## 2794 telephone may wed 188 1 999 0 nonexistent
## 2795 telephone may wed 117 6 999 0 nonexistent
## 2796 telephone may wed 546 1 999 0 nonexistent
## 2797 telephone may wed 171 1 999 0 nonexistent
## 2798 telephone may wed 351 1 999 0 nonexistent
## 2799 telephone may wed 429 1 999 0 nonexistent
## 2800 telephone may wed 249 2 999 0 nonexistent
## 2801 telephone may wed 568 1 999 0 nonexistent
## 2802 telephone may wed 299 1 999 0 nonexistent
## 2803 telephone may wed 282 1 999 0 nonexistent
## 2804 telephone may wed 211 1 999 0 nonexistent
## 2805 telephone may wed 77 1 999 0 nonexistent
## 2806 telephone may wed 283 1 999 0 nonexistent
## 2807 telephone may wed 263 1 999 0 nonexistent
## 2808 telephone may wed 189 1 999 0 nonexistent
## 2809 telephone may wed 91 1 999 0 nonexistent
## 2810 telephone may wed 32 1 999 0 nonexistent
## 2811 telephone may wed 139 2 999 0 nonexistent
## 2812 telephone may wed 347 1 999 0 nonexistent
## 2813 telephone may wed 58 1 999 0 nonexistent
## 2814 telephone may wed 152 1 999 0 nonexistent
## 2815 telephone may wed 869 1 999 0 nonexistent
## 2816 telephone may wed 339 1 999 0 nonexistent
## 2817 telephone may wed 267 1 999 0 nonexistent
## 2818 telephone may wed 34 1 999 0 nonexistent
## 2819 telephone may wed 153 2 999 0 nonexistent
## 2820 telephone may wed 28 2 999 0 nonexistent
## 2821 telephone may wed 216 1 999 0 nonexistent
## 2822 telephone may wed 199 2 999 0 nonexistent
## 2823 telephone may wed 139 1 999 0 nonexistent
## 2824 telephone may wed 322 1 999 0 nonexistent
## 2825 telephone may wed 189 1 999 0 nonexistent
## 2826 telephone may wed 197 2 999 0 nonexistent
## 2827 telephone may wed 224 2 999 0 nonexistent
## 2828 telephone may wed 160 1 999 0 nonexistent
## 2829 telephone may wed 180 1 999 0 nonexistent
## 2830 telephone may wed 191 1 999 0 nonexistent
## 2831 telephone may wed 833 1 999 0 nonexistent
## 2832 telephone may wed 485 2 999 0 nonexistent
## 2833 telephone may wed 57 1 999 0 nonexistent
## 2834 telephone may wed 247 2 999 0 nonexistent
## 2835 telephone may wed 89 1 999 0 nonexistent
## 2836 telephone may wed 849 1 999 0 nonexistent
## 2837 telephone may wed 260 1 999 0 nonexistent
## 2838 telephone may wed 181 1 999 0 nonexistent
## 2839 telephone may wed 125 1 999 0 nonexistent
## 2840 telephone may wed 225 1 999 0 nonexistent
## 2841 telephone may wed 829 1 999 0 nonexistent
## 2842 telephone may wed 749 2 999 0 nonexistent
## 2843 telephone may wed 166 2 999 0 nonexistent
## 2844 telephone may wed 407 2 999 0 nonexistent
## 2845 telephone may wed 182 2 999 0 nonexistent
## 2846 telephone may wed 152 2 999 0 nonexistent
## 2847 telephone may wed 438 4 999 0 nonexistent
## 2848 telephone may wed 387 2 999 0 nonexistent
## 2849 telephone may wed 100 3 999 0 nonexistent
## 2850 telephone may wed 413 2 999 0 nonexistent
## 2851 telephone may wed 191 2 999 0 nonexistent
## 2852 telephone may wed 109 1 999 0 nonexistent
## 2853 telephone may wed 345 2 999 0 nonexistent
## 2854 telephone may wed 1028 2 999 0 nonexistent
## 2855 telephone may wed 566 2 999 0 nonexistent
## 2856 telephone may wed 38 1 999 0 nonexistent
## 2857 telephone may wed 214 1 999 0 nonexistent
## 2858 telephone may wed 248 2 999 0 nonexistent
## 2859 telephone may wed 246 1 999 0 nonexistent
## 2860 telephone may wed 170 2 999 0 nonexistent
## 2861 telephone may wed 136 8 999 0 nonexistent
## 2862 telephone may wed 98 1 999 0 nonexistent
## 2863 telephone may wed 225 2 999 0 nonexistent
## 2864 telephone may wed 230 1 999 0 nonexistent
## 2865 telephone may wed 364 1 999 0 nonexistent
## 2866 telephone may wed 784 1 999 0 nonexistent
## 2867 telephone may wed 93 11 999 0 nonexistent
## 2868 telephone may wed 57 2 999 0 nonexistent
## 2869 telephone may wed 160 2 999 0 nonexistent
## 2870 telephone may wed 210 2 999 0 nonexistent
## 2871 telephone may wed 222 2 999 0 nonexistent
## 2872 telephone may wed 265 2 999 0 nonexistent
## 2873 telephone may wed 21 10 999 0 nonexistent
## 2874 telephone may wed 157 1 999 0 nonexistent
## 2875 telephone may wed 143 1 999 0 nonexistent
## 2876 telephone may wed 230 2 999 0 nonexistent
## 2877 telephone may wed 117 1 999 0 nonexistent
## 2878 telephone may wed 161 2 999 0 nonexistent
## 2879 telephone may wed 350 2 999 0 nonexistent
## 2880 telephone may wed 155 1 999 0 nonexistent
## 2881 telephone may wed 162 1 999 0 nonexistent
## 2882 telephone may wed 565 1 999 0 nonexistent
## 2883 telephone may wed 44 5 999 0 nonexistent
## 2884 telephone may wed 337 1 999 0 nonexistent
## 2885 telephone may wed 416 2 999 0 nonexistent
## 2886 telephone may wed 102 2 999 0 nonexistent
## 2887 telephone may wed 129 2 999 0 nonexistent
## 2888 telephone may wed 977 1 999 0 nonexistent
## 2889 telephone may wed 138 2 999 0 nonexistent
## 2890 telephone may wed 70 2 999 0 nonexistent
## 2891 telephone may wed 71 1 999 0 nonexistent
## 2892 telephone may wed 251 2 999 0 nonexistent
## 2893 telephone may wed 75 1 999 0 nonexistent
## 2894 telephone may wed 110 1 999 0 nonexistent
## 2895 telephone may wed 230 2 999 0 nonexistent
## 2896 telephone may wed 48 1 999 0 nonexistent
## 2897 telephone may wed 369 1 999 0 nonexistent
## 2898 telephone may wed 136 1 999 0 nonexistent
## 2899 telephone may wed 22 4 999 0 nonexistent
## 2900 telephone may wed 174 2 999 0 nonexistent
## 2901 telephone may wed 378 1 999 0 nonexistent
## 2902 telephone may wed 80 1 999 0 nonexistent
## 2903 telephone may wed 144 1 999 0 nonexistent
## 2904 telephone may wed 380 4 999 0 nonexistent
## 2905 telephone may wed 108 1 999 0 nonexistent
## 2906 telephone may wed 927 1 999 0 nonexistent
## 2907 telephone may wed 389 1 999 0 nonexistent
## 2908 telephone may wed 192 1 999 0 nonexistent
## 2909 telephone may wed 273 1 999 0 nonexistent
## 2910 telephone may wed 48 1 999 0 nonexistent
## 2911 telephone may wed 8 1 999 0 nonexistent
## 2912 telephone may wed 90 1 999 0 nonexistent
## 2913 telephone may wed 221 1 999 0 nonexistent
## 2914 telephone may wed 217 1 999 0 nonexistent
## 2915 telephone may wed 762 2 999 0 nonexistent
## 2916 telephone may wed 302 2 999 0 nonexistent
## 2917 telephone may wed 411 1 999 0 nonexistent
## 2918 telephone may wed 179 1 999 0 nonexistent
## 2919 telephone may wed 245 2 999 0 nonexistent
## 2920 telephone may wed 746 1 999 0 nonexistent
## 2921 telephone may wed 673 2 999 0 nonexistent
## 2922 telephone may wed 220 7 999 0 nonexistent
## 2923 telephone may wed 232 1 999 0 nonexistent
## 2924 telephone may wed 106 4 999 0 nonexistent
## 2925 telephone may wed 115 3 999 0 nonexistent
## 2926 telephone may wed 485 2 999 0 nonexistent
## 2927 telephone may wed 274 6 999 0 nonexistent
## 2928 telephone may wed 106 5 999 0 nonexistent
## 2929 telephone may wed 107 1 999 0 nonexistent
## 2930 telephone may wed 1044 2 999 0 nonexistent
## 2931 telephone may wed 354 1 999 0 nonexistent
## 2932 telephone may wed 55 1 999 0 nonexistent
## 2933 telephone may wed 180 4 999 0 nonexistent
## 2934 telephone may wed 95 1 999 0 nonexistent
## 2935 telephone may wed 392 1 999 0 nonexistent
## 2936 telephone may wed 331 2 999 0 nonexistent
## 2937 telephone may wed 123 1 999 0 nonexistent
## 2938 telephone may wed 148 3 999 0 nonexistent
## 2939 telephone may wed 74 3 999 0 nonexistent
## 2940 telephone may wed 267 7 999 0 nonexistent
## 2941 telephone may wed 374 2 999 0 nonexistent
## 2942 telephone may wed 295 2 999 0 nonexistent
## 2943 telephone may wed 77 4 999 0 nonexistent
## 2944 telephone may wed 149 2 999 0 nonexistent
## 2945 telephone may wed 668 1 999 0 nonexistent
## 2946 telephone may wed 95 6 999 0 nonexistent
## 2947 telephone may wed 229 2 999 0 nonexistent
## 2948 telephone may wed 286 9 999 0 nonexistent
## 2949 telephone may wed 242 5 999 0 nonexistent
## 2950 telephone may wed 335 1 999 0 nonexistent
## 2951 telephone may wed 140 1 999 0 nonexistent
## 2952 telephone may wed 159 3 999 0 nonexistent
## 2953 telephone may wed 343 1 999 0 nonexistent
## 2954 telephone may wed 85 4 999 0 nonexistent
## 2955 telephone may wed 295 1 999 0 nonexistent
## 2956 telephone may wed 360 1 999 0 nonexistent
## 2957 telephone may wed 183 4 999 0 nonexistent
## 2958 telephone may wed 726 2 999 0 nonexistent
## 2959 telephone may wed 158 1 999 0 nonexistent
## 2960 telephone may wed 514 2 999 0 nonexistent
## 2961 telephone may wed 382 10 999 0 nonexistent
## 2962 telephone may wed 142 3 999 0 nonexistent
## 2963 telephone may wed 301 3 999 0 nonexistent
## 2964 telephone may wed 153 3 999 0 nonexistent
## 2965 telephone may wed 264 2 999 0 nonexistent
## 2966 telephone may wed 161 2 999 0 nonexistent
## 2967 telephone may wed 150 1 999 0 nonexistent
## 2968 telephone may wed 49 1 999 0 nonexistent
## 2969 telephone may wed 326 3 999 0 nonexistent
## 2970 telephone may wed 183 2 999 0 nonexistent
## 2971 telephone may wed 634 10 999 0 nonexistent
## 2972 telephone may wed 339 1 999 0 nonexistent
## 2973 telephone may wed 125 1 999 0 nonexistent
## 2974 telephone may wed 232 2 999 0 nonexistent
## 2975 telephone may wed 312 5 999 0 nonexistent
## 2976 telephone may wed 423 2 999 0 nonexistent
## 2977 telephone may wed 191 1 999 0 nonexistent
## 2978 telephone may wed 248 1 999 0 nonexistent
## 2979 telephone may wed 146 1 999 0 nonexistent
## 2980 telephone may wed 125 2 999 0 nonexistent
## 2981 telephone may wed 234 1 999 0 nonexistent
## 2982 telephone may wed 17 18 999 0 nonexistent
## 2983 telephone may wed 546 1 999 0 nonexistent
## 2984 telephone may wed 554 1 999 0 nonexistent
## 2985 telephone may wed 162 4 999 0 nonexistent
## 2986 telephone may wed 436 1 999 0 nonexistent
## 2987 telephone may wed 302 2 999 0 nonexistent
## 2988 telephone may wed 349 5 999 0 nonexistent
## 2989 telephone may wed 174 2 999 0 nonexistent
## 2990 telephone may wed 180 1 999 0 nonexistent
## 2991 telephone may wed 902 5 999 0 nonexistent
## 2992 telephone may wed 137 2 999 0 nonexistent
## 2993 telephone may wed 282 1 999 0 nonexistent
## 2994 telephone may wed 126 3 999 0 nonexistent
## 2995 telephone may wed 554 1 999 0 nonexistent
## 2996 telephone may wed 21 11 999 0 nonexistent
## 2997 telephone may wed 246 4 999 0 nonexistent
## 2998 telephone may wed 141 2 999 0 nonexistent
## 2999 telephone may wed 427 1 999 0 nonexistent
## 3000 telephone may wed 97 5 999 0 nonexistent
## 3001 telephone may wed 402 1 999 0 nonexistent
## 3002 telephone may wed 252 2 999 0 nonexistent
## 3003 telephone may wed 360 2 999 0 nonexistent
## 3004 telephone may wed 852 2 999 0 nonexistent
## 3005 telephone may wed 241 2 999 0 nonexistent
## 3006 telephone may wed 133 4 999 0 nonexistent
## 3007 telephone may wed 98 2 999 0 nonexistent
## 3008 telephone may wed 574 2 999 0 nonexistent
## 3009 telephone may wed 274 2 999 0 nonexistent
## 3010 telephone may wed 154 2 999 0 nonexistent
## 3011 telephone may wed 122 4 999 0 nonexistent
## 3012 telephone may wed 166 4 999 0 nonexistent
## 3013 telephone may wed 167 3 999 0 nonexistent
## 3014 telephone may wed 91 7 999 0 nonexistent
## 3015 telephone may wed 133 4 999 0 nonexistent
## 3016 telephone may wed 594 2 999 0 nonexistent
## 3017 telephone may wed 86 2 999 0 nonexistent
## 3018 telephone may wed 166 3 999 0 nonexistent
## 3019 telephone may wed 302 10 999 0 nonexistent
## 3020 telephone may wed 303 4 999 0 nonexistent
## 3021 telephone may wed 636 6 999 0 nonexistent
## 3022 telephone may wed 341 5 999 0 nonexistent
## 3023 telephone may wed 483 3 999 0 nonexistent
## 3024 telephone may wed 234 2 999 0 nonexistent
## 3025 telephone may wed 211 3 999 0 nonexistent
## 3026 telephone may wed 738 2 999 0 nonexistent
## 3027 telephone may wed 482 2 999 0 nonexistent
## 3028 telephone may wed 238 2 999 0 nonexistent
## 3029 telephone may wed 370 2 999 0 nonexistent
## 3030 telephone may wed 76 2 999 0 nonexistent
## 3031 telephone may wed 225 2 999 0 nonexistent
## 3032 telephone may wed 256 2 999 0 nonexistent
## 3033 telephone may wed 567 3 999 0 nonexistent
## 3034 telephone may wed 147 3 999 0 nonexistent
## 3035 telephone may wed 135 2 999 0 nonexistent
## 3036 telephone may wed 582 2 999 0 nonexistent
## 3037 telephone may wed 270 2 999 0 nonexistent
## 3038 telephone may wed 52 4 999 0 nonexistent
## 3039 telephone may wed 260 2 999 0 nonexistent
## 3040 telephone may wed 254 2 999 0 nonexistent
## 3041 telephone may wed 1118 2 999 0 nonexistent
## 3042 telephone may wed 76 9 999 0 nonexistent
## 3043 telephone may wed 79 3 999 0 nonexistent
## 3044 telephone may wed 837 2 999 0 nonexistent
## 3045 telephone may wed 208 5 999 0 nonexistent
## 3046 telephone may wed 245 7 999 0 nonexistent
## 3047 telephone may wed 187 4 999 0 nonexistent
## 3048 telephone may wed 1423 3 999 0 nonexistent
## 3049 telephone may wed 271 2 999 0 nonexistent
## 3050 telephone may wed 166 5 999 0 nonexistent
## 3051 telephone may wed 256 4 999 0 nonexistent
## 3052 telephone may wed 173 7 999 0 nonexistent
## 3053 telephone may wed 367 3 999 0 nonexistent
## 3054 telephone may wed 227 4 999 0 nonexistent
## 3055 telephone may wed 276 4 999 0 nonexistent
## 3056 telephone may wed 349 2 999 0 nonexistent
## 3057 telephone may wed 856 2 999 0 nonexistent
## 3058 telephone may wed 278 2 999 0 nonexistent
## 3059 telephone may wed 143 3 999 0 nonexistent
## 3060 telephone may wed 249 2 999 0 nonexistent
## 3061 telephone may wed 37 3 999 0 nonexistent
## 3062 telephone may wed 260 3 999 0 nonexistent
## 3063 telephone may wed 323 7 999 0 nonexistent
## 3064 telephone may wed 187 3 999 0 nonexistent
## 3065 telephone may wed 364 3 999 0 nonexistent
## 3066 telephone may wed 211 2 999 0 nonexistent
## 3067 telephone may wed 266 2 999 0 nonexistent
## 3068 telephone may wed 806 2 999 0 nonexistent
## 3069 telephone may wed 159 2 999 0 nonexistent
## 3070 telephone may wed 318 2 999 0 nonexistent
## 3071 telephone may wed 104 3 999 0 nonexistent
## 3072 telephone may wed 747 3 999 0 nonexistent
## 3073 telephone may thu 95 4 999 0 nonexistent
## 3074 telephone may thu 176 2 999 0 nonexistent
## 3075 telephone may thu 179 2 999 0 nonexistent
## 3076 telephone may thu 319 5 999 0 nonexistent
## 3077 telephone may thu 114 2 999 0 nonexistent
## 3078 telephone may thu 170 5 999 0 nonexistent
## 3079 telephone may thu 311 5 999 0 nonexistent
## 3080 telephone may thu 362 3 999 0 nonexistent
## 3081 telephone may thu 86 4 999 0 nonexistent
## 3082 telephone may thu 90 2 999 0 nonexistent
## 3083 telephone may thu 44 3 999 0 nonexistent
## 3084 telephone may thu 1013 3 999 0 nonexistent
## 3085 telephone may thu 76 7 999 0 nonexistent
## 3086 telephone may thu 90 3 999 0 nonexistent
## 3087 telephone may thu 155 6 999 0 nonexistent
## 3088 telephone may thu 468 5 999 0 nonexistent
## 3089 telephone may thu 226 2 999 0 nonexistent
## 3090 telephone may thu 349 2 999 0 nonexistent
## 3091 telephone may thu 646 3 999 0 nonexistent
## 3092 telephone may thu 148 3 999 0 nonexistent
## 3093 telephone may thu 517 3 999 0 nonexistent
## 3094 telephone may thu 243 1 999 0 nonexistent
## 3095 telephone may thu 391 2 999 0 nonexistent
## 3096 telephone may thu 204 1 999 0 nonexistent
## 3097 telephone may thu 236 4 999 0 nonexistent
## 3098 telephone may thu 112 1 999 0 nonexistent
## 3099 telephone may thu 125 4 999 0 nonexistent
## 3100 telephone may thu 360 1 999 0 nonexistent
## 3101 telephone may thu 312 6 999 0 nonexistent
## 3102 telephone may thu 366 1 999 0 nonexistent
## 3103 telephone may thu 70 1 999 0 nonexistent
## 3104 telephone may thu 230 1 999 0 nonexistent
## 3105 telephone may thu 135 1 999 0 nonexistent
## 3106 telephone may thu 12 3 999 0 nonexistent
## 3107 telephone may thu 65 1 999 0 nonexistent
## 3108 telephone may thu 420 1 999 0 nonexistent
## 3109 telephone may thu 259 1 999 0 nonexistent
## 3110 telephone may thu 192 1 999 0 nonexistent
## 3111 telephone may thu 189 1 999 0 nonexistent
## 3112 telephone may thu 263 1 999 0 nonexistent
## 3113 telephone may thu 415 7 999 0 nonexistent
## 3114 telephone may thu 746 1 999 0 nonexistent
## 3115 telephone may thu 260 1 999 0 nonexistent
## 3116 telephone may thu 71 1 999 0 nonexistent
## 3117 telephone may thu 735 1 999 0 nonexistent
## 3118 telephone may thu 183 5 999 0 nonexistent
## 3119 telephone may thu 75 1 999 0 nonexistent
## 3120 telephone may thu 87 1 999 0 nonexistent
## 3121 telephone may thu 62 1 999 0 nonexistent
## 3122 telephone may thu 139 2 999 0 nonexistent
## 3123 telephone may thu 150 1 999 0 nonexistent
## 3124 telephone may thu 244 1 999 0 nonexistent
## 3125 telephone may thu 367 2 999 0 nonexistent
## 3126 telephone may thu 325 1 999 0 nonexistent
## 3127 telephone may thu 183 1 999 0 nonexistent
## 3128 telephone may thu 552 11 999 0 nonexistent
## 3129 telephone may thu 121 1 999 0 nonexistent
## 3130 telephone may thu 27 1 999 0 nonexistent
## 3131 telephone may thu 157 1 999 0 nonexistent
## 3132 telephone may thu 203 1 999 0 nonexistent
## 3133 telephone may thu 104 1 999 0 nonexistent
## 3134 telephone may thu 153 1 999 0 nonexistent
## 3135 telephone may thu 182 2 999 0 nonexistent
## 3136 telephone may thu 55 1 999 0 nonexistent
## 3137 telephone may thu 644 2 999 0 nonexistent
## 3138 telephone may thu 305 1 999 0 nonexistent
## 3139 telephone may thu 140 1 999 0 nonexistent
## 3140 telephone may thu 180 2 999 0 nonexistent
## 3141 telephone may thu 173 1 999 0 nonexistent
## 3142 telephone may thu 374 1 999 0 nonexistent
## 3143 telephone may thu 240 1 999 0 nonexistent
## 3144 telephone may thu 558 6 999 0 nonexistent
## 3145 telephone may thu 1088 2 999 0 nonexistent
## 3146 telephone may thu 219 1 999 0 nonexistent
## 3147 telephone may thu 41 1 999 0 nonexistent
## 3148 telephone may thu 436 1 999 0 nonexistent
## 3149 telephone may thu 463 1 999 0 nonexistent
## 3150 telephone may thu 265 1 999 0 nonexistent
## 3151 telephone may thu 234 1 999 0 nonexistent
## 3152 telephone may thu 113 1 999 0 nonexistent
## 3153 telephone may thu 200 1 999 0 nonexistent
## 3154 telephone may thu 158 1 999 0 nonexistent
## 3155 telephone may thu 34 1 999 0 nonexistent
## 3156 telephone may thu 160 1 999 0 nonexistent
## 3157 telephone may thu 504 3 999 0 nonexistent
## 3158 telephone may thu 206 1 999 0 nonexistent
## 3159 telephone may thu 36 1 999 0 nonexistent
## 3160 telephone may thu 139 2 999 0 nonexistent
## 3161 telephone may thu 303 1 999 0 nonexistent
## 3162 telephone may thu 109 1 999 0 nonexistent
## 3163 telephone may thu 90 1 999 0 nonexistent
## 3164 telephone may thu 134 1 999 0 nonexistent
## 3165 telephone may thu 257 1 999 0 nonexistent
## 3166 telephone may thu 241 2 999 0 nonexistent
## 3167 telephone may thu 94 1 999 0 nonexistent
## 3168 telephone may thu 171 10 999 0 nonexistent
## 3169 telephone may thu 178 1 999 0 nonexistent
## 3170 telephone may thu 285 2 999 0 nonexistent
## 3171 telephone may thu 326 4 999 0 nonexistent
## 3172 telephone may thu 451 2 999 0 nonexistent
## 3173 telephone may thu 347 1 999 0 nonexistent
## 3174 telephone may thu 116 1 999 0 nonexistent
## 3175 telephone may thu 1074 1 999 0 nonexistent
## 3176 telephone may thu 191 1 999 0 nonexistent
## 3177 telephone may thu 77 1 999 0 nonexistent
## 3178 telephone may thu 1036 1 999 0 nonexistent
## 3179 telephone may thu 303 1 999 0 nonexistent
## 3180 telephone may thu 80 1 999 0 nonexistent
## 3181 telephone may thu 322 1 999 0 nonexistent
## 3182 telephone may thu 111 1 999 0 nonexistent
## 3183 telephone may thu 750 2 999 0 nonexistent
## 3184 telephone may thu 695 1 999 0 nonexistent
## 3185 telephone may thu 435 1 999 0 nonexistent
## 3186 telephone may thu 397 1 999 0 nonexistent
## 3187 telephone may thu 95 3 999 0 nonexistent
## 3188 telephone may thu 208 2 999 0 nonexistent
## 3189 telephone may thu 163 1 999 0 nonexistent
## 3190 telephone may thu 168 5 999 0 nonexistent
## 3191 telephone may thu 161 3 999 0 nonexistent
## 3192 telephone may thu 1000 1 999 0 nonexistent
## 3193 telephone may thu 112 1 999 0 nonexistent
## 3194 telephone may thu 599 2 999 0 nonexistent
## 3195 telephone may thu 30 1 999 0 nonexistent
## 3196 telephone may thu 165 1 999 0 nonexistent
## 3197 telephone may thu 55 1 999 0 nonexistent
## 3198 telephone may thu 231 1 999 0 nonexistent
## 3199 telephone may thu 191 1 999 0 nonexistent
## 3200 telephone may thu 127 1 999 0 nonexistent
## 3201 telephone may thu 75 1 999 0 nonexistent
## 3202 telephone may thu 106 1 999 0 nonexistent
## 3203 telephone may thu 202 3 999 0 nonexistent
## 3204 telephone may thu 1257 3 999 0 nonexistent
## 3205 telephone may thu 221 1 999 0 nonexistent
## 3206 telephone may thu 285 1 999 0 nonexistent
## 3207 telephone may thu 106 1 999 0 nonexistent
## 3208 telephone may thu 93 1 999 0 nonexistent
## 3209 telephone may thu 71 2 999 0 nonexistent
## 3210 telephone may thu 290 3 999 0 nonexistent
## 3211 telephone may thu 1165 1 999 0 nonexistent
## 3212 telephone may thu 164 1 999 0 nonexistent
## 3213 telephone may thu 207 1 999 0 nonexistent
## 3214 telephone may thu 295 2 999 0 nonexistent
## 3215 telephone may thu 187 1 999 0 nonexistent
## 3216 telephone may thu 106 1 999 0 nonexistent
## 3217 telephone may thu 219 1 999 0 nonexistent
## 3218 telephone may thu 236 1 999 0 nonexistent
## 3219 telephone may thu 139 1 999 0 nonexistent
## 3220 telephone may thu 651 23 999 0 nonexistent
## 3221 telephone may thu 124 1 999 0 nonexistent
## 3222 telephone may thu 145 4 999 0 nonexistent
## 3223 telephone may thu 120 1 999 0 nonexistent
## 3224 telephone may thu 734 1 999 0 nonexistent
## 3225 telephone may thu 291 2 999 0 nonexistent
## 3226 telephone may thu 101 1 999 0 nonexistent
## 3227 telephone may thu 417 3 999 0 nonexistent
## 3228 telephone may thu 191 4 999 0 nonexistent
## 3229 telephone may thu 131 1 999 0 nonexistent
## 3230 telephone may thu 97 1 999 0 nonexistent
## 3231 telephone may thu 221 2 999 0 nonexistent
## 3232 telephone may thu 229 1 999 0 nonexistent
## 3233 telephone may thu 104 1 999 0 nonexistent
## 3234 telephone may thu 122 1 999 0 nonexistent
## 3235 telephone may thu 72 1 999 0 nonexistent
## 3236 telephone may thu 186 1 999 0 nonexistent
## 3237 telephone may thu 23 1 999 0 nonexistent
## 3238 telephone may thu 402 1 999 0 nonexistent
## 3239 telephone may thu 37 1 999 0 nonexistent
## 3240 telephone may thu 68 5 999 0 nonexistent
## 3241 telephone may thu 182 1 999 0 nonexistent
## 3242 telephone may thu 587 1 999 0 nonexistent
## 3243 telephone may thu 348 1 999 0 nonexistent
## 3244 telephone may thu 51 2 999 0 nonexistent
## 3245 telephone may thu 176 13 999 0 nonexistent
## 3246 telephone may thu 144 2 999 0 nonexistent
## 3247 telephone may thu 297 3 999 0 nonexistent
## 3248 telephone may thu 203 2 999 0 nonexistent
## 3249 telephone may thu 57 2 999 0 nonexistent
## 3250 telephone may thu 334 3 999 0 nonexistent
## 3251 telephone may thu 217 2 999 0 nonexistent
## 3252 telephone may thu 74 1 999 0 nonexistent
## 3253 telephone may thu 464 2 999 0 nonexistent
## 3254 telephone may thu 738 7 999 0 nonexistent
## 3255 telephone may thu 126 1 999 0 nonexistent
## 3256 telephone may thu 452 2 999 0 nonexistent
## 3257 telephone may thu 203 4 999 0 nonexistent
## 3258 telephone may thu 230 7 999 0 nonexistent
## 3259 telephone may thu 187 4 999 0 nonexistent
## 3260 telephone may thu 920 2 999 0 nonexistent
## 3261 telephone may thu 136 1 999 0 nonexistent
## 3262 telephone may thu 1244 3 999 0 nonexistent
## 3263 telephone may thu 80 1 999 0 nonexistent
## 3264 telephone may thu 431 1 999 0 nonexistent
## 3265 telephone may thu 500 1 999 0 nonexistent
## 3266 telephone may thu 301 1 999 0 nonexistent
## 3267 telephone may thu 115 3 999 0 nonexistent
## 3268 telephone may thu 30 1 999 0 nonexistent
## 3269 telephone may thu 133 1 999 0 nonexistent
## 3270 telephone may thu 270 1 999 0 nonexistent
## 3271 telephone may thu 218 2 999 0 nonexistent
## 3272 telephone may thu 355 1 999 0 nonexistent
## 3273 telephone may thu 215 2 999 0 nonexistent
## 3274 telephone may thu 299 1 999 0 nonexistent
## 3275 telephone may thu 160 1 999 0 nonexistent
## 3276 telephone may thu 172 4 999 0 nonexistent
## 3277 telephone may thu 49 1 999 0 nonexistent
## 3278 telephone may thu 117 1 999 0 nonexistent
## 3279 telephone may thu 155 1 999 0 nonexistent
## 3280 telephone may thu 477 1 999 0 nonexistent
## 3281 telephone may thu 99 1 999 0 nonexistent
## 3282 telephone may thu 188 1 999 0 nonexistent
## 3283 telephone may thu 200 3 999 0 nonexistent
## 3284 telephone may thu 187 2 999 0 nonexistent
## 3285 telephone may thu 236 3 999 0 nonexistent
## 3286 telephone may thu 50 7 999 0 nonexistent
## 3287 telephone may thu 104 2 999 0 nonexistent
## 3288 telephone may thu 51 10 999 0 nonexistent
## 3289 telephone may thu 51 5 999 0 nonexistent
## 3290 telephone may thu 140 3 999 0 nonexistent
## 3291 telephone may thu 221 4 999 0 nonexistent
## 3292 telephone may thu 98 2 999 0 nonexistent
## 3293 telephone may thu 253 2 999 0 nonexistent
## 3294 telephone may thu 71 1 999 0 nonexistent
## 3295 telephone may thu 127 2 999 0 nonexistent
## 3296 telephone may thu 74 2 999 0 nonexistent
## 3297 telephone may thu 126 4 999 0 nonexistent
## 3298 telephone may thu 122 1 999 0 nonexistent
## 3299 telephone may thu 173 2 999 0 nonexistent
## 3300 telephone may thu 918 1 999 0 nonexistent
## 3301 telephone may thu 544 2 999 0 nonexistent
## 3302 telephone may thu 309 2 999 0 nonexistent
## 3303 telephone may thu 138 2 999 0 nonexistent
## 3304 telephone may thu 73 1 999 0 nonexistent
## 3305 telephone may thu 71 2 999 0 nonexistent
## 3306 telephone may thu 193 5 999 0 nonexistent
## 3307 telephone may thu 198 3 999 0 nonexistent
## 3308 telephone may thu 243 4 999 0 nonexistent
## 3309 telephone may thu 57 2 999 0 nonexistent
## 3310 telephone may thu 49 1 999 0 nonexistent
## 3311 telephone may thu 105 1 999 0 nonexistent
## 3312 telephone may thu 719 1 999 0 nonexistent
## 3313 telephone may thu 98 1 999 0 nonexistent
## 3314 telephone may thu 196 2 999 0 nonexistent
## 3315 telephone may thu 243 1 999 0 nonexistent
## 3316 telephone may thu 344 2 999 0 nonexistent
## 3317 telephone may thu 135 1 999 0 nonexistent
## 3318 telephone may thu 597 1 999 0 nonexistent
## 3319 telephone may thu 168 1 999 0 nonexistent
## 3320 telephone may thu 43 9 999 0 nonexistent
## 3321 telephone may thu 525 1 999 0 nonexistent
## 3322 telephone may thu 122 6 999 0 nonexistent
## 3323 telephone may thu 152 2 999 0 nonexistent
## 3324 telephone may thu 111 2 999 0 nonexistent
## 3325 telephone may thu 133 2 999 0 nonexistent
## 3326 telephone may thu 504 5 999 0 nonexistent
## 3327 telephone may thu 192 3 999 0 nonexistent
## 3328 telephone may thu 164 2 999 0 nonexistent
## 3329 telephone may thu 51 1 999 0 nonexistent
## 3330 telephone may thu 178 1 999 0 nonexistent
## 3331 telephone may thu 99 2 999 0 nonexistent
## 3332 telephone may thu 224 1 999 0 nonexistent
## 3333 telephone may thu 236 3 999 0 nonexistent
## 3334 telephone may thu 815 1 999 0 nonexistent
## 3335 telephone may thu 282 1 999 0 nonexistent
## 3336 telephone may thu 134 1 999 0 nonexistent
## 3337 telephone may thu 318 1 999 0 nonexistent
## 3338 telephone may thu 118 1 999 0 nonexistent
## 3339 telephone may thu 911 2 999 0 nonexistent
## 3340 telephone may thu 238 1 999 0 nonexistent
## 3341 telephone may thu 225 1 999 0 nonexistent
## 3342 telephone may thu 490 3 999 0 nonexistent
## 3343 telephone may thu 89 1 999 0 nonexistent
## 3344 telephone may thu 199 1 999 0 nonexistent
## 3345 telephone may thu 644 1 999 0 nonexistent
## 3346 telephone may thu 286 2 999 0 nonexistent
## 3347 telephone may thu 76 3 999 0 nonexistent
## 3348 telephone may thu 176 2 999 0 nonexistent
## 3349 telephone may thu 422 3 999 0 nonexistent
## 3350 telephone may thu 22 3 999 0 nonexistent
## 3351 telephone may thu 71 4 999 0 nonexistent
## 3352 telephone may thu 465 3 999 0 nonexistent
## 3353 telephone may thu 83 3 999 0 nonexistent
## 3354 telephone may thu 973 2 999 0 nonexistent
## 3355 telephone may thu 56 1 999 0 nonexistent
## 3356 telephone may thu 190 2 999 0 nonexistent
## 3357 telephone may thu 323 1 999 0 nonexistent
## 3358 telephone may thu 113 1 999 0 nonexistent
## 3359 telephone may thu 228 1 999 0 nonexistent
## 3360 telephone may thu 110 1 999 0 nonexistent
## 3361 telephone may thu 84 14 999 0 nonexistent
## 3362 telephone may thu 59 1 999 0 nonexistent
## 3363 telephone may thu 294 2 999 0 nonexistent
## 3364 telephone may thu 21 5 999 0 nonexistent
## 3365 telephone may thu 210 3 999 0 nonexistent
## 3366 telephone may thu 144 1 999 0 nonexistent
## 3367 telephone may thu 251 1 999 0 nonexistent
## 3368 telephone may thu 444 1 999 0 nonexistent
## 3369 telephone may thu 237 2 999 0 nonexistent
## 3370 telephone may thu 399 1 999 0 nonexistent
## 3371 telephone may thu 132 22 999 0 nonexistent
## 3372 telephone may thu 334 10 999 0 nonexistent
## 3373 telephone may thu 387 4 999 0 nonexistent
## 3374 telephone may thu 344 2 999 0 nonexistent
## 3375 telephone may thu 279 9 999 0 nonexistent
## 3376 telephone may thu 484 8 999 0 nonexistent
## 3377 telephone may thu 95 1 999 0 nonexistent
## 3378 telephone may thu 461 1 999 0 nonexistent
## 3379 telephone may thu 30 2 999 0 nonexistent
## 3380 telephone may thu 561 1 999 0 nonexistent
## 3381 telephone may thu 468 2 999 0 nonexistent
## 3382 telephone may thu 920 2 999 0 nonexistent
## 3383 telephone may thu 388 2 999 0 nonexistent
## 3384 telephone may thu 100 4 999 0 nonexistent
## 3385 telephone may thu 1224 2 999 0 nonexistent
## 3386 telephone may thu 589 1 999 0 nonexistent
## 3387 telephone may thu 160 1 999 0 nonexistent
## 3388 telephone may thu 438 2 999 0 nonexistent
## 3389 telephone may thu 69 1 999 0 nonexistent
## 3390 telephone may thu 964 2 999 0 nonexistent
## 3391 telephone may thu 384 4 999 0 nonexistent
## 3392 telephone may thu 103 1 999 0 nonexistent
## 3393 telephone may thu 52 1 999 0 nonexistent
## 3394 telephone may thu 205 2 999 0 nonexistent
## 3395 telephone may thu 486 2 999 0 nonexistent
## 3396 telephone may thu 1156 2 999 0 nonexistent
## 3397 telephone may thu 73 2 999 0 nonexistent
## 3398 telephone may thu 523 5 999 0 nonexistent
## 3399 telephone may thu 157 5 999 0 nonexistent
## 3400 telephone may thu 186 5 999 0 nonexistent
## 3401 telephone may thu 73 5 999 0 nonexistent
## 3402 telephone may thu 544 3 999 0 nonexistent
## 3403 telephone may thu 194 2 999 0 nonexistent
## 3404 telephone may thu 420 4 999 0 nonexistent
## 3405 telephone may thu 584 2 999 0 nonexistent
## 3406 telephone may thu 192 3 999 0 nonexistent
## 3407 telephone may thu 155 2 999 0 nonexistent
## 3408 telephone may thu 1231 2 999 0 nonexistent
## 3409 telephone may thu 619 4 999 0 nonexistent
## 3410 telephone may thu 298 3 999 0 nonexistent
## 3411 telephone may thu 515 2 999 0 nonexistent
## 3412 telephone may thu 21 6 999 0 nonexistent
## 3413 telephone may thu 404 7 999 0 nonexistent
## 3414 telephone may thu 241 23 999 0 nonexistent
## 3415 telephone may thu 302 1 999 0 nonexistent
## 3416 telephone may thu 440 2 999 0 nonexistent
## 3417 telephone may thu 172 2 999 0 nonexistent
## 3418 telephone may thu 319 7 999 0 nonexistent
## 3419 telephone may thu 1051 3 999 0 nonexistent
## 3420 telephone may thu 276 3 999 0 nonexistent
## 3421 telephone may thu 213 4 999 0 nonexistent
## 3422 telephone may thu 194 2 999 0 nonexistent
## 3423 telephone may thu 276 4 999 0 nonexistent
## 3424 telephone may thu 19 8 999 0 nonexistent
## 3425 telephone may thu 226 2 999 0 nonexistent
## 3426 telephone may thu 546 8 999 0 nonexistent
## 3427 telephone may thu 419 2 999 0 nonexistent
## 3428 telephone may thu 1867 6 999 0 nonexistent
## 3429 telephone may thu 156 5 999 0 nonexistent
## 3430 telephone may thu 184 2 999 0 nonexistent
## 3431 telephone may thu 548 1 999 0 nonexistent
## 3432 telephone may thu 760 2 999 0 nonexistent
## 3433 telephone may thu 244 2 999 0 nonexistent
## 3434 telephone may thu 328 4 999 0 nonexistent
## 3435 telephone may thu 171 2 999 0 nonexistent
## 3436 telephone may thu 284 5 999 0 nonexistent
## 3437 telephone may thu 1263 2 999 0 nonexistent
## 3438 telephone may thu 92 3 999 0 nonexistent
## 3439 telephone may thu 17 25 999 0 nonexistent
## 3440 telephone may thu 422 2 999 0 nonexistent
## 3441 telephone may thu 17 10 999 0 nonexistent
## 3442 telephone may thu 301 4 999 0 nonexistent
## 3443 telephone may thu 267 5 999 0 nonexistent
## 3444 telephone may thu 475 2 999 0 nonexistent
## 3445 telephone may thu 770 2 999 0 nonexistent
## 3446 telephone may thu 487 4 999 0 nonexistent
## 3447 telephone may thu 126 2 999 0 nonexistent
## 3448 telephone may thu 114 1 999 0 nonexistent
## 3449 telephone may thu 136 3 999 0 nonexistent
## 3450 telephone may thu 196 2 999 0 nonexistent
## 3451 telephone may thu 129 1 999 0 nonexistent
## 3452 telephone may thu 257 7 999 0 nonexistent
## 3453 telephone may thu 365 1 999 0 nonexistent
## 3454 telephone may thu 697 3 999 0 nonexistent
## 3455 telephone may thu 192 3 999 0 nonexistent
## 3456 telephone may thu 244 2 999 0 nonexistent
## 3457 telephone may thu 118 4 999 0 nonexistent
## 3458 telephone may thu 160 1 999 0 nonexistent
## 3459 telephone may thu 101 3 999 0 nonexistent
## 3460 telephone may thu 56 13 999 0 nonexistent
## 3461 telephone may thu 430 2 999 0 nonexistent
## 3462 telephone may thu 242 6 999 0 nonexistent
## 3463 telephone may thu 809 3 999 0 nonexistent
## 3464 telephone may thu 317 7 999 0 nonexistent
## 3465 telephone may thu 7 7 999 0 nonexistent
## 3466 telephone may thu 493 2 999 0 nonexistent
## 3467 telephone may thu 381 7 999 0 nonexistent
## 3468 telephone may thu 112 2 999 0 nonexistent
## 3469 telephone may thu 523 2 999 0 nonexistent
## 3470 telephone may thu 309 2 999 0 nonexistent
## 3471 telephone may thu 184 2 999 0 nonexistent
## 3472 telephone may thu 850 6 999 0 nonexistent
## 3473 telephone may thu 420 2 999 0 nonexistent
## 3474 telephone may thu 118 4 999 0 nonexistent
## 3475 telephone may thu 71 3 999 0 nonexistent
## 3476 telephone may thu 314 7 999 0 nonexistent
## 3477 telephone may thu 196 4 999 0 nonexistent
## 3478 telephone may thu 151 2 999 0 nonexistent
## 3479 telephone may thu 95 6 999 0 nonexistent
## 3480 telephone may thu 516 9 999 0 nonexistent
## 3481 telephone may thu 855 4 999 0 nonexistent
## 3482 telephone may thu 78 4 999 0 nonexistent
## 3483 telephone may thu 875 5 999 0 nonexistent
## 3484 telephone may thu 124 2 999 0 nonexistent
## 3485 telephone may thu 24 16 999 0 nonexistent
## 3486 telephone may thu 190 6 999 0 nonexistent
## 3487 telephone may thu 53 3 999 0 nonexistent
## 3488 telephone may thu 278 4 999 0 nonexistent
## 3489 telephone may thu 284 2 999 0 nonexistent
## 3490 telephone may thu 262 4 999 0 nonexistent
## 3491 telephone may thu 391 3 999 0 nonexistent
## 3492 telephone may thu 263 4 999 0 nonexistent
## 3493 telephone may thu 214 4 999 0 nonexistent
## 3494 telephone may thu 88 3 999 0 nonexistent
## 3495 telephone may thu 255 12 999 0 nonexistent
## 3496 telephone may thu 202 4 999 0 nonexistent
## 3497 telephone may thu 438 5 999 0 nonexistent
## 3498 telephone may thu 311 3 999 0 nonexistent
## 3499 telephone may thu 426 6 999 0 nonexistent
## 3500 telephone may thu 302 8 999 0 nonexistent
## 3501 telephone may thu 213 2 999 0 nonexistent
## 3502 telephone may thu 214 4 999 0 nonexistent
## 3503 telephone may thu 90 3 999 0 nonexistent
## 3504 telephone may thu 448 4 999 0 nonexistent
## 3505 telephone may thu 70 6 999 0 nonexistent
## 3506 telephone may thu 347 4 999 0 nonexistent
## 3507 telephone may thu 892 4 999 0 nonexistent
## 3508 telephone may thu 320 3 999 0 nonexistent
## 3509 telephone may thu 175 2 999 0 nonexistent
## 3510 telephone may thu 222 11 999 0 nonexistent
## 3511 telephone may thu 98 2 999 0 nonexistent
## 3512 telephone may thu 734 5 999 0 nonexistent
## 3513 telephone may thu 177 3 999 0 nonexistent
## 3514 telephone may thu 65 7 999 0 nonexistent
## 3515 telephone may thu 543 12 999 0 nonexistent
## 3516 telephone may thu 374 5 999 0 nonexistent
## 3517 telephone may thu 241 2 999 0 nonexistent
## 3518 telephone may thu 137 2 999 0 nonexistent
## 3519 telephone may thu 178 2 999 0 nonexistent
## 3520 telephone may thu 297 1 999 0 nonexistent
## 3521 telephone may thu 491 2 999 0 nonexistent
## 3522 telephone may thu 377 4 999 0 nonexistent
## 3523 telephone may fri 84 2 999 0 nonexistent
## 3524 telephone may fri 122 2 999 0 nonexistent
## 3525 telephone may fri 135 3 999 0 nonexistent
## 3526 telephone may fri 246 2 999 0 nonexistent
## 3527 telephone may fri 95 3 999 0 nonexistent
## 3528 telephone may fri 248 3 999 0 nonexistent
## 3529 telephone may fri 336 2 999 0 nonexistent
## 3530 telephone may fri 28 4 999 0 nonexistent
## 3531 telephone may fri 371 2 999 0 nonexistent
## 3532 telephone may fri 329 3 999 0 nonexistent
## 3533 telephone may fri 597 17 999 0 nonexistent
## 3534 telephone may fri 247 1 999 0 nonexistent
## 3535 telephone may fri 343 1 999 0 nonexistent
## 3536 telephone may fri 266 6 999 0 nonexistent
## 3537 telephone may fri 137 1 999 0 nonexistent
## 3538 telephone may fri 159 1 999 0 nonexistent
## 3539 telephone may fri 206 4 999 0 nonexistent
## 3540 telephone may fri 69 15 999 0 nonexistent
## 3541 telephone may fri 228 1 999 0 nonexistent
## 3542 telephone may fri 515 1 999 0 nonexistent
## 3543 telephone may fri 144 1 999 0 nonexistent
## 3544 telephone may fri 29 1 999 0 nonexistent
## 3545 telephone may fri 512 1 999 0 nonexistent
## 3546 telephone may fri 813 1 999 0 nonexistent
## 3547 telephone may fri 247 1 999 0 nonexistent
## 3548 telephone may fri 601 1 999 0 nonexistent
## 3549 telephone may fri 73 1 999 0 nonexistent
## 3550 telephone may fri 144 4 999 0 nonexistent
## 3551 telephone may fri 230 3 999 0 nonexistent
## 3552 telephone may fri 456 1 999 0 nonexistent
## 3553 telephone may fri 75 1 999 0 nonexistent
## 3554 telephone may fri 225 1 999 0 nonexistent
## 3555 telephone may fri 387 1 999 0 nonexistent
## 3556 telephone may fri 286 3 999 0 nonexistent
## 3557 telephone may fri 286 1 999 0 nonexistent
## 3558 telephone may fri 448 2 999 0 nonexistent
## 3559 telephone may fri 223 3 999 0 nonexistent
## 3560 telephone may fri 136 1 999 0 nonexistent
## 3561 telephone may fri 93 1 999 0 nonexistent
## 3562 telephone may fri 212 1 999 0 nonexistent
## 3563 telephone may fri 178 1 999 0 nonexistent
## 3564 telephone may fri 111 1 999 0 nonexistent
## 3565 telephone may fri 803 1 999 0 nonexistent
## 3566 telephone may fri 150 1 999 0 nonexistent
## 3567 telephone may fri 844 1 999 0 nonexistent
## 3568 telephone may fri 297 1 999 0 nonexistent
## 3569 telephone may fri 529 4 999 0 nonexistent
## 3570 telephone may fri 137 1 999 0 nonexistent
## 3571 telephone may fri 676 1 999 0 nonexistent
## 3572 telephone may fri 656 2 999 0 nonexistent
## 3573 telephone may fri 249 1 999 0 nonexistent
## 3574 telephone may fri 88 6 999 0 nonexistent
## 3575 telephone may fri 1252 1 999 0 nonexistent
## 3576 telephone may fri 228 2 999 0 nonexistent
## 3577 telephone may fri 1143 3 999 0 nonexistent
## 3578 telephone may fri 283 1 999 0 nonexistent
## 3579 telephone may fri 118 2 999 0 nonexistent
## 3580 telephone may fri 104 1 999 0 nonexistent
## 3581 telephone may fri 103 1 999 0 nonexistent
## 3582 telephone may fri 213 1 999 0 nonexistent
## 3583 telephone may fri 132 1 999 0 nonexistent
## 3584 telephone may fri 122 1 999 0 nonexistent
## 3585 telephone may fri 130 4 999 0 nonexistent
## 3586 telephone may fri 627 1 999 0 nonexistent
## 3587 telephone may fri 207 1 999 0 nonexistent
## 3588 telephone may fri 114 2 999 0 nonexistent
## 3589 telephone may fri 216 1 999 0 nonexistent
## 3590 telephone may fri 250 1 999 0 nonexistent
## 3591 telephone may fri 91 1 999 0 nonexistent
## 3592 telephone may fri 159 1 999 0 nonexistent
## 3593 telephone may fri 147 1 999 0 nonexistent
## 3594 telephone may fri 86 1 999 0 nonexistent
## 3595 telephone may fri 731 4 999 0 nonexistent
## 3596 telephone may fri 37 1 999 0 nonexistent
## 3597 telephone may fri 46 1 999 0 nonexistent
## 3598 telephone may fri 356 2 999 0 nonexistent
## 3599 telephone may fri 248 1 999 0 nonexistent
## 3600 telephone may fri 242 7 999 0 nonexistent
## 3601 telephone may fri 134 3 999 0 nonexistent
## 3602 telephone may fri 274 2 999 0 nonexistent
## 3603 telephone may fri 355 2 999 0 nonexistent
## 3604 telephone may fri 149 1 999 0 nonexistent
## 3605 telephone may fri 346 1 999 0 nonexistent
## 3606 telephone may fri 370 1 999 0 nonexistent
## 3607 telephone may fri 261 1 999 0 nonexistent
## 3608 telephone may fri 63 1 999 0 nonexistent
## 3609 telephone may fri 688 1 999 0 nonexistent
## 3610 telephone may fri 84 1 999 0 nonexistent
## 3611 telephone may fri 125 1 999 0 nonexistent
## 3612 telephone may fri 167 1 999 0 nonexistent
## 3613 telephone may fri 25 1 999 0 nonexistent
## 3614 telephone may fri 244 1 999 0 nonexistent
## 3615 telephone may fri 140 1 999 0 nonexistent
## 3616 telephone may fri 165 1 999 0 nonexistent
## 3617 telephone may fri 122 1 999 0 nonexistent
## 3618 telephone may fri 130 2 999 0 nonexistent
## 3619 telephone may fri 345 1 999 0 nonexistent
## 3620 telephone may fri 42 2 999 0 nonexistent
## 3621 telephone may fri 277 5 999 0 nonexistent
## 3622 telephone may fri 145 1 999 0 nonexistent
## 3623 telephone may fri 214 1 999 0 nonexistent
## 3624 telephone may fri 140 1 999 0 nonexistent
## 3625 telephone may fri 140 1 999 0 nonexistent
## 3626 telephone may fri 132 1 999 0 nonexistent
## 3627 telephone may fri 117 1 999 0 nonexistent
## 3628 telephone may fri 96 2 999 0 nonexistent
## 3629 telephone may fri 803 1 999 0 nonexistent
## 3630 telephone may fri 225 4 999 0 nonexistent
## 3631 telephone may fri 260 1 999 0 nonexistent
## 3632 telephone may fri 754 1 999 0 nonexistent
## 3633 telephone may fri 211 2 999 0 nonexistent
## 3634 telephone may fri 192 1 999 0 nonexistent
## 3635 telephone may fri 203 1 999 0 nonexistent
## 3636 telephone may fri 76 3 999 0 nonexistent
## 3637 telephone may fri 24 1 999 0 nonexistent
## 3638 telephone may fri 171 2 999 0 nonexistent
## 3639 telephone may fri 136 1 999 0 nonexistent
## 3640 telephone may fri 42 8 999 0 nonexistent
## 3641 telephone may fri 343 1 999 0 nonexistent
## 3642 telephone may fri 111 1 999 0 nonexistent
## 3643 telephone may fri 77 1 999 0 nonexistent
## 3644 telephone may fri 268 6 999 0 nonexistent
## 3645 telephone may fri 217 2 999 0 nonexistent
## 3646 telephone may fri 360 1 999 0 nonexistent
## 3647 telephone may fri 241 1 999 0 nonexistent
## 3648 telephone may fri 47 1 999 0 nonexistent
## 3649 telephone may fri 196 1 999 0 nonexistent
## 3650 telephone may fri 601 1 999 0 nonexistent
## 3651 telephone may fri 178 2 999 0 nonexistent
## 3652 telephone may fri 306 1 999 0 nonexistent
## 3653 telephone may fri 362 22 999 0 nonexistent
## 3654 telephone may fri 410 1 999 0 nonexistent
## 3655 telephone may fri 265 1 999 0 nonexistent
## 3656 telephone may fri 108 2 999 0 nonexistent
## 3657 telephone may fri 172 4 999 0 nonexistent
## 3658 telephone may fri 184 2 999 0 nonexistent
## 3659 telephone may fri 424 1 999 0 nonexistent
## 3660 telephone may fri 359 1 999 0 nonexistent
## 3661 telephone may fri 123 1 999 0 nonexistent
## 3662 telephone may fri 787 1 999 0 nonexistent
## 3663 telephone may fri 169 1 999 0 nonexistent
## 3664 telephone may fri 241 1 999 0 nonexistent
## 3665 telephone may fri 141 1 999 0 nonexistent
## 3666 telephone may fri 22 4 999 0 nonexistent
## 3667 telephone may fri 326 1 999 0 nonexistent
## 3668 telephone may fri 317 1 999 0 nonexistent
## 3669 telephone may fri 196 3 999 0 nonexistent
## 3670 telephone may fri 270 1 999 0 nonexistent
## 3671 telephone may fri 107 1 999 0 nonexistent
## 3672 telephone may fri 679 17 999 0 nonexistent
## 3673 telephone may fri 184 1 999 0 nonexistent
## 3674 telephone may fri 576 1 999 0 nonexistent
## 3675 telephone may fri 102 1 999 0 nonexistent
## 3676 telephone may fri 161 3 999 0 nonexistent
## 3677 telephone may fri 206 2 999 0 nonexistent
## 3678 telephone may fri 619 2 999 0 nonexistent
## 3679 telephone may fri 33 1 999 0 nonexistent
## 3680 telephone may fri 27 2 999 0 nonexistent
## 3681 telephone may fri 230 1 999 0 nonexistent
## 3682 telephone may fri 38 2 999 0 nonexistent
## 3683 telephone may fri 322 2 999 0 nonexistent
## 3684 telephone may fri 187 1 999 0 nonexistent
## 3685 telephone may fri 124 1 999 0 nonexistent
## 3686 telephone may fri 1230 3 999 0 nonexistent
## 3687 telephone may fri 107 2 999 0 nonexistent
## 3688 telephone may fri 379 1 999 0 nonexistent
## 3689 telephone may fri 95 1 999 0 nonexistent
## 3690 telephone may fri 42 3 999 0 nonexistent
## 3691 telephone may fri 197 1 999 0 nonexistent
## 3692 telephone may fri 320 2 999 0 nonexistent
## 3693 telephone may fri 223 1 999 0 nonexistent
## 3694 telephone may fri 912 1 999 0 nonexistent
## 3695 telephone may fri 230 1 999 0 nonexistent
## 3696 telephone may fri 489 2 999 0 nonexistent
## 3697 telephone may fri 98 1 999 0 nonexistent
## 3698 telephone may fri 894 1 999 0 nonexistent
## 3699 telephone may fri 38 3 999 0 nonexistent
## 3700 telephone may fri 323 4 999 0 nonexistent
## 3701 telephone may fri 335 1 999 0 nonexistent
## 3702 telephone may fri 161 1 999 0 nonexistent
## 3703 telephone may fri 410 3 999 0 nonexistent
## 3704 telephone may fri 280 1 999 0 nonexistent
## 3705 telephone may fri 374 2 999 0 nonexistent
## 3706 telephone may fri 193 8 999 0 nonexistent
## 3707 telephone may fri 166 2 999 0 nonexistent
## 3708 telephone may fri 865 1 999 0 nonexistent
## 3709 telephone may fri 258 2 999 0 nonexistent
## 3710 telephone may fri 215 1 999 0 nonexistent
## 3711 telephone may fri 136 2 999 0 nonexistent
## 3712 telephone may fri 299 2 999 0 nonexistent
## 3713 telephone may fri 381 2 999 0 nonexistent
## 3714 telephone may fri 197 1 999 0 nonexistent
## 3715 telephone may fri 412 1 999 0 nonexistent
## 3716 telephone may fri 376 2 999 0 nonexistent
## 3717 telephone may fri 393 2 999 0 nonexistent
## 3718 telephone may fri 56 3 999 0 nonexistent
## 3719 telephone may fri 112 4 999 0 nonexistent
## 3720 telephone may fri 155 3 999 0 nonexistent
## 3721 telephone may fri 703 4 999 0 nonexistent
## 3722 telephone may fri 141 2 999 0 nonexistent
## 3723 telephone may fri 475 2 999 0 nonexistent
## 3724 telephone may fri 121 2 999 0 nonexistent
## 3725 telephone may fri 471 2 999 0 nonexistent
## 3726 telephone may fri 121 1 999 0 nonexistent
## 3727 telephone may fri 177 4 999 0 nonexistent
## 3728 telephone may fri 344 2 999 0 nonexistent
## 3729 telephone may fri 229 1 999 0 nonexistent
## 3730 telephone may fri 404 1 999 0 nonexistent
## 3731 telephone may fri 287 4 999 0 nonexistent
## 3732 telephone may fri 329 1 999 0 nonexistent
## 3733 telephone may fri 433 1 999 0 nonexistent
## 3734 telephone may fri 216 1 999 0 nonexistent
## 3735 telephone may fri 1340 1 999 0 nonexistent
## 3736 telephone may fri 323 2 999 0 nonexistent
## 3737 telephone may fri 132 11 999 0 nonexistent
## 3738 telephone may fri 199 4 999 0 nonexistent
## 3739 telephone may fri 221 2 999 0 nonexistent
## 3740 telephone may fri 200 2 999 0 nonexistent
## 3741 telephone may fri 897 1 999 0 nonexistent
## 3742 telephone may fri 80 2 999 0 nonexistent
## 3743 telephone may fri 123 3 999 0 nonexistent
## 3744 telephone may fri 90 2 999 0 nonexistent
## 3745 telephone may fri 461 2 999 0 nonexistent
## 3746 telephone may fri 213 14 999 0 nonexistent
## 3747 telephone may fri 193 11 999 0 nonexistent
## 3748 telephone may fri 428 1 999 0 nonexistent
## 3749 telephone may fri 291 1 999 0 nonexistent
## 3750 telephone may fri 136 1 999 0 nonexistent
## 3751 telephone may fri 124 1 999 0 nonexistent
## 3752 telephone may fri 214 4 999 0 nonexistent
## 3753 telephone may fri 239 3 999 0 nonexistent
## 3754 telephone may fri 718 1 999 0 nonexistent
## 3755 telephone may fri 323 1 999 0 nonexistent
## 3756 telephone may fri 94 1 999 0 nonexistent
## 3757 telephone may fri 74 1 999 0 nonexistent
## 3758 telephone may fri 107 1 999 0 nonexistent
## 3759 telephone may fri 97 3 999 0 nonexistent
## 3760 telephone may fri 51 1 999 0 nonexistent
## 3761 telephone may fri 109 1 999 0 nonexistent
## 3762 telephone may fri 225 1 999 0 nonexistent
## 3763 telephone may fri 378 1 999 0 nonexistent
## 3764 telephone may fri 217 1 999 0 nonexistent
## 3765 telephone may fri 136 1 999 0 nonexistent
## 3766 telephone may fri 1161 3 999 0 nonexistent
## 3767 telephone may fri 467 1 999 0 nonexistent
## 3768 telephone may fri 386 1 999 0 nonexistent
## 3769 telephone may fri 290 1 999 0 nonexistent
## 3770 telephone may fri 168 2 999 0 nonexistent
## 3771 telephone may fri 764 7 999 0 nonexistent
## 3772 telephone may fri 194 3 999 0 nonexistent
## 3773 telephone may fri 16 23 999 0 nonexistent
## 3774 telephone may fri 148 18 999 0 nonexistent
## 3775 telephone may fri 2680 1 999 0 nonexistent
## 3776 telephone may fri 242 3 999 0 nonexistent
## 3777 telephone may fri 269 2 999 0 nonexistent
## 3778 telephone may fri 208 2 999 0 nonexistent
## 3779 telephone may fri 370 2 999 0 nonexistent
## 3780 telephone may fri 274 8 999 0 nonexistent
## 3781 telephone may fri 326 1 999 0 nonexistent
## 3782 telephone may fri 337 2 999 0 nonexistent
## 3783 telephone may fri 104 1 999 0 nonexistent
## 3784 telephone may fri 788 2 999 0 nonexistent
## 3785 telephone may fri 353 4 999 0 nonexistent
## 3786 telephone may fri 14 15 999 0 nonexistent
## 3787 telephone may fri 698 9 999 0 nonexistent
## 3788 telephone may fri 180 1 999 0 nonexistent
## 3789 telephone may fri 257 2 999 0 nonexistent
## 3790 telephone may fri 467 1 999 0 nonexistent
## 3791 telephone may fri 233 1 999 0 nonexistent
## 3792 telephone may fri 218 2 999 0 nonexistent
## 3793 telephone may fri 304 2 999 0 nonexistent
## 3794 telephone may fri 315 3 999 0 nonexistent
## 3795 telephone may fri 40 5 999 0 nonexistent
## 3796 telephone may fri 698 1 999 0 nonexistent
## 3797 telephone may fri 76 17 999 0 nonexistent
## 3798 telephone may fri 355 2 999 0 nonexistent
## 3799 telephone may fri 557 4 999 0 nonexistent
## 3800 telephone may fri 148 2 999 0 nonexistent
## 3801 telephone may fri 128 2 999 0 nonexistent
## 3802 telephone may fri 130 3 999 0 nonexistent
## 3803 telephone may fri 280 2 999 0 nonexistent
## 3804 telephone may fri 152 2 999 0 nonexistent
## 3805 telephone may fri 283 2 999 0 nonexistent
## 3806 telephone may fri 523 3 999 0 nonexistent
## 3807 telephone may fri 316 7 999 0 nonexistent
## 3808 telephone may fri 1128 3 999 0 nonexistent
## 3809 telephone may fri 171 4 999 0 nonexistent
## 3810 telephone may fri 174 15 999 0 nonexistent
## 3811 telephone may fri 71 11 999 0 nonexistent
## 3812 telephone may fri 84 4 999 0 nonexistent
## 3813 telephone may fri 221 2 999 0 nonexistent
## 3814 telephone may fri 234 2 999 0 nonexistent
## 3815 telephone may fri 138 2 999 0 nonexistent
## 3816 telephone may fri 339 5 999 0 nonexistent
## 3817 telephone may fri 509 2 999 0 nonexistent
## 3818 telephone may fri 254 16 999 0 nonexistent
## 3819 telephone may fri 243 3 999 0 nonexistent
## 3820 telephone may fri 344 4 999 0 nonexistent
## 3821 telephone may fri 131 4 999 0 nonexistent
## 3822 telephone may fri 251 4 999 0 nonexistent
## 3823 telephone may fri 1135 2 999 0 nonexistent
## 3824 telephone may fri 1106 3 999 0 nonexistent
## 3825 telephone may fri 312 3 999 0 nonexistent
## 3826 telephone may fri 292 8 999 0 nonexistent
## 3827 telephone may fri 279 2 999 0 nonexistent
## 3828 telephone may fri 293 3 999 0 nonexistent
## 3829 telephone may fri 198 5 999 0 nonexistent
## 3830 telephone may fri 1408 2 999 0 nonexistent
## 3831 telephone may fri 827 2 999 0 nonexistent
## 3832 telephone may fri 303 5 999 0 nonexistent
## 3833 telephone may fri 588 3 999 0 nonexistent
## 3834 telephone may fri 680 3 999 0 nonexistent
## 3835 telephone may fri 160 6 999 0 nonexistent
## 3836 telephone may fri 21 3 999 0 nonexistent
## 3837 telephone may fri 251 3 999 0 nonexistent
## 3838 telephone may fri 476 3 999 0 nonexistent
## 3839 telephone may fri 81 6 999 0 nonexistent
## 3840 telephone may fri 4 2 999 0 nonexistent
## 3841 telephone may fri 283 3 999 0 nonexistent
## 3842 telephone may fri 248 2 999 0 nonexistent
## 3843 telephone may fri 541 5 999 0 nonexistent
## 3844 telephone may fri 227 2 999 0 nonexistent
## 3845 telephone may fri 427 3 999 0 nonexistent
## 3846 telephone may fri 148 9 999 0 nonexistent
## 3847 telephone may fri 408 10 999 0 nonexistent
## 3848 telephone may fri 255 3 999 0 nonexistent
## 3849 telephone may fri 236 2 999 0 nonexistent
## 3850 telephone may fri 428 2 999 0 nonexistent
## 3851 telephone may fri 32 3 999 0 nonexistent
## 3852 telephone may fri 851 2 999 0 nonexistent
## 3853 telephone may fri 522 5 999 0 nonexistent
## 3854 telephone may fri 165 4 999 0 nonexistent
## 3855 telephone may fri 1193 5 999 0 nonexistent
## 3856 telephone may fri 1144 3 999 0 nonexistent
## 3857 telephone may fri 730 2 999 0 nonexistent
## 3858 telephone may fri 167 2 999 0 nonexistent
## 3859 telephone may fri 1023 4 999 0 nonexistent
## 3860 telephone may fri 469 2 999 0 nonexistent
## 3861 telephone may fri 385 7 999 0 nonexistent
## 3862 telephone may fri 169 3 999 0 nonexistent
## 3863 telephone may fri 409 3 999 0 nonexistent
## 3864 telephone may fri 165 6 999 0 nonexistent
## 3865 telephone may fri 437 2 999 0 nonexistent
## 3866 telephone may fri 89 2 999 0 nonexistent
## 3867 telephone may fri 261 6 999 0 nonexistent
## 3868 telephone may fri 294 4 999 0 nonexistent
## 3869 telephone may fri 1245 19 999 0 nonexistent
## 3870 telephone may fri 498 2 999 0 nonexistent
## 3871 telephone may fri 134 4 999 0 nonexistent
## 3872 telephone may fri 230 2 999 0 nonexistent
## 3873 telephone may fri 192 20 999 0 nonexistent
## 3874 telephone may fri 65 3 999 0 nonexistent
## 3875 telephone may fri 237 3 999 0 nonexistent
## 3876 telephone may fri 239 2 999 0 nonexistent
## 3877 telephone may fri 196 6 999 0 nonexistent
## 3878 telephone may fri 243 2 999 0 nonexistent
## 3879 telephone may fri 393 2 999 0 nonexistent
## 3880 telephone may fri 512 6 999 0 nonexistent
## 3881 telephone may fri 218 3 999 0 nonexistent
## 3882 telephone may fri 215 3 999 0 nonexistent
## 3883 telephone may fri 186 5 999 0 nonexistent
## 3884 telephone may fri 299 4 999 0 nonexistent
## 3885 telephone may fri 107 3 999 0 nonexistent
## 3886 telephone may fri 103 7 999 0 nonexistent
## 3887 telephone may fri 297 4 999 0 nonexistent
## 3888 telephone may fri 1064 4 999 0 nonexistent
## 3889 telephone may fri 90 7 999 0 nonexistent
## 3890 telephone may fri 59 5 999 0 nonexistent
## 3891 telephone may fri 102 4 999 0 nonexistent
## 3892 telephone may fri 1110 3 999 0 nonexistent
## 3893 telephone may fri 1187 4 999 0 nonexistent
## 3894 telephone may mon 93 4 999 0 nonexistent
## 3895 telephone may mon 119 2 999 0 nonexistent
## 3896 telephone may mon 65 3 999 0 nonexistent
## 3897 telephone may mon 79 19 999 0 nonexistent
## 3898 telephone may mon 145 4 999 0 nonexistent
## 3899 telephone may mon 39 6 999 0 nonexistent
## 3900 telephone may mon 105 2 999 0 nonexistent
## 3901 telephone may mon 311 2 999 0 nonexistent
## 3902 telephone may mon 179 4 999 0 nonexistent
## 3903 telephone may mon 62 2 999 0 nonexistent
## 3904 telephone may mon 115 2 999 0 nonexistent
## 3905 telephone may mon 134 2 999 0 nonexistent
## 3906 telephone may mon 594 2 999 0 nonexistent
## 3907 telephone may mon 55 3 999 0 nonexistent
## 3908 telephone may mon 92 2 999 0 nonexistent
## 3909 telephone may mon 19 5 999 0 nonexistent
## 3910 telephone may mon 501 3 999 0 nonexistent
## 3911 telephone may mon 114 2 999 0 nonexistent
## 3912 telephone may mon 221 2 999 0 nonexistent
## 3913 telephone may mon 219 2 999 0 nonexistent
## 3914 telephone may mon 221 4 999 0 nonexistent
## 3915 telephone may mon 374 6 999 0 nonexistent
## 3916 telephone may mon 123 1 999 0 nonexistent
## 3917 telephone may mon 166 1 999 0 nonexistent
## 3918 telephone may mon 128 1 999 0 nonexistent
## 3919 telephone may mon 37 1 999 0 nonexistent
## 3920 telephone may mon 35 1 999 0 nonexistent
## 3921 telephone may mon 668 7 999 0 nonexistent
## 3922 telephone may mon 88 5 999 0 nonexistent
## 3923 telephone may mon 77 2 999 0 nonexistent
## 3924 telephone may mon 358 3 999 0 nonexistent
## 3925 telephone may mon 312 1 999 0 nonexistent
## 3926 telephone may mon 134 3 999 0 nonexistent
## 3927 telephone may mon 61 4 999 0 nonexistent
## 3928 telephone may mon 258 1 999 0 nonexistent
## 3929 telephone may mon 131 2 999 0 nonexistent
## 3930 telephone may mon 71 1 999 0 nonexistent
## 3931 telephone may mon 153 1 999 0 nonexistent
## 3932 telephone may mon 131 1 999 0 nonexistent
## 3933 telephone may mon 219 1 999 0 nonexistent
## 3934 telephone may mon 468 1 999 0 nonexistent
## 3935 telephone may mon 326 2 999 0 nonexistent
## 3936 telephone may mon 412 1 999 0 nonexistent
## 3937 telephone may mon 579 1 999 0 nonexistent
## 3938 telephone may mon 277 3 999 0 nonexistent
## 3939 telephone may mon 316 2 999 0 nonexistent
## 3940 telephone may mon 882 1 999 0 nonexistent
## 3941 telephone may mon 380 1 999 0 nonexistent
## 3942 telephone may mon 169 1 999 0 nonexistent
## 3943 telephone may mon 124 1 999 0 nonexistent
## 3944 telephone may mon 122 6 999 0 nonexistent
## 3945 telephone may mon 83 4 999 0 nonexistent
## 3946 telephone may mon 318 1 999 0 nonexistent
## 3947 telephone may mon 29 3 999 0 nonexistent
## 3948 telephone may mon 218 1 999 0 nonexistent
## 3949 telephone may mon 144 2 999 0 nonexistent
## 3950 telephone may mon 130 2 999 0 nonexistent
## 3951 telephone may mon 429 1 999 0 nonexistent
## 3952 telephone may mon 27 1 999 0 nonexistent
## 3953 telephone may mon 343 2 999 0 nonexistent
## 3954 telephone may mon 385 1 999 0 nonexistent
## 3955 telephone may mon 167 3 999 0 nonexistent
## 3956 telephone may mon 89 1 999 0 nonexistent
## 3957 telephone may mon 95 1 999 0 nonexistent
## 3958 telephone may mon 289 1 999 0 nonexistent
## 3959 telephone may mon 156 1 999 0 nonexistent
## 3960 telephone may mon 112 1 999 0 nonexistent
## 3961 telephone may mon 351 1 999 0 nonexistent
## 3962 telephone may mon 198 1 999 0 nonexistent
## 3963 telephone may mon 165 1 999 0 nonexistent
## 3964 telephone may mon 25 1 999 0 nonexistent
## 3965 telephone may mon 134 2 999 0 nonexistent
## 3966 telephone may mon 268 6 999 0 nonexistent
## 3967 telephone may mon 298 1 999 0 nonexistent
## 3968 telephone may mon 188 2 999 0 nonexistent
## 3969 telephone may mon 241 1 999 0 nonexistent
## 3970 telephone may mon 201 1 999 0 nonexistent
## 3971 telephone may mon 27 1 999 0 nonexistent
## 3972 telephone may mon 206 1 999 0 nonexistent
## 3973 telephone may mon 68 1 999 0 nonexistent
## 3974 telephone may mon 82 3 999 0 nonexistent
## 3975 telephone may mon 94 2 999 0 nonexistent
## 3976 telephone may mon 97 2 999 0 nonexistent
## 3977 telephone may mon 138 1 999 0 nonexistent
## 3978 telephone may mon 285 2 999 0 nonexistent
## 3979 telephone may mon 135 1 999 0 nonexistent
## 3980 telephone may mon 483 2 999 0 nonexistent
## 3981 telephone may mon 267 1 999 0 nonexistent
## 3982 telephone may mon 382 2 999 0 nonexistent
## 3983 telephone may mon 55 2 999 0 nonexistent
## 3984 telephone may mon 259 3 999 0 nonexistent
## 3985 telephone may mon 18 1 999 0 nonexistent
## 3986 telephone may mon 234 1 999 0 nonexistent
## 3987 telephone may mon 792 4 999 0 nonexistent
## 3988 telephone may mon 95 1 999 0 nonexistent
## 3989 telephone may mon 943 2 999 0 nonexistent
## 3990 telephone may mon 798 1 999 0 nonexistent
## 3991 telephone may mon 168 1 999 0 nonexistent
## 3992 telephone may mon 84 12 999 0 nonexistent
## 3993 telephone may mon 100 3 999 0 nonexistent
## 3994 telephone may mon 85 4 999 0 nonexistent
## 3995 telephone may mon 143 1 999 0 nonexistent
## 3996 telephone may mon 115 1 999 0 nonexistent
## 3997 telephone may mon 23 1 999 0 nonexistent
## 3998 telephone may mon 73 1 999 0 nonexistent
## 3999 telephone may mon 31 1 999 0 nonexistent
## 4000 telephone may mon 182 2 999 0 nonexistent
## 4001 telephone may mon 190 1 999 0 nonexistent
## 4002 telephone may mon 351 1 999 0 nonexistent
## 4003 telephone may mon 179 1 999 0 nonexistent
## 4004 telephone may mon 237 1 999 0 nonexistent
## 4005 telephone may mon 107 2 999 0 nonexistent
## 4006 telephone may mon 529 3 999 0 nonexistent
## 4007 telephone may mon 36 1 999 0 nonexistent
## 4008 telephone may mon 122 2 999 0 nonexistent
## 4009 telephone may mon 198 1 999 0 nonexistent
## 4010 telephone may mon 67 1 999 0 nonexistent
## 4011 telephone may mon 238 3 999 0 nonexistent
## 4012 telephone may mon 81 1 999 0 nonexistent
## 4013 telephone may mon 496 3 999 0 nonexistent
## 4014 telephone may mon 114 2 999 0 nonexistent
## 4015 telephone may mon 156 5 999 0 nonexistent
## 4016 telephone may mon 211 2 999 0 nonexistent
## 4017 telephone may mon 265 1 999 0 nonexistent
## 4018 telephone may mon 48 2 999 0 nonexistent
## 4019 telephone may mon 104 2 999 0 nonexistent
## 4020 telephone may mon 610 1 999 0 nonexistent
## 4021 telephone may mon 287 1 999 0 nonexistent
## 4022 telephone may mon 68 2 999 0 nonexistent
## 4023 telephone may mon 167 4 999 0 nonexistent
## 4024 telephone may mon 336 1 999 0 nonexistent
## 4025 telephone may mon 202 1 999 0 nonexistent
## 4026 telephone may mon 228 1 999 0 nonexistent
## 4027 telephone may mon 192 1 999 0 nonexistent
## 4028 telephone may mon 23 1 999 0 nonexistent
## 4029 telephone may mon 260 1 999 0 nonexistent
## 4030 telephone may mon 387 1 999 0 nonexistent
## 4031 telephone may mon 70 1 999 0 nonexistent
## 4032 telephone may mon 272 1 999 0 nonexistent
## 4033 telephone may mon 158 2 999 0 nonexistent
## 4034 telephone may mon 35 3 999 0 nonexistent
## 4035 telephone may mon 607 1 999 0 nonexistent
## 4036 telephone may mon 257 1 999 0 nonexistent
## 4037 telephone may mon 36 2 999 0 nonexistent
## 4038 telephone may mon 214 3 999 0 nonexistent
## 4039 telephone may mon 105 2 999 0 nonexistent
## 4040 telephone may mon 260 9 999 0 nonexistent
## 4041 telephone may mon 197 4 999 0 nonexistent
## 4042 telephone may mon 174 2 999 0 nonexistent
## 4043 telephone may mon 144 2 999 0 nonexistent
## 4044 telephone may mon 222 2 999 0 nonexistent
## 4045 telephone may mon 136 2 999 0 nonexistent
## 4046 telephone may mon 546 12 999 0 nonexistent
## 4047 telephone may mon 49 2 999 0 nonexistent
## 4048 telephone may mon 335 4 999 0 nonexistent
## 4049 telephone may mon 105 1 999 0 nonexistent
## 4050 telephone may mon 1203 3 999 0 nonexistent
## 4051 telephone may mon 1022 4 999 0 nonexistent
## 4052 telephone may mon 128 1 999 0 nonexistent
## 4053 telephone may mon 258 1 999 0 nonexistent
## 4054 telephone may mon 199 1 999 0 nonexistent
## 4055 telephone may mon 364 1 999 0 nonexistent
## 4056 telephone may mon 123 1 999 0 nonexistent
## 4057 telephone may mon 201 14 999 0 nonexistent
## 4058 telephone may mon 193 3 999 0 nonexistent
## 4059 telephone may mon 159 3 999 0 nonexistent
## 4060 telephone may mon 166 3 999 0 nonexistent
## 4061 telephone may mon 480 1 999 0 nonexistent
## 4062 telephone may mon 149 4 999 0 nonexistent
## 4063 telephone may mon 396 3 999 0 nonexistent
## 4064 telephone may mon 124 3 999 0 nonexistent
## 4065 telephone may mon 13 1 999 0 nonexistent
## 4066 telephone may mon 259 1 999 0 nonexistent
## 4067 telephone may mon 162 1 999 0 nonexistent
## 4068 telephone may mon 723 1 999 0 nonexistent
## 4069 telephone may mon 89 1 999 0 nonexistent
## 4070 telephone may mon 257 2 999 0 nonexistent
## 4071 telephone may mon 361 2 999 0 nonexistent
## 4072 telephone may mon 314 1 999 0 nonexistent
## 4073 telephone may mon 83 1 999 0 nonexistent
## 4074 telephone may mon 215 1 999 0 nonexistent
## 4075 telephone may mon 115 4 999 0 nonexistent
## 4076 telephone may mon 147 3 999 0 nonexistent
## 4077 telephone may mon 102 1 999 0 nonexistent
## 4078 telephone may mon 183 7 999 0 nonexistent
## 4079 telephone may mon 70 1 999 0 nonexistent
## 4080 telephone may mon 19 1 999 0 nonexistent
## 4081 telephone may mon 346 1 999 0 nonexistent
## 4082 telephone may mon 643 1 999 0 nonexistent
## 4083 telephone may mon 78 1 999 0 nonexistent
## 4084 telephone may mon 133 1 999 0 nonexistent
## 4085 telephone may mon 193 6 999 0 nonexistent
## 4086 telephone may mon 181 1 999 0 nonexistent
## 4087 telephone may mon 513 1 999 0 nonexistent
## 4088 telephone may mon 109 2 999 0 nonexistent
## 4089 telephone may mon 263 1 999 0 nonexistent
## 4090 telephone may mon 333 1 999 0 nonexistent
## 4091 telephone may mon 104 1 999 0 nonexistent
## 4092 telephone may mon 191 4 999 0 nonexistent
## 4093 telephone may mon 571 1 999 0 nonexistent
## 4094 telephone may mon 180 1 999 0 nonexistent
## 4095 telephone may mon 446 3 999 0 nonexistent
## 4096 telephone may mon 107 2 999 0 nonexistent
## 4097 telephone may mon 335 3 999 0 nonexistent
## 4098 telephone may mon 120 3 999 0 nonexistent
## 4099 telephone may mon 219 2 999 0 nonexistent
## 4100 telephone may mon 148 1 999 0 nonexistent
## 4101 telephone may mon 400 2 999 0 nonexistent
## 4102 telephone may mon 503 2 999 0 nonexistent
## 4103 telephone may mon 125 5 999 0 nonexistent
## 4104 telephone may mon 329 1 999 0 nonexistent
## 4105 telephone may mon 194 3 999 0 nonexistent
## 4106 telephone may mon 7 1 999 0 nonexistent
## 4107 telephone may mon 53 1 999 0 nonexistent
## 4108 telephone may mon 261 56 999 0 nonexistent
## 4109 telephone may mon 100 1 999 0 nonexistent
## 4110 telephone may mon 104 1 999 0 nonexistent
## 4111 telephone may mon 552 3 999 0 nonexistent
## 4112 telephone may mon 345 1 999 0 nonexistent
## 4113 telephone may mon 263 1 999 0 nonexistent
## 4114 telephone may mon 88 6 999 0 nonexistent
## 4115 telephone may mon 44 39 999 0 nonexistent
## 4116 telephone may mon 207 3 999 0 nonexistent
## 4117 telephone may mon 401 2 999 0 nonexistent
## 4118 telephone may mon 178 5 999 0 nonexistent
## 4119 telephone may mon 53 5 999 0 nonexistent
## 4120 telephone may mon 349 2 999 0 nonexistent
## 4121 telephone may mon 34 9 999 0 nonexistent
## 4122 telephone may mon 48 3 999 0 nonexistent
## 4123 telephone may mon 182 11 999 0 nonexistent
## 4124 telephone may mon 147 1 999 0 nonexistent
## 4125 telephone may mon 457 5 999 0 nonexistent
## 4126 telephone may mon 193 1 999 0 nonexistent
## 4127 telephone may mon 142 3 999 0 nonexistent
## 4128 telephone may mon 123 2 999 0 nonexistent
## 4129 telephone may mon 65 3 999 0 nonexistent
## 4130 telephone may mon 420 1 999 0 nonexistent
## 4131 telephone may mon 100 2 999 0 nonexistent
## 4132 telephone may mon 403 2 999 0 nonexistent
## 4133 telephone may mon 229 3 999 0 nonexistent
## 4134 telephone may mon 445 2 999 0 nonexistent
## 4135 telephone may mon 206 4 999 0 nonexistent
## 4136 telephone may mon 182 2 999 0 nonexistent
## 4137 telephone may mon 183 2 999 0 nonexistent
## 4138 telephone may mon 140 2 999 0 nonexistent
## 4139 telephone may mon 134 3 999 0 nonexistent
## 4140 telephone may mon 88 35 999 0 nonexistent
## 4141 telephone may mon 234 13 999 0 nonexistent
## 4142 telephone may mon 215 3 999 0 nonexistent
## 4143 telephone may mon 194 5 999 0 nonexistent
## 4144 telephone may mon 394 2 999 0 nonexistent
## 4145 telephone may mon 5 2 999 0 nonexistent
## 4146 telephone may mon 408 2 999 0 nonexistent
## 4147 telephone may mon 114 2 999 0 nonexistent
## 4148 telephone may mon 210 2 999 0 nonexistent
## 4149 telephone may mon 243 6 999 0 nonexistent
## 4150 telephone may mon 180 6 999 0 nonexistent
## 4151 telephone may mon 8 2 999 0 nonexistent
## 4152 telephone may mon 313 2 999 0 nonexistent
## 4153 telephone may mon 1622 2 999 0 nonexistent
## 4154 telephone may mon 324 2 999 0 nonexistent
## 4155 telephone may mon 205 3 999 0 nonexistent
## 4156 telephone may mon 194 2 999 0 nonexistent
## 4157 telephone may mon 165 5 999 0 nonexistent
## 4158 telephone may mon 86 7 999 0 nonexistent
## 4159 telephone may mon 160 2 999 0 nonexistent
## 4160 telephone may mon 492 6 999 0 nonexistent
## 4161 telephone may mon 187 3 999 0 nonexistent
## 4162 telephone may mon 197 4 999 0 nonexistent
## 4163 telephone may mon 95 5 999 0 nonexistent
## 4164 telephone may mon 159 3 999 0 nonexistent
## 4165 telephone may mon 967 6 999 0 nonexistent
## 4166 telephone may mon 260 3 999 0 nonexistent
## 4167 telephone may mon 109 2 999 0 nonexistent
## 4168 telephone may mon 579 5 999 0 nonexistent
## 4169 telephone may mon 124 42 999 0 nonexistent
## 4170 telephone may mon 158 5 999 0 nonexistent
## 4171 telephone may mon 162 10 999 0 nonexistent
## 4172 telephone may mon 211 2 999 0 nonexistent
## 4173 telephone may mon 173 5 999 0 nonexistent
## 4174 telephone may mon 73 7 999 0 nonexistent
## 4175 telephone may mon 220 3 999 0 nonexistent
## 4176 telephone may mon 110 2 999 0 nonexistent
## 4177 telephone may mon 99 22 999 0 nonexistent
## 4178 telephone may mon 112 7 999 0 nonexistent
## 4179 telephone may mon 168 4 999 0 nonexistent
## 4180 telephone may mon 283 3 999 0 nonexistent
## 4181 telephone may mon 235 7 999 0 nonexistent
## 4182 telephone may mon 138 8 999 0 nonexistent
## 4183 telephone may mon 374 6 999 0 nonexistent
## 4184 telephone may mon 353 4 999 0 nonexistent
## 4185 telephone may mon 147 2 999 0 nonexistent
## 4186 telephone may mon 332 10 999 0 nonexistent
## 4187 telephone may mon 179 9 999 0 nonexistent
## 4188 telephone may mon 396 9 999 0 nonexistent
## 4189 telephone may mon 492 9 999 0 nonexistent
## 4190 telephone may mon 360 2 999 0 nonexistent
## 4191 telephone may mon 175 2 999 0 nonexistent
## 4192 telephone may mon 97 9 999 0 nonexistent
## 4193 telephone may mon 84 3 999 0 nonexistent
## 4194 telephone may mon 57 7 999 0 nonexistent
## 4195 telephone may mon 105 11 999 0 nonexistent
## 4196 telephone may mon 886 3 999 0 nonexistent
## 4197 telephone may mon 182 8 999 0 nonexistent
## 4198 telephone may mon 467 4 999 0 nonexistent
## 4199 telephone may mon 21 11 999 0 nonexistent
## 4200 telephone may mon 470 4 999 0 nonexistent
## 4201 telephone may mon 85 3 999 0 nonexistent
## 4202 telephone may mon 120 7 999 0 nonexistent
## 4203 telephone may mon 298 2 999 0 nonexistent
## 4204 telephone may mon 249 2 999 0 nonexistent
## 4205 telephone may mon 87 5 999 0 nonexistent
## 4206 telephone may mon 622 2 999 0 nonexistent
## 4207 telephone may mon 195 4 999 0 nonexistent
## 4208 telephone may mon 179 2 999 0 nonexistent
## 4209 telephone may mon 58 10 999 0 nonexistent
## 4210 telephone may mon 1218 3 999 0 nonexistent
## 4211 telephone may mon 500 3 999 0 nonexistent
## 4212 telephone may mon 66 9 999 0 nonexistent
## 4213 telephone may mon 328 10 999 0 nonexistent
## 4214 telephone may mon 3078 4 999 0 nonexistent
## 4215 telephone may tue 21 7 999 0 nonexistent
## 4216 telephone may tue 150 1 999 0 nonexistent
## 4217 telephone may tue 148 5 999 0 nonexistent
## 4218 telephone may tue 102 1 999 0 nonexistent
## 4219 telephone may tue 91 1 999 0 nonexistent
## 4220 telephone may tue 201 1 999 0 nonexistent
## 4221 telephone may tue 70 1 999 0 nonexistent
## 4222 telephone may tue 19 15 999 0 nonexistent
## 4223 telephone may tue 82 9 999 0 nonexistent
## 4224 telephone may tue 59 1 999 0 nonexistent
## 4225 telephone may tue 182 1 999 0 nonexistent
## 4226 telephone may tue 365 4 999 0 nonexistent
## 4227 telephone may tue 257 1 999 0 nonexistent
## 4228 telephone may tue 280 1 999 0 nonexistent
## 4229 telephone may tue 16 10 999 0 nonexistent
## 4230 telephone may tue 249 1 999 0 nonexistent
## 4231 telephone may tue 140 1 999 0 nonexistent
## 4232 telephone may tue 184 1 999 0 nonexistent
## 4233 telephone may tue 20 12 999 0 nonexistent
## 4234 telephone may tue 686 1 999 0 nonexistent
## 4235 telephone may tue 107 2 999 0 nonexistent
## 4236 telephone may tue 224 1 999 0 nonexistent
## 4237 telephone may tue 172 1 999 0 nonexistent
## 4238 telephone may tue 19 1 999 0 nonexistent
## 4239 telephone may tue 125 4 999 0 nonexistent
## 4240 telephone may tue 280 1 999 0 nonexistent
## 4241 telephone may tue 216 1 999 0 nonexistent
## 4242 telephone may tue 109 1 999 0 nonexistent
## 4243 telephone may tue 81 1 999 0 nonexistent
## 4244 telephone may tue 409 2 999 0 nonexistent
## 4245 telephone may tue 146 1 999 0 nonexistent
## 4246 telephone may tue 83 1 999 0 nonexistent
## 4247 telephone may tue 226 1 999 0 nonexistent
## 4248 telephone may tue 191 1 999 0 nonexistent
## 4249 telephone may tue 171 1 999 0 nonexistent
## 4250 telephone may tue 13 12 999 0 nonexistent
## 4251 telephone may tue 133 1 999 0 nonexistent
## 4252 telephone may tue 656 1 999 0 nonexistent
## 4253 telephone may tue 1205 1 999 0 nonexistent
## 4254 telephone may tue 202 6 999 0 nonexistent
## 4255 telephone may tue 206 1 999 0 nonexistent
## 4256 telephone may tue 202 1 999 0 nonexistent
## 4257 telephone may tue 79 1 999 0 nonexistent
## 4258 telephone may tue 196 1 999 0 nonexistent
## 4259 telephone may tue 186 4 999 0 nonexistent
## 4260 telephone may tue 532 1 999 0 nonexistent
## 4261 telephone may tue 97 2 999 0 nonexistent
## 4262 telephone may tue 234 5 999 0 nonexistent
## 4263 telephone may tue 216 1 999 0 nonexistent
## 4264 telephone may tue 297 1 999 0 nonexistent
## 4265 telephone may tue 1882 2 999 0 nonexistent
## 4266 telephone may tue 243 1 999 0 nonexistent
## 4267 telephone may tue 98 1 999 0 nonexistent
## 4268 telephone may tue 81 1 999 0 nonexistent
## 4269 telephone may tue 1334 1 999 0 nonexistent
## 4270 telephone may tue 190 1 999 0 nonexistent
## 4271 telephone may tue 142 3 999 0 nonexistent
## 4272 telephone may tue 775 1 999 0 nonexistent
## 4273 telephone may tue 335 1 999 0 nonexistent
## 4274 telephone may tue 168 1 999 0 nonexistent
## 4275 telephone may tue 68 2 999 0 nonexistent
## 4276 telephone may tue 217 1 999 0 nonexistent
## 4277 telephone may tue 68 1 999 0 nonexistent
## 4278 telephone may tue 119 1 999 0 nonexistent
## 4279 telephone may tue 160 1 999 0 nonexistent
## 4280 telephone may tue 294 10 999 0 nonexistent
## 4281 telephone may tue 57 1 999 0 nonexistent
## 4282 telephone may tue 297 2 999 0 nonexistent
## 4283 telephone may tue 90 1 999 0 nonexistent
## 4284 telephone may tue 600 1 999 0 nonexistent
## 4285 telephone may tue 38 1 999 0 nonexistent
## 4286 telephone may tue 217 1 999 0 nonexistent
## 4287 telephone may tue 142 1 999 0 nonexistent
## 4288 telephone may tue 26 1 999 0 nonexistent
## 4289 telephone may tue 369 1 999 0 nonexistent
## 4290 telephone may tue 29 1 999 0 nonexistent
## 4291 telephone may tue 274 1 999 0 nonexistent
## 4292 telephone may tue 214 1 999 0 nonexistent
## 4293 telephone may tue 24 1 999 0 nonexistent
## 4294 telephone may tue 793 2 999 0 nonexistent
## 4295 telephone may tue 182 2 999 0 nonexistent
## 4296 telephone may tue 71 1 999 0 nonexistent
## 4297 telephone may tue 203 1 999 0 nonexistent
## 4298 telephone may tue 166 1 999 0 nonexistent
## 4299 telephone may tue 167 1 999 0 nonexistent
## 4300 telephone may tue 37 1 999 0 nonexistent
## 4301 telephone may tue 154 1 999 0 nonexistent
## 4302 telephone may tue 394 1 999 0 nonexistent
## 4303 telephone may tue 127 1 999 0 nonexistent
## 4304 telephone may tue 264 1 999 0 nonexistent
## 4305 telephone may tue 231 1 999 0 nonexistent
## 4306 telephone may tue 320 1 999 0 nonexistent
## 4307 telephone may tue 618 1 999 0 nonexistent
## 4308 telephone may tue 101 1 999 0 nonexistent
## 4309 telephone may tue 110 1 999 0 nonexistent
## 4310 telephone may tue 121 3 999 0 nonexistent
## 4311 telephone may tue 85 1 999 0 nonexistent
## 4312 telephone may tue 265 1 999 0 nonexistent
## 4313 telephone may tue 171 1 999 0 nonexistent
## 4314 telephone may tue 345 1 999 0 nonexistent
## 4315 telephone may tue 224 1 999 0 nonexistent
## 4316 telephone may tue 171 1 999 0 nonexistent
## 4317 telephone may tue 67 1 999 0 nonexistent
## 4318 telephone may tue 186 1 999 0 nonexistent
## 4319 telephone may tue 269 1 999 0 nonexistent
## 4320 telephone may tue 115 1 999 0 nonexistent
## 4321 telephone may tue 273 1 999 0 nonexistent
## 4322 telephone may tue 65 1 999 0 nonexistent
## 4323 telephone may tue 434 1 999 0 nonexistent
## 4324 telephone may tue 148 1 999 0 nonexistent
## 4325 telephone may tue 507 1 999 0 nonexistent
## 4326 telephone may tue 253 1 999 0 nonexistent
## 4327 telephone may tue 27 1 999 0 nonexistent
## 4328 telephone may tue 100 1 999 0 nonexistent
## 4329 telephone may tue 116 1 999 0 nonexistent
## 4330 telephone may tue 124 1 999 0 nonexistent
## 4331 telephone may tue 66 2 999 0 nonexistent
## 4332 telephone may tue 233 2 999 0 nonexistent
## 4333 telephone may tue 380 1 999 0 nonexistent
## 4334 telephone may tue 90 1 999 0 nonexistent
## 4335 telephone may tue 258 1 999 0 nonexistent
## 4336 telephone may tue 92 2 999 0 nonexistent
## 4337 telephone may tue 423 1 999 0 nonexistent
## 4338 telephone may tue 215 2 999 0 nonexistent
## 4339 telephone may tue 209 1 999 0 nonexistent
## 4340 telephone may tue 181 1 999 0 nonexistent
## 4341 telephone may tue 201 1 999 0 nonexistent
## 4342 telephone may tue 360 6 999 0 nonexistent
## 4343 telephone may tue 155 1 999 0 nonexistent
## 4344 telephone may tue 81 2 999 0 nonexistent
## 4345 telephone may tue 40 1 999 0 nonexistent
## 4346 telephone may tue 447 1 999 0 nonexistent
## 4347 telephone may tue 137 1 999 0 nonexistent
## 4348 telephone may tue 184 1 999 0 nonexistent
## 4349 telephone may tue 121 1 999 0 nonexistent
## 4350 telephone may tue 138 4 999 0 nonexistent
## 4351 telephone may tue 207 6 999 0 nonexistent
## 4352 telephone may tue 309 1 999 0 nonexistent
## 4353 telephone may tue 134 1 999 0 nonexistent
## 4354 telephone may tue 1777 1 999 0 nonexistent
## 4355 telephone may tue 284 1 999 0 nonexistent
## 4356 telephone may tue 70 2 999 0 nonexistent
## 4357 telephone may tue 774 1 999 0 nonexistent
## 4358 telephone may tue 62 1 999 0 nonexistent
## 4359 telephone may tue 247 2 999 0 nonexistent
## 4360 telephone may tue 318 3 999 0 nonexistent
## 4361 telephone may tue 277 2 999 0 nonexistent
## 4362 telephone may tue 126 3 999 0 nonexistent
## 4363 telephone may tue 411 1 999 0 nonexistent
## 4364 telephone may tue 85 1 999 0 nonexistent
## 4365 telephone may tue 378 1 999 0 nonexistent
## 4366 telephone may tue 83 1 999 0 nonexistent
## 4367 telephone may tue 71 3 999 0 nonexistent
## 4368 telephone may tue 102 2 999 0 nonexistent
## 4369 telephone may tue 869 2 999 0 nonexistent
## 4370 telephone may tue 208 2 999 0 nonexistent
## 4371 telephone may tue 199 4 999 0 nonexistent
## 4372 telephone may tue 47 1 999 0 nonexistent
## 4373 telephone may tue 253 1 999 0 nonexistent
## 4374 telephone may tue 244 1 999 0 nonexistent
## 4375 telephone may tue 311 1 999 0 nonexistent
## 4376 telephone may tue 177 1 999 0 nonexistent
## 4377 telephone may tue 217 2 999 0 nonexistent
## 4378 telephone may tue 189 1 999 0 nonexistent
## 4379 telephone may tue 152 1 999 0 nonexistent
## 4380 telephone may tue 151 1 999 0 nonexistent
## 4381 telephone may tue 24 1 999 0 nonexistent
## 4382 telephone may tue 212 1 999 0 nonexistent
## 4383 telephone may tue 184 1 999 0 nonexistent
## 4384 telephone may tue 473 2 999 0 nonexistent
## 4385 telephone may tue 485 1 999 0 nonexistent
## 4386 telephone may tue 140 1 999 0 nonexistent
## 4387 telephone may tue 172 1 999 0 nonexistent
## 4388 telephone may tue 77 2 999 0 nonexistent
## 4389 telephone may tue 396 1 999 0 nonexistent
## 4390 telephone may tue 274 2 999 0 nonexistent
## 4391 telephone may tue 88 2 999 0 nonexistent
## 4392 telephone may tue 129 2 999 0 nonexistent
## 4393 telephone may tue 346 2 999 0 nonexistent
## 4394 telephone may tue 474 2 999 0 nonexistent
## 4395 telephone may tue 268 2 999 0 nonexistent
## 4396 telephone may tue 222 2 999 0 nonexistent
## 4397 telephone may tue 139 2 999 0 nonexistent
## 4398 telephone may tue 1313 2 999 0 nonexistent
## 4399 telephone may tue 72 5 999 0 nonexistent
## 4400 telephone may tue 309 1 999 0 nonexistent
## 4401 telephone may tue 61 2 999 0 nonexistent
## 4402 telephone may tue 246 3 999 0 nonexistent
## 4403 telephone may tue 205 2 999 0 nonexistent
## 4404 telephone may tue 347 6 999 0 nonexistent
## 4405 telephone may tue 381 2 999 0 nonexistent
## 4406 telephone may tue 355 1 999 0 nonexistent
## 4407 telephone may tue 256 1 999 0 nonexistent
## 4408 telephone may tue 211 2 999 0 nonexistent
## 4409 telephone may tue 211 1 999 0 nonexistent
## 4410 telephone may tue 66 12 999 0 nonexistent
## 4411 telephone may tue 1452 10 999 0 nonexistent
## 4412 telephone may tue 487 2 999 0 nonexistent
## 4413 telephone may tue 610 2 999 0 nonexistent
## 4414 telephone may tue 120 1 999 0 nonexistent
## 4415 telephone may tue 464 2 999 0 nonexistent
## 4416 telephone may tue 547 7 999 0 nonexistent
## 4417 telephone may tue 152 2 999 0 nonexistent
## 4418 telephone may tue 522 1 999 0 nonexistent
## 4419 telephone may tue 227 9 999 0 nonexistent
## 4420 telephone may tue 129 2 999 0 nonexistent
## 4421 telephone may tue 1376 2 999 0 nonexistent
## 4422 telephone may tue 37 1 999 0 nonexistent
## 4423 telephone may tue 360 1 999 0 nonexistent
## 4424 telephone may tue 51 1 999 0 nonexistent
## 4425 telephone may tue 834 6 999 0 nonexistent
## 4426 telephone may tue 195 10 999 0 nonexistent
## 4427 telephone may tue 106 1 999 0 nonexistent
## 4428 telephone may tue 194 1 999 0 nonexistent
## 4429 telephone may tue 535 1 999 0 nonexistent
## 4430 telephone may tue 182 1 999 0 nonexistent
## 4431 telephone may tue 296 1 999 0 nonexistent
## 4432 telephone may tue 201 1 999 0 nonexistent
## 4433 telephone may tue 281 1 999 0 nonexistent
## 4434 telephone may tue 150 1 999 0 nonexistent
## 4435 telephone may tue 76 1 999 0 nonexistent
## 4436 telephone may tue 79 1 999 0 nonexistent
## 4437 telephone may tue 359 2 999 0 nonexistent
## 4438 telephone may tue 332 2 999 0 nonexistent
## 4439 telephone may tue 592 1 999 0 nonexistent
## 4440 telephone may tue 166 1 999 0 nonexistent
## 4441 telephone may tue 245 1 999 0 nonexistent
## 4442 telephone may tue 138 8 999 0 nonexistent
## 4443 telephone may tue 369 1 999 0 nonexistent
## 4444 telephone may tue 158 1 999 0 nonexistent
## 4445 telephone may tue 261 1 999 0 nonexistent
## 4446 telephone may tue 131 1 999 0 nonexistent
## 4447 telephone may tue 592 1 999 0 nonexistent
## 4448 telephone may tue 412 1 999 0 nonexistent
## 4449 telephone may tue 137 2 999 0 nonexistent
## 4450 telephone may tue 324 1 999 0 nonexistent
## 4451 telephone may tue 266 1 999 0 nonexistent
## 4452 telephone may tue 335 1 999 0 nonexistent
## 4453 telephone may tue 235 2 999 0 nonexistent
## 4454 telephone may tue 697 2 999 0 nonexistent
## 4455 telephone may tue 170 2 999 0 nonexistent
## 4456 telephone may tue 272 2 999 0 nonexistent
## 4457 telephone may tue 1042 17 999 0 nonexistent
## 4458 telephone may tue 271 1 999 0 nonexistent
## 4459 telephone may tue 378 3 999 0 nonexistent
## 4460 telephone may tue 107 1 999 0 nonexistent
## 4461 telephone may tue 78 2 999 0 nonexistent
## 4462 telephone may tue 383 1 999 0 nonexistent
## 4463 telephone may tue 185 1 999 0 nonexistent
## 4464 telephone may tue 254 1 999 0 nonexistent
## 4465 telephone may tue 107 1 999 0 nonexistent
## 4466 telephone may tue 157 1 999 0 nonexistent
## 4467 telephone may tue 85 2 999 0 nonexistent
## 4468 telephone may tue 249 3 999 0 nonexistent
## 4469 telephone may tue 163 2 999 0 nonexistent
## 4470 telephone may tue 112 2 999 0 nonexistent
## 4471 telephone may tue 188 3 999 0 nonexistent
## 4472 telephone may tue 148 1 999 0 nonexistent
## 4473 telephone may tue 145 2 999 0 nonexistent
## 4474 telephone may tue 415 2 999 0 nonexistent
## 4475 telephone may tue 742 2 999 0 nonexistent
## 4476 telephone may tue 129 1 999 0 nonexistent
## 4477 telephone may tue 37 9 999 0 nonexistent
## 4478 telephone may tue 120 1 999 0 nonexistent
## 4479 telephone may tue 185 2 999 0 nonexistent
## 4480 telephone may tue 1045 1 999 0 nonexistent
## 4481 telephone may tue 204 1 999 0 nonexistent
## 4482 telephone may tue 205 2 999 0 nonexistent
## 4483 telephone may tue 74 2 999 0 nonexistent
## 4484 telephone may tue 190 2 999 0 nonexistent
## 4485 telephone may tue 325 3 999 0 nonexistent
## 4486 telephone may tue 650 3 999 0 nonexistent
## 4487 telephone may tue 148 2 999 0 nonexistent
## 4488 telephone may tue 38 8 999 0 nonexistent
## 4489 telephone may tue 625 2 999 0 nonexistent
## 4490 telephone may tue 175 3 999 0 nonexistent
## 4491 telephone may tue 134 3 999 0 nonexistent
## 4492 telephone may tue 97 8 999 0 nonexistent
## 4493 telephone may tue 282 2 999 0 nonexistent
## 4494 telephone may tue 304 2 999 0 nonexistent
## 4495 telephone may tue 438 2 999 0 nonexistent
## 4496 telephone may tue 999 3 999 0 nonexistent
## 4497 telephone may tue 127 2 999 0 nonexistent
## 4498 telephone may tue 446 2 999 0 nonexistent
## 4499 telephone may tue 289 3 999 0 nonexistent
## 4500 telephone may tue 217 4 999 0 nonexistent
## 4501 telephone may tue 169 1 999 0 nonexistent
## 4502 telephone may tue 247 3 999 0 nonexistent
## 4503 telephone may tue 140 1 999 0 nonexistent
## 4504 telephone may tue 60 6 999 0 nonexistent
## 4505 telephone may tue 99 1 999 0 nonexistent
## 4506 telephone may tue 26 14 999 0 nonexistent
## 4507 telephone may tue 128 6 999 0 nonexistent
## 4508 telephone may tue 215 3 999 0 nonexistent
## 4509 telephone may tue 64 1 999 0 nonexistent
## 4510 telephone may tue 52 10 999 0 nonexistent
## 4511 telephone may tue 216 2 999 0 nonexistent
## 4512 telephone may tue 292 1 999 0 nonexistent
## 4513 telephone may tue 129 7 999 0 nonexistent
## 4514 telephone may tue 201 4 999 0 nonexistent
## 4515 telephone may tue 210 2 999 0 nonexistent
## 4516 telephone may tue 114 1 999 0 nonexistent
## 4517 telephone may tue 657 1 999 0 nonexistent
## 4518 telephone may tue 88 1 999 0 nonexistent
## 4519 telephone may tue 147 2 999 0 nonexistent
## 4520 telephone may tue 443 1 999 0 nonexistent
## 4521 telephone may tue 73 1 999 0 nonexistent
## 4522 telephone may tue 127 8 999 0 nonexistent
## 4523 telephone may tue 1063 2 999 0 nonexistent
## 4524 telephone may tue 446 2 999 0 nonexistent
## 4525 telephone may tue 252 2 999 0 nonexistent
## 4526 telephone may tue 80 2 999 0 nonexistent
## 4527 telephone may tue 1446 1 999 0 nonexistent
## 4528 telephone may tue 144 2 999 0 nonexistent
## 4529 telephone may tue 412 2 999 0 nonexistent
## 4530 telephone may tue 222 2 999 0 nonexistent
## 4531 telephone may tue 29 16 999 0 nonexistent
## 4532 telephone may tue 165 2 999 0 nonexistent
## 4533 telephone may tue 154 2 999 0 nonexistent
## 4534 telephone may tue 202 3 999 0 nonexistent
## 4535 telephone may tue 723 2 999 0 nonexistent
## 4536 telephone may tue 550 2 999 0 nonexistent
## 4537 telephone may tue 130 2 999 0 nonexistent
## 4538 telephone may tue 192 2 999 0 nonexistent
## 4539 telephone may tue 146 2 999 0 nonexistent
## 4540 telephone may tue 239 2 999 0 nonexistent
## 4541 telephone may tue 304 2 999 0 nonexistent
## 4542 telephone may tue 114 3 999 0 nonexistent
## 4543 telephone may tue 139 3 999 0 nonexistent
## 4544 telephone may tue 445 2 999 0 nonexistent
## 4545 telephone may tue 139 5 999 0 nonexistent
## 4546 telephone may tue 16 10 999 0 nonexistent
## 4547 telephone may tue 169 4 999 0 nonexistent
## 4548 telephone may tue 125 3 999 0 nonexistent
## 4549 telephone may tue 266 2 999 0 nonexistent
## 4550 telephone may tue 446 12 999 0 nonexistent
## 4551 telephone may tue 267 2 999 0 nonexistent
## 4552 telephone may tue 6 2 999 0 nonexistent
## 4553 telephone may tue 15 13 999 0 nonexistent
## 4554 telephone may tue 172 4 999 0 nonexistent
## 4555 telephone may tue 94 3 999 0 nonexistent
## 4556 telephone may tue 268 3 999 0 nonexistent
## 4557 telephone may tue 130 3 999 0 nonexistent
## 4558 telephone may tue 70 4 999 0 nonexistent
## 4559 telephone may tue 91 6 999 0 nonexistent
## 4560 telephone may tue 324 2 999 0 nonexistent
## 4561 telephone may tue 465 8 999 0 nonexistent
## 4562 telephone may tue 274 2 999 0 nonexistent
## 4563 telephone may tue 300 3 999 0 nonexistent
## 4564 telephone may tue 191 7 999 0 nonexistent
## 4565 telephone may tue 56 3 999 0 nonexistent
## 4566 telephone may tue 189 2 999 0 nonexistent
## 4567 telephone may tue 236 2 999 0 nonexistent
## 4568 telephone may tue 137 2 999 0 nonexistent
## 4569 telephone may tue 614 2 999 0 nonexistent
## 4570 telephone may tue 363 5 999 0 nonexistent
## 4571 telephone may tue 418 2 999 0 nonexistent
## 4572 telephone may tue 221 2 999 0 nonexistent
## 4573 telephone may tue 96 2 999 0 nonexistent
## 4574 telephone may tue 119 3 999 0 nonexistent
## 4575 telephone may tue 103 3 999 0 nonexistent
## 4576 telephone may tue 10 17 999 0 nonexistent
## 4577 telephone may tue 216 2 999 0 nonexistent
## 4578 telephone may tue 484 2 999 0 nonexistent
## 4579 telephone may tue 485 3 999 0 nonexistent
## 4580 telephone may tue 404 2 999 0 nonexistent
## 4581 telephone may tue 175 2 999 0 nonexistent
## 4582 telephone may tue 138 2 999 0 nonexistent
## 4583 telephone may tue 243 2 999 0 nonexistent
## 4584 telephone may tue 919 2 999 0 nonexistent
## 4585 telephone may tue 203 2 999 0 nonexistent
## 4586 telephone may tue 247 2 999 0 nonexistent
## 4587 telephone may tue 89 2 999 0 nonexistent
## 4588 telephone may tue 185 12 999 0 nonexistent
## 4589 telephone may tue 777 3 999 0 nonexistent
## 4590 telephone may tue 340 3 999 0 nonexistent
## 4591 telephone may tue 110 2 999 0 nonexistent
## 4592 telephone may tue 256 2 999 0 nonexistent
## 4593 telephone may tue 165 2 999 0 nonexistent
## 4594 telephone may tue 54 2 999 0 nonexistent
## 4595 telephone may tue 26 2 999 0 nonexistent
## 4596 telephone may tue 350 4 999 0 nonexistent
## 4597 telephone may tue 226 2 999 0 nonexistent
## 4598 telephone may tue 167 2 999 0 nonexistent
## 4599 telephone may tue 47 3 999 0 nonexistent
## 4600 telephone may tue 214 10 999 0 nonexistent
## 4601 telephone may tue 446 7 999 0 nonexistent
## 4602 telephone may tue 153 2 999 0 nonexistent
## 4603 telephone may tue 181 6 999 0 nonexistent
## 4604 telephone may tue 747 5 999 0 nonexistent
## 4605 telephone may tue 214 1 999 0 nonexistent
## 4606 telephone may tue 270 1 999 0 nonexistent
## 4607 telephone may tue 37 13 999 0 nonexistent
## 4608 telephone may tue 129 8 999 0 nonexistent
## 4609 telephone may tue 72 3 999 0 nonexistent
## 4610 telephone may tue 1392 2 999 0 nonexistent
## 4611 telephone may tue 441 9 999 0 nonexistent
## 4612 telephone may tue 725 1 999 0 nonexistent
## 4613 telephone may tue 213 3 999 0 nonexistent
## 4614 telephone may tue 177 10 999 0 nonexistent
## 4615 telephone may tue 273 4 999 0 nonexistent
## 4616 telephone may tue 98 2 999 0 nonexistent
## 4617 telephone may tue 480 4 999 0 nonexistent
## 4618 telephone may tue 152 1 999 0 nonexistent
## 4619 telephone may tue 204 2 999 0 nonexistent
## 4620 telephone may tue 117 1 999 0 nonexistent
## 4621 telephone may tue 246 3 999 0 nonexistent
## 4622 telephone may tue 352 5 999 0 nonexistent
## 4623 telephone may tue 190 1 999 0 nonexistent
## 4624 telephone may tue 719 1 999 0 nonexistent
## 4625 telephone may tue 277 1 999 0 nonexistent
## 4626 telephone may tue 315 1 999 0 nonexistent
## 4627 telephone may wed 289 1 999 0 nonexistent
## 4628 telephone may wed 225 1 999 0 nonexistent
## 4629 telephone may wed 408 1 999 0 nonexistent
## 4630 telephone may wed 74 1 999 0 nonexistent
## 4631 telephone may wed 24 1 999 0 nonexistent
## 4632 telephone may wed 369 1 999 0 nonexistent
## 4633 telephone may wed 167 1 999 0 nonexistent
## 4634 telephone may wed 64 3 999 0 nonexistent
## 4635 telephone may wed 151 1 999 0 nonexistent
## 4636 telephone may wed 801 1 999 0 nonexistent
## 4637 telephone may wed 336 1 999 0 nonexistent
## 4638 telephone may wed 59 1 999 0 nonexistent
## 4639 telephone may wed 93 1 999 0 nonexistent
## 4640 telephone may wed 181 1 999 0 nonexistent
## 4641 telephone may wed 86 6 999 0 nonexistent
## 4642 telephone may wed 317 1 999 0 nonexistent
## 4643 telephone may wed 120 1 999 0 nonexistent
## 4644 telephone may wed 388 1 999 0 nonexistent
## 4645 telephone may wed 174 1 999 0 nonexistent
## 4646 telephone may wed 72 1 999 0 nonexistent
## 4647 telephone may wed 126 1 999 0 nonexistent
## 4648 telephone may wed 339 1 999 0 nonexistent
## 4649 telephone may wed 171 5 999 0 nonexistent
## 4650 telephone may wed 162 1 999 0 nonexistent
## 4651 telephone may wed 18 28 999 0 nonexistent
## 4652 telephone may wed 129 1 999 0 nonexistent
## 4653 telephone may wed 938 1 999 0 nonexistent
## 4654 telephone may wed 173 1 999 0 nonexistent
## 4655 telephone may wed 222 1 999 0 nonexistent
## 4656 telephone may wed 692 1 999 0 nonexistent
## 4657 telephone may wed 262 2 999 0 nonexistent
## 4658 telephone may wed 78 1 999 0 nonexistent
## 4659 telephone may wed 134 5 999 0 nonexistent
## 4660 telephone may wed 323 1 999 0 nonexistent
## 4661 telephone may wed 43 1 999 0 nonexistent
## 4662 telephone may wed 245 1 999 0 nonexistent
## 4663 telephone may wed 482 1 999 0 nonexistent
## 4664 telephone may wed 207 2 999 0 nonexistent
## 4665 telephone may wed 56 1 999 0 nonexistent
## 4666 telephone may wed 85 2 999 0 nonexistent
## 4667 telephone may wed 201 1 999 0 nonexistent
## 4668 telephone may wed 353 1 999 0 nonexistent
## 4669 telephone may wed 554 3 999 0 nonexistent
## 4670 telephone may wed 432 1 999 0 nonexistent
## 4671 telephone may wed 27 2 999 0 nonexistent
## 4672 telephone may wed 361 1 999 0 nonexistent
## 4673 telephone may wed 565 1 999 0 nonexistent
## 4674 telephone may wed 162 1 999 0 nonexistent
## 4675 telephone may wed 139 1 999 0 nonexistent
## 4676 telephone may wed 287 3 999 0 nonexistent
## 4677 telephone may wed 147 1 999 0 nonexistent
## 4678 telephone may wed 905 1 999 0 nonexistent
## 4679 telephone may wed 118 1 999 0 nonexistent
## 4680 telephone may wed 91 1 999 0 nonexistent
## 4681 telephone may wed 111 5 999 0 nonexistent
## 4682 telephone may wed 162 1 999 0 nonexistent
## 4683 telephone may wed 236 1 999 0 nonexistent
## 4684 telephone may wed 73 1 999 0 nonexistent
## 4685 telephone may wed 123 1 999 0 nonexistent
## 4686 telephone may wed 298 2 999 0 nonexistent
## 4687 telephone may wed 86 1 999 0 nonexistent
## 4688 telephone may wed 420 1 999 0 nonexistent
## 4689 telephone may wed 139 2 999 0 nonexistent
## 4690 telephone may wed 164 1 999 0 nonexistent
## 4691 telephone may wed 508 1 999 0 nonexistent
## 4692 telephone may wed 139 1 999 0 nonexistent
## 4693 telephone may wed 192 1 999 0 nonexistent
## 4694 telephone may wed 226 1 999 0 nonexistent
## 4695 telephone may wed 783 2 999 0 nonexistent
## 4696 telephone may wed 264 2 999 0 nonexistent
## 4697 telephone may wed 166 1 999 0 nonexistent
## 4698 telephone may wed 27 1 999 0 nonexistent
## 4699 telephone may wed 353 1 999 0 nonexistent
## 4700 telephone may wed 85 1 999 0 nonexistent
## 4701 telephone may wed 1106 1 999 0 nonexistent
## 4702 telephone may wed 419 1 999 0 nonexistent
## 4703 telephone may wed 603 5 999 0 nonexistent
## 4704 telephone may wed 415 1 999 0 nonexistent
## 4705 telephone may wed 179 1 999 0 nonexistent
## 4706 telephone may wed 872 5 999 0 nonexistent
## 4707 telephone may wed 52 1 999 0 nonexistent
## 4708 telephone may wed 490 1 999 0 nonexistent
## 4709 telephone may wed 63 1 999 0 nonexistent
## 4710 telephone may wed 27 10 999 0 nonexistent
## 4711 telephone may wed 425 1 999 0 nonexistent
## 4712 telephone may wed 12 11 999 0 nonexistent
## 4713 telephone may wed 350 1 999 0 nonexistent
## 4714 telephone may wed 103 1 999 0 nonexistent
## 4715 telephone may wed 210 1 999 0 nonexistent
## 4716 telephone may wed 261 1 999 0 nonexistent
## 4717 telephone may wed 115 2 999 0 nonexistent
## 4718 telephone may wed 641 1 999 0 nonexistent
## 4719 telephone may wed 71 1 999 0 nonexistent
## 4720 telephone may wed 370 1 999 0 nonexistent
## 4721 telephone may wed 958 2 999 0 nonexistent
## 4722 telephone may wed 103 2 999 0 nonexistent
## 4723 telephone may wed 628 1 999 0 nonexistent
## 4724 telephone may wed 232 1 999 0 nonexistent
## 4725 telephone may wed 68 1 999 0 nonexistent
## 4726 telephone may wed 192 1 999 0 nonexistent
## 4727 telephone may wed 494 3 999 0 nonexistent
## 4728 telephone may wed 166 7 999 0 nonexistent
## 4729 telephone may wed 151 2 999 0 nonexistent
## 4730 telephone may wed 204 1 999 0 nonexistent
## 4731 telephone may wed 180 1 999 0 nonexistent
## 4732 telephone may wed 494 2 999 0 nonexistent
## 4733 telephone may wed 530 2 999 0 nonexistent
## 4734 telephone may wed 759 1 999 0 nonexistent
## 4735 telephone may wed 85 1 999 0 nonexistent
## 4736 telephone may wed 445 2 999 0 nonexistent
## 4737 telephone may wed 345 1 999 0 nonexistent
## 4738 telephone may wed 819 1 999 0 nonexistent
## 4739 telephone may wed 16 1 999 0 nonexistent
## 4740 telephone may wed 32 1 999 0 nonexistent
## 4741 telephone may wed 648 1 999 0 nonexistent
## 4742 telephone may wed 29 1 999 0 nonexistent
## 4743 telephone may wed 220 1 999 0 nonexistent
## 4744 telephone may wed 151 1 999 0 nonexistent
## 4745 telephone may wed 290 2 999 0 nonexistent
## 4746 telephone may wed 634 2 999 0 nonexistent
## 4747 telephone may wed 717 3 999 0 nonexistent
## 4748 telephone may wed 249 1 999 0 nonexistent
## 4749 telephone may wed 228 1 999 0 nonexistent
## 4750 telephone may wed 122 1 999 0 nonexistent
## 4751 telephone may wed 544 1 999 0 nonexistent
## 4752 telephone may wed 951 2 999 0 nonexistent
## 4753 telephone may wed 412 1 999 0 nonexistent
## 4754 telephone may wed 264 1 999 0 nonexistent
## 4755 telephone may wed 211 1 999 0 nonexistent
## 4756 telephone may wed 97 1 999 0 nonexistent
## 4757 telephone may wed 192 1 999 0 nonexistent
## 4758 telephone may wed 160 1 999 0 nonexistent
## 4759 telephone may wed 97 1 999 0 nonexistent
## 4760 telephone may wed 244 1 999 0 nonexistent
## 4761 telephone may wed 578 2 999 0 nonexistent
## emp.var.rate cons.price.idx cons.conf.idx euribor3m nr.employed y
## 1 1.1 93.994 -36.4 4.857 5191 no
## 2 1.1 93.994 -36.4 4.857 5191 no
## 3 1.1 93.994 -36.4 4.857 5191 no
## 4 1.1 93.994 -36.4 4.857 5191 no
## 5 1.1 93.994 -36.4 4.857 5191 no
## 6 1.1 93.994 -36.4 4.857 5191 no
## 7 1.1 93.994 -36.4 4.857 5191 no
## 8 1.1 93.994 -36.4 4.857 5191 no
## 9 1.1 93.994 -36.4 4.857 5191 no
## 10 1.1 93.994 -36.4 4.857 5191 no
## 11 1.1 93.994 -36.4 4.857 5191 no
## 12 1.1 93.994 -36.4 4.857 5191 no
## 13 1.1 93.994 -36.4 4.857 5191 no
## 14 1.1 93.994 -36.4 4.857 5191 no
## 15 1.1 93.994 -36.4 4.857 5191 no
## 16 1.1 93.994 -36.4 4.857 5191 no
## 17 1.1 93.994 -36.4 4.857 5191 no
## 18 1.1 93.994 -36.4 4.857 5191 no
## 19 1.1 93.994 -36.4 4.857 5191 no
## 20 1.1 93.994 -36.4 4.857 5191 no
## 21 1.1 93.994 -36.4 4.857 5191 no
## 22 1.1 93.994 -36.4 4.857 5191 no
## 23 1.1 93.994 -36.4 4.857 5191 no
## 24 1.1 93.994 -36.4 4.857 5191 no
## 25 1.1 93.994 -36.4 4.857 5191 no
## 26 1.1 93.994 -36.4 4.857 5191 no
## 27 1.1 93.994 -36.4 4.857 5191 no
## 28 1.1 93.994 -36.4 4.857 5191 no
## 29 1.1 93.994 -36.4 4.857 5191 no
## 30 1.1 93.994 -36.4 4.857 5191 no
## 31 1.1 93.994 -36.4 4.857 5191 no
## 32 1.1 93.994 -36.4 4.857 5191 no
## 33 1.1 93.994 -36.4 4.857 5191 no
## 34 1.1 93.994 -36.4 4.857 5191 no
## 35 1.1 93.994 -36.4 4.857 5191 no
## 36 1.1 93.994 -36.4 4.857 5191 no
## 37 1.1 93.994 -36.4 4.857 5191 no
## 38 1.1 93.994 -36.4 4.857 5191 no
## 39 1.1 93.994 -36.4 4.857 5191 no
## 40 1.1 93.994 -36.4 4.857 5191 no
## 41 1.1 93.994 -36.4 4.857 5191 no
## 42 1.1 93.994 -36.4 4.857 5191 no
## 43 1.1 93.994 -36.4 4.857 5191 no
## 44 1.1 93.994 -36.4 4.857 5191 no
## 45 1.1 93.994 -36.4 4.857 5191 no
## 46 1.1 93.994 -36.4 4.857 5191 no
## 47 1.1 93.994 -36.4 4.857 5191 no
## 48 1.1 93.994 -36.4 4.857 5191 no
## 49 1.1 93.994 -36.4 4.857 5191 no
## 50 1.1 93.994 -36.4 4.857 5191 no
## 51 1.1 93.994 -36.4 4.857 5191 no
## 52 1.1 93.994 -36.4 4.857 5191 no
## 53 1.1 93.994 -36.4 4.857 5191 no
## 54 1.1 93.994 -36.4 4.857 5191 no
## 55 1.1 93.994 -36.4 4.857 5191 no
## 56 1.1 93.994 -36.4 4.857 5191 no
## 57 1.1 93.994 -36.4 4.857 5191 no
## 58 1.1 93.994 -36.4 4.857 5191 no
## 59 1.1 93.994 -36.4 4.857 5191 no
## 60 1.1 93.994 -36.4 4.857 5191 no
## 61 1.1 93.994 -36.4 4.857 5191 no
## 62 1.1 93.994 -36.4 4.857 5191 no
## 63 1.1 93.994 -36.4 4.857 5191 no
## 64 1.1 93.994 -36.4 4.857 5191 no
## 65 1.1 93.994 -36.4 4.857 5191 no
## 66 1.1 93.994 -36.4 4.857 5191 no
## 67 1.1 93.994 -36.4 4.857 5191 no
## 68 1.1 93.994 -36.4 4.857 5191 no
## 69 1.1 93.994 -36.4 4.857 5191 no
## 70 1.1 93.994 -36.4 4.857 5191 no
## 71 1.1 93.994 -36.4 4.857 5191 no
## 72 1.1 93.994 -36.4 4.857 5191 no
## 73 1.1 93.994 -36.4 4.857 5191 no
## 74 1.1 93.994 -36.4 4.857 5191 no
## 75 1.1 93.994 -36.4 4.857 5191 no
## 76 1.1 93.994 -36.4 4.857 5191 yes
## 77 1.1 93.994 -36.4 4.857 5191 no
## 78 1.1 93.994 -36.4 4.857 5191 no
## 79 1.1 93.994 -36.4 4.857 5191 no
## 80 1.1 93.994 -36.4 4.857 5191 no
## 81 1.1 93.994 -36.4 4.857 5191 no
## 82 1.1 93.994 -36.4 4.857 5191 no
## 83 1.1 93.994 -36.4 4.857 5191 no
## 84 1.1 93.994 -36.4 4.857 5191 yes
## 85 1.1 93.994 -36.4 4.857 5191 no
## 86 1.1 93.994 -36.4 4.857 5191 no
## 87 1.1 93.994 -36.4 4.857 5191 no
## 88 1.1 93.994 -36.4 4.857 5191 no
## 89 1.1 93.994 -36.4 4.857 5191 yes
## 90 1.1 93.994 -36.4 4.857 5191 no
## 91 1.1 93.994 -36.4 4.857 5191 no
## 92 1.1 93.994 -36.4 4.857 5191 no
## 93 1.1 93.994 -36.4 4.857 5191 no
## 94 1.1 93.994 -36.4 4.857 5191 no
## 95 1.1 93.994 -36.4 4.857 5191 no
## 96 1.1 93.994 -36.4 4.857 5191 no
## 97 1.1 93.994 -36.4 4.857 5191 no
## 98 1.1 93.994 -36.4 4.857 5191 no
## 99 1.1 93.994 -36.4 4.857 5191 no
## 100 1.1 93.994 -36.4 4.857 5191 no
## 101 1.1 93.994 -36.4 4.857 5191 no
## 102 1.1 93.994 -36.4 4.857 5191 no
## 103 1.1 93.994 -36.4 4.857 5191 no
## 104 1.1 93.994 -36.4 4.857 5191 no
## 105 1.1 93.994 -36.4 4.857 5191 no
## 106 1.1 93.994 -36.4 4.857 5191 no
## 107 1.1 93.994 -36.4 4.857 5191 no
## 108 1.1 93.994 -36.4 4.857 5191 no
## 109 1.1 93.994 -36.4 4.857 5191 no
## 110 1.1 93.994 -36.4 4.857 5191 no
## 111 1.1 93.994 -36.4 4.857 5191 no
## 112 1.1 93.994 -36.4 4.857 5191 no
## 113 1.1 93.994 -36.4 4.857 5191 no
## 114 1.1 93.994 -36.4 4.857 5191 no
## 115 1.1 93.994 -36.4 4.857 5191 no
## 116 1.1 93.994 -36.4 4.857 5191 no
## 117 1.1 93.994 -36.4 4.857 5191 no
## 118 1.1 93.994 -36.4 4.857 5191 no
## 119 1.1 93.994 -36.4 4.857 5191 no
## 120 1.1 93.994 -36.4 4.857 5191 no
## 121 1.1 93.994 -36.4 4.857 5191 no
## 122 1.1 93.994 -36.4 4.857 5191 no
## 123 1.1 93.994 -36.4 4.857 5191 no
## 124 1.1 93.994 -36.4 4.857 5191 no
## 125 1.1 93.994 -36.4 4.857 5191 no
## 126 1.1 93.994 -36.4 4.857 5191 no
## 127 1.1 93.994 -36.4 4.857 5191 no
## 128 1.1 93.994 -36.4 4.857 5191 no
## 129 1.1 93.994 -36.4 4.857 5191 no
## 130 1.1 93.994 -36.4 4.857 5191 yes
## 131 1.1 93.994 -36.4 4.857 5191 no
## 132 1.1 93.994 -36.4 4.857 5191 no
## 133 1.1 93.994 -36.4 4.857 5191 no
## 134 1.1 93.994 -36.4 4.857 5191 no
## 135 1.1 93.994 -36.4 4.857 5191 no
## 136 1.1 93.994 -36.4 4.857 5191 no
## 137 1.1 93.994 -36.4 4.857 5191 no
## 138 1.1 93.994 -36.4 4.857 5191 no
## 139 1.1 93.994 -36.4 4.857 5191 no
## 140 1.1 93.994 -36.4 4.857 5191 yes
## 141 1.1 93.994 -36.4 4.857 5191 no
## 142 1.1 93.994 -36.4 4.857 5191 no
## 143 1.1 93.994 -36.4 4.857 5191 no
## 144 1.1 93.994 -36.4 4.857 5191 no
## 145 1.1 93.994 -36.4 4.857 5191 no
## 146 1.1 93.994 -36.4 4.857 5191 no
## 147 1.1 93.994 -36.4 4.857 5191 no
## 148 1.1 93.994 -36.4 4.857 5191 no
## 149 1.1 93.994 -36.4 4.857 5191 no
## 150 1.1 93.994 -36.4 4.857 5191 no
## 151 1.1 93.994 -36.4 4.857 5191 no
## 152 1.1 93.994 -36.4 4.857 5191 no
## 153 1.1 93.994 -36.4 4.857 5191 no
## 154 1.1 93.994 -36.4 4.857 5191 no
## 155 1.1 93.994 -36.4 4.857 5191 no
## 156 1.1 93.994 -36.4 4.857 5191 no
## 157 1.1 93.994 -36.4 4.857 5191 no
## 158 1.1 93.994 -36.4 4.857 5191 no
## 159 1.1 93.994 -36.4 4.857 5191 no
## 160 1.1 93.994 -36.4 4.857 5191 no
## 161 1.1 93.994 -36.4 4.857 5191 no
## 162 1.1 93.994 -36.4 4.857 5191 no
## 163 1.1 93.994 -36.4 4.857 5191 no
## 164 1.1 93.994 -36.4 4.857 5191 no
## 165 1.1 93.994 -36.4 4.857 5191 no
## 166 1.1 93.994 -36.4 4.857 5191 no
## 167 1.1 93.994 -36.4 4.857 5191 no
## 168 1.1 93.994 -36.4 4.857 5191 no
## 169 1.1 93.994 -36.4 4.857 5191 no
## 170 1.1 93.994 -36.4 4.857 5191 no
## 171 1.1 93.994 -36.4 4.857 5191 no
## 172 1.1 93.994 -36.4 4.857 5191 no
## 173 1.1 93.994 -36.4 4.857 5191 no
## 174 1.1 93.994 -36.4 4.857 5191 no
## 175 1.1 93.994 -36.4 4.857 5191 no
## 176 1.1 93.994 -36.4 4.857 5191 no
## 177 1.1 93.994 -36.4 4.857 5191 no
## 178 1.1 93.994 -36.4 4.857 5191 no
## 179 1.1 93.994 -36.4 4.857 5191 no
## 180 1.1 93.994 -36.4 4.857 5191 no
## 181 1.1 93.994 -36.4 4.857 5191 no
## 182 1.1 93.994 -36.4 4.857 5191 no
## 183 1.1 93.994 -36.4 4.857 5191 yes
## 184 1.1 93.994 -36.4 4.857 5191 no
## 185 1.1 93.994 -36.4 4.857 5191 no
## 186 1.1 93.994 -36.4 4.857 5191 no
## 187 1.1 93.994 -36.4 4.857 5191 no
## 188 1.1 93.994 -36.4 4.857 5191 no
## 189 1.1 93.994 -36.4 4.857 5191 no
## 190 1.1 93.994 -36.4 4.857 5191 no
## 191 1.1 93.994 -36.4 4.857 5191 no
## 192 1.1 93.994 -36.4 4.857 5191 no
## 193 1.1 93.994 -36.4 4.857 5191 no
## 194 1.1 93.994 -36.4 4.857 5191 no
## 195 1.1 93.994 -36.4 4.857 5191 no
## 196 1.1 93.994 -36.4 4.857 5191 no
## 197 1.1 93.994 -36.4 4.857 5191 no
## 198 1.1 93.994 -36.4 4.857 5191 no
## 199 1.1 93.994 -36.4 4.857 5191 no
## 200 1.1 93.994 -36.4 4.857 5191 no
## 201 1.1 93.994 -36.4 4.857 5191 no
## 202 1.1 93.994 -36.4 4.857 5191 no
## 203 1.1 93.994 -36.4 4.857 5191 no
## 204 1.1 93.994 -36.4 4.857 5191 no
## 205 1.1 93.994 -36.4 4.857 5191 no
## 206 1.1 93.994 -36.4 4.857 5191 no
## 207 1.1 93.994 -36.4 4.857 5191 no
## 208 1.1 93.994 -36.4 4.857 5191 no
## 209 1.1 93.994 -36.4 4.857 5191 no
## 210 1.1 93.994 -36.4 4.857 5191 no
## 211 1.1 93.994 -36.4 4.857 5191 no
## 212 1.1 93.994 -36.4 4.857 5191 no
## 213 1.1 93.994 -36.4 4.857 5191 no
## 214 1.1 93.994 -36.4 4.857 5191 no
## 215 1.1 93.994 -36.4 4.857 5191 no
## 216 1.1 93.994 -36.4 4.857 5191 no
## 217 1.1 93.994 -36.4 4.857 5191 no
## 218 1.1 93.994 -36.4 4.857 5191 no
## 219 1.1 93.994 -36.4 4.857 5191 no
## 220 1.1 93.994 -36.4 4.857 5191 no
## 221 1.1 93.994 -36.4 4.857 5191 no
## 222 1.1 93.994 -36.4 4.857 5191 no
## 223 1.1 93.994 -36.4 4.857 5191 no
## 224 1.1 93.994 -36.4 4.857 5191 no
## 225 1.1 93.994 -36.4 4.857 5191 no
## 226 1.1 93.994 -36.4 4.857 5191 no
## 227 1.1 93.994 -36.4 4.857 5191 no
## 228 1.1 93.994 -36.4 4.857 5191 no
## 229 1.1 93.994 -36.4 4.857 5191 no
## 230 1.1 93.994 -36.4 4.857 5191 no
## 231 1.1 93.994 -36.4 4.857 5191 no
## 232 1.1 93.994 -36.4 4.857 5191 no
## 233 1.1 93.994 -36.4 4.857 5191 no
## 234 1.1 93.994 -36.4 4.857 5191 no
## 235 1.1 93.994 -36.4 4.857 5191 no
## 236 1.1 93.994 -36.4 4.857 5191 no
## 237 1.1 93.994 -36.4 4.857 5191 no
## 238 1.1 93.994 -36.4 4.857 5191 no
## 239 1.1 93.994 -36.4 4.857 5191 no
## 240 1.1 93.994 -36.4 4.857 5191 no
## 241 1.1 93.994 -36.4 4.857 5191 no
## 242 1.1 93.994 -36.4 4.857 5191 no
## 243 1.1 93.994 -36.4 4.857 5191 no
## 244 1.1 93.994 -36.4 4.857 5191 no
## 245 1.1 93.994 -36.4 4.857 5191 no
## 246 1.1 93.994 -36.4 4.857 5191 no
## 247 1.1 93.994 -36.4 4.857 5191 no
## 248 1.1 93.994 -36.4 4.857 5191 no
## 249 1.1 93.994 -36.4 4.857 5191 no
## 250 1.1 93.994 -36.4 4.857 5191 no
## 251 1.1 93.994 -36.4 4.857 5191 no
## 252 1.1 93.994 -36.4 4.857 5191 no
## 253 1.1 93.994 -36.4 4.857 5191 no
## 254 1.1 93.994 -36.4 4.857 5191 no
## 255 1.1 93.994 -36.4 4.857 5191 no
## 256 1.1 93.994 -36.4 4.857 5191 no
## 257 1.1 93.994 -36.4 4.857 5191 no
## 258 1.1 93.994 -36.4 4.857 5191 no
## 259 1.1 93.994 -36.4 4.857 5191 no
## 260 1.1 93.994 -36.4 4.857 5191 no
## 261 1.1 93.994 -36.4 4.857 5191 no
## 262 1.1 93.994 -36.4 4.857 5191 no
## 263 1.1 93.994 -36.4 4.857 5191 no
## 264 1.1 93.994 -36.4 4.857 5191 no
## 265 1.1 93.994 -36.4 4.857 5191 no
## 266 1.1 93.994 -36.4 4.857 5191 no
## 267 1.1 93.994 -36.4 4.857 5191 no
## 268 1.1 93.994 -36.4 4.857 5191 no
## 269 1.1 93.994 -36.4 4.857 5191 no
## 270 1.1 93.994 -36.4 4.857 5191 no
## 271 1.1 93.994 -36.4 4.857 5191 no
## 272 1.1 93.994 -36.4 4.857 5191 no
## 273 1.1 93.994 -36.4 4.857 5191 no
## 274 1.1 93.994 -36.4 4.857 5191 no
## 275 1.1 93.994 -36.4 4.857 5191 no
## 276 1.1 93.994 -36.4 4.857 5191 no
## 277 1.1 93.994 -36.4 4.857 5191 no
## 278 1.1 93.994 -36.4 4.857 5191 no
## 279 1.1 93.994 -36.4 4.857 5191 no
## 280 1.1 93.994 -36.4 4.857 5191 no
## 281 1.1 93.994 -36.4 4.857 5191 no
## 282 1.1 93.994 -36.4 4.857 5191 no
## 283 1.1 93.994 -36.4 4.857 5191 no
## 284 1.1 93.994 -36.4 4.857 5191 no
## 285 1.1 93.994 -36.4 4.857 5191 no
## 286 1.1 93.994 -36.4 4.857 5191 no
## 287 1.1 93.994 -36.4 4.857 5191 yes
## 288 1.1 93.994 -36.4 4.857 5191 no
## 289 1.1 93.994 -36.4 4.857 5191 no
## 290 1.1 93.994 -36.4 4.857 5191 no
## 291 1.1 93.994 -36.4 4.857 5191 no
## 292 1.1 93.994 -36.4 4.857 5191 no
## 293 1.1 93.994 -36.4 4.857 5191 no
## 294 1.1 93.994 -36.4 4.857 5191 no
## 295 1.1 93.994 -36.4 4.857 5191 no
## 296 1.1 93.994 -36.4 4.857 5191 no
## 297 1.1 93.994 -36.4 4.857 5191 no
## 298 1.1 93.994 -36.4 4.857 5191 no
## 299 1.1 93.994 -36.4 4.857 5191 no
## 300 1.1 93.994 -36.4 4.857 5191 no
## 301 1.1 93.994 -36.4 4.857 5191 no
## 302 1.1 93.994 -36.4 4.857 5191 no
## 303 1.1 93.994 -36.4 4.857 5191 no
## 304 1.1 93.994 -36.4 4.857 5191 no
## 305 1.1 93.994 -36.4 4.857 5191 no
## 306 1.1 93.994 -36.4 4.857 5191 no
## 307 1.1 93.994 -36.4 4.857 5191 no
## 308 1.1 93.994 -36.4 4.857 5191 no
## 309 1.1 93.994 -36.4 4.857 5191 no
## 310 1.1 93.994 -36.4 4.857 5191 no
## 311 1.1 93.994 -36.4 4.857 5191 no
## 312 1.1 93.994 -36.4 4.857 5191 no
## 313 1.1 93.994 -36.4 4.857 5191 no
## 314 1.1 93.994 -36.4 4.857 5191 no
## 315 1.1 93.994 -36.4 4.857 5191 no
## 316 1.1 93.994 -36.4 4.857 5191 no
## 317 1.1 93.994 -36.4 4.857 5191 no
## 318 1.1 93.994 -36.4 4.857 5191 no
## 319 1.1 93.994 -36.4 4.857 5191 no
## 320 1.1 93.994 -36.4 4.857 5191 no
## 321 1.1 93.994 -36.4 4.857 5191 no
## 322 1.1 93.994 -36.4 4.857 5191 no
## 323 1.1 93.994 -36.4 4.857 5191 no
## 324 1.1 93.994 -36.4 4.857 5191 no
## 325 1.1 93.994 -36.4 4.857 5191 no
## 326 1.1 93.994 -36.4 4.857 5191 no
## 327 1.1 93.994 -36.4 4.857 5191 no
## 328 1.1 93.994 -36.4 4.857 5191 no
## 329 1.1 93.994 -36.4 4.857 5191 no
## 330 1.1 93.994 -36.4 4.857 5191 no
## 331 1.1 93.994 -36.4 4.857 5191 no
## 332 1.1 93.994 -36.4 4.857 5191 no
## 333 1.1 93.994 -36.4 4.857 5191 no
## 334 1.1 93.994 -36.4 4.857 5191 no
## 335 1.1 93.994 -36.4 4.857 5191 no
## 336 1.1 93.994 -36.4 4.857 5191 no
## 337 1.1 93.994 -36.4 4.857 5191 no
## 338 1.1 93.994 -36.4 4.857 5191 no
## 339 1.1 93.994 -36.4 4.857 5191 no
## 340 1.1 93.994 -36.4 4.857 5191 no
## 341 1.1 93.994 -36.4 4.857 5191 no
## 342 1.1 93.994 -36.4 4.857 5191 no
## 343 1.1 93.994 -36.4 4.857 5191 no
## 344 1.1 93.994 -36.4 4.857 5191 no
## 345 1.1 93.994 -36.4 4.857 5191 no
## 346 1.1 93.994 -36.4 4.857 5191 no
## 347 1.1 93.994 -36.4 4.857 5191 no
## 348 1.1 93.994 -36.4 4.857 5191 no
## 349 1.1 93.994 -36.4 4.857 5191 no
## 350 1.1 93.994 -36.4 4.857 5191 no
## 351 1.1 93.994 -36.4 4.857 5191 no
## 352 1.1 93.994 -36.4 4.857 5191 no
## 353 1.1 93.994 -36.4 4.857 5191 no
## 354 1.1 93.994 -36.4 4.857 5191 no
## 355 1.1 93.994 -36.4 4.857 5191 no
## 356 1.1 93.994 -36.4 4.857 5191 no
## 357 1.1 93.994 -36.4 4.857 5191 no
## 358 1.1 93.994 -36.4 4.857 5191 no
## 359 1.1 93.994 -36.4 4.857 5191 no
## 360 1.1 93.994 -36.4 4.857 5191 no
## 361 1.1 93.994 -36.4 4.857 5191 no
## 362 1.1 93.994 -36.4 4.857 5191 no
## 363 1.1 93.994 -36.4 4.857 5191 no
## 364 1.1 93.994 -36.4 4.857 5191 no
## 365 1.1 93.994 -36.4 4.857 5191 no
## 366 1.1 93.994 -36.4 4.857 5191 no
## 367 1.1 93.994 -36.4 4.857 5191 no
## 368 1.1 93.994 -36.4 4.857 5191 no
## 369 1.1 93.994 -36.4 4.857 5191 no
## 370 1.1 93.994 -36.4 4.857 5191 no
## 371 1.1 93.994 -36.4 4.857 5191 no
## 372 1.1 93.994 -36.4 4.857 5191 no
## 373 1.1 93.994 -36.4 4.857 5191 no
## 374 1.1 93.994 -36.4 4.857 5191 no
## 375 1.1 93.994 -36.4 4.857 5191 no
## 376 1.1 93.994 -36.4 4.857 5191 no
## 377 1.1 93.994 -36.4 4.857 5191 no
## 378 1.1 93.994 -36.4 4.857 5191 no
## 379 1.1 93.994 -36.4 4.857 5191 no
## 380 1.1 93.994 -36.4 4.857 5191 no
## 381 1.1 93.994 -36.4 4.857 5191 no
## 382 1.1 93.994 -36.4 4.857 5191 no
## 383 1.1 93.994 -36.4 4.857 5191 no
## 384 1.1 93.994 -36.4 4.857 5191 no
## 385 1.1 93.994 -36.4 4.857 5191 no
## 386 1.1 93.994 -36.4 4.857 5191 no
## 387 1.1 93.994 -36.4 4.857 5191 no
## 388 1.1 93.994 -36.4 4.857 5191 no
## 389 1.1 93.994 -36.4 4.857 5191 yes
## 390 1.1 93.994 -36.4 4.857 5191 yes
## 391 1.1 93.994 -36.4 4.857 5191 no
## 392 1.1 93.994 -36.4 4.857 5191 no
## 393 1.1 93.994 -36.4 4.857 5191 no
## 394 1.1 93.994 -36.4 4.857 5191 no
## 395 1.1 93.994 -36.4 4.857 5191 no
## 396 1.1 93.994 -36.4 4.857 5191 no
## 397 1.1 93.994 -36.4 4.857 5191 no
## 398 1.1 93.994 -36.4 4.857 5191 no
## 399 1.1 93.994 -36.4 4.857 5191 no
## 400 1.1 93.994 -36.4 4.857 5191 no
## 401 1.1 93.994 -36.4 4.857 5191 no
## 402 1.1 93.994 -36.4 4.857 5191 no
## 403 1.1 93.994 -36.4 4.857 5191 no
## 404 1.1 93.994 -36.4 4.857 5191 no
## 405 1.1 93.994 -36.4 4.857 5191 no
## 406 1.1 93.994 -36.4 4.857 5191 no
## 407 1.1 93.994 -36.4 4.857 5191 no
## 408 1.1 93.994 -36.4 4.857 5191 no
## 409 1.1 93.994 -36.4 4.857 5191 no
## 410 1.1 93.994 -36.4 4.857 5191 no
## 411 1.1 93.994 -36.4 4.857 5191 no
## 412 1.1 93.994 -36.4 4.857 5191 no
## 413 1.1 93.994 -36.4 4.857 5191 no
## 414 1.1 93.994 -36.4 4.857 5191 no
## 415 1.1 93.994 -36.4 4.857 5191 no
## 416 1.1 93.994 -36.4 4.857 5191 no
## 417 1.1 93.994 -36.4 4.857 5191 no
## 418 1.1 93.994 -36.4 4.857 5191 no
## 419 1.1 93.994 -36.4 4.857 5191 no
## 420 1.1 93.994 -36.4 4.857 5191 no
## 421 1.1 93.994 -36.4 4.857 5191 no
## 422 1.1 93.994 -36.4 4.857 5191 no
## 423 1.1 93.994 -36.4 4.857 5191 no
## 424 1.1 93.994 -36.4 4.857 5191 no
## 425 1.1 93.994 -36.4 4.857 5191 no
## 426 1.1 93.994 -36.4 4.857 5191 no
## 427 1.1 93.994 -36.4 4.857 5191 no
## 428 1.1 93.994 -36.4 4.857 5191 no
## 429 1.1 93.994 -36.4 4.857 5191 no
## 430 1.1 93.994 -36.4 4.857 5191 no
## 431 1.1 93.994 -36.4 4.857 5191 no
## 432 1.1 93.994 -36.4 4.857 5191 no
## 433 1.1 93.994 -36.4 4.857 5191 no
## 434 1.1 93.994 -36.4 4.857 5191 no
## 435 1.1 93.994 -36.4 4.857 5191 no
## 436 1.1 93.994 -36.4 4.857 5191 no
## 437 1.1 93.994 -36.4 4.857 5191 no
## 438 1.1 93.994 -36.4 4.857 5191 no
## 439 1.1 93.994 -36.4 4.857 5191 no
## 440 1.1 93.994 -36.4 4.857 5191 no
## 441 1.1 93.994 -36.4 4.857 5191 no
## 442 1.1 93.994 -36.4 4.857 5191 no
## 443 1.1 93.994 -36.4 4.857 5191 no
## 444 1.1 93.994 -36.4 4.857 5191 no
## 445 1.1 93.994 -36.4 4.857 5191 no
## 446 1.1 93.994 -36.4 4.857 5191 no
## 447 1.1 93.994 -36.4 4.857 5191 yes
## 448 1.1 93.994 -36.4 4.857 5191 no
## 449 1.1 93.994 -36.4 4.857 5191 no
## 450 1.1 93.994 -36.4 4.857 5191 no
## 451 1.1 93.994 -36.4 4.857 5191 no
## 452 1.1 93.994 -36.4 4.857 5191 no
## 453 1.1 93.994 -36.4 4.857 5191 no
## 454 1.1 93.994 -36.4 4.857 5191 no
## 455 1.1 93.994 -36.4 4.857 5191 no
## 456 1.1 93.994 -36.4 4.857 5191 no
## 457 1.1 93.994 -36.4 4.857 5191 no
## 458 1.1 93.994 -36.4 4.857 5191 no
## 459 1.1 93.994 -36.4 4.857 5191 no
## 460 1.1 93.994 -36.4 4.857 5191 no
## 461 1.1 93.994 -36.4 4.857 5191 no
## 462 1.1 93.994 -36.4 4.857 5191 no
## 463 1.1 93.994 -36.4 4.857 5191 no
## 464 1.1 93.994 -36.4 4.857 5191 no
## 465 1.1 93.994 -36.4 4.857 5191 no
## 466 1.1 93.994 -36.4 4.857 5191 no
## 467 1.1 93.994 -36.4 4.857 5191 no
## 468 1.1 93.994 -36.4 4.857 5191 no
## 469 1.1 93.994 -36.4 4.857 5191 no
## 470 1.1 93.994 -36.4 4.857 5191 yes
## 471 1.1 93.994 -36.4 4.857 5191 no
## 472 1.1 93.994 -36.4 4.857 5191 no
## 473 1.1 93.994 -36.4 4.857 5191 no
## 474 1.1 93.994 -36.4 4.857 5191 no
## 475 1.1 93.994 -36.4 4.857 5191 no
## 476 1.1 93.994 -36.4 4.857 5191 no
## 477 1.1 93.994 -36.4 4.857 5191 no
## 478 1.1 93.994 -36.4 4.857 5191 no
## 479 1.1 93.994 -36.4 4.857 5191 no
## 480 1.1 93.994 -36.4 4.857 5191 no
## 481 1.1 93.994 -36.4 4.857 5191 no
## 482 1.1 93.994 -36.4 4.857 5191 no
## 483 1.1 93.994 -36.4 4.857 5191 no
## 484 1.1 93.994 -36.4 4.857 5191 no
## 485 1.1 93.994 -36.4 4.857 5191 no
## 486 1.1 93.994 -36.4 4.857 5191 no
## 487 1.1 93.994 -36.4 4.857 5191 no
## 488 1.1 93.994 -36.4 4.857 5191 no
## 489 1.1 93.994 -36.4 4.857 5191 no
## 490 1.1 93.994 -36.4 4.857 5191 no
## 491 1.1 93.994 -36.4 4.857 5191 no
## 492 1.1 93.994 -36.4 4.857 5191 no
## 493 1.1 93.994 -36.4 4.857 5191 no
## 494 1.1 93.994 -36.4 4.857 5191 no
## 495 1.1 93.994 -36.4 4.857 5191 no
## 496 1.1 93.994 -36.4 4.857 5191 no
## 497 1.1 93.994 -36.4 4.857 5191 no
## 498 1.1 93.994 -36.4 4.857 5191 no
## 499 1.1 93.994 -36.4 4.857 5191 no
## 500 1.1 93.994 -36.4 4.857 5191 no
## 501 1.1 93.994 -36.4 4.857 5191 no
## 502 1.1 93.994 -36.4 4.857 5191 no
## 503 1.1 93.994 -36.4 4.857 5191 no
## 504 1.1 93.994 -36.4 4.857 5191 no
## 505 1.1 93.994 -36.4 4.857 5191 yes
## 506 1.1 93.994 -36.4 4.857 5191 no
## 507 1.1 93.994 -36.4 4.857 5191 no
## 508 1.1 93.994 -36.4 4.857 5191 no
## 509 1.1 93.994 -36.4 4.857 5191 no
## 510 1.1 93.994 -36.4 4.857 5191 no
## 511 1.1 93.994 -36.4 4.857 5191 no
## 512 1.1 93.994 -36.4 4.857 5191 no
## 513 1.1 93.994 -36.4 4.857 5191 no
## 514 1.1 93.994 -36.4 4.857 5191 no
## 515 1.1 93.994 -36.4 4.857 5191 no
## 516 1.1 93.994 -36.4 4.857 5191 no
## 517 1.1 93.994 -36.4 4.857 5191 no
## 518 1.1 93.994 -36.4 4.857 5191 no
## 519 1.1 93.994 -36.4 4.857 5191 no
## 520 1.1 93.994 -36.4 4.857 5191 no
## 521 1.1 93.994 -36.4 4.857 5191 no
## 522 1.1 93.994 -36.4 4.857 5191 no
## 523 1.1 93.994 -36.4 4.857 5191 no
## 524 1.1 93.994 -36.4 4.857 5191 no
## 525 1.1 93.994 -36.4 4.857 5191 no
## 526 1.1 93.994 -36.4 4.857 5191 no
## 527 1.1 93.994 -36.4 4.857 5191 no
## 528 1.1 93.994 -36.4 4.857 5191 no
## 529 1.1 93.994 -36.4 4.857 5191 no
## 530 1.1 93.994 -36.4 4.857 5191 no
## 531 1.1 93.994 -36.4 4.857 5191 no
## 532 1.1 93.994 -36.4 4.857 5191 no
## 533 1.1 93.994 -36.4 4.857 5191 no
## 534 1.1 93.994 -36.4 4.857 5191 no
## 535 1.1 93.994 -36.4 4.857 5191 no
## 536 1.1 93.994 -36.4 4.857 5191 no
## 537 1.1 93.994 -36.4 4.857 5191 no
## 538 1.1 93.994 -36.4 4.857 5191 no
## 539 1.1 93.994 -36.4 4.857 5191 no
## 540 1.1 93.994 -36.4 4.857 5191 no
## 541 1.1 93.994 -36.4 4.857 5191 no
## 542 1.1 93.994 -36.4 4.857 5191 no
## 543 1.1 93.994 -36.4 4.857 5191 no
## 544 1.1 93.994 -36.4 4.857 5191 no
## 545 1.1 93.994 -36.4 4.857 5191 no
## 546 1.1 93.994 -36.4 4.857 5191 no
## 547 1.1 93.994 -36.4 4.857 5191 no
## 548 1.1 93.994 -36.4 4.857 5191 no
## 549 1.1 93.994 -36.4 4.857 5191 no
## 550 1.1 93.994 -36.4 4.857 5191 no
## 551 1.1 93.994 -36.4 4.857 5191 no
## 552 1.1 93.994 -36.4 4.857 5191 no
## 553 1.1 93.994 -36.4 4.857 5191 no
## 554 1.1 93.994 -36.4 4.857 5191 no
## 555 1.1 93.994 -36.4 4.857 5191 no
## 556 1.1 93.994 -36.4 4.857 5191 no
## 557 1.1 93.994 -36.4 4.857 5191 yes
## 558 1.1 93.994 -36.4 4.857 5191 no
## 559 1.1 93.994 -36.4 4.857 5191 no
## 560 1.1 93.994 -36.4 4.857 5191 no
## 561 1.1 93.994 -36.4 4.857 5191 no
## 562 1.1 93.994 -36.4 4.857 5191 no
## 563 1.1 93.994 -36.4 4.857 5191 no
## 564 1.1 93.994 -36.4 4.857 5191 no
## 565 1.1 93.994 -36.4 4.857 5191 no
## 566 1.1 93.994 -36.4 4.857 5191 no
## 567 1.1 93.994 -36.4 4.857 5191 no
## 568 1.1 93.994 -36.4 4.857 5191 no
## 569 1.1 93.994 -36.4 4.857 5191 no
## 570 1.1 93.994 -36.4 4.857 5191 no
## 571 1.1 93.994 -36.4 4.857 5191 no
## 572 1.1 93.994 -36.4 4.857 5191 no
## 573 1.1 93.994 -36.4 4.857 5191 no
## 574 1.1 93.994 -36.4 4.857 5191 no
## 575 1.1 93.994 -36.4 4.857 5191 no
## 576 1.1 93.994 -36.4 4.857 5191 no
## 577 1.1 93.994 -36.4 4.857 5191 no
## 578 1.1 93.994 -36.4 4.857 5191 no
## 579 1.1 93.994 -36.4 4.857 5191 no
## 580 1.1 93.994 -36.4 4.857 5191 no
## 581 1.1 93.994 -36.4 4.857 5191 no
## 582 1.1 93.994 -36.4 4.857 5191 no
## 583 1.1 93.994 -36.4 4.857 5191 no
## 584 1.1 93.994 -36.4 4.857 5191 no
## 585 1.1 93.994 -36.4 4.857 5191 no
## 586 1.1 93.994 -36.4 4.857 5191 no
## 587 1.1 93.994 -36.4 4.857 5191 no
## 588 1.1 93.994 -36.4 4.857 5191 no
## 589 1.1 93.994 -36.4 4.857 5191 no
## 590 1.1 93.994 -36.4 4.857 5191 no
## 591 1.1 93.994 -36.4 4.857 5191 no
## 592 1.1 93.994 -36.4 4.857 5191 no
## 593 1.1 93.994 -36.4 4.857 5191 no
## 594 1.1 93.994 -36.4 4.857 5191 no
## 595 1.1 93.994 -36.4 4.857 5191 no
## 596 1.1 93.994 -36.4 4.857 5191 no
## 597 1.1 93.994 -36.4 4.857 5191 no
## 598 1.1 93.994 -36.4 4.857 5191 no
## 599 1.1 93.994 -36.4 4.857 5191 no
## 600 1.1 93.994 -36.4 4.857 5191 no
## 601 1.1 93.994 -36.4 4.857 5191 no
## 602 1.1 93.994 -36.4 4.857 5191 no
## 603 1.1 93.994 -36.4 4.857 5191 no
## 604 1.1 93.994 -36.4 4.857 5191 no
## 605 1.1 93.994 -36.4 4.857 5191 no
## 606 1.1 93.994 -36.4 4.857 5191 no
## 607 1.1 93.994 -36.4 4.857 5191 no
## 608 1.1 93.994 -36.4 4.857 5191 no
## 609 1.1 93.994 -36.4 4.857 5191 no
## 610 1.1 93.994 -36.4 4.857 5191 no
## 611 1.1 93.994 -36.4 4.857 5191 no
## 612 1.1 93.994 -36.4 4.857 5191 no
## 613 1.1 93.994 -36.4 4.857 5191 no
## 614 1.1 93.994 -36.4 4.857 5191 no
## 615 1.1 93.994 -36.4 4.857 5191 no
## 616 1.1 93.994 -36.4 4.857 5191 no
## 617 1.1 93.994 -36.4 4.857 5191 no
## 618 1.1 93.994 -36.4 4.857 5191 no
## 619 1.1 93.994 -36.4 4.857 5191 no
## 620 1.1 93.994 -36.4 4.857 5191 no
## 621 1.1 93.994 -36.4 4.857 5191 no
## 622 1.1 93.994 -36.4 4.857 5191 no
## 623 1.1 93.994 -36.4 4.857 5191 no
## 624 1.1 93.994 -36.4 4.857 5191 no
## 625 1.1 93.994 -36.4 4.857 5191 no
## 626 1.1 93.994 -36.4 4.857 5191 no
## 627 1.1 93.994 -36.4 4.857 5191 no
## 628 1.1 93.994 -36.4 4.857 5191 no
## 629 1.1 93.994 -36.4 4.857 5191 no
## 630 1.1 93.994 -36.4 4.857 5191 no
## 631 1.1 93.994 -36.4 4.857 5191 no
## 632 1.1 93.994 -36.4 4.857 5191 no
## 633 1.1 93.994 -36.4 4.857 5191 no
## 634 1.1 93.994 -36.4 4.857 5191 no
## 635 1.1 93.994 -36.4 4.857 5191 no
## 636 1.1 93.994 -36.4 4.857 5191 no
## 637 1.1 93.994 -36.4 4.857 5191 no
## 638 1.1 93.994 -36.4 4.857 5191 no
## 639 1.1 93.994 -36.4 4.857 5191 no
## 640 1.1 93.994 -36.4 4.857 5191 no
## 641 1.1 93.994 -36.4 4.857 5191 no
## 642 1.1 93.994 -36.4 4.857 5191 no
## 643 1.1 93.994 -36.4 4.857 5191 no
## 644 1.1 93.994 -36.4 4.857 5191 no
## 645 1.1 93.994 -36.4 4.857 5191 no
## 646 1.1 93.994 -36.4 4.857 5191 no
## 647 1.1 93.994 -36.4 4.857 5191 no
## 648 1.1 93.994 -36.4 4.857 5191 no
## 649 1.1 93.994 -36.4 4.857 5191 no
## 650 1.1 93.994 -36.4 4.857 5191 no
## 651 1.1 93.994 -36.4 4.857 5191 no
## 652 1.1 93.994 -36.4 4.857 5191 no
## 653 1.1 93.994 -36.4 4.857 5191 no
## 654 1.1 93.994 -36.4 4.857 5191 no
## 655 1.1 93.994 -36.4 4.857 5191 no
## 656 1.1 93.994 -36.4 4.857 5191 no
## 657 1.1 93.994 -36.4 4.857 5191 no
## 658 1.1 93.994 -36.4 4.857 5191 no
## 659 1.1 93.994 -36.4 4.857 5191 no
## 660 1.1 93.994 -36.4 4.857 5191 no
## 661 1.1 93.994 -36.4 4.857 5191 no
## 662 1.1 93.994 -36.4 4.857 5191 no
## 663 1.1 93.994 -36.4 4.857 5191 no
## 664 1.1 93.994 -36.4 4.857 5191 no
## 665 1.1 93.994 -36.4 4.857 5191 no
## 666 1.1 93.994 -36.4 4.857 5191 no
## 667 1.1 93.994 -36.4 4.857 5191 no
## 668 1.1 93.994 -36.4 4.857 5191 no
## 669 1.1 93.994 -36.4 4.857 5191 no
## 670 1.1 93.994 -36.4 4.857 5191 no
## 671 1.1 93.994 -36.4 4.857 5191 no
## 672 1.1 93.994 -36.4 4.857 5191 no
## 673 1.1 93.994 -36.4 4.857 5191 no
## 674 1.1 93.994 -36.4 4.857 5191 no
## 675 1.1 93.994 -36.4 4.857 5191 no
## 676 1.1 93.994 -36.4 4.857 5191 no
## 677 1.1 93.994 -36.4 4.857 5191 no
## 678 1.1 93.994 -36.4 4.857 5191 no
## 679 1.1 93.994 -36.4 4.857 5191 no
## 680 1.1 93.994 -36.4 4.857 5191 no
## 681 1.1 93.994 -36.4 4.857 5191 no
## 682 1.1 93.994 -36.4 4.857 5191 yes
## 683 1.1 93.994 -36.4 4.857 5191 no
## 684 1.1 93.994 -36.4 4.857 5191 no
## 685 1.1 93.994 -36.4 4.857 5191 no
## 686 1.1 93.994 -36.4 4.857 5191 no
## 687 1.1 93.994 -36.4 4.857 5191 no
## 688 1.1 93.994 -36.4 4.857 5191 no
## 689 1.1 93.994 -36.4 4.857 5191 no
## 690 1.1 93.994 -36.4 4.857 5191 no
## 691 1.1 93.994 -36.4 4.857 5191 no
## 692 1.1 93.994 -36.4 4.857 5191 no
## 693 1.1 93.994 -36.4 4.857 5191 no
## 694 1.1 93.994 -36.4 4.857 5191 no
## 695 1.1 93.994 -36.4 4.857 5191 no
## 696 1.1 93.994 -36.4 4.857 5191 no
## 697 1.1 93.994 -36.4 4.857 5191 no
## 698 1.1 93.994 -36.4 4.857 5191 no
## 699 1.1 93.994 -36.4 4.857 5191 no
## 700 1.1 93.994 -36.4 4.857 5191 no
## 701 1.1 93.994 -36.4 4.857 5191 no
## 702 1.1 93.994 -36.4 4.857 5191 no
## 703 1.1 93.994 -36.4 4.857 5191 no
## 704 1.1 93.994 -36.4 4.857 5191 no
## 705 1.1 93.994 -36.4 4.857 5191 no
## 706 1.1 93.994 -36.4 4.857 5191 no
## 707 1.1 93.994 -36.4 4.857 5191 no
## 708 1.1 93.994 -36.4 4.857 5191 no
## 709 1.1 93.994 -36.4 4.857 5191 no
## 710 1.1 93.994 -36.4 4.857 5191 no
## 711 1.1 93.994 -36.4 4.857 5191 no
## 712 1.1 93.994 -36.4 4.857 5191 no
## 713 1.1 93.994 -36.4 4.857 5191 no
## 714 1.1 93.994 -36.4 4.857 5191 no
## 715 1.1 93.994 -36.4 4.857 5191 no
## 716 1.1 93.994 -36.4 4.857 5191 no
## 717 1.1 93.994 -36.4 4.857 5191 no
## 718 1.1 93.994 -36.4 4.857 5191 no
## 719 1.1 93.994 -36.4 4.857 5191 no
## 720 1.1 93.994 -36.4 4.857 5191 no
## 721 1.1 93.994 -36.4 4.857 5191 no
## 722 1.1 93.994 -36.4 4.857 5191 no
## 723 1.1 93.994 -36.4 4.857 5191 no
## 724 1.1 93.994 -36.4 4.857 5191 no
## 725 1.1 93.994 -36.4 4.857 5191 no
## 726 1.1 93.994 -36.4 4.857 5191 no
## 727 1.1 93.994 -36.4 4.857 5191 no
## 728 1.1 93.994 -36.4 4.857 5191 no
## 729 1.1 93.994 -36.4 4.857 5191 no
## 730 1.1 93.994 -36.4 4.857 5191 no
## 731 1.1 93.994 -36.4 4.857 5191 no
## 732 1.1 93.994 -36.4 4.857 5191 no
## 733 1.1 93.994 -36.4 4.857 5191 no
## 734 1.1 93.994 -36.4 4.857 5191 no
## 735 1.1 93.994 -36.4 4.857 5191 no
## 736 1.1 93.994 -36.4 4.857 5191 no
## 737 1.1 93.994 -36.4 4.857 5191 no
## 738 1.1 93.994 -36.4 4.857 5191 no
## 739 1.1 93.994 -36.4 4.857 5191 no
## 740 1.1 93.994 -36.4 4.857 5191 no
## 741 1.1 93.994 -36.4 4.857 5191 no
## 742 1.1 93.994 -36.4 4.857 5191 no
## 743 1.1 93.994 -36.4 4.857 5191 no
## 744 1.1 93.994 -36.4 4.857 5191 no
## 745 1.1 93.994 -36.4 4.857 5191 no
## 746 1.1 93.994 -36.4 4.857 5191 no
## 747 1.1 93.994 -36.4 4.857 5191 no
## 748 1.1 93.994 -36.4 4.857 5191 no
## 749 1.1 93.994 -36.4 4.857 5191 no
## 750 1.1 93.994 -36.4 4.857 5191 no
## 751 1.1 93.994 -36.4 4.857 5191 no
## 752 1.1 93.994 -36.4 4.857 5191 no
## 753 1.1 93.994 -36.4 4.857 5191 no
## 754 1.1 93.994 -36.4 4.857 5191 no
## 755 1.1 93.994 -36.4 4.857 5191 no
## 756 1.1 93.994 -36.4 4.857 5191 no
## 757 1.1 93.994 -36.4 4.856 5191 no
## 758 1.1 93.994 -36.4 4.856 5191 no
## 759 1.1 93.994 -36.4 4.856 5191 no
## 760 1.1 93.994 -36.4 4.856 5191 no
## 761 1.1 93.994 -36.4 4.856 5191 no
## 762 1.1 93.994 -36.4 4.856 5191 no
## 763 1.1 93.994 -36.4 4.856 5191 no
## 764 1.1 93.994 -36.4 4.856 5191 no
## 765 1.1 93.994 -36.4 4.856 5191 no
## 766 1.1 93.994 -36.4 4.856 5191 no
## 767 1.1 93.994 -36.4 4.856 5191 no
## 768 1.1 93.994 -36.4 4.856 5191 no
## 769 1.1 93.994 -36.4 4.856 5191 no
## 770 1.1 93.994 -36.4 4.856 5191 no
## 771 1.1 93.994 -36.4 4.856 5191 no
## 772 1.1 93.994 -36.4 4.856 5191 no
## 773 1.1 93.994 -36.4 4.856 5191 no
## 774 1.1 93.994 -36.4 4.856 5191 no
## 775 1.1 93.994 -36.4 4.856 5191 no
## 776 1.1 93.994 -36.4 4.856 5191 no
## 777 1.1 93.994 -36.4 4.856 5191 no
## 778 1.1 93.994 -36.4 4.856 5191 no
## 779 1.1 93.994 -36.4 4.856 5191 no
## 780 1.1 93.994 -36.4 4.856 5191 no
## 781 1.1 93.994 -36.4 4.856 5191 no
## 782 1.1 93.994 -36.4 4.856 5191 no
## 783 1.1 93.994 -36.4 4.856 5191 no
## 784 1.1 93.994 -36.4 4.856 5191 no
## 785 1.1 93.994 -36.4 4.856 5191 no
## 786 1.1 93.994 -36.4 4.856 5191 no
## 787 1.1 93.994 -36.4 4.856 5191 no
## 788 1.1 93.994 -36.4 4.856 5191 no
## 789 1.1 93.994 -36.4 4.856 5191 no
## 790 1.1 93.994 -36.4 4.856 5191 no
## 791 1.1 93.994 -36.4 4.856 5191 no
## 792 1.1 93.994 -36.4 4.856 5191 no
## 793 1.1 93.994 -36.4 4.856 5191 no
## 794 1.1 93.994 -36.4 4.856 5191 no
## 795 1.1 93.994 -36.4 4.856 5191 no
## 796 1.1 93.994 -36.4 4.856 5191 no
## 797 1.1 93.994 -36.4 4.856 5191 no
## 798 1.1 93.994 -36.4 4.856 5191 no
## 799 1.1 93.994 -36.4 4.856 5191 no
## 800 1.1 93.994 -36.4 4.856 5191 no
## 801 1.1 93.994 -36.4 4.856 5191 no
## 802 1.1 93.994 -36.4 4.856 5191 no
## 803 1.1 93.994 -36.4 4.856 5191 no
## 804 1.1 93.994 -36.4 4.856 5191 no
## 805 1.1 93.994 -36.4 4.856 5191 no
## 806 1.1 93.994 -36.4 4.856 5191 no
## 807 1.1 93.994 -36.4 4.856 5191 no
## 808 1.1 93.994 -36.4 4.856 5191 no
## 809 1.1 93.994 -36.4 4.856 5191 no
## 810 1.1 93.994 -36.4 4.856 5191 no
## 811 1.1 93.994 -36.4 4.856 5191 no
## 812 1.1 93.994 -36.4 4.856 5191 no
## 813 1.1 93.994 -36.4 4.856 5191 no
## 814 1.1 93.994 -36.4 4.856 5191 no
## 815 1.1 93.994 -36.4 4.856 5191 no
## 816 1.1 93.994 -36.4 4.856 5191 no
## 817 1.1 93.994 -36.4 4.856 5191 no
## 818 1.1 93.994 -36.4 4.856 5191 no
## 819 1.1 93.994 -36.4 4.856 5191 no
## 820 1.1 93.994 -36.4 4.856 5191 no
## 821 1.1 93.994 -36.4 4.856 5191 yes
## 822 1.1 93.994 -36.4 4.856 5191 no
## 823 1.1 93.994 -36.4 4.856 5191 no
## 824 1.1 93.994 -36.4 4.856 5191 no
## 825 1.1 93.994 -36.4 4.856 5191 no
## 826 1.1 93.994 -36.4 4.856 5191 no
## 827 1.1 93.994 -36.4 4.856 5191 no
## 828 1.1 93.994 -36.4 4.856 5191 no
## 829 1.1 93.994 -36.4 4.856 5191 no
## 830 1.1 93.994 -36.4 4.856 5191 no
## 831 1.1 93.994 -36.4 4.856 5191 no
## 832 1.1 93.994 -36.4 4.856 5191 no
## 833 1.1 93.994 -36.4 4.856 5191 yes
## 834 1.1 93.994 -36.4 4.856 5191 no
## 835 1.1 93.994 -36.4 4.856 5191 no
## 836 1.1 93.994 -36.4 4.856 5191 no
## 837 1.1 93.994 -36.4 4.856 5191 no
## 838 1.1 93.994 -36.4 4.856 5191 no
## 839 1.1 93.994 -36.4 4.856 5191 no
## 840 1.1 93.994 -36.4 4.856 5191 no
## 841 1.1 93.994 -36.4 4.856 5191 no
## 842 1.1 93.994 -36.4 4.856 5191 no
## 843 1.1 93.994 -36.4 4.856 5191 no
## 844 1.1 93.994 -36.4 4.856 5191 no
## 845 1.1 93.994 -36.4 4.856 5191 no
## 846 1.1 93.994 -36.4 4.856 5191 no
## 847 1.1 93.994 -36.4 4.856 5191 no
## 848 1.1 93.994 -36.4 4.856 5191 no
## 849 1.1 93.994 -36.4 4.856 5191 no
## 850 1.1 93.994 -36.4 4.856 5191 no
## 851 1.1 93.994 -36.4 4.856 5191 no
## 852 1.1 93.994 -36.4 4.856 5191 no
## 853 1.1 93.994 -36.4 4.856 5191 no
## 854 1.1 93.994 -36.4 4.856 5191 no
## 855 1.1 93.994 -36.4 4.856 5191 no
## 856 1.1 93.994 -36.4 4.856 5191 no
## 857 1.1 93.994 -36.4 4.856 5191 yes
## 858 1.1 93.994 -36.4 4.856 5191 no
## 859 1.1 93.994 -36.4 4.856 5191 no
## 860 1.1 93.994 -36.4 4.856 5191 no
## 861 1.1 93.994 -36.4 4.856 5191 no
## 862 1.1 93.994 -36.4 4.856 5191 no
## 863 1.1 93.994 -36.4 4.856 5191 no
## 864 1.1 93.994 -36.4 4.856 5191 no
## 865 1.1 93.994 -36.4 4.856 5191 no
## 866 1.1 93.994 -36.4 4.856 5191 no
## 867 1.1 93.994 -36.4 4.856 5191 no
## 868 1.1 93.994 -36.4 4.856 5191 no
## 869 1.1 93.994 -36.4 4.856 5191 no
## 870 1.1 93.994 -36.4 4.856 5191 no
## 871 1.1 93.994 -36.4 4.856 5191 yes
## 872 1.1 93.994 -36.4 4.856 5191 no
## 873 1.1 93.994 -36.4 4.856 5191 no
## 874 1.1 93.994 -36.4 4.856 5191 no
## 875 1.1 93.994 -36.4 4.856 5191 no
## 876 1.1 93.994 -36.4 4.856 5191 no
## 877 1.1 93.994 -36.4 4.856 5191 yes
## 878 1.1 93.994 -36.4 4.856 5191 no
## 879 1.1 93.994 -36.4 4.856 5191 no
## 880 1.1 93.994 -36.4 4.856 5191 no
## 881 1.1 93.994 -36.4 4.856 5191 no
## 882 1.1 93.994 -36.4 4.856 5191 no
## 883 1.1 93.994 -36.4 4.856 5191 no
## 884 1.1 93.994 -36.4 4.856 5191 no
## 885 1.1 93.994 -36.4 4.856 5191 no
## 886 1.1 93.994 -36.4 4.856 5191 no
## 887 1.1 93.994 -36.4 4.856 5191 no
## 888 1.1 93.994 -36.4 4.856 5191 no
## 889 1.1 93.994 -36.4 4.856 5191 no
## 890 1.1 93.994 -36.4 4.856 5191 no
## 891 1.1 93.994 -36.4 4.856 5191 no
## 892 1.1 93.994 -36.4 4.856 5191 no
## 893 1.1 93.994 -36.4 4.856 5191 no
## 894 1.1 93.994 -36.4 4.856 5191 no
## 895 1.1 93.994 -36.4 4.856 5191 no
## 896 1.1 93.994 -36.4 4.856 5191 no
## 897 1.1 93.994 -36.4 4.856 5191 no
## 898 1.1 93.994 -36.4 4.856 5191 no
## 899 1.1 93.994 -36.4 4.856 5191 no
## 900 1.1 93.994 -36.4 4.856 5191 no
## 901 1.1 93.994 -36.4 4.856 5191 no
## 902 1.1 93.994 -36.4 4.856 5191 no
## 903 1.1 93.994 -36.4 4.856 5191 no
## 904 1.1 93.994 -36.4 4.856 5191 no
## 905 1.1 93.994 -36.4 4.856 5191 no
## 906 1.1 93.994 -36.4 4.856 5191 no
## 907 1.1 93.994 -36.4 4.856 5191 no
## 908 1.1 93.994 -36.4 4.856 5191 no
## 909 1.1 93.994 -36.4 4.856 5191 no
## 910 1.1 93.994 -36.4 4.856 5191 no
## 911 1.1 93.994 -36.4 4.856 5191 no
## 912 1.1 93.994 -36.4 4.856 5191 no
## 913 1.1 93.994 -36.4 4.856 5191 no
## 914 1.1 93.994 -36.4 4.856 5191 no
## 915 1.1 93.994 -36.4 4.856 5191 no
## 916 1.1 93.994 -36.4 4.856 5191 no
## 917 1.1 93.994 -36.4 4.856 5191 no
## 918 1.1 93.994 -36.4 4.856 5191 no
## 919 1.1 93.994 -36.4 4.856 5191 no
## 920 1.1 93.994 -36.4 4.856 5191 no
## 921 1.1 93.994 -36.4 4.856 5191 no
## 922 1.1 93.994 -36.4 4.856 5191 no
## 923 1.1 93.994 -36.4 4.856 5191 no
## 924 1.1 93.994 -36.4 4.856 5191 no
## 925 1.1 93.994 -36.4 4.856 5191 no
## 926 1.1 93.994 -36.4 4.856 5191 no
## 927 1.1 93.994 -36.4 4.856 5191 no
## 928 1.1 93.994 -36.4 4.856 5191 no
## 929 1.1 93.994 -36.4 4.856 5191 no
## 930 1.1 93.994 -36.4 4.856 5191 no
## 931 1.1 93.994 -36.4 4.856 5191 no
## 932 1.1 93.994 -36.4 4.856 5191 no
## 933 1.1 93.994 -36.4 4.856 5191 no
## 934 1.1 93.994 -36.4 4.856 5191 no
## 935 1.1 93.994 -36.4 4.856 5191 no
## 936 1.1 93.994 -36.4 4.856 5191 no
## 937 1.1 93.994 -36.4 4.856 5191 no
## 938 1.1 93.994 -36.4 4.856 5191 no
## 939 1.1 93.994 -36.4 4.856 5191 no
## 940 1.1 93.994 -36.4 4.856 5191 no
## 941 1.1 93.994 -36.4 4.856 5191 no
## 942 1.1 93.994 -36.4 4.856 5191 no
## 943 1.1 93.994 -36.4 4.856 5191 no
## 944 1.1 93.994 -36.4 4.856 5191 no
## 945 1.1 93.994 -36.4 4.856 5191 no
## 946 1.1 93.994 -36.4 4.856 5191 no
## 947 1.1 93.994 -36.4 4.856 5191 no
## 948 1.1 93.994 -36.4 4.856 5191 no
## 949 1.1 93.994 -36.4 4.856 5191 no
## 950 1.1 93.994 -36.4 4.856 5191 no
## 951 1.1 93.994 -36.4 4.856 5191 no
## 952 1.1 93.994 -36.4 4.856 5191 no
## 953 1.1 93.994 -36.4 4.856 5191 no
## 954 1.1 93.994 -36.4 4.856 5191 no
## 955 1.1 93.994 -36.4 4.856 5191 no
## 956 1.1 93.994 -36.4 4.856 5191 no
## 957 1.1 93.994 -36.4 4.856 5191 no
## 958 1.1 93.994 -36.4 4.856 5191 no
## 959 1.1 93.994 -36.4 4.856 5191 no
## 960 1.1 93.994 -36.4 4.856 5191 no
## 961 1.1 93.994 -36.4 4.856 5191 no
## 962 1.1 93.994 -36.4 4.856 5191 no
## 963 1.1 93.994 -36.4 4.856 5191 no
## 964 1.1 93.994 -36.4 4.856 5191 no
## 965 1.1 93.994 -36.4 4.856 5191 no
## 966 1.1 93.994 -36.4 4.856 5191 no
## 967 1.1 93.994 -36.4 4.856 5191 no
## 968 1.1 93.994 -36.4 4.856 5191 no
## 969 1.1 93.994 -36.4 4.856 5191 no
## 970 1.1 93.994 -36.4 4.856 5191 no
## 971 1.1 93.994 -36.4 4.856 5191 no
## 972 1.1 93.994 -36.4 4.856 5191 no
## 973 1.1 93.994 -36.4 4.856 5191 no
## 974 1.1 93.994 -36.4 4.856 5191 no
## 975 1.1 93.994 -36.4 4.856 5191 no
## 976 1.1 93.994 -36.4 4.856 5191 no
## 977 1.1 93.994 -36.4 4.856 5191 no
## 978 1.1 93.994 -36.4 4.856 5191 no
## 979 1.1 93.994 -36.4 4.856 5191 no
## 980 1.1 93.994 -36.4 4.856 5191 no
## 981 1.1 93.994 -36.4 4.856 5191 no
## 982 1.1 93.994 -36.4 4.856 5191 no
## 983 1.1 93.994 -36.4 4.856 5191 no
## 984 1.1 93.994 -36.4 4.856 5191 no
## 985 1.1 93.994 -36.4 4.856 5191 no
## 986 1.1 93.994 -36.4 4.856 5191 no
## 987 1.1 93.994 -36.4 4.856 5191 no
## 988 1.1 93.994 -36.4 4.856 5191 no
## 989 1.1 93.994 -36.4 4.856 5191 no
## 990 1.1 93.994 -36.4 4.856 5191 no
## 991 1.1 93.994 -36.4 4.856 5191 no
## 992 1.1 93.994 -36.4 4.856 5191 no
## 993 1.1 93.994 -36.4 4.856 5191 no
## 994 1.1 93.994 -36.4 4.856 5191 no
## 995 1.1 93.994 -36.4 4.856 5191 no
## 996 1.1 93.994 -36.4 4.856 5191 no
## 997 1.1 93.994 -36.4 4.856 5191 no
## 998 1.1 93.994 -36.4 4.856 5191 no
## 999 1.1 93.994 -36.4 4.856 5191 no
## 1000 1.1 93.994 -36.4 4.856 5191 no
## 1001 1.1 93.994 -36.4 4.856 5191 no
## 1002 1.1 93.994 -36.4 4.856 5191 no
## 1003 1.1 93.994 -36.4 4.856 5191 no
## 1004 1.1 93.994 -36.4 4.856 5191 no
## 1005 1.1 93.994 -36.4 4.856 5191 no
## 1006 1.1 93.994 -36.4 4.856 5191 no
## 1007 1.1 93.994 -36.4 4.856 5191 no
## 1008 1.1 93.994 -36.4 4.856 5191 no
## 1009 1.1 93.994 -36.4 4.856 5191 no
## 1010 1.1 93.994 -36.4 4.856 5191 no
## 1011 1.1 93.994 -36.4 4.856 5191 no
## 1012 1.1 93.994 -36.4 4.856 5191 no
## 1013 1.1 93.994 -36.4 4.856 5191 no
## 1014 1.1 93.994 -36.4 4.856 5191 no
## 1015 1.1 93.994 -36.4 4.856 5191 no
## 1016 1.1 93.994 -36.4 4.856 5191 no
## 1017 1.1 93.994 -36.4 4.856 5191 no
## 1018 1.1 93.994 -36.4 4.856 5191 no
## 1019 1.1 93.994 -36.4 4.856 5191 no
## 1020 1.1 93.994 -36.4 4.856 5191 no
## 1021 1.1 93.994 -36.4 4.856 5191 no
## 1022 1.1 93.994 -36.4 4.856 5191 no
## 1023 1.1 93.994 -36.4 4.856 5191 no
## 1024 1.1 93.994 -36.4 4.856 5191 no
## 1025 1.1 93.994 -36.4 4.856 5191 no
## 1026 1.1 93.994 -36.4 4.856 5191 no
## 1027 1.1 93.994 -36.4 4.856 5191 no
## 1028 1.1 93.994 -36.4 4.856 5191 no
## 1029 1.1 93.994 -36.4 4.856 5191 no
## 1030 1.1 93.994 -36.4 4.856 5191 no
## 1031 1.1 93.994 -36.4 4.856 5191 no
## 1032 1.1 93.994 -36.4 4.856 5191 no
## 1033 1.1 93.994 -36.4 4.856 5191 no
## 1034 1.1 93.994 -36.4 4.856 5191 no
## 1035 1.1 93.994 -36.4 4.856 5191 no
## 1036 1.1 93.994 -36.4 4.856 5191 no
## 1037 1.1 93.994 -36.4 4.856 5191 no
## 1038 1.1 93.994 -36.4 4.856 5191 no
## 1039 1.1 93.994 -36.4 4.856 5191 no
## 1040 1.1 93.994 -36.4 4.856 5191 no
## 1041 1.1 93.994 -36.4 4.856 5191 no
## 1042 1.1 93.994 -36.4 4.856 5191 no
## 1043 1.1 93.994 -36.4 4.856 5191 no
## 1044 1.1 93.994 -36.4 4.856 5191 no
## 1045 1.1 93.994 -36.4 4.856 5191 no
## 1046 1.1 93.994 -36.4 4.856 5191 no
## 1047 1.1 93.994 -36.4 4.856 5191 no
## 1048 1.1 93.994 -36.4 4.856 5191 no
## 1049 1.1 93.994 -36.4 4.856 5191 no
## 1050 1.1 93.994 -36.4 4.856 5191 no
## 1051 1.1 93.994 -36.4 4.856 5191 no
## 1052 1.1 93.994 -36.4 4.856 5191 no
## 1053 1.1 93.994 -36.4 4.856 5191 no
## 1054 1.1 93.994 -36.4 4.856 5191 no
## 1055 1.1 93.994 -36.4 4.856 5191 no
## 1056 1.1 93.994 -36.4 4.856 5191 no
## 1057 1.1 93.994 -36.4 4.856 5191 no
## 1058 1.1 93.994 -36.4 4.856 5191 no
## 1059 1.1 93.994 -36.4 4.856 5191 no
## 1060 1.1 93.994 -36.4 4.856 5191 no
## 1061 1.1 93.994 -36.4 4.856 5191 no
## 1062 1.1 93.994 -36.4 4.856 5191 no
## 1063 1.1 93.994 -36.4 4.856 5191 no
## 1064 1.1 93.994 -36.4 4.856 5191 no
## 1065 1.1 93.994 -36.4 4.856 5191 no
## 1066 1.1 93.994 -36.4 4.856 5191 no
## 1067 1.1 93.994 -36.4 4.856 5191 no
## 1068 1.1 93.994 -36.4 4.856 5191 no
## 1069 1.1 93.994 -36.4 4.856 5191 no
## 1070 1.1 93.994 -36.4 4.856 5191 no
## 1071 1.1 93.994 -36.4 4.856 5191 no
## 1072 1.1 93.994 -36.4 4.856 5191 no
## 1073 1.1 93.994 -36.4 4.856 5191 no
## 1074 1.1 93.994 -36.4 4.856 5191 no
## 1075 1.1 93.994 -36.4 4.856 5191 no
## 1076 1.1 93.994 -36.4 4.856 5191 no
## 1077 1.1 93.994 -36.4 4.856 5191 no
## 1078 1.1 93.994 -36.4 4.856 5191 no
## 1079 1.1 93.994 -36.4 4.856 5191 yes
## 1080 1.1 93.994 -36.4 4.856 5191 no
## 1081 1.1 93.994 -36.4 4.856 5191 no
## 1082 1.1 93.994 -36.4 4.856 5191 no
## 1083 1.1 93.994 -36.4 4.856 5191 no
## 1084 1.1 93.994 -36.4 4.856 5191 no
## 1085 1.1 93.994 -36.4 4.856 5191 no
## 1086 1.1 93.994 -36.4 4.856 5191 no
## 1087 1.1 93.994 -36.4 4.856 5191 no
## 1088 1.1 93.994 -36.4 4.856 5191 no
## 1089 1.1 93.994 -36.4 4.856 5191 no
## 1090 1.1 93.994 -36.4 4.856 5191 no
## 1091 1.1 93.994 -36.4 4.856 5191 no
## 1092 1.1 93.994 -36.4 4.856 5191 no
## 1093 1.1 93.994 -36.4 4.856 5191 no
## 1094 1.1 93.994 -36.4 4.856 5191 no
## 1095 1.1 93.994 -36.4 4.856 5191 no
## 1096 1.1 93.994 -36.4 4.856 5191 no
## 1097 1.1 93.994 -36.4 4.856 5191 no
## 1098 1.1 93.994 -36.4 4.856 5191 no
## 1099 1.1 93.994 -36.4 4.856 5191 no
## 1100 1.1 93.994 -36.4 4.856 5191 no
## 1101 1.1 93.994 -36.4 4.856 5191 no
## 1102 1.1 93.994 -36.4 4.856 5191 no
## 1103 1.1 93.994 -36.4 4.856 5191 no
## 1104 1.1 93.994 -36.4 4.856 5191 no
## 1105 1.1 93.994 -36.4 4.856 5191 no
## 1106 1.1 93.994 -36.4 4.856 5191 no
## 1107 1.1 93.994 -36.4 4.856 5191 no
## 1108 1.1 93.994 -36.4 4.856 5191 no
## 1109 1.1 93.994 -36.4 4.856 5191 no
## 1110 1.1 93.994 -36.4 4.856 5191 no
## 1111 1.1 93.994 -36.4 4.856 5191 no
## 1112 1.1 93.994 -36.4 4.856 5191 no
## 1113 1.1 93.994 -36.4 4.856 5191 no
## 1114 1.1 93.994 -36.4 4.856 5191 no
## 1115 1.1 93.994 -36.4 4.856 5191 yes
## 1116 1.1 93.994 -36.4 4.856 5191 no
## 1117 1.1 93.994 -36.4 4.856 5191 no
## 1118 1.1 93.994 -36.4 4.856 5191 no
## 1119 1.1 93.994 -36.4 4.856 5191 no
## 1120 1.1 93.994 -36.4 4.856 5191 no
## 1121 1.1 93.994 -36.4 4.856 5191 no
## 1122 1.1 93.994 -36.4 4.856 5191 no
## 1123 1.1 93.994 -36.4 4.856 5191 no
## 1124 1.1 93.994 -36.4 4.856 5191 no
## 1125 1.1 93.994 -36.4 4.856 5191 no
## 1126 1.1 93.994 -36.4 4.856 5191 no
## 1127 1.1 93.994 -36.4 4.856 5191 no
## 1128 1.1 93.994 -36.4 4.856 5191 no
## 1129 1.1 93.994 -36.4 4.856 5191 no
## 1130 1.1 93.994 -36.4 4.856 5191 no
## 1131 1.1 93.994 -36.4 4.856 5191 no
## 1132 1.1 93.994 -36.4 4.856 5191 no
## 1133 1.1 93.994 -36.4 4.856 5191 no
## 1134 1.1 93.994 -36.4 4.856 5191 no
## 1135 1.1 93.994 -36.4 4.856 5191 no
## 1136 1.1 93.994 -36.4 4.856 5191 no
## 1137 1.1 93.994 -36.4 4.856 5191 no
## 1138 1.1 93.994 -36.4 4.856 5191 no
## 1139 1.1 93.994 -36.4 4.856 5191 no
## 1140 1.1 93.994 -36.4 4.856 5191 no
## 1141 1.1 93.994 -36.4 4.856 5191 no
## 1142 1.1 93.994 -36.4 4.856 5191 no
## 1143 1.1 93.994 -36.4 4.856 5191 no
## 1144 1.1 93.994 -36.4 4.856 5191 no
## 1145 1.1 93.994 -36.4 4.856 5191 no
## 1146 1.1 93.994 -36.4 4.856 5191 no
## 1147 1.1 93.994 -36.4 4.855 5191 no
## 1148 1.1 93.994 -36.4 4.855 5191 no
## 1149 1.1 93.994 -36.4 4.855 5191 no
## 1150 1.1 93.994 -36.4 4.855 5191 no
## 1151 1.1 93.994 -36.4 4.855 5191 no
## 1152 1.1 93.994 -36.4 4.855 5191 no
## 1153 1.1 93.994 -36.4 4.855 5191 no
## 1154 1.1 93.994 -36.4 4.855 5191 no
## 1155 1.1 93.994 -36.4 4.855 5191 no
## 1156 1.1 93.994 -36.4 4.855 5191 no
## 1157 1.1 93.994 -36.4 4.855 5191 no
## 1158 1.1 93.994 -36.4 4.855 5191 no
## 1159 1.1 93.994 -36.4 4.855 5191 no
## 1160 1.1 93.994 -36.4 4.855 5191 no
## 1161 1.1 93.994 -36.4 4.855 5191 no
## 1162 1.1 93.994 -36.4 4.855 5191 no
## 1163 1.1 93.994 -36.4 4.855 5191 no
## 1164 1.1 93.994 -36.4 4.855 5191 no
## 1165 1.1 93.994 -36.4 4.855 5191 no
## 1166 1.1 93.994 -36.4 4.855 5191 no
## 1167 1.1 93.994 -36.4 4.855 5191 yes
## 1168 1.1 93.994 -36.4 4.855 5191 no
## 1169 1.1 93.994 -36.4 4.855 5191 no
## 1170 1.1 93.994 -36.4 4.855 5191 no
## 1171 1.1 93.994 -36.4 4.855 5191 no
## 1172 1.1 93.994 -36.4 4.855 5191 no
## 1173 1.1 93.994 -36.4 4.855 5191 no
## 1174 1.1 93.994 -36.4 4.855 5191 no
## 1175 1.1 93.994 -36.4 4.855 5191 no
## 1176 1.1 93.994 -36.4 4.855 5191 no
## 1177 1.1 93.994 -36.4 4.855 5191 no
## 1178 1.1 93.994 -36.4 4.855 5191 no
## 1179 1.1 93.994 -36.4 4.855 5191 no
## 1180 1.1 93.994 -36.4 4.855 5191 no
## 1181 1.1 93.994 -36.4 4.855 5191 no
## 1182 1.1 93.994 -36.4 4.855 5191 no
## 1183 1.1 93.994 -36.4 4.855 5191 no
## 1184 1.1 93.994 -36.4 4.855 5191 no
## 1185 1.1 93.994 -36.4 4.855 5191 no
## 1186 1.1 93.994 -36.4 4.855 5191 no
## 1187 1.1 93.994 -36.4 4.855 5191 no
## 1188 1.1 93.994 -36.4 4.855 5191 no
## 1189 1.1 93.994 -36.4 4.855 5191 no
## 1190 1.1 93.994 -36.4 4.855 5191 yes
## 1191 1.1 93.994 -36.4 4.855 5191 no
## 1192 1.1 93.994 -36.4 4.855 5191 no
## 1193 1.1 93.994 -36.4 4.855 5191 no
## 1194 1.1 93.994 -36.4 4.855 5191 no
## 1195 1.1 93.994 -36.4 4.855 5191 no
## 1196 1.1 93.994 -36.4 4.855 5191 no
## 1197 1.1 93.994 -36.4 4.855 5191 no
## 1198 1.1 93.994 -36.4 4.855 5191 no
## 1199 1.1 93.994 -36.4 4.855 5191 no
## 1200 1.1 93.994 -36.4 4.855 5191 no
## 1201 1.1 93.994 -36.4 4.855 5191 no
## 1202 1.1 93.994 -36.4 4.855 5191 no
## 1203 1.1 93.994 -36.4 4.855 5191 no
## 1204 1.1 93.994 -36.4 4.855 5191 no
## 1205 1.1 93.994 -36.4 4.855 5191 no
## 1206 1.1 93.994 -36.4 4.855 5191 no
## 1207 1.1 93.994 -36.4 4.855 5191 no
## 1208 1.1 93.994 -36.4 4.855 5191 no
## 1209 1.1 93.994 -36.4 4.855 5191 no
## 1210 1.1 93.994 -36.4 4.855 5191 no
## 1211 1.1 93.994 -36.4 4.855 5191 no
## 1212 1.1 93.994 -36.4 4.855 5191 no
## 1213 1.1 93.994 -36.4 4.855 5191 no
## 1214 1.1 93.994 -36.4 4.855 5191 no
## 1215 1.1 93.994 -36.4 4.855 5191 no
## 1216 1.1 93.994 -36.4 4.855 5191 no
## 1217 1.1 93.994 -36.4 4.855 5191 no
## 1218 1.1 93.994 -36.4 4.855 5191 no
## 1219 1.1 93.994 -36.4 4.855 5191 no
## 1220 1.1 93.994 -36.4 4.855 5191 no
## 1221 1.1 93.994 -36.4 4.855 5191 no
## 1222 1.1 93.994 -36.4 4.855 5191 no
## 1223 1.1 93.994 -36.4 4.855 5191 no
## 1224 1.1 93.994 -36.4 4.855 5191 no
## 1225 1.1 93.994 -36.4 4.855 5191 no
## 1226 1.1 93.994 -36.4 4.855 5191 no
## 1227 1.1 93.994 -36.4 4.855 5191 no
## 1228 1.1 93.994 -36.4 4.855 5191 no
## 1229 1.1 93.994 -36.4 4.855 5191 no
## 1230 1.1 93.994 -36.4 4.855 5191 no
## 1231 1.1 93.994 -36.4 4.855 5191 no
## 1232 1.1 93.994 -36.4 4.855 5191 no
## 1233 1.1 93.994 -36.4 4.855 5191 no
## 1234 1.1 93.994 -36.4 4.855 5191 yes
## 1235 1.1 93.994 -36.4 4.855 5191 no
## 1236 1.1 93.994 -36.4 4.855 5191 no
## 1237 1.1 93.994 -36.4 4.855 5191 no
## 1238 1.1 93.994 -36.4 4.855 5191 no
## 1239 1.1 93.994 -36.4 4.855 5191 no
## 1240 1.1 93.994 -36.4 4.855 5191 no
## 1241 1.1 93.994 -36.4 4.855 5191 no
## 1242 1.1 93.994 -36.4 4.855 5191 no
## 1243 1.1 93.994 -36.4 4.855 5191 no
## 1244 1.1 93.994 -36.4 4.855 5191 no
## 1245 1.1 93.994 -36.4 4.855 5191 no
## 1246 1.1 93.994 -36.4 4.855 5191 no
## 1247 1.1 93.994 -36.4 4.855 5191 no
## 1248 1.1 93.994 -36.4 4.855 5191 no
## 1249 1.1 93.994 -36.4 4.855 5191 no
## 1250 1.1 93.994 -36.4 4.855 5191 no
## 1251 1.1 93.994 -36.4 4.855 5191 no
## 1252 1.1 93.994 -36.4 4.855 5191 no
## 1253 1.1 93.994 -36.4 4.855 5191 no
## 1254 1.1 93.994 -36.4 4.855 5191 no
## 1255 1.1 93.994 -36.4 4.855 5191 no
## 1256 1.1 93.994 -36.4 4.855 5191 no
## 1257 1.1 93.994 -36.4 4.855 5191 yes
## 1258 1.1 93.994 -36.4 4.855 5191 no
## 1259 1.1 93.994 -36.4 4.855 5191 no
## 1260 1.1 93.994 -36.4 4.855 5191 no
## 1261 1.1 93.994 -36.4 4.855 5191 no
## 1262 1.1 93.994 -36.4 4.855 5191 no
## 1263 1.1 93.994 -36.4 4.855 5191 no
## 1264 1.1 93.994 -36.4 4.855 5191 no
## 1265 1.1 93.994 -36.4 4.855 5191 no
## 1266 1.1 93.994 -36.4 4.855 5191 no
## 1267 1.1 93.994 -36.4 4.855 5191 no
## 1268 1.1 93.994 -36.4 4.855 5191 no
## 1269 1.1 93.994 -36.4 4.855 5191 no
## 1270 1.1 93.994 -36.4 4.855 5191 no
## 1271 1.1 93.994 -36.4 4.855 5191 no
## 1272 1.1 93.994 -36.4 4.855 5191 no
## 1273 1.1 93.994 -36.4 4.855 5191 no
## 1274 1.1 93.994 -36.4 4.855 5191 no
## 1275 1.1 93.994 -36.4 4.855 5191 no
## 1276 1.1 93.994 -36.4 4.855 5191 no
## 1277 1.1 93.994 -36.4 4.855 5191 no
## 1278 1.1 93.994 -36.4 4.855 5191 no
## 1279 1.1 93.994 -36.4 4.855 5191 no
## 1280 1.1 93.994 -36.4 4.855 5191 no
## 1281 1.1 93.994 -36.4 4.855 5191 no
## 1282 1.1 93.994 -36.4 4.855 5191 no
## 1283 1.1 93.994 -36.4 4.855 5191 no
## 1284 1.1 93.994 -36.4 4.855 5191 no
## 1285 1.1 93.994 -36.4 4.855 5191 no
## 1286 1.1 93.994 -36.4 4.855 5191 no
## 1287 1.1 93.994 -36.4 4.855 5191 no
## 1288 1.1 93.994 -36.4 4.855 5191 no
## 1289 1.1 93.994 -36.4 4.855 5191 no
## 1290 1.1 93.994 -36.4 4.855 5191 no
## 1291 1.1 93.994 -36.4 4.855 5191 no
## 1292 1.1 93.994 -36.4 4.855 5191 no
## 1293 1.1 93.994 -36.4 4.855 5191 no
## 1294 1.1 93.994 -36.4 4.855 5191 no
## 1295 1.1 93.994 -36.4 4.855 5191 no
## 1296 1.1 93.994 -36.4 4.855 5191 no
## 1297 1.1 93.994 -36.4 4.855 5191 no
## 1298 1.1 93.994 -36.4 4.855 5191 no
## 1299 1.1 93.994 -36.4 4.855 5191 no
## 1300 1.1 93.994 -36.4 4.855 5191 no
## 1301 1.1 93.994 -36.4 4.855 5191 no
## 1302 1.1 93.994 -36.4 4.855 5191 no
## 1303 1.1 93.994 -36.4 4.855 5191 no
## 1304 1.1 93.994 -36.4 4.855 5191 no
## 1305 1.1 93.994 -36.4 4.855 5191 no
## 1306 1.1 93.994 -36.4 4.855 5191 no
## 1307 1.1 93.994 -36.4 4.855 5191 no
## 1308 1.1 93.994 -36.4 4.855 5191 no
## 1309 1.1 93.994 -36.4 4.855 5191 no
## 1310 1.1 93.994 -36.4 4.855 5191 no
## 1311 1.1 93.994 -36.4 4.855 5191 no
## 1312 1.1 93.994 -36.4 4.855 5191 no
## 1313 1.1 93.994 -36.4 4.855 5191 no
## 1314 1.1 93.994 -36.4 4.855 5191 no
## 1315 1.1 93.994 -36.4 4.855 5191 no
## 1316 1.1 93.994 -36.4 4.855 5191 no
## 1317 1.1 93.994 -36.4 4.855 5191 no
## 1318 1.1 93.994 -36.4 4.855 5191 no
## 1319 1.1 93.994 -36.4 4.855 5191 no
## 1320 1.1 93.994 -36.4 4.855 5191 yes
## 1321 1.1 93.994 -36.4 4.855 5191 no
## 1322 1.1 93.994 -36.4 4.855 5191 no
## 1323 1.1 93.994 -36.4 4.855 5191 no
## 1324 1.1 93.994 -36.4 4.855 5191 no
## 1325 1.1 93.994 -36.4 4.855 5191 no
## 1326 1.1 93.994 -36.4 4.855 5191 no
## 1327 1.1 93.994 -36.4 4.855 5191 no
## 1328 1.1 93.994 -36.4 4.855 5191 no
## 1329 1.1 93.994 -36.4 4.855 5191 no
## 1330 1.1 93.994 -36.4 4.855 5191 no
## 1331 1.1 93.994 -36.4 4.855 5191 no
## 1332 1.1 93.994 -36.4 4.855 5191 no
## 1333 1.1 93.994 -36.4 4.855 5191 no
## 1334 1.1 93.994 -36.4 4.855 5191 no
## 1335 1.1 93.994 -36.4 4.855 5191 no
## 1336 1.1 93.994 -36.4 4.855 5191 no
## 1337 1.1 93.994 -36.4 4.855 5191 no
## 1338 1.1 93.994 -36.4 4.855 5191 no
## 1339 1.1 93.994 -36.4 4.855 5191 no
## 1340 1.1 93.994 -36.4 4.855 5191 no
## 1341 1.1 93.994 -36.4 4.855 5191 no
## 1342 1.1 93.994 -36.4 4.855 5191 no
## 1343 1.1 93.994 -36.4 4.855 5191 no
## 1344 1.1 93.994 -36.4 4.855 5191 no
## 1345 1.1 93.994 -36.4 4.855 5191 no
## 1346 1.1 93.994 -36.4 4.855 5191 no
## 1347 1.1 93.994 -36.4 4.855 5191 no
## 1348 1.1 93.994 -36.4 4.855 5191 no
## 1349 1.1 93.994 -36.4 4.855 5191 yes
## 1350 1.1 93.994 -36.4 4.855 5191 no
## 1351 1.1 93.994 -36.4 4.855 5191 no
## 1352 1.1 93.994 -36.4 4.855 5191 no
## 1353 1.1 93.994 -36.4 4.855 5191 no
## 1354 1.1 93.994 -36.4 4.855 5191 no
## 1355 1.1 93.994 -36.4 4.855 5191 no
## 1356 1.1 93.994 -36.4 4.855 5191 no
## 1357 1.1 93.994 -36.4 4.855 5191 no
## 1358 1.1 93.994 -36.4 4.855 5191 no
## 1359 1.1 93.994 -36.4 4.855 5191 no
## 1360 1.1 93.994 -36.4 4.855 5191 no
## 1361 1.1 93.994 -36.4 4.855 5191 no
## 1362 1.1 93.994 -36.4 4.855 5191 no
## 1363 1.1 93.994 -36.4 4.855 5191 no
## 1364 1.1 93.994 -36.4 4.855 5191 no
## 1365 1.1 93.994 -36.4 4.855 5191 no
## 1366 1.1 93.994 -36.4 4.855 5191 no
## 1367 1.1 93.994 -36.4 4.855 5191 no
## 1368 1.1 93.994 -36.4 4.855 5191 no
## 1369 1.1 93.994 -36.4 4.855 5191 no
## 1370 1.1 93.994 -36.4 4.855 5191 no
## 1371 1.1 93.994 -36.4 4.855 5191 no
## 1372 1.1 93.994 -36.4 4.855 5191 no
## 1373 1.1 93.994 -36.4 4.855 5191 no
## 1374 1.1 93.994 -36.4 4.855 5191 no
## 1375 1.1 93.994 -36.4 4.855 5191 no
## 1376 1.1 93.994 -36.4 4.855 5191 no
## 1377 1.1 93.994 -36.4 4.855 5191 no
## 1378 1.1 93.994 -36.4 4.855 5191 no
## 1379 1.1 93.994 -36.4 4.855 5191 no
## 1380 1.1 93.994 -36.4 4.855 5191 no
## 1381 1.1 93.994 -36.4 4.855 5191 no
## 1382 1.1 93.994 -36.4 4.855 5191 no
## 1383 1.1 93.994 -36.4 4.855 5191 no
## 1384 1.1 93.994 -36.4 4.855 5191 no
## 1385 1.1 93.994 -36.4 4.855 5191 no
## 1386 1.1 93.994 -36.4 4.855 5191 no
## 1387 1.1 93.994 -36.4 4.855 5191 no
## 1388 1.1 93.994 -36.4 4.855 5191 no
## 1389 1.1 93.994 -36.4 4.855 5191 no
## 1390 1.1 93.994 -36.4 4.855 5191 no
## 1391 1.1 93.994 -36.4 4.855 5191 no
## 1392 1.1 93.994 -36.4 4.855 5191 no
## 1393 1.1 93.994 -36.4 4.855 5191 no
## 1394 1.1 93.994 -36.4 4.855 5191 no
## 1395 1.1 93.994 -36.4 4.855 5191 no
## 1396 1.1 93.994 -36.4 4.855 5191 no
## 1397 1.1 93.994 -36.4 4.855 5191 yes
## 1398 1.1 93.994 -36.4 4.855 5191 no
## 1399 1.1 93.994 -36.4 4.855 5191 no
## 1400 1.1 93.994 -36.4 4.855 5191 no
## 1401 1.1 93.994 -36.4 4.855 5191 no
## 1402 1.1 93.994 -36.4 4.855 5191 no
## 1403 1.1 93.994 -36.4 4.855 5191 no
## 1404 1.1 93.994 -36.4 4.855 5191 no
## 1405 1.1 93.994 -36.4 4.855 5191 no
## 1406 1.1 93.994 -36.4 4.855 5191 no
## 1407 1.1 93.994 -36.4 4.855 5191 no
## 1408 1.1 93.994 -36.4 4.855 5191 no
## 1409 1.1 93.994 -36.4 4.855 5191 no
## 1410 1.1 93.994 -36.4 4.855 5191 no
## 1411 1.1 93.994 -36.4 4.855 5191 no
## 1412 1.1 93.994 -36.4 4.855 5191 no
## 1413 1.1 93.994 -36.4 4.855 5191 no
## 1414 1.1 93.994 -36.4 4.855 5191 no
## 1415 1.1 93.994 -36.4 4.855 5191 no
## 1416 1.1 93.994 -36.4 4.855 5191 no
## 1417 1.1 93.994 -36.4 4.855 5191 no
## 1418 1.1 93.994 -36.4 4.855 5191 no
## 1419 1.1 93.994 -36.4 4.855 5191 no
## 1420 1.1 93.994 -36.4 4.855 5191 no
## 1421 1.1 93.994 -36.4 4.855 5191 no
## 1422 1.1 93.994 -36.4 4.855 5191 no
## 1423 1.1 93.994 -36.4 4.855 5191 no
## 1424 1.1 93.994 -36.4 4.855 5191 no
## 1425 1.1 93.994 -36.4 4.855 5191 no
## 1426 1.1 93.994 -36.4 4.855 5191 no
## 1427 1.1 93.994 -36.4 4.855 5191 no
## 1428 1.1 93.994 -36.4 4.855 5191 no
## 1429 1.1 93.994 -36.4 4.855 5191 no
## 1430 1.1 93.994 -36.4 4.855 5191 no
## 1431 1.1 93.994 -36.4 4.855 5191 no
## 1432 1.1 93.994 -36.4 4.855 5191 no
## 1433 1.1 93.994 -36.4 4.855 5191 no
## 1434 1.1 93.994 -36.4 4.855 5191 no
## 1435 1.1 93.994 -36.4 4.855 5191 no
## 1436 1.1 93.994 -36.4 4.855 5191 no
## 1437 1.1 93.994 -36.4 4.855 5191 no
## 1438 1.1 93.994 -36.4 4.855 5191 no
## 1439 1.1 93.994 -36.4 4.855 5191 no
## 1440 1.1 93.994 -36.4 4.855 5191 no
## 1441 1.1 93.994 -36.4 4.855 5191 no
## 1442 1.1 93.994 -36.4 4.855 5191 no
## 1443 1.1 93.994 -36.4 4.855 5191 yes
## 1444 1.1 93.994 -36.4 4.855 5191 no
## 1445 1.1 93.994 -36.4 4.855 5191 yes
## 1446 1.1 93.994 -36.4 4.855 5191 no
## 1447 1.1 93.994 -36.4 4.855 5191 no
## 1448 1.1 93.994 -36.4 4.855 5191 no
## 1449 1.1 93.994 -36.4 4.855 5191 no
## 1450 1.1 93.994 -36.4 4.855 5191 no
## 1451 1.1 93.994 -36.4 4.855 5191 no
## 1452 1.1 93.994 -36.4 4.855 5191 no
## 1453 1.1 93.994 -36.4 4.855 5191 no
## 1454 1.1 93.994 -36.4 4.855 5191 no
## 1455 1.1 93.994 -36.4 4.855 5191 no
## 1456 1.1 93.994 -36.4 4.855 5191 no
## 1457 1.1 93.994 -36.4 4.855 5191 no
## 1458 1.1 93.994 -36.4 4.855 5191 no
## 1459 1.1 93.994 -36.4 4.855 5191 no
## 1460 1.1 93.994 -36.4 4.855 5191 no
## 1461 1.1 93.994 -36.4 4.855 5191 no
## 1462 1.1 93.994 -36.4 4.855 5191 no
## 1463 1.1 93.994 -36.4 4.855 5191 no
## 1464 1.1 93.994 -36.4 4.855 5191 no
## 1465 1.1 93.994 -36.4 4.855 5191 no
## 1466 1.1 93.994 -36.4 4.855 5191 no
## 1467 1.1 93.994 -36.4 4.855 5191 no
## 1468 1.1 93.994 -36.4 4.855 5191 no
## 1469 1.1 93.994 -36.4 4.855 5191 no
## 1470 1.1 93.994 -36.4 4.855 5191 no
## 1471 1.1 93.994 -36.4 4.855 5191 no
## 1472 1.1 93.994 -36.4 4.855 5191 no
## 1473 1.1 93.994 -36.4 4.855 5191 no
## 1474 1.1 93.994 -36.4 4.855 5191 no
## 1475 1.1 93.994 -36.4 4.855 5191 no
## 1476 1.1 93.994 -36.4 4.855 5191 no
## 1477 1.1 93.994 -36.4 4.855 5191 no
## 1478 1.1 93.994 -36.4 4.855 5191 no
## 1479 1.1 93.994 -36.4 4.855 5191 no
## 1480 1.1 93.994 -36.4 4.855 5191 no
## 1481 1.1 93.994 -36.4 4.855 5191 no
## 1482 1.1 93.994 -36.4 4.855 5191 no
## 1483 1.1 93.994 -36.4 4.855 5191 no
## 1484 1.1 93.994 -36.4 4.855 5191 no
## 1485 1.1 93.994 -36.4 4.855 5191 no
## 1486 1.1 93.994 -36.4 4.855 5191 no
## 1487 1.1 93.994 -36.4 4.855 5191 no
## 1488 1.1 93.994 -36.4 4.855 5191 no
## 1489 1.1 93.994 -36.4 4.855 5191 no
## 1490 1.1 93.994 -36.4 4.855 5191 no
## 1491 1.1 93.994 -36.4 4.855 5191 no
## 1492 1.1 93.994 -36.4 4.855 5191 no
## 1493 1.1 93.994 -36.4 4.855 5191 no
## 1494 1.1 93.994 -36.4 4.855 5191 no
## 1495 1.1 93.994 -36.4 4.855 5191 no
## 1496 1.1 93.994 -36.4 4.855 5191 no
## 1497 1.1 93.994 -36.4 4.855 5191 no
## 1498 1.1 93.994 -36.4 4.855 5191 no
## 1499 1.1 93.994 -36.4 4.855 5191 no
## 1500 1.1 93.994 -36.4 4.855 5191 no
## 1501 1.1 93.994 -36.4 4.855 5191 no
## 1502 1.1 93.994 -36.4 4.855 5191 yes
## 1503 1.1 93.994 -36.4 4.855 5191 no
## 1504 1.1 93.994 -36.4 4.855 5191 no
## 1505 1.1 93.994 -36.4 4.855 5191 no
## 1506 1.1 93.994 -36.4 4.855 5191 no
## 1507 1.1 93.994 -36.4 4.855 5191 no
## 1508 1.1 93.994 -36.4 4.855 5191 no
## 1509 1.1 93.994 -36.4 4.855 5191 no
## 1510 1.1 93.994 -36.4 4.855 5191 no
## 1511 1.1 93.994 -36.4 4.855 5191 no
## 1512 1.1 93.994 -36.4 4.855 5191 no
## 1513 1.1 93.994 -36.4 4.855 5191 no
## 1514 1.1 93.994 -36.4 4.855 5191 no
## 1515 1.1 93.994 -36.4 4.855 5191 no
## 1516 1.1 93.994 -36.4 4.855 5191 no
## 1517 1.1 93.994 -36.4 4.855 5191 no
## 1518 1.1 93.994 -36.4 4.855 5191 no
## 1519 1.1 93.994 -36.4 4.855 5191 no
## 1520 1.1 93.994 -36.4 4.855 5191 no
## 1521 1.1 93.994 -36.4 4.855 5191 no
## 1522 1.1 93.994 -36.4 4.855 5191 no
## 1523 1.1 93.994 -36.4 4.855 5191 no
## 1524 1.1 93.994 -36.4 4.855 5191 no
## 1525 1.1 93.994 -36.4 4.855 5191 no
## 1526 1.1 93.994 -36.4 4.855 5191 no
## 1527 1.1 93.994 -36.4 4.855 5191 no
## 1528 1.1 93.994 -36.4 4.855 5191 no
## 1529 1.1 93.994 -36.4 4.855 5191 no
## 1530 1.1 93.994 -36.4 4.855 5191 no
## 1531 1.1 93.994 -36.4 4.855 5191 no
## 1532 1.1 93.994 -36.4 4.855 5191 no
## 1533 1.1 93.994 -36.4 4.855 5191 no
## 1534 1.1 93.994 -36.4 4.855 5191 no
## 1535 1.1 93.994 -36.4 4.855 5191 no
## 1536 1.1 93.994 -36.4 4.855 5191 no
## 1537 1.1 93.994 -36.4 4.855 5191 no
## 1538 1.1 93.994 -36.4 4.855 5191 no
## 1539 1.1 93.994 -36.4 4.855 5191 no
## 1540 1.1 93.994 -36.4 4.855 5191 no
## 1541 1.1 93.994 -36.4 4.855 5191 no
## 1542 1.1 93.994 -36.4 4.855 5191 no
## 1543 1.1 93.994 -36.4 4.855 5191 no
## 1544 1.1 93.994 -36.4 4.855 5191 no
## 1545 1.1 93.994 -36.4 4.855 5191 no
## 1546 1.1 93.994 -36.4 4.855 5191 no
## 1547 1.1 93.994 -36.4 4.855 5191 no
## 1548 1.1 93.994 -36.4 4.855 5191 no
## 1549 1.1 93.994 -36.4 4.855 5191 no
## 1550 1.1 93.994 -36.4 4.855 5191 no
## 1551 1.1 93.994 -36.4 4.855 5191 no
## 1552 1.1 93.994 -36.4 4.855 5191 no
## 1553 1.1 93.994 -36.4 4.855 5191 no
## 1554 1.1 93.994 -36.4 4.855 5191 no
## 1555 1.1 93.994 -36.4 4.855 5191 no
## 1556 1.1 93.994 -36.4 4.855 5191 no
## 1557 1.1 93.994 -36.4 4.855 5191 no
## 1558 1.1 93.994 -36.4 4.855 5191 no
## 1559 1.1 93.994 -36.4 4.855 5191 no
## 1560 1.1 93.994 -36.4 4.855 5191 no
## 1561 1.1 93.994 -36.4 4.855 5191 no
## 1562 1.1 93.994 -36.4 4.855 5191 no
## 1563 1.1 93.994 -36.4 4.855 5191 no
## 1564 1.1 93.994 -36.4 4.855 5191 no
## 1565 1.1 93.994 -36.4 4.855 5191 no
## 1566 1.1 93.994 -36.4 4.855 5191 no
## 1567 1.1 93.994 -36.4 4.855 5191 no
## 1568 1.1 93.994 -36.4 4.855 5191 no
## 1569 1.1 93.994 -36.4 4.855 5191 no
## 1570 1.1 93.994 -36.4 4.855 5191 no
## 1571 1.1 93.994 -36.4 4.855 5191 no
## 1572 1.1 93.994 -36.4 4.855 5191 no
## 1573 1.1 93.994 -36.4 4.855 5191 no
## 1574 1.1 93.994 -36.4 4.855 5191 no
## 1575 1.1 93.994 -36.4 4.855 5191 no
## 1576 1.1 93.994 -36.4 4.855 5191 no
## 1577 1.1 93.994 -36.4 4.855 5191 no
## 1578 1.1 93.994 -36.4 4.855 5191 no
## 1579 1.1 93.994 -36.4 4.855 5191 no
## 1580 1.1 93.994 -36.4 4.855 5191 no
## 1581 1.1 93.994 -36.4 4.855 5191 no
## 1582 1.1 93.994 -36.4 4.855 5191 no
## 1583 1.1 93.994 -36.4 4.855 5191 no
## 1584 1.1 93.994 -36.4 4.855 5191 no
## 1585 1.1 93.994 -36.4 4.855 5191 no
## 1586 1.1 93.994 -36.4 4.855 5191 no
## 1587 1.1 93.994 -36.4 4.855 5191 no
## 1588 1.1 93.994 -36.4 4.855 5191 no
## 1589 1.1 93.994 -36.4 4.855 5191 no
## 1590 1.1 93.994 -36.4 4.855 5191 no
## 1591 1.1 93.994 -36.4 4.855 5191 no
## 1592 1.1 93.994 -36.4 4.855 5191 no
## 1593 1.1 93.994 -36.4 4.855 5191 no
## 1594 1.1 93.994 -36.4 4.855 5191 no
## 1595 1.1 93.994 -36.4 4.855 5191 no
## 1596 1.1 93.994 -36.4 4.855 5191 no
## 1597 1.1 93.994 -36.4 4.855 5191 no
## 1598 1.1 93.994 -36.4 4.855 5191 no
## 1599 1.1 93.994 -36.4 4.855 5191 no
## 1600 1.1 93.994 -36.4 4.855 5191 no
## 1601 1.1 93.994 -36.4 4.855 5191 no
## 1602 1.1 93.994 -36.4 4.855 5191 no
## 1603 1.1 93.994 -36.4 4.855 5191 no
## 1604 1.1 93.994 -36.4 4.855 5191 no
## 1605 1.1 93.994 -36.4 4.855 5191 no
## 1606 1.1 93.994 -36.4 4.855 5191 no
## 1607 1.1 93.994 -36.4 4.855 5191 no
## 1608 1.1 93.994 -36.4 4.855 5191 no
## 1609 1.1 93.994 -36.4 4.855 5191 yes
## 1610 1.1 93.994 -36.4 4.855 5191 no
## 1611 1.1 93.994 -36.4 4.855 5191 no
## 1612 1.1 93.994 -36.4 4.855 5191 no
## 1613 1.1 93.994 -36.4 4.855 5191 no
## 1614 1.1 93.994 -36.4 4.855 5191 yes
## 1615 1.1 93.994 -36.4 4.855 5191 no
## 1616 1.1 93.994 -36.4 4.855 5191 no
## 1617 1.1 93.994 -36.4 4.855 5191 no
## 1618 1.1 93.994 -36.4 4.855 5191 no
## 1619 1.1 93.994 -36.4 4.855 5191 no
## 1620 1.1 93.994 -36.4 4.855 5191 no
## 1621 1.1 93.994 -36.4 4.855 5191 no
## 1622 1.1 93.994 -36.4 4.855 5191 no
## 1623 1.1 93.994 -36.4 4.855 5191 no
## 1624 1.1 93.994 -36.4 4.855 5191 no
## 1625 1.1 93.994 -36.4 4.855 5191 no
## 1626 1.1 93.994 -36.4 4.855 5191 no
## 1627 1.1 93.994 -36.4 4.855 5191 no
## 1628 1.1 93.994 -36.4 4.855 5191 no
## 1629 1.1 93.994 -36.4 4.855 5191 no
## 1630 1.1 93.994 -36.4 4.855 5191 no
## 1631 1.1 93.994 -36.4 4.855 5191 no
## 1632 1.1 93.994 -36.4 4.855 5191 no
## 1633 1.1 93.994 -36.4 4.855 5191 yes
## 1634 1.1 93.994 -36.4 4.855 5191 no
## 1635 1.1 93.994 -36.4 4.855 5191 no
## 1636 1.1 93.994 -36.4 4.855 5191 no
## 1637 1.1 93.994 -36.4 4.855 5191 yes
## 1638 1.1 93.994 -36.4 4.855 5191 no
## 1639 1.1 93.994 -36.4 4.855 5191 no
## 1640 1.1 93.994 -36.4 4.855 5191 no
## 1641 1.1 93.994 -36.4 4.855 5191 no
## 1642 1.1 93.994 -36.4 4.855 5191 no
## 1643 1.1 93.994 -36.4 4.855 5191 no
## 1644 1.1 93.994 -36.4 4.855 5191 no
## 1645 1.1 93.994 -36.4 4.855 5191 no
## 1646 1.1 93.994 -36.4 4.855 5191 no
## 1647 1.1 93.994 -36.4 4.855 5191 no
## 1648 1.1 93.994 -36.4 4.855 5191 no
## 1649 1.1 93.994 -36.4 4.855 5191 no
## 1650 1.1 93.994 -36.4 4.855 5191 no
## 1651 1.1 93.994 -36.4 4.855 5191 no
## 1652 1.1 93.994 -36.4 4.855 5191 no
## 1653 1.1 93.994 -36.4 4.855 5191 no
## 1654 1.1 93.994 -36.4 4.855 5191 no
## 1655 1.1 93.994 -36.4 4.855 5191 no
## 1656 1.1 93.994 -36.4 4.855 5191 yes
## 1657 1.1 93.994 -36.4 4.855 5191 no
## 1658 1.1 93.994 -36.4 4.855 5191 no
## 1659 1.1 93.994 -36.4 4.855 5191 no
## 1660 1.1 93.994 -36.4 4.855 5191 no
## 1661 1.1 93.994 -36.4 4.855 5191 no
## 1662 1.1 93.994 -36.4 4.855 5191 no
## 1663 1.1 93.994 -36.4 4.855 5191 no
## 1664 1.1 93.994 -36.4 4.855 5191 no
## 1665 1.1 93.994 -36.4 4.855 5191 no
## 1666 1.1 93.994 -36.4 4.855 5191 no
## 1667 1.1 93.994 -36.4 4.855 5191 no
## 1668 1.1 93.994 -36.4 4.855 5191 no
## 1669 1.1 93.994 -36.4 4.855 5191 no
## 1670 1.1 93.994 -36.4 4.855 5191 no
## 1671 1.1 93.994 -36.4 4.855 5191 no
## 1672 1.1 93.994 -36.4 4.855 5191 no
## 1673 1.1 93.994 -36.4 4.855 5191 no
## 1674 1.1 93.994 -36.4 4.855 5191 no
## 1675 1.1 93.994 -36.4 4.855 5191 no
## 1676 1.1 93.994 -36.4 4.855 5191 no
## 1677 1.1 93.994 -36.4 4.855 5191 no
## 1678 1.1 93.994 -36.4 4.855 5191 no
## 1679 1.1 93.994 -36.4 4.855 5191 no
## 1680 1.1 93.994 -36.4 4.855 5191 no
## 1681 1.1 93.994 -36.4 4.855 5191 no
## 1682 1.1 93.994 -36.4 4.855 5191 no
## 1683 1.1 93.994 -36.4 4.855 5191 no
## 1684 1.1 93.994 -36.4 4.855 5191 no
## 1685 1.1 93.994 -36.4 4.855 5191 no
## 1686 1.1 93.994 -36.4 4.855 5191 no
## 1687 1.1 93.994 -36.4 4.855 5191 no
## 1688 1.1 93.994 -36.4 4.855 5191 no
## 1689 1.1 93.994 -36.4 4.855 5191 no
## 1690 1.1 93.994 -36.4 4.855 5191 no
## 1691 1.1 93.994 -36.4 4.855 5191 no
## 1692 1.1 93.994 -36.4 4.855 5191 yes
## 1693 1.1 93.994 -36.4 4.855 5191 no
## 1694 1.1 93.994 -36.4 4.855 5191 no
## 1695 1.1 93.994 -36.4 4.855 5191 no
## 1696 1.1 93.994 -36.4 4.855 5191 no
## 1697 1.1 93.994 -36.4 4.855 5191 no
## 1698 1.1 93.994 -36.4 4.855 5191 no
## 1699 1.1 93.994 -36.4 4.855 5191 no
## 1700 1.1 93.994 -36.4 4.855 5191 no
## 1701 1.1 93.994 -36.4 4.855 5191 no
## 1702 1.1 93.994 -36.4 4.855 5191 no
## 1703 1.1 93.994 -36.4 4.855 5191 no
## 1704 1.1 93.994 -36.4 4.855 5191 no
## 1705 1.1 93.994 -36.4 4.855 5191 no
## 1706 1.1 93.994 -36.4 4.855 5191 no
## 1707 1.1 93.994 -36.4 4.855 5191 no
## 1708 1.1 93.994 -36.4 4.855 5191 no
## 1709 1.1 93.994 -36.4 4.855 5191 no
## 1710 1.1 93.994 -36.4 4.855 5191 no
## 1711 1.1 93.994 -36.4 4.855 5191 no
## 1712 1.1 93.994 -36.4 4.855 5191 no
## 1713 1.1 93.994 -36.4 4.855 5191 no
## 1714 1.1 93.994 -36.4 4.855 5191 no
## 1715 1.1 93.994 -36.4 4.855 5191 no
## 1716 1.1 93.994 -36.4 4.855 5191 no
## 1717 1.1 93.994 -36.4 4.855 5191 no
## 1718 1.1 93.994 -36.4 4.855 5191 no
## 1719 1.1 93.994 -36.4 4.855 5191 no
## 1720 1.1 93.994 -36.4 4.855 5191 no
## 1721 1.1 93.994 -36.4 4.855 5191 no
## 1722 1.1 93.994 -36.4 4.855 5191 no
## 1723 1.1 93.994 -36.4 4.855 5191 no
## 1724 1.1 93.994 -36.4 4.855 5191 no
## 1725 1.1 93.994 -36.4 4.855 5191 no
## 1726 1.1 93.994 -36.4 4.855 5191 yes
## 1727 1.1 93.994 -36.4 4.855 5191 no
## 1728 1.1 93.994 -36.4 4.855 5191 no
## 1729 1.1 93.994 -36.4 4.855 5191 no
## 1730 1.1 93.994 -36.4 4.855 5191 no
## 1731 1.1 93.994 -36.4 4.855 5191 no
## 1732 1.1 93.994 -36.4 4.855 5191 no
## 1733 1.1 93.994 -36.4 4.855 5191 no
## 1734 1.1 93.994 -36.4 4.855 5191 no
## 1735 1.1 93.994 -36.4 4.855 5191 no
## 1736 1.1 93.994 -36.4 4.855 5191 no
## 1737 1.1 93.994 -36.4 4.855 5191 no
## 1738 1.1 93.994 -36.4 4.855 5191 no
## 1739 1.1 93.994 -36.4 4.855 5191 no
## 1740 1.1 93.994 -36.4 4.855 5191 no
## 1741 1.1 93.994 -36.4 4.855 5191 no
## 1742 1.1 93.994 -36.4 4.855 5191 no
## 1743 1.1 93.994 -36.4 4.855 5191 no
## 1744 1.1 93.994 -36.4 4.855 5191 no
## 1745 1.1 93.994 -36.4 4.855 5191 no
## 1746 1.1 93.994 -36.4 4.855 5191 no
## 1747 1.1 93.994 -36.4 4.855 5191 no
## 1748 1.1 93.994 -36.4 4.855 5191 no
## 1749 1.1 93.994 -36.4 4.855 5191 no
## 1750 1.1 93.994 -36.4 4.855 5191 no
## 1751 1.1 93.994 -36.4 4.855 5191 no
## 1752 1.1 93.994 -36.4 4.855 5191 no
## 1753 1.1 93.994 -36.4 4.855 5191 no
## 1754 1.1 93.994 -36.4 4.855 5191 no
## 1755 1.1 93.994 -36.4 4.855 5191 no
## 1756 1.1 93.994 -36.4 4.855 5191 no
## 1757 1.1 93.994 -36.4 4.855 5191 no
## 1758 1.1 93.994 -36.4 4.855 5191 no
## 1759 1.1 93.994 -36.4 4.855 5191 no
## 1760 1.1 93.994 -36.4 4.855 5191 no
## 1761 1.1 93.994 -36.4 4.855 5191 no
## 1762 1.1 93.994 -36.4 4.855 5191 no
## 1763 1.1 93.994 -36.4 4.855 5191 no
## 1764 1.1 93.994 -36.4 4.855 5191 yes
## 1765 1.1 93.994 -36.4 4.855 5191 no
## 1766 1.1 93.994 -36.4 4.855 5191 no
## 1767 1.1 93.994 -36.4 4.855 5191 no
## 1768 1.1 93.994 -36.4 4.855 5191 no
## 1769 1.1 93.994 -36.4 4.855 5191 no
## 1770 1.1 93.994 -36.4 4.855 5191 no
## 1771 1.1 93.994 -36.4 4.855 5191 no
## 1772 1.1 93.994 -36.4 4.855 5191 no
## 1773 1.1 93.994 -36.4 4.855 5191 no
## 1774 1.1 93.994 -36.4 4.855 5191 no
## 1775 1.1 93.994 -36.4 4.855 5191 no
## 1776 1.1 93.994 -36.4 4.855 5191 no
## 1777 1.1 93.994 -36.4 4.855 5191 no
## 1778 1.1 93.994 -36.4 4.855 5191 no
## 1779 1.1 93.994 -36.4 4.855 5191 no
## 1780 1.1 93.994 -36.4 4.855 5191 no
## 1781 1.1 93.994 -36.4 4.855 5191 no
## 1782 1.1 93.994 -36.4 4.855 5191 no
## 1783 1.1 93.994 -36.4 4.855 5191 no
## 1784 1.1 93.994 -36.4 4.855 5191 no
## 1785 1.1 93.994 -36.4 4.855 5191 no
## 1786 1.1 93.994 -36.4 4.855 5191 no
## 1787 1.1 93.994 -36.4 4.855 5191 no
## 1788 1.1 93.994 -36.4 4.855 5191 no
## 1789 1.1 93.994 -36.4 4.855 5191 no
## 1790 1.1 93.994 -36.4 4.855 5191 no
## 1791 1.1 93.994 -36.4 4.855 5191 no
## 1792 1.1 93.994 -36.4 4.855 5191 yes
## 1793 1.1 93.994 -36.4 4.855 5191 no
## 1794 1.1 93.994 -36.4 4.855 5191 no
## 1795 1.1 93.994 -36.4 4.855 5191 no
## 1796 1.1 93.994 -36.4 4.855 5191 no
## 1797 1.1 93.994 -36.4 4.855 5191 no
## 1798 1.1 93.994 -36.4 4.855 5191 no
## 1799 1.1 93.994 -36.4 4.855 5191 no
## 1800 1.1 93.994 -36.4 4.855 5191 no
## 1801 1.1 93.994 -36.4 4.855 5191 no
## 1802 1.1 93.994 -36.4 4.855 5191 no
## 1803 1.1 93.994 -36.4 4.855 5191 no
## 1804 1.1 93.994 -36.4 4.855 5191 no
## 1805 1.1 93.994 -36.4 4.855 5191 no
## 1806 1.1 93.994 -36.4 4.855 5191 no
## 1807 1.1 93.994 -36.4 4.855 5191 no
## 1808 1.1 93.994 -36.4 4.855 5191 no
## 1809 1.1 93.994 -36.4 4.855 5191 no
## 1810 1.1 93.994 -36.4 4.855 5191 yes
## 1811 1.1 93.994 -36.4 4.855 5191 no
## 1812 1.1 93.994 -36.4 4.855 5191 no
## 1813 1.1 93.994 -36.4 4.855 5191 no
## 1814 1.1 93.994 -36.4 4.855 5191 no
## 1815 1.1 93.994 -36.4 4.855 5191 no
## 1816 1.1 93.994 -36.4 4.855 5191 no
## 1817 1.1 93.994 -36.4 4.855 5191 no
## 1818 1.1 93.994 -36.4 4.855 5191 no
## 1819 1.1 93.994 -36.4 4.855 5191 no
## 1820 1.1 93.994 -36.4 4.855 5191 yes
## 1821 1.1 93.994 -36.4 4.855 5191 no
## 1822 1.1 93.994 -36.4 4.855 5191 no
## 1823 1.1 93.994 -36.4 4.855 5191 no
## 1824 1.1 93.994 -36.4 4.855 5191 no
## 1825 1.1 93.994 -36.4 4.855 5191 no
## 1826 1.1 93.994 -36.4 4.855 5191 no
## 1827 1.1 93.994 -36.4 4.855 5191 no
## 1828 1.1 93.994 -36.4 4.855 5191 no
## 1829 1.1 93.994 -36.4 4.855 5191 no
## 1830 1.1 93.994 -36.4 4.855 5191 no
## 1831 1.1 93.994 -36.4 4.855 5191 no
## 1832 1.1 93.994 -36.4 4.855 5191 no
## 1833 1.1 93.994 -36.4 4.855 5191 no
## 1834 1.1 93.994 -36.4 4.855 5191 no
## 1835 1.1 93.994 -36.4 4.855 5191 no
## 1836 1.1 93.994 -36.4 4.855 5191 no
## 1837 1.1 93.994 -36.4 4.855 5191 no
## 1838 1.1 93.994 -36.4 4.855 5191 no
## 1839 1.1 93.994 -36.4 4.855 5191 no
## 1840 1.1 93.994 -36.4 4.855 5191 no
## 1841 1.1 93.994 -36.4 4.855 5191 no
## 1842 1.1 93.994 -36.4 4.855 5191 no
## 1843 1.1 93.994 -36.4 4.855 5191 no
## 1844 1.1 93.994 -36.4 4.855 5191 no
## 1845 1.1 93.994 -36.4 4.855 5191 no
## 1846 1.1 93.994 -36.4 4.855 5191 no
## 1847 1.1 93.994 -36.4 4.855 5191 no
## 1848 1.1 93.994 -36.4 4.855 5191 no
## 1849 1.1 93.994 -36.4 4.855 5191 no
## 1850 1.1 93.994 -36.4 4.855 5191 no
## 1851 1.1 93.994 -36.4 4.855 5191 no
## 1852 1.1 93.994 -36.4 4.855 5191 no
## 1853 1.1 93.994 -36.4 4.855 5191 no
## 1854 1.1 93.994 -36.4 4.855 5191 no
## 1855 1.1 93.994 -36.4 4.855 5191 no
## 1856 1.1 93.994 -36.4 4.855 5191 no
## 1857 1.1 93.994 -36.4 4.855 5191 no
## 1858 1.1 93.994 -36.4 4.855 5191 no
## 1859 1.1 93.994 -36.4 4.855 5191 no
## 1860 1.1 93.994 -36.4 4.855 5191 no
## 1861 1.1 93.994 -36.4 4.855 5191 no
## 1862 1.1 93.994 -36.4 4.855 5191 no
## 1863 1.1 93.994 -36.4 4.855 5191 no
## 1864 1.1 93.994 -36.4 4.855 5191 no
## 1865 1.1 93.994 -36.4 4.855 5191 no
## 1866 1.1 93.994 -36.4 4.855 5191 no
## 1867 1.1 93.994 -36.4 4.855 5191 no
## 1868 1.1 93.994 -36.4 4.855 5191 no
## 1869 1.1 93.994 -36.4 4.855 5191 no
## 1870 1.1 93.994 -36.4 4.855 5191 no
## 1871 1.1 93.994 -36.4 4.855 5191 no
## 1872 1.1 93.994 -36.4 4.855 5191 no
## 1873 1.1 93.994 -36.4 4.855 5191 no
## 1874 1.1 93.994 -36.4 4.855 5191 no
## 1875 1.1 93.994 -36.4 4.855 5191 no
## 1876 1.1 93.994 -36.4 4.855 5191 no
## 1877 1.1 93.994 -36.4 4.855 5191 no
## 1878 1.1 93.994 -36.4 4.855 5191 no
## 1879 1.1 93.994 -36.4 4.855 5191 no
## 1880 1.1 93.994 -36.4 4.855 5191 no
## 1881 1.1 93.994 -36.4 4.855 5191 no
## 1882 1.1 93.994 -36.4 4.855 5191 no
## 1883 1.1 93.994 -36.4 4.855 5191 no
## 1884 1.1 93.994 -36.4 4.855 5191 no
## 1885 1.1 93.994 -36.4 4.855 5191 no
## 1886 1.1 93.994 -36.4 4.855 5191 no
## 1887 1.1 93.994 -36.4 4.855 5191 no
## 1888 1.1 93.994 -36.4 4.855 5191 no
## 1889 1.1 93.994 -36.4 4.855 5191 no
## 1890 1.1 93.994 -36.4 4.855 5191 no
## 1891 1.1 93.994 -36.4 4.855 5191 no
## 1892 1.1 93.994 -36.4 4.855 5191 no
## 1893 1.1 93.994 -36.4 4.855 5191 no
## 1894 1.1 93.994 -36.4 4.855 5191 no
## 1895 1.1 93.994 -36.4 4.855 5191 no
## 1896 1.1 93.994 -36.4 4.855 5191 no
## 1897 1.1 93.994 -36.4 4.855 5191 no
## 1898 1.1 93.994 -36.4 4.855 5191 no
## 1899 1.1 93.994 -36.4 4.855 5191 no
## 1900 1.1 93.994 -36.4 4.855 5191 no
## 1901 1.1 93.994 -36.4 4.855 5191 no
## 1902 1.1 93.994 -36.4 4.855 5191 no
## 1903 1.1 93.994 -36.4 4.855 5191 no
## 1904 1.1 93.994 -36.4 4.855 5191 no
## 1905 1.1 93.994 -36.4 4.855 5191 no
## 1906 1.1 93.994 -36.4 4.855 5191 no
## 1907 1.1 93.994 -36.4 4.855 5191 no
## 1908 1.1 93.994 -36.4 4.855 5191 no
## 1909 1.1 93.994 -36.4 4.855 5191 no
## 1910 1.1 93.994 -36.4 4.855 5191 no
## 1911 1.1 93.994 -36.4 4.855 5191 no
## 1912 1.1 93.994 -36.4 4.855 5191 no
## 1913 1.1 93.994 -36.4 4.855 5191 no
## 1914 1.1 93.994 -36.4 4.855 5191 no
## 1915 1.1 93.994 -36.4 4.855 5191 no
## 1916 1.1 93.994 -36.4 4.855 5191 no
## 1917 1.1 93.994 -36.4 4.855 5191 no
## 1918 1.1 93.994 -36.4 4.855 5191 no
## 1919 1.1 93.994 -36.4 4.855 5191 no
## 1920 1.1 93.994 -36.4 4.855 5191 no
## 1921 1.1 93.994 -36.4 4.855 5191 no
## 1922 1.1 93.994 -36.4 4.855 5191 no
## 1923 1.1 93.994 -36.4 4.855 5191 no
## 1924 1.1 93.994 -36.4 4.855 5191 no
## 1925 1.1 93.994 -36.4 4.855 5191 no
## 1926 1.1 93.994 -36.4 4.855 5191 no
## 1927 1.1 93.994 -36.4 4.855 5191 no
## 1928 1.1 93.994 -36.4 4.855 5191 no
## 1929 1.1 93.994 -36.4 4.855 5191 no
## 1930 1.1 93.994 -36.4 4.855 5191 no
## 1931 1.1 93.994 -36.4 4.855 5191 no
## 1932 1.1 93.994 -36.4 4.855 5191 no
## 1933 1.1 93.994 -36.4 4.855 5191 no
## 1934 1.1 93.994 -36.4 4.855 5191 no
## 1935 1.1 93.994 -36.4 4.855 5191 no
## 1936 1.1 93.994 -36.4 4.855 5191 no
## 1937 1.1 93.994 -36.4 4.855 5191 no
## 1938 1.1 93.994 -36.4 4.855 5191 no
## 1939 1.1 93.994 -36.4 4.855 5191 no
## 1940 1.1 93.994 -36.4 4.855 5191 no
## 1941 1.1 93.994 -36.4 4.855 5191 no
## 1942 1.1 93.994 -36.4 4.855 5191 no
## 1943 1.1 93.994 -36.4 4.855 5191 no
## 1944 1.1 93.994 -36.4 4.855 5191 no
## 1945 1.1 93.994 -36.4 4.855 5191 no
## 1946 1.1 93.994 -36.4 4.855 5191 no
## 1947 1.1 93.994 -36.4 4.855 5191 no
## 1948 1.1 93.994 -36.4 4.855 5191 no
## 1949 1.1 93.994 -36.4 4.855 5191 no
## 1950 1.1 93.994 -36.4 4.855 5191 no
## 1951 1.1 93.994 -36.4 4.855 5191 no
## 1952 1.1 93.994 -36.4 4.855 5191 no
## 1953 1.1 93.994 -36.4 4.855 5191 no
## 1954 1.1 93.994 -36.4 4.855 5191 no
## 1955 1.1 93.994 -36.4 4.855 5191 no
## 1956 1.1 93.994 -36.4 4.855 5191 no
## 1957 1.1 93.994 -36.4 4.855 5191 no
## 1958 1.1 93.994 -36.4 4.855 5191 no
## 1959 1.1 93.994 -36.4 4.855 5191 no
## 1960 1.1 93.994 -36.4 4.855 5191 no
## 1961 1.1 93.994 -36.4 4.855 5191 no
## 1962 1.1 93.994 -36.4 4.855 5191 no
## 1963 1.1 93.994 -36.4 4.855 5191 no
## 1964 1.1 93.994 -36.4 4.855 5191 no
## 1965 1.1 93.994 -36.4 4.855 5191 no
## 1966 1.1 93.994 -36.4 4.855 5191 no
## 1967 1.1 93.994 -36.4 4.855 5191 no
## 1968 1.1 93.994 -36.4 4.855 5191 no
## 1969 1.1 93.994 -36.4 4.855 5191 no
## 1970 1.1 93.994 -36.4 4.855 5191 no
## 1971 1.1 93.994 -36.4 4.855 5191 no
## 1972 1.1 93.994 -36.4 4.855 5191 no
## 1973 1.1 93.994 -36.4 4.855 5191 no
## 1974 1.1 93.994 -36.4 4.855 5191 no
## 1975 1.1 93.994 -36.4 4.855 5191 no
## 1976 1.1 93.994 -36.4 4.855 5191 no
## 1977 1.1 93.994 -36.4 4.855 5191 no
## 1978 1.1 93.994 -36.4 4.855 5191 no
## 1979 1.1 93.994 -36.4 4.855 5191 no
## 1980 1.1 93.994 -36.4 4.855 5191 no
## 1981 1.1 93.994 -36.4 4.855 5191 no
## 1982 1.1 93.994 -36.4 4.855 5191 no
## 1983 1.1 93.994 -36.4 4.855 5191 no
## 1984 1.1 93.994 -36.4 4.855 5191 no
## 1985 1.1 93.994 -36.4 4.855 5191 no
## 1986 1.1 93.994 -36.4 4.855 5191 no
## 1987 1.1 93.994 -36.4 4.857 5191 no
## 1988 1.1 93.994 -36.4 4.857 5191 no
## 1989 1.1 93.994 -36.4 4.857 5191 no
## 1990 1.1 93.994 -36.4 4.857 5191 no
## 1991 1.1 93.994 -36.4 4.857 5191 no
## 1992 1.1 93.994 -36.4 4.857 5191 no
## 1993 1.1 93.994 -36.4 4.857 5191 no
## 1994 1.1 93.994 -36.4 4.857 5191 no
## 1995 1.1 93.994 -36.4 4.857 5191 no
## 1996 1.1 93.994 -36.4 4.857 5191 no
## 1997 1.1 93.994 -36.4 4.857 5191 no
## 1998 1.1 93.994 -36.4 4.857 5191 no
## 1999 1.1 93.994 -36.4 4.857 5191 no
## 2000 1.1 93.994 -36.4 4.857 5191 no
## 2001 1.1 93.994 -36.4 4.857 5191 no
## 2002 1.1 93.994 -36.4 4.857 5191 no
## 2003 1.1 93.994 -36.4 4.857 5191 yes
## 2004 1.1 93.994 -36.4 4.857 5191 no
## 2005 1.1 93.994 -36.4 4.857 5191 no
## 2006 1.1 93.994 -36.4 4.857 5191 no
## 2007 1.1 93.994 -36.4 4.857 5191 no
## 2008 1.1 93.994 -36.4 4.857 5191 no
## 2009 1.1 93.994 -36.4 4.857 5191 no
## 2010 1.1 93.994 -36.4 4.857 5191 no
## 2011 1.1 93.994 -36.4 4.857 5191 no
## 2012 1.1 93.994 -36.4 4.857 5191 no
## 2013 1.1 93.994 -36.4 4.857 5191 no
## 2014 1.1 93.994 -36.4 4.857 5191 no
## 2015 1.1 93.994 -36.4 4.857 5191 no
## 2016 1.1 93.994 -36.4 4.857 5191 no
## 2017 1.1 93.994 -36.4 4.857 5191 no
## 2018 1.1 93.994 -36.4 4.857 5191 no
## 2019 1.1 93.994 -36.4 4.857 5191 no
## 2020 1.1 93.994 -36.4 4.857 5191 no
## 2021 1.1 93.994 -36.4 4.857 5191 no
## 2022 1.1 93.994 -36.4 4.857 5191 no
## 2023 1.1 93.994 -36.4 4.857 5191 no
## 2024 1.1 93.994 -36.4 4.857 5191 no
## 2025 1.1 93.994 -36.4 4.857 5191 no
## 2026 1.1 93.994 -36.4 4.857 5191 no
## 2027 1.1 93.994 -36.4 4.857 5191 no
## 2028 1.1 93.994 -36.4 4.857 5191 no
## 2029 1.1 93.994 -36.4 4.857 5191 no
## 2030 1.1 93.994 -36.4 4.857 5191 no
## 2031 1.1 93.994 -36.4 4.857 5191 no
## 2032 1.1 93.994 -36.4 4.857 5191 no
## 2033 1.1 93.994 -36.4 4.857 5191 no
## 2034 1.1 93.994 -36.4 4.857 5191 no
## 2035 1.1 93.994 -36.4 4.857 5191 no
## 2036 1.1 93.994 -36.4 4.857 5191 no
## 2037 1.1 93.994 -36.4 4.857 5191 no
## 2038 1.1 93.994 -36.4 4.857 5191 no
## 2039 1.1 93.994 -36.4 4.857 5191 no
## 2040 1.1 93.994 -36.4 4.857 5191 yes
## 2041 1.1 93.994 -36.4 4.857 5191 no
## 2042 1.1 93.994 -36.4 4.857 5191 no
## 2043 1.1 93.994 -36.4 4.857 5191 no
## 2044 1.1 93.994 -36.4 4.857 5191 no
## 2045 1.1 93.994 -36.4 4.857 5191 no
## 2046 1.1 93.994 -36.4 4.857 5191 no
## 2047 1.1 93.994 -36.4 4.857 5191 no
## 2048 1.1 93.994 -36.4 4.857 5191 no
## 2049 1.1 93.994 -36.4 4.857 5191 no
## 2050 1.1 93.994 -36.4 4.857 5191 no
## 2051 1.1 93.994 -36.4 4.857 5191 no
## 2052 1.1 93.994 -36.4 4.857 5191 no
## 2053 1.1 93.994 -36.4 4.857 5191 no
## 2054 1.1 93.994 -36.4 4.857 5191 no
## 2055 1.1 93.994 -36.4 4.857 5191 no
## 2056 1.1 93.994 -36.4 4.857 5191 no
## 2057 1.1 93.994 -36.4 4.857 5191 no
## 2058 1.1 93.994 -36.4 4.857 5191 no
## 2059 1.1 93.994 -36.4 4.857 5191 no
## 2060 1.1 93.994 -36.4 4.857 5191 no
## 2061 1.1 93.994 -36.4 4.857 5191 no
## 2062 1.1 93.994 -36.4 4.857 5191 no
## 2063 1.1 93.994 -36.4 4.857 5191 no
## 2064 1.1 93.994 -36.4 4.857 5191 no
## 2065 1.1 93.994 -36.4 4.857 5191 yes
## 2066 1.1 93.994 -36.4 4.857 5191 no
## 2067 1.1 93.994 -36.4 4.857 5191 no
## 2068 1.1 93.994 -36.4 4.857 5191 no
## 2069 1.1 93.994 -36.4 4.857 5191 no
## 2070 1.1 93.994 -36.4 4.857 5191 no
## 2071 1.1 93.994 -36.4 4.857 5191 no
## 2072 1.1 93.994 -36.4 4.857 5191 no
## 2073 1.1 93.994 -36.4 4.857 5191 no
## 2074 1.1 93.994 -36.4 4.857 5191 no
## 2075 1.1 93.994 -36.4 4.857 5191 no
## 2076 1.1 93.994 -36.4 4.857 5191 no
## 2077 1.1 93.994 -36.4 4.857 5191 no
## 2078 1.1 93.994 -36.4 4.857 5191 no
## 2079 1.1 93.994 -36.4 4.857 5191 no
## 2080 1.1 93.994 -36.4 4.857 5191 no
## 2081 1.1 93.994 -36.4 4.857 5191 no
## 2082 1.1 93.994 -36.4 4.857 5191 no
## 2083 1.1 93.994 -36.4 4.857 5191 no
## 2084 1.1 93.994 -36.4 4.857 5191 no
## 2085 1.1 93.994 -36.4 4.857 5191 no
## 2086 1.1 93.994 -36.4 4.857 5191 no
## 2087 1.1 93.994 -36.4 4.857 5191 no
## 2088 1.1 93.994 -36.4 4.857 5191 no
## 2089 1.1 93.994 -36.4 4.857 5191 no
## 2090 1.1 93.994 -36.4 4.857 5191 no
## 2091 1.1 93.994 -36.4 4.857 5191 no
## 2092 1.1 93.994 -36.4 4.857 5191 no
## 2093 1.1 93.994 -36.4 4.857 5191 no
## 2094 1.1 93.994 -36.4 4.857 5191 no
## 2095 1.1 93.994 -36.4 4.857 5191 no
## 2096 1.1 93.994 -36.4 4.857 5191 no
## 2097 1.1 93.994 -36.4 4.857 5191 no
## 2098 1.1 93.994 -36.4 4.857 5191 no
## 2099 1.1 93.994 -36.4 4.857 5191 no
## 2100 1.1 93.994 -36.4 4.857 5191 no
## 2101 1.1 93.994 -36.4 4.857 5191 no
## 2102 1.1 93.994 -36.4 4.857 5191 no
## 2103 1.1 93.994 -36.4 4.857 5191 no
## 2104 1.1 93.994 -36.4 4.857 5191 no
## 2105 1.1 93.994 -36.4 4.857 5191 yes
## 2106 1.1 93.994 -36.4 4.857 5191 no
## 2107 1.1 93.994 -36.4 4.857 5191 no
## 2108 1.1 93.994 -36.4 4.857 5191 no
## 2109 1.1 93.994 -36.4 4.857 5191 no
## 2110 1.1 93.994 -36.4 4.857 5191 no
## 2111 1.1 93.994 -36.4 4.857 5191 no
## 2112 1.1 93.994 -36.4 4.857 5191 no
## 2113 1.1 93.994 -36.4 4.857 5191 no
## 2114 1.1 93.994 -36.4 4.857 5191 no
## 2115 1.1 93.994 -36.4 4.857 5191 no
## 2116 1.1 93.994 -36.4 4.857 5191 no
## 2117 1.1 93.994 -36.4 4.857 5191 no
## 2118 1.1 93.994 -36.4 4.857 5191 no
## 2119 1.1 93.994 -36.4 4.857 5191 no
## 2120 1.1 93.994 -36.4 4.857 5191 no
## 2121 1.1 93.994 -36.4 4.857 5191 no
## 2122 1.1 93.994 -36.4 4.857 5191 no
## 2123 1.1 93.994 -36.4 4.857 5191 no
## 2124 1.1 93.994 -36.4 4.857 5191 no
## 2125 1.1 93.994 -36.4 4.857 5191 no
## 2126 1.1 93.994 -36.4 4.857 5191 no
## 2127 1.1 93.994 -36.4 4.857 5191 no
## 2128 1.1 93.994 -36.4 4.857 5191 no
## 2129 1.1 93.994 -36.4 4.857 5191 no
## 2130 1.1 93.994 -36.4 4.857 5191 no
## 2131 1.1 93.994 -36.4 4.857 5191 no
## 2132 1.1 93.994 -36.4 4.857 5191 no
## 2133 1.1 93.994 -36.4 4.857 5191 no
## 2134 1.1 93.994 -36.4 4.857 5191 no
## 2135 1.1 93.994 -36.4 4.857 5191 no
## 2136 1.1 93.994 -36.4 4.857 5191 no
## 2137 1.1 93.994 -36.4 4.857 5191 no
## 2138 1.1 93.994 -36.4 4.857 5191 no
## 2139 1.1 93.994 -36.4 4.857 5191 no
## 2140 1.1 93.994 -36.4 4.857 5191 no
## 2141 1.1 93.994 -36.4 4.857 5191 no
## 2142 1.1 93.994 -36.4 4.857 5191 no
## 2143 1.1 93.994 -36.4 4.857 5191 no
## 2144 1.1 93.994 -36.4 4.857 5191 no
## 2145 1.1 93.994 -36.4 4.857 5191 no
## 2146 1.1 93.994 -36.4 4.857 5191 no
## 2147 1.1 93.994 -36.4 4.857 5191 no
## 2148 1.1 93.994 -36.4 4.857 5191 no
## 2149 1.1 93.994 -36.4 4.857 5191 no
## 2150 1.1 93.994 -36.4 4.857 5191 no
## 2151 1.1 93.994 -36.4 4.857 5191 no
## 2152 1.1 93.994 -36.4 4.857 5191 no
## 2153 1.1 93.994 -36.4 4.857 5191 no
## 2154 1.1 93.994 -36.4 4.857 5191 no
## 2155 1.1 93.994 -36.4 4.857 5191 no
## 2156 1.1 93.994 -36.4 4.857 5191 no
## 2157 1.1 93.994 -36.4 4.857 5191 no
## 2158 1.1 93.994 -36.4 4.857 5191 no
## 2159 1.1 93.994 -36.4 4.857 5191 no
## 2160 1.1 93.994 -36.4 4.857 5191 no
## 2161 1.1 93.994 -36.4 4.857 5191 no
## 2162 1.1 93.994 -36.4 4.857 5191 no
## 2163 1.1 93.994 -36.4 4.857 5191 no
## 2164 1.1 93.994 -36.4 4.857 5191 no
## 2165 1.1 93.994 -36.4 4.857 5191 no
## 2166 1.1 93.994 -36.4 4.857 5191 no
## 2167 1.1 93.994 -36.4 4.857 5191 no
## 2168 1.1 93.994 -36.4 4.857 5191 no
## 2169 1.1 93.994 -36.4 4.857 5191 no
## 2170 1.1 93.994 -36.4 4.857 5191 no
## 2171 1.1 93.994 -36.4 4.857 5191 no
## 2172 1.1 93.994 -36.4 4.857 5191 no
## 2173 1.1 93.994 -36.4 4.857 5191 no
## 2174 1.1 93.994 -36.4 4.857 5191 no
## 2175 1.1 93.994 -36.4 4.857 5191 no
## 2176 1.1 93.994 -36.4 4.857 5191 no
## 2177 1.1 93.994 -36.4 4.857 5191 no
## 2178 1.1 93.994 -36.4 4.857 5191 no
## 2179 1.1 93.994 -36.4 4.857 5191 no
## 2180 1.1 93.994 -36.4 4.857 5191 no
## 2181 1.1 93.994 -36.4 4.857 5191 no
## 2182 1.1 93.994 -36.4 4.857 5191 no
## 2183 1.1 93.994 -36.4 4.857 5191 no
## 2184 1.1 93.994 -36.4 4.857 5191 no
## 2185 1.1 93.994 -36.4 4.857 5191 no
## 2186 1.1 93.994 -36.4 4.857 5191 no
## 2187 1.1 93.994 -36.4 4.857 5191 no
## 2188 1.1 93.994 -36.4 4.857 5191 no
## 2189 1.1 93.994 -36.4 4.857 5191 no
## 2190 1.1 93.994 -36.4 4.857 5191 no
## 2191 1.1 93.994 -36.4 4.857 5191 no
## 2192 1.1 93.994 -36.4 4.857 5191 no
## 2193 1.1 93.994 -36.4 4.857 5191 no
## 2194 1.1 93.994 -36.4 4.857 5191 no
## 2195 1.1 93.994 -36.4 4.857 5191 no
## 2196 1.1 93.994 -36.4 4.857 5191 no
## 2197 1.1 93.994 -36.4 4.857 5191 no
## 2198 1.1 93.994 -36.4 4.857 5191 no
## 2199 1.1 93.994 -36.4 4.857 5191 no
## 2200 1.1 93.994 -36.4 4.857 5191 no
## 2201 1.1 93.994 -36.4 4.857 5191 no
## 2202 1.1 93.994 -36.4 4.857 5191 no
## 2203 1.1 93.994 -36.4 4.857 5191 no
## 2204 1.1 93.994 -36.4 4.857 5191 no
## 2205 1.1 93.994 -36.4 4.857 5191 no
## 2206 1.1 93.994 -36.4 4.857 5191 no
## 2207 1.1 93.994 -36.4 4.857 5191 no
## 2208 1.1 93.994 -36.4 4.857 5191 no
## 2209 1.1 93.994 -36.4 4.857 5191 no
## 2210 1.1 93.994 -36.4 4.857 5191 no
## 2211 1.1 93.994 -36.4 4.857 5191 no
## 2212 1.1 93.994 -36.4 4.857 5191 no
## 2213 1.1 93.994 -36.4 4.857 5191 no
## 2214 1.1 93.994 -36.4 4.857 5191 no
## 2215 1.1 93.994 -36.4 4.857 5191 no
## 2216 1.1 93.994 -36.4 4.857 5191 no
## 2217 1.1 93.994 -36.4 4.857 5191 no
## 2218 1.1 93.994 -36.4 4.857 5191 no
## 2219 1.1 93.994 -36.4 4.857 5191 no
## 2220 1.1 93.994 -36.4 4.857 5191 no
## 2221 1.1 93.994 -36.4 4.857 5191 no
## 2222 1.1 93.994 -36.4 4.857 5191 no
## 2223 1.1 93.994 -36.4 4.857 5191 no
## 2224 1.1 93.994 -36.4 4.857 5191 no
## 2225 1.1 93.994 -36.4 4.857 5191 no
## 2226 1.1 93.994 -36.4 4.857 5191 no
## 2227 1.1 93.994 -36.4 4.857 5191 no
## 2228 1.1 93.994 -36.4 4.857 5191 no
## 2229 1.1 93.994 -36.4 4.857 5191 no
## 2230 1.1 93.994 -36.4 4.857 5191 no
## 2231 1.1 93.994 -36.4 4.857 5191 no
## 2232 1.1 93.994 -36.4 4.857 5191 no
## 2233 1.1 93.994 -36.4 4.857 5191 no
## 2234 1.1 93.994 -36.4 4.857 5191 no
## 2235 1.1 93.994 -36.4 4.857 5191 no
## 2236 1.1 93.994 -36.4 4.857 5191 no
## 2237 1.1 93.994 -36.4 4.857 5191 no
## 2238 1.1 93.994 -36.4 4.857 5191 no
## 2239 1.1 93.994 -36.4 4.857 5191 no
## 2240 1.1 93.994 -36.4 4.857 5191 no
## 2241 1.1 93.994 -36.4 4.857 5191 no
## 2242 1.1 93.994 -36.4 4.857 5191 no
## 2243 1.1 93.994 -36.4 4.857 5191 no
## 2244 1.1 93.994 -36.4 4.857 5191 no
## 2245 1.1 93.994 -36.4 4.857 5191 no
## 2246 1.1 93.994 -36.4 4.857 5191 no
## 2247 1.1 93.994 -36.4 4.857 5191 no
## 2248 1.1 93.994 -36.4 4.856 5191 no
## 2249 1.1 93.994 -36.4 4.856 5191 no
## 2250 1.1 93.994 -36.4 4.856 5191 no
## 2251 1.1 93.994 -36.4 4.856 5191 no
## 2252 1.1 93.994 -36.4 4.856 5191 no
## 2253 1.1 93.994 -36.4 4.856 5191 no
## 2254 1.1 93.994 -36.4 4.856 5191 no
## 2255 1.1 93.994 -36.4 4.856 5191 no
## 2256 1.1 93.994 -36.4 4.856 5191 no
## 2257 1.1 93.994 -36.4 4.856 5191 no
## 2258 1.1 93.994 -36.4 4.856 5191 yes
## 2259 1.1 93.994 -36.4 4.856 5191 no
## 2260 1.1 93.994 -36.4 4.856 5191 no
## 2261 1.1 93.994 -36.4 4.856 5191 no
## 2262 1.1 93.994 -36.4 4.856 5191 no
## 2263 1.1 93.994 -36.4 4.856 5191 no
## 2264 1.1 93.994 -36.4 4.856 5191 no
## 2265 1.1 93.994 -36.4 4.856 5191 no
## 2266 1.1 93.994 -36.4 4.856 5191 no
## 2267 1.1 93.994 -36.4 4.856 5191 no
## 2268 1.1 93.994 -36.4 4.856 5191 no
## 2269 1.1 93.994 -36.4 4.856 5191 no
## 2270 1.1 93.994 -36.4 4.856 5191 no
## 2271 1.1 93.994 -36.4 4.856 5191 no
## 2272 1.1 93.994 -36.4 4.856 5191 no
## 2273 1.1 93.994 -36.4 4.856 5191 no
## 2274 1.1 93.994 -36.4 4.856 5191 no
## 2275 1.1 93.994 -36.4 4.856 5191 no
## 2276 1.1 93.994 -36.4 4.856 5191 yes
## 2277 1.1 93.994 -36.4 4.856 5191 no
## 2278 1.1 93.994 -36.4 4.856 5191 no
## 2279 1.1 93.994 -36.4 4.856 5191 no
## 2280 1.1 93.994 -36.4 4.856 5191 no
## 2281 1.1 93.994 -36.4 4.856 5191 no
## 2282 1.1 93.994 -36.4 4.856 5191 no
## 2283 1.1 93.994 -36.4 4.856 5191 no
## 2284 1.1 93.994 -36.4 4.856 5191 no
## 2285 1.1 93.994 -36.4 4.856 5191 no
## 2286 1.1 93.994 -36.4 4.856 5191 no
## 2287 1.1 93.994 -36.4 4.856 5191 no
## 2288 1.1 93.994 -36.4 4.856 5191 no
## 2289 1.1 93.994 -36.4 4.856 5191 no
## 2290 1.1 93.994 -36.4 4.856 5191 no
## 2291 1.1 93.994 -36.4 4.856 5191 no
## 2292 1.1 93.994 -36.4 4.856 5191 no
## 2293 1.1 93.994 -36.4 4.856 5191 no
## 2294 1.1 93.994 -36.4 4.856 5191 no
## 2295 1.1 93.994 -36.4 4.856 5191 no
## 2296 1.1 93.994 -36.4 4.856 5191 no
## 2297 1.1 93.994 -36.4 4.856 5191 no
## 2298 1.1 93.994 -36.4 4.856 5191 no
## 2299 1.1 93.994 -36.4 4.856 5191 no
## 2300 1.1 93.994 -36.4 4.856 5191 no
## 2301 1.1 93.994 -36.4 4.856 5191 no
## 2302 1.1 93.994 -36.4 4.856 5191 no
## 2303 1.1 93.994 -36.4 4.856 5191 no
## 2304 1.1 93.994 -36.4 4.856 5191 no
## 2305 1.1 93.994 -36.4 4.856 5191 no
## 2306 1.1 93.994 -36.4 4.856 5191 yes
## 2307 1.1 93.994 -36.4 4.856 5191 no
## 2308 1.1 93.994 -36.4 4.856 5191 no
## 2309 1.1 93.994 -36.4 4.856 5191 no
## 2310 1.1 93.994 -36.4 4.856 5191 no
## 2311 1.1 93.994 -36.4 4.856 5191 no
## 2312 1.1 93.994 -36.4 4.856 5191 no
## 2313 1.1 93.994 -36.4 4.856 5191 no
## 2314 1.1 93.994 -36.4 4.856 5191 no
## 2315 1.1 93.994 -36.4 4.856 5191 no
## 2316 1.1 93.994 -36.4 4.856 5191 yes
## 2317 1.1 93.994 -36.4 4.856 5191 yes
## 2318 1.1 93.994 -36.4 4.856 5191 no
## 2319 1.1 93.994 -36.4 4.856 5191 no
## 2320 1.1 93.994 -36.4 4.856 5191 no
## 2321 1.1 93.994 -36.4 4.856 5191 no
## 2322 1.1 93.994 -36.4 4.856 5191 no
## 2323 1.1 93.994 -36.4 4.856 5191 no
## 2324 1.1 93.994 -36.4 4.856 5191 no
## 2325 1.1 93.994 -36.4 4.856 5191 no
## 2326 1.1 93.994 -36.4 4.856 5191 no
## 2327 1.1 93.994 -36.4 4.856 5191 no
## 2328 1.1 93.994 -36.4 4.856 5191 no
## 2329 1.1 93.994 -36.4 4.856 5191 no
## 2330 1.1 93.994 -36.4 4.856 5191 no
## 2331 1.1 93.994 -36.4 4.856 5191 yes
## 2332 1.1 93.994 -36.4 4.856 5191 no
## 2333 1.1 93.994 -36.4 4.856 5191 no
## 2334 1.1 93.994 -36.4 4.856 5191 no
## 2335 1.1 93.994 -36.4 4.856 5191 no
## 2336 1.1 93.994 -36.4 4.856 5191 no
## 2337 1.1 93.994 -36.4 4.856 5191 no
## 2338 1.1 93.994 -36.4 4.856 5191 no
## 2339 1.1 93.994 -36.4 4.856 5191 no
## 2340 1.1 93.994 -36.4 4.856 5191 no
## 2341 1.1 93.994 -36.4 4.856 5191 no
## 2342 1.1 93.994 -36.4 4.856 5191 no
## 2343 1.1 93.994 -36.4 4.856 5191 no
## 2344 1.1 93.994 -36.4 4.856 5191 no
## 2345 1.1 93.994 -36.4 4.856 5191 no
## 2346 1.1 93.994 -36.4 4.856 5191 no
## 2347 1.1 93.994 -36.4 4.856 5191 no
## 2348 1.1 93.994 -36.4 4.856 5191 no
## 2349 1.1 93.994 -36.4 4.856 5191 no
## 2350 1.1 93.994 -36.4 4.856 5191 no
## 2351 1.1 93.994 -36.4 4.856 5191 no
## 2352 1.1 93.994 -36.4 4.856 5191 no
## 2353 1.1 93.994 -36.4 4.856 5191 no
## 2354 1.1 93.994 -36.4 4.856 5191 no
## 2355 1.1 93.994 -36.4 4.856 5191 no
## 2356 1.1 93.994 -36.4 4.856 5191 no
## 2357 1.1 93.994 -36.4 4.856 5191 no
## 2358 1.1 93.994 -36.4 4.856 5191 no
## 2359 1.1 93.994 -36.4 4.856 5191 no
## 2360 1.1 93.994 -36.4 4.856 5191 no
## 2361 1.1 93.994 -36.4 4.856 5191 no
## 2362 1.1 93.994 -36.4 4.856 5191 no
## 2363 1.1 93.994 -36.4 4.856 5191 no
## 2364 1.1 93.994 -36.4 4.856 5191 no
## 2365 1.1 93.994 -36.4 4.856 5191 no
## 2366 1.1 93.994 -36.4 4.856 5191 no
## 2367 1.1 93.994 -36.4 4.856 5191 no
## 2368 1.1 93.994 -36.4 4.856 5191 no
## 2369 1.1 93.994 -36.4 4.856 5191 no
## 2370 1.1 93.994 -36.4 4.856 5191 no
## 2371 1.1 93.994 -36.4 4.856 5191 no
## 2372 1.1 93.994 -36.4 4.856 5191 no
## 2373 1.1 93.994 -36.4 4.856 5191 no
## 2374 1.1 93.994 -36.4 4.856 5191 no
## 2375 1.1 93.994 -36.4 4.856 5191 no
## 2376 1.1 93.994 -36.4 4.856 5191 no
## 2377 1.1 93.994 -36.4 4.856 5191 no
## 2378 1.1 93.994 -36.4 4.856 5191 no
## 2379 1.1 93.994 -36.4 4.856 5191 no
## 2380 1.1 93.994 -36.4 4.856 5191 no
## 2381 1.1 93.994 -36.4 4.856 5191 no
## 2382 1.1 93.994 -36.4 4.856 5191 no
## 2383 1.1 93.994 -36.4 4.856 5191 no
## 2384 1.1 93.994 -36.4 4.856 5191 no
## 2385 1.1 93.994 -36.4 4.856 5191 no
## 2386 1.1 93.994 -36.4 4.856 5191 no
## 2387 1.1 93.994 -36.4 4.856 5191 no
## 2388 1.1 93.994 -36.4 4.856 5191 no
## 2389 1.1 93.994 -36.4 4.856 5191 no
## 2390 1.1 93.994 -36.4 4.856 5191 no
## 2391 1.1 93.994 -36.4 4.856 5191 no
## 2392 1.1 93.994 -36.4 4.856 5191 no
## 2393 1.1 93.994 -36.4 4.856 5191 no
## 2394 1.1 93.994 -36.4 4.856 5191 no
## 2395 1.1 93.994 -36.4 4.856 5191 no
## 2396 1.1 93.994 -36.4 4.856 5191 no
## 2397 1.1 93.994 -36.4 4.856 5191 no
## 2398 1.1 93.994 -36.4 4.856 5191 no
## 2399 1.1 93.994 -36.4 4.856 5191 no
## 2400 1.1 93.994 -36.4 4.856 5191 no
## 2401 1.1 93.994 -36.4 4.856 5191 no
## 2402 1.1 93.994 -36.4 4.856 5191 no
## 2403 1.1 93.994 -36.4 4.856 5191 no
## 2404 1.1 93.994 -36.4 4.856 5191 no
## 2405 1.1 93.994 -36.4 4.856 5191 no
## 2406 1.1 93.994 -36.4 4.856 5191 no
## 2407 1.1 93.994 -36.4 4.856 5191 yes
## 2408 1.1 93.994 -36.4 4.856 5191 no
## 2409 1.1 93.994 -36.4 4.856 5191 no
## 2410 1.1 93.994 -36.4 4.856 5191 no
## 2411 1.1 93.994 -36.4 4.856 5191 no
## 2412 1.1 93.994 -36.4 4.856 5191 no
## 2413 1.1 93.994 -36.4 4.856 5191 no
## 2414 1.1 93.994 -36.4 4.856 5191 no
## 2415 1.1 93.994 -36.4 4.856 5191 no
## 2416 1.1 93.994 -36.4 4.856 5191 no
## 2417 1.1 93.994 -36.4 4.856 5191 no
## 2418 1.1 93.994 -36.4 4.856 5191 yes
## 2419 1.1 93.994 -36.4 4.856 5191 no
## 2420 1.1 93.994 -36.4 4.856 5191 no
## 2421 1.1 93.994 -36.4 4.856 5191 no
## 2422 1.1 93.994 -36.4 4.856 5191 yes
## 2423 1.1 93.994 -36.4 4.856 5191 no
## 2424 1.1 93.994 -36.4 4.856 5191 no
## 2425 1.1 93.994 -36.4 4.856 5191 yes
## 2426 1.1 93.994 -36.4 4.856 5191 no
## 2427 1.1 93.994 -36.4 4.856 5191 no
## 2428 1.1 93.994 -36.4 4.856 5191 no
## 2429 1.1 93.994 -36.4 4.856 5191 no
## 2430 1.1 93.994 -36.4 4.856 5191 no
## 2431 1.1 93.994 -36.4 4.856 5191 no
## 2432 1.1 93.994 -36.4 4.856 5191 no
## 2433 1.1 93.994 -36.4 4.856 5191 no
## 2434 1.1 93.994 -36.4 4.856 5191 no
## 2435 1.1 93.994 -36.4 4.856 5191 no
## 2436 1.1 93.994 -36.4 4.856 5191 no
## 2437 1.1 93.994 -36.4 4.856 5191 no
## 2438 1.1 93.994 -36.4 4.856 5191 no
## 2439 1.1 93.994 -36.4 4.856 5191 no
## 2440 1.1 93.994 -36.4 4.856 5191 no
## 2441 1.1 93.994 -36.4 4.856 5191 no
## 2442 1.1 93.994 -36.4 4.856 5191 no
## 2443 1.1 93.994 -36.4 4.856 5191 no
## 2444 1.1 93.994 -36.4 4.856 5191 no
## 2445 1.1 93.994 -36.4 4.856 5191 yes
## 2446 1.1 93.994 -36.4 4.856 5191 no
## 2447 1.1 93.994 -36.4 4.856 5191 no
## 2448 1.1 93.994 -36.4 4.856 5191 no
## 2449 1.1 93.994 -36.4 4.856 5191 no
## 2450 1.1 93.994 -36.4 4.856 5191 yes
## 2451 1.1 93.994 -36.4 4.856 5191 no
## 2452 1.1 93.994 -36.4 4.856 5191 no
## 2453 1.1 93.994 -36.4 4.856 5191 no
## 2454 1.1 93.994 -36.4 4.856 5191 no
## 2455 1.1 93.994 -36.4 4.856 5191 no
## 2456 1.1 93.994 -36.4 4.856 5191 no
## 2457 1.1 93.994 -36.4 4.856 5191 no
## 2458 1.1 93.994 -36.4 4.856 5191 no
## 2459 1.1 93.994 -36.4 4.856 5191 no
## 2460 1.1 93.994 -36.4 4.856 5191 no
## 2461 1.1 93.994 -36.4 4.856 5191 no
## 2462 1.1 93.994 -36.4 4.856 5191 no
## 2463 1.1 93.994 -36.4 4.856 5191 no
## 2464 1.1 93.994 -36.4 4.856 5191 no
## 2465 1.1 93.994 -36.4 4.856 5191 no
## 2466 1.1 93.994 -36.4 4.856 5191 no
## 2467 1.1 93.994 -36.4 4.856 5191 no
## 2468 1.1 93.994 -36.4 4.856 5191 no
## 2469 1.1 93.994 -36.4 4.856 5191 no
## 2470 1.1 93.994 -36.4 4.856 5191 no
## 2471 1.1 93.994 -36.4 4.856 5191 no
## 2472 1.1 93.994 -36.4 4.856 5191 no
## 2473 1.1 93.994 -36.4 4.856 5191 no
## 2474 1.1 93.994 -36.4 4.856 5191 yes
## 2475 1.1 93.994 -36.4 4.856 5191 no
## 2476 1.1 93.994 -36.4 4.856 5191 no
## 2477 1.1 93.994 -36.4 4.856 5191 no
## 2478 1.1 93.994 -36.4 4.856 5191 no
## 2479 1.1 93.994 -36.4 4.856 5191 no
## 2480 1.1 93.994 -36.4 4.856 5191 no
## 2481 1.1 93.994 -36.4 4.856 5191 no
## 2482 1.1 93.994 -36.4 4.856 5191 no
## 2483 1.1 93.994 -36.4 4.856 5191 no
## 2484 1.1 93.994 -36.4 4.856 5191 no
## 2485 1.1 93.994 -36.4 4.856 5191 no
## 2486 1.1 93.994 -36.4 4.856 5191 no
## 2487 1.1 93.994 -36.4 4.856 5191 no
## 2488 1.1 93.994 -36.4 4.856 5191 no
## 2489 1.1 93.994 -36.4 4.856 5191 no
## 2490 1.1 93.994 -36.4 4.856 5191 no
## 2491 1.1 93.994 -36.4 4.856 5191 no
## 2492 1.1 93.994 -36.4 4.856 5191 no
## 2493 1.1 93.994 -36.4 4.856 5191 no
## 2494 1.1 93.994 -36.4 4.856 5191 no
## 2495 1.1 93.994 -36.4 4.856 5191 no
## 2496 1.1 93.994 -36.4 4.856 5191 no
## 2497 1.1 93.994 -36.4 4.856 5191 no
## 2498 1.1 93.994 -36.4 4.856 5191 no
## 2499 1.1 93.994 -36.4 4.856 5191 no
## 2500 1.1 93.994 -36.4 4.856 5191 no
## 2501 1.1 93.994 -36.4 4.856 5191 no
## 2502 1.1 93.994 -36.4 4.856 5191 no
## 2503 1.1 93.994 -36.4 4.856 5191 no
## 2504 1.1 93.994 -36.4 4.856 5191 no
## 2505 1.1 93.994 -36.4 4.856 5191 no
## 2506 1.1 93.994 -36.4 4.856 5191 no
## 2507 1.1 93.994 -36.4 4.856 5191 no
## 2508 1.1 93.994 -36.4 4.856 5191 no
## 2509 1.1 93.994 -36.4 4.856 5191 no
## 2510 1.1 93.994 -36.4 4.856 5191 no
## 2511 1.1 93.994 -36.4 4.856 5191 no
## 2512 1.1 93.994 -36.4 4.856 5191 no
## 2513 1.1 93.994 -36.4 4.856 5191 no
## 2514 1.1 93.994 -36.4 4.856 5191 no
## 2515 1.1 93.994 -36.4 4.856 5191 no
## 2516 1.1 93.994 -36.4 4.856 5191 no
## 2517 1.1 93.994 -36.4 4.856 5191 no
## 2518 1.1 93.994 -36.4 4.856 5191 no
## 2519 1.1 93.994 -36.4 4.856 5191 no
## 2520 1.1 93.994 -36.4 4.856 5191 no
## 2521 1.1 93.994 -36.4 4.856 5191 no
## 2522 1.1 93.994 -36.4 4.856 5191 no
## 2523 1.1 93.994 -36.4 4.856 5191 no
## 2524 1.1 93.994 -36.4 4.856 5191 no
## 2525 1.1 93.994 -36.4 4.856 5191 no
## 2526 1.1 93.994 -36.4 4.856 5191 no
## 2527 1.1 93.994 -36.4 4.856 5191 no
## 2528 1.1 93.994 -36.4 4.856 5191 no
## 2529 1.1 93.994 -36.4 4.856 5191 no
## 2530 1.1 93.994 -36.4 4.856 5191 no
## 2531 1.1 93.994 -36.4 4.856 5191 no
## 2532 1.1 93.994 -36.4 4.856 5191 no
## 2533 1.1 93.994 -36.4 4.856 5191 no
## 2534 1.1 93.994 -36.4 4.856 5191 no
## 2535 1.1 93.994 -36.4 4.856 5191 no
## 2536 1.1 93.994 -36.4 4.856 5191 no
## 2537 1.1 93.994 -36.4 4.856 5191 no
## 2538 1.1 93.994 -36.4 4.856 5191 no
## 2539 1.1 93.994 -36.4 4.856 5191 no
## 2540 1.1 93.994 -36.4 4.856 5191 no
## 2541 1.1 93.994 -36.4 4.856 5191 no
## 2542 1.1 93.994 -36.4 4.856 5191 no
## 2543 1.1 93.994 -36.4 4.856 5191 no
## 2544 1.1 93.994 -36.4 4.856 5191 no
## 2545 1.1 93.994 -36.4 4.856 5191 no
## 2546 1.1 93.994 -36.4 4.856 5191 no
## 2547 1.1 93.994 -36.4 4.856 5191 no
## 2548 1.1 93.994 -36.4 4.856 5191 no
## 2549 1.1 93.994 -36.4 4.856 5191 no
## 2550 1.1 93.994 -36.4 4.856 5191 no
## 2551 1.1 93.994 -36.4 4.856 5191 no
## 2552 1.1 93.994 -36.4 4.856 5191 no
## 2553 1.1 93.994 -36.4 4.856 5191 no
## 2554 1.1 93.994 -36.4 4.856 5191 no
## 2555 1.1 93.994 -36.4 4.856 5191 no
## 2556 1.1 93.994 -36.4 4.856 5191 no
## 2557 1.1 93.994 -36.4 4.856 5191 no
## 2558 1.1 93.994 -36.4 4.856 5191 no
## 2559 1.1 93.994 -36.4 4.856 5191 no
## 2560 1.1 93.994 -36.4 4.856 5191 no
## 2561 1.1 93.994 -36.4 4.856 5191 no
## 2562 1.1 93.994 -36.4 4.856 5191 no
## 2563 1.1 93.994 -36.4 4.856 5191 no
## 2564 1.1 93.994 -36.4 4.856 5191 no
## 2565 1.1 93.994 -36.4 4.856 5191 no
## 2566 1.1 93.994 -36.4 4.856 5191 no
## 2567 1.1 93.994 -36.4 4.856 5191 no
## 2568 1.1 93.994 -36.4 4.856 5191 no
## 2569 1.1 93.994 -36.4 4.856 5191 no
## 2570 1.1 93.994 -36.4 4.856 5191 no
## 2571 1.1 93.994 -36.4 4.856 5191 no
## 2572 1.1 93.994 -36.4 4.856 5191 no
## 2573 1.1 93.994 -36.4 4.856 5191 no
## 2574 1.1 93.994 -36.4 4.856 5191 no
## 2575 1.1 93.994 -36.4 4.856 5191 no
## 2576 1.1 93.994 -36.4 4.856 5191 no
## 2577 1.1 93.994 -36.4 4.856 5191 no
## 2578 1.1 93.994 -36.4 4.856 5191 no
## 2579 1.1 93.994 -36.4 4.856 5191 no
## 2580 1.1 93.994 -36.4 4.856 5191 no
## 2581 1.1 93.994 -36.4 4.856 5191 no
## 2582 1.1 93.994 -36.4 4.856 5191 no
## 2583 1.1 93.994 -36.4 4.856 5191 no
## 2584 1.1 93.994 -36.4 4.856 5191 no
## 2585 1.1 93.994 -36.4 4.856 5191 no
## 2586 1.1 93.994 -36.4 4.856 5191 no
## 2587 1.1 93.994 -36.4 4.856 5191 no
## 2588 1.1 93.994 -36.4 4.856 5191 no
## 2589 1.1 93.994 -36.4 4.856 5191 no
## 2590 1.1 93.994 -36.4 4.856 5191 no
## 2591 1.1 93.994 -36.4 4.856 5191 no
## 2592 1.1 93.994 -36.4 4.856 5191 no
## 2593 1.1 93.994 -36.4 4.856 5191 no
## 2594 1.1 93.994 -36.4 4.856 5191 no
## 2595 1.1 93.994 -36.4 4.856 5191 no
## 2596 1.1 93.994 -36.4 4.856 5191 no
## 2597 1.1 93.994 -36.4 4.856 5191 no
## 2598 1.1 93.994 -36.4 4.856 5191 no
## 2599 1.1 93.994 -36.4 4.856 5191 no
## 2600 1.1 93.994 -36.4 4.856 5191 no
## 2601 1.1 93.994 -36.4 4.856 5191 no
## 2602 1.1 93.994 -36.4 4.856 5191 no
## 2603 1.1 93.994 -36.4 4.856 5191 no
## 2604 1.1 93.994 -36.4 4.856 5191 no
## 2605 1.1 93.994 -36.4 4.856 5191 no
## 2606 1.1 93.994 -36.4 4.856 5191 no
## 2607 1.1 93.994 -36.4 4.856 5191 no
## 2608 1.1 93.994 -36.4 4.856 5191 no
## 2609 1.1 93.994 -36.4 4.856 5191 no
## 2610 1.1 93.994 -36.4 4.856 5191 no
## 2611 1.1 93.994 -36.4 4.856 5191 no
## 2612 1.1 93.994 -36.4 4.856 5191 no
## 2613 1.1 93.994 -36.4 4.856 5191 no
## 2614 1.1 93.994 -36.4 4.856 5191 no
## 2615 1.1 93.994 -36.4 4.856 5191 no
## 2616 1.1 93.994 -36.4 4.856 5191 no
## 2617 1.1 93.994 -36.4 4.856 5191 no
## 2618 1.1 93.994 -36.4 4.856 5191 no
## 2619 1.1 93.994 -36.4 4.856 5191 no
## 2620 1.1 93.994 -36.4 4.856 5191 no
## 2621 1.1 93.994 -36.4 4.856 5191 no
## 2622 1.1 93.994 -36.4 4.856 5191 no
## 2623 1.1 93.994 -36.4 4.856 5191 no
## 2624 1.1 93.994 -36.4 4.856 5191 no
## 2625 1.1 93.994 -36.4 4.856 5191 no
## 2626 1.1 93.994 -36.4 4.856 5191 no
## 2627 1.1 93.994 -36.4 4.856 5191 no
## 2628 1.1 93.994 -36.4 4.856 5191 no
## 2629 1.1 93.994 -36.4 4.856 5191 no
## 2630 1.1 93.994 -36.4 4.856 5191 no
## 2631 1.1 93.994 -36.4 4.856 5191 no
## 2632 1.1 93.994 -36.4 4.856 5191 no
## 2633 1.1 93.994 -36.4 4.856 5191 no
## 2634 1.1 93.994 -36.4 4.856 5191 no
## 2635 1.1 93.994 -36.4 4.856 5191 no
## 2636 1.1 93.994 -36.4 4.856 5191 yes
## 2637 1.1 93.994 -36.4 4.856 5191 no
## 2638 1.1 93.994 -36.4 4.856 5191 no
## 2639 1.1 93.994 -36.4 4.856 5191 no
## 2640 1.1 93.994 -36.4 4.856 5191 no
## 2641 1.1 93.994 -36.4 4.856 5191 no
## 2642 1.1 93.994 -36.4 4.856 5191 no
## 2643 1.1 93.994 -36.4 4.856 5191 no
## 2644 1.1 93.994 -36.4 4.856 5191 no
## 2645 1.1 93.994 -36.4 4.856 5191 no
## 2646 1.1 93.994 -36.4 4.856 5191 yes
## 2647 1.1 93.994 -36.4 4.856 5191 no
## 2648 1.1 93.994 -36.4 4.856 5191 no
## 2649 1.1 93.994 -36.4 4.856 5191 no
## 2650 1.1 93.994 -36.4 4.856 5191 no
## 2651 1.1 93.994 -36.4 4.856 5191 no
## 2652 1.1 93.994 -36.4 4.856 5191 no
## 2653 1.1 93.994 -36.4 4.856 5191 no
## 2654 1.1 93.994 -36.4 4.856 5191 no
## 2655 1.1 93.994 -36.4 4.856 5191 no
## 2656 1.1 93.994 -36.4 4.859 5191 no
## 2657 1.1 93.994 -36.4 4.859 5191 no
## 2658 1.1 93.994 -36.4 4.859 5191 no
## 2659 1.1 93.994 -36.4 4.859 5191 no
## 2660 1.1 93.994 -36.4 4.859 5191 no
## 2661 1.1 93.994 -36.4 4.859 5191 no
## 2662 1.1 93.994 -36.4 4.859 5191 no
## 2663 1.1 93.994 -36.4 4.859 5191 no
## 2664 1.1 93.994 -36.4 4.859 5191 no
## 2665 1.1 93.994 -36.4 4.859 5191 no
## 2666 1.1 93.994 -36.4 4.859 5191 no
## 2667 1.1 93.994 -36.4 4.859 5191 no
## 2668 1.1 93.994 -36.4 4.859 5191 no
## 2669 1.1 93.994 -36.4 4.859 5191 no
## 2670 1.1 93.994 -36.4 4.859 5191 no
## 2671 1.1 93.994 -36.4 4.859 5191 no
## 2672 1.1 93.994 -36.4 4.859 5191 no
## 2673 1.1 93.994 -36.4 4.859 5191 no
## 2674 1.1 93.994 -36.4 4.859 5191 no
## 2675 1.1 93.994 -36.4 4.859 5191 no
## 2676 1.1 93.994 -36.4 4.859 5191 no
## 2677 1.1 93.994 -36.4 4.859 5191 no
## 2678 1.1 93.994 -36.4 4.859 5191 no
## 2679 1.1 93.994 -36.4 4.859 5191 no
## 2680 1.1 93.994 -36.4 4.859 5191 no
## 2681 1.1 93.994 -36.4 4.859 5191 no
## 2682 1.1 93.994 -36.4 4.859 5191 no
## 2683 1.1 93.994 -36.4 4.859 5191 no
## 2684 1.1 93.994 -36.4 4.859 5191 no
## 2685 1.1 93.994 -36.4 4.859 5191 yes
## 2686 1.1 93.994 -36.4 4.859 5191 no
## 2687 1.1 93.994 -36.4 4.859 5191 no
## 2688 1.1 93.994 -36.4 4.859 5191 no
## 2689 1.1 93.994 -36.4 4.859 5191 no
## 2690 1.1 93.994 -36.4 4.859 5191 no
## 2691 1.1 93.994 -36.4 4.859 5191 no
## 2692 1.1 93.994 -36.4 4.859 5191 no
## 2693 1.1 93.994 -36.4 4.859 5191 no
## 2694 1.1 93.994 -36.4 4.859 5191 no
## 2695 1.1 93.994 -36.4 4.859 5191 no
## 2696 1.1 93.994 -36.4 4.859 5191 no
## 2697 1.1 93.994 -36.4 4.859 5191 no
## 2698 1.1 93.994 -36.4 4.859 5191 yes
## 2699 1.1 93.994 -36.4 4.859 5191 no
## 2700 1.1 93.994 -36.4 4.859 5191 no
## 2701 1.1 93.994 -36.4 4.859 5191 no
## 2702 1.1 93.994 -36.4 4.859 5191 no
## 2703 1.1 93.994 -36.4 4.859 5191 no
## 2704 1.1 93.994 -36.4 4.859 5191 no
## 2705 1.1 93.994 -36.4 4.859 5191 no
## 2706 1.1 93.994 -36.4 4.859 5191 no
## 2707 1.1 93.994 -36.4 4.859 5191 no
## 2708 1.1 93.994 -36.4 4.859 5191 no
## 2709 1.1 93.994 -36.4 4.859 5191 no
## 2710 1.1 93.994 -36.4 4.859 5191 no
## 2711 1.1 93.994 -36.4 4.859 5191 no
## 2712 1.1 93.994 -36.4 4.859 5191 no
## 2713 1.1 93.994 -36.4 4.859 5191 no
## 2714 1.1 93.994 -36.4 4.859 5191 yes
## 2715 1.1 93.994 -36.4 4.859 5191 no
## 2716 1.1 93.994 -36.4 4.859 5191 no
## 2717 1.1 93.994 -36.4 4.859 5191 no
## 2718 1.1 93.994 -36.4 4.859 5191 no
## 2719 1.1 93.994 -36.4 4.859 5191 no
## 2720 1.1 93.994 -36.4 4.859 5191 no
## 2721 1.1 93.994 -36.4 4.859 5191 no
## 2722 1.1 93.994 -36.4 4.859 5191 no
## 2723 1.1 93.994 -36.4 4.859 5191 no
## 2724 1.1 93.994 -36.4 4.859 5191 no
## 2725 1.1 93.994 -36.4 4.859 5191 no
## 2726 1.1 93.994 -36.4 4.859 5191 no
## 2727 1.1 93.994 -36.4 4.859 5191 no
## 2728 1.1 93.994 -36.4 4.859 5191 no
## 2729 1.1 93.994 -36.4 4.859 5191 no
## 2730 1.1 93.994 -36.4 4.859 5191 no
## 2731 1.1 93.994 -36.4 4.859 5191 no
## 2732 1.1 93.994 -36.4 4.859 5191 no
## 2733 1.1 93.994 -36.4 4.859 5191 no
## 2734 1.1 93.994 -36.4 4.859 5191 no
## 2735 1.1 93.994 -36.4 4.859 5191 no
## 2736 1.1 93.994 -36.4 4.859 5191 no
## 2737 1.1 93.994 -36.4 4.859 5191 no
## 2738 1.1 93.994 -36.4 4.859 5191 no
## 2739 1.1 93.994 -36.4 4.859 5191 no
## 2740 1.1 93.994 -36.4 4.859 5191 no
## 2741 1.1 93.994 -36.4 4.859 5191 no
## 2742 1.1 93.994 -36.4 4.859 5191 no
## 2743 1.1 93.994 -36.4 4.859 5191 no
## 2744 1.1 93.994 -36.4 4.859 5191 no
## 2745 1.1 93.994 -36.4 4.859 5191 yes
## 2746 1.1 93.994 -36.4 4.859 5191 no
## 2747 1.1 93.994 -36.4 4.859 5191 no
## 2748 1.1 93.994 -36.4 4.859 5191 no
## 2749 1.1 93.994 -36.4 4.859 5191 no
## 2750 1.1 93.994 -36.4 4.859 5191 no
## 2751 1.1 93.994 -36.4 4.859 5191 no
## 2752 1.1 93.994 -36.4 4.859 5191 no
## 2753 1.1 93.994 -36.4 4.859 5191 no
## 2754 1.1 93.994 -36.4 4.859 5191 no
## 2755 1.1 93.994 -36.4 4.859 5191 no
## 2756 1.1 93.994 -36.4 4.859 5191 yes
## 2757 1.1 93.994 -36.4 4.859 5191 no
## 2758 1.1 93.994 -36.4 4.859 5191 no
## 2759 1.1 93.994 -36.4 4.859 5191 no
## 2760 1.1 93.994 -36.4 4.859 5191 no
## 2761 1.1 93.994 -36.4 4.859 5191 no
## 2762 1.1 93.994 -36.4 4.859 5191 no
## 2763 1.1 93.994 -36.4 4.859 5191 no
## 2764 1.1 93.994 -36.4 4.859 5191 yes
## 2765 1.1 93.994 -36.4 4.859 5191 no
## 2766 1.1 93.994 -36.4 4.859 5191 no
## 2767 1.1 93.994 -36.4 4.859 5191 no
## 2768 1.1 93.994 -36.4 4.859 5191 no
## 2769 1.1 93.994 -36.4 4.859 5191 no
## 2770 1.1 93.994 -36.4 4.859 5191 no
## 2771 1.1 93.994 -36.4 4.859 5191 no
## 2772 1.1 93.994 -36.4 4.859 5191 no
## 2773 1.1 93.994 -36.4 4.859 5191 no
## 2774 1.1 93.994 -36.4 4.859 5191 no
## 2775 1.1 93.994 -36.4 4.859 5191 no
## 2776 1.1 93.994 -36.4 4.859 5191 yes
## 2777 1.1 93.994 -36.4 4.859 5191 no
## 2778 1.1 93.994 -36.4 4.859 5191 no
## 2779 1.1 93.994 -36.4 4.859 5191 no
## 2780 1.1 93.994 -36.4 4.859 5191 yes
## 2781 1.1 93.994 -36.4 4.859 5191 no
## 2782 1.1 93.994 -36.4 4.859 5191 no
## 2783 1.1 93.994 -36.4 4.859 5191 no
## 2784 1.1 93.994 -36.4 4.859 5191 no
## 2785 1.1 93.994 -36.4 4.859 5191 no
## 2786 1.1 93.994 -36.4 4.859 5191 no
## 2787 1.1 93.994 -36.4 4.859 5191 no
## 2788 1.1 93.994 -36.4 4.859 5191 no
## 2789 1.1 93.994 -36.4 4.859 5191 no
## 2790 1.1 93.994 -36.4 4.859 5191 no
## 2791 1.1 93.994 -36.4 4.859 5191 no
## 2792 1.1 93.994 -36.4 4.859 5191 no
## 2793 1.1 93.994 -36.4 4.859 5191 no
## 2794 1.1 93.994 -36.4 4.859 5191 no
## 2795 1.1 93.994 -36.4 4.859 5191 no
## 2796 1.1 93.994 -36.4 4.859 5191 no
## 2797 1.1 93.994 -36.4 4.859 5191 no
## 2798 1.1 93.994 -36.4 4.859 5191 no
## 2799 1.1 93.994 -36.4 4.859 5191 no
## 2800 1.1 93.994 -36.4 4.859 5191 no
## 2801 1.1 93.994 -36.4 4.859 5191 no
## 2802 1.1 93.994 -36.4 4.859 5191 no
## 2803 1.1 93.994 -36.4 4.859 5191 no
## 2804 1.1 93.994 -36.4 4.859 5191 no
## 2805 1.1 93.994 -36.4 4.859 5191 no
## 2806 1.1 93.994 -36.4 4.859 5191 no
## 2807 1.1 93.994 -36.4 4.859 5191 no
## 2808 1.1 93.994 -36.4 4.859 5191 no
## 2809 1.1 93.994 -36.4 4.859 5191 no
## 2810 1.1 93.994 -36.4 4.859 5191 no
## 2811 1.1 93.994 -36.4 4.859 5191 no
## 2812 1.1 93.994 -36.4 4.859 5191 no
## 2813 1.1 93.994 -36.4 4.859 5191 no
## 2814 1.1 93.994 -36.4 4.859 5191 no
## 2815 1.1 93.994 -36.4 4.859 5191 no
## 2816 1.1 93.994 -36.4 4.859 5191 no
## 2817 1.1 93.994 -36.4 4.859 5191 no
## 2818 1.1 93.994 -36.4 4.859 5191 no
## 2819 1.1 93.994 -36.4 4.859 5191 no
## 2820 1.1 93.994 -36.4 4.859 5191 no
## 2821 1.1 93.994 -36.4 4.859 5191 no
## 2822 1.1 93.994 -36.4 4.859 5191 no
## 2823 1.1 93.994 -36.4 4.859 5191 no
## 2824 1.1 93.994 -36.4 4.859 5191 no
## 2825 1.1 93.994 -36.4 4.859 5191 no
## 2826 1.1 93.994 -36.4 4.859 5191 no
## 2827 1.1 93.994 -36.4 4.859 5191 no
## 2828 1.1 93.994 -36.4 4.859 5191 no
## 2829 1.1 93.994 -36.4 4.859 5191 no
## 2830 1.1 93.994 -36.4 4.859 5191 no
## 2831 1.1 93.994 -36.4 4.859 5191 no
## 2832 1.1 93.994 -36.4 4.859 5191 no
## 2833 1.1 93.994 -36.4 4.859 5191 no
## 2834 1.1 93.994 -36.4 4.859 5191 no
## 2835 1.1 93.994 -36.4 4.859 5191 no
## 2836 1.1 93.994 -36.4 4.859 5191 no
## 2837 1.1 93.994 -36.4 4.859 5191 no
## 2838 1.1 93.994 -36.4 4.859 5191 no
## 2839 1.1 93.994 -36.4 4.859 5191 no
## 2840 1.1 93.994 -36.4 4.859 5191 no
## 2841 1.1 93.994 -36.4 4.859 5191 no
## 2842 1.1 93.994 -36.4 4.859 5191 no
## 2843 1.1 93.994 -36.4 4.859 5191 no
## 2844 1.1 93.994 -36.4 4.859 5191 no
## 2845 1.1 93.994 -36.4 4.859 5191 no
## 2846 1.1 93.994 -36.4 4.859 5191 no
## 2847 1.1 93.994 -36.4 4.859 5191 no
## 2848 1.1 93.994 -36.4 4.859 5191 no
## 2849 1.1 93.994 -36.4 4.859 5191 no
## 2850 1.1 93.994 -36.4 4.859 5191 no
## 2851 1.1 93.994 -36.4 4.859 5191 no
## 2852 1.1 93.994 -36.4 4.859 5191 no
## 2853 1.1 93.994 -36.4 4.859 5191 no
## 2854 1.1 93.994 -36.4 4.859 5191 yes
## 2855 1.1 93.994 -36.4 4.859 5191 no
## 2856 1.1 93.994 -36.4 4.859 5191 no
## 2857 1.1 93.994 -36.4 4.859 5191 no
## 2858 1.1 93.994 -36.4 4.859 5191 no
## 2859 1.1 93.994 -36.4 4.859 5191 no
## 2860 1.1 93.994 -36.4 4.859 5191 no
## 2861 1.1 93.994 -36.4 4.859 5191 no
## 2862 1.1 93.994 -36.4 4.859 5191 no
## 2863 1.1 93.994 -36.4 4.859 5191 no
## 2864 1.1 93.994 -36.4 4.859 5191 no
## 2865 1.1 93.994 -36.4 4.859 5191 no
## 2866 1.1 93.994 -36.4 4.859 5191 no
## 2867 1.1 93.994 -36.4 4.859 5191 no
## 2868 1.1 93.994 -36.4 4.859 5191 no
## 2869 1.1 93.994 -36.4 4.859 5191 no
## 2870 1.1 93.994 -36.4 4.859 5191 no
## 2871 1.1 93.994 -36.4 4.859 5191 no
## 2872 1.1 93.994 -36.4 4.859 5191 no
## 2873 1.1 93.994 -36.4 4.859 5191 no
## 2874 1.1 93.994 -36.4 4.859 5191 no
## 2875 1.1 93.994 -36.4 4.859 5191 no
## 2876 1.1 93.994 -36.4 4.859 5191 no
## 2877 1.1 93.994 -36.4 4.859 5191 no
## 2878 1.1 93.994 -36.4 4.859 5191 no
## 2879 1.1 93.994 -36.4 4.859 5191 no
## 2880 1.1 93.994 -36.4 4.859 5191 no
## 2881 1.1 93.994 -36.4 4.859 5191 no
## 2882 1.1 93.994 -36.4 4.859 5191 no
## 2883 1.1 93.994 -36.4 4.859 5191 no
## 2884 1.1 93.994 -36.4 4.859 5191 no
## 2885 1.1 93.994 -36.4 4.859 5191 no
## 2886 1.1 93.994 -36.4 4.859 5191 no
## 2887 1.1 93.994 -36.4 4.859 5191 no
## 2888 1.1 93.994 -36.4 4.859 5191 no
## 2889 1.1 93.994 -36.4 4.859 5191 no
## 2890 1.1 93.994 -36.4 4.859 5191 no
## 2891 1.1 93.994 -36.4 4.859 5191 no
## 2892 1.1 93.994 -36.4 4.859 5191 no
## 2893 1.1 93.994 -36.4 4.859 5191 no
## 2894 1.1 93.994 -36.4 4.859 5191 no
## 2895 1.1 93.994 -36.4 4.859 5191 no
## 2896 1.1 93.994 -36.4 4.859 5191 no
## 2897 1.1 93.994 -36.4 4.859 5191 no
## 2898 1.1 93.994 -36.4 4.859 5191 no
## 2899 1.1 93.994 -36.4 4.859 5191 no
## 2900 1.1 93.994 -36.4 4.859 5191 no
## 2901 1.1 93.994 -36.4 4.859 5191 no
## 2902 1.1 93.994 -36.4 4.859 5191 no
## 2903 1.1 93.994 -36.4 4.859 5191 no
## 2904 1.1 93.994 -36.4 4.859 5191 no
## 2905 1.1 93.994 -36.4 4.859 5191 no
## 2906 1.1 93.994 -36.4 4.859 5191 yes
## 2907 1.1 93.994 -36.4 4.859 5191 no
## 2908 1.1 93.994 -36.4 4.859 5191 no
## 2909 1.1 93.994 -36.4 4.859 5191 no
## 2910 1.1 93.994 -36.4 4.859 5191 no
## 2911 1.1 93.994 -36.4 4.859 5191 no
## 2912 1.1 93.994 -36.4 4.859 5191 no
## 2913 1.1 93.994 -36.4 4.859 5191 no
## 2914 1.1 93.994 -36.4 4.859 5191 no
## 2915 1.1 93.994 -36.4 4.859 5191 no
## 2916 1.1 93.994 -36.4 4.859 5191 no
## 2917 1.1 93.994 -36.4 4.859 5191 no
## 2918 1.1 93.994 -36.4 4.859 5191 no
## 2919 1.1 93.994 -36.4 4.859 5191 no
## 2920 1.1 93.994 -36.4 4.859 5191 no
## 2921 1.1 93.994 -36.4 4.859 5191 no
## 2922 1.1 93.994 -36.4 4.859 5191 no
## 2923 1.1 93.994 -36.4 4.859 5191 no
## 2924 1.1 93.994 -36.4 4.859 5191 no
## 2925 1.1 93.994 -36.4 4.859 5191 no
## 2926 1.1 93.994 -36.4 4.859 5191 no
## 2927 1.1 93.994 -36.4 4.859 5191 no
## 2928 1.1 93.994 -36.4 4.859 5191 no
## 2929 1.1 93.994 -36.4 4.859 5191 no
## 2930 1.1 93.994 -36.4 4.859 5191 no
## 2931 1.1 93.994 -36.4 4.859 5191 no
## 2932 1.1 93.994 -36.4 4.859 5191 no
## 2933 1.1 93.994 -36.4 4.859 5191 no
## 2934 1.1 93.994 -36.4 4.859 5191 no
## 2935 1.1 93.994 -36.4 4.859 5191 no
## 2936 1.1 93.994 -36.4 4.859 5191 no
## 2937 1.1 93.994 -36.4 4.859 5191 no
## 2938 1.1 93.994 -36.4 4.859 5191 no
## 2939 1.1 93.994 -36.4 4.859 5191 no
## 2940 1.1 93.994 -36.4 4.859 5191 no
## 2941 1.1 93.994 -36.4 4.859 5191 no
## 2942 1.1 93.994 -36.4 4.859 5191 no
## 2943 1.1 93.994 -36.4 4.859 5191 no
## 2944 1.1 93.994 -36.4 4.859 5191 no
## 2945 1.1 93.994 -36.4 4.859 5191 no
## 2946 1.1 93.994 -36.4 4.859 5191 no
## 2947 1.1 93.994 -36.4 4.859 5191 no
## 2948 1.1 93.994 -36.4 4.859 5191 no
## 2949 1.1 93.994 -36.4 4.859 5191 no
## 2950 1.1 93.994 -36.4 4.859 5191 no
## 2951 1.1 93.994 -36.4 4.859 5191 no
## 2952 1.1 93.994 -36.4 4.859 5191 no
## 2953 1.1 93.994 -36.4 4.859 5191 no
## 2954 1.1 93.994 -36.4 4.859 5191 no
## 2955 1.1 93.994 -36.4 4.859 5191 no
## 2956 1.1 93.994 -36.4 4.859 5191 no
## 2957 1.1 93.994 -36.4 4.859 5191 no
## 2958 1.1 93.994 -36.4 4.859 5191 no
## 2959 1.1 93.994 -36.4 4.859 5191 no
## 2960 1.1 93.994 -36.4 4.859 5191 no
## 2961 1.1 93.994 -36.4 4.859 5191 no
## 2962 1.1 93.994 -36.4 4.859 5191 no
## 2963 1.1 93.994 -36.4 4.859 5191 no
## 2964 1.1 93.994 -36.4 4.859 5191 no
## 2965 1.1 93.994 -36.4 4.859 5191 no
## 2966 1.1 93.994 -36.4 4.859 5191 no
## 2967 1.1 93.994 -36.4 4.859 5191 no
## 2968 1.1 93.994 -36.4 4.859 5191 no
## 2969 1.1 93.994 -36.4 4.859 5191 no
## 2970 1.1 93.994 -36.4 4.859 5191 no
## 2971 1.1 93.994 -36.4 4.859 5191 no
## 2972 1.1 93.994 -36.4 4.859 5191 no
## 2973 1.1 93.994 -36.4 4.859 5191 no
## 2974 1.1 93.994 -36.4 4.859 5191 no
## 2975 1.1 93.994 -36.4 4.859 5191 no
## 2976 1.1 93.994 -36.4 4.859 5191 no
## 2977 1.1 93.994 -36.4 4.859 5191 no
## 2978 1.1 93.994 -36.4 4.859 5191 no
## 2979 1.1 93.994 -36.4 4.859 5191 no
## 2980 1.1 93.994 -36.4 4.859 5191 no
## 2981 1.1 93.994 -36.4 4.859 5191 no
## 2982 1.1 93.994 -36.4 4.859 5191 no
## 2983 1.1 93.994 -36.4 4.859 5191 no
## 2984 1.1 93.994 -36.4 4.859 5191 no
## 2985 1.1 93.994 -36.4 4.859 5191 no
## 2986 1.1 93.994 -36.4 4.859 5191 no
## 2987 1.1 93.994 -36.4 4.859 5191 no
## 2988 1.1 93.994 -36.4 4.859 5191 no
## 2989 1.1 93.994 -36.4 4.859 5191 no
## 2990 1.1 93.994 -36.4 4.859 5191 no
## 2991 1.1 93.994 -36.4 4.859 5191 no
## 2992 1.1 93.994 -36.4 4.859 5191 no
## 2993 1.1 93.994 -36.4 4.859 5191 no
## 2994 1.1 93.994 -36.4 4.859 5191 no
## 2995 1.1 93.994 -36.4 4.859 5191 no
## 2996 1.1 93.994 -36.4 4.859 5191 no
## 2997 1.1 93.994 -36.4 4.859 5191 no
## 2998 1.1 93.994 -36.4 4.859 5191 no
## 2999 1.1 93.994 -36.4 4.859 5191 no
## 3000 1.1 93.994 -36.4 4.859 5191 no
## 3001 1.1 93.994 -36.4 4.859 5191 no
## 3002 1.1 93.994 -36.4 4.859 5191 no
## 3003 1.1 93.994 -36.4 4.859 5191 no
## 3004 1.1 93.994 -36.4 4.859 5191 no
## 3005 1.1 93.994 -36.4 4.859 5191 no
## 3006 1.1 93.994 -36.4 4.859 5191 no
## 3007 1.1 93.994 -36.4 4.859 5191 no
## 3008 1.1 93.994 -36.4 4.859 5191 no
## 3009 1.1 93.994 -36.4 4.859 5191 no
## 3010 1.1 93.994 -36.4 4.859 5191 no
## 3011 1.1 93.994 -36.4 4.859 5191 no
## 3012 1.1 93.994 -36.4 4.859 5191 no
## 3013 1.1 93.994 -36.4 4.859 5191 no
## 3014 1.1 93.994 -36.4 4.859 5191 no
## 3015 1.1 93.994 -36.4 4.859 5191 no
## 3016 1.1 93.994 -36.4 4.859 5191 no
## 3017 1.1 93.994 -36.4 4.859 5191 no
## 3018 1.1 93.994 -36.4 4.859 5191 no
## 3019 1.1 93.994 -36.4 4.859 5191 no
## 3020 1.1 93.994 -36.4 4.859 5191 no
## 3021 1.1 93.994 -36.4 4.859 5191 no
## 3022 1.1 93.994 -36.4 4.859 5191 no
## 3023 1.1 93.994 -36.4 4.859 5191 no
## 3024 1.1 93.994 -36.4 4.859 5191 no
## 3025 1.1 93.994 -36.4 4.859 5191 no
## 3026 1.1 93.994 -36.4 4.859 5191 no
## 3027 1.1 93.994 -36.4 4.859 5191 no
## 3028 1.1 93.994 -36.4 4.859 5191 no
## 3029 1.1 93.994 -36.4 4.859 5191 no
## 3030 1.1 93.994 -36.4 4.859 5191 no
## 3031 1.1 93.994 -36.4 4.859 5191 no
## 3032 1.1 93.994 -36.4 4.859 5191 no
## 3033 1.1 93.994 -36.4 4.859 5191 no
## 3034 1.1 93.994 -36.4 4.859 5191 no
## 3035 1.1 93.994 -36.4 4.859 5191 no
## 3036 1.1 93.994 -36.4 4.859 5191 no
## 3037 1.1 93.994 -36.4 4.859 5191 no
## 3038 1.1 93.994 -36.4 4.859 5191 no
## 3039 1.1 93.994 -36.4 4.859 5191 no
## 3040 1.1 93.994 -36.4 4.859 5191 no
## 3041 1.1 93.994 -36.4 4.859 5191 no
## 3042 1.1 93.994 -36.4 4.859 5191 no
## 3043 1.1 93.994 -36.4 4.859 5191 no
## 3044 1.1 93.994 -36.4 4.859 5191 no
## 3045 1.1 93.994 -36.4 4.859 5191 no
## 3046 1.1 93.994 -36.4 4.859 5191 no
## 3047 1.1 93.994 -36.4 4.859 5191 no
## 3048 1.1 93.994 -36.4 4.859 5191 yes
## 3049 1.1 93.994 -36.4 4.859 5191 no
## 3050 1.1 93.994 -36.4 4.859 5191 no
## 3051 1.1 93.994 -36.4 4.859 5191 no
## 3052 1.1 93.994 -36.4 4.859 5191 no
## 3053 1.1 93.994 -36.4 4.859 5191 no
## 3054 1.1 93.994 -36.4 4.859 5191 no
## 3055 1.1 93.994 -36.4 4.859 5191 no
## 3056 1.1 93.994 -36.4 4.859 5191 no
## 3057 1.1 93.994 -36.4 4.859 5191 no
## 3058 1.1 93.994 -36.4 4.859 5191 no
## 3059 1.1 93.994 -36.4 4.859 5191 no
## 3060 1.1 93.994 -36.4 4.859 5191 no
## 3061 1.1 93.994 -36.4 4.859 5191 no
## 3062 1.1 93.994 -36.4 4.859 5191 no
## 3063 1.1 93.994 -36.4 4.859 5191 no
## 3064 1.1 93.994 -36.4 4.859 5191 no
## 3065 1.1 93.994 -36.4 4.859 5191 no
## 3066 1.1 93.994 -36.4 4.859 5191 no
## 3067 1.1 93.994 -36.4 4.859 5191 no
## 3068 1.1 93.994 -36.4 4.859 5191 no
## 3069 1.1 93.994 -36.4 4.859 5191 no
## 3070 1.1 93.994 -36.4 4.859 5191 no
## 3071 1.1 93.994 -36.4 4.859 5191 no
## 3072 1.1 93.994 -36.4 4.859 5191 no
## 3073 1.1 93.994 -36.4 4.860 5191 no
## 3074 1.1 93.994 -36.4 4.860 5191 no
## 3075 1.1 93.994 -36.4 4.860 5191 no
## 3076 1.1 93.994 -36.4 4.860 5191 no
## 3077 1.1 93.994 -36.4 4.860 5191 no
## 3078 1.1 93.994 -36.4 4.860 5191 no
## 3079 1.1 93.994 -36.4 4.860 5191 no
## 3080 1.1 93.994 -36.4 4.860 5191 no
## 3081 1.1 93.994 -36.4 4.860 5191 no
## 3082 1.1 93.994 -36.4 4.860 5191 no
## 3083 1.1 93.994 -36.4 4.860 5191 no
## 3084 1.1 93.994 -36.4 4.860 5191 no
## 3085 1.1 93.994 -36.4 4.860 5191 no
## 3086 1.1 93.994 -36.4 4.860 5191 no
## 3087 1.1 93.994 -36.4 4.860 5191 no
## 3088 1.1 93.994 -36.4 4.860 5191 no
## 3089 1.1 93.994 -36.4 4.860 5191 no
## 3090 1.1 93.994 -36.4 4.860 5191 no
## 3091 1.1 93.994 -36.4 4.860 5191 yes
## 3092 1.1 93.994 -36.4 4.860 5191 no
## 3093 1.1 93.994 -36.4 4.860 5191 no
## 3094 1.1 93.994 -36.4 4.860 5191 no
## 3095 1.1 93.994 -36.4 4.860 5191 no
## 3096 1.1 93.994 -36.4 4.860 5191 no
## 3097 1.1 93.994 -36.4 4.860 5191 no
## 3098 1.1 93.994 -36.4 4.860 5191 no
## 3099 1.1 93.994 -36.4 4.860 5191 no
## 3100 1.1 93.994 -36.4 4.860 5191 no
## 3101 1.1 93.994 -36.4 4.860 5191 no
## 3102 1.1 93.994 -36.4 4.860 5191 no
## 3103 1.1 93.994 -36.4 4.860 5191 no
## 3104 1.1 93.994 -36.4 4.860 5191 no
## 3105 1.1 93.994 -36.4 4.860 5191 no
## 3106 1.1 93.994 -36.4 4.860 5191 no
## 3107 1.1 93.994 -36.4 4.860 5191 no
## 3108 1.1 93.994 -36.4 4.860 5191 no
## 3109 1.1 93.994 -36.4 4.860 5191 no
## 3110 1.1 93.994 -36.4 4.860 5191 no
## 3111 1.1 93.994 -36.4 4.860 5191 no
## 3112 1.1 93.994 -36.4 4.860 5191 no
## 3113 1.1 93.994 -36.4 4.860 5191 no
## 3114 1.1 93.994 -36.4 4.860 5191 yes
## 3115 1.1 93.994 -36.4 4.860 5191 no
## 3116 1.1 93.994 -36.4 4.860 5191 no
## 3117 1.1 93.994 -36.4 4.860 5191 no
## 3118 1.1 93.994 -36.4 4.860 5191 no
## 3119 1.1 93.994 -36.4 4.860 5191 no
## 3120 1.1 93.994 -36.4 4.860 5191 no
## 3121 1.1 93.994 -36.4 4.860 5191 no
## 3122 1.1 93.994 -36.4 4.860 5191 no
## 3123 1.1 93.994 -36.4 4.860 5191 no
## 3124 1.1 93.994 -36.4 4.860 5191 no
## 3125 1.1 93.994 -36.4 4.860 5191 no
## 3126 1.1 93.994 -36.4 4.860 5191 no
## 3127 1.1 93.994 -36.4 4.860 5191 no
## 3128 1.1 93.994 -36.4 4.860 5191 no
## 3129 1.1 93.994 -36.4 4.860 5191 no
## 3130 1.1 93.994 -36.4 4.860 5191 no
## 3131 1.1 93.994 -36.4 4.860 5191 no
## 3132 1.1 93.994 -36.4 4.860 5191 no
## 3133 1.1 93.994 -36.4 4.860 5191 no
## 3134 1.1 93.994 -36.4 4.860 5191 no
## 3135 1.1 93.994 -36.4 4.860 5191 no
## 3136 1.1 93.994 -36.4 4.860 5191 no
## 3137 1.1 93.994 -36.4 4.860 5191 no
## 3138 1.1 93.994 -36.4 4.860 5191 no
## 3139 1.1 93.994 -36.4 4.860 5191 no
## 3140 1.1 93.994 -36.4 4.860 5191 no
## 3141 1.1 93.994 -36.4 4.860 5191 no
## 3142 1.1 93.994 -36.4 4.860 5191 no
## 3143 1.1 93.994 -36.4 4.860 5191 no
## 3144 1.1 93.994 -36.4 4.860 5191 no
## 3145 1.1 93.994 -36.4 4.860 5191 no
## 3146 1.1 93.994 -36.4 4.860 5191 no
## 3147 1.1 93.994 -36.4 4.860 5191 no
## 3148 1.1 93.994 -36.4 4.860 5191 no
## 3149 1.1 93.994 -36.4 4.860 5191 no
## 3150 1.1 93.994 -36.4 4.860 5191 no
## 3151 1.1 93.994 -36.4 4.860 5191 no
## 3152 1.1 93.994 -36.4 4.860 5191 no
## 3153 1.1 93.994 -36.4 4.860 5191 no
## 3154 1.1 93.994 -36.4 4.860 5191 no
## 3155 1.1 93.994 -36.4 4.860 5191 no
## 3156 1.1 93.994 -36.4 4.860 5191 no
## 3157 1.1 93.994 -36.4 4.860 5191 no
## 3158 1.1 93.994 -36.4 4.860 5191 no
## 3159 1.1 93.994 -36.4 4.860 5191 no
## 3160 1.1 93.994 -36.4 4.860 5191 no
## 3161 1.1 93.994 -36.4 4.860 5191 no
## 3162 1.1 93.994 -36.4 4.860 5191 no
## 3163 1.1 93.994 -36.4 4.860 5191 no
## 3164 1.1 93.994 -36.4 4.860 5191 no
## 3165 1.1 93.994 -36.4 4.860 5191 no
## 3166 1.1 93.994 -36.4 4.860 5191 no
## 3167 1.1 93.994 -36.4 4.860 5191 no
## 3168 1.1 93.994 -36.4 4.860 5191 no
## 3169 1.1 93.994 -36.4 4.860 5191 no
## 3170 1.1 93.994 -36.4 4.860 5191 no
## 3171 1.1 93.994 -36.4 4.860 5191 no
## 3172 1.1 93.994 -36.4 4.860 5191 no
## 3173 1.1 93.994 -36.4 4.860 5191 no
## 3174 1.1 93.994 -36.4 4.860 5191 no
## 3175 1.1 93.994 -36.4 4.860 5191 yes
## 3176 1.1 93.994 -36.4 4.860 5191 no
## 3177 1.1 93.994 -36.4 4.860 5191 no
## 3178 1.1 93.994 -36.4 4.860 5191 no
## 3179 1.1 93.994 -36.4 4.860 5191 no
## 3180 1.1 93.994 -36.4 4.860 5191 no
## 3181 1.1 93.994 -36.4 4.860 5191 no
## 3182 1.1 93.994 -36.4 4.860 5191 no
## 3183 1.1 93.994 -36.4 4.860 5191 no
## 3184 1.1 93.994 -36.4 4.860 5191 yes
## 3185 1.1 93.994 -36.4 4.860 5191 no
## 3186 1.1 93.994 -36.4 4.860 5191 no
## 3187 1.1 93.994 -36.4 4.860 5191 no
## 3188 1.1 93.994 -36.4 4.860 5191 no
## 3189 1.1 93.994 -36.4 4.860 5191 no
## 3190 1.1 93.994 -36.4 4.860 5191 no
## 3191 1.1 93.994 -36.4 4.860 5191 no
## 3192 1.1 93.994 -36.4 4.860 5191 no
## 3193 1.1 93.994 -36.4 4.860 5191 no
## 3194 1.1 93.994 -36.4 4.860 5191 no
## 3195 1.1 93.994 -36.4 4.860 5191 no
## 3196 1.1 93.994 -36.4 4.860 5191 no
## 3197 1.1 93.994 -36.4 4.860 5191 no
## 3198 1.1 93.994 -36.4 4.860 5191 no
## 3199 1.1 93.994 -36.4 4.860 5191 no
## 3200 1.1 93.994 -36.4 4.860 5191 no
## 3201 1.1 93.994 -36.4 4.860 5191 no
## 3202 1.1 93.994 -36.4 4.860 5191 no
## 3203 1.1 93.994 -36.4 4.860 5191 no
## 3204 1.1 93.994 -36.4 4.860 5191 yes
## 3205 1.1 93.994 -36.4 4.860 5191 no
## 3206 1.1 93.994 -36.4 4.860 5191 no
## 3207 1.1 93.994 -36.4 4.860 5191 no
## 3208 1.1 93.994 -36.4 4.860 5191 no
## 3209 1.1 93.994 -36.4 4.860 5191 no
## 3210 1.1 93.994 -36.4 4.860 5191 no
## 3211 1.1 93.994 -36.4 4.860 5191 no
## 3212 1.1 93.994 -36.4 4.860 5191 no
## 3213 1.1 93.994 -36.4 4.860 5191 no
## 3214 1.1 93.994 -36.4 4.860 5191 no
## 3215 1.1 93.994 -36.4 4.860 5191 no
## 3216 1.1 93.994 -36.4 4.860 5191 no
## 3217 1.1 93.994 -36.4 4.860 5191 no
## 3218 1.1 93.994 -36.4 4.860 5191 no
## 3219 1.1 93.994 -36.4 4.860 5191 no
## 3220 1.1 93.994 -36.4 4.860 5191 yes
## 3221 1.1 93.994 -36.4 4.860 5191 no
## 3222 1.1 93.994 -36.4 4.860 5191 no
## 3223 1.1 93.994 -36.4 4.860 5191 no
## 3224 1.1 93.994 -36.4 4.860 5191 yes
## 3225 1.1 93.994 -36.4 4.860 5191 no
## 3226 1.1 93.994 -36.4 4.860 5191 no
## 3227 1.1 93.994 -36.4 4.860 5191 no
## 3228 1.1 93.994 -36.4 4.860 5191 no
## 3229 1.1 93.994 -36.4 4.860 5191 no
## 3230 1.1 93.994 -36.4 4.860 5191 no
## 3231 1.1 93.994 -36.4 4.860 5191 no
## 3232 1.1 93.994 -36.4 4.860 5191 no
## 3233 1.1 93.994 -36.4 4.860 5191 no
## 3234 1.1 93.994 -36.4 4.860 5191 no
## 3235 1.1 93.994 -36.4 4.860 5191 no
## 3236 1.1 93.994 -36.4 4.860 5191 no
## 3237 1.1 93.994 -36.4 4.860 5191 no
## 3238 1.1 93.994 -36.4 4.860 5191 no
## 3239 1.1 93.994 -36.4 4.860 5191 no
## 3240 1.1 93.994 -36.4 4.860 5191 no
## 3241 1.1 93.994 -36.4 4.860 5191 no
## 3242 1.1 93.994 -36.4 4.860 5191 no
## 3243 1.1 93.994 -36.4 4.860 5191 no
## 3244 1.1 93.994 -36.4 4.860 5191 no
## 3245 1.1 93.994 -36.4 4.860 5191 no
## 3246 1.1 93.994 -36.4 4.860 5191 no
## 3247 1.1 93.994 -36.4 4.860 5191 no
## 3248 1.1 93.994 -36.4 4.860 5191 no
## 3249 1.1 93.994 -36.4 4.860 5191 no
## 3250 1.1 93.994 -36.4 4.860 5191 no
## 3251 1.1 93.994 -36.4 4.860 5191 no
## 3252 1.1 93.994 -36.4 4.860 5191 no
## 3253 1.1 93.994 -36.4 4.860 5191 no
## 3254 1.1 93.994 -36.4 4.860 5191 no
## 3255 1.1 93.994 -36.4 4.860 5191 no
## 3256 1.1 93.994 -36.4 4.860 5191 no
## 3257 1.1 93.994 -36.4 4.860 5191 no
## 3258 1.1 93.994 -36.4 4.860 5191 no
## 3259 1.1 93.994 -36.4 4.860 5191 no
## 3260 1.1 93.994 -36.4 4.860 5191 yes
## 3261 1.1 93.994 -36.4 4.860 5191 no
## 3262 1.1 93.994 -36.4 4.860 5191 no
## 3263 1.1 93.994 -36.4 4.860 5191 no
## 3264 1.1 93.994 -36.4 4.860 5191 no
## 3265 1.1 93.994 -36.4 4.860 5191 yes
## 3266 1.1 93.994 -36.4 4.860 5191 no
## 3267 1.1 93.994 -36.4 4.860 5191 no
## 3268 1.1 93.994 -36.4 4.860 5191 no
## 3269 1.1 93.994 -36.4 4.860 5191 no
## 3270 1.1 93.994 -36.4 4.860 5191 no
## 3271 1.1 93.994 -36.4 4.860 5191 no
## 3272 1.1 93.994 -36.4 4.860 5191 no
## 3273 1.1 93.994 -36.4 4.860 5191 no
## 3274 1.1 93.994 -36.4 4.860 5191 no
## 3275 1.1 93.994 -36.4 4.860 5191 no
## 3276 1.1 93.994 -36.4 4.860 5191 no
## 3277 1.1 93.994 -36.4 4.860 5191 no
## 3278 1.1 93.994 -36.4 4.860 5191 no
## 3279 1.1 93.994 -36.4 4.860 5191 no
## 3280 1.1 93.994 -36.4 4.860 5191 no
## 3281 1.1 93.994 -36.4 4.860 5191 no
## 3282 1.1 93.994 -36.4 4.860 5191 no
## 3283 1.1 93.994 -36.4 4.860 5191 no
## 3284 1.1 93.994 -36.4 4.860 5191 no
## 3285 1.1 93.994 -36.4 4.860 5191 no
## 3286 1.1 93.994 -36.4 4.860 5191 no
## 3287 1.1 93.994 -36.4 4.860 5191 no
## 3288 1.1 93.994 -36.4 4.860 5191 no
## 3289 1.1 93.994 -36.4 4.860 5191 no
## 3290 1.1 93.994 -36.4 4.860 5191 no
## 3291 1.1 93.994 -36.4 4.860 5191 no
## 3292 1.1 93.994 -36.4 4.860 5191 no
## 3293 1.1 93.994 -36.4 4.860 5191 no
## 3294 1.1 93.994 -36.4 4.860 5191 no
## 3295 1.1 93.994 -36.4 4.860 5191 no
## 3296 1.1 93.994 -36.4 4.860 5191 no
## 3297 1.1 93.994 -36.4 4.860 5191 no
## 3298 1.1 93.994 -36.4 4.860 5191 no
## 3299 1.1 93.994 -36.4 4.860 5191 no
## 3300 1.1 93.994 -36.4 4.860 5191 no
## 3301 1.1 93.994 -36.4 4.860 5191 no
## 3302 1.1 93.994 -36.4 4.860 5191 no
## 3303 1.1 93.994 -36.4 4.860 5191 no
## 3304 1.1 93.994 -36.4 4.860 5191 no
## 3305 1.1 93.994 -36.4 4.860 5191 no
## 3306 1.1 93.994 -36.4 4.860 5191 no
## 3307 1.1 93.994 -36.4 4.860 5191 no
## 3308 1.1 93.994 -36.4 4.860 5191 no
## 3309 1.1 93.994 -36.4 4.860 5191 no
## 3310 1.1 93.994 -36.4 4.860 5191 no
## 3311 1.1 93.994 -36.4 4.860 5191 no
## 3312 1.1 93.994 -36.4 4.860 5191 no
## 3313 1.1 93.994 -36.4 4.860 5191 no
## 3314 1.1 93.994 -36.4 4.860 5191 no
## 3315 1.1 93.994 -36.4 4.860 5191 no
## 3316 1.1 93.994 -36.4 4.860 5191 no
## 3317 1.1 93.994 -36.4 4.860 5191 no
## 3318 1.1 93.994 -36.4 4.860 5191 no
## 3319 1.1 93.994 -36.4 4.860 5191 no
## 3320 1.1 93.994 -36.4 4.860 5191 no
## 3321 1.1 93.994 -36.4 4.860 5191 no
## 3322 1.1 93.994 -36.4 4.860 5191 no
## 3323 1.1 93.994 -36.4 4.860 5191 no
## 3324 1.1 93.994 -36.4 4.860 5191 no
## 3325 1.1 93.994 -36.4 4.860 5191 no
## 3326 1.1 93.994 -36.4 4.860 5191 no
## 3327 1.1 93.994 -36.4 4.860 5191 no
## 3328 1.1 93.994 -36.4 4.860 5191 no
## 3329 1.1 93.994 -36.4 4.860 5191 no
## 3330 1.1 93.994 -36.4 4.860 5191 no
## 3331 1.1 93.994 -36.4 4.860 5191 no
## 3332 1.1 93.994 -36.4 4.860 5191 no
## 3333 1.1 93.994 -36.4 4.860 5191 no
## 3334 1.1 93.994 -36.4 4.860 5191 no
## 3335 1.1 93.994 -36.4 4.860 5191 no
## 3336 1.1 93.994 -36.4 4.860 5191 no
## 3337 1.1 93.994 -36.4 4.860 5191 no
## 3338 1.1 93.994 -36.4 4.860 5191 no
## 3339 1.1 93.994 -36.4 4.860 5191 yes
## 3340 1.1 93.994 -36.4 4.860 5191 no
## 3341 1.1 93.994 -36.4 4.860 5191 no
## 3342 1.1 93.994 -36.4 4.860 5191 no
## 3343 1.1 93.994 -36.4 4.860 5191 no
## 3344 1.1 93.994 -36.4 4.860 5191 no
## 3345 1.1 93.994 -36.4 4.860 5191 no
## 3346 1.1 93.994 -36.4 4.860 5191 no
## 3347 1.1 93.994 -36.4 4.860 5191 no
## 3348 1.1 93.994 -36.4 4.860 5191 no
## 3349 1.1 93.994 -36.4 4.860 5191 no
## 3350 1.1 93.994 -36.4 4.860 5191 no
## 3351 1.1 93.994 -36.4 4.860 5191 no
## 3352 1.1 93.994 -36.4 4.860 5191 no
## 3353 1.1 93.994 -36.4 4.860 5191 no
## 3354 1.1 93.994 -36.4 4.860 5191 no
## 3355 1.1 93.994 -36.4 4.860 5191 no
## 3356 1.1 93.994 -36.4 4.860 5191 no
## 3357 1.1 93.994 -36.4 4.860 5191 no
## 3358 1.1 93.994 -36.4 4.860 5191 no
## 3359 1.1 93.994 -36.4 4.860 5191 no
## 3360 1.1 93.994 -36.4 4.860 5191 no
## 3361 1.1 93.994 -36.4 4.860 5191 no
## 3362 1.1 93.994 -36.4 4.860 5191 no
## 3363 1.1 93.994 -36.4 4.860 5191 no
## 3364 1.1 93.994 -36.4 4.860 5191 no
## 3365 1.1 93.994 -36.4 4.860 5191 no
## 3366 1.1 93.994 -36.4 4.860 5191 no
## 3367 1.1 93.994 -36.4 4.860 5191 no
## 3368 1.1 93.994 -36.4 4.860 5191 no
## 3369 1.1 93.994 -36.4 4.860 5191 no
## 3370 1.1 93.994 -36.4 4.860 5191 no
## 3371 1.1 93.994 -36.4 4.860 5191 no
## 3372 1.1 93.994 -36.4 4.860 5191 no
## 3373 1.1 93.994 -36.4 4.860 5191 no
## 3374 1.1 93.994 -36.4 4.860 5191 no
## 3375 1.1 93.994 -36.4 4.860 5191 no
## 3376 1.1 93.994 -36.4 4.860 5191 no
## 3377 1.1 93.994 -36.4 4.860 5191 no
## 3378 1.1 93.994 -36.4 4.860 5191 no
## 3379 1.1 93.994 -36.4 4.860 5191 no
## 3380 1.1 93.994 -36.4 4.860 5191 no
## 3381 1.1 93.994 -36.4 4.860 5191 no
## 3382 1.1 93.994 -36.4 4.860 5191 yes
## 3383 1.1 93.994 -36.4 4.860 5191 no
## 3384 1.1 93.994 -36.4 4.860 5191 no
## 3385 1.1 93.994 -36.4 4.860 5191 yes
## 3386 1.1 93.994 -36.4 4.860 5191 no
## 3387 1.1 93.994 -36.4 4.860 5191 no
## 3388 1.1 93.994 -36.4 4.860 5191 no
## 3389 1.1 93.994 -36.4 4.860 5191 no
## 3390 1.1 93.994 -36.4 4.860 5191 no
## 3391 1.1 93.994 -36.4 4.860 5191 no
## 3392 1.1 93.994 -36.4 4.860 5191 no
## 3393 1.1 93.994 -36.4 4.860 5191 no
## 3394 1.1 93.994 -36.4 4.860 5191 no
## 3395 1.1 93.994 -36.4 4.860 5191 no
## 3396 1.1 93.994 -36.4 4.860 5191 yes
## 3397 1.1 93.994 -36.4 4.860 5191 no
## 3398 1.1 93.994 -36.4 4.860 5191 no
## 3399 1.1 93.994 -36.4 4.860 5191 no
## 3400 1.1 93.994 -36.4 4.860 5191 no
## 3401 1.1 93.994 -36.4 4.860 5191 no
## 3402 1.1 93.994 -36.4 4.860 5191 no
## 3403 1.1 93.994 -36.4 4.860 5191 no
## 3404 1.1 93.994 -36.4 4.860 5191 no
## 3405 1.1 93.994 -36.4 4.860 5191 no
## 3406 1.1 93.994 -36.4 4.860 5191 no
## 3407 1.1 93.994 -36.4 4.860 5191 no
## 3408 1.1 93.994 -36.4 4.860 5191 no
## 3409 1.1 93.994 -36.4 4.860 5191 no
## 3410 1.1 93.994 -36.4 4.860 5191 no
## 3411 1.1 93.994 -36.4 4.860 5191 no
## 3412 1.1 93.994 -36.4 4.860 5191 no
## 3413 1.1 93.994 -36.4 4.860 5191 no
## 3414 1.1 93.994 -36.4 4.860 5191 no
## 3415 1.1 93.994 -36.4 4.860 5191 no
## 3416 1.1 93.994 -36.4 4.860 5191 no
## 3417 1.1 93.994 -36.4 4.860 5191 no
## 3418 1.1 93.994 -36.4 4.860 5191 no
## 3419 1.1 93.994 -36.4 4.860 5191 no
## 3420 1.1 93.994 -36.4 4.860 5191 no
## 3421 1.1 93.994 -36.4 4.860 5191 no
## 3422 1.1 93.994 -36.4 4.860 5191 no
## 3423 1.1 93.994 -36.4 4.860 5191 no
## 3424 1.1 93.994 -36.4 4.860 5191 no
## 3425 1.1 93.994 -36.4 4.860 5191 no
## 3426 1.1 93.994 -36.4 4.860 5191 no
## 3427 1.1 93.994 -36.4 4.860 5191 no
## 3428 1.1 93.994 -36.4 4.860 5191 yes
## 3429 1.1 93.994 -36.4 4.860 5191 no
## 3430 1.1 93.994 -36.4 4.860 5191 no
## 3431 1.1 93.994 -36.4 4.860 5191 no
## 3432 1.1 93.994 -36.4 4.860 5191 no
## 3433 1.1 93.994 -36.4 4.860 5191 no
## 3434 1.1 93.994 -36.4 4.860 5191 no
## 3435 1.1 93.994 -36.4 4.860 5191 no
## 3436 1.1 93.994 -36.4 4.860 5191 no
## 3437 1.1 93.994 -36.4 4.860 5191 yes
## 3438 1.1 93.994 -36.4 4.860 5191 no
## 3439 1.1 93.994 -36.4 4.860 5191 no
## 3440 1.1 93.994 -36.4 4.860 5191 no
## 3441 1.1 93.994 -36.4 4.860 5191 no
## 3442 1.1 93.994 -36.4 4.860 5191 no
## 3443 1.1 93.994 -36.4 4.860 5191 no
## 3444 1.1 93.994 -36.4 4.860 5191 no
## 3445 1.1 93.994 -36.4 4.860 5191 no
## 3446 1.1 93.994 -36.4 4.860 5191 no
## 3447 1.1 93.994 -36.4 4.860 5191 no
## 3448 1.1 93.994 -36.4 4.860 5191 no
## 3449 1.1 93.994 -36.4 4.860 5191 no
## 3450 1.1 93.994 -36.4 4.860 5191 no
## 3451 1.1 93.994 -36.4 4.860 5191 no
## 3452 1.1 93.994 -36.4 4.860 5191 no
## 3453 1.1 93.994 -36.4 4.860 5191 no
## 3454 1.1 93.994 -36.4 4.860 5191 yes
## 3455 1.1 93.994 -36.4 4.860 5191 no
## 3456 1.1 93.994 -36.4 4.860 5191 no
## 3457 1.1 93.994 -36.4 4.860 5191 no
## 3458 1.1 93.994 -36.4 4.860 5191 no
## 3459 1.1 93.994 -36.4 4.860 5191 no
## 3460 1.1 93.994 -36.4 4.860 5191 no
## 3461 1.1 93.994 -36.4 4.860 5191 no
## 3462 1.1 93.994 -36.4 4.860 5191 no
## 3463 1.1 93.994 -36.4 4.860 5191 no
## 3464 1.1 93.994 -36.4 4.860 5191 no
## 3465 1.1 93.994 -36.4 4.860 5191 no
## 3466 1.1 93.994 -36.4 4.860 5191 no
## 3467 1.1 93.994 -36.4 4.860 5191 no
## 3468 1.1 93.994 -36.4 4.860 5191 no
## 3469 1.1 93.994 -36.4 4.860 5191 no
## 3470 1.1 93.994 -36.4 4.860 5191 no
## 3471 1.1 93.994 -36.4 4.860 5191 no
## 3472 1.1 93.994 -36.4 4.860 5191 no
## 3473 1.1 93.994 -36.4 4.860 5191 no
## 3474 1.1 93.994 -36.4 4.860 5191 no
## 3475 1.1 93.994 -36.4 4.860 5191 no
## 3476 1.1 93.994 -36.4 4.860 5191 no
## 3477 1.1 93.994 -36.4 4.860 5191 no
## 3478 1.1 93.994 -36.4 4.860 5191 no
## 3479 1.1 93.994 -36.4 4.860 5191 no
## 3480 1.1 93.994 -36.4 4.860 5191 no
## 3481 1.1 93.994 -36.4 4.860 5191 no
## 3482 1.1 93.994 -36.4 4.860 5191 no
## 3483 1.1 93.994 -36.4 4.860 5191 no
## 3484 1.1 93.994 -36.4 4.860 5191 no
## 3485 1.1 93.994 -36.4 4.860 5191 no
## 3486 1.1 93.994 -36.4 4.860 5191 no
## 3487 1.1 93.994 -36.4 4.860 5191 no
## 3488 1.1 93.994 -36.4 4.860 5191 no
## 3489 1.1 93.994 -36.4 4.860 5191 no
## 3490 1.1 93.994 -36.4 4.860 5191 no
## 3491 1.1 93.994 -36.4 4.860 5191 no
## 3492 1.1 93.994 -36.4 4.860 5191 no
## 3493 1.1 93.994 -36.4 4.860 5191 no
## 3494 1.1 93.994 -36.4 4.860 5191 no
## 3495 1.1 93.994 -36.4 4.860 5191 no
## 3496 1.1 93.994 -36.4 4.860 5191 no
## 3497 1.1 93.994 -36.4 4.860 5191 no
## 3498 1.1 93.994 -36.4 4.860 5191 no
## 3499 1.1 93.994 -36.4 4.860 5191 no
## 3500 1.1 93.994 -36.4 4.860 5191 no
## 3501 1.1 93.994 -36.4 4.860 5191 no
## 3502 1.1 93.994 -36.4 4.860 5191 no
## 3503 1.1 93.994 -36.4 4.860 5191 no
## 3504 1.1 93.994 -36.4 4.860 5191 no
## 3505 1.1 93.994 -36.4 4.860 5191 no
## 3506 1.1 93.994 -36.4 4.860 5191 no
## 3507 1.1 93.994 -36.4 4.860 5191 yes
## 3508 1.1 93.994 -36.4 4.860 5191 no
## 3509 1.1 93.994 -36.4 4.860 5191 no
## 3510 1.1 93.994 -36.4 4.860 5191 no
## 3511 1.1 93.994 -36.4 4.860 5191 no
## 3512 1.1 93.994 -36.4 4.860 5191 no
## 3513 1.1 93.994 -36.4 4.860 5191 no
## 3514 1.1 93.994 -36.4 4.860 5191 no
## 3515 1.1 93.994 -36.4 4.860 5191 no
## 3516 1.1 93.994 -36.4 4.860 5191 no
## 3517 1.1 93.994 -36.4 4.860 5191 no
## 3518 1.1 93.994 -36.4 4.860 5191 no
## 3519 1.1 93.994 -36.4 4.860 5191 no
## 3520 1.1 93.994 -36.4 4.860 5191 no
## 3521 1.1 93.994 -36.4 4.860 5191 no
## 3522 1.1 93.994 -36.4 4.860 5191 no
## 3523 1.1 93.994 -36.4 4.859 5191 no
## 3524 1.1 93.994 -36.4 4.859 5191 no
## 3525 1.1 93.994 -36.4 4.859 5191 no
## 3526 1.1 93.994 -36.4 4.859 5191 no
## 3527 1.1 93.994 -36.4 4.859 5191 no
## 3528 1.1 93.994 -36.4 4.859 5191 no
## 3529 1.1 93.994 -36.4 4.859 5191 no
## 3530 1.1 93.994 -36.4 4.859 5191 no
## 3531 1.1 93.994 -36.4 4.859 5191 no
## 3532 1.1 93.994 -36.4 4.859 5191 no
## 3533 1.1 93.994 -36.4 4.859 5191 no
## 3534 1.1 93.994 -36.4 4.859 5191 no
## 3535 1.1 93.994 -36.4 4.859 5191 no
## 3536 1.1 93.994 -36.4 4.859 5191 no
## 3537 1.1 93.994 -36.4 4.859 5191 no
## 3538 1.1 93.994 -36.4 4.859 5191 no
## 3539 1.1 93.994 -36.4 4.859 5191 no
## 3540 1.1 93.994 -36.4 4.859 5191 no
## 3541 1.1 93.994 -36.4 4.859 5191 no
## 3542 1.1 93.994 -36.4 4.859 5191 yes
## 3543 1.1 93.994 -36.4 4.859 5191 no
## 3544 1.1 93.994 -36.4 4.859 5191 no
## 3545 1.1 93.994 -36.4 4.859 5191 no
## 3546 1.1 93.994 -36.4 4.859 5191 yes
## 3547 1.1 93.994 -36.4 4.859 5191 no
## 3548 1.1 93.994 -36.4 4.859 5191 no
## 3549 1.1 93.994 -36.4 4.859 5191 no
## 3550 1.1 93.994 -36.4 4.859 5191 no
## 3551 1.1 93.994 -36.4 4.859 5191 no
## 3552 1.1 93.994 -36.4 4.859 5191 no
## 3553 1.1 93.994 -36.4 4.859 5191 no
## 3554 1.1 93.994 -36.4 4.859 5191 no
## 3555 1.1 93.994 -36.4 4.859 5191 no
## 3556 1.1 93.994 -36.4 4.859 5191 no
## 3557 1.1 93.994 -36.4 4.859 5191 no
## 3558 1.1 93.994 -36.4 4.859 5191 no
## 3559 1.1 93.994 -36.4 4.859 5191 no
## 3560 1.1 93.994 -36.4 4.859 5191 no
## 3561 1.1 93.994 -36.4 4.859 5191 no
## 3562 1.1 93.994 -36.4 4.859 5191 no
## 3563 1.1 93.994 -36.4 4.859 5191 no
## 3564 1.1 93.994 -36.4 4.859 5191 no
## 3565 1.1 93.994 -36.4 4.859 5191 yes
## 3566 1.1 93.994 -36.4 4.859 5191 no
## 3567 1.1 93.994 -36.4 4.859 5191 yes
## 3568 1.1 93.994 -36.4 4.859 5191 no
## 3569 1.1 93.994 -36.4 4.859 5191 no
## 3570 1.1 93.994 -36.4 4.859 5191 no
## 3571 1.1 93.994 -36.4 4.859 5191 yes
## 3572 1.1 93.994 -36.4 4.859 5191 no
## 3573 1.1 93.994 -36.4 4.859 5191 no
## 3574 1.1 93.994 -36.4 4.859 5191 no
## 3575 1.1 93.994 -36.4 4.859 5191 yes
## 3576 1.1 93.994 -36.4 4.859 5191 no
## 3577 1.1 93.994 -36.4 4.859 5191 yes
## 3578 1.1 93.994 -36.4 4.859 5191 no
## 3579 1.1 93.994 -36.4 4.859 5191 no
## 3580 1.1 93.994 -36.4 4.859 5191 no
## 3581 1.1 93.994 -36.4 4.859 5191 no
## 3582 1.1 93.994 -36.4 4.859 5191 no
## 3583 1.1 93.994 -36.4 4.859 5191 no
## 3584 1.1 93.994 -36.4 4.859 5191 no
## 3585 1.1 93.994 -36.4 4.859 5191 no
## 3586 1.1 93.994 -36.4 4.859 5191 no
## 3587 1.1 93.994 -36.4 4.859 5191 no
## 3588 1.1 93.994 -36.4 4.859 5191 no
## 3589 1.1 93.994 -36.4 4.859 5191 no
## 3590 1.1 93.994 -36.4 4.859 5191 no
## 3591 1.1 93.994 -36.4 4.859 5191 no
## 3592 1.1 93.994 -36.4 4.859 5191 no
## 3593 1.1 93.994 -36.4 4.859 5191 no
## 3594 1.1 93.994 -36.4 4.859 5191 no
## 3595 1.1 93.994 -36.4 4.859 5191 no
## 3596 1.1 93.994 -36.4 4.859 5191 no
## 3597 1.1 93.994 -36.4 4.859 5191 no
## 3598 1.1 93.994 -36.4 4.859 5191 no
## 3599 1.1 93.994 -36.4 4.859 5191 no
## 3600 1.1 93.994 -36.4 4.859 5191 no
## 3601 1.1 93.994 -36.4 4.859 5191 no
## 3602 1.1 93.994 -36.4 4.859 5191 no
## 3603 1.1 93.994 -36.4 4.859 5191 no
## 3604 1.1 93.994 -36.4 4.859 5191 no
## 3605 1.1 93.994 -36.4 4.859 5191 no
## 3606 1.1 93.994 -36.4 4.859 5191 no
## 3607 1.1 93.994 -36.4 4.859 5191 no
## 3608 1.1 93.994 -36.4 4.859 5191 no
## 3609 1.1 93.994 -36.4 4.859 5191 yes
## 3610 1.1 93.994 -36.4 4.859 5191 no
## 3611 1.1 93.994 -36.4 4.859 5191 no
## 3612 1.1 93.994 -36.4 4.859 5191 no
## 3613 1.1 93.994 -36.4 4.859 5191 no
## 3614 1.1 93.994 -36.4 4.859 5191 no
## 3615 1.1 93.994 -36.4 4.859 5191 no
## 3616 1.1 93.994 -36.4 4.859 5191 no
## 3617 1.1 93.994 -36.4 4.859 5191 no
## 3618 1.1 93.994 -36.4 4.859 5191 no
## 3619 1.1 93.994 -36.4 4.859 5191 no
## 3620 1.1 93.994 -36.4 4.859 5191 no
## 3621 1.1 93.994 -36.4 4.859 5191 no
## 3622 1.1 93.994 -36.4 4.859 5191 no
## 3623 1.1 93.994 -36.4 4.859 5191 no
## 3624 1.1 93.994 -36.4 4.859 5191 no
## 3625 1.1 93.994 -36.4 4.859 5191 no
## 3626 1.1 93.994 -36.4 4.859 5191 no
## 3627 1.1 93.994 -36.4 4.859 5191 no
## 3628 1.1 93.994 -36.4 4.859 5191 no
## 3629 1.1 93.994 -36.4 4.859 5191 yes
## 3630 1.1 93.994 -36.4 4.859 5191 no
## 3631 1.1 93.994 -36.4 4.859 5191 no
## 3632 1.1 93.994 -36.4 4.859 5191 no
## 3633 1.1 93.994 -36.4 4.859 5191 no
## 3634 1.1 93.994 -36.4 4.859 5191 no
## 3635 1.1 93.994 -36.4 4.859 5191 no
## 3636 1.1 93.994 -36.4 4.859 5191 no
## 3637 1.1 93.994 -36.4 4.859 5191 no
## 3638 1.1 93.994 -36.4 4.859 5191 no
## 3639 1.1 93.994 -36.4 4.859 5191 no
## 3640 1.1 93.994 -36.4 4.859 5191 no
## 3641 1.1 93.994 -36.4 4.859 5191 no
## 3642 1.1 93.994 -36.4 4.859 5191 no
## 3643 1.1 93.994 -36.4 4.859 5191 no
## 3644 1.1 93.994 -36.4 4.859 5191 no
## 3645 1.1 93.994 -36.4 4.859 5191 no
## 3646 1.1 93.994 -36.4 4.859 5191 no
## 3647 1.1 93.994 -36.4 4.859 5191 no
## 3648 1.1 93.994 -36.4 4.859 5191 no
## 3649 1.1 93.994 -36.4 4.859 5191 no
## 3650 1.1 93.994 -36.4 4.859 5191 no
## 3651 1.1 93.994 -36.4 4.859 5191 no
## 3652 1.1 93.994 -36.4 4.859 5191 no
## 3653 1.1 93.994 -36.4 4.859 5191 no
## 3654 1.1 93.994 -36.4 4.859 5191 no
## 3655 1.1 93.994 -36.4 4.859 5191 no
## 3656 1.1 93.994 -36.4 4.859 5191 no
## 3657 1.1 93.994 -36.4 4.859 5191 no
## 3658 1.1 93.994 -36.4 4.859 5191 no
## 3659 1.1 93.994 -36.4 4.859 5191 no
## 3660 1.1 93.994 -36.4 4.859 5191 no
## 3661 1.1 93.994 -36.4 4.859 5191 no
## 3662 1.1 93.994 -36.4 4.859 5191 yes
## 3663 1.1 93.994 -36.4 4.859 5191 no
## 3664 1.1 93.994 -36.4 4.859 5191 no
## 3665 1.1 93.994 -36.4 4.859 5191 no
## 3666 1.1 93.994 -36.4 4.859 5191 no
## 3667 1.1 93.994 -36.4 4.859 5191 no
## 3668 1.1 93.994 -36.4 4.859 5191 no
## 3669 1.1 93.994 -36.4 4.859 5191 no
## 3670 1.1 93.994 -36.4 4.859 5191 no
## 3671 1.1 93.994 -36.4 4.859 5191 no
## 3672 1.1 93.994 -36.4 4.859 5191 no
## 3673 1.1 93.994 -36.4 4.859 5191 no
## 3674 1.1 93.994 -36.4 4.859 5191 no
## 3675 1.1 93.994 -36.4 4.859 5191 no
## 3676 1.1 93.994 -36.4 4.859 5191 no
## 3677 1.1 93.994 -36.4 4.859 5191 no
## 3678 1.1 93.994 -36.4 4.859 5191 yes
## 3679 1.1 93.994 -36.4 4.859 5191 no
## 3680 1.1 93.994 -36.4 4.859 5191 no
## 3681 1.1 93.994 -36.4 4.859 5191 no
## 3682 1.1 93.994 -36.4 4.859 5191 no
## 3683 1.1 93.994 -36.4 4.859 5191 no
## 3684 1.1 93.994 -36.4 4.859 5191 no
## 3685 1.1 93.994 -36.4 4.859 5191 no
## 3686 1.1 93.994 -36.4 4.859 5191 yes
## 3687 1.1 93.994 -36.4 4.859 5191 no
## 3688 1.1 93.994 -36.4 4.859 5191 no
## 3689 1.1 93.994 -36.4 4.859 5191 no
## 3690 1.1 93.994 -36.4 4.859 5191 no
## 3691 1.1 93.994 -36.4 4.859 5191 no
## 3692 1.1 93.994 -36.4 4.859 5191 no
## 3693 1.1 93.994 -36.4 4.859 5191 no
## 3694 1.1 93.994 -36.4 4.859 5191 yes
## 3695 1.1 93.994 -36.4 4.859 5191 no
## 3696 1.1 93.994 -36.4 4.859 5191 no
## 3697 1.1 93.994 -36.4 4.859 5191 no
## 3698 1.1 93.994 -36.4 4.859 5191 yes
## 3699 1.1 93.994 -36.4 4.859 5191 no
## 3700 1.1 93.994 -36.4 4.859 5191 no
## 3701 1.1 93.994 -36.4 4.859 5191 no
## 3702 1.1 93.994 -36.4 4.859 5191 no
## 3703 1.1 93.994 -36.4 4.859 5191 no
## 3704 1.1 93.994 -36.4 4.859 5191 no
## 3705 1.1 93.994 -36.4 4.859 5191 no
## 3706 1.1 93.994 -36.4 4.859 5191 no
## 3707 1.1 93.994 -36.4 4.859 5191 no
## 3708 1.1 93.994 -36.4 4.859 5191 no
## 3709 1.1 93.994 -36.4 4.859 5191 no
## 3710 1.1 93.994 -36.4 4.859 5191 no
## 3711 1.1 93.994 -36.4 4.859 5191 no
## 3712 1.1 93.994 -36.4 4.859 5191 no
## 3713 1.1 93.994 -36.4 4.859 5191 no
## 3714 1.1 93.994 -36.4 4.859 5191 no
## 3715 1.1 93.994 -36.4 4.859 5191 no
## 3716 1.1 93.994 -36.4 4.859 5191 no
## 3717 1.1 93.994 -36.4 4.859 5191 no
## 3718 1.1 93.994 -36.4 4.859 5191 no
## 3719 1.1 93.994 -36.4 4.859 5191 no
## 3720 1.1 93.994 -36.4 4.859 5191 no
## 3721 1.1 93.994 -36.4 4.859 5191 no
## 3722 1.1 93.994 -36.4 4.859 5191 no
## 3723 1.1 93.994 -36.4 4.859 5191 no
## 3724 1.1 93.994 -36.4 4.859 5191 no
## 3725 1.1 93.994 -36.4 4.859 5191 no
## 3726 1.1 93.994 -36.4 4.859 5191 no
## 3727 1.1 93.994 -36.4 4.859 5191 no
## 3728 1.1 93.994 -36.4 4.859 5191 no
## 3729 1.1 93.994 -36.4 4.859 5191 no
## 3730 1.1 93.994 -36.4 4.859 5191 no
## 3731 1.1 93.994 -36.4 4.859 5191 no
## 3732 1.1 93.994 -36.4 4.859 5191 no
## 3733 1.1 93.994 -36.4 4.859 5191 no
## 3734 1.1 93.994 -36.4 4.859 5191 no
## 3735 1.1 93.994 -36.4 4.859 5191 yes
## 3736 1.1 93.994 -36.4 4.859 5191 no
## 3737 1.1 93.994 -36.4 4.859 5191 no
## 3738 1.1 93.994 -36.4 4.859 5191 no
## 3739 1.1 93.994 -36.4 4.859 5191 no
## 3740 1.1 93.994 -36.4 4.859 5191 no
## 3741 1.1 93.994 -36.4 4.859 5191 yes
## 3742 1.1 93.994 -36.4 4.859 5191 no
## 3743 1.1 93.994 -36.4 4.859 5191 no
## 3744 1.1 93.994 -36.4 4.859 5191 no
## 3745 1.1 93.994 -36.4 4.859 5191 no
## 3746 1.1 93.994 -36.4 4.859 5191 no
## 3747 1.1 93.994 -36.4 4.859 5191 no
## 3748 1.1 93.994 -36.4 4.859 5191 no
## 3749 1.1 93.994 -36.4 4.859 5191 no
## 3750 1.1 93.994 -36.4 4.859 5191 no
## 3751 1.1 93.994 -36.4 4.859 5191 no
## 3752 1.1 93.994 -36.4 4.859 5191 no
## 3753 1.1 93.994 -36.4 4.859 5191 no
## 3754 1.1 93.994 -36.4 4.859 5191 no
## 3755 1.1 93.994 -36.4 4.859 5191 no
## 3756 1.1 93.994 -36.4 4.859 5191 no
## 3757 1.1 93.994 -36.4 4.859 5191 no
## 3758 1.1 93.994 -36.4 4.859 5191 no
## 3759 1.1 93.994 -36.4 4.859 5191 no
## 3760 1.1 93.994 -36.4 4.859 5191 no
## 3761 1.1 93.994 -36.4 4.859 5191 no
## 3762 1.1 93.994 -36.4 4.859 5191 no
## 3763 1.1 93.994 -36.4 4.859 5191 no
## 3764 1.1 93.994 -36.4 4.859 5191 no
## 3765 1.1 93.994 -36.4 4.859 5191 no
## 3766 1.1 93.994 -36.4 4.859 5191 no
## 3767 1.1 93.994 -36.4 4.859 5191 no
## 3768 1.1 93.994 -36.4 4.859 5191 no
## 3769 1.1 93.994 -36.4 4.859 5191 no
## 3770 1.1 93.994 -36.4 4.859 5191 no
## 3771 1.1 93.994 -36.4 4.859 5191 no
## 3772 1.1 93.994 -36.4 4.859 5191 no
## 3773 1.1 93.994 -36.4 4.859 5191 no
## 3774 1.1 93.994 -36.4 4.859 5191 no
## 3775 1.1 93.994 -36.4 4.859 5191 yes
## 3776 1.1 93.994 -36.4 4.859 5191 no
## 3777 1.1 93.994 -36.4 4.859 5191 no
## 3778 1.1 93.994 -36.4 4.859 5191 no
## 3779 1.1 93.994 -36.4 4.859 5191 no
## 3780 1.1 93.994 -36.4 4.859 5191 no
## 3781 1.1 93.994 -36.4 4.859 5191 no
## 3782 1.1 93.994 -36.4 4.859 5191 no
## 3783 1.1 93.994 -36.4 4.859 5191 no
## 3784 1.1 93.994 -36.4 4.859 5191 no
## 3785 1.1 93.994 -36.4 4.859 5191 no
## 3786 1.1 93.994 -36.4 4.859 5191 no
## 3787 1.1 93.994 -36.4 4.859 5191 no
## 3788 1.1 93.994 -36.4 4.859 5191 no
## 3789 1.1 93.994 -36.4 4.859 5191 no
## 3790 1.1 93.994 -36.4 4.859 5191 no
## 3791 1.1 93.994 -36.4 4.859 5191 no
## 3792 1.1 93.994 -36.4 4.859 5191 no
## 3793 1.1 93.994 -36.4 4.859 5191 no
## 3794 1.1 93.994 -36.4 4.859 5191 no
## 3795 1.1 93.994 -36.4 4.859 5191 no
## 3796 1.1 93.994 -36.4 4.859 5191 no
## 3797 1.1 93.994 -36.4 4.859 5191 no
## 3798 1.1 93.994 -36.4 4.859 5191 no
## 3799 1.1 93.994 -36.4 4.859 5191 no
## 3800 1.1 93.994 -36.4 4.859 5191 no
## 3801 1.1 93.994 -36.4 4.859 5191 no
## 3802 1.1 93.994 -36.4 4.859 5191 no
## 3803 1.1 93.994 -36.4 4.859 5191 no
## 3804 1.1 93.994 -36.4 4.859 5191 no
## 3805 1.1 93.994 -36.4 4.859 5191 no
## 3806 1.1 93.994 -36.4 4.859 5191 no
## 3807 1.1 93.994 -36.4 4.859 5191 no
## 3808 1.1 93.994 -36.4 4.859 5191 no
## 3809 1.1 93.994 -36.4 4.859 5191 no
## 3810 1.1 93.994 -36.4 4.859 5191 no
## 3811 1.1 93.994 -36.4 4.859 5191 no
## 3812 1.1 93.994 -36.4 4.859 5191 no
## 3813 1.1 93.994 -36.4 4.859 5191 no
## 3814 1.1 93.994 -36.4 4.859 5191 no
## 3815 1.1 93.994 -36.4 4.859 5191 no
## 3816 1.1 93.994 -36.4 4.859 5191 no
## 3817 1.1 93.994 -36.4 4.859 5191 no
## 3818 1.1 93.994 -36.4 4.859 5191 no
## 3819 1.1 93.994 -36.4 4.859 5191 no
## 3820 1.1 93.994 -36.4 4.859 5191 no
## 3821 1.1 93.994 -36.4 4.859 5191 no
## 3822 1.1 93.994 -36.4 4.859 5191 no
## 3823 1.1 93.994 -36.4 4.859 5191 no
## 3824 1.1 93.994 -36.4 4.859 5191 no
## 3825 1.1 93.994 -36.4 4.859 5191 no
## 3826 1.1 93.994 -36.4 4.859 5191 no
## 3827 1.1 93.994 -36.4 4.859 5191 no
## 3828 1.1 93.994 -36.4 4.859 5191 no
## 3829 1.1 93.994 -36.4 4.859 5191 no
## 3830 1.1 93.994 -36.4 4.859 5191 no
## 3831 1.1 93.994 -36.4 4.859 5191 no
## 3832 1.1 93.994 -36.4 4.859 5191 no
## 3833 1.1 93.994 -36.4 4.859 5191 no
## 3834 1.1 93.994 -36.4 4.859 5191 no
## 3835 1.1 93.994 -36.4 4.859 5191 no
## 3836 1.1 93.994 -36.4 4.859 5191 no
## 3837 1.1 93.994 -36.4 4.859 5191 no
## 3838 1.1 93.994 -36.4 4.859 5191 no
## 3839 1.1 93.994 -36.4 4.859 5191 no
## 3840 1.1 93.994 -36.4 4.859 5191 no
## 3841 1.1 93.994 -36.4 4.859 5191 no
## 3842 1.1 93.994 -36.4 4.859 5191 no
## 3843 1.1 93.994 -36.4 4.859 5191 no
## 3844 1.1 93.994 -36.4 4.859 5191 no
## 3845 1.1 93.994 -36.4 4.859 5191 no
## 3846 1.1 93.994 -36.4 4.859 5191 no
## 3847 1.1 93.994 -36.4 4.859 5191 no
## 3848 1.1 93.994 -36.4 4.859 5191 no
## 3849 1.1 93.994 -36.4 4.859 5191 no
## 3850 1.1 93.994 -36.4 4.859 5191 no
## 3851 1.1 93.994 -36.4 4.859 5191 no
## 3852 1.1 93.994 -36.4 4.859 5191 no
## 3853 1.1 93.994 -36.4 4.859 5191 no
## 3854 1.1 93.994 -36.4 4.859 5191 no
## 3855 1.1 93.994 -36.4 4.859 5191 yes
## 3856 1.1 93.994 -36.4 4.859 5191 no
## 3857 1.1 93.994 -36.4 4.859 5191 no
## 3858 1.1 93.994 -36.4 4.859 5191 no
## 3859 1.1 93.994 -36.4 4.859 5191 no
## 3860 1.1 93.994 -36.4 4.859 5191 no
## 3861 1.1 93.994 -36.4 4.859 5191 no
## 3862 1.1 93.994 -36.4 4.859 5191 no
## 3863 1.1 93.994 -36.4 4.859 5191 no
## 3864 1.1 93.994 -36.4 4.859 5191 no
## 3865 1.1 93.994 -36.4 4.859 5191 no
## 3866 1.1 93.994 -36.4 4.859 5191 no
## 3867 1.1 93.994 -36.4 4.859 5191 no
## 3868 1.1 93.994 -36.4 4.859 5191 no
## 3869 1.1 93.994 -36.4 4.859 5191 no
## 3870 1.1 93.994 -36.4 4.859 5191 no
## 3871 1.1 93.994 -36.4 4.859 5191 no
## 3872 1.1 93.994 -36.4 4.859 5191 no
## 3873 1.1 93.994 -36.4 4.859 5191 no
## 3874 1.1 93.994 -36.4 4.859 5191 no
## 3875 1.1 93.994 -36.4 4.859 5191 no
## 3876 1.1 93.994 -36.4 4.859 5191 no
## 3877 1.1 93.994 -36.4 4.859 5191 no
## 3878 1.1 93.994 -36.4 4.859 5191 no
## 3879 1.1 93.994 -36.4 4.859 5191 no
## 3880 1.1 93.994 -36.4 4.859 5191 no
## 3881 1.1 93.994 -36.4 4.859 5191 no
## 3882 1.1 93.994 -36.4 4.859 5191 no
## 3883 1.1 93.994 -36.4 4.859 5191 no
## 3884 1.1 93.994 -36.4 4.859 5191 no
## 3885 1.1 93.994 -36.4 4.859 5191 no
## 3886 1.1 93.994 -36.4 4.859 5191 no
## 3887 1.1 93.994 -36.4 4.859 5191 no
## 3888 1.1 93.994 -36.4 4.859 5191 yes
## 3889 1.1 93.994 -36.4 4.859 5191 no
## 3890 1.1 93.994 -36.4 4.859 5191 no
## 3891 1.1 93.994 -36.4 4.859 5191 no
## 3892 1.1 93.994 -36.4 4.859 5191 no
## 3893 1.1 93.994 -36.4 4.859 5191 no
## 3894 1.1 93.994 -36.4 4.858 5191 no
## 3895 1.1 93.994 -36.4 4.858 5191 no
## 3896 1.1 93.994 -36.4 4.858 5191 no
## 3897 1.1 93.994 -36.4 4.858 5191 no
## 3898 1.1 93.994 -36.4 4.858 5191 no
## 3899 1.1 93.994 -36.4 4.858 5191 no
## 3900 1.1 93.994 -36.4 4.858 5191 no
## 3901 1.1 93.994 -36.4 4.858 5191 no
## 3902 1.1 93.994 -36.4 4.858 5191 no
## 3903 1.1 93.994 -36.4 4.858 5191 no
## 3904 1.1 93.994 -36.4 4.858 5191 no
## 3905 1.1 93.994 -36.4 4.858 5191 no
## 3906 1.1 93.994 -36.4 4.858 5191 no
## 3907 1.1 93.994 -36.4 4.858 5191 no
## 3908 1.1 93.994 -36.4 4.858 5191 no
## 3909 1.1 93.994 -36.4 4.858 5191 no
## 3910 1.1 93.994 -36.4 4.858 5191 no
## 3911 1.1 93.994 -36.4 4.858 5191 no
## 3912 1.1 93.994 -36.4 4.858 5191 no
## 3913 1.1 93.994 -36.4 4.858 5191 no
## 3914 1.1 93.994 -36.4 4.858 5191 no
## 3915 1.1 93.994 -36.4 4.858 5191 no
## 3916 1.1 93.994 -36.4 4.858 5191 no
## 3917 1.1 93.994 -36.4 4.858 5191 no
## 3918 1.1 93.994 -36.4 4.858 5191 no
## 3919 1.1 93.994 -36.4 4.858 5191 no
## 3920 1.1 93.994 -36.4 4.858 5191 no
## 3921 1.1 93.994 -36.4 4.858 5191 no
## 3922 1.1 93.994 -36.4 4.858 5191 no
## 3923 1.1 93.994 -36.4 4.858 5191 no
## 3924 1.1 93.994 -36.4 4.858 5191 no
## 3925 1.1 93.994 -36.4 4.858 5191 no
## 3926 1.1 93.994 -36.4 4.858 5191 no
## 3927 1.1 93.994 -36.4 4.858 5191 no
## 3928 1.1 93.994 -36.4 4.858 5191 no
## 3929 1.1 93.994 -36.4 4.858 5191 no
## 3930 1.1 93.994 -36.4 4.858 5191 no
## 3931 1.1 93.994 -36.4 4.858 5191 no
## 3932 1.1 93.994 -36.4 4.858 5191 no
## 3933 1.1 93.994 -36.4 4.858 5191 no
## 3934 1.1 93.994 -36.4 4.858 5191 no
## 3935 1.1 93.994 -36.4 4.858 5191 no
## 3936 1.1 93.994 -36.4 4.858 5191 no
## 3937 1.1 93.994 -36.4 4.858 5191 no
## 3938 1.1 93.994 -36.4 4.858 5191 no
## 3939 1.1 93.994 -36.4 4.858 5191 no
## 3940 1.1 93.994 -36.4 4.858 5191 yes
## 3941 1.1 93.994 -36.4 4.858 5191 no
## 3942 1.1 93.994 -36.4 4.858 5191 no
## 3943 1.1 93.994 -36.4 4.858 5191 no
## 3944 1.1 93.994 -36.4 4.858 5191 no
## 3945 1.1 93.994 -36.4 4.858 5191 no
## 3946 1.1 93.994 -36.4 4.858 5191 no
## 3947 1.1 93.994 -36.4 4.858 5191 no
## 3948 1.1 93.994 -36.4 4.858 5191 no
## 3949 1.1 93.994 -36.4 4.858 5191 no
## 3950 1.1 93.994 -36.4 4.858 5191 no
## 3951 1.1 93.994 -36.4 4.858 5191 no
## 3952 1.1 93.994 -36.4 4.858 5191 no
## 3953 1.1 93.994 -36.4 4.858 5191 no
## 3954 1.1 93.994 -36.4 4.858 5191 no
## 3955 1.1 93.994 -36.4 4.858 5191 no
## 3956 1.1 93.994 -36.4 4.858 5191 no
## 3957 1.1 93.994 -36.4 4.858 5191 no
## 3958 1.1 93.994 -36.4 4.858 5191 no
## 3959 1.1 93.994 -36.4 4.858 5191 no
## 3960 1.1 93.994 -36.4 4.858 5191 no
## 3961 1.1 93.994 -36.4 4.858 5191 no
## 3962 1.1 93.994 -36.4 4.858 5191 no
## 3963 1.1 93.994 -36.4 4.858 5191 no
## 3964 1.1 93.994 -36.4 4.858 5191 no
## 3965 1.1 93.994 -36.4 4.858 5191 no
## 3966 1.1 93.994 -36.4 4.858 5191 no
## 3967 1.1 93.994 -36.4 4.858 5191 no
## 3968 1.1 93.994 -36.4 4.858 5191 no
## 3969 1.1 93.994 -36.4 4.858 5191 no
## 3970 1.1 93.994 -36.4 4.858 5191 no
## 3971 1.1 93.994 -36.4 4.858 5191 no
## 3972 1.1 93.994 -36.4 4.858 5191 no
## 3973 1.1 93.994 -36.4 4.858 5191 no
## 3974 1.1 93.994 -36.4 4.858 5191 no
## 3975 1.1 93.994 -36.4 4.858 5191 no
## 3976 1.1 93.994 -36.4 4.858 5191 no
## 3977 1.1 93.994 -36.4 4.858 5191 no
## 3978 1.1 93.994 -36.4 4.858 5191 no
## 3979 1.1 93.994 -36.4 4.858 5191 no
## 3980 1.1 93.994 -36.4 4.858 5191 yes
## 3981 1.1 93.994 -36.4 4.858 5191 no
## 3982 1.1 93.994 -36.4 4.858 5191 no
## 3983 1.1 93.994 -36.4 4.858 5191 no
## 3984 1.1 93.994 -36.4 4.858 5191 no
## 3985 1.1 93.994 -36.4 4.858 5191 no
## 3986 1.1 93.994 -36.4 4.858 5191 no
## 3987 1.1 93.994 -36.4 4.858 5191 no
## 3988 1.1 93.994 -36.4 4.858 5191 no
## 3989 1.1 93.994 -36.4 4.858 5191 yes
## 3990 1.1 93.994 -36.4 4.858 5191 no
## 3991 1.1 93.994 -36.4 4.858 5191 no
## 3992 1.1 93.994 -36.4 4.858 5191 no
## 3993 1.1 93.994 -36.4 4.858 5191 no
## 3994 1.1 93.994 -36.4 4.858 5191 no
## 3995 1.1 93.994 -36.4 4.858 5191 no
## 3996 1.1 93.994 -36.4 4.858 5191 no
## 3997 1.1 93.994 -36.4 4.858 5191 no
## 3998 1.1 93.994 -36.4 4.858 5191 no
## 3999 1.1 93.994 -36.4 4.858 5191 no
## 4000 1.1 93.994 -36.4 4.858 5191 no
## 4001 1.1 93.994 -36.4 4.858 5191 no
## 4002 1.1 93.994 -36.4 4.858 5191 no
## 4003 1.1 93.994 -36.4 4.858 5191 no
## 4004 1.1 93.994 -36.4 4.858 5191 no
## 4005 1.1 93.994 -36.4 4.858 5191 no
## 4006 1.1 93.994 -36.4 4.858 5191 no
## 4007 1.1 93.994 -36.4 4.858 5191 no
## 4008 1.1 93.994 -36.4 4.858 5191 no
## 4009 1.1 93.994 -36.4 4.858 5191 no
## 4010 1.1 93.994 -36.4 4.858 5191 no
## 4011 1.1 93.994 -36.4 4.858 5191 no
## 4012 1.1 93.994 -36.4 4.858 5191 no
## 4013 1.1 93.994 -36.4 4.858 5191 no
## 4014 1.1 93.994 -36.4 4.858 5191 no
## 4015 1.1 93.994 -36.4 4.858 5191 no
## 4016 1.1 93.994 -36.4 4.858 5191 no
## 4017 1.1 93.994 -36.4 4.858 5191 no
## 4018 1.1 93.994 -36.4 4.858 5191 no
## 4019 1.1 93.994 -36.4 4.858 5191 no
## 4020 1.1 93.994 -36.4 4.858 5191 no
## 4021 1.1 93.994 -36.4 4.858 5191 no
## 4022 1.1 93.994 -36.4 4.858 5191 no
## 4023 1.1 93.994 -36.4 4.858 5191 no
## 4024 1.1 93.994 -36.4 4.858 5191 no
## 4025 1.1 93.994 -36.4 4.858 5191 no
## 4026 1.1 93.994 -36.4 4.858 5191 no
## 4027 1.1 93.994 -36.4 4.858 5191 no
## 4028 1.1 93.994 -36.4 4.858 5191 no
## 4029 1.1 93.994 -36.4 4.858 5191 no
## 4030 1.1 93.994 -36.4 4.858 5191 no
## 4031 1.1 93.994 -36.4 4.858 5191 no
## 4032 1.1 93.994 -36.4 4.858 5191 no
## 4033 1.1 93.994 -36.4 4.858 5191 no
## 4034 1.1 93.994 -36.4 4.858 5191 no
## 4035 1.1 93.994 -36.4 4.858 5191 yes
## 4036 1.1 93.994 -36.4 4.858 5191 no
## 4037 1.1 93.994 -36.4 4.858 5191 no
## 4038 1.1 93.994 -36.4 4.858 5191 no
## 4039 1.1 93.994 -36.4 4.858 5191 no
## 4040 1.1 93.994 -36.4 4.858 5191 no
## 4041 1.1 93.994 -36.4 4.858 5191 no
## 4042 1.1 93.994 -36.4 4.858 5191 no
## 4043 1.1 93.994 -36.4 4.858 5191 no
## 4044 1.1 93.994 -36.4 4.858 5191 no
## 4045 1.1 93.994 -36.4 4.858 5191 no
## 4046 1.1 93.994 -36.4 4.858 5191 no
## 4047 1.1 93.994 -36.4 4.858 5191 no
## 4048 1.1 93.994 -36.4 4.858 5191 no
## 4049 1.1 93.994 -36.4 4.858 5191 no
## 4050 1.1 93.994 -36.4 4.858 5191 no
## 4051 1.1 93.994 -36.4 4.858 5191 yes
## 4052 1.1 93.994 -36.4 4.858 5191 no
## 4053 1.1 93.994 -36.4 4.858 5191 no
## 4054 1.1 93.994 -36.4 4.858 5191 no
## 4055 1.1 93.994 -36.4 4.858 5191 no
## 4056 1.1 93.994 -36.4 4.858 5191 no
## 4057 1.1 93.994 -36.4 4.858 5191 no
## 4058 1.1 93.994 -36.4 4.858 5191 no
## 4059 1.1 93.994 -36.4 4.858 5191 no
## 4060 1.1 93.994 -36.4 4.858 5191 no
## 4061 1.1 93.994 -36.4 4.858 5191 no
## 4062 1.1 93.994 -36.4 4.858 5191 no
## 4063 1.1 93.994 -36.4 4.858 5191 no
## 4064 1.1 93.994 -36.4 4.858 5191 no
## 4065 1.1 93.994 -36.4 4.858 5191 no
## 4066 1.1 93.994 -36.4 4.858 5191 no
## 4067 1.1 93.994 -36.4 4.858 5191 no
## 4068 1.1 93.994 -36.4 4.858 5191 no
## 4069 1.1 93.994 -36.4 4.858 5191 no
## 4070 1.1 93.994 -36.4 4.858 5191 no
## 4071 1.1 93.994 -36.4 4.858 5191 no
## 4072 1.1 93.994 -36.4 4.858 5191 no
## 4073 1.1 93.994 -36.4 4.858 5191 no
## 4074 1.1 93.994 -36.4 4.858 5191 no
## 4075 1.1 93.994 -36.4 4.858 5191 no
## 4076 1.1 93.994 -36.4 4.858 5191 no
## 4077 1.1 93.994 -36.4 4.858 5191 no
## 4078 1.1 93.994 -36.4 4.858 5191 no
## 4079 1.1 93.994 -36.4 4.858 5191 no
## 4080 1.1 93.994 -36.4 4.858 5191 no
## 4081 1.1 93.994 -36.4 4.858 5191 no
## 4082 1.1 93.994 -36.4 4.858 5191 no
## 4083 1.1 93.994 -36.4 4.858 5191 no
## 4084 1.1 93.994 -36.4 4.858 5191 no
## 4085 1.1 93.994 -36.4 4.858 5191 no
## 4086 1.1 93.994 -36.4 4.858 5191 no
## 4087 1.1 93.994 -36.4 4.858 5191 no
## 4088 1.1 93.994 -36.4 4.858 5191 no
## 4089 1.1 93.994 -36.4 4.858 5191 no
## 4090 1.1 93.994 -36.4 4.858 5191 no
## 4091 1.1 93.994 -36.4 4.858 5191 no
## 4092 1.1 93.994 -36.4 4.858 5191 no
## 4093 1.1 93.994 -36.4 4.858 5191 no
## 4094 1.1 93.994 -36.4 4.858 5191 no
## 4095 1.1 93.994 -36.4 4.858 5191 no
## 4096 1.1 93.994 -36.4 4.858 5191 no
## 4097 1.1 93.994 -36.4 4.858 5191 no
## 4098 1.1 93.994 -36.4 4.858 5191 no
## 4099 1.1 93.994 -36.4 4.858 5191 no
## 4100 1.1 93.994 -36.4 4.858 5191 no
## 4101 1.1 93.994 -36.4 4.858 5191 no
## 4102 1.1 93.994 -36.4 4.858 5191 no
## 4103 1.1 93.994 -36.4 4.858 5191 no
## 4104 1.1 93.994 -36.4 4.858 5191 no
## 4105 1.1 93.994 -36.4 4.858 5191 no
## 4106 1.1 93.994 -36.4 4.858 5191 no
## 4107 1.1 93.994 -36.4 4.858 5191 no
## 4108 1.1 93.994 -36.4 4.858 5191 no
## 4109 1.1 93.994 -36.4 4.858 5191 no
## 4110 1.1 93.994 -36.4 4.858 5191 no
## 4111 1.1 93.994 -36.4 4.858 5191 yes
## 4112 1.1 93.994 -36.4 4.858 5191 no
## 4113 1.1 93.994 -36.4 4.858 5191 no
## 4114 1.1 93.994 -36.4 4.858 5191 no
## 4115 1.1 93.994 -36.4 4.858 5191 no
## 4116 1.1 93.994 -36.4 4.858 5191 no
## 4117 1.1 93.994 -36.4 4.858 5191 no
## 4118 1.1 93.994 -36.4 4.858 5191 no
## 4119 1.1 93.994 -36.4 4.858 5191 no
## 4120 1.1 93.994 -36.4 4.858 5191 no
## 4121 1.1 93.994 -36.4 4.858 5191 no
## 4122 1.1 93.994 -36.4 4.858 5191 no
## 4123 1.1 93.994 -36.4 4.858 5191 no
## 4124 1.1 93.994 -36.4 4.858 5191 no
## 4125 1.1 93.994 -36.4 4.858 5191 no
## 4126 1.1 93.994 -36.4 4.858 5191 no
## 4127 1.1 93.994 -36.4 4.858 5191 no
## 4128 1.1 93.994 -36.4 4.858 5191 no
## 4129 1.1 93.994 -36.4 4.858 5191 no
## 4130 1.1 93.994 -36.4 4.858 5191 no
## 4131 1.1 93.994 -36.4 4.858 5191 no
## 4132 1.1 93.994 -36.4 4.858 5191 no
## 4133 1.1 93.994 -36.4 4.858 5191 no
## 4134 1.1 93.994 -36.4 4.858 5191 no
## 4135 1.1 93.994 -36.4 4.858 5191 no
## 4136 1.1 93.994 -36.4 4.858 5191 no
## 4137 1.1 93.994 -36.4 4.858 5191 no
## 4138 1.1 93.994 -36.4 4.858 5191 no
## 4139 1.1 93.994 -36.4 4.858 5191 no
## 4140 1.1 93.994 -36.4 4.858 5191 no
## 4141 1.1 93.994 -36.4 4.858 5191 no
## 4142 1.1 93.994 -36.4 4.858 5191 no
## 4143 1.1 93.994 -36.4 4.858 5191 no
## 4144 1.1 93.994 -36.4 4.858 5191 no
## 4145 1.1 93.994 -36.4 4.858 5191 no
## 4146 1.1 93.994 -36.4 4.858 5191 no
## 4147 1.1 93.994 -36.4 4.858 5191 no
## 4148 1.1 93.994 -36.4 4.858 5191 no
## 4149 1.1 93.994 -36.4 4.858 5191 no
## 4150 1.1 93.994 -36.4 4.858 5191 no
## 4151 1.1 93.994 -36.4 4.858 5191 no
## 4152 1.1 93.994 -36.4 4.858 5191 no
## 4153 1.1 93.994 -36.4 4.858 5191 yes
## 4154 1.1 93.994 -36.4 4.858 5191 no
## 4155 1.1 93.994 -36.4 4.858 5191 no
## 4156 1.1 93.994 -36.4 4.858 5191 no
## 4157 1.1 93.994 -36.4 4.858 5191 no
## 4158 1.1 93.994 -36.4 4.858 5191 no
## 4159 1.1 93.994 -36.4 4.858 5191 no
## 4160 1.1 93.994 -36.4 4.858 5191 no
## 4161 1.1 93.994 -36.4 4.858 5191 no
## 4162 1.1 93.994 -36.4 4.858 5191 no
## 4163 1.1 93.994 -36.4 4.858 5191 no
## 4164 1.1 93.994 -36.4 4.858 5191 no
## 4165 1.1 93.994 -36.4 4.858 5191 yes
## 4166 1.1 93.994 -36.4 4.858 5191 no
## 4167 1.1 93.994 -36.4 4.858 5191 no
## 4168 1.1 93.994 -36.4 4.858 5191 yes
## 4169 1.1 93.994 -36.4 4.858 5191 no
## 4170 1.1 93.994 -36.4 4.858 5191 no
## 4171 1.1 93.994 -36.4 4.858 5191 no
## 4172 1.1 93.994 -36.4 4.858 5191 no
## 4173 1.1 93.994 -36.4 4.858 5191 no
## 4174 1.1 93.994 -36.4 4.858 5191 no
## 4175 1.1 93.994 -36.4 4.858 5191 no
## 4176 1.1 93.994 -36.4 4.858 5191 no
## 4177 1.1 93.994 -36.4 4.858 5191 no
## 4178 1.1 93.994 -36.4 4.858 5191 no
## 4179 1.1 93.994 -36.4 4.858 5191 no
## 4180 1.1 93.994 -36.4 4.858 5191 no
## 4181 1.1 93.994 -36.4 4.858 5191 no
## 4182 1.1 93.994 -36.4 4.858 5191 no
## 4183 1.1 93.994 -36.4 4.858 5191 no
## 4184 1.1 93.994 -36.4 4.858 5191 no
## 4185 1.1 93.994 -36.4 4.858 5191 no
## 4186 1.1 93.994 -36.4 4.858 5191 no
## 4187 1.1 93.994 -36.4 4.858 5191 no
## 4188 1.1 93.994 -36.4 4.858 5191 no
## 4189 1.1 93.994 -36.4 4.858 5191 no
## 4190 1.1 93.994 -36.4 4.858 5191 no
## 4191 1.1 93.994 -36.4 4.858 5191 no
## 4192 1.1 93.994 -36.4 4.858 5191 no
## 4193 1.1 93.994 -36.4 4.858 5191 no
## 4194 1.1 93.994 -36.4 4.858 5191 no
## 4195 1.1 93.994 -36.4 4.858 5191 no
## 4196 1.1 93.994 -36.4 4.858 5191 no
## 4197 1.1 93.994 -36.4 4.858 5191 no
## 4198 1.1 93.994 -36.4 4.858 5191 no
## 4199 1.1 93.994 -36.4 4.858 5191 no
## 4200 1.1 93.994 -36.4 4.858 5191 no
## 4201 1.1 93.994 -36.4 4.858 5191 no
## 4202 1.1 93.994 -36.4 4.858 5191 no
## 4203 1.1 93.994 -36.4 4.858 5191 no
## 4204 1.1 93.994 -36.4 4.858 5191 no
## 4205 1.1 93.994 -36.4 4.858 5191 no
## 4206 1.1 93.994 -36.4 4.858 5191 no
## 4207 1.1 93.994 -36.4 4.858 5191 no
## 4208 1.1 93.994 -36.4 4.858 5191 no
## 4209 1.1 93.994 -36.4 4.858 5191 no
## 4210 1.1 93.994 -36.4 4.858 5191 yes
## 4211 1.1 93.994 -36.4 4.858 5191 no
## 4212 1.1 93.994 -36.4 4.858 5191 no
## 4213 1.1 93.994 -36.4 4.858 5191 no
## 4214 1.1 93.994 -36.4 4.858 5191 no
## 4215 1.1 93.994 -36.4 4.856 5191 no
## 4216 1.1 93.994 -36.4 4.856 5191 no
## 4217 1.1 93.994 -36.4 4.856 5191 no
## 4218 1.1 93.994 -36.4 4.856 5191 no
## 4219 1.1 93.994 -36.4 4.856 5191 no
## 4220 1.1 93.994 -36.4 4.856 5191 no
## 4221 1.1 93.994 -36.4 4.856 5191 no
## 4222 1.1 93.994 -36.4 4.856 5191 no
## 4223 1.1 93.994 -36.4 4.856 5191 no
## 4224 1.1 93.994 -36.4 4.856 5191 no
## 4225 1.1 93.994 -36.4 4.856 5191 no
## 4226 1.1 93.994 -36.4 4.856 5191 no
## 4227 1.1 93.994 -36.4 4.856 5191 no
## 4228 1.1 93.994 -36.4 4.856 5191 no
## 4229 1.1 93.994 -36.4 4.856 5191 no
## 4230 1.1 93.994 -36.4 4.856 5191 no
## 4231 1.1 93.994 -36.4 4.856 5191 no
## 4232 1.1 93.994 -36.4 4.856 5191 no
## 4233 1.1 93.994 -36.4 4.856 5191 no
## 4234 1.1 93.994 -36.4 4.856 5191 no
## 4235 1.1 93.994 -36.4 4.856 5191 no
## 4236 1.1 93.994 -36.4 4.856 5191 no
## 4237 1.1 93.994 -36.4 4.856 5191 no
## 4238 1.1 93.994 -36.4 4.856 5191 no
## 4239 1.1 93.994 -36.4 4.856 5191 no
## 4240 1.1 93.994 -36.4 4.856 5191 no
## 4241 1.1 93.994 -36.4 4.856 5191 no
## 4242 1.1 93.994 -36.4 4.856 5191 no
## 4243 1.1 93.994 -36.4 4.856 5191 no
## 4244 1.1 93.994 -36.4 4.856 5191 no
## 4245 1.1 93.994 -36.4 4.856 5191 no
## 4246 1.1 93.994 -36.4 4.856 5191 no
## 4247 1.1 93.994 -36.4 4.856 5191 no
## 4248 1.1 93.994 -36.4 4.856 5191 no
## 4249 1.1 93.994 -36.4 4.856 5191 no
## 4250 1.1 93.994 -36.4 4.856 5191 no
## 4251 1.1 93.994 -36.4 4.856 5191 no
## 4252 1.1 93.994 -36.4 4.856 5191 no
## 4253 1.1 93.994 -36.4 4.856 5191 yes
## 4254 1.1 93.994 -36.4 4.856 5191 no
## 4255 1.1 93.994 -36.4 4.856 5191 no
## 4256 1.1 93.994 -36.4 4.856 5191 no
## 4257 1.1 93.994 -36.4 4.856 5191 no
## 4258 1.1 93.994 -36.4 4.856 5191 no
## 4259 1.1 93.994 -36.4 4.856 5191 no
## 4260 1.1 93.994 -36.4 4.856 5191 no
## 4261 1.1 93.994 -36.4 4.856 5191 no
## 4262 1.1 93.994 -36.4 4.856 5191 no
## 4263 1.1 93.994 -36.4 4.856 5191 no
## 4264 1.1 93.994 -36.4 4.856 5191 no
## 4265 1.1 93.994 -36.4 4.856 5191 yes
## 4266 1.1 93.994 -36.4 4.856 5191 no
## 4267 1.1 93.994 -36.4 4.856 5191 no
## 4268 1.1 93.994 -36.4 4.856 5191 no
## 4269 1.1 93.994 -36.4 4.856 5191 yes
## 4270 1.1 93.994 -36.4 4.856 5191 no
## 4271 1.1 93.994 -36.4 4.856 5191 no
## 4272 1.1 93.994 -36.4 4.856 5191 no
## 4273 1.1 93.994 -36.4 4.856 5191 no
## 4274 1.1 93.994 -36.4 4.856 5191 no
## 4275 1.1 93.994 -36.4 4.856 5191 no
## 4276 1.1 93.994 -36.4 4.856 5191 no
## 4277 1.1 93.994 -36.4 4.856 5191 no
## 4278 1.1 93.994 -36.4 4.856 5191 no
## 4279 1.1 93.994 -36.4 4.856 5191 no
## 4280 1.1 93.994 -36.4 4.856 5191 no
## 4281 1.1 93.994 -36.4 4.856 5191 no
## 4282 1.1 93.994 -36.4 4.856 5191 no
## 4283 1.1 93.994 -36.4 4.856 5191 no
## 4284 1.1 93.994 -36.4 4.856 5191 no
## 4285 1.1 93.994 -36.4 4.856 5191 no
## 4286 1.1 93.994 -36.4 4.856 5191 no
## 4287 1.1 93.994 -36.4 4.856 5191 no
## 4288 1.1 93.994 -36.4 4.856 5191 no
## 4289 1.1 93.994 -36.4 4.856 5191 no
## 4290 1.1 93.994 -36.4 4.856 5191 no
## 4291 1.1 93.994 -36.4 4.856 5191 no
## 4292 1.1 93.994 -36.4 4.856 5191 no
## 4293 1.1 93.994 -36.4 4.856 5191 no
## 4294 1.1 93.994 -36.4 4.856 5191 no
## 4295 1.1 93.994 -36.4 4.856 5191 yes
## 4296 1.1 93.994 -36.4 4.856 5191 no
## 4297 1.1 93.994 -36.4 4.856 5191 no
## 4298 1.1 93.994 -36.4 4.856 5191 no
## 4299 1.1 93.994 -36.4 4.856 5191 no
## 4300 1.1 93.994 -36.4 4.856 5191 no
## 4301 1.1 93.994 -36.4 4.856 5191 no
## 4302 1.1 93.994 -36.4 4.856 5191 no
## 4303 1.1 93.994 -36.4 4.856 5191 no
## 4304 1.1 93.994 -36.4 4.856 5191 no
## 4305 1.1 93.994 -36.4 4.856 5191 no
## 4306 1.1 93.994 -36.4 4.856 5191 no
## 4307 1.1 93.994 -36.4 4.856 5191 no
## 4308 1.1 93.994 -36.4 4.856 5191 no
## 4309 1.1 93.994 -36.4 4.856 5191 no
## 4310 1.1 93.994 -36.4 4.856 5191 no
## 4311 1.1 93.994 -36.4 4.856 5191 no
## 4312 1.1 93.994 -36.4 4.856 5191 no
## 4313 1.1 93.994 -36.4 4.856 5191 no
## 4314 1.1 93.994 -36.4 4.856 5191 no
## 4315 1.1 93.994 -36.4 4.856 5191 no
## 4316 1.1 93.994 -36.4 4.856 5191 no
## 4317 1.1 93.994 -36.4 4.856 5191 no
## 4318 1.1 93.994 -36.4 4.856 5191 no
## 4319 1.1 93.994 -36.4 4.856 5191 no
## 4320 1.1 93.994 -36.4 4.856 5191 no
## 4321 1.1 93.994 -36.4 4.856 5191 no
## 4322 1.1 93.994 -36.4 4.856 5191 no
## 4323 1.1 93.994 -36.4 4.856 5191 no
## 4324 1.1 93.994 -36.4 4.856 5191 no
## 4325 1.1 93.994 -36.4 4.856 5191 no
## 4326 1.1 93.994 -36.4 4.856 5191 no
## 4327 1.1 93.994 -36.4 4.856 5191 no
## 4328 1.1 93.994 -36.4 4.856 5191 no
## 4329 1.1 93.994 -36.4 4.856 5191 no
## 4330 1.1 93.994 -36.4 4.856 5191 no
## 4331 1.1 93.994 -36.4 4.856 5191 no
## 4332 1.1 93.994 -36.4 4.856 5191 no
## 4333 1.1 93.994 -36.4 4.856 5191 no
## 4334 1.1 93.994 -36.4 4.856 5191 no
## 4335 1.1 93.994 -36.4 4.856 5191 no
## 4336 1.1 93.994 -36.4 4.856 5191 no
## 4337 1.1 93.994 -36.4 4.856 5191 no
## 4338 1.1 93.994 -36.4 4.856 5191 no
## 4339 1.1 93.994 -36.4 4.856 5191 no
## 4340 1.1 93.994 -36.4 4.856 5191 no
## 4341 1.1 93.994 -36.4 4.856 5191 no
## 4342 1.1 93.994 -36.4 4.856 5191 no
## 4343 1.1 93.994 -36.4 4.856 5191 no
## 4344 1.1 93.994 -36.4 4.856 5191 no
## 4345 1.1 93.994 -36.4 4.856 5191 no
## 4346 1.1 93.994 -36.4 4.856 5191 no
## 4347 1.1 93.994 -36.4 4.856 5191 no
## 4348 1.1 93.994 -36.4 4.856 5191 no
## 4349 1.1 93.994 -36.4 4.856 5191 no
## 4350 1.1 93.994 -36.4 4.856 5191 no
## 4351 1.1 93.994 -36.4 4.856 5191 no
## 4352 1.1 93.994 -36.4 4.856 5191 no
## 4353 1.1 93.994 -36.4 4.856 5191 no
## 4354 1.1 93.994 -36.4 4.856 5191 yes
## 4355 1.1 93.994 -36.4 4.856 5191 no
## 4356 1.1 93.994 -36.4 4.856 5191 no
## 4357 1.1 93.994 -36.4 4.856 5191 no
## 4358 1.1 93.994 -36.4 4.856 5191 no
## 4359 1.1 93.994 -36.4 4.856 5191 no
## 4360 1.1 93.994 -36.4 4.856 5191 no
## 4361 1.1 93.994 -36.4 4.856 5191 no
## 4362 1.1 93.994 -36.4 4.856 5191 no
## 4363 1.1 93.994 -36.4 4.856 5191 no
## 4364 1.1 93.994 -36.4 4.856 5191 no
## 4365 1.1 93.994 -36.4 4.856 5191 no
## 4366 1.1 93.994 -36.4 4.856 5191 no
## 4367 1.1 93.994 -36.4 4.856 5191 no
## 4368 1.1 93.994 -36.4 4.856 5191 no
## 4369 1.1 93.994 -36.4 4.856 5191 no
## 4370 1.1 93.994 -36.4 4.856 5191 no
## 4371 1.1 93.994 -36.4 4.856 5191 no
## 4372 1.1 93.994 -36.4 4.856 5191 no
## 4373 1.1 93.994 -36.4 4.856 5191 no
## 4374 1.1 93.994 -36.4 4.856 5191 no
## 4375 1.1 93.994 -36.4 4.856 5191 no
## 4376 1.1 93.994 -36.4 4.856 5191 no
## 4377 1.1 93.994 -36.4 4.856 5191 no
## 4378 1.1 93.994 -36.4 4.856 5191 no
## 4379 1.1 93.994 -36.4 4.856 5191 no
## 4380 1.1 93.994 -36.4 4.856 5191 no
## 4381 1.1 93.994 -36.4 4.856 5191 no
## 4382 1.1 93.994 -36.4 4.856 5191 no
## 4383 1.1 93.994 -36.4 4.856 5191 no
## 4384 1.1 93.994 -36.4 4.856 5191 no
## 4385 1.1 93.994 -36.4 4.856 5191 no
## 4386 1.1 93.994 -36.4 4.856 5191 no
## 4387 1.1 93.994 -36.4 4.856 5191 no
## 4388 1.1 93.994 -36.4 4.856 5191 no
## 4389 1.1 93.994 -36.4 4.856 5191 no
## 4390 1.1 93.994 -36.4 4.856 5191 no
## 4391 1.1 93.994 -36.4 4.856 5191 no
## 4392 1.1 93.994 -36.4 4.856 5191 no
## 4393 1.1 93.994 -36.4 4.856 5191 no
## 4394 1.1 93.994 -36.4 4.856 5191 no
## 4395 1.1 93.994 -36.4 4.856 5191 no
## 4396 1.1 93.994 -36.4 4.856 5191 no
## 4397 1.1 93.994 -36.4 4.856 5191 no
## 4398 1.1 93.994 -36.4 4.856 5191 no
## 4399 1.1 93.994 -36.4 4.856 5191 no
## 4400 1.1 93.994 -36.4 4.856 5191 no
## 4401 1.1 93.994 -36.4 4.856 5191 no
## 4402 1.1 93.994 -36.4 4.856 5191 no
## 4403 1.1 93.994 -36.4 4.856 5191 no
## 4404 1.1 93.994 -36.4 4.856 5191 no
## 4405 1.1 93.994 -36.4 4.856 5191 no
## 4406 1.1 93.994 -36.4 4.856 5191 no
## 4407 1.1 93.994 -36.4 4.856 5191 no
## 4408 1.1 93.994 -36.4 4.856 5191 no
## 4409 1.1 93.994 -36.4 4.856 5191 no
## 4410 1.1 93.994 -36.4 4.856 5191 no
## 4411 1.1 93.994 -36.4 4.856 5191 no
## 4412 1.1 93.994 -36.4 4.856 5191 no
## 4413 1.1 93.994 -36.4 4.856 5191 no
## 4414 1.1 93.994 -36.4 4.856 5191 no
## 4415 1.1 93.994 -36.4 4.856 5191 no
## 4416 1.1 93.994 -36.4 4.856 5191 no
## 4417 1.1 93.994 -36.4 4.856 5191 no
## 4418 1.1 93.994 -36.4 4.856 5191 no
## 4419 1.1 93.994 -36.4 4.856 5191 no
## 4420 1.1 93.994 -36.4 4.856 5191 no
## 4421 1.1 93.994 -36.4 4.856 5191 no
## 4422 1.1 93.994 -36.4 4.856 5191 no
## 4423 1.1 93.994 -36.4 4.856 5191 no
## 4424 1.1 93.994 -36.4 4.856 5191 no
## 4425 1.1 93.994 -36.4 4.856 5191 no
## 4426 1.1 93.994 -36.4 4.856 5191 no
## 4427 1.1 93.994 -36.4 4.856 5191 no
## 4428 1.1 93.994 -36.4 4.856 5191 no
## 4429 1.1 93.994 -36.4 4.856 5191 no
## 4430 1.1 93.994 -36.4 4.856 5191 no
## 4431 1.1 93.994 -36.4 4.856 5191 no
## 4432 1.1 93.994 -36.4 4.856 5191 no
## 4433 1.1 93.994 -36.4 4.856 5191 no
## 4434 1.1 93.994 -36.4 4.856 5191 no
## 4435 1.1 93.994 -36.4 4.856 5191 no
## 4436 1.1 93.994 -36.4 4.856 5191 no
## 4437 1.1 93.994 -36.4 4.856 5191 no
## 4438 1.1 93.994 -36.4 4.856 5191 no
## 4439 1.1 93.994 -36.4 4.856 5191 no
## 4440 1.1 93.994 -36.4 4.856 5191 no
## 4441 1.1 93.994 -36.4 4.856 5191 no
## 4442 1.1 93.994 -36.4 4.856 5191 no
## 4443 1.1 93.994 -36.4 4.856 5191 no
## 4444 1.1 93.994 -36.4 4.856 5191 no
## 4445 1.1 93.994 -36.4 4.856 5191 no
## 4446 1.1 93.994 -36.4 4.856 5191 no
## 4447 1.1 93.994 -36.4 4.856 5191 no
## 4448 1.1 93.994 -36.4 4.856 5191 no
## 4449 1.1 93.994 -36.4 4.856 5191 no
## 4450 1.1 93.994 -36.4 4.856 5191 no
## 4451 1.1 93.994 -36.4 4.856 5191 no
## 4452 1.1 93.994 -36.4 4.856 5191 no
## 4453 1.1 93.994 -36.4 4.856 5191 no
## 4454 1.1 93.994 -36.4 4.856 5191 no
## 4455 1.1 93.994 -36.4 4.856 5191 no
## 4456 1.1 93.994 -36.4 4.856 5191 no
## 4457 1.1 93.994 -36.4 4.856 5191 no
## 4458 1.1 93.994 -36.4 4.856 5191 no
## 4459 1.1 93.994 -36.4 4.856 5191 no
## 4460 1.1 93.994 -36.4 4.856 5191 no
## 4461 1.1 93.994 -36.4 4.856 5191 no
## 4462 1.1 93.994 -36.4 4.856 5191 no
## 4463 1.1 93.994 -36.4 4.856 5191 no
## 4464 1.1 93.994 -36.4 4.856 5191 no
## 4465 1.1 93.994 -36.4 4.856 5191 no
## 4466 1.1 93.994 -36.4 4.856 5191 no
## 4467 1.1 93.994 -36.4 4.856 5191 no
## 4468 1.1 93.994 -36.4 4.856 5191 no
## 4469 1.1 93.994 -36.4 4.856 5191 no
## 4470 1.1 93.994 -36.4 4.856 5191 no
## 4471 1.1 93.994 -36.4 4.856 5191 no
## 4472 1.1 93.994 -36.4 4.856 5191 no
## 4473 1.1 93.994 -36.4 4.856 5191 no
## 4474 1.1 93.994 -36.4 4.856 5191 no
## 4475 1.1 93.994 -36.4 4.856 5191 no
## 4476 1.1 93.994 -36.4 4.856 5191 no
## 4477 1.1 93.994 -36.4 4.856 5191 no
## 4478 1.1 93.994 -36.4 4.856 5191 no
## 4479 1.1 93.994 -36.4 4.856 5191 no
## 4480 1.1 93.994 -36.4 4.856 5191 yes
## 4481 1.1 93.994 -36.4 4.856 5191 no
## 4482 1.1 93.994 -36.4 4.856 5191 no
## 4483 1.1 93.994 -36.4 4.856 5191 no
## 4484 1.1 93.994 -36.4 4.856 5191 no
## 4485 1.1 93.994 -36.4 4.856 5191 no
## 4486 1.1 93.994 -36.4 4.856 5191 yes
## 4487 1.1 93.994 -36.4 4.856 5191 no
## 4488 1.1 93.994 -36.4 4.856 5191 no
## 4489 1.1 93.994 -36.4 4.856 5191 no
## 4490 1.1 93.994 -36.4 4.856 5191 no
## 4491 1.1 93.994 -36.4 4.856 5191 no
## 4492 1.1 93.994 -36.4 4.856 5191 no
## 4493 1.1 93.994 -36.4 4.856 5191 no
## 4494 1.1 93.994 -36.4 4.856 5191 no
## 4495 1.1 93.994 -36.4 4.856 5191 no
## 4496 1.1 93.994 -36.4 4.856 5191 no
## 4497 1.1 93.994 -36.4 4.856 5191 no
## 4498 1.1 93.994 -36.4 4.856 5191 no
## 4499 1.1 93.994 -36.4 4.856 5191 no
## 4500 1.1 93.994 -36.4 4.856 5191 no
## 4501 1.1 93.994 -36.4 4.856 5191 no
## 4502 1.1 93.994 -36.4 4.856 5191 no
## 4503 1.1 93.994 -36.4 4.856 5191 no
## 4504 1.1 93.994 -36.4 4.856 5191 no
## 4505 1.1 93.994 -36.4 4.856 5191 no
## 4506 1.1 93.994 -36.4 4.856 5191 no
## 4507 1.1 93.994 -36.4 4.856 5191 no
## 4508 1.1 93.994 -36.4 4.856 5191 no
## 4509 1.1 93.994 -36.4 4.856 5191 no
## 4510 1.1 93.994 -36.4 4.856 5191 no
## 4511 1.1 93.994 -36.4 4.856 5191 no
## 4512 1.1 93.994 -36.4 4.856 5191 no
## 4513 1.1 93.994 -36.4 4.856 5191 no
## 4514 1.1 93.994 -36.4 4.856 5191 no
## 4515 1.1 93.994 -36.4 4.856 5191 no
## 4516 1.1 93.994 -36.4 4.856 5191 no
## 4517 1.1 93.994 -36.4 4.856 5191 no
## 4518 1.1 93.994 -36.4 4.856 5191 no
## 4519 1.1 93.994 -36.4 4.856 5191 no
## 4520 1.1 93.994 -36.4 4.856 5191 no
## 4521 1.1 93.994 -36.4 4.856 5191 no
## 4522 1.1 93.994 -36.4 4.856 5191 no
## 4523 1.1 93.994 -36.4 4.856 5191 yes
## 4524 1.1 93.994 -36.4 4.856 5191 no
## 4525 1.1 93.994 -36.4 4.856 5191 no
## 4526 1.1 93.994 -36.4 4.856 5191 no
## 4527 1.1 93.994 -36.4 4.856 5191 no
## 4528 1.1 93.994 -36.4 4.856 5191 no
## 4529 1.1 93.994 -36.4 4.856 5191 no
## 4530 1.1 93.994 -36.4 4.856 5191 no
## 4531 1.1 93.994 -36.4 4.856 5191 no
## 4532 1.1 93.994 -36.4 4.856 5191 no
## 4533 1.1 93.994 -36.4 4.856 5191 no
## 4534 1.1 93.994 -36.4 4.856 5191 no
## 4535 1.1 93.994 -36.4 4.856 5191 no
## 4536 1.1 93.994 -36.4 4.856 5191 no
## 4537 1.1 93.994 -36.4 4.856 5191 no
## 4538 1.1 93.994 -36.4 4.856 5191 no
## 4539 1.1 93.994 -36.4 4.856 5191 no
## 4540 1.1 93.994 -36.4 4.856 5191 no
## 4541 1.1 93.994 -36.4 4.856 5191 no
## 4542 1.1 93.994 -36.4 4.856 5191 no
## 4543 1.1 93.994 -36.4 4.856 5191 no
## 4544 1.1 93.994 -36.4 4.856 5191 no
## 4545 1.1 93.994 -36.4 4.856 5191 no
## 4546 1.1 93.994 -36.4 4.856 5191 no
## 4547 1.1 93.994 -36.4 4.856 5191 no
## 4548 1.1 93.994 -36.4 4.856 5191 no
## 4549 1.1 93.994 -36.4 4.856 5191 no
## 4550 1.1 93.994 -36.4 4.856 5191 no
## 4551 1.1 93.994 -36.4 4.856 5191 no
## 4552 1.1 93.994 -36.4 4.856 5191 no
## 4553 1.1 93.994 -36.4 4.856 5191 no
## 4554 1.1 93.994 -36.4 4.856 5191 no
## 4555 1.1 93.994 -36.4 4.856 5191 no
## 4556 1.1 93.994 -36.4 4.856 5191 no
## 4557 1.1 93.994 -36.4 4.856 5191 no
## 4558 1.1 93.994 -36.4 4.856 5191 no
## 4559 1.1 93.994 -36.4 4.856 5191 no
## 4560 1.1 93.994 -36.4 4.856 5191 no
## 4561 1.1 93.994 -36.4 4.856 5191 no
## 4562 1.1 93.994 -36.4 4.856 5191 no
## 4563 1.1 93.994 -36.4 4.856 5191 no
## 4564 1.1 93.994 -36.4 4.856 5191 no
## 4565 1.1 93.994 -36.4 4.856 5191 no
## 4566 1.1 93.994 -36.4 4.856 5191 no
## 4567 1.1 93.994 -36.4 4.856 5191 no
## 4568 1.1 93.994 -36.4 4.856 5191 no
## 4569 1.1 93.994 -36.4 4.856 5191 no
## 4570 1.1 93.994 -36.4 4.856 5191 no
## 4571 1.1 93.994 -36.4 4.856 5191 no
## 4572 1.1 93.994 -36.4 4.856 5191 no
## 4573 1.1 93.994 -36.4 4.856 5191 no
## 4574 1.1 93.994 -36.4 4.856 5191 no
## 4575 1.1 93.994 -36.4 4.856 5191 no
## 4576 1.1 93.994 -36.4 4.856 5191 no
## 4577 1.1 93.994 -36.4 4.856 5191 no
## 4578 1.1 93.994 -36.4 4.856 5191 no
## 4579 1.1 93.994 -36.4 4.856 5191 no
## 4580 1.1 93.994 -36.4 4.856 5191 no
## 4581 1.1 93.994 -36.4 4.856 5191 no
## 4582 1.1 93.994 -36.4 4.856 5191 no
## 4583 1.1 93.994 -36.4 4.856 5191 no
## 4584 1.1 93.994 -36.4 4.856 5191 no
## 4585 1.1 93.994 -36.4 4.856 5191 no
## 4586 1.1 93.994 -36.4 4.856 5191 no
## 4587 1.1 93.994 -36.4 4.856 5191 no
## 4588 1.1 93.994 -36.4 4.856 5191 no
## 4589 1.1 93.994 -36.4 4.856 5191 no
## 4590 1.1 93.994 -36.4 4.856 5191 no
## 4591 1.1 93.994 -36.4 4.856 5191 no
## 4592 1.1 93.994 -36.4 4.856 5191 no
## 4593 1.1 93.994 -36.4 4.856 5191 no
## 4594 1.1 93.994 -36.4 4.856 5191 no
## 4595 1.1 93.994 -36.4 4.856 5191 no
## 4596 1.1 93.994 -36.4 4.856 5191 no
## 4597 1.1 93.994 -36.4 4.856 5191 no
## 4598 1.1 93.994 -36.4 4.856 5191 no
## 4599 1.1 93.994 -36.4 4.856 5191 no
## 4600 1.1 93.994 -36.4 4.856 5191 no
## 4601 1.1 93.994 -36.4 4.856 5191 no
## 4602 1.1 93.994 -36.4 4.856 5191 no
## 4603 1.1 93.994 -36.4 4.856 5191 no
## 4604 1.1 93.994 -36.4 4.856 5191 no
## 4605 1.1 93.994 -36.4 4.856 5191 no
## 4606 1.1 93.994 -36.4 4.856 5191 no
## 4607 1.1 93.994 -36.4 4.856 5191 no
## 4608 1.1 93.994 -36.4 4.856 5191 no
## 4609 1.1 93.994 -36.4 4.856 5191 no
## 4610 1.1 93.994 -36.4 4.856 5191 yes
## 4611 1.1 93.994 -36.4 4.856 5191 no
## 4612 1.1 93.994 -36.4 4.856 5191 no
## 4613 1.1 93.994 -36.4 4.856 5191 no
## 4614 1.1 93.994 -36.4 4.856 5191 no
## 4615 1.1 93.994 -36.4 4.856 5191 no
## 4616 1.1 93.994 -36.4 4.856 5191 no
## 4617 1.1 93.994 -36.4 4.856 5191 no
## 4618 1.1 93.994 -36.4 4.856 5191 no
## 4619 1.1 93.994 -36.4 4.856 5191 no
## 4620 1.1 93.994 -36.4 4.856 5191 no
## 4621 1.1 93.994 -36.4 4.856 5191 no
## 4622 1.1 93.994 -36.4 4.856 5191 no
## 4623 1.1 93.994 -36.4 4.856 5191 no
## 4624 1.1 93.994 -36.4 4.856 5191 yes
## 4625 1.1 93.994 -36.4 4.856 5191 no
## 4626 1.1 93.994 -36.4 4.856 5191 no
## 4627 1.1 93.994 -36.4 4.858 5191 no
## 4628 1.1 93.994 -36.4 4.858 5191 no
## 4629 1.1 93.994 -36.4 4.858 5191 no
## 4630 1.1 93.994 -36.4 4.858 5191 no
## 4631 1.1 93.994 -36.4 4.858 5191 no
## 4632 1.1 93.994 -36.4 4.858 5191 no
## 4633 1.1 93.994 -36.4 4.858 5191 no
## 4634 1.1 93.994 -36.4 4.858 5191 no
## 4635 1.1 93.994 -36.4 4.858 5191 no
## 4636 1.1 93.994 -36.4 4.858 5191 yes
## 4637 1.1 93.994 -36.4 4.858 5191 no
## 4638 1.1 93.994 -36.4 4.858 5191 no
## 4639 1.1 93.994 -36.4 4.858 5191 no
## 4640 1.1 93.994 -36.4 4.858 5191 no
## 4641 1.1 93.994 -36.4 4.858 5191 no
## 4642 1.1 93.994 -36.4 4.858 5191 no
## 4643 1.1 93.994 -36.4 4.858 5191 no
## 4644 1.1 93.994 -36.4 4.858 5191 no
## 4645 1.1 93.994 -36.4 4.858 5191 no
## 4646 1.1 93.994 -36.4 4.858 5191 no
## 4647 1.1 93.994 -36.4 4.858 5191 no
## 4648 1.1 93.994 -36.4 4.858 5191 no
## 4649 1.1 93.994 -36.4 4.858 5191 no
## 4650 1.1 93.994 -36.4 4.858 5191 no
## 4651 1.1 93.994 -36.4 4.858 5191 no
## 4652 1.1 93.994 -36.4 4.858 5191 no
## 4653 1.1 93.994 -36.4 4.858 5191 yes
## 4654 1.1 93.994 -36.4 4.858 5191 no
## 4655 1.1 93.994 -36.4 4.858 5191 no
## 4656 1.1 93.994 -36.4 4.858 5191 no
## 4657 1.1 93.994 -36.4 4.858 5191 no
## 4658 1.1 93.994 -36.4 4.858 5191 no
## 4659 1.1 93.994 -36.4 4.858 5191 no
## 4660 1.1 93.994 -36.4 4.858 5191 no
## 4661 1.1 93.994 -36.4 4.858 5191 no
## 4662 1.1 93.994 -36.4 4.858 5191 no
## 4663 1.1 93.994 -36.4 4.858 5191 no
## 4664 1.1 93.994 -36.4 4.858 5191 no
## 4665 1.1 93.994 -36.4 4.858 5191 no
## 4666 1.1 93.994 -36.4 4.858 5191 no
## 4667 1.1 93.994 -36.4 4.858 5191 no
## 4668 1.1 93.994 -36.4 4.858 5191 no
## 4669 1.1 93.994 -36.4 4.858 5191 no
## 4670 1.1 93.994 -36.4 4.858 5191 no
## 4671 1.1 93.994 -36.4 4.858 5191 no
## 4672 1.1 93.994 -36.4 4.858 5191 no
## 4673 1.1 93.994 -36.4 4.858 5191 yes
## 4674 1.1 93.994 -36.4 4.858 5191 no
## 4675 1.1 93.994 -36.4 4.858 5191 no
## 4676 1.1 93.994 -36.4 4.858 5191 no
## 4677 1.1 93.994 -36.4 4.858 5191 no
## 4678 1.1 93.994 -36.4 4.858 5191 yes
## 4679 1.1 93.994 -36.4 4.858 5191 no
## 4680 1.1 93.994 -36.4 4.858 5191 no
## 4681 1.1 93.994 -36.4 4.858 5191 no
## 4682 1.1 93.994 -36.4 4.858 5191 no
## 4683 1.1 93.994 -36.4 4.858 5191 no
## 4684 1.1 93.994 -36.4 4.858 5191 no
## 4685 1.1 93.994 -36.4 4.858 5191 no
## 4686 1.1 93.994 -36.4 4.858 5191 no
## 4687 1.1 93.994 -36.4 4.858 5191 no
## 4688 1.1 93.994 -36.4 4.858 5191 no
## 4689 1.1 93.994 -36.4 4.858 5191 no
## 4690 1.1 93.994 -36.4 4.858 5191 no
## 4691 1.1 93.994 -36.4 4.858 5191 no
## 4692 1.1 93.994 -36.4 4.858 5191 no
## 4693 1.1 93.994 -36.4 4.858 5191 no
## 4694 1.1 93.994 -36.4 4.858 5191 no
## 4695 1.1 93.994 -36.4 4.858 5191 yes
## 4696 1.1 93.994 -36.4 4.858 5191 no
## 4697 1.1 93.994 -36.4 4.858 5191 no
## 4698 1.1 93.994 -36.4 4.858 5191 no
## 4699 1.1 93.994 -36.4 4.858 5191 no
## 4700 1.1 93.994 -36.4 4.858 5191 no
## 4701 1.1 93.994 -36.4 4.858 5191 no
## 4702 1.1 93.994 -36.4 4.858 5191 no
## 4703 1.1 93.994 -36.4 4.858 5191 no
## 4704 1.1 93.994 -36.4 4.858 5191 no
## 4705 1.1 93.994 -36.4 4.858 5191 no
## 4706 1.1 93.994 -36.4 4.858 5191 no
## 4707 1.1 93.994 -36.4 4.858 5191 no
## 4708 1.1 93.994 -36.4 4.858 5191 no
## 4709 1.1 93.994 -36.4 4.858 5191 no
## 4710 1.1 93.994 -36.4 4.858 5191 no
## 4711 1.1 93.994 -36.4 4.858 5191 no
## 4712 1.1 93.994 -36.4 4.858 5191 no
## 4713 1.1 93.994 -36.4 4.858 5191 no
## 4714 1.1 93.994 -36.4 4.858 5191 no
## 4715 1.1 93.994 -36.4 4.858 5191 no
## 4716 1.1 93.994 -36.4 4.858 5191 no
## 4717 1.1 93.994 -36.4 4.858 5191 no
## 4718 1.1 93.994 -36.4 4.858 5191 no
## 4719 1.1 93.994 -36.4 4.858 5191 no
## 4720 1.1 93.994 -36.4 4.858 5191 no
## 4721 1.1 93.994 -36.4 4.858 5191 yes
## 4722 1.1 93.994 -36.4 4.858 5191 no
## 4723 1.1 93.994 -36.4 4.858 5191 no
## 4724 1.1 93.994 -36.4 4.858 5191 no
## 4725 1.1 93.994 -36.4 4.858 5191 no
## 4726 1.1 93.994 -36.4 4.858 5191 no
## 4727 1.1 93.994 -36.4 4.858 5191 no
## 4728 1.1 93.994 -36.4 4.858 5191 no
## 4729 1.1 93.994 -36.4 4.858 5191 no
## 4730 1.1 93.994 -36.4 4.858 5191 no
## 4731 1.1 93.994 -36.4 4.858 5191 no
## 4732 1.1 93.994 -36.4 4.858 5191 no
## 4733 1.1 93.994 -36.4 4.858 5191 no
## 4734 1.1 93.994 -36.4 4.858 5191 no
## 4735 1.1 93.994 -36.4 4.858 5191 no
## 4736 1.1 93.994 -36.4 4.858 5191 no
## 4737 1.1 93.994 -36.4 4.858 5191 no
## 4738 1.1 93.994 -36.4 4.858 5191 yes
## 4739 1.1 93.994 -36.4 4.858 5191 no
## 4740 1.1 93.994 -36.4 4.858 5191 no
## 4741 1.1 93.994 -36.4 4.858 5191 no
## 4742 1.1 93.994 -36.4 4.858 5191 no
## 4743 1.1 93.994 -36.4 4.858 5191 no
## 4744 1.1 93.994 -36.4 4.858 5191 no
## 4745 1.1 93.994 -36.4 4.858 5191 no
## 4746 1.1 93.994 -36.4 4.858 5191 no
## 4747 1.1 93.994 -36.4 4.858 5191 no
## 4748 1.1 93.994 -36.4 4.858 5191 no
## 4749 1.1 93.994 -36.4 4.858 5191 no
## 4750 1.1 93.994 -36.4 4.858 5191 no
## 4751 1.1 93.994 -36.4 4.858 5191 no
## 4752 1.1 93.994 -36.4 4.858 5191 no
## 4753 1.1 93.994 -36.4 4.858 5191 yes
## 4754 1.1 93.994 -36.4 4.858 5191 no
## 4755 1.1 93.994 -36.4 4.858 5191 no
## 4756 1.1 93.994 -36.4 4.858 5191 no
## 4757 1.1 93.994 -36.4 4.858 5191 no
## 4758 1.1 93.994 -36.4 4.858 5191 no
## 4759 1.1 93.994 -36.4 4.858 5191 no
## 4760 1.1 93.994 -36.4 4.858 5191 no
## 4761 1.1 93.994 -36.4 4.858 5191 no
## [ reached 'max' / getOption("max.print") -- omitted 36427 rows ]
print(table(data$y))
##
## no yes
## 36548 4640
data <- data %>%
mutate_if(is.character, as.factor)
data
## age job marital education default housing loan
## 1 56 housemaid married basic.4y no no no
## 2 57 services married high.school unknown no no
## 3 37 services married high.school no yes no
## 4 40 admin. married basic.6y no no no
## 5 56 services married high.school no no yes
## 6 45 services married basic.9y unknown no no
## 7 59 admin. married professional.course no no no
## 8 41 blue-collar married unknown unknown no no
## 9 24 technician single professional.course no yes no
## 10 25 services single high.school no yes no
## 11 41 blue-collar married unknown unknown no no
## 12 25 services single high.school no yes no
## 13 29 blue-collar single high.school no no yes
## 14 57 housemaid divorced basic.4y no yes no
## 15 35 blue-collar married basic.6y no yes no
## 16 54 retired married basic.9y unknown yes yes
## 17 35 blue-collar married basic.6y no yes no
## 18 46 blue-collar married basic.6y unknown yes yes
## 19 50 blue-collar married basic.9y no yes yes
## 20 39 management single basic.9y unknown no no
## 21 30 unemployed married high.school no no no
## 22 55 blue-collar married basic.4y unknown yes no
## 23 55 retired single high.school no yes no
## 24 41 technician single high.school no yes no
## 25 37 admin. married high.school no yes no
## 26 35 technician married university.degree no no yes
## 27 59 technician married unknown no yes no
## 28 39 self-employed married basic.9y unknown no no
## 29 54 technician single university.degree unknown no no
## 30 55 unknown married university.degree unknown unknown unknown
## 31 46 admin. married unknown no no no
## 32 59 technician married unknown no yes no
## 33 49 blue-collar married unknown no no no
## 34 54 management married basic.4y unknown yes no
## 35 54 blue-collar divorced basic.4y no no no
## 36 55 unknown married basic.4y unknown yes no
## 37 34 services married high.school no no no
## 38 52 technician married basic.9y no yes no
## 39 41 admin. married university.degree no yes no
## 40 56 technician married basic.4y no yes no
## 41 58 management unknown university.degree no yes no
## 42 32 entrepreneur married high.school no yes no
## 43 38 admin. single professional.course no no no
## 44 57 admin. married university.degree no no yes
## 45 44 admin. married university.degree unknown yes no
## 46 42 technician single professional.course unknown no no
## 47 57 admin. married university.degree no yes yes
## 48 40 blue-collar married basic.9y no no yes
## 49 35 admin. married university.degree no yes no
## 50 45 blue-collar married basic.9y no yes no
## 51 54 admin. married high.school no no no
## 52 39 housemaid married basic.4y no no yes
## 53 60 admin. married high.school no no no
## 54 53 admin. single professional.course no no no
## 55 55 blue-collar married basic.4y unknown no no
## 56 55 technician married professional.course unknown yes no
## 57 50 management married university.degree unknown no yes
## 58 45 services married high.school unknown yes no
## 59 55 unemployed married professional.course unknown yes yes
## 60 25 technician single university.degree no yes no
## 61 47 entrepreneur married university.degree unknown no no
## 62 51 blue-collar married basic.9y no yes no
## 63 42 blue-collar married basic.6y unknown yes no
## 64 42 blue-collar married basic.6y unknown no no
## 65 48 admin. married high.school no no no
## 66 37 admin. married university.degree no no no
## 67 44 blue-collar single basic.9y no yes no
## 68 33 admin. married unknown no yes no
## 69 56 admin. married basic.9y no yes no
## 70 44 blue-collar single basic.4y unknown yes yes
## 71 41 management married basic.6y no no no
## 72 44 management divorced university.degree no yes no
## 73 47 admin. married university.degree unknown yes no
## 74 57 unknown married unknown unknown no no
## 75 37 admin. married university.degree unknown yes no
## 76 41 blue-collar divorced basic.4y unknown yes no
## 77 55 technician married university.degree no no no
## 78 33 services married high.school unknown yes no
## 79 55 management married unknown unknown yes no
## 80 42 blue-collar married basic.9y unknown no no
## 81 50 blue-collar married basic.4y unknown yes no
## 82 51 blue-collar married basic.4y unknown unknown unknown
## 83 38 admin. married high.school unknown no no
## 84 49 entrepreneur married university.degree unknown yes no
## 85 38 technician single university.degree no no yes
## 86 31 admin. divorced high.school no no no
## 87 41 management married basic.6y no no no
## 88 39 admin. married university.degree no yes yes
## 89 49 technician married basic.9y no no no
## 90 34 admin. married high.school no yes no
## 91 35 admin. married university.degree no yes no
## 92 57 unknown married unknown unknown yes no
## 93 60 admin. married unknown unknown no yes
## 94 33 unemployed married basic.9y no no no
## 95 42 blue-collar married basic.6y no no yes
## 96 45 services married professional.course no yes no
## 97 42 management married university.degree no no no
## 98 53 admin. divorced university.degree unknown no no
## 99 37 technician single professional.course no no no
## 100 44 blue-collar married basic.6y no no no
## 101 54 services married unknown no yes no
## 102 49 blue-collar married basic.4y no no no
## 103 54 services married unknown no no no
## 104 52 admin. divorced university.degree no no no
## 105 52 admin. divorced university.degree no no no
## 106 43 services single high.school unknown no no
## 107 34 housemaid married basic.6y no yes no
## 108 35 admin. married high.school no yes no
## 109 42 entrepreneur married unknown unknown yes no
## 110 43 technician married unknown unknown yes yes
## 111 60 retired divorced university.degree unknown no no
## 112 58 unemployed married basic.4y unknown no no
## 113 35 services divorced high.school no yes no
## 114 55 blue-collar married basic.9y unknown yes no
## 115 37 management married university.degree no no no
## 116 36 blue-collar married high.school no no no
## 117 52 admin. divorced university.degree no no no
## 118 57 blue-collar divorced unknown unknown yes no
## 119 56 admin. married unknown no yes no
## 120 48 blue-collar divorced basic.4y unknown yes no
## 121 40 blue-collar married high.school unknown yes no
## 122 49 blue-collar divorced high.school no no no
## 123 41 services married high.school no no no
## 124 45 technician married high.school no yes no
## 125 32 admin. married university.degree no yes yes
## 126 42 admin. married university.degree no no yes
## 127 50 admin. married basic.6y no no no
## 128 31 technician divorced professional.course no yes yes
## 129 56 retired married basic.4y no yes no
## 130 41 technician married professional.course unknown yes no
## 131 37 blue-collar married basic.6y no yes yes
## 132 41 technician married professional.course unknown no no
## 133 35 blue-collar married unknown no yes no
## 134 37 blue-collar married basic.6y no yes no
## 135 52 management married university.degree no no no
## 136 39 management divorced university.degree no no no
## 137 39 housemaid married basic.4y unknown no no
## 138 56 blue-collar married basic.4y unknown no no
## 139 34 services married high.school no yes no
## 140 45 blue-collar married basic.9y unknown yes no
## 141 43 unemployed single university.degree no yes no
## 142 56 management married unknown no yes no
## 143 39 management married university.degree no yes no
## 144 53 blue-collar married basic.4y no yes no
## 145 38 unknown divorced high.school unknown yes no
## 146 42 blue-collar married basic.4y unknown yes no
## 147 42 blue-collar married basic.4y unknown no no
## 148 35 admin. single high.school no yes no
## 149 40 admin. married university.degree unknown yes no
## 150 51 blue-collar married basic.4y no yes no
## 151 60 blue-collar married basic.9y unknown no no
## 152 56 entrepreneur married unknown unknown yes no
## 153 39 services divorced high.school unknown yes no
## 154 56 entrepreneur married unknown unknown no no
## 155 40 blue-collar married unknown no yes yes
## 156 36 blue-collar married basic.9y no yes yes
## 157 51 blue-collar married unknown unknown yes no
## 158 51 blue-collar married unknown unknown no no
## 159 43 technician single professional.course no yes no
## 160 59 services married high.school no no no
## 161 24 management single university.degree no yes no
## 162 37 blue-collar single basic.9y unknown yes yes
## 163 40 blue-collar married basic.9y unknown no no
## 164 42 blue-collar married basic.9y unknown no no
## 165 39 services divorced high.school unknown no no
## 166 37 entrepreneur married basic.6y no no no
## 167 38 services married high.school no yes yes
## 168 56 admin. divorced unknown unknown no no
## 169 40 blue-collar married unknown no no no
## 170 54 management divorced university.degree no yes no
## 171 43 blue-collar married high.school unknown no yes
## 172 36 services married high.school unknown no no
## 173 45 technician married university.degree no yes yes
## 174 42 admin. single university.degree unknown no no
## 175 43 services married high.school no no no
## 176 46 management married basic.9y no no no
## 177 44 services married high.school no yes yes
## 178 51 admin. single basic.6y no no no
## 179 28 services married high.school no yes no
## 180 37 blue-collar married basic.9y no no no
## 181 34 technician married high.school no no no
## 182 46 blue-collar married basic.6y unknown yes no
## 183 42 blue-collar married basic.9y no yes yes
## 184 36 admin. married university.degree no yes no
## 185 54 blue-collar married basic.4y unknown no no
## 186 57 management married university.degree no no no
## 187 51 technician married basic.6y unknown no no
## 188 54 retired married high.school unknown no no
## 189 49 blue-collar married basic.4y unknown no no
## 190 34 admin. married university.degree no yes no
## 191 41 technician married professional.course no no no
## 192 38 blue-collar single basic.9y no yes no
## 193 45 management divorced university.degree no no no
## 194 42 technician married university.degree no no no
## 195 34 blue-collar single basic.9y unknown yes no
## 196 48 blue-collar married basic.4y no yes no
## 197 37 admin. married high.school unknown yes no
## 198 34 blue-collar single basic.9y unknown no no
## 199 40 admin. married basic.9y unknown yes no
## 200 43 blue-collar married basic.6y no yes no
## 201 33 services married high.school no no no
## 202 32 services single basic.6y no no no
## 203 39 blue-collar married high.school no yes no
## 204 43 admin. married unknown no no no
## 205 44 blue-collar married basic.9y no yes no
## 206 35 student single university.degree unknown no no
## 207 35 student single university.degree unknown yes yes
## 208 35 unemployed married professional.course no no no
## 209 36 services single basic.4y no no no
## 210 35 student single university.degree unknown yes no
## 211 36 student single basic.9y no yes no
## 212 55 housemaid divorced university.degree no no no
## 213 59 admin. married university.degree no no no
## 214 57 retired married unknown unknown no no
## 215 39 blue-collar married professional.course unknown yes no
## 216 39 housemaid married basic.4y unknown yes no
## 217 30 blue-collar single unknown no yes no
## 218 30 blue-collar single unknown no yes yes
## 219 50 housemaid married basic.4y unknown no no
## 220 40 services married high.school no no no
## 221 35 admin. married high.school no yes no
## 222 43 technician married unknown unknown no no
## 223 36 services single basic.6y unknown yes no
## 224 46 technician married basic.4y unknown yes no
## 225 40 technician married basic.9y no no no
## 226 58 retired married university.degree no no no
## 227 42 technician married university.degree no no no
## 228 35 admin. single university.degree no no no
## 229 43 retired married basic.4y unknown no no
## 230 45 blue-collar married basic.4y no yes yes
## 231 39 admin. married professional.course no yes no
## 232 50 services divorced professional.course no yes no
## 233 32 management divorced basic.4y unknown yes no
## 234 39 admin. married high.school unknown no no
## 235 52 self-employed married university.degree unknown no no
## 236 44 admin. married professional.course no yes no
## 237 56 blue-collar married basic.4y no no no
## 238 48 admin. married high.school no no no
## 239 33 services married high.school unknown no yes
## 240 43 management married university.degree unknown no yes
## 241 57 retired married high.school no no no
## 242 36 technician single professional.course no no no
## 243 34 management married university.degree no yes no
## 244 34 services single basic.9y no no no
## 245 30 technician married university.degree unknown no no
## 246 33 services divorced unknown no no no
## 247 32 technician single professional.course no no no
## 248 36 technician single high.school no yes no
## 249 36 blue-collar single high.school no no yes
## 250 33 services single high.school no no no
## 251 40 technician divorced professional.course no no no
## 252 41 blue-collar married basic.4y no yes no
## 253 51 services married basic.6y no yes no
## 254 36 technician married professional.course no yes no
## 255 28 services married unknown no no no
## 256 53 services married high.school no yes yes
## 257 58 blue-collar married basic.9y unknown yes no
## 258 45 management married basic.9y no no yes
## 259 43 technician married unknown no yes no
## 260 33 admin. married high.school no no yes
## 261 33 admin. married high.school no no yes
## 262 27 blue-collar single basic.6y no unknown unknown
## 263 42 technician married high.school no no no
## 264 43 admin. divorced basic.9y no no no
## 265 42 admin. married university.degree no no no
## 266 27 blue-collar single basic.6y no no no
## 267 34 self-employed single university.degree no yes no
## 268 31 student single university.degree unknown no no
## 269 54 management divorced university.degree no no no
## 270 40 self-employed married basic.4y unknown no no
## 271 52 unemployed married high.school unknown yes no
## 272 47 management divorced university.degree no no no
## 273 49 housemaid married basic.9y unknown no no
## 274 32 admin. single high.school no no no
## 275 49 housemaid single high.school unknown yes yes
## 276 50 blue-collar married basic.9y unknown no no
## 277 34 services married high.school no no no
## 278 55 blue-collar married basic.4y unknown no no
## 279 47 technician single basic.9y no no no
## 280 51 retired married professional.course no no no
## 281 47 blue-collar married basic.6y no no no
## 282 56 technician married basic.4y no yes no
## 283 53 admin. married basic.9y no no no
## 284 36 blue-collar married basic.9y no yes no
## 285 42 blue-collar divorced basic.9y no yes no
## 286 44 blue-collar divorced basic.6y no no no
## 287 39 housemaid married basic.9y no yes no
## 288 37 admin. single high.school no yes yes
## 289 60 blue-collar married unknown unknown yes no
## 290 36 services married high.school no no no
## 291 42 management divorced university.degree no yes no
## 292 31 admin. married high.school no yes yes
## 293 53 technician divorced professional.course unknown no yes
## 294 45 blue-collar married basic.4y no yes no
## 295 37 technician single professional.course no yes no
## 296 47 self-employed married professional.course no no no
## 297 49 blue-collar divorced high.school no no yes
## 298 36 admin. married university.degree no yes no
## 299 35 services divorced high.school no no no
## 300 38 unknown married unknown unknown no no
## 301 38 services single high.school unknown no no
## 302 50 blue-collar divorced high.school unknown no yes
## 303 59 retired married professional.course unknown no no
## 304 43 unknown married unknown no yes no
## 305 42 admin. married high.school no yes no
## 306 40 admin. married basic.6y unknown yes no
## 307 46 blue-collar married unknown unknown no no
## 308 57 housemaid divorced basic.4y no yes yes
## 309 42 admin. married university.degree no yes no
## 310 41 blue-collar married basic.4y no yes no
## 311 54 management divorced university.degree no yes no
## 312 27 admin. single university.degree no no no
## 313 36 admin. married high.school no no no
## 314 58 blue-collar married professional.course unknown yes no
## 315 40 management married university.degree unknown yes no
## 316 34 admin. single basic.9y unknown no no
## 317 33 admin. divorced high.school no no no
## 318 56 retired married basic.6y no no no
## 319 42 blue-collar married basic.9y no no no
## 320 43 services married high.school no yes no
## 321 54 management single basic.9y no yes no
## 322 53 admin. single basic.6y no yes yes
## 323 42 technician single unknown no no no
## 324 40 services married basic.6y unknown no no
## 325 54 technician married professional.course no yes yes
## 326 40 housemaid single professional.course no no no
## 327 26 admin. single university.degree no yes no
## 328 33 admin. married high.school no no no
## 329 35 blue-collar married basic.9y unknown no no
## 330 36 admin. married high.school no no no
## 331 29 services single high.school no yes no
## 332 36 blue-collar married basic.9y no yes no
## 333 35 management married high.school no yes no
## 334 50 self-employed single university.degree no no yes
## 335 46 services married high.school unknown yes no
## 336 49 entrepreneur married high.school no yes no
## 337 42 technician single professional.course unknown yes no
## 338 36 blue-collar single high.school no yes yes
## 339 55 blue-collar married basic.9y unknown yes no
## 340 41 management married university.degree unknown no no
## 341 57 management married professional.course unknown yes no
## 342 32 services single high.school no yes no
## 343 49 admin. married basic.9y no no no
## 344 57 unknown married unknown unknown yes no
## 345 58 blue-collar divorced basic.4y no yes no
## 346 52 technician married high.school no yes no
## 347 50 services divorced professional.course no no no
## 348 41 blue-collar single basic.9y unknown yes no
## 349 33 entrepreneur married university.degree no yes no
## 350 57 blue-collar married basic.4y no no no
## 351 48 blue-collar married basic.6y unknown no no
## 352 55 technician married professional.course no no no
## 353 38 management married university.degree no no no
## 354 38 services married high.school no yes no
## 355 53 admin. married university.degree no yes no
## 356 43 unemployed single university.degree no no no
## 357 36 blue-collar single high.school no no no
## 358 32 blue-collar married basic.9y no no no
## 359 33 services married basic.4y no no no
## 360 58 entrepreneur married basic.4y no yes no
## 361 40 unemployed divorced high.school unknown no no
## 362 57 management married university.degree no yes no
## 363 45 technician married high.school no yes no
## 364 42 blue-collar married basic.4y unknown yes no
## 365 46 admin. married university.degree no yes no
## 366 36 technician married university.degree no no no
## 367 41 self-employed married high.school no yes no
## 368 57 admin. divorced basic.9y no no no
## 369 49 blue-collar married basic.9y unknown yes no
## 370 56 management divorced high.school no no no
## 371 37 blue-collar married basic.9y no no no
## 372 37 blue-collar married basic.9y no no yes
## 373 46 admin. single high.school no yes no
## 374 22 blue-collar single basic.9y no yes no
## 375 43 services married high.school no no no
## 376 49 blue-collar married unknown no no no
## 377 41 technician married basic.6y no yes no
## 378 38 admin. single university.degree no no no
## 379 33 admin. married basic.9y no no no
## 380 49 admin. married university.degree no yes yes
## 381 30 blue-collar single unknown no no no
## 382 33 admin. married basic.9y no yes no
## 383 34 management single university.degree no no no
## 384 30 student single unknown unknown no no
## 385 59 management married basic.4y unknown yes yes
## 386 59 management married basic.4y unknown unknown unknown
## 387 41 self-employed married university.degree no no no
## 388 48 housemaid married basic.6y unknown yes yes
## 389 28 unknown single unknown unknown yes yes
## 390 44 services married high.school no yes no
## 391 59 retired unknown university.degree unknown no no
## 392 50 management married high.school unknown no no
## 393 35 admin. married university.degree no no no
## 394 42 admin. married high.school no no no
## 395 45 admin. married basic.9y no no no
## 396 36 technician married professional.course no no no
## 397 56 services married high.school unknown no no
## 398 29 blue-collar divorced basic.4y no no no
## 399 41 self-employed married university.degree no yes yes
## 400 42 blue-collar married basic.9y unknown no no
## 401 52 services single high.school no no no
## 402 48 services married high.school unknown unknown unknown
## 403 31 blue-collar married high.school unknown yes no
## 404 43 unemployed married university.degree unknown yes no
## 405 36 blue-collar married basic.4y unknown no no
## 406 42 entrepreneur married university.degree no yes no
## 407 52 services divorced basic.6y no no no
## 408 39 admin. married high.school no yes no
## 409 36 services married high.school no no yes
## 410 42 blue-collar married basic.9y unknown yes no
## 411 41 admin. married high.school no no no
## 412 55 technician married basic.4y no no yes
## 413 30 blue-collar married basic.9y no no no
## 414 57 retired unknown basic.4y no no no
## 415 45 entrepreneur married basic.4y unknown yes no
## 416 51 blue-collar married basic.4y unknown yes yes
## 417 39 self-employed single basic.9y unknown yes yes
## 418 47 admin. married high.school unknown no no
## 419 27 services married high.school no yes no
## 420 34 technician single university.degree no yes no
## 421 57 blue-collar married basic.4y unknown yes no
## 422 43 entrepreneur married basic.4y no no no
## 423 49 blue-collar married basic.4y unknown no no
## 424 39 management married university.degree unknown no no
## 425 38 blue-collar married basic.4y unknown yes no
## 426 49 blue-collar married basic.9y no no no
## 427 58 management married basic.6y no no no
## 428 43 technician married professional.course no yes no
## 429 50 unknown married unknown unknown yes no
## 430 31 services married high.school unknown no no
## 431 43 self-employed divorced university.degree no no no
## 432 43 self-employed married basic.9y unknown no no
## 433 30 self-employed single university.degree no yes no
## 434 27 services single professional.course no yes yes
## 435 51 services married unknown unknown no no
## 436 37 technician married professional.course no yes no
## 437 46 housemaid married basic.9y no yes no
## 438 35 blue-collar married professional.course no no no
## 439 47 admin. divorced university.degree no no no
## 440 46 management married unknown no yes no
## 441 40 technician married professional.course unknown no yes
## 442 26 housemaid married university.degree no no no
## 443 32 blue-collar divorced basic.9y unknown no no
## 444 45 management married university.degree no yes no
## 445 34 admin. married basic.9y no no no
## 446 47 blue-collar married unknown unknown no no
## 447 42 technician married professional.course no no no
## 448 57 technician married basic.4y unknown no yes
## 449 57 technician married basic.4y unknown no no
## 450 38 blue-collar married basic.4y no no yes
## 451 57 technician married basic.4y unknown no no
## 452 28 student single basic.9y unknown yes no
## 453 60 management married university.degree no no no
## 454 48 admin. married university.degree no yes no
## 455 47 technician married professional.course no yes no
## 456 40 admin. married high.school no no no
## 457 51 management married professional.course unknown yes no
## 458 48 unemployed single basic.4y no yes no
## 459 54 housemaid married basic.4y no no no
## 460 40 blue-collar married basic.6y no no yes
## 461 44 admin. single basic.9y unknown no no
## 462 42 technician divorced high.school no no no
## 463 52 self-employed married university.degree no yes no
## 464 31 blue-collar single basic.9y no yes no
## 465 32 services married high.school no no no
## 466 44 admin. married high.school no yes yes
## 467 39 management married basic.6y unknown no no
## 468 57 management married professional.course unknown yes no
## 469 52 admin. married basic.4y no yes no
## 470 42 management married university.degree no no no
## 471 42 technician single professional.course unknown unknown unknown
## 472 43 management married professional.course no yes no
## 473 31 admin. divorced high.school no no no
## 474 29 admin. married university.degree unknown yes no
## 475 57 blue-collar divorced basic.4y no no no
## 476 44 blue-collar married basic.9y unknown no no
## 477 59 unknown married unknown unknown no no
## 478 39 blue-collar married basic.4y unknown no no
## 479 57 retired married university.degree no no no
## 480 41 management married unknown unknown no no
## 481 37 technician single high.school unknown no yes
## 482 38 services married high.school no yes no
## 483 42 retired married basic.4y no no no
## 484 49 unknown married unknown unknown yes no
## 485 54 management married basic.6y unknown yes yes
## 486 36 admin. married university.degree no unknown unknown
## 487 32 admin. single university.degree unknown no no
## 488 35 technician married professional.course no yes no
## 489 45 housemaid married professional.course unknown no no
## 490 56 technician married unknown no yes no
## 491 34 technician married university.degree no yes no
## 492 41 unemployed married basic.9y unknown no no
## 493 41 services married basic.9y no no no
## 494 36 blue-collar married basic.9y unknown no no
## 495 32 admin. single university.degree unknown unknown unknown
## 496 31 services married high.school unknown unknown unknown
## 497 38 technician married professional.course no yes no
## 498 35 admin. divorced university.degree unknown yes no
## 499 53 admin. married professional.course no yes no
## 500 51 admin. married basic.6y unknown yes no
## 501 56 entrepreneur married university.degree unknown no no
## 502 33 admin. married basic.9y no unknown unknown
## 503 33 admin. married basic.9y no no no
## 504 51 services divorced high.school unknown yes no
## 505 39 services married high.school unknown yes no
## 506 45 entrepreneur married university.degree no no no
## 507 40 technician single university.degree no no no
## 508 60 unknown single unknown unknown yes no
## 509 33 technician married university.degree no yes no
## 510 47 blue-collar married high.school unknown yes no
## 511 48 blue-collar married basic.4y no no no
## 512 43 entrepreneur married high.school no no no
## 513 37 management married university.degree no yes no
## 514 50 services married basic.9y no yes yes
## 515 59 entrepreneur married high.school no yes no
## 516 32 technician married unknown unknown yes no
## 517 42 housemaid single basic.4y unknown yes no
## 518 52 blue-collar married basic.4y no no no
## 519 42 blue-collar married unknown unknown no no
## 520 42 admin. married unknown no no no
## 521 40 management married basic.9y unknown unknown unknown
## 522 38 blue-collar married basic.9y no no no
## 523 39 blue-collar married basic.6y no yes no
## 524 39 blue-collar married basic.6y no no no
## 525 38 admin. married high.school no no no
## 526 47 admin. single unknown unknown yes no
## 527 30 services single high.school no no no
## 528 38 admin. divorced high.school no yes yes
## 529 39 technician divorced university.degree no no no
## 530 44 admin. married high.school no no no
## 531 36 admin. married high.school no no no
## 532 41 services married high.school unknown yes yes
## 533 41 blue-collar married basic.6y no no no
## 534 35 blue-collar married basic.9y no no no
## 535 41 technician married high.school no no no
## 536 36 services married high.school unknown no no
## 537 35 admin. single high.school no yes yes
## 538 33 blue-collar single basic.4y unknown no no
## 539 38 admin. single basic.6y unknown no no
## 540 33 self-employed married university.degree no no no
## 541 55 self-employed married unknown unknown no no
## 542 36 blue-collar single basic.9y unknown no no
## 543 57 technician married professional.course unknown no yes
## 544 32 entrepreneur single university.degree no yes no
## 545 30 self-employed single high.school no yes no
## 546 43 admin. married professional.course no yes yes
## 547 46 admin. married university.degree no no no
## 548 35 admin. divorced high.school no no yes
## 549 34 admin. single university.degree no yes yes
## 550 50 blue-collar married basic.4y unknown unknown unknown
## 551 39 admin. single university.degree no no no
## 552 39 blue-collar married basic.9y unknown no no
## 553 42 entrepreneur married basic.6y no no no
## 554 57 retired married university.degree no yes no
## 555 45 blue-collar married basic.4y unknown no no
## 556 40 technician married basic.4y no no yes
## 557 42 blue-collar married high.school no no yes
## 558 40 technician married basic.4y no no no
## 559 38 blue-collar single basic.4y unknown no no
## 560 39 blue-collar married basic.6y unknown yes yes
## 561 41 blue-collar married basic.4y no no no
## 562 39 blue-collar married basic.6y unknown yes no
## 563 41 blue-collar married basic.4y no yes yes
## 564 45 admin. married university.degree unknown no no
## 565 35 admin. divorced university.degree no unknown unknown
## 566 35 admin. married basic.6y no yes no
## 567 49 blue-collar married high.school unknown no no
## 568 36 technician married unknown no no no
## 569 23 admin. single university.degree no no no
## 570 43 unemployed married university.degree unknown unknown unknown
## 571 49 entrepreneur married professional.course no unknown unknown
## 572 36 technician married professional.course no unknown unknown
## 573 51 blue-collar married basic.9y unknown yes no
## 574 56 retired married basic.4y unknown yes yes
## 575 45 housemaid married high.school no no no
## 576 42 admin. married high.school no no no
## 577 41 admin. divorced high.school no no no
## 578 32 services married high.school unknown no yes
## 579 46 management married university.degree no no no
## 580 37 blue-collar married unknown no no no
## 581 53 management married university.degree unknown no no
## 582 30 blue-collar married basic.4y no no no
## 583 45 unknown married unknown unknown no no
## 584 24 technician single professional.course no no yes
## 585 45 unknown married unknown unknown no no
## 586 34 admin. single university.degree no no yes
## 587 41 management married university.degree unknown no no
## 588 59 blue-collar married basic.4y no yes no
## 589 45 blue-collar married basic.4y unknown no no
## 590 54 blue-collar married basic.6y unknown no no
## 591 32 technician married professional.course no no no
## 592 33 technician married professional.course no yes no
## 593 32 admin. married university.degree no no no
## 594 34 services single high.school no unknown unknown
## 595 46 management married university.degree no no no
## 596 57 technician married professional.course no yes no
## 597 42 technician married basic.9y no no no
## 598 48 admin. married professional.course no yes no
## 599 58 admin. divorced university.degree unknown yes no
## 600 34 services married high.school no no no
## 601 32 admin. single university.degree no yes yes
## 602 48 blue-collar married basic.9y no no no
## 603 47 blue-collar married basic.9y no no no
## 604 31 services married high.school unknown no no
## 605 32 admin. single university.degree no yes no
## 606 32 admin. single university.degree no no no
## 607 36 services married high.school no no no
## 608 53 blue-collar married basic.4y unknown no yes
## 609 37 blue-collar married basic.9y unknown no no
## 610 50 services married high.school no no no
## 611 46 blue-collar married basic.6y no yes no
## 612 41 admin. married high.school no no no
## 613 43 blue-collar single basic.4y no no no
## 614 51 management married university.degree no yes no
## 615 38 admin. married university.degree no yes no
## 616 41 technician married basic.6y no yes no
## 617 39 services married high.school unknown no no
## 618 52 blue-collar married basic.4y no no no
## 619 37 technician married professional.course no yes no
## 620 41 admin. married basic.9y no yes no
## 621 46 admin. divorced university.degree no yes yes
## 622 47 technician married professional.course no no no
## 623 35 technician married professional.course no no no
## 624 38 services married high.school unknown no no
## 625 30 blue-collar single unknown no yes yes
## 626 46 blue-collar married basic.9y no yes no
## 627 30 technician married professional.course no no no
## 628 35 services single basic.4y no no no
## 629 58 admin. married unknown unknown yes no
## 630 40 technician married professional.course no no no
## 631 34 technician married university.degree no no no
## 632 30 admin. single university.degree no no no
## 633 38 services married basic.6y no no no
## 634 55 management single basic.4y no no no
## 635 55 management married university.degree unknown yes no
## 636 45 technician single professional.course no yes no
## 637 36 admin. married university.degree no yes yes
## 638 32 admin. single university.degree no no no
## 639 35 technician married unknown unknown yes no
## 640 55 management divorced university.degree no yes no
## 641 49 housemaid married basic.4y unknown unknown unknown
## 642 29 admin. married high.school no yes no
## 643 34 blue-collar married basic.4y no yes no
## 644 54 retired married high.school unknown yes no
## 645 36 technician single professional.course no no no
## 646 30 management single university.degree no yes no
## 647 33 housemaid divorced university.degree no no no
## 648 37 blue-collar married high.school no no no
## 649 36 technician married basic.9y unknown yes no
## 650 33 blue-collar married high.school no no no
## 651 32 housemaid married high.school no yes no
## 652 32 housemaid married high.school no no no
## 653 50 blue-collar married basic.4y unknown yes no
## 654 39 blue-collar married basic.9y no no yes
## 655 51 blue-collar divorced unknown unknown yes yes
## 656 33 services married high.school no no no
## 657 33 services married basic.4y no no no
## 658 56 management married university.degree unknown no yes
## 659 39 management divorced university.degree unknown yes no
## 660 33 self-employed single university.degree no no no
## 661 59 retired divorced basic.4y unknown no no
## 662 42 admin. single unknown no yes no
## 663 43 services married high.school no no yes
## 664 35 admin. married university.degree no unknown unknown
## 665 46 blue-collar married basic.6y unknown yes no
## 666 27 technician married basic.9y no no yes
## 667 47 admin. divorced university.degree no yes no
## 668 31 admin. single university.degree no no no
## 669 32 blue-collar married basic.9y no yes no
## 670 54 admin. married high.school no no no
## 671 56 management married university.degree unknown no no
## 672 48 services single high.school unknown yes no
## 673 44 admin. married high.school no yes no
## 674 46 admin. married high.school no no yes
## 675 45 services married high.school no yes no
## 676 43 admin. married professional.course no no yes
## 677 40 admin. single high.school unknown no no
## 678 56 management married university.degree no yes no
## 679 47 entrepreneur married professional.course no no no
## 680 39 management divorced university.degree unknown yes no
## 681 48 technician married basic.4y unknown no no
## 682 45 housemaid married professional.course unknown yes no
## 683 36 self-employed married university.degree no no no
## 684 49 management married professional.course unknown yes no
## 685 46 services married high.school no no no
## 686 38 blue-collar married basic.9y no yes no
## 687 50 housemaid married basic.4y unknown yes no
## 688 27 admin. single high.school no yes no
## 689 40 technician married professional.course unknown yes no
## 690 46 management married university.degree no yes no
## 691 40 admin. divorced university.degree no yes no
## 692 33 management single university.degree no no no
## 693 54 retired married high.school no yes no
## 694 52 blue-collar married basic.4y unknown yes no
## 695 53 admin. married university.degree unknown yes no
## 696 49 services married high.school unknown no no
## 697 42 blue-collar married basic.4y unknown no no
## 698 49 housemaid married basic.4y no no no
## 699 40 entrepreneur married basic.9y no no no
## 700 59 admin. married university.degree unknown no no
## 701 51 self-employed married basic.9y no yes no
## 702 57 housemaid married basic.6y unknown yes no
## 703 38 self-employed divorced basic.9y no yes no
## 704 52 self-employed married university.degree no no no
## 705 26 unemployed single basic.9y no yes no
## 706 35 admin. married university.degree no yes yes
## 707 51 admin. married university.degree no no no
## 708 43 blue-collar married basic.4y unknown yes yes
## 709 42 admin. married high.school unknown yes no
## 710 60 retired divorced university.degree unknown yes no
## 711 36 blue-collar married basic.9y no yes no
## 712 57 management married university.degree unknown no no
## 713 35 student single university.degree unknown no no
## 714 30 admin. married university.degree no no no
## 715 43 services married high.school no no no
## 716 40 technician married basic.9y no no no
## 717 45 technician married university.degree no no no
## 718 56 retired married high.school no no no
## 719 46 services married basic.6y no no no
## 720 41 blue-collar married basic.4y no yes no
## 721 42 admin. married university.degree no yes no
## 722 56 blue-collar married basic.4y no no no
## 723 43 entrepreneur married basic.4y no yes no
## 724 34 blue-collar married basic.4y no no no
## 725 38 services married high.school no yes no
## 726 40 technician married basic.9y no no no
## 727 38 admin. married high.school no no no
## 728 48 entrepreneur married university.degree no yes no
## 729 27 blue-collar married basic.9y unknown yes no
## 730 24 technician single professional.course no no no
## 731 47 admin. single unknown unknown yes yes
## 732 48 blue-collar married professional.course unknown no no
## 733 31 admin. single high.school no yes yes
## 734 39 self-employed single basic.4y unknown yes no
## 735 41 technician single university.degree unknown no no
## 736 49 blue-collar married basic.4y unknown yes no
## 737 56 retired married basic.4y no no no
## 738 49 admin. married high.school no no no
## 739 47 unemployed divorced university.degree no no no
## 740 44 blue-collar married unknown unknown yes no
## 741 48 admin. divorced high.school no no no
## 742 55 housemaid married basic.4y no yes yes
## 743 59 management married basic.4y unknown yes no
## 744 44 technician single professional.course no yes yes
## 745 46 blue-collar married basic.9y no no yes
## 746 39 blue-collar divorced basic.6y unknown yes no
## 747 38 unemployed married basic.4y unknown yes yes
## 748 36 services married high.school no yes no
## 749 29 admin. single university.degree no no no
## 750 31 technician single professional.course no yes no
## 751 30 services divorced basic.9y no no yes
## 752 36 blue-collar married basic.4y no yes no
## 753 60 blue-collar married professional.course no no no
## 754 36 admin. married university.degree no yes no
## 755 32 services married high.school no no no
## 756 39 blue-collar married basic.9y unknown yes no
## 757 30 services married university.degree no yes no
## 758 39 blue-collar married basic.4y unknown no no
## 759 37 blue-collar married basic.9y unknown yes no
## 760 39 blue-collar married professional.course unknown yes no
## 761 46 blue-collar married basic.4y no no no
## 762 43 unemployed married basic.4y no no no
## 763 37 services married high.school no yes no
## 764 30 technician married university.degree unknown no no
## 765 38 technician married professional.course no no no
## 766 31 technician married university.degree no yes no
## 767 44 admin. married university.degree no no no
## 768 44 self-employed married university.degree unknown no no
## 769 38 technician married unknown unknown unknown unknown
## 770 30 student single high.school unknown no no
## 771 37 blue-collar married basic.4y unknown unknown unknown
## 772 54 housemaid divorced unknown no yes no
## 773 41 management married unknown unknown yes no
## 774 43 technician married professional.course no no no
## 775 38 housemaid married basic.9y no no no
## 776 41 blue-collar married basic.4y no yes no
## 777 38 blue-collar single unknown unknown no yes
## 778 33 blue-collar married basic.9y no unknown unknown
## 779 32 admin. married high.school no yes no
## 780 30 services married high.school unknown no no
## 781 43 technician married basic.6y no yes no
## 782 30 services married high.school unknown yes no
## 783 36 technician divorced professional.course no no no
## 784 38 blue-collar married basic.6y no unknown unknown
## 785 35 blue-collar single basic.6y no yes no
## 786 50 self-employed married university.degree no no no
## 787 38 blue-collar married basic.9y no yes no
## 788 58 admin. married basic.4y unknown no yes
## 789 50 technician married professional.course no yes no
## 790 33 blue-collar single basic.9y unknown no no
## 791 33 blue-collar single basic.9y unknown unknown unknown
## 792 44 management single university.degree unknown yes yes
## 793 31 management married high.school no no no
## 794 40 entrepreneur married basic.9y no no no
## 795 28 unknown single basic.9y unknown no no
## 796 36 services single unknown no yes no
## 797 44 blue-collar single high.school no no no
## 798 38 blue-collar divorced unknown no yes no
## 799 33 blue-collar married basic.9y no unknown unknown
## 800 39 blue-collar divorced basic.6y unknown yes yes
## 801 47 blue-collar single basic.4y unknown yes no
## 802 47 services divorced high.school no no no
## 803 35 entrepreneur single professional.course no no no
## 804 42 admin. divorced university.degree no no no
## 805 36 admin. married high.school no no no
## 806 35 technician married basic.6y no no no
## 807 36 services single unknown no yes no
## 808 56 entrepreneur married university.degree unknown yes no
## 809 26 admin. single high.school no no no
## 810 31 admin. single university.degree no yes yes
## 811 57 self-employed single high.school unknown no no
## 812 39 services married high.school no no no
## 813 43 blue-collar married high.school no yes no
## 814 50 admin. married university.degree no no no
## 815 52 blue-collar single high.school unknown unknown unknown
## 816 39 blue-collar divorced basic.9y no no no
## 817 44 technician single unknown unknown yes no
## 818 36 housemaid married basic.4y no yes no
## 819 54 management married high.school unknown yes no
## 820 27 admin. single basic.9y no yes no
## 821 31 admin. single university.degree no no no
## 822 31 admin. married university.degree unknown no no
## 823 28 blue-collar married basic.6y no no no
## 824 31 management single university.degree no yes no
## 825 30 management divorced high.school no no yes
## 826 52 technician married professional.course no yes no
## 827 37 technician divorced professional.course no no no
## 828 30 services married university.degree no yes no
## 829 45 blue-collar married basic.9y unknown yes yes
## 830 54 technician married university.degree no yes no
## 831 49 entrepreneur married basic.9y no yes no
## 832 44 admin. married high.school no no no
## 833 28 student single basic.9y unknown yes yes
## 834 53 technician married high.school no yes no
## 835 45 blue-collar married basic.9y unknown yes no
## 836 45 blue-collar married basic.9y unknown no no
## 837 51 admin. married high.school unknown yes no
## 838 41 blue-collar married basic.9y unknown yes no
## 839 43 technician married professional.course no yes no
## 840 31 admin. single university.degree no yes no
## 841 39 admin. single unknown no yes no
## 842 38 technician married professional.course no no no
## 843 50 entrepreneur married basic.9y no yes yes
## 844 53 admin. single university.degree unknown yes no
## 845 44 admin. divorced high.school unknown yes no
## 846 53 blue-collar married basic.9y unknown yes yes
## 847 24 services single high.school no no no
## 848 34 admin. single high.school no yes no
## 849 40 technician married professional.course no yes no
## 850 57 management divorced university.degree no yes no
## 851 43 blue-collar married basic.4y unknown yes no
## 852 31 blue-collar married basic.6y unknown no no
## 853 31 services married basic.6y no yes no
## 854 31 blue-collar married basic.6y unknown yes no
## 855 45 housemaid married basic.4y unknown yes no
## 856 38 admin. married university.degree no no no
## 857 41 entrepreneur married university.degree no yes no
## 858 47 blue-collar married professional.course unknown yes no
## 859 42 blue-collar married basic.6y no no no
## 860 35 blue-collar single unknown no yes no
## 861 40 management married university.degree no yes no
## 862 42 blue-collar married basic.6y no no no
## 863 34 technician married professional.course unknown yes no
## 864 48 admin. single university.degree no yes no
## 865 35 blue-collar married unknown no yes yes
## 866 33 blue-collar married high.school no yes no
## 867 37 technician married professional.course no yes no
## 868 43 technician married professional.course no yes no
## 869 42 admin. single unknown unknown no no
## 870 46 admin. divorced university.degree no yes no
## 871 37 blue-collar single basic.9y unknown yes no
## 872 40 blue-collar married high.school no yes no
## 873 40 blue-collar married high.school no yes no
## 874 59 entrepreneur divorced high.school unknown yes no
## 875 43 technician single university.degree no no no
## 876 44 blue-collar married basic.6y no yes yes
## 877 44 blue-collar married basic.4y no yes no
## 878 41 admin. married university.degree no yes no
## 879 28 unknown single basic.9y unknown yes no
## 880 48 services married high.school unknown yes no
## 881 31 admin. single high.school no yes no
## 882 27 blue-collar married basic.9y no yes no
## 883 43 technician single university.degree no yes no
## 884 47 retired married basic.4y unknown yes no
## 885 40 blue-collar divorced unknown no yes no
## 886 43 unknown married high.school unknown no no
## 887 29 technician married professional.course no yes no
## 888 54 admin. married university.degree no no no
## 889 36 technician married professional.course no no no
## 890 30 admin. single university.degree no no no
## 891 38 services single unknown unknown yes no
## 892 39 blue-collar married basic.6y no no no
## 893 33 blue-collar married basic.9y no no no
## 894 39 retired single high.school no yes no
## 895 38 technician single professional.course no no no
## 896 44 admin. married high.school no yes no
## 897 33 blue-collar married basic.9y no yes no
## 898 37 blue-collar married basic.6y no no no
## 899 32 management married basic.6y no no no
## 900 46 technician married professional.course no yes no
## 901 34 technician divorced professional.course no yes no
## 902 52 technician married basic.4y unknown no no
## 903 46 blue-collar married basic.6y unknown no no
## 904 57 management divorced university.degree no unknown unknown
## 905 52 technician married basic.4y unknown no yes
## 906 32 technician single professional.course no no no
## 907 31 blue-collar single basic.9y no no no
## 908 46 admin. divorced basic.9y unknown no no
## 909 59 services divorced high.school no no no
## 910 38 blue-collar married unknown unknown no yes
## 911 42 blue-collar divorced basic.6y unknown yes no
## 912 40 blue-collar married basic.4y no no no
## 913 46 admin. married professional.course no no no
## 914 35 admin. single high.school no no no
## 915 28 blue-collar married basic.9y no no yes
## 916 47 services married high.school unknown yes no
## 917 35 blue-collar married basic.4y no yes no
## 918 48 retired married basic.9y no yes no
## 919 40 blue-collar married basic.6y unknown yes no
## 920 32 services single high.school no yes no
## 921 59 retired divorced basic.4y no yes no
## 922 48 entrepreneur married basic.9y unknown no no
## 923 45 blue-collar married basic.9y unknown yes no
## 924 49 blue-collar single basic.6y no yes no
## 925 51 admin. married university.degree no yes no
## 926 38 technician single university.degree no yes no
## 927 53 technician married high.school no yes no
## 928 49 blue-collar married basic.9y no yes no
## 929 31 blue-collar married basic.9y no yes yes
## 930 36 services married high.school unknown yes no
## 931 54 retired married basic.4y unknown yes no
## 932 29 admin. single high.school no yes no
## 933 31 blue-collar married basic.6y unknown yes no
## 934 35 admin. married high.school no yes no
## 935 38 blue-collar married basic.9y no no no
## 936 54 management married high.school unknown yes yes
## 937 48 admin. married basic.9y unknown no no
## 938 48 management divorced university.degree no yes no
## 939 32 admin. single university.degree unknown yes no
## 940 34 technician married professional.course unknown yes no
## 941 49 technician single university.degree unknown yes no
## 942 44 blue-collar married basic.9y unknown unknown unknown
## 943 42 services divorced high.school unknown no no
## 944 55 blue-collar married basic.4y unknown no no
## 945 42 services divorced high.school unknown no no
## 946 44 admin. married university.degree unknown no no
## 947 51 blue-collar married basic.9y no no no
## 948 43 blue-collar married basic.4y unknown yes no
## 949 52 technician married high.school no yes no
## 950 45 blue-collar single basic.6y no yes no
## 951 41 services divorced high.school no yes yes
## 952 35 technician divorced unknown no yes yes
## 953 41 services divorced high.school no no yes
## 954 46 management married basic.9y no no no
## 955 36 housemaid divorced basic.9y unknown no no
## 956 29 technician married professional.course no no no
## 957 47 services married unknown no no no
## 958 43 blue-collar married basic.4y unknown yes no
## 959 38 blue-collar single basic.9y unknown no no
## 960 44 blue-collar married basic.4y no yes no
## 961 29 services married high.school no no no
## 962 58 unknown married unknown unknown no no
## 963 48 blue-collar married professional.course no no yes
## 964 46 blue-collar married basic.9y unknown no no
## 965 31 blue-collar married basic.4y no yes no
## 966 47 services married unknown no no no
## 967 44 admin. married university.degree no yes no
## 968 31 blue-collar married basic.4y no yes no
## 969 38 unemployed divorced professional.course no no no
## 970 33 admin. married university.degree no no no
## 971 53 blue-collar married basic.9y no yes no
## 972 33 management single unknown no yes no
## 973 33 self-employed married basic.9y no yes no
## 974 37 admin. divorced university.degree no yes no
## 975 55 blue-collar married basic.9y no yes no
## 976 41 admin. single basic.6y no unknown unknown
## 977 46 blue-collar married basic.6y unknown yes no
## 978 32 entrepreneur divorced university.degree no no no
## 979 48 blue-collar married high.school no no no
## 980 34 entrepreneur married basic.4y no yes no
## 981 35 admin. single university.degree no no no
## 982 55 blue-collar married basic.4y no yes yes
## 983 45 entrepreneur single university.degree no unknown unknown
## 984 48 management divorced university.degree no no no
## 985 34 blue-collar married basic.6y no yes no
## 986 46 admin. divorced university.degree unknown no no
## 987 34 blue-collar married basic.6y no yes no
## 988 51 unemployed married professional.course unknown no no
## 989 37 admin. married university.degree no no no
## 990 54 housemaid divorced basic.4y no no no
## 991 45 services married high.school unknown yes no
## 992 39 services single high.school no unknown unknown
## 993 39 blue-collar married basic.9y no no no
## 994 39 technician single basic.6y unknown no no
## 995 39 services married basic.9y no no no
## 996 32 entrepreneur married basic.6y no yes no
## 997 41 services single high.school no yes yes
## 998 59 housemaid married basic.6y no yes no
## 999 57 technician married basic.9y no yes no
## 1000 30 services married unknown no no no
## 1001 34 entrepreneur married basic.4y no no no
## 1002 34 technician married high.school no no no
## 1003 38 blue-collar divorced unknown no no no
## 1004 31 blue-collar married basic.6y no yes no
## 1005 47 admin. married university.degree no unknown unknown
## 1006 57 self-employed single high.school unknown no no
## 1007 44 blue-collar married basic.9y unknown no no
## 1008 45 services married high.school unknown yes no
## 1009 36 unemployed married basic.4y no yes no
## 1010 44 services married high.school no yes no
## 1011 51 management married university.degree no no no
## 1012 28 admin. single university.degree no no no
## 1013 50 technician married high.school no no no
## 1014 51 entrepreneur married university.degree no no no
## 1015 38 blue-collar single basic.9y no no no
## 1016 44 blue-collar married basic.4y no yes no
## 1017 35 admin. single basic.4y unknown no no
## 1018 35 admin. single basic.4y unknown yes no
## 1019 32 admin. single high.school no no no
## 1020 48 blue-collar married basic.9y no yes no
## 1021 35 admin. single basic.4y unknown no no
## 1022 44 technician married professional.course unknown no no
## 1023 43 technician married professional.course no no no
## 1024 40 management married high.school no no no
## 1025 50 self-employed married basic.4y unknown unknown unknown
## 1026 44 technician married professional.course unknown yes no
## 1027 37 blue-collar single basic.9y unknown no no
## 1028 32 services divorced high.school no yes no
## 1029 58 admin. married high.school no no yes
## 1030 49 technician married high.school no yes no
## 1031 32 blue-collar married basic.4y unknown no no
## 1032 30 services married high.school no no yes
## 1033 28 admin. married high.school no yes no
## 1034 40 blue-collar married basic.4y unknown unknown unknown
## 1035 44 management married university.degree no no no
## 1036 30 services married professional.course unknown yes no
## 1037 30 services married professional.course unknown no no
## 1038 28 technician single professional.course no yes no
## 1039 58 housemaid married basic.4y no yes no
## 1040 45 blue-collar single high.school unknown no yes
## 1041 35 blue-collar married professional.course no no no
## 1042 57 retired divorced high.school no no no
## 1043 35 admin. divorced high.school no yes no
## 1044 41 technician single university.degree unknown no no
## 1045 42 services married high.school unknown no no
## 1046 42 blue-collar married basic.4y unknown no no
## 1047 51 blue-collar married basic.4y unknown yes no
## 1048 48 management married university.degree no yes no
## 1049 39 blue-collar married basic.6y no no no
## 1050 47 retired married basic.4y unknown unknown unknown
## 1051 34 technician single professional.course no unknown unknown
## 1052 44 services married basic.6y unknown no no
## 1053 52 housemaid divorced professional.course no yes no
## 1054 51 blue-collar married basic.4y no yes no
## 1055 49 services married high.school no no no
## 1056 35 admin. single basic.4y unknown yes no
## 1057 44 admin. married high.school no no no
## 1058 37 admin. married high.school no yes no
## 1059 47 management married university.degree no no no
## 1060 43 management married professional.course no no no
## 1061 40 blue-collar married basic.9y unknown yes no
## 1062 32 management divorced basic.4y unknown no no
## 1063 42 blue-collar married basic.4y unknown unknown unknown
## 1064 42 self-employed married university.degree no yes no
## 1065 39 technician married professional.course no unknown unknown
## 1066 32 housemaid married basic.4y no no no
## 1067 30 services married unknown no yes no
## 1068 42 blue-collar married basic.4y unknown yes no
## 1069 35 blue-collar married basic.6y no yes yes
## 1070 56 retired married basic.4y no no no
## 1071 40 blue-collar married basic.9y unknown no no
## 1072 26 admin. single university.degree no yes no
## 1073 57 management divorced university.degree no no no
## 1074 51 blue-collar married basic.4y no no no
## 1075 31 technician married professional.course no no no
## 1076 31 admin. married university.degree no no no
## 1077 60 services married unknown no no no
## 1078 29 admin. single university.degree no yes no
## 1079 44 entrepreneur married basic.4y unknown no no
## 1080 26 technician single basic.9y no yes no
## 1081 54 blue-collar married basic.4y no yes no
## 1082 34 blue-collar single high.school unknown no yes
## 1083 29 admin. single high.school no yes no
## 1084 33 admin. divorced high.school no yes no
## 1085 35 blue-collar single high.school no yes no
## 1086 42 management married basic.6y no yes yes
## 1087 53 retired married basic.4y unknown yes no
## 1088 51 technician married professional.course no yes no
## 1089 59 retired divorced basic.4y no yes no
## 1090 51 admin. married basic.6y unknown no no
## 1091 36 blue-collar married basic.9y no yes no
## 1092 47 technician divorced professional.course unknown no no
## 1093 51 admin. married university.degree no no no
## 1094 42 admin. married university.degree unknown yes no
## 1095 40 technician married professional.course no yes no
## 1096 26 blue-collar married basic.9y unknown no no
## 1097 45 technician married professional.course no yes no
## 1098 51 blue-collar married basic.4y unknown yes no
## 1099 42 services married high.school no no no
## 1100 31 technician married professional.course no yes no
## 1101 38 blue-collar married basic.4y no no no
## 1102 51 services divorced basic.6y unknown no yes
## 1103 39 entrepreneur married high.school no yes no
## 1104 36 blue-collar married unknown unknown yes yes
## 1105 60 services married unknown no yes no
## 1106 34 management married university.degree no yes no
## 1107 41 blue-collar married basic.4y no yes no
## 1108 34 management married university.degree no yes yes
## 1109 36 blue-collar married basic.9y no no no
## 1110 33 technician married professional.course no no no
## 1111 46 admin. single university.degree no unknown unknown
## 1112 44 blue-collar married basic.4y no yes no
## 1113 30 blue-collar married basic.6y no no no
## 1114 34 management married university.degree no no no
## 1115 54 admin. divorced university.degree no no no
## 1116 58 self-employed married professional.course no yes no
## 1117 29 services married high.school no yes yes
## 1118 41 entrepreneur married university.degree no no no
## 1119 53 blue-collar married basic.9y unknown yes no
## 1120 35 admin. married university.degree no no no
## 1121 34 blue-collar single basic.9y no no no
## 1122 36 blue-collar single unknown no yes no
## 1123 31 blue-collar married basic.9y no no no
## 1124 59 retired married basic.4y unknown no no
## 1125 49 technician married professional.course unknown unknown unknown
## 1126 37 management married high.school unknown no no
## 1127 50 management married university.degree no yes no
## 1128 34 services married high.school no no no
## 1129 32 admin. married university.degree unknown no no
## 1130 45 blue-collar married basic.9y unknown yes no
## 1131 39 management married university.degree no yes no
## 1132 43 unknown married high.school unknown no no
## 1133 43 blue-collar married basic.4y unknown no no
## 1134 52 blue-collar married basic.9y unknown no no
## 1135 54 blue-collar married basic.9y no yes no
## 1136 54 blue-collar married basic.9y no yes no
## 1137 31 services single high.school no yes no
## 1138 35 blue-collar married basic.6y no no no
## 1139 28 admin. married high.school no yes no
## 1140 56 retired married basic.9y no yes yes
## 1141 35 admin. single basic.4y unknown no no
## 1142 45 blue-collar married basic.9y unknown no no
## 1143 38 entrepreneur married basic.9y no no no
## 1144 42 technician married professional.course no yes no
## 1145 44 blue-collar married basic.4y no no no
## 1146 58 admin. divorced university.degree no yes no
## 1147 43 admin. divorced high.school no yes no
## 1148 37 technician married professional.course no yes no
## 1149 45 blue-collar married basic.9y unknown no no
## 1150 59 retired married university.degree no no no
## 1151 50 blue-collar married basic.9y unknown no no
## 1152 41 admin. married high.school no yes yes
## 1153 33 admin. married university.degree no yes no
## 1154 46 blue-collar married professional.course no no no
## 1155 30 admin. single high.school no no no
## 1156 28 services single high.school no no no
## 1157 58 admin. married university.degree no no yes
## 1158 43 blue-collar married basic.4y no no no
## 1159 39 self-employed married high.school no yes no
## 1160 25 services married professional.course unknown no no
## 1161 39 admin. single unknown no no no
## 1162 42 retired married basic.9y unknown yes no
## 1163 43 admin. married high.school no yes no
## 1164 43 admin. married high.school no no no
## 1165 33 admin. single university.degree no no no
## 1166 52 unknown married basic.4y no no no
## 1167 42 services married professional.course no yes no
## 1168 53 blue-collar married basic.4y unknown no no
## 1169 41 housemaid married basic.6y no no no
## 1170 48 blue-collar married professional.course no yes no
## 1171 40 admin. single high.school no yes no
## 1172 40 admin. single high.school no no yes
## 1173 53 blue-collar married high.school unknown no yes
## 1174 55 admin. married high.school no no no
## 1175 39 technician married professional.course no no no
## 1176 35 blue-collar married basic.9y no no yes
## 1177 50 housemaid divorced basic.4y unknown no no
## 1178 38 services divorced basic.6y no no no
## 1179 41 unemployed married basic.9y unknown no no
## 1180 44 technician married professional.course unknown no no
## 1181 39 admin. married basic.6y unknown no no
## 1182 44 unknown married basic.6y no no no
## 1183 51 technician married professional.course no no yes
## 1184 41 technician married high.school no yes yes
## 1185 31 technician married professional.course no no no
## 1186 40 blue-collar married high.school no yes no
## 1187 38 self-employed single university.degree no no no
## 1188 48 blue-collar married basic.6y no no yes
## 1189 32 admin. married high.school no no no
## 1190 46 blue-collar single basic.9y no yes no
## 1191 49 housemaid married basic.4y unknown no no
## 1192 47 blue-collar married basic.6y no yes yes
## 1193 28 blue-collar married basic.6y unknown no no
## 1194 38 admin. single university.degree unknown yes no
## 1195 28 blue-collar married basic.6y unknown no no
## 1196 51 services married unknown no yes no
## 1197 50 blue-collar married basic.9y no yes no
## 1198 38 admin. single university.degree unknown yes yes
## 1199 48 blue-collar married basic.6y no yes no
## 1200 44 technician divorced unknown no yes no
## 1201 30 technician married professional.course no no no
## 1202 34 blue-collar single basic.4y no no no
## 1203 36 blue-collar married basic.6y no yes no
## 1204 41 management married university.degree unknown no no
## 1205 40 blue-collar married basic.6y unknown no no
## 1206 35 unknown married basic.9y no yes yes
## 1207 46 blue-collar married basic.4y unknown no no
## 1208 35 unknown married basic.9y no yes no
## 1209 32 management single university.degree no no no
## 1210 34 admin. married university.degree unknown no no
## 1211 35 blue-collar married basic.9y no yes no
## 1212 28 admin. single professional.course no no no
## 1213 30 services married high.school unknown no no
## 1214 48 unemployed married basic.4y no yes yes
## 1215 53 blue-collar married professional.course no yes yes
## 1216 31 management married university.degree no yes yes
## 1217 59 retired married unknown no yes no
## 1218 51 unemployed married high.school no yes no
## 1219 47 services married high.school unknown yes no
## 1220 40 technician married university.degree unknown no no
## 1221 42 entrepreneur single university.degree no yes no
## 1222 30 housemaid married high.school unknown no no
## 1223 40 blue-collar married basic.9y no no no
## 1224 30 housemaid married high.school unknown no no
## 1225 50 entrepreneur married basic.9y no yes no
## 1226 36 blue-collar married basic.6y unknown no no
## 1227 29 unemployed single university.degree no no no
## 1228 43 blue-collar married basic.9y no no no
## 1229 35 services married high.school no no no
## 1230 35 unknown single basic.4y unknown no no
## 1231 48 blue-collar divorced basic.4y no no no
## 1232 49 technician married professional.course no no no
## 1233 44 blue-collar married basic.6y unknown no yes
## 1234 32 blue-collar married professional.course no no no
## 1235 55 admin. married high.school no no no
## 1236 41 admin. married basic.4y unknown no yes
## 1237 27 student single high.school unknown no no
## 1238 41 blue-collar married basic.9y no yes no
## 1239 36 blue-collar married basic.6y unknown yes no
## 1240 45 services married basic.9y no no no
## 1241 36 blue-collar married high.school no no no
## 1242 54 technician married basic.9y no no no
## 1243 48 admin. married high.school unknown no yes
## 1244 32 blue-collar married basic.6y unknown no no
## 1245 33 management married university.degree no no yes
## 1246 43 blue-collar married basic.4y unknown no no
## 1247 44 technician single high.school no no no
## 1248 50 technician married professional.course no no no
## 1249 32 student single university.degree no no no
## 1250 43 blue-collar married basic.4y unknown yes no
## 1251 32 student single university.degree no yes no
## 1252 43 blue-collar married basic.4y unknown no no
## 1253 40 admin. divorced professional.course no yes no
## 1254 24 services single high.school no yes yes
## 1255 32 technician married university.degree no no yes
## 1256 43 blue-collar married basic.4y unknown yes yes
## 1257 43 technician single university.degree no yes no
## 1258 35 admin. married university.degree no yes yes
## 1259 33 admin. single high.school unknown yes no
## 1260 43 blue-collar married basic.4y unknown yes no
## 1261 48 technician married professional.course unknown yes no
## 1262 52 housemaid married basic.4y no no no
## 1263 49 blue-collar married basic.4y unknown yes no
## 1264 30 admin. married high.school no yes yes
## 1265 36 services married high.school no yes no
## 1266 39 blue-collar married basic.6y no no no
## 1267 39 blue-collar married basic.6y no no no
## 1268 36 admin. divorced university.degree no no no
## 1269 39 blue-collar married basic.6y no no no
## 1270 31 admin. married high.school no no no
## 1271 41 technician married professional.course no yes yes
## 1272 35 unknown married basic.9y no no no
## 1273 55 retired married university.degree unknown no no
## 1274 57 retired married high.school unknown yes no
## 1275 38 entrepreneur married basic.6y no yes no
## 1276 52 blue-collar married basic.9y no yes no
## 1277 60 services married high.school no yes no
## 1278 24 student single high.school no yes no
## 1279 38 entrepreneur married basic.6y no no no
## 1280 44 technician divorced high.school no no no
## 1281 42 blue-collar married basic.9y unknown yes no
## 1282 25 services divorced high.school no yes no
## 1283 32 admin. married basic.6y no no no
## 1284 51 blue-collar married basic.4y unknown no no
## 1285 28 admin. single university.degree no no no
## 1286 27 housemaid married basic.9y no yes no
## 1287 35 blue-collar married basic.9y no yes no
## 1288 45 services married basic.9y no yes yes
## 1289 30 services single high.school no yes no
## 1290 60 entrepreneur married basic.4y no yes no
## 1291 28 services single unknown no yes no
## 1292 45 blue-collar married basic.4y unknown no yes
## 1293 37 unemployed married professional.course no no no
## 1294 37 unemployed married professional.course no no yes
## 1295 36 services married basic.6y no yes no
## 1296 49 blue-collar married basic.4y no yes no
## 1297 35 services married professional.course unknown yes no
## 1298 34 admin. single high.school no no no
## 1299 31 blue-collar married basic.9y no no no
## 1300 42 admin. married university.degree unknown yes no
## 1301 39 blue-collar married basic.6y no yes no
## 1302 33 services married university.degree no yes no
## 1303 38 unemployed married high.school no no yes
## 1304 30 admin. divorced university.degree unknown no no
## 1305 31 blue-collar divorced professional.course no yes no
## 1306 39 management married university.degree no no no
## 1307 37 blue-collar married unknown unknown yes no
## 1308 48 blue-collar married basic.4y unknown no no
## 1309 32 services married high.school no no no
## 1310 48 blue-collar married basic.6y no yes no
## 1311 37 technician single university.degree no yes no
## 1312 37 technician single university.degree no no no
## 1313 26 services divorced basic.6y no no no
## 1314 33 management married high.school unknown no no
## 1315 54 admin. married university.degree no yes no
## 1316 37 blue-collar married basic.9y unknown yes no
## 1317 35 entrepreneur married university.degree no yes yes
## 1318 45 admin. married university.degree no no no
## 1319 33 services single high.school no yes no
## 1320 54 admin. married university.degree no no no
## 1321 37 blue-collar married basic.4y no no yes
## 1322 35 blue-collar married basic.9y unknown no no
## 1323 33 blue-collar divorced basic.6y unknown yes no
## 1324 49 technician married professional.course no no no
## 1325 43 technician married university.degree no yes no
## 1326 43 entrepreneur married university.degree no no no
## 1327 39 blue-collar married basic.6y no no no
## 1328 47 blue-collar married basic.9y no yes no
## 1329 30 services divorced high.school no no no
## 1330 51 admin. divorced university.degree no yes no
## 1331 59 blue-collar married basic.6y no yes no
## 1332 31 blue-collar married basic.9y no yes no
## 1333 39 unemployed married university.degree no yes no
## 1334 43 blue-collar married basic.6y unknown no no
## 1335 30 blue-collar married basic.9y unknown yes no
## 1336 37 blue-collar married professional.course no no no
## 1337 42 blue-collar married basic.6y no no no
## 1338 37 blue-collar married professional.course no yes yes
## 1339 37 admin. divorced university.degree no yes no
## 1340 37 blue-collar single basic.6y unknown yes no
## 1341 36 management single basic.6y no no no
## 1342 48 blue-collar married basic.9y no yes yes
## 1343 43 services married high.school no no no
## 1344 28 blue-collar married basic.6y no no no
## 1345 30 admin. divorced high.school no yes no
## 1346 60 entrepreneur married basic.4y no yes no
## 1347 31 blue-collar married basic.9y no no no
## 1348 38 entrepreneur married university.degree no no no
## 1349 50 technician married high.school no yes no
## 1350 36 blue-collar married basic.9y no yes no
## 1351 50 unemployed married professional.course no no no
## 1352 54 entrepreneur married basic.4y unknown no yes
## 1353 33 management married university.degree no no no
## 1354 20 entrepreneur single high.school no no no
## 1355 24 blue-collar married basic.9y unknown yes no
## 1356 28 management single unknown no yes no
## 1357 55 housemaid married basic.4y no yes no
## 1358 25 blue-collar married high.school no no no
## 1359 41 admin. married basic.9y unknown yes no
## 1360 39 blue-collar married basic.6y no yes no
## 1361 27 blue-collar married basic.9y no yes no
## 1362 27 blue-collar married basic.9y no no no
## 1363 34 blue-collar married basic.6y unknown yes yes
## 1364 25 technician single professional.course no no no
## 1365 48 management married university.degree unknown yes no
## 1366 36 blue-collar single basic.6y no no no
## 1367 36 blue-collar married basic.9y no no no
## 1368 27 blue-collar married basic.9y no no yes
## 1369 45 management married university.degree no yes yes
## 1370 28 blue-collar married basic.6y unknown yes no
## 1371 30 technician single basic.6y unknown yes no
## 1372 43 blue-collar married basic.4y no no no
## 1373 32 admin. single high.school no unknown unknown
## 1374 29 services single basic.9y no no no
## 1375 35 blue-collar married basic.9y no no no
## 1376 43 admin. married high.school no yes no
## 1377 35 unknown married basic.9y no no no
## 1378 36 admin. married high.school no yes no
## 1379 36 admin. married high.school no no no
## 1380 48 admin. married high.school unknown no no
## 1381 38 blue-collar single basic.4y unknown no no
## 1382 38 blue-collar single basic.9y unknown no no
## 1383 45 admin. married high.school no yes no
## 1384 35 technician married professional.course no no yes
## 1385 42 services married high.school unknown no yes
## 1386 56 blue-collar married basic.4y unknown no no
## 1387 30 technician married professional.course no no no
## 1388 45 blue-collar married basic.4y unknown yes no
## 1389 39 services single high.school unknown no no
## 1390 36 blue-collar married basic.6y unknown no no
## 1391 32 admin. married university.degree unknown no yes
## 1392 29 admin. single high.school no no no
## 1393 34 blue-collar married basic.9y no no no
## 1394 36 self-employed single basic.6y no no no
## 1395 33 management married high.school unknown no no
## 1396 43 unemployed married basic.4y no no no
## 1397 31 services married basic.6y no no no
## 1398 35 blue-collar married basic.6y no no no
## 1399 42 admin. married university.degree no no no
## 1400 35 blue-collar married basic.6y no no no
## 1401 44 blue-collar married basic.4y unknown no no
## 1402 36 technician divorced professional.course no yes no
## 1403 47 admin. married university.degree no no no
## 1404 59 technician married professional.course unknown no no
## 1405 29 blue-collar single high.school unknown unknown unknown
## 1406 30 services single high.school no no no
## 1407 38 blue-collar married basic.9y unknown no no
## 1408 45 management single university.degree no no no
## 1409 28 self-employed single university.degree no no no
## 1410 37 blue-collar married basic.4y no no no
## 1411 38 entrepreneur married basic.6y no yes yes
## 1412 28 admin. single basic.9y no yes yes
## 1413 31 technician divorced professional.course no yes yes
## 1414 37 blue-collar married basic.4y no yes no
## 1415 36 housemaid divorced university.degree no no no
## 1416 54 housemaid married basic.9y no yes no
## 1417 53 retired married basic.6y unknown no yes
## 1418 43 unemployed married basic.9y no yes no
## 1419 49 admin. married high.school no no yes
## 1420 32 self-employed divorced professional.course no no no
## 1421 36 services married high.school no yes no
## 1422 50 blue-collar single basic.9y unknown yes yes
## 1423 51 blue-collar divorced basic.9y no no no
## 1424 38 blue-collar married basic.4y no yes no
## 1425 44 self-employed married professional.course no no no
## 1426 29 blue-collar married high.school no no no
## 1427 46 blue-collar divorced basic.6y no no no
## 1428 32 unemployed divorced basic.4y no unknown unknown
## 1429 43 blue-collar divorced basic.4y unknown no no
## 1430 53 admin. married university.degree no no no
## 1431 43 blue-collar married basic.6y unknown no no
## 1432 35 services single basic.4y no no yes
## 1433 49 admin. divorced basic.9y no yes no
## 1434 35 blue-collar married basic.6y unknown yes no
## 1435 40 services single professional.course no no no
## 1436 29 services divorced high.school no no no
## 1437 43 blue-collar married basic.4y unknown no no
## 1438 47 blue-collar married basic.6y no no no
## 1439 38 technician married university.degree unknown no no
## 1440 48 technician married professional.course no yes no
## 1441 53 retired married high.school unknown yes no
## 1442 53 management married university.degree no yes no
## 1443 51 blue-collar married basic.9y unknown yes no
## 1444 35 services married basic.9y no yes yes
## 1445 31 entrepreneur divorced high.school no yes no
## 1446 46 entrepreneur married basic.4y no no no
## 1447 28 blue-collar married basic.6y unknown yes yes
## 1448 38 admin. married basic.9y unknown yes no
## 1449 28 self-employed single university.degree no yes no
## 1450 50 technician married professional.course no yes no
## 1451 32 management single university.degree no no no
## 1452 31 blue-collar divorced basic.4y no yes no
## 1453 39 blue-collar married basic.9y unknown no no
## 1454 41 blue-collar married basic.9y no no yes
## 1455 31 admin. married high.school no yes yes
## 1456 54 blue-collar married basic.9y unknown no yes
## 1457 34 blue-collar married basic.6y unknown no yes
## 1458 51 services married high.school unknown yes no
## 1459 45 blue-collar single basic.9y no no no
## 1460 32 admin. divorced high.school no no yes
## 1461 28 student married university.degree no no yes
## 1462 40 management married university.degree no yes no
## 1463 55 admin. divorced university.degree no yes no
## 1464 41 self-employed single university.degree no no no
## 1465 57 services divorced high.school unknown no yes
## 1466 44 entrepreneur married high.school no yes no
## 1467 29 blue-collar single high.school unknown yes no
## 1468 38 admin. single university.degree no no no
## 1469 34 blue-collar married basic.4y no yes no
## 1470 36 technician single university.degree no yes no
## 1471 39 services divorced high.school no yes no
## 1472 30 blue-collar married basic.9y no yes yes
## 1473 35 services married basic.9y no no no
## 1474 60 entrepreneur married basic.4y no no no
## 1475 35 blue-collar married basic.9y no yes no
## 1476 38 self-employed single university.degree no no no
## 1477 57 blue-collar divorced professional.course no no no
## 1478 44 technician divorced unknown no no yes
## 1479 40 entrepreneur married basic.9y no yes no
## 1480 46 technician divorced basic.9y no yes no
## 1481 50 technician married professional.course unknown yes no
## 1482 45 management married university.degree no yes no
## 1483 57 services married basic.6y no no no
## 1484 35 admin. single basic.6y no yes no
## 1485 38 blue-collar married basic.6y no no no
## 1486 30 services divorced high.school no yes no
## 1487 25 services divorced high.school no no no
## 1488 52 self-employed single university.degree unknown yes no
## 1489 37 technician single university.degree no yes no
## 1490 60 retired divorced high.school no yes no
## 1491 42 blue-collar married basic.4y unknown no no
## 1492 37 blue-collar married professional.course no yes no
## 1493 43 services married high.school no no no
## 1494 33 services unknown high.school no yes yes
## 1495 32 technician married professional.course no yes yes
## 1496 41 technician married professional.course no no no
## 1497 37 blue-collar married basic.6y unknown no no
## 1498 39 blue-collar married basic.9y unknown no no
## 1499 36 services married high.school no no yes
## 1500 38 blue-collar married basic.6y unknown no no
## 1501 33 admin. married high.school no yes yes
## 1502 41 services divorced high.school no yes no
## 1503 58 services married basic.4y no no no
## 1504 44 blue-collar single basic.9y unknown no no
## 1505 36 blue-collar married basic.9y unknown no no
## 1506 33 admin. married high.school no yes no
## 1507 30 technician married professional.course no no no
## 1508 44 blue-collar married basic.9y unknown no no
## 1509 32 admin. married high.school no yes yes
## 1510 38 admin. married basic.9y unknown no no
## 1511 41 blue-collar married professional.course unknown yes no
## 1512 40 services married basic.9y unknown no no
## 1513 33 blue-collar married basic.6y unknown yes yes
## 1514 28 admin. single university.degree no yes no
## 1515 46 blue-collar married basic.4y no no no
## 1516 35 technician married university.degree no yes no
## 1517 40 admin. married university.degree unknown yes yes
## 1518 36 services married high.school no yes no
## 1519 38 management married university.degree unknown no no
## 1520 36 services married high.school no yes no
## 1521 40 admin. married high.school unknown yes no
## 1522 31 services married basic.9y no yes no
## 1523 47 technician married professional.course no yes no
## 1524 35 technician single professional.course no yes no
## 1525 29 admin. single university.degree no no no
## 1526 29 blue-collar single high.school no yes yes
## 1527 35 self-employed married university.degree no no yes
## 1528 33 services single basic.6y unknown no no
## 1529 41 management divorced university.degree unknown yes yes
## 1530 54 admin. married university.degree no yes no
## 1531 31 admin. single university.degree no no yes
## 1532 55 technician married university.degree no yes no
## 1533 38 admin. married high.school no no no
## 1534 41 services married high.school no no yes
## 1535 49 unemployed married university.degree no yes yes
## 1536 39 services married high.school no yes no
## 1537 34 blue-collar divorced professional.course no no yes
## 1538 39 services divorced high.school no yes no
## 1539 37 services married high.school no no no
## 1540 45 blue-collar married high.school no yes no
## 1541 49 admin. married university.degree no yes yes
## 1542 43 blue-collar married basic.4y unknown no no
## 1543 40 management married high.school no no no
## 1544 42 admin. married university.degree no yes no
## 1545 47 services single high.school no no no
## 1546 56 entrepreneur married university.degree no yes no
## 1547 43 management married university.degree no no no
## 1548 34 blue-collar married basic.9y no no no
## 1549 29 admin. divorced university.degree no no no
## 1550 53 entrepreneur married university.degree no yes no
## 1551 50 entrepreneur married basic.9y no yes no
## 1552 51 self-employed married university.degree unknown no no
## 1553 20 entrepreneur single high.school no no no
## 1554 41 blue-collar married professional.course unknown yes no
## 1555 47 blue-collar married basic.9y no yes no
## 1556 48 technician married professional.course no yes no
## 1557 29 entrepreneur married university.degree no yes no
## 1558 28 technician single professional.course no yes yes
## 1559 31 blue-collar single professional.course no no no
## 1560 29 blue-collar single basic.6y no no no
## 1561 42 blue-collar married basic.4y unknown yes no
## 1562 40 blue-collar single basic.6y unknown no no
## 1563 33 management married university.degree no no no
## 1564 33 services single professional.course no no no
## 1565 34 management divorced basic.6y unknown yes no
## 1566 36 admin. married high.school no yes no
## 1567 35 admin. married university.degree no yes no
## 1568 38 technician divorced professional.course no yes no
## 1569 31 blue-collar single basic.9y no no no
## 1570 30 blue-collar married basic.6y no no no
## 1571 42 admin. single university.degree no no no
## 1572 27 technician single high.school no yes no
## 1573 39 retired single high.school no no no
## 1574 38 admin. married high.school no yes no
## 1575 30 management married university.degree no yes no
## 1576 52 housemaid married university.degree no yes no
## 1577 38 admin. married high.school no yes no
## 1578 54 technician married basic.9y no no no
## 1579 29 admin. single university.degree no yes no
## 1580 32 blue-collar married basic.9y unknown no no
## 1581 28 admin. married high.school no no no
## 1582 30 admin. married high.school no yes no
## 1583 44 technician married professional.course unknown no yes
## 1584 37 blue-collar married basic.4y no no no
## 1585 48 admin. married professional.course unknown yes no
## 1586 25 blue-collar married professional.course unknown no no
## 1587 49 blue-collar married basic.4y unknown no no
## 1588 60 technician married university.degree unknown yes no
## 1589 29 admin. single high.school no no no
## 1590 55 technician married basic.9y unknown unknown unknown
## 1591 41 blue-collar married basic.9y unknown yes no
## 1592 39 services single high.school no no no
## 1593 39 management married high.school no no no
## 1594 31 admin. married university.degree no yes no
## 1595 38 services married high.school no no no
## 1596 32 technician married university.degree no yes no
## 1597 53 housemaid divorced basic.6y unknown unknown unknown
## 1598 37 admin. married high.school no unknown unknown
## 1599 34 self-employed married professional.course no unknown unknown
## 1600 31 admin. married high.school no yes yes
## 1601 39 unemployed married high.school no no no
## 1602 39 unemployed married high.school no yes no
## 1603 39 unemployed married high.school no yes no
## 1604 37 admin. married high.school no yes no
## 1605 30 blue-collar married basic.4y no no no
## 1606 32 blue-collar married professional.course no no no
## 1607 37 technician married basic.9y no no no
## 1608 27 blue-collar married university.degree no no yes
## 1609 32 unknown unknown university.degree no no no
## 1610 33 blue-collar single basic.9y no yes no
## 1611 47 blue-collar single basic.4y no no no
## 1612 40 blue-collar married basic.9y unknown no no
## 1613 38 blue-collar married basic.4y unknown yes yes
## 1614 33 services married high.school unknown no no
## 1615 54 admin. married university.degree no no no
## 1616 51 services married high.school no yes no
## 1617 41 blue-collar single basic.9y no yes no
## 1618 51 blue-collar married high.school no no no
## 1619 55 services married high.school no yes no
## 1620 39 admin. single high.school no yes no
## 1621 37 self-employed married basic.9y no yes yes
## 1622 39 blue-collar married basic.9y no yes no
## 1623 33 management married university.degree no no yes
## 1624 33 management married university.degree no no no
## 1625 59 management married university.degree no no no
## 1626 55 technician married basic.9y unknown yes no
## 1627 53 blue-collar married basic.9y unknown yes no
## 1628 36 services married basic.6y no no no
## 1629 40 services married high.school no no no
## 1630 37 technician single professional.course no no no
## 1631 56 housemaid divorced high.school no no no
## 1632 32 admin. married high.school no yes no
## 1633 38 management married basic.9y unknown no no
## 1634 28 services married high.school unknown no no
## 1635 30 blue-collar married basic.9y no yes no
## 1636 45 management married basic.4y unknown yes no
## 1637 60 housemaid married high.school unknown no no
## 1638 32 student single university.degree no no no
## 1639 39 unemployed single basic.9y unknown yes no
## 1640 56 services married basic.4y unknown yes yes
## 1641 31 blue-collar married basic.9y no no no
## 1642 20 entrepreneur single high.school no no no
## 1643 42 blue-collar married basic.6y no no no
## 1644 46 admin. married university.degree no yes yes
## 1645 28 technician single university.degree unknown no no
## 1646 41 admin. single university.degree no no no
## 1647 33 admin. divorced basic.9y no no no
## 1648 43 admin. married university.degree unknown yes no
## 1649 43 admin. married university.degree unknown no no
## 1650 47 unemployed married high.school unknown yes no
## 1651 24 technician single professional.course no no no
## 1652 31 blue-collar married basic.4y no no no
## 1653 25 services divorced high.school no no no
## 1654 35 blue-collar married basic.6y no unknown unknown
## 1655 58 blue-collar married basic.4y unknown no no
## 1656 35 blue-collar married professional.course no yes yes
## 1657 35 blue-collar married basic.9y no no no
## 1658 25 admin. married high.school no no no
## 1659 31 blue-collar married basic.4y no no no
## 1660 39 admin. married basic.9y no no no
## 1661 39 blue-collar married basic.6y unknown yes yes
## 1662 37 blue-collar married basic.9y no yes yes
## 1663 36 unemployed divorced professional.course unknown yes no
## 1664 45 unemployed married high.school unknown yes no
## 1665 30 blue-collar married basic.9y no yes yes
## 1666 60 retired married high.school no no no
## 1667 37 admin. divorced university.degree no no no
## 1668 28 services single high.school no yes yes
## 1669 45 admin. married basic.9y unknown yes no
## 1670 31 entrepreneur single basic.9y no no no
## 1671 49 unemployed single professional.course unknown no no
## 1672 46 unknown married basic.4y unknown no no
## 1673 36 services divorced university.degree no no no
## 1674 33 technician divorced professional.course no yes no
## 1675 27 services single high.school unknown no no
## 1676 60 retired married university.degree unknown no no
## 1677 60 retired married university.degree unknown yes no
## 1678 27 services single high.school unknown no no
## 1679 39 blue-collar married high.school no yes no
## 1680 39 services married high.school no yes no
## 1681 35 unknown single basic.4y unknown no no
## 1682 56 admin. single high.school no no no
## 1683 39 admin. married university.degree no yes no
## 1684 35 entrepreneur married basic.9y no no no
## 1685 35 technician divorced high.school no no no
## 1686 58 management married unknown unknown yes no
## 1687 29 management single university.degree no yes no
## 1688 32 blue-collar married high.school no no yes
## 1689 35 management married university.degree no yes yes
## 1690 26 admin. married high.school no yes yes
## 1691 31 technician married professional.course no no no
## 1692 33 blue-collar married basic.6y unknown yes yes
## 1693 39 blue-collar divorced basic.9y no yes no
## 1694 49 blue-collar married basic.6y unknown yes no
## 1695 31 admin. married high.school no no no
## 1696 31 admin. married high.school unknown no no
## 1697 49 blue-collar married basic.4y no no no
## 1698 49 blue-collar married basic.4y no no no
## 1699 31 entrepreneur married basic.9y unknown no no
## 1700 36 management married basic.9y no no no
## 1701 52 management married professional.course no no no
## 1702 37 blue-collar single unknown unknown no no
## 1703 40 blue-collar divorced basic.9y no no no
## 1704 36 blue-collar single basic.4y no no no
## 1705 34 technician single professional.course unknown no no
## 1706 39 management single university.degree no no no
## 1707 39 management single university.degree no no no
## 1708 58 retired divorced university.degree no yes no
## 1709 56 services married high.school unknown no no
## 1710 29 blue-collar single basic.9y no no no
## 1711 39 admin. married high.school no no no
## 1712 31 technician married professional.course no no no
## 1713 60 management married university.degree unknown no no
## 1714 39 blue-collar married basic.6y no yes no
## 1715 49 admin. divorced high.school no yes no
## 1716 45 unemployed married high.school unknown no no
## 1717 32 blue-collar married high.school unknown yes no
## 1718 41 technician married high.school no no no
## 1719 32 services married high.school no no no
## 1720 46 services married professional.course no no no
## 1721 28 services single basic.9y unknown no no
## 1722 51 blue-collar married basic.9y no no no
## 1723 50 services single high.school no no no
## 1724 35 admin. married professional.course no yes yes
## 1725 24 services single high.school no yes no
## 1726 51 blue-collar married basic.9y no no yes
## 1727 59 admin. married university.degree no no yes
## 1728 33 technician married professional.course no no no
## 1729 36 unemployed single basic.4y unknown no no
## 1730 24 services single high.school no no no
## 1731 30 blue-collar single basic.9y no yes no
## 1732 49 admin. married university.degree unknown no no
## 1733 38 technician married professional.course no yes no
## 1734 34 admin. married university.degree no yes no
## 1735 25 technician single professional.course no yes yes
## 1736 35 unemployed married basic.9y unknown no no
## 1737 43 entrepreneur married high.school unknown yes no
## 1738 36 unemployed single basic.4y unknown no no
## 1739 36 unemployed single basic.4y unknown no no
## 1740 37 technician married professional.course unknown yes no
## 1741 36 self-employed married university.degree no no no
## 1742 32 admin. divorced high.school no yes no
## 1743 33 blue-collar single high.school no no no
## 1744 42 services married high.school no no no
## 1745 37 admin. married high.school no yes yes
## 1746 35 admin. married high.school no no no
## 1747 50 admin. married high.school unknown yes yes
## 1748 48 admin. married high.school no yes yes
## 1749 50 management single university.degree no yes yes
## 1750 39 technician divorced professional.course no yes no
## 1751 33 management single university.degree no no no
## 1752 29 admin. married high.school no no no
## 1753 33 admin. married high.school no yes no
## 1754 41 admin. single university.degree no yes no
## 1755 46 blue-collar married basic.4y no yes no
## 1756 27 services single high.school unknown no no
## 1757 42 admin. single basic.9y no no no
## 1758 44 admin. married high.school no yes no
## 1759 37 housemaid married high.school unknown no yes
## 1760 24 services single high.school no no yes
## 1761 30 blue-collar married basic.6y unknown yes no
## 1762 53 management married basic.4y no yes no
## 1763 36 entrepreneur married university.degree no no yes
## 1764 24 services single high.school no yes no
## 1765 49 entrepreneur married high.school no no no
## 1766 41 blue-collar married high.school no yes no
## 1767 40 admin. married high.school no yes yes
## 1768 40 housemaid married basic.4y no yes yes
## 1769 49 entrepreneur married high.school no no no
## 1770 25 admin. single high.school no yes no
## 1771 34 management married university.degree no yes no
## 1772 34 technician married professional.course no yes yes
## 1773 28 blue-collar single basic.6y no no no
## 1774 39 admin. married basic.9y no yes no
## 1775 34 technician married professional.course no no yes
## 1776 36 technician married professional.course no no no
## 1777 60 technician divorced professional.course unknown yes no
## 1778 32 retired married high.school no no no
## 1779 40 housemaid divorced high.school no no no
## 1780 56 blue-collar married basic.6y unknown no no
## 1781 36 technician married professional.course no yes no
## 1782 27 entrepreneur married university.degree no no no
## 1783 33 blue-collar single basic.9y unknown yes yes
## 1784 36 technician married professional.course no no yes
## 1785 47 blue-collar married basic.4y no no no
## 1786 47 blue-collar married basic.4y no yes no
## 1787 40 unemployed married basic.9y no yes yes
## 1788 30 blue-collar married basic.9y no yes no
## 1789 37 housemaid married basic.4y unknown yes yes
## 1790 39 technician married professional.course no no no
## 1791 58 blue-collar married basic.9y no no no
## 1792 32 admin. married university.degree no no yes
## 1793 34 blue-collar married basic.9y unknown yes no
## 1794 43 blue-collar married basic.4y unknown no no
## 1795 30 technician married professional.course no yes no
## 1796 52 admin. married university.degree no no no
## 1797 46 blue-collar divorced basic.9y no yes no
## 1798 32 admin. single university.degree no yes yes
## 1799 53 self-employed married university.degree no no no
## 1800 45 blue-collar married basic.9y unknown no no
## 1801 31 blue-collar married basic.9y no no no
## 1802 51 technician married professional.course no no no
## 1803 45 admin. married high.school no no yes
## 1804 32 admin. married high.school no no no
## 1805 43 admin. married high.school no yes no
## 1806 34 admin. married high.school no yes yes
## 1807 25 blue-collar single basic.4y no yes no
## 1808 41 management married unknown no yes no
## 1809 25 blue-collar single basic.4y no no no
## 1810 43 admin. married university.degree unknown yes no
## 1811 34 blue-collar married basic.9y unknown yes no
## 1812 44 admin. married basic.9y no no no
## 1813 59 admin. married university.degree no no no
## 1814 39 technician divorced professional.course no no no
## 1815 52 management married high.school unknown yes no
## 1816 50 blue-collar married basic.4y unknown unknown unknown
## 1817 42 admin. divorced university.degree no yes no
## 1818 30 technician married university.degree no no no
## 1819 49 services married high.school no yes no
## 1820 44 blue-collar single basic.6y unknown yes no
## 1821 41 technician married university.degree no yes no
## 1822 27 services single high.school no yes no
## 1823 32 admin. single university.degree no yes no
## 1824 27 admin. single high.school no yes no
## 1825 29 management single university.degree no no no
## 1826 53 admin. married university.degree unknown yes no
## 1827 30 blue-collar single basic.9y no yes no
## 1828 29 management single university.degree no yes no
## 1829 32 technician single university.degree no no no
## 1830 55 admin. divorced university.degree no yes no
## 1831 39 admin. married university.degree no yes no
## 1832 37 blue-collar single high.school no no no
## 1833 26 admin. married university.degree no yes yes
## 1834 52 self-employed married university.degree no no no
## 1835 28 admin. single university.degree no yes no
## 1836 33 management single university.degree no yes yes
## 1837 60 management married university.degree unknown no no
## 1838 45 blue-collar married basic.4y unknown yes yes
## 1839 32 admin. single university.degree no yes yes
## 1840 50 unemployed married basic.9y no yes no
## 1841 47 management divorced basic.4y no no no
## 1842 40 technician married university.degree no no no
## 1843 45 services married high.school no no no
## 1844 52 blue-collar married basic.9y unknown yes no
## 1845 43 management married unknown no no no
## 1846 40 blue-collar married basic.6y unknown yes no
## 1847 43 blue-collar single basic.9y no yes no
## 1848 28 blue-collar single basic.9y no yes no
## 1849 36 technician married professional.course no yes no
## 1850 37 services married high.school no yes no
## 1851 32 admin. single university.degree no no no
## 1852 26 technician married high.school no yes no
## 1853 35 admin. married high.school no yes no
## 1854 56 admin. married university.degree no no no
## 1855 56 blue-collar married basic.4y unknown no no
## 1856 37 entrepreneur single university.degree no no no
## 1857 43 technician single professional.course no no no
## 1858 41 housemaid married high.school no yes no
## 1859 55 unemployed single basic.4y unknown unknown unknown
## 1860 43 technician single professional.course no no no
## 1861 29 unknown married university.degree no unknown unknown
## 1862 31 services married high.school no yes no
## 1863 39 admin. single university.degree no no no
## 1864 38 blue-collar single basic.9y unknown yes no
## 1865 56 admin. married high.school no yes no
## 1866 36 entrepreneur married unknown unknown yes no
## 1867 54 management married basic.4y unknown no no
## 1868 34 admin. married university.degree no yes no
## 1869 28 services single basic.9y unknown yes no
## 1870 34 blue-collar married basic.4y no yes no
## 1871 45 blue-collar married basic.9y no yes no
## 1872 59 admin. married university.degree no yes no
## 1873 46 blue-collar married professional.course no yes no
## 1874 25 blue-collar married basic.9y no yes no
## 1875 33 admin. divorced university.degree no no yes
## 1876 27 admin. married university.degree no yes no
## 1877 33 admin. divorced university.degree no no no
## 1878 56 blue-collar married basic.4y unknown yes no
## 1879 25 admin. married high.school no yes no
## 1880 30 housemaid married high.school unknown yes no
## 1881 38 blue-collar divorced basic.9y no no yes
## 1882 37 self-employed single university.degree unknown yes no
## 1883 58 entrepreneur married university.degree unknown no no
## 1884 28 blue-collar married basic.6y unknown no no
## 1885 42 blue-collar married basic.9y unknown no no
## 1886 36 technician single professional.course unknown no no
## 1887 52 management married professional.course no unknown unknown
## 1888 33 technician single high.school no no yes
## 1889 33 management single university.degree no no no
## 1890 29 blue-collar single high.school unknown no no
## 1891 34 blue-collar married basic.9y no yes no
## 1892 50 management single university.degree no yes no
## 1893 38 management married university.degree no no no
## 1894 33 services married high.school no no no
## 1895 42 admin. married university.degree no no no
## 1896 52 self-employed married university.degree no yes no
## 1897 28 blue-collar married basic.9y unknown yes no
## 1898 56 services married high.school unknown yes no
## 1899 35 technician married professional.course no no no
## 1900 33 admin. married high.school unknown yes no
## 1901 32 blue-collar married basic.9y no yes no
## 1902 50 retired married basic.4y unknown yes no
## 1903 29 admin. single basic.9y unknown no no
## 1904 30 technician married professional.course no no yes
## 1905 46 blue-collar married basic.9y no yes yes
## 1906 26 admin. single high.school unknown yes no
## 1907 34 admin. single basic.9y no no no
## 1908 46 self-employed married basic.9y unknown yes no
## 1909 33 management married high.school no yes no
## 1910 50 housemaid divorced high.school no no no
## 1911 31 technician single basic.9y unknown no no
## 1912 48 blue-collar married professional.course no no no
## 1913 57 entrepreneur married high.school unknown yes no
## 1914 45 admin. divorced basic.9y unknown no no
## 1915 50 services married professional.course unknown yes no
## 1916 44 unknown single basic.9y unknown unknown unknown
## 1917 44 services married high.school no no no
## 1918 32 services married high.school no yes no
## 1919 37 housemaid single basic.9y unknown yes yes
## 1920 34 admin. single high.school no no no
## 1921 27 services married basic.9y no yes no
## 1922 40 housemaid single university.degree no yes no
## 1923 39 services married high.school unknown no yes
## 1924 29 admin. married high.school no yes no
## 1925 34 blue-collar married basic.6y unknown yes yes
## 1926 25 blue-collar married basic.9y no no no
## 1927 29 services married basic.9y no no no
## 1928 44 technician single professional.course no no no
## 1929 33 admin. single university.degree no yes no
## 1930 33 blue-collar married basic.4y no yes no
## 1931 40 blue-collar married high.school no no no
## 1932 59 retired married basic.4y unknown no no
## 1933 38 technician single professional.course no no no
## 1934 41 blue-collar married basic.6y unknown no no
## 1935 33 services married high.school no yes no
## 1936 36 admin. married high.school no yes no
## 1937 48 admin. married basic.9y no no yes
## 1938 44 services divorced high.school unknown yes no
## 1939 50 blue-collar divorced basic.9y no no no
## 1940 35 self-employed married professional.course no no no
## 1941 51 entrepreneur married basic.4y unknown no no
## 1942 24 blue-collar married basic.9y no yes yes
## 1943 32 management married high.school no yes no
## 1944 56 services divorced high.school unknown no no
## 1945 50 technician married university.degree no yes no
## 1946 38 blue-collar married high.school no no no
## 1947 25 self-employed single university.degree no unknown unknown
## 1948 28 services single high.school no unknown unknown
## 1949 41 blue-collar married basic.4y no no no
## 1950 34 blue-collar married unknown unknown unknown unknown
## 1951 27 services single high.school no no no
## 1952 31 admin. married university.degree unknown no no
## 1953 39 housemaid married basic.4y no yes yes
## 1954 26 entrepreneur married unknown no no no
## 1955 37 blue-collar married basic.6y unknown yes yes
## 1956 25 student single high.school no no no
## 1957 33 services married high.school no yes no
## 1958 40 blue-collar married unknown no no no
## 1959 37 entrepreneur single university.degree no no no
## 1960 46 housemaid married basic.9y no no no
## 1961 53 admin. divorced high.school no yes no
## 1962 32 unemployed married basic.9y no no no
## 1963 43 services divorced basic.9y no yes no
## 1964 38 technician single professional.course no yes no
## 1965 26 technician married professional.course no yes no
## 1966 52 blue-collar single basic.9y unknown yes no
## 1967 54 admin. married basic.4y unknown no no
## 1968 51 services married professional.course unknown no no
## 1969 42 admin. married basic.9y no yes no
## 1970 41 management single unknown no no no
## 1971 26 services single high.school no no no
## 1972 38 housemaid married basic.6y unknown yes no
## 1973 54 technician married unknown unknown no no
## 1974 41 blue-collar divorced basic.4y no no no
## 1975 26 blue-collar single high.school no no no
## 1976 43 management married basic.4y no yes no
## 1977 28 technician single professional.course no yes no
## 1978 35 technician divorced professional.course no no yes
## 1979 45 admin. married high.school no no yes
## 1980 40 admin. married high.school no no no
## 1981 37 technician married professional.course no yes no
## 1982 52 technician married university.degree no no no
## 1983 36 admin. married high.school no yes no
## 1984 40 blue-collar married basic.9y unknown yes no
## 1985 43 blue-collar married basic.4y no yes no
## 1986 36 blue-collar married basic.6y unknown no no
## 1987 36 blue-collar single high.school no no yes
## 1988 43 blue-collar married basic.4y unknown yes yes
## 1989 44 blue-collar married basic.9y unknown yes no
## 1990 49 blue-collar married professional.course unknown no no
## 1991 56 retired married basic.4y unknown yes yes
## 1992 39 blue-collar divorced basic.9y no no no
## 1993 29 blue-collar married professional.course unknown yes no
## 1994 41 admin. single university.degree unknown no no
## 1995 47 admin. married university.degree no yes no
## 1996 38 blue-collar married basic.6y unknown yes no
## 1997 36 technician married high.school no yes no
## 1998 46 technician divorced professional.course no yes no
## 1999 47 services divorced high.school no yes no
## 2000 47 blue-collar single basic.4y no yes no
## 2001 42 self-employed married university.degree no yes no
## 2002 42 management married university.degree unknown yes no
## 2003 59 management married university.degree no no no
## 2004 33 unemployed married professional.course unknown yes no
## 2005 48 entrepreneur married high.school no yes no
## 2006 53 technician single professional.course no yes no
## 2007 57 blue-collar married unknown unknown unknown unknown
## 2008 34 services married high.school unknown yes no
## 2009 51 services divorced professional.course no yes no
## 2010 39 blue-collar married basic.6y unknown yes no
## 2011 45 unknown married unknown unknown no no
## 2012 37 admin. married high.school no yes no
## 2013 44 blue-collar married basic.6y no yes no
## 2014 48 admin. married university.degree no no yes
## 2015 59 retired married university.degree unknown no no
## 2016 44 admin. single high.school no no no
## 2017 50 blue-collar married basic.9y unknown yes no
## 2018 35 services married high.school no yes no
## 2019 53 self-employed married university.degree no no no
## 2020 41 technician married professional.course unknown no no
## 2021 55 admin. married high.school no yes yes
## 2022 36 blue-collar married basic.4y unknown no no
## 2023 37 blue-collar married basic.4y no yes no
## 2024 36 management divorced high.school no no no
## 2025 45 management married basic.9y no yes yes
## 2026 35 admin. single basic.6y no yes no
## 2027 32 admin. married high.school no yes no
## 2028 43 blue-collar married basic.6y unknown yes no
## 2029 36 entrepreneur married university.degree no yes no
## 2030 55 admin. divorced university.degree no yes no
## 2031 55 technician divorced professional.course unknown yes no
## 2032 54 services married basic.4y unknown yes no
## 2033 39 housemaid married university.degree no yes no
## 2034 40 technician married professional.course unknown no no
## 2035 49 services married high.school unknown unknown unknown
## 2036 45 unemployed married high.school unknown no no
## 2037 32 admin. single university.degree no no no
## 2038 57 management divorced university.degree no yes no
## 2039 41 admin. divorced high.school no no no
## 2040 24 services single high.school no no no
## 2041 49 management divorced high.school unknown yes no
## 2042 49 management divorced high.school unknown no no
## 2043 59 retired single university.degree no no no
## 2044 44 blue-collar married professional.course no no no
## 2045 43 management married basic.6y unknown no no
## 2046 59 blue-collar married basic.4y unknown no no
## 2047 36 unemployed married unknown unknown no no
## 2048 49 technician divorced basic.9y unknown yes no
## 2049 39 entrepreneur divorced high.school no no no
## 2050 39 entrepreneur divorced high.school no no no
## 2051 33 blue-collar single high.school no no no
## 2052 42 blue-collar married professional.course no yes no
## 2053 33 management married university.degree no no no
## 2054 51 blue-collar married basic.4y unknown no no
## 2055 29 management single university.degree no yes yes
## 2056 35 admin. married university.degree no yes no
## 2057 29 student single high.school unknown no no
## 2058 34 management married university.degree unknown no no
## 2059 33 services married high.school unknown no no
## 2060 54 management divorced university.degree no no no
## 2061 56 services divorced high.school unknown no no
## 2062 34 blue-collar married basic.4y no yes no
## 2063 51 blue-collar married basic.4y no yes yes
## 2064 33 blue-collar married professional.course no no no
## 2065 39 admin. married university.degree no no no
## 2066 32 blue-collar married professional.course no no no
## 2067 37 admin. married university.degree unknown yes no
## 2068 47 technician divorced university.degree no no no
## 2069 26 technician married university.degree no no no
## 2070 26 self-employed married university.degree no no no
## 2071 25 blue-collar married high.school no no no
## 2072 52 entrepreneur married university.degree unknown no no
## 2073 59 blue-collar married basic.4y unknown no no
## 2074 39 blue-collar divorced high.school no no no
## 2075 31 blue-collar married basic.4y unknown no no
## 2076 56 housemaid divorced basic.4y unknown no no
## 2077 29 technician single university.degree no no no
## 2078 36 technician married university.degree no yes yes
## 2079 44 blue-collar married basic.4y unknown no no
## 2080 31 admin. divorced high.school no no no
## 2081 40 housemaid single university.degree no no yes
## 2082 34 technician single university.degree unknown no no
## 2083 56 entrepreneur married basic.4y no no no
## 2084 46 blue-collar married basic.4y unknown no yes
## 2085 38 services divorced high.school no no no
## 2086 42 management married university.degree no yes no
## 2087 42 management married university.degree no no no
## 2088 40 services married high.school unknown no no
## 2089 47 blue-collar married basic.4y unknown no no
## 2090 44 blue-collar married professional.course unknown yes no
## 2091 48 services married high.school no no no
## 2092 36 blue-collar single basic.9y no yes no
## 2093 31 blue-collar married basic.9y unknown yes no
## 2094 30 technician married university.degree no no no
## 2095 29 admin. single basic.9y unknown no no
## 2096 40 self-employed married university.degree unknown no no
## 2097 39 unemployed married university.degree no yes no
## 2098 35 technician married professional.course no yes no
## 2099 33 entrepreneur married high.school no no no
## 2100 48 unemployed married high.school unknown yes yes
## 2101 39 technician married professional.course no yes no
## 2102 41 admin. married university.degree no yes yes
## 2103 28 management single unknown no no no
## 2104 34 housemaid married university.degree no no no
## 2105 41 admin. single unknown no yes yes
## 2106 27 admin. single high.school unknown unknown unknown
## 2107 27 blue-collar married basic.9y unknown no no
## 2108 30 technician single professional.course no no no
## 2109 41 services married high.school unknown yes yes
## 2110 38 blue-collar married professional.course no no no
## 2111 37 entrepreneur single university.degree no yes no
## 2112 34 admin. single university.degree no yes no
## 2113 33 technician married basic.9y no yes no
## 2114 36 blue-collar single basic.9y unknown yes no
## 2115 33 technician married basic.9y no yes no
## 2116 36 technician married high.school no yes no
## 2117 33 technician married basic.9y no no no
## 2118 28 student single university.degree unknown yes no
## 2119 28 student single university.degree unknown yes no
## 2120 38 technician married professional.course no no no
## 2121 50 management divorced professional.course no no no
## 2122 32 management married high.school no yes no
## 2123 45 blue-collar married basic.4y no no no
## 2124 36 admin. married university.degree no no no
## 2125 30 blue-collar single basic.9y unknown unknown unknown
## 2126 41 blue-collar married basic.9y unknown no no
## 2127 34 blue-collar single basic.6y unknown yes no
## 2128 57 retired single high.school no no no
## 2129 50 blue-collar married high.school unknown no no
## 2130 57 retired single high.school no yes yes
## 2131 32 blue-collar married basic.4y unknown no no
## 2132 44 blue-collar married basic.4y no yes yes
## 2133 57 retired single high.school no unknown unknown
## 2134 46 technician married basic.9y no no no
## 2135 44 services married basic.4y unknown yes no
## 2136 32 blue-collar single basic.9y no no no
## 2137 41 entrepreneur married basic.6y no no no
## 2138 38 unemployed married basic.9y unknown no no
## 2139 33 technician married basic.9y no no no
## 2140 30 blue-collar single basic.9y no yes yes
## 2141 37 blue-collar divorced basic.4y unknown yes no
## 2142 51 blue-collar married basic.9y no no no
## 2143 52 management married university.degree unknown no no
## 2144 39 blue-collar married basic.9y no no no
## 2145 50 management married basic.9y no no no
## 2146 53 retired divorced basic.4y no no no
## 2147 51 technician married professional.course no yes yes
## 2148 40 admin. single university.degree no yes no
## 2149 55 blue-collar married basic.4y unknown yes no
## 2150 42 unemployed married basic.4y unknown yes no
## 2151 47 admin. divorced university.degree no yes no
## 2152 33 blue-collar married basic.9y unknown yes no
## 2153 37 self-employed divorced university.degree no yes yes
## 2154 37 self-employed divorced university.degree no yes no
## 2155 45 blue-collar married basic.4y unknown yes no
## 2156 30 admin. single high.school no unknown unknown
## 2157 30 admin. single high.school no no no
## 2158 38 blue-collar married basic.6y no no no
## 2159 31 services married high.school no yes no
## 2160 48 blue-collar married basic.9y no yes no
## 2161 29 admin. single high.school no yes no
## 2162 44 blue-collar married basic.9y unknown yes no
## 2163 38 blue-collar single basic.9y unknown yes no
## 2164 48 blue-collar married basic.9y no yes no
## 2165 41 blue-collar married basic.4y no yes no
## 2166 32 services married high.school no unknown unknown
## 2167 56 admin. married high.school no yes no
## 2168 39 technician married university.degree no yes no
## 2169 33 technician married professional.course no yes no
## 2170 31 admin. married high.school no no no
## 2171 54 retired divorced professional.course no no no
## 2172 26 services divorced professional.course no no no
## 2173 54 blue-collar married professional.course unknown yes yes
## 2174 45 management married professional.course no no no
## 2175 41 blue-collar divorced basic.6y no yes no
## 2176 35 admin. single university.degree no no yes
## 2177 28 admin. married high.school no yes no
## 2178 34 self-employed married university.degree no yes yes
## 2179 57 retired single high.school no no no
## 2180 35 admin. married high.school unknown no no
## 2181 39 technician married basic.6y no no yes
## 2182 30 services married professional.course unknown no no
## 2183 35 blue-collar married basic.9y no no no
## 2184 58 management married university.degree no no no
## 2185 34 blue-collar married basic.9y no no yes
## 2186 29 management single university.degree no yes no
## 2187 37 admin. married basic.4y no yes no
## 2188 25 blue-collar married basic.9y no yes no
## 2189 31 blue-collar married basic.9y no unknown unknown
## 2190 56 admin. married basic.9y unknown no no
## 2191 39 services married professional.course no no no
## 2192 27 blue-collar married basic.9y unknown no no
## 2193 52 management married university.degree unknown no no
## 2194 39 technician married university.degree no yes no
## 2195 34 management single university.degree no no no
## 2196 47 services divorced high.school no no no
## 2197 31 blue-collar married basic.6y no yes no
## 2198 33 admin. married high.school no yes yes
## 2199 36 blue-collar married basic.6y unknown no no
## 2200 31 services single high.school no unknown unknown
## 2201 36 blue-collar married basic.6y unknown yes no
## 2202 57 blue-collar married basic.4y unknown yes no
## 2203 41 management married high.school no no no
## 2204 40 admin. married basic.9y unknown yes yes
## 2205 40 services married high.school unknown yes no
## 2206 29 blue-collar married basic.9y no no no
## 2207 39 blue-collar married basic.9y no no no
## 2208 31 blue-collar single high.school unknown yes no
## 2209 50 blue-collar married basic.4y unknown yes no
## 2210 47 blue-collar married basic.4y no unknown unknown
## 2211 37 admin. married unknown no no no
## 2212 37 admin. married high.school no yes no
## 2213 32 unemployed married basic.9y no unknown unknown
## 2214 56 admin. married high.school no yes yes
## 2215 36 services married high.school unknown yes no
## 2216 51 technician married professional.course no yes no
## 2217 47 blue-collar divorced basic.4y no no yes
## 2218 54 technician married university.degree unknown no yes
## 2219 41 blue-collar married basic.4y unknown no no
## 2220 44 blue-collar married high.school unknown yes no
## 2221 41 admin. single university.degree unknown yes yes
## 2222 57 services divorced high.school no no no
## 2223 44 blue-collar married high.school no no no
## 2224 42 admin. single unknown no no no
## 2225 46 admin. divorced university.degree unknown no no
## 2226 35 services married high.school no no no
## 2227 54 unknown married unknown unknown no no
## 2228 35 admin. single basic.4y unknown no no
## 2229 37 technician married basic.9y unknown yes no
## 2230 52 housemaid married basic.4y unknown yes no
## 2231 41 admin. married basic.9y unknown yes no
## 2232 31 technician married professional.course no no no
## 2233 40 blue-collar divorced basic.6y no no no
## 2234 45 entrepreneur married basic.9y no no no
## 2235 47 management married university.degree no no no
## 2236 39 admin. married high.school no unknown unknown
## 2237 45 admin. divorced university.degree unknown yes no
## 2238 26 admin. single high.school no yes no
## 2239 36 blue-collar single basic.4y no yes no
## 2240 33 blue-collar married basic.9y no no no
## 2241 38 management married university.degree no yes no
## 2242 50 blue-collar married basic.4y unknown yes no
## 2243 37 blue-collar single high.school no no no
## 2244 39 blue-collar married basic.9y no no no
## 2245 36 admin. single high.school no yes yes
## 2246 35 admin. married high.school no yes no
## 2247 31 blue-collar married basic.9y no yes no
## 2248 31 unemployed single professional.course no no no
## 2249 32 blue-collar married basic.9y no no no
## 2250 51 entrepreneur divorced unknown no yes no
## 2251 39 blue-collar divorced basic.9y no yes no
## 2252 25 services married high.school no yes no
## 2253 40 housemaid single university.degree no no no
## 2254 28 services married high.school no yes no
## 2255 29 management married university.degree no no no
## 2256 57 blue-collar married professional.course unknown unknown unknown
## 2257 53 blue-collar married basic.9y unknown no no
## 2258 39 blue-collar married basic.9y unknown no no
## 2259 60 technician divorced professional.course unknown yes no
## 2260 42 blue-collar married basic.4y unknown no no
## 2261 30 admin. married university.degree no yes no
## 2262 34 technician married university.degree no no no
## 2263 43 technician single professional.course no no no
## 2264 38 blue-collar married basic.6y no yes no
## 2265 35 admin. single university.degree no yes no
## 2266 26 admin. single high.school no no no
## 2267 31 blue-collar married basic.9y no yes no
## 2268 55 unemployed married basic.4y unknown yes no
## 2269 59 housemaid married basic.4y unknown no yes
## 2270 28 blue-collar single basic.9y no unknown unknown
## 2271 48 blue-collar married basic.9y no yes no
## 2272 37 services married basic.9y no yes no
## 2273 35 blue-collar married basic.6y unknown no no
## 2274 30 admin. single high.school no yes yes
## 2275 30 admin. single high.school no no no
## 2276 32 admin. single university.degree unknown no no
## 2277 53 admin. married high.school no yes no
## 2278 34 blue-collar married basic.4y no no no
## 2279 51 unemployed married basic.9y unknown yes no
## 2280 43 admin. married high.school no yes no
## 2281 54 retired divorced basic.4y no yes no
## 2282 45 services single professional.course unknown no no
## 2283 46 management single university.degree no no no
## 2284 57 admin. divorced university.degree no yes no
## 2285 34 admin. divorced university.degree no no no
## 2286 33 housemaid married basic.4y no no no
## 2287 48 admin. married high.school no yes no
## 2288 37 unknown married university.degree no no yes
## 2289 33 self-employed married university.degree no yes no
## 2290 36 admin. single university.degree no no yes
## 2291 48 unknown married basic.4y unknown no no
## 2292 28 blue-collar single basic.9y no yes no
## 2293 30 admin. single university.degree no yes no
## 2294 31 management single university.degree no no no
## 2295 51 unemployed married basic.9y unknown no no
## 2296 26 admin. married high.school unknown no no
## 2297 40 blue-collar married basic.6y unknown no no
## 2298 40 blue-collar married basic.6y unknown yes no
## 2299 51 blue-collar divorced basic.4y no no no
## 2300 30 blue-collar single basic.9y no yes no
## 2301 34 entrepreneur married professional.course no yes no
## 2302 51 blue-collar divorced basic.4y no no no
## 2303 39 admin. single high.school unknown no no
## 2304 57 blue-collar married basic.4y unknown no yes
## 2305 33 technician divorced high.school no no no
## 2306 33 management married basic.4y no yes yes
## 2307 22 blue-collar single basic.6y unknown unknown unknown
## 2308 38 admin. married university.degree no unknown unknown
## 2309 56 technician married basic.4y unknown unknown unknown
## 2310 45 services married high.school no no no
## 2311 50 technician married professional.course no no no
## 2312 28 admin. married university.degree no yes no
## 2313 53 technician married professional.course unknown yes no
## 2314 39 self-employed married basic.4y unknown yes no
## 2315 33 technician divorced professional.course no no no
## 2316 38 management married basic.9y no yes no
## 2317 35 admin. single high.school no yes yes
## 2318 28 blue-collar married basic.9y unknown no no
## 2319 30 technician single university.degree unknown no no
## 2320 37 admin. single university.degree no no no
## 2321 42 housemaid married high.school unknown yes no
## 2322 35 services single high.school no no yes
## 2323 48 admin. divorced high.school no no yes
## 2324 41 technician married professional.course unknown yes no
## 2325 26 blue-collar married basic.9y no no no
## 2326 26 blue-collar single high.school unknown no no
## 2327 47 blue-collar married basic.4y unknown no yes
## 2328 58 retired married unknown no unknown unknown
## 2329 58 retired married unknown no unknown unknown
## 2330 54 management divorced university.degree no yes no
## 2331 38 blue-collar single basic.9y no yes no
## 2332 40 technician divorced university.degree no yes no
## 2333 35 admin. married university.degree no yes no
## 2334 35 blue-collar married basic.9y no no no
## 2335 34 admin. married professional.course no yes no
## 2336 28 technician married high.school no no no
## 2337 36 services single basic.9y no yes yes
## 2338 42 admin. single high.school no no no
## 2339 37 technician single university.degree no yes no
## 2340 45 services married basic.9y no no no
## 2341 48 self-employed married basic.9y unknown yes no
## 2342 53 technician married professional.course unknown yes no
## 2343 42 technician married basic.6y no yes no
## 2344 53 technician married professional.course unknown yes no
## 2345 53 technician married professional.course unknown yes yes
## 2346 33 blue-collar divorced basic.6y unknown yes no
## 2347 30 unknown single university.degree no no no
## 2348 34 admin. married university.degree no no no
## 2349 48 technician married high.school no no no
## 2350 34 admin. married university.degree no no no
## 2351 49 services divorced basic.9y no yes no
## 2352 48 technician married high.school no no yes
## 2353 38 blue-collar single university.degree unknown no no
## 2354 44 technician married professional.course unknown yes no
## 2355 36 blue-collar married basic.9y unknown no yes
## 2356 44 blue-collar divorced basic.4y unknown yes no
## 2357 50 self-employed married university.degree no yes yes
## 2358 38 blue-collar single university.degree unknown no no
## 2359 41 technician married professional.course no yes no
## 2360 45 blue-collar married basic.4y no no no
## 2361 53 admin. married university.degree no yes no
## 2362 36 entrepreneur married university.degree no yes no
## 2363 45 services married high.school no yes no
## 2364 34 services married basic.9y unknown yes no
## 2365 37 blue-collar married professional.course no no yes
## 2366 25 technician single university.degree no yes no
## 2367 35 admin. divorced university.degree no no yes
## 2368 34 admin. married university.degree no no no
## 2369 32 unknown married basic.6y unknown no no
## 2370 32 admin. divorced high.school no no no
## 2371 39 self-employed single university.degree no no no
## 2372 36 admin. married high.school no no yes
## 2373 46 entrepreneur married university.degree no yes no
## 2374 56 entrepreneur married university.degree no no no
## 2375 37 technician single basic.9y unknown no yes
## 2376 37 technician single basic.9y unknown no no
## 2377 39 blue-collar married high.school no yes no
## 2378 52 services married unknown unknown no no
## 2379 39 services married unknown unknown no no
## 2380 52 services married unknown unknown no no
## 2381 51 technician married professional.course unknown no no
## 2382 42 technician single unknown no no no
## 2383 34 technician married high.school no no yes
## 2384 28 blue-collar married basic.9y no yes no
## 2385 43 self-employed single professional.course unknown yes yes
## 2386 41 technician single professional.course no yes no
## 2387 54 technician married professional.course no no yes
## 2388 53 blue-collar married basic.9y no yes no
## 2389 47 admin. married university.degree unknown no no
## 2390 47 admin. married university.degree unknown no no
## 2391 39 blue-collar married basic.9y no no no
## 2392 37 services married high.school no no no
## 2393 40 technician married professional.course unknown no no
## 2394 35 services divorced professional.course unknown no no
## 2395 56 admin. divorced unknown unknown yes yes
## 2396 36 admin. married high.school unknown no no
## 2397 45 blue-collar married basic.4y unknown yes no
## 2398 38 technician single university.degree no yes yes
## 2399 41 technician married professional.course no no no
## 2400 37 blue-collar married professional.course unknown no no
## 2401 45 admin. single university.degree no no yes
## 2402 48 services married high.school unknown no no
## 2403 29 admin. single basic.9y unknown no no
## 2404 38 technician single university.degree no no no
## 2405 48 services married high.school unknown yes no
## 2406 40 blue-collar married high.school no no no
## 2407 38 blue-collar single university.degree unknown yes no
## 2408 42 blue-collar married basic.4y no no no
## 2409 32 blue-collar married basic.9y no no no
## 2410 56 admin. married unknown unknown yes no
## 2411 54 services married unknown no no no
## 2412 60 retired married basic.4y unknown no no
## 2413 47 admin. married high.school unknown yes no
## 2414 46 blue-collar married unknown unknown no no
## 2415 42 admin. single high.school no no no
## 2416 55 blue-collar married basic.4y unknown yes yes
## 2417 37 services married high.school no yes no
## 2418 38 technician single university.degree no no no
## 2419 45 technician married university.degree unknown yes no
## 2420 32 blue-collar married basic.6y no no yes
## 2421 37 blue-collar married professional.course unknown yes yes
## 2422 30 technician married university.degree no yes no
## 2423 36 blue-collar married high.school no no yes
## 2424 48 admin. married high.school no no no
## 2425 51 admin. single basic.6y no no no
## 2426 46 housemaid married basic.4y no no yes
## 2427 48 blue-collar divorced basic.4y unknown no no
## 2428 47 services married high.school unknown no no
## 2429 41 blue-collar married basic.4y unknown yes no
## 2430 53 retired single professional.course unknown yes no
## 2431 55 retired married basic.4y unknown yes no
## 2432 44 management married university.degree unknown no no
## 2433 48 blue-collar married basic.4y no yes no
## 2434 50 services married unknown unknown no no
## 2435 34 blue-collar married basic.9y no no no
## 2436 38 entrepreneur married basic.9y no no no
## 2437 42 unemployed single university.degree no no no
## 2438 57 retired married university.degree no yes no
## 2439 58 blue-collar divorced basic.4y no yes no
## 2440 48 management married university.degree unknown yes no
## 2441 32 admin. divorced high.school no no no
## 2442 35 admin. single university.degree no no no
## 2443 55 retired married basic.6y unknown no no
## 2444 47 blue-collar married basic.4y no yes yes
## 2445 31 services married basic.6y unknown no no
## 2446 38 technician married professional.course no yes no
## 2447 49 self-employed married professional.course no yes no
## 2448 33 self-employed divorced basic.9y no yes no
## 2449 27 admin. single university.degree no yes yes
## 2450 45 technician married university.degree no yes yes
## 2451 34 management divorced university.degree no yes no
## 2452 38 blue-collar married basic.4y unknown yes no
## 2453 45 technician single professional.course no no no
## 2454 28 admin. single unknown no no no
## 2455 54 blue-collar married basic.4y unknown no no
## 2456 58 retired married professional.course unknown no yes
## 2457 48 blue-collar married unknown unknown no no
## 2458 57 admin. divorced basic.9y unknown no no
## 2459 28 admin. married university.degree no unknown unknown
## 2460 49 blue-collar married basic.9y unknown no no
## 2461 60 retired married university.degree unknown unknown unknown
## 2462 39 services divorced basic.9y no no no
## 2463 40 self-employed married professional.course no no no
## 2464 58 unknown married basic.4y no no yes
## 2465 36 blue-collar married basic.9y unknown no no
## 2466 59 retired married university.degree no no no
## 2467 42 admin. married basic.6y no no no
## 2468 35 student single university.degree unknown no no
## 2469 42 blue-collar divorced high.school no no no
## 2470 37 blue-collar married high.school no yes no
## 2471 49 blue-collar married basic.4y unknown no no
## 2472 39 blue-collar married basic.9y unknown yes yes
## 2473 46 blue-collar married basic.9y unknown no no
## 2474 36 admin. married high.school no no no
## 2475 35 technician married professional.course no no no
## 2476 51 blue-collar married basic.4y unknown no no
## 2477 40 blue-collar divorced basic.9y unknown yes yes
## 2478 32 blue-collar married basic.9y no yes no
## 2479 42 admin. divorced university.degree no no no
## 2480 25 admin. single university.degree no no no
## 2481 46 blue-collar married basic.6y unknown yes no
## 2482 42 admin. married basic.6y no no no
## 2483 47 management married basic.4y unknown yes no
## 2484 56 admin. married high.school no no no
## 2485 27 blue-collar married basic.4y unknown no no
## 2486 47 housemaid married university.degree no no no
## 2487 30 management single university.degree no yes no
## 2488 48 admin. divorced high.school no no no
## 2489 45 management married unknown unknown yes no
## 2490 58 retired married high.school no yes no
## 2491 39 blue-collar married basic.9y unknown yes no
## 2492 54 admin. married university.degree no no no
## 2493 33 management single university.degree no yes yes
## 2494 58 retired divorced professional.course unknown yes no
## 2495 39 admin. married high.school unknown yes no
## 2496 49 self-employed married professional.course no yes no
## 2497 33 blue-collar married basic.9y no no no
## 2498 40 housemaid divorced unknown no no no
## 2499 49 services married high.school no yes no
## 2500 50 housemaid single unknown no yes no
## 2501 40 blue-collar single basic.9y no no no
## 2502 50 services married unknown unknown no no
## 2503 30 technician married university.degree unknown no no
## 2504 32 admin. married university.degree no yes no
## 2505 59 retired married basic.4y unknown no no
## 2506 53 technician married professional.course no no no
## 2507 43 admin. divorced basic.9y no unknown unknown
## 2508 48 self-employed married basic.9y unknown yes no
## 2509 47 unknown divorced basic.4y unknown no no
## 2510 53 blue-collar married basic.9y unknown yes no
## 2511 37 admin. married high.school unknown no no
## 2512 26 services single high.school no yes no
## 2513 38 technician single professional.course no yes no
## 2514 36 admin. married university.degree no no no
## 2515 45 admin. married basic.9y no yes no
## 2516 47 technician married basic.9y no yes no
## 2517 36 technician married professional.course no no yes
## 2518 47 technician married basic.9y no no no
## 2519 31 management married university.degree no no no
## 2520 29 blue-collar married basic.6y no no yes
## 2521 42 technician single unknown no no no
## 2522 41 services married basic.9y no yes yes
## 2523 27 technician single professional.course no yes no
## 2524 35 admin. single high.school no yes no
## 2525 49 blue-collar married basic.4y unknown yes no
## 2526 45 blue-collar married basic.4y no unknown unknown
## 2527 50 technician married basic.6y no yes no
## 2528 49 blue-collar married basic.9y no yes no
## 2529 27 blue-collar married basic.9y no yes no
## 2530 58 retired married professional.course unknown unknown unknown
## 2531 39 services married high.school no no no
## 2532 41 technician married basic.9y no yes no
## 2533 45 services married high.school unknown yes no
## 2534 48 blue-collar married basic.4y unknown yes no
## 2535 46 admin. divorced high.school unknown yes no
## 2536 49 blue-collar married basic.4y unknown no no
## 2537 33 services married high.school unknown no no
## 2538 46 blue-collar married basic.4y unknown no no
## 2539 51 retired married basic.4y unknown yes yes
## 2540 43 admin. married high.school no yes no
## 2541 51 admin. married high.school unknown no no
## 2542 43 blue-collar married basic.9y no no no
## 2543 38 blue-collar married basic.6y no no no
## 2544 56 unemployed married basic.9y unknown no yes
## 2545 34 services married high.school no yes yes
## 2546 35 admin. single university.degree no yes yes
## 2547 45 admin. married basic.9y unknown yes no
## 2548 43 technician married basic.9y unknown no yes
## 2549 47 services divorced high.school no unknown unknown
## 2550 49 unknown married unknown no no no
## 2551 36 housemaid married high.school no no no
## 2552 35 services married high.school no yes no
## 2553 27 blue-collar married basic.9y no unknown unknown
## 2554 54 retired married high.school unknown no no
## 2555 31 admin. married high.school unknown yes no
## 2556 33 blue-collar married basic.4y unknown no no
## 2557 29 management married university.degree no no no
## 2558 40 blue-collar married basic.6y unknown yes no
## 2559 36 admin. married university.degree no no no
## 2560 51 entrepreneur married basic.9y no yes no
## 2561 39 technician married professional.course no no no
## 2562 36 management married university.degree no no no
## 2563 30 services single high.school no no no
## 2564 36 blue-collar divorced high.school no no no
## 2565 37 technician married professional.course no no no
## 2566 46 housemaid married basic.4y no no no
## 2567 44 blue-collar married unknown no no yes
## 2568 30 management married university.degree no no no
## 2569 30 admin. single high.school no no no
## 2570 33 technician single high.school no no no
## 2571 54 management divorced university.degree no yes no
## 2572 44 blue-collar married unknown unknown no no
## 2573 39 blue-collar single unknown unknown no no
## 2574 35 services married high.school no no no
## 2575 55 technician married professional.course no no no
## 2576 29 admin. single high.school no yes no
## 2577 55 services married high.school no no no
## 2578 36 technician married university.degree no no no
## 2579 39 blue-collar married basic.6y no yes no
## 2580 58 admin. married basic.6y no yes no
## 2581 37 admin. single high.school no no no
## 2582 28 blue-collar single basic.6y unknown yes no
## 2583 34 management married university.degree no yes no
## 2584 54 retired divorced basic.4y no yes no
## 2585 27 management single university.degree no yes no
## 2586 31 entrepreneur single basic.9y no no no
## 2587 48 blue-collar married basic.4y no no no
## 2588 46 housemaid married basic.4y no no no
## 2589 40 technician single high.school no no no
## 2590 47 services married high.school unknown no yes
## 2591 47 blue-collar married professional.course unknown yes no
## 2592 58 entrepreneur married university.degree unknown no no
## 2593 51 self-employed married professional.course unknown yes yes
## 2594 36 blue-collar married basic.9y unknown no no
## 2595 36 admin. married high.school no yes no
## 2596 36 blue-collar single university.degree unknown yes no
## 2597 46 blue-collar married basic.4y unknown yes no
## 2598 50 services married high.school unknown yes no
## 2599 47 management divorced university.degree no no no
## 2600 60 retired married high.school unknown yes no
## 2601 36 services married high.school no no no
## 2602 25 self-employed single university.degree no no no
## 2603 40 entrepreneur married university.degree unknown yes no
## 2604 36 technician married unknown no yes no
## 2605 37 services married high.school unknown yes no
## 2606 46 blue-collar married unknown unknown yes no
## 2607 49 services married high.school no no yes
## 2608 42 technician married professional.course unknown no no
## 2609 37 blue-collar married high.school no no no
## 2610 36 technician married university.degree no yes yes
## 2611 57 blue-collar married basic.4y no yes yes
## 2612 39 services married basic.9y no yes no
## 2613 28 admin. married high.school no no no
## 2614 47 blue-collar married basic.4y no yes no
## 2615 42 blue-collar married basic.9y unknown yes no
## 2616 34 entrepreneur married professional.course no no no
## 2617 51 blue-collar married professional.course no no yes
## 2618 30 services single unknown no yes no
## 2619 33 admin. single university.degree no yes no
## 2620 58 blue-collar married basic.4y no yes no
## 2621 36 technician married basic.9y unknown no no
## 2622 39 blue-collar divorced basic.9y unknown no no
## 2623 31 services single high.school no no no
## 2624 45 services single professional.course unknown unknown unknown
## 2625 34 blue-collar single basic.4y no yes yes
## 2626 33 services divorced high.school no no no
## 2627 35 blue-collar married basic.6y unknown yes no
## 2628 39 technician married professional.course no no no
## 2629 42 technician single high.school unknown no no
## 2630 37 admin. married high.school no no no
## 2631 42 blue-collar single basic.9y no unknown unknown
## 2632 48 technician single unknown no unknown unknown
## 2633 29 admin. married high.school no no no
## 2634 59 retired married basic.9y no yes no
## 2635 32 blue-collar single basic.9y no no no
## 2636 31 services married basic.9y no no no
## 2637 52 management married basic.4y unknown yes no
## 2638 46 blue-collar married unknown no no no
## 2639 25 blue-collar married basic.9y no no no
## 2640 36 entrepreneur married basic.6y no yes no
## 2641 23 blue-collar married professional.course no yes no
## 2642 42 admin. single university.degree no yes no
## 2643 43 admin. married high.school no no no
## 2644 29 services single high.school no no yes
## 2645 45 admin. married high.school no yes no
## 2646 45 entrepreneur married university.degree no yes no
## 2647 27 technician single high.school unknown no yes
## 2648 35 admin. married high.school no yes no
## 2649 35 technician married professional.course no no no
## 2650 39 blue-collar divorced high.school no yes yes
## 2651 29 technician married professional.course no no no
## 2652 46 blue-collar divorced basic.4y unknown no no
## 2653 39 admin. married university.degree no no no
## 2654 34 blue-collar married basic.6y no no no
## 2655 44 entrepreneur divorced university.degree no yes no
## 2656 35 blue-collar married unknown no no no
## 2657 33 technician single professional.course no yes yes
## 2658 41 blue-collar single basic.9y unknown no no
## 2659 37 technician married university.degree no no no
## 2660 40 admin. single university.degree unknown yes no
## 2661 42 blue-collar divorced basic.9y no yes no
## 2662 55 blue-collar married basic.9y no yes no
## 2663 46 management married basic.6y unknown no no
## 2664 37 management married university.degree no yes no
## 2665 39 technician married professional.course no no no
## 2666 40 blue-collar married high.school no no no
## 2667 52 technician married high.school no yes yes
## 2668 43 management married university.degree no unknown unknown
## 2669 51 blue-collar married basic.4y no yes no
## 2670 45 management divorced basic.9y unknown no no
## 2671 40 management divorced university.degree unknown no no
## 2672 28 student single high.school unknown yes no
## 2673 33 admin. single high.school no unknown unknown
## 2674 47 self-employed married unknown unknown no no
## 2675 54 management divorced university.degree no yes no
## 2676 46 unknown married university.degree no no no
## 2677 36 admin. married high.school no no no
## 2678 46 unemployed married professional.course unknown yes no
## 2679 45 blue-collar divorced basic.9y no yes no
## 2680 46 management married university.degree no no yes
## 2681 30 services married unknown no no no
## 2682 55 management married unknown no yes yes
## 2683 45 admin. married basic.9y unknown yes yes
## 2684 45 admin. married high.school no yes no
## 2685 51 admin. married basic.4y unknown yes no
## 2686 31 admin. single university.degree no no no
## 2687 33 admin. married unknown no yes no
## 2688 45 services divorced high.school unknown yes no
## 2689 52 blue-collar married basic.4y unknown yes yes
## 2690 35 unemployed married university.degree no yes no
## 2691 50 admin. married high.school unknown yes no
## 2692 48 admin. married university.degree no yes yes
## 2693 41 management married unknown unknown yes no
## 2694 58 housemaid married university.degree unknown no no
## 2695 36 admin. single university.degree unknown no no
## 2696 44 blue-collar single basic.4y no no no
## 2697 38 blue-collar single university.degree no no no
## 2698 38 blue-collar married basic.6y unknown yes no
## 2699 53 blue-collar married basic.9y no no no
## 2700 37 blue-collar married basic.9y no yes no
## 2701 29 admin. single university.degree no no no
## 2702 35 services married high.school no no no
## 2703 59 entrepreneur married high.school no no no
## 2704 38 technician married basic.6y unknown yes yes
## 2705 34 technician single professional.course no no no
## 2706 28 blue-collar married basic.9y no yes no
## 2707 43 blue-collar married unknown unknown no yes
## 2708 45 blue-collar divorced basic.9y no yes yes
## 2709 31 blue-collar single basic.9y no no no
## 2710 34 blue-collar married basic.9y no no no
## 2711 50 management divorced high.school unknown no no
## 2712 38 technician single university.degree no no no
## 2713 39 technician married university.degree unknown no no
## 2714 41 technician married high.school no yes no
## 2715 29 blue-collar married basic.6y no no yes
## 2716 34 admin. single high.school no yes yes
## 2717 45 technician married professional.course unknown no no
## 2718 42 blue-collar married basic.4y unknown unknown unknown
## 2719 32 blue-collar married basic.9y no no no
## 2720 41 blue-collar married basic.4y no no no
## 2721 49 blue-collar married basic.4y no no no
## 2722 46 blue-collar married basic.4y unknown no no
## 2723 39 blue-collar married high.school unknown no no
## 2724 45 unknown married unknown unknown unknown unknown
## 2725 48 management married basic.4y unknown no no
## 2726 33 blue-collar married basic.9y no yes yes
## 2727 52 blue-collar married basic.6y no yes no
## 2728 44 blue-collar married basic.4y unknown no yes
## 2729 44 management married university.degree no no no
## 2730 33 unemployed divorced basic.9y no yes no
## 2731 57 blue-collar divorced professional.course no no no
## 2732 31 management married high.school no no no
## 2733 52 admin. married high.school no unknown unknown
## 2734 40 blue-collar single basic.9y unknown yes no
## 2735 37 admin. married university.degree no no yes
## 2736 39 blue-collar married basic.6y no no no
## 2737 34 self-employed single university.degree no yes no
## 2738 38 technician single professional.course unknown unknown unknown
## 2739 43 services married high.school no no no
## 2740 33 blue-collar married basic.9y no no yes
## 2741 51 services married high.school no yes no
## 2742 51 services married high.school no yes no
## 2743 50 housemaid married basic.9y unknown yes yes
## 2744 45 blue-collar married basic.9y unknown no yes
## 2745 27 admin. single high.school no yes no
## 2746 50 admin. married university.degree no yes no
## 2747 53 services married high.school unknown yes no
## 2748 42 management married university.degree unknown yes no
## 2749 41 admin. married high.school no yes no
## 2750 57 retired married university.degree unknown no no
## 2751 47 blue-collar single basic.9y no no yes
## 2752 29 housemaid married high.school no no no
## 2753 39 unemployed single university.degree no no yes
## 2754 33 services single basic.6y unknown yes no
## 2755 51 services married high.school unknown yes no
## 2756 37 blue-collar married basic.4y unknown yes no
## 2757 36 admin. married university.degree unknown yes no
## 2758 48 blue-collar married basic.4y no yes no
## 2759 44 technician single unknown unknown no no
## 2760 34 blue-collar single high.school unknown yes yes
## 2761 54 management married university.degree unknown no no
## 2762 40 housemaid divorced basic.6y unknown yes no
## 2763 52 management married professional.course no yes no
## 2764 33 unemployed divorced basic.9y no no no
## 2765 35 blue-collar married basic.9y no yes no
## 2766 43 unknown married high.school unknown no no
## 2767 38 services married high.school no no no
## 2768 55 admin. married high.school no no yes
## 2769 42 blue-collar married basic.4y no no no
## 2770 40 services single high.school no yes no
## 2771 49 admin. divorced basic.9y no yes no
## 2772 54 blue-collar married basic.9y unknown yes no
## 2773 49 blue-collar married basic.6y unknown yes yes
## 2774 37 services married high.school no yes no
## 2775 54 blue-collar married basic.9y no no no
## 2776 33 blue-collar married high.school no no no
## 2777 49 blue-collar married basic.9y no yes no
## 2778 36 blue-collar married basic.6y unknown no no
## 2779 48 entrepreneur married university.degree no yes no
## 2780 35 student married university.degree no yes no
## 2781 42 blue-collar divorced basic.6y unknown no no
## 2782 35 technician divorced professional.course no no no
## 2783 51 unemployed married professional.course no no no
## 2784 48 retired married basic.9y no no no
## 2785 50 admin. divorced basic.9y no yes no
## 2786 35 admin. married high.school unknown unknown unknown
## 2787 45 services married high.school unknown no no
## 2788 46 management divorced university.degree no unknown unknown
## 2789 29 services married high.school unknown unknown unknown
## 2790 39 management married university.degree no yes no
## 2791 34 entrepreneur married basic.4y no no no
## 2792 37 admin. married high.school no yes no
## 2793 26 services single high.school no no no
## 2794 52 blue-collar married basic.9y no no no
## 2795 42 admin. married basic.9y no yes no
## 2796 44 blue-collar divorced basic.4y unknown yes no
## 2797 55 blue-collar married basic.4y unknown yes no
## 2798 41 technician married basic.9y no no no
## 2799 53 services married high.school no no no
## 2800 39 admin. married basic.4y no yes no
## 2801 40 technician married professional.course no no no
## 2802 42 services married professional.course no yes no
## 2803 29 services divorced high.school no no no
## 2804 30 blue-collar divorced basic.9y no yes no
## 2805 41 housemaid married basic.6y no no no
## 2806 30 blue-collar divorced basic.9y no yes no
## 2807 52 blue-collar married basic.9y no yes no
## 2808 41 housemaid married basic.6y no no no
## 2809 34 technician divorced professional.course no no no
## 2810 40 admin. single high.school no no no
## 2811 34 blue-collar married basic.9y no no no
## 2812 42 blue-collar married basic.6y no yes no
## 2813 35 blue-collar married basic.9y no no yes
## 2814 28 entrepreneur married university.degree no no no
## 2815 29 services divorced high.school no no no
## 2816 50 housemaid divorced basic.4y unknown no no
## 2817 56 unemployed divorced high.school no yes no
## 2818 48 admin. divorced high.school no yes no
## 2819 29 admin. single university.degree no no no
## 2820 42 blue-collar married basic.6y no no no
## 2821 51 management married basic.4y no no no
## 2822 29 technician single professional.course no no no
## 2823 41 admin. single university.degree no yes no
## 2824 28 services single high.school no no no
## 2825 34 management married university.degree no yes no
## 2826 31 admin. married university.degree no no no
## 2827 47 blue-collar married basic.9y no yes no
## 2828 40 blue-collar married basic.4y unknown yes no
## 2829 31 blue-collar married basic.9y no no no
## 2830 39 unemployed married university.degree no no no
## 2831 52 blue-collar married basic.4y unknown yes yes
## 2832 50 technician married professional.course unknown yes no
## 2833 36 blue-collar married basic.6y no yes no
## 2834 56 blue-collar married basic.9y unknown no no
## 2835 35 unknown married basic.9y no no no
## 2836 29 admin. single university.degree no yes no
## 2837 29 blue-collar married professional.course no yes yes
## 2838 34 blue-collar single basic.9y no no yes
## 2839 29 blue-collar married high.school no no yes
## 2840 50 admin. married high.school unknown no no
## 2841 39 blue-collar married basic.4y unknown yes no
## 2842 29 blue-collar married professional.course no yes no
## 2843 41 admin. single high.school no yes yes
## 2844 34 blue-collar married high.school no no no
## 2845 43 technician divorced professional.course unknown unknown unknown
## 2846 48 admin. divorced high.school no yes no
## 2847 38 admin. married university.degree no no no
## 2848 32 admin. single high.school no no no
## 2849 35 admin. married high.school no no no
## 2850 39 blue-collar married basic.6y no no no
## 2851 47 blue-collar married basic.6y no no yes
## 2852 41 entrepreneur married basic.4y no no no
## 2853 41 management married unknown no no no
## 2854 40 blue-collar married high.school no no no
## 2855 43 unknown married university.degree no no no
## 2856 35 services married high.school no no no
## 2857 49 services married high.school no yes no
## 2858 40 services married high.school unknown yes no
## 2859 24 student single high.school unknown no no
## 2860 49 blue-collar married basic.9y unknown yes no
## 2861 41 management married university.degree unknown yes no
## 2862 44 admin. married university.degree no yes no
## 2863 28 services divorced high.school no yes no
## 2864 41 blue-collar married basic.9y no no no
## 2865 35 technician married university.degree no no no
## 2866 35 blue-collar single basic.6y unknown yes no
## 2867 32 blue-collar married basic.6y unknown yes yes
## 2868 45 admin. married university.degree no no no
## 2869 36 technician married professional.course no yes no
## 2870 41 technician married basic.9y no yes no
## 2871 40 admin. single high.school no yes no
## 2872 41 admin. single university.degree no no no
## 2873 43 blue-collar single basic.4y unknown no no
## 2874 38 technician married professional.course unknown yes no
## 2875 28 entrepreneur married basic.4y unknown yes no
## 2876 36 services single unknown no yes no
## 2877 28 entrepreneur married basic.4y unknown no no
## 2878 35 technician married professional.course no no no
## 2879 56 management married university.degree no no no
## 2880 25 blue-collar single basic.9y no yes no
## 2881 59 blue-collar married basic.4y no yes no
## 2882 28 entrepreneur married basic.4y unknown yes no
## 2883 56 services married basic.9y unknown no no
## 2884 33 admin. single university.degree no no no
## 2885 36 admin. divorced high.school no yes no
## 2886 41 technician married basic.9y no no no
## 2887 35 unknown married basic.9y no no yes
## 2888 24 services single high.school no yes no
## 2889 35 self-employed single basic.6y unknown no yes
## 2890 32 technician divorced professional.course no yes no
## 2891 29 technician married professional.course no no no
## 2892 31 blue-collar married basic.6y unknown yes no
## 2893 33 blue-collar married basic.6y unknown no no
## 2894 33 management married high.school unknown yes no
## 2895 42 admin. married professional.course no no no
## 2896 34 services married high.school unknown no no
## 2897 29 technician married professional.course no yes no
## 2898 38 blue-collar married basic.9y no no no
## 2899 45 blue-collar married basic.9y unknown no no
## 2900 33 admin. married university.degree no yes no
## 2901 42 blue-collar married basic.9y unknown yes no
## 2902 36 services married basic.6y no no no
## 2903 45 blue-collar married basic.4y no yes no
## 2904 32 services single high.school no no no
## 2905 37 admin. married university.degree no yes no
## 2906 40 blue-collar married basic.6y no yes no
## 2907 26 blue-collar married basic.6y no no no
## 2908 35 management married university.degree no yes yes
## 2909 35 management married university.degree no no no
## 2910 30 services married high.school unknown no no
## 2911 36 management married university.degree no yes no
## 2912 36 management married university.degree no no no
## 2913 40 blue-collar married unknown unknown no no
## 2914 26 student single university.degree no yes no
## 2915 54 housemaid divorced basic.4y unknown no no
## 2916 51 technician married professional.course no no no
## 2917 45 blue-collar single basic.9y no yes yes
## 2918 36 blue-collar married basic.9y no no no
## 2919 58 admin. divorced university.degree no no no
## 2920 33 entrepreneur married high.school no no no
## 2921 50 housemaid married basic.9y unknown no no
## 2922 33 blue-collar married basic.4y no yes yes
## 2923 31 services married high.school no no no
## 2924 34 admin. single high.school no no no
## 2925 34 unemployed single university.degree no no no
## 2926 30 admin. married high.school unknown no no
## 2927 27 student single university.degree no yes no
## 2928 30 services married high.school no no no
## 2929 23 services single high.school no no no
## 2930 33 admin. married high.school no yes yes
## 2931 23 services single high.school no no no
## 2932 36 blue-collar married basic.9y no yes yes
## 2933 42 admin. divorced university.degree no no no
## 2934 36 blue-collar married basic.9y no no no
## 2935 60 housemaid married high.school no unknown unknown
## 2936 26 entrepreneur single high.school no no no
## 2937 45 blue-collar divorced basic.4y unknown no no
## 2938 32 admin. married university.degree no no no
## 2939 37 services married high.school no no no
## 2940 40 blue-collar married basic.4y unknown no no
## 2941 36 admin. single university.degree no yes yes
## 2942 35 entrepreneur married basic.9y no yes no
## 2943 45 self-employed single professional.course unknown yes no
## 2944 48 admin. married university.degree unknown no no
## 2945 36 entrepreneur married basic.9y no no no
## 2946 37 technician divorced high.school no yes no
## 2947 36 blue-collar married basic.9y unknown no no
## 2948 56 blue-collar divorced basic.9y no yes no
## 2949 28 blue-collar single basic.9y no yes no
## 2950 43 blue-collar married basic.9y no no yes
## 2951 30 technician married professional.course unknown no no
## 2952 33 blue-collar single basic.9y unknown no no
## 2953 30 technician single professional.course no yes no
## 2954 33 technician divorced professional.course no no no
## 2955 42 technician married professional.course unknown no no
## 2956 30 blue-collar married basic.9y no yes no
## 2957 33 blue-collar married high.school no yes no
## 2958 39 admin. married high.school no no no
## 2959 37 blue-collar married basic.9y no no no
## 2960 41 self-employed married basic.9y no yes no
## 2961 53 self-employed married university.degree no yes no
## 2962 31 admin. single university.degree no no no
## 2963 47 technician married professional.course unknown no no
## 2964 46 blue-collar married basic.4y unknown no no
## 2965 52 admin. single basic.9y no no no
## 2966 28 technician single basic.9y no no no
## 2967 60 blue-collar married basic.9y unknown no no
## 2968 50 admin. married high.school no no yes
## 2969 31 technician married university.degree no no no
## 2970 39 blue-collar married basic.9y no yes no
## 2971 27 blue-collar single basic.6y no yes no
## 2972 33 blue-collar married basic.9y no no no
## 2973 47 services divorced high.school no no no
## 2974 39 admin. married high.school unknown yes no
## 2975 37 services married high.school unknown yes no
## 2976 32 services married high.school no no no
## 2977 37 blue-collar married basic.4y no yes no
## 2978 31 blue-collar married basic.9y no yes yes
## 2979 32 blue-collar married basic.9y no no no
## 2980 59 retired married professional.course unknown yes no
## 2981 48 technician married university.degree unknown yes no
## 2982 48 services married high.school no no no
## 2983 32 technician married professional.course no no no
## 2984 32 blue-collar single basic.9y unknown no no
## 2985 38 blue-collar married professional.course no yes no
## 2986 34 entrepreneur married high.school unknown no no
## 2987 44 blue-collar married basic.9y unknown yes no
## 2988 54 services divorced high.school unknown no no
## 2989 39 services married high.school no yes yes
## 2990 32 admin. single university.degree no no no
## 2991 43 services single high.school unknown yes no
## 2992 30 technician married professional.course no unknown unknown
## 2993 26 unemployed single basic.9y no no no
## 2994 38 admin. single university.degree no yes yes
## 2995 35 technician married professional.course no no no
## 2996 33 self-employed married basic.9y no yes no
## 2997 36 technician married professional.course no no no
## 2998 44 blue-collar married basic.4y no no no
## 2999 35 technician married professional.course no yes yes
## 3000 42 blue-collar married basic.4y no yes yes
## 3001 35 technician married professional.course no no no
## 3002 54 self-employed married professional.course unknown no no
## 3003 36 blue-collar married basic.9y no no no
## 3004 26 student single high.school no no no
## 3005 27 blue-collar married basic.9y no yes no
## 3006 44 blue-collar divorced basic.6y no no no
## 3007 28 services married unknown no no no
## 3008 53 retired divorced high.school no unknown unknown
## 3009 46 blue-collar married basic.9y unknown no no
## 3010 49 blue-collar married basic.4y unknown no no
## 3011 33 admin. married university.degree no no no
## 3012 30 student single unknown unknown no no
## 3013 29 admin. single high.school no yes yes
## 3014 51 self-employed married basic.4y unknown no yes
## 3015 55 admin. married high.school no yes no
## 3016 41 admin. single high.school no no no
## 3017 39 blue-collar divorced basic.9y no yes no
## 3018 49 management married university.degree no no no
## 3019 39 blue-collar divorced unknown no no no
## 3020 30 admin. married university.degree no yes no
## 3021 31 services married high.school no no no
## 3022 59 blue-collar divorced basic.4y no no no
## 3023 33 blue-collar single high.school no no no
## 3024 44 blue-collar married basic.4y no yes no
## 3025 28 services married high.school no yes yes
## 3026 26 blue-collar single basic.9y no no no
## 3027 28 blue-collar married basic.6y no yes yes
## 3028 32 technician single high.school no yes no
## 3029 47 services divorced high.school no yes no
## 3030 33 blue-collar married basic.9y no yes no
## 3031 28 student married university.degree no no no
## 3032 51 blue-collar divorced basic.9y unknown no no
## 3033 37 housemaid married university.degree unknown no no
## 3034 37 blue-collar married basic.4y unknown yes no
## 3035 34 blue-collar single basic.4y unknown no yes
## 3036 31 blue-collar married basic.9y no no yes
## 3037 38 self-employed single university.degree no no yes
## 3038 33 management married high.school no no no
## 3039 28 services married unknown no yes no
## 3040 41 admin. married high.school no no no
## 3041 29 technician married university.degree no yes no
## 3042 38 blue-collar married basic.4y unknown no no
## 3043 46 admin. married high.school no yes no
## 3044 36 blue-collar married unknown no no no
## 3045 59 retired married professional.course unknown no no
## 3046 44 management married university.degree unknown no yes
## 3047 34 technician married professional.course unknown no yes
## 3048 36 technician married professional.course no no no
## 3049 51 blue-collar married basic.6y unknown yes no
## 3050 36 services married high.school no no yes
## 3051 58 retired married basic.9y no no no
## 3052 39 entrepreneur married high.school unknown no yes
## 3053 42 blue-collar married basic.4y unknown no yes
## 3054 46 blue-collar married basic.9y unknown no yes
## 3055 46 admin. divorced university.degree no yes no
## 3056 41 admin. single university.degree no no no
## 3057 36 admin. married university.degree no no no
## 3058 60 retired married high.school no no no
## 3059 43 technician divorced basic.9y no no yes
## 3060 30 services married high.school no yes no
## 3061 43 admin. married university.degree no yes yes
## 3062 37 admin. married high.school unknown yes no
## 3063 52 self-employed married basic.4y unknown yes no
## 3064 41 admin. married university.degree no yes no
## 3065 39 services single high.school unknown no no
## 3066 29 unemployed single university.degree no no yes
## 3067 29 admin. single university.degree no yes yes
## 3068 55 technician married professional.course unknown no no
## 3069 33 blue-collar single basic.9y no no no
## 3070 41 self-employed single university.degree no yes no
## 3071 53 retired divorced professional.course unknown yes yes
## 3072 43 technician married professional.course no yes no
## 3073 51 services divorced basic.4y unknown yes no
## 3074 31 blue-collar married basic.6y unknown no no
## 3075 45 blue-collar married basic.4y unknown no no
## 3076 40 management married university.degree no no no
## 3077 30 blue-collar married basic.9y no no yes
## 3078 37 admin. married unknown no yes no
## 3079 56 services divorced high.school unknown no no
## 3080 29 admin. single high.school no yes no
## 3081 30 services married high.school no no no
## 3082 36 blue-collar married basic.9y no yes no
## 3083 32 admin. single basic.9y unknown no no
## 3084 41 admin. married basic.6y no no no
## 3085 35 blue-collar married unknown no yes no
## 3086 45 blue-collar married basic.9y unknown no no
## 3087 40 blue-collar divorced high.school unknown no no
## 3088 34 admin. single university.degree no yes no
## 3089 45 admin. married basic.6y no yes no
## 3090 31 admin. married high.school no no yes
## 3091 35 housemaid married basic.4y no no no
## 3092 58 blue-collar married basic.4y unknown yes no
## 3093 48 admin. married basic.9y unknown no no
## 3094 38 management married basic.6y unknown yes no
## 3095 39 admin. single university.degree unknown no no
## 3096 38 blue-collar married basic.6y unknown unknown unknown
## 3097 49 blue-collar single basic.4y no no no
## 3098 60 unknown married university.degree no no yes
## 3099 37 services married professional.course unknown no no
## 3100 48 technician married university.degree no no no
## 3101 37 admin. divorced basic.9y unknown no no
## 3102 30 technician divorced professional.course no yes no
## 3103 32 admin. married university.degree no yes no
## 3104 30 entrepreneur married university.degree no no no
## 3105 39 unemployed married high.school no no yes
## 3106 56 blue-collar married basic.4y unknown yes no
## 3107 37 self-employed married basic.9y no yes no
## 3108 37 admin. divorced high.school no yes no
## 3109 41 blue-collar married basic.6y no no no
## 3110 42 technician divorced basic.9y no no no
## 3111 52 entrepreneur married university.degree unknown no no
## 3112 42 technician divorced basic.9y no no no
## 3113 58 management divorced university.degree no no no
## 3114 32 services married basic.9y no no no
## 3115 26 technician married professional.course no no no
## 3116 28 services married basic.9y unknown unknown unknown
## 3117 31 blue-collar single unknown no no no
## 3118 31 services married high.school no yes no
## 3119 27 admin. single high.school unknown no no
## 3120 37 blue-collar married basic.9y no yes yes
## 3121 32 admin. single university.degree no no no
## 3122 33 admin. married university.degree no yes no
## 3123 35 technician single professional.course no yes yes
## 3124 32 housemaid married basic.4y no no no
## 3125 43 unknown married high.school unknown yes yes
## 3126 32 housemaid married basic.4y no yes no
## 3127 31 entrepreneur single basic.9y no no no
## 3128 51 blue-collar married basic.9y no no no
## 3129 38 technician single professional.course unknown yes no
## 3130 40 admin. divorced professional.course no yes no
## 3131 42 unemployed divorced high.school unknown yes yes
## 3132 45 housemaid married basic.6y unknown no no
## 3133 35 blue-collar single unknown no no no
## 3134 40 services married high.school no no no
## 3135 44 blue-collar single high.school no yes no
## 3136 31 admin. married high.school no no no
## 3137 30 blue-collar married basic.9y no no no
## 3138 33 blue-collar married basic.6y unknown no no
## 3139 28 blue-collar married basic.9y unknown no no
## 3140 36 technician married professional.course unknown yes no
## 3141 49 services divorced basic.6y unknown yes no
## 3142 31 technician married professional.course no yes no
## 3143 45 admin. divorced basic.6y no yes no
## 3144 29 services married high.school no yes no
## 3145 34 blue-collar single basic.9y no no no
## 3146 45 blue-collar married basic.4y unknown yes no
## 3147 30 blue-collar single basic.4y no no no
## 3148 38 technician married professional.course no no no
## 3149 33 admin. married university.degree no no no
## 3150 46 blue-collar married basic.9y no no no
## 3151 41 entrepreneur divorced university.degree no yes no
## 3152 44 blue-collar single basic.4y no yes no
## 3153 32 blue-collar married high.school unknown yes no
## 3154 46 housemaid married basic.4y no yes no
## 3155 35 blue-collar married basic.9y no unknown unknown
## 3156 44 technician married professional.course no yes no
## 3157 35 technician married professional.course no no no
## 3158 39 services single high.school unknown no no
## 3159 52 blue-collar married basic.4y no yes no
## 3160 44 blue-collar married basic.4y unknown no no
## 3161 53 unknown married high.school unknown no no
## 3162 33 services divorced high.school no yes no
## 3163 41 technician single university.degree unknown yes no
## 3164 33 admin. single university.degree no no no
## 3165 46 admin. single high.school no unknown unknown
## 3166 38 blue-collar married basic.4y unknown no no
## 3167 44 blue-collar divorced unknown no no yes
## 3168 57 retired unknown basic.4y no yes no
## 3169 45 management married unknown unknown no no
## 3170 55 unknown married unknown unknown yes no
## 3171 26 admin. married high.school no no no
## 3172 38 blue-collar divorced unknown no yes no
## 3173 41 technician married basic.9y no yes no
## 3174 53 retired divorced basic.4y no no no
## 3175 42 services divorced basic.6y no yes no
## 3176 56 technician married professional.course unknown no no
## 3177 41 management married high.school no no no
## 3178 49 blue-collar married basic.9y no no no
## 3179 31 admin. married high.school no no no
## 3180 37 self-employed married professional.course no yes no
## 3181 40 blue-collar married basic.6y unknown no no
## 3182 43 blue-collar married basic.4y no no no
## 3183 48 self-employed married university.degree unknown yes no
## 3184 45 admin. married high.school no yes no
## 3185 49 technician married high.school no yes no
## 3186 52 blue-collar married basic.9y no yes no
## 3187 35 blue-collar married basic.9y unknown no no
## 3188 52 technician married basic.9y no yes no
## 3189 59 retired married basic.4y unknown yes no
## 3190 34 admin. single high.school no yes no
## 3191 33 admin. single high.school no unknown unknown
## 3192 34 services married basic.6y no yes yes
## 3193 33 blue-collar married basic.6y no no no
## 3194 46 blue-collar married basic.4y no no yes
## 3195 37 technician single university.degree no yes no
## 3196 35 entrepreneur married basic.9y no no yes
## 3197 41 admin. married university.degree no yes no
## 3198 39 blue-collar married basic.6y unknown no no
## 3199 52 blue-collar married basic.4y unknown unknown unknown
## 3200 46 entrepreneur divorced university.degree no no no
## 3201 41 services married basic.9y no yes yes
## 3202 57 blue-collar married unknown unknown yes no
## 3203 54 admin. married university.degree no unknown unknown
## 3204 38 services single high.school unknown no yes
## 3205 48 admin. married high.school no no yes
## 3206 59 admin. married high.school no yes no
## 3207 42 blue-collar divorced basic.4y unknown yes no
## 3208 45 unknown married unknown no no yes
## 3209 40 housemaid single university.degree no no no
## 3210 50 admin. married high.school no no no
## 3211 49 services married basic.6y unknown yes no
## 3212 45 blue-collar married basic.4y no no no
## 3213 42 self-employed married university.degree no no no
## 3214 36 services married high.school no no no
## 3215 41 blue-collar divorced basic.9y unknown yes no
## 3216 47 blue-collar married basic.4y no yes no
## 3217 45 blue-collar married basic.4y no no no
## 3218 44 blue-collar married basic.6y unknown no no
## 3219 34 blue-collar married basic.9y unknown yes no
## 3220 39 blue-collar married basic.9y no no no
## 3221 45 admin. married basic.6y unknown yes no
## 3222 48 technician married professional.course no no no
## 3223 31 blue-collar single high.school no yes no
## 3224 45 self-employed married basic.6y unknown no no
## 3225 36 services married high.school unknown no no
## 3226 40 unemployed divorced high.school no no no
## 3227 34 blue-collar married basic.9y no no no
## 3228 33 technician married professional.course no no no
## 3229 40 admin. married high.school unknown no no
## 3230 55 blue-collar married basic.9y unknown no no
## 3231 30 management married university.degree no no no
## 3232 38 admin. married basic.6y no yes no
## 3233 36 blue-collar single basic.9y no no no
## 3234 34 admin. married high.school no no no
## 3235 55 technician divorced professional.course unknown yes yes
## 3236 34 admin. married high.school no yes yes
## 3237 34 blue-collar married basic.4y no no yes
## 3238 33 services married basic.4y no no no
## 3239 43 unemployed married university.degree unknown yes no
## 3240 46 admin. married university.degree no no no
## 3241 48 blue-collar married basic.6y no yes yes
## 3242 50 management married university.degree unknown no no
## 3243 48 entrepreneur married basic.4y no no no
## 3244 39 admin. single high.school unknown yes no
## 3245 30 management single university.degree no unknown unknown
## 3246 27 services single high.school unknown no no
## 3247 31 services married basic.6y unknown yes no
## 3248 55 blue-collar married basic.9y no no no
## 3249 42 unknown divorced high.school no no no
## 3250 35 services single high.school unknown yes no
## 3251 53 retired married basic.4y unknown yes no
## 3252 41 blue-collar single basic.9y no no no
## 3253 36 blue-collar single basic.4y no no no
## 3254 36 technician single university.degree no no no
## 3255 46 management married basic.9y no yes no
## 3256 57 technician divorced basic.4y no yes no
## 3257 53 services married high.school unknown no no
## 3258 36 blue-collar married unknown unknown no no
## 3259 48 blue-collar married basic.9y no no no
## 3260 49 blue-collar divorced basic.4y unknown no no
## 3261 58 self-employed married university.degree no no no
## 3262 36 unknown single basic.6y unknown no no
## 3263 34 admin. single high.school no no no
## 3264 42 admin. married university.degree no no no
## 3265 41 blue-collar married basic.9y no no no
## 3266 55 retired married professional.course no yes no
## 3267 43 blue-collar married basic.4y unknown no no
## 3268 59 technician married unknown no yes no
## 3269 37 admin. married high.school no yes no
## 3270 38 unknown married unknown unknown yes no
## 3271 46 blue-collar single basic.4y no no no
## 3272 52 technician married high.school no yes no
## 3273 53 unemployed divorced basic.9y unknown no no
## 3274 40 admin. married high.school unknown yes no
## 3275 45 unknown married unknown no no yes
## 3276 55 blue-collar married basic.9y unknown yes no
## 3277 54 management divorced university.degree no yes no
## 3278 32 housemaid single basic.4y no yes no
## 3279 36 admin. divorced university.degree no yes no
## 3280 32 housemaid single basic.4y no no no
## 3281 35 blue-collar single professional.course no yes no
## 3282 44 services married high.school unknown yes no
## 3283 37 services married high.school no no no
## 3284 38 blue-collar single basic.4y no yes no
## 3285 50 blue-collar single basic.9y unknown yes no
## 3286 38 blue-collar single basic.6y unknown yes no
## 3287 49 self-employed married professional.course no unknown unknown
## 3288 37 admin. divorced high.school no no no
## 3289 46 unknown married basic.6y unknown no no
## 3290 36 blue-collar married basic.9y unknown yes no
## 3291 47 blue-collar married basic.9y unknown yes no
## 3292 33 blue-collar married basic.4y unknown no no
## 3293 31 services married high.school no no no
## 3294 45 entrepreneur married university.degree no no no
## 3295 36 blue-collar married basic.9y no no no
## 3296 49 self-employed married basic.9y no yes no
## 3297 39 services married professional.course unknown yes no
## 3298 34 housemaid divorced basic.6y no no no
## 3299 39 technician married professional.course no no no
## 3300 26 admin. single high.school no yes no
## 3301 36 blue-collar married basic.4y no no no
## 3302 31 admin. single university.degree no yes no
## 3303 54 blue-collar divorced basic.4y no no no
## 3304 39 admin. married university.degree no no no
## 3305 32 admin. married university.degree unknown yes no
## 3306 43 technician divorced professional.course no yes no
## 3307 53 blue-collar married basic.4y no no no
## 3308 28 admin. single high.school no yes no
## 3309 50 blue-collar single basic.9y unknown yes no
## 3310 44 admin. single university.degree unknown no no
## 3311 45 housemaid divorced university.degree no yes no
## 3312 56 admin. divorced unknown unknown yes no
## 3313 35 unemployed divorced basic.4y no yes no
## 3314 31 housemaid married basic.4y unknown no no
## 3315 47 management divorced university.degree no yes no
## 3316 39 admin. single high.school unknown no no
## 3317 35 admin. single university.degree no no no
## 3318 24 student single high.school no no no
## 3319 31 entrepreneur married high.school no yes no
## 3320 39 entrepreneur single university.degree no yes no
## 3321 45 blue-collar married basic.9y unknown no no
## 3322 39 blue-collar single basic.4y no no no
## 3323 60 management married university.degree unknown yes no
## 3324 45 admin. married basic.9y unknown yes no
## 3325 35 technician married university.degree unknown yes no
## 3326 53 retired divorced high.school no no yes
## 3327 54 blue-collar divorced basic.4y no no no
## 3328 36 services single basic.6y unknown yes no
## 3329 39 services divorced basic.9y no yes no
## 3330 48 admin. married professional.course no yes no
## 3331 32 admin. married university.degree no no no
## 3332 36 blue-collar married professional.course no yes yes
## 3333 42 admin. single university.degree no no no
## 3334 36 blue-collar married basic.9y no no no
## 3335 49 blue-collar married basic.4y unknown yes no
## 3336 38 admin. divorced high.school no no no
## 3337 34 entrepreneur single unknown unknown yes no
## 3338 34 management married university.degree no yes no
## 3339 30 admin. married university.degree no yes no
## 3340 36 technician single professional.course no yes no
## 3341 48 admin. single university.degree no yes no
## 3342 32 management married basic.6y no yes no
## 3343 51 admin. married high.school no unknown unknown
## 3344 47 blue-collar married basic.4y no no yes
## 3345 43 technician divorced professional.course no no no
## 3346 29 services married high.school no yes yes
## 3347 44 blue-collar divorced unknown no no no
## 3348 38 blue-collar married basic.6y no yes no
## 3349 59 retired married professional.course no no no
## 3350 29 admin. single university.degree no no no
## 3351 35 unemployed married basic.4y unknown unknown unknown
## 3352 36 blue-collar single basic.9y no no yes
## 3353 33 services married high.school unknown yes no
## 3354 34 admin. divorced basic.9y no no no
## 3355 25 blue-collar single basic.9y unknown no no
## 3356 48 management married university.degree no yes no
## 3357 25 blue-collar single basic.9y unknown yes no
## 3358 25 blue-collar single basic.9y unknown yes no
## 3359 52 self-employed married basic.4y unknown yes no
## 3360 34 blue-collar single basic.9y unknown no yes
## 3361 27 unemployed married basic.9y no no no
## 3362 44 blue-collar married basic.4y no no yes
## 3363 36 blue-collar married basic.9y no no no
## 3364 40 blue-collar married basic.9y unknown yes no
## 3365 38 blue-collar married basic.6y unknown no no
## 3366 57 blue-collar married basic.4y unknown yes no
## 3367 45 unknown married unknown no yes no
## 3368 27 blue-collar single basic.6y unknown no no
## 3369 31 blue-collar married basic.6y no yes yes
## 3370 30 blue-collar single high.school no yes no
## 3371 31 admin. single high.school no no no
## 3372 58 blue-collar married basic.4y unknown yes yes
## 3373 40 admin. married unknown no no no
## 3374 44 admin. married university.degree unknown yes no
## 3375 42 management divorced university.degree no no no
## 3376 28 student single basic.4y no no no
## 3377 47 blue-collar married unknown unknown yes yes
## 3378 47 blue-collar married unknown unknown yes no
## 3379 58 retired divorced university.degree no yes no
## 3380 32 services single professional.course no yes no
## 3381 50 services single high.school unknown yes no
## 3382 53 technician married professional.course unknown yes no
## 3383 29 technician single professional.course no no no
## 3384 34 technician single professional.course no no no
## 3385 35 technician married unknown unknown no no
## 3386 32 services single professional.course no no no
## 3387 26 blue-collar single basic.6y no no yes
## 3388 27 blue-collar married basic.4y unknown no no
## 3389 47 technician married professional.course no yes no
## 3390 47 blue-collar married professional.course unknown no yes
## 3391 38 housemaid married high.school unknown no no
## 3392 41 admin. single unknown no yes no
## 3393 41 blue-collar married basic.4y no no no
## 3394 58 management married university.degree unknown no no
## 3395 24 services single high.school no no no
## 3396 51 management married university.degree unknown no yes
## 3397 26 entrepreneur married university.degree no no no
## 3398 28 blue-collar married basic.9y no no no
## 3399 49 admin. married high.school unknown no no
## 3400 55 blue-collar married basic.4y unknown yes no
## 3401 38 blue-collar single basic.9y no no no
## 3402 50 blue-collar married basic.6y unknown no no
## 3403 46 blue-collar married basic.4y unknown no no
## 3404 35 admin. married university.degree no no no
## 3405 30 technician single professional.course no no no
## 3406 39 entrepreneur married basic.9y unknown no no
## 3407 28 admin. divorced high.school no no yes
## 3408 46 blue-collar married basic.6y unknown no yes
## 3409 38 student single university.degree no no no
## 3410 34 management married university.degree no no yes
## 3411 44 technician married professional.course no yes no
## 3412 36 management married basic.9y no yes no
## 3413 40 admin. married university.degree no yes no
## 3414 32 admin. divorced high.school no yes no
## 3415 29 admin. married university.degree no yes no
## 3416 50 unemployed married professional.course no no no
## 3417 53 admin. divorced university.degree no yes yes
## 3418 46 management married basic.4y unknown no no
## 3419 57 blue-collar married basic.4y unknown yes no
## 3420 45 blue-collar married basic.4y no yes no
## 3421 57 admin. married university.degree no yes no
## 3422 29 technician married university.degree no no yes
## 3423 32 blue-collar married basic.9y no unknown unknown
## 3424 25 technician single university.degree no yes no
## 3425 43 admin. married university.degree unknown yes no
## 3426 26 unemployed single basic.9y no no yes
## 3427 34 admin. married university.degree no yes no
## 3428 33 blue-collar divorced basic.9y unknown no no
## 3429 37 technician single university.degree no no no
## 3430 34 technician married university.degree no yes no
## 3431 53 admin. married basic.9y no yes yes
## 3432 28 technician single professional.course no yes no
## 3433 48 blue-collar married basic.9y no yes no
## 3434 36 blue-collar married basic.4y unknown yes no
## 3435 54 admin. married high.school no yes yes
## 3436 44 technician married professional.course unknown no no
## 3437 44 services married high.school unknown yes no
## 3438 56 management married basic.6y no no yes
## 3439 35 unemployed married university.degree no no no
## 3440 37 blue-collar married basic.9y unknown no no
## 3441 43 admin. married university.degree unknown yes no
## 3442 31 self-employed married basic.9y no no no
## 3443 31 student single unknown unknown yes no
## 3444 31 blue-collar divorced basic.9y no no no
## 3445 38 technician married university.degree no yes no
## 3446 40 blue-collar single basic.4y unknown no no
## 3447 44 services married high.school no no no
## 3448 36 admin. married basic.6y no no no
## 3449 49 admin. divorced high.school no no no
## 3450 30 admin. married university.degree no yes no
## 3451 28 technician single university.degree no yes no
## 3452 48 technician single unknown unknown no no
## 3453 35 self-employed married university.degree unknown yes yes
## 3454 50 blue-collar married basic.9y no yes no
## 3455 49 management married university.degree no no yes
## 3456 50 self-employed married basic.4y unknown no no
## 3457 29 technician single professional.course no yes yes
## 3458 29 blue-collar married basic.6y no no no
## 3459 60 entrepreneur married basic.4y no unknown unknown
## 3460 41 entrepreneur married high.school unknown no no
## 3461 46 admin. married university.degree no no no
## 3462 54 retired divorced professional.course no yes no
## 3463 49 blue-collar married unknown no no no
## 3464 41 admin. married high.school no yes no
## 3465 26 unemployed single professional.course no no no
## 3466 43 admin. married university.degree no yes no
## 3467 40 services single high.school unknown yes no
## 3468 35 management married university.degree no no no
## 3469 34 admin. single high.school no no no
## 3470 36 admin. divorced university.degree no yes no
## 3471 50 blue-collar married unknown unknown no no
## 3472 45 technician divorced professional.course no yes no
## 3473 49 technician married university.degree no yes no
## 3474 59 admin. married high.school unknown yes yes
## 3475 35 blue-collar married basic.9y no no no
## 3476 41 blue-collar married basic.9y no yes no
## 3477 34 blue-collar married basic.9y no yes no
## 3478 56 blue-collar married basic.9y unknown yes no
## 3479 37 management unknown high.school no no no
## 3480 46 blue-collar married basic.6y unknown yes no
## 3481 50 retired married basic.4y unknown yes no
## 3482 46 admin. single high.school no no no
## 3483 39 blue-collar married basic.4y unknown no yes
## 3484 27 technician single professional.course no no no
## 3485 59 technician married basic.6y unknown no no
## 3486 55 blue-collar divorced basic.9y no yes no
## 3487 36 admin. single university.degree no no no
## 3488 57 management married university.degree no yes no
## 3489 58 retired married basic.6y unknown no no
## 3490 36 services married high.school no unknown unknown
## 3491 42 blue-collar married basic.4y unknown no no
## 3492 37 technician married university.degree no no no
## 3493 34 services married high.school no no no
## 3494 32 admin. married university.degree no no no
## 3495 40 technician married professional.course no no no
## 3496 48 blue-collar married high.school unknown no no
## 3497 56 blue-collar married basic.9y unknown no no
## 3498 25 admin. single high.school no no yes
## 3499 36 blue-collar married high.school no yes yes
## 3500 48 entrepreneur married basic.4y no no yes
## 3501 28 student single basic.9y unknown yes no
## 3502 55 unemployed married basic.4y unknown no no
## 3503 31 blue-collar married basic.9y no unknown unknown
## 3504 57 retired single high.school no yes no
## 3505 42 technician married high.school no no no
## 3506 44 admin. single high.school no yes no
## 3507 30 admin. single high.school no no yes
## 3508 30 blue-collar married basic.9y no yes no
## 3509 37 technician married professional.course no yes no
## 3510 45 blue-collar married basic.4y unknown yes no
## 3511 35 blue-collar married basic.4y no no no
## 3512 43 management married professional.course no no no
## 3513 32 services married high.school unknown yes no
## 3514 47 blue-collar divorced basic.9y unknown yes no
## 3515 31 services single high.school no yes no
## 3516 49 blue-collar married basic.6y no yes no
## 3517 36 admin. divorced university.degree no no no
## 3518 40 blue-collar single basic.9y no yes no
## 3519 47 services married high.school no unknown unknown
## 3520 29 unemployed single university.degree no no no
## 3521 58 self-employed divorced unknown no yes no
## 3522 37 blue-collar married basic.9y no yes no
## 3523 33 blue-collar single basic.9y unknown yes yes
## 3524 36 self-employed married basic.9y no yes yes
## 3525 46 unemployed married high.school unknown no no
## 3526 37 services married basic.9y unknown no yes
## 3527 33 entrepreneur married basic.9y unknown no no
## 3528 32 entrepreneur married high.school no no no
## 3529 36 admin. married university.degree no yes no
## 3530 28 blue-collar single basic.9y no no yes
## 3531 35 technician married university.degree no yes no
## 3532 47 entrepreneur married university.degree no yes no
## 3533 31 blue-collar divorced basic.6y no yes no
## 3534 51 blue-collar married high.school no no yes
## 3535 51 admin. married basic.6y unknown yes no
## 3536 34 blue-collar single university.degree no yes yes
## 3537 42 admin. married unknown no no no
## 3538 39 technician married professional.course no yes no
## 3539 32 services married high.school no no yes
## 3540 46 unemployed divorced high.school unknown yes yes
## 3541 37 services married high.school no yes no
## 3542 45 entrepreneur married university.degree no yes yes
## 3543 30 self-employed single high.school no yes no
## 3544 58 management married basic.9y no no no
## 3545 38 services married high.school no yes no
## 3546 35 admin. single high.school no no yes
## 3547 32 technician single professional.course no yes no
## 3548 25 services divorced basic.4y no yes no
## 3549 56 technician married professional.course no no yes
## 3550 41 unemployed married basic.9y unknown yes no
## 3551 39 admin. married university.degree no no no
## 3552 40 services divorced high.school no no no
## 3553 48 management married university.degree no no no
## 3554 53 blue-collar married basic.9y unknown yes no
## 3555 38 admin. single basic.9y no no no
## 3556 42 technician divorced professional.course unknown no yes
## 3557 37 blue-collar married high.school no no no
## 3558 26 admin. single high.school no yes no
## 3559 50 management married high.school unknown no yes
## 3560 50 management married university.degree unknown no no
## 3561 46 services married basic.4y unknown no no
## 3562 39 admin. single unknown no no no
## 3563 53 technician married high.school no no no
## 3564 57 management divorced university.degree no no no
## 3565 29 blue-collar single high.school no yes no
## 3566 35 admin. married university.degree no yes no
## 3567 44 management single university.degree unknown yes no
## 3568 46 admin. married high.school no no no
## 3569 57 retired married unknown unknown yes no
## 3570 41 admin. single university.degree unknown no no
## 3571 31 blue-collar married basic.6y unknown unknown unknown
## 3572 27 admin. single high.school no no no
## 3573 47 blue-collar married basic.6y unknown yes yes
## 3574 43 admin. divorced high.school no yes no
## 3575 56 blue-collar married basic.4y unknown yes yes
## 3576 51 blue-collar married basic.9y unknown no no
## 3577 45 technician married university.degree no yes no
## 3578 35 admin. single basic.4y unknown no no
## 3579 59 retired divorced basic.4y no yes no
## 3580 38 self-employed single university.degree no no no
## 3581 41 technician single professional.course no yes no
## 3582 29 blue-collar single basic.6y no no no
## 3583 50 housemaid divorced basic.4y unknown no no
## 3584 35 admin. married university.degree no yes no
## 3585 25 housemaid single basic.9y no no no
## 3586 44 management married university.degree no no no
## 3587 28 services single high.school no yes no
## 3588 45 admin. divorced university.degree no no no
## 3589 39 admin. married high.school no no no
## 3590 28 admin. single university.degree no yes no
## 3591 42 admin. single university.degree no yes no
## 3592 59 blue-collar married basic.4y no no no
## 3593 49 blue-collar married basic.4y unknown yes no
## 3594 24 student single high.school no unknown unknown
## 3595 49 admin. married unknown no yes no
## 3596 34 admin. married university.degree no yes no
## 3597 39 blue-collar married high.school no no no
## 3598 41 admin. married high.school no no no
## 3599 48 technician married professional.course unknown yes no
## 3600 39 blue-collar married basic.4y no no no
## 3601 41 blue-collar married basic.4y unknown no no
## 3602 48 admin. divorced basic.9y no yes no
## 3603 52 management divorced university.degree no no no
## 3604 35 technician married professional.course no yes no
## 3605 56 blue-collar single basic.6y no yes no
## 3606 54 blue-collar divorced unknown unknown yes no
## 3607 60 entrepreneur married basic.4y no no no
## 3608 34 technician married professional.course no no yes
## 3609 26 blue-collar single basic.9y no no no
## 3610 39 blue-collar married basic.4y unknown unknown unknown
## 3611 29 housemaid single high.school no no no
## 3612 38 technician married professional.course no yes no
## 3613 35 housemaid married basic.4y no no no
## 3614 32 blue-collar married basic.9y no no no
## 3615 47 blue-collar married high.school unknown no no
## 3616 50 blue-collar single basic.9y unknown no no
## 3617 24 services married high.school no no no
## 3618 53 blue-collar married basic.9y no no no
## 3619 34 blue-collar married basic.9y no no no
## 3620 57 retired married high.school unknown yes no
## 3621 26 student single unknown unknown no no
## 3622 52 technician married professional.course no no no
## 3623 40 admin. married university.degree no no no
## 3624 28 management married high.school unknown no no
## 3625 30 blue-collar single basic.4y unknown unknown unknown
## 3626 37 technician single university.degree no no no
## 3627 45 technician divorced professional.course no yes no
## 3628 26 blue-collar single high.school unknown no no
## 3629 40 entrepreneur married university.degree no no no
## 3630 44 blue-collar divorced basic.4y unknown yes no
## 3631 56 blue-collar married basic.9y unknown yes no
## 3632 57 management divorced university.degree no yes no
## 3633 33 services married high.school no yes no
## 3634 35 admin. divorced university.degree no yes no
## 3635 52 management married professional.course no no no
## 3636 48 technician single high.school no yes no
## 3637 44 technician single university.degree no yes no
## 3638 52 blue-collar married basic.9y no yes no
## 3639 48 technician married unknown unknown no yes
## 3640 43 blue-collar married basic.4y unknown no no
## 3641 39 admin. married high.school no yes no
## 3642 46 services married high.school unknown yes no
## 3643 50 blue-collar married basic.9y no yes no
## 3644 37 admin. married university.degree unknown no no
## 3645 29 entrepreneur married basic.6y no no no
## 3646 40 technician married professional.course unknown yes no
## 3647 31 blue-collar married basic.4y unknown no yes
## 3648 36 services married high.school unknown yes no
## 3649 25 blue-collar single basic.4y no no no
## 3650 33 blue-collar single basic.9y unknown yes no
## 3651 32 admin. married university.degree no no no
## 3652 52 services divorced unknown unknown yes yes
## 3653 52 self-employed single basic.4y unknown yes no
## 3654 30 entrepreneur married high.school no yes no
## 3655 28 admin. single high.school no yes no
## 3656 42 blue-collar married basic.6y unknown no no
## 3657 41 management married university.degree no no no
## 3658 35 services married high.school unknown no no
## 3659 59 blue-collar married basic.4y unknown no no
## 3660 34 blue-collar married basic.4y no no no
## 3661 42 management married university.degree no yes yes
## 3662 49 admin. divorced high.school no yes no
## 3663 39 management married university.degree no no no
## 3664 24 services married high.school no no yes
## 3665 53 unemployed married basic.4y unknown no no
## 3666 29 admin. single university.degree no yes no
## 3667 26 blue-collar single high.school no yes no
## 3668 53 blue-collar divorced basic.4y unknown no no
## 3669 35 admin. married high.school no yes yes
## 3670 32 services married high.school no no yes
## 3671 37 management married university.degree no unknown unknown
## 3672 36 entrepreneur married university.degree no no yes
## 3673 32 blue-collar married basic.9y unknown yes no
## 3674 33 admin. married university.degree no yes no
## 3675 27 services married high.school no yes no
## 3676 28 admin. married university.degree no no no
## 3677 41 housemaid married high.school no no no
## 3678 26 admin. single high.school no no no
## 3679 40 blue-collar married basic.6y unknown no no
## 3680 56 retired married professional.course unknown no no
## 3681 33 admin. married high.school no yes yes
## 3682 58 admin. divorced basic.9y unknown yes no
## 3683 36 admin. married university.degree no yes no
## 3684 49 blue-collar married basic.4y unknown no no
## 3685 59 retired divorced basic.9y unknown yes no
## 3686 37 blue-collar single basic.9y unknown no no
## 3687 29 blue-collar single basic.9y no yes no
## 3688 32 services married professional.course no yes no
## 3689 53 blue-collar married basic.6y no yes no
## 3690 48 technician married high.school unknown yes no
## 3691 56 blue-collar married basic.4y unknown yes no
## 3692 37 services single basic.9y no yes no
## 3693 43 self-employed single professional.course unknown no no
## 3694 37 admin. single high.school no yes no
## 3695 46 blue-collar married basic.6y no no no
## 3696 28 blue-collar single basic.9y no no no
## 3697 44 housemaid married basic.9y no no no
## 3698 38 blue-collar single university.degree unknown no no
## 3699 31 admin. single basic.9y no yes no
## 3700 31 blue-collar single basic.9y no yes no
## 3701 36 technician married professional.course no no yes
## 3702 51 admin. single basic.6y no yes no
## 3703 29 technician married university.degree no no no
## 3704 28 admin. single university.degree no yes no
## 3705 49 self-employed married professional.course no no no
## 3706 30 technician married university.degree no yes no
## 3707 36 services married basic.9y unknown no no
## 3708 36 blue-collar married basic.4y unknown yes no
## 3709 57 blue-collar married basic.4y unknown no no
## 3710 40 blue-collar married basic.4y unknown no no
## 3711 52 blue-collar married basic.4y no no no
## 3712 29 blue-collar single unknown no no no
## 3713 45 management married university.degree no no no
## 3714 55 retired married basic.4y unknown no no
## 3715 52 management married university.degree no yes no
## 3716 24 admin. married high.school no yes no
## 3717 44 blue-collar divorced basic.4y unknown yes yes
## 3718 46 services divorced high.school no no no
## 3719 25 student single high.school no no no
## 3720 33 blue-collar single basic.9y no yes no
## 3721 29 services single basic.9y no no no
## 3722 44 admin. single university.degree no yes no
## 3723 41 blue-collar married basic.9y unknown no no
## 3724 50 technician married professional.course no no no
## 3725 41 blue-collar married basic.9y unknown no no
## 3726 48 admin. single university.degree no no yes
## 3727 26 services single high.school no no no
## 3728 48 unknown married basic.4y unknown no no
## 3729 47 blue-collar married basic.9y unknown yes no
## 3730 36 admin. married university.degree no no no
## 3731 54 technician divorced basic.9y unknown no no
## 3732 26 admin. single university.degree unknown no no
## 3733 35 technician married basic.9y no no no
## 3734 54 services divorced high.school unknown yes no
## 3735 51 services married basic.6y no no no
## 3736 28 technician single professional.course no no no
## 3737 52 services married university.degree no no no
## 3738 31 admin. married basic.9y unknown yes no
## 3739 28 services single high.school no yes no
## 3740 32 blue-collar married basic.9y no no no
## 3741 46 admin. divorced university.degree no no no
## 3742 38 admin. married university.degree no yes no
## 3743 36 blue-collar married basic.9y no no no
## 3744 31 admin. married university.degree no yes no
## 3745 38 management married university.degree no no no
## 3746 35 admin. married high.school unknown yes no
## 3747 39 housemaid married high.school no yes no
## 3748 31 housemaid divorced high.school no yes no
## 3749 39 self-employed married high.school no yes no
## 3750 36 housemaid married high.school no no no
## 3751 29 services married basic.9y unknown no no
## 3752 37 management married university.degree no no no
## 3753 28 blue-collar married basic.9y no yes no
## 3754 41 management married unknown no no no
## 3755 38 services married high.school unknown yes no
## 3756 31 technician married university.degree no no no
## 3757 50 blue-collar married basic.4y unknown yes no
## 3758 36 admin. married basic.9y no no no
## 3759 40 management married unknown no no no
## 3760 37 admin. married university.degree no no no
## 3761 28 unemployed single high.school no no no
## 3762 50 services divorced basic.4y unknown unknown unknown
## 3763 38 housemaid married basic.9y no no no
## 3764 43 blue-collar married basic.9y unknown no no
## 3765 37 technician married high.school no yes no
## 3766 47 blue-collar divorced basic.9y unknown no no
## 3767 52 technician married high.school unknown no no
## 3768 30 admin. single university.degree no no no
## 3769 33 admin. divorced high.school no yes no
## 3770 43 blue-collar married basic.4y unknown yes no
## 3771 52 technician married basic.9y no no no
## 3772 44 blue-collar married basic.6y unknown yes no
## 3773 48 management married university.degree no yes no
## 3774 40 admin. divorced professional.course no no no
## 3775 35 student single high.school no no yes
## 3776 56 management married basic.4y unknown unknown unknown
## 3777 53 technician married high.school no no no
## 3778 33 blue-collar married professional.course no yes no
## 3779 54 retired married basic.9y unknown no no
## 3780 35 technician married professional.course no no no
## 3781 33 services single high.school no no no
## 3782 36 services single basic.9y no yes no
## 3783 41 housemaid married university.degree unknown no no
## 3784 48 blue-collar married professional.course no no no
## 3785 35 admin. married university.degree no no no
## 3786 42 admin. single university.degree no yes no
## 3787 35 admin. married university.degree no yes no
## 3788 34 admin. married high.school no yes yes
## 3789 29 management single university.degree no yes no
## 3790 32 admin. single university.degree no yes no
## 3791 31 blue-collar married basic.9y no yes yes
## 3792 46 blue-collar married basic.4y no yes no
## 3793 25 blue-collar single basic.4y no yes no
## 3794 28 admin. single university.degree no yes no
## 3795 48 technician single university.degree unknown yes no
## 3796 42 retired married basic.9y unknown no no
## 3797 32 technician divorced professional.course no yes no
## 3798 30 admin. married university.degree no yes no
## 3799 32 services single high.school no no no
## 3800 28 services single basic.9y no yes no
## 3801 28 blue-collar married basic.9y no yes no
## 3802 40 blue-collar married basic.6y no yes no
## 3803 46 blue-collar married basic.9y unknown yes no
## 3804 38 entrepreneur married basic.6y no no no
## 3805 47 blue-collar married basic.4y no no no
## 3806 37 services married high.school no no no
## 3807 55 technician married basic.4y unknown yes no
## 3808 28 admin. single university.degree no yes no
## 3809 43 blue-collar single basic.9y no yes no
## 3810 56 unknown married unknown unknown yes no
## 3811 33 management single university.degree no no yes
## 3812 33 blue-collar married basic.9y no no yes
## 3813 35 admin. divorced university.degree no yes no
## 3814 41 blue-collar divorced basic.6y no unknown unknown
## 3815 59 entrepreneur divorced high.school unknown yes no
## 3816 29 services single university.degree no no no
## 3817 30 self-employed married basic.9y no yes no
## 3818 39 admin. single high.school unknown yes no
## 3819 51 retired married university.degree no yes yes
## 3820 34 blue-collar married basic.9y no no no
## 3821 31 technician single professional.course unknown yes yes
## 3822 36 blue-collar married basic.9y unknown yes yes
## 3823 46 technician married basic.9y no yes no
## 3824 31 technician married university.degree no no no
## 3825 37 technician married professional.course unknown yes no
## 3826 30 self-employed single high.school no yes yes
## 3827 47 admin. married high.school no no no
## 3828 41 blue-collar married high.school no yes no
## 3829 27 services single high.school no yes yes
## 3830 27 blue-collar divorced unknown no yes no
## 3831 39 blue-collar divorced basic.6y unknown no no
## 3832 32 services married high.school no no no
## 3833 42 blue-collar married basic.4y unknown yes yes
## 3834 37 services married high.school no no no
## 3835 41 blue-collar married basic.6y unknown yes no
## 3836 51 blue-collar married basic.9y unknown no no
## 3837 48 technician married high.school no no no
## 3838 36 technician married basic.9y no no no
## 3839 50 management single university.degree no no no
## 3840 25 admin. married high.school no yes no
## 3841 49 blue-collar married basic.9y unknown no no
## 3842 44 self-employed single basic.6y unknown yes no
## 3843 52 entrepreneur married university.degree unknown yes no
## 3844 33 self-employed single university.degree no yes no
## 3845 48 admin. divorced professional.course no yes no
## 3846 42 blue-collar married basic.9y unknown no no
## 3847 35 management married university.degree no yes no
## 3848 45 management married university.degree no no no
## 3849 28 admin. married high.school no yes no
## 3850 56 entrepreneur married university.degree no yes no
## 3851 60 retired married basic.9y unknown yes no
## 3852 37 admin. married high.school no no yes
## 3853 38 entrepreneur married basic.9y no no no
## 3854 41 self-employed married high.school unknown no no
## 3855 57 services divorced high.school no yes yes
## 3856 23 services married basic.9y no no no
## 3857 33 admin. married high.school no yes no
## 3858 48 blue-collar married basic.9y no yes no
## 3859 38 technician married university.degree unknown yes no
## 3860 32 blue-collar married basic.4y unknown yes no
## 3861 31 management married high.school no no no
## 3862 43 blue-collar divorced basic.9y no yes no
## 3863 44 management married high.school no yes no
## 3864 44 admin. married university.degree unknown no no
## 3865 33 services married high.school no no yes
## 3866 36 admin. married basic.9y no no no
## 3867 47 technician married professional.course unknown no no
## 3868 30 admin. married university.degree no no no
## 3869 34 blue-collar married basic.9y unknown no yes
## 3870 28 admin. single high.school no no no
## 3871 46 blue-collar married basic.9y no no yes
## 3872 32 blue-collar married basic.4y no no no
## 3873 36 retired married high.school no no no
## 3874 24 student single university.degree no yes yes
## 3875 35 blue-collar married basic.4y no yes no
## 3876 31 admin. single university.degree no no no
## 3877 51 admin. divorced university.degree unknown no no
## 3878 33 admin. married university.degree no no no
## 3879 28 services single basic.9y no yes no
## 3880 43 blue-collar married unknown unknown no no
## 3881 43 blue-collar married basic.6y no no no
## 3882 33 self-employed married university.degree no yes no
## 3883 31 services married basic.9y no yes no
## 3884 39 admin. married professional.course no no no
## 3885 52 self-employed married university.degree no yes no
## 3886 24 student single high.school unknown yes yes
## 3887 30 admin. single university.degree unknown no yes
## 3888 28 blue-collar married basic.9y no no yes
## 3889 28 blue-collar married basic.9y no no no
## 3890 41 technician single university.degree unknown yes no
## 3891 39 blue-collar married basic.9y no no no
## 3892 37 technician married basic.9y no no no
## 3893 51 blue-collar married basic.4y no no yes
## 3894 50 management married university.degree unknown unknown unknown
## 3895 53 technician married high.school no no yes
## 3896 53 technician married unknown no yes no
## 3897 52 blue-collar married basic.4y no no yes
## 3898 33 services married high.school no no no
## 3899 36 self-employed single university.degree no yes no
## 3900 41 blue-collar married basic.9y unknown no no
## 3901 43 admin. divorced high.school no no no
## 3902 39 self-employed married basic.4y unknown no no
## 3903 43 technician divorced university.degree unknown no no
## 3904 56 blue-collar married basic.4y unknown yes yes
## 3905 52 admin. married university.degree no no yes
## 3906 36 technician married professional.course no yes no
## 3907 35 self-employed divorced basic.9y no no yes
## 3908 30 services married high.school no yes no
## 3909 30 management divorced high.school no yes no
## 3910 36 housemaid married basic.4y unknown no no
## 3911 38 admin. divorced high.school no yes no
## 3912 38 blue-collar married basic.6y no yes no
## 3913 39 entrepreneur divorced university.degree no yes no
## 3914 34 management married high.school no no no
## 3915 35 unknown single basic.4y unknown yes yes
## 3916 59 retired married basic.4y unknown yes no
## 3917 32 blue-collar married basic.9y no yes no
## 3918 37 blue-collar single professional.course no no no
## 3919 52 self-employed single university.degree unknown yes no
## 3920 29 technician married professional.course no yes no
## 3921 44 blue-collar married basic.6y no yes yes
## 3922 41 blue-collar married basic.4y unknown no no
## 3923 37 services divorced high.school no yes no
## 3924 46 admin. married high.school unknown yes yes
## 3925 49 services single basic.4y unknown no no
## 3926 46 admin. divorced university.degree no no no
## 3927 40 admin. single unknown unknown no yes
## 3928 32 student single university.degree no no no
## 3929 40 self-employed married high.school unknown no no
## 3930 28 technician divorced professional.course no no no
## 3931 40 blue-collar married basic.6y unknown yes no
## 3932 32 admin. single professional.course no no no
## 3933 47 management married basic.4y unknown yes no
## 3934 38 blue-collar married basic.9y no yes yes
## 3935 32 management single high.school no yes no
## 3936 34 admin. single high.school no no yes
## 3937 53 technician married professional.course unknown yes yes
## 3938 36 technician married university.degree no yes no
## 3939 45 entrepreneur married basic.4y unknown no no
## 3940 47 management married basic.4y unknown no no
## 3941 44 blue-collar divorced basic.6y no no no
## 3942 44 blue-collar divorced basic.9y no no no
## 3943 37 admin. married high.school no yes no
## 3944 47 services married unknown unknown yes yes
## 3945 58 retired divorced university.degree no yes no
## 3946 28 services single high.school no yes no
## 3947 46 technician married professional.course no no no
## 3948 48 admin. married high.school no yes no
## 3949 41 blue-collar married professional.course no no no
## 3950 32 blue-collar single basic.6y no yes no
## 3951 48 technician married unknown no yes no
## 3952 49 management married university.degree no no no
## 3953 27 services single high.school no yes no
## 3954 55 blue-collar married basic.4y unknown yes no
## 3955 46 admin. married professional.course no no no
## 3956 47 technician married professional.course no unknown unknown
## 3957 42 admin. divorced university.degree no no no
## 3958 51 blue-collar married basic.9y unknown no no
## 3959 57 retired married basic.4y unknown yes no
## 3960 32 services single basic.6y no yes yes
## 3961 54 blue-collar married basic.4y unknown yes yes
## 3962 33 admin. married professional.course no no no
## 3963 50 blue-collar married basic.6y no no no
## 3964 45 services divorced high.school unknown yes no
## 3965 49 services divorced basic.9y no no no
## 3966 47 management married basic.4y unknown no no
## 3967 45 services married basic.9y no no yes
## 3968 36 technician married professional.course no yes no
## 3969 38 blue-collar married basic.4y no no no
## 3970 30 self-employed single high.school no yes no
## 3971 41 management married university.degree unknown yes no
## 3972 31 technician single university.degree unknown yes yes
## 3973 35 blue-collar married basic.6y no yes yes
## 3974 36 technician married basic.6y no yes no
## 3975 51 services married high.school unknown yes yes
## 3976 41 management married university.degree no no no
## 3977 37 blue-collar married basic.9y no yes no
## 3978 36 management married basic.9y no unknown unknown
## 3979 35 student single high.school no no no
## 3980 57 technician married professional.course no yes no
## 3981 28 admin. single university.degree no yes no
## 3982 54 housemaid divorced basic.4y no no no
## 3983 38 admin. single university.degree unknown yes no
## 3984 52 management divorced high.school no unknown unknown
## 3985 43 blue-collar married basic.4y unknown no yes
## 3986 30 student single basic.9y no no no
## 3987 51 blue-collar married basic.4y unknown yes no
## 3988 31 technician married university.degree no no no
## 3989 45 blue-collar married unknown no yes yes
## 3990 42 blue-collar married basic.4y no yes no
## 3991 37 blue-collar married basic.6y no no no
## 3992 49 blue-collar married basic.4y unknown yes no
## 3993 34 blue-collar married basic.9y unknown yes yes
## 3994 50 services married basic.6y no yes no
## 3995 47 services divorced high.school no no no
## 3996 44 unknown married basic.6y no yes yes
## 3997 42 blue-collar married basic.9y no yes no
## 3998 31 blue-collar married basic.9y no unknown unknown
## 3999 52 management married high.school unknown no no
## 4000 56 housemaid married basic.4y no no no
## 4001 36 blue-collar married basic.6y unknown unknown unknown
## 4002 45 admin. married university.degree no no no
## 4003 31 self-employed married university.degree no no yes
## 4004 39 housemaid married university.degree no no no
## 4005 45 blue-collar married basic.6y unknown yes no
## 4006 46 self-employed married basic.9y unknown no no
## 4007 32 blue-collar married basic.6y unknown yes no
## 4008 29 management single university.degree no yes yes
## 4009 41 blue-collar married basic.9y no no no
## 4010 35 admin. married university.degree no yes yes
## 4011 29 services married basic.9y no yes no
## 4012 34 admin. married university.degree no no no
## 4013 31 blue-collar single basic.9y no no no
## 4014 36 technician single professional.course no no yes
## 4015 41 technician married university.degree no no no
## 4016 59 retired married basic.9y unknown no no
## 4017 45 unemployed married basic.6y unknown no no
## 4018 31 blue-collar married basic.9y no yes no
## 4019 25 services married high.school unknown yes yes
## 4020 38 management married unknown no no no
## 4021 32 blue-collar divorced basic.9y no no no
## 4022 33 admin. single high.school unknown yes no
## 4023 35 self-employed married university.degree no unknown unknown
## 4024 37 blue-collar married professional.course no no no
## 4025 47 technician married professional.course no no no
## 4026 28 blue-collar married basic.6y no no no
## 4027 36 admin. married high.school no no no
## 4028 32 admin. married university.degree no yes no
## 4029 36 blue-collar single high.school no yes yes
## 4030 51 blue-collar married basic.4y no yes yes
## 4031 32 admin. married high.school no no no
## 4032 50 unemployed married basic.4y unknown yes no
## 4033 48 services divorced high.school unknown yes yes
## 4034 32 admin. married high.school unknown yes no
## 4035 48 blue-collar married basic.9y no no no
## 4036 52 technician divorced basic.9y no yes yes
## 4037 30 blue-collar single basic.9y unknown no yes
## 4038 36 blue-collar single basic.9y no no no
## 4039 48 admin. married university.degree no yes no
## 4040 25 blue-collar single basic.9y unknown yes no
## 4041 28 admin. single high.school no no no
## 4042 28 self-employed single basic.9y no no no
## 4043 34 blue-collar married basic.6y no no no
## 4044 39 admin. married basic.4y no no no
## 4045 42 services married professional.course no no no
## 4046 57 retired married basic.4y no yes no
## 4047 44 admin. married basic.4y unknown no no
## 4048 28 admin. single basic.9y no yes yes
## 4049 25 self-employed single university.degree no no no
## 4050 29 housemaid single high.school no no no
## 4051 28 services married high.school no no no
## 4052 41 admin. divorced university.degree unknown yes no
## 4053 28 self-employed married professional.course no no no
## 4054 32 admin. married high.school no no no
## 4055 49 blue-collar married basic.4y unknown yes no
## 4056 59 technician married university.degree unknown unknown unknown
## 4057 55 admin. married university.degree no no no
## 4058 43 management married university.degree no unknown unknown
## 4059 58 retired married basic.4y unknown no no
## 4060 54 blue-collar married basic.4y unknown no no
## 4061 25 blue-collar married basic.4y no no no
## 4062 24 technician single professional.course unknown no no
## 4063 53 self-employed married university.degree no no no
## 4064 36 admin. married university.degree no no no
## 4065 49 housemaid married basic.4y no no no
## 4066 44 entrepreneur married professional.course no no no
## 4067 51 blue-collar married basic.4y no unknown unknown
## 4068 37 housemaid married high.school no yes yes
## 4069 41 blue-collar married basic.9y no no no
## 4070 40 blue-collar married basic.9y no yes no
## 4071 35 services married professional.course unknown yes yes
## 4072 24 services single professional.course no yes no
## 4073 34 technician married university.degree no yes no
## 4074 30 blue-collar married basic.9y no no no
## 4075 48 services married high.school unknown yes yes
## 4076 27 blue-collar married basic.9y no yes no
## 4077 40 admin. divorced professional.course no no no
## 4078 40 admin. married university.degree unknown yes yes
## 4079 48 admin. married basic.9y unknown no yes
## 4080 35 admin. single high.school no yes yes
## 4081 26 admin. married high.school no no yes
## 4082 33 admin. married university.degree no no no
## 4083 29 services single university.degree unknown yes no
## 4084 45 blue-collar married basic.4y unknown yes yes
## 4085 35 admin. married university.degree no yes no
## 4086 32 blue-collar married basic.9y no yes no
## 4087 34 blue-collar married basic.9y no yes no
## 4088 33 services single high.school no no yes
## 4089 37 blue-collar married basic.9y unknown no no
## 4090 29 admin. single basic.9y unknown no no
## 4091 27 student single university.degree no yes no
## 4092 43 services divorced high.school no yes no
## 4093 47 blue-collar married professional.course unknown no no
## 4094 32 housemaid single high.school no unknown unknown
## 4095 33 unemployed divorced professional.course no unknown unknown
## 4096 26 unemployed married high.school no yes no
## 4097 39 blue-collar married basic.4y unknown yes no
## 4098 38 blue-collar married basic.6y unknown yes yes
## 4099 48 blue-collar married professional.course no no no
## 4100 42 entrepreneur married university.degree no no no
## 4101 35 blue-collar divorced basic.9y no yes yes
## 4102 42 blue-collar divorced basic.6y no yes no
## 4103 36 blue-collar single basic.9y unknown no no
## 4104 28 blue-collar married basic.9y no no yes
## 4105 32 technician single basic.9y no yes no
## 4106 28 blue-collar divorced high.school no yes no
## 4107 41 blue-collar divorced basic.9y no no no
## 4108 32 admin. married university.degree unknown unknown unknown
## 4109 42 blue-collar divorced basic.9y no unknown unknown
## 4110 29 technician single university.degree no unknown unknown
## 4111 38 services married high.school no yes no
## 4112 22 services single high.school no yes no
## 4113 34 blue-collar married basic.9y no no no
## 4114 31 blue-collar married basic.9y unknown yes yes
## 4115 52 entrepreneur married university.degree no no no
## 4116 55 services divorced high.school no no yes
## 4117 24 services single high.school no no no
## 4118 46 admin. divorced high.school unknown no yes
## 4119 31 admin. divorced university.degree no no no
## 4120 34 admin. married university.degree no no no
## 4121 45 entrepreneur married basic.9y no no no
## 4122 45 blue-collar married basic.9y unknown yes no
## 4123 39 technician divorced professional.course no unknown unknown
## 4124 29 technician single university.degree no unknown unknown
## 4125 44 technician divorced high.school no yes no
## 4126 29 technician single university.degree no yes no
## 4127 32 technician married professional.course no no yes
## 4128 32 technician single high.school no yes yes
## 4129 48 technician divorced professional.course no no yes
## 4130 29 technician single university.degree no yes no
## 4131 32 blue-collar married professional.course no yes no
## 4132 38 blue-collar single basic.4y no yes no
## 4133 28 unemployed single high.school no yes yes
## 4134 46 blue-collar married basic.4y no unknown unknown
## 4135 46 management married basic.9y unknown no no
## 4136 27 admin. single university.degree no yes no
## 4137 26 blue-collar married basic.4y no yes no
## 4138 33 blue-collar married basic.9y no yes no
## 4139 28 management married university.degree no no no
## 4140 52 management married basic.4y unknown no no
## 4141 35 admin. single university.degree no no no
## 4142 33 blue-collar married basic.9y no unknown unknown
## 4143 46 blue-collar married basic.9y no yes no
## 4144 26 services married high.school no no no
## 4145 39 services married high.school unknown no no
## 4146 47 admin. married university.degree no no no
## 4147 26 blue-collar married basic.4y no no yes
## 4148 34 blue-collar married professional.course no yes no
## 4149 24 admin. single high.school no yes no
## 4150 31 technician married professional.course no no no
## 4151 26 admin. single high.school no no yes
## 4152 31 admin. married high.school no no no
## 4153 34 blue-collar married basic.6y no yes no
## 4154 60 admin. married professional.course no yes no
## 4155 32 blue-collar married basic.6y unknown yes no
## 4156 24 blue-collar married basic.9y no yes no
## 4157 28 admin. married high.school no no no
## 4158 55 entrepreneur divorced university.degree no yes yes
## 4159 38 admin. divorced high.school no no no
## 4160 37 blue-collar married professional.course no yes no
## 4161 36 services divorced university.degree no no no
## 4162 47 technician married professional.course unknown yes no
## 4163 49 technician married professional.course unknown yes no
## 4164 31 blue-collar married basic.4y no yes no
## 4165 52 services married high.school unknown yes no
## 4166 36 services married high.school unknown yes no
## 4167 51 blue-collar married basic.6y unknown yes no
## 4168 52 services divorced high.school no no no
## 4169 29 technician married professional.course no yes no
## 4170 51 services married professional.course unknown no no
## 4171 31 blue-collar married basic.9y no yes no
## 4172 36 admin. married high.school no no no
## 4173 42 services married basic.9y unknown no no
## 4174 32 management single basic.4y no no no
## 4175 30 technician single professional.course no yes no
## 4176 27 blue-collar married basic.9y no yes no
## 4177 47 management married basic.4y unknown no no
## 4178 56 blue-collar married basic.4y unknown yes no
## 4179 57 housemaid married basic.6y no no yes
## 4180 27 services married professional.course no yes no
## 4181 46 blue-collar divorced basic.4y no no no
## 4182 43 technician single professional.course no yes no
## 4183 44 technician single professional.course unknown no no
## 4184 52 self-employed married university.degree unknown yes no
## 4185 38 technician single professional.course no no no
## 4186 48 blue-collar married basic.6y no no no
## 4187 31 technician married basic.9y unknown yes no
## 4188 33 management married university.degree no yes no
## 4189 37 blue-collar single university.degree no yes no
## 4190 34 blue-collar married basic.9y no yes no
## 4191 59 housemaid married unknown no no no
## 4192 34 admin. married university.degree no yes yes
## 4193 34 blue-collar single basic.9y no no no
## 4194 29 blue-collar single professional.course no yes no
## 4195 46 entrepreneur married university.degree no yes no
## 4196 46 blue-collar married basic.9y unknown no no
## 4197 31 admin. unknown high.school no no no
## 4198 58 blue-collar divorced unknown no no no
## 4199 33 blue-collar married basic.4y unknown no no
## 4200 32 admin. single university.degree no no no
## 4201 38 services single high.school unknown yes no
## 4202 51 admin. single university.degree no no no
## 4203 34 services married high.school no no no
## 4204 30 blue-collar married basic.9y no no no
## 4205 39 blue-collar married professional.course no no no
## 4206 47 blue-collar married basic.4y no yes no
## 4207 36 services married high.school no yes no
## 4208 47 services divorced high.school no no no
## 4209 49 self-employed single basic.9y no no no
## 4210 33 technician divorced professional.course no no no
## 4211 54 blue-collar married basic.9y unknown no yes
## 4212 35 admin. married university.degree no yes yes
## 4213 25 services single high.school no no no
## 4214 42 management married basic.6y unknown yes no
## 4215 26 admin. single high.school no no no
## 4216 36 technician married professional.course no no no
## 4217 47 technician single professional.course unknown no no
## 4218 43 services married basic.9y unknown no no
## 4219 27 admin. married university.degree no yes no
## 4220 40 housemaid married high.school unknown yes no
## 4221 56 management married unknown no no no
## 4222 59 admin. married basic.6y no yes no
## 4223 49 technician married professional.course unknown yes no
## 4224 40 blue-collar married basic.9y unknown no no
## 4225 54 technician divorced professional.course no no no
## 4226 43 housemaid married basic.4y unknown no no
## 4227 36 blue-collar married basic.9y no yes no
## 4228 53 technician married professional.course no yes no
## 4229 31 admin. married high.school no no no
## 4230 53 technician divorced professional.course no no no
## 4231 52 services married high.school unknown yes no
## 4232 34 admin. married university.degree no no no
## 4233 31 unemployed single professional.course no no no
## 4234 54 technician single university.degree unknown unknown unknown
## 4235 45 blue-collar married basic.9y unknown no no
## 4236 40 admin. married basic.9y no no no
## 4237 31 admin. married high.school no yes no
## 4238 41 entrepreneur single university.degree unknown yes no
## 4239 25 admin. married high.school no no yes
## 4240 35 student single university.degree unknown yes no
## 4241 49 admin. divorced university.degree no no no
## 4242 53 blue-collar married high.school no no no
## 4243 40 admin. married professional.course unknown yes no
## 4244 46 blue-collar married basic.4y no yes yes
## 4245 40 unemployed married basic.4y unknown yes no
## 4246 48 technician married unknown no yes yes
## 4247 58 retired married university.degree no no yes
## 4248 30 technician married university.degree unknown no no
## 4249 49 blue-collar married unknown unknown yes no
## 4250 54 technician married high.school no no no
## 4251 45 technician single professional.course no yes yes
## 4252 34 services married high.school no yes no
## 4253 32 services single basic.6y no no yes
## 4254 41 blue-collar married basic.4y unknown no no
## 4255 50 blue-collar married basic.4y no yes no
## 4256 52 blue-collar single basic.9y unknown yes no
## 4257 45 admin. married unknown no no no
## 4258 37 admin. married high.school unknown yes yes
## 4259 25 management single basic.4y no no no
## 4260 50 blue-collar married basic.4y no yes no
## 4261 43 blue-collar married basic.4y no yes no
## 4262 34 management married university.degree no no yes
## 4263 41 blue-collar married basic.9y no no no
## 4264 35 admin. married high.school no no no
## 4265 31 blue-collar single high.school no no no
## 4266 34 management single university.degree no no no
## 4267 47 services married high.school no no no
## 4268 52 self-employed married basic.4y unknown yes no
## 4269 47 blue-collar married unknown unknown no no
## 4270 42 technician divorced university.degree no no no
## 4271 28 admin. married high.school no no no
## 4272 43 admin. married university.degree no yes no
## 4273 41 services married basic.9y no no no
## 4274 33 technician married high.school no no no
## 4275 53 admin. married university.degree no yes no
## 4276 49 blue-collar married basic.4y unknown no no
## 4277 45 blue-collar married basic.4y unknown yes no
## 4278 33 services married university.degree no yes no
## 4279 45 blue-collar married basic.4y unknown yes no
## 4280 30 unemployed single basic.9y no no no
## 4281 49 technician married professional.course no yes no
## 4282 38 technician married professional.course no yes yes
## 4283 39 services divorced high.school no yes no
## 4284 50 blue-collar married basic.4y unknown no yes
## 4285 58 blue-collar married unknown no yes no
## 4286 46 blue-collar married basic.6y no yes no
## 4287 46 housemaid married high.school unknown no no
## 4288 40 technician married professional.course no no no
## 4289 36 admin. married high.school no no no
## 4290 53 self-employed married basic.4y no no no
## 4291 32 technician married unknown unknown no no
## 4292 42 admin. divorced university.degree no no no
## 4293 39 services married high.school unknown yes no
## 4294 39 services married high.school no no yes
## 4295 53 blue-collar married basic.4y unknown no no
## 4296 34 blue-collar single basic.9y no no no
## 4297 39 services married high.school unknown yes yes
## 4298 50 blue-collar married basic.9y unknown yes yes
## 4299 40 admin. married high.school no no no
## 4300 56 technician married professional.course unknown no no
## 4301 41 technician married professional.course no unknown unknown
## 4302 46 blue-collar married basic.9y no no yes
## 4303 36 blue-collar married unknown unknown no no
## 4304 42 blue-collar married unknown unknown yes yes
## 4305 38 technician married professional.course unknown yes no
## 4306 30 services divorced basic.9y no yes no
## 4307 42 technician married basic.9y no no no
## 4308 38 technician married professional.course no no no
## 4309 31 services married high.school unknown no no
## 4310 45 management married unknown unknown no no
## 4311 33 blue-collar married basic.9y no no no
## 4312 36 admin. married university.degree unknown yes no
## 4313 41 services married high.school unknown yes no
## 4314 31 admin. married high.school unknown no no
## 4315 36 admin. married high.school no yes yes
## 4316 21 admin. single basic.9y no yes yes
## 4317 29 admin. married high.school no yes no
## 4318 53 management married university.degree unknown yes no
## 4319 39 blue-collar married basic.6y no no yes
## 4320 31 blue-collar single basic.9y no yes no
## 4321 44 admin. divorced university.degree unknown yes yes
## 4322 38 admin. single basic.6y unknown no no
## 4323 47 entrepreneur married unknown unknown no no
## 4324 36 blue-collar married basic.9y no no no
## 4325 27 blue-collar single basic.9y no no no
## 4326 45 blue-collar married basic.9y unknown no no
## 4327 34 blue-collar married basic.4y no no no
## 4328 50 blue-collar married basic.4y unknown no no
## 4329 40 blue-collar married basic.4y no no no
## 4330 36 admin. divorced high.school no yes yes
## 4331 40 admin. married university.degree no yes no
## 4332 53 blue-collar married basic.4y no no no
## 4333 40 admin. divorced university.degree no yes no
## 4334 25 blue-collar married basic.9y no no no
## 4335 42 admin. married university.degree unknown no no
## 4336 47 admin. divorced professional.course unknown no no
## 4337 46 admin. divorced university.degree no no no
## 4338 35 technician married professional.course no no no
## 4339 45 blue-collar married basic.6y unknown no no
## 4340 43 technician married professional.course no no no
## 4341 58 admin. divorced basic.9y unknown no no
## 4342 43 admin. married high.school no yes no
## 4343 33 blue-collar single basic.9y no yes no
## 4344 38 blue-collar divorced unknown unknown unknown unknown
## 4345 32 unknown unknown university.degree no yes yes
## 4346 49 technician married professional.course no yes no
## 4347 36 services single unknown no no no
## 4348 35 admin. married high.school no no no
## 4349 45 blue-collar married basic.9y unknown no no
## 4350 36 admin. divorced high.school no no no
## 4351 45 services married basic.9y no yes no
## 4352 34 services married high.school unknown yes no
## 4353 54 management married high.school unknown yes no
## 4354 35 services single basic.4y no yes no
## 4355 30 admin. married university.degree no no yes
## 4356 40 services married high.school no no no
## 4357 31 blue-collar married basic.6y no yes no
## 4358 52 technician married basic.9y unknown no no
## 4359 46 admin. married basic.4y no no no
## 4360 27 admin. married high.school unknown no yes
## 4361 39 unemployed married professional.course no no yes
## 4362 59 technician married university.degree unknown no no
## 4363 39 admin. single unknown no no no
## 4364 55 retired divorced professional.course no no no
## 4365 43 unknown married university.degree no no no
## 4366 42 self-employed married high.school no no no
## 4367 42 admin. single university.degree no no no
## 4368 56 management married unknown no yes no
## 4369 45 services married high.school no yes no
## 4370 38 blue-collar single basic.9y no no yes
## 4371 49 blue-collar married basic.9y no no no
## 4372 57 blue-collar divorced basic.4y unknown yes no
## 4373 51 admin. married basic.6y unknown no no
## 4374 31 technician divorced basic.9y no no no
## 4375 52 management married university.degree unknown yes no
## 4376 57 retired married university.degree no yes no
## 4377 47 blue-collar married basic.9y no yes no
## 4378 42 blue-collar married basic.6y no yes no
## 4379 35 blue-collar single unknown no yes no
## 4380 31 admin. single university.degree no yes no
## 4381 43 technician single university.degree no no no
## 4382 44 blue-collar married basic.6y unknown yes no
## 4383 59 entrepreneur divorced high.school unknown no no
## 4384 57 blue-collar married unknown unknown yes no
## 4385 41 blue-collar married high.school unknown yes no
## 4386 32 services married high.school no no no
## 4387 33 blue-collar single basic.4y no no no
## 4388 54 entrepreneur married basic.6y unknown no no
## 4389 22 blue-collar single basic.9y no yes no
## 4390 36 management married university.degree unknown no no
## 4391 56 retired married high.school unknown no no
## 4392 41 management married high.school no no yes
## 4393 46 blue-collar married professional.course unknown no yes
## 4394 60 admin. single high.school no no yes
## 4395 50 services married high.school no no no
## 4396 49 entrepreneur married basic.4y unknown yes yes
## 4397 47 admin. married university.degree unknown no yes
## 4398 34 services married high.school unknown no no
## 4399 49 admin. married university.degree unknown no no
## 4400 30 blue-collar single high.school no yes no
## 4401 35 blue-collar divorced high.school unknown yes no
## 4402 40 entrepreneur married basic.9y unknown yes yes
## 4403 42 housemaid married high.school no no no
## 4404 45 blue-collar single basic.9y no yes yes
## 4405 40 blue-collar married basic.9y no yes no
## 4406 32 entrepreneur single university.degree unknown yes no
## 4407 41 services married basic.9y no yes no
## 4408 57 blue-collar divorced professional.course no yes no
## 4409 34 services married high.school no no no
## 4410 40 management married university.degree no no yes
## 4411 44 blue-collar married basic.4y unknown no no
## 4412 51 blue-collar married basic.9y unknown unknown unknown
## 4413 42 technician married basic.9y no no no
## 4414 32 technician divorced high.school no yes no
## 4415 33 blue-collar married basic.9y no yes no
## 4416 43 blue-collar married basic.4y unknown yes yes
## 4417 28 blue-collar married basic.6y unknown yes no
## 4418 37 services married high.school no yes no
## 4419 37 services single high.school no yes no
## 4420 41 housemaid married basic.9y unknown yes no
## 4421 37 admin. married university.degree no no no
## 4422 42 blue-collar married unknown no yes no
## 4423 60 services married unknown no no no
## 4424 28 admin. single university.degree no yes no
## 4425 45 housemaid divorced university.degree no no no
## 4426 34 blue-collar married basic.6y unknown yes no
## 4427 52 technician married high.school no yes no
## 4428 33 admin. married university.degree no no no
## 4429 43 entrepreneur married university.degree no no no
## 4430 41 management married university.degree no yes no
## 4431 31 technician married professional.course no no no
## 4432 48 entrepreneur married basic.9y unknown yes no
## 4433 47 services married high.school unknown no no
## 4434 38 admin. married basic.9y unknown yes no
## 4435 51 unemployed married professional.course no no no
## 4436 49 admin. married university.degree unknown yes no
## 4437 31 entrepreneur married basic.9y no no no
## 4438 45 self-employed married basic.4y unknown yes no
## 4439 41 blue-collar married basic.6y no no no
## 4440 51 retired married basic.9y no no no
## 4441 46 admin. divorced university.degree unknown no no
## 4442 48 self-employed married university.degree unknown no no
## 4443 51 retired married basic.9y no yes no
## 4444 44 services married high.school no unknown unknown
## 4445 30 services married high.school no yes no
## 4446 35 blue-collar divorced basic.9y no no yes
## 4447 35 unemployed married university.degree no no no
## 4448 57 technician married basic.9y no yes no
## 4449 38 admin. married university.degree no yes no
## 4450 36 self-employed married basic.6y unknown yes yes
## 4451 30 admin. single university.degree no no no
## 4452 37 services married high.school unknown no yes
## 4453 31 technician divorced basic.9y no no no
## 4454 37 admin. married high.school no yes yes
## 4455 31 blue-collar unknown unknown unknown no no
## 4456 38 technician married professional.course no unknown unknown
## 4457 29 student single university.degree no yes no
## 4458 36 services married high.school no unknown unknown
## 4459 41 management married basic.9y no yes no
## 4460 32 student single high.school unknown yes no
## 4461 42 blue-collar married basic.4y unknown yes no
## 4462 27 blue-collar married basic.9y no yes no
## 4463 34 technician married professional.course no no no
## 4464 44 management married university.degree no yes no
## 4465 42 services married professional.course no no no
## 4466 29 services divorced high.school no yes no
## 4467 40 blue-collar married basic.6y unknown no no
## 4468 57 retired single professional.course no no no
## 4469 42 blue-collar married basic.9y unknown yes no
## 4470 50 admin. married basic.9y no yes yes
## 4471 58 retired married basic.4y no yes no
## 4472 34 technician married professional.course no yes no
## 4473 40 admin. single university.degree no no no
## 4474 46 management married basic.9y no yes yes
## 4475 33 admin. married high.school no yes no
## 4476 42 retired married basic.9y unknown no no
## 4477 27 blue-collar married basic.6y no no no
## 4478 41 management single high.school no no no
## 4479 39 admin. married professional.course no yes no
## 4480 58 retired married basic.4y unknown no no
## 4481 31 blue-collar married basic.9y no no no
## 4482 48 blue-collar divorced professional.course no yes no
## 4483 45 housemaid married professional.course unknown no no
## 4484 30 self-employed married professional.course no no no
## 4485 58 management married basic.4y no no no
## 4486 39 blue-collar single basic.9y no no no
## 4487 41 technician married professional.course no no no
## 4488 44 blue-collar married basic.4y no no no
## 4489 47 blue-collar married basic.9y no no no
## 4490 32 admin. married university.degree no no yes
## 4491 39 management single basic.9y unknown yes no
## 4492 45 blue-collar married basic.4y unknown no no
## 4493 33 management married professional.course no no no
## 4494 27 blue-collar married basic.9y unknown yes no
## 4495 57 retired married basic.4y no yes yes
## 4496 32 blue-collar married basic.9y no yes no
## 4497 33 blue-collar divorced basic.9y no no no
## 4498 57 self-employed married unknown unknown no yes
## 4499 34 blue-collar married basic.4y no no yes
## 4500 58 unemployed married basic.4y unknown no no
## 4501 50 admin. single university.degree no yes no
## 4502 44 blue-collar married basic.9y no yes yes
## 4503 48 blue-collar married professional.course no yes no
## 4504 56 retired divorced high.school no yes no
## 4505 42 blue-collar married basic.6y no yes yes
## 4506 37 blue-collar married high.school unknown no no
## 4507 29 technician married professional.course no no no
## 4508 32 services married professional.course no yes no
## 4509 40 admin. single high.school no no no
## 4510 39 management married high.school no yes yes
## 4511 34 services married basic.6y unknown yes no
## 4512 50 housemaid divorced basic.4y unknown yes yes
## 4513 28 blue-collar single basic.4y no no no
## 4514 43 housemaid married basic.4y no unknown unknown
## 4515 27 admin. married high.school no yes no
## 4516 38 services married basic.9y no unknown unknown
## 4517 37 technician married professional.course no yes no
## 4518 39 admin. married basic.6y unknown yes yes
## 4519 36 technician divorced university.degree unknown yes no
## 4520 43 services married high.school no no no
## 4521 55 technician married basic.9y unknown yes yes
## 4522 35 admin. married university.degree no no no
## 4523 27 blue-collar married basic.6y unknown unknown unknown
## 4524 51 entrepreneur married basic.4y no no no
## 4525 34 housemaid married high.school no no no
## 4526 28 technician married professional.course no yes no
## 4527 50 blue-collar married basic.6y unknown no no
## 4528 26 blue-collar married basic.4y no yes yes
## 4529 50 admin. married basic.9y unknown yes yes
## 4530 52 blue-collar married basic.4y unknown no no
## 4531 52 blue-collar married basic.9y no yes yes
## 4532 45 admin. married high.school no no no
## 4533 37 blue-collar married unknown no no no
## 4534 43 technician married basic.9y unknown yes no
## 4535 46 admin. married high.school no yes no
## 4536 45 unemployed married university.degree no no no
## 4537 31 technician married professional.course no yes no
## 4538 39 blue-collar married professional.course unknown no no
## 4539 55 admin. divorced university.degree no no no
## 4540 55 admin. married high.school no no no
## 4541 27 technician single university.degree no yes no
## 4542 38 self-employed single university.degree no unknown unknown
## 4543 24 student married university.degree no no no
## 4544 36 services married high.school no no no
## 4545 44 admin. married basic.4y unknown yes yes
## 4546 33 blue-collar single basic.9y no no no
## 4547 30 technician married university.degree no no no
## 4548 28 self-employed single basic.9y no no no
## 4549 60 admin. married university.degree unknown no no
## 4550 38 technician single university.degree no yes no
## 4551 42 admin. married basic.9y no yes yes
## 4552 35 blue-collar married high.school no yes yes
## 4553 53 retired married high.school unknown no no
## 4554 24 admin. single high.school no no no
## 4555 35 admin. divorced university.degree no no no
## 4556 25 admin. single high.school no no no
## 4557 59 entrepreneur married university.degree unknown yes yes
## 4558 48 blue-collar married basic.4y unknown no no
## 4559 56 admin. married basic.9y no no no
## 4560 43 technician married unknown no yes no
## 4561 32 entrepreneur married basic.6y no no no
## 4562 27 blue-collar married basic.9y no yes yes
## 4563 34 management single basic.9y no no no
## 4564 31 blue-collar divorced professional.course no yes no
## 4565 37 unemployed married high.school no no no
## 4566 29 services married high.school no no no
## 4567 35 technician married university.degree no yes no
## 4568 57 technician divorced unknown no no no
## 4569 43 services married professional.course no yes no
## 4570 49 admin. single high.school no no no
## 4571 50 technician married basic.6y no yes no
## 4572 33 technician married university.degree unknown yes no
## 4573 34 blue-collar married basic.9y no yes no
## 4574 24 services single high.school no no no
## 4575 43 blue-collar married basic.4y unknown yes no
## 4576 44 admin. married university.degree no no no
## 4577 37 technician married professional.course no yes no
## 4578 39 blue-collar married basic.9y no yes no
## 4579 33 admin. single professional.course no no no
## 4580 46 blue-collar married basic.4y unknown yes no
## 4581 39 blue-collar married basic.9y no yes no
## 4582 28 admin. single university.degree no yes no
## 4583 25 technician single professional.course no yes yes
## 4584 39 services married high.school no no no
## 4585 31 blue-collar married basic.9y no no no
## 4586 32 admin. single high.school no no no
## 4587 32 services married high.school unknown no yes
## 4588 41 admin. married unknown unknown no no
## 4589 22 blue-collar married basic.4y no unknown unknown
## 4590 39 housemaid married basic.9y no no no
## 4591 29 admin. single high.school no no no
## 4592 50 technician married professional.course unknown yes no
## 4593 46 housemaid married basic.9y no no no
## 4594 39 housemaid married basic.4y no yes no
## 4595 55 services divorced basic.4y unknown yes no
## 4596 43 admin. married university.degree no no no
## 4597 42 services married high.school unknown yes no
## 4598 41 blue-collar married basic.6y unknown yes no
## 4599 31 technician single university.degree no no no
## 4600 56 blue-collar married basic.4y unknown yes no
## 4601 40 blue-collar married basic.4y unknown yes no
## 4602 46 management married basic.9y no yes no
## 4603 56 admin. divorced high.school no yes no
## 4604 42 blue-collar divorced basic.4y no no no
## 4605 41 admin. single high.school no yes no
## 4606 41 technician divorced basic.4y no yes no
## 4607 53 admin. married university.degree no no yes
## 4608 33 housemaid married basic.4y no unknown unknown
## 4609 25 services single high.school no no no
## 4610 42 admin. married high.school no no no
## 4611 34 services married high.school unknown yes yes
## 4612 41 technician divorced basic.4y no yes no
## 4613 38 admin. married high.school no no no
## 4614 31 technician single high.school no no yes
## 4615 46 services married professional.course no yes no
## 4616 58 retired married university.degree no no no
## 4617 39 services married high.school no no yes
## 4618 54 blue-collar married basic.9y unknown yes no
## 4619 31 admin. divorced university.degree no yes no
## 4620 40 services single high.school no yes yes
## 4621 56 retired divorced basic.4y no no no
## 4622 41 admin. married university.degree no no no
## 4623 33 admin. divorced high.school no no no
## 4624 55 technician married high.school no yes no
## 4625 33 admin. divorced high.school no no no
## 4626 48 admin. divorced high.school no no no
## 4627 28 blue-collar married basic.6y unknown yes no
## 4628 39 unemployed married university.degree no no no
## 4629 42 admin. single basic.9y unknown no yes
## 4630 60 housemaid married high.school unknown yes no
## 4631 35 technician married basic.9y no no no
## 4632 45 admin. married university.degree no yes yes
## 4633 36 blue-collar married basic.6y no yes no
## 4634 33 unemployed married basic.9y no yes no
## 4635 54 management divorced basic.6y unknown yes no
## 4636 49 housemaid married basic.4y unknown no yes
## 4637 46 housemaid married basic.4y no no no
## 4638 32 management single university.degree no no no
## 4639 42 blue-collar divorced basic.4y no no no
## 4640 37 blue-collar married basic.6y no no no
## 4641 35 technician married university.degree no no no
## 4642 47 blue-collar married basic.6y no no no
## 4643 33 technician married professional.course no yes no
## 4644 38 blue-collar married basic.9y no yes yes
## 4645 39 housemaid married university.degree no no no
## 4646 55 admin. married high.school no yes no
## 4647 35 services married high.school no yes no
## 4648 55 admin. married high.school no yes no
## 4649 33 blue-collar married basic.6y unknown no no
## 4650 32 blue-collar married basic.9y unknown yes no
## 4651 32 blue-collar married basic.9y no yes no
## 4652 32 blue-collar divorced basic.9y no no no
## 4653 42 admin. single university.degree no yes yes
## 4654 38 blue-collar married high.school unknown yes no
## 4655 56 self-employed married basic.4y no no no
## 4656 55 admin. married high.school no yes yes
## 4657 33 technician married professional.course no yes yes
## 4658 45 admin. single high.school unknown yes yes
## 4659 58 management married university.degree unknown no no
## 4660 46 self-employed married university.degree no yes yes
## 4661 33 management married university.degree no yes no
## 4662 50 self-employed married basic.4y unknown no yes
## 4663 56 blue-collar married basic.4y unknown no no
## 4664 33 blue-collar married basic.4y unknown yes yes
## 4665 26 admin. married university.degree no yes yes
## 4666 49 housemaid single high.school unknown yes no
## 4667 36 services married high.school no yes yes
## 4668 52 self-employed single university.degree unknown no no
## 4669 49 blue-collar married basic.9y unknown no yes
## 4670 49 blue-collar married basic.4y unknown no no
## 4671 28 admin. single high.school no no no
## 4672 36 services married high.school no no no
## 4673 45 admin. single professional.course no yes no
## 4674 41 technician married university.degree no no no
## 4675 49 admin. married high.school unknown no no
## 4676 31 services married professional.course no no no
## 4677 32 technician married professional.course no no no
## 4678 59 retired married professional.course unknown no no
## 4679 25 services divorced high.school no yes yes
## 4680 22 services single basic.4y no no no
## 4681 43 blue-collar married basic.9y no no no
## 4682 35 blue-collar married basic.9y no yes no
## 4683 60 entrepreneur married basic.4y no yes no
## 4684 40 admin. married university.degree no no no
## 4685 37 unemployed married professional.course no yes no
## 4686 37 technician married university.degree no yes yes
## 4687 36 technician single university.degree no no no
## 4688 35 blue-collar married basic.9y no yes no
## 4689 43 entrepreneur married basic.9y no yes no
## 4690 39 housemaid married basic.9y no yes no
## 4691 56 blue-collar married unknown unknown yes no
## 4692 37 services single high.school no no no
## 4693 38 blue-collar married professional.course no no no
## 4694 37 technician single university.degree no no no
## 4695 54 blue-collar married basic.9y unknown no no
## 4696 53 retired married high.school unknown no no
## 4697 38 services married basic.9y no no no
## 4698 47 technician single professional.course unknown no no
## 4699 33 management married high.school unknown no no
## 4700 39 blue-collar married basic.4y unknown yes no
## 4701 36 technician single professional.course unknown no no
## 4702 35 blue-collar married basic.9y no no no
## 4703 40 admin. married university.degree unknown yes yes
## 4704 55 admin. single university.degree unknown yes yes
## 4705 37 blue-collar married basic.4y no yes no
## 4706 53 blue-collar married basic.9y unknown no no
## 4707 36 admin. married high.school no unknown unknown
## 4708 32 blue-collar married basic.9y no no no
## 4709 42 admin. married high.school no yes no
## 4710 52 management married university.degree no yes no
## 4711 33 services married high.school no no yes
## 4712 51 admin. married professional.course unknown no no
## 4713 32 management single university.degree no yes no
## 4714 33 technician divorced professional.course no yes no
## 4715 34 services married high.school no no no
## 4716 34 services married high.school no no no
## 4717 55 admin. divorced university.degree no yes no
## 4718 33 management married high.school unknown yes no
## 4719 34 blue-collar married basic.9y no yes yes
## 4720 52 services married university.degree no yes no
## 4721 55 technician married basic.9y unknown yes no
## 4722 45 blue-collar married basic.4y unknown yes no
## 4723 34 blue-collar married basic.9y unknown yes yes
## 4724 53 self-employed married university.degree no yes no
## 4725 43 admin. married university.degree no no no
## 4726 33 management married basic.9y no yes no
## 4727 39 blue-collar married basic.9y no no no
## 4728 29 blue-collar married basic.9y unknown yes no
## 4729 35 self-employed married basic.9y no yes no
## 4730 45 blue-collar married basic.4y no yes no
## 4731 35 blue-collar married basic.9y no yes no
## 4732 37 technician single university.degree no no no
## 4733 38 blue-collar married basic.6y unknown no no
## 4734 35 retired married professional.course no no no
## 4735 36 technician married university.degree no no no
## 4736 30 blue-collar married basic.4y no no no
## 4737 53 entrepreneur single basic.9y no no no
## 4738 30 admin. single university.degree no no no
## 4739 41 blue-collar married basic.4y unknown no no
## 4740 40 blue-collar married basic.9y unknown no no
## 4741 36 technician married university.degree no no no
## 4742 36 management married high.school no no no
## 4743 44 services divorced high.school unknown no no
## 4744 56 retired married high.school unknown no no
## 4745 38 management married university.degree no yes no
## 4746 35 blue-collar married professional.course no yes yes
## 4747 35 management married university.degree no no yes
## 4748 28 management married high.school unknown yes no
## 4749 43 housemaid married basic.4y unknown no yes
## 4750 30 entrepreneur married professional.course no no no
## 4751 36 student single university.degree unknown yes no
## 4752 40 blue-collar married basic.9y no yes yes
## 4753 35 technician single university.degree no yes no
## 4754 27 admin. single basic.9y no yes yes
## 4755 42 technician divorced basic.9y no no no
## 4756 49 blue-collar married basic.6y no yes no
## 4757 38 technician married professional.course no yes yes
## 4758 31 admin. married high.school no yes no
## 4759 57 retired married basic.4y no no no
## 4760 29 blue-collar single basic.6y no no no
## 4761 36 management married university.degree no yes no
## contact month day_of_week duration campaign pdays previous poutcome
## 1 telephone may mon 261 1 999 0 nonexistent
## 2 telephone may mon 149 1 999 0 nonexistent
## 3 telephone may mon 226 1 999 0 nonexistent
## 4 telephone may mon 151 1 999 0 nonexistent
## 5 telephone may mon 307 1 999 0 nonexistent
## 6 telephone may mon 198 1 999 0 nonexistent
## 7 telephone may mon 139 1 999 0 nonexistent
## 8 telephone may mon 217 1 999 0 nonexistent
## 9 telephone may mon 380 1 999 0 nonexistent
## 10 telephone may mon 50 1 999 0 nonexistent
## 11 telephone may mon 55 1 999 0 nonexistent
## 12 telephone may mon 222 1 999 0 nonexistent
## 13 telephone may mon 137 1 999 0 nonexistent
## 14 telephone may mon 293 1 999 0 nonexistent
## 15 telephone may mon 146 1 999 0 nonexistent
## 16 telephone may mon 174 1 999 0 nonexistent
## 17 telephone may mon 312 1 999 0 nonexistent
## 18 telephone may mon 440 1 999 0 nonexistent
## 19 telephone may mon 353 1 999 0 nonexistent
## 20 telephone may mon 195 1 999 0 nonexistent
## 21 telephone may mon 38 1 999 0 nonexistent
## 22 telephone may mon 262 1 999 0 nonexistent
## 23 telephone may mon 342 1 999 0 nonexistent
## 24 telephone may mon 181 1 999 0 nonexistent
## 25 telephone may mon 172 1 999 0 nonexistent
## 26 telephone may mon 99 1 999 0 nonexistent
## 27 telephone may mon 93 1 999 0 nonexistent
## 28 telephone may mon 233 1 999 0 nonexistent
## 29 telephone may mon 255 2 999 0 nonexistent
## 30 telephone may mon 362 1 999 0 nonexistent
## 31 telephone may mon 348 1 999 0 nonexistent
## 32 telephone may mon 386 1 999 0 nonexistent
## 33 telephone may mon 73 1 999 0 nonexistent
## 34 telephone may mon 230 1 999 0 nonexistent
## 35 telephone may mon 208 1 999 0 nonexistent
## 36 telephone may mon 336 1 999 0 nonexistent
## 37 telephone may mon 365 1 999 0 nonexistent
## 38 telephone may mon 1666 1 999 0 nonexistent
## 39 telephone may mon 577 1 999 0 nonexistent
## 40 telephone may mon 137 1 999 0 nonexistent
## 41 telephone may mon 366 1 999 0 nonexistent
## 42 telephone may mon 314 1 999 0 nonexistent
## 43 telephone may mon 160 1 999 0 nonexistent
## 44 telephone may mon 212 1 999 0 nonexistent
## 45 telephone may mon 188 1 999 0 nonexistent
## 46 telephone may mon 22 1 999 0 nonexistent
## 47 telephone may mon 616 1 999 0 nonexistent
## 48 telephone may mon 178 1 999 0 nonexistent
## 49 telephone may mon 355 1 999 0 nonexistent
## 50 telephone may mon 225 2 999 0 nonexistent
## 51 telephone may mon 160 1 999 0 nonexistent
## 52 telephone may mon 266 1 999 0 nonexistent
## 53 telephone may mon 253 1 999 0 nonexistent
## 54 telephone may mon 179 1 999 0 nonexistent
## 55 telephone may mon 269 2 999 0 nonexistent
## 56 telephone may mon 135 1 999 0 nonexistent
## 57 telephone may mon 161 1 999 0 nonexistent
## 58 telephone may mon 787 1 999 0 nonexistent
## 59 telephone may mon 145 1 999 0 nonexistent
## 60 telephone may mon 174 1 999 0 nonexistent
## 61 telephone may mon 449 1 999 0 nonexistent
## 62 telephone may mon 812 1 999 0 nonexistent
## 63 telephone may mon 164 1 999 0 nonexistent
## 64 telephone may mon 366 1 999 0 nonexistent
## 65 telephone may mon 357 1 999 0 nonexistent
## 66 telephone may mon 232 1 999 0 nonexistent
## 67 telephone may mon 91 1 999 0 nonexistent
## 68 telephone may mon 273 1 999 0 nonexistent
## 69 telephone may mon 158 2 999 0 nonexistent
## 70 telephone may mon 177 1 999 0 nonexistent
## 71 telephone may mon 200 1 999 0 nonexistent
## 72 telephone may mon 172 1 999 0 nonexistent
## 73 telephone may mon 176 1 999 0 nonexistent
## 74 telephone may mon 211 1 999 0 nonexistent
## 75 telephone may mon 214 1 999 0 nonexistent
## 76 telephone may mon 1575 1 999 0 nonexistent
## 77 telephone may mon 349 1 999 0 nonexistent
## 78 telephone may mon 337 2 999 0 nonexistent
## 79 telephone may mon 272 1 999 0 nonexistent
## 80 telephone may mon 208 1 999 0 nonexistent
## 81 telephone may mon 193 1 999 0 nonexistent
## 82 telephone may mon 212 1 999 0 nonexistent
## 83 telephone may mon 165 2 999 0 nonexistent
## 84 telephone may mon 1042 1 999 0 nonexistent
## 85 telephone may mon 20 1 999 0 nonexistent
## 86 telephone may mon 246 1 999 0 nonexistent
## 87 telephone may mon 529 2 999 0 nonexistent
## 88 telephone may mon 192 1 999 0 nonexistent
## 89 telephone may mon 1467 1 999 0 nonexistent
## 90 telephone may mon 188 2 999 0 nonexistent
## 91 telephone may mon 180 2 999 0 nonexistent
## 92 telephone may mon 48 1 999 0 nonexistent
## 93 telephone may mon 213 2 999 0 nonexistent
## 94 telephone may mon 545 1 999 0 nonexistent
## 95 telephone may mon 583 1 999 0 nonexistent
## 96 telephone may mon 221 1 999 0 nonexistent
## 97 telephone may mon 426 1 999 0 nonexistent
## 98 telephone may mon 287 1 999 0 nonexistent
## 99 telephone may mon 197 1 999 0 nonexistent
## 100 telephone may mon 257 1 999 0 nonexistent
## 101 telephone may mon 229 1 999 0 nonexistent
## 102 telephone may mon 55 3 999 0 nonexistent
## 103 telephone may mon 400 1 999 0 nonexistent
## 104 telephone may mon 197 1 999 0 nonexistent
## 105 telephone may mon 190 1 999 0 nonexistent
## 106 telephone may mon 21 1 999 0 nonexistent
## 107 telephone may mon 300 2 999 0 nonexistent
## 108 telephone may mon 123 2 999 0 nonexistent
## 109 telephone may mon 293 1 999 0 nonexistent
## 110 telephone may mon 325 1 999 0 nonexistent
## 111 telephone may mon 514 1 999 0 nonexistent
## 112 telephone may mon 849 2 999 0 nonexistent
## 113 telephone may mon 194 1 999 0 nonexistent
## 114 telephone may mon 212 2 999 0 nonexistent
## 115 telephone may mon 337 2 999 0 nonexistent
## 116 telephone may mon 286 1 999 0 nonexistent
## 117 telephone may mon 247 2 999 0 nonexistent
## 118 telephone may mon 518 1 999 0 nonexistent
## 119 telephone may mon 364 1 999 0 nonexistent
## 120 telephone may mon 178 1 999 0 nonexistent
## 121 telephone may mon 98 1 999 0 nonexistent
## 122 telephone may mon 439 1 999 0 nonexistent
## 123 telephone may mon 139 1 999 0 nonexistent
## 124 telephone may mon 79 1 999 0 nonexistent
## 125 telephone may mon 175 1 999 0 nonexistent
## 126 telephone may mon 262 2 999 0 nonexistent
## 127 telephone may mon 61 1 999 0 nonexistent
## 128 telephone may mon 78 1 999 0 nonexistent
## 129 telephone may mon 102 2 999 0 nonexistent
## 130 telephone may mon 579 1 999 0 nonexistent
## 131 telephone may mon 143 1 999 0 nonexistent
## 132 telephone may mon 677 1 999 0 nonexistent
## 133 telephone may mon 267 1 999 0 nonexistent
## 134 telephone may mon 345 1 999 0 nonexistent
## 135 telephone may mon 185 1 999 0 nonexistent
## 136 telephone may mon 207 1 999 0 nonexistent
## 137 telephone may mon 69 2 999 0 nonexistent
## 138 telephone may mon 100 2 999 0 nonexistent
## 139 telephone may mon 125 2 999 0 nonexistent
## 140 telephone may mon 461 1 999 0 nonexistent
## 141 telephone may mon 240 1 999 0 nonexistent
## 142 telephone may mon 70 1 999 0 nonexistent
## 143 telephone may mon 193 1 999 0 nonexistent
## 144 telephone may mon 136 1 999 0 nonexistent
## 145 telephone may mon 73 1 999 0 nonexistent
## 146 telephone may mon 528 1 999 0 nonexistent
## 147 telephone may mon 541 1 999 0 nonexistent
## 148 telephone may mon 338 1 999 0 nonexistent
## 149 telephone may mon 163 1 999 0 nonexistent
## 150 telephone may mon 87 1 999 0 nonexistent
## 151 telephone may mon 301 1 999 0 nonexistent
## 152 telephone may mon 46 1 999 0 nonexistent
## 153 telephone may mon 52 1 999 0 nonexistent
## 154 telephone may mon 204 1 999 0 nonexistent
## 155 telephone may mon 155 1 999 0 nonexistent
## 156 telephone may mon 98 1 999 0 nonexistent
## 157 telephone may mon 71 1 999 0 nonexistent
## 158 telephone may mon 243 1 999 0 nonexistent
## 159 telephone may mon 186 2 999 0 nonexistent
## 160 telephone may mon 579 2 999 0 nonexistent
## 161 telephone may mon 165 2 999 0 nonexistent
## 162 telephone may mon 163 2 999 0 nonexistent
## 163 telephone may mon 46 1 999 0 nonexistent
## 164 telephone may mon 559 3 999 0 nonexistent
## 165 telephone may mon 2033 1 999 0 nonexistent
## 166 telephone may mon 85 1 999 0 nonexistent
## 167 telephone may mon 506 1 999 0 nonexistent
## 168 telephone may mon 114 2 999 0 nonexistent
## 169 telephone may mon 114 2 999 0 nonexistent
## 170 telephone may mon 843 2 999 0 nonexistent
## 171 telephone may mon 181 1 999 0 nonexistent
## 172 telephone may mon 427 1 999 0 nonexistent
## 173 telephone may mon 292 1 999 0 nonexistent
## 174 telephone may mon 192 1 999 0 nonexistent
## 175 telephone may mon 93 3 999 0 nonexistent
## 176 telephone may mon 128 2 999 0 nonexistent
## 177 telephone may mon 107 1 999 0 nonexistent
## 178 telephone may mon 303 2 999 0 nonexistent
## 179 telephone may mon 81 1 999 0 nonexistent
## 180 telephone may mon 270 1 999 0 nonexistent
## 181 telephone may mon 228 1 999 0 nonexistent
## 182 telephone may mon 240 1 999 0 nonexistent
## 183 telephone may mon 673 2 999 0 nonexistent
## 184 telephone may mon 233 3 999 0 nonexistent
## 185 telephone may mon 102 1 999 0 nonexistent
## 186 telephone may mon 461 1 999 0 nonexistent
## 187 telephone may mon 250 1 999 0 nonexistent
## 188 telephone may mon 130 1 999 0 nonexistent
## 189 telephone may mon 252 1 999 0 nonexistent
## 190 telephone may mon 138 1 999 0 nonexistent
## 191 telephone may mon 412 1 999 0 nonexistent
## 192 telephone may mon 179 2 999 0 nonexistent
## 193 telephone may mon 19 2 999 0 nonexistent
## 194 telephone may mon 228 2 999 0 nonexistent
## 195 telephone may mon 55 1 999 0 nonexistent
## 196 telephone may mon 717 1 999 0 nonexistent
## 197 telephone may mon 313 1 999 0 nonexistent
## 198 telephone may mon 289 1 999 0 nonexistent
## 199 telephone may mon 683 2 999 0 nonexistent
## 200 telephone may mon 1077 1 999 0 nonexistent
## 201 telephone may mon 146 2 999 0 nonexistent
## 202 telephone may mon 167 1 999 0 nonexistent
## 203 telephone may mon 356 2 999 0 nonexistent
## 204 telephone may mon 277 1 999 0 nonexistent
## 205 telephone may mon 172 1 999 0 nonexistent
## 206 telephone may mon 218 1 999 0 nonexistent
## 207 telephone may mon 217 1 999 0 nonexistent
## 208 telephone may mon 67 1 999 0 nonexistent
## 209 telephone may mon 291 1 999 0 nonexistent
## 210 telephone may mon 248 1 999 0 nonexistent
## 211 telephone may mon 256 1 999 0 nonexistent
## 212 telephone may mon 286 1 999 0 nonexistent
## 213 telephone may mon 477 1 999 0 nonexistent
## 214 telephone may mon 611 2 999 0 nonexistent
## 215 telephone may mon 471 1 999 0 nonexistent
## 216 telephone may mon 381 2 999 0 nonexistent
## 217 telephone may mon 251 1 999 0 nonexistent
## 218 telephone may mon 408 1 999 0 nonexistent
## 219 telephone may mon 287 1 999 0 nonexistent
## 220 telephone may mon 322 3 999 0 nonexistent
## 221 telephone may mon 216 2 999 0 nonexistent
## 222 telephone may mon 366 2 999 0 nonexistent
## 223 telephone may mon 210 1 999 0 nonexistent
## 224 telephone may mon 288 1 999 0 nonexistent
## 225 telephone may mon 168 1 999 0 nonexistent
## 226 telephone may mon 132 1 999 0 nonexistent
## 227 telephone may mon 64 2 999 0 nonexistent
## 228 telephone may mon 209 2 999 0 nonexistent
## 229 telephone may mon 410 3 999 0 nonexistent
## 230 telephone may mon 177 1 999 0 nonexistent
## 231 telephone may mon 580 2 999 0 nonexistent
## 232 telephone may mon 165 1 999 0 nonexistent
## 233 telephone may mon 127 2 999 0 nonexistent
## 234 telephone may mon 357 1 999 0 nonexistent
## 235 telephone may mon 175 1 999 0 nonexistent
## 236 telephone may mon 300 1 999 0 nonexistent
## 237 telephone may mon 136 1 999 0 nonexistent
## 238 telephone may mon 125 2 999 0 nonexistent
## 239 telephone may mon 189 2 999 0 nonexistent
## 240 telephone may mon 213 3 999 0 nonexistent
## 241 telephone may mon 238 2 999 0 nonexistent
## 242 telephone may mon 124 1 999 0 nonexistent
## 243 telephone may mon 18 1 999 0 nonexistent
## 244 telephone may mon 730 2 999 0 nonexistent
## 245 telephone may mon 40 1 999 0 nonexistent
## 246 telephone may mon 181 2 999 0 nonexistent
## 247 telephone may mon 79 1 999 0 nonexistent
## 248 telephone may mon 142 2 999 0 nonexistent
## 249 telephone may mon 389 1 999 0 nonexistent
## 250 telephone may mon 702 1 999 0 nonexistent
## 251 telephone may mon 151 1 999 0 nonexistent
## 252 telephone may mon 211 1 999 0 nonexistent
## 253 telephone may mon 117 1 999 0 nonexistent
## 254 telephone may mon 232 3 999 0 nonexistent
## 255 telephone may mon 408 2 999 0 nonexistent
## 256 telephone may mon 370 3 999 0 nonexistent
## 257 telephone may mon 179 2 999 0 nonexistent
## 258 telephone may mon 46 1 999 0 nonexistent
## 259 telephone may mon 200 1 999 0 nonexistent
## 260 telephone may mon 50 1 999 0 nonexistent
## 261 telephone may mon 181 1 999 0 nonexistent
## 262 telephone may mon 119 1 999 0 nonexistent
## 263 telephone may mon 361 1 999 0 nonexistent
## 264 telephone may mon 73 3 999 0 nonexistent
## 265 telephone may mon 67 2 999 0 nonexistent
## 266 telephone may mon 350 1 999 0 nonexistent
## 267 telephone may mon 150 2 999 0 nonexistent
## 268 telephone may mon 332 2 999 0 nonexistent
## 269 telephone may mon 611 2 999 0 nonexistent
## 270 telephone may mon 58 3 999 0 nonexistent
## 271 telephone may mon 151 1 999 0 nonexistent
## 272 telephone may mon 89 2 999 0 nonexistent
## 273 telephone may mon 152 1 999 0 nonexistent
## 274 telephone may mon 611 2 999 0 nonexistent
## 275 telephone may mon 110 2 999 0 nonexistent
## 276 telephone may mon 463 1 999 0 nonexistent
## 277 telephone may mon 962 1 999 0 nonexistent
## 278 telephone may mon 102 2 999 0 nonexistent
## 279 telephone may mon 10 4 999 0 nonexistent
## 280 telephone may mon 118 3 999 0 nonexistent
## 281 telephone may mon 92 2 999 0 nonexistent
## 282 telephone may mon 143 3 999 0 nonexistent
## 283 telephone may mon 189 3 999 0 nonexistent
## 284 telephone may mon 75 2 999 0 nonexistent
## 285 telephone may mon 189 2 999 0 nonexistent
## 286 telephone may mon 55 2 999 0 nonexistent
## 287 telephone may mon 935 3 999 0 nonexistent
## 288 telephone may mon 56 2 999 0 nonexistent
## 289 telephone may mon 5 2 999 0 nonexistent
## 290 telephone may mon 225 2 999 0 nonexistent
## 291 telephone may mon 125 2 999 0 nonexistent
## 292 telephone may mon 286 2 999 0 nonexistent
## 293 telephone may mon 206 2 999 0 nonexistent
## 294 telephone may mon 164 2 999 0 nonexistent
## 295 telephone may mon 98 2 999 0 nonexistent
## 296 telephone may mon 446 2 999 0 nonexistent
## 297 telephone may mon 742 2 999 0 nonexistent
## 298 telephone may mon 120 2 999 0 nonexistent
## 299 telephone may mon 122 3 999 0 nonexistent
## 300 telephone may mon 362 4 999 0 nonexistent
## 301 telephone may mon 357 2 999 0 nonexistent
## 302 telephone may mon 200 2 999 0 nonexistent
## 303 telephone may mon 107 2 999 0 nonexistent
## 304 telephone may mon 267 2 999 0 nonexistent
## 305 telephone may mon 248 2 999 0 nonexistent
## 306 telephone may mon 215 2 999 0 nonexistent
## 307 telephone may mon 209 2 999 0 nonexistent
## 308 telephone may mon 205 2 999 0 nonexistent
## 309 telephone may mon 261 3 999 0 nonexistent
## 310 telephone may mon 83 2 999 0 nonexistent
## 311 telephone may mon 106 3 999 0 nonexistent
## 312 telephone may mon 106 2 999 0 nonexistent
## 313 telephone may mon 108 2 999 0 nonexistent
## 314 telephone may mon 214 2 999 0 nonexistent
## 315 telephone may mon 358 2 999 0 nonexistent
## 316 telephone may mon 453 2 999 0 nonexistent
## 317 telephone may mon 364 2 999 0 nonexistent
## 318 telephone may mon 136 2 999 0 nonexistent
## 319 telephone may mon 173 2 999 0 nonexistent
## 320 telephone may mon 241 2 999 0 nonexistent
## 321 telephone may mon 224 3 999 0 nonexistent
## 322 telephone may mon 148 2 999 0 nonexistent
## 323 telephone may mon 230 2 999 0 nonexistent
## 324 telephone may mon 199 3 999 0 nonexistent
## 325 telephone may mon 196 2 999 0 nonexistent
## 326 telephone may mon 111 4 999 0 nonexistent
## 327 telephone may mon 231 3 999 0 nonexistent
## 328 telephone may mon 316 3 999 0 nonexistent
## 329 telephone may mon 240 2 999 0 nonexistent
## 330 telephone may mon 669 3 999 0 nonexistent
## 331 telephone may mon 425 2 999 0 nonexistent
## 332 telephone may mon 121 2 999 0 nonexistent
## 333 telephone may mon 174 5 999 0 nonexistent
## 334 telephone may mon 88 5 999 0 nonexistent
## 335 telephone may mon 313 3 999 0 nonexistent
## 336 telephone may mon 135 4 999 0 nonexistent
## 337 telephone may mon 152 2 999 0 nonexistent
## 338 telephone may mon 402 3 999 0 nonexistent
## 339 telephone may mon 221 2 999 0 nonexistent
## 340 telephone may mon 213 2 999 0 nonexistent
## 341 telephone may mon 144 3 999 0 nonexistent
## 342 telephone may mon 158 3 999 0 nonexistent
## 343 telephone may mon 220 3 999 0 nonexistent
## 344 telephone may mon 325 2 999 0 nonexistent
## 345 telephone may mon 254 2 999 0 nonexistent
## 346 telephone may mon 503 2 999 0 nonexistent
## 347 telephone may mon 680 2 999 0 nonexistent
## 348 telephone may mon 421 4 999 0 nonexistent
## 349 telephone may mon 130 3 999 0 nonexistent
## 350 telephone may mon 164 2 999 0 nonexistent
## 351 telephone may mon 174 3 999 0 nonexistent
## 352 telephone may mon 113 2 999 0 nonexistent
## 353 telephone may mon 195 2 999 0 nonexistent
## 354 telephone may mon 347 3 999 0 nonexistent
## 355 telephone may mon 208 2 999 0 nonexistent
## 356 telephone may mon 404 4 999 0 nonexistent
## 357 telephone may mon 396 2 999 0 nonexistent
## 358 telephone may mon 98 2 999 0 nonexistent
## 359 telephone may mon 229 3 999 0 nonexistent
## 360 telephone may mon 350 2 999 0 nonexistent
## 361 telephone may tue 88 3 999 0 nonexistent
## 362 telephone may tue 379 2 999 0 nonexistent
## 363 telephone may tue 168 3 999 0 nonexistent
## 364 telephone may tue 190 3 999 0 nonexistent
## 365 telephone may tue 158 1 999 0 nonexistent
## 366 telephone may tue 210 1 999 0 nonexistent
## 367 telephone may tue 102 1 999 0 nonexistent
## 368 telephone may tue 306 1 999 0 nonexistent
## 369 telephone may tue 64 1 999 0 nonexistent
## 370 telephone may tue 218 1 999 0 nonexistent
## 371 telephone may tue 77 1 999 0 nonexistent
## 372 telephone may tue 54 1 999 0 nonexistent
## 373 telephone may tue 344 1 999 0 nonexistent
## 374 telephone may tue 195 1 999 0 nonexistent
## 375 telephone may tue 202 1 999 0 nonexistent
## 376 telephone may tue 286 1 999 0 nonexistent
## 377 telephone may tue 278 1 999 0 nonexistent
## 378 telephone may tue 189 1 999 0 nonexistent
## 379 telephone may tue 83 1 999 0 nonexistent
## 380 telephone may tue 18 1 999 0 nonexistent
## 381 telephone may tue 184 2 999 0 nonexistent
## 382 telephone may tue 235 1 999 0 nonexistent
## 383 telephone may tue 290 1 999 0 nonexistent
## 384 telephone may tue 133 1 999 0 nonexistent
## 385 telephone may tue 318 1 999 0 nonexistent
## 386 telephone may tue 437 1 999 0 nonexistent
## 387 telephone may tue 402 1 999 0 nonexistent
## 388 telephone may tue 501 4 999 0 nonexistent
## 389 telephone may tue 1201 1 999 0 nonexistent
## 390 telephone may tue 1030 1 999 0 nonexistent
## 391 telephone may tue 253 1 999 0 nonexistent
## 392 telephone may tue 149 1 999 0 nonexistent
## 393 telephone may tue 144 1 999 0 nonexistent
## 394 telephone may tue 69 1 999 0 nonexistent
## 395 telephone may tue 243 1 999 0 nonexistent
## 396 telephone may tue 769 2 999 0 nonexistent
## 397 telephone may tue 135 3 999 0 nonexistent
## 398 telephone may tue 231 1 999 0 nonexistent
## 399 telephone may tue 442 2 999 0 nonexistent
## 400 telephone may tue 199 1 999 0 nonexistent
## 401 telephone may tue 455 1 999 0 nonexistent
## 402 telephone may tue 152 1 999 0 nonexistent
## 403 telephone may tue 124 1 999 0 nonexistent
## 404 telephone may tue 424 1 999 0 nonexistent
## 405 telephone may tue 43 1 999 0 nonexistent
## 406 telephone may tue 154 1 999 0 nonexistent
## 407 telephone may tue 393 1 999 0 nonexistent
## 408 telephone may tue 203 2 999 0 nonexistent
## 409 telephone may tue 140 2 999 0 nonexistent
## 410 telephone may tue 326 1 999 0 nonexistent
## 411 telephone may tue 483 1 999 0 nonexistent
## 412 telephone may tue 259 1 999 0 nonexistent
## 413 telephone may tue 227 1 999 0 nonexistent
## 414 telephone may tue 673 1 999 0 nonexistent
## 415 telephone may tue 576 1 999 0 nonexistent
## 416 telephone may tue 180 2 999 0 nonexistent
## 417 telephone may tue 90 1 999 0 nonexistent
## 418 telephone may tue 505 1 999 0 nonexistent
## 419 telephone may tue 245 1 999 0 nonexistent
## 420 telephone may tue 186 1 999 0 nonexistent
## 421 telephone may tue 208 1 999 0 nonexistent
## 422 telephone may tue 623 1 999 0 nonexistent
## 423 telephone may tue 180 1 999 0 nonexistent
## 424 telephone may tue 496 3 999 0 nonexistent
## 425 telephone may tue 118 1 999 0 nonexistent
## 426 telephone may tue 102 2 999 0 nonexistent
## 427 telephone may tue 342 1 999 0 nonexistent
## 428 telephone may tue 225 1 999 0 nonexistent
## 429 telephone may tue 185 3 999 0 nonexistent
## 430 telephone may tue 276 1 999 0 nonexistent
## 431 telephone may tue 87 1 999 0 nonexistent
## 432 telephone may tue 744 1 999 0 nonexistent
## 433 telephone may tue 262 1 999 0 nonexistent
## 434 telephone may tue 271 1 999 0 nonexistent
## 435 telephone may tue 141 1 999 0 nonexistent
## 436 telephone may tue 198 2 999 0 nonexistent
## 437 telephone may tue 150 1 999 0 nonexistent
## 438 telephone may tue 241 1 999 0 nonexistent
## 439 telephone may tue 196 1 999 0 nonexistent
## 440 telephone may tue 149 1 999 0 nonexistent
## 441 telephone may tue 264 1 999 0 nonexistent
## 442 telephone may tue 246 1 999 0 nonexistent
## 443 telephone may tue 309 2 999 0 nonexistent
## 444 telephone may tue 140 1 999 0 nonexistent
## 445 telephone may tue 175 1 999 0 nonexistent
## 446 telephone may tue 136 1 999 0 nonexistent
## 447 telephone may tue 1623 1 999 0 nonexistent
## 448 telephone may tue 50 1 999 0 nonexistent
## 449 telephone may tue 101 1 999 0 nonexistent
## 450 telephone may tue 144 1 999 0 nonexistent
## 451 telephone may tue 238 1 999 0 nonexistent
## 452 telephone may tue 354 1 999 0 nonexistent
## 453 telephone may tue 451 2 999 0 nonexistent
## 454 telephone may tue 159 1 999 0 nonexistent
## 455 telephone may tue 170 1 999 0 nonexistent
## 456 telephone may tue 243 1 999 0 nonexistent
## 457 telephone may tue 141 2 999 0 nonexistent
## 458 telephone may tue 112 1 999 0 nonexistent
## 459 telephone may tue 262 2 999 0 nonexistent
## 460 telephone may tue 53 1 999 0 nonexistent
## 461 telephone may tue 134 1 999 0 nonexistent
## 462 telephone may tue 204 4 999 0 nonexistent
## 463 telephone may tue 678 1 999 0 nonexistent
## 464 telephone may tue 182 1 999 0 nonexistent
## 465 telephone may tue 162 1 999 0 nonexistent
## 466 telephone may tue 177 1 999 0 nonexistent
## 467 telephone may tue 27 1 999 0 nonexistent
## 468 telephone may tue 699 3 999 0 nonexistent
## 469 telephone may tue 358 1 999 0 nonexistent
## 470 telephone may tue 1677 1 999 0 nonexistent
## 471 telephone may tue 529 1 999 0 nonexistent
## 472 telephone may tue 310 1 999 0 nonexistent
## 473 telephone may tue 47 1 999 0 nonexistent
## 474 telephone may tue 379 1 999 0 nonexistent
## 475 telephone may tue 30 2 999 0 nonexistent
## 476 telephone may tue 472 1 999 0 nonexistent
## 477 telephone may tue 113 1 999 0 nonexistent
## 478 telephone may tue 114 1 999 0 nonexistent
## 479 telephone may tue 116 1 999 0 nonexistent
## 480 telephone may tue 448 1 999 0 nonexistent
## 481 telephone may tue 264 1 999 0 nonexistent
## 482 telephone may tue 169 1 999 0 nonexistent
## 483 telephone may tue 145 1 999 0 nonexistent
## 484 telephone may tue 288 1 999 0 nonexistent
## 485 telephone may tue 381 1 999 0 nonexistent
## 486 telephone may tue 176 2 999 0 nonexistent
## 487 telephone may tue 215 1 999 0 nonexistent
## 488 telephone may tue 278 1 999 0 nonexistent
## 489 telephone may tue 188 2 999 0 nonexistent
## 490 telephone may tue 174 2 999 0 nonexistent
## 491 telephone may tue 226 2 999 0 nonexistent
## 492 telephone may tue 111 2 999 0 nonexistent
## 493 telephone may tue 157 2 999 0 nonexistent
## 494 telephone may tue 46 1 999 0 nonexistent
## 495 telephone may tue 49 1 999 0 nonexistent
## 496 telephone may tue 374 1 999 0 nonexistent
## 497 telephone may tue 349 1 999 0 nonexistent
## 498 telephone may tue 325 1 999 0 nonexistent
## 499 telephone may tue 233 2 999 0 nonexistent
## 500 telephone may tue 531 1 999 0 nonexistent
## 501 telephone may tue 153 1 999 0 nonexistent
## 502 telephone may tue 80 1 999 0 nonexistent
## 503 telephone may tue 198 1 999 0 nonexistent
## 504 telephone may tue 568 1 999 0 nonexistent
## 505 telephone may tue 918 1 999 0 nonexistent
## 506 telephone may tue 82 1 999 0 nonexistent
## 507 telephone may tue 198 3 999 0 nonexistent
## 508 telephone may tue 211 1 999 0 nonexistent
## 509 telephone may tue 120 1 999 0 nonexistent
## 510 telephone may tue 269 1 999 0 nonexistent
## 511 telephone may tue 128 1 999 0 nonexistent
## 512 telephone may tue 166 2 999 0 nonexistent
## 513 telephone may tue 211 1 999 0 nonexistent
## 514 telephone may tue 369 1 999 0 nonexistent
## 515 telephone may tue 91 1 999 0 nonexistent
## 516 telephone may tue 267 2 999 0 nonexistent
## 517 telephone may tue 198 1 999 0 nonexistent
## 518 telephone may tue 371 2 999 0 nonexistent
## 519 telephone may tue 288 2 999 0 nonexistent
## 520 telephone may tue 221 1 999 0 nonexistent
## 521 telephone may tue 427 1 999 0 nonexistent
## 522 telephone may tue 310 1 999 0 nonexistent
## 523 telephone may tue 158 1 999 0 nonexistent
## 524 telephone may tue 198 1 999 0 nonexistent
## 525 telephone may tue 145 1 999 0 nonexistent
## 526 telephone may tue 247 1 999 0 nonexistent
## 527 telephone may tue 102 1 999 0 nonexistent
## 528 telephone may tue 179 2 999 0 nonexistent
## 529 telephone may tue 73 1 999 0 nonexistent
## 530 telephone may tue 263 2 999 0 nonexistent
## 531 telephone may tue 342 2 999 0 nonexistent
## 532 telephone may tue 41 1 999 0 nonexistent
## 533 telephone may tue 13 1 999 0 nonexistent
## 534 telephone may tue 79 2 999 0 nonexistent
## 535 telephone may tue 358 1 999 0 nonexistent
## 536 telephone may tue 162 1 999 0 nonexistent
## 537 telephone may tue 150 1 999 0 nonexistent
## 538 telephone may tue 26 1 999 0 nonexistent
## 539 telephone may tue 250 1 999 0 nonexistent
## 540 telephone may tue 792 1 999 0 nonexistent
## 541 telephone may tue 146 1 999 0 nonexistent
## 542 telephone may tue 440 1 999 0 nonexistent
## 543 telephone may tue 289 1 999 0 nonexistent
## 544 telephone may tue 242 2 999 0 nonexistent
## 545 telephone may tue 123 1 999 0 nonexistent
## 546 telephone may tue 161 2 999 0 nonexistent
## 547 telephone may tue 268 2 999 0 nonexistent
## 548 telephone may tue 259 2 999 0 nonexistent
## 549 telephone may tue 26 1 999 0 nonexistent
## 550 telephone may tue 153 1 999 0 nonexistent
## 551 telephone may tue 424 2 999 0 nonexistent
## 552 telephone may tue 375 1 999 0 nonexistent
## 553 telephone may tue 179 2 999 0 nonexistent
## 554 telephone may tue 383 1 999 0 nonexistent
## 555 telephone may tue 440 1 999 0 nonexistent
## 556 telephone may tue 195 1 999 0 nonexistent
## 557 telephone may tue 1297 3 999 0 nonexistent
## 558 telephone may tue 217 1 999 0 nonexistent
## 559 telephone may tue 87 1 999 0 nonexistent
## 560 telephone may tue 427 1 999 0 nonexistent
## 561 telephone may tue 189 1 999 0 nonexistent
## 562 telephone may tue 502 1 999 0 nonexistent
## 563 telephone may tue 260 1 999 0 nonexistent
## 564 telephone may tue 209 1 999 0 nonexistent
## 565 telephone may tue 179 1 999 0 nonexistent
## 566 telephone may tue 179 1 999 0 nonexistent
## 567 telephone may tue 69 1 999 0 nonexistent
## 568 telephone may tue 105 2 999 0 nonexistent
## 569 telephone may tue 266 3 999 0 nonexistent
## 570 telephone may tue 87 2 999 0 nonexistent
## 571 telephone may tue 524 2 999 0 nonexistent
## 572 telephone may tue 155 2 999 0 nonexistent
## 573 telephone may tue 162 2 999 0 nonexistent
## 574 telephone may tue 316 4 999 0 nonexistent
## 575 telephone may tue 352 2 999 0 nonexistent
## 576 telephone may tue 695 3 999 0 nonexistent
## 577 telephone may tue 76 4 999 0 nonexistent
## 578 telephone may tue 535 2 999 0 nonexistent
## 579 telephone may tue 310 2 999 0 nonexistent
## 580 telephone may tue 390 3 999 0 nonexistent
## 581 telephone may tue 369 1 999 0 nonexistent
## 582 telephone may tue 112 2 999 0 nonexistent
## 583 telephone may tue 79 1 999 0 nonexistent
## 584 telephone may tue 140 2 999 0 nonexistent
## 585 telephone may tue 315 1 999 0 nonexistent
## 586 telephone may tue 262 2 999 0 nonexistent
## 587 telephone may tue 174 2 999 0 nonexistent
## 588 telephone may tue 424 2 999 0 nonexistent
## 589 telephone may tue 135 1 999 0 nonexistent
## 590 telephone may tue 36 5 999 0 nonexistent
## 591 telephone may tue 1906 3 999 0 nonexistent
## 592 telephone may tue 219 2 999 0 nonexistent
## 593 telephone may tue 135 1 999 0 nonexistent
## 594 telephone may tue 147 2 999 0 nonexistent
## 595 telephone may tue 407 2 999 0 nonexistent
## 596 telephone may tue 402 4 999 0 nonexistent
## 597 telephone may tue 209 1 999 0 nonexistent
## 598 telephone may tue 92 2 999 0 nonexistent
## 599 telephone may tue 208 1 999 0 nonexistent
## 600 telephone may tue 193 1 999 0 nonexistent
## 601 telephone may tue 65 1 999 0 nonexistent
## 602 telephone may tue 284 2 999 0 nonexistent
## 603 telephone may tue 285 1 999 0 nonexistent
## 604 telephone may tue 231 1 999 0 nonexistent
## 605 telephone may tue 278 1 999 0 nonexistent
## 606 telephone may tue 389 1 999 0 nonexistent
## 607 telephone may tue 158 1 999 0 nonexistent
## 608 telephone may tue 78 2 999 0 nonexistent
## 609 telephone may tue 258 5 999 0 nonexistent
## 610 telephone may tue 87 1 999 0 nonexistent
## 611 telephone may tue 147 2 999 0 nonexistent
## 612 telephone may tue 635 1 999 0 nonexistent
## 613 telephone may tue 289 1 999 0 nonexistent
## 614 telephone may tue 170 3 999 0 nonexistent
## 615 telephone may tue 802 1 999 0 nonexistent
## 616 telephone may tue 381 2 999 0 nonexistent
## 617 telephone may tue 218 4 999 0 nonexistent
## 618 telephone may tue 57 2 999 0 nonexistent
## 619 telephone may tue 304 2 999 0 nonexistent
## 620 telephone may tue 241 3 999 0 nonexistent
## 621 telephone may tue 230 1 999 0 nonexistent
## 622 telephone may tue 79 4 999 0 nonexistent
## 623 telephone may tue 262 3 999 0 nonexistent
## 624 telephone may tue 392 2 999 0 nonexistent
## 625 telephone may tue 201 2 999 0 nonexistent
## 626 telephone may tue 145 1 999 0 nonexistent
## 627 telephone may tue 252 1 999 0 nonexistent
## 628 telephone may tue 329 1 999 0 nonexistent
## 629 telephone may tue 328 2 999 0 nonexistent
## 630 telephone may tue 191 2 999 0 nonexistent
## 631 telephone may tue 116 2 999 0 nonexistent
## 632 telephone may tue 246 1 999 0 nonexistent
## 633 telephone may tue 532 2 999 0 nonexistent
## 634 telephone may tue 293 1 999 0 nonexistent
## 635 telephone may tue 416 3 999 0 nonexistent
## 636 telephone may tue 37 2 999 0 nonexistent
## 637 telephone may tue 132 2 999 0 nonexistent
## 638 telephone may tue 530 2 999 0 nonexistent
## 639 telephone may tue 175 3 999 0 nonexistent
## 640 telephone may tue 90 5 999 0 nonexistent
## 641 telephone may tue 524 2 999 0 nonexistent
## 642 telephone may tue 29 3 999 0 nonexistent
## 643 telephone may tue 311 2 999 0 nonexistent
## 644 telephone may tue 412 1 999 0 nonexistent
## 645 telephone may tue 211 2 999 0 nonexistent
## 646 telephone may tue 312 3 999 0 nonexistent
## 647 telephone may tue 392 1 999 0 nonexistent
## 648 telephone may tue 191 1 999 0 nonexistent
## 649 telephone may tue 284 2 999 0 nonexistent
## 650 telephone may tue 328 1 999 0 nonexistent
## 651 telephone may tue 100 1 999 0 nonexistent
## 652 telephone may tue 226 1 999 0 nonexistent
## 653 telephone may tue 507 1 999 0 nonexistent
## 654 telephone may tue 333 2 999 0 nonexistent
## 655 telephone may tue 128 2 999 0 nonexistent
## 656 telephone may tue 322 2 999 0 nonexistent
## 657 telephone may tue 202 4 999 0 nonexistent
## 658 telephone may tue 92 2 999 0 nonexistent
## 659 telephone may tue 205 2 999 0 nonexistent
## 660 telephone may tue 739 3 999 0 nonexistent
## 661 telephone may tue 273 2 999 0 nonexistent
## 662 telephone may tue 339 3 999 0 nonexistent
## 663 telephone may tue 262 1 999 0 nonexistent
## 664 telephone may tue 308 3 999 0 nonexistent
## 665 telephone may tue 467 2 999 0 nonexistent
## 666 telephone may tue 245 2 999 0 nonexistent
## 667 telephone may tue 160 3 999 0 nonexistent
## 668 telephone may tue 189 2 999 0 nonexistent
## 669 telephone may tue 477 1 999 0 nonexistent
## 670 telephone may tue 65 3 999 0 nonexistent
## 671 telephone may tue 191 1 999 0 nonexistent
## 672 telephone may tue 196 2 999 0 nonexistent
## 673 telephone may tue 221 2 999 0 nonexistent
## 674 telephone may tue 197 2 999 0 nonexistent
## 675 telephone may tue 178 2 999 0 nonexistent
## 676 telephone may tue 221 2 999 0 nonexistent
## 677 telephone may tue 64 2 999 0 nonexistent
## 678 telephone may tue 75 2 999 0 nonexistent
## 679 telephone may tue 400 2 999 0 nonexistent
## 680 telephone may tue 378 3 999 0 nonexistent
## 681 telephone may tue 118 2 999 0 nonexistent
## 682 telephone may tue 1597 2 999 0 nonexistent
## 683 telephone may tue 346 2 999 0 nonexistent
## 684 telephone may tue 107 2 999 0 nonexistent
## 685 telephone may tue 60 3 999 0 nonexistent
## 686 telephone may tue 276 2 999 0 nonexistent
## 687 telephone may tue 176 2 999 0 nonexistent
## 688 telephone may tue 390 2 999 0 nonexistent
## 689 telephone may tue 251 3 999 0 nonexistent
## 690 telephone may tue 716 2 999 0 nonexistent
## 691 telephone may tue 189 3 999 0 nonexistent
## 692 telephone may tue 125 2 999 0 nonexistent
## 693 telephone may tue 234 2 999 0 nonexistent
## 694 telephone may tue 79 2 999 0 nonexistent
## 695 telephone may tue 13 6 999 0 nonexistent
## 696 telephone may tue 296 3 999 0 nonexistent
## 697 telephone may tue 114 2 999 0 nonexistent
## 698 telephone may tue 283 3 999 0 nonexistent
## 699 telephone may tue 109 2 999 0 nonexistent
## 700 telephone may tue 132 2 999 0 nonexistent
## 701 telephone may tue 144 2 999 0 nonexistent
## 702 telephone may tue 121 2 999 0 nonexistent
## 703 telephone may tue 95 3 999 0 nonexistent
## 704 telephone may tue 31 3 999 0 nonexistent
## 705 telephone may tue 112 3 999 0 nonexistent
## 706 telephone may tue 161 2 999 0 nonexistent
## 707 telephone may tue 87 4 999 0 nonexistent
## 708 telephone may tue 593 2 999 0 nonexistent
## 709 telephone may tue 99 2 999 0 nonexistent
## 710 telephone may tue 198 2 999 0 nonexistent
## 711 telephone may tue 285 2 999 0 nonexistent
## 712 telephone may tue 190 3 999 0 nonexistent
## 713 telephone may tue 172 5 999 0 nonexistent
## 714 telephone may tue 178 2 999 0 nonexistent
## 715 telephone may tue 174 2 999 0 nonexistent
## 716 telephone may tue 631 2 999 0 nonexistent
## 717 telephone may tue 152 3 999 0 nonexistent
## 718 telephone may tue 176 5 999 0 nonexistent
## 719 telephone may tue 32 3 999 0 nonexistent
## 720 telephone may tue 1529 2 999 0 nonexistent
## 721 telephone may tue 254 2 999 0 nonexistent
## 722 telephone may tue 214 2 999 0 nonexistent
## 723 telephone may tue 147 3 999 0 nonexistent
## 724 telephone may tue 800 4 999 0 nonexistent
## 725 telephone may tue 106 2 999 0 nonexistent
## 726 telephone may tue 135 2 999 0 nonexistent
## 727 telephone may tue 112 4 999 0 nonexistent
## 728 telephone may tue 222 2 999 0 nonexistent
## 729 telephone may tue 314 3 999 0 nonexistent
## 730 telephone may tue 421 2 999 0 nonexistent
## 731 telephone may tue 410 2 999 0 nonexistent
## 732 telephone may tue 207 3 999 0 nonexistent
## 733 telephone may tue 239 2 999 0 nonexistent
## 734 telephone may tue 83 4 999 0 nonexistent
## 735 telephone may tue 160 3 999 0 nonexistent
## 736 telephone may tue 42 3 999 0 nonexistent
## 737 telephone may tue 55 2 999 0 nonexistent
## 738 telephone may tue 157 2 999 0 nonexistent
## 739 telephone may tue 303 3 999 0 nonexistent
## 740 telephone may tue 336 3 999 0 nonexistent
## 741 telephone may tue 233 2 999 0 nonexistent
## 742 telephone may tue 211 2 999 0 nonexistent
## 743 telephone may tue 88 5 999 0 nonexistent
## 744 telephone may tue 139 2 999 0 nonexistent
## 745 telephone may tue 329 3 999 0 nonexistent
## 746 telephone may tue 305 2 999 0 nonexistent
## 747 telephone may tue 206 2 999 0 nonexistent
## 748 telephone may tue 128 2 999 0 nonexistent
## 749 telephone may tue 122 3 999 0 nonexistent
## 750 telephone may tue 343 3 999 0 nonexistent
## 751 telephone may tue 126 2 999 0 nonexistent
## 752 telephone may tue 249 3 999 0 nonexistent
## 753 telephone may tue 59 3 999 0 nonexistent
## 754 telephone may tue 166 3 999 0 nonexistent
## 755 telephone may tue 190 3 999 0 nonexistent
## 756 telephone may tue 216 2 999 0 nonexistent
## 757 telephone may wed 51 3 999 0 nonexistent
## 758 telephone may wed 169 3 999 0 nonexistent
## 759 telephone may wed 148 3 999 0 nonexistent
## 760 telephone may wed 132 3 999 0 nonexistent
## 761 telephone may wed 117 3 999 0 nonexistent
## 762 telephone may wed 275 4 999 0 nonexistent
## 763 telephone may wed 124 2 999 0 nonexistent
## 764 telephone may wed 118 3 999 0 nonexistent
## 765 telephone may wed 479 2 999 0 nonexistent
## 766 telephone may wed 285 3 999 0 nonexistent
## 767 telephone may wed 322 2 999 0 nonexistent
## 768 telephone may wed 202 2 999 0 nonexistent
## 769 telephone may wed 162 2 999 0 nonexistent
## 770 telephone may wed 216 3 999 0 nonexistent
## 771 telephone may wed 195 2 999 0 nonexistent
## 772 telephone may wed 96 2 999 0 nonexistent
## 773 telephone may wed 149 2 999 0 nonexistent
## 774 telephone may wed 720 2 999 0 nonexistent
## 775 telephone may wed 92 2 999 0 nonexistent
## 776 telephone may wed 188 2 999 0 nonexistent
## 777 telephone may wed 70 2 999 0 nonexistent
## 778 telephone may wed 141 3 999 0 nonexistent
## 779 telephone may wed 395 2 999 0 nonexistent
## 780 telephone may wed 629 2 999 0 nonexistent
## 781 telephone may wed 261 3 999 0 nonexistent
## 782 telephone may wed 502 1 999 0 nonexistent
## 783 telephone may wed 446 1 999 0 nonexistent
## 784 telephone may wed 131 3 999 0 nonexistent
## 785 telephone may wed 198 3 999 0 nonexistent
## 786 telephone may wed 312 1 999 0 nonexistent
## 787 telephone may wed 275 6 999 0 nonexistent
## 788 telephone may wed 120 2 999 0 nonexistent
## 789 telephone may wed 333 4 999 0 nonexistent
## 790 telephone may wed 113 1 999 0 nonexistent
## 791 telephone may wed 150 1 999 0 nonexistent
## 792 telephone may wed 91 1 999 0 nonexistent
## 793 telephone may wed 296 1 999 0 nonexistent
## 794 telephone may wed 128 3 999 0 nonexistent
## 795 telephone may wed 298 1 999 0 nonexistent
## 796 telephone may wed 326 1 999 0 nonexistent
## 797 telephone may wed 292 1 999 0 nonexistent
## 798 telephone may wed 215 1 999 0 nonexistent
## 799 telephone may wed 97 1 999 0 nonexistent
## 800 telephone may wed 32 1 999 0 nonexistent
## 801 telephone may wed 162 1 999 0 nonexistent
## 802 telephone may wed 421 1 999 0 nonexistent
## 803 telephone may wed 268 1 999 0 nonexistent
## 804 telephone may wed 232 1 999 0 nonexistent
## 805 telephone may wed 152 3 999 0 nonexistent
## 806 telephone may wed 104 2 999 0 nonexistent
## 807 telephone may wed 852 1 999 0 nonexistent
## 808 telephone may wed 159 2 999 0 nonexistent
## 809 telephone may wed 416 2 999 0 nonexistent
## 810 telephone may wed 174 1 999 0 nonexistent
## 811 telephone may wed 139 1 999 0 nonexistent
## 812 telephone may wed 193 1 999 0 nonexistent
## 813 telephone may wed 294 1 999 0 nonexistent
## 814 telephone may wed 102 1 999 0 nonexistent
## 815 telephone may wed 124 1 999 0 nonexistent
## 816 telephone may wed 143 1 999 0 nonexistent
## 817 telephone may wed 231 1 999 0 nonexistent
## 818 telephone may wed 128 1 999 0 nonexistent
## 819 telephone may wed 74 1 999 0 nonexistent
## 820 telephone may wed 105 2 999 0 nonexistent
## 821 telephone may wed 992 1 999 0 nonexistent
## 822 telephone may wed 168 1 999 0 nonexistent
## 823 telephone may wed 250 1 999 0 nonexistent
## 824 telephone may wed 254 1 999 0 nonexistent
## 825 telephone may wed 149 1 999 0 nonexistent
## 826 telephone may wed 133 2 999 0 nonexistent
## 827 telephone may wed 374 1 999 0 nonexistent
## 828 telephone may wed 425 6 999 0 nonexistent
## 829 telephone may wed 207 1 999 0 nonexistent
## 830 telephone may wed 464 1 999 0 nonexistent
## 831 telephone may wed 439 1 999 0 nonexistent
## 832 telephone may wed 83 3 999 0 nonexistent
## 833 telephone may wed 732 2 999 0 nonexistent
## 834 telephone may wed 149 1 999 0 nonexistent
## 835 telephone may wed 142 1 999 0 nonexistent
## 836 telephone may wed 121 1 999 0 nonexistent
## 837 telephone may wed 359 1 999 0 nonexistent
## 838 telephone may wed 112 1 999 0 nonexistent
## 839 telephone may wed 274 4 999 0 nonexistent
## 840 telephone may wed 325 2 999 0 nonexistent
## 841 telephone may wed 1521 1 999 0 nonexistent
## 842 telephone may wed 216 1 999 0 nonexistent
## 843 telephone may wed 161 1 999 0 nonexistent
## 844 telephone may wed 122 2 999 0 nonexistent
## 845 telephone may wed 800 1 999 0 nonexistent
## 846 telephone may wed 615 1 999 0 nonexistent
## 847 telephone may wed 111 1 999 0 nonexistent
## 848 telephone may wed 359 1 999 0 nonexistent
## 849 telephone may wed 327 3 999 0 nonexistent
## 850 telephone may wed 236 1 999 0 nonexistent
## 851 telephone may wed 227 1 999 0 nonexistent
## 852 telephone may wed 109 1 999 0 nonexistent
## 853 telephone may wed 492 2 999 0 nonexistent
## 854 telephone may wed 298 1 999 0 nonexistent
## 855 telephone may wed 83 2 999 0 nonexistent
## 856 telephone may wed 241 2 999 0 nonexistent
## 857 telephone may wed 1138 1 999 0 nonexistent
## 858 telephone may wed 131 1 999 0 nonexistent
## 859 telephone may wed 123 1 999 0 nonexistent
## 860 telephone may wed 125 1 999 0 nonexistent
## 861 telephone may wed 295 2 999 0 nonexistent
## 862 telephone may wed 287 1 999 0 nonexistent
## 863 telephone may wed 109 1 999 0 nonexistent
## 864 telephone may wed 140 2 999 0 nonexistent
## 865 telephone may wed 52 1 999 0 nonexistent
## 866 telephone may wed 233 1 999 0 nonexistent
## 867 telephone may wed 254 1 999 0 nonexistent
## 868 telephone may wed 255 1 999 0 nonexistent
## 869 telephone may wed 126 1 999 0 nonexistent
## 870 telephone may wed 184 2 999 0 nonexistent
## 871 telephone may wed 591 1 999 0 nonexistent
## 872 telephone may wed 294 1 999 0 nonexistent
## 873 telephone may wed 285 1 999 0 nonexistent
## 874 telephone may wed 173 1 999 0 nonexistent
## 875 telephone may wed 336 1 999 0 nonexistent
## 876 telephone may wed 344 1 999 0 nonexistent
## 877 telephone may wed 786 1 999 0 nonexistent
## 878 telephone may wed 153 1 999 0 nonexistent
## 879 telephone may wed 99 2 999 0 nonexistent
## 880 telephone may wed 243 1 999 0 nonexistent
## 881 telephone may wed 260 1 999 0 nonexistent
## 882 telephone may wed 164 2 999 0 nonexistent
## 883 telephone may wed 255 2 999 0 nonexistent
## 884 telephone may wed 47 1 999 0 nonexistent
## 885 telephone may wed 110 2 999 0 nonexistent
## 886 telephone may wed 463 1 999 0 nonexistent
## 887 telephone may wed 192 1 999 0 nonexistent
## 888 telephone may wed 388 7 999 0 nonexistent
## 889 telephone may wed 221 1 999 0 nonexistent
## 890 telephone may wed 25 1 999 0 nonexistent
## 891 telephone may wed 256 6 999 0 nonexistent
## 892 telephone may wed 104 1 999 0 nonexistent
## 893 telephone may wed 283 2 999 0 nonexistent
## 894 telephone may wed 448 1 999 0 nonexistent
## 895 telephone may wed 127 1 999 0 nonexistent
## 896 telephone may wed 378 1 999 0 nonexistent
## 897 telephone may wed 67 1 999 0 nonexistent
## 898 telephone may wed 221 2 999 0 nonexistent
## 899 telephone may wed 150 1 999 0 nonexistent
## 900 telephone may wed 144 2 999 0 nonexistent
## 901 telephone may wed 296 2 999 0 nonexistent
## 902 telephone may wed 161 1 999 0 nonexistent
## 903 telephone may wed 401 2 999 0 nonexistent
## 904 telephone may wed 435 2 999 0 nonexistent
## 905 telephone may wed 388 1 999 0 nonexistent
## 906 telephone may wed 245 1 999 0 nonexistent
## 907 telephone may wed 143 1 999 0 nonexistent
## 908 telephone may wed 423 1 999 0 nonexistent
## 909 telephone may wed 231 1 999 0 nonexistent
## 910 telephone may wed 181 1 999 0 nonexistent
## 911 telephone may wed 107 1 999 0 nonexistent
## 912 telephone may wed 227 1 999 0 nonexistent
## 913 telephone may wed 69 1 999 0 nonexistent
## 914 telephone may wed 799 1 999 0 nonexistent
## 915 telephone may wed 109 1 999 0 nonexistent
## 916 telephone may wed 127 1 999 0 nonexistent
## 917 telephone may wed 45 1 999 0 nonexistent
## 918 telephone may wed 120 1 999 0 nonexistent
## 919 telephone may wed 68 3 999 0 nonexistent
## 920 telephone may wed 180 2 999 0 nonexistent
## 921 telephone may wed 112 3 999 0 nonexistent
## 922 telephone may wed 444 1 999 0 nonexistent
## 923 telephone may wed 246 2 999 0 nonexistent
## 924 telephone may wed 148 4 999 0 nonexistent
## 925 telephone may wed 223 3 999 0 nonexistent
## 926 telephone may wed 566 2 999 0 nonexistent
## 927 telephone may wed 274 2 999 0 nonexistent
## 928 telephone may wed 49 3 999 0 nonexistent
## 929 telephone may wed 97 2 999 0 nonexistent
## 930 telephone may wed 376 2 999 0 nonexistent
## 931 telephone may wed 421 2 999 0 nonexistent
## 932 telephone may wed 511 2 999 0 nonexistent
## 933 telephone may wed 121 2 999 0 nonexistent
## 934 telephone may wed 157 2 999 0 nonexistent
## 935 telephone may wed 101 1 999 0 nonexistent
## 936 telephone may wed 328 2 999 0 nonexistent
## 937 telephone may wed 19 1 999 0 nonexistent
## 938 telephone may wed 866 2 999 0 nonexistent
## 939 telephone may wed 229 3 999 0 nonexistent
## 940 telephone may wed 154 2 999 0 nonexistent
## 941 telephone may wed 56 1 999 0 nonexistent
## 942 telephone may wed 199 1 999 0 nonexistent
## 943 telephone may wed 117 1 999 0 nonexistent
## 944 telephone may wed 1581 2 999 0 nonexistent
## 945 telephone may wed 185 1 999 0 nonexistent
## 946 telephone may wed 202 1 999 0 nonexistent
## 947 telephone may wed 279 1 999 0 nonexistent
## 948 telephone may wed 180 5 999 0 nonexistent
## 949 telephone may wed 530 2 999 0 nonexistent
## 950 telephone may wed 129 5 999 0 nonexistent
## 951 telephone may wed 60 1 999 0 nonexistent
## 952 telephone may wed 432 1 999 0 nonexistent
## 953 telephone may wed 516 1 999 0 nonexistent
## 954 telephone may wed 617 1 999 0 nonexistent
## 955 telephone may wed 179 2 999 0 nonexistent
## 956 telephone may wed 125 2 999 0 nonexistent
## 957 telephone may wed 262 2 999 0 nonexistent
## 958 telephone may wed 396 2 999 0 nonexistent
## 959 telephone may wed 294 2 999 0 nonexistent
## 960 telephone may wed 171 2 999 0 nonexistent
## 961 telephone may wed 614 2 999 0 nonexistent
## 962 telephone may wed 118 3 999 0 nonexistent
## 963 telephone may wed 485 4 999 0 nonexistent
## 964 telephone may wed 406 2 999 0 nonexistent
## 965 telephone may wed 287 1 999 0 nonexistent
## 966 telephone may wed 216 2 999 0 nonexistent
## 967 telephone may wed 37 2 999 0 nonexistent
## 968 telephone may wed 650 1 999 0 nonexistent
## 969 telephone may wed 590 3 999 0 nonexistent
## 970 telephone may wed 55 1 999 0 nonexistent
## 971 telephone may wed 166 1 999 0 nonexistent
## 972 telephone may wed 371 2 999 0 nonexistent
## 973 telephone may wed 48 1 999 0 nonexistent
## 974 telephone may wed 72 1 999 0 nonexistent
## 975 telephone may wed 55 1 999 0 nonexistent
## 976 telephone may wed 92 1 999 0 nonexistent
## 977 telephone may wed 196 2 999 0 nonexistent
## 978 telephone may wed 96 1 999 0 nonexistent
## 979 telephone may wed 144 1 999 0 nonexistent
## 980 telephone may wed 474 1 999 0 nonexistent
## 981 telephone may wed 559 1 999 0 nonexistent
## 982 telephone may wed 1101 1 999 0 nonexistent
## 983 telephone may wed 229 3 999 0 nonexistent
## 984 telephone may wed 236 2 999 0 nonexistent
## 985 telephone may wed 164 1 999 0 nonexistent
## 986 telephone may wed 93 1 999 0 nonexistent
## 987 telephone may wed 123 1 999 0 nonexistent
## 988 telephone may wed 912 2 999 0 nonexistent
## 989 telephone may wed 209 2 999 0 nonexistent
## 990 telephone may wed 485 1 999 0 nonexistent
## 991 telephone may wed 206 2 999 0 nonexistent
## 992 telephone may wed 239 2 999 0 nonexistent
## 993 telephone may wed 311 1 999 0 nonexistent
## 994 telephone may wed 362 1 999 0 nonexistent
## 995 telephone may wed 274 1 999 0 nonexistent
## 996 telephone may wed 163 1 999 0 nonexistent
## 997 telephone may wed 345 1 999 0 nonexistent
## 998 telephone may wed 329 1 999 0 nonexistent
## 999 telephone may wed 68 1 999 0 nonexistent
## 1000 telephone may wed 143 3 999 0 nonexistent
## 1001 telephone may wed 214 2 999 0 nonexistent
## 1002 telephone may wed 1062 1 999 0 nonexistent
## 1003 telephone may wed 258 3 999 0 nonexistent
## 1004 telephone may wed 253 2 999 0 nonexistent
## 1005 telephone may wed 106 1 999 0 nonexistent
## 1006 telephone may wed 688 2 999 0 nonexistent
## 1007 telephone may wed 103 3 999 0 nonexistent
## 1008 telephone may wed 349 2 999 0 nonexistent
## 1009 telephone may wed 170 1 999 0 nonexistent
## 1010 telephone may wed 78 5 999 0 nonexistent
## 1011 telephone may wed 194 1 999 0 nonexistent
## 1012 telephone may wed 126 1 999 0 nonexistent
## 1013 telephone may wed 224 5 999 0 nonexistent
## 1014 telephone may wed 98 1 999 0 nonexistent
## 1015 telephone may wed 252 5 999 0 nonexistent
## 1016 telephone may wed 607 1 999 0 nonexistent
## 1017 telephone may wed 331 1 999 0 nonexistent
## 1018 telephone may wed 398 1 999 0 nonexistent
## 1019 telephone may wed 103 2 999 0 nonexistent
## 1020 telephone may wed 241 2 999 0 nonexistent
## 1021 telephone may wed 803 1 999 0 nonexistent
## 1022 telephone may wed 203 1 999 0 nonexistent
## 1023 telephone may wed 96 3 999 0 nonexistent
## 1024 telephone may wed 238 3 999 0 nonexistent
## 1025 telephone may wed 153 3 999 0 nonexistent
## 1026 telephone may wed 481 1 999 0 nonexistent
## 1027 telephone may wed 119 3 999 0 nonexistent
## 1028 telephone may wed 245 2 999 0 nonexistent
## 1029 telephone may wed 152 2 999 0 nonexistent
## 1030 telephone may wed 418 2 999 0 nonexistent
## 1031 telephone may wed 421 2 999 0 nonexistent
## 1032 telephone may wed 198 2 999 0 nonexistent
## 1033 telephone may wed 175 1 999 0 nonexistent
## 1034 telephone may wed 374 1 999 0 nonexistent
## 1035 telephone may wed 51 1 999 0 nonexistent
## 1036 telephone may wed 263 1 999 0 nonexistent
## 1037 telephone may wed 257 1 999 0 nonexistent
## 1038 telephone may wed 229 2 999 0 nonexistent
## 1039 telephone may wed 154 2 999 0 nonexistent
## 1040 telephone may wed 278 6 999 0 nonexistent
## 1041 telephone may wed 306 5 999 0 nonexistent
## 1042 telephone may wed 114 2 999 0 nonexistent
## 1043 telephone may wed 24 2 999 0 nonexistent
## 1044 telephone may wed 79 8 999 0 nonexistent
## 1045 telephone may wed 169 2 999 0 nonexistent
## 1046 telephone may wed 332 2 999 0 nonexistent
## 1047 telephone may wed 263 6 999 0 nonexistent
## 1048 telephone may wed 353 3 999 0 nonexistent
## 1049 telephone may wed 108 6 999 0 nonexistent
## 1050 telephone may wed 441 2 999 0 nonexistent
## 1051 telephone may wed 46 3 999 0 nonexistent
## 1052 telephone may wed 266 2 999 0 nonexistent
## 1053 telephone may wed 222 4 999 0 nonexistent
## 1054 telephone may wed 1009 3 999 0 nonexistent
## 1055 telephone may wed 105 2 999 0 nonexistent
## 1056 telephone may wed 381 2 999 0 nonexistent
## 1057 telephone may wed 228 3 999 0 nonexistent
## 1058 telephone may wed 128 2 999 0 nonexistent
## 1059 telephone may wed 550 3 999 0 nonexistent
## 1060 telephone may wed 764 3 999 0 nonexistent
## 1061 telephone may wed 113 3 999 0 nonexistent
## 1062 telephone may wed 396 4 999 0 nonexistent
## 1063 telephone may wed 42 2 999 0 nonexistent
## 1064 telephone may wed 234 4 999 0 nonexistent
## 1065 telephone may wed 50 2 999 0 nonexistent
## 1066 telephone may wed 110 2 999 0 nonexistent
## 1067 telephone may wed 274 4 999 0 nonexistent
## 1068 telephone may wed 191 4 999 0 nonexistent
## 1069 telephone may wed 305 3 999 0 nonexistent
## 1070 telephone may wed 134 2 999 0 nonexistent
## 1071 telephone may wed 112 4 999 0 nonexistent
## 1072 telephone may wed 217 2 999 0 nonexistent
## 1073 telephone may wed 283 3 999 0 nonexistent
## 1074 telephone may wed 353 4 999 0 nonexistent
## 1075 telephone may wed 212 2 999 0 nonexistent
## 1076 telephone may wed 225 2 999 0 nonexistent
## 1077 telephone may wed 283 1 999 0 nonexistent
## 1078 telephone may wed 1273 1 999 0 nonexistent
## 1079 telephone may wed 1574 2 999 0 nonexistent
## 1080 telephone may wed 139 3 999 0 nonexistent
## 1081 telephone may wed 62 5 999 0 nonexistent
## 1082 telephone may wed 256 3 999 0 nonexistent
## 1083 telephone may wed 245 2 999 0 nonexistent
## 1084 telephone may wed 161 2 999 0 nonexistent
## 1085 telephone may wed 245 3 999 0 nonexistent
## 1086 telephone may wed 89 3 999 0 nonexistent
## 1087 telephone may wed 591 3 999 0 nonexistent
## 1088 telephone may wed 113 2 999 0 nonexistent
## 1089 telephone may wed 517 3 999 0 nonexistent
## 1090 telephone may wed 193 3 999 0 nonexistent
## 1091 telephone may wed 231 2 999 0 nonexistent
## 1092 telephone may wed 348 3 999 0 nonexistent
## 1093 telephone may wed 299 2 999 0 nonexistent
## 1094 telephone may wed 103 4 999 0 nonexistent
## 1095 telephone may wed 253 8 999 0 nonexistent
## 1096 telephone may wed 73 2 999 0 nonexistent
## 1097 telephone may wed 164 5 999 0 nonexistent
## 1098 telephone may wed 244 7 999 0 nonexistent
## 1099 telephone may wed 191 2 999 0 nonexistent
## 1100 telephone may wed 157 6 999 0 nonexistent
## 1101 telephone may wed 548 2 999 0 nonexistent
## 1102 telephone may wed 114 3 999 0 nonexistent
## 1103 telephone may wed 126 5 999 0 nonexistent
## 1104 telephone may wed 161 3 999 0 nonexistent
## 1105 telephone may wed 333 1 999 0 nonexistent
## 1106 telephone may wed 155 1 999 0 nonexistent
## 1107 telephone may wed 152 3 999 0 nonexistent
## 1108 telephone may wed 145 1 999 0 nonexistent
## 1109 telephone may wed 66 3 999 0 nonexistent
## 1110 telephone may wed 123 2 999 0 nonexistent
## 1111 telephone may wed 74 1 999 0 nonexistent
## 1112 telephone may wed 248 3 999 0 nonexistent
## 1113 telephone may wed 275 2 999 0 nonexistent
## 1114 telephone may wed 984 1 999 0 nonexistent
## 1115 telephone may wed 1689 4 999 0 nonexistent
## 1116 telephone may wed 84 2 999 0 nonexistent
## 1117 telephone may wed 27 3 999 0 nonexistent
## 1118 telephone may wed 130 4 999 0 nonexistent
## 1119 telephone may wed 489 2 999 0 nonexistent
## 1120 telephone may wed 41 3 999 0 nonexistent
## 1121 telephone may wed 159 3 999 0 nonexistent
## 1122 telephone may wed 276 4 999 0 nonexistent
## 1123 telephone may wed 196 2 999 0 nonexistent
## 1124 telephone may wed 81 2 999 0 nonexistent
## 1125 telephone may wed 865 2 999 0 nonexistent
## 1126 telephone may wed 149 1 999 0 nonexistent
## 1127 telephone may wed 281 2 999 0 nonexistent
## 1128 telephone may wed 122 5 999 0 nonexistent
## 1129 telephone may wed 361 2 999 0 nonexistent
## 1130 telephone may wed 944 3 999 0 nonexistent
## 1131 telephone may wed 319 3 999 0 nonexistent
## 1132 telephone may wed 35 3 999 0 nonexistent
## 1133 telephone may wed 143 2 999 0 nonexistent
## 1134 telephone may wed 22 2 999 0 nonexistent
## 1135 telephone may wed 90 2 999 0 nonexistent
## 1136 telephone may wed 505 2 999 0 nonexistent
## 1137 telephone may wed 17 2 999 0 nonexistent
## 1138 telephone may wed 404 5 999 0 nonexistent
## 1139 telephone may wed 238 2 999 0 nonexistent
## 1140 telephone may wed 71 4 999 0 nonexistent
## 1141 telephone may wed 309 2 999 0 nonexistent
## 1142 telephone may wed 408 3 999 0 nonexistent
## 1143 telephone may wed 157 3 999 0 nonexistent
## 1144 telephone may wed 280 3 999 0 nonexistent
## 1145 telephone may wed 374 2 999 0 nonexistent
## 1146 telephone may wed 365 4 999 0 nonexistent
## 1147 telephone may thu 177 3 999 0 nonexistent
## 1148 telephone may thu 238 3 999 0 nonexistent
## 1149 telephone may thu 31 2 999 0 nonexistent
## 1150 telephone may thu 425 6 999 0 nonexistent
## 1151 telephone may thu 77 2 999 0 nonexistent
## 1152 telephone may thu 223 2 999 0 nonexistent
## 1153 telephone may thu 239 2 999 0 nonexistent
## 1154 telephone may thu 116 2 999 0 nonexistent
## 1155 telephone may thu 308 3 999 0 nonexistent
## 1156 telephone may thu 137 2 999 0 nonexistent
## 1157 telephone may thu 162 2 999 0 nonexistent
## 1158 telephone may thu 134 1 999 0 nonexistent
## 1159 telephone may thu 175 5 999 0 nonexistent
## 1160 telephone may thu 125 3 999 0 nonexistent
## 1161 telephone may thu 211 3 999 0 nonexistent
## 1162 telephone may thu 180 1 999 0 nonexistent
## 1163 telephone may thu 67 1 999 0 nonexistent
## 1164 telephone may thu 196 1 999 0 nonexistent
## 1165 telephone may thu 342 1 999 0 nonexistent
## 1166 telephone may thu 156 1 999 0 nonexistent
## 1167 telephone may thu 813 1 999 0 nonexistent
## 1168 telephone may thu 178 1 999 0 nonexistent
## 1169 telephone may thu 142 1 999 0 nonexistent
## 1170 telephone may thu 194 1 999 0 nonexistent
## 1171 telephone may thu 132 1 999 0 nonexistent
## 1172 telephone may thu 110 1 999 0 nonexistent
## 1173 telephone may thu 109 1 999 0 nonexistent
## 1174 telephone may thu 94 1 999 0 nonexistent
## 1175 telephone may thu 31 1 999 0 nonexistent
## 1176 telephone may thu 220 1 999 0 nonexistent
## 1177 telephone may thu 489 1 999 0 nonexistent
## 1178 telephone may thu 180 1 999 0 nonexistent
## 1179 telephone may thu 314 1 999 0 nonexistent
## 1180 telephone may thu 203 1 999 0 nonexistent
## 1181 telephone may thu 328 2 999 0 nonexistent
## 1182 telephone may thu 207 1 999 0 nonexistent
## 1183 telephone may thu 193 1 999 0 nonexistent
## 1184 telephone may thu 177 2 999 0 nonexistent
## 1185 telephone may thu 528 1 999 0 nonexistent
## 1186 telephone may thu 183 1 999 0 nonexistent
## 1187 telephone may thu 238 1 999 0 nonexistent
## 1188 telephone may thu 61 1 999 0 nonexistent
## 1189 telephone may thu 70 1 999 0 nonexistent
## 1190 telephone may thu 541 3 999 0 nonexistent
## 1191 telephone may thu 41 1 999 0 nonexistent
## 1192 telephone may thu 93 1 999 0 nonexistent
## 1193 telephone may thu 149 1 999 0 nonexistent
## 1194 telephone may thu 35 1 999 0 nonexistent
## 1195 telephone may thu 262 1 999 0 nonexistent
## 1196 telephone may thu 151 1 999 0 nonexistent
## 1197 telephone may thu 135 2 999 0 nonexistent
## 1198 telephone may thu 221 1 999 0 nonexistent
## 1199 telephone may thu 604 1 999 0 nonexistent
## 1200 telephone may thu 86 1 999 0 nonexistent
## 1201 telephone may thu 65 1 999 0 nonexistent
## 1202 telephone may thu 380 3 999 0 nonexistent
## 1203 telephone may thu 11 1 999 0 nonexistent
## 1204 telephone may thu 184 2 999 0 nonexistent
## 1205 telephone may thu 405 1 999 0 nonexistent
## 1206 telephone may thu 20 1 999 0 nonexistent
## 1207 telephone may thu 202 1 999 0 nonexistent
## 1208 telephone may thu 235 1 999 0 nonexistent
## 1209 telephone may thu 75 1 999 0 nonexistent
## 1210 telephone may thu 134 1 999 0 nonexistent
## 1211 telephone may thu 255 1 999 0 nonexistent
## 1212 telephone may thu 462 1 999 0 nonexistent
## 1213 telephone may thu 80 1 999 0 nonexistent
## 1214 telephone may thu 56 1 999 0 nonexistent
## 1215 telephone may thu 418 1 999 0 nonexistent
## 1216 telephone may thu 139 2 999 0 nonexistent
## 1217 telephone may thu 96 2 999 0 nonexistent
## 1218 telephone may thu 39 1 999 0 nonexistent
## 1219 telephone may thu 231 2 999 0 nonexistent
## 1220 telephone may thu 66 2 999 0 nonexistent
## 1221 telephone may thu 204 1 999 0 nonexistent
## 1222 telephone may thu 159 1 999 0 nonexistent
## 1223 telephone may thu 129 2 999 0 nonexistent
## 1224 telephone may thu 200 1 999 0 nonexistent
## 1225 telephone may thu 187 3 999 0 nonexistent
## 1226 telephone may thu 166 1 999 0 nonexistent
## 1227 telephone may thu 144 1 999 0 nonexistent
## 1228 telephone may thu 323 1 999 0 nonexistent
## 1229 telephone may thu 194 1 999 0 nonexistent
## 1230 telephone may thu 82 1 999 0 nonexistent
## 1231 telephone may thu 521 7 999 0 nonexistent
## 1232 telephone may thu 269 1 999 0 nonexistent
## 1233 telephone may thu 285 1 999 0 nonexistent
## 1234 telephone may thu 1119 1 999 0 nonexistent
## 1235 telephone may thu 294 1 999 0 nonexistent
## 1236 telephone may thu 106 1 999 0 nonexistent
## 1237 telephone may thu 158 1 999 0 nonexistent
## 1238 telephone may thu 152 1 999 0 nonexistent
## 1239 telephone may thu 12 2 999 0 nonexistent
## 1240 telephone may thu 187 1 999 0 nonexistent
## 1241 telephone may thu 268 1 999 0 nonexistent
## 1242 telephone may thu 193 1 999 0 nonexistent
## 1243 telephone may thu 95 1 999 0 nonexistent
## 1244 telephone may thu 60 1 999 0 nonexistent
## 1245 telephone may thu 206 1 999 0 nonexistent
## 1246 telephone may thu 155 1 999 0 nonexistent
## 1247 telephone may thu 216 1 999 0 nonexistent
## 1248 telephone may thu 103 3 999 0 nonexistent
## 1249 telephone may thu 107 1 999 0 nonexistent
## 1250 telephone may thu 219 1 999 0 nonexistent
## 1251 telephone may thu 147 1 999 0 nonexistent
## 1252 telephone may thu 190 1 999 0 nonexistent
## 1253 telephone may thu 339 2 999 0 nonexistent
## 1254 telephone may thu 198 1 999 0 nonexistent
## 1255 telephone may thu 141 1 999 0 nonexistent
## 1256 telephone may thu 255 1 999 0 nonexistent
## 1257 telephone may thu 1120 2 999 0 nonexistent
## 1258 telephone may thu 369 1 999 0 nonexistent
## 1259 telephone may thu 226 1 999 0 nonexistent
## 1260 telephone may thu 215 1 999 0 nonexistent
## 1261 telephone may thu 306 1 999 0 nonexistent
## 1262 telephone may thu 249 1 999 0 nonexistent
## 1263 telephone may thu 143 1 999 0 nonexistent
## 1264 telephone may thu 162 1 999 0 nonexistent
## 1265 telephone may thu 81 1 999 0 nonexistent
## 1266 telephone may thu 124 1 999 0 nonexistent
## 1267 telephone may thu 124 1 999 0 nonexistent
## 1268 telephone may thu 33 4 999 0 nonexistent
## 1269 telephone may thu 393 1 999 0 nonexistent
## 1270 telephone may thu 784 1 999 0 nonexistent
## 1271 telephone may thu 87 2 999 0 nonexistent
## 1272 telephone may thu 108 2 999 0 nonexistent
## 1273 telephone may thu 207 1 999 0 nonexistent
## 1274 telephone may thu 278 2 999 0 nonexistent
## 1275 telephone may thu 196 1 999 0 nonexistent
## 1276 telephone may thu 149 1 999 0 nonexistent
## 1277 telephone may thu 154 1 999 0 nonexistent
## 1278 telephone may thu 287 2 999 0 nonexistent
## 1279 telephone may thu 229 1 999 0 nonexistent
## 1280 telephone may thu 21 1 999 0 nonexistent
## 1281 telephone may thu 191 1 999 0 nonexistent
## 1282 telephone may thu 147 1 999 0 nonexistent
## 1283 telephone may thu 93 1 999 0 nonexistent
## 1284 telephone may thu 665 1 999 0 nonexistent
## 1285 telephone may thu 131 1 999 0 nonexistent
## 1286 telephone may thu 160 1 999 0 nonexistent
## 1287 telephone may thu 74 1 999 0 nonexistent
## 1288 telephone may thu 60 1 999 0 nonexistent
## 1289 telephone may thu 97 2 999 0 nonexistent
## 1290 telephone may thu 82 1 999 0 nonexistent
## 1291 telephone may thu 475 1 999 0 nonexistent
## 1292 telephone may thu 111 1 999 0 nonexistent
## 1293 telephone may thu 140 1 999 0 nonexistent
## 1294 telephone may thu 110 1 999 0 nonexistent
## 1295 telephone may thu 64 1 999 0 nonexistent
## 1296 telephone may thu 149 1 999 0 nonexistent
## 1297 telephone may thu 156 1 999 0 nonexistent
## 1298 telephone may thu 63 3 999 0 nonexistent
## 1299 telephone may thu 362 1 999 0 nonexistent
## 1300 telephone may thu 712 1 999 0 nonexistent
## 1301 telephone may thu 338 2 999 0 nonexistent
## 1302 telephone may thu 102 2 999 0 nonexistent
## 1303 telephone may thu 446 1 999 0 nonexistent
## 1304 telephone may thu 249 2 999 0 nonexistent
## 1305 telephone may thu 176 1 999 0 nonexistent
## 1306 telephone may thu 1007 1 999 0 nonexistent
## 1307 telephone may thu 266 1 999 0 nonexistent
## 1308 telephone may thu 172 1 999 0 nonexistent
## 1309 telephone may thu 175 1 999 0 nonexistent
## 1310 telephone may thu 211 2 999 0 nonexistent
## 1311 telephone may thu 237 1 999 0 nonexistent
## 1312 telephone may thu 500 1 999 0 nonexistent
## 1313 telephone may thu 186 1 999 0 nonexistent
## 1314 telephone may thu 96 1 999 0 nonexistent
## 1315 telephone may thu 98 1 999 0 nonexistent
## 1316 telephone may thu 364 4 999 0 nonexistent
## 1317 telephone may thu 477 1 999 0 nonexistent
## 1318 telephone may thu 319 1 999 0 nonexistent
## 1319 telephone may thu 789 1 999 0 nonexistent
## 1320 telephone may thu 513 1 999 0 nonexistent
## 1321 telephone may thu 280 2 999 0 nonexistent
## 1322 telephone may thu 170 1 999 0 nonexistent
## 1323 telephone may thu 365 1 999 0 nonexistent
## 1324 telephone may thu 63 2 999 0 nonexistent
## 1325 telephone may thu 159 4 999 0 nonexistent
## 1326 telephone may thu 177 2 999 0 nonexistent
## 1327 telephone may thu 108 3 999 0 nonexistent
## 1328 telephone may thu 194 3 999 0 nonexistent
## 1329 telephone may thu 366 2 999 0 nonexistent
## 1330 telephone may thu 213 1 999 0 nonexistent
## 1331 telephone may thu 166 1 999 0 nonexistent
## 1332 telephone may thu 141 1 999 0 nonexistent
## 1333 telephone may thu 168 2 999 0 nonexistent
## 1334 telephone may thu 468 1 999 0 nonexistent
## 1335 telephone may thu 180 1 999 0 nonexistent
## 1336 telephone may thu 195 1 999 0 nonexistent
## 1337 telephone may thu 352 3 999 0 nonexistent
## 1338 telephone may thu 91 1 999 0 nonexistent
## 1339 telephone may thu 93 2 999 0 nonexistent
## 1340 telephone may thu 288 1 999 0 nonexistent
## 1341 telephone may thu 218 2 999 0 nonexistent
## 1342 telephone may thu 289 1 999 0 nonexistent
## 1343 telephone may thu 130 3 999 0 nonexistent
## 1344 telephone may thu 208 1 999 0 nonexistent
## 1345 telephone may thu 177 1 999 0 nonexistent
## 1346 telephone may thu 442 2 999 0 nonexistent
## 1347 telephone may thu 101 1 999 0 nonexistent
## 1348 telephone may thu 166 1 999 0 nonexistent
## 1349 telephone may thu 756 1 999 0 nonexistent
## 1350 telephone may thu 342 1 999 0 nonexistent
## 1351 telephone may thu 189 1 999 0 nonexistent
## 1352 telephone may thu 108 1 999 0 nonexistent
## 1353 telephone may thu 178 2 999 0 nonexistent
## 1354 telephone may thu 238 1 999 0 nonexistent
## 1355 telephone may thu 226 1 999 0 nonexistent
## 1356 telephone may thu 136 1 999 0 nonexistent
## 1357 telephone may thu 14 1 999 0 nonexistent
## 1358 telephone may thu 250 1 999 0 nonexistent
## 1359 telephone may thu 161 1 999 0 nonexistent
## 1360 telephone may thu 269 3 999 0 nonexistent
## 1361 telephone may thu 491 1 999 0 nonexistent
## 1362 telephone may thu 44 1 999 0 nonexistent
## 1363 telephone may thu 26 1 999 0 nonexistent
## 1364 telephone may thu 22 1 999 0 nonexistent
## 1365 telephone may thu 293 2 999 0 nonexistent
## 1366 telephone may thu 989 1 999 0 nonexistent
## 1367 telephone may thu 147 5 999 0 nonexistent
## 1368 telephone may thu 1170 1 999 0 nonexistent
## 1369 telephone may thu 807 2 999 0 nonexistent
## 1370 telephone may thu 347 2 999 0 nonexistent
## 1371 telephone may thu 58 2 999 0 nonexistent
## 1372 telephone may thu 534 2 999 0 nonexistent
## 1373 telephone may thu 155 2 999 0 nonexistent
## 1374 telephone may thu 159 2 999 0 nonexistent
## 1375 telephone may thu 343 2 999 0 nonexistent
## 1376 telephone may thu 152 2 999 0 nonexistent
## 1377 telephone may thu 461 3 999 0 nonexistent
## 1378 telephone may thu 389 2 999 0 nonexistent
## 1379 telephone may thu 90 2 999 0 nonexistent
## 1380 telephone may thu 314 3 999 0 nonexistent
## 1381 telephone may thu 28 3 999 0 nonexistent
## 1382 telephone may thu 30 2 999 0 nonexistent
## 1383 telephone may thu 103 4 999 0 nonexistent
## 1384 telephone may thu 32 2 999 0 nonexistent
## 1385 telephone may thu 252 2 999 0 nonexistent
## 1386 telephone may thu 20 2 999 0 nonexistent
## 1387 telephone may thu 369 2 999 0 nonexistent
## 1388 telephone may thu 116 1 999 0 nonexistent
## 1389 telephone may thu 302 2 999 0 nonexistent
## 1390 telephone may thu 31 1 999 0 nonexistent
## 1391 telephone may thu 190 1 999 0 nonexistent
## 1392 telephone may thu 149 1 999 0 nonexistent
## 1393 telephone may thu 210 1 999 0 nonexistent
## 1394 telephone may thu 180 2 999 0 nonexistent
## 1395 telephone may thu 234 1 999 0 nonexistent
## 1396 telephone may thu 92 1 999 0 nonexistent
## 1397 telephone may thu 2087 2 999 0 nonexistent
## 1398 telephone may thu 102 1 999 0 nonexistent
## 1399 telephone may thu 193 1 999 0 nonexistent
## 1400 telephone may thu 245 1 999 0 nonexistent
## 1401 telephone may thu 190 1 999 0 nonexistent
## 1402 telephone may thu 223 2 999 0 nonexistent
## 1403 telephone may thu 42 1 999 0 nonexistent
## 1404 telephone may thu 206 2 999 0 nonexistent
## 1405 telephone may thu 242 2 999 0 nonexistent
## 1406 telephone may thu 66 2 999 0 nonexistent
## 1407 telephone may thu 173 2 999 0 nonexistent
## 1408 telephone may thu 477 2 999 0 nonexistent
## 1409 telephone may thu 77 1 999 0 nonexistent
## 1410 telephone may thu 219 2 999 0 nonexistent
## 1411 telephone may thu 205 2 999 0 nonexistent
## 1412 telephone may thu 376 2 999 0 nonexistent
## 1413 telephone may thu 453 2 999 0 nonexistent
## 1414 telephone may thu 151 2 999 0 nonexistent
## 1415 telephone may thu 767 5 999 0 nonexistent
## 1416 telephone may thu 200 2 999 0 nonexistent
## 1417 telephone may thu 298 5 999 0 nonexistent
## 1418 telephone may thu 305 2 999 0 nonexistent
## 1419 telephone may thu 627 3 999 0 nonexistent
## 1420 telephone may thu 242 1 999 0 nonexistent
## 1421 telephone may thu 287 1 999 0 nonexistent
## 1422 telephone may thu 184 1 999 0 nonexistent
## 1423 telephone may thu 119 2 999 0 nonexistent
## 1424 telephone may thu 403 2 999 0 nonexistent
## 1425 telephone may thu 626 6 999 0 nonexistent
## 1426 telephone may thu 12 1 999 0 nonexistent
## 1427 telephone may thu 266 1 999 0 nonexistent
## 1428 telephone may thu 23 4 999 0 nonexistent
## 1429 telephone may thu 154 2 999 0 nonexistent
## 1430 telephone may thu 10 7 999 0 nonexistent
## 1431 telephone may thu 301 2 999 0 nonexistent
## 1432 telephone may thu 240 3 999 0 nonexistent
## 1433 telephone may thu 312 3 999 0 nonexistent
## 1434 telephone may thu 224 2 999 0 nonexistent
## 1435 telephone may thu 202 2 999 0 nonexistent
## 1436 telephone may thu 144 3 999 0 nonexistent
## 1437 telephone may thu 263 2 999 0 nonexistent
## 1438 telephone may thu 543 3 999 0 nonexistent
## 1439 telephone may thu 257 2 999 0 nonexistent
## 1440 telephone may thu 237 2 999 0 nonexistent
## 1441 telephone may thu 23 5 999 0 nonexistent
## 1442 telephone may thu 209 3 999 0 nonexistent
## 1443 telephone may thu 1178 2 999 0 nonexistent
## 1444 telephone may thu 442 2 999 0 nonexistent
## 1445 telephone may thu 1120 2 999 0 nonexistent
## 1446 telephone may thu 186 2 999 0 nonexistent
## 1447 telephone may thu 318 2 999 0 nonexistent
## 1448 telephone may thu 617 2 999 0 nonexistent
## 1449 telephone may thu 226 1 999 0 nonexistent
## 1450 telephone may thu 275 1 999 0 nonexistent
## 1451 telephone may thu 81 2 999 0 nonexistent
## 1452 telephone may thu 74 7 999 0 nonexistent
## 1453 telephone may thu 285 1 999 0 nonexistent
## 1454 telephone may thu 261 5 999 0 nonexistent
## 1455 telephone may thu 151 2 999 0 nonexistent
## 1456 telephone may thu 422 2 999 0 nonexistent
## 1457 telephone may thu 159 2 999 0 nonexistent
## 1458 telephone may thu 102 2 999 0 nonexistent
## 1459 telephone may thu 78 3 999 0 nonexistent
## 1460 telephone may thu 15 1 999 0 nonexistent
## 1461 telephone may thu 352 2 999 0 nonexistent
## 1462 telephone may thu 345 2 999 0 nonexistent
## 1463 telephone may thu 230 4 999 0 nonexistent
## 1464 telephone may thu 296 1 999 0 nonexistent
## 1465 telephone may thu 185 2 999 0 nonexistent
## 1466 telephone may thu 181 2 999 0 nonexistent
## 1467 telephone may thu 133 2 999 0 nonexistent
## 1468 telephone may thu 335 9 999 0 nonexistent
## 1469 telephone may thu 139 1 999 0 nonexistent
## 1470 telephone may thu 163 2 999 0 nonexistent
## 1471 telephone may thu 956 2 999 0 nonexistent
## 1472 telephone may thu 166 2 999 0 nonexistent
## 1473 telephone may thu 95 2 999 0 nonexistent
## 1474 telephone may thu 71 2 999 0 nonexistent
## 1475 telephone may thu 191 2 999 0 nonexistent
## 1476 telephone may thu 459 2 999 0 nonexistent
## 1477 telephone may thu 100 5 999 0 nonexistent
## 1478 telephone may thu 233 2 999 0 nonexistent
## 1479 telephone may thu 255 6 999 0 nonexistent
## 1480 telephone may thu 128 2 999 0 nonexistent
## 1481 telephone may thu 56 2 999 0 nonexistent
## 1482 telephone may thu 4 3 999 0 nonexistent
## 1483 telephone may thu 43 2 999 0 nonexistent
## 1484 telephone may thu 210 2 999 0 nonexistent
## 1485 telephone may thu 21 9 999 0 nonexistent
## 1486 telephone may thu 67 2 999 0 nonexistent
## 1487 telephone may thu 219 4 999 0 nonexistent
## 1488 telephone may thu 169 2 999 0 nonexistent
## 1489 telephone may thu 248 3 999 0 nonexistent
## 1490 telephone may thu 223 2 999 0 nonexistent
## 1491 telephone may thu 92 3 999 0 nonexistent
## 1492 telephone may thu 112 3 999 0 nonexistent
## 1493 telephone may thu 205 4 999 0 nonexistent
## 1494 telephone may thu 155 2 999 0 nonexistent
## 1495 telephone may thu 105 2 999 0 nonexistent
## 1496 telephone may thu 112 2 999 0 nonexistent
## 1497 telephone may thu 383 3 999 0 nonexistent
## 1498 telephone may thu 193 2 999 0 nonexistent
## 1499 telephone may thu 207 2 999 0 nonexistent
## 1500 telephone may thu 132 2 999 0 nonexistent
## 1501 telephone may thu 10 2 999 0 nonexistent
## 1502 telephone may thu 985 2 999 0 nonexistent
## 1503 telephone may thu 249 5 999 0 nonexistent
## 1504 telephone may thu 122 2 999 0 nonexistent
## 1505 telephone may thu 300 2 999 0 nonexistent
## 1506 telephone may thu 672 3 999 0 nonexistent
## 1507 telephone may thu 390 3 999 0 nonexistent
## 1508 telephone may thu 116 2 999 0 nonexistent
## 1509 telephone may thu 21 3 999 0 nonexistent
## 1510 telephone may thu 192 2 999 0 nonexistent
## 1511 telephone may thu 8 2 999 0 nonexistent
## 1512 telephone may thu 13 2 999 0 nonexistent
## 1513 telephone may thu 369 2 999 0 nonexistent
## 1514 telephone may thu 393 2 999 0 nonexistent
## 1515 telephone may thu 246 3 999 0 nonexistent
## 1516 telephone may thu 330 3 999 0 nonexistent
## 1517 telephone may thu 91 3 999 0 nonexistent
## 1518 telephone may thu 84 2 999 0 nonexistent
## 1519 telephone may thu 277 3 999 0 nonexistent
## 1520 telephone may thu 399 4 999 0 nonexistent
## 1521 telephone may thu 89 4 999 0 nonexistent
## 1522 telephone may thu 297 2 999 0 nonexistent
## 1523 telephone may thu 111 3 999 0 nonexistent
## 1524 telephone may thu 170 2 999 0 nonexistent
## 1525 telephone may thu 141 2 999 0 nonexistent
## 1526 telephone may thu 886 2 999 0 nonexistent
## 1527 telephone may thu 49 4 999 0 nonexistent
## 1528 telephone may thu 89 7 999 0 nonexistent
## 1529 telephone may thu 341 2 999 0 nonexistent
## 1530 telephone may thu 461 3 999 0 nonexistent
## 1531 telephone may thu 515 3 999 0 nonexistent
## 1532 telephone may thu 123 2 999 0 nonexistent
## 1533 telephone may thu 179 5 999 0 nonexistent
## 1534 telephone may thu 102 4 999 0 nonexistent
## 1535 telephone may thu 272 4 999 0 nonexistent
## 1536 telephone may thu 17 3 999 0 nonexistent
## 1537 telephone may thu 291 2 999 0 nonexistent
## 1538 telephone may thu 209 3 999 0 nonexistent
## 1539 telephone may thu 1187 2 999 0 nonexistent
## 1540 telephone may thu 89 5 999 0 nonexistent
## 1541 telephone may thu 123 2 999 0 nonexistent
## 1542 telephone may thu 200 2 999 0 nonexistent
## 1543 telephone may thu 104 3 999 0 nonexistent
## 1544 telephone may thu 117 3 999 0 nonexistent
## 1545 telephone may thu 37 3 999 0 nonexistent
## 1546 telephone may thu 51 3 999 0 nonexistent
## 1547 telephone may thu 627 4 999 0 nonexistent
## 1548 telephone may thu 466 2 999 0 nonexistent
## 1549 telephone may thu 101 2 999 0 nonexistent
## 1550 telephone may thu 303 3 999 0 nonexistent
## 1551 telephone may thu 283 3 999 0 nonexistent
## 1552 telephone may thu 826 3 999 0 nonexistent
## 1553 telephone may thu 598 3 999 0 nonexistent
## 1554 telephone may thu 120 5 999 0 nonexistent
## 1555 telephone may thu 185 7 999 0 nonexistent
## 1556 telephone may thu 220 2 999 0 nonexistent
## 1557 telephone may thu 423 2 999 0 nonexistent
## 1558 telephone may thu 337 4 999 0 nonexistent
## 1559 telephone may thu 99 3 999 0 nonexistent
## 1560 telephone may thu 27 3 999 0 nonexistent
## 1561 telephone may thu 160 3 999 0 nonexistent
## 1562 telephone may thu 201 2 999 0 nonexistent
## 1563 telephone may thu 166 3 999 0 nonexistent
## 1564 telephone may thu 182 1 999 0 nonexistent
## 1565 telephone may thu 271 5 999 0 nonexistent
## 1566 telephone may thu 103 3 999 0 nonexistent
## 1567 telephone may thu 379 4 999 0 nonexistent
## 1568 telephone may thu 287 4 999 0 nonexistent
## 1569 telephone may thu 732 2 999 0 nonexistent
## 1570 telephone may thu 126 3 999 0 nonexistent
## 1571 telephone may thu 172 4 999 0 nonexistent
## 1572 telephone may thu 43 2 999 0 nonexistent
## 1573 telephone may thu 109 4 999 0 nonexistent
## 1574 telephone may thu 191 2 999 0 nonexistent
## 1575 telephone may thu 117 2 999 0 nonexistent
## 1576 telephone may thu 64 1 999 0 nonexistent
## 1577 telephone may thu 260 5 999 0 nonexistent
## 1578 telephone may thu 207 3 999 0 nonexistent
## 1579 telephone may thu 128 3 999 0 nonexistent
## 1580 telephone may fri 180 2 999 0 nonexistent
## 1581 telephone may fri 144 2 999 0 nonexistent
## 1582 telephone may fri 110 4 999 0 nonexistent
## 1583 telephone may fri 203 4 999 0 nonexistent
## 1584 telephone may fri 85 2 999 0 nonexistent
## 1585 telephone may fri 211 2 999 0 nonexistent
## 1586 telephone may fri 94 2 999 0 nonexistent
## 1587 telephone may fri 122 4 999 0 nonexistent
## 1588 telephone may fri 175 5 999 0 nonexistent
## 1589 telephone may fri 132 5 999 0 nonexistent
## 1590 telephone may fri 130 2 999 0 nonexistent
## 1591 telephone may fri 208 2 999 0 nonexistent
## 1592 telephone may fri 346 4 999 0 nonexistent
## 1593 telephone may fri 205 1 999 0 nonexistent
## 1594 telephone may fri 218 1 999 0 nonexistent
## 1595 telephone may fri 62 1 999 0 nonexistent
## 1596 telephone may fri 93 5 999 0 nonexistent
## 1597 telephone may fri 85 2 999 0 nonexistent
## 1598 telephone may fri 97 1 999 0 nonexistent
## 1599 telephone may fri 252 4 999 0 nonexistent
## 1600 telephone may fri 286 1 999 0 nonexistent
## 1601 telephone may fri 241 1 999 0 nonexistent
## 1602 telephone may fri 283 1 999 0 nonexistent
## 1603 telephone may fri 380 1 999 0 nonexistent
## 1604 telephone may fri 584 1 999 0 nonexistent
## 1605 telephone may fri 371 1 999 0 nonexistent
## 1606 telephone may fri 274 1 999 0 nonexistent
## 1607 telephone may fri 71 3 999 0 nonexistent
## 1608 telephone may fri 357 1 999 0 nonexistent
## 1609 telephone may fri 617 4 999 0 nonexistent
## 1610 telephone may fri 215 1 999 0 nonexistent
## 1611 telephone may fri 131 1 999 0 nonexistent
## 1612 telephone may fri 188 1 999 0 nonexistent
## 1613 telephone may fri 383 3 999 0 nonexistent
## 1614 telephone may fri 483 3 999 0 nonexistent
## 1615 telephone may fri 847 1 999 0 nonexistent
## 1616 telephone may fri 57 2 999 0 nonexistent
## 1617 telephone may fri 306 1 999 0 nonexistent
## 1618 telephone may fri 147 1 999 0 nonexistent
## 1619 telephone may fri 244 1 999 0 nonexistent
## 1620 telephone may fri 59 1 999 0 nonexistent
## 1621 telephone may fri 24 1 999 0 nonexistent
## 1622 telephone may fri 85 2 999 0 nonexistent
## 1623 telephone may fri 70 1 999 0 nonexistent
## 1624 telephone may fri 21 1 999 0 nonexistent
## 1625 telephone may fri 659 2 999 0 nonexistent
## 1626 telephone may fri 327 2 999 0 nonexistent
## 1627 telephone may fri 267 1 999 0 nonexistent
## 1628 telephone may fri 296 3 999 0 nonexistent
## 1629 telephone may fri 307 1 999 0 nonexistent
## 1630 telephone may fri 120 1 999 0 nonexistent
## 1631 telephone may fri 390 2 999 0 nonexistent
## 1632 telephone may fri 83 2 999 0 nonexistent
## 1633 telephone may fri 772 1 999 0 nonexistent
## 1634 telephone may fri 143 1 999 0 nonexistent
## 1635 telephone may fri 198 1 999 0 nonexistent
## 1636 telephone may fri 100 1 999 0 nonexistent
## 1637 telephone may fri 929 3 999 0 nonexistent
## 1638 telephone may fri 21 3 999 0 nonexistent
## 1639 telephone may fri 254 1 999 0 nonexistent
## 1640 telephone may fri 166 1 999 0 nonexistent
## 1641 telephone may fri 93 1 999 0 nonexistent
## 1642 telephone may fri 217 2 999 0 nonexistent
## 1643 telephone may fri 134 2 999 0 nonexistent
## 1644 telephone may fri 375 2 999 0 nonexistent
## 1645 telephone may fri 352 1 999 0 nonexistent
## 1646 telephone may fri 45 1 999 0 nonexistent
## 1647 telephone may fri 93 1 999 0 nonexistent
## 1648 telephone may fri 165 1 999 0 nonexistent
## 1649 telephone may fri 266 1 999 0 nonexistent
## 1650 telephone may fri 237 1 999 0 nonexistent
## 1651 telephone may fri 410 1 999 0 nonexistent
## 1652 telephone may fri 157 1 999 0 nonexistent
## 1653 telephone may fri 72 2 999 0 nonexistent
## 1654 telephone may fri 171 1 999 0 nonexistent
## 1655 telephone may fri 70 3 999 0 nonexistent
## 1656 telephone may fri 710 1 999 0 nonexistent
## 1657 telephone may fri 131 3 999 0 nonexistent
## 1658 telephone may fri 498 1 999 0 nonexistent
## 1659 telephone may fri 514 1 999 0 nonexistent
## 1660 telephone may fri 127 1 999 0 nonexistent
## 1661 telephone may fri 162 1 999 0 nonexistent
## 1662 telephone may fri 198 1 999 0 nonexistent
## 1663 telephone may fri 705 1 999 0 nonexistent
## 1664 telephone may fri 239 1 999 0 nonexistent
## 1665 telephone may fri 117 1 999 0 nonexistent
## 1666 telephone may fri 155 1 999 0 nonexistent
## 1667 telephone may fri 18 1 999 0 nonexistent
## 1668 telephone may fri 386 1 999 0 nonexistent
## 1669 telephone may fri 138 1 999 0 nonexistent
## 1670 telephone may fri 341 1 999 0 nonexistent
## 1671 telephone may fri 339 2 999 0 nonexistent
## 1672 telephone may fri 232 1 999 0 nonexistent
## 1673 telephone may fri 208 1 999 0 nonexistent
## 1674 telephone may fri 44 1 999 0 nonexistent
## 1675 telephone may fri 75 1 999 0 nonexistent
## 1676 telephone may fri 485 1 999 0 nonexistent
## 1677 telephone may fri 576 1 999 0 nonexistent
## 1678 telephone may fri 280 1 999 0 nonexistent
## 1679 telephone may fri 480 2 999 0 nonexistent
## 1680 telephone may fri 86 2 999 0 nonexistent
## 1681 telephone may fri 121 4 999 0 nonexistent
## 1682 telephone may fri 93 2 999 0 nonexistent
## 1683 telephone may fri 238 2 999 0 nonexistent
## 1684 telephone may fri 399 3 999 0 nonexistent
## 1685 telephone may fri 93 2 999 0 nonexistent
## 1686 telephone may fri 106 1 999 0 nonexistent
## 1687 telephone may fri 123 1 999 0 nonexistent
## 1688 telephone may fri 92 2 999 0 nonexistent
## 1689 telephone may fri 219 1 999 0 nonexistent
## 1690 telephone may fri 2462 1 999 0 nonexistent
## 1691 telephone may fri 114 1 999 0 nonexistent
## 1692 telephone may fri 1132 2 999 0 nonexistent
## 1693 telephone may fri 249 3 999 0 nonexistent
## 1694 telephone may fri 210 1 999 0 nonexistent
## 1695 telephone may fri 187 1 999 0 nonexistent
## 1696 telephone may fri 172 1 999 0 nonexistent
## 1697 telephone may fri 122 1 999 0 nonexistent
## 1698 telephone may fri 207 1 999 0 nonexistent
## 1699 telephone may fri 136 2 999 0 nonexistent
## 1700 telephone may fri 117 2 999 0 nonexistent
## 1701 telephone may fri 393 1 999 0 nonexistent
## 1702 telephone may fri 107 1 999 0 nonexistent
## 1703 telephone may fri 25 1 999 0 nonexistent
## 1704 telephone may fri 136 1 999 0 nonexistent
## 1705 telephone may fri 384 2 999 0 nonexistent
## 1706 telephone may fri 38 1 999 0 nonexistent
## 1707 telephone may fri 164 1 999 0 nonexistent
## 1708 telephone may fri 825 1 999 0 nonexistent
## 1709 telephone may fri 331 1 999 0 nonexistent
## 1710 telephone may fri 479 2 999 0 nonexistent
## 1711 telephone may fri 229 2 999 0 nonexistent
## 1712 telephone may fri 258 2 999 0 nonexistent
## 1713 telephone may fri 490 1 999 0 nonexistent
## 1714 telephone may fri 308 1 999 0 nonexistent
## 1715 telephone may fri 137 1 999 0 nonexistent
## 1716 telephone may fri 545 2 999 0 nonexistent
## 1717 telephone may fri 109 1 999 0 nonexistent
## 1718 telephone may fri 257 6 999 0 nonexistent
## 1719 telephone may fri 213 2 999 0 nonexistent
## 1720 telephone may fri 115 1 999 0 nonexistent
## 1721 telephone may fri 646 1 999 0 nonexistent
## 1722 telephone may fri 202 1 999 0 nonexistent
## 1723 telephone may fri 106 1 999 0 nonexistent
## 1724 telephone may fri 95 2 999 0 nonexistent
## 1725 telephone may fri 64 1 999 0 nonexistent
## 1726 telephone may fri 653 1 999 0 nonexistent
## 1727 telephone may fri 186 1 999 0 nonexistent
## 1728 telephone may fri 205 1 999 0 nonexistent
## 1729 telephone may fri 122 1 999 0 nonexistent
## 1730 telephone may fri 377 1 999 0 nonexistent
## 1731 telephone may fri 322 1 999 0 nonexistent
## 1732 telephone may fri 208 3 999 0 nonexistent
## 1733 telephone may fri 46 2 999 0 nonexistent
## 1734 telephone may fri 211 2 999 0 nonexistent
## 1735 telephone may fri 156 2 999 0 nonexistent
## 1736 telephone may fri 471 2 999 0 nonexistent
## 1737 telephone may fri 206 2 999 0 nonexistent
## 1738 telephone may fri 544 1 999 0 nonexistent
## 1739 telephone may fri 143 1 999 0 nonexistent
## 1740 telephone may fri 200 3 999 0 nonexistent
## 1741 telephone may fri 71 1 999 0 nonexistent
## 1742 telephone may fri 324 2 999 0 nonexistent
## 1743 telephone may fri 164 5 999 0 nonexistent
## 1744 telephone may fri 137 3 999 0 nonexistent
## 1745 telephone may fri 87 2 999 0 nonexistent
## 1746 telephone may fri 91 2 999 0 nonexistent
## 1747 telephone may fri 280 1 999 0 nonexistent
## 1748 telephone may fri 230 2 999 0 nonexistent
## 1749 telephone may fri 63 1 999 0 nonexistent
## 1750 telephone may fri 135 1 999 0 nonexistent
## 1751 telephone may fri 261 1 999 0 nonexistent
## 1752 telephone may fri 215 2 999 0 nonexistent
## 1753 telephone may fri 125 1 999 0 nonexistent
## 1754 telephone may fri 391 2 999 0 nonexistent
## 1755 telephone may fri 107 3 999 0 nonexistent
## 1756 telephone may fri 108 2 999 0 nonexistent
## 1757 telephone may fri 145 2 999 0 nonexistent
## 1758 telephone may fri 142 2 999 0 nonexistent
## 1759 telephone may fri 106 1 999 0 nonexistent
## 1760 telephone may fri 134 1 999 0 nonexistent
## 1761 telephone may fri 190 1 999 0 nonexistent
## 1762 telephone may fri 241 1 999 0 nonexistent
## 1763 telephone may fri 180 1 999 0 nonexistent
## 1764 telephone may fri 654 1 999 0 nonexistent
## 1765 telephone may fri 189 1 999 0 nonexistent
## 1766 telephone may fri 70 1 999 0 nonexistent
## 1767 telephone may fri 1087 2 999 0 nonexistent
## 1768 telephone may fri 62 1 999 0 nonexistent
## 1769 telephone may fri 323 1 999 0 nonexistent
## 1770 telephone may fri 111 2 999 0 nonexistent
## 1771 telephone may fri 197 4 999 0 nonexistent
## 1772 telephone may fri 224 3 999 0 nonexistent
## 1773 telephone may fri 557 1 999 0 nonexistent
## 1774 telephone may fri 150 2 999 0 nonexistent
## 1775 telephone may fri 388 2 999 0 nonexistent
## 1776 telephone may fri 194 1 999 0 nonexistent
## 1777 telephone may fri 57 2 999 0 nonexistent
## 1778 telephone may fri 209 3 999 0 nonexistent
## 1779 telephone may fri 188 1 999 0 nonexistent
## 1780 telephone may fri 342 1 999 0 nonexistent
## 1781 telephone may fri 84 1 999 0 nonexistent
## 1782 telephone may fri 530 2 999 0 nonexistent
## 1783 telephone may fri 97 1 999 0 nonexistent
## 1784 telephone may fri 365 1 999 0 nonexistent
## 1785 telephone may fri 285 1 999 0 nonexistent
## 1786 telephone may fri 352 1 999 0 nonexistent
## 1787 telephone may fri 316 3 999 0 nonexistent
## 1788 telephone may fri 79 4 999 0 nonexistent
## 1789 telephone may fri 331 2 999 0 nonexistent
## 1790 telephone may fri 126 2 999 0 nonexistent
## 1791 telephone may fri 76 2 999 0 nonexistent
## 1792 telephone may fri 1692 2 999 0 nonexistent
## 1793 telephone may fri 24 1 999 0 nonexistent
## 1794 telephone may fri 73 1 999 0 nonexistent
## 1795 telephone may fri 253 1 999 0 nonexistent
## 1796 telephone may fri 622 1 999 0 nonexistent
## 1797 telephone may fri 133 1 999 0 nonexistent
## 1798 telephone may fri 178 1 999 0 nonexistent
## 1799 telephone may fri 404 2 999 0 nonexistent
## 1800 telephone may fri 275 1 999 0 nonexistent
## 1801 telephone may fri 109 1 999 0 nonexistent
## 1802 telephone may fri 134 1 999 0 nonexistent
## 1803 telephone may fri 225 1 999 0 nonexistent
## 1804 telephone may fri 129 1 999 0 nonexistent
## 1805 telephone may fri 93 3 999 0 nonexistent
## 1806 telephone may fri 20 1 999 0 nonexistent
## 1807 telephone may fri 247 1 999 0 nonexistent
## 1808 telephone may fri 129 3 999 0 nonexistent
## 1809 telephone may fri 324 1 999 0 nonexistent
## 1810 telephone may fri 2016 2 999 0 nonexistent
## 1811 telephone may fri 1054 2 999 0 nonexistent
## 1812 telephone may fri 163 2 999 0 nonexistent
## 1813 telephone may fri 279 2 999 0 nonexistent
## 1814 telephone may fri 251 2 999 0 nonexistent
## 1815 telephone may fri 113 4 999 0 nonexistent
## 1816 telephone may fri 193 2 999 0 nonexistent
## 1817 telephone may fri 125 3 999 0 nonexistent
## 1818 telephone may fri 282 2 999 0 nonexistent
## 1819 telephone may fri 344 2 999 0 nonexistent
## 1820 telephone may fri 665 2 999 0 nonexistent
## 1821 telephone may fri 67 3 999 0 nonexistent
## 1822 telephone may fri 167 4 999 0 nonexistent
## 1823 telephone may fri 395 1 999 0 nonexistent
## 1824 telephone may fri 137 2 999 0 nonexistent
## 1825 telephone may fri 118 1 999 0 nonexistent
## 1826 telephone may fri 231 2 999 0 nonexistent
## 1827 telephone may fri 128 1 999 0 nonexistent
## 1828 telephone may fri 174 1 999 0 nonexistent
## 1829 telephone may fri 195 1 999 0 nonexistent
## 1830 telephone may fri 412 1 999 0 nonexistent
## 1831 telephone may fri 127 1 999 0 nonexistent
## 1832 telephone may fri 79 1 999 0 nonexistent
## 1833 telephone may fri 13 1 999 0 nonexistent
## 1834 telephone may fri 61 1 999 0 nonexistent
## 1835 telephone may fri 286 5 999 0 nonexistent
## 1836 telephone may fri 274 2 999 0 nonexistent
## 1837 telephone may fri 409 3 999 0 nonexistent
## 1838 telephone may fri 325 1 999 0 nonexistent
## 1839 telephone may fri 144 2 999 0 nonexistent
## 1840 telephone may fri 1713 1 999 0 nonexistent
## 1841 telephone may fri 241 2 999 0 nonexistent
## 1842 telephone may fri 338 3 999 0 nonexistent
## 1843 telephone may fri 182 1 999 0 nonexistent
## 1844 telephone may fri 346 3 999 0 nonexistent
## 1845 telephone may fri 204 2 999 0 nonexistent
## 1846 telephone may fri 296 2 999 0 nonexistent
## 1847 telephone may fri 551 2 999 0 nonexistent
## 1848 telephone may fri 663 3 999 0 nonexistent
## 1849 telephone may fri 338 4 999 0 nonexistent
## 1850 telephone may fri 153 1 999 0 nonexistent
## 1851 telephone may fri 188 2 999 0 nonexistent
## 1852 telephone may fri 305 2 999 0 nonexistent
## 1853 telephone may fri 1080 5 999 0 nonexistent
## 1854 telephone may fri 1461 2 999 0 nonexistent
## 1855 telephone may fri 116 1 999 0 nonexistent
## 1856 telephone may fri 129 2 999 0 nonexistent
## 1857 telephone may fri 98 3 999 0 nonexistent
## 1858 telephone may fri 262 1 999 0 nonexistent
## 1859 telephone may fri 147 7 999 0 nonexistent
## 1860 telephone may fri 150 1 999 0 nonexistent
## 1861 telephone may fri 282 2 999 0 nonexistent
## 1862 telephone may fri 332 2 999 0 nonexistent
## 1863 telephone may fri 94 1 999 0 nonexistent
## 1864 telephone may fri 455 1 999 0 nonexistent
## 1865 telephone may fri 49 1 999 0 nonexistent
## 1866 telephone may fri 181 1 999 0 nonexistent
## 1867 telephone may fri 345 9 999 0 nonexistent
## 1868 telephone may fri 154 3 999 0 nonexistent
## 1869 telephone may fri 294 2 999 0 nonexistent
## 1870 telephone may fri 750 7 999 0 nonexistent
## 1871 telephone may fri 202 2 999 0 nonexistent
## 1872 telephone may fri 191 2 999 0 nonexistent
## 1873 telephone may fri 106 1 999 0 nonexistent
## 1874 telephone may fri 214 2 999 0 nonexistent
## 1875 telephone may fri 128 1 999 0 nonexistent
## 1876 telephone may fri 70 1 999 0 nonexistent
## 1877 telephone may fri 279 1 999 0 nonexistent
## 1878 telephone may fri 400 2 999 0 nonexistent
## 1879 telephone may fri 231 2 999 0 nonexistent
## 1880 telephone may fri 175 2 999 0 nonexistent
## 1881 telephone may fri 70 4 999 0 nonexistent
## 1882 telephone may fri 179 2 999 0 nonexistent
## 1883 telephone may fri 107 4 999 0 nonexistent
## 1884 telephone may fri 142 2 999 0 nonexistent
## 1885 telephone may fri 119 2 999 0 nonexistent
## 1886 telephone may fri 180 3 999 0 nonexistent
## 1887 telephone may fri 135 2 999 0 nonexistent
## 1888 telephone may fri 213 2 999 0 nonexistent
## 1889 telephone may fri 136 2 999 0 nonexistent
## 1890 telephone may fri 44 3 999 0 nonexistent
## 1891 telephone may fri 229 5 999 0 nonexistent
## 1892 telephone may fri 184 2 999 0 nonexistent
## 1893 telephone may fri 32 2 999 0 nonexistent
## 1894 telephone may fri 73 4 999 0 nonexistent
## 1895 telephone may fri 126 2 999 0 nonexistent
## 1896 telephone may fri 83 4 999 0 nonexistent
## 1897 telephone may fri 379 2 999 0 nonexistent
## 1898 telephone may fri 26 2 999 0 nonexistent
## 1899 telephone may fri 169 2 999 0 nonexistent
## 1900 telephone may fri 179 2 999 0 nonexistent
## 1901 telephone may fri 280 1 999 0 nonexistent
## 1902 telephone may fri 89 2 999 0 nonexistent
## 1903 telephone may fri 210 3 999 0 nonexistent
## 1904 telephone may fri 393 2 999 0 nonexistent
## 1905 telephone may fri 128 3 999 0 nonexistent
## 1906 telephone may fri 161 2 999 0 nonexistent
## 1907 telephone may fri 1178 4 999 0 nonexistent
## 1908 telephone may fri 182 7 999 0 nonexistent
## 1909 telephone may fri 178 2 999 0 nonexistent
## 1910 telephone may fri 177 2 999 0 nonexistent
## 1911 telephone may fri 191 2 999 0 nonexistent
## 1912 telephone may fri 245 4 999 0 nonexistent
## 1913 telephone may fri 255 2 999 0 nonexistent
## 1914 telephone may fri 488 2 999 0 nonexistent
## 1915 telephone may fri 211 2 999 0 nonexistent
## 1916 telephone may fri 226 2 999 0 nonexistent
## 1917 telephone may fri 460 2 999 0 nonexistent
## 1918 telephone may fri 432 2 999 0 nonexistent
## 1919 telephone may fri 136 3 999 0 nonexistent
## 1920 telephone may fri 176 2 999 0 nonexistent
## 1921 telephone may fri 162 2 999 0 nonexistent
## 1922 telephone may fri 237 3 999 0 nonexistent
## 1923 telephone may fri 134 3 999 0 nonexistent
## 1924 telephone may fri 44 2 999 0 nonexistent
## 1925 telephone may fri 47 5 999 0 nonexistent
## 1926 telephone may fri 483 1 999 0 nonexistent
## 1927 telephone may fri 116 3 999 0 nonexistent
## 1928 telephone may fri 182 3 999 0 nonexistent
## 1929 telephone may fri 122 2 999 0 nonexistent
## 1930 telephone may fri 232 2 999 0 nonexistent
## 1931 telephone may fri 51 3 999 0 nonexistent
## 1932 telephone may fri 260 4 999 0 nonexistent
## 1933 telephone may fri 214 2 999 0 nonexistent
## 1934 telephone may fri 407 4 999 0 nonexistent
## 1935 telephone may fri 389 2 999 0 nonexistent
## 1936 telephone may fri 31 3 999 0 nonexistent
## 1937 telephone may fri 145 3 999 0 nonexistent
## 1938 telephone may fri 115 2 999 0 nonexistent
## 1939 telephone may fri 878 3 999 0 nonexistent
## 1940 telephone may fri 268 2 999 0 nonexistent
## 1941 telephone may fri 277 3 999 0 nonexistent
## 1942 telephone may fri 101 6 999 0 nonexistent
## 1943 telephone may fri 119 2 999 0 nonexistent
## 1944 telephone may fri 185 2 999 0 nonexistent
## 1945 telephone may fri 162 2 999 0 nonexistent
## 1946 telephone may fri 18 7 999 0 nonexistent
## 1947 telephone may fri 317 2 999 0 nonexistent
## 1948 telephone may fri 71 3 999 0 nonexistent
## 1949 telephone may fri 43 2 999 0 nonexistent
## 1950 telephone may fri 298 2 999 0 nonexistent
## 1951 telephone may fri 86 4 999 0 nonexistent
## 1952 telephone may fri 255 2 999 0 nonexistent
## 1953 telephone may fri 83 3 999 0 nonexistent
## 1954 telephone may fri 194 3 999 0 nonexistent
## 1955 telephone may fri 268 3 999 0 nonexistent
## 1956 telephone may fri 97 1 999 0 nonexistent
## 1957 telephone may fri 263 5 999 0 nonexistent
## 1958 telephone may fri 338 4 999 0 nonexistent
## 1959 telephone may fri 180 2 999 0 nonexistent
## 1960 telephone may fri 322 5 999 0 nonexistent
## 1961 telephone may fri 64 4 999 0 nonexistent
## 1962 telephone may fri 71 4 999 0 nonexistent
## 1963 telephone may fri 284 4 999 0 nonexistent
## 1964 telephone may fri 166 3 999 0 nonexistent
## 1965 telephone may fri 210 3 999 0 nonexistent
## 1966 telephone may fri 160 3 999 0 nonexistent
## 1967 telephone may fri 77 2 999 0 nonexistent
## 1968 telephone may fri 328 7 999 0 nonexistent
## 1969 telephone may fri 164 8 999 0 nonexistent
## 1970 telephone may fri 154 2 999 0 nonexistent
## 1971 telephone may fri 155 3 999 0 nonexistent
## 1972 telephone may fri 153 4 999 0 nonexistent
## 1973 telephone may fri 111 2 999 0 nonexistent
## 1974 telephone may fri 91 3 999 0 nonexistent
## 1975 telephone may fri 213 4 999 0 nonexistent
## 1976 telephone may fri 257 3 999 0 nonexistent
## 1977 telephone may fri 315 4 999 0 nonexistent
## 1978 telephone may fri 102 3 999 0 nonexistent
## 1979 telephone may fri 35 3 999 0 nonexistent
## 1980 telephone may fri 83 3 999 0 nonexistent
## 1981 telephone may fri 834 9 999 0 nonexistent
## 1982 telephone may fri 244 5 999 0 nonexistent
## 1983 telephone may fri 143 3 999 0 nonexistent
## 1984 telephone may fri 277 3 999 0 nonexistent
## 1985 telephone may fri 1534 2 999 0 nonexistent
## 1986 telephone may fri 291 4 999 0 nonexistent
## 1987 telephone may mon 163 2 999 0 nonexistent
## 1988 telephone may mon 149 6 999 0 nonexistent
## 1989 telephone may mon 33 4 999 0 nonexistent
## 1990 telephone may mon 144 6 999 0 nonexistent
## 1991 telephone may mon 146 4 999 0 nonexistent
## 1992 telephone may mon 40 3 999 0 nonexistent
## 1993 telephone may mon 79 6 999 0 nonexistent
## 1994 telephone may mon 112 2 999 0 nonexistent
## 1995 telephone may mon 147 5 999 0 nonexistent
## 1996 telephone may mon 836 4 999 0 nonexistent
## 1997 telephone may mon 290 5 999 0 nonexistent
## 1998 telephone may mon 148 2 999 0 nonexistent
## 1999 telephone may mon 289 5 999 0 nonexistent
## 2000 telephone may mon 345 2 999 0 nonexistent
## 2001 telephone may mon 1002 5 999 0 nonexistent
## 2002 telephone may mon 181 4 999 0 nonexistent
## 2003 telephone may mon 460 5 999 0 nonexistent
## 2004 telephone may mon 129 2 999 0 nonexistent
## 2005 telephone may mon 76 2 999 0 nonexistent
## 2006 telephone may mon 111 2 999 0 nonexistent
## 2007 telephone may mon 98 3 999 0 nonexistent
## 2008 telephone may mon 221 2 999 0 nonexistent
## 2009 telephone may mon 150 7 999 0 nonexistent
## 2010 telephone may mon 399 3 999 0 nonexistent
## 2011 telephone may mon 139 6 999 0 nonexistent
## 2012 telephone may mon 115 4 999 0 nonexistent
## 2013 telephone may mon 149 5 999 0 nonexistent
## 2014 telephone may mon 327 2 999 0 nonexistent
## 2015 telephone may mon 92 4 999 0 nonexistent
## 2016 telephone may mon 111 2 999 0 nonexistent
## 2017 telephone may mon 192 2 999 0 nonexistent
## 2018 telephone may mon 88 5 999 0 nonexistent
## 2019 telephone may mon 592 2 999 0 nonexistent
## 2020 telephone may mon 105 3 999 0 nonexistent
## 2021 telephone may mon 62 2 999 0 nonexistent
## 2022 telephone may mon 114 5 999 0 nonexistent
## 2023 telephone may mon 59 4 999 0 nonexistent
## 2024 telephone may mon 144 7 999 0 nonexistent
## 2025 telephone may mon 346 4 999 0 nonexistent
## 2026 telephone may mon 57 2 999 0 nonexistent
## 2027 telephone may mon 396 3 999 0 nonexistent
## 2028 telephone may mon 286 4 999 0 nonexistent
## 2029 telephone may mon 59 4 999 0 nonexistent
## 2030 telephone may mon 38 4 999 0 nonexistent
## 2031 telephone may mon 252 4 999 0 nonexistent
## 2032 telephone may mon 566 7 999 0 nonexistent
## 2033 telephone may mon 167 2 999 0 nonexistent
## 2034 telephone may mon 127 2 999 0 nonexistent
## 2035 telephone may mon 71 2 999 0 nonexistent
## 2036 telephone may mon 120 2 999 0 nonexistent
## 2037 telephone may mon 409 2 999 0 nonexistent
## 2038 telephone may mon 117 2 999 0 nonexistent
## 2039 telephone may mon 177 4 999 0 nonexistent
## 2040 telephone may mon 757 2 999 0 nonexistent
## 2041 telephone may mon 145 1 999 0 nonexistent
## 2042 telephone may mon 124 1 999 0 nonexistent
## 2043 telephone may mon 36 4 999 0 nonexistent
## 2044 telephone may mon 94 2 999 0 nonexistent
## 2045 telephone may mon 189 1 999 0 nonexistent
## 2046 telephone may mon 24 1 999 0 nonexistent
## 2047 telephone may mon 33 2 999 0 nonexistent
## 2048 telephone may mon 185 1 999 0 nonexistent
## 2049 telephone may mon 122 1 999 0 nonexistent
## 2050 telephone may mon 225 1 999 0 nonexistent
## 2051 telephone may mon 165 1 999 0 nonexistent
## 2052 telephone may mon 186 1 999 0 nonexistent
## 2053 telephone may mon 405 3 999 0 nonexistent
## 2054 telephone may mon 172 2 999 0 nonexistent
## 2055 telephone may mon 207 3 999 0 nonexistent
## 2056 telephone may mon 325 3 999 0 nonexistent
## 2057 telephone may mon 57 8 999 0 nonexistent
## 2058 telephone may mon 102 1 999 0 nonexistent
## 2059 telephone may mon 164 3 999 0 nonexistent
## 2060 telephone may mon 288 2 999 0 nonexistent
## 2061 telephone may mon 154 1 999 0 nonexistent
## 2062 telephone may mon 102 1 999 0 nonexistent
## 2063 telephone may mon 136 2 999 0 nonexistent
## 2064 telephone may mon 53 1 999 0 nonexistent
## 2065 telephone may mon 744 6 999 0 nonexistent
## 2066 telephone may mon 202 1 999 0 nonexistent
## 2067 telephone may mon 113 3 999 0 nonexistent
## 2068 telephone may mon 130 3 999 0 nonexistent
## 2069 telephone may mon 523 1 999 0 nonexistent
## 2070 telephone may mon 231 1 999 0 nonexistent
## 2071 telephone may mon 217 1 999 0 nonexistent
## 2072 telephone may mon 151 1 999 0 nonexistent
## 2073 telephone may mon 293 1 999 0 nonexistent
## 2074 telephone may mon 281 1 999 0 nonexistent
## 2075 telephone may mon 363 2 999 0 nonexistent
## 2076 telephone may mon 86 1 999 0 nonexistent
## 2077 telephone may mon 1147 2 999 0 nonexistent
## 2078 telephone may mon 486 1 999 0 nonexistent
## 2079 telephone may mon 49 2 999 0 nonexistent
## 2080 telephone may mon 170 2 999 0 nonexistent
## 2081 telephone may mon 539 1 999 0 nonexistent
## 2082 telephone may mon 66 3 999 0 nonexistent
## 2083 telephone may mon 820 1 999 0 nonexistent
## 2084 telephone may mon 125 1 999 0 nonexistent
## 2085 telephone may mon 398 1 999 0 nonexistent
## 2086 telephone may mon 112 1 999 0 nonexistent
## 2087 telephone may mon 64 1 999 0 nonexistent
## 2088 telephone may mon 255 1 999 0 nonexistent
## 2089 telephone may mon 95 8 999 0 nonexistent
## 2090 telephone may mon 140 3 999 0 nonexistent
## 2091 telephone may mon 788 2 999 0 nonexistent
## 2092 telephone may mon 239 4 999 0 nonexistent
## 2093 telephone may mon 194 2 999 0 nonexistent
## 2094 telephone may mon 165 4 999 0 nonexistent
## 2095 telephone may mon 306 2 999 0 nonexistent
## 2096 telephone may mon 63 3 999 0 nonexistent
## 2097 telephone may mon 501 2 999 0 nonexistent
## 2098 telephone may mon 832 3 999 0 nonexistent
## 2099 telephone may mon 214 4 999 0 nonexistent
## 2100 telephone may mon 283 6 999 0 nonexistent
## 2101 telephone may mon 101 2 999 0 nonexistent
## 2102 telephone may mon 77 2 999 0 nonexistent
## 2103 telephone may mon 290 6 999 0 nonexistent
## 2104 telephone may mon 388 2 999 0 nonexistent
## 2105 telephone may mon 1111 3 999 0 nonexistent
## 2106 telephone may mon 1495 4 999 0 nonexistent
## 2107 telephone may mon 322 1 999 0 nonexistent
## 2108 telephone may mon 480 1 999 0 nonexistent
## 2109 telephone may mon 146 3 999 0 nonexistent
## 2110 telephone may mon 393 1 999 0 nonexistent
## 2111 telephone may mon 744 2 999 0 nonexistent
## 2112 telephone may mon 593 2 999 0 nonexistent
## 2113 telephone may mon 215 1 999 0 nonexistent
## 2114 telephone may mon 379 2 999 0 nonexistent
## 2115 telephone may mon 315 1 999 0 nonexistent
## 2116 telephone may mon 162 1 999 0 nonexistent
## 2117 telephone may mon 493 1 999 0 nonexistent
## 2118 telephone may mon 225 1 999 0 nonexistent
## 2119 telephone may mon 208 1 999 0 nonexistent
## 2120 telephone may mon 80 4 999 0 nonexistent
## 2121 telephone may mon 39 3 999 0 nonexistent
## 2122 telephone may mon 132 1 999 0 nonexistent
## 2123 telephone may mon 101 1 999 0 nonexistent
## 2124 telephone may mon 188 1 999 0 nonexistent
## 2125 telephone may mon 386 2 999 0 nonexistent
## 2126 telephone may mon 457 4 999 0 nonexistent
## 2127 telephone may mon 891 1 999 0 nonexistent
## 2128 telephone may mon 53 1 999 0 nonexistent
## 2129 telephone may mon 326 1 999 0 nonexistent
## 2130 telephone may mon 507 1 999 0 nonexistent
## 2131 telephone may mon 1083 2 999 0 nonexistent
## 2132 telephone may mon 123 2 999 0 nonexistent
## 2133 telephone may mon 1266 1 999 0 nonexistent
## 2134 telephone may mon 171 6 999 0 nonexistent
## 2135 telephone may mon 160 4 999 0 nonexistent
## 2136 telephone may mon 178 2 999 0 nonexistent
## 2137 telephone may mon 156 3 999 0 nonexistent
## 2138 telephone may mon 200 2 999 0 nonexistent
## 2139 telephone may mon 154 2 999 0 nonexistent
## 2140 telephone may mon 163 4 999 0 nonexistent
## 2141 telephone may mon 391 1 999 0 nonexistent
## 2142 telephone may mon 470 1 999 0 nonexistent
## 2143 telephone may mon 268 4 999 0 nonexistent
## 2144 telephone may mon 793 5 999 0 nonexistent
## 2145 telephone may mon 219 4 999 0 nonexistent
## 2146 telephone may mon 460 1 999 0 nonexistent
## 2147 telephone may mon 246 1 999 0 nonexistent
## 2148 telephone may mon 194 3 999 0 nonexistent
## 2149 telephone may mon 413 1 999 0 nonexistent
## 2150 telephone may mon 574 6 999 0 nonexistent
## 2151 telephone may mon 256 4 999 0 nonexistent
## 2152 telephone may mon 88 2 999 0 nonexistent
## 2153 telephone may mon 146 1 999 0 nonexistent
## 2154 telephone may mon 596 1 999 0 nonexistent
## 2155 telephone may mon 170 2 999 0 nonexistent
## 2156 telephone may mon 139 1 999 0 nonexistent
## 2157 telephone may mon 577 1 999 0 nonexistent
## 2158 telephone may mon 177 3 999 0 nonexistent
## 2159 telephone may mon 335 1 999 0 nonexistent
## 2160 telephone may mon 262 2 999 0 nonexistent
## 2161 telephone may mon 115 1 999 0 nonexistent
## 2162 telephone may mon 136 4 999 0 nonexistent
## 2163 telephone may mon 289 3 999 0 nonexistent
## 2164 telephone may mon 529 2 999 0 nonexistent
## 2165 telephone may mon 247 2 999 0 nonexistent
## 2166 telephone may mon 72 2 999 0 nonexistent
## 2167 telephone may mon 166 2 999 0 nonexistent
## 2168 telephone may mon 320 3 999 0 nonexistent
## 2169 telephone may mon 307 4 999 0 nonexistent
## 2170 telephone may mon 220 3 999 0 nonexistent
## 2171 telephone may mon 241 3 999 0 nonexistent
## 2172 telephone may mon 241 1 999 0 nonexistent
## 2173 telephone may mon 198 3 999 0 nonexistent
## 2174 telephone may mon 98 2 999 0 nonexistent
## 2175 telephone may mon 391 2 999 0 nonexistent
## 2176 telephone may mon 126 2 999 0 nonexistent
## 2177 telephone may mon 55 2 999 0 nonexistent
## 2178 telephone may mon 86 4 999 0 nonexistent
## 2179 telephone may mon 166 2 999 0 nonexistent
## 2180 telephone may mon 66 4 999 0 nonexistent
## 2181 telephone may mon 155 3 999 0 nonexistent
## 2182 telephone may mon 311 3 999 0 nonexistent
## 2183 telephone may mon 63 5 999 0 nonexistent
## 2184 telephone may mon 236 10 999 0 nonexistent
## 2185 telephone may mon 92 3 999 0 nonexistent
## 2186 telephone may mon 253 2 999 0 nonexistent
## 2187 telephone may mon 65 1 999 0 nonexistent
## 2188 telephone may mon 41 1 999 0 nonexistent
## 2189 telephone may mon 163 2 999 0 nonexistent
## 2190 telephone may mon 10 11 999 0 nonexistent
## 2191 telephone may mon 221 1 999 0 nonexistent
## 2192 telephone may mon 484 3 999 0 nonexistent
## 2193 telephone may mon 467 5 999 0 nonexistent
## 2194 telephone may mon 241 3 999 0 nonexistent
## 2195 telephone may mon 248 2 999 0 nonexistent
## 2196 telephone may mon 198 3 999 0 nonexistent
## 2197 telephone may mon 212 2 999 0 nonexistent
## 2198 telephone may mon 115 4 999 0 nonexistent
## 2199 telephone may mon 58 7 999 0 nonexistent
## 2200 telephone may mon 456 6 999 0 nonexistent
## 2201 telephone may mon 145 4 999 0 nonexistent
## 2202 telephone may mon 300 3 999 0 nonexistent
## 2203 telephone may mon 264 2 999 0 nonexistent
## 2204 telephone may mon 184 4 999 0 nonexistent
## 2205 telephone may mon 177 4 999 0 nonexistent
## 2206 telephone may mon 65 5 999 0 nonexistent
## 2207 telephone may mon 299 5 999 0 nonexistent
## 2208 telephone may mon 93 4 999 0 nonexistent
## 2209 telephone may mon 22 5 999 0 nonexistent
## 2210 telephone may mon 170 8 999 0 nonexistent
## 2211 telephone may mon 89 3 999 0 nonexistent
## 2212 telephone may mon 166 4 999 0 nonexistent
## 2213 telephone may mon 128 3 999 0 nonexistent
## 2214 telephone may mon 197 3 999 0 nonexistent
## 2215 telephone may mon 395 3 999 0 nonexistent
## 2216 telephone may mon 220 2 999 0 nonexistent
## 2217 telephone may mon 298 2 999 0 nonexistent
## 2218 telephone may mon 123 7 999 0 nonexistent
## 2219 telephone may mon 334 7 999 0 nonexistent
## 2220 telephone may mon 73 3 999 0 nonexistent
## 2221 telephone may mon 186 6 999 0 nonexistent
## 2222 telephone may mon 78 3 999 0 nonexistent
## 2223 telephone may mon 13 5 999 0 nonexistent
## 2224 telephone may mon 51 9 999 0 nonexistent
## 2225 telephone may mon 303 3 999 0 nonexistent
## 2226 telephone may mon 159 3 999 0 nonexistent
## 2227 telephone may mon 103 8 999 0 nonexistent
## 2228 telephone may mon 95 3 999 0 nonexistent
## 2229 telephone may mon 46 3 999 0 nonexistent
## 2230 telephone may mon 84 3 999 0 nonexistent
## 2231 telephone may mon 344 3 999 0 nonexistent
## 2232 telephone may mon 157 5 999 0 nonexistent
## 2233 telephone may mon 162 4 999 0 nonexistent
## 2234 telephone may mon 249 4 999 0 nonexistent
## 2235 telephone may mon 24 12 999 0 nonexistent
## 2236 telephone may mon 185 4 999 0 nonexistent
## 2237 telephone may mon 212 5 999 0 nonexistent
## 2238 telephone may mon 195 2 999 0 nonexistent
## 2239 telephone may mon 143 4 999 0 nonexistent
## 2240 telephone may mon 68 2 999 0 nonexistent
## 2241 telephone may mon 274 6 999 0 nonexistent
## 2242 telephone may mon 152 5 999 0 nonexistent
## 2243 telephone may mon 325 4 999 0 nonexistent
## 2244 telephone may mon 249 4 999 0 nonexistent
## 2245 telephone may mon 111 4 999 0 nonexistent
## 2246 telephone may mon 81 4 999 0 nonexistent
## 2247 telephone may mon 181 4 999 0 nonexistent
## 2248 telephone may tue 92 2 999 0 nonexistent
## 2249 telephone may tue 85 2 999 0 nonexistent
## 2250 telephone may tue 141 6 999 0 nonexistent
## 2251 telephone may tue 182 6 999 0 nonexistent
## 2252 telephone may tue 530 7 999 0 nonexistent
## 2253 telephone may tue 160 3 999 0 nonexistent
## 2254 telephone may tue 176 4 999 0 nonexistent
## 2255 telephone may tue 134 2 999 0 nonexistent
## 2256 telephone may tue 514 5 999 0 nonexistent
## 2257 telephone may tue 181 5 999 0 nonexistent
## 2258 telephone may tue 504 4 999 0 nonexistent
## 2259 telephone may tue 160 3 999 0 nonexistent
## 2260 telephone may tue 267 3 999 0 nonexistent
## 2261 telephone may tue 907 2 999 0 nonexistent
## 2262 telephone may tue 200 1 999 0 nonexistent
## 2263 telephone may tue 139 1 999 0 nonexistent
## 2264 telephone may tue 147 1 999 0 nonexistent
## 2265 telephone may tue 153 1 999 0 nonexistent
## 2266 telephone may tue 109 1 999 0 nonexistent
## 2267 telephone may tue 97 2 999 0 nonexistent
## 2268 telephone may tue 164 1 999 0 nonexistent
## 2269 telephone may tue 70 1 999 0 nonexistent
## 2270 telephone may tue 71 1 999 0 nonexistent
## 2271 telephone may tue 723 1 999 0 nonexistent
## 2272 telephone may tue 518 1 999 0 nonexistent
## 2273 telephone may tue 147 1 999 0 nonexistent
## 2274 telephone may tue 101 1 999 0 nonexistent
## 2275 telephone may tue 142 1 999 0 nonexistent
## 2276 telephone may tue 1346 1 999 0 nonexistent
## 2277 telephone may tue 520 1 999 0 nonexistent
## 2278 telephone may tue 611 2 999 0 nonexistent
## 2279 telephone may tue 66 1 999 0 nonexistent
## 2280 telephone may tue 135 3 999 0 nonexistent
## 2281 telephone may tue 276 2 999 0 nonexistent
## 2282 telephone may tue 449 1 999 0 nonexistent
## 2283 telephone may tue 98 1 999 0 nonexistent
## 2284 telephone may tue 105 1 999 0 nonexistent
## 2285 telephone may tue 382 2 999 0 nonexistent
## 2286 telephone may tue 213 1 999 0 nonexistent
## 2287 telephone may tue 116 1 999 0 nonexistent
## 2288 telephone may tue 249 3 999 0 nonexistent
## 2289 telephone may tue 50 1 999 0 nonexistent
## 2290 telephone may tue 138 1 999 0 nonexistent
## 2291 telephone may tue 375 1 999 0 nonexistent
## 2292 telephone may tue 49 1 999 0 nonexistent
## 2293 telephone may tue 178 2 999 0 nonexistent
## 2294 telephone may tue 169 1 999 0 nonexistent
## 2295 telephone may tue 1386 1 999 0 nonexistent
## 2296 telephone may tue 155 1 999 0 nonexistent
## 2297 telephone may tue 120 1 999 0 nonexistent
## 2298 telephone may tue 203 1 999 0 nonexistent
## 2299 telephone may tue 244 1 999 0 nonexistent
## 2300 telephone may tue 428 1 999 0 nonexistent
## 2301 telephone may tue 53 1 999 0 nonexistent
## 2302 telephone may tue 360 1 999 0 nonexistent
## 2303 telephone may tue 215 1 999 0 nonexistent
## 2304 telephone may tue 500 2 999 0 nonexistent
## 2305 telephone may tue 207 1 999 0 nonexistent
## 2306 telephone may tue 568 4 999 0 nonexistent
## 2307 telephone may tue 270 1 999 0 nonexistent
## 2308 telephone may tue 154 1 999 0 nonexistent
## 2309 telephone may tue 272 1 999 0 nonexistent
## 2310 telephone may tue 229 1 999 0 nonexistent
## 2311 telephone may tue 108 1 999 0 nonexistent
## 2312 telephone may tue 210 1 999 0 nonexistent
## 2313 telephone may tue 383 1 999 0 nonexistent
## 2314 telephone may tue 3366 3 999 0 nonexistent
## 2315 telephone may tue 259 6 999 0 nonexistent
## 2316 telephone may tue 1000 1 999 0 nonexistent
## 2317 telephone may tue 618 1 999 0 nonexistent
## 2318 telephone may tue 237 1 999 0 nonexistent
## 2319 telephone may tue 106 1 999 0 nonexistent
## 2320 telephone may tue 351 1 999 0 nonexistent
## 2321 telephone may tue 218 1 999 0 nonexistent
## 2322 telephone may tue 198 1 999 0 nonexistent
## 2323 telephone may tue 284 2 999 0 nonexistent
## 2324 telephone may tue 190 1 999 0 nonexistent
## 2325 telephone may tue 295 1 999 0 nonexistent
## 2326 telephone may tue 106 1 999 0 nonexistent
## 2327 telephone may tue 93 1 999 0 nonexistent
## 2328 telephone may tue 174 1 999 0 nonexistent
## 2329 telephone may tue 124 1 999 0 nonexistent
## 2330 telephone may tue 62 3 999 0 nonexistent
## 2331 telephone may tue 2231 1 999 0 nonexistent
## 2332 telephone may tue 217 1 999 0 nonexistent
## 2333 telephone may tue 343 1 999 0 nonexistent
## 2334 telephone may tue 227 4 999 0 nonexistent
## 2335 telephone may tue 248 2 999 0 nonexistent
## 2336 telephone may tue 180 1 999 0 nonexistent
## 2337 telephone may tue 117 1 999 0 nonexistent
## 2338 telephone may tue 205 1 999 0 nonexistent
## 2339 telephone may tue 370 1 999 0 nonexistent
## 2340 telephone may tue 427 1 999 0 nonexistent
## 2341 telephone may tue 289 2 999 0 nonexistent
## 2342 telephone may tue 170 1 999 0 nonexistent
## 2343 telephone may tue 705 1 999 0 nonexistent
## 2344 telephone may tue 198 1 999 0 nonexistent
## 2345 telephone may tue 247 1 999 0 nonexistent
## 2346 telephone may tue 226 1 999 0 nonexistent
## 2347 telephone may tue 213 1 999 0 nonexistent
## 2348 telephone may tue 174 1 999 0 nonexistent
## 2349 telephone may tue 166 1 999 0 nonexistent
## 2350 telephone may tue 373 1 999 0 nonexistent
## 2351 telephone may tue 259 1 999 0 nonexistent
## 2352 telephone may tue 340 1 999 0 nonexistent
## 2353 telephone may tue 392 1 999 0 nonexistent
## 2354 telephone may tue 245 1 999 0 nonexistent
## 2355 telephone may tue 136 1 999 0 nonexistent
## 2356 telephone may tue 148 1 999 0 nonexistent
## 2357 telephone may tue 137 1 999 0 nonexistent
## 2358 telephone may tue 456 1 999 0 nonexistent
## 2359 telephone may tue 107 1 999 0 nonexistent
## 2360 telephone may tue 44 1 999 0 nonexistent
## 2361 telephone may tue 118 1 999 0 nonexistent
## 2362 telephone may tue 135 1 999 0 nonexistent
## 2363 telephone may tue 276 1 999 0 nonexistent
## 2364 telephone may tue 150 2 999 0 nonexistent
## 2365 telephone may tue 118 1 999 0 nonexistent
## 2366 telephone may tue 38 1 999 0 nonexistent
## 2367 telephone may tue 232 3 999 0 nonexistent
## 2368 telephone may tue 1167 1 999 0 nonexistent
## 2369 telephone may tue 39 2 999 0 nonexistent
## 2370 telephone may tue 325 1 999 0 nonexistent
## 2371 telephone may tue 311 1 999 0 nonexistent
## 2372 telephone may tue 147 1 999 0 nonexistent
## 2373 telephone may tue 125 1 999 0 nonexistent
## 2374 telephone may tue 98 1 999 0 nonexistent
## 2375 telephone may tue 93 1 999 0 nonexistent
## 2376 telephone may tue 83 1 999 0 nonexistent
## 2377 telephone may tue 67 1 999 0 nonexistent
## 2378 telephone may tue 77 1 999 0 nonexistent
## 2379 telephone may tue 191 1 999 0 nonexistent
## 2380 telephone may tue 144 1 999 0 nonexistent
## 2381 telephone may tue 20 1 999 0 nonexistent
## 2382 telephone may tue 27 1 999 0 nonexistent
## 2383 telephone may tue 174 4 999 0 nonexistent
## 2384 telephone may tue 260 3 999 0 nonexistent
## 2385 telephone may tue 94 1 999 0 nonexistent
## 2386 telephone may tue 122 1 999 0 nonexistent
## 2387 telephone may tue 334 1 999 0 nonexistent
## 2388 telephone may tue 609 2 999 0 nonexistent
## 2389 telephone may tue 202 1 999 0 nonexistent
## 2390 telephone may tue 262 1 999 0 nonexistent
## 2391 telephone may tue 302 1 999 0 nonexistent
## 2392 telephone may tue 121 2 999 0 nonexistent
## 2393 telephone may tue 202 3 999 0 nonexistent
## 2394 telephone may tue 806 1 999 0 nonexistent
## 2395 telephone may tue 31 1 999 0 nonexistent
## 2396 telephone may tue 21 1 999 0 nonexistent
## 2397 telephone may tue 334 2 999 0 nonexistent
## 2398 telephone may tue 156 1 999 0 nonexistent
## 2399 telephone may tue 92 1 999 0 nonexistent
## 2400 telephone may tue 128 2 999 0 nonexistent
## 2401 telephone may tue 766 1 999 0 nonexistent
## 2402 telephone may tue 162 1 999 0 nonexistent
## 2403 telephone may tue 255 5 999 0 nonexistent
## 2404 telephone may tue 137 1 999 0 nonexistent
## 2405 telephone may tue 189 1 999 0 nonexistent
## 2406 telephone may tue 110 1 999 0 nonexistent
## 2407 telephone may tue 395 2 999 0 nonexistent
## 2408 telephone may tue 135 1 999 0 nonexistent
## 2409 telephone may tue 102 4 999 0 nonexistent
## 2410 telephone may tue 705 1 999 0 nonexistent
## 2411 telephone may tue 192 1 999 0 nonexistent
## 2412 telephone may tue 188 2 999 0 nonexistent
## 2413 telephone may tue 139 1 999 0 nonexistent
## 2414 telephone may tue 131 1 999 0 nonexistent
## 2415 telephone may tue 65 1 999 0 nonexistent
## 2416 telephone may tue 266 2 999 0 nonexistent
## 2417 telephone may tue 76 1 999 0 nonexistent
## 2418 telephone may tue 1015 1 999 0 nonexistent
## 2419 telephone may tue 122 1 999 0 nonexistent
## 2420 telephone may tue 60 1 999 0 nonexistent
## 2421 telephone may tue 111 3 999 0 nonexistent
## 2422 telephone may tue 683 2 999 0 nonexistent
## 2423 telephone may tue 100 1 999 0 nonexistent
## 2424 telephone may tue 82 1 999 0 nonexistent
## 2425 telephone may tue 470 1 999 0 nonexistent
## 2426 telephone may tue 149 1 999 0 nonexistent
## 2427 telephone may tue 106 1 999 0 nonexistent
## 2428 telephone may tue 127 2 999 0 nonexistent
## 2429 telephone may tue 320 1 999 0 nonexistent
## 2430 telephone may tue 145 1 999 0 nonexistent
## 2431 telephone may tue 129 1 999 0 nonexistent
## 2432 telephone may tue 730 1 999 0 nonexistent
## 2433 telephone may tue 36 1 999 0 nonexistent
## 2434 telephone may tue 521 1 999 0 nonexistent
## 2435 telephone may tue 95 3 999 0 nonexistent
## 2436 telephone may tue 120 1 999 0 nonexistent
## 2437 telephone may tue 349 1 999 0 nonexistent
## 2438 telephone may tue 768 1 999 0 nonexistent
## 2439 telephone may tue 277 1 999 0 nonexistent
## 2440 telephone may tue 289 1 999 0 nonexistent
## 2441 telephone may tue 473 1 999 0 nonexistent
## 2442 telephone may tue 133 1 999 0 nonexistent
## 2443 telephone may tue 129 1 999 0 nonexistent
## 2444 telephone may tue 386 2 999 0 nonexistent
## 2445 telephone may tue 1001 4 999 0 nonexistent
## 2446 telephone may tue 76 1 999 0 nonexistent
## 2447 telephone may tue 214 1 999 0 nonexistent
## 2448 telephone may tue 355 1 999 0 nonexistent
## 2449 telephone may tue 194 2 999 0 nonexistent
## 2450 telephone may tue 845 1 999 0 nonexistent
## 2451 telephone may tue 208 1 999 0 nonexistent
## 2452 telephone may tue 173 1 999 0 nonexistent
## 2453 telephone may tue 113 2 999 0 nonexistent
## 2454 telephone may tue 109 2 999 0 nonexistent
## 2455 telephone may tue 853 1 999 0 nonexistent
## 2456 telephone may tue 518 1 999 0 nonexistent
## 2457 telephone may tue 124 2 999 0 nonexistent
## 2458 telephone may tue 452 2 999 0 nonexistent
## 2459 telephone may tue 203 2 999 0 nonexistent
## 2460 telephone may tue 813 2 999 0 nonexistent
## 2461 telephone may tue 81 1 999 0 nonexistent
## 2462 telephone may tue 93 1 999 0 nonexistent
## 2463 telephone may tue 119 1 999 0 nonexistent
## 2464 telephone may tue 295 3 999 0 nonexistent
## 2465 telephone may tue 296 1 999 0 nonexistent
## 2466 telephone may tue 916 2 999 0 nonexistent
## 2467 telephone may tue 60 2 999 0 nonexistent
## 2468 telephone may tue 443 1 999 0 nonexistent
## 2469 telephone may tue 225 2 999 0 nonexistent
## 2470 telephone may tue 262 2 999 0 nonexistent
## 2471 telephone may tue 431 2 999 0 nonexistent
## 2472 telephone may tue 358 2 999 0 nonexistent
## 2473 telephone may tue 565 2 999 0 nonexistent
## 2474 telephone may tue 753 6 999 0 nonexistent
## 2475 telephone may tue 103 3 999 0 nonexistent
## 2476 telephone may tue 708 2 999 0 nonexistent
## 2477 telephone may tue 265 1 999 0 nonexistent
## 2478 telephone may tue 255 2 999 0 nonexistent
## 2479 telephone may tue 434 2 999 0 nonexistent
## 2480 telephone may tue 59 1 999 0 nonexistent
## 2481 telephone may tue 305 1 999 0 nonexistent
## 2482 telephone may tue 155 2 999 0 nonexistent
## 2483 telephone may tue 805 2 999 0 nonexistent
## 2484 telephone may tue 242 1 999 0 nonexistent
## 2485 telephone may tue 19 9 999 0 nonexistent
## 2486 telephone may tue 93 6 999 0 nonexistent
## 2487 telephone may tue 211 3 999 0 nonexistent
## 2488 telephone may tue 31 2 999 0 nonexistent
## 2489 telephone may tue 213 5 999 0 nonexistent
## 2490 telephone may tue 104 2 999 0 nonexistent
## 2491 telephone may tue 342 3 999 0 nonexistent
## 2492 telephone may tue 172 2 999 0 nonexistent
## 2493 telephone may tue 160 3 999 0 nonexistent
## 2494 telephone may tue 535 2 999 0 nonexistent
## 2495 telephone may tue 514 5 999 0 nonexistent
## 2496 telephone may tue 276 1 999 0 nonexistent
## 2497 telephone may tue 176 3 999 0 nonexistent
## 2498 telephone may tue 20 1 999 0 nonexistent
## 2499 telephone may tue 161 1 999 0 nonexistent
## 2500 telephone may tue 473 1 999 0 nonexistent
## 2501 telephone may tue 245 4 999 0 nonexistent
## 2502 telephone may tue 144 1 999 0 nonexistent
## 2503 telephone may tue 123 1 999 0 nonexistent
## 2504 telephone may tue 93 2 999 0 nonexistent
## 2505 telephone may tue 188 3 999 0 nonexistent
## 2506 telephone may tue 332 1 999 0 nonexistent
## 2507 telephone may tue 178 2 999 0 nonexistent
## 2508 telephone may tue 318 2 999 0 nonexistent
## 2509 telephone may tue 94 1 999 0 nonexistent
## 2510 telephone may tue 139 2 999 0 nonexistent
## 2511 telephone may tue 152 1 999 0 nonexistent
## 2512 telephone may tue 188 1 999 0 nonexistent
## 2513 telephone may tue 94 2 999 0 nonexistent
## 2514 telephone may tue 54 3 999 0 nonexistent
## 2515 telephone may tue 29 1 999 0 nonexistent
## 2516 telephone may tue 271 1 999 0 nonexistent
## 2517 telephone may tue 95 1 999 0 nonexistent
## 2518 telephone may tue 227 1 999 0 nonexistent
## 2519 telephone may tue 190 1 999 0 nonexistent
## 2520 telephone may tue 60 1 999 0 nonexistent
## 2521 telephone may tue 162 4 999 0 nonexistent
## 2522 telephone may tue 296 1 999 0 nonexistent
## 2523 telephone may tue 125 1 999 0 nonexistent
## 2524 telephone may tue 78 3 999 0 nonexistent
## 2525 telephone may tue 67 2 999 0 nonexistent
## 2526 telephone may tue 93 1 999 0 nonexistent
## 2527 telephone may tue 119 2 999 0 nonexistent
## 2528 telephone may tue 3 1 999 0 nonexistent
## 2529 telephone may tue 297 3 999 0 nonexistent
## 2530 telephone may tue 179 1 999 0 nonexistent
## 2531 telephone may tue 342 2 999 0 nonexistent
## 2532 telephone may tue 420 1 999 0 nonexistent
## 2533 telephone may tue 378 1 999 0 nonexistent
## 2534 telephone may tue 190 1 999 0 nonexistent
## 2535 telephone may tue 354 2 999 0 nonexistent
## 2536 telephone may tue 190 1 999 0 nonexistent
## 2537 telephone may tue 131 1 999 0 nonexistent
## 2538 telephone may tue 367 1 999 0 nonexistent
## 2539 telephone may tue 394 1 999 0 nonexistent
## 2540 telephone may tue 91 2 999 0 nonexistent
## 2541 telephone may tue 280 1 999 0 nonexistent
## 2542 telephone may tue 768 2 999 0 nonexistent
## 2543 telephone may tue 184 1 999 0 nonexistent
## 2544 telephone may tue 43 2 999 0 nonexistent
## 2545 telephone may tue 108 2 999 0 nonexistent
## 2546 telephone may tue 195 2 999 0 nonexistent
## 2547 telephone may tue 109 1 999 0 nonexistent
## 2548 telephone may tue 226 1 999 0 nonexistent
## 2549 telephone may tue 299 3 999 0 nonexistent
## 2550 telephone may tue 192 1 999 0 nonexistent
## 2551 telephone may tue 141 4 999 0 nonexistent
## 2552 telephone may tue 87 1 999 0 nonexistent
## 2553 telephone may tue 169 2 999 0 nonexistent
## 2554 telephone may tue 119 10 999 0 nonexistent
## 2555 telephone may tue 101 13 999 0 nonexistent
## 2556 telephone may tue 210 1 999 0 nonexistent
## 2557 telephone may tue 129 4 999 0 nonexistent
## 2558 telephone may tue 481 3 999 0 nonexistent
## 2559 telephone may tue 215 1 999 0 nonexistent
## 2560 telephone may tue 142 2 999 0 nonexistent
## 2561 telephone may tue 411 2 999 0 nonexistent
## 2562 telephone may tue 93 1 999 0 nonexistent
## 2563 telephone may tue 65 1 999 0 nonexistent
## 2564 telephone may tue 531 2 999 0 nonexistent
## 2565 telephone may tue 34 4 999 0 nonexistent
## 2566 telephone may tue 788 3 999 0 nonexistent
## 2567 telephone may tue 431 1 999 0 nonexistent
## 2568 telephone may tue 851 4 999 0 nonexistent
## 2569 telephone may tue 315 3 999 0 nonexistent
## 2570 telephone may tue 214 1 999 0 nonexistent
## 2571 telephone may tue 92 4 999 0 nonexistent
## 2572 telephone may tue 73 3 999 0 nonexistent
## 2573 telephone may tue 181 3 999 0 nonexistent
## 2574 telephone may tue 159 2 999 0 nonexistent
## 2575 telephone may tue 58 2 999 0 nonexistent
## 2576 telephone may tue 1052 1 999 0 nonexistent
## 2577 telephone may tue 165 2 999 0 nonexistent
## 2578 telephone may tue 309 2 999 0 nonexistent
## 2579 telephone may tue 163 2 999 0 nonexistent
## 2580 telephone may tue 210 3 999 0 nonexistent
## 2581 telephone may tue 165 3 999 0 nonexistent
## 2582 telephone may tue 331 2 999 0 nonexistent
## 2583 telephone may tue 230 3 999 0 nonexistent
## 2584 telephone may tue 584 2 999 0 nonexistent
## 2585 telephone may tue 134 2 999 0 nonexistent
## 2586 telephone may tue 185 6 999 0 nonexistent
## 2587 telephone may tue 295 2 999 0 nonexistent
## 2588 telephone may tue 86 4 999 0 nonexistent
## 2589 telephone may tue 151 4 999 0 nonexistent
## 2590 telephone may tue 69 11 999 0 nonexistent
## 2591 telephone may tue 15 11 999 0 nonexistent
## 2592 telephone may tue 437 2 999 0 nonexistent
## 2593 telephone may tue 139 4 999 0 nonexistent
## 2594 telephone may tue 267 2 999 0 nonexistent
## 2595 telephone may tue 259 5 999 0 nonexistent
## 2596 telephone may tue 165 2 999 0 nonexistent
## 2597 telephone may tue 566 2 999 0 nonexistent
## 2598 telephone may tue 175 2 999 0 nonexistent
## 2599 telephone may tue 198 2 999 0 nonexistent
## 2600 telephone may tue 220 2 999 0 nonexistent
## 2601 telephone may tue 168 2 999 0 nonexistent
## 2602 telephone may tue 247 3 999 0 nonexistent
## 2603 telephone may tue 291 2 999 0 nonexistent
## 2604 telephone may tue 322 2 999 0 nonexistent
## 2605 telephone may tue 194 2 999 0 nonexistent
## 2606 telephone may tue 379 2 999 0 nonexistent
## 2607 telephone may tue 151 2 999 0 nonexistent
## 2608 telephone may tue 166 4 999 0 nonexistent
## 2609 telephone may tue 64 2 999 0 nonexistent
## 2610 telephone may tue 232 4 999 0 nonexistent
## 2611 telephone may tue 647 7 999 0 nonexistent
## 2612 telephone may tue 322 3 999 0 nonexistent
## 2613 telephone may tue 337 6 999 0 nonexistent
## 2614 telephone may tue 133 12 999 0 nonexistent
## 2615 telephone may tue 50 3 999 0 nonexistent
## 2616 telephone may tue 87 2 999 0 nonexistent
## 2617 telephone may tue 771 2 999 0 nonexistent
## 2618 telephone may tue 205 3 999 0 nonexistent
## 2619 telephone may tue 76 2 999 0 nonexistent
## 2620 telephone may tue 318 2 999 0 nonexistent
## 2621 telephone may tue 109 9 999 0 nonexistent
## 2622 telephone may tue 304 2 999 0 nonexistent
## 2623 telephone may tue 209 2 999 0 nonexistent
## 2624 telephone may tue 271 2 999 0 nonexistent
## 2625 telephone may tue 1093 3 999 0 nonexistent
## 2626 telephone may tue 326 4 999 0 nonexistent
## 2627 telephone may tue 389 2 999 0 nonexistent
## 2628 telephone may tue 273 2 999 0 nonexistent
## 2629 telephone may tue 264 3 999 0 nonexistent
## 2630 telephone may tue 1106 4 999 0 nonexistent
## 2631 telephone may tue 195 5 999 0 nonexistent
## 2632 telephone may tue 69 19 999 0 nonexistent
## 2633 telephone may tue 214 2 999 0 nonexistent
## 2634 telephone may tue 87 9 999 0 nonexistent
## 2635 telephone may tue 122 7 999 0 nonexistent
## 2636 telephone may tue 945 2 999 0 nonexistent
## 2637 telephone may tue 288 2 999 0 nonexistent
## 2638 telephone may tue 50 3 999 0 nonexistent
## 2639 telephone may tue 816 3 999 0 nonexistent
## 2640 telephone may tue 284 2 999 0 nonexistent
## 2641 telephone may tue 116 4 999 0 nonexistent
## 2642 telephone may tue 72 4 999 0 nonexistent
## 2643 telephone may tue 232 2 999 0 nonexistent
## 2644 telephone may tue 262 2 999 0 nonexistent
## 2645 telephone may tue 190 5 999 0 nonexistent
## 2646 telephone may tue 1721 2 999 0 nonexistent
## 2647 telephone may tue 351 2 999 0 nonexistent
## 2648 telephone may tue 166 2 999 0 nonexistent
## 2649 telephone may tue 104 2 999 0 nonexistent
## 2650 telephone may tue 163 3 999 0 nonexistent
## 2651 telephone may tue 492 2 999 0 nonexistent
## 2652 telephone may tue 152 3 999 0 nonexistent
## 2653 telephone may tue 109 4 999 0 nonexistent
## 2654 telephone may tue 384 1 999 0 nonexistent
## 2655 telephone may tue 1032 1 999 0 nonexistent
## 2656 telephone may wed 128 2 999 0 nonexistent
## 2657 telephone may wed 65 6 999 0 nonexistent
## 2658 telephone may wed 194 4 999 0 nonexistent
## 2659 telephone may wed 360 2 999 0 nonexistent
## 2660 telephone may wed 96 4 999 0 nonexistent
## 2661 telephone may wed 20 11 999 0 nonexistent
## 2662 telephone may wed 323 4 999 0 nonexistent
## 2663 telephone may wed 332 2 999 0 nonexistent
## 2664 telephone may wed 735 8 999 0 nonexistent
## 2665 telephone may wed 151 2 999 0 nonexistent
## 2666 telephone may wed 158 3 999 0 nonexistent
## 2667 telephone may wed 73 2 999 0 nonexistent
## 2668 telephone may wed 407 4 999 0 nonexistent
## 2669 telephone may wed 438 2 999 0 nonexistent
## 2670 telephone may wed 174 3 999 0 nonexistent
## 2671 telephone may wed 175 3 999 0 nonexistent
## 2672 telephone may wed 313 4 999 0 nonexistent
## 2673 telephone may wed 137 4 999 0 nonexistent
## 2674 telephone may wed 22 3 999 0 nonexistent
## 2675 telephone may wed 328 4 999 0 nonexistent
## 2676 telephone may wed 93 4 999 0 nonexistent
## 2677 telephone may wed 97 2 999 0 nonexistent
## 2678 telephone may wed 219 4 999 0 nonexistent
## 2679 telephone may wed 455 3 999 0 nonexistent
## 2680 telephone may wed 103 6 999 0 nonexistent
## 2681 telephone may wed 133 2 999 0 nonexistent
## 2682 telephone may wed 77 2 999 0 nonexistent
## 2683 telephone may wed 211 2 999 0 nonexistent
## 2684 telephone may wed 72 2 999 0 nonexistent
## 2685 telephone may wed 942 3 999 0 nonexistent
## 2686 telephone may wed 89 2 999 0 nonexistent
## 2687 telephone may wed 108 4 999 0 nonexistent
## 2688 telephone may wed 101 2 999 0 nonexistent
## 2689 telephone may wed 305 3 999 0 nonexistent
## 2690 telephone may wed 387 9 999 0 nonexistent
## 2691 telephone may wed 146 4 999 0 nonexistent
## 2692 telephone may wed 160 1 999 0 nonexistent
## 2693 telephone may wed 70 1 999 0 nonexistent
## 2694 telephone may wed 162 1 999 0 nonexistent
## 2695 telephone may wed 117 4 999 0 nonexistent
## 2696 telephone may wed 381 1 999 0 nonexistent
## 2697 telephone may wed 109 1 999 0 nonexistent
## 2698 telephone may wed 476 1 999 0 nonexistent
## 2699 telephone may wed 178 1 999 0 nonexistent
## 2700 telephone may wed 260 1 999 0 nonexistent
## 2701 telephone may wed 231 1 999 0 nonexistent
## 2702 telephone may wed 188 1 999 0 nonexistent
## 2703 telephone may wed 145 1 999 0 nonexistent
## 2704 telephone may wed 163 3 999 0 nonexistent
## 2705 telephone may wed 27 1 999 0 nonexistent
## 2706 telephone may wed 282 1 999 0 nonexistent
## 2707 telephone may wed 73 1 999 0 nonexistent
## 2708 telephone may wed 48 1 999 0 nonexistent
## 2709 telephone may wed 220 1 999 0 nonexistent
## 2710 telephone may wed 606 1 999 0 nonexistent
## 2711 telephone may wed 82 7 999 0 nonexistent
## 2712 telephone may wed 451 3 999 0 nonexistent
## 2713 telephone may wed 202 2 999 0 nonexistent
## 2714 telephone may wed 832 1 999 0 nonexistent
## 2715 telephone may wed 168 3 999 0 nonexistent
## 2716 telephone may wed 230 1 999 0 nonexistent
## 2717 telephone may wed 69 1 999 0 nonexistent
## 2718 telephone may wed 200 1 999 0 nonexistent
## 2719 telephone may wed 170 1 999 0 nonexistent
## 2720 telephone may wed 142 1 999 0 nonexistent
## 2721 telephone may wed 283 8 999 0 nonexistent
## 2722 telephone may wed 421 1 999 0 nonexistent
## 2723 telephone may wed 278 1 999 0 nonexistent
## 2724 telephone may wed 179 1 999 0 nonexistent
## 2725 telephone may wed 238 1 999 0 nonexistent
## 2726 telephone may wed 110 2 999 0 nonexistent
## 2727 telephone may wed 138 3 999 0 nonexistent
## 2728 telephone may wed 218 2 999 0 nonexistent
## 2729 telephone may wed 158 2 999 0 nonexistent
## 2730 telephone may wed 105 1 999 0 nonexistent
## 2731 telephone may wed 106 1 999 0 nonexistent
## 2732 telephone may wed 217 1 999 0 nonexistent
## 2733 telephone may wed 132 1 999 0 nonexistent
## 2734 telephone may wed 824 2 999 0 nonexistent
## 2735 telephone may wed 243 1 999 0 nonexistent
## 2736 telephone may wed 488 12 999 0 nonexistent
## 2737 telephone may wed 148 2 999 0 nonexistent
## 2738 telephone may wed 159 2 999 0 nonexistent
## 2739 telephone may wed 124 1 999 0 nonexistent
## 2740 telephone may wed 452 1 999 0 nonexistent
## 2741 telephone may wed 114 1 999 0 nonexistent
## 2742 telephone may wed 92 1 999 0 nonexistent
## 2743 telephone may wed 125 1 999 0 nonexistent
## 2744 telephone may wed 145 2 999 0 nonexistent
## 2745 telephone may wed 1328 1 999 0 nonexistent
## 2746 telephone may wed 686 1 999 0 nonexistent
## 2747 telephone may wed 80 1 999 0 nonexistent
## 2748 telephone may wed 265 1 999 0 nonexistent
## 2749 telephone may wed 300 1 999 0 nonexistent
## 2750 telephone may wed 203 1 999 0 nonexistent
## 2751 telephone may wed 71 1 999 0 nonexistent
## 2752 telephone may wed 534 1 999 0 nonexistent
## 2753 telephone may wed 243 1 999 0 nonexistent
## 2754 telephone may wed 230 1 999 0 nonexistent
## 2755 telephone may wed 127 3 999 0 nonexistent
## 2756 telephone may wed 1125 2 999 0 nonexistent
## 2757 telephone may wed 136 2 999 0 nonexistent
## 2758 telephone may wed 158 2 999 0 nonexistent
## 2759 telephone may wed 267 2 999 0 nonexistent
## 2760 telephone may wed 257 1 999 0 nonexistent
## 2761 telephone may wed 110 1 999 0 nonexistent
## 2762 telephone may wed 477 5 999 0 nonexistent
## 2763 telephone may wed 456 9 999 0 nonexistent
## 2764 telephone may wed 1321 2 999 0 nonexistent
## 2765 telephone may wed 298 1 999 0 nonexistent
## 2766 telephone may wed 96 1 999 0 nonexistent
## 2767 telephone may wed 483 2 999 0 nonexistent
## 2768 telephone may wed 213 1 999 0 nonexistent
## 2769 telephone may wed 51 1 999 0 nonexistent
## 2770 telephone may wed 44 1 999 0 nonexistent
## 2771 telephone may wed 164 2 999 0 nonexistent
## 2772 telephone may wed 166 1 999 0 nonexistent
## 2773 telephone may wed 220 2 999 0 nonexistent
## 2774 telephone may wed 178 1 999 0 nonexistent
## 2775 telephone may wed 452 2 999 0 nonexistent
## 2776 telephone may wed 858 1 999 0 nonexistent
## 2777 telephone may wed 87 1 999 0 nonexistent
## 2778 telephone may wed 97 1 999 0 nonexistent
## 2779 telephone may wed 122 1 999 0 nonexistent
## 2780 telephone may wed 629 2 999 0 nonexistent
## 2781 telephone may wed 116 1 999 0 nonexistent
## 2782 telephone may wed 120 1 999 0 nonexistent
## 2783 telephone may wed 122 1 999 0 nonexistent
## 2784 telephone may wed 262 1 999 0 nonexistent
## 2785 telephone may wed 179 1 999 0 nonexistent
## 2786 telephone may wed 35 1 999 0 nonexistent
## 2787 telephone may wed 156 1 999 0 nonexistent
## 2788 telephone may wed 201 1 999 0 nonexistent
## 2789 telephone may wed 159 1 999 0 nonexistent
## 2790 telephone may wed 68 1 999 0 nonexistent
## 2791 telephone may wed 75 1 999 0 nonexistent
## 2792 telephone may wed 191 1 999 0 nonexistent
## 2793 telephone may wed 461 1 999 0 nonexistent
## 2794 telephone may wed 188 1 999 0 nonexistent
## 2795 telephone may wed 117 6 999 0 nonexistent
## 2796 telephone may wed 546 1 999 0 nonexistent
## 2797 telephone may wed 171 1 999 0 nonexistent
## 2798 telephone may wed 351 1 999 0 nonexistent
## 2799 telephone may wed 429 1 999 0 nonexistent
## 2800 telephone may wed 249 2 999 0 nonexistent
## 2801 telephone may wed 568 1 999 0 nonexistent
## 2802 telephone may wed 299 1 999 0 nonexistent
## 2803 telephone may wed 282 1 999 0 nonexistent
## 2804 telephone may wed 211 1 999 0 nonexistent
## 2805 telephone may wed 77 1 999 0 nonexistent
## 2806 telephone may wed 283 1 999 0 nonexistent
## 2807 telephone may wed 263 1 999 0 nonexistent
## 2808 telephone may wed 189 1 999 0 nonexistent
## 2809 telephone may wed 91 1 999 0 nonexistent
## 2810 telephone may wed 32 1 999 0 nonexistent
## 2811 telephone may wed 139 2 999 0 nonexistent
## 2812 telephone may wed 347 1 999 0 nonexistent
## 2813 telephone may wed 58 1 999 0 nonexistent
## 2814 telephone may wed 152 1 999 0 nonexistent
## 2815 telephone may wed 869 1 999 0 nonexistent
## 2816 telephone may wed 339 1 999 0 nonexistent
## 2817 telephone may wed 267 1 999 0 nonexistent
## 2818 telephone may wed 34 1 999 0 nonexistent
## 2819 telephone may wed 153 2 999 0 nonexistent
## 2820 telephone may wed 28 2 999 0 nonexistent
## 2821 telephone may wed 216 1 999 0 nonexistent
## 2822 telephone may wed 199 2 999 0 nonexistent
## 2823 telephone may wed 139 1 999 0 nonexistent
## 2824 telephone may wed 322 1 999 0 nonexistent
## 2825 telephone may wed 189 1 999 0 nonexistent
## 2826 telephone may wed 197 2 999 0 nonexistent
## 2827 telephone may wed 224 2 999 0 nonexistent
## 2828 telephone may wed 160 1 999 0 nonexistent
## 2829 telephone may wed 180 1 999 0 nonexistent
## 2830 telephone may wed 191 1 999 0 nonexistent
## 2831 telephone may wed 833 1 999 0 nonexistent
## 2832 telephone may wed 485 2 999 0 nonexistent
## 2833 telephone may wed 57 1 999 0 nonexistent
## 2834 telephone may wed 247 2 999 0 nonexistent
## 2835 telephone may wed 89 1 999 0 nonexistent
## 2836 telephone may wed 849 1 999 0 nonexistent
## 2837 telephone may wed 260 1 999 0 nonexistent
## 2838 telephone may wed 181 1 999 0 nonexistent
## 2839 telephone may wed 125 1 999 0 nonexistent
## 2840 telephone may wed 225 1 999 0 nonexistent
## 2841 telephone may wed 829 1 999 0 nonexistent
## 2842 telephone may wed 749 2 999 0 nonexistent
## 2843 telephone may wed 166 2 999 0 nonexistent
## 2844 telephone may wed 407 2 999 0 nonexistent
## 2845 telephone may wed 182 2 999 0 nonexistent
## 2846 telephone may wed 152 2 999 0 nonexistent
## 2847 telephone may wed 438 4 999 0 nonexistent
## 2848 telephone may wed 387 2 999 0 nonexistent
## 2849 telephone may wed 100 3 999 0 nonexistent
## 2850 telephone may wed 413 2 999 0 nonexistent
## 2851 telephone may wed 191 2 999 0 nonexistent
## 2852 telephone may wed 109 1 999 0 nonexistent
## 2853 telephone may wed 345 2 999 0 nonexistent
## 2854 telephone may wed 1028 2 999 0 nonexistent
## 2855 telephone may wed 566 2 999 0 nonexistent
## 2856 telephone may wed 38 1 999 0 nonexistent
## 2857 telephone may wed 214 1 999 0 nonexistent
## 2858 telephone may wed 248 2 999 0 nonexistent
## 2859 telephone may wed 246 1 999 0 nonexistent
## 2860 telephone may wed 170 2 999 0 nonexistent
## 2861 telephone may wed 136 8 999 0 nonexistent
## 2862 telephone may wed 98 1 999 0 nonexistent
## 2863 telephone may wed 225 2 999 0 nonexistent
## 2864 telephone may wed 230 1 999 0 nonexistent
## 2865 telephone may wed 364 1 999 0 nonexistent
## 2866 telephone may wed 784 1 999 0 nonexistent
## 2867 telephone may wed 93 11 999 0 nonexistent
## 2868 telephone may wed 57 2 999 0 nonexistent
## 2869 telephone may wed 160 2 999 0 nonexistent
## 2870 telephone may wed 210 2 999 0 nonexistent
## 2871 telephone may wed 222 2 999 0 nonexistent
## 2872 telephone may wed 265 2 999 0 nonexistent
## 2873 telephone may wed 21 10 999 0 nonexistent
## 2874 telephone may wed 157 1 999 0 nonexistent
## 2875 telephone may wed 143 1 999 0 nonexistent
## 2876 telephone may wed 230 2 999 0 nonexistent
## 2877 telephone may wed 117 1 999 0 nonexistent
## 2878 telephone may wed 161 2 999 0 nonexistent
## 2879 telephone may wed 350 2 999 0 nonexistent
## 2880 telephone may wed 155 1 999 0 nonexistent
## 2881 telephone may wed 162 1 999 0 nonexistent
## 2882 telephone may wed 565 1 999 0 nonexistent
## 2883 telephone may wed 44 5 999 0 nonexistent
## 2884 telephone may wed 337 1 999 0 nonexistent
## 2885 telephone may wed 416 2 999 0 nonexistent
## 2886 telephone may wed 102 2 999 0 nonexistent
## 2887 telephone may wed 129 2 999 0 nonexistent
## 2888 telephone may wed 977 1 999 0 nonexistent
## 2889 telephone may wed 138 2 999 0 nonexistent
## 2890 telephone may wed 70 2 999 0 nonexistent
## 2891 telephone may wed 71 1 999 0 nonexistent
## 2892 telephone may wed 251 2 999 0 nonexistent
## 2893 telephone may wed 75 1 999 0 nonexistent
## 2894 telephone may wed 110 1 999 0 nonexistent
## 2895 telephone may wed 230 2 999 0 nonexistent
## 2896 telephone may wed 48 1 999 0 nonexistent
## 2897 telephone may wed 369 1 999 0 nonexistent
## 2898 telephone may wed 136 1 999 0 nonexistent
## 2899 telephone may wed 22 4 999 0 nonexistent
## 2900 telephone may wed 174 2 999 0 nonexistent
## 2901 telephone may wed 378 1 999 0 nonexistent
## 2902 telephone may wed 80 1 999 0 nonexistent
## 2903 telephone may wed 144 1 999 0 nonexistent
## 2904 telephone may wed 380 4 999 0 nonexistent
## 2905 telephone may wed 108 1 999 0 nonexistent
## 2906 telephone may wed 927 1 999 0 nonexistent
## 2907 telephone may wed 389 1 999 0 nonexistent
## 2908 telephone may wed 192 1 999 0 nonexistent
## 2909 telephone may wed 273 1 999 0 nonexistent
## 2910 telephone may wed 48 1 999 0 nonexistent
## 2911 telephone may wed 8 1 999 0 nonexistent
## 2912 telephone may wed 90 1 999 0 nonexistent
## 2913 telephone may wed 221 1 999 0 nonexistent
## 2914 telephone may wed 217 1 999 0 nonexistent
## 2915 telephone may wed 762 2 999 0 nonexistent
## 2916 telephone may wed 302 2 999 0 nonexistent
## 2917 telephone may wed 411 1 999 0 nonexistent
## 2918 telephone may wed 179 1 999 0 nonexistent
## 2919 telephone may wed 245 2 999 0 nonexistent
## 2920 telephone may wed 746 1 999 0 nonexistent
## 2921 telephone may wed 673 2 999 0 nonexistent
## 2922 telephone may wed 220 7 999 0 nonexistent
## 2923 telephone may wed 232 1 999 0 nonexistent
## 2924 telephone may wed 106 4 999 0 nonexistent
## 2925 telephone may wed 115 3 999 0 nonexistent
## 2926 telephone may wed 485 2 999 0 nonexistent
## 2927 telephone may wed 274 6 999 0 nonexistent
## 2928 telephone may wed 106 5 999 0 nonexistent
## 2929 telephone may wed 107 1 999 0 nonexistent
## 2930 telephone may wed 1044 2 999 0 nonexistent
## 2931 telephone may wed 354 1 999 0 nonexistent
## 2932 telephone may wed 55 1 999 0 nonexistent
## 2933 telephone may wed 180 4 999 0 nonexistent
## 2934 telephone may wed 95 1 999 0 nonexistent
## 2935 telephone may wed 392 1 999 0 nonexistent
## 2936 telephone may wed 331 2 999 0 nonexistent
## 2937 telephone may wed 123 1 999 0 nonexistent
## 2938 telephone may wed 148 3 999 0 nonexistent
## 2939 telephone may wed 74 3 999 0 nonexistent
## 2940 telephone may wed 267 7 999 0 nonexistent
## 2941 telephone may wed 374 2 999 0 nonexistent
## 2942 telephone may wed 295 2 999 0 nonexistent
## 2943 telephone may wed 77 4 999 0 nonexistent
## 2944 telephone may wed 149 2 999 0 nonexistent
## 2945 telephone may wed 668 1 999 0 nonexistent
## 2946 telephone may wed 95 6 999 0 nonexistent
## 2947 telephone may wed 229 2 999 0 nonexistent
## 2948 telephone may wed 286 9 999 0 nonexistent
## 2949 telephone may wed 242 5 999 0 nonexistent
## 2950 telephone may wed 335 1 999 0 nonexistent
## 2951 telephone may wed 140 1 999 0 nonexistent
## 2952 telephone may wed 159 3 999 0 nonexistent
## 2953 telephone may wed 343 1 999 0 nonexistent
## 2954 telephone may wed 85 4 999 0 nonexistent
## 2955 telephone may wed 295 1 999 0 nonexistent
## 2956 telephone may wed 360 1 999 0 nonexistent
## 2957 telephone may wed 183 4 999 0 nonexistent
## 2958 telephone may wed 726 2 999 0 nonexistent
## 2959 telephone may wed 158 1 999 0 nonexistent
## 2960 telephone may wed 514 2 999 0 nonexistent
## 2961 telephone may wed 382 10 999 0 nonexistent
## 2962 telephone may wed 142 3 999 0 nonexistent
## 2963 telephone may wed 301 3 999 0 nonexistent
## 2964 telephone may wed 153 3 999 0 nonexistent
## 2965 telephone may wed 264 2 999 0 nonexistent
## 2966 telephone may wed 161 2 999 0 nonexistent
## 2967 telephone may wed 150 1 999 0 nonexistent
## 2968 telephone may wed 49 1 999 0 nonexistent
## 2969 telephone may wed 326 3 999 0 nonexistent
## 2970 telephone may wed 183 2 999 0 nonexistent
## 2971 telephone may wed 634 10 999 0 nonexistent
## 2972 telephone may wed 339 1 999 0 nonexistent
## 2973 telephone may wed 125 1 999 0 nonexistent
## 2974 telephone may wed 232 2 999 0 nonexistent
## 2975 telephone may wed 312 5 999 0 nonexistent
## 2976 telephone may wed 423 2 999 0 nonexistent
## 2977 telephone may wed 191 1 999 0 nonexistent
## 2978 telephone may wed 248 1 999 0 nonexistent
## 2979 telephone may wed 146 1 999 0 nonexistent
## 2980 telephone may wed 125 2 999 0 nonexistent
## 2981 telephone may wed 234 1 999 0 nonexistent
## 2982 telephone may wed 17 18 999 0 nonexistent
## 2983 telephone may wed 546 1 999 0 nonexistent
## 2984 telephone may wed 554 1 999 0 nonexistent
## 2985 telephone may wed 162 4 999 0 nonexistent
## 2986 telephone may wed 436 1 999 0 nonexistent
## 2987 telephone may wed 302 2 999 0 nonexistent
## 2988 telephone may wed 349 5 999 0 nonexistent
## 2989 telephone may wed 174 2 999 0 nonexistent
## 2990 telephone may wed 180 1 999 0 nonexistent
## 2991 telephone may wed 902 5 999 0 nonexistent
## 2992 telephone may wed 137 2 999 0 nonexistent
## 2993 telephone may wed 282 1 999 0 nonexistent
## 2994 telephone may wed 126 3 999 0 nonexistent
## 2995 telephone may wed 554 1 999 0 nonexistent
## 2996 telephone may wed 21 11 999 0 nonexistent
## 2997 telephone may wed 246 4 999 0 nonexistent
## 2998 telephone may wed 141 2 999 0 nonexistent
## 2999 telephone may wed 427 1 999 0 nonexistent
## 3000 telephone may wed 97 5 999 0 nonexistent
## 3001 telephone may wed 402 1 999 0 nonexistent
## 3002 telephone may wed 252 2 999 0 nonexistent
## 3003 telephone may wed 360 2 999 0 nonexistent
## 3004 telephone may wed 852 2 999 0 nonexistent
## 3005 telephone may wed 241 2 999 0 nonexistent
## 3006 telephone may wed 133 4 999 0 nonexistent
## 3007 telephone may wed 98 2 999 0 nonexistent
## 3008 telephone may wed 574 2 999 0 nonexistent
## 3009 telephone may wed 274 2 999 0 nonexistent
## 3010 telephone may wed 154 2 999 0 nonexistent
## 3011 telephone may wed 122 4 999 0 nonexistent
## 3012 telephone may wed 166 4 999 0 nonexistent
## 3013 telephone may wed 167 3 999 0 nonexistent
## 3014 telephone may wed 91 7 999 0 nonexistent
## 3015 telephone may wed 133 4 999 0 nonexistent
## 3016 telephone may wed 594 2 999 0 nonexistent
## 3017 telephone may wed 86 2 999 0 nonexistent
## 3018 telephone may wed 166 3 999 0 nonexistent
## 3019 telephone may wed 302 10 999 0 nonexistent
## 3020 telephone may wed 303 4 999 0 nonexistent
## 3021 telephone may wed 636 6 999 0 nonexistent
## 3022 telephone may wed 341 5 999 0 nonexistent
## 3023 telephone may wed 483 3 999 0 nonexistent
## 3024 telephone may wed 234 2 999 0 nonexistent
## 3025 telephone may wed 211 3 999 0 nonexistent
## 3026 telephone may wed 738 2 999 0 nonexistent
## 3027 telephone may wed 482 2 999 0 nonexistent
## 3028 telephone may wed 238 2 999 0 nonexistent
## 3029 telephone may wed 370 2 999 0 nonexistent
## 3030 telephone may wed 76 2 999 0 nonexistent
## 3031 telephone may wed 225 2 999 0 nonexistent
## 3032 telephone may wed 256 2 999 0 nonexistent
## 3033 telephone may wed 567 3 999 0 nonexistent
## 3034 telephone may wed 147 3 999 0 nonexistent
## 3035 telephone may wed 135 2 999 0 nonexistent
## 3036 telephone may wed 582 2 999 0 nonexistent
## 3037 telephone may wed 270 2 999 0 nonexistent
## 3038 telephone may wed 52 4 999 0 nonexistent
## 3039 telephone may wed 260 2 999 0 nonexistent
## 3040 telephone may wed 254 2 999 0 nonexistent
## 3041 telephone may wed 1118 2 999 0 nonexistent
## 3042 telephone may wed 76 9 999 0 nonexistent
## 3043 telephone may wed 79 3 999 0 nonexistent
## 3044 telephone may wed 837 2 999 0 nonexistent
## 3045 telephone may wed 208 5 999 0 nonexistent
## 3046 telephone may wed 245 7 999 0 nonexistent
## 3047 telephone may wed 187 4 999 0 nonexistent
## 3048 telephone may wed 1423 3 999 0 nonexistent
## 3049 telephone may wed 271 2 999 0 nonexistent
## 3050 telephone may wed 166 5 999 0 nonexistent
## 3051 telephone may wed 256 4 999 0 nonexistent
## 3052 telephone may wed 173 7 999 0 nonexistent
## 3053 telephone may wed 367 3 999 0 nonexistent
## 3054 telephone may wed 227 4 999 0 nonexistent
## 3055 telephone may wed 276 4 999 0 nonexistent
## 3056 telephone may wed 349 2 999 0 nonexistent
## 3057 telephone may wed 856 2 999 0 nonexistent
## 3058 telephone may wed 278 2 999 0 nonexistent
## 3059 telephone may wed 143 3 999 0 nonexistent
## 3060 telephone may wed 249 2 999 0 nonexistent
## 3061 telephone may wed 37 3 999 0 nonexistent
## 3062 telephone may wed 260 3 999 0 nonexistent
## 3063 telephone may wed 323 7 999 0 nonexistent
## 3064 telephone may wed 187 3 999 0 nonexistent
## 3065 telephone may wed 364 3 999 0 nonexistent
## 3066 telephone may wed 211 2 999 0 nonexistent
## 3067 telephone may wed 266 2 999 0 nonexistent
## 3068 telephone may wed 806 2 999 0 nonexistent
## 3069 telephone may wed 159 2 999 0 nonexistent
## 3070 telephone may wed 318 2 999 0 nonexistent
## 3071 telephone may wed 104 3 999 0 nonexistent
## 3072 telephone may wed 747 3 999 0 nonexistent
## 3073 telephone may thu 95 4 999 0 nonexistent
## 3074 telephone may thu 176 2 999 0 nonexistent
## 3075 telephone may thu 179 2 999 0 nonexistent
## 3076 telephone may thu 319 5 999 0 nonexistent
## 3077 telephone may thu 114 2 999 0 nonexistent
## 3078 telephone may thu 170 5 999 0 nonexistent
## 3079 telephone may thu 311 5 999 0 nonexistent
## 3080 telephone may thu 362 3 999 0 nonexistent
## 3081 telephone may thu 86 4 999 0 nonexistent
## 3082 telephone may thu 90 2 999 0 nonexistent
## 3083 telephone may thu 44 3 999 0 nonexistent
## 3084 telephone may thu 1013 3 999 0 nonexistent
## 3085 telephone may thu 76 7 999 0 nonexistent
## 3086 telephone may thu 90 3 999 0 nonexistent
## 3087 telephone may thu 155 6 999 0 nonexistent
## 3088 telephone may thu 468 5 999 0 nonexistent
## 3089 telephone may thu 226 2 999 0 nonexistent
## 3090 telephone may thu 349 2 999 0 nonexistent
## 3091 telephone may thu 646 3 999 0 nonexistent
## 3092 telephone may thu 148 3 999 0 nonexistent
## 3093 telephone may thu 517 3 999 0 nonexistent
## 3094 telephone may thu 243 1 999 0 nonexistent
## 3095 telephone may thu 391 2 999 0 nonexistent
## 3096 telephone may thu 204 1 999 0 nonexistent
## 3097 telephone may thu 236 4 999 0 nonexistent
## 3098 telephone may thu 112 1 999 0 nonexistent
## 3099 telephone may thu 125 4 999 0 nonexistent
## 3100 telephone may thu 360 1 999 0 nonexistent
## 3101 telephone may thu 312 6 999 0 nonexistent
## 3102 telephone may thu 366 1 999 0 nonexistent
## 3103 telephone may thu 70 1 999 0 nonexistent
## 3104 telephone may thu 230 1 999 0 nonexistent
## 3105 telephone may thu 135 1 999 0 nonexistent
## 3106 telephone may thu 12 3 999 0 nonexistent
## 3107 telephone may thu 65 1 999 0 nonexistent
## 3108 telephone may thu 420 1 999 0 nonexistent
## 3109 telephone may thu 259 1 999 0 nonexistent
## 3110 telephone may thu 192 1 999 0 nonexistent
## 3111 telephone may thu 189 1 999 0 nonexistent
## 3112 telephone may thu 263 1 999 0 nonexistent
## 3113 telephone may thu 415 7 999 0 nonexistent
## 3114 telephone may thu 746 1 999 0 nonexistent
## 3115 telephone may thu 260 1 999 0 nonexistent
## 3116 telephone may thu 71 1 999 0 nonexistent
## 3117 telephone may thu 735 1 999 0 nonexistent
## 3118 telephone may thu 183 5 999 0 nonexistent
## 3119 telephone may thu 75 1 999 0 nonexistent
## 3120 telephone may thu 87 1 999 0 nonexistent
## 3121 telephone may thu 62 1 999 0 nonexistent
## 3122 telephone may thu 139 2 999 0 nonexistent
## 3123 telephone may thu 150 1 999 0 nonexistent
## 3124 telephone may thu 244 1 999 0 nonexistent
## 3125 telephone may thu 367 2 999 0 nonexistent
## 3126 telephone may thu 325 1 999 0 nonexistent
## 3127 telephone may thu 183 1 999 0 nonexistent
## 3128 telephone may thu 552 11 999 0 nonexistent
## 3129 telephone may thu 121 1 999 0 nonexistent
## 3130 telephone may thu 27 1 999 0 nonexistent
## 3131 telephone may thu 157 1 999 0 nonexistent
## 3132 telephone may thu 203 1 999 0 nonexistent
## 3133 telephone may thu 104 1 999 0 nonexistent
## 3134 telephone may thu 153 1 999 0 nonexistent
## 3135 telephone may thu 182 2 999 0 nonexistent
## 3136 telephone may thu 55 1 999 0 nonexistent
## 3137 telephone may thu 644 2 999 0 nonexistent
## 3138 telephone may thu 305 1 999 0 nonexistent
## 3139 telephone may thu 140 1 999 0 nonexistent
## 3140 telephone may thu 180 2 999 0 nonexistent
## 3141 telephone may thu 173 1 999 0 nonexistent
## 3142 telephone may thu 374 1 999 0 nonexistent
## 3143 telephone may thu 240 1 999 0 nonexistent
## 3144 telephone may thu 558 6 999 0 nonexistent
## 3145 telephone may thu 1088 2 999 0 nonexistent
## 3146 telephone may thu 219 1 999 0 nonexistent
## 3147 telephone may thu 41 1 999 0 nonexistent
## 3148 telephone may thu 436 1 999 0 nonexistent
## 3149 telephone may thu 463 1 999 0 nonexistent
## 3150 telephone may thu 265 1 999 0 nonexistent
## 3151 telephone may thu 234 1 999 0 nonexistent
## 3152 telephone may thu 113 1 999 0 nonexistent
## 3153 telephone may thu 200 1 999 0 nonexistent
## 3154 telephone may thu 158 1 999 0 nonexistent
## 3155 telephone may thu 34 1 999 0 nonexistent
## 3156 telephone may thu 160 1 999 0 nonexistent
## 3157 telephone may thu 504 3 999 0 nonexistent
## 3158 telephone may thu 206 1 999 0 nonexistent
## 3159 telephone may thu 36 1 999 0 nonexistent
## 3160 telephone may thu 139 2 999 0 nonexistent
## 3161 telephone may thu 303 1 999 0 nonexistent
## 3162 telephone may thu 109 1 999 0 nonexistent
## 3163 telephone may thu 90 1 999 0 nonexistent
## 3164 telephone may thu 134 1 999 0 nonexistent
## 3165 telephone may thu 257 1 999 0 nonexistent
## 3166 telephone may thu 241 2 999 0 nonexistent
## 3167 telephone may thu 94 1 999 0 nonexistent
## 3168 telephone may thu 171 10 999 0 nonexistent
## 3169 telephone may thu 178 1 999 0 nonexistent
## 3170 telephone may thu 285 2 999 0 nonexistent
## 3171 telephone may thu 326 4 999 0 nonexistent
## 3172 telephone may thu 451 2 999 0 nonexistent
## 3173 telephone may thu 347 1 999 0 nonexistent
## 3174 telephone may thu 116 1 999 0 nonexistent
## 3175 telephone may thu 1074 1 999 0 nonexistent
## 3176 telephone may thu 191 1 999 0 nonexistent
## 3177 telephone may thu 77 1 999 0 nonexistent
## 3178 telephone may thu 1036 1 999 0 nonexistent
## 3179 telephone may thu 303 1 999 0 nonexistent
## 3180 telephone may thu 80 1 999 0 nonexistent
## 3181 telephone may thu 322 1 999 0 nonexistent
## 3182 telephone may thu 111 1 999 0 nonexistent
## 3183 telephone may thu 750 2 999 0 nonexistent
## 3184 telephone may thu 695 1 999 0 nonexistent
## 3185 telephone may thu 435 1 999 0 nonexistent
## 3186 telephone may thu 397 1 999 0 nonexistent
## 3187 telephone may thu 95 3 999 0 nonexistent
## 3188 telephone may thu 208 2 999 0 nonexistent
## 3189 telephone may thu 163 1 999 0 nonexistent
## 3190 telephone may thu 168 5 999 0 nonexistent
## 3191 telephone may thu 161 3 999 0 nonexistent
## 3192 telephone may thu 1000 1 999 0 nonexistent
## 3193 telephone may thu 112 1 999 0 nonexistent
## 3194 telephone may thu 599 2 999 0 nonexistent
## 3195 telephone may thu 30 1 999 0 nonexistent
## 3196 telephone may thu 165 1 999 0 nonexistent
## 3197 telephone may thu 55 1 999 0 nonexistent
## 3198 telephone may thu 231 1 999 0 nonexistent
## 3199 telephone may thu 191 1 999 0 nonexistent
## 3200 telephone may thu 127 1 999 0 nonexistent
## 3201 telephone may thu 75 1 999 0 nonexistent
## 3202 telephone may thu 106 1 999 0 nonexistent
## 3203 telephone may thu 202 3 999 0 nonexistent
## 3204 telephone may thu 1257 3 999 0 nonexistent
## 3205 telephone may thu 221 1 999 0 nonexistent
## 3206 telephone may thu 285 1 999 0 nonexistent
## 3207 telephone may thu 106 1 999 0 nonexistent
## 3208 telephone may thu 93 1 999 0 nonexistent
## 3209 telephone may thu 71 2 999 0 nonexistent
## 3210 telephone may thu 290 3 999 0 nonexistent
## 3211 telephone may thu 1165 1 999 0 nonexistent
## 3212 telephone may thu 164 1 999 0 nonexistent
## 3213 telephone may thu 207 1 999 0 nonexistent
## 3214 telephone may thu 295 2 999 0 nonexistent
## 3215 telephone may thu 187 1 999 0 nonexistent
## 3216 telephone may thu 106 1 999 0 nonexistent
## 3217 telephone may thu 219 1 999 0 nonexistent
## 3218 telephone may thu 236 1 999 0 nonexistent
## 3219 telephone may thu 139 1 999 0 nonexistent
## 3220 telephone may thu 651 23 999 0 nonexistent
## 3221 telephone may thu 124 1 999 0 nonexistent
## 3222 telephone may thu 145 4 999 0 nonexistent
## 3223 telephone may thu 120 1 999 0 nonexistent
## 3224 telephone may thu 734 1 999 0 nonexistent
## 3225 telephone may thu 291 2 999 0 nonexistent
## 3226 telephone may thu 101 1 999 0 nonexistent
## 3227 telephone may thu 417 3 999 0 nonexistent
## 3228 telephone may thu 191 4 999 0 nonexistent
## 3229 telephone may thu 131 1 999 0 nonexistent
## 3230 telephone may thu 97 1 999 0 nonexistent
## 3231 telephone may thu 221 2 999 0 nonexistent
## 3232 telephone may thu 229 1 999 0 nonexistent
## 3233 telephone may thu 104 1 999 0 nonexistent
## 3234 telephone may thu 122 1 999 0 nonexistent
## 3235 telephone may thu 72 1 999 0 nonexistent
## 3236 telephone may thu 186 1 999 0 nonexistent
## 3237 telephone may thu 23 1 999 0 nonexistent
## 3238 telephone may thu 402 1 999 0 nonexistent
## 3239 telephone may thu 37 1 999 0 nonexistent
## 3240 telephone may thu 68 5 999 0 nonexistent
## 3241 telephone may thu 182 1 999 0 nonexistent
## 3242 telephone may thu 587 1 999 0 nonexistent
## 3243 telephone may thu 348 1 999 0 nonexistent
## 3244 telephone may thu 51 2 999 0 nonexistent
## 3245 telephone may thu 176 13 999 0 nonexistent
## 3246 telephone may thu 144 2 999 0 nonexistent
## 3247 telephone may thu 297 3 999 0 nonexistent
## 3248 telephone may thu 203 2 999 0 nonexistent
## 3249 telephone may thu 57 2 999 0 nonexistent
## 3250 telephone may thu 334 3 999 0 nonexistent
## 3251 telephone may thu 217 2 999 0 nonexistent
## 3252 telephone may thu 74 1 999 0 nonexistent
## 3253 telephone may thu 464 2 999 0 nonexistent
## 3254 telephone may thu 738 7 999 0 nonexistent
## 3255 telephone may thu 126 1 999 0 nonexistent
## 3256 telephone may thu 452 2 999 0 nonexistent
## 3257 telephone may thu 203 4 999 0 nonexistent
## 3258 telephone may thu 230 7 999 0 nonexistent
## 3259 telephone may thu 187 4 999 0 nonexistent
## 3260 telephone may thu 920 2 999 0 nonexistent
## 3261 telephone may thu 136 1 999 0 nonexistent
## 3262 telephone may thu 1244 3 999 0 nonexistent
## 3263 telephone may thu 80 1 999 0 nonexistent
## 3264 telephone may thu 431 1 999 0 nonexistent
## 3265 telephone may thu 500 1 999 0 nonexistent
## 3266 telephone may thu 301 1 999 0 nonexistent
## 3267 telephone may thu 115 3 999 0 nonexistent
## 3268 telephone may thu 30 1 999 0 nonexistent
## 3269 telephone may thu 133 1 999 0 nonexistent
## 3270 telephone may thu 270 1 999 0 nonexistent
## 3271 telephone may thu 218 2 999 0 nonexistent
## 3272 telephone may thu 355 1 999 0 nonexistent
## 3273 telephone may thu 215 2 999 0 nonexistent
## 3274 telephone may thu 299 1 999 0 nonexistent
## 3275 telephone may thu 160 1 999 0 nonexistent
## 3276 telephone may thu 172 4 999 0 nonexistent
## 3277 telephone may thu 49 1 999 0 nonexistent
## 3278 telephone may thu 117 1 999 0 nonexistent
## 3279 telephone may thu 155 1 999 0 nonexistent
## 3280 telephone may thu 477 1 999 0 nonexistent
## 3281 telephone may thu 99 1 999 0 nonexistent
## 3282 telephone may thu 188 1 999 0 nonexistent
## 3283 telephone may thu 200 3 999 0 nonexistent
## 3284 telephone may thu 187 2 999 0 nonexistent
## 3285 telephone may thu 236 3 999 0 nonexistent
## 3286 telephone may thu 50 7 999 0 nonexistent
## 3287 telephone may thu 104 2 999 0 nonexistent
## 3288 telephone may thu 51 10 999 0 nonexistent
## 3289 telephone may thu 51 5 999 0 nonexistent
## 3290 telephone may thu 140 3 999 0 nonexistent
## 3291 telephone may thu 221 4 999 0 nonexistent
## 3292 telephone may thu 98 2 999 0 nonexistent
## 3293 telephone may thu 253 2 999 0 nonexistent
## 3294 telephone may thu 71 1 999 0 nonexistent
## 3295 telephone may thu 127 2 999 0 nonexistent
## 3296 telephone may thu 74 2 999 0 nonexistent
## 3297 telephone may thu 126 4 999 0 nonexistent
## 3298 telephone may thu 122 1 999 0 nonexistent
## 3299 telephone may thu 173 2 999 0 nonexistent
## 3300 telephone may thu 918 1 999 0 nonexistent
## 3301 telephone may thu 544 2 999 0 nonexistent
## 3302 telephone may thu 309 2 999 0 nonexistent
## 3303 telephone may thu 138 2 999 0 nonexistent
## 3304 telephone may thu 73 1 999 0 nonexistent
## 3305 telephone may thu 71 2 999 0 nonexistent
## 3306 telephone may thu 193 5 999 0 nonexistent
## 3307 telephone may thu 198 3 999 0 nonexistent
## 3308 telephone may thu 243 4 999 0 nonexistent
## 3309 telephone may thu 57 2 999 0 nonexistent
## 3310 telephone may thu 49 1 999 0 nonexistent
## 3311 telephone may thu 105 1 999 0 nonexistent
## 3312 telephone may thu 719 1 999 0 nonexistent
## 3313 telephone may thu 98 1 999 0 nonexistent
## 3314 telephone may thu 196 2 999 0 nonexistent
## 3315 telephone may thu 243 1 999 0 nonexistent
## 3316 telephone may thu 344 2 999 0 nonexistent
## 3317 telephone may thu 135 1 999 0 nonexistent
## 3318 telephone may thu 597 1 999 0 nonexistent
## 3319 telephone may thu 168 1 999 0 nonexistent
## 3320 telephone may thu 43 9 999 0 nonexistent
## 3321 telephone may thu 525 1 999 0 nonexistent
## 3322 telephone may thu 122 6 999 0 nonexistent
## 3323 telephone may thu 152 2 999 0 nonexistent
## 3324 telephone may thu 111 2 999 0 nonexistent
## 3325 telephone may thu 133 2 999 0 nonexistent
## 3326 telephone may thu 504 5 999 0 nonexistent
## 3327 telephone may thu 192 3 999 0 nonexistent
## 3328 telephone may thu 164 2 999 0 nonexistent
## 3329 telephone may thu 51 1 999 0 nonexistent
## 3330 telephone may thu 178 1 999 0 nonexistent
## 3331 telephone may thu 99 2 999 0 nonexistent
## 3332 telephone may thu 224 1 999 0 nonexistent
## 3333 telephone may thu 236 3 999 0 nonexistent
## 3334 telephone may thu 815 1 999 0 nonexistent
## 3335 telephone may thu 282 1 999 0 nonexistent
## 3336 telephone may thu 134 1 999 0 nonexistent
## 3337 telephone may thu 318 1 999 0 nonexistent
## 3338 telephone may thu 118 1 999 0 nonexistent
## 3339 telephone may thu 911 2 999 0 nonexistent
## 3340 telephone may thu 238 1 999 0 nonexistent
## 3341 telephone may thu 225 1 999 0 nonexistent
## 3342 telephone may thu 490 3 999 0 nonexistent
## 3343 telephone may thu 89 1 999 0 nonexistent
## 3344 telephone may thu 199 1 999 0 nonexistent
## 3345 telephone may thu 644 1 999 0 nonexistent
## 3346 telephone may thu 286 2 999 0 nonexistent
## 3347 telephone may thu 76 3 999 0 nonexistent
## 3348 telephone may thu 176 2 999 0 nonexistent
## 3349 telephone may thu 422 3 999 0 nonexistent
## 3350 telephone may thu 22 3 999 0 nonexistent
## 3351 telephone may thu 71 4 999 0 nonexistent
## 3352 telephone may thu 465 3 999 0 nonexistent
## 3353 telephone may thu 83 3 999 0 nonexistent
## 3354 telephone may thu 973 2 999 0 nonexistent
## 3355 telephone may thu 56 1 999 0 nonexistent
## 3356 telephone may thu 190 2 999 0 nonexistent
## 3357 telephone may thu 323 1 999 0 nonexistent
## 3358 telephone may thu 113 1 999 0 nonexistent
## 3359 telephone may thu 228 1 999 0 nonexistent
## 3360 telephone may thu 110 1 999 0 nonexistent
## 3361 telephone may thu 84 14 999 0 nonexistent
## 3362 telephone may thu 59 1 999 0 nonexistent
## 3363 telephone may thu 294 2 999 0 nonexistent
## 3364 telephone may thu 21 5 999 0 nonexistent
## 3365 telephone may thu 210 3 999 0 nonexistent
## 3366 telephone may thu 144 1 999 0 nonexistent
## 3367 telephone may thu 251 1 999 0 nonexistent
## 3368 telephone may thu 444 1 999 0 nonexistent
## 3369 telephone may thu 237 2 999 0 nonexistent
## 3370 telephone may thu 399 1 999 0 nonexistent
## 3371 telephone may thu 132 22 999 0 nonexistent
## 3372 telephone may thu 334 10 999 0 nonexistent
## 3373 telephone may thu 387 4 999 0 nonexistent
## 3374 telephone may thu 344 2 999 0 nonexistent
## 3375 telephone may thu 279 9 999 0 nonexistent
## 3376 telephone may thu 484 8 999 0 nonexistent
## 3377 telephone may thu 95 1 999 0 nonexistent
## 3378 telephone may thu 461 1 999 0 nonexistent
## 3379 telephone may thu 30 2 999 0 nonexistent
## 3380 telephone may thu 561 1 999 0 nonexistent
## 3381 telephone may thu 468 2 999 0 nonexistent
## 3382 telephone may thu 920 2 999 0 nonexistent
## 3383 telephone may thu 388 2 999 0 nonexistent
## 3384 telephone may thu 100 4 999 0 nonexistent
## 3385 telephone may thu 1224 2 999 0 nonexistent
## 3386 telephone may thu 589 1 999 0 nonexistent
## 3387 telephone may thu 160 1 999 0 nonexistent
## 3388 telephone may thu 438 2 999 0 nonexistent
## 3389 telephone may thu 69 1 999 0 nonexistent
## 3390 telephone may thu 964 2 999 0 nonexistent
## 3391 telephone may thu 384 4 999 0 nonexistent
## 3392 telephone may thu 103 1 999 0 nonexistent
## 3393 telephone may thu 52 1 999 0 nonexistent
## 3394 telephone may thu 205 2 999 0 nonexistent
## 3395 telephone may thu 486 2 999 0 nonexistent
## 3396 telephone may thu 1156 2 999 0 nonexistent
## 3397 telephone may thu 73 2 999 0 nonexistent
## 3398 telephone may thu 523 5 999 0 nonexistent
## 3399 telephone may thu 157 5 999 0 nonexistent
## 3400 telephone may thu 186 5 999 0 nonexistent
## 3401 telephone may thu 73 5 999 0 nonexistent
## 3402 telephone may thu 544 3 999 0 nonexistent
## 3403 telephone may thu 194 2 999 0 nonexistent
## 3404 telephone may thu 420 4 999 0 nonexistent
## 3405 telephone may thu 584 2 999 0 nonexistent
## 3406 telephone may thu 192 3 999 0 nonexistent
## 3407 telephone may thu 155 2 999 0 nonexistent
## 3408 telephone may thu 1231 2 999 0 nonexistent
## 3409 telephone may thu 619 4 999 0 nonexistent
## 3410 telephone may thu 298 3 999 0 nonexistent
## 3411 telephone may thu 515 2 999 0 nonexistent
## 3412 telephone may thu 21 6 999 0 nonexistent
## 3413 telephone may thu 404 7 999 0 nonexistent
## 3414 telephone may thu 241 23 999 0 nonexistent
## 3415 telephone may thu 302 1 999 0 nonexistent
## 3416 telephone may thu 440 2 999 0 nonexistent
## 3417 telephone may thu 172 2 999 0 nonexistent
## 3418 telephone may thu 319 7 999 0 nonexistent
## 3419 telephone may thu 1051 3 999 0 nonexistent
## 3420 telephone may thu 276 3 999 0 nonexistent
## 3421 telephone may thu 213 4 999 0 nonexistent
## 3422 telephone may thu 194 2 999 0 nonexistent
## 3423 telephone may thu 276 4 999 0 nonexistent
## 3424 telephone may thu 19 8 999 0 nonexistent
## 3425 telephone may thu 226 2 999 0 nonexistent
## 3426 telephone may thu 546 8 999 0 nonexistent
## 3427 telephone may thu 419 2 999 0 nonexistent
## 3428 telephone may thu 1867 6 999 0 nonexistent
## 3429 telephone may thu 156 5 999 0 nonexistent
## 3430 telephone may thu 184 2 999 0 nonexistent
## 3431 telephone may thu 548 1 999 0 nonexistent
## 3432 telephone may thu 760 2 999 0 nonexistent
## 3433 telephone may thu 244 2 999 0 nonexistent
## 3434 telephone may thu 328 4 999 0 nonexistent
## 3435 telephone may thu 171 2 999 0 nonexistent
## 3436 telephone may thu 284 5 999 0 nonexistent
## 3437 telephone may thu 1263 2 999 0 nonexistent
## 3438 telephone may thu 92 3 999 0 nonexistent
## 3439 telephone may thu 17 25 999 0 nonexistent
## 3440 telephone may thu 422 2 999 0 nonexistent
## 3441 telephone may thu 17 10 999 0 nonexistent
## 3442 telephone may thu 301 4 999 0 nonexistent
## 3443 telephone may thu 267 5 999 0 nonexistent
## 3444 telephone may thu 475 2 999 0 nonexistent
## 3445 telephone may thu 770 2 999 0 nonexistent
## 3446 telephone may thu 487 4 999 0 nonexistent
## 3447 telephone may thu 126 2 999 0 nonexistent
## 3448 telephone may thu 114 1 999 0 nonexistent
## 3449 telephone may thu 136 3 999 0 nonexistent
## 3450 telephone may thu 196 2 999 0 nonexistent
## 3451 telephone may thu 129 1 999 0 nonexistent
## 3452 telephone may thu 257 7 999 0 nonexistent
## 3453 telephone may thu 365 1 999 0 nonexistent
## 3454 telephone may thu 697 3 999 0 nonexistent
## 3455 telephone may thu 192 3 999 0 nonexistent
## 3456 telephone may thu 244 2 999 0 nonexistent
## 3457 telephone may thu 118 4 999 0 nonexistent
## 3458 telephone may thu 160 1 999 0 nonexistent
## 3459 telephone may thu 101 3 999 0 nonexistent
## 3460 telephone may thu 56 13 999 0 nonexistent
## 3461 telephone may thu 430 2 999 0 nonexistent
## 3462 telephone may thu 242 6 999 0 nonexistent
## 3463 telephone may thu 809 3 999 0 nonexistent
## 3464 telephone may thu 317 7 999 0 nonexistent
## 3465 telephone may thu 7 7 999 0 nonexistent
## 3466 telephone may thu 493 2 999 0 nonexistent
## 3467 telephone may thu 381 7 999 0 nonexistent
## 3468 telephone may thu 112 2 999 0 nonexistent
## 3469 telephone may thu 523 2 999 0 nonexistent
## 3470 telephone may thu 309 2 999 0 nonexistent
## 3471 telephone may thu 184 2 999 0 nonexistent
## 3472 telephone may thu 850 6 999 0 nonexistent
## 3473 telephone may thu 420 2 999 0 nonexistent
## 3474 telephone may thu 118 4 999 0 nonexistent
## 3475 telephone may thu 71 3 999 0 nonexistent
## 3476 telephone may thu 314 7 999 0 nonexistent
## 3477 telephone may thu 196 4 999 0 nonexistent
## 3478 telephone may thu 151 2 999 0 nonexistent
## 3479 telephone may thu 95 6 999 0 nonexistent
## 3480 telephone may thu 516 9 999 0 nonexistent
## 3481 telephone may thu 855 4 999 0 nonexistent
## 3482 telephone may thu 78 4 999 0 nonexistent
## 3483 telephone may thu 875 5 999 0 nonexistent
## 3484 telephone may thu 124 2 999 0 nonexistent
## 3485 telephone may thu 24 16 999 0 nonexistent
## 3486 telephone may thu 190 6 999 0 nonexistent
## 3487 telephone may thu 53 3 999 0 nonexistent
## 3488 telephone may thu 278 4 999 0 nonexistent
## 3489 telephone may thu 284 2 999 0 nonexistent
## 3490 telephone may thu 262 4 999 0 nonexistent
## 3491 telephone may thu 391 3 999 0 nonexistent
## 3492 telephone may thu 263 4 999 0 nonexistent
## 3493 telephone may thu 214 4 999 0 nonexistent
## 3494 telephone may thu 88 3 999 0 nonexistent
## 3495 telephone may thu 255 12 999 0 nonexistent
## 3496 telephone may thu 202 4 999 0 nonexistent
## 3497 telephone may thu 438 5 999 0 nonexistent
## 3498 telephone may thu 311 3 999 0 nonexistent
## 3499 telephone may thu 426 6 999 0 nonexistent
## 3500 telephone may thu 302 8 999 0 nonexistent
## 3501 telephone may thu 213 2 999 0 nonexistent
## 3502 telephone may thu 214 4 999 0 nonexistent
## 3503 telephone may thu 90 3 999 0 nonexistent
## 3504 telephone may thu 448 4 999 0 nonexistent
## 3505 telephone may thu 70 6 999 0 nonexistent
## 3506 telephone may thu 347 4 999 0 nonexistent
## 3507 telephone may thu 892 4 999 0 nonexistent
## 3508 telephone may thu 320 3 999 0 nonexistent
## 3509 telephone may thu 175 2 999 0 nonexistent
## 3510 telephone may thu 222 11 999 0 nonexistent
## 3511 telephone may thu 98 2 999 0 nonexistent
## 3512 telephone may thu 734 5 999 0 nonexistent
## 3513 telephone may thu 177 3 999 0 nonexistent
## 3514 telephone may thu 65 7 999 0 nonexistent
## 3515 telephone may thu 543 12 999 0 nonexistent
## 3516 telephone may thu 374 5 999 0 nonexistent
## 3517 telephone may thu 241 2 999 0 nonexistent
## 3518 telephone may thu 137 2 999 0 nonexistent
## 3519 telephone may thu 178 2 999 0 nonexistent
## 3520 telephone may thu 297 1 999 0 nonexistent
## 3521 telephone may thu 491 2 999 0 nonexistent
## 3522 telephone may thu 377 4 999 0 nonexistent
## 3523 telephone may fri 84 2 999 0 nonexistent
## 3524 telephone may fri 122 2 999 0 nonexistent
## 3525 telephone may fri 135 3 999 0 nonexistent
## 3526 telephone may fri 246 2 999 0 nonexistent
## 3527 telephone may fri 95 3 999 0 nonexistent
## 3528 telephone may fri 248 3 999 0 nonexistent
## 3529 telephone may fri 336 2 999 0 nonexistent
## 3530 telephone may fri 28 4 999 0 nonexistent
## 3531 telephone may fri 371 2 999 0 nonexistent
## 3532 telephone may fri 329 3 999 0 nonexistent
## 3533 telephone may fri 597 17 999 0 nonexistent
## 3534 telephone may fri 247 1 999 0 nonexistent
## 3535 telephone may fri 343 1 999 0 nonexistent
## 3536 telephone may fri 266 6 999 0 nonexistent
## 3537 telephone may fri 137 1 999 0 nonexistent
## 3538 telephone may fri 159 1 999 0 nonexistent
## 3539 telephone may fri 206 4 999 0 nonexistent
## 3540 telephone may fri 69 15 999 0 nonexistent
## 3541 telephone may fri 228 1 999 0 nonexistent
## 3542 telephone may fri 515 1 999 0 nonexistent
## 3543 telephone may fri 144 1 999 0 nonexistent
## 3544 telephone may fri 29 1 999 0 nonexistent
## 3545 telephone may fri 512 1 999 0 nonexistent
## 3546 telephone may fri 813 1 999 0 nonexistent
## 3547 telephone may fri 247 1 999 0 nonexistent
## 3548 telephone may fri 601 1 999 0 nonexistent
## 3549 telephone may fri 73 1 999 0 nonexistent
## 3550 telephone may fri 144 4 999 0 nonexistent
## 3551 telephone may fri 230 3 999 0 nonexistent
## 3552 telephone may fri 456 1 999 0 nonexistent
## 3553 telephone may fri 75 1 999 0 nonexistent
## 3554 telephone may fri 225 1 999 0 nonexistent
## 3555 telephone may fri 387 1 999 0 nonexistent
## 3556 telephone may fri 286 3 999 0 nonexistent
## 3557 telephone may fri 286 1 999 0 nonexistent
## 3558 telephone may fri 448 2 999 0 nonexistent
## 3559 telephone may fri 223 3 999 0 nonexistent
## 3560 telephone may fri 136 1 999 0 nonexistent
## 3561 telephone may fri 93 1 999 0 nonexistent
## 3562 telephone may fri 212 1 999 0 nonexistent
## 3563 telephone may fri 178 1 999 0 nonexistent
## 3564 telephone may fri 111 1 999 0 nonexistent
## 3565 telephone may fri 803 1 999 0 nonexistent
## 3566 telephone may fri 150 1 999 0 nonexistent
## 3567 telephone may fri 844 1 999 0 nonexistent
## 3568 telephone may fri 297 1 999 0 nonexistent
## 3569 telephone may fri 529 4 999 0 nonexistent
## 3570 telephone may fri 137 1 999 0 nonexistent
## 3571 telephone may fri 676 1 999 0 nonexistent
## 3572 telephone may fri 656 2 999 0 nonexistent
## 3573 telephone may fri 249 1 999 0 nonexistent
## 3574 telephone may fri 88 6 999 0 nonexistent
## 3575 telephone may fri 1252 1 999 0 nonexistent
## 3576 telephone may fri 228 2 999 0 nonexistent
## 3577 telephone may fri 1143 3 999 0 nonexistent
## 3578 telephone may fri 283 1 999 0 nonexistent
## 3579 telephone may fri 118 2 999 0 nonexistent
## 3580 telephone may fri 104 1 999 0 nonexistent
## 3581 telephone may fri 103 1 999 0 nonexistent
## 3582 telephone may fri 213 1 999 0 nonexistent
## 3583 telephone may fri 132 1 999 0 nonexistent
## 3584 telephone may fri 122 1 999 0 nonexistent
## 3585 telephone may fri 130 4 999 0 nonexistent
## 3586 telephone may fri 627 1 999 0 nonexistent
## 3587 telephone may fri 207 1 999 0 nonexistent
## 3588 telephone may fri 114 2 999 0 nonexistent
## 3589 telephone may fri 216 1 999 0 nonexistent
## 3590 telephone may fri 250 1 999 0 nonexistent
## 3591 telephone may fri 91 1 999 0 nonexistent
## 3592 telephone may fri 159 1 999 0 nonexistent
## 3593 telephone may fri 147 1 999 0 nonexistent
## 3594 telephone may fri 86 1 999 0 nonexistent
## 3595 telephone may fri 731 4 999 0 nonexistent
## 3596 telephone may fri 37 1 999 0 nonexistent
## 3597 telephone may fri 46 1 999 0 nonexistent
## 3598 telephone may fri 356 2 999 0 nonexistent
## 3599 telephone may fri 248 1 999 0 nonexistent
## 3600 telephone may fri 242 7 999 0 nonexistent
## 3601 telephone may fri 134 3 999 0 nonexistent
## 3602 telephone may fri 274 2 999 0 nonexistent
## 3603 telephone may fri 355 2 999 0 nonexistent
## 3604 telephone may fri 149 1 999 0 nonexistent
## 3605 telephone may fri 346 1 999 0 nonexistent
## 3606 telephone may fri 370 1 999 0 nonexistent
## 3607 telephone may fri 261 1 999 0 nonexistent
## 3608 telephone may fri 63 1 999 0 nonexistent
## 3609 telephone may fri 688 1 999 0 nonexistent
## 3610 telephone may fri 84 1 999 0 nonexistent
## 3611 telephone may fri 125 1 999 0 nonexistent
## 3612 telephone may fri 167 1 999 0 nonexistent
## 3613 telephone may fri 25 1 999 0 nonexistent
## 3614 telephone may fri 244 1 999 0 nonexistent
## 3615 telephone may fri 140 1 999 0 nonexistent
## 3616 telephone may fri 165 1 999 0 nonexistent
## 3617 telephone may fri 122 1 999 0 nonexistent
## 3618 telephone may fri 130 2 999 0 nonexistent
## 3619 telephone may fri 345 1 999 0 nonexistent
## 3620 telephone may fri 42 2 999 0 nonexistent
## 3621 telephone may fri 277 5 999 0 nonexistent
## 3622 telephone may fri 145 1 999 0 nonexistent
## 3623 telephone may fri 214 1 999 0 nonexistent
## 3624 telephone may fri 140 1 999 0 nonexistent
## 3625 telephone may fri 140 1 999 0 nonexistent
## 3626 telephone may fri 132 1 999 0 nonexistent
## 3627 telephone may fri 117 1 999 0 nonexistent
## 3628 telephone may fri 96 2 999 0 nonexistent
## 3629 telephone may fri 803 1 999 0 nonexistent
## 3630 telephone may fri 225 4 999 0 nonexistent
## 3631 telephone may fri 260 1 999 0 nonexistent
## 3632 telephone may fri 754 1 999 0 nonexistent
## 3633 telephone may fri 211 2 999 0 nonexistent
## 3634 telephone may fri 192 1 999 0 nonexistent
## 3635 telephone may fri 203 1 999 0 nonexistent
## 3636 telephone may fri 76 3 999 0 nonexistent
## 3637 telephone may fri 24 1 999 0 nonexistent
## 3638 telephone may fri 171 2 999 0 nonexistent
## 3639 telephone may fri 136 1 999 0 nonexistent
## 3640 telephone may fri 42 8 999 0 nonexistent
## 3641 telephone may fri 343 1 999 0 nonexistent
## 3642 telephone may fri 111 1 999 0 nonexistent
## 3643 telephone may fri 77 1 999 0 nonexistent
## 3644 telephone may fri 268 6 999 0 nonexistent
## 3645 telephone may fri 217 2 999 0 nonexistent
## 3646 telephone may fri 360 1 999 0 nonexistent
## 3647 telephone may fri 241 1 999 0 nonexistent
## 3648 telephone may fri 47 1 999 0 nonexistent
## 3649 telephone may fri 196 1 999 0 nonexistent
## 3650 telephone may fri 601 1 999 0 nonexistent
## 3651 telephone may fri 178 2 999 0 nonexistent
## 3652 telephone may fri 306 1 999 0 nonexistent
## 3653 telephone may fri 362 22 999 0 nonexistent
## 3654 telephone may fri 410 1 999 0 nonexistent
## 3655 telephone may fri 265 1 999 0 nonexistent
## 3656 telephone may fri 108 2 999 0 nonexistent
## 3657 telephone may fri 172 4 999 0 nonexistent
## 3658 telephone may fri 184 2 999 0 nonexistent
## 3659 telephone may fri 424 1 999 0 nonexistent
## 3660 telephone may fri 359 1 999 0 nonexistent
## 3661 telephone may fri 123 1 999 0 nonexistent
## 3662 telephone may fri 787 1 999 0 nonexistent
## 3663 telephone may fri 169 1 999 0 nonexistent
## 3664 telephone may fri 241 1 999 0 nonexistent
## 3665 telephone may fri 141 1 999 0 nonexistent
## 3666 telephone may fri 22 4 999 0 nonexistent
## 3667 telephone may fri 326 1 999 0 nonexistent
## 3668 telephone may fri 317 1 999 0 nonexistent
## 3669 telephone may fri 196 3 999 0 nonexistent
## 3670 telephone may fri 270 1 999 0 nonexistent
## 3671 telephone may fri 107 1 999 0 nonexistent
## 3672 telephone may fri 679 17 999 0 nonexistent
## 3673 telephone may fri 184 1 999 0 nonexistent
## 3674 telephone may fri 576 1 999 0 nonexistent
## 3675 telephone may fri 102 1 999 0 nonexistent
## 3676 telephone may fri 161 3 999 0 nonexistent
## 3677 telephone may fri 206 2 999 0 nonexistent
## 3678 telephone may fri 619 2 999 0 nonexistent
## 3679 telephone may fri 33 1 999 0 nonexistent
## 3680 telephone may fri 27 2 999 0 nonexistent
## 3681 telephone may fri 230 1 999 0 nonexistent
## 3682 telephone may fri 38 2 999 0 nonexistent
## 3683 telephone may fri 322 2 999 0 nonexistent
## 3684 telephone may fri 187 1 999 0 nonexistent
## 3685 telephone may fri 124 1 999 0 nonexistent
## 3686 telephone may fri 1230 3 999 0 nonexistent
## 3687 telephone may fri 107 2 999 0 nonexistent
## 3688 telephone may fri 379 1 999 0 nonexistent
## 3689 telephone may fri 95 1 999 0 nonexistent
## 3690 telephone may fri 42 3 999 0 nonexistent
## 3691 telephone may fri 197 1 999 0 nonexistent
## 3692 telephone may fri 320 2 999 0 nonexistent
## 3693 telephone may fri 223 1 999 0 nonexistent
## 3694 telephone may fri 912 1 999 0 nonexistent
## 3695 telephone may fri 230 1 999 0 nonexistent
## 3696 telephone may fri 489 2 999 0 nonexistent
## 3697 telephone may fri 98 1 999 0 nonexistent
## 3698 telephone may fri 894 1 999 0 nonexistent
## 3699 telephone may fri 38 3 999 0 nonexistent
## 3700 telephone may fri 323 4 999 0 nonexistent
## 3701 telephone may fri 335 1 999 0 nonexistent
## 3702 telephone may fri 161 1 999 0 nonexistent
## 3703 telephone may fri 410 3 999 0 nonexistent
## 3704 telephone may fri 280 1 999 0 nonexistent
## 3705 telephone may fri 374 2 999 0 nonexistent
## 3706 telephone may fri 193 8 999 0 nonexistent
## 3707 telephone may fri 166 2 999 0 nonexistent
## 3708 telephone may fri 865 1 999 0 nonexistent
## 3709 telephone may fri 258 2 999 0 nonexistent
## 3710 telephone may fri 215 1 999 0 nonexistent
## 3711 telephone may fri 136 2 999 0 nonexistent
## 3712 telephone may fri 299 2 999 0 nonexistent
## 3713 telephone may fri 381 2 999 0 nonexistent
## 3714 telephone may fri 197 1 999 0 nonexistent
## 3715 telephone may fri 412 1 999 0 nonexistent
## 3716 telephone may fri 376 2 999 0 nonexistent
## 3717 telephone may fri 393 2 999 0 nonexistent
## 3718 telephone may fri 56 3 999 0 nonexistent
## 3719 telephone may fri 112 4 999 0 nonexistent
## 3720 telephone may fri 155 3 999 0 nonexistent
## 3721 telephone may fri 703 4 999 0 nonexistent
## 3722 telephone may fri 141 2 999 0 nonexistent
## 3723 telephone may fri 475 2 999 0 nonexistent
## 3724 telephone may fri 121 2 999 0 nonexistent
## 3725 telephone may fri 471 2 999 0 nonexistent
## 3726 telephone may fri 121 1 999 0 nonexistent
## 3727 telephone may fri 177 4 999 0 nonexistent
## 3728 telephone may fri 344 2 999 0 nonexistent
## 3729 telephone may fri 229 1 999 0 nonexistent
## 3730 telephone may fri 404 1 999 0 nonexistent
## 3731 telephone may fri 287 4 999 0 nonexistent
## 3732 telephone may fri 329 1 999 0 nonexistent
## 3733 telephone may fri 433 1 999 0 nonexistent
## 3734 telephone may fri 216 1 999 0 nonexistent
## 3735 telephone may fri 1340 1 999 0 nonexistent
## 3736 telephone may fri 323 2 999 0 nonexistent
## 3737 telephone may fri 132 11 999 0 nonexistent
## 3738 telephone may fri 199 4 999 0 nonexistent
## 3739 telephone may fri 221 2 999 0 nonexistent
## 3740 telephone may fri 200 2 999 0 nonexistent
## 3741 telephone may fri 897 1 999 0 nonexistent
## 3742 telephone may fri 80 2 999 0 nonexistent
## 3743 telephone may fri 123 3 999 0 nonexistent
## 3744 telephone may fri 90 2 999 0 nonexistent
## 3745 telephone may fri 461 2 999 0 nonexistent
## 3746 telephone may fri 213 14 999 0 nonexistent
## 3747 telephone may fri 193 11 999 0 nonexistent
## 3748 telephone may fri 428 1 999 0 nonexistent
## 3749 telephone may fri 291 1 999 0 nonexistent
## 3750 telephone may fri 136 1 999 0 nonexistent
## 3751 telephone may fri 124 1 999 0 nonexistent
## 3752 telephone may fri 214 4 999 0 nonexistent
## 3753 telephone may fri 239 3 999 0 nonexistent
## 3754 telephone may fri 718 1 999 0 nonexistent
## 3755 telephone may fri 323 1 999 0 nonexistent
## 3756 telephone may fri 94 1 999 0 nonexistent
## 3757 telephone may fri 74 1 999 0 nonexistent
## 3758 telephone may fri 107 1 999 0 nonexistent
## 3759 telephone may fri 97 3 999 0 nonexistent
## 3760 telephone may fri 51 1 999 0 nonexistent
## 3761 telephone may fri 109 1 999 0 nonexistent
## 3762 telephone may fri 225 1 999 0 nonexistent
## 3763 telephone may fri 378 1 999 0 nonexistent
## 3764 telephone may fri 217 1 999 0 nonexistent
## 3765 telephone may fri 136 1 999 0 nonexistent
## 3766 telephone may fri 1161 3 999 0 nonexistent
## 3767 telephone may fri 467 1 999 0 nonexistent
## 3768 telephone may fri 386 1 999 0 nonexistent
## 3769 telephone may fri 290 1 999 0 nonexistent
## 3770 telephone may fri 168 2 999 0 nonexistent
## 3771 telephone may fri 764 7 999 0 nonexistent
## 3772 telephone may fri 194 3 999 0 nonexistent
## 3773 telephone may fri 16 23 999 0 nonexistent
## 3774 telephone may fri 148 18 999 0 nonexistent
## 3775 telephone may fri 2680 1 999 0 nonexistent
## 3776 telephone may fri 242 3 999 0 nonexistent
## 3777 telephone may fri 269 2 999 0 nonexistent
## 3778 telephone may fri 208 2 999 0 nonexistent
## 3779 telephone may fri 370 2 999 0 nonexistent
## 3780 telephone may fri 274 8 999 0 nonexistent
## 3781 telephone may fri 326 1 999 0 nonexistent
## 3782 telephone may fri 337 2 999 0 nonexistent
## 3783 telephone may fri 104 1 999 0 nonexistent
## 3784 telephone may fri 788 2 999 0 nonexistent
## 3785 telephone may fri 353 4 999 0 nonexistent
## 3786 telephone may fri 14 15 999 0 nonexistent
## 3787 telephone may fri 698 9 999 0 nonexistent
## 3788 telephone may fri 180 1 999 0 nonexistent
## 3789 telephone may fri 257 2 999 0 nonexistent
## 3790 telephone may fri 467 1 999 0 nonexistent
## 3791 telephone may fri 233 1 999 0 nonexistent
## 3792 telephone may fri 218 2 999 0 nonexistent
## 3793 telephone may fri 304 2 999 0 nonexistent
## 3794 telephone may fri 315 3 999 0 nonexistent
## 3795 telephone may fri 40 5 999 0 nonexistent
## 3796 telephone may fri 698 1 999 0 nonexistent
## 3797 telephone may fri 76 17 999 0 nonexistent
## 3798 telephone may fri 355 2 999 0 nonexistent
## 3799 telephone may fri 557 4 999 0 nonexistent
## 3800 telephone may fri 148 2 999 0 nonexistent
## 3801 telephone may fri 128 2 999 0 nonexistent
## 3802 telephone may fri 130 3 999 0 nonexistent
## 3803 telephone may fri 280 2 999 0 nonexistent
## 3804 telephone may fri 152 2 999 0 nonexistent
## 3805 telephone may fri 283 2 999 0 nonexistent
## 3806 telephone may fri 523 3 999 0 nonexistent
## 3807 telephone may fri 316 7 999 0 nonexistent
## 3808 telephone may fri 1128 3 999 0 nonexistent
## 3809 telephone may fri 171 4 999 0 nonexistent
## 3810 telephone may fri 174 15 999 0 nonexistent
## 3811 telephone may fri 71 11 999 0 nonexistent
## 3812 telephone may fri 84 4 999 0 nonexistent
## 3813 telephone may fri 221 2 999 0 nonexistent
## 3814 telephone may fri 234 2 999 0 nonexistent
## 3815 telephone may fri 138 2 999 0 nonexistent
## 3816 telephone may fri 339 5 999 0 nonexistent
## 3817 telephone may fri 509 2 999 0 nonexistent
## 3818 telephone may fri 254 16 999 0 nonexistent
## 3819 telephone may fri 243 3 999 0 nonexistent
## 3820 telephone may fri 344 4 999 0 nonexistent
## 3821 telephone may fri 131 4 999 0 nonexistent
## 3822 telephone may fri 251 4 999 0 nonexistent
## 3823 telephone may fri 1135 2 999 0 nonexistent
## 3824 telephone may fri 1106 3 999 0 nonexistent
## 3825 telephone may fri 312 3 999 0 nonexistent
## 3826 telephone may fri 292 8 999 0 nonexistent
## 3827 telephone may fri 279 2 999 0 nonexistent
## 3828 telephone may fri 293 3 999 0 nonexistent
## 3829 telephone may fri 198 5 999 0 nonexistent
## 3830 telephone may fri 1408 2 999 0 nonexistent
## 3831 telephone may fri 827 2 999 0 nonexistent
## 3832 telephone may fri 303 5 999 0 nonexistent
## 3833 telephone may fri 588 3 999 0 nonexistent
## 3834 telephone may fri 680 3 999 0 nonexistent
## 3835 telephone may fri 160 6 999 0 nonexistent
## 3836 telephone may fri 21 3 999 0 nonexistent
## 3837 telephone may fri 251 3 999 0 nonexistent
## 3838 telephone may fri 476 3 999 0 nonexistent
## 3839 telephone may fri 81 6 999 0 nonexistent
## 3840 telephone may fri 4 2 999 0 nonexistent
## 3841 telephone may fri 283 3 999 0 nonexistent
## 3842 telephone may fri 248 2 999 0 nonexistent
## 3843 telephone may fri 541 5 999 0 nonexistent
## 3844 telephone may fri 227 2 999 0 nonexistent
## 3845 telephone may fri 427 3 999 0 nonexistent
## 3846 telephone may fri 148 9 999 0 nonexistent
## 3847 telephone may fri 408 10 999 0 nonexistent
## 3848 telephone may fri 255 3 999 0 nonexistent
## 3849 telephone may fri 236 2 999 0 nonexistent
## 3850 telephone may fri 428 2 999 0 nonexistent
## 3851 telephone may fri 32 3 999 0 nonexistent
## 3852 telephone may fri 851 2 999 0 nonexistent
## 3853 telephone may fri 522 5 999 0 nonexistent
## 3854 telephone may fri 165 4 999 0 nonexistent
## 3855 telephone may fri 1193 5 999 0 nonexistent
## 3856 telephone may fri 1144 3 999 0 nonexistent
## 3857 telephone may fri 730 2 999 0 nonexistent
## 3858 telephone may fri 167 2 999 0 nonexistent
## 3859 telephone may fri 1023 4 999 0 nonexistent
## 3860 telephone may fri 469 2 999 0 nonexistent
## 3861 telephone may fri 385 7 999 0 nonexistent
## 3862 telephone may fri 169 3 999 0 nonexistent
## 3863 telephone may fri 409 3 999 0 nonexistent
## 3864 telephone may fri 165 6 999 0 nonexistent
## 3865 telephone may fri 437 2 999 0 nonexistent
## 3866 telephone may fri 89 2 999 0 nonexistent
## 3867 telephone may fri 261 6 999 0 nonexistent
## 3868 telephone may fri 294 4 999 0 nonexistent
## 3869 telephone may fri 1245 19 999 0 nonexistent
## 3870 telephone may fri 498 2 999 0 nonexistent
## 3871 telephone may fri 134 4 999 0 nonexistent
## 3872 telephone may fri 230 2 999 0 nonexistent
## 3873 telephone may fri 192 20 999 0 nonexistent
## 3874 telephone may fri 65 3 999 0 nonexistent
## 3875 telephone may fri 237 3 999 0 nonexistent
## 3876 telephone may fri 239 2 999 0 nonexistent
## 3877 telephone may fri 196 6 999 0 nonexistent
## 3878 telephone may fri 243 2 999 0 nonexistent
## 3879 telephone may fri 393 2 999 0 nonexistent
## 3880 telephone may fri 512 6 999 0 nonexistent
## 3881 telephone may fri 218 3 999 0 nonexistent
## 3882 telephone may fri 215 3 999 0 nonexistent
## 3883 telephone may fri 186 5 999 0 nonexistent
## 3884 telephone may fri 299 4 999 0 nonexistent
## 3885 telephone may fri 107 3 999 0 nonexistent
## 3886 telephone may fri 103 7 999 0 nonexistent
## 3887 telephone may fri 297 4 999 0 nonexistent
## 3888 telephone may fri 1064 4 999 0 nonexistent
## 3889 telephone may fri 90 7 999 0 nonexistent
## 3890 telephone may fri 59 5 999 0 nonexistent
## 3891 telephone may fri 102 4 999 0 nonexistent
## 3892 telephone may fri 1110 3 999 0 nonexistent
## 3893 telephone may fri 1187 4 999 0 nonexistent
## 3894 telephone may mon 93 4 999 0 nonexistent
## 3895 telephone may mon 119 2 999 0 nonexistent
## 3896 telephone may mon 65 3 999 0 nonexistent
## 3897 telephone may mon 79 19 999 0 nonexistent
## 3898 telephone may mon 145 4 999 0 nonexistent
## 3899 telephone may mon 39 6 999 0 nonexistent
## 3900 telephone may mon 105 2 999 0 nonexistent
## 3901 telephone may mon 311 2 999 0 nonexistent
## 3902 telephone may mon 179 4 999 0 nonexistent
## 3903 telephone may mon 62 2 999 0 nonexistent
## 3904 telephone may mon 115 2 999 0 nonexistent
## 3905 telephone may mon 134 2 999 0 nonexistent
## 3906 telephone may mon 594 2 999 0 nonexistent
## 3907 telephone may mon 55 3 999 0 nonexistent
## 3908 telephone may mon 92 2 999 0 nonexistent
## 3909 telephone may mon 19 5 999 0 nonexistent
## 3910 telephone may mon 501 3 999 0 nonexistent
## 3911 telephone may mon 114 2 999 0 nonexistent
## 3912 telephone may mon 221 2 999 0 nonexistent
## 3913 telephone may mon 219 2 999 0 nonexistent
## 3914 telephone may mon 221 4 999 0 nonexistent
## 3915 telephone may mon 374 6 999 0 nonexistent
## 3916 telephone may mon 123 1 999 0 nonexistent
## 3917 telephone may mon 166 1 999 0 nonexistent
## 3918 telephone may mon 128 1 999 0 nonexistent
## 3919 telephone may mon 37 1 999 0 nonexistent
## 3920 telephone may mon 35 1 999 0 nonexistent
## 3921 telephone may mon 668 7 999 0 nonexistent
## 3922 telephone may mon 88 5 999 0 nonexistent
## 3923 telephone may mon 77 2 999 0 nonexistent
## 3924 telephone may mon 358 3 999 0 nonexistent
## 3925 telephone may mon 312 1 999 0 nonexistent
## 3926 telephone may mon 134 3 999 0 nonexistent
## 3927 telephone may mon 61 4 999 0 nonexistent
## 3928 telephone may mon 258 1 999 0 nonexistent
## 3929 telephone may mon 131 2 999 0 nonexistent
## 3930 telephone may mon 71 1 999 0 nonexistent
## 3931 telephone may mon 153 1 999 0 nonexistent
## 3932 telephone may mon 131 1 999 0 nonexistent
## 3933 telephone may mon 219 1 999 0 nonexistent
## 3934 telephone may mon 468 1 999 0 nonexistent
## 3935 telephone may mon 326 2 999 0 nonexistent
## 3936 telephone may mon 412 1 999 0 nonexistent
## 3937 telephone may mon 579 1 999 0 nonexistent
## 3938 telephone may mon 277 3 999 0 nonexistent
## 3939 telephone may mon 316 2 999 0 nonexistent
## 3940 telephone may mon 882 1 999 0 nonexistent
## 3941 telephone may mon 380 1 999 0 nonexistent
## 3942 telephone may mon 169 1 999 0 nonexistent
## 3943 telephone may mon 124 1 999 0 nonexistent
## 3944 telephone may mon 122 6 999 0 nonexistent
## 3945 telephone may mon 83 4 999 0 nonexistent
## 3946 telephone may mon 318 1 999 0 nonexistent
## 3947 telephone may mon 29 3 999 0 nonexistent
## 3948 telephone may mon 218 1 999 0 nonexistent
## 3949 telephone may mon 144 2 999 0 nonexistent
## 3950 telephone may mon 130 2 999 0 nonexistent
## 3951 telephone may mon 429 1 999 0 nonexistent
## 3952 telephone may mon 27 1 999 0 nonexistent
## 3953 telephone may mon 343 2 999 0 nonexistent
## 3954 telephone may mon 385 1 999 0 nonexistent
## 3955 telephone may mon 167 3 999 0 nonexistent
## 3956 telephone may mon 89 1 999 0 nonexistent
## 3957 telephone may mon 95 1 999 0 nonexistent
## 3958 telephone may mon 289 1 999 0 nonexistent
## 3959 telephone may mon 156 1 999 0 nonexistent
## 3960 telephone may mon 112 1 999 0 nonexistent
## 3961 telephone may mon 351 1 999 0 nonexistent
## 3962 telephone may mon 198 1 999 0 nonexistent
## 3963 telephone may mon 165 1 999 0 nonexistent
## 3964 telephone may mon 25 1 999 0 nonexistent
## 3965 telephone may mon 134 2 999 0 nonexistent
## 3966 telephone may mon 268 6 999 0 nonexistent
## 3967 telephone may mon 298 1 999 0 nonexistent
## 3968 telephone may mon 188 2 999 0 nonexistent
## 3969 telephone may mon 241 1 999 0 nonexistent
## 3970 telephone may mon 201 1 999 0 nonexistent
## 3971 telephone may mon 27 1 999 0 nonexistent
## 3972 telephone may mon 206 1 999 0 nonexistent
## 3973 telephone may mon 68 1 999 0 nonexistent
## 3974 telephone may mon 82 3 999 0 nonexistent
## 3975 telephone may mon 94 2 999 0 nonexistent
## 3976 telephone may mon 97 2 999 0 nonexistent
## 3977 telephone may mon 138 1 999 0 nonexistent
## 3978 telephone may mon 285 2 999 0 nonexistent
## 3979 telephone may mon 135 1 999 0 nonexistent
## 3980 telephone may mon 483 2 999 0 nonexistent
## 3981 telephone may mon 267 1 999 0 nonexistent
## 3982 telephone may mon 382 2 999 0 nonexistent
## 3983 telephone may mon 55 2 999 0 nonexistent
## 3984 telephone may mon 259 3 999 0 nonexistent
## 3985 telephone may mon 18 1 999 0 nonexistent
## 3986 telephone may mon 234 1 999 0 nonexistent
## 3987 telephone may mon 792 4 999 0 nonexistent
## 3988 telephone may mon 95 1 999 0 nonexistent
## 3989 telephone may mon 943 2 999 0 nonexistent
## 3990 telephone may mon 798 1 999 0 nonexistent
## 3991 telephone may mon 168 1 999 0 nonexistent
## 3992 telephone may mon 84 12 999 0 nonexistent
## 3993 telephone may mon 100 3 999 0 nonexistent
## 3994 telephone may mon 85 4 999 0 nonexistent
## 3995 telephone may mon 143 1 999 0 nonexistent
## 3996 telephone may mon 115 1 999 0 nonexistent
## 3997 telephone may mon 23 1 999 0 nonexistent
## 3998 telephone may mon 73 1 999 0 nonexistent
## 3999 telephone may mon 31 1 999 0 nonexistent
## 4000 telephone may mon 182 2 999 0 nonexistent
## 4001 telephone may mon 190 1 999 0 nonexistent
## 4002 telephone may mon 351 1 999 0 nonexistent
## 4003 telephone may mon 179 1 999 0 nonexistent
## 4004 telephone may mon 237 1 999 0 nonexistent
## 4005 telephone may mon 107 2 999 0 nonexistent
## 4006 telephone may mon 529 3 999 0 nonexistent
## 4007 telephone may mon 36 1 999 0 nonexistent
## 4008 telephone may mon 122 2 999 0 nonexistent
## 4009 telephone may mon 198 1 999 0 nonexistent
## 4010 telephone may mon 67 1 999 0 nonexistent
## 4011 telephone may mon 238 3 999 0 nonexistent
## 4012 telephone may mon 81 1 999 0 nonexistent
## 4013 telephone may mon 496 3 999 0 nonexistent
## 4014 telephone may mon 114 2 999 0 nonexistent
## 4015 telephone may mon 156 5 999 0 nonexistent
## 4016 telephone may mon 211 2 999 0 nonexistent
## 4017 telephone may mon 265 1 999 0 nonexistent
## 4018 telephone may mon 48 2 999 0 nonexistent
## 4019 telephone may mon 104 2 999 0 nonexistent
## 4020 telephone may mon 610 1 999 0 nonexistent
## 4021 telephone may mon 287 1 999 0 nonexistent
## 4022 telephone may mon 68 2 999 0 nonexistent
## 4023 telephone may mon 167 4 999 0 nonexistent
## 4024 telephone may mon 336 1 999 0 nonexistent
## 4025 telephone may mon 202 1 999 0 nonexistent
## 4026 telephone may mon 228 1 999 0 nonexistent
## 4027 telephone may mon 192 1 999 0 nonexistent
## 4028 telephone may mon 23 1 999 0 nonexistent
## 4029 telephone may mon 260 1 999 0 nonexistent
## 4030 telephone may mon 387 1 999 0 nonexistent
## 4031 telephone may mon 70 1 999 0 nonexistent
## 4032 telephone may mon 272 1 999 0 nonexistent
## 4033 telephone may mon 158 2 999 0 nonexistent
## 4034 telephone may mon 35 3 999 0 nonexistent
## 4035 telephone may mon 607 1 999 0 nonexistent
## 4036 telephone may mon 257 1 999 0 nonexistent
## 4037 telephone may mon 36 2 999 0 nonexistent
## 4038 telephone may mon 214 3 999 0 nonexistent
## 4039 telephone may mon 105 2 999 0 nonexistent
## 4040 telephone may mon 260 9 999 0 nonexistent
## 4041 telephone may mon 197 4 999 0 nonexistent
## 4042 telephone may mon 174 2 999 0 nonexistent
## 4043 telephone may mon 144 2 999 0 nonexistent
## 4044 telephone may mon 222 2 999 0 nonexistent
## 4045 telephone may mon 136 2 999 0 nonexistent
## 4046 telephone may mon 546 12 999 0 nonexistent
## 4047 telephone may mon 49 2 999 0 nonexistent
## 4048 telephone may mon 335 4 999 0 nonexistent
## 4049 telephone may mon 105 1 999 0 nonexistent
## 4050 telephone may mon 1203 3 999 0 nonexistent
## 4051 telephone may mon 1022 4 999 0 nonexistent
## 4052 telephone may mon 128 1 999 0 nonexistent
## 4053 telephone may mon 258 1 999 0 nonexistent
## 4054 telephone may mon 199 1 999 0 nonexistent
## 4055 telephone may mon 364 1 999 0 nonexistent
## 4056 telephone may mon 123 1 999 0 nonexistent
## 4057 telephone may mon 201 14 999 0 nonexistent
## 4058 telephone may mon 193 3 999 0 nonexistent
## 4059 telephone may mon 159 3 999 0 nonexistent
## 4060 telephone may mon 166 3 999 0 nonexistent
## 4061 telephone may mon 480 1 999 0 nonexistent
## 4062 telephone may mon 149 4 999 0 nonexistent
## 4063 telephone may mon 396 3 999 0 nonexistent
## 4064 telephone may mon 124 3 999 0 nonexistent
## 4065 telephone may mon 13 1 999 0 nonexistent
## 4066 telephone may mon 259 1 999 0 nonexistent
## 4067 telephone may mon 162 1 999 0 nonexistent
## 4068 telephone may mon 723 1 999 0 nonexistent
## 4069 telephone may mon 89 1 999 0 nonexistent
## 4070 telephone may mon 257 2 999 0 nonexistent
## 4071 telephone may mon 361 2 999 0 nonexistent
## 4072 telephone may mon 314 1 999 0 nonexistent
## 4073 telephone may mon 83 1 999 0 nonexistent
## 4074 telephone may mon 215 1 999 0 nonexistent
## 4075 telephone may mon 115 4 999 0 nonexistent
## 4076 telephone may mon 147 3 999 0 nonexistent
## 4077 telephone may mon 102 1 999 0 nonexistent
## 4078 telephone may mon 183 7 999 0 nonexistent
## 4079 telephone may mon 70 1 999 0 nonexistent
## 4080 telephone may mon 19 1 999 0 nonexistent
## 4081 telephone may mon 346 1 999 0 nonexistent
## 4082 telephone may mon 643 1 999 0 nonexistent
## 4083 telephone may mon 78 1 999 0 nonexistent
## 4084 telephone may mon 133 1 999 0 nonexistent
## 4085 telephone may mon 193 6 999 0 nonexistent
## 4086 telephone may mon 181 1 999 0 nonexistent
## 4087 telephone may mon 513 1 999 0 nonexistent
## 4088 telephone may mon 109 2 999 0 nonexistent
## 4089 telephone may mon 263 1 999 0 nonexistent
## 4090 telephone may mon 333 1 999 0 nonexistent
## 4091 telephone may mon 104 1 999 0 nonexistent
## 4092 telephone may mon 191 4 999 0 nonexistent
## 4093 telephone may mon 571 1 999 0 nonexistent
## 4094 telephone may mon 180 1 999 0 nonexistent
## 4095 telephone may mon 446 3 999 0 nonexistent
## 4096 telephone may mon 107 2 999 0 nonexistent
## 4097 telephone may mon 335 3 999 0 nonexistent
## 4098 telephone may mon 120 3 999 0 nonexistent
## 4099 telephone may mon 219 2 999 0 nonexistent
## 4100 telephone may mon 148 1 999 0 nonexistent
## 4101 telephone may mon 400 2 999 0 nonexistent
## 4102 telephone may mon 503 2 999 0 nonexistent
## 4103 telephone may mon 125 5 999 0 nonexistent
## 4104 telephone may mon 329 1 999 0 nonexistent
## 4105 telephone may mon 194 3 999 0 nonexistent
## 4106 telephone may mon 7 1 999 0 nonexistent
## 4107 telephone may mon 53 1 999 0 nonexistent
## 4108 telephone may mon 261 56 999 0 nonexistent
## 4109 telephone may mon 100 1 999 0 nonexistent
## 4110 telephone may mon 104 1 999 0 nonexistent
## 4111 telephone may mon 552 3 999 0 nonexistent
## 4112 telephone may mon 345 1 999 0 nonexistent
## 4113 telephone may mon 263 1 999 0 nonexistent
## 4114 telephone may mon 88 6 999 0 nonexistent
## 4115 telephone may mon 44 39 999 0 nonexistent
## 4116 telephone may mon 207 3 999 0 nonexistent
## 4117 telephone may mon 401 2 999 0 nonexistent
## 4118 telephone may mon 178 5 999 0 nonexistent
## 4119 telephone may mon 53 5 999 0 nonexistent
## 4120 telephone may mon 349 2 999 0 nonexistent
## 4121 telephone may mon 34 9 999 0 nonexistent
## 4122 telephone may mon 48 3 999 0 nonexistent
## 4123 telephone may mon 182 11 999 0 nonexistent
## 4124 telephone may mon 147 1 999 0 nonexistent
## 4125 telephone may mon 457 5 999 0 nonexistent
## 4126 telephone may mon 193 1 999 0 nonexistent
## 4127 telephone may mon 142 3 999 0 nonexistent
## 4128 telephone may mon 123 2 999 0 nonexistent
## 4129 telephone may mon 65 3 999 0 nonexistent
## 4130 telephone may mon 420 1 999 0 nonexistent
## 4131 telephone may mon 100 2 999 0 nonexistent
## 4132 telephone may mon 403 2 999 0 nonexistent
## 4133 telephone may mon 229 3 999 0 nonexistent
## 4134 telephone may mon 445 2 999 0 nonexistent
## 4135 telephone may mon 206 4 999 0 nonexistent
## 4136 telephone may mon 182 2 999 0 nonexistent
## 4137 telephone may mon 183 2 999 0 nonexistent
## 4138 telephone may mon 140 2 999 0 nonexistent
## 4139 telephone may mon 134 3 999 0 nonexistent
## 4140 telephone may mon 88 35 999 0 nonexistent
## 4141 telephone may mon 234 13 999 0 nonexistent
## 4142 telephone may mon 215 3 999 0 nonexistent
## 4143 telephone may mon 194 5 999 0 nonexistent
## 4144 telephone may mon 394 2 999 0 nonexistent
## 4145 telephone may mon 5 2 999 0 nonexistent
## 4146 telephone may mon 408 2 999 0 nonexistent
## 4147 telephone may mon 114 2 999 0 nonexistent
## 4148 telephone may mon 210 2 999 0 nonexistent
## 4149 telephone may mon 243 6 999 0 nonexistent
## 4150 telephone may mon 180 6 999 0 nonexistent
## 4151 telephone may mon 8 2 999 0 nonexistent
## 4152 telephone may mon 313 2 999 0 nonexistent
## 4153 telephone may mon 1622 2 999 0 nonexistent
## 4154 telephone may mon 324 2 999 0 nonexistent
## 4155 telephone may mon 205 3 999 0 nonexistent
## 4156 telephone may mon 194 2 999 0 nonexistent
## 4157 telephone may mon 165 5 999 0 nonexistent
## 4158 telephone may mon 86 7 999 0 nonexistent
## 4159 telephone may mon 160 2 999 0 nonexistent
## 4160 telephone may mon 492 6 999 0 nonexistent
## 4161 telephone may mon 187 3 999 0 nonexistent
## 4162 telephone may mon 197 4 999 0 nonexistent
## 4163 telephone may mon 95 5 999 0 nonexistent
## 4164 telephone may mon 159 3 999 0 nonexistent
## 4165 telephone may mon 967 6 999 0 nonexistent
## 4166 telephone may mon 260 3 999 0 nonexistent
## 4167 telephone may mon 109 2 999 0 nonexistent
## 4168 telephone may mon 579 5 999 0 nonexistent
## 4169 telephone may mon 124 42 999 0 nonexistent
## 4170 telephone may mon 158 5 999 0 nonexistent
## 4171 telephone may mon 162 10 999 0 nonexistent
## 4172 telephone may mon 211 2 999 0 nonexistent
## 4173 telephone may mon 173 5 999 0 nonexistent
## 4174 telephone may mon 73 7 999 0 nonexistent
## 4175 telephone may mon 220 3 999 0 nonexistent
## 4176 telephone may mon 110 2 999 0 nonexistent
## 4177 telephone may mon 99 22 999 0 nonexistent
## 4178 telephone may mon 112 7 999 0 nonexistent
## 4179 telephone may mon 168 4 999 0 nonexistent
## 4180 telephone may mon 283 3 999 0 nonexistent
## 4181 telephone may mon 235 7 999 0 nonexistent
## 4182 telephone may mon 138 8 999 0 nonexistent
## 4183 telephone may mon 374 6 999 0 nonexistent
## 4184 telephone may mon 353 4 999 0 nonexistent
## 4185 telephone may mon 147 2 999 0 nonexistent
## 4186 telephone may mon 332 10 999 0 nonexistent
## 4187 telephone may mon 179 9 999 0 nonexistent
## 4188 telephone may mon 396 9 999 0 nonexistent
## 4189 telephone may mon 492 9 999 0 nonexistent
## 4190 telephone may mon 360 2 999 0 nonexistent
## 4191 telephone may mon 175 2 999 0 nonexistent
## 4192 telephone may mon 97 9 999 0 nonexistent
## 4193 telephone may mon 84 3 999 0 nonexistent
## 4194 telephone may mon 57 7 999 0 nonexistent
## 4195 telephone may mon 105 11 999 0 nonexistent
## 4196 telephone may mon 886 3 999 0 nonexistent
## 4197 telephone may mon 182 8 999 0 nonexistent
## 4198 telephone may mon 467 4 999 0 nonexistent
## 4199 telephone may mon 21 11 999 0 nonexistent
## 4200 telephone may mon 470 4 999 0 nonexistent
## 4201 telephone may mon 85 3 999 0 nonexistent
## 4202 telephone may mon 120 7 999 0 nonexistent
## 4203 telephone may mon 298 2 999 0 nonexistent
## 4204 telephone may mon 249 2 999 0 nonexistent
## 4205 telephone may mon 87 5 999 0 nonexistent
## 4206 telephone may mon 622 2 999 0 nonexistent
## 4207 telephone may mon 195 4 999 0 nonexistent
## 4208 telephone may mon 179 2 999 0 nonexistent
## 4209 telephone may mon 58 10 999 0 nonexistent
## 4210 telephone may mon 1218 3 999 0 nonexistent
## 4211 telephone may mon 500 3 999 0 nonexistent
## 4212 telephone may mon 66 9 999 0 nonexistent
## 4213 telephone may mon 328 10 999 0 nonexistent
## 4214 telephone may mon 3078 4 999 0 nonexistent
## 4215 telephone may tue 21 7 999 0 nonexistent
## 4216 telephone may tue 150 1 999 0 nonexistent
## 4217 telephone may tue 148 5 999 0 nonexistent
## 4218 telephone may tue 102 1 999 0 nonexistent
## 4219 telephone may tue 91 1 999 0 nonexistent
## 4220 telephone may tue 201 1 999 0 nonexistent
## 4221 telephone may tue 70 1 999 0 nonexistent
## 4222 telephone may tue 19 15 999 0 nonexistent
## 4223 telephone may tue 82 9 999 0 nonexistent
## 4224 telephone may tue 59 1 999 0 nonexistent
## 4225 telephone may tue 182 1 999 0 nonexistent
## 4226 telephone may tue 365 4 999 0 nonexistent
## 4227 telephone may tue 257 1 999 0 nonexistent
## 4228 telephone may tue 280 1 999 0 nonexistent
## 4229 telephone may tue 16 10 999 0 nonexistent
## 4230 telephone may tue 249 1 999 0 nonexistent
## 4231 telephone may tue 140 1 999 0 nonexistent
## 4232 telephone may tue 184 1 999 0 nonexistent
## 4233 telephone may tue 20 12 999 0 nonexistent
## 4234 telephone may tue 686 1 999 0 nonexistent
## 4235 telephone may tue 107 2 999 0 nonexistent
## 4236 telephone may tue 224 1 999 0 nonexistent
## 4237 telephone may tue 172 1 999 0 nonexistent
## 4238 telephone may tue 19 1 999 0 nonexistent
## 4239 telephone may tue 125 4 999 0 nonexistent
## 4240 telephone may tue 280 1 999 0 nonexistent
## 4241 telephone may tue 216 1 999 0 nonexistent
## 4242 telephone may tue 109 1 999 0 nonexistent
## 4243 telephone may tue 81 1 999 0 nonexistent
## 4244 telephone may tue 409 2 999 0 nonexistent
## 4245 telephone may tue 146 1 999 0 nonexistent
## 4246 telephone may tue 83 1 999 0 nonexistent
## 4247 telephone may tue 226 1 999 0 nonexistent
## 4248 telephone may tue 191 1 999 0 nonexistent
## 4249 telephone may tue 171 1 999 0 nonexistent
## 4250 telephone may tue 13 12 999 0 nonexistent
## 4251 telephone may tue 133 1 999 0 nonexistent
## 4252 telephone may tue 656 1 999 0 nonexistent
## 4253 telephone may tue 1205 1 999 0 nonexistent
## 4254 telephone may tue 202 6 999 0 nonexistent
## 4255 telephone may tue 206 1 999 0 nonexistent
## 4256 telephone may tue 202 1 999 0 nonexistent
## 4257 telephone may tue 79 1 999 0 nonexistent
## 4258 telephone may tue 196 1 999 0 nonexistent
## 4259 telephone may tue 186 4 999 0 nonexistent
## 4260 telephone may tue 532 1 999 0 nonexistent
## 4261 telephone may tue 97 2 999 0 nonexistent
## 4262 telephone may tue 234 5 999 0 nonexistent
## 4263 telephone may tue 216 1 999 0 nonexistent
## 4264 telephone may tue 297 1 999 0 nonexistent
## 4265 telephone may tue 1882 2 999 0 nonexistent
## 4266 telephone may tue 243 1 999 0 nonexistent
## 4267 telephone may tue 98 1 999 0 nonexistent
## 4268 telephone may tue 81 1 999 0 nonexistent
## 4269 telephone may tue 1334 1 999 0 nonexistent
## 4270 telephone may tue 190 1 999 0 nonexistent
## 4271 telephone may tue 142 3 999 0 nonexistent
## 4272 telephone may tue 775 1 999 0 nonexistent
## 4273 telephone may tue 335 1 999 0 nonexistent
## 4274 telephone may tue 168 1 999 0 nonexistent
## 4275 telephone may tue 68 2 999 0 nonexistent
## 4276 telephone may tue 217 1 999 0 nonexistent
## 4277 telephone may tue 68 1 999 0 nonexistent
## 4278 telephone may tue 119 1 999 0 nonexistent
## 4279 telephone may tue 160 1 999 0 nonexistent
## 4280 telephone may tue 294 10 999 0 nonexistent
## 4281 telephone may tue 57 1 999 0 nonexistent
## 4282 telephone may tue 297 2 999 0 nonexistent
## 4283 telephone may tue 90 1 999 0 nonexistent
## 4284 telephone may tue 600 1 999 0 nonexistent
## 4285 telephone may tue 38 1 999 0 nonexistent
## 4286 telephone may tue 217 1 999 0 nonexistent
## 4287 telephone may tue 142 1 999 0 nonexistent
## 4288 telephone may tue 26 1 999 0 nonexistent
## 4289 telephone may tue 369 1 999 0 nonexistent
## 4290 telephone may tue 29 1 999 0 nonexistent
## 4291 telephone may tue 274 1 999 0 nonexistent
## 4292 telephone may tue 214 1 999 0 nonexistent
## 4293 telephone may tue 24 1 999 0 nonexistent
## 4294 telephone may tue 793 2 999 0 nonexistent
## 4295 telephone may tue 182 2 999 0 nonexistent
## 4296 telephone may tue 71 1 999 0 nonexistent
## 4297 telephone may tue 203 1 999 0 nonexistent
## 4298 telephone may tue 166 1 999 0 nonexistent
## 4299 telephone may tue 167 1 999 0 nonexistent
## 4300 telephone may tue 37 1 999 0 nonexistent
## 4301 telephone may tue 154 1 999 0 nonexistent
## 4302 telephone may tue 394 1 999 0 nonexistent
## 4303 telephone may tue 127 1 999 0 nonexistent
## 4304 telephone may tue 264 1 999 0 nonexistent
## 4305 telephone may tue 231 1 999 0 nonexistent
## 4306 telephone may tue 320 1 999 0 nonexistent
## 4307 telephone may tue 618 1 999 0 nonexistent
## 4308 telephone may tue 101 1 999 0 nonexistent
## 4309 telephone may tue 110 1 999 0 nonexistent
## 4310 telephone may tue 121 3 999 0 nonexistent
## 4311 telephone may tue 85 1 999 0 nonexistent
## 4312 telephone may tue 265 1 999 0 nonexistent
## 4313 telephone may tue 171 1 999 0 nonexistent
## 4314 telephone may tue 345 1 999 0 nonexistent
## 4315 telephone may tue 224 1 999 0 nonexistent
## 4316 telephone may tue 171 1 999 0 nonexistent
## 4317 telephone may tue 67 1 999 0 nonexistent
## 4318 telephone may tue 186 1 999 0 nonexistent
## 4319 telephone may tue 269 1 999 0 nonexistent
## 4320 telephone may tue 115 1 999 0 nonexistent
## 4321 telephone may tue 273 1 999 0 nonexistent
## 4322 telephone may tue 65 1 999 0 nonexistent
## 4323 telephone may tue 434 1 999 0 nonexistent
## 4324 telephone may tue 148 1 999 0 nonexistent
## 4325 telephone may tue 507 1 999 0 nonexistent
## 4326 telephone may tue 253 1 999 0 nonexistent
## 4327 telephone may tue 27 1 999 0 nonexistent
## 4328 telephone may tue 100 1 999 0 nonexistent
## 4329 telephone may tue 116 1 999 0 nonexistent
## 4330 telephone may tue 124 1 999 0 nonexistent
## 4331 telephone may tue 66 2 999 0 nonexistent
## 4332 telephone may tue 233 2 999 0 nonexistent
## 4333 telephone may tue 380 1 999 0 nonexistent
## 4334 telephone may tue 90 1 999 0 nonexistent
## 4335 telephone may tue 258 1 999 0 nonexistent
## 4336 telephone may tue 92 2 999 0 nonexistent
## 4337 telephone may tue 423 1 999 0 nonexistent
## 4338 telephone may tue 215 2 999 0 nonexistent
## 4339 telephone may tue 209 1 999 0 nonexistent
## 4340 telephone may tue 181 1 999 0 nonexistent
## 4341 telephone may tue 201 1 999 0 nonexistent
## 4342 telephone may tue 360 6 999 0 nonexistent
## 4343 telephone may tue 155 1 999 0 nonexistent
## 4344 telephone may tue 81 2 999 0 nonexistent
## 4345 telephone may tue 40 1 999 0 nonexistent
## 4346 telephone may tue 447 1 999 0 nonexistent
## 4347 telephone may tue 137 1 999 0 nonexistent
## 4348 telephone may tue 184 1 999 0 nonexistent
## 4349 telephone may tue 121 1 999 0 nonexistent
## 4350 telephone may tue 138 4 999 0 nonexistent
## 4351 telephone may tue 207 6 999 0 nonexistent
## 4352 telephone may tue 309 1 999 0 nonexistent
## 4353 telephone may tue 134 1 999 0 nonexistent
## 4354 telephone may tue 1777 1 999 0 nonexistent
## 4355 telephone may tue 284 1 999 0 nonexistent
## 4356 telephone may tue 70 2 999 0 nonexistent
## 4357 telephone may tue 774 1 999 0 nonexistent
## 4358 telephone may tue 62 1 999 0 nonexistent
## 4359 telephone may tue 247 2 999 0 nonexistent
## 4360 telephone may tue 318 3 999 0 nonexistent
## 4361 telephone may tue 277 2 999 0 nonexistent
## 4362 telephone may tue 126 3 999 0 nonexistent
## 4363 telephone may tue 411 1 999 0 nonexistent
## 4364 telephone may tue 85 1 999 0 nonexistent
## 4365 telephone may tue 378 1 999 0 nonexistent
## 4366 telephone may tue 83 1 999 0 nonexistent
## 4367 telephone may tue 71 3 999 0 nonexistent
## 4368 telephone may tue 102 2 999 0 nonexistent
## 4369 telephone may tue 869 2 999 0 nonexistent
## 4370 telephone may tue 208 2 999 0 nonexistent
## 4371 telephone may tue 199 4 999 0 nonexistent
## 4372 telephone may tue 47 1 999 0 nonexistent
## 4373 telephone may tue 253 1 999 0 nonexistent
## 4374 telephone may tue 244 1 999 0 nonexistent
## 4375 telephone may tue 311 1 999 0 nonexistent
## 4376 telephone may tue 177 1 999 0 nonexistent
## 4377 telephone may tue 217 2 999 0 nonexistent
## 4378 telephone may tue 189 1 999 0 nonexistent
## 4379 telephone may tue 152 1 999 0 nonexistent
## 4380 telephone may tue 151 1 999 0 nonexistent
## 4381 telephone may tue 24 1 999 0 nonexistent
## 4382 telephone may tue 212 1 999 0 nonexistent
## 4383 telephone may tue 184 1 999 0 nonexistent
## 4384 telephone may tue 473 2 999 0 nonexistent
## 4385 telephone may tue 485 1 999 0 nonexistent
## 4386 telephone may tue 140 1 999 0 nonexistent
## 4387 telephone may tue 172 1 999 0 nonexistent
## 4388 telephone may tue 77 2 999 0 nonexistent
## 4389 telephone may tue 396 1 999 0 nonexistent
## 4390 telephone may tue 274 2 999 0 nonexistent
## 4391 telephone may tue 88 2 999 0 nonexistent
## 4392 telephone may tue 129 2 999 0 nonexistent
## 4393 telephone may tue 346 2 999 0 nonexistent
## 4394 telephone may tue 474 2 999 0 nonexistent
## 4395 telephone may tue 268 2 999 0 nonexistent
## 4396 telephone may tue 222 2 999 0 nonexistent
## 4397 telephone may tue 139 2 999 0 nonexistent
## 4398 telephone may tue 1313 2 999 0 nonexistent
## 4399 telephone may tue 72 5 999 0 nonexistent
## 4400 telephone may tue 309 1 999 0 nonexistent
## 4401 telephone may tue 61 2 999 0 nonexistent
## 4402 telephone may tue 246 3 999 0 nonexistent
## 4403 telephone may tue 205 2 999 0 nonexistent
## 4404 telephone may tue 347 6 999 0 nonexistent
## 4405 telephone may tue 381 2 999 0 nonexistent
## 4406 telephone may tue 355 1 999 0 nonexistent
## 4407 telephone may tue 256 1 999 0 nonexistent
## 4408 telephone may tue 211 2 999 0 nonexistent
## 4409 telephone may tue 211 1 999 0 nonexistent
## 4410 telephone may tue 66 12 999 0 nonexistent
## 4411 telephone may tue 1452 10 999 0 nonexistent
## 4412 telephone may tue 487 2 999 0 nonexistent
## 4413 telephone may tue 610 2 999 0 nonexistent
## 4414 telephone may tue 120 1 999 0 nonexistent
## 4415 telephone may tue 464 2 999 0 nonexistent
## 4416 telephone may tue 547 7 999 0 nonexistent
## 4417 telephone may tue 152 2 999 0 nonexistent
## 4418 telephone may tue 522 1 999 0 nonexistent
## 4419 telephone may tue 227 9 999 0 nonexistent
## 4420 telephone may tue 129 2 999 0 nonexistent
## 4421 telephone may tue 1376 2 999 0 nonexistent
## 4422 telephone may tue 37 1 999 0 nonexistent
## 4423 telephone may tue 360 1 999 0 nonexistent
## 4424 telephone may tue 51 1 999 0 nonexistent
## 4425 telephone may tue 834 6 999 0 nonexistent
## 4426 telephone may tue 195 10 999 0 nonexistent
## 4427 telephone may tue 106 1 999 0 nonexistent
## 4428 telephone may tue 194 1 999 0 nonexistent
## 4429 telephone may tue 535 1 999 0 nonexistent
## 4430 telephone may tue 182 1 999 0 nonexistent
## 4431 telephone may tue 296 1 999 0 nonexistent
## 4432 telephone may tue 201 1 999 0 nonexistent
## 4433 telephone may tue 281 1 999 0 nonexistent
## 4434 telephone may tue 150 1 999 0 nonexistent
## 4435 telephone may tue 76 1 999 0 nonexistent
## 4436 telephone may tue 79 1 999 0 nonexistent
## 4437 telephone may tue 359 2 999 0 nonexistent
## 4438 telephone may tue 332 2 999 0 nonexistent
## 4439 telephone may tue 592 1 999 0 nonexistent
## 4440 telephone may tue 166 1 999 0 nonexistent
## 4441 telephone may tue 245 1 999 0 nonexistent
## 4442 telephone may tue 138 8 999 0 nonexistent
## 4443 telephone may tue 369 1 999 0 nonexistent
## 4444 telephone may tue 158 1 999 0 nonexistent
## 4445 telephone may tue 261 1 999 0 nonexistent
## 4446 telephone may tue 131 1 999 0 nonexistent
## 4447 telephone may tue 592 1 999 0 nonexistent
## 4448 telephone may tue 412 1 999 0 nonexistent
## 4449 telephone may tue 137 2 999 0 nonexistent
## 4450 telephone may tue 324 1 999 0 nonexistent
## 4451 telephone may tue 266 1 999 0 nonexistent
## 4452 telephone may tue 335 1 999 0 nonexistent
## 4453 telephone may tue 235 2 999 0 nonexistent
## 4454 telephone may tue 697 2 999 0 nonexistent
## 4455 telephone may tue 170 2 999 0 nonexistent
## 4456 telephone may tue 272 2 999 0 nonexistent
## 4457 telephone may tue 1042 17 999 0 nonexistent
## 4458 telephone may tue 271 1 999 0 nonexistent
## 4459 telephone may tue 378 3 999 0 nonexistent
## 4460 telephone may tue 107 1 999 0 nonexistent
## 4461 telephone may tue 78 2 999 0 nonexistent
## 4462 telephone may tue 383 1 999 0 nonexistent
## 4463 telephone may tue 185 1 999 0 nonexistent
## 4464 telephone may tue 254 1 999 0 nonexistent
## 4465 telephone may tue 107 1 999 0 nonexistent
## 4466 telephone may tue 157 1 999 0 nonexistent
## 4467 telephone may tue 85 2 999 0 nonexistent
## 4468 telephone may tue 249 3 999 0 nonexistent
## 4469 telephone may tue 163 2 999 0 nonexistent
## 4470 telephone may tue 112 2 999 0 nonexistent
## 4471 telephone may tue 188 3 999 0 nonexistent
## 4472 telephone may tue 148 1 999 0 nonexistent
## 4473 telephone may tue 145 2 999 0 nonexistent
## 4474 telephone may tue 415 2 999 0 nonexistent
## 4475 telephone may tue 742 2 999 0 nonexistent
## 4476 telephone may tue 129 1 999 0 nonexistent
## 4477 telephone may tue 37 9 999 0 nonexistent
## 4478 telephone may tue 120 1 999 0 nonexistent
## 4479 telephone may tue 185 2 999 0 nonexistent
## 4480 telephone may tue 1045 1 999 0 nonexistent
## 4481 telephone may tue 204 1 999 0 nonexistent
## 4482 telephone may tue 205 2 999 0 nonexistent
## 4483 telephone may tue 74 2 999 0 nonexistent
## 4484 telephone may tue 190 2 999 0 nonexistent
## 4485 telephone may tue 325 3 999 0 nonexistent
## 4486 telephone may tue 650 3 999 0 nonexistent
## 4487 telephone may tue 148 2 999 0 nonexistent
## 4488 telephone may tue 38 8 999 0 nonexistent
## 4489 telephone may tue 625 2 999 0 nonexistent
## 4490 telephone may tue 175 3 999 0 nonexistent
## 4491 telephone may tue 134 3 999 0 nonexistent
## 4492 telephone may tue 97 8 999 0 nonexistent
## 4493 telephone may tue 282 2 999 0 nonexistent
## 4494 telephone may tue 304 2 999 0 nonexistent
## 4495 telephone may tue 438 2 999 0 nonexistent
## 4496 telephone may tue 999 3 999 0 nonexistent
## 4497 telephone may tue 127 2 999 0 nonexistent
## 4498 telephone may tue 446 2 999 0 nonexistent
## 4499 telephone may tue 289 3 999 0 nonexistent
## 4500 telephone may tue 217 4 999 0 nonexistent
## 4501 telephone may tue 169 1 999 0 nonexistent
## 4502 telephone may tue 247 3 999 0 nonexistent
## 4503 telephone may tue 140 1 999 0 nonexistent
## 4504 telephone may tue 60 6 999 0 nonexistent
## 4505 telephone may tue 99 1 999 0 nonexistent
## 4506 telephone may tue 26 14 999 0 nonexistent
## 4507 telephone may tue 128 6 999 0 nonexistent
## 4508 telephone may tue 215 3 999 0 nonexistent
## 4509 telephone may tue 64 1 999 0 nonexistent
## 4510 telephone may tue 52 10 999 0 nonexistent
## 4511 telephone may tue 216 2 999 0 nonexistent
## 4512 telephone may tue 292 1 999 0 nonexistent
## 4513 telephone may tue 129 7 999 0 nonexistent
## 4514 telephone may tue 201 4 999 0 nonexistent
## 4515 telephone may tue 210 2 999 0 nonexistent
## 4516 telephone may tue 114 1 999 0 nonexistent
## 4517 telephone may tue 657 1 999 0 nonexistent
## 4518 telephone may tue 88 1 999 0 nonexistent
## 4519 telephone may tue 147 2 999 0 nonexistent
## 4520 telephone may tue 443 1 999 0 nonexistent
## 4521 telephone may tue 73 1 999 0 nonexistent
## 4522 telephone may tue 127 8 999 0 nonexistent
## 4523 telephone may tue 1063 2 999 0 nonexistent
## 4524 telephone may tue 446 2 999 0 nonexistent
## 4525 telephone may tue 252 2 999 0 nonexistent
## 4526 telephone may tue 80 2 999 0 nonexistent
## 4527 telephone may tue 1446 1 999 0 nonexistent
## 4528 telephone may tue 144 2 999 0 nonexistent
## 4529 telephone may tue 412 2 999 0 nonexistent
## 4530 telephone may tue 222 2 999 0 nonexistent
## 4531 telephone may tue 29 16 999 0 nonexistent
## 4532 telephone may tue 165 2 999 0 nonexistent
## 4533 telephone may tue 154 2 999 0 nonexistent
## 4534 telephone may tue 202 3 999 0 nonexistent
## 4535 telephone may tue 723 2 999 0 nonexistent
## 4536 telephone may tue 550 2 999 0 nonexistent
## 4537 telephone may tue 130 2 999 0 nonexistent
## 4538 telephone may tue 192 2 999 0 nonexistent
## 4539 telephone may tue 146 2 999 0 nonexistent
## 4540 telephone may tue 239 2 999 0 nonexistent
## 4541 telephone may tue 304 2 999 0 nonexistent
## 4542 telephone may tue 114 3 999 0 nonexistent
## 4543 telephone may tue 139 3 999 0 nonexistent
## 4544 telephone may tue 445 2 999 0 nonexistent
## 4545 telephone may tue 139 5 999 0 nonexistent
## 4546 telephone may tue 16 10 999 0 nonexistent
## 4547 telephone may tue 169 4 999 0 nonexistent
## 4548 telephone may tue 125 3 999 0 nonexistent
## 4549 telephone may tue 266 2 999 0 nonexistent
## 4550 telephone may tue 446 12 999 0 nonexistent
## 4551 telephone may tue 267 2 999 0 nonexistent
## 4552 telephone may tue 6 2 999 0 nonexistent
## 4553 telephone may tue 15 13 999 0 nonexistent
## 4554 telephone may tue 172 4 999 0 nonexistent
## 4555 telephone may tue 94 3 999 0 nonexistent
## 4556 telephone may tue 268 3 999 0 nonexistent
## 4557 telephone may tue 130 3 999 0 nonexistent
## 4558 telephone may tue 70 4 999 0 nonexistent
## 4559 telephone may tue 91 6 999 0 nonexistent
## 4560 telephone may tue 324 2 999 0 nonexistent
## 4561 telephone may tue 465 8 999 0 nonexistent
## 4562 telephone may tue 274 2 999 0 nonexistent
## 4563 telephone may tue 300 3 999 0 nonexistent
## 4564 telephone may tue 191 7 999 0 nonexistent
## 4565 telephone may tue 56 3 999 0 nonexistent
## 4566 telephone may tue 189 2 999 0 nonexistent
## 4567 telephone may tue 236 2 999 0 nonexistent
## 4568 telephone may tue 137 2 999 0 nonexistent
## 4569 telephone may tue 614 2 999 0 nonexistent
## 4570 telephone may tue 363 5 999 0 nonexistent
## 4571 telephone may tue 418 2 999 0 nonexistent
## 4572 telephone may tue 221 2 999 0 nonexistent
## 4573 telephone may tue 96 2 999 0 nonexistent
## 4574 telephone may tue 119 3 999 0 nonexistent
## 4575 telephone may tue 103 3 999 0 nonexistent
## 4576 telephone may tue 10 17 999 0 nonexistent
## 4577 telephone may tue 216 2 999 0 nonexistent
## 4578 telephone may tue 484 2 999 0 nonexistent
## 4579 telephone may tue 485 3 999 0 nonexistent
## 4580 telephone may tue 404 2 999 0 nonexistent
## 4581 telephone may tue 175 2 999 0 nonexistent
## 4582 telephone may tue 138 2 999 0 nonexistent
## 4583 telephone may tue 243 2 999 0 nonexistent
## 4584 telephone may tue 919 2 999 0 nonexistent
## 4585 telephone may tue 203 2 999 0 nonexistent
## 4586 telephone may tue 247 2 999 0 nonexistent
## 4587 telephone may tue 89 2 999 0 nonexistent
## 4588 telephone may tue 185 12 999 0 nonexistent
## 4589 telephone may tue 777 3 999 0 nonexistent
## 4590 telephone may tue 340 3 999 0 nonexistent
## 4591 telephone may tue 110 2 999 0 nonexistent
## 4592 telephone may tue 256 2 999 0 nonexistent
## 4593 telephone may tue 165 2 999 0 nonexistent
## 4594 telephone may tue 54 2 999 0 nonexistent
## 4595 telephone may tue 26 2 999 0 nonexistent
## 4596 telephone may tue 350 4 999 0 nonexistent
## 4597 telephone may tue 226 2 999 0 nonexistent
## 4598 telephone may tue 167 2 999 0 nonexistent
## 4599 telephone may tue 47 3 999 0 nonexistent
## 4600 telephone may tue 214 10 999 0 nonexistent
## 4601 telephone may tue 446 7 999 0 nonexistent
## 4602 telephone may tue 153 2 999 0 nonexistent
## 4603 telephone may tue 181 6 999 0 nonexistent
## 4604 telephone may tue 747 5 999 0 nonexistent
## 4605 telephone may tue 214 1 999 0 nonexistent
## 4606 telephone may tue 270 1 999 0 nonexistent
## 4607 telephone may tue 37 13 999 0 nonexistent
## 4608 telephone may tue 129 8 999 0 nonexistent
## 4609 telephone may tue 72 3 999 0 nonexistent
## 4610 telephone may tue 1392 2 999 0 nonexistent
## 4611 telephone may tue 441 9 999 0 nonexistent
## 4612 telephone may tue 725 1 999 0 nonexistent
## 4613 telephone may tue 213 3 999 0 nonexistent
## 4614 telephone may tue 177 10 999 0 nonexistent
## 4615 telephone may tue 273 4 999 0 nonexistent
## 4616 telephone may tue 98 2 999 0 nonexistent
## 4617 telephone may tue 480 4 999 0 nonexistent
## 4618 telephone may tue 152 1 999 0 nonexistent
## 4619 telephone may tue 204 2 999 0 nonexistent
## 4620 telephone may tue 117 1 999 0 nonexistent
## 4621 telephone may tue 246 3 999 0 nonexistent
## 4622 telephone may tue 352 5 999 0 nonexistent
## 4623 telephone may tue 190 1 999 0 nonexistent
## 4624 telephone may tue 719 1 999 0 nonexistent
## 4625 telephone may tue 277 1 999 0 nonexistent
## 4626 telephone may tue 315 1 999 0 nonexistent
## 4627 telephone may wed 289 1 999 0 nonexistent
## 4628 telephone may wed 225 1 999 0 nonexistent
## 4629 telephone may wed 408 1 999 0 nonexistent
## 4630 telephone may wed 74 1 999 0 nonexistent
## 4631 telephone may wed 24 1 999 0 nonexistent
## 4632 telephone may wed 369 1 999 0 nonexistent
## 4633 telephone may wed 167 1 999 0 nonexistent
## 4634 telephone may wed 64 3 999 0 nonexistent
## 4635 telephone may wed 151 1 999 0 nonexistent
## 4636 telephone may wed 801 1 999 0 nonexistent
## 4637 telephone may wed 336 1 999 0 nonexistent
## 4638 telephone may wed 59 1 999 0 nonexistent
## 4639 telephone may wed 93 1 999 0 nonexistent
## 4640 telephone may wed 181 1 999 0 nonexistent
## 4641 telephone may wed 86 6 999 0 nonexistent
## 4642 telephone may wed 317 1 999 0 nonexistent
## 4643 telephone may wed 120 1 999 0 nonexistent
## 4644 telephone may wed 388 1 999 0 nonexistent
## 4645 telephone may wed 174 1 999 0 nonexistent
## 4646 telephone may wed 72 1 999 0 nonexistent
## 4647 telephone may wed 126 1 999 0 nonexistent
## 4648 telephone may wed 339 1 999 0 nonexistent
## 4649 telephone may wed 171 5 999 0 nonexistent
## 4650 telephone may wed 162 1 999 0 nonexistent
## 4651 telephone may wed 18 28 999 0 nonexistent
## 4652 telephone may wed 129 1 999 0 nonexistent
## 4653 telephone may wed 938 1 999 0 nonexistent
## 4654 telephone may wed 173 1 999 0 nonexistent
## 4655 telephone may wed 222 1 999 0 nonexistent
## 4656 telephone may wed 692 1 999 0 nonexistent
## 4657 telephone may wed 262 2 999 0 nonexistent
## 4658 telephone may wed 78 1 999 0 nonexistent
## 4659 telephone may wed 134 5 999 0 nonexistent
## 4660 telephone may wed 323 1 999 0 nonexistent
## 4661 telephone may wed 43 1 999 0 nonexistent
## 4662 telephone may wed 245 1 999 0 nonexistent
## 4663 telephone may wed 482 1 999 0 nonexistent
## 4664 telephone may wed 207 2 999 0 nonexistent
## 4665 telephone may wed 56 1 999 0 nonexistent
## 4666 telephone may wed 85 2 999 0 nonexistent
## 4667 telephone may wed 201 1 999 0 nonexistent
## 4668 telephone may wed 353 1 999 0 nonexistent
## 4669 telephone may wed 554 3 999 0 nonexistent
## 4670 telephone may wed 432 1 999 0 nonexistent
## 4671 telephone may wed 27 2 999 0 nonexistent
## 4672 telephone may wed 361 1 999 0 nonexistent
## 4673 telephone may wed 565 1 999 0 nonexistent
## 4674 telephone may wed 162 1 999 0 nonexistent
## 4675 telephone may wed 139 1 999 0 nonexistent
## 4676 telephone may wed 287 3 999 0 nonexistent
## 4677 telephone may wed 147 1 999 0 nonexistent
## 4678 telephone may wed 905 1 999 0 nonexistent
## 4679 telephone may wed 118 1 999 0 nonexistent
## 4680 telephone may wed 91 1 999 0 nonexistent
## 4681 telephone may wed 111 5 999 0 nonexistent
## 4682 telephone may wed 162 1 999 0 nonexistent
## 4683 telephone may wed 236 1 999 0 nonexistent
## 4684 telephone may wed 73 1 999 0 nonexistent
## 4685 telephone may wed 123 1 999 0 nonexistent
## 4686 telephone may wed 298 2 999 0 nonexistent
## 4687 telephone may wed 86 1 999 0 nonexistent
## 4688 telephone may wed 420 1 999 0 nonexistent
## 4689 telephone may wed 139 2 999 0 nonexistent
## 4690 telephone may wed 164 1 999 0 nonexistent
## 4691 telephone may wed 508 1 999 0 nonexistent
## 4692 telephone may wed 139 1 999 0 nonexistent
## 4693 telephone may wed 192 1 999 0 nonexistent
## 4694 telephone may wed 226 1 999 0 nonexistent
## 4695 telephone may wed 783 2 999 0 nonexistent
## 4696 telephone may wed 264 2 999 0 nonexistent
## 4697 telephone may wed 166 1 999 0 nonexistent
## 4698 telephone may wed 27 1 999 0 nonexistent
## 4699 telephone may wed 353 1 999 0 nonexistent
## 4700 telephone may wed 85 1 999 0 nonexistent
## 4701 telephone may wed 1106 1 999 0 nonexistent
## 4702 telephone may wed 419 1 999 0 nonexistent
## 4703 telephone may wed 603 5 999 0 nonexistent
## 4704 telephone may wed 415 1 999 0 nonexistent
## 4705 telephone may wed 179 1 999 0 nonexistent
## 4706 telephone may wed 872 5 999 0 nonexistent
## 4707 telephone may wed 52 1 999 0 nonexistent
## 4708 telephone may wed 490 1 999 0 nonexistent
## 4709 telephone may wed 63 1 999 0 nonexistent
## 4710 telephone may wed 27 10 999 0 nonexistent
## 4711 telephone may wed 425 1 999 0 nonexistent
## 4712 telephone may wed 12 11 999 0 nonexistent
## 4713 telephone may wed 350 1 999 0 nonexistent
## 4714 telephone may wed 103 1 999 0 nonexistent
## 4715 telephone may wed 210 1 999 0 nonexistent
## 4716 telephone may wed 261 1 999 0 nonexistent
## 4717 telephone may wed 115 2 999 0 nonexistent
## 4718 telephone may wed 641 1 999 0 nonexistent
## 4719 telephone may wed 71 1 999 0 nonexistent
## 4720 telephone may wed 370 1 999 0 nonexistent
## 4721 telephone may wed 958 2 999 0 nonexistent
## 4722 telephone may wed 103 2 999 0 nonexistent
## 4723 telephone may wed 628 1 999 0 nonexistent
## 4724 telephone may wed 232 1 999 0 nonexistent
## 4725 telephone may wed 68 1 999 0 nonexistent
## 4726 telephone may wed 192 1 999 0 nonexistent
## 4727 telephone may wed 494 3 999 0 nonexistent
## 4728 telephone may wed 166 7 999 0 nonexistent
## 4729 telephone may wed 151 2 999 0 nonexistent
## 4730 telephone may wed 204 1 999 0 nonexistent
## 4731 telephone may wed 180 1 999 0 nonexistent
## 4732 telephone may wed 494 2 999 0 nonexistent
## 4733 telephone may wed 530 2 999 0 nonexistent
## 4734 telephone may wed 759 1 999 0 nonexistent
## 4735 telephone may wed 85 1 999 0 nonexistent
## 4736 telephone may wed 445 2 999 0 nonexistent
## 4737 telephone may wed 345 1 999 0 nonexistent
## 4738 telephone may wed 819 1 999 0 nonexistent
## 4739 telephone may wed 16 1 999 0 nonexistent
## 4740 telephone may wed 32 1 999 0 nonexistent
## 4741 telephone may wed 648 1 999 0 nonexistent
## 4742 telephone may wed 29 1 999 0 nonexistent
## 4743 telephone may wed 220 1 999 0 nonexistent
## 4744 telephone may wed 151 1 999 0 nonexistent
## 4745 telephone may wed 290 2 999 0 nonexistent
## 4746 telephone may wed 634 2 999 0 nonexistent
## 4747 telephone may wed 717 3 999 0 nonexistent
## 4748 telephone may wed 249 1 999 0 nonexistent
## 4749 telephone may wed 228 1 999 0 nonexistent
## 4750 telephone may wed 122 1 999 0 nonexistent
## 4751 telephone may wed 544 1 999 0 nonexistent
## 4752 telephone may wed 951 2 999 0 nonexistent
## 4753 telephone may wed 412 1 999 0 nonexistent
## 4754 telephone may wed 264 1 999 0 nonexistent
## 4755 telephone may wed 211 1 999 0 nonexistent
## 4756 telephone may wed 97 1 999 0 nonexistent
## 4757 telephone may wed 192 1 999 0 nonexistent
## 4758 telephone may wed 160 1 999 0 nonexistent
## 4759 telephone may wed 97 1 999 0 nonexistent
## 4760 telephone may wed 244 1 999 0 nonexistent
## 4761 telephone may wed 578 2 999 0 nonexistent
## emp.var.rate cons.price.idx cons.conf.idx euribor3m nr.employed y
## 1 1.1 93.994 -36.4 4.857 5191 no
## 2 1.1 93.994 -36.4 4.857 5191 no
## 3 1.1 93.994 -36.4 4.857 5191 no
## 4 1.1 93.994 -36.4 4.857 5191 no
## 5 1.1 93.994 -36.4 4.857 5191 no
## 6 1.1 93.994 -36.4 4.857 5191 no
## 7 1.1 93.994 -36.4 4.857 5191 no
## 8 1.1 93.994 -36.4 4.857 5191 no
## 9 1.1 93.994 -36.4 4.857 5191 no
## 10 1.1 93.994 -36.4 4.857 5191 no
## 11 1.1 93.994 -36.4 4.857 5191 no
## 12 1.1 93.994 -36.4 4.857 5191 no
## 13 1.1 93.994 -36.4 4.857 5191 no
## 14 1.1 93.994 -36.4 4.857 5191 no
## 15 1.1 93.994 -36.4 4.857 5191 no
## 16 1.1 93.994 -36.4 4.857 5191 no
## 17 1.1 93.994 -36.4 4.857 5191 no
## 18 1.1 93.994 -36.4 4.857 5191 no
## 19 1.1 93.994 -36.4 4.857 5191 no
## 20 1.1 93.994 -36.4 4.857 5191 no
## 21 1.1 93.994 -36.4 4.857 5191 no
## 22 1.1 93.994 -36.4 4.857 5191 no
## 23 1.1 93.994 -36.4 4.857 5191 no
## 24 1.1 93.994 -36.4 4.857 5191 no
## 25 1.1 93.994 -36.4 4.857 5191 no
## 26 1.1 93.994 -36.4 4.857 5191 no
## 27 1.1 93.994 -36.4 4.857 5191 no
## 28 1.1 93.994 -36.4 4.857 5191 no
## 29 1.1 93.994 -36.4 4.857 5191 no
## 30 1.1 93.994 -36.4 4.857 5191 no
## 31 1.1 93.994 -36.4 4.857 5191 no
## 32 1.1 93.994 -36.4 4.857 5191 no
## 33 1.1 93.994 -36.4 4.857 5191 no
## 34 1.1 93.994 -36.4 4.857 5191 no
## 35 1.1 93.994 -36.4 4.857 5191 no
## 36 1.1 93.994 -36.4 4.857 5191 no
## 37 1.1 93.994 -36.4 4.857 5191 no
## 38 1.1 93.994 -36.4 4.857 5191 no
## 39 1.1 93.994 -36.4 4.857 5191 no
## 40 1.1 93.994 -36.4 4.857 5191 no
## 41 1.1 93.994 -36.4 4.857 5191 no
## 42 1.1 93.994 -36.4 4.857 5191 no
## 43 1.1 93.994 -36.4 4.857 5191 no
## 44 1.1 93.994 -36.4 4.857 5191 no
## 45 1.1 93.994 -36.4 4.857 5191 no
## 46 1.1 93.994 -36.4 4.857 5191 no
## 47 1.1 93.994 -36.4 4.857 5191 no
## 48 1.1 93.994 -36.4 4.857 5191 no
## 49 1.1 93.994 -36.4 4.857 5191 no
## 50 1.1 93.994 -36.4 4.857 5191 no
## 51 1.1 93.994 -36.4 4.857 5191 no
## 52 1.1 93.994 -36.4 4.857 5191 no
## 53 1.1 93.994 -36.4 4.857 5191 no
## 54 1.1 93.994 -36.4 4.857 5191 no
## 55 1.1 93.994 -36.4 4.857 5191 no
## 56 1.1 93.994 -36.4 4.857 5191 no
## 57 1.1 93.994 -36.4 4.857 5191 no
## 58 1.1 93.994 -36.4 4.857 5191 no
## 59 1.1 93.994 -36.4 4.857 5191 no
## 60 1.1 93.994 -36.4 4.857 5191 no
## 61 1.1 93.994 -36.4 4.857 5191 no
## 62 1.1 93.994 -36.4 4.857 5191 no
## 63 1.1 93.994 -36.4 4.857 5191 no
## 64 1.1 93.994 -36.4 4.857 5191 no
## 65 1.1 93.994 -36.4 4.857 5191 no
## 66 1.1 93.994 -36.4 4.857 5191 no
## 67 1.1 93.994 -36.4 4.857 5191 no
## 68 1.1 93.994 -36.4 4.857 5191 no
## 69 1.1 93.994 -36.4 4.857 5191 no
## 70 1.1 93.994 -36.4 4.857 5191 no
## 71 1.1 93.994 -36.4 4.857 5191 no
## 72 1.1 93.994 -36.4 4.857 5191 no
## 73 1.1 93.994 -36.4 4.857 5191 no
## 74 1.1 93.994 -36.4 4.857 5191 no
## 75 1.1 93.994 -36.4 4.857 5191 no
## 76 1.1 93.994 -36.4 4.857 5191 yes
## 77 1.1 93.994 -36.4 4.857 5191 no
## 78 1.1 93.994 -36.4 4.857 5191 no
## 79 1.1 93.994 -36.4 4.857 5191 no
## 80 1.1 93.994 -36.4 4.857 5191 no
## 81 1.1 93.994 -36.4 4.857 5191 no
## 82 1.1 93.994 -36.4 4.857 5191 no
## 83 1.1 93.994 -36.4 4.857 5191 no
## 84 1.1 93.994 -36.4 4.857 5191 yes
## 85 1.1 93.994 -36.4 4.857 5191 no
## 86 1.1 93.994 -36.4 4.857 5191 no
## 87 1.1 93.994 -36.4 4.857 5191 no
## 88 1.1 93.994 -36.4 4.857 5191 no
## 89 1.1 93.994 -36.4 4.857 5191 yes
## 90 1.1 93.994 -36.4 4.857 5191 no
## 91 1.1 93.994 -36.4 4.857 5191 no
## 92 1.1 93.994 -36.4 4.857 5191 no
## 93 1.1 93.994 -36.4 4.857 5191 no
## 94 1.1 93.994 -36.4 4.857 5191 no
## 95 1.1 93.994 -36.4 4.857 5191 no
## 96 1.1 93.994 -36.4 4.857 5191 no
## 97 1.1 93.994 -36.4 4.857 5191 no
## 98 1.1 93.994 -36.4 4.857 5191 no
## 99 1.1 93.994 -36.4 4.857 5191 no
## 100 1.1 93.994 -36.4 4.857 5191 no
## 101 1.1 93.994 -36.4 4.857 5191 no
## 102 1.1 93.994 -36.4 4.857 5191 no
## 103 1.1 93.994 -36.4 4.857 5191 no
## 104 1.1 93.994 -36.4 4.857 5191 no
## 105 1.1 93.994 -36.4 4.857 5191 no
## 106 1.1 93.994 -36.4 4.857 5191 no
## 107 1.1 93.994 -36.4 4.857 5191 no
## 108 1.1 93.994 -36.4 4.857 5191 no
## 109 1.1 93.994 -36.4 4.857 5191 no
## 110 1.1 93.994 -36.4 4.857 5191 no
## 111 1.1 93.994 -36.4 4.857 5191 no
## 112 1.1 93.994 -36.4 4.857 5191 no
## 113 1.1 93.994 -36.4 4.857 5191 no
## 114 1.1 93.994 -36.4 4.857 5191 no
## 115 1.1 93.994 -36.4 4.857 5191 no
## 116 1.1 93.994 -36.4 4.857 5191 no
## 117 1.1 93.994 -36.4 4.857 5191 no
## 118 1.1 93.994 -36.4 4.857 5191 no
## 119 1.1 93.994 -36.4 4.857 5191 no
## 120 1.1 93.994 -36.4 4.857 5191 no
## 121 1.1 93.994 -36.4 4.857 5191 no
## 122 1.1 93.994 -36.4 4.857 5191 no
## 123 1.1 93.994 -36.4 4.857 5191 no
## 124 1.1 93.994 -36.4 4.857 5191 no
## 125 1.1 93.994 -36.4 4.857 5191 no
## 126 1.1 93.994 -36.4 4.857 5191 no
## 127 1.1 93.994 -36.4 4.857 5191 no
## 128 1.1 93.994 -36.4 4.857 5191 no
## 129 1.1 93.994 -36.4 4.857 5191 no
## 130 1.1 93.994 -36.4 4.857 5191 yes
## 131 1.1 93.994 -36.4 4.857 5191 no
## 132 1.1 93.994 -36.4 4.857 5191 no
## 133 1.1 93.994 -36.4 4.857 5191 no
## 134 1.1 93.994 -36.4 4.857 5191 no
## 135 1.1 93.994 -36.4 4.857 5191 no
## 136 1.1 93.994 -36.4 4.857 5191 no
## 137 1.1 93.994 -36.4 4.857 5191 no
## 138 1.1 93.994 -36.4 4.857 5191 no
## 139 1.1 93.994 -36.4 4.857 5191 no
## 140 1.1 93.994 -36.4 4.857 5191 yes
## 141 1.1 93.994 -36.4 4.857 5191 no
## 142 1.1 93.994 -36.4 4.857 5191 no
## 143 1.1 93.994 -36.4 4.857 5191 no
## 144 1.1 93.994 -36.4 4.857 5191 no
## 145 1.1 93.994 -36.4 4.857 5191 no
## 146 1.1 93.994 -36.4 4.857 5191 no
## 147 1.1 93.994 -36.4 4.857 5191 no
## 148 1.1 93.994 -36.4 4.857 5191 no
## 149 1.1 93.994 -36.4 4.857 5191 no
## 150 1.1 93.994 -36.4 4.857 5191 no
## 151 1.1 93.994 -36.4 4.857 5191 no
## 152 1.1 93.994 -36.4 4.857 5191 no
## 153 1.1 93.994 -36.4 4.857 5191 no
## 154 1.1 93.994 -36.4 4.857 5191 no
## 155 1.1 93.994 -36.4 4.857 5191 no
## 156 1.1 93.994 -36.4 4.857 5191 no
## 157 1.1 93.994 -36.4 4.857 5191 no
## 158 1.1 93.994 -36.4 4.857 5191 no
## 159 1.1 93.994 -36.4 4.857 5191 no
## 160 1.1 93.994 -36.4 4.857 5191 no
## 161 1.1 93.994 -36.4 4.857 5191 no
## 162 1.1 93.994 -36.4 4.857 5191 no
## 163 1.1 93.994 -36.4 4.857 5191 no
## 164 1.1 93.994 -36.4 4.857 5191 no
## 165 1.1 93.994 -36.4 4.857 5191 no
## 166 1.1 93.994 -36.4 4.857 5191 no
## 167 1.1 93.994 -36.4 4.857 5191 no
## 168 1.1 93.994 -36.4 4.857 5191 no
## 169 1.1 93.994 -36.4 4.857 5191 no
## 170 1.1 93.994 -36.4 4.857 5191 no
## 171 1.1 93.994 -36.4 4.857 5191 no
## 172 1.1 93.994 -36.4 4.857 5191 no
## 173 1.1 93.994 -36.4 4.857 5191 no
## 174 1.1 93.994 -36.4 4.857 5191 no
## 175 1.1 93.994 -36.4 4.857 5191 no
## 176 1.1 93.994 -36.4 4.857 5191 no
## 177 1.1 93.994 -36.4 4.857 5191 no
## 178 1.1 93.994 -36.4 4.857 5191 no
## 179 1.1 93.994 -36.4 4.857 5191 no
## 180 1.1 93.994 -36.4 4.857 5191 no
## 181 1.1 93.994 -36.4 4.857 5191 no
## 182 1.1 93.994 -36.4 4.857 5191 no
## 183 1.1 93.994 -36.4 4.857 5191 yes
## 184 1.1 93.994 -36.4 4.857 5191 no
## 185 1.1 93.994 -36.4 4.857 5191 no
## 186 1.1 93.994 -36.4 4.857 5191 no
## 187 1.1 93.994 -36.4 4.857 5191 no
## 188 1.1 93.994 -36.4 4.857 5191 no
## 189 1.1 93.994 -36.4 4.857 5191 no
## 190 1.1 93.994 -36.4 4.857 5191 no
## 191 1.1 93.994 -36.4 4.857 5191 no
## 192 1.1 93.994 -36.4 4.857 5191 no
## 193 1.1 93.994 -36.4 4.857 5191 no
## 194 1.1 93.994 -36.4 4.857 5191 no
## 195 1.1 93.994 -36.4 4.857 5191 no
## 196 1.1 93.994 -36.4 4.857 5191 no
## 197 1.1 93.994 -36.4 4.857 5191 no
## 198 1.1 93.994 -36.4 4.857 5191 no
## 199 1.1 93.994 -36.4 4.857 5191 no
## 200 1.1 93.994 -36.4 4.857 5191 no
## 201 1.1 93.994 -36.4 4.857 5191 no
## 202 1.1 93.994 -36.4 4.857 5191 no
## 203 1.1 93.994 -36.4 4.857 5191 no
## 204 1.1 93.994 -36.4 4.857 5191 no
## 205 1.1 93.994 -36.4 4.857 5191 no
## 206 1.1 93.994 -36.4 4.857 5191 no
## 207 1.1 93.994 -36.4 4.857 5191 no
## 208 1.1 93.994 -36.4 4.857 5191 no
## 209 1.1 93.994 -36.4 4.857 5191 no
## 210 1.1 93.994 -36.4 4.857 5191 no
## 211 1.1 93.994 -36.4 4.857 5191 no
## 212 1.1 93.994 -36.4 4.857 5191 no
## 213 1.1 93.994 -36.4 4.857 5191 no
## 214 1.1 93.994 -36.4 4.857 5191 no
## 215 1.1 93.994 -36.4 4.857 5191 no
## 216 1.1 93.994 -36.4 4.857 5191 no
## 217 1.1 93.994 -36.4 4.857 5191 no
## 218 1.1 93.994 -36.4 4.857 5191 no
## 219 1.1 93.994 -36.4 4.857 5191 no
## 220 1.1 93.994 -36.4 4.857 5191 no
## 221 1.1 93.994 -36.4 4.857 5191 no
## 222 1.1 93.994 -36.4 4.857 5191 no
## 223 1.1 93.994 -36.4 4.857 5191 no
## 224 1.1 93.994 -36.4 4.857 5191 no
## 225 1.1 93.994 -36.4 4.857 5191 no
## 226 1.1 93.994 -36.4 4.857 5191 no
## 227 1.1 93.994 -36.4 4.857 5191 no
## 228 1.1 93.994 -36.4 4.857 5191 no
## 229 1.1 93.994 -36.4 4.857 5191 no
## 230 1.1 93.994 -36.4 4.857 5191 no
## 231 1.1 93.994 -36.4 4.857 5191 no
## 232 1.1 93.994 -36.4 4.857 5191 no
## 233 1.1 93.994 -36.4 4.857 5191 no
## 234 1.1 93.994 -36.4 4.857 5191 no
## 235 1.1 93.994 -36.4 4.857 5191 no
## 236 1.1 93.994 -36.4 4.857 5191 no
## 237 1.1 93.994 -36.4 4.857 5191 no
## 238 1.1 93.994 -36.4 4.857 5191 no
## 239 1.1 93.994 -36.4 4.857 5191 no
## 240 1.1 93.994 -36.4 4.857 5191 no
## 241 1.1 93.994 -36.4 4.857 5191 no
## 242 1.1 93.994 -36.4 4.857 5191 no
## 243 1.1 93.994 -36.4 4.857 5191 no
## 244 1.1 93.994 -36.4 4.857 5191 no
## 245 1.1 93.994 -36.4 4.857 5191 no
## 246 1.1 93.994 -36.4 4.857 5191 no
## 247 1.1 93.994 -36.4 4.857 5191 no
## 248 1.1 93.994 -36.4 4.857 5191 no
## 249 1.1 93.994 -36.4 4.857 5191 no
## 250 1.1 93.994 -36.4 4.857 5191 no
## 251 1.1 93.994 -36.4 4.857 5191 no
## 252 1.1 93.994 -36.4 4.857 5191 no
## 253 1.1 93.994 -36.4 4.857 5191 no
## 254 1.1 93.994 -36.4 4.857 5191 no
## 255 1.1 93.994 -36.4 4.857 5191 no
## 256 1.1 93.994 -36.4 4.857 5191 no
## 257 1.1 93.994 -36.4 4.857 5191 no
## 258 1.1 93.994 -36.4 4.857 5191 no
## 259 1.1 93.994 -36.4 4.857 5191 no
## 260 1.1 93.994 -36.4 4.857 5191 no
## 261 1.1 93.994 -36.4 4.857 5191 no
## 262 1.1 93.994 -36.4 4.857 5191 no
## 263 1.1 93.994 -36.4 4.857 5191 no
## 264 1.1 93.994 -36.4 4.857 5191 no
## 265 1.1 93.994 -36.4 4.857 5191 no
## 266 1.1 93.994 -36.4 4.857 5191 no
## 267 1.1 93.994 -36.4 4.857 5191 no
## 268 1.1 93.994 -36.4 4.857 5191 no
## 269 1.1 93.994 -36.4 4.857 5191 no
## 270 1.1 93.994 -36.4 4.857 5191 no
## 271 1.1 93.994 -36.4 4.857 5191 no
## 272 1.1 93.994 -36.4 4.857 5191 no
## 273 1.1 93.994 -36.4 4.857 5191 no
## 274 1.1 93.994 -36.4 4.857 5191 no
## 275 1.1 93.994 -36.4 4.857 5191 no
## 276 1.1 93.994 -36.4 4.857 5191 no
## 277 1.1 93.994 -36.4 4.857 5191 no
## 278 1.1 93.994 -36.4 4.857 5191 no
## 279 1.1 93.994 -36.4 4.857 5191 no
## 280 1.1 93.994 -36.4 4.857 5191 no
## 281 1.1 93.994 -36.4 4.857 5191 no
## 282 1.1 93.994 -36.4 4.857 5191 no
## 283 1.1 93.994 -36.4 4.857 5191 no
## 284 1.1 93.994 -36.4 4.857 5191 no
## 285 1.1 93.994 -36.4 4.857 5191 no
## 286 1.1 93.994 -36.4 4.857 5191 no
## 287 1.1 93.994 -36.4 4.857 5191 yes
## 288 1.1 93.994 -36.4 4.857 5191 no
## 289 1.1 93.994 -36.4 4.857 5191 no
## 290 1.1 93.994 -36.4 4.857 5191 no
## 291 1.1 93.994 -36.4 4.857 5191 no
## 292 1.1 93.994 -36.4 4.857 5191 no
## 293 1.1 93.994 -36.4 4.857 5191 no
## 294 1.1 93.994 -36.4 4.857 5191 no
## 295 1.1 93.994 -36.4 4.857 5191 no
## 296 1.1 93.994 -36.4 4.857 5191 no
## 297 1.1 93.994 -36.4 4.857 5191 no
## 298 1.1 93.994 -36.4 4.857 5191 no
## 299 1.1 93.994 -36.4 4.857 5191 no
## 300 1.1 93.994 -36.4 4.857 5191 no
## 301 1.1 93.994 -36.4 4.857 5191 no
## 302 1.1 93.994 -36.4 4.857 5191 no
## 303 1.1 93.994 -36.4 4.857 5191 no
## 304 1.1 93.994 -36.4 4.857 5191 no
## 305 1.1 93.994 -36.4 4.857 5191 no
## 306 1.1 93.994 -36.4 4.857 5191 no
## 307 1.1 93.994 -36.4 4.857 5191 no
## 308 1.1 93.994 -36.4 4.857 5191 no
## 309 1.1 93.994 -36.4 4.857 5191 no
## 310 1.1 93.994 -36.4 4.857 5191 no
## 311 1.1 93.994 -36.4 4.857 5191 no
## 312 1.1 93.994 -36.4 4.857 5191 no
## 313 1.1 93.994 -36.4 4.857 5191 no
## 314 1.1 93.994 -36.4 4.857 5191 no
## 315 1.1 93.994 -36.4 4.857 5191 no
## 316 1.1 93.994 -36.4 4.857 5191 no
## 317 1.1 93.994 -36.4 4.857 5191 no
## 318 1.1 93.994 -36.4 4.857 5191 no
## 319 1.1 93.994 -36.4 4.857 5191 no
## 320 1.1 93.994 -36.4 4.857 5191 no
## 321 1.1 93.994 -36.4 4.857 5191 no
## 322 1.1 93.994 -36.4 4.857 5191 no
## 323 1.1 93.994 -36.4 4.857 5191 no
## 324 1.1 93.994 -36.4 4.857 5191 no
## 325 1.1 93.994 -36.4 4.857 5191 no
## 326 1.1 93.994 -36.4 4.857 5191 no
## 327 1.1 93.994 -36.4 4.857 5191 no
## 328 1.1 93.994 -36.4 4.857 5191 no
## 329 1.1 93.994 -36.4 4.857 5191 no
## 330 1.1 93.994 -36.4 4.857 5191 no
## 331 1.1 93.994 -36.4 4.857 5191 no
## 332 1.1 93.994 -36.4 4.857 5191 no
## 333 1.1 93.994 -36.4 4.857 5191 no
## 334 1.1 93.994 -36.4 4.857 5191 no
## 335 1.1 93.994 -36.4 4.857 5191 no
## 336 1.1 93.994 -36.4 4.857 5191 no
## 337 1.1 93.994 -36.4 4.857 5191 no
## 338 1.1 93.994 -36.4 4.857 5191 no
## 339 1.1 93.994 -36.4 4.857 5191 no
## 340 1.1 93.994 -36.4 4.857 5191 no
## 341 1.1 93.994 -36.4 4.857 5191 no
## 342 1.1 93.994 -36.4 4.857 5191 no
## 343 1.1 93.994 -36.4 4.857 5191 no
## 344 1.1 93.994 -36.4 4.857 5191 no
## 345 1.1 93.994 -36.4 4.857 5191 no
## 346 1.1 93.994 -36.4 4.857 5191 no
## 347 1.1 93.994 -36.4 4.857 5191 no
## 348 1.1 93.994 -36.4 4.857 5191 no
## 349 1.1 93.994 -36.4 4.857 5191 no
## 350 1.1 93.994 -36.4 4.857 5191 no
## 351 1.1 93.994 -36.4 4.857 5191 no
## 352 1.1 93.994 -36.4 4.857 5191 no
## 353 1.1 93.994 -36.4 4.857 5191 no
## 354 1.1 93.994 -36.4 4.857 5191 no
## 355 1.1 93.994 -36.4 4.857 5191 no
## 356 1.1 93.994 -36.4 4.857 5191 no
## 357 1.1 93.994 -36.4 4.857 5191 no
## 358 1.1 93.994 -36.4 4.857 5191 no
## 359 1.1 93.994 -36.4 4.857 5191 no
## 360 1.1 93.994 -36.4 4.857 5191 no
## 361 1.1 93.994 -36.4 4.857 5191 no
## 362 1.1 93.994 -36.4 4.857 5191 no
## 363 1.1 93.994 -36.4 4.857 5191 no
## 364 1.1 93.994 -36.4 4.857 5191 no
## 365 1.1 93.994 -36.4 4.857 5191 no
## 366 1.1 93.994 -36.4 4.857 5191 no
## 367 1.1 93.994 -36.4 4.857 5191 no
## 368 1.1 93.994 -36.4 4.857 5191 no
## 369 1.1 93.994 -36.4 4.857 5191 no
## 370 1.1 93.994 -36.4 4.857 5191 no
## 371 1.1 93.994 -36.4 4.857 5191 no
## 372 1.1 93.994 -36.4 4.857 5191 no
## 373 1.1 93.994 -36.4 4.857 5191 no
## 374 1.1 93.994 -36.4 4.857 5191 no
## 375 1.1 93.994 -36.4 4.857 5191 no
## 376 1.1 93.994 -36.4 4.857 5191 no
## 377 1.1 93.994 -36.4 4.857 5191 no
## 378 1.1 93.994 -36.4 4.857 5191 no
## 379 1.1 93.994 -36.4 4.857 5191 no
## 380 1.1 93.994 -36.4 4.857 5191 no
## 381 1.1 93.994 -36.4 4.857 5191 no
## 382 1.1 93.994 -36.4 4.857 5191 no
## 383 1.1 93.994 -36.4 4.857 5191 no
## 384 1.1 93.994 -36.4 4.857 5191 no
## 385 1.1 93.994 -36.4 4.857 5191 no
## 386 1.1 93.994 -36.4 4.857 5191 no
## 387 1.1 93.994 -36.4 4.857 5191 no
## 388 1.1 93.994 -36.4 4.857 5191 no
## 389 1.1 93.994 -36.4 4.857 5191 yes
## 390 1.1 93.994 -36.4 4.857 5191 yes
## 391 1.1 93.994 -36.4 4.857 5191 no
## 392 1.1 93.994 -36.4 4.857 5191 no
## 393 1.1 93.994 -36.4 4.857 5191 no
## 394 1.1 93.994 -36.4 4.857 5191 no
## 395 1.1 93.994 -36.4 4.857 5191 no
## 396 1.1 93.994 -36.4 4.857 5191 no
## 397 1.1 93.994 -36.4 4.857 5191 no
## 398 1.1 93.994 -36.4 4.857 5191 no
## 399 1.1 93.994 -36.4 4.857 5191 no
## 400 1.1 93.994 -36.4 4.857 5191 no
## 401 1.1 93.994 -36.4 4.857 5191 no
## 402 1.1 93.994 -36.4 4.857 5191 no
## 403 1.1 93.994 -36.4 4.857 5191 no
## 404 1.1 93.994 -36.4 4.857 5191 no
## 405 1.1 93.994 -36.4 4.857 5191 no
## 406 1.1 93.994 -36.4 4.857 5191 no
## 407 1.1 93.994 -36.4 4.857 5191 no
## 408 1.1 93.994 -36.4 4.857 5191 no
## 409 1.1 93.994 -36.4 4.857 5191 no
## 410 1.1 93.994 -36.4 4.857 5191 no
## 411 1.1 93.994 -36.4 4.857 5191 no
## 412 1.1 93.994 -36.4 4.857 5191 no
## 413 1.1 93.994 -36.4 4.857 5191 no
## 414 1.1 93.994 -36.4 4.857 5191 no
## 415 1.1 93.994 -36.4 4.857 5191 no
## 416 1.1 93.994 -36.4 4.857 5191 no
## 417 1.1 93.994 -36.4 4.857 5191 no
## 418 1.1 93.994 -36.4 4.857 5191 no
## 419 1.1 93.994 -36.4 4.857 5191 no
## 420 1.1 93.994 -36.4 4.857 5191 no
## 421 1.1 93.994 -36.4 4.857 5191 no
## 422 1.1 93.994 -36.4 4.857 5191 no
## 423 1.1 93.994 -36.4 4.857 5191 no
## 424 1.1 93.994 -36.4 4.857 5191 no
## 425 1.1 93.994 -36.4 4.857 5191 no
## 426 1.1 93.994 -36.4 4.857 5191 no
## 427 1.1 93.994 -36.4 4.857 5191 no
## 428 1.1 93.994 -36.4 4.857 5191 no
## 429 1.1 93.994 -36.4 4.857 5191 no
## 430 1.1 93.994 -36.4 4.857 5191 no
## 431 1.1 93.994 -36.4 4.857 5191 no
## 432 1.1 93.994 -36.4 4.857 5191 no
## 433 1.1 93.994 -36.4 4.857 5191 no
## 434 1.1 93.994 -36.4 4.857 5191 no
## 435 1.1 93.994 -36.4 4.857 5191 no
## 436 1.1 93.994 -36.4 4.857 5191 no
## 437 1.1 93.994 -36.4 4.857 5191 no
## 438 1.1 93.994 -36.4 4.857 5191 no
## 439 1.1 93.994 -36.4 4.857 5191 no
## 440 1.1 93.994 -36.4 4.857 5191 no
## 441 1.1 93.994 -36.4 4.857 5191 no
## 442 1.1 93.994 -36.4 4.857 5191 no
## 443 1.1 93.994 -36.4 4.857 5191 no
## 444 1.1 93.994 -36.4 4.857 5191 no
## 445 1.1 93.994 -36.4 4.857 5191 no
## 446 1.1 93.994 -36.4 4.857 5191 no
## 447 1.1 93.994 -36.4 4.857 5191 yes
## 448 1.1 93.994 -36.4 4.857 5191 no
## 449 1.1 93.994 -36.4 4.857 5191 no
## 450 1.1 93.994 -36.4 4.857 5191 no
## 451 1.1 93.994 -36.4 4.857 5191 no
## 452 1.1 93.994 -36.4 4.857 5191 no
## 453 1.1 93.994 -36.4 4.857 5191 no
## 454 1.1 93.994 -36.4 4.857 5191 no
## 455 1.1 93.994 -36.4 4.857 5191 no
## 456 1.1 93.994 -36.4 4.857 5191 no
## 457 1.1 93.994 -36.4 4.857 5191 no
## 458 1.1 93.994 -36.4 4.857 5191 no
## 459 1.1 93.994 -36.4 4.857 5191 no
## 460 1.1 93.994 -36.4 4.857 5191 no
## 461 1.1 93.994 -36.4 4.857 5191 no
## 462 1.1 93.994 -36.4 4.857 5191 no
## 463 1.1 93.994 -36.4 4.857 5191 no
## 464 1.1 93.994 -36.4 4.857 5191 no
## 465 1.1 93.994 -36.4 4.857 5191 no
## 466 1.1 93.994 -36.4 4.857 5191 no
## 467 1.1 93.994 -36.4 4.857 5191 no
## 468 1.1 93.994 -36.4 4.857 5191 no
## 469 1.1 93.994 -36.4 4.857 5191 no
## 470 1.1 93.994 -36.4 4.857 5191 yes
## 471 1.1 93.994 -36.4 4.857 5191 no
## 472 1.1 93.994 -36.4 4.857 5191 no
## 473 1.1 93.994 -36.4 4.857 5191 no
## 474 1.1 93.994 -36.4 4.857 5191 no
## 475 1.1 93.994 -36.4 4.857 5191 no
## 476 1.1 93.994 -36.4 4.857 5191 no
## 477 1.1 93.994 -36.4 4.857 5191 no
## 478 1.1 93.994 -36.4 4.857 5191 no
## 479 1.1 93.994 -36.4 4.857 5191 no
## 480 1.1 93.994 -36.4 4.857 5191 no
## 481 1.1 93.994 -36.4 4.857 5191 no
## 482 1.1 93.994 -36.4 4.857 5191 no
## 483 1.1 93.994 -36.4 4.857 5191 no
## 484 1.1 93.994 -36.4 4.857 5191 no
## 485 1.1 93.994 -36.4 4.857 5191 no
## 486 1.1 93.994 -36.4 4.857 5191 no
## 487 1.1 93.994 -36.4 4.857 5191 no
## 488 1.1 93.994 -36.4 4.857 5191 no
## 489 1.1 93.994 -36.4 4.857 5191 no
## 490 1.1 93.994 -36.4 4.857 5191 no
## 491 1.1 93.994 -36.4 4.857 5191 no
## 492 1.1 93.994 -36.4 4.857 5191 no
## 493 1.1 93.994 -36.4 4.857 5191 no
## 494 1.1 93.994 -36.4 4.857 5191 no
## 495 1.1 93.994 -36.4 4.857 5191 no
## 496 1.1 93.994 -36.4 4.857 5191 no
## 497 1.1 93.994 -36.4 4.857 5191 no
## 498 1.1 93.994 -36.4 4.857 5191 no
## 499 1.1 93.994 -36.4 4.857 5191 no
## 500 1.1 93.994 -36.4 4.857 5191 no
## 501 1.1 93.994 -36.4 4.857 5191 no
## 502 1.1 93.994 -36.4 4.857 5191 no
## 503 1.1 93.994 -36.4 4.857 5191 no
## 504 1.1 93.994 -36.4 4.857 5191 no
## 505 1.1 93.994 -36.4 4.857 5191 yes
## 506 1.1 93.994 -36.4 4.857 5191 no
## 507 1.1 93.994 -36.4 4.857 5191 no
## 508 1.1 93.994 -36.4 4.857 5191 no
## 509 1.1 93.994 -36.4 4.857 5191 no
## 510 1.1 93.994 -36.4 4.857 5191 no
## 511 1.1 93.994 -36.4 4.857 5191 no
## 512 1.1 93.994 -36.4 4.857 5191 no
## 513 1.1 93.994 -36.4 4.857 5191 no
## 514 1.1 93.994 -36.4 4.857 5191 no
## 515 1.1 93.994 -36.4 4.857 5191 no
## 516 1.1 93.994 -36.4 4.857 5191 no
## 517 1.1 93.994 -36.4 4.857 5191 no
## 518 1.1 93.994 -36.4 4.857 5191 no
## 519 1.1 93.994 -36.4 4.857 5191 no
## 520 1.1 93.994 -36.4 4.857 5191 no
## 521 1.1 93.994 -36.4 4.857 5191 no
## 522 1.1 93.994 -36.4 4.857 5191 no
## 523 1.1 93.994 -36.4 4.857 5191 no
## 524 1.1 93.994 -36.4 4.857 5191 no
## 525 1.1 93.994 -36.4 4.857 5191 no
## 526 1.1 93.994 -36.4 4.857 5191 no
## 527 1.1 93.994 -36.4 4.857 5191 no
## 528 1.1 93.994 -36.4 4.857 5191 no
## 529 1.1 93.994 -36.4 4.857 5191 no
## 530 1.1 93.994 -36.4 4.857 5191 no
## 531 1.1 93.994 -36.4 4.857 5191 no
## 532 1.1 93.994 -36.4 4.857 5191 no
## 533 1.1 93.994 -36.4 4.857 5191 no
## 534 1.1 93.994 -36.4 4.857 5191 no
## 535 1.1 93.994 -36.4 4.857 5191 no
## 536 1.1 93.994 -36.4 4.857 5191 no
## 537 1.1 93.994 -36.4 4.857 5191 no
## 538 1.1 93.994 -36.4 4.857 5191 no
## 539 1.1 93.994 -36.4 4.857 5191 no
## 540 1.1 93.994 -36.4 4.857 5191 no
## 541 1.1 93.994 -36.4 4.857 5191 no
## 542 1.1 93.994 -36.4 4.857 5191 no
## 543 1.1 93.994 -36.4 4.857 5191 no
## 544 1.1 93.994 -36.4 4.857 5191 no
## 545 1.1 93.994 -36.4 4.857 5191 no
## 546 1.1 93.994 -36.4 4.857 5191 no
## 547 1.1 93.994 -36.4 4.857 5191 no
## 548 1.1 93.994 -36.4 4.857 5191 no
## 549 1.1 93.994 -36.4 4.857 5191 no
## 550 1.1 93.994 -36.4 4.857 5191 no
## 551 1.1 93.994 -36.4 4.857 5191 no
## 552 1.1 93.994 -36.4 4.857 5191 no
## 553 1.1 93.994 -36.4 4.857 5191 no
## 554 1.1 93.994 -36.4 4.857 5191 no
## 555 1.1 93.994 -36.4 4.857 5191 no
## 556 1.1 93.994 -36.4 4.857 5191 no
## 557 1.1 93.994 -36.4 4.857 5191 yes
## 558 1.1 93.994 -36.4 4.857 5191 no
## 559 1.1 93.994 -36.4 4.857 5191 no
## 560 1.1 93.994 -36.4 4.857 5191 no
## 561 1.1 93.994 -36.4 4.857 5191 no
## 562 1.1 93.994 -36.4 4.857 5191 no
## 563 1.1 93.994 -36.4 4.857 5191 no
## 564 1.1 93.994 -36.4 4.857 5191 no
## 565 1.1 93.994 -36.4 4.857 5191 no
## 566 1.1 93.994 -36.4 4.857 5191 no
## 567 1.1 93.994 -36.4 4.857 5191 no
## 568 1.1 93.994 -36.4 4.857 5191 no
## 569 1.1 93.994 -36.4 4.857 5191 no
## 570 1.1 93.994 -36.4 4.857 5191 no
## 571 1.1 93.994 -36.4 4.857 5191 no
## 572 1.1 93.994 -36.4 4.857 5191 no
## 573 1.1 93.994 -36.4 4.857 5191 no
## 574 1.1 93.994 -36.4 4.857 5191 no
## 575 1.1 93.994 -36.4 4.857 5191 no
## 576 1.1 93.994 -36.4 4.857 5191 no
## 577 1.1 93.994 -36.4 4.857 5191 no
## 578 1.1 93.994 -36.4 4.857 5191 no
## 579 1.1 93.994 -36.4 4.857 5191 no
## 580 1.1 93.994 -36.4 4.857 5191 no
## 581 1.1 93.994 -36.4 4.857 5191 no
## 582 1.1 93.994 -36.4 4.857 5191 no
## 583 1.1 93.994 -36.4 4.857 5191 no
## 584 1.1 93.994 -36.4 4.857 5191 no
## 585 1.1 93.994 -36.4 4.857 5191 no
## 586 1.1 93.994 -36.4 4.857 5191 no
## 587 1.1 93.994 -36.4 4.857 5191 no
## 588 1.1 93.994 -36.4 4.857 5191 no
## 589 1.1 93.994 -36.4 4.857 5191 no
## 590 1.1 93.994 -36.4 4.857 5191 no
## 591 1.1 93.994 -36.4 4.857 5191 no
## 592 1.1 93.994 -36.4 4.857 5191 no
## 593 1.1 93.994 -36.4 4.857 5191 no
## 594 1.1 93.994 -36.4 4.857 5191 no
## 595 1.1 93.994 -36.4 4.857 5191 no
## 596 1.1 93.994 -36.4 4.857 5191 no
## 597 1.1 93.994 -36.4 4.857 5191 no
## 598 1.1 93.994 -36.4 4.857 5191 no
## 599 1.1 93.994 -36.4 4.857 5191 no
## 600 1.1 93.994 -36.4 4.857 5191 no
## 601 1.1 93.994 -36.4 4.857 5191 no
## 602 1.1 93.994 -36.4 4.857 5191 no
## 603 1.1 93.994 -36.4 4.857 5191 no
## 604 1.1 93.994 -36.4 4.857 5191 no
## 605 1.1 93.994 -36.4 4.857 5191 no
## 606 1.1 93.994 -36.4 4.857 5191 no
## 607 1.1 93.994 -36.4 4.857 5191 no
## 608 1.1 93.994 -36.4 4.857 5191 no
## 609 1.1 93.994 -36.4 4.857 5191 no
## 610 1.1 93.994 -36.4 4.857 5191 no
## 611 1.1 93.994 -36.4 4.857 5191 no
## 612 1.1 93.994 -36.4 4.857 5191 no
## 613 1.1 93.994 -36.4 4.857 5191 no
## 614 1.1 93.994 -36.4 4.857 5191 no
## 615 1.1 93.994 -36.4 4.857 5191 no
## 616 1.1 93.994 -36.4 4.857 5191 no
## 617 1.1 93.994 -36.4 4.857 5191 no
## 618 1.1 93.994 -36.4 4.857 5191 no
## 619 1.1 93.994 -36.4 4.857 5191 no
## 620 1.1 93.994 -36.4 4.857 5191 no
## 621 1.1 93.994 -36.4 4.857 5191 no
## 622 1.1 93.994 -36.4 4.857 5191 no
## 623 1.1 93.994 -36.4 4.857 5191 no
## 624 1.1 93.994 -36.4 4.857 5191 no
## 625 1.1 93.994 -36.4 4.857 5191 no
## 626 1.1 93.994 -36.4 4.857 5191 no
## 627 1.1 93.994 -36.4 4.857 5191 no
## 628 1.1 93.994 -36.4 4.857 5191 no
## 629 1.1 93.994 -36.4 4.857 5191 no
## 630 1.1 93.994 -36.4 4.857 5191 no
## 631 1.1 93.994 -36.4 4.857 5191 no
## 632 1.1 93.994 -36.4 4.857 5191 no
## 633 1.1 93.994 -36.4 4.857 5191 no
## 634 1.1 93.994 -36.4 4.857 5191 no
## 635 1.1 93.994 -36.4 4.857 5191 no
## 636 1.1 93.994 -36.4 4.857 5191 no
## 637 1.1 93.994 -36.4 4.857 5191 no
## 638 1.1 93.994 -36.4 4.857 5191 no
## 639 1.1 93.994 -36.4 4.857 5191 no
## 640 1.1 93.994 -36.4 4.857 5191 no
## 641 1.1 93.994 -36.4 4.857 5191 no
## 642 1.1 93.994 -36.4 4.857 5191 no
## 643 1.1 93.994 -36.4 4.857 5191 no
## 644 1.1 93.994 -36.4 4.857 5191 no
## 645 1.1 93.994 -36.4 4.857 5191 no
## 646 1.1 93.994 -36.4 4.857 5191 no
## 647 1.1 93.994 -36.4 4.857 5191 no
## 648 1.1 93.994 -36.4 4.857 5191 no
## 649 1.1 93.994 -36.4 4.857 5191 no
## 650 1.1 93.994 -36.4 4.857 5191 no
## 651 1.1 93.994 -36.4 4.857 5191 no
## 652 1.1 93.994 -36.4 4.857 5191 no
## 653 1.1 93.994 -36.4 4.857 5191 no
## 654 1.1 93.994 -36.4 4.857 5191 no
## 655 1.1 93.994 -36.4 4.857 5191 no
## 656 1.1 93.994 -36.4 4.857 5191 no
## 657 1.1 93.994 -36.4 4.857 5191 no
## 658 1.1 93.994 -36.4 4.857 5191 no
## 659 1.1 93.994 -36.4 4.857 5191 no
## 660 1.1 93.994 -36.4 4.857 5191 no
## 661 1.1 93.994 -36.4 4.857 5191 no
## 662 1.1 93.994 -36.4 4.857 5191 no
## 663 1.1 93.994 -36.4 4.857 5191 no
## 664 1.1 93.994 -36.4 4.857 5191 no
## 665 1.1 93.994 -36.4 4.857 5191 no
## 666 1.1 93.994 -36.4 4.857 5191 no
## 667 1.1 93.994 -36.4 4.857 5191 no
## 668 1.1 93.994 -36.4 4.857 5191 no
## 669 1.1 93.994 -36.4 4.857 5191 no
## 670 1.1 93.994 -36.4 4.857 5191 no
## 671 1.1 93.994 -36.4 4.857 5191 no
## 672 1.1 93.994 -36.4 4.857 5191 no
## 673 1.1 93.994 -36.4 4.857 5191 no
## 674 1.1 93.994 -36.4 4.857 5191 no
## 675 1.1 93.994 -36.4 4.857 5191 no
## 676 1.1 93.994 -36.4 4.857 5191 no
## 677 1.1 93.994 -36.4 4.857 5191 no
## 678 1.1 93.994 -36.4 4.857 5191 no
## 679 1.1 93.994 -36.4 4.857 5191 no
## 680 1.1 93.994 -36.4 4.857 5191 no
## 681 1.1 93.994 -36.4 4.857 5191 no
## 682 1.1 93.994 -36.4 4.857 5191 yes
## 683 1.1 93.994 -36.4 4.857 5191 no
## 684 1.1 93.994 -36.4 4.857 5191 no
## 685 1.1 93.994 -36.4 4.857 5191 no
## 686 1.1 93.994 -36.4 4.857 5191 no
## 687 1.1 93.994 -36.4 4.857 5191 no
## 688 1.1 93.994 -36.4 4.857 5191 no
## 689 1.1 93.994 -36.4 4.857 5191 no
## 690 1.1 93.994 -36.4 4.857 5191 no
## 691 1.1 93.994 -36.4 4.857 5191 no
## 692 1.1 93.994 -36.4 4.857 5191 no
## 693 1.1 93.994 -36.4 4.857 5191 no
## 694 1.1 93.994 -36.4 4.857 5191 no
## 695 1.1 93.994 -36.4 4.857 5191 no
## 696 1.1 93.994 -36.4 4.857 5191 no
## 697 1.1 93.994 -36.4 4.857 5191 no
## 698 1.1 93.994 -36.4 4.857 5191 no
## 699 1.1 93.994 -36.4 4.857 5191 no
## 700 1.1 93.994 -36.4 4.857 5191 no
## 701 1.1 93.994 -36.4 4.857 5191 no
## 702 1.1 93.994 -36.4 4.857 5191 no
## 703 1.1 93.994 -36.4 4.857 5191 no
## 704 1.1 93.994 -36.4 4.857 5191 no
## 705 1.1 93.994 -36.4 4.857 5191 no
## 706 1.1 93.994 -36.4 4.857 5191 no
## 707 1.1 93.994 -36.4 4.857 5191 no
## 708 1.1 93.994 -36.4 4.857 5191 no
## 709 1.1 93.994 -36.4 4.857 5191 no
## 710 1.1 93.994 -36.4 4.857 5191 no
## 711 1.1 93.994 -36.4 4.857 5191 no
## 712 1.1 93.994 -36.4 4.857 5191 no
## 713 1.1 93.994 -36.4 4.857 5191 no
## 714 1.1 93.994 -36.4 4.857 5191 no
## 715 1.1 93.994 -36.4 4.857 5191 no
## 716 1.1 93.994 -36.4 4.857 5191 no
## 717 1.1 93.994 -36.4 4.857 5191 no
## 718 1.1 93.994 -36.4 4.857 5191 no
## 719 1.1 93.994 -36.4 4.857 5191 no
## 720 1.1 93.994 -36.4 4.857 5191 no
## 721 1.1 93.994 -36.4 4.857 5191 no
## 722 1.1 93.994 -36.4 4.857 5191 no
## 723 1.1 93.994 -36.4 4.857 5191 no
## 724 1.1 93.994 -36.4 4.857 5191 no
## 725 1.1 93.994 -36.4 4.857 5191 no
## 726 1.1 93.994 -36.4 4.857 5191 no
## 727 1.1 93.994 -36.4 4.857 5191 no
## 728 1.1 93.994 -36.4 4.857 5191 no
## 729 1.1 93.994 -36.4 4.857 5191 no
## 730 1.1 93.994 -36.4 4.857 5191 no
## 731 1.1 93.994 -36.4 4.857 5191 no
## 732 1.1 93.994 -36.4 4.857 5191 no
## 733 1.1 93.994 -36.4 4.857 5191 no
## 734 1.1 93.994 -36.4 4.857 5191 no
## 735 1.1 93.994 -36.4 4.857 5191 no
## 736 1.1 93.994 -36.4 4.857 5191 no
## 737 1.1 93.994 -36.4 4.857 5191 no
## 738 1.1 93.994 -36.4 4.857 5191 no
## 739 1.1 93.994 -36.4 4.857 5191 no
## 740 1.1 93.994 -36.4 4.857 5191 no
## 741 1.1 93.994 -36.4 4.857 5191 no
## 742 1.1 93.994 -36.4 4.857 5191 no
## 743 1.1 93.994 -36.4 4.857 5191 no
## 744 1.1 93.994 -36.4 4.857 5191 no
## 745 1.1 93.994 -36.4 4.857 5191 no
## 746 1.1 93.994 -36.4 4.857 5191 no
## 747 1.1 93.994 -36.4 4.857 5191 no
## 748 1.1 93.994 -36.4 4.857 5191 no
## 749 1.1 93.994 -36.4 4.857 5191 no
## 750 1.1 93.994 -36.4 4.857 5191 no
## 751 1.1 93.994 -36.4 4.857 5191 no
## 752 1.1 93.994 -36.4 4.857 5191 no
## 753 1.1 93.994 -36.4 4.857 5191 no
## 754 1.1 93.994 -36.4 4.857 5191 no
## 755 1.1 93.994 -36.4 4.857 5191 no
## 756 1.1 93.994 -36.4 4.857 5191 no
## 757 1.1 93.994 -36.4 4.856 5191 no
## 758 1.1 93.994 -36.4 4.856 5191 no
## 759 1.1 93.994 -36.4 4.856 5191 no
## 760 1.1 93.994 -36.4 4.856 5191 no
## 761 1.1 93.994 -36.4 4.856 5191 no
## 762 1.1 93.994 -36.4 4.856 5191 no
## 763 1.1 93.994 -36.4 4.856 5191 no
## 764 1.1 93.994 -36.4 4.856 5191 no
## 765 1.1 93.994 -36.4 4.856 5191 no
## 766 1.1 93.994 -36.4 4.856 5191 no
## 767 1.1 93.994 -36.4 4.856 5191 no
## 768 1.1 93.994 -36.4 4.856 5191 no
## 769 1.1 93.994 -36.4 4.856 5191 no
## 770 1.1 93.994 -36.4 4.856 5191 no
## 771 1.1 93.994 -36.4 4.856 5191 no
## 772 1.1 93.994 -36.4 4.856 5191 no
## 773 1.1 93.994 -36.4 4.856 5191 no
## 774 1.1 93.994 -36.4 4.856 5191 no
## 775 1.1 93.994 -36.4 4.856 5191 no
## 776 1.1 93.994 -36.4 4.856 5191 no
## 777 1.1 93.994 -36.4 4.856 5191 no
## 778 1.1 93.994 -36.4 4.856 5191 no
## 779 1.1 93.994 -36.4 4.856 5191 no
## 780 1.1 93.994 -36.4 4.856 5191 no
## 781 1.1 93.994 -36.4 4.856 5191 no
## 782 1.1 93.994 -36.4 4.856 5191 no
## 783 1.1 93.994 -36.4 4.856 5191 no
## 784 1.1 93.994 -36.4 4.856 5191 no
## 785 1.1 93.994 -36.4 4.856 5191 no
## 786 1.1 93.994 -36.4 4.856 5191 no
## 787 1.1 93.994 -36.4 4.856 5191 no
## 788 1.1 93.994 -36.4 4.856 5191 no
## 789 1.1 93.994 -36.4 4.856 5191 no
## 790 1.1 93.994 -36.4 4.856 5191 no
## 791 1.1 93.994 -36.4 4.856 5191 no
## 792 1.1 93.994 -36.4 4.856 5191 no
## 793 1.1 93.994 -36.4 4.856 5191 no
## 794 1.1 93.994 -36.4 4.856 5191 no
## 795 1.1 93.994 -36.4 4.856 5191 no
## 796 1.1 93.994 -36.4 4.856 5191 no
## 797 1.1 93.994 -36.4 4.856 5191 no
## 798 1.1 93.994 -36.4 4.856 5191 no
## 799 1.1 93.994 -36.4 4.856 5191 no
## 800 1.1 93.994 -36.4 4.856 5191 no
## 801 1.1 93.994 -36.4 4.856 5191 no
## 802 1.1 93.994 -36.4 4.856 5191 no
## 803 1.1 93.994 -36.4 4.856 5191 no
## 804 1.1 93.994 -36.4 4.856 5191 no
## 805 1.1 93.994 -36.4 4.856 5191 no
## 806 1.1 93.994 -36.4 4.856 5191 no
## 807 1.1 93.994 -36.4 4.856 5191 no
## 808 1.1 93.994 -36.4 4.856 5191 no
## 809 1.1 93.994 -36.4 4.856 5191 no
## 810 1.1 93.994 -36.4 4.856 5191 no
## 811 1.1 93.994 -36.4 4.856 5191 no
## 812 1.1 93.994 -36.4 4.856 5191 no
## 813 1.1 93.994 -36.4 4.856 5191 no
## 814 1.1 93.994 -36.4 4.856 5191 no
## 815 1.1 93.994 -36.4 4.856 5191 no
## 816 1.1 93.994 -36.4 4.856 5191 no
## 817 1.1 93.994 -36.4 4.856 5191 no
## 818 1.1 93.994 -36.4 4.856 5191 no
## 819 1.1 93.994 -36.4 4.856 5191 no
## 820 1.1 93.994 -36.4 4.856 5191 no
## 821 1.1 93.994 -36.4 4.856 5191 yes
## 822 1.1 93.994 -36.4 4.856 5191 no
## 823 1.1 93.994 -36.4 4.856 5191 no
## 824 1.1 93.994 -36.4 4.856 5191 no
## 825 1.1 93.994 -36.4 4.856 5191 no
## 826 1.1 93.994 -36.4 4.856 5191 no
## 827 1.1 93.994 -36.4 4.856 5191 no
## 828 1.1 93.994 -36.4 4.856 5191 no
## 829 1.1 93.994 -36.4 4.856 5191 no
## 830 1.1 93.994 -36.4 4.856 5191 no
## 831 1.1 93.994 -36.4 4.856 5191 no
## 832 1.1 93.994 -36.4 4.856 5191 no
## 833 1.1 93.994 -36.4 4.856 5191 yes
## 834 1.1 93.994 -36.4 4.856 5191 no
## 835 1.1 93.994 -36.4 4.856 5191 no
## 836 1.1 93.994 -36.4 4.856 5191 no
## 837 1.1 93.994 -36.4 4.856 5191 no
## 838 1.1 93.994 -36.4 4.856 5191 no
## 839 1.1 93.994 -36.4 4.856 5191 no
## 840 1.1 93.994 -36.4 4.856 5191 no
## 841 1.1 93.994 -36.4 4.856 5191 no
## 842 1.1 93.994 -36.4 4.856 5191 no
## 843 1.1 93.994 -36.4 4.856 5191 no
## 844 1.1 93.994 -36.4 4.856 5191 no
## 845 1.1 93.994 -36.4 4.856 5191 no
## 846 1.1 93.994 -36.4 4.856 5191 no
## 847 1.1 93.994 -36.4 4.856 5191 no
## 848 1.1 93.994 -36.4 4.856 5191 no
## 849 1.1 93.994 -36.4 4.856 5191 no
## 850 1.1 93.994 -36.4 4.856 5191 no
## 851 1.1 93.994 -36.4 4.856 5191 no
## 852 1.1 93.994 -36.4 4.856 5191 no
## 853 1.1 93.994 -36.4 4.856 5191 no
## 854 1.1 93.994 -36.4 4.856 5191 no
## 855 1.1 93.994 -36.4 4.856 5191 no
## 856 1.1 93.994 -36.4 4.856 5191 no
## 857 1.1 93.994 -36.4 4.856 5191 yes
## 858 1.1 93.994 -36.4 4.856 5191 no
## 859 1.1 93.994 -36.4 4.856 5191 no
## 860 1.1 93.994 -36.4 4.856 5191 no
## 861 1.1 93.994 -36.4 4.856 5191 no
## 862 1.1 93.994 -36.4 4.856 5191 no
## 863 1.1 93.994 -36.4 4.856 5191 no
## 864 1.1 93.994 -36.4 4.856 5191 no
## 865 1.1 93.994 -36.4 4.856 5191 no
## 866 1.1 93.994 -36.4 4.856 5191 no
## 867 1.1 93.994 -36.4 4.856 5191 no
## 868 1.1 93.994 -36.4 4.856 5191 no
## 869 1.1 93.994 -36.4 4.856 5191 no
## 870 1.1 93.994 -36.4 4.856 5191 no
## 871 1.1 93.994 -36.4 4.856 5191 yes
## 872 1.1 93.994 -36.4 4.856 5191 no
## 873 1.1 93.994 -36.4 4.856 5191 no
## 874 1.1 93.994 -36.4 4.856 5191 no
## 875 1.1 93.994 -36.4 4.856 5191 no
## 876 1.1 93.994 -36.4 4.856 5191 no
## 877 1.1 93.994 -36.4 4.856 5191 yes
## 878 1.1 93.994 -36.4 4.856 5191 no
## 879 1.1 93.994 -36.4 4.856 5191 no
## 880 1.1 93.994 -36.4 4.856 5191 no
## 881 1.1 93.994 -36.4 4.856 5191 no
## 882 1.1 93.994 -36.4 4.856 5191 no
## 883 1.1 93.994 -36.4 4.856 5191 no
## 884 1.1 93.994 -36.4 4.856 5191 no
## 885 1.1 93.994 -36.4 4.856 5191 no
## 886 1.1 93.994 -36.4 4.856 5191 no
## 887 1.1 93.994 -36.4 4.856 5191 no
## 888 1.1 93.994 -36.4 4.856 5191 no
## 889 1.1 93.994 -36.4 4.856 5191 no
## 890 1.1 93.994 -36.4 4.856 5191 no
## 891 1.1 93.994 -36.4 4.856 5191 no
## 892 1.1 93.994 -36.4 4.856 5191 no
## 893 1.1 93.994 -36.4 4.856 5191 no
## 894 1.1 93.994 -36.4 4.856 5191 no
## 895 1.1 93.994 -36.4 4.856 5191 no
## 896 1.1 93.994 -36.4 4.856 5191 no
## 897 1.1 93.994 -36.4 4.856 5191 no
## 898 1.1 93.994 -36.4 4.856 5191 no
## 899 1.1 93.994 -36.4 4.856 5191 no
## 900 1.1 93.994 -36.4 4.856 5191 no
## 901 1.1 93.994 -36.4 4.856 5191 no
## 902 1.1 93.994 -36.4 4.856 5191 no
## 903 1.1 93.994 -36.4 4.856 5191 no
## 904 1.1 93.994 -36.4 4.856 5191 no
## 905 1.1 93.994 -36.4 4.856 5191 no
## 906 1.1 93.994 -36.4 4.856 5191 no
## 907 1.1 93.994 -36.4 4.856 5191 no
## 908 1.1 93.994 -36.4 4.856 5191 no
## 909 1.1 93.994 -36.4 4.856 5191 no
## 910 1.1 93.994 -36.4 4.856 5191 no
## 911 1.1 93.994 -36.4 4.856 5191 no
## 912 1.1 93.994 -36.4 4.856 5191 no
## 913 1.1 93.994 -36.4 4.856 5191 no
## 914 1.1 93.994 -36.4 4.856 5191 no
## 915 1.1 93.994 -36.4 4.856 5191 no
## 916 1.1 93.994 -36.4 4.856 5191 no
## 917 1.1 93.994 -36.4 4.856 5191 no
## 918 1.1 93.994 -36.4 4.856 5191 no
## 919 1.1 93.994 -36.4 4.856 5191 no
## 920 1.1 93.994 -36.4 4.856 5191 no
## 921 1.1 93.994 -36.4 4.856 5191 no
## 922 1.1 93.994 -36.4 4.856 5191 no
## 923 1.1 93.994 -36.4 4.856 5191 no
## 924 1.1 93.994 -36.4 4.856 5191 no
## 925 1.1 93.994 -36.4 4.856 5191 no
## 926 1.1 93.994 -36.4 4.856 5191 no
## 927 1.1 93.994 -36.4 4.856 5191 no
## 928 1.1 93.994 -36.4 4.856 5191 no
## 929 1.1 93.994 -36.4 4.856 5191 no
## 930 1.1 93.994 -36.4 4.856 5191 no
## 931 1.1 93.994 -36.4 4.856 5191 no
## 932 1.1 93.994 -36.4 4.856 5191 no
## 933 1.1 93.994 -36.4 4.856 5191 no
## 934 1.1 93.994 -36.4 4.856 5191 no
## 935 1.1 93.994 -36.4 4.856 5191 no
## 936 1.1 93.994 -36.4 4.856 5191 no
## 937 1.1 93.994 -36.4 4.856 5191 no
## 938 1.1 93.994 -36.4 4.856 5191 no
## 939 1.1 93.994 -36.4 4.856 5191 no
## 940 1.1 93.994 -36.4 4.856 5191 no
## 941 1.1 93.994 -36.4 4.856 5191 no
## 942 1.1 93.994 -36.4 4.856 5191 no
## 943 1.1 93.994 -36.4 4.856 5191 no
## 944 1.1 93.994 -36.4 4.856 5191 no
## 945 1.1 93.994 -36.4 4.856 5191 no
## 946 1.1 93.994 -36.4 4.856 5191 no
## 947 1.1 93.994 -36.4 4.856 5191 no
## 948 1.1 93.994 -36.4 4.856 5191 no
## 949 1.1 93.994 -36.4 4.856 5191 no
## 950 1.1 93.994 -36.4 4.856 5191 no
## 951 1.1 93.994 -36.4 4.856 5191 no
## 952 1.1 93.994 -36.4 4.856 5191 no
## 953 1.1 93.994 -36.4 4.856 5191 no
## 954 1.1 93.994 -36.4 4.856 5191 no
## 955 1.1 93.994 -36.4 4.856 5191 no
## 956 1.1 93.994 -36.4 4.856 5191 no
## 957 1.1 93.994 -36.4 4.856 5191 no
## 958 1.1 93.994 -36.4 4.856 5191 no
## 959 1.1 93.994 -36.4 4.856 5191 no
## 960 1.1 93.994 -36.4 4.856 5191 no
## 961 1.1 93.994 -36.4 4.856 5191 no
## 962 1.1 93.994 -36.4 4.856 5191 no
## 963 1.1 93.994 -36.4 4.856 5191 no
## 964 1.1 93.994 -36.4 4.856 5191 no
## 965 1.1 93.994 -36.4 4.856 5191 no
## 966 1.1 93.994 -36.4 4.856 5191 no
## 967 1.1 93.994 -36.4 4.856 5191 no
## 968 1.1 93.994 -36.4 4.856 5191 no
## 969 1.1 93.994 -36.4 4.856 5191 no
## 970 1.1 93.994 -36.4 4.856 5191 no
## 971 1.1 93.994 -36.4 4.856 5191 no
## 972 1.1 93.994 -36.4 4.856 5191 no
## 973 1.1 93.994 -36.4 4.856 5191 no
## 974 1.1 93.994 -36.4 4.856 5191 no
## 975 1.1 93.994 -36.4 4.856 5191 no
## 976 1.1 93.994 -36.4 4.856 5191 no
## 977 1.1 93.994 -36.4 4.856 5191 no
## 978 1.1 93.994 -36.4 4.856 5191 no
## 979 1.1 93.994 -36.4 4.856 5191 no
## 980 1.1 93.994 -36.4 4.856 5191 no
## 981 1.1 93.994 -36.4 4.856 5191 no
## 982 1.1 93.994 -36.4 4.856 5191 no
## 983 1.1 93.994 -36.4 4.856 5191 no
## 984 1.1 93.994 -36.4 4.856 5191 no
## 985 1.1 93.994 -36.4 4.856 5191 no
## 986 1.1 93.994 -36.4 4.856 5191 no
## 987 1.1 93.994 -36.4 4.856 5191 no
## 988 1.1 93.994 -36.4 4.856 5191 no
## 989 1.1 93.994 -36.4 4.856 5191 no
## 990 1.1 93.994 -36.4 4.856 5191 no
## 991 1.1 93.994 -36.4 4.856 5191 no
## 992 1.1 93.994 -36.4 4.856 5191 no
## 993 1.1 93.994 -36.4 4.856 5191 no
## 994 1.1 93.994 -36.4 4.856 5191 no
## 995 1.1 93.994 -36.4 4.856 5191 no
## 996 1.1 93.994 -36.4 4.856 5191 no
## 997 1.1 93.994 -36.4 4.856 5191 no
## 998 1.1 93.994 -36.4 4.856 5191 no
## 999 1.1 93.994 -36.4 4.856 5191 no
## 1000 1.1 93.994 -36.4 4.856 5191 no
## 1001 1.1 93.994 -36.4 4.856 5191 no
## 1002 1.1 93.994 -36.4 4.856 5191 no
## 1003 1.1 93.994 -36.4 4.856 5191 no
## 1004 1.1 93.994 -36.4 4.856 5191 no
## 1005 1.1 93.994 -36.4 4.856 5191 no
## 1006 1.1 93.994 -36.4 4.856 5191 no
## 1007 1.1 93.994 -36.4 4.856 5191 no
## 1008 1.1 93.994 -36.4 4.856 5191 no
## 1009 1.1 93.994 -36.4 4.856 5191 no
## 1010 1.1 93.994 -36.4 4.856 5191 no
## 1011 1.1 93.994 -36.4 4.856 5191 no
## 1012 1.1 93.994 -36.4 4.856 5191 no
## 1013 1.1 93.994 -36.4 4.856 5191 no
## 1014 1.1 93.994 -36.4 4.856 5191 no
## 1015 1.1 93.994 -36.4 4.856 5191 no
## 1016 1.1 93.994 -36.4 4.856 5191 no
## 1017 1.1 93.994 -36.4 4.856 5191 no
## 1018 1.1 93.994 -36.4 4.856 5191 no
## 1019 1.1 93.994 -36.4 4.856 5191 no
## 1020 1.1 93.994 -36.4 4.856 5191 no
## 1021 1.1 93.994 -36.4 4.856 5191 no
## 1022 1.1 93.994 -36.4 4.856 5191 no
## 1023 1.1 93.994 -36.4 4.856 5191 no
## 1024 1.1 93.994 -36.4 4.856 5191 no
## 1025 1.1 93.994 -36.4 4.856 5191 no
## 1026 1.1 93.994 -36.4 4.856 5191 no
## 1027 1.1 93.994 -36.4 4.856 5191 no
## 1028 1.1 93.994 -36.4 4.856 5191 no
## 1029 1.1 93.994 -36.4 4.856 5191 no
## 1030 1.1 93.994 -36.4 4.856 5191 no
## 1031 1.1 93.994 -36.4 4.856 5191 no
## 1032 1.1 93.994 -36.4 4.856 5191 no
## 1033 1.1 93.994 -36.4 4.856 5191 no
## 1034 1.1 93.994 -36.4 4.856 5191 no
## 1035 1.1 93.994 -36.4 4.856 5191 no
## 1036 1.1 93.994 -36.4 4.856 5191 no
## 1037 1.1 93.994 -36.4 4.856 5191 no
## 1038 1.1 93.994 -36.4 4.856 5191 no
## 1039 1.1 93.994 -36.4 4.856 5191 no
## 1040 1.1 93.994 -36.4 4.856 5191 no
## 1041 1.1 93.994 -36.4 4.856 5191 no
## 1042 1.1 93.994 -36.4 4.856 5191 no
## 1043 1.1 93.994 -36.4 4.856 5191 no
## 1044 1.1 93.994 -36.4 4.856 5191 no
## 1045 1.1 93.994 -36.4 4.856 5191 no
## 1046 1.1 93.994 -36.4 4.856 5191 no
## 1047 1.1 93.994 -36.4 4.856 5191 no
## 1048 1.1 93.994 -36.4 4.856 5191 no
## 1049 1.1 93.994 -36.4 4.856 5191 no
## 1050 1.1 93.994 -36.4 4.856 5191 no
## 1051 1.1 93.994 -36.4 4.856 5191 no
## 1052 1.1 93.994 -36.4 4.856 5191 no
## 1053 1.1 93.994 -36.4 4.856 5191 no
## 1054 1.1 93.994 -36.4 4.856 5191 no
## 1055 1.1 93.994 -36.4 4.856 5191 no
## 1056 1.1 93.994 -36.4 4.856 5191 no
## 1057 1.1 93.994 -36.4 4.856 5191 no
## 1058 1.1 93.994 -36.4 4.856 5191 no
## 1059 1.1 93.994 -36.4 4.856 5191 no
## 1060 1.1 93.994 -36.4 4.856 5191 no
## 1061 1.1 93.994 -36.4 4.856 5191 no
## 1062 1.1 93.994 -36.4 4.856 5191 no
## 1063 1.1 93.994 -36.4 4.856 5191 no
## 1064 1.1 93.994 -36.4 4.856 5191 no
## 1065 1.1 93.994 -36.4 4.856 5191 no
## 1066 1.1 93.994 -36.4 4.856 5191 no
## 1067 1.1 93.994 -36.4 4.856 5191 no
## 1068 1.1 93.994 -36.4 4.856 5191 no
## 1069 1.1 93.994 -36.4 4.856 5191 no
## 1070 1.1 93.994 -36.4 4.856 5191 no
## 1071 1.1 93.994 -36.4 4.856 5191 no
## 1072 1.1 93.994 -36.4 4.856 5191 no
## 1073 1.1 93.994 -36.4 4.856 5191 no
## 1074 1.1 93.994 -36.4 4.856 5191 no
## 1075 1.1 93.994 -36.4 4.856 5191 no
## 1076 1.1 93.994 -36.4 4.856 5191 no
## 1077 1.1 93.994 -36.4 4.856 5191 no
## 1078 1.1 93.994 -36.4 4.856 5191 no
## 1079 1.1 93.994 -36.4 4.856 5191 yes
## 1080 1.1 93.994 -36.4 4.856 5191 no
## 1081 1.1 93.994 -36.4 4.856 5191 no
## 1082 1.1 93.994 -36.4 4.856 5191 no
## 1083 1.1 93.994 -36.4 4.856 5191 no
## 1084 1.1 93.994 -36.4 4.856 5191 no
## 1085 1.1 93.994 -36.4 4.856 5191 no
## 1086 1.1 93.994 -36.4 4.856 5191 no
## 1087 1.1 93.994 -36.4 4.856 5191 no
## 1088 1.1 93.994 -36.4 4.856 5191 no
## 1089 1.1 93.994 -36.4 4.856 5191 no
## 1090 1.1 93.994 -36.4 4.856 5191 no
## 1091 1.1 93.994 -36.4 4.856 5191 no
## 1092 1.1 93.994 -36.4 4.856 5191 no
## 1093 1.1 93.994 -36.4 4.856 5191 no
## 1094 1.1 93.994 -36.4 4.856 5191 no
## 1095 1.1 93.994 -36.4 4.856 5191 no
## 1096 1.1 93.994 -36.4 4.856 5191 no
## 1097 1.1 93.994 -36.4 4.856 5191 no
## 1098 1.1 93.994 -36.4 4.856 5191 no
## 1099 1.1 93.994 -36.4 4.856 5191 no
## 1100 1.1 93.994 -36.4 4.856 5191 no
## 1101 1.1 93.994 -36.4 4.856 5191 no
## 1102 1.1 93.994 -36.4 4.856 5191 no
## 1103 1.1 93.994 -36.4 4.856 5191 no
## 1104 1.1 93.994 -36.4 4.856 5191 no
## 1105 1.1 93.994 -36.4 4.856 5191 no
## 1106 1.1 93.994 -36.4 4.856 5191 no
## 1107 1.1 93.994 -36.4 4.856 5191 no
## 1108 1.1 93.994 -36.4 4.856 5191 no
## 1109 1.1 93.994 -36.4 4.856 5191 no
## 1110 1.1 93.994 -36.4 4.856 5191 no
## 1111 1.1 93.994 -36.4 4.856 5191 no
## 1112 1.1 93.994 -36.4 4.856 5191 no
## 1113 1.1 93.994 -36.4 4.856 5191 no
## 1114 1.1 93.994 -36.4 4.856 5191 no
## 1115 1.1 93.994 -36.4 4.856 5191 yes
## 1116 1.1 93.994 -36.4 4.856 5191 no
## 1117 1.1 93.994 -36.4 4.856 5191 no
## 1118 1.1 93.994 -36.4 4.856 5191 no
## 1119 1.1 93.994 -36.4 4.856 5191 no
## 1120 1.1 93.994 -36.4 4.856 5191 no
## 1121 1.1 93.994 -36.4 4.856 5191 no
## 1122 1.1 93.994 -36.4 4.856 5191 no
## 1123 1.1 93.994 -36.4 4.856 5191 no
## 1124 1.1 93.994 -36.4 4.856 5191 no
## 1125 1.1 93.994 -36.4 4.856 5191 no
## 1126 1.1 93.994 -36.4 4.856 5191 no
## 1127 1.1 93.994 -36.4 4.856 5191 no
## 1128 1.1 93.994 -36.4 4.856 5191 no
## 1129 1.1 93.994 -36.4 4.856 5191 no
## 1130 1.1 93.994 -36.4 4.856 5191 no
## 1131 1.1 93.994 -36.4 4.856 5191 no
## 1132 1.1 93.994 -36.4 4.856 5191 no
## 1133 1.1 93.994 -36.4 4.856 5191 no
## 1134 1.1 93.994 -36.4 4.856 5191 no
## 1135 1.1 93.994 -36.4 4.856 5191 no
## 1136 1.1 93.994 -36.4 4.856 5191 no
## 1137 1.1 93.994 -36.4 4.856 5191 no
## 1138 1.1 93.994 -36.4 4.856 5191 no
## 1139 1.1 93.994 -36.4 4.856 5191 no
## 1140 1.1 93.994 -36.4 4.856 5191 no
## 1141 1.1 93.994 -36.4 4.856 5191 no
## 1142 1.1 93.994 -36.4 4.856 5191 no
## 1143 1.1 93.994 -36.4 4.856 5191 no
## 1144 1.1 93.994 -36.4 4.856 5191 no
## 1145 1.1 93.994 -36.4 4.856 5191 no
## 1146 1.1 93.994 -36.4 4.856 5191 no
## 1147 1.1 93.994 -36.4 4.855 5191 no
## 1148 1.1 93.994 -36.4 4.855 5191 no
## 1149 1.1 93.994 -36.4 4.855 5191 no
## 1150 1.1 93.994 -36.4 4.855 5191 no
## 1151 1.1 93.994 -36.4 4.855 5191 no
## 1152 1.1 93.994 -36.4 4.855 5191 no
## 1153 1.1 93.994 -36.4 4.855 5191 no
## 1154 1.1 93.994 -36.4 4.855 5191 no
## 1155 1.1 93.994 -36.4 4.855 5191 no
## 1156 1.1 93.994 -36.4 4.855 5191 no
## 1157 1.1 93.994 -36.4 4.855 5191 no
## 1158 1.1 93.994 -36.4 4.855 5191 no
## 1159 1.1 93.994 -36.4 4.855 5191 no
## 1160 1.1 93.994 -36.4 4.855 5191 no
## 1161 1.1 93.994 -36.4 4.855 5191 no
## 1162 1.1 93.994 -36.4 4.855 5191 no
## 1163 1.1 93.994 -36.4 4.855 5191 no
## 1164 1.1 93.994 -36.4 4.855 5191 no
## 1165 1.1 93.994 -36.4 4.855 5191 no
## 1166 1.1 93.994 -36.4 4.855 5191 no
## 1167 1.1 93.994 -36.4 4.855 5191 yes
## 1168 1.1 93.994 -36.4 4.855 5191 no
## 1169 1.1 93.994 -36.4 4.855 5191 no
## 1170 1.1 93.994 -36.4 4.855 5191 no
## 1171 1.1 93.994 -36.4 4.855 5191 no
## 1172 1.1 93.994 -36.4 4.855 5191 no
## 1173 1.1 93.994 -36.4 4.855 5191 no
## 1174 1.1 93.994 -36.4 4.855 5191 no
## 1175 1.1 93.994 -36.4 4.855 5191 no
## 1176 1.1 93.994 -36.4 4.855 5191 no
## 1177 1.1 93.994 -36.4 4.855 5191 no
## 1178 1.1 93.994 -36.4 4.855 5191 no
## 1179 1.1 93.994 -36.4 4.855 5191 no
## 1180 1.1 93.994 -36.4 4.855 5191 no
## 1181 1.1 93.994 -36.4 4.855 5191 no
## 1182 1.1 93.994 -36.4 4.855 5191 no
## 1183 1.1 93.994 -36.4 4.855 5191 no
## 1184 1.1 93.994 -36.4 4.855 5191 no
## 1185 1.1 93.994 -36.4 4.855 5191 no
## 1186 1.1 93.994 -36.4 4.855 5191 no
## 1187 1.1 93.994 -36.4 4.855 5191 no
## 1188 1.1 93.994 -36.4 4.855 5191 no
## 1189 1.1 93.994 -36.4 4.855 5191 no
## 1190 1.1 93.994 -36.4 4.855 5191 yes
## 1191 1.1 93.994 -36.4 4.855 5191 no
## 1192 1.1 93.994 -36.4 4.855 5191 no
## 1193 1.1 93.994 -36.4 4.855 5191 no
## 1194 1.1 93.994 -36.4 4.855 5191 no
## 1195 1.1 93.994 -36.4 4.855 5191 no
## 1196 1.1 93.994 -36.4 4.855 5191 no
## 1197 1.1 93.994 -36.4 4.855 5191 no
## 1198 1.1 93.994 -36.4 4.855 5191 no
## 1199 1.1 93.994 -36.4 4.855 5191 no
## 1200 1.1 93.994 -36.4 4.855 5191 no
## 1201 1.1 93.994 -36.4 4.855 5191 no
## 1202 1.1 93.994 -36.4 4.855 5191 no
## 1203 1.1 93.994 -36.4 4.855 5191 no
## 1204 1.1 93.994 -36.4 4.855 5191 no
## 1205 1.1 93.994 -36.4 4.855 5191 no
## 1206 1.1 93.994 -36.4 4.855 5191 no
## 1207 1.1 93.994 -36.4 4.855 5191 no
## 1208 1.1 93.994 -36.4 4.855 5191 no
## 1209 1.1 93.994 -36.4 4.855 5191 no
## 1210 1.1 93.994 -36.4 4.855 5191 no
## 1211 1.1 93.994 -36.4 4.855 5191 no
## 1212 1.1 93.994 -36.4 4.855 5191 no
## 1213 1.1 93.994 -36.4 4.855 5191 no
## 1214 1.1 93.994 -36.4 4.855 5191 no
## 1215 1.1 93.994 -36.4 4.855 5191 no
## 1216 1.1 93.994 -36.4 4.855 5191 no
## 1217 1.1 93.994 -36.4 4.855 5191 no
## 1218 1.1 93.994 -36.4 4.855 5191 no
## 1219 1.1 93.994 -36.4 4.855 5191 no
## 1220 1.1 93.994 -36.4 4.855 5191 no
## 1221 1.1 93.994 -36.4 4.855 5191 no
## 1222 1.1 93.994 -36.4 4.855 5191 no
## 1223 1.1 93.994 -36.4 4.855 5191 no
## 1224 1.1 93.994 -36.4 4.855 5191 no
## 1225 1.1 93.994 -36.4 4.855 5191 no
## 1226 1.1 93.994 -36.4 4.855 5191 no
## 1227 1.1 93.994 -36.4 4.855 5191 no
## 1228 1.1 93.994 -36.4 4.855 5191 no
## 1229 1.1 93.994 -36.4 4.855 5191 no
## 1230 1.1 93.994 -36.4 4.855 5191 no
## 1231 1.1 93.994 -36.4 4.855 5191 no
## 1232 1.1 93.994 -36.4 4.855 5191 no
## 1233 1.1 93.994 -36.4 4.855 5191 no
## 1234 1.1 93.994 -36.4 4.855 5191 yes
## 1235 1.1 93.994 -36.4 4.855 5191 no
## 1236 1.1 93.994 -36.4 4.855 5191 no
## 1237 1.1 93.994 -36.4 4.855 5191 no
## 1238 1.1 93.994 -36.4 4.855 5191 no
## 1239 1.1 93.994 -36.4 4.855 5191 no
## 1240 1.1 93.994 -36.4 4.855 5191 no
## 1241 1.1 93.994 -36.4 4.855 5191 no
## 1242 1.1 93.994 -36.4 4.855 5191 no
## 1243 1.1 93.994 -36.4 4.855 5191 no
## 1244 1.1 93.994 -36.4 4.855 5191 no
## 1245 1.1 93.994 -36.4 4.855 5191 no
## 1246 1.1 93.994 -36.4 4.855 5191 no
## 1247 1.1 93.994 -36.4 4.855 5191 no
## 1248 1.1 93.994 -36.4 4.855 5191 no
## 1249 1.1 93.994 -36.4 4.855 5191 no
## 1250 1.1 93.994 -36.4 4.855 5191 no
## 1251 1.1 93.994 -36.4 4.855 5191 no
## 1252 1.1 93.994 -36.4 4.855 5191 no
## 1253 1.1 93.994 -36.4 4.855 5191 no
## 1254 1.1 93.994 -36.4 4.855 5191 no
## 1255 1.1 93.994 -36.4 4.855 5191 no
## 1256 1.1 93.994 -36.4 4.855 5191 no
## 1257 1.1 93.994 -36.4 4.855 5191 yes
## 1258 1.1 93.994 -36.4 4.855 5191 no
## 1259 1.1 93.994 -36.4 4.855 5191 no
## 1260 1.1 93.994 -36.4 4.855 5191 no
## 1261 1.1 93.994 -36.4 4.855 5191 no
## 1262 1.1 93.994 -36.4 4.855 5191 no
## 1263 1.1 93.994 -36.4 4.855 5191 no
## 1264 1.1 93.994 -36.4 4.855 5191 no
## 1265 1.1 93.994 -36.4 4.855 5191 no
## 1266 1.1 93.994 -36.4 4.855 5191 no
## 1267 1.1 93.994 -36.4 4.855 5191 no
## 1268 1.1 93.994 -36.4 4.855 5191 no
## 1269 1.1 93.994 -36.4 4.855 5191 no
## 1270 1.1 93.994 -36.4 4.855 5191 no
## 1271 1.1 93.994 -36.4 4.855 5191 no
## 1272 1.1 93.994 -36.4 4.855 5191 no
## 1273 1.1 93.994 -36.4 4.855 5191 no
## 1274 1.1 93.994 -36.4 4.855 5191 no
## 1275 1.1 93.994 -36.4 4.855 5191 no
## 1276 1.1 93.994 -36.4 4.855 5191 no
## 1277 1.1 93.994 -36.4 4.855 5191 no
## 1278 1.1 93.994 -36.4 4.855 5191 no
## 1279 1.1 93.994 -36.4 4.855 5191 no
## 1280 1.1 93.994 -36.4 4.855 5191 no
## 1281 1.1 93.994 -36.4 4.855 5191 no
## 1282 1.1 93.994 -36.4 4.855 5191 no
## 1283 1.1 93.994 -36.4 4.855 5191 no
## 1284 1.1 93.994 -36.4 4.855 5191 no
## 1285 1.1 93.994 -36.4 4.855 5191 no
## 1286 1.1 93.994 -36.4 4.855 5191 no
## 1287 1.1 93.994 -36.4 4.855 5191 no
## 1288 1.1 93.994 -36.4 4.855 5191 no
## 1289 1.1 93.994 -36.4 4.855 5191 no
## 1290 1.1 93.994 -36.4 4.855 5191 no
## 1291 1.1 93.994 -36.4 4.855 5191 no
## 1292 1.1 93.994 -36.4 4.855 5191 no
## 1293 1.1 93.994 -36.4 4.855 5191 no
## 1294 1.1 93.994 -36.4 4.855 5191 no
## 1295 1.1 93.994 -36.4 4.855 5191 no
## 1296 1.1 93.994 -36.4 4.855 5191 no
## 1297 1.1 93.994 -36.4 4.855 5191 no
## 1298 1.1 93.994 -36.4 4.855 5191 no
## 1299 1.1 93.994 -36.4 4.855 5191 no
## 1300 1.1 93.994 -36.4 4.855 5191 no
## 1301 1.1 93.994 -36.4 4.855 5191 no
## 1302 1.1 93.994 -36.4 4.855 5191 no
## 1303 1.1 93.994 -36.4 4.855 5191 no
## 1304 1.1 93.994 -36.4 4.855 5191 no
## 1305 1.1 93.994 -36.4 4.855 5191 no
## 1306 1.1 93.994 -36.4 4.855 5191 no
## 1307 1.1 93.994 -36.4 4.855 5191 no
## 1308 1.1 93.994 -36.4 4.855 5191 no
## 1309 1.1 93.994 -36.4 4.855 5191 no
## 1310 1.1 93.994 -36.4 4.855 5191 no
## 1311 1.1 93.994 -36.4 4.855 5191 no
## 1312 1.1 93.994 -36.4 4.855 5191 no
## 1313 1.1 93.994 -36.4 4.855 5191 no
## 1314 1.1 93.994 -36.4 4.855 5191 no
## 1315 1.1 93.994 -36.4 4.855 5191 no
## 1316 1.1 93.994 -36.4 4.855 5191 no
## 1317 1.1 93.994 -36.4 4.855 5191 no
## 1318 1.1 93.994 -36.4 4.855 5191 no
## 1319 1.1 93.994 -36.4 4.855 5191 no
## 1320 1.1 93.994 -36.4 4.855 5191 yes
## 1321 1.1 93.994 -36.4 4.855 5191 no
## 1322 1.1 93.994 -36.4 4.855 5191 no
## 1323 1.1 93.994 -36.4 4.855 5191 no
## 1324 1.1 93.994 -36.4 4.855 5191 no
## 1325 1.1 93.994 -36.4 4.855 5191 no
## 1326 1.1 93.994 -36.4 4.855 5191 no
## 1327 1.1 93.994 -36.4 4.855 5191 no
## 1328 1.1 93.994 -36.4 4.855 5191 no
## 1329 1.1 93.994 -36.4 4.855 5191 no
## 1330 1.1 93.994 -36.4 4.855 5191 no
## 1331 1.1 93.994 -36.4 4.855 5191 no
## 1332 1.1 93.994 -36.4 4.855 5191 no
## 1333 1.1 93.994 -36.4 4.855 5191 no
## 1334 1.1 93.994 -36.4 4.855 5191 no
## 1335 1.1 93.994 -36.4 4.855 5191 no
## 1336 1.1 93.994 -36.4 4.855 5191 no
## 1337 1.1 93.994 -36.4 4.855 5191 no
## 1338 1.1 93.994 -36.4 4.855 5191 no
## 1339 1.1 93.994 -36.4 4.855 5191 no
## 1340 1.1 93.994 -36.4 4.855 5191 no
## 1341 1.1 93.994 -36.4 4.855 5191 no
## 1342 1.1 93.994 -36.4 4.855 5191 no
## 1343 1.1 93.994 -36.4 4.855 5191 no
## 1344 1.1 93.994 -36.4 4.855 5191 no
## 1345 1.1 93.994 -36.4 4.855 5191 no
## 1346 1.1 93.994 -36.4 4.855 5191 no
## 1347 1.1 93.994 -36.4 4.855 5191 no
## 1348 1.1 93.994 -36.4 4.855 5191 no
## 1349 1.1 93.994 -36.4 4.855 5191 yes
## 1350 1.1 93.994 -36.4 4.855 5191 no
## 1351 1.1 93.994 -36.4 4.855 5191 no
## 1352 1.1 93.994 -36.4 4.855 5191 no
## 1353 1.1 93.994 -36.4 4.855 5191 no
## 1354 1.1 93.994 -36.4 4.855 5191 no
## 1355 1.1 93.994 -36.4 4.855 5191 no
## 1356 1.1 93.994 -36.4 4.855 5191 no
## 1357 1.1 93.994 -36.4 4.855 5191 no
## 1358 1.1 93.994 -36.4 4.855 5191 no
## 1359 1.1 93.994 -36.4 4.855 5191 no
## 1360 1.1 93.994 -36.4 4.855 5191 no
## 1361 1.1 93.994 -36.4 4.855 5191 no
## 1362 1.1 93.994 -36.4 4.855 5191 no
## 1363 1.1 93.994 -36.4 4.855 5191 no
## 1364 1.1 93.994 -36.4 4.855 5191 no
## 1365 1.1 93.994 -36.4 4.855 5191 no
## 1366 1.1 93.994 -36.4 4.855 5191 no
## 1367 1.1 93.994 -36.4 4.855 5191 no
## 1368 1.1 93.994 -36.4 4.855 5191 no
## 1369 1.1 93.994 -36.4 4.855 5191 no
## 1370 1.1 93.994 -36.4 4.855 5191 no
## 1371 1.1 93.994 -36.4 4.855 5191 no
## 1372 1.1 93.994 -36.4 4.855 5191 no
## 1373 1.1 93.994 -36.4 4.855 5191 no
## 1374 1.1 93.994 -36.4 4.855 5191 no
## 1375 1.1 93.994 -36.4 4.855 5191 no
## 1376 1.1 93.994 -36.4 4.855 5191 no
## 1377 1.1 93.994 -36.4 4.855 5191 no
## 1378 1.1 93.994 -36.4 4.855 5191 no
## 1379 1.1 93.994 -36.4 4.855 5191 no
## 1380 1.1 93.994 -36.4 4.855 5191 no
## 1381 1.1 93.994 -36.4 4.855 5191 no
## 1382 1.1 93.994 -36.4 4.855 5191 no
## 1383 1.1 93.994 -36.4 4.855 5191 no
## 1384 1.1 93.994 -36.4 4.855 5191 no
## 1385 1.1 93.994 -36.4 4.855 5191 no
## 1386 1.1 93.994 -36.4 4.855 5191 no
## 1387 1.1 93.994 -36.4 4.855 5191 no
## 1388 1.1 93.994 -36.4 4.855 5191 no
## 1389 1.1 93.994 -36.4 4.855 5191 no
## 1390 1.1 93.994 -36.4 4.855 5191 no
## 1391 1.1 93.994 -36.4 4.855 5191 no
## 1392 1.1 93.994 -36.4 4.855 5191 no
## 1393 1.1 93.994 -36.4 4.855 5191 no
## 1394 1.1 93.994 -36.4 4.855 5191 no
## 1395 1.1 93.994 -36.4 4.855 5191 no
## 1396 1.1 93.994 -36.4 4.855 5191 no
## 1397 1.1 93.994 -36.4 4.855 5191 yes
## 1398 1.1 93.994 -36.4 4.855 5191 no
## 1399 1.1 93.994 -36.4 4.855 5191 no
## 1400 1.1 93.994 -36.4 4.855 5191 no
## 1401 1.1 93.994 -36.4 4.855 5191 no
## 1402 1.1 93.994 -36.4 4.855 5191 no
## 1403 1.1 93.994 -36.4 4.855 5191 no
## 1404 1.1 93.994 -36.4 4.855 5191 no
## 1405 1.1 93.994 -36.4 4.855 5191 no
## 1406 1.1 93.994 -36.4 4.855 5191 no
## 1407 1.1 93.994 -36.4 4.855 5191 no
## 1408 1.1 93.994 -36.4 4.855 5191 no
## 1409 1.1 93.994 -36.4 4.855 5191 no
## 1410 1.1 93.994 -36.4 4.855 5191 no
## 1411 1.1 93.994 -36.4 4.855 5191 no
## 1412 1.1 93.994 -36.4 4.855 5191 no
## 1413 1.1 93.994 -36.4 4.855 5191 no
## 1414 1.1 93.994 -36.4 4.855 5191 no
## 1415 1.1 93.994 -36.4 4.855 5191 no
## 1416 1.1 93.994 -36.4 4.855 5191 no
## 1417 1.1 93.994 -36.4 4.855 5191 no
## 1418 1.1 93.994 -36.4 4.855 5191 no
## 1419 1.1 93.994 -36.4 4.855 5191 no
## 1420 1.1 93.994 -36.4 4.855 5191 no
## 1421 1.1 93.994 -36.4 4.855 5191 no
## 1422 1.1 93.994 -36.4 4.855 5191 no
## 1423 1.1 93.994 -36.4 4.855 5191 no
## 1424 1.1 93.994 -36.4 4.855 5191 no
## 1425 1.1 93.994 -36.4 4.855 5191 no
## 1426 1.1 93.994 -36.4 4.855 5191 no
## 1427 1.1 93.994 -36.4 4.855 5191 no
## 1428 1.1 93.994 -36.4 4.855 5191 no
## 1429 1.1 93.994 -36.4 4.855 5191 no
## 1430 1.1 93.994 -36.4 4.855 5191 no
## 1431 1.1 93.994 -36.4 4.855 5191 no
## 1432 1.1 93.994 -36.4 4.855 5191 no
## 1433 1.1 93.994 -36.4 4.855 5191 no
## 1434 1.1 93.994 -36.4 4.855 5191 no
## 1435 1.1 93.994 -36.4 4.855 5191 no
## 1436 1.1 93.994 -36.4 4.855 5191 no
## 1437 1.1 93.994 -36.4 4.855 5191 no
## 1438 1.1 93.994 -36.4 4.855 5191 no
## 1439 1.1 93.994 -36.4 4.855 5191 no
## 1440 1.1 93.994 -36.4 4.855 5191 no
## 1441 1.1 93.994 -36.4 4.855 5191 no
## 1442 1.1 93.994 -36.4 4.855 5191 no
## 1443 1.1 93.994 -36.4 4.855 5191 yes
## 1444 1.1 93.994 -36.4 4.855 5191 no
## 1445 1.1 93.994 -36.4 4.855 5191 yes
## 1446 1.1 93.994 -36.4 4.855 5191 no
## 1447 1.1 93.994 -36.4 4.855 5191 no
## 1448 1.1 93.994 -36.4 4.855 5191 no
## 1449 1.1 93.994 -36.4 4.855 5191 no
## 1450 1.1 93.994 -36.4 4.855 5191 no
## 1451 1.1 93.994 -36.4 4.855 5191 no
## 1452 1.1 93.994 -36.4 4.855 5191 no
## 1453 1.1 93.994 -36.4 4.855 5191 no
## 1454 1.1 93.994 -36.4 4.855 5191 no
## 1455 1.1 93.994 -36.4 4.855 5191 no
## 1456 1.1 93.994 -36.4 4.855 5191 no
## 1457 1.1 93.994 -36.4 4.855 5191 no
## 1458 1.1 93.994 -36.4 4.855 5191 no
## 1459 1.1 93.994 -36.4 4.855 5191 no
## 1460 1.1 93.994 -36.4 4.855 5191 no
## 1461 1.1 93.994 -36.4 4.855 5191 no
## 1462 1.1 93.994 -36.4 4.855 5191 no
## 1463 1.1 93.994 -36.4 4.855 5191 no
## 1464 1.1 93.994 -36.4 4.855 5191 no
## 1465 1.1 93.994 -36.4 4.855 5191 no
## 1466 1.1 93.994 -36.4 4.855 5191 no
## 1467 1.1 93.994 -36.4 4.855 5191 no
## 1468 1.1 93.994 -36.4 4.855 5191 no
## 1469 1.1 93.994 -36.4 4.855 5191 no
## 1470 1.1 93.994 -36.4 4.855 5191 no
## 1471 1.1 93.994 -36.4 4.855 5191 no
## 1472 1.1 93.994 -36.4 4.855 5191 no
## 1473 1.1 93.994 -36.4 4.855 5191 no
## 1474 1.1 93.994 -36.4 4.855 5191 no
## 1475 1.1 93.994 -36.4 4.855 5191 no
## 1476 1.1 93.994 -36.4 4.855 5191 no
## 1477 1.1 93.994 -36.4 4.855 5191 no
## 1478 1.1 93.994 -36.4 4.855 5191 no
## 1479 1.1 93.994 -36.4 4.855 5191 no
## 1480 1.1 93.994 -36.4 4.855 5191 no
## 1481 1.1 93.994 -36.4 4.855 5191 no
## 1482 1.1 93.994 -36.4 4.855 5191 no
## 1483 1.1 93.994 -36.4 4.855 5191 no
## 1484 1.1 93.994 -36.4 4.855 5191 no
## 1485 1.1 93.994 -36.4 4.855 5191 no
## 1486 1.1 93.994 -36.4 4.855 5191 no
## 1487 1.1 93.994 -36.4 4.855 5191 no
## 1488 1.1 93.994 -36.4 4.855 5191 no
## 1489 1.1 93.994 -36.4 4.855 5191 no
## 1490 1.1 93.994 -36.4 4.855 5191 no
## 1491 1.1 93.994 -36.4 4.855 5191 no
## 1492 1.1 93.994 -36.4 4.855 5191 no
## 1493 1.1 93.994 -36.4 4.855 5191 no
## 1494 1.1 93.994 -36.4 4.855 5191 no
## 1495 1.1 93.994 -36.4 4.855 5191 no
## 1496 1.1 93.994 -36.4 4.855 5191 no
## 1497 1.1 93.994 -36.4 4.855 5191 no
## 1498 1.1 93.994 -36.4 4.855 5191 no
## 1499 1.1 93.994 -36.4 4.855 5191 no
## 1500 1.1 93.994 -36.4 4.855 5191 no
## 1501 1.1 93.994 -36.4 4.855 5191 no
## 1502 1.1 93.994 -36.4 4.855 5191 yes
## 1503 1.1 93.994 -36.4 4.855 5191 no
## 1504 1.1 93.994 -36.4 4.855 5191 no
## 1505 1.1 93.994 -36.4 4.855 5191 no
## 1506 1.1 93.994 -36.4 4.855 5191 no
## 1507 1.1 93.994 -36.4 4.855 5191 no
## 1508 1.1 93.994 -36.4 4.855 5191 no
## 1509 1.1 93.994 -36.4 4.855 5191 no
## 1510 1.1 93.994 -36.4 4.855 5191 no
## 1511 1.1 93.994 -36.4 4.855 5191 no
## 1512 1.1 93.994 -36.4 4.855 5191 no
## 1513 1.1 93.994 -36.4 4.855 5191 no
## 1514 1.1 93.994 -36.4 4.855 5191 no
## 1515 1.1 93.994 -36.4 4.855 5191 no
## 1516 1.1 93.994 -36.4 4.855 5191 no
## 1517 1.1 93.994 -36.4 4.855 5191 no
## 1518 1.1 93.994 -36.4 4.855 5191 no
## 1519 1.1 93.994 -36.4 4.855 5191 no
## 1520 1.1 93.994 -36.4 4.855 5191 no
## 1521 1.1 93.994 -36.4 4.855 5191 no
## 1522 1.1 93.994 -36.4 4.855 5191 no
## 1523 1.1 93.994 -36.4 4.855 5191 no
## 1524 1.1 93.994 -36.4 4.855 5191 no
## 1525 1.1 93.994 -36.4 4.855 5191 no
## 1526 1.1 93.994 -36.4 4.855 5191 no
## 1527 1.1 93.994 -36.4 4.855 5191 no
## 1528 1.1 93.994 -36.4 4.855 5191 no
## 1529 1.1 93.994 -36.4 4.855 5191 no
## 1530 1.1 93.994 -36.4 4.855 5191 no
## 1531 1.1 93.994 -36.4 4.855 5191 no
## 1532 1.1 93.994 -36.4 4.855 5191 no
## 1533 1.1 93.994 -36.4 4.855 5191 no
## 1534 1.1 93.994 -36.4 4.855 5191 no
## 1535 1.1 93.994 -36.4 4.855 5191 no
## 1536 1.1 93.994 -36.4 4.855 5191 no
## 1537 1.1 93.994 -36.4 4.855 5191 no
## 1538 1.1 93.994 -36.4 4.855 5191 no
## 1539 1.1 93.994 -36.4 4.855 5191 no
## 1540 1.1 93.994 -36.4 4.855 5191 no
## 1541 1.1 93.994 -36.4 4.855 5191 no
## 1542 1.1 93.994 -36.4 4.855 5191 no
## 1543 1.1 93.994 -36.4 4.855 5191 no
## 1544 1.1 93.994 -36.4 4.855 5191 no
## 1545 1.1 93.994 -36.4 4.855 5191 no
## 1546 1.1 93.994 -36.4 4.855 5191 no
## 1547 1.1 93.994 -36.4 4.855 5191 no
## 1548 1.1 93.994 -36.4 4.855 5191 no
## 1549 1.1 93.994 -36.4 4.855 5191 no
## 1550 1.1 93.994 -36.4 4.855 5191 no
## 1551 1.1 93.994 -36.4 4.855 5191 no
## 1552 1.1 93.994 -36.4 4.855 5191 no
## 1553 1.1 93.994 -36.4 4.855 5191 no
## 1554 1.1 93.994 -36.4 4.855 5191 no
## 1555 1.1 93.994 -36.4 4.855 5191 no
## 1556 1.1 93.994 -36.4 4.855 5191 no
## 1557 1.1 93.994 -36.4 4.855 5191 no
## 1558 1.1 93.994 -36.4 4.855 5191 no
## 1559 1.1 93.994 -36.4 4.855 5191 no
## 1560 1.1 93.994 -36.4 4.855 5191 no
## 1561 1.1 93.994 -36.4 4.855 5191 no
## 1562 1.1 93.994 -36.4 4.855 5191 no
## 1563 1.1 93.994 -36.4 4.855 5191 no
## 1564 1.1 93.994 -36.4 4.855 5191 no
## 1565 1.1 93.994 -36.4 4.855 5191 no
## 1566 1.1 93.994 -36.4 4.855 5191 no
## 1567 1.1 93.994 -36.4 4.855 5191 no
## 1568 1.1 93.994 -36.4 4.855 5191 no
## 1569 1.1 93.994 -36.4 4.855 5191 no
## 1570 1.1 93.994 -36.4 4.855 5191 no
## 1571 1.1 93.994 -36.4 4.855 5191 no
## 1572 1.1 93.994 -36.4 4.855 5191 no
## 1573 1.1 93.994 -36.4 4.855 5191 no
## 1574 1.1 93.994 -36.4 4.855 5191 no
## 1575 1.1 93.994 -36.4 4.855 5191 no
## 1576 1.1 93.994 -36.4 4.855 5191 no
## 1577 1.1 93.994 -36.4 4.855 5191 no
## 1578 1.1 93.994 -36.4 4.855 5191 no
## 1579 1.1 93.994 -36.4 4.855 5191 no
## 1580 1.1 93.994 -36.4 4.855 5191 no
## 1581 1.1 93.994 -36.4 4.855 5191 no
## 1582 1.1 93.994 -36.4 4.855 5191 no
## 1583 1.1 93.994 -36.4 4.855 5191 no
## 1584 1.1 93.994 -36.4 4.855 5191 no
## 1585 1.1 93.994 -36.4 4.855 5191 no
## 1586 1.1 93.994 -36.4 4.855 5191 no
## 1587 1.1 93.994 -36.4 4.855 5191 no
## 1588 1.1 93.994 -36.4 4.855 5191 no
## 1589 1.1 93.994 -36.4 4.855 5191 no
## 1590 1.1 93.994 -36.4 4.855 5191 no
## 1591 1.1 93.994 -36.4 4.855 5191 no
## 1592 1.1 93.994 -36.4 4.855 5191 no
## 1593 1.1 93.994 -36.4 4.855 5191 no
## 1594 1.1 93.994 -36.4 4.855 5191 no
## 1595 1.1 93.994 -36.4 4.855 5191 no
## 1596 1.1 93.994 -36.4 4.855 5191 no
## 1597 1.1 93.994 -36.4 4.855 5191 no
## 1598 1.1 93.994 -36.4 4.855 5191 no
## 1599 1.1 93.994 -36.4 4.855 5191 no
## 1600 1.1 93.994 -36.4 4.855 5191 no
## 1601 1.1 93.994 -36.4 4.855 5191 no
## 1602 1.1 93.994 -36.4 4.855 5191 no
## 1603 1.1 93.994 -36.4 4.855 5191 no
## 1604 1.1 93.994 -36.4 4.855 5191 no
## 1605 1.1 93.994 -36.4 4.855 5191 no
## 1606 1.1 93.994 -36.4 4.855 5191 no
## 1607 1.1 93.994 -36.4 4.855 5191 no
## 1608 1.1 93.994 -36.4 4.855 5191 no
## 1609 1.1 93.994 -36.4 4.855 5191 yes
## 1610 1.1 93.994 -36.4 4.855 5191 no
## 1611 1.1 93.994 -36.4 4.855 5191 no
## 1612 1.1 93.994 -36.4 4.855 5191 no
## 1613 1.1 93.994 -36.4 4.855 5191 no
## 1614 1.1 93.994 -36.4 4.855 5191 yes
## 1615 1.1 93.994 -36.4 4.855 5191 no
## 1616 1.1 93.994 -36.4 4.855 5191 no
## 1617 1.1 93.994 -36.4 4.855 5191 no
## 1618 1.1 93.994 -36.4 4.855 5191 no
## 1619 1.1 93.994 -36.4 4.855 5191 no
## 1620 1.1 93.994 -36.4 4.855 5191 no
## 1621 1.1 93.994 -36.4 4.855 5191 no
## 1622 1.1 93.994 -36.4 4.855 5191 no
## 1623 1.1 93.994 -36.4 4.855 5191 no
## 1624 1.1 93.994 -36.4 4.855 5191 no
## 1625 1.1 93.994 -36.4 4.855 5191 no
## 1626 1.1 93.994 -36.4 4.855 5191 no
## 1627 1.1 93.994 -36.4 4.855 5191 no
## 1628 1.1 93.994 -36.4 4.855 5191 no
## 1629 1.1 93.994 -36.4 4.855 5191 no
## 1630 1.1 93.994 -36.4 4.855 5191 no
## 1631 1.1 93.994 -36.4 4.855 5191 no
## 1632 1.1 93.994 -36.4 4.855 5191 no
## 1633 1.1 93.994 -36.4 4.855 5191 yes
## 1634 1.1 93.994 -36.4 4.855 5191 no
## 1635 1.1 93.994 -36.4 4.855 5191 no
## 1636 1.1 93.994 -36.4 4.855 5191 no
## 1637 1.1 93.994 -36.4 4.855 5191 yes
## 1638 1.1 93.994 -36.4 4.855 5191 no
## 1639 1.1 93.994 -36.4 4.855 5191 no
## 1640 1.1 93.994 -36.4 4.855 5191 no
## 1641 1.1 93.994 -36.4 4.855 5191 no
## 1642 1.1 93.994 -36.4 4.855 5191 no
## 1643 1.1 93.994 -36.4 4.855 5191 no
## 1644 1.1 93.994 -36.4 4.855 5191 no
## 1645 1.1 93.994 -36.4 4.855 5191 no
## 1646 1.1 93.994 -36.4 4.855 5191 no
## 1647 1.1 93.994 -36.4 4.855 5191 no
## 1648 1.1 93.994 -36.4 4.855 5191 no
## 1649 1.1 93.994 -36.4 4.855 5191 no
## 1650 1.1 93.994 -36.4 4.855 5191 no
## 1651 1.1 93.994 -36.4 4.855 5191 no
## 1652 1.1 93.994 -36.4 4.855 5191 no
## 1653 1.1 93.994 -36.4 4.855 5191 no
## 1654 1.1 93.994 -36.4 4.855 5191 no
## 1655 1.1 93.994 -36.4 4.855 5191 no
## 1656 1.1 93.994 -36.4 4.855 5191 yes
## 1657 1.1 93.994 -36.4 4.855 5191 no
## 1658 1.1 93.994 -36.4 4.855 5191 no
## 1659 1.1 93.994 -36.4 4.855 5191 no
## 1660 1.1 93.994 -36.4 4.855 5191 no
## 1661 1.1 93.994 -36.4 4.855 5191 no
## 1662 1.1 93.994 -36.4 4.855 5191 no
## 1663 1.1 93.994 -36.4 4.855 5191 no
## 1664 1.1 93.994 -36.4 4.855 5191 no
## 1665 1.1 93.994 -36.4 4.855 5191 no
## 1666 1.1 93.994 -36.4 4.855 5191 no
## 1667 1.1 93.994 -36.4 4.855 5191 no
## 1668 1.1 93.994 -36.4 4.855 5191 no
## 1669 1.1 93.994 -36.4 4.855 5191 no
## 1670 1.1 93.994 -36.4 4.855 5191 no
## 1671 1.1 93.994 -36.4 4.855 5191 no
## 1672 1.1 93.994 -36.4 4.855 5191 no
## 1673 1.1 93.994 -36.4 4.855 5191 no
## 1674 1.1 93.994 -36.4 4.855 5191 no
## 1675 1.1 93.994 -36.4 4.855 5191 no
## 1676 1.1 93.994 -36.4 4.855 5191 no
## 1677 1.1 93.994 -36.4 4.855 5191 no
## 1678 1.1 93.994 -36.4 4.855 5191 no
## 1679 1.1 93.994 -36.4 4.855 5191 no
## 1680 1.1 93.994 -36.4 4.855 5191 no
## 1681 1.1 93.994 -36.4 4.855 5191 no
## 1682 1.1 93.994 -36.4 4.855 5191 no
## 1683 1.1 93.994 -36.4 4.855 5191 no
## 1684 1.1 93.994 -36.4 4.855 5191 no
## 1685 1.1 93.994 -36.4 4.855 5191 no
## 1686 1.1 93.994 -36.4 4.855 5191 no
## 1687 1.1 93.994 -36.4 4.855 5191 no
## 1688 1.1 93.994 -36.4 4.855 5191 no
## 1689 1.1 93.994 -36.4 4.855 5191 no
## 1690 1.1 93.994 -36.4 4.855 5191 no
## 1691 1.1 93.994 -36.4 4.855 5191 no
## 1692 1.1 93.994 -36.4 4.855 5191 yes
## 1693 1.1 93.994 -36.4 4.855 5191 no
## 1694 1.1 93.994 -36.4 4.855 5191 no
## 1695 1.1 93.994 -36.4 4.855 5191 no
## 1696 1.1 93.994 -36.4 4.855 5191 no
## 1697 1.1 93.994 -36.4 4.855 5191 no
## 1698 1.1 93.994 -36.4 4.855 5191 no
## 1699 1.1 93.994 -36.4 4.855 5191 no
## 1700 1.1 93.994 -36.4 4.855 5191 no
## 1701 1.1 93.994 -36.4 4.855 5191 no
## 1702 1.1 93.994 -36.4 4.855 5191 no
## 1703 1.1 93.994 -36.4 4.855 5191 no
## 1704 1.1 93.994 -36.4 4.855 5191 no
## 1705 1.1 93.994 -36.4 4.855 5191 no
## 1706 1.1 93.994 -36.4 4.855 5191 no
## 1707 1.1 93.994 -36.4 4.855 5191 no
## 1708 1.1 93.994 -36.4 4.855 5191 no
## 1709 1.1 93.994 -36.4 4.855 5191 no
## 1710 1.1 93.994 -36.4 4.855 5191 no
## 1711 1.1 93.994 -36.4 4.855 5191 no
## 1712 1.1 93.994 -36.4 4.855 5191 no
## 1713 1.1 93.994 -36.4 4.855 5191 no
## 1714 1.1 93.994 -36.4 4.855 5191 no
## 1715 1.1 93.994 -36.4 4.855 5191 no
## 1716 1.1 93.994 -36.4 4.855 5191 no
## 1717 1.1 93.994 -36.4 4.855 5191 no
## 1718 1.1 93.994 -36.4 4.855 5191 no
## 1719 1.1 93.994 -36.4 4.855 5191 no
## 1720 1.1 93.994 -36.4 4.855 5191 no
## 1721 1.1 93.994 -36.4 4.855 5191 no
## 1722 1.1 93.994 -36.4 4.855 5191 no
## 1723 1.1 93.994 -36.4 4.855 5191 no
## 1724 1.1 93.994 -36.4 4.855 5191 no
## 1725 1.1 93.994 -36.4 4.855 5191 no
## 1726 1.1 93.994 -36.4 4.855 5191 yes
## 1727 1.1 93.994 -36.4 4.855 5191 no
## 1728 1.1 93.994 -36.4 4.855 5191 no
## 1729 1.1 93.994 -36.4 4.855 5191 no
## 1730 1.1 93.994 -36.4 4.855 5191 no
## 1731 1.1 93.994 -36.4 4.855 5191 no
## 1732 1.1 93.994 -36.4 4.855 5191 no
## 1733 1.1 93.994 -36.4 4.855 5191 no
## 1734 1.1 93.994 -36.4 4.855 5191 no
## 1735 1.1 93.994 -36.4 4.855 5191 no
## 1736 1.1 93.994 -36.4 4.855 5191 no
## 1737 1.1 93.994 -36.4 4.855 5191 no
## 1738 1.1 93.994 -36.4 4.855 5191 no
## 1739 1.1 93.994 -36.4 4.855 5191 no
## 1740 1.1 93.994 -36.4 4.855 5191 no
## 1741 1.1 93.994 -36.4 4.855 5191 no
## 1742 1.1 93.994 -36.4 4.855 5191 no
## 1743 1.1 93.994 -36.4 4.855 5191 no
## 1744 1.1 93.994 -36.4 4.855 5191 no
## 1745 1.1 93.994 -36.4 4.855 5191 no
## 1746 1.1 93.994 -36.4 4.855 5191 no
## 1747 1.1 93.994 -36.4 4.855 5191 no
## 1748 1.1 93.994 -36.4 4.855 5191 no
## 1749 1.1 93.994 -36.4 4.855 5191 no
## 1750 1.1 93.994 -36.4 4.855 5191 no
## 1751 1.1 93.994 -36.4 4.855 5191 no
## 1752 1.1 93.994 -36.4 4.855 5191 no
## 1753 1.1 93.994 -36.4 4.855 5191 no
## 1754 1.1 93.994 -36.4 4.855 5191 no
## 1755 1.1 93.994 -36.4 4.855 5191 no
## 1756 1.1 93.994 -36.4 4.855 5191 no
## 1757 1.1 93.994 -36.4 4.855 5191 no
## 1758 1.1 93.994 -36.4 4.855 5191 no
## 1759 1.1 93.994 -36.4 4.855 5191 no
## 1760 1.1 93.994 -36.4 4.855 5191 no
## 1761 1.1 93.994 -36.4 4.855 5191 no
## 1762 1.1 93.994 -36.4 4.855 5191 no
## 1763 1.1 93.994 -36.4 4.855 5191 no
## 1764 1.1 93.994 -36.4 4.855 5191 yes
## 1765 1.1 93.994 -36.4 4.855 5191 no
## 1766 1.1 93.994 -36.4 4.855 5191 no
## 1767 1.1 93.994 -36.4 4.855 5191 no
## 1768 1.1 93.994 -36.4 4.855 5191 no
## 1769 1.1 93.994 -36.4 4.855 5191 no
## 1770 1.1 93.994 -36.4 4.855 5191 no
## 1771 1.1 93.994 -36.4 4.855 5191 no
## 1772 1.1 93.994 -36.4 4.855 5191 no
## 1773 1.1 93.994 -36.4 4.855 5191 no
## 1774 1.1 93.994 -36.4 4.855 5191 no
## 1775 1.1 93.994 -36.4 4.855 5191 no
## 1776 1.1 93.994 -36.4 4.855 5191 no
## 1777 1.1 93.994 -36.4 4.855 5191 no
## 1778 1.1 93.994 -36.4 4.855 5191 no
## 1779 1.1 93.994 -36.4 4.855 5191 no
## 1780 1.1 93.994 -36.4 4.855 5191 no
## 1781 1.1 93.994 -36.4 4.855 5191 no
## 1782 1.1 93.994 -36.4 4.855 5191 no
## 1783 1.1 93.994 -36.4 4.855 5191 no
## 1784 1.1 93.994 -36.4 4.855 5191 no
## 1785 1.1 93.994 -36.4 4.855 5191 no
## 1786 1.1 93.994 -36.4 4.855 5191 no
## 1787 1.1 93.994 -36.4 4.855 5191 no
## 1788 1.1 93.994 -36.4 4.855 5191 no
## 1789 1.1 93.994 -36.4 4.855 5191 no
## 1790 1.1 93.994 -36.4 4.855 5191 no
## 1791 1.1 93.994 -36.4 4.855 5191 no
## 1792 1.1 93.994 -36.4 4.855 5191 yes
## 1793 1.1 93.994 -36.4 4.855 5191 no
## 1794 1.1 93.994 -36.4 4.855 5191 no
## 1795 1.1 93.994 -36.4 4.855 5191 no
## 1796 1.1 93.994 -36.4 4.855 5191 no
## 1797 1.1 93.994 -36.4 4.855 5191 no
## 1798 1.1 93.994 -36.4 4.855 5191 no
## 1799 1.1 93.994 -36.4 4.855 5191 no
## 1800 1.1 93.994 -36.4 4.855 5191 no
## 1801 1.1 93.994 -36.4 4.855 5191 no
## 1802 1.1 93.994 -36.4 4.855 5191 no
## 1803 1.1 93.994 -36.4 4.855 5191 no
## 1804 1.1 93.994 -36.4 4.855 5191 no
## 1805 1.1 93.994 -36.4 4.855 5191 no
## 1806 1.1 93.994 -36.4 4.855 5191 no
## 1807 1.1 93.994 -36.4 4.855 5191 no
## 1808 1.1 93.994 -36.4 4.855 5191 no
## 1809 1.1 93.994 -36.4 4.855 5191 no
## 1810 1.1 93.994 -36.4 4.855 5191 yes
## 1811 1.1 93.994 -36.4 4.855 5191 no
## 1812 1.1 93.994 -36.4 4.855 5191 no
## 1813 1.1 93.994 -36.4 4.855 5191 no
## 1814 1.1 93.994 -36.4 4.855 5191 no
## 1815 1.1 93.994 -36.4 4.855 5191 no
## 1816 1.1 93.994 -36.4 4.855 5191 no
## 1817 1.1 93.994 -36.4 4.855 5191 no
## 1818 1.1 93.994 -36.4 4.855 5191 no
## 1819 1.1 93.994 -36.4 4.855 5191 no
## 1820 1.1 93.994 -36.4 4.855 5191 yes
## 1821 1.1 93.994 -36.4 4.855 5191 no
## 1822 1.1 93.994 -36.4 4.855 5191 no
## 1823 1.1 93.994 -36.4 4.855 5191 no
## 1824 1.1 93.994 -36.4 4.855 5191 no
## 1825 1.1 93.994 -36.4 4.855 5191 no
## 1826 1.1 93.994 -36.4 4.855 5191 no
## 1827 1.1 93.994 -36.4 4.855 5191 no
## 1828 1.1 93.994 -36.4 4.855 5191 no
## 1829 1.1 93.994 -36.4 4.855 5191 no
## 1830 1.1 93.994 -36.4 4.855 5191 no
## 1831 1.1 93.994 -36.4 4.855 5191 no
## 1832 1.1 93.994 -36.4 4.855 5191 no
## 1833 1.1 93.994 -36.4 4.855 5191 no
## 1834 1.1 93.994 -36.4 4.855 5191 no
## 1835 1.1 93.994 -36.4 4.855 5191 no
## 1836 1.1 93.994 -36.4 4.855 5191 no
## 1837 1.1 93.994 -36.4 4.855 5191 no
## 1838 1.1 93.994 -36.4 4.855 5191 no
## 1839 1.1 93.994 -36.4 4.855 5191 no
## 1840 1.1 93.994 -36.4 4.855 5191 no
## 1841 1.1 93.994 -36.4 4.855 5191 no
## 1842 1.1 93.994 -36.4 4.855 5191 no
## 1843 1.1 93.994 -36.4 4.855 5191 no
## 1844 1.1 93.994 -36.4 4.855 5191 no
## 1845 1.1 93.994 -36.4 4.855 5191 no
## 1846 1.1 93.994 -36.4 4.855 5191 no
## 1847 1.1 93.994 -36.4 4.855 5191 no
## 1848 1.1 93.994 -36.4 4.855 5191 no
## 1849 1.1 93.994 -36.4 4.855 5191 no
## 1850 1.1 93.994 -36.4 4.855 5191 no
## 1851 1.1 93.994 -36.4 4.855 5191 no
## 1852 1.1 93.994 -36.4 4.855 5191 no
## 1853 1.1 93.994 -36.4 4.855 5191 no
## 1854 1.1 93.994 -36.4 4.855 5191 no
## 1855 1.1 93.994 -36.4 4.855 5191 no
## 1856 1.1 93.994 -36.4 4.855 5191 no
## 1857 1.1 93.994 -36.4 4.855 5191 no
## 1858 1.1 93.994 -36.4 4.855 5191 no
## 1859 1.1 93.994 -36.4 4.855 5191 no
## 1860 1.1 93.994 -36.4 4.855 5191 no
## 1861 1.1 93.994 -36.4 4.855 5191 no
## 1862 1.1 93.994 -36.4 4.855 5191 no
## 1863 1.1 93.994 -36.4 4.855 5191 no
## 1864 1.1 93.994 -36.4 4.855 5191 no
## 1865 1.1 93.994 -36.4 4.855 5191 no
## 1866 1.1 93.994 -36.4 4.855 5191 no
## 1867 1.1 93.994 -36.4 4.855 5191 no
## 1868 1.1 93.994 -36.4 4.855 5191 no
## 1869 1.1 93.994 -36.4 4.855 5191 no
## 1870 1.1 93.994 -36.4 4.855 5191 no
## 1871 1.1 93.994 -36.4 4.855 5191 no
## 1872 1.1 93.994 -36.4 4.855 5191 no
## 1873 1.1 93.994 -36.4 4.855 5191 no
## 1874 1.1 93.994 -36.4 4.855 5191 no
## 1875 1.1 93.994 -36.4 4.855 5191 no
## 1876 1.1 93.994 -36.4 4.855 5191 no
## 1877 1.1 93.994 -36.4 4.855 5191 no
## 1878 1.1 93.994 -36.4 4.855 5191 no
## 1879 1.1 93.994 -36.4 4.855 5191 no
## 1880 1.1 93.994 -36.4 4.855 5191 no
## 1881 1.1 93.994 -36.4 4.855 5191 no
## 1882 1.1 93.994 -36.4 4.855 5191 no
## 1883 1.1 93.994 -36.4 4.855 5191 no
## 1884 1.1 93.994 -36.4 4.855 5191 no
## 1885 1.1 93.994 -36.4 4.855 5191 no
## 1886 1.1 93.994 -36.4 4.855 5191 no
## 1887 1.1 93.994 -36.4 4.855 5191 no
## 1888 1.1 93.994 -36.4 4.855 5191 no
## 1889 1.1 93.994 -36.4 4.855 5191 no
## 1890 1.1 93.994 -36.4 4.855 5191 no
## 1891 1.1 93.994 -36.4 4.855 5191 no
## 1892 1.1 93.994 -36.4 4.855 5191 no
## 1893 1.1 93.994 -36.4 4.855 5191 no
## 1894 1.1 93.994 -36.4 4.855 5191 no
## 1895 1.1 93.994 -36.4 4.855 5191 no
## 1896 1.1 93.994 -36.4 4.855 5191 no
## 1897 1.1 93.994 -36.4 4.855 5191 no
## 1898 1.1 93.994 -36.4 4.855 5191 no
## 1899 1.1 93.994 -36.4 4.855 5191 no
## 1900 1.1 93.994 -36.4 4.855 5191 no
## 1901 1.1 93.994 -36.4 4.855 5191 no
## 1902 1.1 93.994 -36.4 4.855 5191 no
## 1903 1.1 93.994 -36.4 4.855 5191 no
## 1904 1.1 93.994 -36.4 4.855 5191 no
## 1905 1.1 93.994 -36.4 4.855 5191 no
## 1906 1.1 93.994 -36.4 4.855 5191 no
## 1907 1.1 93.994 -36.4 4.855 5191 no
## 1908 1.1 93.994 -36.4 4.855 5191 no
## 1909 1.1 93.994 -36.4 4.855 5191 no
## 1910 1.1 93.994 -36.4 4.855 5191 no
## 1911 1.1 93.994 -36.4 4.855 5191 no
## 1912 1.1 93.994 -36.4 4.855 5191 no
## 1913 1.1 93.994 -36.4 4.855 5191 no
## 1914 1.1 93.994 -36.4 4.855 5191 no
## 1915 1.1 93.994 -36.4 4.855 5191 no
## 1916 1.1 93.994 -36.4 4.855 5191 no
## 1917 1.1 93.994 -36.4 4.855 5191 no
## 1918 1.1 93.994 -36.4 4.855 5191 no
## 1919 1.1 93.994 -36.4 4.855 5191 no
## 1920 1.1 93.994 -36.4 4.855 5191 no
## 1921 1.1 93.994 -36.4 4.855 5191 no
## 1922 1.1 93.994 -36.4 4.855 5191 no
## 1923 1.1 93.994 -36.4 4.855 5191 no
## 1924 1.1 93.994 -36.4 4.855 5191 no
## 1925 1.1 93.994 -36.4 4.855 5191 no
## 1926 1.1 93.994 -36.4 4.855 5191 no
## 1927 1.1 93.994 -36.4 4.855 5191 no
## 1928 1.1 93.994 -36.4 4.855 5191 no
## 1929 1.1 93.994 -36.4 4.855 5191 no
## 1930 1.1 93.994 -36.4 4.855 5191 no
## 1931 1.1 93.994 -36.4 4.855 5191 no
## 1932 1.1 93.994 -36.4 4.855 5191 no
## 1933 1.1 93.994 -36.4 4.855 5191 no
## 1934 1.1 93.994 -36.4 4.855 5191 no
## 1935 1.1 93.994 -36.4 4.855 5191 no
## 1936 1.1 93.994 -36.4 4.855 5191 no
## 1937 1.1 93.994 -36.4 4.855 5191 no
## 1938 1.1 93.994 -36.4 4.855 5191 no
## 1939 1.1 93.994 -36.4 4.855 5191 no
## 1940 1.1 93.994 -36.4 4.855 5191 no
## 1941 1.1 93.994 -36.4 4.855 5191 no
## 1942 1.1 93.994 -36.4 4.855 5191 no
## 1943 1.1 93.994 -36.4 4.855 5191 no
## 1944 1.1 93.994 -36.4 4.855 5191 no
## 1945 1.1 93.994 -36.4 4.855 5191 no
## 1946 1.1 93.994 -36.4 4.855 5191 no
## 1947 1.1 93.994 -36.4 4.855 5191 no
## 1948 1.1 93.994 -36.4 4.855 5191 no
## 1949 1.1 93.994 -36.4 4.855 5191 no
## 1950 1.1 93.994 -36.4 4.855 5191 no
## 1951 1.1 93.994 -36.4 4.855 5191 no
## 1952 1.1 93.994 -36.4 4.855 5191 no
## 1953 1.1 93.994 -36.4 4.855 5191 no
## 1954 1.1 93.994 -36.4 4.855 5191 no
## 1955 1.1 93.994 -36.4 4.855 5191 no
## 1956 1.1 93.994 -36.4 4.855 5191 no
## 1957 1.1 93.994 -36.4 4.855 5191 no
## 1958 1.1 93.994 -36.4 4.855 5191 no
## 1959 1.1 93.994 -36.4 4.855 5191 no
## 1960 1.1 93.994 -36.4 4.855 5191 no
## 1961 1.1 93.994 -36.4 4.855 5191 no
## 1962 1.1 93.994 -36.4 4.855 5191 no
## 1963 1.1 93.994 -36.4 4.855 5191 no
## 1964 1.1 93.994 -36.4 4.855 5191 no
## 1965 1.1 93.994 -36.4 4.855 5191 no
## 1966 1.1 93.994 -36.4 4.855 5191 no
## 1967 1.1 93.994 -36.4 4.855 5191 no
## 1968 1.1 93.994 -36.4 4.855 5191 no
## 1969 1.1 93.994 -36.4 4.855 5191 no
## 1970 1.1 93.994 -36.4 4.855 5191 no
## 1971 1.1 93.994 -36.4 4.855 5191 no
## 1972 1.1 93.994 -36.4 4.855 5191 no
## 1973 1.1 93.994 -36.4 4.855 5191 no
## 1974 1.1 93.994 -36.4 4.855 5191 no
## 1975 1.1 93.994 -36.4 4.855 5191 no
## 1976 1.1 93.994 -36.4 4.855 5191 no
## 1977 1.1 93.994 -36.4 4.855 5191 no
## 1978 1.1 93.994 -36.4 4.855 5191 no
## 1979 1.1 93.994 -36.4 4.855 5191 no
## 1980 1.1 93.994 -36.4 4.855 5191 no
## 1981 1.1 93.994 -36.4 4.855 5191 no
## 1982 1.1 93.994 -36.4 4.855 5191 no
## 1983 1.1 93.994 -36.4 4.855 5191 no
## 1984 1.1 93.994 -36.4 4.855 5191 no
## 1985 1.1 93.994 -36.4 4.855 5191 no
## 1986 1.1 93.994 -36.4 4.855 5191 no
## 1987 1.1 93.994 -36.4 4.857 5191 no
## 1988 1.1 93.994 -36.4 4.857 5191 no
## 1989 1.1 93.994 -36.4 4.857 5191 no
## 1990 1.1 93.994 -36.4 4.857 5191 no
## 1991 1.1 93.994 -36.4 4.857 5191 no
## 1992 1.1 93.994 -36.4 4.857 5191 no
## 1993 1.1 93.994 -36.4 4.857 5191 no
## 1994 1.1 93.994 -36.4 4.857 5191 no
## 1995 1.1 93.994 -36.4 4.857 5191 no
## 1996 1.1 93.994 -36.4 4.857 5191 no
## 1997 1.1 93.994 -36.4 4.857 5191 no
## 1998 1.1 93.994 -36.4 4.857 5191 no
## 1999 1.1 93.994 -36.4 4.857 5191 no
## 2000 1.1 93.994 -36.4 4.857 5191 no
## 2001 1.1 93.994 -36.4 4.857 5191 no
## 2002 1.1 93.994 -36.4 4.857 5191 no
## 2003 1.1 93.994 -36.4 4.857 5191 yes
## 2004 1.1 93.994 -36.4 4.857 5191 no
## 2005 1.1 93.994 -36.4 4.857 5191 no
## 2006 1.1 93.994 -36.4 4.857 5191 no
## 2007 1.1 93.994 -36.4 4.857 5191 no
## 2008 1.1 93.994 -36.4 4.857 5191 no
## 2009 1.1 93.994 -36.4 4.857 5191 no
## 2010 1.1 93.994 -36.4 4.857 5191 no
## 2011 1.1 93.994 -36.4 4.857 5191 no
## 2012 1.1 93.994 -36.4 4.857 5191 no
## 2013 1.1 93.994 -36.4 4.857 5191 no
## 2014 1.1 93.994 -36.4 4.857 5191 no
## 2015 1.1 93.994 -36.4 4.857 5191 no
## 2016 1.1 93.994 -36.4 4.857 5191 no
## 2017 1.1 93.994 -36.4 4.857 5191 no
## 2018 1.1 93.994 -36.4 4.857 5191 no
## 2019 1.1 93.994 -36.4 4.857 5191 no
## 2020 1.1 93.994 -36.4 4.857 5191 no
## 2021 1.1 93.994 -36.4 4.857 5191 no
## 2022 1.1 93.994 -36.4 4.857 5191 no
## 2023 1.1 93.994 -36.4 4.857 5191 no
## 2024 1.1 93.994 -36.4 4.857 5191 no
## 2025 1.1 93.994 -36.4 4.857 5191 no
## 2026 1.1 93.994 -36.4 4.857 5191 no
## 2027 1.1 93.994 -36.4 4.857 5191 no
## 2028 1.1 93.994 -36.4 4.857 5191 no
## 2029 1.1 93.994 -36.4 4.857 5191 no
## 2030 1.1 93.994 -36.4 4.857 5191 no
## 2031 1.1 93.994 -36.4 4.857 5191 no
## 2032 1.1 93.994 -36.4 4.857 5191 no
## 2033 1.1 93.994 -36.4 4.857 5191 no
## 2034 1.1 93.994 -36.4 4.857 5191 no
## 2035 1.1 93.994 -36.4 4.857 5191 no
## 2036 1.1 93.994 -36.4 4.857 5191 no
## 2037 1.1 93.994 -36.4 4.857 5191 no
## 2038 1.1 93.994 -36.4 4.857 5191 no
## 2039 1.1 93.994 -36.4 4.857 5191 no
## 2040 1.1 93.994 -36.4 4.857 5191 yes
## 2041 1.1 93.994 -36.4 4.857 5191 no
## 2042 1.1 93.994 -36.4 4.857 5191 no
## 2043 1.1 93.994 -36.4 4.857 5191 no
## 2044 1.1 93.994 -36.4 4.857 5191 no
## 2045 1.1 93.994 -36.4 4.857 5191 no
## 2046 1.1 93.994 -36.4 4.857 5191 no
## 2047 1.1 93.994 -36.4 4.857 5191 no
## 2048 1.1 93.994 -36.4 4.857 5191 no
## 2049 1.1 93.994 -36.4 4.857 5191 no
## 2050 1.1 93.994 -36.4 4.857 5191 no
## 2051 1.1 93.994 -36.4 4.857 5191 no
## 2052 1.1 93.994 -36.4 4.857 5191 no
## 2053 1.1 93.994 -36.4 4.857 5191 no
## 2054 1.1 93.994 -36.4 4.857 5191 no
## 2055 1.1 93.994 -36.4 4.857 5191 no
## 2056 1.1 93.994 -36.4 4.857 5191 no
## 2057 1.1 93.994 -36.4 4.857 5191 no
## 2058 1.1 93.994 -36.4 4.857 5191 no
## 2059 1.1 93.994 -36.4 4.857 5191 no
## 2060 1.1 93.994 -36.4 4.857 5191 no
## 2061 1.1 93.994 -36.4 4.857 5191 no
## 2062 1.1 93.994 -36.4 4.857 5191 no
## 2063 1.1 93.994 -36.4 4.857 5191 no
## 2064 1.1 93.994 -36.4 4.857 5191 no
## 2065 1.1 93.994 -36.4 4.857 5191 yes
## 2066 1.1 93.994 -36.4 4.857 5191 no
## 2067 1.1 93.994 -36.4 4.857 5191 no
## 2068 1.1 93.994 -36.4 4.857 5191 no
## 2069 1.1 93.994 -36.4 4.857 5191 no
## 2070 1.1 93.994 -36.4 4.857 5191 no
## 2071 1.1 93.994 -36.4 4.857 5191 no
## 2072 1.1 93.994 -36.4 4.857 5191 no
## 2073 1.1 93.994 -36.4 4.857 5191 no
## 2074 1.1 93.994 -36.4 4.857 5191 no
## 2075 1.1 93.994 -36.4 4.857 5191 no
## 2076 1.1 93.994 -36.4 4.857 5191 no
## 2077 1.1 93.994 -36.4 4.857 5191 no
## 2078 1.1 93.994 -36.4 4.857 5191 no
## 2079 1.1 93.994 -36.4 4.857 5191 no
## 2080 1.1 93.994 -36.4 4.857 5191 no
## 2081 1.1 93.994 -36.4 4.857 5191 no
## 2082 1.1 93.994 -36.4 4.857 5191 no
## 2083 1.1 93.994 -36.4 4.857 5191 no
## 2084 1.1 93.994 -36.4 4.857 5191 no
## 2085 1.1 93.994 -36.4 4.857 5191 no
## 2086 1.1 93.994 -36.4 4.857 5191 no
## 2087 1.1 93.994 -36.4 4.857 5191 no
## 2088 1.1 93.994 -36.4 4.857 5191 no
## 2089 1.1 93.994 -36.4 4.857 5191 no
## 2090 1.1 93.994 -36.4 4.857 5191 no
## 2091 1.1 93.994 -36.4 4.857 5191 no
## 2092 1.1 93.994 -36.4 4.857 5191 no
## 2093 1.1 93.994 -36.4 4.857 5191 no
## 2094 1.1 93.994 -36.4 4.857 5191 no
## 2095 1.1 93.994 -36.4 4.857 5191 no
## 2096 1.1 93.994 -36.4 4.857 5191 no
## 2097 1.1 93.994 -36.4 4.857 5191 no
## 2098 1.1 93.994 -36.4 4.857 5191 no
## 2099 1.1 93.994 -36.4 4.857 5191 no
## 2100 1.1 93.994 -36.4 4.857 5191 no
## 2101 1.1 93.994 -36.4 4.857 5191 no
## 2102 1.1 93.994 -36.4 4.857 5191 no
## 2103 1.1 93.994 -36.4 4.857 5191 no
## 2104 1.1 93.994 -36.4 4.857 5191 no
## 2105 1.1 93.994 -36.4 4.857 5191 yes
## 2106 1.1 93.994 -36.4 4.857 5191 no
## 2107 1.1 93.994 -36.4 4.857 5191 no
## 2108 1.1 93.994 -36.4 4.857 5191 no
## 2109 1.1 93.994 -36.4 4.857 5191 no
## 2110 1.1 93.994 -36.4 4.857 5191 no
## 2111 1.1 93.994 -36.4 4.857 5191 no
## 2112 1.1 93.994 -36.4 4.857 5191 no
## 2113 1.1 93.994 -36.4 4.857 5191 no
## 2114 1.1 93.994 -36.4 4.857 5191 no
## 2115 1.1 93.994 -36.4 4.857 5191 no
## 2116 1.1 93.994 -36.4 4.857 5191 no
## 2117 1.1 93.994 -36.4 4.857 5191 no
## 2118 1.1 93.994 -36.4 4.857 5191 no
## 2119 1.1 93.994 -36.4 4.857 5191 no
## 2120 1.1 93.994 -36.4 4.857 5191 no
## 2121 1.1 93.994 -36.4 4.857 5191 no
## 2122 1.1 93.994 -36.4 4.857 5191 no
## 2123 1.1 93.994 -36.4 4.857 5191 no
## 2124 1.1 93.994 -36.4 4.857 5191 no
## 2125 1.1 93.994 -36.4 4.857 5191 no
## 2126 1.1 93.994 -36.4 4.857 5191 no
## 2127 1.1 93.994 -36.4 4.857 5191 no
## 2128 1.1 93.994 -36.4 4.857 5191 no
## 2129 1.1 93.994 -36.4 4.857 5191 no
## 2130 1.1 93.994 -36.4 4.857 5191 no
## 2131 1.1 93.994 -36.4 4.857 5191 no
## 2132 1.1 93.994 -36.4 4.857 5191 no
## 2133 1.1 93.994 -36.4 4.857 5191 no
## 2134 1.1 93.994 -36.4 4.857 5191 no
## 2135 1.1 93.994 -36.4 4.857 5191 no
## 2136 1.1 93.994 -36.4 4.857 5191 no
## 2137 1.1 93.994 -36.4 4.857 5191 no
## 2138 1.1 93.994 -36.4 4.857 5191 no
## 2139 1.1 93.994 -36.4 4.857 5191 no
## 2140 1.1 93.994 -36.4 4.857 5191 no
## 2141 1.1 93.994 -36.4 4.857 5191 no
## 2142 1.1 93.994 -36.4 4.857 5191 no
## 2143 1.1 93.994 -36.4 4.857 5191 no
## 2144 1.1 93.994 -36.4 4.857 5191 no
## 2145 1.1 93.994 -36.4 4.857 5191 no
## 2146 1.1 93.994 -36.4 4.857 5191 no
## 2147 1.1 93.994 -36.4 4.857 5191 no
## 2148 1.1 93.994 -36.4 4.857 5191 no
## 2149 1.1 93.994 -36.4 4.857 5191 no
## 2150 1.1 93.994 -36.4 4.857 5191 no
## 2151 1.1 93.994 -36.4 4.857 5191 no
## 2152 1.1 93.994 -36.4 4.857 5191 no
## 2153 1.1 93.994 -36.4 4.857 5191 no
## 2154 1.1 93.994 -36.4 4.857 5191 no
## 2155 1.1 93.994 -36.4 4.857 5191 no
## 2156 1.1 93.994 -36.4 4.857 5191 no
## 2157 1.1 93.994 -36.4 4.857 5191 no
## 2158 1.1 93.994 -36.4 4.857 5191 no
## 2159 1.1 93.994 -36.4 4.857 5191 no
## 2160 1.1 93.994 -36.4 4.857 5191 no
## 2161 1.1 93.994 -36.4 4.857 5191 no
## 2162 1.1 93.994 -36.4 4.857 5191 no
## 2163 1.1 93.994 -36.4 4.857 5191 no
## 2164 1.1 93.994 -36.4 4.857 5191 no
## 2165 1.1 93.994 -36.4 4.857 5191 no
## 2166 1.1 93.994 -36.4 4.857 5191 no
## 2167 1.1 93.994 -36.4 4.857 5191 no
## 2168 1.1 93.994 -36.4 4.857 5191 no
## 2169 1.1 93.994 -36.4 4.857 5191 no
## 2170 1.1 93.994 -36.4 4.857 5191 no
## 2171 1.1 93.994 -36.4 4.857 5191 no
## 2172 1.1 93.994 -36.4 4.857 5191 no
## 2173 1.1 93.994 -36.4 4.857 5191 no
## 2174 1.1 93.994 -36.4 4.857 5191 no
## 2175 1.1 93.994 -36.4 4.857 5191 no
## 2176 1.1 93.994 -36.4 4.857 5191 no
## 2177 1.1 93.994 -36.4 4.857 5191 no
## 2178 1.1 93.994 -36.4 4.857 5191 no
## 2179 1.1 93.994 -36.4 4.857 5191 no
## 2180 1.1 93.994 -36.4 4.857 5191 no
## 2181 1.1 93.994 -36.4 4.857 5191 no
## 2182 1.1 93.994 -36.4 4.857 5191 no
## 2183 1.1 93.994 -36.4 4.857 5191 no
## 2184 1.1 93.994 -36.4 4.857 5191 no
## 2185 1.1 93.994 -36.4 4.857 5191 no
## 2186 1.1 93.994 -36.4 4.857 5191 no
## 2187 1.1 93.994 -36.4 4.857 5191 no
## 2188 1.1 93.994 -36.4 4.857 5191 no
## 2189 1.1 93.994 -36.4 4.857 5191 no
## 2190 1.1 93.994 -36.4 4.857 5191 no
## 2191 1.1 93.994 -36.4 4.857 5191 no
## 2192 1.1 93.994 -36.4 4.857 5191 no
## 2193 1.1 93.994 -36.4 4.857 5191 no
## 2194 1.1 93.994 -36.4 4.857 5191 no
## 2195 1.1 93.994 -36.4 4.857 5191 no
## 2196 1.1 93.994 -36.4 4.857 5191 no
## 2197 1.1 93.994 -36.4 4.857 5191 no
## 2198 1.1 93.994 -36.4 4.857 5191 no
## 2199 1.1 93.994 -36.4 4.857 5191 no
## 2200 1.1 93.994 -36.4 4.857 5191 no
## 2201 1.1 93.994 -36.4 4.857 5191 no
## 2202 1.1 93.994 -36.4 4.857 5191 no
## 2203 1.1 93.994 -36.4 4.857 5191 no
## 2204 1.1 93.994 -36.4 4.857 5191 no
## 2205 1.1 93.994 -36.4 4.857 5191 no
## 2206 1.1 93.994 -36.4 4.857 5191 no
## 2207 1.1 93.994 -36.4 4.857 5191 no
## 2208 1.1 93.994 -36.4 4.857 5191 no
## 2209 1.1 93.994 -36.4 4.857 5191 no
## 2210 1.1 93.994 -36.4 4.857 5191 no
## 2211 1.1 93.994 -36.4 4.857 5191 no
## 2212 1.1 93.994 -36.4 4.857 5191 no
## 2213 1.1 93.994 -36.4 4.857 5191 no
## 2214 1.1 93.994 -36.4 4.857 5191 no
## 2215 1.1 93.994 -36.4 4.857 5191 no
## 2216 1.1 93.994 -36.4 4.857 5191 no
## 2217 1.1 93.994 -36.4 4.857 5191 no
## 2218 1.1 93.994 -36.4 4.857 5191 no
## 2219 1.1 93.994 -36.4 4.857 5191 no
## 2220 1.1 93.994 -36.4 4.857 5191 no
## 2221 1.1 93.994 -36.4 4.857 5191 no
## 2222 1.1 93.994 -36.4 4.857 5191 no
## 2223 1.1 93.994 -36.4 4.857 5191 no
## 2224 1.1 93.994 -36.4 4.857 5191 no
## 2225 1.1 93.994 -36.4 4.857 5191 no
## 2226 1.1 93.994 -36.4 4.857 5191 no
## 2227 1.1 93.994 -36.4 4.857 5191 no
## 2228 1.1 93.994 -36.4 4.857 5191 no
## 2229 1.1 93.994 -36.4 4.857 5191 no
## 2230 1.1 93.994 -36.4 4.857 5191 no
## 2231 1.1 93.994 -36.4 4.857 5191 no
## 2232 1.1 93.994 -36.4 4.857 5191 no
## 2233 1.1 93.994 -36.4 4.857 5191 no
## 2234 1.1 93.994 -36.4 4.857 5191 no
## 2235 1.1 93.994 -36.4 4.857 5191 no
## 2236 1.1 93.994 -36.4 4.857 5191 no
## 2237 1.1 93.994 -36.4 4.857 5191 no
## 2238 1.1 93.994 -36.4 4.857 5191 no
## 2239 1.1 93.994 -36.4 4.857 5191 no
## 2240 1.1 93.994 -36.4 4.857 5191 no
## 2241 1.1 93.994 -36.4 4.857 5191 no
## 2242 1.1 93.994 -36.4 4.857 5191 no
## 2243 1.1 93.994 -36.4 4.857 5191 no
## 2244 1.1 93.994 -36.4 4.857 5191 no
## 2245 1.1 93.994 -36.4 4.857 5191 no
## 2246 1.1 93.994 -36.4 4.857 5191 no
## 2247 1.1 93.994 -36.4 4.857 5191 no
## 2248 1.1 93.994 -36.4 4.856 5191 no
## 2249 1.1 93.994 -36.4 4.856 5191 no
## 2250 1.1 93.994 -36.4 4.856 5191 no
## 2251 1.1 93.994 -36.4 4.856 5191 no
## 2252 1.1 93.994 -36.4 4.856 5191 no
## 2253 1.1 93.994 -36.4 4.856 5191 no
## 2254 1.1 93.994 -36.4 4.856 5191 no
## 2255 1.1 93.994 -36.4 4.856 5191 no
## 2256 1.1 93.994 -36.4 4.856 5191 no
## 2257 1.1 93.994 -36.4 4.856 5191 no
## 2258 1.1 93.994 -36.4 4.856 5191 yes
## 2259 1.1 93.994 -36.4 4.856 5191 no
## 2260 1.1 93.994 -36.4 4.856 5191 no
## 2261 1.1 93.994 -36.4 4.856 5191 no
## 2262 1.1 93.994 -36.4 4.856 5191 no
## 2263 1.1 93.994 -36.4 4.856 5191 no
## 2264 1.1 93.994 -36.4 4.856 5191 no
## 2265 1.1 93.994 -36.4 4.856 5191 no
## 2266 1.1 93.994 -36.4 4.856 5191 no
## 2267 1.1 93.994 -36.4 4.856 5191 no
## 2268 1.1 93.994 -36.4 4.856 5191 no
## 2269 1.1 93.994 -36.4 4.856 5191 no
## 2270 1.1 93.994 -36.4 4.856 5191 no
## 2271 1.1 93.994 -36.4 4.856 5191 no
## 2272 1.1 93.994 -36.4 4.856 5191 no
## 2273 1.1 93.994 -36.4 4.856 5191 no
## 2274 1.1 93.994 -36.4 4.856 5191 no
## 2275 1.1 93.994 -36.4 4.856 5191 no
## 2276 1.1 93.994 -36.4 4.856 5191 yes
## 2277 1.1 93.994 -36.4 4.856 5191 no
## 2278 1.1 93.994 -36.4 4.856 5191 no
## 2279 1.1 93.994 -36.4 4.856 5191 no
## 2280 1.1 93.994 -36.4 4.856 5191 no
## 2281 1.1 93.994 -36.4 4.856 5191 no
## 2282 1.1 93.994 -36.4 4.856 5191 no
## 2283 1.1 93.994 -36.4 4.856 5191 no
## 2284 1.1 93.994 -36.4 4.856 5191 no
## 2285 1.1 93.994 -36.4 4.856 5191 no
## 2286 1.1 93.994 -36.4 4.856 5191 no
## 2287 1.1 93.994 -36.4 4.856 5191 no
## 2288 1.1 93.994 -36.4 4.856 5191 no
## 2289 1.1 93.994 -36.4 4.856 5191 no
## 2290 1.1 93.994 -36.4 4.856 5191 no
## 2291 1.1 93.994 -36.4 4.856 5191 no
## 2292 1.1 93.994 -36.4 4.856 5191 no
## 2293 1.1 93.994 -36.4 4.856 5191 no
## 2294 1.1 93.994 -36.4 4.856 5191 no
## 2295 1.1 93.994 -36.4 4.856 5191 no
## 2296 1.1 93.994 -36.4 4.856 5191 no
## 2297 1.1 93.994 -36.4 4.856 5191 no
## 2298 1.1 93.994 -36.4 4.856 5191 no
## 2299 1.1 93.994 -36.4 4.856 5191 no
## 2300 1.1 93.994 -36.4 4.856 5191 no
## 2301 1.1 93.994 -36.4 4.856 5191 no
## 2302 1.1 93.994 -36.4 4.856 5191 no
## 2303 1.1 93.994 -36.4 4.856 5191 no
## 2304 1.1 93.994 -36.4 4.856 5191 no
## 2305 1.1 93.994 -36.4 4.856 5191 no
## 2306 1.1 93.994 -36.4 4.856 5191 yes
## 2307 1.1 93.994 -36.4 4.856 5191 no
## 2308 1.1 93.994 -36.4 4.856 5191 no
## 2309 1.1 93.994 -36.4 4.856 5191 no
## 2310 1.1 93.994 -36.4 4.856 5191 no
## 2311 1.1 93.994 -36.4 4.856 5191 no
## 2312 1.1 93.994 -36.4 4.856 5191 no
## 2313 1.1 93.994 -36.4 4.856 5191 no
## 2314 1.1 93.994 -36.4 4.856 5191 no
## 2315 1.1 93.994 -36.4 4.856 5191 no
## 2316 1.1 93.994 -36.4 4.856 5191 yes
## 2317 1.1 93.994 -36.4 4.856 5191 yes
## 2318 1.1 93.994 -36.4 4.856 5191 no
## 2319 1.1 93.994 -36.4 4.856 5191 no
## 2320 1.1 93.994 -36.4 4.856 5191 no
## 2321 1.1 93.994 -36.4 4.856 5191 no
## 2322 1.1 93.994 -36.4 4.856 5191 no
## 2323 1.1 93.994 -36.4 4.856 5191 no
## 2324 1.1 93.994 -36.4 4.856 5191 no
## 2325 1.1 93.994 -36.4 4.856 5191 no
## 2326 1.1 93.994 -36.4 4.856 5191 no
## 2327 1.1 93.994 -36.4 4.856 5191 no
## 2328 1.1 93.994 -36.4 4.856 5191 no
## 2329 1.1 93.994 -36.4 4.856 5191 no
## 2330 1.1 93.994 -36.4 4.856 5191 no
## 2331 1.1 93.994 -36.4 4.856 5191 yes
## 2332 1.1 93.994 -36.4 4.856 5191 no
## 2333 1.1 93.994 -36.4 4.856 5191 no
## 2334 1.1 93.994 -36.4 4.856 5191 no
## 2335 1.1 93.994 -36.4 4.856 5191 no
## 2336 1.1 93.994 -36.4 4.856 5191 no
## 2337 1.1 93.994 -36.4 4.856 5191 no
## 2338 1.1 93.994 -36.4 4.856 5191 no
## 2339 1.1 93.994 -36.4 4.856 5191 no
## 2340 1.1 93.994 -36.4 4.856 5191 no
## 2341 1.1 93.994 -36.4 4.856 5191 no
## 2342 1.1 93.994 -36.4 4.856 5191 no
## 2343 1.1 93.994 -36.4 4.856 5191 no
## 2344 1.1 93.994 -36.4 4.856 5191 no
## 2345 1.1 93.994 -36.4 4.856 5191 no
## 2346 1.1 93.994 -36.4 4.856 5191 no
## 2347 1.1 93.994 -36.4 4.856 5191 no
## 2348 1.1 93.994 -36.4 4.856 5191 no
## 2349 1.1 93.994 -36.4 4.856 5191 no
## 2350 1.1 93.994 -36.4 4.856 5191 no
## 2351 1.1 93.994 -36.4 4.856 5191 no
## 2352 1.1 93.994 -36.4 4.856 5191 no
## 2353 1.1 93.994 -36.4 4.856 5191 no
## 2354 1.1 93.994 -36.4 4.856 5191 no
## 2355 1.1 93.994 -36.4 4.856 5191 no
## 2356 1.1 93.994 -36.4 4.856 5191 no
## 2357 1.1 93.994 -36.4 4.856 5191 no
## 2358 1.1 93.994 -36.4 4.856 5191 no
## 2359 1.1 93.994 -36.4 4.856 5191 no
## 2360 1.1 93.994 -36.4 4.856 5191 no
## 2361 1.1 93.994 -36.4 4.856 5191 no
## 2362 1.1 93.994 -36.4 4.856 5191 no
## 2363 1.1 93.994 -36.4 4.856 5191 no
## 2364 1.1 93.994 -36.4 4.856 5191 no
## 2365 1.1 93.994 -36.4 4.856 5191 no
## 2366 1.1 93.994 -36.4 4.856 5191 no
## 2367 1.1 93.994 -36.4 4.856 5191 no
## 2368 1.1 93.994 -36.4 4.856 5191 no
## 2369 1.1 93.994 -36.4 4.856 5191 no
## 2370 1.1 93.994 -36.4 4.856 5191 no
## 2371 1.1 93.994 -36.4 4.856 5191 no
## 2372 1.1 93.994 -36.4 4.856 5191 no
## 2373 1.1 93.994 -36.4 4.856 5191 no
## 2374 1.1 93.994 -36.4 4.856 5191 no
## 2375 1.1 93.994 -36.4 4.856 5191 no
## 2376 1.1 93.994 -36.4 4.856 5191 no
## 2377 1.1 93.994 -36.4 4.856 5191 no
## 2378 1.1 93.994 -36.4 4.856 5191 no
## 2379 1.1 93.994 -36.4 4.856 5191 no
## 2380 1.1 93.994 -36.4 4.856 5191 no
## 2381 1.1 93.994 -36.4 4.856 5191 no
## 2382 1.1 93.994 -36.4 4.856 5191 no
## 2383 1.1 93.994 -36.4 4.856 5191 no
## 2384 1.1 93.994 -36.4 4.856 5191 no
## 2385 1.1 93.994 -36.4 4.856 5191 no
## 2386 1.1 93.994 -36.4 4.856 5191 no
## 2387 1.1 93.994 -36.4 4.856 5191 no
## 2388 1.1 93.994 -36.4 4.856 5191 no
## 2389 1.1 93.994 -36.4 4.856 5191 no
## 2390 1.1 93.994 -36.4 4.856 5191 no
## 2391 1.1 93.994 -36.4 4.856 5191 no
## 2392 1.1 93.994 -36.4 4.856 5191 no
## 2393 1.1 93.994 -36.4 4.856 5191 no
## 2394 1.1 93.994 -36.4 4.856 5191 no
## 2395 1.1 93.994 -36.4 4.856 5191 no
## 2396 1.1 93.994 -36.4 4.856 5191 no
## 2397 1.1 93.994 -36.4 4.856 5191 no
## 2398 1.1 93.994 -36.4 4.856 5191 no
## 2399 1.1 93.994 -36.4 4.856 5191 no
## 2400 1.1 93.994 -36.4 4.856 5191 no
## 2401 1.1 93.994 -36.4 4.856 5191 no
## 2402 1.1 93.994 -36.4 4.856 5191 no
## 2403 1.1 93.994 -36.4 4.856 5191 no
## 2404 1.1 93.994 -36.4 4.856 5191 no
## 2405 1.1 93.994 -36.4 4.856 5191 no
## 2406 1.1 93.994 -36.4 4.856 5191 no
## 2407 1.1 93.994 -36.4 4.856 5191 yes
## 2408 1.1 93.994 -36.4 4.856 5191 no
## 2409 1.1 93.994 -36.4 4.856 5191 no
## 2410 1.1 93.994 -36.4 4.856 5191 no
## 2411 1.1 93.994 -36.4 4.856 5191 no
## 2412 1.1 93.994 -36.4 4.856 5191 no
## 2413 1.1 93.994 -36.4 4.856 5191 no
## 2414 1.1 93.994 -36.4 4.856 5191 no
## 2415 1.1 93.994 -36.4 4.856 5191 no
## 2416 1.1 93.994 -36.4 4.856 5191 no
## 2417 1.1 93.994 -36.4 4.856 5191 no
## 2418 1.1 93.994 -36.4 4.856 5191 yes
## 2419 1.1 93.994 -36.4 4.856 5191 no
## 2420 1.1 93.994 -36.4 4.856 5191 no
## 2421 1.1 93.994 -36.4 4.856 5191 no
## 2422 1.1 93.994 -36.4 4.856 5191 yes
## 2423 1.1 93.994 -36.4 4.856 5191 no
## 2424 1.1 93.994 -36.4 4.856 5191 no
## 2425 1.1 93.994 -36.4 4.856 5191 yes
## 2426 1.1 93.994 -36.4 4.856 5191 no
## 2427 1.1 93.994 -36.4 4.856 5191 no
## 2428 1.1 93.994 -36.4 4.856 5191 no
## 2429 1.1 93.994 -36.4 4.856 5191 no
## 2430 1.1 93.994 -36.4 4.856 5191 no
## 2431 1.1 93.994 -36.4 4.856 5191 no
## 2432 1.1 93.994 -36.4 4.856 5191 no
## 2433 1.1 93.994 -36.4 4.856 5191 no
## 2434 1.1 93.994 -36.4 4.856 5191 no
## 2435 1.1 93.994 -36.4 4.856 5191 no
## 2436 1.1 93.994 -36.4 4.856 5191 no
## 2437 1.1 93.994 -36.4 4.856 5191 no
## 2438 1.1 93.994 -36.4 4.856 5191 no
## 2439 1.1 93.994 -36.4 4.856 5191 no
## 2440 1.1 93.994 -36.4 4.856 5191 no
## 2441 1.1 93.994 -36.4 4.856 5191 no
## 2442 1.1 93.994 -36.4 4.856 5191 no
## 2443 1.1 93.994 -36.4 4.856 5191 no
## 2444 1.1 93.994 -36.4 4.856 5191 no
## 2445 1.1 93.994 -36.4 4.856 5191 yes
## 2446 1.1 93.994 -36.4 4.856 5191 no
## 2447 1.1 93.994 -36.4 4.856 5191 no
## 2448 1.1 93.994 -36.4 4.856 5191 no
## 2449 1.1 93.994 -36.4 4.856 5191 no
## 2450 1.1 93.994 -36.4 4.856 5191 yes
## 2451 1.1 93.994 -36.4 4.856 5191 no
## 2452 1.1 93.994 -36.4 4.856 5191 no
## 2453 1.1 93.994 -36.4 4.856 5191 no
## 2454 1.1 93.994 -36.4 4.856 5191 no
## 2455 1.1 93.994 -36.4 4.856 5191 no
## 2456 1.1 93.994 -36.4 4.856 5191 no
## 2457 1.1 93.994 -36.4 4.856 5191 no
## 2458 1.1 93.994 -36.4 4.856 5191 no
## 2459 1.1 93.994 -36.4 4.856 5191 no
## 2460 1.1 93.994 -36.4 4.856 5191 no
## 2461 1.1 93.994 -36.4 4.856 5191 no
## 2462 1.1 93.994 -36.4 4.856 5191 no
## 2463 1.1 93.994 -36.4 4.856 5191 no
## 2464 1.1 93.994 -36.4 4.856 5191 no
## 2465 1.1 93.994 -36.4 4.856 5191 no
## 2466 1.1 93.994 -36.4 4.856 5191 no
## 2467 1.1 93.994 -36.4 4.856 5191 no
## 2468 1.1 93.994 -36.4 4.856 5191 no
## 2469 1.1 93.994 -36.4 4.856 5191 no
## 2470 1.1 93.994 -36.4 4.856 5191 no
## 2471 1.1 93.994 -36.4 4.856 5191 no
## 2472 1.1 93.994 -36.4 4.856 5191 no
## 2473 1.1 93.994 -36.4 4.856 5191 no
## 2474 1.1 93.994 -36.4 4.856 5191 yes
## 2475 1.1 93.994 -36.4 4.856 5191 no
## 2476 1.1 93.994 -36.4 4.856 5191 no
## 2477 1.1 93.994 -36.4 4.856 5191 no
## 2478 1.1 93.994 -36.4 4.856 5191 no
## 2479 1.1 93.994 -36.4 4.856 5191 no
## 2480 1.1 93.994 -36.4 4.856 5191 no
## 2481 1.1 93.994 -36.4 4.856 5191 no
## 2482 1.1 93.994 -36.4 4.856 5191 no
## 2483 1.1 93.994 -36.4 4.856 5191 no
## 2484 1.1 93.994 -36.4 4.856 5191 no
## 2485 1.1 93.994 -36.4 4.856 5191 no
## 2486 1.1 93.994 -36.4 4.856 5191 no
## 2487 1.1 93.994 -36.4 4.856 5191 no
## 2488 1.1 93.994 -36.4 4.856 5191 no
## 2489 1.1 93.994 -36.4 4.856 5191 no
## 2490 1.1 93.994 -36.4 4.856 5191 no
## 2491 1.1 93.994 -36.4 4.856 5191 no
## 2492 1.1 93.994 -36.4 4.856 5191 no
## 2493 1.1 93.994 -36.4 4.856 5191 no
## 2494 1.1 93.994 -36.4 4.856 5191 no
## 2495 1.1 93.994 -36.4 4.856 5191 no
## 2496 1.1 93.994 -36.4 4.856 5191 no
## 2497 1.1 93.994 -36.4 4.856 5191 no
## 2498 1.1 93.994 -36.4 4.856 5191 no
## 2499 1.1 93.994 -36.4 4.856 5191 no
## 2500 1.1 93.994 -36.4 4.856 5191 no
## 2501 1.1 93.994 -36.4 4.856 5191 no
## 2502 1.1 93.994 -36.4 4.856 5191 no
## 2503 1.1 93.994 -36.4 4.856 5191 no
## 2504 1.1 93.994 -36.4 4.856 5191 no
## 2505 1.1 93.994 -36.4 4.856 5191 no
## 2506 1.1 93.994 -36.4 4.856 5191 no
## 2507 1.1 93.994 -36.4 4.856 5191 no
## 2508 1.1 93.994 -36.4 4.856 5191 no
## 2509 1.1 93.994 -36.4 4.856 5191 no
## 2510 1.1 93.994 -36.4 4.856 5191 no
## 2511 1.1 93.994 -36.4 4.856 5191 no
## 2512 1.1 93.994 -36.4 4.856 5191 no
## 2513 1.1 93.994 -36.4 4.856 5191 no
## 2514 1.1 93.994 -36.4 4.856 5191 no
## 2515 1.1 93.994 -36.4 4.856 5191 no
## 2516 1.1 93.994 -36.4 4.856 5191 no
## 2517 1.1 93.994 -36.4 4.856 5191 no
## 2518 1.1 93.994 -36.4 4.856 5191 no
## 2519 1.1 93.994 -36.4 4.856 5191 no
## 2520 1.1 93.994 -36.4 4.856 5191 no
## 2521 1.1 93.994 -36.4 4.856 5191 no
## 2522 1.1 93.994 -36.4 4.856 5191 no
## 2523 1.1 93.994 -36.4 4.856 5191 no
## 2524 1.1 93.994 -36.4 4.856 5191 no
## 2525 1.1 93.994 -36.4 4.856 5191 no
## 2526 1.1 93.994 -36.4 4.856 5191 no
## 2527 1.1 93.994 -36.4 4.856 5191 no
## 2528 1.1 93.994 -36.4 4.856 5191 no
## 2529 1.1 93.994 -36.4 4.856 5191 no
## 2530 1.1 93.994 -36.4 4.856 5191 no
## 2531 1.1 93.994 -36.4 4.856 5191 no
## 2532 1.1 93.994 -36.4 4.856 5191 no
## 2533 1.1 93.994 -36.4 4.856 5191 no
## 2534 1.1 93.994 -36.4 4.856 5191 no
## 2535 1.1 93.994 -36.4 4.856 5191 no
## 2536 1.1 93.994 -36.4 4.856 5191 no
## 2537 1.1 93.994 -36.4 4.856 5191 no
## 2538 1.1 93.994 -36.4 4.856 5191 no
## 2539 1.1 93.994 -36.4 4.856 5191 no
## 2540 1.1 93.994 -36.4 4.856 5191 no
## 2541 1.1 93.994 -36.4 4.856 5191 no
## 2542 1.1 93.994 -36.4 4.856 5191 no
## 2543 1.1 93.994 -36.4 4.856 5191 no
## 2544 1.1 93.994 -36.4 4.856 5191 no
## 2545 1.1 93.994 -36.4 4.856 5191 no
## 2546 1.1 93.994 -36.4 4.856 5191 no
## 2547 1.1 93.994 -36.4 4.856 5191 no
## 2548 1.1 93.994 -36.4 4.856 5191 no
## 2549 1.1 93.994 -36.4 4.856 5191 no
## 2550 1.1 93.994 -36.4 4.856 5191 no
## 2551 1.1 93.994 -36.4 4.856 5191 no
## 2552 1.1 93.994 -36.4 4.856 5191 no
## 2553 1.1 93.994 -36.4 4.856 5191 no
## 2554 1.1 93.994 -36.4 4.856 5191 no
## 2555 1.1 93.994 -36.4 4.856 5191 no
## 2556 1.1 93.994 -36.4 4.856 5191 no
## 2557 1.1 93.994 -36.4 4.856 5191 no
## 2558 1.1 93.994 -36.4 4.856 5191 no
## 2559 1.1 93.994 -36.4 4.856 5191 no
## 2560 1.1 93.994 -36.4 4.856 5191 no
## 2561 1.1 93.994 -36.4 4.856 5191 no
## 2562 1.1 93.994 -36.4 4.856 5191 no
## 2563 1.1 93.994 -36.4 4.856 5191 no
## 2564 1.1 93.994 -36.4 4.856 5191 no
## 2565 1.1 93.994 -36.4 4.856 5191 no
## 2566 1.1 93.994 -36.4 4.856 5191 no
## 2567 1.1 93.994 -36.4 4.856 5191 no
## 2568 1.1 93.994 -36.4 4.856 5191 no
## 2569 1.1 93.994 -36.4 4.856 5191 no
## 2570 1.1 93.994 -36.4 4.856 5191 no
## 2571 1.1 93.994 -36.4 4.856 5191 no
## 2572 1.1 93.994 -36.4 4.856 5191 no
## 2573 1.1 93.994 -36.4 4.856 5191 no
## 2574 1.1 93.994 -36.4 4.856 5191 no
## 2575 1.1 93.994 -36.4 4.856 5191 no
## 2576 1.1 93.994 -36.4 4.856 5191 no
## 2577 1.1 93.994 -36.4 4.856 5191 no
## 2578 1.1 93.994 -36.4 4.856 5191 no
## 2579 1.1 93.994 -36.4 4.856 5191 no
## 2580 1.1 93.994 -36.4 4.856 5191 no
## 2581 1.1 93.994 -36.4 4.856 5191 no
## 2582 1.1 93.994 -36.4 4.856 5191 no
## 2583 1.1 93.994 -36.4 4.856 5191 no
## 2584 1.1 93.994 -36.4 4.856 5191 no
## 2585 1.1 93.994 -36.4 4.856 5191 no
## 2586 1.1 93.994 -36.4 4.856 5191 no
## 2587 1.1 93.994 -36.4 4.856 5191 no
## 2588 1.1 93.994 -36.4 4.856 5191 no
## 2589 1.1 93.994 -36.4 4.856 5191 no
## 2590 1.1 93.994 -36.4 4.856 5191 no
## 2591 1.1 93.994 -36.4 4.856 5191 no
## 2592 1.1 93.994 -36.4 4.856 5191 no
## 2593 1.1 93.994 -36.4 4.856 5191 no
## 2594 1.1 93.994 -36.4 4.856 5191 no
## 2595 1.1 93.994 -36.4 4.856 5191 no
## 2596 1.1 93.994 -36.4 4.856 5191 no
## 2597 1.1 93.994 -36.4 4.856 5191 no
## 2598 1.1 93.994 -36.4 4.856 5191 no
## 2599 1.1 93.994 -36.4 4.856 5191 no
## 2600 1.1 93.994 -36.4 4.856 5191 no
## 2601 1.1 93.994 -36.4 4.856 5191 no
## 2602 1.1 93.994 -36.4 4.856 5191 no
## 2603 1.1 93.994 -36.4 4.856 5191 no
## 2604 1.1 93.994 -36.4 4.856 5191 no
## 2605 1.1 93.994 -36.4 4.856 5191 no
## 2606 1.1 93.994 -36.4 4.856 5191 no
## 2607 1.1 93.994 -36.4 4.856 5191 no
## 2608 1.1 93.994 -36.4 4.856 5191 no
## 2609 1.1 93.994 -36.4 4.856 5191 no
## 2610 1.1 93.994 -36.4 4.856 5191 no
## 2611 1.1 93.994 -36.4 4.856 5191 no
## 2612 1.1 93.994 -36.4 4.856 5191 no
## 2613 1.1 93.994 -36.4 4.856 5191 no
## 2614 1.1 93.994 -36.4 4.856 5191 no
## 2615 1.1 93.994 -36.4 4.856 5191 no
## 2616 1.1 93.994 -36.4 4.856 5191 no
## 2617 1.1 93.994 -36.4 4.856 5191 no
## 2618 1.1 93.994 -36.4 4.856 5191 no
## 2619 1.1 93.994 -36.4 4.856 5191 no
## 2620 1.1 93.994 -36.4 4.856 5191 no
## 2621 1.1 93.994 -36.4 4.856 5191 no
## 2622 1.1 93.994 -36.4 4.856 5191 no
## 2623 1.1 93.994 -36.4 4.856 5191 no
## 2624 1.1 93.994 -36.4 4.856 5191 no
## 2625 1.1 93.994 -36.4 4.856 5191 no
## 2626 1.1 93.994 -36.4 4.856 5191 no
## 2627 1.1 93.994 -36.4 4.856 5191 no
## 2628 1.1 93.994 -36.4 4.856 5191 no
## 2629 1.1 93.994 -36.4 4.856 5191 no
## 2630 1.1 93.994 -36.4 4.856 5191 no
## 2631 1.1 93.994 -36.4 4.856 5191 no
## 2632 1.1 93.994 -36.4 4.856 5191 no
## 2633 1.1 93.994 -36.4 4.856 5191 no
## 2634 1.1 93.994 -36.4 4.856 5191 no
## 2635 1.1 93.994 -36.4 4.856 5191 no
## 2636 1.1 93.994 -36.4 4.856 5191 yes
## 2637 1.1 93.994 -36.4 4.856 5191 no
## 2638 1.1 93.994 -36.4 4.856 5191 no
## 2639 1.1 93.994 -36.4 4.856 5191 no
## 2640 1.1 93.994 -36.4 4.856 5191 no
## 2641 1.1 93.994 -36.4 4.856 5191 no
## 2642 1.1 93.994 -36.4 4.856 5191 no
## 2643 1.1 93.994 -36.4 4.856 5191 no
## 2644 1.1 93.994 -36.4 4.856 5191 no
## 2645 1.1 93.994 -36.4 4.856 5191 no
## 2646 1.1 93.994 -36.4 4.856 5191 yes
## 2647 1.1 93.994 -36.4 4.856 5191 no
## 2648 1.1 93.994 -36.4 4.856 5191 no
## 2649 1.1 93.994 -36.4 4.856 5191 no
## 2650 1.1 93.994 -36.4 4.856 5191 no
## 2651 1.1 93.994 -36.4 4.856 5191 no
## 2652 1.1 93.994 -36.4 4.856 5191 no
## 2653 1.1 93.994 -36.4 4.856 5191 no
## 2654 1.1 93.994 -36.4 4.856 5191 no
## 2655 1.1 93.994 -36.4 4.856 5191 no
## 2656 1.1 93.994 -36.4 4.859 5191 no
## 2657 1.1 93.994 -36.4 4.859 5191 no
## 2658 1.1 93.994 -36.4 4.859 5191 no
## 2659 1.1 93.994 -36.4 4.859 5191 no
## 2660 1.1 93.994 -36.4 4.859 5191 no
## 2661 1.1 93.994 -36.4 4.859 5191 no
## 2662 1.1 93.994 -36.4 4.859 5191 no
## 2663 1.1 93.994 -36.4 4.859 5191 no
## 2664 1.1 93.994 -36.4 4.859 5191 no
## 2665 1.1 93.994 -36.4 4.859 5191 no
## 2666 1.1 93.994 -36.4 4.859 5191 no
## 2667 1.1 93.994 -36.4 4.859 5191 no
## 2668 1.1 93.994 -36.4 4.859 5191 no
## 2669 1.1 93.994 -36.4 4.859 5191 no
## 2670 1.1 93.994 -36.4 4.859 5191 no
## 2671 1.1 93.994 -36.4 4.859 5191 no
## 2672 1.1 93.994 -36.4 4.859 5191 no
## 2673 1.1 93.994 -36.4 4.859 5191 no
## 2674 1.1 93.994 -36.4 4.859 5191 no
## 2675 1.1 93.994 -36.4 4.859 5191 no
## 2676 1.1 93.994 -36.4 4.859 5191 no
## 2677 1.1 93.994 -36.4 4.859 5191 no
## 2678 1.1 93.994 -36.4 4.859 5191 no
## 2679 1.1 93.994 -36.4 4.859 5191 no
## 2680 1.1 93.994 -36.4 4.859 5191 no
## 2681 1.1 93.994 -36.4 4.859 5191 no
## 2682 1.1 93.994 -36.4 4.859 5191 no
## 2683 1.1 93.994 -36.4 4.859 5191 no
## 2684 1.1 93.994 -36.4 4.859 5191 no
## 2685 1.1 93.994 -36.4 4.859 5191 yes
## 2686 1.1 93.994 -36.4 4.859 5191 no
## 2687 1.1 93.994 -36.4 4.859 5191 no
## 2688 1.1 93.994 -36.4 4.859 5191 no
## 2689 1.1 93.994 -36.4 4.859 5191 no
## 2690 1.1 93.994 -36.4 4.859 5191 no
## 2691 1.1 93.994 -36.4 4.859 5191 no
## 2692 1.1 93.994 -36.4 4.859 5191 no
## 2693 1.1 93.994 -36.4 4.859 5191 no
## 2694 1.1 93.994 -36.4 4.859 5191 no
## 2695 1.1 93.994 -36.4 4.859 5191 no
## 2696 1.1 93.994 -36.4 4.859 5191 no
## 2697 1.1 93.994 -36.4 4.859 5191 no
## 2698 1.1 93.994 -36.4 4.859 5191 yes
## 2699 1.1 93.994 -36.4 4.859 5191 no
## 2700 1.1 93.994 -36.4 4.859 5191 no
## 2701 1.1 93.994 -36.4 4.859 5191 no
## 2702 1.1 93.994 -36.4 4.859 5191 no
## 2703 1.1 93.994 -36.4 4.859 5191 no
## 2704 1.1 93.994 -36.4 4.859 5191 no
## 2705 1.1 93.994 -36.4 4.859 5191 no
## 2706 1.1 93.994 -36.4 4.859 5191 no
## 2707 1.1 93.994 -36.4 4.859 5191 no
## 2708 1.1 93.994 -36.4 4.859 5191 no
## 2709 1.1 93.994 -36.4 4.859 5191 no
## 2710 1.1 93.994 -36.4 4.859 5191 no
## 2711 1.1 93.994 -36.4 4.859 5191 no
## 2712 1.1 93.994 -36.4 4.859 5191 no
## 2713 1.1 93.994 -36.4 4.859 5191 no
## 2714 1.1 93.994 -36.4 4.859 5191 yes
## 2715 1.1 93.994 -36.4 4.859 5191 no
## 2716 1.1 93.994 -36.4 4.859 5191 no
## 2717 1.1 93.994 -36.4 4.859 5191 no
## 2718 1.1 93.994 -36.4 4.859 5191 no
## 2719 1.1 93.994 -36.4 4.859 5191 no
## 2720 1.1 93.994 -36.4 4.859 5191 no
## 2721 1.1 93.994 -36.4 4.859 5191 no
## 2722 1.1 93.994 -36.4 4.859 5191 no
## 2723 1.1 93.994 -36.4 4.859 5191 no
## 2724 1.1 93.994 -36.4 4.859 5191 no
## 2725 1.1 93.994 -36.4 4.859 5191 no
## 2726 1.1 93.994 -36.4 4.859 5191 no
## 2727 1.1 93.994 -36.4 4.859 5191 no
## 2728 1.1 93.994 -36.4 4.859 5191 no
## 2729 1.1 93.994 -36.4 4.859 5191 no
## 2730 1.1 93.994 -36.4 4.859 5191 no
## 2731 1.1 93.994 -36.4 4.859 5191 no
## 2732 1.1 93.994 -36.4 4.859 5191 no
## 2733 1.1 93.994 -36.4 4.859 5191 no
## 2734 1.1 93.994 -36.4 4.859 5191 no
## 2735 1.1 93.994 -36.4 4.859 5191 no
## 2736 1.1 93.994 -36.4 4.859 5191 no
## 2737 1.1 93.994 -36.4 4.859 5191 no
## 2738 1.1 93.994 -36.4 4.859 5191 no
## 2739 1.1 93.994 -36.4 4.859 5191 no
## 2740 1.1 93.994 -36.4 4.859 5191 no
## 2741 1.1 93.994 -36.4 4.859 5191 no
## 2742 1.1 93.994 -36.4 4.859 5191 no
## 2743 1.1 93.994 -36.4 4.859 5191 no
## 2744 1.1 93.994 -36.4 4.859 5191 no
## 2745 1.1 93.994 -36.4 4.859 5191 yes
## 2746 1.1 93.994 -36.4 4.859 5191 no
## 2747 1.1 93.994 -36.4 4.859 5191 no
## 2748 1.1 93.994 -36.4 4.859 5191 no
## 2749 1.1 93.994 -36.4 4.859 5191 no
## 2750 1.1 93.994 -36.4 4.859 5191 no
## 2751 1.1 93.994 -36.4 4.859 5191 no
## 2752 1.1 93.994 -36.4 4.859 5191 no
## 2753 1.1 93.994 -36.4 4.859 5191 no
## 2754 1.1 93.994 -36.4 4.859 5191 no
## 2755 1.1 93.994 -36.4 4.859 5191 no
## 2756 1.1 93.994 -36.4 4.859 5191 yes
## 2757 1.1 93.994 -36.4 4.859 5191 no
## 2758 1.1 93.994 -36.4 4.859 5191 no
## 2759 1.1 93.994 -36.4 4.859 5191 no
## 2760 1.1 93.994 -36.4 4.859 5191 no
## 2761 1.1 93.994 -36.4 4.859 5191 no
## 2762 1.1 93.994 -36.4 4.859 5191 no
## 2763 1.1 93.994 -36.4 4.859 5191 no
## 2764 1.1 93.994 -36.4 4.859 5191 yes
## 2765 1.1 93.994 -36.4 4.859 5191 no
## 2766 1.1 93.994 -36.4 4.859 5191 no
## 2767 1.1 93.994 -36.4 4.859 5191 no
## 2768 1.1 93.994 -36.4 4.859 5191 no
## 2769 1.1 93.994 -36.4 4.859 5191 no
## 2770 1.1 93.994 -36.4 4.859 5191 no
## 2771 1.1 93.994 -36.4 4.859 5191 no
## 2772 1.1 93.994 -36.4 4.859 5191 no
## 2773 1.1 93.994 -36.4 4.859 5191 no
## 2774 1.1 93.994 -36.4 4.859 5191 no
## 2775 1.1 93.994 -36.4 4.859 5191 no
## 2776 1.1 93.994 -36.4 4.859 5191 yes
## 2777 1.1 93.994 -36.4 4.859 5191 no
## 2778 1.1 93.994 -36.4 4.859 5191 no
## 2779 1.1 93.994 -36.4 4.859 5191 no
## 2780 1.1 93.994 -36.4 4.859 5191 yes
## 2781 1.1 93.994 -36.4 4.859 5191 no
## 2782 1.1 93.994 -36.4 4.859 5191 no
## 2783 1.1 93.994 -36.4 4.859 5191 no
## 2784 1.1 93.994 -36.4 4.859 5191 no
## 2785 1.1 93.994 -36.4 4.859 5191 no
## 2786 1.1 93.994 -36.4 4.859 5191 no
## 2787 1.1 93.994 -36.4 4.859 5191 no
## 2788 1.1 93.994 -36.4 4.859 5191 no
## 2789 1.1 93.994 -36.4 4.859 5191 no
## 2790 1.1 93.994 -36.4 4.859 5191 no
## 2791 1.1 93.994 -36.4 4.859 5191 no
## 2792 1.1 93.994 -36.4 4.859 5191 no
## 2793 1.1 93.994 -36.4 4.859 5191 no
## 2794 1.1 93.994 -36.4 4.859 5191 no
## 2795 1.1 93.994 -36.4 4.859 5191 no
## 2796 1.1 93.994 -36.4 4.859 5191 no
## 2797 1.1 93.994 -36.4 4.859 5191 no
## 2798 1.1 93.994 -36.4 4.859 5191 no
## 2799 1.1 93.994 -36.4 4.859 5191 no
## 2800 1.1 93.994 -36.4 4.859 5191 no
## 2801 1.1 93.994 -36.4 4.859 5191 no
## 2802 1.1 93.994 -36.4 4.859 5191 no
## 2803 1.1 93.994 -36.4 4.859 5191 no
## 2804 1.1 93.994 -36.4 4.859 5191 no
## 2805 1.1 93.994 -36.4 4.859 5191 no
## 2806 1.1 93.994 -36.4 4.859 5191 no
## 2807 1.1 93.994 -36.4 4.859 5191 no
## 2808 1.1 93.994 -36.4 4.859 5191 no
## 2809 1.1 93.994 -36.4 4.859 5191 no
## 2810 1.1 93.994 -36.4 4.859 5191 no
## 2811 1.1 93.994 -36.4 4.859 5191 no
## 2812 1.1 93.994 -36.4 4.859 5191 no
## 2813 1.1 93.994 -36.4 4.859 5191 no
## 2814 1.1 93.994 -36.4 4.859 5191 no
## 2815 1.1 93.994 -36.4 4.859 5191 no
## 2816 1.1 93.994 -36.4 4.859 5191 no
## 2817 1.1 93.994 -36.4 4.859 5191 no
## 2818 1.1 93.994 -36.4 4.859 5191 no
## 2819 1.1 93.994 -36.4 4.859 5191 no
## 2820 1.1 93.994 -36.4 4.859 5191 no
## 2821 1.1 93.994 -36.4 4.859 5191 no
## 2822 1.1 93.994 -36.4 4.859 5191 no
## 2823 1.1 93.994 -36.4 4.859 5191 no
## 2824 1.1 93.994 -36.4 4.859 5191 no
## 2825 1.1 93.994 -36.4 4.859 5191 no
## 2826 1.1 93.994 -36.4 4.859 5191 no
## 2827 1.1 93.994 -36.4 4.859 5191 no
## 2828 1.1 93.994 -36.4 4.859 5191 no
## 2829 1.1 93.994 -36.4 4.859 5191 no
## 2830 1.1 93.994 -36.4 4.859 5191 no
## 2831 1.1 93.994 -36.4 4.859 5191 no
## 2832 1.1 93.994 -36.4 4.859 5191 no
## 2833 1.1 93.994 -36.4 4.859 5191 no
## 2834 1.1 93.994 -36.4 4.859 5191 no
## 2835 1.1 93.994 -36.4 4.859 5191 no
## 2836 1.1 93.994 -36.4 4.859 5191 no
## 2837 1.1 93.994 -36.4 4.859 5191 no
## 2838 1.1 93.994 -36.4 4.859 5191 no
## 2839 1.1 93.994 -36.4 4.859 5191 no
## 2840 1.1 93.994 -36.4 4.859 5191 no
## 2841 1.1 93.994 -36.4 4.859 5191 no
## 2842 1.1 93.994 -36.4 4.859 5191 no
## 2843 1.1 93.994 -36.4 4.859 5191 no
## 2844 1.1 93.994 -36.4 4.859 5191 no
## 2845 1.1 93.994 -36.4 4.859 5191 no
## 2846 1.1 93.994 -36.4 4.859 5191 no
## 2847 1.1 93.994 -36.4 4.859 5191 no
## 2848 1.1 93.994 -36.4 4.859 5191 no
## 2849 1.1 93.994 -36.4 4.859 5191 no
## 2850 1.1 93.994 -36.4 4.859 5191 no
## 2851 1.1 93.994 -36.4 4.859 5191 no
## 2852 1.1 93.994 -36.4 4.859 5191 no
## 2853 1.1 93.994 -36.4 4.859 5191 no
## 2854 1.1 93.994 -36.4 4.859 5191 yes
## 2855 1.1 93.994 -36.4 4.859 5191 no
## 2856 1.1 93.994 -36.4 4.859 5191 no
## 2857 1.1 93.994 -36.4 4.859 5191 no
## 2858 1.1 93.994 -36.4 4.859 5191 no
## 2859 1.1 93.994 -36.4 4.859 5191 no
## 2860 1.1 93.994 -36.4 4.859 5191 no
## 2861 1.1 93.994 -36.4 4.859 5191 no
## 2862 1.1 93.994 -36.4 4.859 5191 no
## 2863 1.1 93.994 -36.4 4.859 5191 no
## 2864 1.1 93.994 -36.4 4.859 5191 no
## 2865 1.1 93.994 -36.4 4.859 5191 no
## 2866 1.1 93.994 -36.4 4.859 5191 no
## 2867 1.1 93.994 -36.4 4.859 5191 no
## 2868 1.1 93.994 -36.4 4.859 5191 no
## 2869 1.1 93.994 -36.4 4.859 5191 no
## 2870 1.1 93.994 -36.4 4.859 5191 no
## 2871 1.1 93.994 -36.4 4.859 5191 no
## 2872 1.1 93.994 -36.4 4.859 5191 no
## 2873 1.1 93.994 -36.4 4.859 5191 no
## 2874 1.1 93.994 -36.4 4.859 5191 no
## 2875 1.1 93.994 -36.4 4.859 5191 no
## 2876 1.1 93.994 -36.4 4.859 5191 no
## 2877 1.1 93.994 -36.4 4.859 5191 no
## 2878 1.1 93.994 -36.4 4.859 5191 no
## 2879 1.1 93.994 -36.4 4.859 5191 no
## 2880 1.1 93.994 -36.4 4.859 5191 no
## 2881 1.1 93.994 -36.4 4.859 5191 no
## 2882 1.1 93.994 -36.4 4.859 5191 no
## 2883 1.1 93.994 -36.4 4.859 5191 no
## 2884 1.1 93.994 -36.4 4.859 5191 no
## 2885 1.1 93.994 -36.4 4.859 5191 no
## 2886 1.1 93.994 -36.4 4.859 5191 no
## 2887 1.1 93.994 -36.4 4.859 5191 no
## 2888 1.1 93.994 -36.4 4.859 5191 no
## 2889 1.1 93.994 -36.4 4.859 5191 no
## 2890 1.1 93.994 -36.4 4.859 5191 no
## 2891 1.1 93.994 -36.4 4.859 5191 no
## 2892 1.1 93.994 -36.4 4.859 5191 no
## 2893 1.1 93.994 -36.4 4.859 5191 no
## 2894 1.1 93.994 -36.4 4.859 5191 no
## 2895 1.1 93.994 -36.4 4.859 5191 no
## 2896 1.1 93.994 -36.4 4.859 5191 no
## 2897 1.1 93.994 -36.4 4.859 5191 no
## 2898 1.1 93.994 -36.4 4.859 5191 no
## 2899 1.1 93.994 -36.4 4.859 5191 no
## 2900 1.1 93.994 -36.4 4.859 5191 no
## 2901 1.1 93.994 -36.4 4.859 5191 no
## 2902 1.1 93.994 -36.4 4.859 5191 no
## 2903 1.1 93.994 -36.4 4.859 5191 no
## 2904 1.1 93.994 -36.4 4.859 5191 no
## 2905 1.1 93.994 -36.4 4.859 5191 no
## 2906 1.1 93.994 -36.4 4.859 5191 yes
## 2907 1.1 93.994 -36.4 4.859 5191 no
## 2908 1.1 93.994 -36.4 4.859 5191 no
## 2909 1.1 93.994 -36.4 4.859 5191 no
## 2910 1.1 93.994 -36.4 4.859 5191 no
## 2911 1.1 93.994 -36.4 4.859 5191 no
## 2912 1.1 93.994 -36.4 4.859 5191 no
## 2913 1.1 93.994 -36.4 4.859 5191 no
## 2914 1.1 93.994 -36.4 4.859 5191 no
## 2915 1.1 93.994 -36.4 4.859 5191 no
## 2916 1.1 93.994 -36.4 4.859 5191 no
## 2917 1.1 93.994 -36.4 4.859 5191 no
## 2918 1.1 93.994 -36.4 4.859 5191 no
## 2919 1.1 93.994 -36.4 4.859 5191 no
## 2920 1.1 93.994 -36.4 4.859 5191 no
## 2921 1.1 93.994 -36.4 4.859 5191 no
## 2922 1.1 93.994 -36.4 4.859 5191 no
## 2923 1.1 93.994 -36.4 4.859 5191 no
## 2924 1.1 93.994 -36.4 4.859 5191 no
## 2925 1.1 93.994 -36.4 4.859 5191 no
## 2926 1.1 93.994 -36.4 4.859 5191 no
## 2927 1.1 93.994 -36.4 4.859 5191 no
## 2928 1.1 93.994 -36.4 4.859 5191 no
## 2929 1.1 93.994 -36.4 4.859 5191 no
## 2930 1.1 93.994 -36.4 4.859 5191 no
## 2931 1.1 93.994 -36.4 4.859 5191 no
## 2932 1.1 93.994 -36.4 4.859 5191 no
## 2933 1.1 93.994 -36.4 4.859 5191 no
## 2934 1.1 93.994 -36.4 4.859 5191 no
## 2935 1.1 93.994 -36.4 4.859 5191 no
## 2936 1.1 93.994 -36.4 4.859 5191 no
## 2937 1.1 93.994 -36.4 4.859 5191 no
## 2938 1.1 93.994 -36.4 4.859 5191 no
## 2939 1.1 93.994 -36.4 4.859 5191 no
## 2940 1.1 93.994 -36.4 4.859 5191 no
## 2941 1.1 93.994 -36.4 4.859 5191 no
## 2942 1.1 93.994 -36.4 4.859 5191 no
## 2943 1.1 93.994 -36.4 4.859 5191 no
## 2944 1.1 93.994 -36.4 4.859 5191 no
## 2945 1.1 93.994 -36.4 4.859 5191 no
## 2946 1.1 93.994 -36.4 4.859 5191 no
## 2947 1.1 93.994 -36.4 4.859 5191 no
## 2948 1.1 93.994 -36.4 4.859 5191 no
## 2949 1.1 93.994 -36.4 4.859 5191 no
## 2950 1.1 93.994 -36.4 4.859 5191 no
## 2951 1.1 93.994 -36.4 4.859 5191 no
## 2952 1.1 93.994 -36.4 4.859 5191 no
## 2953 1.1 93.994 -36.4 4.859 5191 no
## 2954 1.1 93.994 -36.4 4.859 5191 no
## 2955 1.1 93.994 -36.4 4.859 5191 no
## 2956 1.1 93.994 -36.4 4.859 5191 no
## 2957 1.1 93.994 -36.4 4.859 5191 no
## 2958 1.1 93.994 -36.4 4.859 5191 no
## 2959 1.1 93.994 -36.4 4.859 5191 no
## 2960 1.1 93.994 -36.4 4.859 5191 no
## 2961 1.1 93.994 -36.4 4.859 5191 no
## 2962 1.1 93.994 -36.4 4.859 5191 no
## 2963 1.1 93.994 -36.4 4.859 5191 no
## 2964 1.1 93.994 -36.4 4.859 5191 no
## 2965 1.1 93.994 -36.4 4.859 5191 no
## 2966 1.1 93.994 -36.4 4.859 5191 no
## 2967 1.1 93.994 -36.4 4.859 5191 no
## 2968 1.1 93.994 -36.4 4.859 5191 no
## 2969 1.1 93.994 -36.4 4.859 5191 no
## 2970 1.1 93.994 -36.4 4.859 5191 no
## 2971 1.1 93.994 -36.4 4.859 5191 no
## 2972 1.1 93.994 -36.4 4.859 5191 no
## 2973 1.1 93.994 -36.4 4.859 5191 no
## 2974 1.1 93.994 -36.4 4.859 5191 no
## 2975 1.1 93.994 -36.4 4.859 5191 no
## 2976 1.1 93.994 -36.4 4.859 5191 no
## 2977 1.1 93.994 -36.4 4.859 5191 no
## 2978 1.1 93.994 -36.4 4.859 5191 no
## 2979 1.1 93.994 -36.4 4.859 5191 no
## 2980 1.1 93.994 -36.4 4.859 5191 no
## 2981 1.1 93.994 -36.4 4.859 5191 no
## 2982 1.1 93.994 -36.4 4.859 5191 no
## 2983 1.1 93.994 -36.4 4.859 5191 no
## 2984 1.1 93.994 -36.4 4.859 5191 no
## 2985 1.1 93.994 -36.4 4.859 5191 no
## 2986 1.1 93.994 -36.4 4.859 5191 no
## 2987 1.1 93.994 -36.4 4.859 5191 no
## 2988 1.1 93.994 -36.4 4.859 5191 no
## 2989 1.1 93.994 -36.4 4.859 5191 no
## 2990 1.1 93.994 -36.4 4.859 5191 no
## 2991 1.1 93.994 -36.4 4.859 5191 no
## 2992 1.1 93.994 -36.4 4.859 5191 no
## 2993 1.1 93.994 -36.4 4.859 5191 no
## 2994 1.1 93.994 -36.4 4.859 5191 no
## 2995 1.1 93.994 -36.4 4.859 5191 no
## 2996 1.1 93.994 -36.4 4.859 5191 no
## 2997 1.1 93.994 -36.4 4.859 5191 no
## 2998 1.1 93.994 -36.4 4.859 5191 no
## 2999 1.1 93.994 -36.4 4.859 5191 no
## 3000 1.1 93.994 -36.4 4.859 5191 no
## 3001 1.1 93.994 -36.4 4.859 5191 no
## 3002 1.1 93.994 -36.4 4.859 5191 no
## 3003 1.1 93.994 -36.4 4.859 5191 no
## 3004 1.1 93.994 -36.4 4.859 5191 no
## 3005 1.1 93.994 -36.4 4.859 5191 no
## 3006 1.1 93.994 -36.4 4.859 5191 no
## 3007 1.1 93.994 -36.4 4.859 5191 no
## 3008 1.1 93.994 -36.4 4.859 5191 no
## 3009 1.1 93.994 -36.4 4.859 5191 no
## 3010 1.1 93.994 -36.4 4.859 5191 no
## 3011 1.1 93.994 -36.4 4.859 5191 no
## 3012 1.1 93.994 -36.4 4.859 5191 no
## 3013 1.1 93.994 -36.4 4.859 5191 no
## 3014 1.1 93.994 -36.4 4.859 5191 no
## 3015 1.1 93.994 -36.4 4.859 5191 no
## 3016 1.1 93.994 -36.4 4.859 5191 no
## 3017 1.1 93.994 -36.4 4.859 5191 no
## 3018 1.1 93.994 -36.4 4.859 5191 no
## 3019 1.1 93.994 -36.4 4.859 5191 no
## 3020 1.1 93.994 -36.4 4.859 5191 no
## 3021 1.1 93.994 -36.4 4.859 5191 no
## 3022 1.1 93.994 -36.4 4.859 5191 no
## 3023 1.1 93.994 -36.4 4.859 5191 no
## 3024 1.1 93.994 -36.4 4.859 5191 no
## 3025 1.1 93.994 -36.4 4.859 5191 no
## 3026 1.1 93.994 -36.4 4.859 5191 no
## 3027 1.1 93.994 -36.4 4.859 5191 no
## 3028 1.1 93.994 -36.4 4.859 5191 no
## 3029 1.1 93.994 -36.4 4.859 5191 no
## 3030 1.1 93.994 -36.4 4.859 5191 no
## 3031 1.1 93.994 -36.4 4.859 5191 no
## 3032 1.1 93.994 -36.4 4.859 5191 no
## 3033 1.1 93.994 -36.4 4.859 5191 no
## 3034 1.1 93.994 -36.4 4.859 5191 no
## 3035 1.1 93.994 -36.4 4.859 5191 no
## 3036 1.1 93.994 -36.4 4.859 5191 no
## 3037 1.1 93.994 -36.4 4.859 5191 no
## 3038 1.1 93.994 -36.4 4.859 5191 no
## 3039 1.1 93.994 -36.4 4.859 5191 no
## 3040 1.1 93.994 -36.4 4.859 5191 no
## 3041 1.1 93.994 -36.4 4.859 5191 no
## 3042 1.1 93.994 -36.4 4.859 5191 no
## 3043 1.1 93.994 -36.4 4.859 5191 no
## 3044 1.1 93.994 -36.4 4.859 5191 no
## 3045 1.1 93.994 -36.4 4.859 5191 no
## 3046 1.1 93.994 -36.4 4.859 5191 no
## 3047 1.1 93.994 -36.4 4.859 5191 no
## 3048 1.1 93.994 -36.4 4.859 5191 yes
## 3049 1.1 93.994 -36.4 4.859 5191 no
## 3050 1.1 93.994 -36.4 4.859 5191 no
## 3051 1.1 93.994 -36.4 4.859 5191 no
## 3052 1.1 93.994 -36.4 4.859 5191 no
## 3053 1.1 93.994 -36.4 4.859 5191 no
## 3054 1.1 93.994 -36.4 4.859 5191 no
## 3055 1.1 93.994 -36.4 4.859 5191 no
## 3056 1.1 93.994 -36.4 4.859 5191 no
## 3057 1.1 93.994 -36.4 4.859 5191 no
## 3058 1.1 93.994 -36.4 4.859 5191 no
## 3059 1.1 93.994 -36.4 4.859 5191 no
## 3060 1.1 93.994 -36.4 4.859 5191 no
## 3061 1.1 93.994 -36.4 4.859 5191 no
## 3062 1.1 93.994 -36.4 4.859 5191 no
## 3063 1.1 93.994 -36.4 4.859 5191 no
## 3064 1.1 93.994 -36.4 4.859 5191 no
## 3065 1.1 93.994 -36.4 4.859 5191 no
## 3066 1.1 93.994 -36.4 4.859 5191 no
## 3067 1.1 93.994 -36.4 4.859 5191 no
## 3068 1.1 93.994 -36.4 4.859 5191 no
## 3069 1.1 93.994 -36.4 4.859 5191 no
## 3070 1.1 93.994 -36.4 4.859 5191 no
## 3071 1.1 93.994 -36.4 4.859 5191 no
## 3072 1.1 93.994 -36.4 4.859 5191 no
## 3073 1.1 93.994 -36.4 4.860 5191 no
## 3074 1.1 93.994 -36.4 4.860 5191 no
## 3075 1.1 93.994 -36.4 4.860 5191 no
## 3076 1.1 93.994 -36.4 4.860 5191 no
## 3077 1.1 93.994 -36.4 4.860 5191 no
## 3078 1.1 93.994 -36.4 4.860 5191 no
## 3079 1.1 93.994 -36.4 4.860 5191 no
## 3080 1.1 93.994 -36.4 4.860 5191 no
## 3081 1.1 93.994 -36.4 4.860 5191 no
## 3082 1.1 93.994 -36.4 4.860 5191 no
## 3083 1.1 93.994 -36.4 4.860 5191 no
## 3084 1.1 93.994 -36.4 4.860 5191 no
## 3085 1.1 93.994 -36.4 4.860 5191 no
## 3086 1.1 93.994 -36.4 4.860 5191 no
## 3087 1.1 93.994 -36.4 4.860 5191 no
## 3088 1.1 93.994 -36.4 4.860 5191 no
## 3089 1.1 93.994 -36.4 4.860 5191 no
## 3090 1.1 93.994 -36.4 4.860 5191 no
## 3091 1.1 93.994 -36.4 4.860 5191 yes
## 3092 1.1 93.994 -36.4 4.860 5191 no
## 3093 1.1 93.994 -36.4 4.860 5191 no
## 3094 1.1 93.994 -36.4 4.860 5191 no
## 3095 1.1 93.994 -36.4 4.860 5191 no
## 3096 1.1 93.994 -36.4 4.860 5191 no
## 3097 1.1 93.994 -36.4 4.860 5191 no
## 3098 1.1 93.994 -36.4 4.860 5191 no
## 3099 1.1 93.994 -36.4 4.860 5191 no
## 3100 1.1 93.994 -36.4 4.860 5191 no
## 3101 1.1 93.994 -36.4 4.860 5191 no
## 3102 1.1 93.994 -36.4 4.860 5191 no
## 3103 1.1 93.994 -36.4 4.860 5191 no
## 3104 1.1 93.994 -36.4 4.860 5191 no
## 3105 1.1 93.994 -36.4 4.860 5191 no
## 3106 1.1 93.994 -36.4 4.860 5191 no
## 3107 1.1 93.994 -36.4 4.860 5191 no
## 3108 1.1 93.994 -36.4 4.860 5191 no
## 3109 1.1 93.994 -36.4 4.860 5191 no
## 3110 1.1 93.994 -36.4 4.860 5191 no
## 3111 1.1 93.994 -36.4 4.860 5191 no
## 3112 1.1 93.994 -36.4 4.860 5191 no
## 3113 1.1 93.994 -36.4 4.860 5191 no
## 3114 1.1 93.994 -36.4 4.860 5191 yes
## 3115 1.1 93.994 -36.4 4.860 5191 no
## 3116 1.1 93.994 -36.4 4.860 5191 no
## 3117 1.1 93.994 -36.4 4.860 5191 no
## 3118 1.1 93.994 -36.4 4.860 5191 no
## 3119 1.1 93.994 -36.4 4.860 5191 no
## 3120 1.1 93.994 -36.4 4.860 5191 no
## 3121 1.1 93.994 -36.4 4.860 5191 no
## 3122 1.1 93.994 -36.4 4.860 5191 no
## 3123 1.1 93.994 -36.4 4.860 5191 no
## 3124 1.1 93.994 -36.4 4.860 5191 no
## 3125 1.1 93.994 -36.4 4.860 5191 no
## 3126 1.1 93.994 -36.4 4.860 5191 no
## 3127 1.1 93.994 -36.4 4.860 5191 no
## 3128 1.1 93.994 -36.4 4.860 5191 no
## 3129 1.1 93.994 -36.4 4.860 5191 no
## 3130 1.1 93.994 -36.4 4.860 5191 no
## 3131 1.1 93.994 -36.4 4.860 5191 no
## 3132 1.1 93.994 -36.4 4.860 5191 no
## 3133 1.1 93.994 -36.4 4.860 5191 no
## 3134 1.1 93.994 -36.4 4.860 5191 no
## 3135 1.1 93.994 -36.4 4.860 5191 no
## 3136 1.1 93.994 -36.4 4.860 5191 no
## 3137 1.1 93.994 -36.4 4.860 5191 no
## 3138 1.1 93.994 -36.4 4.860 5191 no
## 3139 1.1 93.994 -36.4 4.860 5191 no
## 3140 1.1 93.994 -36.4 4.860 5191 no
## 3141 1.1 93.994 -36.4 4.860 5191 no
## 3142 1.1 93.994 -36.4 4.860 5191 no
## 3143 1.1 93.994 -36.4 4.860 5191 no
## 3144 1.1 93.994 -36.4 4.860 5191 no
## 3145 1.1 93.994 -36.4 4.860 5191 no
## 3146 1.1 93.994 -36.4 4.860 5191 no
## 3147 1.1 93.994 -36.4 4.860 5191 no
## 3148 1.1 93.994 -36.4 4.860 5191 no
## 3149 1.1 93.994 -36.4 4.860 5191 no
## 3150 1.1 93.994 -36.4 4.860 5191 no
## 3151 1.1 93.994 -36.4 4.860 5191 no
## 3152 1.1 93.994 -36.4 4.860 5191 no
## 3153 1.1 93.994 -36.4 4.860 5191 no
## 3154 1.1 93.994 -36.4 4.860 5191 no
## 3155 1.1 93.994 -36.4 4.860 5191 no
## 3156 1.1 93.994 -36.4 4.860 5191 no
## 3157 1.1 93.994 -36.4 4.860 5191 no
## 3158 1.1 93.994 -36.4 4.860 5191 no
## 3159 1.1 93.994 -36.4 4.860 5191 no
## 3160 1.1 93.994 -36.4 4.860 5191 no
## 3161 1.1 93.994 -36.4 4.860 5191 no
## 3162 1.1 93.994 -36.4 4.860 5191 no
## 3163 1.1 93.994 -36.4 4.860 5191 no
## 3164 1.1 93.994 -36.4 4.860 5191 no
## 3165 1.1 93.994 -36.4 4.860 5191 no
## 3166 1.1 93.994 -36.4 4.860 5191 no
## 3167 1.1 93.994 -36.4 4.860 5191 no
## 3168 1.1 93.994 -36.4 4.860 5191 no
## 3169 1.1 93.994 -36.4 4.860 5191 no
## 3170 1.1 93.994 -36.4 4.860 5191 no
## 3171 1.1 93.994 -36.4 4.860 5191 no
## 3172 1.1 93.994 -36.4 4.860 5191 no
## 3173 1.1 93.994 -36.4 4.860 5191 no
## 3174 1.1 93.994 -36.4 4.860 5191 no
## 3175 1.1 93.994 -36.4 4.860 5191 yes
## 3176 1.1 93.994 -36.4 4.860 5191 no
## 3177 1.1 93.994 -36.4 4.860 5191 no
## 3178 1.1 93.994 -36.4 4.860 5191 no
## 3179 1.1 93.994 -36.4 4.860 5191 no
## 3180 1.1 93.994 -36.4 4.860 5191 no
## 3181 1.1 93.994 -36.4 4.860 5191 no
## 3182 1.1 93.994 -36.4 4.860 5191 no
## 3183 1.1 93.994 -36.4 4.860 5191 no
## 3184 1.1 93.994 -36.4 4.860 5191 yes
## 3185 1.1 93.994 -36.4 4.860 5191 no
## 3186 1.1 93.994 -36.4 4.860 5191 no
## 3187 1.1 93.994 -36.4 4.860 5191 no
## 3188 1.1 93.994 -36.4 4.860 5191 no
## 3189 1.1 93.994 -36.4 4.860 5191 no
## 3190 1.1 93.994 -36.4 4.860 5191 no
## 3191 1.1 93.994 -36.4 4.860 5191 no
## 3192 1.1 93.994 -36.4 4.860 5191 no
## 3193 1.1 93.994 -36.4 4.860 5191 no
## 3194 1.1 93.994 -36.4 4.860 5191 no
## 3195 1.1 93.994 -36.4 4.860 5191 no
## 3196 1.1 93.994 -36.4 4.860 5191 no
## 3197 1.1 93.994 -36.4 4.860 5191 no
## 3198 1.1 93.994 -36.4 4.860 5191 no
## 3199 1.1 93.994 -36.4 4.860 5191 no
## 3200 1.1 93.994 -36.4 4.860 5191 no
## 3201 1.1 93.994 -36.4 4.860 5191 no
## 3202 1.1 93.994 -36.4 4.860 5191 no
## 3203 1.1 93.994 -36.4 4.860 5191 no
## 3204 1.1 93.994 -36.4 4.860 5191 yes
## 3205 1.1 93.994 -36.4 4.860 5191 no
## 3206 1.1 93.994 -36.4 4.860 5191 no
## 3207 1.1 93.994 -36.4 4.860 5191 no
## 3208 1.1 93.994 -36.4 4.860 5191 no
## 3209 1.1 93.994 -36.4 4.860 5191 no
## 3210 1.1 93.994 -36.4 4.860 5191 no
## 3211 1.1 93.994 -36.4 4.860 5191 no
## 3212 1.1 93.994 -36.4 4.860 5191 no
## 3213 1.1 93.994 -36.4 4.860 5191 no
## 3214 1.1 93.994 -36.4 4.860 5191 no
## 3215 1.1 93.994 -36.4 4.860 5191 no
## 3216 1.1 93.994 -36.4 4.860 5191 no
## 3217 1.1 93.994 -36.4 4.860 5191 no
## 3218 1.1 93.994 -36.4 4.860 5191 no
## 3219 1.1 93.994 -36.4 4.860 5191 no
## 3220 1.1 93.994 -36.4 4.860 5191 yes
## 3221 1.1 93.994 -36.4 4.860 5191 no
## 3222 1.1 93.994 -36.4 4.860 5191 no
## 3223 1.1 93.994 -36.4 4.860 5191 no
## 3224 1.1 93.994 -36.4 4.860 5191 yes
## 3225 1.1 93.994 -36.4 4.860 5191 no
## 3226 1.1 93.994 -36.4 4.860 5191 no
## 3227 1.1 93.994 -36.4 4.860 5191 no
## 3228 1.1 93.994 -36.4 4.860 5191 no
## 3229 1.1 93.994 -36.4 4.860 5191 no
## 3230 1.1 93.994 -36.4 4.860 5191 no
## 3231 1.1 93.994 -36.4 4.860 5191 no
## 3232 1.1 93.994 -36.4 4.860 5191 no
## 3233 1.1 93.994 -36.4 4.860 5191 no
## 3234 1.1 93.994 -36.4 4.860 5191 no
## 3235 1.1 93.994 -36.4 4.860 5191 no
## 3236 1.1 93.994 -36.4 4.860 5191 no
## 3237 1.1 93.994 -36.4 4.860 5191 no
## 3238 1.1 93.994 -36.4 4.860 5191 no
## 3239 1.1 93.994 -36.4 4.860 5191 no
## 3240 1.1 93.994 -36.4 4.860 5191 no
## 3241 1.1 93.994 -36.4 4.860 5191 no
## 3242 1.1 93.994 -36.4 4.860 5191 no
## 3243 1.1 93.994 -36.4 4.860 5191 no
## 3244 1.1 93.994 -36.4 4.860 5191 no
## 3245 1.1 93.994 -36.4 4.860 5191 no
## 3246 1.1 93.994 -36.4 4.860 5191 no
## 3247 1.1 93.994 -36.4 4.860 5191 no
## 3248 1.1 93.994 -36.4 4.860 5191 no
## 3249 1.1 93.994 -36.4 4.860 5191 no
## 3250 1.1 93.994 -36.4 4.860 5191 no
## 3251 1.1 93.994 -36.4 4.860 5191 no
## 3252 1.1 93.994 -36.4 4.860 5191 no
## 3253 1.1 93.994 -36.4 4.860 5191 no
## 3254 1.1 93.994 -36.4 4.860 5191 no
## 3255 1.1 93.994 -36.4 4.860 5191 no
## 3256 1.1 93.994 -36.4 4.860 5191 no
## 3257 1.1 93.994 -36.4 4.860 5191 no
## 3258 1.1 93.994 -36.4 4.860 5191 no
## 3259 1.1 93.994 -36.4 4.860 5191 no
## 3260 1.1 93.994 -36.4 4.860 5191 yes
## 3261 1.1 93.994 -36.4 4.860 5191 no
## 3262 1.1 93.994 -36.4 4.860 5191 no
## 3263 1.1 93.994 -36.4 4.860 5191 no
## 3264 1.1 93.994 -36.4 4.860 5191 no
## 3265 1.1 93.994 -36.4 4.860 5191 yes
## 3266 1.1 93.994 -36.4 4.860 5191 no
## 3267 1.1 93.994 -36.4 4.860 5191 no
## 3268 1.1 93.994 -36.4 4.860 5191 no
## 3269 1.1 93.994 -36.4 4.860 5191 no
## 3270 1.1 93.994 -36.4 4.860 5191 no
## 3271 1.1 93.994 -36.4 4.860 5191 no
## 3272 1.1 93.994 -36.4 4.860 5191 no
## 3273 1.1 93.994 -36.4 4.860 5191 no
## 3274 1.1 93.994 -36.4 4.860 5191 no
## 3275 1.1 93.994 -36.4 4.860 5191 no
## 3276 1.1 93.994 -36.4 4.860 5191 no
## 3277 1.1 93.994 -36.4 4.860 5191 no
## 3278 1.1 93.994 -36.4 4.860 5191 no
## 3279 1.1 93.994 -36.4 4.860 5191 no
## 3280 1.1 93.994 -36.4 4.860 5191 no
## 3281 1.1 93.994 -36.4 4.860 5191 no
## 3282 1.1 93.994 -36.4 4.860 5191 no
## 3283 1.1 93.994 -36.4 4.860 5191 no
## 3284 1.1 93.994 -36.4 4.860 5191 no
## 3285 1.1 93.994 -36.4 4.860 5191 no
## 3286 1.1 93.994 -36.4 4.860 5191 no
## 3287 1.1 93.994 -36.4 4.860 5191 no
## 3288 1.1 93.994 -36.4 4.860 5191 no
## 3289 1.1 93.994 -36.4 4.860 5191 no
## 3290 1.1 93.994 -36.4 4.860 5191 no
## 3291 1.1 93.994 -36.4 4.860 5191 no
## 3292 1.1 93.994 -36.4 4.860 5191 no
## 3293 1.1 93.994 -36.4 4.860 5191 no
## 3294 1.1 93.994 -36.4 4.860 5191 no
## 3295 1.1 93.994 -36.4 4.860 5191 no
## 3296 1.1 93.994 -36.4 4.860 5191 no
## 3297 1.1 93.994 -36.4 4.860 5191 no
## 3298 1.1 93.994 -36.4 4.860 5191 no
## 3299 1.1 93.994 -36.4 4.860 5191 no
## 3300 1.1 93.994 -36.4 4.860 5191 no
## 3301 1.1 93.994 -36.4 4.860 5191 no
## 3302 1.1 93.994 -36.4 4.860 5191 no
## 3303 1.1 93.994 -36.4 4.860 5191 no
## 3304 1.1 93.994 -36.4 4.860 5191 no
## 3305 1.1 93.994 -36.4 4.860 5191 no
## 3306 1.1 93.994 -36.4 4.860 5191 no
## 3307 1.1 93.994 -36.4 4.860 5191 no
## 3308 1.1 93.994 -36.4 4.860 5191 no
## 3309 1.1 93.994 -36.4 4.860 5191 no
## 3310 1.1 93.994 -36.4 4.860 5191 no
## 3311 1.1 93.994 -36.4 4.860 5191 no
## 3312 1.1 93.994 -36.4 4.860 5191 no
## 3313 1.1 93.994 -36.4 4.860 5191 no
## 3314 1.1 93.994 -36.4 4.860 5191 no
## 3315 1.1 93.994 -36.4 4.860 5191 no
## 3316 1.1 93.994 -36.4 4.860 5191 no
## 3317 1.1 93.994 -36.4 4.860 5191 no
## 3318 1.1 93.994 -36.4 4.860 5191 no
## 3319 1.1 93.994 -36.4 4.860 5191 no
## 3320 1.1 93.994 -36.4 4.860 5191 no
## 3321 1.1 93.994 -36.4 4.860 5191 no
## 3322 1.1 93.994 -36.4 4.860 5191 no
## 3323 1.1 93.994 -36.4 4.860 5191 no
## 3324 1.1 93.994 -36.4 4.860 5191 no
## 3325 1.1 93.994 -36.4 4.860 5191 no
## 3326 1.1 93.994 -36.4 4.860 5191 no
## 3327 1.1 93.994 -36.4 4.860 5191 no
## 3328 1.1 93.994 -36.4 4.860 5191 no
## 3329 1.1 93.994 -36.4 4.860 5191 no
## 3330 1.1 93.994 -36.4 4.860 5191 no
## 3331 1.1 93.994 -36.4 4.860 5191 no
## 3332 1.1 93.994 -36.4 4.860 5191 no
## 3333 1.1 93.994 -36.4 4.860 5191 no
## 3334 1.1 93.994 -36.4 4.860 5191 no
## 3335 1.1 93.994 -36.4 4.860 5191 no
## 3336 1.1 93.994 -36.4 4.860 5191 no
## 3337 1.1 93.994 -36.4 4.860 5191 no
## 3338 1.1 93.994 -36.4 4.860 5191 no
## 3339 1.1 93.994 -36.4 4.860 5191 yes
## 3340 1.1 93.994 -36.4 4.860 5191 no
## 3341 1.1 93.994 -36.4 4.860 5191 no
## 3342 1.1 93.994 -36.4 4.860 5191 no
## 3343 1.1 93.994 -36.4 4.860 5191 no
## 3344 1.1 93.994 -36.4 4.860 5191 no
## 3345 1.1 93.994 -36.4 4.860 5191 no
## 3346 1.1 93.994 -36.4 4.860 5191 no
## 3347 1.1 93.994 -36.4 4.860 5191 no
## 3348 1.1 93.994 -36.4 4.860 5191 no
## 3349 1.1 93.994 -36.4 4.860 5191 no
## 3350 1.1 93.994 -36.4 4.860 5191 no
## 3351 1.1 93.994 -36.4 4.860 5191 no
## 3352 1.1 93.994 -36.4 4.860 5191 no
## 3353 1.1 93.994 -36.4 4.860 5191 no
## 3354 1.1 93.994 -36.4 4.860 5191 no
## 3355 1.1 93.994 -36.4 4.860 5191 no
## 3356 1.1 93.994 -36.4 4.860 5191 no
## 3357 1.1 93.994 -36.4 4.860 5191 no
## 3358 1.1 93.994 -36.4 4.860 5191 no
## 3359 1.1 93.994 -36.4 4.860 5191 no
## 3360 1.1 93.994 -36.4 4.860 5191 no
## 3361 1.1 93.994 -36.4 4.860 5191 no
## 3362 1.1 93.994 -36.4 4.860 5191 no
## 3363 1.1 93.994 -36.4 4.860 5191 no
## 3364 1.1 93.994 -36.4 4.860 5191 no
## 3365 1.1 93.994 -36.4 4.860 5191 no
## 3366 1.1 93.994 -36.4 4.860 5191 no
## 3367 1.1 93.994 -36.4 4.860 5191 no
## 3368 1.1 93.994 -36.4 4.860 5191 no
## 3369 1.1 93.994 -36.4 4.860 5191 no
## 3370 1.1 93.994 -36.4 4.860 5191 no
## 3371 1.1 93.994 -36.4 4.860 5191 no
## 3372 1.1 93.994 -36.4 4.860 5191 no
## 3373 1.1 93.994 -36.4 4.860 5191 no
## 3374 1.1 93.994 -36.4 4.860 5191 no
## 3375 1.1 93.994 -36.4 4.860 5191 no
## 3376 1.1 93.994 -36.4 4.860 5191 no
## 3377 1.1 93.994 -36.4 4.860 5191 no
## 3378 1.1 93.994 -36.4 4.860 5191 no
## 3379 1.1 93.994 -36.4 4.860 5191 no
## 3380 1.1 93.994 -36.4 4.860 5191 no
## 3381 1.1 93.994 -36.4 4.860 5191 no
## 3382 1.1 93.994 -36.4 4.860 5191 yes
## 3383 1.1 93.994 -36.4 4.860 5191 no
## 3384 1.1 93.994 -36.4 4.860 5191 no
## 3385 1.1 93.994 -36.4 4.860 5191 yes
## 3386 1.1 93.994 -36.4 4.860 5191 no
## 3387 1.1 93.994 -36.4 4.860 5191 no
## 3388 1.1 93.994 -36.4 4.860 5191 no
## 3389 1.1 93.994 -36.4 4.860 5191 no
## 3390 1.1 93.994 -36.4 4.860 5191 no
## 3391 1.1 93.994 -36.4 4.860 5191 no
## 3392 1.1 93.994 -36.4 4.860 5191 no
## 3393 1.1 93.994 -36.4 4.860 5191 no
## 3394 1.1 93.994 -36.4 4.860 5191 no
## 3395 1.1 93.994 -36.4 4.860 5191 no
## 3396 1.1 93.994 -36.4 4.860 5191 yes
## 3397 1.1 93.994 -36.4 4.860 5191 no
## 3398 1.1 93.994 -36.4 4.860 5191 no
## 3399 1.1 93.994 -36.4 4.860 5191 no
## 3400 1.1 93.994 -36.4 4.860 5191 no
## 3401 1.1 93.994 -36.4 4.860 5191 no
## 3402 1.1 93.994 -36.4 4.860 5191 no
## 3403 1.1 93.994 -36.4 4.860 5191 no
## 3404 1.1 93.994 -36.4 4.860 5191 no
## 3405 1.1 93.994 -36.4 4.860 5191 no
## 3406 1.1 93.994 -36.4 4.860 5191 no
## 3407 1.1 93.994 -36.4 4.860 5191 no
## 3408 1.1 93.994 -36.4 4.860 5191 no
## 3409 1.1 93.994 -36.4 4.860 5191 no
## 3410 1.1 93.994 -36.4 4.860 5191 no
## 3411 1.1 93.994 -36.4 4.860 5191 no
## 3412 1.1 93.994 -36.4 4.860 5191 no
## 3413 1.1 93.994 -36.4 4.860 5191 no
## 3414 1.1 93.994 -36.4 4.860 5191 no
## 3415 1.1 93.994 -36.4 4.860 5191 no
## 3416 1.1 93.994 -36.4 4.860 5191 no
## 3417 1.1 93.994 -36.4 4.860 5191 no
## 3418 1.1 93.994 -36.4 4.860 5191 no
## 3419 1.1 93.994 -36.4 4.860 5191 no
## 3420 1.1 93.994 -36.4 4.860 5191 no
## 3421 1.1 93.994 -36.4 4.860 5191 no
## 3422 1.1 93.994 -36.4 4.860 5191 no
## 3423 1.1 93.994 -36.4 4.860 5191 no
## 3424 1.1 93.994 -36.4 4.860 5191 no
## 3425 1.1 93.994 -36.4 4.860 5191 no
## 3426 1.1 93.994 -36.4 4.860 5191 no
## 3427 1.1 93.994 -36.4 4.860 5191 no
## 3428 1.1 93.994 -36.4 4.860 5191 yes
## 3429 1.1 93.994 -36.4 4.860 5191 no
## 3430 1.1 93.994 -36.4 4.860 5191 no
## 3431 1.1 93.994 -36.4 4.860 5191 no
## 3432 1.1 93.994 -36.4 4.860 5191 no
## 3433 1.1 93.994 -36.4 4.860 5191 no
## 3434 1.1 93.994 -36.4 4.860 5191 no
## 3435 1.1 93.994 -36.4 4.860 5191 no
## 3436 1.1 93.994 -36.4 4.860 5191 no
## 3437 1.1 93.994 -36.4 4.860 5191 yes
## 3438 1.1 93.994 -36.4 4.860 5191 no
## 3439 1.1 93.994 -36.4 4.860 5191 no
## 3440 1.1 93.994 -36.4 4.860 5191 no
## 3441 1.1 93.994 -36.4 4.860 5191 no
## 3442 1.1 93.994 -36.4 4.860 5191 no
## 3443 1.1 93.994 -36.4 4.860 5191 no
## 3444 1.1 93.994 -36.4 4.860 5191 no
## 3445 1.1 93.994 -36.4 4.860 5191 no
## 3446 1.1 93.994 -36.4 4.860 5191 no
## 3447 1.1 93.994 -36.4 4.860 5191 no
## 3448 1.1 93.994 -36.4 4.860 5191 no
## 3449 1.1 93.994 -36.4 4.860 5191 no
## 3450 1.1 93.994 -36.4 4.860 5191 no
## 3451 1.1 93.994 -36.4 4.860 5191 no
## 3452 1.1 93.994 -36.4 4.860 5191 no
## 3453 1.1 93.994 -36.4 4.860 5191 no
## 3454 1.1 93.994 -36.4 4.860 5191 yes
## 3455 1.1 93.994 -36.4 4.860 5191 no
## 3456 1.1 93.994 -36.4 4.860 5191 no
## 3457 1.1 93.994 -36.4 4.860 5191 no
## 3458 1.1 93.994 -36.4 4.860 5191 no
## 3459 1.1 93.994 -36.4 4.860 5191 no
## 3460 1.1 93.994 -36.4 4.860 5191 no
## 3461 1.1 93.994 -36.4 4.860 5191 no
## 3462 1.1 93.994 -36.4 4.860 5191 no
## 3463 1.1 93.994 -36.4 4.860 5191 no
## 3464 1.1 93.994 -36.4 4.860 5191 no
## 3465 1.1 93.994 -36.4 4.860 5191 no
## 3466 1.1 93.994 -36.4 4.860 5191 no
## 3467 1.1 93.994 -36.4 4.860 5191 no
## 3468 1.1 93.994 -36.4 4.860 5191 no
## 3469 1.1 93.994 -36.4 4.860 5191 no
## 3470 1.1 93.994 -36.4 4.860 5191 no
## 3471 1.1 93.994 -36.4 4.860 5191 no
## 3472 1.1 93.994 -36.4 4.860 5191 no
## 3473 1.1 93.994 -36.4 4.860 5191 no
## 3474 1.1 93.994 -36.4 4.860 5191 no
## 3475 1.1 93.994 -36.4 4.860 5191 no
## 3476 1.1 93.994 -36.4 4.860 5191 no
## 3477 1.1 93.994 -36.4 4.860 5191 no
## 3478 1.1 93.994 -36.4 4.860 5191 no
## 3479 1.1 93.994 -36.4 4.860 5191 no
## 3480 1.1 93.994 -36.4 4.860 5191 no
## 3481 1.1 93.994 -36.4 4.860 5191 no
## 3482 1.1 93.994 -36.4 4.860 5191 no
## 3483 1.1 93.994 -36.4 4.860 5191 no
## 3484 1.1 93.994 -36.4 4.860 5191 no
## 3485 1.1 93.994 -36.4 4.860 5191 no
## 3486 1.1 93.994 -36.4 4.860 5191 no
## 3487 1.1 93.994 -36.4 4.860 5191 no
## 3488 1.1 93.994 -36.4 4.860 5191 no
## 3489 1.1 93.994 -36.4 4.860 5191 no
## 3490 1.1 93.994 -36.4 4.860 5191 no
## 3491 1.1 93.994 -36.4 4.860 5191 no
## 3492 1.1 93.994 -36.4 4.860 5191 no
## 3493 1.1 93.994 -36.4 4.860 5191 no
## 3494 1.1 93.994 -36.4 4.860 5191 no
## 3495 1.1 93.994 -36.4 4.860 5191 no
## 3496 1.1 93.994 -36.4 4.860 5191 no
## 3497 1.1 93.994 -36.4 4.860 5191 no
## 3498 1.1 93.994 -36.4 4.860 5191 no
## 3499 1.1 93.994 -36.4 4.860 5191 no
## 3500 1.1 93.994 -36.4 4.860 5191 no
## 3501 1.1 93.994 -36.4 4.860 5191 no
## 3502 1.1 93.994 -36.4 4.860 5191 no
## 3503 1.1 93.994 -36.4 4.860 5191 no
## 3504 1.1 93.994 -36.4 4.860 5191 no
## 3505 1.1 93.994 -36.4 4.860 5191 no
## 3506 1.1 93.994 -36.4 4.860 5191 no
## 3507 1.1 93.994 -36.4 4.860 5191 yes
## 3508 1.1 93.994 -36.4 4.860 5191 no
## 3509 1.1 93.994 -36.4 4.860 5191 no
## 3510 1.1 93.994 -36.4 4.860 5191 no
## 3511 1.1 93.994 -36.4 4.860 5191 no
## 3512 1.1 93.994 -36.4 4.860 5191 no
## 3513 1.1 93.994 -36.4 4.860 5191 no
## 3514 1.1 93.994 -36.4 4.860 5191 no
## 3515 1.1 93.994 -36.4 4.860 5191 no
## 3516 1.1 93.994 -36.4 4.860 5191 no
## 3517 1.1 93.994 -36.4 4.860 5191 no
## 3518 1.1 93.994 -36.4 4.860 5191 no
## 3519 1.1 93.994 -36.4 4.860 5191 no
## 3520 1.1 93.994 -36.4 4.860 5191 no
## 3521 1.1 93.994 -36.4 4.860 5191 no
## 3522 1.1 93.994 -36.4 4.860 5191 no
## 3523 1.1 93.994 -36.4 4.859 5191 no
## 3524 1.1 93.994 -36.4 4.859 5191 no
## 3525 1.1 93.994 -36.4 4.859 5191 no
## 3526 1.1 93.994 -36.4 4.859 5191 no
## 3527 1.1 93.994 -36.4 4.859 5191 no
## 3528 1.1 93.994 -36.4 4.859 5191 no
## 3529 1.1 93.994 -36.4 4.859 5191 no
## 3530 1.1 93.994 -36.4 4.859 5191 no
## 3531 1.1 93.994 -36.4 4.859 5191 no
## 3532 1.1 93.994 -36.4 4.859 5191 no
## 3533 1.1 93.994 -36.4 4.859 5191 no
## 3534 1.1 93.994 -36.4 4.859 5191 no
## 3535 1.1 93.994 -36.4 4.859 5191 no
## 3536 1.1 93.994 -36.4 4.859 5191 no
## 3537 1.1 93.994 -36.4 4.859 5191 no
## 3538 1.1 93.994 -36.4 4.859 5191 no
## 3539 1.1 93.994 -36.4 4.859 5191 no
## 3540 1.1 93.994 -36.4 4.859 5191 no
## 3541 1.1 93.994 -36.4 4.859 5191 no
## 3542 1.1 93.994 -36.4 4.859 5191 yes
## 3543 1.1 93.994 -36.4 4.859 5191 no
## 3544 1.1 93.994 -36.4 4.859 5191 no
## 3545 1.1 93.994 -36.4 4.859 5191 no
## 3546 1.1 93.994 -36.4 4.859 5191 yes
## 3547 1.1 93.994 -36.4 4.859 5191 no
## 3548 1.1 93.994 -36.4 4.859 5191 no
## 3549 1.1 93.994 -36.4 4.859 5191 no
## 3550 1.1 93.994 -36.4 4.859 5191 no
## 3551 1.1 93.994 -36.4 4.859 5191 no
## 3552 1.1 93.994 -36.4 4.859 5191 no
## 3553 1.1 93.994 -36.4 4.859 5191 no
## 3554 1.1 93.994 -36.4 4.859 5191 no
## 3555 1.1 93.994 -36.4 4.859 5191 no
## 3556 1.1 93.994 -36.4 4.859 5191 no
## 3557 1.1 93.994 -36.4 4.859 5191 no
## 3558 1.1 93.994 -36.4 4.859 5191 no
## 3559 1.1 93.994 -36.4 4.859 5191 no
## 3560 1.1 93.994 -36.4 4.859 5191 no
## 3561 1.1 93.994 -36.4 4.859 5191 no
## 3562 1.1 93.994 -36.4 4.859 5191 no
## 3563 1.1 93.994 -36.4 4.859 5191 no
## 3564 1.1 93.994 -36.4 4.859 5191 no
## 3565 1.1 93.994 -36.4 4.859 5191 yes
## 3566 1.1 93.994 -36.4 4.859 5191 no
## 3567 1.1 93.994 -36.4 4.859 5191 yes
## 3568 1.1 93.994 -36.4 4.859 5191 no
## 3569 1.1 93.994 -36.4 4.859 5191 no
## 3570 1.1 93.994 -36.4 4.859 5191 no
## 3571 1.1 93.994 -36.4 4.859 5191 yes
## 3572 1.1 93.994 -36.4 4.859 5191 no
## 3573 1.1 93.994 -36.4 4.859 5191 no
## 3574 1.1 93.994 -36.4 4.859 5191 no
## 3575 1.1 93.994 -36.4 4.859 5191 yes
## 3576 1.1 93.994 -36.4 4.859 5191 no
## 3577 1.1 93.994 -36.4 4.859 5191 yes
## 3578 1.1 93.994 -36.4 4.859 5191 no
## 3579 1.1 93.994 -36.4 4.859 5191 no
## 3580 1.1 93.994 -36.4 4.859 5191 no
## 3581 1.1 93.994 -36.4 4.859 5191 no
## 3582 1.1 93.994 -36.4 4.859 5191 no
## 3583 1.1 93.994 -36.4 4.859 5191 no
## 3584 1.1 93.994 -36.4 4.859 5191 no
## 3585 1.1 93.994 -36.4 4.859 5191 no
## 3586 1.1 93.994 -36.4 4.859 5191 no
## 3587 1.1 93.994 -36.4 4.859 5191 no
## 3588 1.1 93.994 -36.4 4.859 5191 no
## 3589 1.1 93.994 -36.4 4.859 5191 no
## 3590 1.1 93.994 -36.4 4.859 5191 no
## 3591 1.1 93.994 -36.4 4.859 5191 no
## 3592 1.1 93.994 -36.4 4.859 5191 no
## 3593 1.1 93.994 -36.4 4.859 5191 no
## 3594 1.1 93.994 -36.4 4.859 5191 no
## 3595 1.1 93.994 -36.4 4.859 5191 no
## 3596 1.1 93.994 -36.4 4.859 5191 no
## 3597 1.1 93.994 -36.4 4.859 5191 no
## 3598 1.1 93.994 -36.4 4.859 5191 no
## 3599 1.1 93.994 -36.4 4.859 5191 no
## 3600 1.1 93.994 -36.4 4.859 5191 no
## 3601 1.1 93.994 -36.4 4.859 5191 no
## 3602 1.1 93.994 -36.4 4.859 5191 no
## 3603 1.1 93.994 -36.4 4.859 5191 no
## 3604 1.1 93.994 -36.4 4.859 5191 no
## 3605 1.1 93.994 -36.4 4.859 5191 no
## 3606 1.1 93.994 -36.4 4.859 5191 no
## 3607 1.1 93.994 -36.4 4.859 5191 no
## 3608 1.1 93.994 -36.4 4.859 5191 no
## 3609 1.1 93.994 -36.4 4.859 5191 yes
## 3610 1.1 93.994 -36.4 4.859 5191 no
## 3611 1.1 93.994 -36.4 4.859 5191 no
## 3612 1.1 93.994 -36.4 4.859 5191 no
## 3613 1.1 93.994 -36.4 4.859 5191 no
## 3614 1.1 93.994 -36.4 4.859 5191 no
## 3615 1.1 93.994 -36.4 4.859 5191 no
## 3616 1.1 93.994 -36.4 4.859 5191 no
## 3617 1.1 93.994 -36.4 4.859 5191 no
## 3618 1.1 93.994 -36.4 4.859 5191 no
## 3619 1.1 93.994 -36.4 4.859 5191 no
## 3620 1.1 93.994 -36.4 4.859 5191 no
## 3621 1.1 93.994 -36.4 4.859 5191 no
## 3622 1.1 93.994 -36.4 4.859 5191 no
## 3623 1.1 93.994 -36.4 4.859 5191 no
## 3624 1.1 93.994 -36.4 4.859 5191 no
## 3625 1.1 93.994 -36.4 4.859 5191 no
## 3626 1.1 93.994 -36.4 4.859 5191 no
## 3627 1.1 93.994 -36.4 4.859 5191 no
## 3628 1.1 93.994 -36.4 4.859 5191 no
## 3629 1.1 93.994 -36.4 4.859 5191 yes
## 3630 1.1 93.994 -36.4 4.859 5191 no
## 3631 1.1 93.994 -36.4 4.859 5191 no
## 3632 1.1 93.994 -36.4 4.859 5191 no
## 3633 1.1 93.994 -36.4 4.859 5191 no
## 3634 1.1 93.994 -36.4 4.859 5191 no
## 3635 1.1 93.994 -36.4 4.859 5191 no
## 3636 1.1 93.994 -36.4 4.859 5191 no
## 3637 1.1 93.994 -36.4 4.859 5191 no
## 3638 1.1 93.994 -36.4 4.859 5191 no
## 3639 1.1 93.994 -36.4 4.859 5191 no
## 3640 1.1 93.994 -36.4 4.859 5191 no
## 3641 1.1 93.994 -36.4 4.859 5191 no
## 3642 1.1 93.994 -36.4 4.859 5191 no
## 3643 1.1 93.994 -36.4 4.859 5191 no
## 3644 1.1 93.994 -36.4 4.859 5191 no
## 3645 1.1 93.994 -36.4 4.859 5191 no
## 3646 1.1 93.994 -36.4 4.859 5191 no
## 3647 1.1 93.994 -36.4 4.859 5191 no
## 3648 1.1 93.994 -36.4 4.859 5191 no
## 3649 1.1 93.994 -36.4 4.859 5191 no
## 3650 1.1 93.994 -36.4 4.859 5191 no
## 3651 1.1 93.994 -36.4 4.859 5191 no
## 3652 1.1 93.994 -36.4 4.859 5191 no
## 3653 1.1 93.994 -36.4 4.859 5191 no
## 3654 1.1 93.994 -36.4 4.859 5191 no
## 3655 1.1 93.994 -36.4 4.859 5191 no
## 3656 1.1 93.994 -36.4 4.859 5191 no
## 3657 1.1 93.994 -36.4 4.859 5191 no
## 3658 1.1 93.994 -36.4 4.859 5191 no
## 3659 1.1 93.994 -36.4 4.859 5191 no
## 3660 1.1 93.994 -36.4 4.859 5191 no
## 3661 1.1 93.994 -36.4 4.859 5191 no
## 3662 1.1 93.994 -36.4 4.859 5191 yes
## 3663 1.1 93.994 -36.4 4.859 5191 no
## 3664 1.1 93.994 -36.4 4.859 5191 no
## 3665 1.1 93.994 -36.4 4.859 5191 no
## 3666 1.1 93.994 -36.4 4.859 5191 no
## 3667 1.1 93.994 -36.4 4.859 5191 no
## 3668 1.1 93.994 -36.4 4.859 5191 no
## 3669 1.1 93.994 -36.4 4.859 5191 no
## 3670 1.1 93.994 -36.4 4.859 5191 no
## 3671 1.1 93.994 -36.4 4.859 5191 no
## 3672 1.1 93.994 -36.4 4.859 5191 no
## 3673 1.1 93.994 -36.4 4.859 5191 no
## 3674 1.1 93.994 -36.4 4.859 5191 no
## 3675 1.1 93.994 -36.4 4.859 5191 no
## 3676 1.1 93.994 -36.4 4.859 5191 no
## 3677 1.1 93.994 -36.4 4.859 5191 no
## 3678 1.1 93.994 -36.4 4.859 5191 yes
## 3679 1.1 93.994 -36.4 4.859 5191 no
## 3680 1.1 93.994 -36.4 4.859 5191 no
## 3681 1.1 93.994 -36.4 4.859 5191 no
## 3682 1.1 93.994 -36.4 4.859 5191 no
## 3683 1.1 93.994 -36.4 4.859 5191 no
## 3684 1.1 93.994 -36.4 4.859 5191 no
## 3685 1.1 93.994 -36.4 4.859 5191 no
## 3686 1.1 93.994 -36.4 4.859 5191 yes
## 3687 1.1 93.994 -36.4 4.859 5191 no
## 3688 1.1 93.994 -36.4 4.859 5191 no
## 3689 1.1 93.994 -36.4 4.859 5191 no
## 3690 1.1 93.994 -36.4 4.859 5191 no
## 3691 1.1 93.994 -36.4 4.859 5191 no
## 3692 1.1 93.994 -36.4 4.859 5191 no
## 3693 1.1 93.994 -36.4 4.859 5191 no
## 3694 1.1 93.994 -36.4 4.859 5191 yes
## 3695 1.1 93.994 -36.4 4.859 5191 no
## 3696 1.1 93.994 -36.4 4.859 5191 no
## 3697 1.1 93.994 -36.4 4.859 5191 no
## 3698 1.1 93.994 -36.4 4.859 5191 yes
## 3699 1.1 93.994 -36.4 4.859 5191 no
## 3700 1.1 93.994 -36.4 4.859 5191 no
## 3701 1.1 93.994 -36.4 4.859 5191 no
## 3702 1.1 93.994 -36.4 4.859 5191 no
## 3703 1.1 93.994 -36.4 4.859 5191 no
## 3704 1.1 93.994 -36.4 4.859 5191 no
## 3705 1.1 93.994 -36.4 4.859 5191 no
## 3706 1.1 93.994 -36.4 4.859 5191 no
## 3707 1.1 93.994 -36.4 4.859 5191 no
## 3708 1.1 93.994 -36.4 4.859 5191 no
## 3709 1.1 93.994 -36.4 4.859 5191 no
## 3710 1.1 93.994 -36.4 4.859 5191 no
## 3711 1.1 93.994 -36.4 4.859 5191 no
## 3712 1.1 93.994 -36.4 4.859 5191 no
## 3713 1.1 93.994 -36.4 4.859 5191 no
## 3714 1.1 93.994 -36.4 4.859 5191 no
## 3715 1.1 93.994 -36.4 4.859 5191 no
## 3716 1.1 93.994 -36.4 4.859 5191 no
## 3717 1.1 93.994 -36.4 4.859 5191 no
## 3718 1.1 93.994 -36.4 4.859 5191 no
## 3719 1.1 93.994 -36.4 4.859 5191 no
## 3720 1.1 93.994 -36.4 4.859 5191 no
## 3721 1.1 93.994 -36.4 4.859 5191 no
## 3722 1.1 93.994 -36.4 4.859 5191 no
## 3723 1.1 93.994 -36.4 4.859 5191 no
## 3724 1.1 93.994 -36.4 4.859 5191 no
## 3725 1.1 93.994 -36.4 4.859 5191 no
## 3726 1.1 93.994 -36.4 4.859 5191 no
## 3727 1.1 93.994 -36.4 4.859 5191 no
## 3728 1.1 93.994 -36.4 4.859 5191 no
## 3729 1.1 93.994 -36.4 4.859 5191 no
## 3730 1.1 93.994 -36.4 4.859 5191 no
## 3731 1.1 93.994 -36.4 4.859 5191 no
## 3732 1.1 93.994 -36.4 4.859 5191 no
## 3733 1.1 93.994 -36.4 4.859 5191 no
## 3734 1.1 93.994 -36.4 4.859 5191 no
## 3735 1.1 93.994 -36.4 4.859 5191 yes
## 3736 1.1 93.994 -36.4 4.859 5191 no
## 3737 1.1 93.994 -36.4 4.859 5191 no
## 3738 1.1 93.994 -36.4 4.859 5191 no
## 3739 1.1 93.994 -36.4 4.859 5191 no
## 3740 1.1 93.994 -36.4 4.859 5191 no
## 3741 1.1 93.994 -36.4 4.859 5191 yes
## 3742 1.1 93.994 -36.4 4.859 5191 no
## 3743 1.1 93.994 -36.4 4.859 5191 no
## 3744 1.1 93.994 -36.4 4.859 5191 no
## 3745 1.1 93.994 -36.4 4.859 5191 no
## 3746 1.1 93.994 -36.4 4.859 5191 no
## 3747 1.1 93.994 -36.4 4.859 5191 no
## 3748 1.1 93.994 -36.4 4.859 5191 no
## 3749 1.1 93.994 -36.4 4.859 5191 no
## 3750 1.1 93.994 -36.4 4.859 5191 no
## 3751 1.1 93.994 -36.4 4.859 5191 no
## 3752 1.1 93.994 -36.4 4.859 5191 no
## 3753 1.1 93.994 -36.4 4.859 5191 no
## 3754 1.1 93.994 -36.4 4.859 5191 no
## 3755 1.1 93.994 -36.4 4.859 5191 no
## 3756 1.1 93.994 -36.4 4.859 5191 no
## 3757 1.1 93.994 -36.4 4.859 5191 no
## 3758 1.1 93.994 -36.4 4.859 5191 no
## 3759 1.1 93.994 -36.4 4.859 5191 no
## 3760 1.1 93.994 -36.4 4.859 5191 no
## 3761 1.1 93.994 -36.4 4.859 5191 no
## 3762 1.1 93.994 -36.4 4.859 5191 no
## 3763 1.1 93.994 -36.4 4.859 5191 no
## 3764 1.1 93.994 -36.4 4.859 5191 no
## 3765 1.1 93.994 -36.4 4.859 5191 no
## 3766 1.1 93.994 -36.4 4.859 5191 no
## 3767 1.1 93.994 -36.4 4.859 5191 no
## 3768 1.1 93.994 -36.4 4.859 5191 no
## 3769 1.1 93.994 -36.4 4.859 5191 no
## 3770 1.1 93.994 -36.4 4.859 5191 no
## 3771 1.1 93.994 -36.4 4.859 5191 no
## 3772 1.1 93.994 -36.4 4.859 5191 no
## 3773 1.1 93.994 -36.4 4.859 5191 no
## 3774 1.1 93.994 -36.4 4.859 5191 no
## 3775 1.1 93.994 -36.4 4.859 5191 yes
## 3776 1.1 93.994 -36.4 4.859 5191 no
## 3777 1.1 93.994 -36.4 4.859 5191 no
## 3778 1.1 93.994 -36.4 4.859 5191 no
## 3779 1.1 93.994 -36.4 4.859 5191 no
## 3780 1.1 93.994 -36.4 4.859 5191 no
## 3781 1.1 93.994 -36.4 4.859 5191 no
## 3782 1.1 93.994 -36.4 4.859 5191 no
## 3783 1.1 93.994 -36.4 4.859 5191 no
## 3784 1.1 93.994 -36.4 4.859 5191 no
## 3785 1.1 93.994 -36.4 4.859 5191 no
## 3786 1.1 93.994 -36.4 4.859 5191 no
## 3787 1.1 93.994 -36.4 4.859 5191 no
## 3788 1.1 93.994 -36.4 4.859 5191 no
## 3789 1.1 93.994 -36.4 4.859 5191 no
## 3790 1.1 93.994 -36.4 4.859 5191 no
## 3791 1.1 93.994 -36.4 4.859 5191 no
## 3792 1.1 93.994 -36.4 4.859 5191 no
## 3793 1.1 93.994 -36.4 4.859 5191 no
## 3794 1.1 93.994 -36.4 4.859 5191 no
## 3795 1.1 93.994 -36.4 4.859 5191 no
## 3796 1.1 93.994 -36.4 4.859 5191 no
## 3797 1.1 93.994 -36.4 4.859 5191 no
## 3798 1.1 93.994 -36.4 4.859 5191 no
## 3799 1.1 93.994 -36.4 4.859 5191 no
## 3800 1.1 93.994 -36.4 4.859 5191 no
## 3801 1.1 93.994 -36.4 4.859 5191 no
## 3802 1.1 93.994 -36.4 4.859 5191 no
## 3803 1.1 93.994 -36.4 4.859 5191 no
## 3804 1.1 93.994 -36.4 4.859 5191 no
## 3805 1.1 93.994 -36.4 4.859 5191 no
## 3806 1.1 93.994 -36.4 4.859 5191 no
## 3807 1.1 93.994 -36.4 4.859 5191 no
## 3808 1.1 93.994 -36.4 4.859 5191 no
## 3809 1.1 93.994 -36.4 4.859 5191 no
## 3810 1.1 93.994 -36.4 4.859 5191 no
## 3811 1.1 93.994 -36.4 4.859 5191 no
## 3812 1.1 93.994 -36.4 4.859 5191 no
## 3813 1.1 93.994 -36.4 4.859 5191 no
## 3814 1.1 93.994 -36.4 4.859 5191 no
## 3815 1.1 93.994 -36.4 4.859 5191 no
## 3816 1.1 93.994 -36.4 4.859 5191 no
## 3817 1.1 93.994 -36.4 4.859 5191 no
## 3818 1.1 93.994 -36.4 4.859 5191 no
## 3819 1.1 93.994 -36.4 4.859 5191 no
## 3820 1.1 93.994 -36.4 4.859 5191 no
## 3821 1.1 93.994 -36.4 4.859 5191 no
## 3822 1.1 93.994 -36.4 4.859 5191 no
## 3823 1.1 93.994 -36.4 4.859 5191 no
## 3824 1.1 93.994 -36.4 4.859 5191 no
## 3825 1.1 93.994 -36.4 4.859 5191 no
## 3826 1.1 93.994 -36.4 4.859 5191 no
## 3827 1.1 93.994 -36.4 4.859 5191 no
## 3828 1.1 93.994 -36.4 4.859 5191 no
## 3829 1.1 93.994 -36.4 4.859 5191 no
## 3830 1.1 93.994 -36.4 4.859 5191 no
## 3831 1.1 93.994 -36.4 4.859 5191 no
## 3832 1.1 93.994 -36.4 4.859 5191 no
## 3833 1.1 93.994 -36.4 4.859 5191 no
## 3834 1.1 93.994 -36.4 4.859 5191 no
## 3835 1.1 93.994 -36.4 4.859 5191 no
## 3836 1.1 93.994 -36.4 4.859 5191 no
## 3837 1.1 93.994 -36.4 4.859 5191 no
## 3838 1.1 93.994 -36.4 4.859 5191 no
## 3839 1.1 93.994 -36.4 4.859 5191 no
## 3840 1.1 93.994 -36.4 4.859 5191 no
## 3841 1.1 93.994 -36.4 4.859 5191 no
## 3842 1.1 93.994 -36.4 4.859 5191 no
## 3843 1.1 93.994 -36.4 4.859 5191 no
## 3844 1.1 93.994 -36.4 4.859 5191 no
## 3845 1.1 93.994 -36.4 4.859 5191 no
## 3846 1.1 93.994 -36.4 4.859 5191 no
## 3847 1.1 93.994 -36.4 4.859 5191 no
## 3848 1.1 93.994 -36.4 4.859 5191 no
## 3849 1.1 93.994 -36.4 4.859 5191 no
## 3850 1.1 93.994 -36.4 4.859 5191 no
## 3851 1.1 93.994 -36.4 4.859 5191 no
## 3852 1.1 93.994 -36.4 4.859 5191 no
## 3853 1.1 93.994 -36.4 4.859 5191 no
## 3854 1.1 93.994 -36.4 4.859 5191 no
## 3855 1.1 93.994 -36.4 4.859 5191 yes
## 3856 1.1 93.994 -36.4 4.859 5191 no
## 3857 1.1 93.994 -36.4 4.859 5191 no
## 3858 1.1 93.994 -36.4 4.859 5191 no
## 3859 1.1 93.994 -36.4 4.859 5191 no
## 3860 1.1 93.994 -36.4 4.859 5191 no
## 3861 1.1 93.994 -36.4 4.859 5191 no
## 3862 1.1 93.994 -36.4 4.859 5191 no
## 3863 1.1 93.994 -36.4 4.859 5191 no
## 3864 1.1 93.994 -36.4 4.859 5191 no
## 3865 1.1 93.994 -36.4 4.859 5191 no
## 3866 1.1 93.994 -36.4 4.859 5191 no
## 3867 1.1 93.994 -36.4 4.859 5191 no
## 3868 1.1 93.994 -36.4 4.859 5191 no
## 3869 1.1 93.994 -36.4 4.859 5191 no
## 3870 1.1 93.994 -36.4 4.859 5191 no
## 3871 1.1 93.994 -36.4 4.859 5191 no
## 3872 1.1 93.994 -36.4 4.859 5191 no
## 3873 1.1 93.994 -36.4 4.859 5191 no
## 3874 1.1 93.994 -36.4 4.859 5191 no
## 3875 1.1 93.994 -36.4 4.859 5191 no
## 3876 1.1 93.994 -36.4 4.859 5191 no
## 3877 1.1 93.994 -36.4 4.859 5191 no
## 3878 1.1 93.994 -36.4 4.859 5191 no
## 3879 1.1 93.994 -36.4 4.859 5191 no
## 3880 1.1 93.994 -36.4 4.859 5191 no
## 3881 1.1 93.994 -36.4 4.859 5191 no
## 3882 1.1 93.994 -36.4 4.859 5191 no
## 3883 1.1 93.994 -36.4 4.859 5191 no
## 3884 1.1 93.994 -36.4 4.859 5191 no
## 3885 1.1 93.994 -36.4 4.859 5191 no
## 3886 1.1 93.994 -36.4 4.859 5191 no
## 3887 1.1 93.994 -36.4 4.859 5191 no
## 3888 1.1 93.994 -36.4 4.859 5191 yes
## 3889 1.1 93.994 -36.4 4.859 5191 no
## 3890 1.1 93.994 -36.4 4.859 5191 no
## 3891 1.1 93.994 -36.4 4.859 5191 no
## 3892 1.1 93.994 -36.4 4.859 5191 no
## 3893 1.1 93.994 -36.4 4.859 5191 no
## 3894 1.1 93.994 -36.4 4.858 5191 no
## 3895 1.1 93.994 -36.4 4.858 5191 no
## 3896 1.1 93.994 -36.4 4.858 5191 no
## 3897 1.1 93.994 -36.4 4.858 5191 no
## 3898 1.1 93.994 -36.4 4.858 5191 no
## 3899 1.1 93.994 -36.4 4.858 5191 no
## 3900 1.1 93.994 -36.4 4.858 5191 no
## 3901 1.1 93.994 -36.4 4.858 5191 no
## 3902 1.1 93.994 -36.4 4.858 5191 no
## 3903 1.1 93.994 -36.4 4.858 5191 no
## 3904 1.1 93.994 -36.4 4.858 5191 no
## 3905 1.1 93.994 -36.4 4.858 5191 no
## 3906 1.1 93.994 -36.4 4.858 5191 no
## 3907 1.1 93.994 -36.4 4.858 5191 no
## 3908 1.1 93.994 -36.4 4.858 5191 no
## 3909 1.1 93.994 -36.4 4.858 5191 no
## 3910 1.1 93.994 -36.4 4.858 5191 no
## 3911 1.1 93.994 -36.4 4.858 5191 no
## 3912 1.1 93.994 -36.4 4.858 5191 no
## 3913 1.1 93.994 -36.4 4.858 5191 no
## 3914 1.1 93.994 -36.4 4.858 5191 no
## 3915 1.1 93.994 -36.4 4.858 5191 no
## 3916 1.1 93.994 -36.4 4.858 5191 no
## 3917 1.1 93.994 -36.4 4.858 5191 no
## 3918 1.1 93.994 -36.4 4.858 5191 no
## 3919 1.1 93.994 -36.4 4.858 5191 no
## 3920 1.1 93.994 -36.4 4.858 5191 no
## 3921 1.1 93.994 -36.4 4.858 5191 no
## 3922 1.1 93.994 -36.4 4.858 5191 no
## 3923 1.1 93.994 -36.4 4.858 5191 no
## 3924 1.1 93.994 -36.4 4.858 5191 no
## 3925 1.1 93.994 -36.4 4.858 5191 no
## 3926 1.1 93.994 -36.4 4.858 5191 no
## 3927 1.1 93.994 -36.4 4.858 5191 no
## 3928 1.1 93.994 -36.4 4.858 5191 no
## 3929 1.1 93.994 -36.4 4.858 5191 no
## 3930 1.1 93.994 -36.4 4.858 5191 no
## 3931 1.1 93.994 -36.4 4.858 5191 no
## 3932 1.1 93.994 -36.4 4.858 5191 no
## 3933 1.1 93.994 -36.4 4.858 5191 no
## 3934 1.1 93.994 -36.4 4.858 5191 no
## 3935 1.1 93.994 -36.4 4.858 5191 no
## 3936 1.1 93.994 -36.4 4.858 5191 no
## 3937 1.1 93.994 -36.4 4.858 5191 no
## 3938 1.1 93.994 -36.4 4.858 5191 no
## 3939 1.1 93.994 -36.4 4.858 5191 no
## 3940 1.1 93.994 -36.4 4.858 5191 yes
## 3941 1.1 93.994 -36.4 4.858 5191 no
## 3942 1.1 93.994 -36.4 4.858 5191 no
## 3943 1.1 93.994 -36.4 4.858 5191 no
## 3944 1.1 93.994 -36.4 4.858 5191 no
## 3945 1.1 93.994 -36.4 4.858 5191 no
## 3946 1.1 93.994 -36.4 4.858 5191 no
## 3947 1.1 93.994 -36.4 4.858 5191 no
## 3948 1.1 93.994 -36.4 4.858 5191 no
## 3949 1.1 93.994 -36.4 4.858 5191 no
## 3950 1.1 93.994 -36.4 4.858 5191 no
## 3951 1.1 93.994 -36.4 4.858 5191 no
## 3952 1.1 93.994 -36.4 4.858 5191 no
## 3953 1.1 93.994 -36.4 4.858 5191 no
## 3954 1.1 93.994 -36.4 4.858 5191 no
## 3955 1.1 93.994 -36.4 4.858 5191 no
## 3956 1.1 93.994 -36.4 4.858 5191 no
## 3957 1.1 93.994 -36.4 4.858 5191 no
## 3958 1.1 93.994 -36.4 4.858 5191 no
## 3959 1.1 93.994 -36.4 4.858 5191 no
## 3960 1.1 93.994 -36.4 4.858 5191 no
## 3961 1.1 93.994 -36.4 4.858 5191 no
## 3962 1.1 93.994 -36.4 4.858 5191 no
## 3963 1.1 93.994 -36.4 4.858 5191 no
## 3964 1.1 93.994 -36.4 4.858 5191 no
## 3965 1.1 93.994 -36.4 4.858 5191 no
## 3966 1.1 93.994 -36.4 4.858 5191 no
## 3967 1.1 93.994 -36.4 4.858 5191 no
## 3968 1.1 93.994 -36.4 4.858 5191 no
## 3969 1.1 93.994 -36.4 4.858 5191 no
## 3970 1.1 93.994 -36.4 4.858 5191 no
## 3971 1.1 93.994 -36.4 4.858 5191 no
## 3972 1.1 93.994 -36.4 4.858 5191 no
## 3973 1.1 93.994 -36.4 4.858 5191 no
## 3974 1.1 93.994 -36.4 4.858 5191 no
## 3975 1.1 93.994 -36.4 4.858 5191 no
## 3976 1.1 93.994 -36.4 4.858 5191 no
## 3977 1.1 93.994 -36.4 4.858 5191 no
## 3978 1.1 93.994 -36.4 4.858 5191 no
## 3979 1.1 93.994 -36.4 4.858 5191 no
## 3980 1.1 93.994 -36.4 4.858 5191 yes
## 3981 1.1 93.994 -36.4 4.858 5191 no
## 3982 1.1 93.994 -36.4 4.858 5191 no
## 3983 1.1 93.994 -36.4 4.858 5191 no
## 3984 1.1 93.994 -36.4 4.858 5191 no
## 3985 1.1 93.994 -36.4 4.858 5191 no
## 3986 1.1 93.994 -36.4 4.858 5191 no
## 3987 1.1 93.994 -36.4 4.858 5191 no
## 3988 1.1 93.994 -36.4 4.858 5191 no
## 3989 1.1 93.994 -36.4 4.858 5191 yes
## 3990 1.1 93.994 -36.4 4.858 5191 no
## 3991 1.1 93.994 -36.4 4.858 5191 no
## 3992 1.1 93.994 -36.4 4.858 5191 no
## 3993 1.1 93.994 -36.4 4.858 5191 no
## 3994 1.1 93.994 -36.4 4.858 5191 no
## 3995 1.1 93.994 -36.4 4.858 5191 no
## 3996 1.1 93.994 -36.4 4.858 5191 no
## 3997 1.1 93.994 -36.4 4.858 5191 no
## 3998 1.1 93.994 -36.4 4.858 5191 no
## 3999 1.1 93.994 -36.4 4.858 5191 no
## 4000 1.1 93.994 -36.4 4.858 5191 no
## 4001 1.1 93.994 -36.4 4.858 5191 no
## 4002 1.1 93.994 -36.4 4.858 5191 no
## 4003 1.1 93.994 -36.4 4.858 5191 no
## 4004 1.1 93.994 -36.4 4.858 5191 no
## 4005 1.1 93.994 -36.4 4.858 5191 no
## 4006 1.1 93.994 -36.4 4.858 5191 no
## 4007 1.1 93.994 -36.4 4.858 5191 no
## 4008 1.1 93.994 -36.4 4.858 5191 no
## 4009 1.1 93.994 -36.4 4.858 5191 no
## 4010 1.1 93.994 -36.4 4.858 5191 no
## 4011 1.1 93.994 -36.4 4.858 5191 no
## 4012 1.1 93.994 -36.4 4.858 5191 no
## 4013 1.1 93.994 -36.4 4.858 5191 no
## 4014 1.1 93.994 -36.4 4.858 5191 no
## 4015 1.1 93.994 -36.4 4.858 5191 no
## 4016 1.1 93.994 -36.4 4.858 5191 no
## 4017 1.1 93.994 -36.4 4.858 5191 no
## 4018 1.1 93.994 -36.4 4.858 5191 no
## 4019 1.1 93.994 -36.4 4.858 5191 no
## 4020 1.1 93.994 -36.4 4.858 5191 no
## 4021 1.1 93.994 -36.4 4.858 5191 no
## 4022 1.1 93.994 -36.4 4.858 5191 no
## 4023 1.1 93.994 -36.4 4.858 5191 no
## 4024 1.1 93.994 -36.4 4.858 5191 no
## 4025 1.1 93.994 -36.4 4.858 5191 no
## 4026 1.1 93.994 -36.4 4.858 5191 no
## 4027 1.1 93.994 -36.4 4.858 5191 no
## 4028 1.1 93.994 -36.4 4.858 5191 no
## 4029 1.1 93.994 -36.4 4.858 5191 no
## 4030 1.1 93.994 -36.4 4.858 5191 no
## 4031 1.1 93.994 -36.4 4.858 5191 no
## 4032 1.1 93.994 -36.4 4.858 5191 no
## 4033 1.1 93.994 -36.4 4.858 5191 no
## 4034 1.1 93.994 -36.4 4.858 5191 no
## 4035 1.1 93.994 -36.4 4.858 5191 yes
## 4036 1.1 93.994 -36.4 4.858 5191 no
## 4037 1.1 93.994 -36.4 4.858 5191 no
## 4038 1.1 93.994 -36.4 4.858 5191 no
## 4039 1.1 93.994 -36.4 4.858 5191 no
## 4040 1.1 93.994 -36.4 4.858 5191 no
## 4041 1.1 93.994 -36.4 4.858 5191 no
## 4042 1.1 93.994 -36.4 4.858 5191 no
## 4043 1.1 93.994 -36.4 4.858 5191 no
## 4044 1.1 93.994 -36.4 4.858 5191 no
## 4045 1.1 93.994 -36.4 4.858 5191 no
## 4046 1.1 93.994 -36.4 4.858 5191 no
## 4047 1.1 93.994 -36.4 4.858 5191 no
## 4048 1.1 93.994 -36.4 4.858 5191 no
## 4049 1.1 93.994 -36.4 4.858 5191 no
## 4050 1.1 93.994 -36.4 4.858 5191 no
## 4051 1.1 93.994 -36.4 4.858 5191 yes
## 4052 1.1 93.994 -36.4 4.858 5191 no
## 4053 1.1 93.994 -36.4 4.858 5191 no
## 4054 1.1 93.994 -36.4 4.858 5191 no
## 4055 1.1 93.994 -36.4 4.858 5191 no
## 4056 1.1 93.994 -36.4 4.858 5191 no
## 4057 1.1 93.994 -36.4 4.858 5191 no
## 4058 1.1 93.994 -36.4 4.858 5191 no
## 4059 1.1 93.994 -36.4 4.858 5191 no
## 4060 1.1 93.994 -36.4 4.858 5191 no
## 4061 1.1 93.994 -36.4 4.858 5191 no
## 4062 1.1 93.994 -36.4 4.858 5191 no
## 4063 1.1 93.994 -36.4 4.858 5191 no
## 4064 1.1 93.994 -36.4 4.858 5191 no
## 4065 1.1 93.994 -36.4 4.858 5191 no
## 4066 1.1 93.994 -36.4 4.858 5191 no
## 4067 1.1 93.994 -36.4 4.858 5191 no
## 4068 1.1 93.994 -36.4 4.858 5191 no
## 4069 1.1 93.994 -36.4 4.858 5191 no
## 4070 1.1 93.994 -36.4 4.858 5191 no
## 4071 1.1 93.994 -36.4 4.858 5191 no
## 4072 1.1 93.994 -36.4 4.858 5191 no
## 4073 1.1 93.994 -36.4 4.858 5191 no
## 4074 1.1 93.994 -36.4 4.858 5191 no
## 4075 1.1 93.994 -36.4 4.858 5191 no
## 4076 1.1 93.994 -36.4 4.858 5191 no
## 4077 1.1 93.994 -36.4 4.858 5191 no
## 4078 1.1 93.994 -36.4 4.858 5191 no
## 4079 1.1 93.994 -36.4 4.858 5191 no
## 4080 1.1 93.994 -36.4 4.858 5191 no
## 4081 1.1 93.994 -36.4 4.858 5191 no
## 4082 1.1 93.994 -36.4 4.858 5191 no
## 4083 1.1 93.994 -36.4 4.858 5191 no
## 4084 1.1 93.994 -36.4 4.858 5191 no
## 4085 1.1 93.994 -36.4 4.858 5191 no
## 4086 1.1 93.994 -36.4 4.858 5191 no
## 4087 1.1 93.994 -36.4 4.858 5191 no
## 4088 1.1 93.994 -36.4 4.858 5191 no
## 4089 1.1 93.994 -36.4 4.858 5191 no
## 4090 1.1 93.994 -36.4 4.858 5191 no
## 4091 1.1 93.994 -36.4 4.858 5191 no
## 4092 1.1 93.994 -36.4 4.858 5191 no
## 4093 1.1 93.994 -36.4 4.858 5191 no
## 4094 1.1 93.994 -36.4 4.858 5191 no
## 4095 1.1 93.994 -36.4 4.858 5191 no
## 4096 1.1 93.994 -36.4 4.858 5191 no
## 4097 1.1 93.994 -36.4 4.858 5191 no
## 4098 1.1 93.994 -36.4 4.858 5191 no
## 4099 1.1 93.994 -36.4 4.858 5191 no
## 4100 1.1 93.994 -36.4 4.858 5191 no
## 4101 1.1 93.994 -36.4 4.858 5191 no
## 4102 1.1 93.994 -36.4 4.858 5191 no
## 4103 1.1 93.994 -36.4 4.858 5191 no
## 4104 1.1 93.994 -36.4 4.858 5191 no
## 4105 1.1 93.994 -36.4 4.858 5191 no
## 4106 1.1 93.994 -36.4 4.858 5191 no
## 4107 1.1 93.994 -36.4 4.858 5191 no
## 4108 1.1 93.994 -36.4 4.858 5191 no
## 4109 1.1 93.994 -36.4 4.858 5191 no
## 4110 1.1 93.994 -36.4 4.858 5191 no
## 4111 1.1 93.994 -36.4 4.858 5191 yes
## 4112 1.1 93.994 -36.4 4.858 5191 no
## 4113 1.1 93.994 -36.4 4.858 5191 no
## 4114 1.1 93.994 -36.4 4.858 5191 no
## 4115 1.1 93.994 -36.4 4.858 5191 no
## 4116 1.1 93.994 -36.4 4.858 5191 no
## 4117 1.1 93.994 -36.4 4.858 5191 no
## 4118 1.1 93.994 -36.4 4.858 5191 no
## 4119 1.1 93.994 -36.4 4.858 5191 no
## 4120 1.1 93.994 -36.4 4.858 5191 no
## 4121 1.1 93.994 -36.4 4.858 5191 no
## 4122 1.1 93.994 -36.4 4.858 5191 no
## 4123 1.1 93.994 -36.4 4.858 5191 no
## 4124 1.1 93.994 -36.4 4.858 5191 no
## 4125 1.1 93.994 -36.4 4.858 5191 no
## 4126 1.1 93.994 -36.4 4.858 5191 no
## 4127 1.1 93.994 -36.4 4.858 5191 no
## 4128 1.1 93.994 -36.4 4.858 5191 no
## 4129 1.1 93.994 -36.4 4.858 5191 no
## 4130 1.1 93.994 -36.4 4.858 5191 no
## 4131 1.1 93.994 -36.4 4.858 5191 no
## 4132 1.1 93.994 -36.4 4.858 5191 no
## 4133 1.1 93.994 -36.4 4.858 5191 no
## 4134 1.1 93.994 -36.4 4.858 5191 no
## 4135 1.1 93.994 -36.4 4.858 5191 no
## 4136 1.1 93.994 -36.4 4.858 5191 no
## 4137 1.1 93.994 -36.4 4.858 5191 no
## 4138 1.1 93.994 -36.4 4.858 5191 no
## 4139 1.1 93.994 -36.4 4.858 5191 no
## 4140 1.1 93.994 -36.4 4.858 5191 no
## 4141 1.1 93.994 -36.4 4.858 5191 no
## 4142 1.1 93.994 -36.4 4.858 5191 no
## 4143 1.1 93.994 -36.4 4.858 5191 no
## 4144 1.1 93.994 -36.4 4.858 5191 no
## 4145 1.1 93.994 -36.4 4.858 5191 no
## 4146 1.1 93.994 -36.4 4.858 5191 no
## 4147 1.1 93.994 -36.4 4.858 5191 no
## 4148 1.1 93.994 -36.4 4.858 5191 no
## 4149 1.1 93.994 -36.4 4.858 5191 no
## 4150 1.1 93.994 -36.4 4.858 5191 no
## 4151 1.1 93.994 -36.4 4.858 5191 no
## 4152 1.1 93.994 -36.4 4.858 5191 no
## 4153 1.1 93.994 -36.4 4.858 5191 yes
## 4154 1.1 93.994 -36.4 4.858 5191 no
## 4155 1.1 93.994 -36.4 4.858 5191 no
## 4156 1.1 93.994 -36.4 4.858 5191 no
## 4157 1.1 93.994 -36.4 4.858 5191 no
## 4158 1.1 93.994 -36.4 4.858 5191 no
## 4159 1.1 93.994 -36.4 4.858 5191 no
## 4160 1.1 93.994 -36.4 4.858 5191 no
## 4161 1.1 93.994 -36.4 4.858 5191 no
## 4162 1.1 93.994 -36.4 4.858 5191 no
## 4163 1.1 93.994 -36.4 4.858 5191 no
## 4164 1.1 93.994 -36.4 4.858 5191 no
## 4165 1.1 93.994 -36.4 4.858 5191 yes
## 4166 1.1 93.994 -36.4 4.858 5191 no
## 4167 1.1 93.994 -36.4 4.858 5191 no
## 4168 1.1 93.994 -36.4 4.858 5191 yes
## 4169 1.1 93.994 -36.4 4.858 5191 no
## 4170 1.1 93.994 -36.4 4.858 5191 no
## 4171 1.1 93.994 -36.4 4.858 5191 no
## 4172 1.1 93.994 -36.4 4.858 5191 no
## 4173 1.1 93.994 -36.4 4.858 5191 no
## 4174 1.1 93.994 -36.4 4.858 5191 no
## 4175 1.1 93.994 -36.4 4.858 5191 no
## 4176 1.1 93.994 -36.4 4.858 5191 no
## 4177 1.1 93.994 -36.4 4.858 5191 no
## 4178 1.1 93.994 -36.4 4.858 5191 no
## 4179 1.1 93.994 -36.4 4.858 5191 no
## 4180 1.1 93.994 -36.4 4.858 5191 no
## 4181 1.1 93.994 -36.4 4.858 5191 no
## 4182 1.1 93.994 -36.4 4.858 5191 no
## 4183 1.1 93.994 -36.4 4.858 5191 no
## 4184 1.1 93.994 -36.4 4.858 5191 no
## 4185 1.1 93.994 -36.4 4.858 5191 no
## 4186 1.1 93.994 -36.4 4.858 5191 no
## 4187 1.1 93.994 -36.4 4.858 5191 no
## 4188 1.1 93.994 -36.4 4.858 5191 no
## 4189 1.1 93.994 -36.4 4.858 5191 no
## 4190 1.1 93.994 -36.4 4.858 5191 no
## 4191 1.1 93.994 -36.4 4.858 5191 no
## 4192 1.1 93.994 -36.4 4.858 5191 no
## 4193 1.1 93.994 -36.4 4.858 5191 no
## 4194 1.1 93.994 -36.4 4.858 5191 no
## 4195 1.1 93.994 -36.4 4.858 5191 no
## 4196 1.1 93.994 -36.4 4.858 5191 no
## 4197 1.1 93.994 -36.4 4.858 5191 no
## 4198 1.1 93.994 -36.4 4.858 5191 no
## 4199 1.1 93.994 -36.4 4.858 5191 no
## 4200 1.1 93.994 -36.4 4.858 5191 no
## 4201 1.1 93.994 -36.4 4.858 5191 no
## 4202 1.1 93.994 -36.4 4.858 5191 no
## 4203 1.1 93.994 -36.4 4.858 5191 no
## 4204 1.1 93.994 -36.4 4.858 5191 no
## 4205 1.1 93.994 -36.4 4.858 5191 no
## 4206 1.1 93.994 -36.4 4.858 5191 no
## 4207 1.1 93.994 -36.4 4.858 5191 no
## 4208 1.1 93.994 -36.4 4.858 5191 no
## 4209 1.1 93.994 -36.4 4.858 5191 no
## 4210 1.1 93.994 -36.4 4.858 5191 yes
## 4211 1.1 93.994 -36.4 4.858 5191 no
## 4212 1.1 93.994 -36.4 4.858 5191 no
## 4213 1.1 93.994 -36.4 4.858 5191 no
## 4214 1.1 93.994 -36.4 4.858 5191 no
## 4215 1.1 93.994 -36.4 4.856 5191 no
## 4216 1.1 93.994 -36.4 4.856 5191 no
## 4217 1.1 93.994 -36.4 4.856 5191 no
## 4218 1.1 93.994 -36.4 4.856 5191 no
## 4219 1.1 93.994 -36.4 4.856 5191 no
## 4220 1.1 93.994 -36.4 4.856 5191 no
## 4221 1.1 93.994 -36.4 4.856 5191 no
## 4222 1.1 93.994 -36.4 4.856 5191 no
## 4223 1.1 93.994 -36.4 4.856 5191 no
## 4224 1.1 93.994 -36.4 4.856 5191 no
## 4225 1.1 93.994 -36.4 4.856 5191 no
## 4226 1.1 93.994 -36.4 4.856 5191 no
## 4227 1.1 93.994 -36.4 4.856 5191 no
## 4228 1.1 93.994 -36.4 4.856 5191 no
## 4229 1.1 93.994 -36.4 4.856 5191 no
## 4230 1.1 93.994 -36.4 4.856 5191 no
## 4231 1.1 93.994 -36.4 4.856 5191 no
## 4232 1.1 93.994 -36.4 4.856 5191 no
## 4233 1.1 93.994 -36.4 4.856 5191 no
## 4234 1.1 93.994 -36.4 4.856 5191 no
## 4235 1.1 93.994 -36.4 4.856 5191 no
## 4236 1.1 93.994 -36.4 4.856 5191 no
## 4237 1.1 93.994 -36.4 4.856 5191 no
## 4238 1.1 93.994 -36.4 4.856 5191 no
## 4239 1.1 93.994 -36.4 4.856 5191 no
## 4240 1.1 93.994 -36.4 4.856 5191 no
## 4241 1.1 93.994 -36.4 4.856 5191 no
## 4242 1.1 93.994 -36.4 4.856 5191 no
## 4243 1.1 93.994 -36.4 4.856 5191 no
## 4244 1.1 93.994 -36.4 4.856 5191 no
## 4245 1.1 93.994 -36.4 4.856 5191 no
## 4246 1.1 93.994 -36.4 4.856 5191 no
## 4247 1.1 93.994 -36.4 4.856 5191 no
## 4248 1.1 93.994 -36.4 4.856 5191 no
## 4249 1.1 93.994 -36.4 4.856 5191 no
## 4250 1.1 93.994 -36.4 4.856 5191 no
## 4251 1.1 93.994 -36.4 4.856 5191 no
## 4252 1.1 93.994 -36.4 4.856 5191 no
## 4253 1.1 93.994 -36.4 4.856 5191 yes
## 4254 1.1 93.994 -36.4 4.856 5191 no
## 4255 1.1 93.994 -36.4 4.856 5191 no
## 4256 1.1 93.994 -36.4 4.856 5191 no
## 4257 1.1 93.994 -36.4 4.856 5191 no
## 4258 1.1 93.994 -36.4 4.856 5191 no
## 4259 1.1 93.994 -36.4 4.856 5191 no
## 4260 1.1 93.994 -36.4 4.856 5191 no
## 4261 1.1 93.994 -36.4 4.856 5191 no
## 4262 1.1 93.994 -36.4 4.856 5191 no
## 4263 1.1 93.994 -36.4 4.856 5191 no
## 4264 1.1 93.994 -36.4 4.856 5191 no
## 4265 1.1 93.994 -36.4 4.856 5191 yes
## 4266 1.1 93.994 -36.4 4.856 5191 no
## 4267 1.1 93.994 -36.4 4.856 5191 no
## 4268 1.1 93.994 -36.4 4.856 5191 no
## 4269 1.1 93.994 -36.4 4.856 5191 yes
## 4270 1.1 93.994 -36.4 4.856 5191 no
## 4271 1.1 93.994 -36.4 4.856 5191 no
## 4272 1.1 93.994 -36.4 4.856 5191 no
## 4273 1.1 93.994 -36.4 4.856 5191 no
## 4274 1.1 93.994 -36.4 4.856 5191 no
## 4275 1.1 93.994 -36.4 4.856 5191 no
## 4276 1.1 93.994 -36.4 4.856 5191 no
## 4277 1.1 93.994 -36.4 4.856 5191 no
## 4278 1.1 93.994 -36.4 4.856 5191 no
## 4279 1.1 93.994 -36.4 4.856 5191 no
## 4280 1.1 93.994 -36.4 4.856 5191 no
## 4281 1.1 93.994 -36.4 4.856 5191 no
## 4282 1.1 93.994 -36.4 4.856 5191 no
## 4283 1.1 93.994 -36.4 4.856 5191 no
## 4284 1.1 93.994 -36.4 4.856 5191 no
## 4285 1.1 93.994 -36.4 4.856 5191 no
## 4286 1.1 93.994 -36.4 4.856 5191 no
## 4287 1.1 93.994 -36.4 4.856 5191 no
## 4288 1.1 93.994 -36.4 4.856 5191 no
## 4289 1.1 93.994 -36.4 4.856 5191 no
## 4290 1.1 93.994 -36.4 4.856 5191 no
## 4291 1.1 93.994 -36.4 4.856 5191 no
## 4292 1.1 93.994 -36.4 4.856 5191 no
## 4293 1.1 93.994 -36.4 4.856 5191 no
## 4294 1.1 93.994 -36.4 4.856 5191 no
## 4295 1.1 93.994 -36.4 4.856 5191 yes
## 4296 1.1 93.994 -36.4 4.856 5191 no
## 4297 1.1 93.994 -36.4 4.856 5191 no
## 4298 1.1 93.994 -36.4 4.856 5191 no
## 4299 1.1 93.994 -36.4 4.856 5191 no
## 4300 1.1 93.994 -36.4 4.856 5191 no
## 4301 1.1 93.994 -36.4 4.856 5191 no
## 4302 1.1 93.994 -36.4 4.856 5191 no
## 4303 1.1 93.994 -36.4 4.856 5191 no
## 4304 1.1 93.994 -36.4 4.856 5191 no
## 4305 1.1 93.994 -36.4 4.856 5191 no
## 4306 1.1 93.994 -36.4 4.856 5191 no
## 4307 1.1 93.994 -36.4 4.856 5191 no
## 4308 1.1 93.994 -36.4 4.856 5191 no
## 4309 1.1 93.994 -36.4 4.856 5191 no
## 4310 1.1 93.994 -36.4 4.856 5191 no
## 4311 1.1 93.994 -36.4 4.856 5191 no
## 4312 1.1 93.994 -36.4 4.856 5191 no
## 4313 1.1 93.994 -36.4 4.856 5191 no
## 4314 1.1 93.994 -36.4 4.856 5191 no
## 4315 1.1 93.994 -36.4 4.856 5191 no
## 4316 1.1 93.994 -36.4 4.856 5191 no
## 4317 1.1 93.994 -36.4 4.856 5191 no
## 4318 1.1 93.994 -36.4 4.856 5191 no
## 4319 1.1 93.994 -36.4 4.856 5191 no
## 4320 1.1 93.994 -36.4 4.856 5191 no
## 4321 1.1 93.994 -36.4 4.856 5191 no
## 4322 1.1 93.994 -36.4 4.856 5191 no
## 4323 1.1 93.994 -36.4 4.856 5191 no
## 4324 1.1 93.994 -36.4 4.856 5191 no
## 4325 1.1 93.994 -36.4 4.856 5191 no
## 4326 1.1 93.994 -36.4 4.856 5191 no
## 4327 1.1 93.994 -36.4 4.856 5191 no
## 4328 1.1 93.994 -36.4 4.856 5191 no
## 4329 1.1 93.994 -36.4 4.856 5191 no
## 4330 1.1 93.994 -36.4 4.856 5191 no
## 4331 1.1 93.994 -36.4 4.856 5191 no
## 4332 1.1 93.994 -36.4 4.856 5191 no
## 4333 1.1 93.994 -36.4 4.856 5191 no
## 4334 1.1 93.994 -36.4 4.856 5191 no
## 4335 1.1 93.994 -36.4 4.856 5191 no
## 4336 1.1 93.994 -36.4 4.856 5191 no
## 4337 1.1 93.994 -36.4 4.856 5191 no
## 4338 1.1 93.994 -36.4 4.856 5191 no
## 4339 1.1 93.994 -36.4 4.856 5191 no
## 4340 1.1 93.994 -36.4 4.856 5191 no
## 4341 1.1 93.994 -36.4 4.856 5191 no
## 4342 1.1 93.994 -36.4 4.856 5191 no
## 4343 1.1 93.994 -36.4 4.856 5191 no
## 4344 1.1 93.994 -36.4 4.856 5191 no
## 4345 1.1 93.994 -36.4 4.856 5191 no
## 4346 1.1 93.994 -36.4 4.856 5191 no
## 4347 1.1 93.994 -36.4 4.856 5191 no
## 4348 1.1 93.994 -36.4 4.856 5191 no
## 4349 1.1 93.994 -36.4 4.856 5191 no
## 4350 1.1 93.994 -36.4 4.856 5191 no
## 4351 1.1 93.994 -36.4 4.856 5191 no
## 4352 1.1 93.994 -36.4 4.856 5191 no
## 4353 1.1 93.994 -36.4 4.856 5191 no
## 4354 1.1 93.994 -36.4 4.856 5191 yes
## 4355 1.1 93.994 -36.4 4.856 5191 no
## 4356 1.1 93.994 -36.4 4.856 5191 no
## 4357 1.1 93.994 -36.4 4.856 5191 no
## 4358 1.1 93.994 -36.4 4.856 5191 no
## 4359 1.1 93.994 -36.4 4.856 5191 no
## 4360 1.1 93.994 -36.4 4.856 5191 no
## 4361 1.1 93.994 -36.4 4.856 5191 no
## 4362 1.1 93.994 -36.4 4.856 5191 no
## 4363 1.1 93.994 -36.4 4.856 5191 no
## 4364 1.1 93.994 -36.4 4.856 5191 no
## 4365 1.1 93.994 -36.4 4.856 5191 no
## 4366 1.1 93.994 -36.4 4.856 5191 no
## 4367 1.1 93.994 -36.4 4.856 5191 no
## 4368 1.1 93.994 -36.4 4.856 5191 no
## 4369 1.1 93.994 -36.4 4.856 5191 no
## 4370 1.1 93.994 -36.4 4.856 5191 no
## 4371 1.1 93.994 -36.4 4.856 5191 no
## 4372 1.1 93.994 -36.4 4.856 5191 no
## 4373 1.1 93.994 -36.4 4.856 5191 no
## 4374 1.1 93.994 -36.4 4.856 5191 no
## 4375 1.1 93.994 -36.4 4.856 5191 no
## 4376 1.1 93.994 -36.4 4.856 5191 no
## 4377 1.1 93.994 -36.4 4.856 5191 no
## 4378 1.1 93.994 -36.4 4.856 5191 no
## 4379 1.1 93.994 -36.4 4.856 5191 no
## 4380 1.1 93.994 -36.4 4.856 5191 no
## 4381 1.1 93.994 -36.4 4.856 5191 no
## 4382 1.1 93.994 -36.4 4.856 5191 no
## 4383 1.1 93.994 -36.4 4.856 5191 no
## 4384 1.1 93.994 -36.4 4.856 5191 no
## 4385 1.1 93.994 -36.4 4.856 5191 no
## 4386 1.1 93.994 -36.4 4.856 5191 no
## 4387 1.1 93.994 -36.4 4.856 5191 no
## 4388 1.1 93.994 -36.4 4.856 5191 no
## 4389 1.1 93.994 -36.4 4.856 5191 no
## 4390 1.1 93.994 -36.4 4.856 5191 no
## 4391 1.1 93.994 -36.4 4.856 5191 no
## 4392 1.1 93.994 -36.4 4.856 5191 no
## 4393 1.1 93.994 -36.4 4.856 5191 no
## 4394 1.1 93.994 -36.4 4.856 5191 no
## 4395 1.1 93.994 -36.4 4.856 5191 no
## 4396 1.1 93.994 -36.4 4.856 5191 no
## 4397 1.1 93.994 -36.4 4.856 5191 no
## 4398 1.1 93.994 -36.4 4.856 5191 no
## 4399 1.1 93.994 -36.4 4.856 5191 no
## 4400 1.1 93.994 -36.4 4.856 5191 no
## 4401 1.1 93.994 -36.4 4.856 5191 no
## 4402 1.1 93.994 -36.4 4.856 5191 no
## 4403 1.1 93.994 -36.4 4.856 5191 no
## 4404 1.1 93.994 -36.4 4.856 5191 no
## 4405 1.1 93.994 -36.4 4.856 5191 no
## 4406 1.1 93.994 -36.4 4.856 5191 no
## 4407 1.1 93.994 -36.4 4.856 5191 no
## 4408 1.1 93.994 -36.4 4.856 5191 no
## 4409 1.1 93.994 -36.4 4.856 5191 no
## 4410 1.1 93.994 -36.4 4.856 5191 no
## 4411 1.1 93.994 -36.4 4.856 5191 no
## 4412 1.1 93.994 -36.4 4.856 5191 no
## 4413 1.1 93.994 -36.4 4.856 5191 no
## 4414 1.1 93.994 -36.4 4.856 5191 no
## 4415 1.1 93.994 -36.4 4.856 5191 no
## 4416 1.1 93.994 -36.4 4.856 5191 no
## 4417 1.1 93.994 -36.4 4.856 5191 no
## 4418 1.1 93.994 -36.4 4.856 5191 no
## 4419 1.1 93.994 -36.4 4.856 5191 no
## 4420 1.1 93.994 -36.4 4.856 5191 no
## 4421 1.1 93.994 -36.4 4.856 5191 no
## 4422 1.1 93.994 -36.4 4.856 5191 no
## 4423 1.1 93.994 -36.4 4.856 5191 no
## 4424 1.1 93.994 -36.4 4.856 5191 no
## 4425 1.1 93.994 -36.4 4.856 5191 no
## 4426 1.1 93.994 -36.4 4.856 5191 no
## 4427 1.1 93.994 -36.4 4.856 5191 no
## 4428 1.1 93.994 -36.4 4.856 5191 no
## 4429 1.1 93.994 -36.4 4.856 5191 no
## 4430 1.1 93.994 -36.4 4.856 5191 no
## 4431 1.1 93.994 -36.4 4.856 5191 no
## 4432 1.1 93.994 -36.4 4.856 5191 no
## 4433 1.1 93.994 -36.4 4.856 5191 no
## 4434 1.1 93.994 -36.4 4.856 5191 no
## 4435 1.1 93.994 -36.4 4.856 5191 no
## 4436 1.1 93.994 -36.4 4.856 5191 no
## 4437 1.1 93.994 -36.4 4.856 5191 no
## 4438 1.1 93.994 -36.4 4.856 5191 no
## 4439 1.1 93.994 -36.4 4.856 5191 no
## 4440 1.1 93.994 -36.4 4.856 5191 no
## 4441 1.1 93.994 -36.4 4.856 5191 no
## 4442 1.1 93.994 -36.4 4.856 5191 no
## 4443 1.1 93.994 -36.4 4.856 5191 no
## 4444 1.1 93.994 -36.4 4.856 5191 no
## 4445 1.1 93.994 -36.4 4.856 5191 no
## 4446 1.1 93.994 -36.4 4.856 5191 no
## 4447 1.1 93.994 -36.4 4.856 5191 no
## 4448 1.1 93.994 -36.4 4.856 5191 no
## 4449 1.1 93.994 -36.4 4.856 5191 no
## 4450 1.1 93.994 -36.4 4.856 5191 no
## 4451 1.1 93.994 -36.4 4.856 5191 no
## 4452 1.1 93.994 -36.4 4.856 5191 no
## 4453 1.1 93.994 -36.4 4.856 5191 no
## 4454 1.1 93.994 -36.4 4.856 5191 no
## 4455 1.1 93.994 -36.4 4.856 5191 no
## 4456 1.1 93.994 -36.4 4.856 5191 no
## 4457 1.1 93.994 -36.4 4.856 5191 no
## 4458 1.1 93.994 -36.4 4.856 5191 no
## 4459 1.1 93.994 -36.4 4.856 5191 no
## 4460 1.1 93.994 -36.4 4.856 5191 no
## 4461 1.1 93.994 -36.4 4.856 5191 no
## 4462 1.1 93.994 -36.4 4.856 5191 no
## 4463 1.1 93.994 -36.4 4.856 5191 no
## 4464 1.1 93.994 -36.4 4.856 5191 no
## 4465 1.1 93.994 -36.4 4.856 5191 no
## 4466 1.1 93.994 -36.4 4.856 5191 no
## 4467 1.1 93.994 -36.4 4.856 5191 no
## 4468 1.1 93.994 -36.4 4.856 5191 no
## 4469 1.1 93.994 -36.4 4.856 5191 no
## 4470 1.1 93.994 -36.4 4.856 5191 no
## 4471 1.1 93.994 -36.4 4.856 5191 no
## 4472 1.1 93.994 -36.4 4.856 5191 no
## 4473 1.1 93.994 -36.4 4.856 5191 no
## 4474 1.1 93.994 -36.4 4.856 5191 no
## 4475 1.1 93.994 -36.4 4.856 5191 no
## 4476 1.1 93.994 -36.4 4.856 5191 no
## 4477 1.1 93.994 -36.4 4.856 5191 no
## 4478 1.1 93.994 -36.4 4.856 5191 no
## 4479 1.1 93.994 -36.4 4.856 5191 no
## 4480 1.1 93.994 -36.4 4.856 5191 yes
## 4481 1.1 93.994 -36.4 4.856 5191 no
## 4482 1.1 93.994 -36.4 4.856 5191 no
## 4483 1.1 93.994 -36.4 4.856 5191 no
## 4484 1.1 93.994 -36.4 4.856 5191 no
## 4485 1.1 93.994 -36.4 4.856 5191 no
## 4486 1.1 93.994 -36.4 4.856 5191 yes
## 4487 1.1 93.994 -36.4 4.856 5191 no
## 4488 1.1 93.994 -36.4 4.856 5191 no
## 4489 1.1 93.994 -36.4 4.856 5191 no
## 4490 1.1 93.994 -36.4 4.856 5191 no
## 4491 1.1 93.994 -36.4 4.856 5191 no
## 4492 1.1 93.994 -36.4 4.856 5191 no
## 4493 1.1 93.994 -36.4 4.856 5191 no
## 4494 1.1 93.994 -36.4 4.856 5191 no
## 4495 1.1 93.994 -36.4 4.856 5191 no
## 4496 1.1 93.994 -36.4 4.856 5191 no
## 4497 1.1 93.994 -36.4 4.856 5191 no
## 4498 1.1 93.994 -36.4 4.856 5191 no
## 4499 1.1 93.994 -36.4 4.856 5191 no
## 4500 1.1 93.994 -36.4 4.856 5191 no
## 4501 1.1 93.994 -36.4 4.856 5191 no
## 4502 1.1 93.994 -36.4 4.856 5191 no
## 4503 1.1 93.994 -36.4 4.856 5191 no
## 4504 1.1 93.994 -36.4 4.856 5191 no
## 4505 1.1 93.994 -36.4 4.856 5191 no
## 4506 1.1 93.994 -36.4 4.856 5191 no
## 4507 1.1 93.994 -36.4 4.856 5191 no
## 4508 1.1 93.994 -36.4 4.856 5191 no
## 4509 1.1 93.994 -36.4 4.856 5191 no
## 4510 1.1 93.994 -36.4 4.856 5191 no
## 4511 1.1 93.994 -36.4 4.856 5191 no
## 4512 1.1 93.994 -36.4 4.856 5191 no
## 4513 1.1 93.994 -36.4 4.856 5191 no
## 4514 1.1 93.994 -36.4 4.856 5191 no
## 4515 1.1 93.994 -36.4 4.856 5191 no
## 4516 1.1 93.994 -36.4 4.856 5191 no
## 4517 1.1 93.994 -36.4 4.856 5191 no
## 4518 1.1 93.994 -36.4 4.856 5191 no
## 4519 1.1 93.994 -36.4 4.856 5191 no
## 4520 1.1 93.994 -36.4 4.856 5191 no
## 4521 1.1 93.994 -36.4 4.856 5191 no
## 4522 1.1 93.994 -36.4 4.856 5191 no
## 4523 1.1 93.994 -36.4 4.856 5191 yes
## 4524 1.1 93.994 -36.4 4.856 5191 no
## 4525 1.1 93.994 -36.4 4.856 5191 no
## 4526 1.1 93.994 -36.4 4.856 5191 no
## 4527 1.1 93.994 -36.4 4.856 5191 no
## 4528 1.1 93.994 -36.4 4.856 5191 no
## 4529 1.1 93.994 -36.4 4.856 5191 no
## 4530 1.1 93.994 -36.4 4.856 5191 no
## 4531 1.1 93.994 -36.4 4.856 5191 no
## 4532 1.1 93.994 -36.4 4.856 5191 no
## 4533 1.1 93.994 -36.4 4.856 5191 no
## 4534 1.1 93.994 -36.4 4.856 5191 no
## 4535 1.1 93.994 -36.4 4.856 5191 no
## 4536 1.1 93.994 -36.4 4.856 5191 no
## 4537 1.1 93.994 -36.4 4.856 5191 no
## 4538 1.1 93.994 -36.4 4.856 5191 no
## 4539 1.1 93.994 -36.4 4.856 5191 no
## 4540 1.1 93.994 -36.4 4.856 5191 no
## 4541 1.1 93.994 -36.4 4.856 5191 no
## 4542 1.1 93.994 -36.4 4.856 5191 no
## 4543 1.1 93.994 -36.4 4.856 5191 no
## 4544 1.1 93.994 -36.4 4.856 5191 no
## 4545 1.1 93.994 -36.4 4.856 5191 no
## 4546 1.1 93.994 -36.4 4.856 5191 no
## 4547 1.1 93.994 -36.4 4.856 5191 no
## 4548 1.1 93.994 -36.4 4.856 5191 no
## 4549 1.1 93.994 -36.4 4.856 5191 no
## 4550 1.1 93.994 -36.4 4.856 5191 no
## 4551 1.1 93.994 -36.4 4.856 5191 no
## 4552 1.1 93.994 -36.4 4.856 5191 no
## 4553 1.1 93.994 -36.4 4.856 5191 no
## 4554 1.1 93.994 -36.4 4.856 5191 no
## 4555 1.1 93.994 -36.4 4.856 5191 no
## 4556 1.1 93.994 -36.4 4.856 5191 no
## 4557 1.1 93.994 -36.4 4.856 5191 no
## 4558 1.1 93.994 -36.4 4.856 5191 no
## 4559 1.1 93.994 -36.4 4.856 5191 no
## 4560 1.1 93.994 -36.4 4.856 5191 no
## 4561 1.1 93.994 -36.4 4.856 5191 no
## 4562 1.1 93.994 -36.4 4.856 5191 no
## 4563 1.1 93.994 -36.4 4.856 5191 no
## 4564 1.1 93.994 -36.4 4.856 5191 no
## 4565 1.1 93.994 -36.4 4.856 5191 no
## 4566 1.1 93.994 -36.4 4.856 5191 no
## 4567 1.1 93.994 -36.4 4.856 5191 no
## 4568 1.1 93.994 -36.4 4.856 5191 no
## 4569 1.1 93.994 -36.4 4.856 5191 no
## 4570 1.1 93.994 -36.4 4.856 5191 no
## 4571 1.1 93.994 -36.4 4.856 5191 no
## 4572 1.1 93.994 -36.4 4.856 5191 no
## 4573 1.1 93.994 -36.4 4.856 5191 no
## 4574 1.1 93.994 -36.4 4.856 5191 no
## 4575 1.1 93.994 -36.4 4.856 5191 no
## 4576 1.1 93.994 -36.4 4.856 5191 no
## 4577 1.1 93.994 -36.4 4.856 5191 no
## 4578 1.1 93.994 -36.4 4.856 5191 no
## 4579 1.1 93.994 -36.4 4.856 5191 no
## 4580 1.1 93.994 -36.4 4.856 5191 no
## 4581 1.1 93.994 -36.4 4.856 5191 no
## 4582 1.1 93.994 -36.4 4.856 5191 no
## 4583 1.1 93.994 -36.4 4.856 5191 no
## 4584 1.1 93.994 -36.4 4.856 5191 no
## 4585 1.1 93.994 -36.4 4.856 5191 no
## 4586 1.1 93.994 -36.4 4.856 5191 no
## 4587 1.1 93.994 -36.4 4.856 5191 no
## 4588 1.1 93.994 -36.4 4.856 5191 no
## 4589 1.1 93.994 -36.4 4.856 5191 no
## 4590 1.1 93.994 -36.4 4.856 5191 no
## 4591 1.1 93.994 -36.4 4.856 5191 no
## 4592 1.1 93.994 -36.4 4.856 5191 no
## 4593 1.1 93.994 -36.4 4.856 5191 no
## 4594 1.1 93.994 -36.4 4.856 5191 no
## 4595 1.1 93.994 -36.4 4.856 5191 no
## 4596 1.1 93.994 -36.4 4.856 5191 no
## 4597 1.1 93.994 -36.4 4.856 5191 no
## 4598 1.1 93.994 -36.4 4.856 5191 no
## 4599 1.1 93.994 -36.4 4.856 5191 no
## 4600 1.1 93.994 -36.4 4.856 5191 no
## 4601 1.1 93.994 -36.4 4.856 5191 no
## 4602 1.1 93.994 -36.4 4.856 5191 no
## 4603 1.1 93.994 -36.4 4.856 5191 no
## 4604 1.1 93.994 -36.4 4.856 5191 no
## 4605 1.1 93.994 -36.4 4.856 5191 no
## 4606 1.1 93.994 -36.4 4.856 5191 no
## 4607 1.1 93.994 -36.4 4.856 5191 no
## 4608 1.1 93.994 -36.4 4.856 5191 no
## 4609 1.1 93.994 -36.4 4.856 5191 no
## 4610 1.1 93.994 -36.4 4.856 5191 yes
## 4611 1.1 93.994 -36.4 4.856 5191 no
## 4612 1.1 93.994 -36.4 4.856 5191 no
## 4613 1.1 93.994 -36.4 4.856 5191 no
## 4614 1.1 93.994 -36.4 4.856 5191 no
## 4615 1.1 93.994 -36.4 4.856 5191 no
## 4616 1.1 93.994 -36.4 4.856 5191 no
## 4617 1.1 93.994 -36.4 4.856 5191 no
## 4618 1.1 93.994 -36.4 4.856 5191 no
## 4619 1.1 93.994 -36.4 4.856 5191 no
## 4620 1.1 93.994 -36.4 4.856 5191 no
## 4621 1.1 93.994 -36.4 4.856 5191 no
## 4622 1.1 93.994 -36.4 4.856 5191 no
## 4623 1.1 93.994 -36.4 4.856 5191 no
## 4624 1.1 93.994 -36.4 4.856 5191 yes
## 4625 1.1 93.994 -36.4 4.856 5191 no
## 4626 1.1 93.994 -36.4 4.856 5191 no
## 4627 1.1 93.994 -36.4 4.858 5191 no
## 4628 1.1 93.994 -36.4 4.858 5191 no
## 4629 1.1 93.994 -36.4 4.858 5191 no
## 4630 1.1 93.994 -36.4 4.858 5191 no
## 4631 1.1 93.994 -36.4 4.858 5191 no
## 4632 1.1 93.994 -36.4 4.858 5191 no
## 4633 1.1 93.994 -36.4 4.858 5191 no
## 4634 1.1 93.994 -36.4 4.858 5191 no
## 4635 1.1 93.994 -36.4 4.858 5191 no
## 4636 1.1 93.994 -36.4 4.858 5191 yes
## 4637 1.1 93.994 -36.4 4.858 5191 no
## 4638 1.1 93.994 -36.4 4.858 5191 no
## 4639 1.1 93.994 -36.4 4.858 5191 no
## 4640 1.1 93.994 -36.4 4.858 5191 no
## 4641 1.1 93.994 -36.4 4.858 5191 no
## 4642 1.1 93.994 -36.4 4.858 5191 no
## 4643 1.1 93.994 -36.4 4.858 5191 no
## 4644 1.1 93.994 -36.4 4.858 5191 no
## 4645 1.1 93.994 -36.4 4.858 5191 no
## 4646 1.1 93.994 -36.4 4.858 5191 no
## 4647 1.1 93.994 -36.4 4.858 5191 no
## 4648 1.1 93.994 -36.4 4.858 5191 no
## 4649 1.1 93.994 -36.4 4.858 5191 no
## 4650 1.1 93.994 -36.4 4.858 5191 no
## 4651 1.1 93.994 -36.4 4.858 5191 no
## 4652 1.1 93.994 -36.4 4.858 5191 no
## 4653 1.1 93.994 -36.4 4.858 5191 yes
## 4654 1.1 93.994 -36.4 4.858 5191 no
## 4655 1.1 93.994 -36.4 4.858 5191 no
## 4656 1.1 93.994 -36.4 4.858 5191 no
## 4657 1.1 93.994 -36.4 4.858 5191 no
## 4658 1.1 93.994 -36.4 4.858 5191 no
## 4659 1.1 93.994 -36.4 4.858 5191 no
## 4660 1.1 93.994 -36.4 4.858 5191 no
## 4661 1.1 93.994 -36.4 4.858 5191 no
## 4662 1.1 93.994 -36.4 4.858 5191 no
## 4663 1.1 93.994 -36.4 4.858 5191 no
## 4664 1.1 93.994 -36.4 4.858 5191 no
## 4665 1.1 93.994 -36.4 4.858 5191 no
## 4666 1.1 93.994 -36.4 4.858 5191 no
## 4667 1.1 93.994 -36.4 4.858 5191 no
## 4668 1.1 93.994 -36.4 4.858 5191 no
## 4669 1.1 93.994 -36.4 4.858 5191 no
## 4670 1.1 93.994 -36.4 4.858 5191 no
## 4671 1.1 93.994 -36.4 4.858 5191 no
## 4672 1.1 93.994 -36.4 4.858 5191 no
## 4673 1.1 93.994 -36.4 4.858 5191 yes
## 4674 1.1 93.994 -36.4 4.858 5191 no
## 4675 1.1 93.994 -36.4 4.858 5191 no
## 4676 1.1 93.994 -36.4 4.858 5191 no
## 4677 1.1 93.994 -36.4 4.858 5191 no
## 4678 1.1 93.994 -36.4 4.858 5191 yes
## 4679 1.1 93.994 -36.4 4.858 5191 no
## 4680 1.1 93.994 -36.4 4.858 5191 no
## 4681 1.1 93.994 -36.4 4.858 5191 no
## 4682 1.1 93.994 -36.4 4.858 5191 no
## 4683 1.1 93.994 -36.4 4.858 5191 no
## 4684 1.1 93.994 -36.4 4.858 5191 no
## 4685 1.1 93.994 -36.4 4.858 5191 no
## 4686 1.1 93.994 -36.4 4.858 5191 no
## 4687 1.1 93.994 -36.4 4.858 5191 no
## 4688 1.1 93.994 -36.4 4.858 5191 no
## 4689 1.1 93.994 -36.4 4.858 5191 no
## 4690 1.1 93.994 -36.4 4.858 5191 no
## 4691 1.1 93.994 -36.4 4.858 5191 no
## 4692 1.1 93.994 -36.4 4.858 5191 no
## 4693 1.1 93.994 -36.4 4.858 5191 no
## 4694 1.1 93.994 -36.4 4.858 5191 no
## 4695 1.1 93.994 -36.4 4.858 5191 yes
## 4696 1.1 93.994 -36.4 4.858 5191 no
## 4697 1.1 93.994 -36.4 4.858 5191 no
## 4698 1.1 93.994 -36.4 4.858 5191 no
## 4699 1.1 93.994 -36.4 4.858 5191 no
## 4700 1.1 93.994 -36.4 4.858 5191 no
## 4701 1.1 93.994 -36.4 4.858 5191 no
## 4702 1.1 93.994 -36.4 4.858 5191 no
## 4703 1.1 93.994 -36.4 4.858 5191 no
## 4704 1.1 93.994 -36.4 4.858 5191 no
## 4705 1.1 93.994 -36.4 4.858 5191 no
## 4706 1.1 93.994 -36.4 4.858 5191 no
## 4707 1.1 93.994 -36.4 4.858 5191 no
## 4708 1.1 93.994 -36.4 4.858 5191 no
## 4709 1.1 93.994 -36.4 4.858 5191 no
## 4710 1.1 93.994 -36.4 4.858 5191 no
## 4711 1.1 93.994 -36.4 4.858 5191 no
## 4712 1.1 93.994 -36.4 4.858 5191 no
## 4713 1.1 93.994 -36.4 4.858 5191 no
## 4714 1.1 93.994 -36.4 4.858 5191 no
## 4715 1.1 93.994 -36.4 4.858 5191 no
## 4716 1.1 93.994 -36.4 4.858 5191 no
## 4717 1.1 93.994 -36.4 4.858 5191 no
## 4718 1.1 93.994 -36.4 4.858 5191 no
## 4719 1.1 93.994 -36.4 4.858 5191 no
## 4720 1.1 93.994 -36.4 4.858 5191 no
## 4721 1.1 93.994 -36.4 4.858 5191 yes
## 4722 1.1 93.994 -36.4 4.858 5191 no
## 4723 1.1 93.994 -36.4 4.858 5191 no
## 4724 1.1 93.994 -36.4 4.858 5191 no
## 4725 1.1 93.994 -36.4 4.858 5191 no
## 4726 1.1 93.994 -36.4 4.858 5191 no
## 4727 1.1 93.994 -36.4 4.858 5191 no
## 4728 1.1 93.994 -36.4 4.858 5191 no
## 4729 1.1 93.994 -36.4 4.858 5191 no
## 4730 1.1 93.994 -36.4 4.858 5191 no
## 4731 1.1 93.994 -36.4 4.858 5191 no
## 4732 1.1 93.994 -36.4 4.858 5191 no
## 4733 1.1 93.994 -36.4 4.858 5191 no
## 4734 1.1 93.994 -36.4 4.858 5191 no
## 4735 1.1 93.994 -36.4 4.858 5191 no
## 4736 1.1 93.994 -36.4 4.858 5191 no
## 4737 1.1 93.994 -36.4 4.858 5191 no
## 4738 1.1 93.994 -36.4 4.858 5191 yes
## 4739 1.1 93.994 -36.4 4.858 5191 no
## 4740 1.1 93.994 -36.4 4.858 5191 no
## 4741 1.1 93.994 -36.4 4.858 5191 no
## 4742 1.1 93.994 -36.4 4.858 5191 no
## 4743 1.1 93.994 -36.4 4.858 5191 no
## 4744 1.1 93.994 -36.4 4.858 5191 no
## 4745 1.1 93.994 -36.4 4.858 5191 no
## 4746 1.1 93.994 -36.4 4.858 5191 no
## 4747 1.1 93.994 -36.4 4.858 5191 no
## 4748 1.1 93.994 -36.4 4.858 5191 no
## 4749 1.1 93.994 -36.4 4.858 5191 no
## 4750 1.1 93.994 -36.4 4.858 5191 no
## 4751 1.1 93.994 -36.4 4.858 5191 no
## 4752 1.1 93.994 -36.4 4.858 5191 no
## 4753 1.1 93.994 -36.4 4.858 5191 yes
## 4754 1.1 93.994 -36.4 4.858 5191 no
## 4755 1.1 93.994 -36.4 4.858 5191 no
## 4756 1.1 93.994 -36.4 4.858 5191 no
## 4757 1.1 93.994 -36.4 4.858 5191 no
## 4758 1.1 93.994 -36.4 4.858 5191 no
## 4759 1.1 93.994 -36.4 4.858 5191 no
## 4760 1.1 93.994 -36.4 4.858 5191 no
## 4761 1.1 93.994 -36.4 4.858 5191 no
## [ reached 'max' / getOption("max.print") -- omitted 36427 rows ]
set.seed(123)
index <- createDataPartition(data$y, p = 0.8, list = FALSE)
train_data <- data[index, ]
test_data <- data[-index, ]
train_data$y <- factor(train_data$y, levels = c("yes", "no"))
test_data$y <- factor(test_data$y, levels = c("yes", "no"))
train_data
## age job marital education default housing loan
## 1 56 housemaid married basic.4y no no no
## 2 57 services married high.school unknown no no
## 3 37 services married high.school no yes no
## 4 40 admin. married basic.6y no no no
## 5 56 services married high.school no no yes
## 6 45 services married basic.9y unknown no no
## 7 59 admin. married professional.course no no no
## 8 41 blue-collar married unknown unknown no no
## 9 24 technician single professional.course no yes no
## 10 25 services single high.school no yes no
## 11 41 blue-collar married unknown unknown no no
## 12 25 services single high.school no yes no
## 13 29 blue-collar single high.school no no yes
## 16 54 retired married basic.9y unknown yes yes
## 17 35 blue-collar married basic.6y no yes no
## 18 46 blue-collar married basic.6y unknown yes yes
## 19 50 blue-collar married basic.9y no yes yes
## 20 39 management single basic.9y unknown no no
## 21 30 unemployed married high.school no no no
## 22 55 blue-collar married basic.4y unknown yes no
## 24 41 technician single high.school no yes no
## 26 35 technician married university.degree no no yes
## 27 59 technician married unknown no yes no
## 28 39 self-employed married basic.9y unknown no no
## 29 54 technician single university.degree unknown no no
## 30 55 unknown married university.degree unknown unknown unknown
## 31 46 admin. married unknown no no no
## 32 59 technician married unknown no yes no
## 33 49 blue-collar married unknown no no no
## 34 54 management married basic.4y unknown yes no
## 35 54 blue-collar divorced basic.4y no no no
## 36 55 unknown married basic.4y unknown yes no
## 37 34 services married high.school no no no
## 38 52 technician married basic.9y no yes no
## 39 41 admin. married university.degree no yes no
## 40 56 technician married basic.4y no yes no
## 41 58 management unknown university.degree no yes no
## 42 32 entrepreneur married high.school no yes no
## 43 38 admin. single professional.course no no no
## 45 44 admin. married university.degree unknown yes no
## 46 42 technician single professional.course unknown no no
## 47 57 admin. married university.degree no yes yes
## 48 40 blue-collar married basic.9y no no yes
## 49 35 admin. married university.degree no yes no
## 50 45 blue-collar married basic.9y no yes no
## 51 54 admin. married high.school no no no
## 52 39 housemaid married basic.4y no no yes
## 53 60 admin. married high.school no no no
## 54 53 admin. single professional.course no no no
## 55 55 blue-collar married basic.4y unknown no no
## 56 55 technician married professional.course unknown yes no
## 57 50 management married university.degree unknown no yes
## 58 45 services married high.school unknown yes no
## 59 55 unemployed married professional.course unknown yes yes
## 60 25 technician single university.degree no yes no
## 63 42 blue-collar married basic.6y unknown yes no
## 64 42 blue-collar married basic.6y unknown no no
## 65 48 admin. married high.school no no no
## 66 37 admin. married university.degree no no no
## 67 44 blue-collar single basic.9y no yes no
## 69 56 admin. married basic.9y no yes no
## 70 44 blue-collar single basic.4y unknown yes yes
## 71 41 management married basic.6y no no no
## 73 47 admin. married university.degree unknown yes no
## 74 57 unknown married unknown unknown no no
## 75 37 admin. married university.degree unknown yes no
## 77 55 technician married university.degree no no no
## 78 33 services married high.school unknown yes no
## 79 55 management married unknown unknown yes no
## 80 42 blue-collar married basic.9y unknown no no
## 82 51 blue-collar married basic.4y unknown unknown unknown
## 86 31 admin. divorced high.school no no no
## 87 41 management married basic.6y no no no
## 88 39 admin. married university.degree no yes yes
## 89 49 technician married basic.9y no no no
## 90 34 admin. married high.school no yes no
## 91 35 admin. married university.degree no yes no
## 92 57 unknown married unknown unknown yes no
## 93 60 admin. married unknown unknown no yes
## 94 33 unemployed married basic.9y no no no
## 96 45 services married professional.course no yes no
## 97 42 management married university.degree no no no
## 98 53 admin. divorced university.degree unknown no no
## 99 37 technician single professional.course no no no
## 100 44 blue-collar married basic.6y no no no
## 101 54 services married unknown no yes no
## 102 49 blue-collar married basic.4y no no no
## 103 54 services married unknown no no no
## 105 52 admin. divorced university.degree no no no
## 106 43 services single high.school unknown no no
## 107 34 housemaid married basic.6y no yes no
## 109 42 entrepreneur married unknown unknown yes no
## 110 43 technician married unknown unknown yes yes
## 111 60 retired divorced university.degree unknown no no
## 114 55 blue-collar married basic.9y unknown yes no
## 115 37 management married university.degree no no no
## 116 36 blue-collar married high.school no no no
## 117 52 admin. divorced university.degree no no no
## 118 57 blue-collar divorced unknown unknown yes no
## 120 48 blue-collar divorced basic.4y unknown yes no
## 121 40 blue-collar married high.school unknown yes no
## 122 49 blue-collar divorced high.school no no no
## 123 41 services married high.school no no no
## 125 32 admin. married university.degree no yes yes
## 126 42 admin. married university.degree no no yes
## 127 50 admin. married basic.6y no no no
## 128 31 technician divorced professional.course no yes yes
## 129 56 retired married basic.4y no yes no
## 130 41 technician married professional.course unknown yes no
## 131 37 blue-collar married basic.6y no yes yes
## 132 41 technician married professional.course unknown no no
## 133 35 blue-collar married unknown no yes no
## 134 37 blue-collar married basic.6y no yes no
## 135 52 management married university.degree no no no
## 136 39 management divorced university.degree no no no
## 137 39 housemaid married basic.4y unknown no no
## 138 56 blue-collar married basic.4y unknown no no
## 139 34 services married high.school no yes no
## 141 43 unemployed single university.degree no yes no
## 142 56 management married unknown no yes no
## 144 53 blue-collar married basic.4y no yes no
## 145 38 unknown divorced high.school unknown yes no
## 146 42 blue-collar married basic.4y unknown yes no
## 147 42 blue-collar married basic.4y unknown no no
## 148 35 admin. single high.school no yes no
## 150 51 blue-collar married basic.4y no yes no
## 151 60 blue-collar married basic.9y unknown no no
## 152 56 entrepreneur married unknown unknown yes no
## 154 56 entrepreneur married unknown unknown no no
## 155 40 blue-collar married unknown no yes yes
## 157 51 blue-collar married unknown unknown yes no
## 158 51 blue-collar married unknown unknown no no
## 159 43 technician single professional.course no yes no
## 160 59 services married high.school no no no
## 161 24 management single university.degree no yes no
## 162 37 blue-collar single basic.9y unknown yes yes
## 165 39 services divorced high.school unknown no no
## 166 37 entrepreneur married basic.6y no no no
## 167 38 services married high.school no yes yes
## 168 56 admin. divorced unknown unknown no no
## 171 43 blue-collar married high.school unknown no yes
## 172 36 services married high.school unknown no no
## 173 45 technician married university.degree no yes yes
## 174 42 admin. single university.degree unknown no no
## 176 46 management married basic.9y no no no
## 177 44 services married high.school no yes yes
## 178 51 admin. single basic.6y no no no
## 179 28 services married high.school no yes no
## 180 37 blue-collar married basic.9y no no no
## 182 46 blue-collar married basic.6y unknown yes no
## 183 42 blue-collar married basic.9y no yes yes
## 184 36 admin. married university.degree no yes no
## 185 54 blue-collar married basic.4y unknown no no
## 186 57 management married university.degree no no no
## 187 51 technician married basic.6y unknown no no
## 188 54 retired married high.school unknown no no
## 190 34 admin. married university.degree no yes no
## 191 41 technician married professional.course no no no
## 192 38 blue-collar single basic.9y no yes no
## 193 45 management divorced university.degree no no no
## 194 42 technician married university.degree no no no
## 195 34 blue-collar single basic.9y unknown yes no
## 196 48 blue-collar married basic.4y no yes no
## 197 37 admin. married high.school unknown yes no
## 198 34 blue-collar single basic.9y unknown no no
## 199 40 admin. married basic.9y unknown yes no
## 200 43 blue-collar married basic.6y no yes no
## 201 33 services married high.school no no no
## 203 39 blue-collar married high.school no yes no
## 205 44 blue-collar married basic.9y no yes no
## 206 35 student single university.degree unknown no no
## 208 35 unemployed married professional.course no no no
## 209 36 services single basic.4y no no no
## 210 35 student single university.degree unknown yes no
## 212 55 housemaid divorced university.degree no no no
## 215 39 blue-collar married professional.course unknown yes no
## 216 39 housemaid married basic.4y unknown yes no
## 219 50 housemaid married basic.4y unknown no no
## 220 40 services married high.school no no no
## 221 35 admin. married high.school no yes no
## 222 43 technician married unknown unknown no no
## 224 46 technician married basic.4y unknown yes no
## 225 40 technician married basic.9y no no no
## 226 58 retired married university.degree no no no
## 228 35 admin. single university.degree no no no
## 231 39 admin. married professional.course no yes no
## 232 50 services divorced professional.course no yes no
## 233 32 management divorced basic.4y unknown yes no
## 234 39 admin. married high.school unknown no no
## 235 52 self-employed married university.degree unknown no no
## 236 44 admin. married professional.course no yes no
## 237 56 blue-collar married basic.4y no no no
## 238 48 admin. married high.school no no no
## 239 33 services married high.school unknown no yes
## 241 57 retired married high.school no no no
## 242 36 technician single professional.course no no no
## 243 34 management married university.degree no yes no
## 244 34 services single basic.9y no no no
## 246 33 services divorced unknown no no no
## 247 32 technician single professional.course no no no
## 248 36 technician single high.school no yes no
## 250 33 services single high.school no no no
## 252 41 blue-collar married basic.4y no yes no
## 253 51 services married basic.6y no yes no
## 254 36 technician married professional.course no yes no
## 255 28 services married unknown no no no
## 256 53 services married high.school no yes yes
## 257 58 blue-collar married basic.9y unknown yes no
## 258 45 management married basic.9y no no yes
## 259 43 technician married unknown no yes no
## 260 33 admin. married high.school no no yes
## 261 33 admin. married high.school no no yes
## 262 27 blue-collar single basic.6y no unknown unknown
## 263 42 technician married high.school no no no
## 264 43 admin. divorced basic.9y no no no
## 265 42 admin. married university.degree no no no
## 266 27 blue-collar single basic.6y no no no
## 268 31 student single university.degree unknown no no
## 270 40 self-employed married basic.4y unknown no no
## 271 52 unemployed married high.school unknown yes no
## 272 47 management divorced university.degree no no no
## 273 49 housemaid married basic.9y unknown no no
## 274 32 admin. single high.school no no no
## 275 49 housemaid single high.school unknown yes yes
## 276 50 blue-collar married basic.9y unknown no no
## 277 34 services married high.school no no no
## 278 55 blue-collar married basic.4y unknown no no
## 279 47 technician single basic.9y no no no
## 280 51 retired married professional.course no no no
## 281 47 blue-collar married basic.6y no no no
## 282 56 technician married basic.4y no yes no
## 283 53 admin. married basic.9y no no no
## 284 36 blue-collar married basic.9y no yes no
## 285 42 blue-collar divorced basic.9y no yes no
## 286 44 blue-collar divorced basic.6y no no no
## 288 37 admin. single high.school no yes yes
## 289 60 blue-collar married unknown unknown yes no
## 292 31 admin. married high.school no yes yes
## 293 53 technician divorced professional.course unknown no yes
## 294 45 blue-collar married basic.4y no yes no
## 295 37 technician single professional.course no yes no
## 296 47 self-employed married professional.course no no no
## 297 49 blue-collar divorced high.school no no yes
## 299 35 services divorced high.school no no no
## 300 38 unknown married unknown unknown no no
## 301 38 services single high.school unknown no no
## 302 50 blue-collar divorced high.school unknown no yes
## 303 59 retired married professional.course unknown no no
## 307 46 blue-collar married unknown unknown no no
## 308 57 housemaid divorced basic.4y no yes yes
## 309 42 admin. married university.degree no yes no
## 310 41 blue-collar married basic.4y no yes no
## 311 54 management divorced university.degree no yes no
## 312 27 admin. single university.degree no no no
## 313 36 admin. married high.school no no no
## 314 58 blue-collar married professional.course unknown yes no
## 315 40 management married university.degree unknown yes no
## 316 34 admin. single basic.9y unknown no no
## 317 33 admin. divorced high.school no no no
## 318 56 retired married basic.6y no no no
## 320 43 services married high.school no yes no
## 321 54 management single basic.9y no yes no
## 322 53 admin. single basic.6y no yes yes
## 323 42 technician single unknown no no no
## 324 40 services married basic.6y unknown no no
## 325 54 technician married professional.course no yes yes
## 326 40 housemaid single professional.course no no no
## 327 26 admin. single university.degree no yes no
## 328 33 admin. married high.school no no no
## 329 35 blue-collar married basic.9y unknown no no
## 330 36 admin. married high.school no no no
## 331 29 services single high.school no yes no
## 333 35 management married high.school no yes no
## 335 46 services married high.school unknown yes no
## 336 49 entrepreneur married high.school no yes no
## 337 42 technician single professional.course unknown yes no
## 338 36 blue-collar single high.school no yes yes
## 339 55 blue-collar married basic.9y unknown yes no
## 341 57 management married professional.course unknown yes no
## 342 32 services single high.school no yes no
## 343 49 admin. married basic.9y no no no
## 345 58 blue-collar divorced basic.4y no yes no
## 346 52 technician married high.school no yes no
## 348 41 blue-collar single basic.9y unknown yes no
## 349 33 entrepreneur married university.degree no yes no
## 350 57 blue-collar married basic.4y no no no
## 351 48 blue-collar married basic.6y unknown no no
## 352 55 technician married professional.course no no no
## 353 38 management married university.degree no no no
## 354 38 services married high.school no yes no
## 355 53 admin. married university.degree no yes no
## 356 43 unemployed single university.degree no no no
## 357 36 blue-collar single high.school no no no
## 358 32 blue-collar married basic.9y no no no
## 359 33 services married basic.4y no no no
## 360 58 entrepreneur married basic.4y no yes no
## 361 40 unemployed divorced high.school unknown no no
## 363 45 technician married high.school no yes no
## 365 46 admin. married university.degree no yes no
## 366 36 technician married university.degree no no no
## 367 41 self-employed married high.school no yes no
## 369 49 blue-collar married basic.9y unknown yes no
## 371 37 blue-collar married basic.9y no no no
## 373 46 admin. single high.school no yes no
## 374 22 blue-collar single basic.9y no yes no
## 375 43 services married high.school no no no
## 376 49 blue-collar married unknown no no no
## 377 41 technician married basic.6y no yes no
## 378 38 admin. single university.degree no no no
## 380 49 admin. married university.degree no yes yes
## 381 30 blue-collar single unknown no no no
## 382 33 admin. married basic.9y no yes no
## 383 34 management single university.degree no no no
## 384 30 student single unknown unknown no no
## 385 59 management married basic.4y unknown yes yes
## 386 59 management married basic.4y unknown unknown unknown
## 387 41 self-employed married university.degree no no no
## 390 44 services married high.school no yes no
## 391 59 retired unknown university.degree unknown no no
## 392 50 management married high.school unknown no no
## 393 35 admin. married university.degree no no no
## 394 42 admin. married high.school no no no
## 395 45 admin. married basic.9y no no no
## 396 36 technician married professional.course no no no
## 397 56 services married high.school unknown no no
## 398 29 blue-collar divorced basic.4y no no no
## 399 41 self-employed married university.degree no yes yes
## 400 42 blue-collar married basic.9y unknown no no
## 401 52 services single high.school no no no
## 402 48 services married high.school unknown unknown unknown
## 403 31 blue-collar married high.school unknown yes no
## 404 43 unemployed married university.degree unknown yes no
## 405 36 blue-collar married basic.4y unknown no no
## 406 42 entrepreneur married university.degree no yes no
## 408 39 admin. married high.school no yes no
## 409 36 services married high.school no no yes
## 410 42 blue-collar married basic.9y unknown yes no
## 411 41 admin. married high.school no no no
## 412 55 technician married basic.4y no no yes
## 413 30 blue-collar married basic.9y no no no
## 414 57 retired unknown basic.4y no no no
## 415 45 entrepreneur married basic.4y unknown yes no
## 416 51 blue-collar married basic.4y unknown yes yes
## 417 39 self-employed single basic.9y unknown yes yes
## 419 27 services married high.school no yes no
## 421 57 blue-collar married basic.4y unknown yes no
## 422 43 entrepreneur married basic.4y no no no
## 423 49 blue-collar married basic.4y unknown no no
## 424 39 management married university.degree unknown no no
## 426 49 blue-collar married basic.9y no no no
## 428 43 technician married professional.course no yes no
## 430 31 services married high.school unknown no no
## 431 43 self-employed divorced university.degree no no no
## 432 43 self-employed married basic.9y unknown no no
## 433 30 self-employed single university.degree no yes no
## 434 27 services single professional.course no yes yes
## 436 37 technician married professional.course no yes no
## 437 46 housemaid married basic.9y no yes no
## 438 35 blue-collar married professional.course no no no
## 439 47 admin. divorced university.degree no no no
## 440 46 management married unknown no yes no
## 441 40 technician married professional.course unknown no yes
## 442 26 housemaid married university.degree no no no
## 443 32 blue-collar divorced basic.9y unknown no no
## 444 45 management married university.degree no yes no
## 445 34 admin. married basic.9y no no no
## 447 42 technician married professional.course no no no
## 448 57 technician married basic.4y unknown no yes
## 450 38 blue-collar married basic.4y no no yes
## 451 57 technician married basic.4y unknown no no
## 452 28 student single basic.9y unknown yes no
## 453 60 management married university.degree no no no
## 454 48 admin. married university.degree no yes no
## 455 47 technician married professional.course no yes no
## 456 40 admin. married high.school no no no
## 458 48 unemployed single basic.4y no yes no
## 459 54 housemaid married basic.4y no no no
## 460 40 blue-collar married basic.6y no no yes
## 461 44 admin. single basic.9y unknown no no
## 462 42 technician divorced high.school no no no
## 464 31 blue-collar single basic.9y no yes no
## 465 32 services married high.school no no no
## 466 44 admin. married high.school no yes yes
## 469 52 admin. married basic.4y no yes no
## 470 42 management married university.degree no no no
## 472 43 management married professional.course no yes no
## 473 31 admin. divorced high.school no no no
## 474 29 admin. married university.degree unknown yes no
## 475 57 blue-collar divorced basic.4y no no no
## 476 44 blue-collar married basic.9y unknown no no
## 479 57 retired married university.degree no no no
## 480 41 management married unknown unknown no no
## 481 37 technician single high.school unknown no yes
## 482 38 services married high.school no yes no
## 484 49 unknown married unknown unknown yes no
## 485 54 management married basic.6y unknown yes yes
## 486 36 admin. married university.degree no unknown unknown
## 487 32 admin. single university.degree unknown no no
## 488 35 technician married professional.course no yes no
## 491 34 technician married university.degree no yes no
## 492 41 unemployed married basic.9y unknown no no
## 494 36 blue-collar married basic.9y unknown no no
## 495 32 admin. single university.degree unknown unknown unknown
## 496 31 services married high.school unknown unknown unknown
## 497 38 technician married professional.course no yes no
## 498 35 admin. divorced university.degree unknown yes no
## 499 53 admin. married professional.course no yes no
## 501 56 entrepreneur married university.degree unknown no no
## 502 33 admin. married basic.9y no unknown unknown
## 503 33 admin. married basic.9y no no no
## 504 51 services divorced high.school unknown yes no
## 505 39 services married high.school unknown yes no
## 506 45 entrepreneur married university.degree no no no
## 508 60 unknown single unknown unknown yes no
## 509 33 technician married university.degree no yes no
## 513 37 management married university.degree no yes no
## 514 50 services married basic.9y no yes yes
## 515 59 entrepreneur married high.school no yes no
## 516 32 technician married unknown unknown yes no
## 518 52 blue-collar married basic.4y no no no
## 519 42 blue-collar married unknown unknown no no
## 520 42 admin. married unknown no no no
## 521 40 management married basic.9y unknown unknown unknown
## 522 38 blue-collar married basic.9y no no no
## 523 39 blue-collar married basic.6y no yes no
## 524 39 blue-collar married basic.6y no no no
## 525 38 admin. married high.school no no no
## 526 47 admin. single unknown unknown yes no
## 528 38 admin. divorced high.school no yes yes
## 529 39 technician divorced university.degree no no no
## 532 41 services married high.school unknown yes yes
## 533 41 blue-collar married basic.6y no no no
## 534 35 blue-collar married basic.9y no no no
## 535 41 technician married high.school no no no
## 536 36 services married high.school unknown no no
## 537 35 admin. single high.school no yes yes
## 538 33 blue-collar single basic.4y unknown no no
## 539 38 admin. single basic.6y unknown no no
## 540 33 self-employed married university.degree no no no
## 541 55 self-employed married unknown unknown no no
## 542 36 blue-collar single basic.9y unknown no no
## 544 32 entrepreneur single university.degree no yes no
## 546 43 admin. married professional.course no yes yes
## 547 46 admin. married university.degree no no no
## 548 35 admin. divorced high.school no no yes
## 550 50 blue-collar married basic.4y unknown unknown unknown
## 551 39 admin. single university.degree no no no
## 552 39 blue-collar married basic.9y unknown no no
## 553 42 entrepreneur married basic.6y no no no
## 555 45 blue-collar married basic.4y unknown no no
## 556 40 technician married basic.4y no no yes
## 557 42 blue-collar married high.school no no yes
## 558 40 technician married basic.4y no no no
## 559 38 blue-collar single basic.4y unknown no no
## 561 41 blue-collar married basic.4y no no no
## 562 39 blue-collar married basic.6y unknown yes no
## 563 41 blue-collar married basic.4y no yes yes
## 565 35 admin. divorced university.degree no unknown unknown
## 566 35 admin. married basic.6y no yes no
## 568 36 technician married unknown no no no
## 569 23 admin. single university.degree no no no
## 570 43 unemployed married university.degree unknown unknown unknown
## 571 49 entrepreneur married professional.course no unknown unknown
## 572 36 technician married professional.course no unknown unknown
## 573 51 blue-collar married basic.9y unknown yes no
## 574 56 retired married basic.4y unknown yes yes
## 576 42 admin. married high.school no no no
## 577 41 admin. divorced high.school no no no
## 578 32 services married high.school unknown no yes
## 580 37 blue-collar married unknown no no no
## 581 53 management married university.degree unknown no no
## 583 45 unknown married unknown unknown no no
## 584 24 technician single professional.course no no yes
## 585 45 unknown married unknown unknown no no
## 586 34 admin. single university.degree no no yes
## 587 41 management married university.degree unknown no no
## 588 59 blue-collar married basic.4y no yes no
## 589 45 blue-collar married basic.4y unknown no no
## 590 54 blue-collar married basic.6y unknown no no
## 592 33 technician married professional.course no yes no
## 593 32 admin. married university.degree no no no
## 594 34 services single high.school no unknown unknown
## 595 46 management married university.degree no no no
## 596 57 technician married professional.course no yes no
## 597 42 technician married basic.9y no no no
## 598 48 admin. married professional.course no yes no
## 599 58 admin. divorced university.degree unknown yes no
## 601 32 admin. single university.degree no yes yes
## 602 48 blue-collar married basic.9y no no no
## 604 31 services married high.school unknown no no
## 606 32 admin. single university.degree no no no
## 607 36 services married high.school no no no
## 609 37 blue-collar married basic.9y unknown no no
## 610 50 services married high.school no no no
## 611 46 blue-collar married basic.6y no yes no
## 612 41 admin. married high.school no no no
## 613 43 blue-collar single basic.4y no no no
## 614 51 management married university.degree no yes no
## 615 38 admin. married university.degree no yes no
## 616 41 technician married basic.6y no yes no
## 617 39 services married high.school unknown no no
## 619 37 technician married professional.course no yes no
## 620 41 admin. married basic.9y no yes no
## 621 46 admin. divorced university.degree no yes yes
## 622 47 technician married professional.course no no no
## 623 35 technician married professional.course no no no
## 624 38 services married high.school unknown no no
## 625 30 blue-collar single unknown no yes yes
## 626 46 blue-collar married basic.9y no yes no
## 627 30 technician married professional.course no no no
## 628 35 services single basic.4y no no no
## 629 58 admin. married unknown unknown yes no
## 630 40 technician married professional.course no no no
## 631 34 technician married university.degree no no no
## 632 30 admin. single university.degree no no no
## 635 55 management married university.degree unknown yes no
## 636 45 technician single professional.course no yes no
## 637 36 admin. married university.degree no yes yes
## 638 32 admin. single university.degree no no no
## 639 35 technician married unknown unknown yes no
## 640 55 management divorced university.degree no yes no
## 641 49 housemaid married basic.4y unknown unknown unknown
## 643 34 blue-collar married basic.4y no yes no
## 648 37 blue-collar married high.school no no no
## 649 36 technician married basic.9y unknown yes no
## 650 33 blue-collar married high.school no no no
## 651 32 housemaid married high.school no yes no
## 652 32 housemaid married high.school no no no
## 653 50 blue-collar married basic.4y unknown yes no
## 655 51 blue-collar divorced unknown unknown yes yes
## 656 33 services married high.school no no no
## 657 33 services married basic.4y no no no
## 659 39 management divorced university.degree unknown yes no
## 660 33 self-employed single university.degree no no no
## 661 59 retired divorced basic.4y unknown no no
## 662 42 admin. single unknown no yes no
## 664 35 admin. married university.degree no unknown unknown
## 665 46 blue-collar married basic.6y unknown yes no
## 666 27 technician married basic.9y no no yes
## 667 47 admin. divorced university.degree no yes no
## 668 31 admin. single university.degree no no no
## 669 32 blue-collar married basic.9y no yes no
## 670 54 admin. married high.school no no no
## 671 56 management married university.degree unknown no no
## 672 48 services single high.school unknown yes no
## 673 44 admin. married high.school no yes no
## 674 46 admin. married high.school no no yes
## 676 43 admin. married professional.course no no yes
## 677 40 admin. single high.school unknown no no
## 678 56 management married university.degree no yes no
## 680 39 management divorced university.degree unknown yes no
## 681 48 technician married basic.4y unknown no no
## 682 45 housemaid married professional.course unknown yes no
## 683 36 self-employed married university.degree no no no
## 684 49 management married professional.course unknown yes no
## 685 46 services married high.school no no no
## 686 38 blue-collar married basic.9y no yes no
## 687 50 housemaid married basic.4y unknown yes no
## 688 27 admin. single high.school no yes no
## 689 40 technician married professional.course unknown yes no
## 693 54 retired married high.school no yes no
## 694 52 blue-collar married basic.4y unknown yes no
## 695 53 admin. married university.degree unknown yes no
## 696 49 services married high.school unknown no no
## 697 42 blue-collar married basic.4y unknown no no
## 699 40 entrepreneur married basic.9y no no no
## 700 59 admin. married university.degree unknown no no
## 703 38 self-employed divorced basic.9y no yes no
## 704 52 self-employed married university.degree no no no
## 705 26 unemployed single basic.9y no yes no
## 707 51 admin. married university.degree no no no
## 708 43 blue-collar married basic.4y unknown yes yes
## 710 60 retired divorced university.degree unknown yes no
## 712 57 management married university.degree unknown no no
## 713 35 student single university.degree unknown no no
## 715 43 services married high.school no no no
## 716 40 technician married basic.9y no no no
## 717 45 technician married university.degree no no no
## 718 56 retired married high.school no no no
## 719 46 services married basic.6y no no no
## 720 41 blue-collar married basic.4y no yes no
## 722 56 blue-collar married basic.4y no no no
## 723 43 entrepreneur married basic.4y no yes no
## 724 34 blue-collar married basic.4y no no no
## 725 38 services married high.school no yes no
## 726 40 technician married basic.9y no no no
## 729 27 blue-collar married basic.9y unknown yes no
## 731 47 admin. single unknown unknown yes yes
## 732 48 blue-collar married professional.course unknown no no
## 733 31 admin. single high.school no yes yes
## 736 49 blue-collar married basic.4y unknown yes no
## 737 56 retired married basic.4y no no no
## 738 49 admin. married high.school no no no
## 740 44 blue-collar married unknown unknown yes no
## 742 55 housemaid married basic.4y no yes yes
## 743 59 management married basic.4y unknown yes no
## 745 46 blue-collar married basic.9y no no yes
## 746 39 blue-collar divorced basic.6y unknown yes no
## 748 36 services married high.school no yes no
## 749 29 admin. single university.degree no no no
## 751 30 services divorced basic.9y no no yes
## 754 36 admin. married university.degree no yes no
## 755 32 services married high.school no no no
## 756 39 blue-collar married basic.9y unknown yes no
## 757 30 services married university.degree no yes no
## 758 39 blue-collar married basic.4y unknown no no
## 759 37 blue-collar married basic.9y unknown yes no
## 760 39 blue-collar married professional.course unknown yes no
## 761 46 blue-collar married basic.4y no no no
## 762 43 unemployed married basic.4y no no no
## 763 37 services married high.school no yes no
## 764 30 technician married university.degree unknown no no
## 765 38 technician married professional.course no no no
## 767 44 admin. married university.degree no no no
## 768 44 self-employed married university.degree unknown no no
## 770 30 student single high.school unknown no no
## 771 37 blue-collar married basic.4y unknown unknown unknown
## 774 43 technician married professional.course no no no
## 775 38 housemaid married basic.9y no no no
## 776 41 blue-collar married basic.4y no yes no
## 778 33 blue-collar married basic.9y no unknown unknown
## 779 32 admin. married high.school no yes no
## 780 30 services married high.school unknown no no
## 783 36 technician divorced professional.course no no no
## 784 38 blue-collar married basic.6y no unknown unknown
## 785 35 blue-collar single basic.6y no yes no
## 786 50 self-employed married university.degree no no no
## 787 38 blue-collar married basic.9y no yes no
## 788 58 admin. married basic.4y unknown no yes
## 791 33 blue-collar single basic.9y unknown unknown unknown
## 792 44 management single university.degree unknown yes yes
## 793 31 management married high.school no no no
## 796 36 services single unknown no yes no
## 797 44 blue-collar single high.school no no no
## 798 38 blue-collar divorced unknown no yes no
## 799 33 blue-collar married basic.9y no unknown unknown
## 800 39 blue-collar divorced basic.6y unknown yes yes
## 801 47 blue-collar single basic.4y unknown yes no
## 802 47 services divorced high.school no no no
## 803 35 entrepreneur single professional.course no no no
## 804 42 admin. divorced university.degree no no no
## 805 36 admin. married high.school no no no
## 806 35 technician married basic.6y no no no
## 807 36 services single unknown no yes no
## 808 56 entrepreneur married university.degree unknown yes no
## 809 26 admin. single high.school no no no
## 810 31 admin. single university.degree no yes yes
## 811 57 self-employed single high.school unknown no no
## 812 39 services married high.school no no no
## 814 50 admin. married university.degree no no no
## 815 52 blue-collar single high.school unknown unknown unknown
## 816 39 blue-collar divorced basic.9y no no no
## 817 44 technician single unknown unknown yes no
## 818 36 housemaid married basic.4y no yes no
## 819 54 management married high.school unknown yes no
## 820 27 admin. single basic.9y no yes no
## 821 31 admin. single university.degree no no no
## 822 31 admin. married university.degree unknown no no
## 823 28 blue-collar married basic.6y no no no
## 824 31 management single university.degree no yes no
## 825 30 management divorced high.school no no yes
## 826 52 technician married professional.course no yes no
## 827 37 technician divorced professional.course no no no
## 828 30 services married university.degree no yes no
## 829 45 blue-collar married basic.9y unknown yes yes
## 830 54 technician married university.degree no yes no
## 831 49 entrepreneur married basic.9y no yes no
## 832 44 admin. married high.school no no no
## 833 28 student single basic.9y unknown yes yes
## 834 53 technician married high.school no yes no
## 835 45 blue-collar married basic.9y unknown yes no
## 837 51 admin. married high.school unknown yes no
## 838 41 blue-collar married basic.9y unknown yes no
## 839 43 technician married professional.course no yes no
## 840 31 admin. single university.degree no yes no
## 841 39 admin. single unknown no yes no
## 842 38 technician married professional.course no no no
## 844 53 admin. single university.degree unknown yes no
## 846 53 blue-collar married basic.9y unknown yes yes
## 847 24 services single high.school no no no
## 848 34 admin. single high.school no yes no
## 849 40 technician married professional.course no yes no
## 850 57 management divorced university.degree no yes no
## 852 31 blue-collar married basic.6y unknown no no
## 853 31 services married basic.6y no yes no
## 855 45 housemaid married basic.4y unknown yes no
## 856 38 admin. married university.degree no no no
## 858 47 blue-collar married professional.course unknown yes no
## 859 42 blue-collar married basic.6y no no no
## 860 35 blue-collar single unknown no yes no
## 861 40 management married university.degree no yes no
## 862 42 blue-collar married basic.6y no no no
## 863 34 technician married professional.course unknown yes no
## 864 48 admin. single university.degree no yes no
## 865 35 blue-collar married unknown no yes yes
## 866 33 blue-collar married high.school no yes no
## 867 37 technician married professional.course no yes no
## 868 43 technician married professional.course no yes no
## 869 42 admin. single unknown unknown no no
## 870 46 admin. divorced university.degree no yes no
## 871 37 blue-collar single basic.9y unknown yes no
## 872 40 blue-collar married high.school no yes no
## 874 59 entrepreneur divorced high.school unknown yes no
## 875 43 technician single university.degree no no no
## 876 44 blue-collar married basic.6y no yes yes
## 878 41 admin. married university.degree no yes no
## 879 28 unknown single basic.9y unknown yes no
## 880 48 services married high.school unknown yes no
## 881 31 admin. single high.school no yes no
## 882 27 blue-collar married basic.9y no yes no
## 883 43 technician single university.degree no yes no
## 884 47 retired married basic.4y unknown yes no
## 885 40 blue-collar divorced unknown no yes no
## 886 43 unknown married high.school unknown no no
## 887 29 technician married professional.course no yes no
## 889 36 technician married professional.course no no no
## 890 30 admin. single university.degree no no no
## 891 38 services single unknown unknown yes no
## 893 33 blue-collar married basic.9y no no no
## 894 39 retired single high.school no yes no
## 895 38 technician single professional.course no no no
## 898 37 blue-collar married basic.6y no no no
## 899 32 management married basic.6y no no no
## 901 34 technician divorced professional.course no yes no
## 902 52 technician married basic.4y unknown no no
## 903 46 blue-collar married basic.6y unknown no no
## 905 52 technician married basic.4y unknown no yes
## 906 32 technician single professional.course no no no
## 907 31 blue-collar single basic.9y no no no
## 908 46 admin. divorced basic.9y unknown no no
## 909 59 services divorced high.school no no no
## 910 38 blue-collar married unknown unknown no yes
## 911 42 blue-collar divorced basic.6y unknown yes no
## 912 40 blue-collar married basic.4y no no no
## 913 46 admin. married professional.course no no no
## 914 35 admin. single high.school no no no
## 915 28 blue-collar married basic.9y no no yes
## 916 47 services married high.school unknown yes no
## 917 35 blue-collar married basic.4y no yes no
## 918 48 retired married basic.9y no yes no
## 919 40 blue-collar married basic.6y unknown yes no
## 920 32 services single high.school no yes no
## 921 59 retired divorced basic.4y no yes no
## 922 48 entrepreneur married basic.9y unknown no no
## 923 45 blue-collar married basic.9y unknown yes no
## 924 49 blue-collar single basic.6y no yes no
## 925 51 admin. married university.degree no yes no
## 926 38 technician single university.degree no yes no
## 927 53 technician married high.school no yes no
## 928 49 blue-collar married basic.9y no yes no
## 929 31 blue-collar married basic.9y no yes yes
## 931 54 retired married basic.4y unknown yes no
## 932 29 admin. single high.school no yes no
## 933 31 blue-collar married basic.6y unknown yes no
## 934 35 admin. married high.school no yes no
## 935 38 blue-collar married basic.9y no no no
## 936 54 management married high.school unknown yes yes
## 937 48 admin. married basic.9y unknown no no
## 938 48 management divorced university.degree no yes no
## 939 32 admin. single university.degree unknown yes no
## 940 34 technician married professional.course unknown yes no
## 941 49 technician single university.degree unknown yes no
## 942 44 blue-collar married basic.9y unknown unknown unknown
## 943 42 services divorced high.school unknown no no
## 944 55 blue-collar married basic.4y unknown no no
## 945 42 services divorced high.school unknown no no
## 946 44 admin. married university.degree unknown no no
## 947 51 blue-collar married basic.9y no no no
## 948 43 blue-collar married basic.4y unknown yes no
## 949 52 technician married high.school no yes no
## 950 45 blue-collar single basic.6y no yes no
## 951 41 services divorced high.school no yes yes
## 952 35 technician divorced unknown no yes yes
## 953 41 services divorced high.school no no yes
## 954 46 management married basic.9y no no no
## 955 36 housemaid divorced basic.9y unknown no no
## 956 29 technician married professional.course no no no
## 957 47 services married unknown no no no
## 958 43 blue-collar married basic.4y unknown yes no
## 959 38 blue-collar single basic.9y unknown no no
## 960 44 blue-collar married basic.4y no yes no
## 961 29 services married high.school no no no
## 964 46 blue-collar married basic.9y unknown no no
## 965 31 blue-collar married basic.4y no yes no
## 966 47 services married unknown no no no
## 967 44 admin. married university.degree no yes no
## 968 31 blue-collar married basic.4y no yes no
## 969 38 unemployed divorced professional.course no no no
## 970 33 admin. married university.degree no no no
## 971 53 blue-collar married basic.9y no yes no
## 973 33 self-employed married basic.9y no yes no
## 974 37 admin. divorced university.degree no yes no
## 975 55 blue-collar married basic.9y no yes no
## 976 41 admin. single basic.6y no unknown unknown
## 977 46 blue-collar married basic.6y unknown yes no
## 978 32 entrepreneur divorced university.degree no no no
## 979 48 blue-collar married high.school no no no
## 980 34 entrepreneur married basic.4y no yes no
## 983 45 entrepreneur single university.degree no unknown unknown
## 984 48 management divorced university.degree no no no
## 985 34 blue-collar married basic.6y no yes no
## 986 46 admin. divorced university.degree unknown no no
## 987 34 blue-collar married basic.6y no yes no
## 988 51 unemployed married professional.course unknown no no
## 989 37 admin. married university.degree no no no
## 990 54 housemaid divorced basic.4y no no no
## 991 45 services married high.school unknown yes no
## 992 39 services single high.school no unknown unknown
## 994 39 technician single basic.6y unknown no no
## 997 41 services single high.school no yes yes
## 998 59 housemaid married basic.6y no yes no
## 1000 30 services married unknown no no no
## 1001 34 entrepreneur married basic.4y no no no
## 1002 34 technician married high.school no no no
## 1003 38 blue-collar divorced unknown no no no
## 1004 31 blue-collar married basic.6y no yes no
## 1005 47 admin. married university.degree no unknown unknown
## 1006 57 self-employed single high.school unknown no no
## 1007 44 blue-collar married basic.9y unknown no no
## 1008 45 services married high.school unknown yes no
## 1010 44 services married high.school no yes no
## 1012 28 admin. single university.degree no no no
## 1014 51 entrepreneur married university.degree no no no
## 1016 44 blue-collar married basic.4y no yes no
## 1021 35 admin. single basic.4y unknown no no
## 1022 44 technician married professional.course unknown no no
## 1023 43 technician married professional.course no no no
## 1024 40 management married high.school no no no
## 1025 50 self-employed married basic.4y unknown unknown unknown
## 1027 37 blue-collar single basic.9y unknown no no
## 1029 58 admin. married high.school no no yes
## 1030 49 technician married high.school no yes no
## 1031 32 blue-collar married basic.4y unknown no no
## 1032 30 services married high.school no no yes
## 1033 28 admin. married high.school no yes no
## 1034 40 blue-collar married basic.4y unknown unknown unknown
## 1035 44 management married university.degree no no no
## 1036 30 services married professional.course unknown yes no
## 1037 30 services married professional.course unknown no no
## 1038 28 technician single professional.course no yes no
## 1040 45 blue-collar single high.school unknown no yes
## 1041 35 blue-collar married professional.course no no no
## 1042 57 retired divorced high.school no no no
## 1043 35 admin. divorced high.school no yes no
## 1044 41 technician single university.degree unknown no no
## 1045 42 services married high.school unknown no no
## 1046 42 blue-collar married basic.4y unknown no no
## 1048 48 management married university.degree no yes no
## 1049 39 blue-collar married basic.6y no no no
## 1050 47 retired married basic.4y unknown unknown unknown
## 1051 34 technician single professional.course no unknown unknown
## 1052 44 services married basic.6y unknown no no
## 1055 49 services married high.school no no no
## 1056 35 admin. single basic.4y unknown yes no
## 1057 44 admin. married high.school no no no
## 1058 37 admin. married high.school no yes no
## 1059 47 management married university.degree no no no
## 1061 40 blue-collar married basic.9y unknown yes no
## 1062 32 management divorced basic.4y unknown no no
## 1063 42 blue-collar married basic.4y unknown unknown unknown
## 1064 42 self-employed married university.degree no yes no
## 1065 39 technician married professional.course no unknown unknown
## 1066 32 housemaid married basic.4y no no no
## 1067 30 services married unknown no yes no
## 1068 42 blue-collar married basic.4y unknown yes no
## 1069 35 blue-collar married basic.6y no yes yes
## 1070 56 retired married basic.4y no no no
## 1071 40 blue-collar married basic.9y unknown no no
## 1072 26 admin. single university.degree no yes no
## 1074 51 blue-collar married basic.4y no no no
## 1075 31 technician married professional.course no no no
## 1077 60 services married unknown no no no
## 1079 44 entrepreneur married basic.4y unknown no no
## 1080 26 technician single basic.9y no yes no
## 1081 54 blue-collar married basic.4y no yes no
## 1082 34 blue-collar single high.school unknown no yes
## 1084 33 admin. divorced high.school no yes no
## 1085 35 blue-collar single high.school no yes no
## 1086 42 management married basic.6y no yes yes
## 1087 53 retired married basic.4y unknown yes no
## 1088 51 technician married professional.course no yes no
## 1089 59 retired divorced basic.4y no yes no
## 1090 51 admin. married basic.6y unknown no no
## 1092 47 technician divorced professional.course unknown no no
## 1095 40 technician married professional.course no yes no
## 1097 45 technician married professional.course no yes no
## 1099 42 services married high.school no no no
## 1102 51 services divorced basic.6y unknown no yes
## 1103 39 entrepreneur married high.school no yes no
## 1104 36 blue-collar married unknown unknown yes yes
## 1106 34 management married university.degree no yes no
## 1107 41 blue-collar married basic.4y no yes no
## 1108 34 management married university.degree no yes yes
## 1109 36 blue-collar married basic.9y no no no
## 1110 33 technician married professional.course no no no
## 1111 46 admin. single university.degree no unknown unknown
## 1112 44 blue-collar married basic.4y no yes no
## 1113 30 blue-collar married basic.6y no no no
## 1114 34 management married university.degree no no no
## 1115 54 admin. divorced university.degree no no no
## 1116 58 self-employed married professional.course no yes no
## 1118 41 entrepreneur married university.degree no no no
## 1119 53 blue-collar married basic.9y unknown yes no
## 1120 35 admin. married university.degree no no no
## 1121 34 blue-collar single basic.9y no no no
## 1122 36 blue-collar single unknown no yes no
## 1123 31 blue-collar married basic.9y no no no
## 1124 59 retired married basic.4y unknown no no
## 1125 49 technician married professional.course unknown unknown unknown
## 1126 37 management married high.school unknown no no
## 1127 50 management married university.degree no yes no
## 1128 34 services married high.school no no no
## 1129 32 admin. married university.degree unknown no no
## 1130 45 blue-collar married basic.9y unknown yes no
## 1131 39 management married university.degree no yes no
## 1132 43 unknown married high.school unknown no no
## 1133 43 blue-collar married basic.4y unknown no no
## 1134 52 blue-collar married basic.9y unknown no no
## 1135 54 blue-collar married basic.9y no yes no
## 1136 54 blue-collar married basic.9y no yes no
## 1137 31 services single high.school no yes no
## 1138 35 blue-collar married basic.6y no no no
## 1139 28 admin. married high.school no yes no
## 1140 56 retired married basic.9y no yes yes
## 1142 45 blue-collar married basic.9y unknown no no
## 1143 38 entrepreneur married basic.9y no no no
## 1144 42 technician married professional.course no yes no
## 1147 43 admin. divorced high.school no yes no
## 1151 50 blue-collar married basic.9y unknown no no
## 1152 41 admin. married high.school no yes yes
## 1153 33 admin. married university.degree no yes no
## 1154 46 blue-collar married professional.course no no no
## 1155 30 admin. single high.school no no no
## 1156 28 services single high.school no no no
## 1158 43 blue-collar married basic.4y no no no
## 1160 25 services married professional.course unknown no no
## 1161 39 admin. single unknown no no no
## 1162 42 retired married basic.9y unknown yes no
## 1163 43 admin. married high.school no yes no
## 1165 33 admin. single university.degree no no no
## 1166 52 unknown married basic.4y no no no
## 1167 42 services married professional.course no yes no
## 1168 53 blue-collar married basic.4y unknown no no
## 1169 41 housemaid married basic.6y no no no
## 1170 48 blue-collar married professional.course no yes no
## 1171 40 admin. single high.school no yes no
## 1172 40 admin. single high.school no no yes
## 1173 53 blue-collar married high.school unknown no yes
## 1174 55 admin. married high.school no no no
## 1175 39 technician married professional.course no no no
## 1176 35 blue-collar married basic.9y no no yes
## 1177 50 housemaid divorced basic.4y unknown no no
## 1178 38 services divorced basic.6y no no no
## 1179 41 unemployed married basic.9y unknown no no
## 1180 44 technician married professional.course unknown no no
## 1181 39 admin. married basic.6y unknown no no
## 1182 44 unknown married basic.6y no no no
## 1183 51 technician married professional.course no no yes
## 1185 31 technician married professional.course no no no
## 1186 40 blue-collar married high.school no yes no
## 1187 38 self-employed single university.degree no no no
## 1188 48 blue-collar married basic.6y no no yes
## 1189 32 admin. married high.school no no no
## 1191 49 housemaid married basic.4y unknown no no
## 1192 47 blue-collar married basic.6y no yes yes
## 1193 28 blue-collar married basic.6y unknown no no
## 1194 38 admin. single university.degree unknown yes no
## 1195 28 blue-collar married basic.6y unknown no no
## 1196 51 services married unknown no yes no
## 1198 38 admin. single university.degree unknown yes yes
## 1200 44 technician divorced unknown no yes no
## 1201 30 technician married professional.course no no no
## 1202 34 blue-collar single basic.4y no no no
## 1203 36 blue-collar married basic.6y no yes no
## 1204 41 management married university.degree unknown no no
## 1205 40 blue-collar married basic.6y unknown no no
## 1208 35 unknown married basic.9y no yes no
## 1209 32 management single university.degree no no no
## 1210 34 admin. married university.degree unknown no no
## 1211 35 blue-collar married basic.9y no yes no
## 1212 28 admin. single professional.course no no no
## 1214 48 unemployed married basic.4y no yes yes
## 1216 31 management married university.degree no yes yes
## 1217 59 retired married unknown no yes no
## 1219 47 services married high.school unknown yes no
## 1220 40 technician married university.degree unknown no no
## 1222 30 housemaid married high.school unknown no no
## 1223 40 blue-collar married basic.9y no no no
## 1224 30 housemaid married high.school unknown no no
## 1225 50 entrepreneur married basic.9y no yes no
## 1226 36 blue-collar married basic.6y unknown no no
## 1227 29 unemployed single university.degree no no no
## 1228 43 blue-collar married basic.9y no no no
## 1229 35 services married high.school no no no
## 1230 35 unknown single basic.4y unknown no no
## 1231 48 blue-collar divorced basic.4y no no no
## 1232 49 technician married professional.course no no no
## 1233 44 blue-collar married basic.6y unknown no yes
## 1234 32 blue-collar married professional.course no no no
## 1235 55 admin. married high.school no no no
## 1236 41 admin. married basic.4y unknown no yes
## 1237 27 student single high.school unknown no no
## 1238 41 blue-collar married basic.9y no yes no
## 1240 45 services married basic.9y no no no
## 1241 36 blue-collar married high.school no no no
## 1242 54 technician married basic.9y no no no
## 1243 48 admin. married high.school unknown no yes
## 1245 33 management married university.degree no no yes
## 1246 43 blue-collar married basic.4y unknown no no
## 1247 44 technician single high.school no no no
## 1248 50 technician married professional.course no no no
## 1251 32 student single university.degree no yes no
## 1252 43 blue-collar married basic.4y unknown no no
## 1253 40 admin. divorced professional.course no yes no
## 1254 24 services single high.school no yes yes
## 1255 32 technician married university.degree no no yes
## 1256 43 blue-collar married basic.4y unknown yes yes
## 1257 43 technician single university.degree no yes no
## 1259 33 admin. single high.school unknown yes no
## 1260 43 blue-collar married basic.4y unknown yes no
## 1262 52 housemaid married basic.4y no no no
## 1263 49 blue-collar married basic.4y unknown yes no
## 1265 36 services married high.school no yes no
## 1266 39 blue-collar married basic.6y no no no
## 1268 36 admin. divorced university.degree no no no
## 1269 39 blue-collar married basic.6y no no no
## 1270 31 admin. married high.school no no no
## 1272 35 unknown married basic.9y no no no
## 1273 55 retired married university.degree unknown no no
## 1274 57 retired married high.school unknown yes no
## 1275 38 entrepreneur married basic.6y no yes no
## 1277 60 services married high.school no yes no
## 1278 24 student single high.school no yes no
## 1279 38 entrepreneur married basic.6y no no no
## 1280 44 technician divorced high.school no no no
## 1281 42 blue-collar married basic.9y unknown yes no
## 1284 51 blue-collar married basic.4y unknown no no
## 1285 28 admin. single university.degree no no no
## 1286 27 housemaid married basic.9y no yes no
## 1289 30 services single high.school no yes no
## 1290 60 entrepreneur married basic.4y no yes no
## 1291 28 services single unknown no yes no
## 1292 45 blue-collar married basic.4y unknown no yes
## 1294 37 unemployed married professional.course no no yes
## 1295 36 services married basic.6y no yes no
## 1296 49 blue-collar married basic.4y no yes no
## 1297 35 services married professional.course unknown yes no
## 1298 34 admin. single high.school no no no
## 1299 31 blue-collar married basic.9y no no no
## 1300 42 admin. married university.degree unknown yes no
## 1301 39 blue-collar married basic.6y no yes no
## 1302 33 services married university.degree no yes no
## 1303 38 unemployed married high.school no no yes
## 1304 30 admin. divorced university.degree unknown no no
## 1305 31 blue-collar divorced professional.course no yes no
## 1306 39 management married university.degree no no no
## 1307 37 blue-collar married unknown unknown yes no
## 1308 48 blue-collar married basic.4y unknown no no
## 1309 32 services married high.school no no no
## 1310 48 blue-collar married basic.6y no yes no
## 1311 37 technician single university.degree no yes no
## 1313 26 services divorced basic.6y no no no
## 1314 33 management married high.school unknown no no
## 1315 54 admin. married university.degree no yes no
## 1318 45 admin. married university.degree no no no
## 1320 54 admin. married university.degree no no no
## 1321 37 blue-collar married basic.4y no no yes
## 1322 35 blue-collar married basic.9y unknown no no
## 1323 33 blue-collar divorced basic.6y unknown yes no
## 1324 49 technician married professional.course no no no
## 1325 43 technician married university.degree no yes no
## 1326 43 entrepreneur married university.degree no no no
## 1328 47 blue-collar married basic.9y no yes no
## 1329 30 services divorced high.school no no no
## 1330 51 admin. divorced university.degree no yes no
## 1333 39 unemployed married university.degree no yes no
## 1334 43 blue-collar married basic.6y unknown no no
## 1335 30 blue-collar married basic.9y unknown yes no
## 1336 37 blue-collar married professional.course no no no
## 1337 42 blue-collar married basic.6y no no no
## 1338 37 blue-collar married professional.course no yes yes
## 1339 37 admin. divorced university.degree no yes no
## 1340 37 blue-collar single basic.6y unknown yes no
## 1341 36 management single basic.6y no no no
## 1342 48 blue-collar married basic.9y no yes yes
## 1343 43 services married high.school no no no
## 1344 28 blue-collar married basic.6y no no no
## 1345 30 admin. divorced high.school no yes no
## 1348 38 entrepreneur married university.degree no no no
## 1349 50 technician married high.school no yes no
## 1350 36 blue-collar married basic.9y no yes no
## 1351 50 unemployed married professional.course no no no
## 1352 54 entrepreneur married basic.4y unknown no yes
## 1354 20 entrepreneur single high.school no no no
## 1355 24 blue-collar married basic.9y unknown yes no
## 1356 28 management single unknown no yes no
## 1357 55 housemaid married basic.4y no yes no
## 1358 25 blue-collar married high.school no no no
## 1359 41 admin. married basic.9y unknown yes no
## 1360 39 blue-collar married basic.6y no yes no
## 1361 27 blue-collar married basic.9y no yes no
## 1362 27 blue-collar married basic.9y no no no
## 1363 34 blue-collar married basic.6y unknown yes yes
## 1364 25 technician single professional.course no no no
## 1365 48 management married university.degree unknown yes no
## 1369 45 management married university.degree no yes yes
## 1370 28 blue-collar married basic.6y unknown yes no
## 1371 30 technician single basic.6y unknown yes no
## 1372 43 blue-collar married basic.4y no no no
## 1374 29 services single basic.9y no no no
## 1376 43 admin. married high.school no yes no
## 1378 36 admin. married high.school no yes no
## 1380 48 admin. married high.school unknown no no
## 1382 38 blue-collar single basic.9y unknown no no
## 1384 35 technician married professional.course no no yes
## 1385 42 services married high.school unknown no yes
## 1386 56 blue-collar married basic.4y unknown no no
## 1389 39 services single high.school unknown no no
## 1390 36 blue-collar married basic.6y unknown no no
## 1391 32 admin. married university.degree unknown no yes
## 1392 29 admin. single high.school no no no
## 1393 34 blue-collar married basic.9y no no no
## 1394 36 self-employed single basic.6y no no no
## 1397 31 services married basic.6y no no no
## 1398 35 blue-collar married basic.6y no no no
## 1400 35 blue-collar married basic.6y no no no
## 1401 44 blue-collar married basic.4y unknown no no
## 1402 36 technician divorced professional.course no yes no
## 1403 47 admin. married university.degree no no no
## 1404 59 technician married professional.course unknown no no
## 1405 29 blue-collar single high.school unknown unknown unknown
## 1406 30 services single high.school no no no
## 1407 38 blue-collar married basic.9y unknown no no
## 1408 45 management single university.degree no no no
## 1409 28 self-employed single university.degree no no no
## 1411 38 entrepreneur married basic.6y no yes yes
## 1413 31 technician divorced professional.course no yes yes
## 1416 54 housemaid married basic.9y no yes no
## 1418 43 unemployed married basic.9y no yes no
## 1419 49 admin. married high.school no no yes
## 1420 32 self-employed divorced professional.course no no no
## 1422 50 blue-collar single basic.9y unknown yes yes
## 1423 51 blue-collar divorced basic.9y no no no
## 1425 44 self-employed married professional.course no no no
## 1426 29 blue-collar married high.school no no no
## 1434 35 blue-collar married basic.6y unknown yes no
## 1435 40 services single professional.course no no no
## 1436 29 services divorced high.school no no no
## 1438 47 blue-collar married basic.6y no no no
## 1439 38 technician married university.degree unknown no no
## 1440 48 technician married professional.course no yes no
## 1441 53 retired married high.school unknown yes no
## 1442 53 management married university.degree no yes no
## 1443 51 blue-collar married basic.9y unknown yes no
## 1444 35 services married basic.9y no yes yes
## 1445 31 entrepreneur divorced high.school no yes no
## 1446 46 entrepreneur married basic.4y no no no
## 1448 38 admin. married basic.9y unknown yes no
## 1449 28 self-employed single university.degree no yes no
## 1450 50 technician married professional.course no yes no
## 1451 32 management single university.degree no no no
## 1452 31 blue-collar divorced basic.4y no yes no
## 1453 39 blue-collar married basic.9y unknown no no
## 1454 41 blue-collar married basic.9y no no yes
## 1455 31 admin. married high.school no yes yes
## 1456 54 blue-collar married basic.9y unknown no yes
## 1457 34 blue-collar married basic.6y unknown no yes
## 1458 51 services married high.school unknown yes no
## 1459 45 blue-collar single basic.9y no no no
## 1460 32 admin. divorced high.school no no yes
## 1461 28 student married university.degree no no yes
## 1464 41 self-employed single university.degree no no no
## 1465 57 services divorced high.school unknown no yes
## 1466 44 entrepreneur married high.school no yes no
## 1467 29 blue-collar single high.school unknown yes no
## 1468 38 admin. single university.degree no no no
## 1469 34 blue-collar married basic.4y no yes no
## 1470 36 technician single university.degree no yes no
## 1471 39 services divorced high.school no yes no
## 1472 30 blue-collar married basic.9y no yes yes
## 1473 35 services married basic.9y no no no
## 1474 60 entrepreneur married basic.4y no no no
## 1475 35 blue-collar married basic.9y no yes no
## 1477 57 blue-collar divorced professional.course no no no
## 1478 44 technician divorced unknown no no yes
## 1480 46 technician divorced basic.9y no yes no
## 1481 50 technician married professional.course unknown yes no
## 1482 45 management married university.degree no yes no
## 1484 35 admin. single basic.6y no yes no
## 1485 38 blue-collar married basic.6y no no no
## 1486 30 services divorced high.school no yes no
## 1487 25 services divorced high.school no no no
## 1489 37 technician single university.degree no yes no
## 1491 42 blue-collar married basic.4y unknown no no
## 1492 37 blue-collar married professional.course no yes no
## 1493 43 services married high.school no no no
## 1495 32 technician married professional.course no yes yes
## 1496 41 technician married professional.course no no no
## 1497 37 blue-collar married basic.6y unknown no no
## 1499 36 services married high.school no no yes
## 1500 38 blue-collar married basic.6y unknown no no
## 1501 33 admin. married high.school no yes yes
## 1502 41 services divorced high.school no yes no
## 1503 58 services married basic.4y no no no
## 1504 44 blue-collar single basic.9y unknown no no
## 1505 36 blue-collar married basic.9y unknown no no
## 1506 33 admin. married high.school no yes no
## 1507 30 technician married professional.course no no no
## 1508 44 blue-collar married basic.9y unknown no no
## 1509 32 admin. married high.school no yes yes
## 1510 38 admin. married basic.9y unknown no no
## 1511 41 blue-collar married professional.course unknown yes no
## 1512 40 services married basic.9y unknown no no
## 1514 28 admin. single university.degree no yes no
## 1518 36 services married high.school no yes no
## 1519 38 management married university.degree unknown no no
## 1520 36 services married high.school no yes no
## 1522 31 services married basic.9y no yes no
## 1523 47 technician married professional.course no yes no
## 1526 29 blue-collar single high.school no yes yes
## 1527 35 self-employed married university.degree no no yes
## 1528 33 services single basic.6y unknown no no
## 1529 41 management divorced university.degree unknown yes yes
## 1530 54 admin. married university.degree no yes no
## 1531 31 admin. single university.degree no no yes
## 1532 55 technician married university.degree no yes no
## 1534 41 services married high.school no no yes
## 1536 39 services married high.school no yes no
## 1537 34 blue-collar divorced professional.course no no yes
## 1538 39 services divorced high.school no yes no
## 1539 37 services married high.school no no no
## 1540 45 blue-collar married high.school no yes no
## 1541 49 admin. married university.degree no yes yes
## 1542 43 blue-collar married basic.4y unknown no no
## 1543 40 management married high.school no no no
## 1544 42 admin. married university.degree no yes no
## 1545 47 services single high.school no no no
## 1546 56 entrepreneur married university.degree no yes no
## 1548 34 blue-collar married basic.9y no no no
## 1549 29 admin. divorced university.degree no no no
## 1550 53 entrepreneur married university.degree no yes no
## 1552 51 self-employed married university.degree unknown no no
## 1553 20 entrepreneur single high.school no no no
## 1556 48 technician married professional.course no yes no
## 1557 29 entrepreneur married university.degree no yes no
## 1559 31 blue-collar single professional.course no no no
## 1560 29 blue-collar single basic.6y no no no
## 1562 40 blue-collar single basic.6y unknown no no
## 1563 33 management married university.degree no no no
## 1564 33 services single professional.course no no no
## 1565 34 management divorced basic.6y unknown yes no
## 1567 35 admin. married university.degree no yes no
## 1570 30 blue-collar married basic.6y no no no
## 1571 42 admin. single university.degree no no no
## 1574 38 admin. married high.school no yes no
## 1575 30 management married university.degree no yes no
## 1576 52 housemaid married university.degree no yes no
## 1577 38 admin. married high.school no yes no
## 1578 54 technician married basic.9y no no no
## 1579 29 admin. single university.degree no yes no
## 1581 28 admin. married high.school no no no
## 1582 30 admin. married high.school no yes no
## 1583 44 technician married professional.course unknown no yes
## 1584 37 blue-collar married basic.4y no no no
## 1586 25 blue-collar married professional.course unknown no no
## 1587 49 blue-collar married basic.4y unknown no no
## 1588 60 technician married university.degree unknown yes no
## 1590 55 technician married basic.9y unknown unknown unknown
## 1591 41 blue-collar married basic.9y unknown yes no
## 1593 39 management married high.school no no no
## 1595 38 services married high.school no no no
## 1596 32 technician married university.degree no yes no
## 1597 53 housemaid divorced basic.6y unknown unknown unknown
## 1598 37 admin. married high.school no unknown unknown
## 1599 34 self-employed married professional.course no unknown unknown
## 1600 31 admin. married high.school no yes yes
## 1602 39 unemployed married high.school no yes no
## 1603 39 unemployed married high.school no yes no
## 1604 37 admin. married high.school no yes no
## 1605 30 blue-collar married basic.4y no no no
## 1606 32 blue-collar married professional.course no no no
## 1607 37 technician married basic.9y no no no
## 1608 27 blue-collar married university.degree no no yes
## 1610 33 blue-collar single basic.9y no yes no
## 1611 47 blue-collar single basic.4y no no no
## 1612 40 blue-collar married basic.9y unknown no no
## 1613 38 blue-collar married basic.4y unknown yes yes
## 1615 54 admin. married university.degree no no no
## 1616 51 services married high.school no yes no
## 1617 41 blue-collar single basic.9y no yes no
## 1618 51 blue-collar married high.school no no no
## 1619 55 services married high.school no yes no
## 1620 39 admin. single high.school no yes no
## 1621 37 self-employed married basic.9y no yes yes
## 1622 39 blue-collar married basic.9y no yes no
## 1624 33 management married university.degree no no no
## 1625 59 management married university.degree no no no
## 1626 55 technician married basic.9y unknown yes no
## 1627 53 blue-collar married basic.9y unknown yes no
## 1628 36 services married basic.6y no no no
## 1629 40 services married high.school no no no
## 1630 37 technician single professional.course no no no
## 1631 56 housemaid divorced high.school no no no
## 1632 32 admin. married high.school no yes no
## 1635 30 blue-collar married basic.9y no yes no
## 1636 45 management married basic.4y unknown yes no
## 1637 60 housemaid married high.school unknown no no
## 1638 32 student single university.degree no no no
## 1639 39 unemployed single basic.9y unknown yes no
## 1640 56 services married basic.4y unknown yes yes
## 1642 20 entrepreneur single high.school no no no
## 1644 46 admin. married university.degree no yes yes
## 1645 28 technician single university.degree unknown no no
## 1646 41 admin. single university.degree no no no
## 1647 33 admin. divorced basic.9y no no no
## 1648 43 admin. married university.degree unknown yes no
## 1649 43 admin. married university.degree unknown no no
## 1650 47 unemployed married high.school unknown yes no
## 1651 24 technician single professional.course no no no
## 1652 31 blue-collar married basic.4y no no no
## 1654 35 blue-collar married basic.6y no unknown unknown
## 1655 58 blue-collar married basic.4y unknown no no
## 1657 35 blue-collar married basic.9y no no no
## 1658 25 admin. married high.school no no no
## 1659 31 blue-collar married basic.4y no no no
## 1660 39 admin. married basic.9y no no no
## 1661 39 blue-collar married basic.6y unknown yes yes
## 1662 37 blue-collar married basic.9y no yes yes
## 1663 36 unemployed divorced professional.course unknown yes no
## 1665 30 blue-collar married basic.9y no yes yes
## 1666 60 retired married high.school no no no
## 1667 37 admin. divorced university.degree no no no
## 1668 28 services single high.school no yes yes
## 1669 45 admin. married basic.9y unknown yes no
## 1670 31 entrepreneur single basic.9y no no no
## 1671 49 unemployed single professional.course unknown no no
## 1672 46 unknown married basic.4y unknown no no
## 1673 36 services divorced university.degree no no no
## 1674 33 technician divorced professional.course no yes no
## 1675 27 services single high.school unknown no no
## 1676 60 retired married university.degree unknown no no
## 1677 60 retired married university.degree unknown yes no
## 1678 27 services single high.school unknown no no
## 1679 39 blue-collar married high.school no yes no
## 1680 39 services married high.school no yes no
## 1681 35 unknown single basic.4y unknown no no
## 1682 56 admin. single high.school no no no
## 1683 39 admin. married university.degree no yes no
## 1684 35 entrepreneur married basic.9y no no no
## 1685 35 technician divorced high.school no no no
## 1687 29 management single university.degree no yes no
## 1690 26 admin. married high.school no yes yes
## 1691 31 technician married professional.course no no no
## 1692 33 blue-collar married basic.6y unknown yes yes
## 1693 39 blue-collar divorced basic.9y no yes no
## 1694 49 blue-collar married basic.6y unknown yes no
## 1695 31 admin. married high.school no no no
## 1696 31 admin. married high.school unknown no no
## 1697 49 blue-collar married basic.4y no no no
## 1698 49 blue-collar married basic.4y no no no
## 1699 31 entrepreneur married basic.9y unknown no no
## 1700 36 management married basic.9y no no no
## 1701 52 management married professional.course no no no
## 1702 37 blue-collar single unknown unknown no no
## 1703 40 blue-collar divorced basic.9y no no no
## 1705 34 technician single professional.course unknown no no
## 1706 39 management single university.degree no no no
## 1707 39 management single university.degree no no no
## 1708 58 retired divorced university.degree no yes no
## 1709 56 services married high.school unknown no no
## 1710 29 blue-collar single basic.9y no no no
## 1711 39 admin. married high.school no no no
## 1712 31 technician married professional.course no no no
## 1713 60 management married university.degree unknown no no
## 1714 39 blue-collar married basic.6y no yes no
## 1715 49 admin. divorced high.school no yes no
## 1716 45 unemployed married high.school unknown no no
## 1717 32 blue-collar married high.school unknown yes no
## 1718 41 technician married high.school no no no
## 1719 32 services married high.school no no no
## 1720 46 services married professional.course no no no
## 1721 28 services single basic.9y unknown no no
## 1724 35 admin. married professional.course no yes yes
## 1725 24 services single high.school no yes no
## 1726 51 blue-collar married basic.9y no no yes
## 1727 59 admin. married university.degree no no yes
## 1728 33 technician married professional.course no no no
## 1729 36 unemployed single basic.4y unknown no no
## 1730 24 services single high.school no no no
## 1731 30 blue-collar single basic.9y no yes no
## 1732 49 admin. married university.degree unknown no no
## 1734 34 admin. married university.degree no yes no
## 1735 25 technician single professional.course no yes yes
## 1737 43 entrepreneur married high.school unknown yes no
## 1738 36 unemployed single basic.4y unknown no no
## 1739 36 unemployed single basic.4y unknown no no
## 1740 37 technician married professional.course unknown yes no
## 1741 36 self-employed married university.degree no no no
## 1743 33 blue-collar single high.school no no no
## 1744 42 services married high.school no no no
## 1745 37 admin. married high.school no yes yes
## 1746 35 admin. married high.school no no no
## 1747 50 admin. married high.school unknown yes yes
## 1748 48 admin. married high.school no yes yes
## 1750 39 technician divorced professional.course no yes no
## 1751 33 management single university.degree no no no
## 1752 29 admin. married high.school no no no
## 1753 33 admin. married high.school no yes no
## 1754 41 admin. single university.degree no yes no
## 1755 46 blue-collar married basic.4y no yes no
## 1756 27 services single high.school unknown no no
## 1759 37 housemaid married high.school unknown no yes
## 1760 24 services single high.school no no yes
## 1761 30 blue-collar married basic.6y unknown yes no
## 1763 36 entrepreneur married university.degree no no yes
## 1764 24 services single high.school no yes no
## 1768 40 housemaid married basic.4y no yes yes
## 1769 49 entrepreneur married high.school no no no
## 1770 25 admin. single high.school no yes no
## 1772 34 technician married professional.course no yes yes
## 1774 39 admin. married basic.9y no yes no
## 1775 34 technician married professional.course no no yes
## 1776 36 technician married professional.course no no no
## 1777 60 technician divorced professional.course unknown yes no
## 1779 40 housemaid divorced high.school no no no
## 1780 56 blue-collar married basic.6y unknown no no
## 1781 36 technician married professional.course no yes no
## 1783 33 blue-collar single basic.9y unknown yes yes
## 1784 36 technician married professional.course no no yes
## 1785 47 blue-collar married basic.4y no no no
## 1786 47 blue-collar married basic.4y no yes no
## 1788 30 blue-collar married basic.9y no yes no
## 1789 37 housemaid married basic.4y unknown yes yes
## 1791 58 blue-collar married basic.9y no no no
## 1793 34 blue-collar married basic.9y unknown yes no
## 1794 43 blue-collar married basic.4y unknown no no
## 1795 30 technician married professional.course no yes no
## 1796 52 admin. married university.degree no no no
## 1798 32 admin. single university.degree no yes yes
## 1799 53 self-employed married university.degree no no no
## 1802 51 technician married professional.course no no no
## 1805 43 admin. married high.school no yes no
## 1806 34 admin. married high.school no yes yes
## 1808 41 management married unknown no yes no
## 1810 43 admin. married university.degree unknown yes no
## 1811 34 blue-collar married basic.9y unknown yes no
## 1813 59 admin. married university.degree no no no
## 1814 39 technician divorced professional.course no no no
## 1815 52 management married high.school unknown yes no
## 1818 30 technician married university.degree no no no
## 1819 49 services married high.school no yes no
## 1820 44 blue-collar single basic.6y unknown yes no
## 1821 41 technician married university.degree no yes no
## 1822 27 services single high.school no yes no
## 1823 32 admin. single university.degree no yes no
## 1824 27 admin. single high.school no yes no
## 1825 29 management single university.degree no no no
## 1826 53 admin. married university.degree unknown yes no
## 1827 30 blue-collar single basic.9y no yes no
## 1828 29 management single university.degree no yes no
## 1829 32 technician single university.degree no no no
## 1830 55 admin. divorced university.degree no yes no
## 1831 39 admin. married university.degree no yes no
## 1833 26 admin. married university.degree no yes yes
## 1834 52 self-employed married university.degree no no no
## 1835 28 admin. single university.degree no yes no
## 1837 60 management married university.degree unknown no no
## 1838 45 blue-collar married basic.4y unknown yes yes
## 1839 32 admin. single university.degree no yes yes
## 1840 50 unemployed married basic.9y no yes no
## 1841 47 management divorced basic.4y no no no
## 1842 40 technician married university.degree no no no
## 1844 52 blue-collar married basic.9y unknown yes no
## 1845 43 management married unknown no no no
## 1846 40 blue-collar married basic.6y unknown yes no
## 1847 43 blue-collar single basic.9y no yes no
## 1850 37 services married high.school no yes no
## 1851 32 admin. single university.degree no no no
## 1853 35 admin. married high.school no yes no
## 1854 56 admin. married university.degree no no no
## 1855 56 blue-collar married basic.4y unknown no no
## 1856 37 entrepreneur single university.degree no no no
## 1857 43 technician single professional.course no no no
## 1858 41 housemaid married high.school no yes no
## 1859 55 unemployed single basic.4y unknown unknown unknown
## 1860 43 technician single professional.course no no no
## 1861 29 unknown married university.degree no unknown unknown
## 1862 31 services married high.school no yes no
## 1863 39 admin. single university.degree no no no
## 1864 38 blue-collar single basic.9y unknown yes no
## 1865 56 admin. married high.school no yes no
## 1866 36 entrepreneur married unknown unknown yes no
## 1867 54 management married basic.4y unknown no no
## 1868 34 admin. married university.degree no yes no
## 1869 28 services single basic.9y unknown yes no
## 1870 34 blue-collar married basic.4y no yes no
## 1871 45 blue-collar married basic.9y no yes no
## 1872 59 admin. married university.degree no yes no
## 1874 25 blue-collar married basic.9y no yes no
## 1875 33 admin. divorced university.degree no no yes
## 1876 27 admin. married university.degree no yes no
## 1877 33 admin. divorced university.degree no no no
## 1878 56 blue-collar married basic.4y unknown yes no
## 1879 25 admin. married high.school no yes no
## 1880 30 housemaid married high.school unknown yes no
## 1881 38 blue-collar divorced basic.9y no no yes
## 1882 37 self-employed single university.degree unknown yes no
## 1883 58 entrepreneur married university.degree unknown no no
## 1884 28 blue-collar married basic.6y unknown no no
## 1885 42 blue-collar married basic.9y unknown no no
## 1886 36 technician single professional.course unknown no no
## 1887 52 management married professional.course no unknown unknown
## 1888 33 technician single high.school no no yes
## 1889 33 management single university.degree no no no
## 1890 29 blue-collar single high.school unknown no no
## 1892 50 management single university.degree no yes no
## 1893 38 management married university.degree no no no
## 1894 33 services married high.school no no no
## 1895 42 admin. married university.degree no no no
## 1897 28 blue-collar married basic.9y unknown yes no
## 1902 50 retired married basic.4y unknown yes no
## 1903 29 admin. single basic.9y unknown no no
## 1904 30 technician married professional.course no no yes
## 1905 46 blue-collar married basic.9y no yes yes
## 1906 26 admin. single high.school unknown yes no
## 1907 34 admin. single basic.9y no no no
## 1908 46 self-employed married basic.9y unknown yes no
## 1910 50 housemaid divorced high.school no no no
## 1911 31 technician single basic.9y unknown no no
## 1912 48 blue-collar married professional.course no no no
## 1914 45 admin. divorced basic.9y unknown no no
## 1915 50 services married professional.course unknown yes no
## 1916 44 unknown single basic.9y unknown unknown unknown
## 1917 44 services married high.school no no no
## 1919 37 housemaid single basic.9y unknown yes yes
## 1920 34 admin. single high.school no no no
## 1922 40 housemaid single university.degree no yes no
## 1923 39 services married high.school unknown no yes
## 1924 29 admin. married high.school no yes no
## 1925 34 blue-collar married basic.6y unknown yes yes
## 1926 25 blue-collar married basic.9y no no no
## 1927 29 services married basic.9y no no no
## 1928 44 technician single professional.course no no no
## 1929 33 admin. single university.degree no yes no
## 1930 33 blue-collar married basic.4y no yes no
## 1931 40 blue-collar married high.school no no no
## 1932 59 retired married basic.4y unknown no no
## 1933 38 technician single professional.course no no no
## 1934 41 blue-collar married basic.6y unknown no no
## 1935 33 services married high.school no yes no
## 1936 36 admin. married high.school no yes no
## 1937 48 admin. married basic.9y no no yes
## 1938 44 services divorced high.school unknown yes no
## 1939 50 blue-collar divorced basic.9y no no no
## 1940 35 self-employed married professional.course no no no
## 1942 24 blue-collar married basic.9y no yes yes
## 1943 32 management married high.school no yes no
## 1944 56 services divorced high.school unknown no no
## 1945 50 technician married university.degree no yes no
## 1946 38 blue-collar married high.school no no no
## 1947 25 self-employed single university.degree no unknown unknown
## 1948 28 services single high.school no unknown unknown
## 1949 41 blue-collar married basic.4y no no no
## 1950 34 blue-collar married unknown unknown unknown unknown
## 1952 31 admin. married university.degree unknown no no
## 1953 39 housemaid married basic.4y no yes yes
## 1954 26 entrepreneur married unknown no no no
## 1955 37 blue-collar married basic.6y unknown yes yes
## 1956 25 student single high.school no no no
## 1957 33 services married high.school no yes no
## 1958 40 blue-collar married unknown no no no
## 1959 37 entrepreneur single university.degree no no no
## 1960 46 housemaid married basic.9y no no no
## 1961 53 admin. divorced high.school no yes no
## 1962 32 unemployed married basic.9y no no no
## 1965 26 technician married professional.course no yes no
## 1966 52 blue-collar single basic.9y unknown yes no
## 1967 54 admin. married basic.4y unknown no no
## 1969 42 admin. married basic.9y no yes no
## 1970 41 management single unknown no no no
## 1971 26 services single high.school no no no
## 1973 54 technician married unknown unknown no no
## 1975 26 blue-collar single high.school no no no
## 1977 28 technician single professional.course no yes no
## 1978 35 technician divorced professional.course no no yes
## 1981 37 technician married professional.course no yes no
## 1982 52 technician married university.degree no no no
## 1983 36 admin. married high.school no yes no
## 1985 43 blue-collar married basic.4y no yes no
## 1986 36 blue-collar married basic.6y unknown no no
## 1987 36 blue-collar single high.school no no yes
## 1989 44 blue-collar married basic.9y unknown yes no
## 1990 49 blue-collar married professional.course unknown no no
## 1991 56 retired married basic.4y unknown yes yes
## 1992 39 blue-collar divorced basic.9y no no no
## 1993 29 blue-collar married professional.course unknown yes no
## 1994 41 admin. single university.degree unknown no no
## 1995 47 admin. married university.degree no yes no
## 1996 38 blue-collar married basic.6y unknown yes no
## 1997 36 technician married high.school no yes no
## 1998 46 technician divorced professional.course no yes no
## 1999 47 services divorced high.school no yes no
## 2000 47 blue-collar single basic.4y no yes no
## 2002 42 management married university.degree unknown yes no
## 2003 59 management married university.degree no no no
## 2004 33 unemployed married professional.course unknown yes no
## 2005 48 entrepreneur married high.school no yes no
## 2006 53 technician single professional.course no yes no
## 2007 57 blue-collar married unknown unknown unknown unknown
## 2008 34 services married high.school unknown yes no
## 2009 51 services divorced professional.course no yes no
## 2011 45 unknown married unknown unknown no no
## 2013 44 blue-collar married basic.6y no yes no
## 2014 48 admin. married university.degree no no yes
## 2015 59 retired married university.degree unknown no no
## 2016 44 admin. single high.school no no no
## 2017 50 blue-collar married basic.9y unknown yes no
## 2019 53 self-employed married university.degree no no no
## 2020 41 technician married professional.course unknown no no
## 2021 55 admin. married high.school no yes yes
## 2022 36 blue-collar married basic.4y unknown no no
## 2023 37 blue-collar married basic.4y no yes no
## 2024 36 management divorced high.school no no no
## 2025 45 management married basic.9y no yes yes
## 2026 35 admin. single basic.6y no yes no
## 2028 43 blue-collar married basic.6y unknown yes no
## 2029 36 entrepreneur married university.degree no yes no
## 2030 55 admin. divorced university.degree no yes no
## 2032 54 services married basic.4y unknown yes no
## 2033 39 housemaid married university.degree no yes no
## 2034 40 technician married professional.course unknown no no
## 2035 49 services married high.school unknown unknown unknown
## 2036 45 unemployed married high.school unknown no no
## 2037 32 admin. single university.degree no no no
## 2039 41 admin. divorced high.school no no no
## 2040 24 services single high.school no no no
## 2042 49 management divorced high.school unknown no no
## 2043 59 retired single university.degree no no no
## 2044 44 blue-collar married professional.course no no no
## 2045 43 management married basic.6y unknown no no
## 2046 59 blue-collar married basic.4y unknown no no
## 2048 49 technician divorced basic.9y unknown yes no
## 2049 39 entrepreneur divorced high.school no no no
## 2050 39 entrepreneur divorced high.school no no no
## 2051 33 blue-collar single high.school no no no
## 2052 42 blue-collar married professional.course no yes no
## 2053 33 management married university.degree no no no
## 2054 51 blue-collar married basic.4y unknown no no
## 2055 29 management single university.degree no yes yes
## 2057 29 student single high.school unknown no no
## 2058 34 management married university.degree unknown no no
## 2059 33 services married high.school unknown no no
## 2060 54 management divorced university.degree no no no
## 2061 56 services divorced high.school unknown no no
## 2063 51 blue-collar married basic.4y no yes yes
## 2064 33 blue-collar married professional.course no no no
## 2065 39 admin. married university.degree no no no
## 2066 32 blue-collar married professional.course no no no
## 2068 47 technician divorced university.degree no no no
## 2069 26 technician married university.degree no no no
## 2070 26 self-employed married university.degree no no no
## 2071 25 blue-collar married high.school no no no
## 2072 52 entrepreneur married university.degree unknown no no
## 2073 59 blue-collar married basic.4y unknown no no
## 2074 39 blue-collar divorced high.school no no no
## 2075 31 blue-collar married basic.4y unknown no no
## 2076 56 housemaid divorced basic.4y unknown no no
## 2078 36 technician married university.degree no yes yes
## 2079 44 blue-collar married basic.4y unknown no no
## 2080 31 admin. divorced high.school no no no
## 2081 40 housemaid single university.degree no no yes
## 2082 34 technician single university.degree unknown no no
## 2083 56 entrepreneur married basic.4y no no no
## 2085 38 services divorced high.school no no no
## 2086 42 management married university.degree no yes no
## 2087 42 management married university.degree no no no
## 2088 40 services married high.school unknown no no
## 2089 47 blue-collar married basic.4y unknown no no
## 2090 44 blue-collar married professional.course unknown yes no
## 2091 48 services married high.school no no no
## 2093 31 blue-collar married basic.9y unknown yes no
## 2095 29 admin. single basic.9y unknown no no
## 2097 39 unemployed married university.degree no yes no
## 2098 35 technician married professional.course no yes no
## 2099 33 entrepreneur married high.school no no no
## 2100 48 unemployed married high.school unknown yes yes
## 2101 39 technician married professional.course no yes no
## 2102 41 admin. married university.degree no yes yes
## 2103 28 management single unknown no no no
## 2104 34 housemaid married university.degree no no no
## 2106 27 admin. single high.school unknown unknown unknown
## 2108 30 technician single professional.course no no no
## 2110 38 blue-collar married professional.course no no no
## 2111 37 entrepreneur single university.degree no yes no
## 2113 33 technician married basic.9y no yes no
## 2115 33 technician married basic.9y no yes no
## 2116 36 technician married high.school no yes no
## 2117 33 technician married basic.9y no no no
## 2118 28 student single university.degree unknown yes no
## 2119 28 student single university.degree unknown yes no
## 2120 38 technician married professional.course no no no
## 2121 50 management divorced professional.course no no no
## 2122 32 management married high.school no yes no
## 2123 45 blue-collar married basic.4y no no no
## 2124 36 admin. married university.degree no no no
## 2125 30 blue-collar single basic.9y unknown unknown unknown
## 2126 41 blue-collar married basic.9y unknown no no
## 2127 34 blue-collar single basic.6y unknown yes no
## 2128 57 retired single high.school no no no
## 2131 32 blue-collar married basic.4y unknown no no
## 2133 57 retired single high.school no unknown unknown
## 2134 46 technician married basic.9y no no no
## 2135 44 services married basic.4y unknown yes no
## 2136 32 blue-collar single basic.9y no no no
## 2137 41 entrepreneur married basic.6y no no no
## 2139 33 technician married basic.9y no no no
## 2142 51 blue-collar married basic.9y no no no
## 2143 52 management married university.degree unknown no no
## 2144 39 blue-collar married basic.9y no no no
## 2145 50 management married basic.9y no no no
## 2147 51 technician married professional.course no yes yes
## 2148 40 admin. single university.degree no yes no
## 2152 33 blue-collar married basic.9y unknown yes no
## 2153 37 self-employed divorced university.degree no yes yes
## 2154 37 self-employed divorced university.degree no yes no
## 2156 30 admin. single high.school no unknown unknown
## 2158 38 blue-collar married basic.6y no no no
## 2159 31 services married high.school no yes no
## 2160 48 blue-collar married basic.9y no yes no
## 2161 29 admin. single high.school no yes no
## 2162 44 blue-collar married basic.9y unknown yes no
## 2163 38 blue-collar single basic.9y unknown yes no
## 2164 48 blue-collar married basic.9y no yes no
## 2165 41 blue-collar married basic.4y no yes no
## 2167 56 admin. married high.school no yes no
## 2168 39 technician married university.degree no yes no
## 2169 33 technician married professional.course no yes no
## 2170 31 admin. married high.school no no no
## 2171 54 retired divorced professional.course no no no
## 2172 26 services divorced professional.course no no no
## 2173 54 blue-collar married professional.course unknown yes yes
## 2174 45 management married professional.course no no no
## 2175 41 blue-collar divorced basic.6y no yes no
## 2176 35 admin. single university.degree no no yes
## 2177 28 admin. married high.school no yes no
## 2179 57 retired single high.school no no no
## 2180 35 admin. married high.school unknown no no
## 2182 30 services married professional.course unknown no no
## 2185 34 blue-collar married basic.9y no no yes
## 2186 29 management single university.degree no yes no
## 2187 37 admin. married basic.4y no yes no
## 2188 25 blue-collar married basic.9y no yes no
## 2189 31 blue-collar married basic.9y no unknown unknown
## 2190 56 admin. married basic.9y unknown no no
## 2191 39 services married professional.course no no no
## 2192 27 blue-collar married basic.9y unknown no no
## 2193 52 management married university.degree unknown no no
## 2194 39 technician married university.degree no yes no
## 2195 34 management single university.degree no no no
## 2196 47 services divorced high.school no no no
## 2197 31 blue-collar married basic.6y no yes no
## 2198 33 admin. married high.school no yes yes
## 2199 36 blue-collar married basic.6y unknown no no
## 2201 36 blue-collar married basic.6y unknown yes no
## 2202 57 blue-collar married basic.4y unknown yes no
## 2203 41 management married high.school no no no
## 2206 29 blue-collar married basic.9y no no no
## 2207 39 blue-collar married basic.9y no no no
## 2209 50 blue-collar married basic.4y unknown yes no
## 2210 47 blue-collar married basic.4y no unknown unknown
## 2211 37 admin. married unknown no no no
## 2212 37 admin. married high.school no yes no
## 2213 32 unemployed married basic.9y no unknown unknown
## 2214 56 admin. married high.school no yes yes
## 2215 36 services married high.school unknown yes no
## 2216 51 technician married professional.course no yes no
## 2217 47 blue-collar divorced basic.4y no no yes
## 2218 54 technician married university.degree unknown no yes
## 2219 41 blue-collar married basic.4y unknown no no
## 2220 44 blue-collar married high.school unknown yes no
## 2221 41 admin. single university.degree unknown yes yes
## 2223 44 blue-collar married high.school no no no
## 2224 42 admin. single unknown no no no
## 2226 35 services married high.school no no no
## 2227 54 unknown married unknown unknown no no
## 2229 37 technician married basic.9y unknown yes no
## 2231 41 admin. married basic.9y unknown yes no
## 2232 31 technician married professional.course no no no
## 2234 45 entrepreneur married basic.9y no no no
## 2235 47 management married university.degree no no no
## 2238 26 admin. single high.school no yes no
## 2239 36 blue-collar single basic.4y no yes no
## 2240 33 blue-collar married basic.9y no no no
## 2241 38 management married university.degree no yes no
## 2242 50 blue-collar married basic.4y unknown yes no
## 2243 37 blue-collar single high.school no no no
## 2245 36 admin. single high.school no yes yes
## 2246 35 admin. married high.school no yes no
## 2247 31 blue-collar married basic.9y no yes no
## 2248 31 unemployed single professional.course no no no
## 2249 32 blue-collar married basic.9y no no no
## 2250 51 entrepreneur divorced unknown no yes no
## 2251 39 blue-collar divorced basic.9y no yes no
## 2255 29 management married university.degree no no no
## 2256 57 blue-collar married professional.course unknown unknown unknown
## 2257 53 blue-collar married basic.9y unknown no no
## 2258 39 blue-collar married basic.9y unknown no no
## 2259 60 technician divorced professional.course unknown yes no
## 2260 42 blue-collar married basic.4y unknown no no
## 2261 30 admin. married university.degree no yes no
## 2262 34 technician married university.degree no no no
## 2263 43 technician single professional.course no no no
## 2265 35 admin. single university.degree no yes no
## 2266 26 admin. single high.school no no no
## 2267 31 blue-collar married basic.9y no yes no
## 2268 55 unemployed married basic.4y unknown yes no
## 2269 59 housemaid married basic.4y unknown no yes
## 2271 48 blue-collar married basic.9y no yes no
## 2272 37 services married basic.9y no yes no
## 2273 35 blue-collar married basic.6y unknown no no
## 2274 30 admin. single high.school no yes yes
## 2275 30 admin. single high.school no no no
## 2276 32 admin. single university.degree unknown no no
## 2277 53 admin. married high.school no yes no
## 2278 34 blue-collar married basic.4y no no no
## 2280 43 admin. married high.school no yes no
## 2281 54 retired divorced basic.4y no yes no
## 2282 45 services single professional.course unknown no no
## 2283 46 management single university.degree no no no
## 2284 57 admin. divorced university.degree no yes no
## 2285 34 admin. divorced university.degree no no no
## 2286 33 housemaid married basic.4y no no no
## 2287 48 admin. married high.school no yes no
## 2288 37 unknown married university.degree no no yes
## 2289 33 self-employed married university.degree no yes no
## 2290 36 admin. single university.degree no no yes
## 2292 28 blue-collar single basic.9y no yes no
## 2294 31 management single university.degree no no no
## 2296 26 admin. married high.school unknown no no
## 2297 40 blue-collar married basic.6y unknown no no
## 2298 40 blue-collar married basic.6y unknown yes no
## 2299 51 blue-collar divorced basic.4y no no no
## 2300 30 blue-collar single basic.9y no yes no
## 2301 34 entrepreneur married professional.course no yes no
## 2302 51 blue-collar divorced basic.4y no no no
## 2303 39 admin. single high.school unknown no no
## 2304 57 blue-collar married basic.4y unknown no yes
## 2305 33 technician divorced high.school no no no
## 2306 33 management married basic.4y no yes yes
## 2307 22 blue-collar single basic.6y unknown unknown unknown
## 2309 56 technician married basic.4y unknown unknown unknown
## 2311 50 technician married professional.course no no no
## 2313 53 technician married professional.course unknown yes no
## 2314 39 self-employed married basic.4y unknown yes no
## 2315 33 technician divorced professional.course no no no
## 2316 38 management married basic.9y no yes no
## 2317 35 admin. single high.school no yes yes
## 2318 28 blue-collar married basic.9y unknown no no
## 2320 37 admin. single university.degree no no no
## 2321 42 housemaid married high.school unknown yes no
## 2322 35 services single high.school no no yes
## 2323 48 admin. divorced high.school no no yes
## 2324 41 technician married professional.course unknown yes no
## 2325 26 blue-collar married basic.9y no no no
## 2328 58 retired married unknown no unknown unknown
## 2329 58 retired married unknown no unknown unknown
## 2330 54 management divorced university.degree no yes no
## 2331 38 blue-collar single basic.9y no yes no
## 2333 35 admin. married university.degree no yes no
## 2335 34 admin. married professional.course no yes no
## 2336 28 technician married high.school no no no
## 2337 36 services single basic.9y no yes yes
## 2338 42 admin. single high.school no no no
## 2339 37 technician single university.degree no yes no
## 2340 45 services married basic.9y no no no
## 2341 48 self-employed married basic.9y unknown yes no
## 2344 53 technician married professional.course unknown yes no
## 2345 53 technician married professional.course unknown yes yes
## 2347 30 unknown single university.degree no no no
## 2349 48 technician married high.school no no no
## 2351 49 services divorced basic.9y no yes no
## 2352 48 technician married high.school no no yes
## 2353 38 blue-collar single university.degree unknown no no
## 2354 44 technician married professional.course unknown yes no
## 2356 44 blue-collar divorced basic.4y unknown yes no
## 2357 50 self-employed married university.degree no yes yes
## 2358 38 blue-collar single university.degree unknown no no
## 2359 41 technician married professional.course no yes no
## 2360 45 blue-collar married basic.4y no no no
## 2361 53 admin. married university.degree no yes no
## 2362 36 entrepreneur married university.degree no yes no
## 2363 45 services married high.school no yes no
## 2365 37 blue-collar married professional.course no no yes
## 2366 25 technician single university.degree no yes no
## 2367 35 admin. divorced university.degree no no yes
## 2368 34 admin. married university.degree no no no
## 2369 32 unknown married basic.6y unknown no no
## 2371 39 self-employed single university.degree no no no
## 2372 36 admin. married high.school no no yes
## 2373 46 entrepreneur married university.degree no yes no
## 2374 56 entrepreneur married university.degree no no no
## 2376 37 technician single basic.9y unknown no no
## 2377 39 blue-collar married high.school no yes no
## 2378 52 services married unknown unknown no no
## 2379 39 services married unknown unknown no no
## 2380 52 services married unknown unknown no no
## 2381 51 technician married professional.course unknown no no
## 2382 42 technician single unknown no no no
## 2383 34 technician married high.school no no yes
## 2384 28 blue-collar married basic.9y no yes no
## 2388 53 blue-collar married basic.9y no yes no
## 2390 47 admin. married university.degree unknown no no
## 2391 39 blue-collar married basic.9y no no no
## 2392 37 services married high.school no no no
## 2393 40 technician married professional.course unknown no no
## 2395 56 admin. divorced unknown unknown yes yes
## 2396 36 admin. married high.school unknown no no
## 2397 45 blue-collar married basic.4y unknown yes no
## 2398 38 technician single university.degree no yes yes
## 2399 41 technician married professional.course no no no
## 2401 45 admin. single university.degree no no yes
## 2402 48 services married high.school unknown no no
## 2403 29 admin. single basic.9y unknown no no
## 2404 38 technician single university.degree no no no
## 2405 48 services married high.school unknown yes no
## 2406 40 blue-collar married high.school no no no
## 2407 38 blue-collar single university.degree unknown yes no
## 2408 42 blue-collar married basic.4y no no no
## 2409 32 blue-collar married basic.9y no no no
## 2410 56 admin. married unknown unknown yes no
## 2411 54 services married unknown no no no
## 2413 47 admin. married high.school unknown yes no
## 2415 42 admin. single high.school no no no
## 2416 55 blue-collar married basic.4y unknown yes yes
## 2417 37 services married high.school no yes no
## 2418 38 technician single university.degree no no no
## 2419 45 technician married university.degree unknown yes no
## 2421 37 blue-collar married professional.course unknown yes yes
## 2422 30 technician married university.degree no yes no
## 2423 36 blue-collar married high.school no no yes
## 2425 51 admin. single basic.6y no no no
## 2426 46 housemaid married basic.4y no no yes
## 2428 47 services married high.school unknown no no
## 2429 41 blue-collar married basic.4y unknown yes no
## 2430 53 retired single professional.course unknown yes no
## 2431 55 retired married basic.4y unknown yes no
## 2432 44 management married university.degree unknown no no
## 2433 48 blue-collar married basic.4y no yes no
## 2434 50 services married unknown unknown no no
## 2435 34 blue-collar married basic.9y no no no
## 2436 38 entrepreneur married basic.9y no no no
## 2437 42 unemployed single university.degree no no no
## 2438 57 retired married university.degree no yes no
## 2439 58 blue-collar divorced basic.4y no yes no
## 2440 48 management married university.degree unknown yes no
## 2441 32 admin. divorced high.school no no no
## 2442 35 admin. single university.degree no no no
## 2444 47 blue-collar married basic.4y no yes yes
## 2446 38 technician married professional.course no yes no
## 2447 49 self-employed married professional.course no yes no
## 2448 33 self-employed divorced basic.9y no yes no
## 2450 45 technician married university.degree no yes yes
## 2452 38 blue-collar married basic.4y unknown yes no
## 2453 45 technician single professional.course no no no
## 2454 28 admin. single unknown no no no
## 2455 54 blue-collar married basic.4y unknown no no
## 2456 58 retired married professional.course unknown no yes
## 2458 57 admin. divorced basic.9y unknown no no
## 2459 28 admin. married university.degree no unknown unknown
## 2461 60 retired married university.degree unknown unknown unknown
## 2462 39 services divorced basic.9y no no no
## 2463 40 self-employed married professional.course no no no
## 2464 58 unknown married basic.4y no no yes
## 2465 36 blue-collar married basic.9y unknown no no
## 2466 59 retired married university.degree no no no
## 2467 42 admin. married basic.6y no no no
## 2470 37 blue-collar married high.school no yes no
## 2471 49 blue-collar married basic.4y unknown no no
## 2472 39 blue-collar married basic.9y unknown yes yes
## 2473 46 blue-collar married basic.9y unknown no no
## 2474 36 admin. married high.school no no no
## 2475 35 technician married professional.course no no no
## 2476 51 blue-collar married basic.4y unknown no no
## 2477 40 blue-collar divorced basic.9y unknown yes yes
## 2478 32 blue-collar married basic.9y no yes no
## 2479 42 admin. divorced university.degree no no no
## 2480 25 admin. single university.degree no no no
## 2481 46 blue-collar married basic.6y unknown yes no
## 2482 42 admin. married basic.6y no no no
## 2483 47 management married basic.4y unknown yes no
## 2484 56 admin. married high.school no no no
## 2486 47 housemaid married university.degree no no no
## 2488 48 admin. divorced high.school no no no
## 2489 45 management married unknown unknown yes no
## 2490 58 retired married high.school no yes no
## 2491 39 blue-collar married basic.9y unknown yes no
## 2493 33 management single university.degree no yes yes
## 2494 58 retired divorced professional.course unknown yes no
## 2495 39 admin. married high.school unknown yes no
## 2496 49 self-employed married professional.course no yes no
## 2497 33 blue-collar married basic.9y no no no
## 2498 40 housemaid divorced unknown no no no
## 2499 49 services married high.school no yes no
## 2502 50 services married unknown unknown no no
## 2504 32 admin. married university.degree no yes no
## 2505 59 retired married basic.4y unknown no no
## 2506 53 technician married professional.course no no no
## 2507 43 admin. divorced basic.9y no unknown unknown
## 2509 47 unknown divorced basic.4y unknown no no
## 2510 53 blue-collar married basic.9y unknown yes no
## 2511 37 admin. married high.school unknown no no
## 2512 26 services single high.school no yes no
## 2513 38 technician single professional.course no yes no
## 2514 36 admin. married university.degree no no no
## 2515 45 admin. married basic.9y no yes no
## 2517 36 technician married professional.course no no yes
## 2518 47 technician married basic.9y no no no
## 2519 31 management married university.degree no no no
## 2520 29 blue-collar married basic.6y no no yes
## 2522 41 services married basic.9y no yes yes
## 2523 27 technician single professional.course no yes no
## 2524 35 admin. single high.school no yes no
## 2525 49 blue-collar married basic.4y unknown yes no
## 2526 45 blue-collar married basic.4y no unknown unknown
## 2527 50 technician married basic.6y no yes no
## 2528 49 blue-collar married basic.9y no yes no
## 2529 27 blue-collar married basic.9y no yes no
## 2530 58 retired married professional.course unknown unknown unknown
## 2532 41 technician married basic.9y no yes no
## 2535 46 admin. divorced high.school unknown yes no
## 2536 49 blue-collar married basic.4y unknown no no
## 2538 46 blue-collar married basic.4y unknown no no
## 2539 51 retired married basic.4y unknown yes yes
## 2540 43 admin. married high.school no yes no
## 2542 43 blue-collar married basic.9y no no no
## 2543 38 blue-collar married basic.6y no no no
## 2544 56 unemployed married basic.9y unknown no yes
## 2545 34 services married high.school no yes yes
## 2546 35 admin. single university.degree no yes yes
## 2547 45 admin. married basic.9y unknown yes no
## 2549 47 services divorced high.school no unknown unknown
## 2550 49 unknown married unknown no no no
## 2552 35 services married high.school no yes no
## 2553 27 blue-collar married basic.9y no unknown unknown
## 2554 54 retired married high.school unknown no no
## 2555 31 admin. married high.school unknown yes no
## 2556 33 blue-collar married basic.4y unknown no no
## 2557 29 management married university.degree no no no
## 2558 40 blue-collar married basic.6y unknown yes no
## 2559 36 admin. married university.degree no no no
## 2561 39 technician married professional.course no no no
## 2562 36 management married university.degree no no no
## 2563 30 services single high.school no no no
## 2565 37 technician married professional.course no no no
## 2567 44 blue-collar married unknown no no yes
## 2568 30 management married university.degree no no no
## 2569 30 admin. single high.school no no no
## 2570 33 technician single high.school no no no
## 2571 54 management divorced university.degree no yes no
## 2573 39 blue-collar single unknown unknown no no
## 2574 35 services married high.school no no no
## 2575 55 technician married professional.course no no no
## 2577 55 services married high.school no no no
## 2578 36 technician married university.degree no no no
## 2580 58 admin. married basic.6y no yes no
## 2581 37 admin. single high.school no no no
## 2582 28 blue-collar single basic.6y unknown yes no
## 2583 34 management married university.degree no yes no
## 2584 54 retired divorced basic.4y no yes no
## 2588 46 housemaid married basic.4y no no no
## 2589 40 technician single high.school no no no
## 2590 47 services married high.school unknown no yes
## 2591 47 blue-collar married professional.course unknown yes no
## 2592 58 entrepreneur married university.degree unknown no no
## 2594 36 blue-collar married basic.9y unknown no no
## 2595 36 admin. married high.school no yes no
## 2596 36 blue-collar single university.degree unknown yes no
## 2598 50 services married high.school unknown yes no
## 2599 47 management divorced university.degree no no no
## 2601 36 services married high.school no no no
## 2602 25 self-employed single university.degree no no no
## 2603 40 entrepreneur married university.degree unknown yes no
## 2604 36 technician married unknown no yes no
## 2605 37 services married high.school unknown yes no
## 2606 46 blue-collar married unknown unknown yes no
## 2607 49 services married high.school no no yes
## 2608 42 technician married professional.course unknown no no
## 2609 37 blue-collar married high.school no no no
## 2610 36 technician married university.degree no yes yes
## 2611 57 blue-collar married basic.4y no yes yes
## 2612 39 services married basic.9y no yes no
## 2613 28 admin. married high.school no no no
## 2614 47 blue-collar married basic.4y no yes no
## 2615 42 blue-collar married basic.9y unknown yes no
## 2616 34 entrepreneur married professional.course no no no
## 2617 51 blue-collar married professional.course no no yes
## 2618 30 services single unknown no yes no
## 2619 33 admin. single university.degree no yes no
## 2622 39 blue-collar divorced basic.9y unknown no no
## 2623 31 services single high.school no no no
## 2624 45 services single professional.course unknown unknown unknown
## 2625 34 blue-collar single basic.4y no yes yes
## 2626 33 services divorced high.school no no no
## 2627 35 blue-collar married basic.6y unknown yes no
## 2629 42 technician single high.school unknown no no
## 2630 37 admin. married high.school no no no
## 2631 42 blue-collar single basic.9y no unknown unknown
## 2633 29 admin. married high.school no no no
## 2634 59 retired married basic.9y no yes no
## 2635 32 blue-collar single basic.9y no no no
## 2637 52 management married basic.4y unknown yes no
## 2638 46 blue-collar married unknown no no no
## 2639 25 blue-collar married basic.9y no no no
## 2640 36 entrepreneur married basic.6y no yes no
## 2641 23 blue-collar married professional.course no yes no
## 2643 43 admin. married high.school no no no
## 2644 29 services single high.school no no yes
## 2645 45 admin. married high.school no yes no
## 2648 35 admin. married high.school no yes no
## 2649 35 technician married professional.course no no no
## 2650 39 blue-collar divorced high.school no yes yes
## 2651 29 technician married professional.course no no no
## 2652 46 blue-collar divorced basic.4y unknown no no
## 2653 39 admin. married university.degree no no no
## 2654 34 blue-collar married basic.6y no no no
## 2655 44 entrepreneur divorced university.degree no yes no
## 2656 35 blue-collar married unknown no no no
## 2657 33 technician single professional.course no yes yes
## 2658 41 blue-collar single basic.9y unknown no no
## 2659 37 technician married university.degree no no no
## 2661 42 blue-collar divorced basic.9y no yes no
## 2662 55 blue-collar married basic.9y no yes no
## 2665 39 technician married professional.course no no no
## 2666 40 blue-collar married high.school no no no
## 2667 52 technician married high.school no yes yes
## 2668 43 management married university.degree no unknown unknown
## 2669 51 blue-collar married basic.4y no yes no
## 2670 45 management divorced basic.9y unknown no no
## 2671 40 management divorced university.degree unknown no no
## 2672 28 student single high.school unknown yes no
## 2673 33 admin. single high.school no unknown unknown
## 2676 46 unknown married university.degree no no no
## 2677 36 admin. married high.school no no no
## 2678 46 unemployed married professional.course unknown yes no
## 2679 45 blue-collar divorced basic.9y no yes no
## 2680 46 management married university.degree no no yes
## 2681 30 services married unknown no no no
## 2682 55 management married unknown no yes yes
## 2683 45 admin. married basic.9y unknown yes yes
## 2684 45 admin. married high.school no yes no
## 2685 51 admin. married basic.4y unknown yes no
## 2686 31 admin. single university.degree no no no
## 2687 33 admin. married unknown no yes no
## 2689 52 blue-collar married basic.4y unknown yes yes
## 2690 35 unemployed married university.degree no yes no
## 2691 50 admin. married high.school unknown yes no
## 2692 48 admin. married university.degree no yes yes
## 2693 41 management married unknown unknown yes no
## 2695 36 admin. single university.degree unknown no no
## 2696 44 blue-collar single basic.4y no no no
## 2697 38 blue-collar single university.degree no no no
## 2699 53 blue-collar married basic.9y no no no
## 2700 37 blue-collar married basic.9y no yes no
## 2701 29 admin. single university.degree no no no
## 2703 59 entrepreneur married high.school no no no
## 2706 28 blue-collar married basic.9y no yes no
## 2707 43 blue-collar married unknown unknown no yes
## 2708 45 blue-collar divorced basic.9y no yes yes
## 2709 31 blue-collar single basic.9y no no no
## 2710 34 blue-collar married basic.9y no no no
## 2712 38 technician single university.degree no no no
## 2713 39 technician married university.degree unknown no no
## 2714 41 technician married high.school no yes no
## 2715 29 blue-collar married basic.6y no no yes
## 2717 45 technician married professional.course unknown no no
## 2718 42 blue-collar married basic.4y unknown unknown unknown
## 2719 32 blue-collar married basic.9y no no no
## 2720 41 blue-collar married basic.4y no no no
## 2721 49 blue-collar married basic.4y no no no
## 2724 45 unknown married unknown unknown unknown unknown
## 2725 48 management married basic.4y unknown no no
## 2727 52 blue-collar married basic.6y no yes no
## 2728 44 blue-collar married basic.4y unknown no yes
## 2729 44 management married university.degree no no no
## 2730 33 unemployed divorced basic.9y no yes no
## 2731 57 blue-collar divorced professional.course no no no
## 2733 52 admin. married high.school no unknown unknown
## 2734 40 blue-collar single basic.9y unknown yes no
## 2735 37 admin. married university.degree no no yes
## 2736 39 blue-collar married basic.6y no no no
## 2737 34 self-employed single university.degree no yes no
## 2738 38 technician single professional.course unknown unknown unknown
## 2739 43 services married high.school no no no
## 2740 33 blue-collar married basic.9y no no yes
## 2741 51 services married high.school no yes no
## 2743 50 housemaid married basic.9y unknown yes yes
## 2744 45 blue-collar married basic.9y unknown no yes
## 2745 27 admin. single high.school no yes no
## 2746 50 admin. married university.degree no yes no
## 2747 53 services married high.school unknown yes no
## 2748 42 management married university.degree unknown yes no
## 2751 47 blue-collar single basic.9y no no yes
## 2753 39 unemployed single university.degree no no yes
## 2756 37 blue-collar married basic.4y unknown yes no
## 2757 36 admin. married university.degree unknown yes no
## 2758 48 blue-collar married basic.4y no yes no
## 2759 44 technician single unknown unknown no no
## 2760 34 blue-collar single high.school unknown yes yes
## 2761 54 management married university.degree unknown no no
## 2762 40 housemaid divorced basic.6y unknown yes no
## 2763 52 management married professional.course no yes no
## 2765 35 blue-collar married basic.9y no yes no
## 2767 38 services married high.school no no no
## 2768 55 admin. married high.school no no yes
## 2769 42 blue-collar married basic.4y no no no
## 2770 40 services single high.school no yes no
## 2773 49 blue-collar married basic.6y unknown yes yes
## 2774 37 services married high.school no yes no
## 2775 54 blue-collar married basic.9y no no no
## 2776 33 blue-collar married high.school no no no
## 2779 48 entrepreneur married university.degree no yes no
## 2780 35 student married university.degree no yes no
## 2781 42 blue-collar divorced basic.6y unknown no no
## 2782 35 technician divorced professional.course no no no
## 2785 50 admin. divorced basic.9y no yes no
## 2786 35 admin. married high.school unknown unknown unknown
## 2787 45 services married high.school unknown no no
## 2788 46 management divorced university.degree no unknown unknown
## 2790 39 management married university.degree no yes no
## 2791 34 entrepreneur married basic.4y no no no
## 2792 37 admin. married high.school no yes no
## 2793 26 services single high.school no no no
## 2794 52 blue-collar married basic.9y no no no
## 2795 42 admin. married basic.9y no yes no
## 2796 44 blue-collar divorced basic.4y unknown yes no
## 2797 55 blue-collar married basic.4y unknown yes no
## 2799 53 services married high.school no no no
## 2801 40 technician married professional.course no no no
## 2802 42 services married professional.course no yes no
## 2803 29 services divorced high.school no no no
## 2804 30 blue-collar divorced basic.9y no yes no
## 2805 41 housemaid married basic.6y no no no
## 2806 30 blue-collar divorced basic.9y no yes no
## 2807 52 blue-collar married basic.9y no yes no
## 2808 41 housemaid married basic.6y no no no
## 2809 34 technician divorced professional.course no no no
## 2810 40 admin. single high.school no no no
## 2811 34 blue-collar married basic.9y no no no
## 2812 42 blue-collar married basic.6y no yes no
## 2814 28 entrepreneur married university.degree no no no
## 2815 29 services divorced high.school no no no
## 2816 50 housemaid divorced basic.4y unknown no no
## 2817 56 unemployed divorced high.school no yes no
## 2820 42 blue-collar married basic.6y no no no
## 2821 51 management married basic.4y no no no
## 2822 29 technician single professional.course no no no
## 2823 41 admin. single university.degree no yes no
## 2825 34 management married university.degree no yes no
## 2826 31 admin. married university.degree no no no
## 2827 47 blue-collar married basic.9y no yes no
## 2828 40 blue-collar married basic.4y unknown yes no
## 2830 39 unemployed married university.degree no no no
## 2831 52 blue-collar married basic.4y unknown yes yes
## 2832 50 technician married professional.course unknown yes no
## 2833 36 blue-collar married basic.6y no yes no
## 2834 56 blue-collar married basic.9y unknown no no
## 2835 35 unknown married basic.9y no no no
## 2836 29 admin. single university.degree no yes no
## 2837 29 blue-collar married professional.course no yes yes
## 2838 34 blue-collar single basic.9y no no yes
## 2842 29 blue-collar married professional.course no yes no
## 2843 41 admin. single high.school no yes yes
## 2845 43 technician divorced professional.course unknown unknown unknown
## 2846 48 admin. divorced high.school no yes no
## 2847 38 admin. married university.degree no no no
## 2848 32 admin. single high.school no no no
## 2849 35 admin. married high.school no no no
## 2850 39 blue-collar married basic.6y no no no
## 2852 41 entrepreneur married basic.4y no no no
## 2853 41 management married unknown no no no
## 2854 40 blue-collar married high.school no no no
## 2855 43 unknown married university.degree no no no
## 2856 35 services married high.school no no no
## 2857 49 services married high.school no yes no
## 2859 24 student single high.school unknown no no
## 2860 49 blue-collar married basic.9y unknown yes no
## 2862 44 admin. married university.degree no yes no
## 2864 41 blue-collar married basic.9y no no no
## 2865 35 technician married university.degree no no no
## 2867 32 blue-collar married basic.6y unknown yes yes
## 2868 45 admin. married university.degree no no no
## 2870 41 technician married basic.9y no yes no
## 2871 40 admin. single high.school no yes no
## 2872 41 admin. single university.degree no no no
## 2873 43 blue-collar single basic.4y unknown no no
## 2874 38 technician married professional.course unknown yes no
## 2875 28 entrepreneur married basic.4y unknown yes no
## 2876 36 services single unknown no yes no
## 2878 35 technician married professional.course no no no
## 2880 25 blue-collar single basic.9y no yes no
## 2881 59 blue-collar married basic.4y no yes no
## 2882 28 entrepreneur married basic.4y unknown yes no
## 2883 56 services married basic.9y unknown no no
## 2884 33 admin. single university.degree no no no
## 2887 35 unknown married basic.9y no no yes
## 2888 24 services single high.school no yes no
## 2890 32 technician divorced professional.course no yes no
## 2891 29 technician married professional.course no no no
## 2894 33 management married high.school unknown yes no
## 2895 42 admin. married professional.course no no no
## 2896 34 services married high.school unknown no no
## 2897 29 technician married professional.course no yes no
## 2898 38 blue-collar married basic.9y no no no
## 2899 45 blue-collar married basic.9y unknown no no
## 2900 33 admin. married university.degree no yes no
## 2901 42 blue-collar married basic.9y unknown yes no
## 2902 36 services married basic.6y no no no
## 2905 37 admin. married university.degree no yes no
## 2907 26 blue-collar married basic.6y no no no
## 2908 35 management married university.degree no yes yes
## 2909 35 management married university.degree no no no
## 2910 30 services married high.school unknown no no
## 2911 36 management married university.degree no yes no
## 2912 36 management married university.degree no no no
## 2913 40 blue-collar married unknown unknown no no
## 2916 51 technician married professional.course no no no
## 2917 45 blue-collar single basic.9y no yes yes
## 2918 36 blue-collar married basic.9y no no no
## 2919 58 admin. divorced university.degree no no no
## 2920 33 entrepreneur married high.school no no no
## 2921 50 housemaid married basic.9y unknown no no
## 2922 33 blue-collar married basic.4y no yes yes
## 2923 31 services married high.school no no no
## 2924 34 admin. single high.school no no no
## 2926 30 admin. married high.school unknown no no
## 2928 30 services married high.school no no no
## 2929 23 services single high.school no no no
## 2930 33 admin. married high.school no yes yes
## 2931 23 services single high.school no no no
## 2932 36 blue-collar married basic.9y no yes yes
## 2933 42 admin. divorced university.degree no no no
## 2934 36 blue-collar married basic.9y no no no
## 2936 26 entrepreneur single high.school no no no
## 2937 45 blue-collar divorced basic.4y unknown no no
## 2938 32 admin. married university.degree no no no
## 2939 37 services married high.school no no no
## 2940 40 blue-collar married basic.4y unknown no no
## 2941 36 admin. single university.degree no yes yes
## 2942 35 entrepreneur married basic.9y no yes no
## 2943 45 self-employed single professional.course unknown yes no
## 2944 48 admin. married university.degree unknown no no
## 2945 36 entrepreneur married basic.9y no no no
## 2946 37 technician divorced high.school no yes no
## 2947 36 blue-collar married basic.9y unknown no no
## 2948 56 blue-collar divorced basic.9y no yes no
## 2949 28 blue-collar single basic.9y no yes no
## 2950 43 blue-collar married basic.9y no no yes
## 2951 30 technician married professional.course unknown no no
## 2952 33 blue-collar single basic.9y unknown no no
## 2953 30 technician single professional.course no yes no
## 2954 33 technician divorced professional.course no no no
## 2955 42 technician married professional.course unknown no no
## 2956 30 blue-collar married basic.9y no yes no
## 2957 33 blue-collar married high.school no yes no
## 2958 39 admin. married high.school no no no
## 2959 37 blue-collar married basic.9y no no no
## 2960 41 self-employed married basic.9y no yes no
## 2961 53 self-employed married university.degree no yes no
## 2963 47 technician married professional.course unknown no no
## 2964 46 blue-collar married basic.4y unknown no no
## 2965 52 admin. single basic.9y no no no
## 2966 28 technician single basic.9y no no no
## 2967 60 blue-collar married basic.9y unknown no no
## 2968 50 admin. married high.school no no yes
## 2969 31 technician married university.degree no no no
## 2972 33 blue-collar married basic.9y no no no
## 2973 47 services divorced high.school no no no
## 2974 39 admin. married high.school unknown yes no
## 2975 37 services married high.school unknown yes no
## 2976 32 services married high.school no no no
## 2978 31 blue-collar married basic.9y no yes yes
## 2979 32 blue-collar married basic.9y no no no
## 2980 59 retired married professional.course unknown yes no
## 2981 48 technician married university.degree unknown yes no
## 2985 38 blue-collar married professional.course no yes no
## 2986 34 entrepreneur married high.school unknown no no
## 2987 44 blue-collar married basic.9y unknown yes no
## 2988 54 services divorced high.school unknown no no
## 2989 39 services married high.school no yes yes
## 2990 32 admin. single university.degree no no no
## 2991 43 services single high.school unknown yes no
## 2992 30 technician married professional.course no unknown unknown
## 2993 26 unemployed single basic.9y no no no
## 2994 38 admin. single university.degree no yes yes
## 2995 35 technician married professional.course no no no
## 2999 35 technician married professional.course no yes yes
## 3000 42 blue-collar married basic.4y no yes yes
## 3002 54 self-employed married professional.course unknown no no
## 3004 26 student single high.school no no no
## 3005 27 blue-collar married basic.9y no yes no
## 3006 44 blue-collar divorced basic.6y no no no
## 3007 28 services married unknown no no no
## 3008 53 retired divorced high.school no unknown unknown
## 3009 46 blue-collar married basic.9y unknown no no
## 3011 33 admin. married university.degree no no no
## 3012 30 student single unknown unknown no no
## 3013 29 admin. single high.school no yes yes
## 3014 51 self-employed married basic.4y unknown no yes
## 3015 55 admin. married high.school no yes no
## 3017 39 blue-collar divorced basic.9y no yes no
## 3019 39 blue-collar divorced unknown no no no
## 3020 30 admin. married university.degree no yes no
## 3023 33 blue-collar single high.school no no no
## 3024 44 blue-collar married basic.4y no yes no
## 3025 28 services married high.school no yes yes
## 3026 26 blue-collar single basic.9y no no no
## 3027 28 blue-collar married basic.6y no yes yes
## 3028 32 technician single high.school no yes no
## 3030 33 blue-collar married basic.9y no yes no
## 3031 28 student married university.degree no no no
## 3032 51 blue-collar divorced basic.9y unknown no no
## 3033 37 housemaid married university.degree unknown no no
## 3034 37 blue-collar married basic.4y unknown yes no
## 3035 34 blue-collar single basic.4y unknown no yes
## 3036 31 blue-collar married basic.9y no no yes
## 3037 38 self-employed single university.degree no no yes
## 3038 33 management married high.school no no no
## 3039 28 services married unknown no yes no
## 3041 29 technician married university.degree no yes no
## 3042 38 blue-collar married basic.4y unknown no no
## 3043 46 admin. married high.school no yes no
## 3044 36 blue-collar married unknown no no no
## 3046 44 management married university.degree unknown no yes
## 3048 36 technician married professional.course no no no
## 3049 51 blue-collar married basic.6y unknown yes no
## 3050 36 services married high.school no no yes
## 3052 39 entrepreneur married high.school unknown no yes
## 3053 42 blue-collar married basic.4y unknown no yes
## 3054 46 blue-collar married basic.9y unknown no yes
## 3055 46 admin. divorced university.degree no yes no
## 3056 41 admin. single university.degree no no no
## 3057 36 admin. married university.degree no no no
## 3058 60 retired married high.school no no no
## 3060 30 services married high.school no yes no
## 3062 37 admin. married high.school unknown yes no
## 3063 52 self-employed married basic.4y unknown yes no
## 3066 29 unemployed single university.degree no no yes
## 3067 29 admin. single university.degree no yes yes
## 3068 55 technician married professional.course unknown no no
## 3070 41 self-employed single university.degree no yes no
## 3071 53 retired divorced professional.course unknown yes yes
## 3072 43 technician married professional.course no yes no
## 3073 51 services divorced basic.4y unknown yes no
## 3076 40 management married university.degree no no no
## 3077 30 blue-collar married basic.9y no no yes
## 3078 37 admin. married unknown no yes no
## 3079 56 services divorced high.school unknown no no
## 3080 29 admin. single high.school no yes no
## 3081 30 services married high.school no no no
## 3082 36 blue-collar married basic.9y no yes no
## 3083 32 admin. single basic.9y unknown no no
## 3084 41 admin. married basic.6y no no no
## 3085 35 blue-collar married unknown no yes no
## 3087 40 blue-collar divorced high.school unknown no no
## 3088 34 admin. single university.degree no yes no
## 3089 45 admin. married basic.6y no yes no
## 3090 31 admin. married high.school no no yes
## 3091 35 housemaid married basic.4y no no no
## 3092 58 blue-collar married basic.4y unknown yes no
## 3093 48 admin. married basic.9y unknown no no
## 3096 38 blue-collar married basic.6y unknown unknown unknown
## 3097 49 blue-collar single basic.4y no no no
## 3098 60 unknown married university.degree no no yes
## 3100 48 technician married university.degree no no no
## 3102 30 technician divorced professional.course no yes no
## 3104 30 entrepreneur married university.degree no no no
## 3106 56 blue-collar married basic.4y unknown yes no
## 3107 37 self-employed married basic.9y no yes no
## 3108 37 admin. divorced high.school no yes no
## 3110 42 technician divorced basic.9y no no no
## 3115 26 technician married professional.course no no no
## 3116 28 services married basic.9y unknown unknown unknown
## 3117 31 blue-collar single unknown no no no
## 3118 31 services married high.school no yes no
## 3119 27 admin. single high.school unknown no no
## 3120 37 blue-collar married basic.9y no yes yes
## 3124 32 housemaid married basic.4y no no no
## 3127 31 entrepreneur single basic.9y no no no
## 3128 51 blue-collar married basic.9y no no no
## 3129 38 technician single professional.course unknown yes no
## 3130 40 admin. divorced professional.course no yes no
## 3131 42 unemployed divorced high.school unknown yes yes
## 3132 45 housemaid married basic.6y unknown no no
## 3133 35 blue-collar single unknown no no no
## 3134 40 services married high.school no no no
## 3135 44 blue-collar single high.school no yes no
## 3137 30 blue-collar married basic.9y no no no
## 3138 33 blue-collar married basic.6y unknown no no
## 3139 28 blue-collar married basic.9y unknown no no
## 3140 36 technician married professional.course unknown yes no
## 3142 31 technician married professional.course no yes no
## 3143 45 admin. divorced basic.6y no yes no
## 3146 45 blue-collar married basic.4y unknown yes no
## 3148 38 technician married professional.course no no no
## 3149 33 admin. married university.degree no no no
## 3150 46 blue-collar married basic.9y no no no
## 3151 41 entrepreneur divorced university.degree no yes no
## 3153 32 blue-collar married high.school unknown yes no
## 3154 46 housemaid married basic.4y no yes no
## 3155 35 blue-collar married basic.9y no unknown unknown
## 3156 44 technician married professional.course no yes no
## 3159 52 blue-collar married basic.4y no yes no
## 3160 44 blue-collar married basic.4y unknown no no
## 3163 41 technician single university.degree unknown yes no
## 3164 33 admin. single university.degree no no no
## 3165 46 admin. single high.school no unknown unknown
## 3167 44 blue-collar divorced unknown no no yes
## 3168 57 retired unknown basic.4y no yes no
## 3170 55 unknown married unknown unknown yes no
## 3171 26 admin. married high.school no no no
## 3172 38 blue-collar divorced unknown no yes no
## 3173 41 technician married basic.9y no yes no
## 3174 53 retired divorced basic.4y no no no
## 3175 42 services divorced basic.6y no yes no
## 3176 56 technician married professional.course unknown no no
## 3177 41 management married high.school no no no
## 3178 49 blue-collar married basic.9y no no no
## 3179 31 admin. married high.school no no no
## 3180 37 self-employed married professional.course no yes no
## 3181 40 blue-collar married basic.6y unknown no no
## 3182 43 blue-collar married basic.4y no no no
## 3183 48 self-employed married university.degree unknown yes no
## 3184 45 admin. married high.school no yes no
## 3185 49 technician married high.school no yes no
## 3187 35 blue-collar married basic.9y unknown no no
## 3188 52 technician married basic.9y no yes no
## 3189 59 retired married basic.4y unknown yes no
## 3190 34 admin. single high.school no yes no
## 3191 33 admin. single high.school no unknown unknown
## 3193 33 blue-collar married basic.6y no no no
## 3194 46 blue-collar married basic.4y no no yes
## 3195 37 technician single university.degree no yes no
## 3197 41 admin. married university.degree no yes no
## 3198 39 blue-collar married basic.6y unknown no no
## 3199 52 blue-collar married basic.4y unknown unknown unknown
## 3201 41 services married basic.9y no yes yes
## 3202 57 blue-collar married unknown unknown yes no
## 3204 38 services single high.school unknown no yes
## 3205 48 admin. married high.school no no yes
## 3207 42 blue-collar divorced basic.4y unknown yes no
## 3208 45 unknown married unknown no no yes
## 3209 40 housemaid single university.degree no no no
## 3210 50 admin. married high.school no no no
## 3211 49 services married basic.6y unknown yes no
## 3212 45 blue-collar married basic.4y no no no
## 3214 36 services married high.school no no no
## 3215 41 blue-collar divorced basic.9y unknown yes no
## 3216 47 blue-collar married basic.4y no yes no
## 3217 45 blue-collar married basic.4y no no no
## 3218 44 blue-collar married basic.6y unknown no no
## 3221 45 admin. married basic.6y unknown yes no
## 3222 48 technician married professional.course no no no
## 3224 45 self-employed married basic.6y unknown no no
## 3225 36 services married high.school unknown no no
## 3226 40 unemployed divorced high.school no no no
## 3227 34 blue-collar married basic.9y no no no
## 3228 33 technician married professional.course no no no
## 3229 40 admin. married high.school unknown no no
## 3230 55 blue-collar married basic.9y unknown no no
## 3231 30 management married university.degree no no no
## 3233 36 blue-collar single basic.9y no no no
## 3234 34 admin. married high.school no no no
## 3235 55 technician divorced professional.course unknown yes yes
## 3236 34 admin. married high.school no yes yes
## 3237 34 blue-collar married basic.4y no no yes
## 3238 33 services married basic.4y no no no
## 3239 43 unemployed married university.degree unknown yes no
## 3240 46 admin. married university.degree no no no
## 3242 50 management married university.degree unknown no no
## 3243 48 entrepreneur married basic.4y no no no
## 3244 39 admin. single high.school unknown yes no
## 3246 27 services single high.school unknown no no
## 3248 55 blue-collar married basic.9y no no no
## 3249 42 unknown divorced high.school no no no
## 3251 53 retired married basic.4y unknown yes no
## 3252 41 blue-collar single basic.9y no no no
## 3253 36 blue-collar single basic.4y no no no
## 3254 36 technician single university.degree no no no
## 3255 46 management married basic.9y no yes no
## 3256 57 technician divorced basic.4y no yes no
## 3257 53 services married high.school unknown no no
## 3258 36 blue-collar married unknown unknown no no
## 3259 48 blue-collar married basic.9y no no no
## 3260 49 blue-collar divorced basic.4y unknown no no
## 3261 58 self-employed married university.degree no no no
## 3262 36 unknown single basic.6y unknown no no
## 3263 34 admin. single high.school no no no
## 3264 42 admin. married university.degree no no no
## 3265 41 blue-collar married basic.9y no no no
## 3266 55 retired married professional.course no yes no
## 3267 43 blue-collar married basic.4y unknown no no
## 3268 59 technician married unknown no yes no
## 3270 38 unknown married unknown unknown yes no
## 3271 46 blue-collar single basic.4y no no no
## 3272 52 technician married high.school no yes no
## 3277 54 management divorced university.degree no yes no
## 3278 32 housemaid single basic.4y no yes no
## 3279 36 admin. divorced university.degree no yes no
## 3281 35 blue-collar single professional.course no yes no
## 3282 44 services married high.school unknown yes no
## 3283 37 services married high.school no no no
## 3284 38 blue-collar single basic.4y no yes no
## 3286 38 blue-collar single basic.6y unknown yes no
## 3288 37 admin. divorced high.school no no no
## 3290 36 blue-collar married basic.9y unknown yes no
## 3291 47 blue-collar married basic.9y unknown yes no
## 3292 33 blue-collar married basic.4y unknown no no
## 3293 31 services married high.school no no no
## 3294 45 entrepreneur married university.degree no no no
## 3295 36 blue-collar married basic.9y no no no
## 3296 49 self-employed married basic.9y no yes no
## 3297 39 services married professional.course unknown yes no
## 3298 34 housemaid divorced basic.6y no no no
## 3299 39 technician married professional.course no no no
## 3300 26 admin. single high.school no yes no
## 3301 36 blue-collar married basic.4y no no no
## 3302 31 admin. single university.degree no yes no
## 3303 54 blue-collar divorced basic.4y no no no
## 3306 43 technician divorced professional.course no yes no
## 3307 53 blue-collar married basic.4y no no no
## 3308 28 admin. single high.school no yes no
## 3309 50 blue-collar single basic.9y unknown yes no
## 3310 44 admin. single university.degree unknown no no
## 3311 45 housemaid divorced university.degree no yes no
## 3312 56 admin. divorced unknown unknown yes no
## 3314 31 housemaid married basic.4y unknown no no
## 3315 47 management divorced university.degree no yes no
## 3316 39 admin. single high.school unknown no no
## 3317 35 admin. single university.degree no no no
## 3319 31 entrepreneur married high.school no yes no
## 3320 39 entrepreneur single university.degree no yes no
## 3321 45 blue-collar married basic.9y unknown no no
## 3322 39 blue-collar single basic.4y no no no
## 3323 60 management married university.degree unknown yes no
## 3324 45 admin. married basic.9y unknown yes no
## 3328 36 services single basic.6y unknown yes no
## 3331 32 admin. married university.degree no no no
## 3333 42 admin. single university.degree no no no
## 3334 36 blue-collar married basic.9y no no no
## 3335 49 blue-collar married basic.4y unknown yes no
## 3337 34 entrepreneur single unknown unknown yes no
## 3338 34 management married university.degree no yes no
## 3339 30 admin. married university.degree no yes no
## 3340 36 technician single professional.course no yes no
## 3341 48 admin. single university.degree no yes no
## 3342 32 management married basic.6y no yes no
## 3343 51 admin. married high.school no unknown unknown
## 3344 47 blue-collar married basic.4y no no yes
## 3345 43 technician divorced professional.course no no no
## 3346 29 services married high.school no yes yes
## 3349 59 retired married professional.course no no no
## 3350 29 admin. single university.degree no no no
## 3351 35 unemployed married basic.4y unknown unknown unknown
## 3352 36 blue-collar single basic.9y no no yes
## 3353 33 services married high.school unknown yes no
## 3354 34 admin. divorced basic.9y no no no
## 3355 25 blue-collar single basic.9y unknown no no
## 3356 48 management married university.degree no yes no
## 3357 25 blue-collar single basic.9y unknown yes no
## 3358 25 blue-collar single basic.9y unknown yes no
## 3359 52 self-employed married basic.4y unknown yes no
## 3360 34 blue-collar single basic.9y unknown no yes
## 3362 44 blue-collar married basic.4y no no yes
## 3363 36 blue-collar married basic.9y no no no
## 3364 40 blue-collar married basic.9y unknown yes no
## 3365 38 blue-collar married basic.6y unknown no no
## 3366 57 blue-collar married basic.4y unknown yes no
## 3367 45 unknown married unknown no yes no
## 3369 31 blue-collar married basic.6y no yes yes
## 3370 30 blue-collar single high.school no yes no
## 3371 31 admin. single high.school no no no
## 3373 40 admin. married unknown no no no
## 3374 44 admin. married university.degree unknown yes no
## 3376 28 student single basic.4y no no no
## 3377 47 blue-collar married unknown unknown yes yes
## 3378 47 blue-collar married unknown unknown yes no
## 3379 58 retired divorced university.degree no yes no
## 3380 32 services single professional.course no yes no
## 3381 50 services single high.school unknown yes no
## 3382 53 technician married professional.course unknown yes no
## 3383 29 technician single professional.course no no no
## 3385 35 technician married unknown unknown no no
## 3386 32 services single professional.course no no no
## 3387 26 blue-collar single basic.6y no no yes
## 3389 47 technician married professional.course no yes no
## 3390 47 blue-collar married professional.course unknown no yes
## 3391 38 housemaid married high.school unknown no no
## 3392 41 admin. single unknown no yes no
## 3393 41 blue-collar married basic.4y no no no
## 3394 58 management married university.degree unknown no no
## 3395 24 services single high.school no no no
## 3396 51 management married university.degree unknown no yes
## 3397 26 entrepreneur married university.degree no no no
## 3398 28 blue-collar married basic.9y no no no
## 3399 49 admin. married high.school unknown no no
## 3400 55 blue-collar married basic.4y unknown yes no
## 3401 38 blue-collar single basic.9y no no no
## 3402 50 blue-collar married basic.6y unknown no no
## 3403 46 blue-collar married basic.4y unknown no no
## 3404 35 admin. married university.degree no no no
## 3405 30 technician single professional.course no no no
## 3406 39 entrepreneur married basic.9y unknown no no
## 3408 46 blue-collar married basic.6y unknown no yes
## 3410 34 management married university.degree no no yes
## 3412 36 management married basic.9y no yes no
## 3413 40 admin. married university.degree no yes no
## 3414 32 admin. divorced high.school no yes no
## 3415 29 admin. married university.degree no yes no
## 3416 50 unemployed married professional.course no no no
## 3417 53 admin. divorced university.degree no yes yes
## 3418 46 management married basic.4y unknown no no
## 3419 57 blue-collar married basic.4y unknown yes no
## 3421 57 admin. married university.degree no yes no
## 3422 29 technician married university.degree no no yes
## 3423 32 blue-collar married basic.9y no unknown unknown
## 3424 25 technician single university.degree no yes no
## 3425 43 admin. married university.degree unknown yes no
## 3426 26 unemployed single basic.9y no no yes
## 3427 34 admin. married university.degree no yes no
## 3429 37 technician single university.degree no no no
## 3430 34 technician married university.degree no yes no
## 3431 53 admin. married basic.9y no yes yes
## 3432 28 technician single professional.course no yes no
## 3433 48 blue-collar married basic.9y no yes no
## 3434 36 blue-collar married basic.4y unknown yes no
## 3435 54 admin. married high.school no yes yes
## 3437 44 services married high.school unknown yes no
## 3441 43 admin. married university.degree unknown yes no
## 3442 31 self-employed married basic.9y no no no
## 3443 31 student single unknown unknown yes no
## 3444 31 blue-collar divorced basic.9y no no no
## 3446 40 blue-collar single basic.4y unknown no no
## 3447 44 services married high.school no no no
## 3448 36 admin. married basic.6y no no no
## 3450 30 admin. married university.degree no yes no
## 3453 35 self-employed married university.degree unknown yes yes
## 3455 49 management married university.degree no no yes
## 3456 50 self-employed married basic.4y unknown no no
## 3457 29 technician single professional.course no yes yes
## 3458 29 blue-collar married basic.6y no no no
## 3460 41 entrepreneur married high.school unknown no no
## 3461 46 admin. married university.degree no no no
## 3462 54 retired divorced professional.course no yes no
## 3463 49 blue-collar married unknown no no no
## 3464 41 admin. married high.school no yes no
## 3465 26 unemployed single professional.course no no no
## 3466 43 admin. married university.degree no yes no
## 3467 40 services single high.school unknown yes no
## 3468 35 management married university.degree no no no
## 3469 34 admin. single high.school no no no
## 3470 36 admin. divorced university.degree no yes no
## 3471 50 blue-collar married unknown unknown no no
## 3472 45 technician divorced professional.course no yes no
## 3473 49 technician married university.degree no yes no
## 3474 59 admin. married high.school unknown yes yes
## 3475 35 blue-collar married basic.9y no no no
## 3476 41 blue-collar married basic.9y no yes no
## 3477 34 blue-collar married basic.9y no yes no
## 3478 56 blue-collar married basic.9y unknown yes no
## 3480 46 blue-collar married basic.6y unknown yes no
## 3481 50 retired married basic.4y unknown yes no
## 3482 46 admin. single high.school no no no
## 3483 39 blue-collar married basic.4y unknown no yes
## 3484 27 technician single professional.course no no no
## 3485 59 technician married basic.6y unknown no no
## 3486 55 blue-collar divorced basic.9y no yes no
## 3487 36 admin. single university.degree no no no
## 3489 58 retired married basic.6y unknown no no
## 3490 36 services married high.school no unknown unknown
## 3492 37 technician married university.degree no no no
## 3493 34 services married high.school no no no
## 3494 32 admin. married university.degree no no no
## 3495 40 technician married professional.course no no no
## 3496 48 blue-collar married high.school unknown no no
## 3497 56 blue-collar married basic.9y unknown no no
## 3499 36 blue-collar married high.school no yes yes
## 3500 48 entrepreneur married basic.4y no no yes
## 3501 28 student single basic.9y unknown yes no
## 3502 55 unemployed married basic.4y unknown no no
## 3503 31 blue-collar married basic.9y no unknown unknown
## 3504 57 retired single high.school no yes no
## 3505 42 technician married high.school no no no
## 3506 44 admin. single high.school no yes no
## 3507 30 admin. single high.school no no yes
## 3508 30 blue-collar married basic.9y no yes no
## 3509 37 technician married professional.course no yes no
## 3510 45 blue-collar married basic.4y unknown yes no
## 3512 43 management married professional.course no no no
## 3513 32 services married high.school unknown yes no
## 3515 31 services single high.school no yes no
## 3516 49 blue-collar married basic.6y no yes no
## 3517 36 admin. divorced university.degree no no no
## 3518 40 blue-collar single basic.9y no yes no
## 3520 29 unemployed single university.degree no no no
## 3522 37 blue-collar married basic.9y no yes no
## 3523 33 blue-collar single basic.9y unknown yes yes
## 3524 36 self-employed married basic.9y no yes yes
## 3525 46 unemployed married high.school unknown no no
## 3527 33 entrepreneur married basic.9y unknown no no
## 3528 32 entrepreneur married high.school no no no
## 3530 28 blue-collar single basic.9y no no yes
## 3531 35 technician married university.degree no yes no
## 3532 47 entrepreneur married university.degree no yes no
## 3534 51 blue-collar married high.school no no yes
## 3535 51 admin. married basic.6y unknown yes no
## 3536 34 blue-collar single university.degree no yes yes
## 3537 42 admin. married unknown no no no
## 3539 32 services married high.school no no yes
## 3540 46 unemployed divorced high.school unknown yes yes
## 3541 37 services married high.school no yes no
## 3542 45 entrepreneur married university.degree no yes yes
## 3544 58 management married basic.9y no no no
## 3546 35 admin. single high.school no no yes
## 3548 25 services divorced basic.4y no yes no
## 3549 56 technician married professional.course no no yes
## 3551 39 admin. married university.degree no no no
## 3552 40 services divorced high.school no no no
## 3553 48 management married university.degree no no no
## 3554 53 blue-collar married basic.9y unknown yes no
## 3555 38 admin. single basic.9y no no no
## 3556 42 technician divorced professional.course unknown no yes
## 3558 26 admin. single high.school no yes no
## 3559 50 management married high.school unknown no yes
## 3560 50 management married university.degree unknown no no
## 3561 46 services married basic.4y unknown no no
## 3563 53 technician married high.school no no no
## 3566 35 admin. married university.degree no yes no
## 3567 44 management single university.degree unknown yes no
## 3570 41 admin. single university.degree unknown no no
## 3571 31 blue-collar married basic.6y unknown unknown unknown
## 3572 27 admin. single high.school no no no
## 3574 43 admin. divorced high.school no yes no
## 3575 56 blue-collar married basic.4y unknown yes yes
## 3576 51 blue-collar married basic.9y unknown no no
## 3577 45 technician married university.degree no yes no
## 3578 35 admin. single basic.4y unknown no no
## 3580 38 self-employed single university.degree no no no
## 3581 41 technician single professional.course no yes no
## 3582 29 blue-collar single basic.6y no no no
## 3584 35 admin. married university.degree no yes no
## 3588 45 admin. divorced university.degree no no no
## 3589 39 admin. married high.school no no no
## 3590 28 admin. single university.degree no yes no
## 3591 42 admin. single university.degree no yes no
## 3592 59 blue-collar married basic.4y no no no
## 3593 49 blue-collar married basic.4y unknown yes no
## 3596 34 admin. married university.degree no yes no
## 3598 41 admin. married high.school no no no
## 3599 48 technician married professional.course unknown yes no
## 3600 39 blue-collar married basic.4y no no no
## 3601 41 blue-collar married basic.4y unknown no no
## 3605 56 blue-collar single basic.6y no yes no
## 3606 54 blue-collar divorced unknown unknown yes no
## 3607 60 entrepreneur married basic.4y no no no
## 3608 34 technician married professional.course no no yes
## 3609 26 blue-collar single basic.9y no no no
## 3610 39 blue-collar married basic.4y unknown unknown unknown
## 3612 38 technician married professional.course no yes no
## 3613 35 housemaid married basic.4y no no no
## 3614 32 blue-collar married basic.9y no no no
## 3615 47 blue-collar married high.school unknown no no
## 3616 50 blue-collar single basic.9y unknown no no
## 3617 24 services married high.school no no no
## 3618 53 blue-collar married basic.9y no no no
## 3619 34 blue-collar married basic.9y no no no
## 3620 57 retired married high.school unknown yes no
## 3621 26 student single unknown unknown no no
## 3623 40 admin. married university.degree no no no
## 3624 28 management married high.school unknown no no
## 3625 30 blue-collar single basic.4y unknown unknown unknown
## 3628 26 blue-collar single high.school unknown no no
## 3629 40 entrepreneur married university.degree no no no
## 3630 44 blue-collar divorced basic.4y unknown yes no
## 3631 56 blue-collar married basic.9y unknown yes no
## 3632 57 management divorced university.degree no yes no
## 3634 35 admin. divorced university.degree no yes no
## 3636 48 technician single high.school no yes no
## 3637 44 technician single university.degree no yes no
## 3638 52 blue-collar married basic.9y no yes no
## 3640 43 blue-collar married basic.4y unknown no no
## 3641 39 admin. married high.school no yes no
## 3642 46 services married high.school unknown yes no
## 3643 50 blue-collar married basic.9y no yes no
## 3644 37 admin. married university.degree unknown no no
## 3645 29 entrepreneur married basic.6y no no no
## 3647 31 blue-collar married basic.4y unknown no yes
## 3648 36 services married high.school unknown yes no
## 3649 25 blue-collar single basic.4y no no no
## 3650 33 blue-collar single basic.9y unknown yes no
## 3651 32 admin. married university.degree no no no
## 3653 52 self-employed single basic.4y unknown yes no
## 3654 30 entrepreneur married high.school no yes no
## 3656 42 blue-collar married basic.6y unknown no no
## 3657 41 management married university.degree no no no
## 3658 35 services married high.school unknown no no
## 3660 34 blue-collar married basic.4y no no no
## 3662 49 admin. divorced high.school no yes no
## 3663 39 management married university.degree no no no
## 3664 24 services married high.school no no yes
## 3666 29 admin. single university.degree no yes no
## 3667 26 blue-collar single high.school no yes no
## 3669 35 admin. married high.school no yes yes
## 3670 32 services married high.school no no yes
## 3672 36 entrepreneur married university.degree no no yes
## 3673 32 blue-collar married basic.9y unknown yes no
## 3675 27 services married high.school no yes no
## 3679 40 blue-collar married basic.6y unknown no no
## 3680 56 retired married professional.course unknown no no
## 3681 33 admin. married high.school no yes yes
## 3683 36 admin. married university.degree no yes no
## 3684 49 blue-collar married basic.4y unknown no no
## 3685 59 retired divorced basic.9y unknown yes no
## 3686 37 blue-collar single basic.9y unknown no no
## 3687 29 blue-collar single basic.9y no yes no
## 3688 32 services married professional.course no yes no
## 3689 53 blue-collar married basic.6y no yes no
## 3690 48 technician married high.school unknown yes no
## 3691 56 blue-collar married basic.4y unknown yes no
## 3692 37 services single basic.9y no yes no
## 3693 43 self-employed single professional.course unknown no no
## 3695 46 blue-collar married basic.6y no no no
## 3696 28 blue-collar single basic.9y no no no
## 3697 44 housemaid married basic.9y no no no
## 3698 38 blue-collar single university.degree unknown no no
## 3699 31 admin. single basic.9y no yes no
## 3701 36 technician married professional.course no no yes
## 3702 51 admin. single basic.6y no yes no
## 3703 29 technician married university.degree no no no
## 3704 28 admin. single university.degree no yes no
## 3705 49 self-employed married professional.course no no no
## 3706 30 technician married university.degree no yes no
## 3707 36 services married basic.9y unknown no no
## 3709 57 blue-collar married basic.4y unknown no no
## 3711 52 blue-collar married basic.4y no no no
## 3712 29 blue-collar single unknown no no no
## 3713 45 management married university.degree no no no
## 3715 52 management married university.degree no yes no
## 3716 24 admin. married high.school no yes no
## 3717 44 blue-collar divorced basic.4y unknown yes yes
## 3718 46 services divorced high.school no no no
## 3719 25 student single high.school no no no
## 3720 33 blue-collar single basic.9y no yes no
## 3721 29 services single basic.9y no no no
## 3722 44 admin. single university.degree no yes no
## 3723 41 blue-collar married basic.9y unknown no no
## 3724 50 technician married professional.course no no no
## 3725 41 blue-collar married basic.9y unknown no no
## 3727 26 services single high.school no no no
## 3728 48 unknown married basic.4y unknown no no
## 3730 36 admin. married university.degree no no no
## 3731 54 technician divorced basic.9y unknown no no
## 3732 26 admin. single university.degree unknown no no
## 3733 35 technician married basic.9y no no no
## 3734 54 services divorced high.school unknown yes no
## 3735 51 services married basic.6y no no no
## 3736 28 technician single professional.course no no no
## 3737 52 services married university.degree no no no
## 3738 31 admin. married basic.9y unknown yes no
## 3739 28 services single high.school no yes no
## 3740 32 blue-collar married basic.9y no no no
## 3742 38 admin. married university.degree no yes no
## 3743 36 blue-collar married basic.9y no no no
## 3745 38 management married university.degree no no no
## 3746 35 admin. married high.school unknown yes no
## 3747 39 housemaid married high.school no yes no
## 3748 31 housemaid divorced high.school no yes no
## 3749 39 self-employed married high.school no yes no
## 3750 36 housemaid married high.school no no no
## 3751 29 services married basic.9y unknown no no
## 3752 37 management married university.degree no no no
## 3754 41 management married unknown no no no
## 3756 31 technician married university.degree no no no
## 3757 50 blue-collar married basic.4y unknown yes no
## 3758 36 admin. married basic.9y no no no
## 3759 40 management married unknown no no no
## 3760 37 admin. married university.degree no no no
## 3761 28 unemployed single high.school no no no
## 3762 50 services divorced basic.4y unknown unknown unknown
## 3763 38 housemaid married basic.9y no no no
## 3764 43 blue-collar married basic.9y unknown no no
## 3767 52 technician married high.school unknown no no
## 3768 30 admin. single university.degree no no no
## 3769 33 admin. divorced high.school no yes no
## 3771 52 technician married basic.9y no no no
## 3773 48 management married university.degree no yes no
## 3774 40 admin. divorced professional.course no no no
## 3775 35 student single high.school no no yes
## 3776 56 management married basic.4y unknown unknown unknown
## 3777 53 technician married high.school no no no
## 3778 33 blue-collar married professional.course no yes no
## 3779 54 retired married basic.9y unknown no no
## 3780 35 technician married professional.course no no no
## 3781 33 services single high.school no no no
## 3782 36 services single basic.9y no yes no
## 3783 41 housemaid married university.degree unknown no no
## 3785 35 admin. married university.degree no no no
## 3787 35 admin. married university.degree no yes no
## 3788 34 admin. married high.school no yes yes
## 3789 29 management single university.degree no yes no
## 3790 32 admin. single university.degree no yes no
## 3791 31 blue-collar married basic.9y no yes yes
## 3792 46 blue-collar married basic.4y no yes no
## 3795 48 technician single university.degree unknown yes no
## 3796 42 retired married basic.9y unknown no no
## 3797 32 technician divorced professional.course no yes no
## 3798 30 admin. married university.degree no yes no
## 3799 32 services single high.school no no no
## 3800 28 services single basic.9y no yes no
## 3801 28 blue-collar married basic.9y no yes no
## 3802 40 blue-collar married basic.6y no yes no
## 3803 46 blue-collar married basic.9y unknown yes no
## 3804 38 entrepreneur married basic.6y no no no
## 3805 47 blue-collar married basic.4y no no no
## 3806 37 services married high.school no no no
## 3807 55 technician married basic.4y unknown yes no
## 3808 28 admin. single university.degree no yes no
## 3809 43 blue-collar single basic.9y no yes no
## 3810 56 unknown married unknown unknown yes no
## 3811 33 management single university.degree no no yes
## 3813 35 admin. divorced university.degree no yes no
## 3814 41 blue-collar divorced basic.6y no unknown unknown
## 3815 59 entrepreneur divorced high.school unknown yes no
## 3816 29 services single university.degree no no no
## 3817 30 self-employed married basic.9y no yes no
## 3818 39 admin. single high.school unknown yes no
## 3820 34 blue-collar married basic.9y no no no
## 3822 36 blue-collar married basic.9y unknown yes yes
## 3825 37 technician married professional.course unknown yes no
## 3826 30 self-employed single high.school no yes yes
## 3827 47 admin. married high.school no no no
## 3828 41 blue-collar married high.school no yes no
## 3829 27 services single high.school no yes yes
## 3830 27 blue-collar divorced unknown no yes no
## 3831 39 blue-collar divorced basic.6y unknown no no
## 3832 32 services married high.school no no no
## 3833 42 blue-collar married basic.4y unknown yes yes
## 3834 37 services married high.school no no no
## 3836 51 blue-collar married basic.9y unknown no no
## 3837 48 technician married high.school no no no
## 3839 50 management single university.degree no no no
## 3840 25 admin. married high.school no yes no
## 3841 49 blue-collar married basic.9y unknown no no
## 3842 44 self-employed single basic.6y unknown yes no
## 3845 48 admin. divorced professional.course no yes no
## 3846 42 blue-collar married basic.9y unknown no no
## 3847 35 management married university.degree no yes no
## 3849 28 admin. married high.school no yes no
## 3850 56 entrepreneur married university.degree no yes no
## 3851 60 retired married basic.9y unknown yes no
## 3853 38 entrepreneur married basic.9y no no no
## 3854 41 self-employed married high.school unknown no no
## 3857 33 admin. married high.school no yes no
## 3858 48 blue-collar married basic.9y no yes no
## 3859 38 technician married university.degree unknown yes no
## 3860 32 blue-collar married basic.4y unknown yes no
## 3861 31 management married high.school no no no
## 3862 43 blue-collar divorced basic.9y no yes no
## 3863 44 management married high.school no yes no
## 3864 44 admin. married university.degree unknown no no
## 3865 33 services married high.school no no yes
## 3866 36 admin. married basic.9y no no no
## 3867 47 technician married professional.course unknown no no
## 3868 30 admin. married university.degree no no no
## 3872 32 blue-collar married basic.4y no no no
## 3873 36 retired married high.school no no no
## 3874 24 student single university.degree no yes yes
## 3876 31 admin. single university.degree no no no
## 3877 51 admin. divorced university.degree unknown no no
## 3878 33 admin. married university.degree no no no
## 3879 28 services single basic.9y no yes no
## 3880 43 blue-collar married unknown unknown no no
## 3881 43 blue-collar married basic.6y no no no
## 3882 33 self-employed married university.degree no yes no
## 3883 31 services married basic.9y no yes no
## 3884 39 admin. married professional.course no no no
## 3886 24 student single high.school unknown yes yes
## 3887 30 admin. single university.degree unknown no yes
## 3888 28 blue-collar married basic.9y no no yes
## 3889 28 blue-collar married basic.9y no no no
## 3890 41 technician single university.degree unknown yes no
## 3891 39 blue-collar married basic.9y no no no
## 3892 37 technician married basic.9y no no no
## 3893 51 blue-collar married basic.4y no no yes
## 3894 50 management married university.degree unknown unknown unknown
## 3895 53 technician married high.school no no yes
## 3896 53 technician married unknown no yes no
## 3897 52 blue-collar married basic.4y no no yes
## 3898 33 services married high.school no no no
## 3899 36 self-employed single university.degree no yes no
## 3901 43 admin. divorced high.school no no no
## 3902 39 self-employed married basic.4y unknown no no
## 3903 43 technician divorced university.degree unknown no no
## 3904 56 blue-collar married basic.4y unknown yes yes
## 3905 52 admin. married university.degree no no yes
## 3906 36 technician married professional.course no yes no
## 3908 30 services married high.school no yes no
## 3909 30 management divorced high.school no yes no
## 3910 36 housemaid married basic.4y unknown no no
## 3911 38 admin. divorced high.school no yes no
## 3912 38 blue-collar married basic.6y no yes no
## 3913 39 entrepreneur divorced university.degree no yes no
## 3914 34 management married high.school no no no
## 3915 35 unknown single basic.4y unknown yes yes
## 3916 59 retired married basic.4y unknown yes no
## 3917 32 blue-collar married basic.9y no yes no
## 3919 52 self-employed single university.degree unknown yes no
## 3920 29 technician married professional.course no yes no
## 3922 41 blue-collar married basic.4y unknown no no
## 3923 37 services divorced high.school no yes no
## 3925 49 services single basic.4y unknown no no
## 3926 46 admin. divorced university.degree no no no
## 3927 40 admin. single unknown unknown no yes
## 3928 32 student single university.degree no no no
## 3931 40 blue-collar married basic.6y unknown yes no
## 3932 32 admin. single professional.course no no no
## 3933 47 management married basic.4y unknown yes no
## 3934 38 blue-collar married basic.9y no yes yes
## 3935 32 management single high.school no yes no
## 3936 34 admin. single high.school no no yes
## 3937 53 technician married professional.course unknown yes yes
## 3938 36 technician married university.degree no yes no
## 3939 45 entrepreneur married basic.4y unknown no no
## 3940 47 management married basic.4y unknown no no
## 3941 44 blue-collar divorced basic.6y no no no
## 3942 44 blue-collar divorced basic.9y no no no
## 3944 47 services married unknown unknown yes yes
## 3945 58 retired divorced university.degree no yes no
## 3946 28 services single high.school no yes no
## 3947 46 technician married professional.course no no no
## 3948 48 admin. married high.school no yes no
## 3950 32 blue-collar single basic.6y no yes no
## 3951 48 technician married unknown no yes no
## 3952 49 management married university.degree no no no
## 3953 27 services single high.school no yes no
## 3955 46 admin. married professional.course no no no
## 3956 47 technician married professional.course no unknown unknown
## 3958 51 blue-collar married basic.9y unknown no no
## 3959 57 retired married basic.4y unknown yes no
## 3961 54 blue-collar married basic.4y unknown yes yes
## 3962 33 admin. married professional.course no no no
## 3963 50 blue-collar married basic.6y no no no
## 3964 45 services divorced high.school unknown yes no
## 3965 49 services divorced basic.9y no no no
## 3967 45 services married basic.9y no no yes
## 3968 36 technician married professional.course no yes no
## 3970 30 self-employed single high.school no yes no
## 3972 31 technician single university.degree unknown yes yes
## 3973 35 blue-collar married basic.6y no yes yes
## 3974 36 technician married basic.6y no yes no
## 3975 51 services married high.school unknown yes yes
## 3976 41 management married university.degree no no no
## 3977 37 blue-collar married basic.9y no yes no
## 3978 36 management married basic.9y no unknown unknown
## 3980 57 technician married professional.course no yes no
## 3981 28 admin. single university.degree no yes no
## 3982 54 housemaid divorced basic.4y no no no
## 3983 38 admin. single university.degree unknown yes no
## 3985 43 blue-collar married basic.4y unknown no yes
## 3986 30 student single basic.9y no no no
## 3987 51 blue-collar married basic.4y unknown yes no
## 3988 31 technician married university.degree no no no
## 3989 45 blue-collar married unknown no yes yes
## 3990 42 blue-collar married basic.4y no yes no
## 3992 49 blue-collar married basic.4y unknown yes no
## 3993 34 blue-collar married basic.9y unknown yes yes
## 3995 47 services divorced high.school no no no
## 3997 42 blue-collar married basic.9y no yes no
## 3998 31 blue-collar married basic.9y no unknown unknown
## 3999 52 management married high.school unknown no no
## 4000 56 housemaid married basic.4y no no no
## 4001 36 blue-collar married basic.6y unknown unknown unknown
## 4002 45 admin. married university.degree no no no
## 4004 39 housemaid married university.degree no no no
## 4006 46 self-employed married basic.9y unknown no no
## 4007 32 blue-collar married basic.6y unknown yes no
## 4008 29 management single university.degree no yes yes
## 4009 41 blue-collar married basic.9y no no no
## 4010 35 admin. married university.degree no yes yes
## 4013 31 blue-collar single basic.9y no no no
## 4014 36 technician single professional.course no no yes
## 4015 41 technician married university.degree no no no
## 4016 59 retired married basic.9y unknown no no
## 4017 45 unemployed married basic.6y unknown no no
## 4021 32 blue-collar divorced basic.9y no no no
## 4022 33 admin. single high.school unknown yes no
## 4023 35 self-employed married university.degree no unknown unknown
## 4024 37 blue-collar married professional.course no no no
## 4025 47 technician married professional.course no no no
## 4026 28 blue-collar married basic.6y no no no
## 4027 36 admin. married high.school no no no
## 4029 36 blue-collar single high.school no yes yes
## 4030 51 blue-collar married basic.4y no yes yes
## 4031 32 admin. married high.school no no no
## 4032 50 unemployed married basic.4y unknown yes no
## 4034 32 admin. married high.school unknown yes no
## 4035 48 blue-collar married basic.9y no no no
## 4036 52 technician divorced basic.9y no yes yes
## 4037 30 blue-collar single basic.9y unknown no yes
## 4039 48 admin. married university.degree no yes no
## 4040 25 blue-collar single basic.9y unknown yes no
## 4041 28 admin. single high.school no no no
## 4042 28 self-employed single basic.9y no no no
## 4043 34 blue-collar married basic.6y no no no
## 4045 42 services married professional.course no no no
## 4046 57 retired married basic.4y no yes no
## 4047 44 admin. married basic.4y unknown no no
## 4048 28 admin. single basic.9y no yes yes
## 4049 25 self-employed single university.degree no no no
## 4050 29 housemaid single high.school no no no
## 4051 28 services married high.school no no no
## 4053 28 self-employed married professional.course no no no
## 4054 32 admin. married high.school no no no
## 4056 59 technician married university.degree unknown unknown unknown
## 4057 55 admin. married university.degree no no no
## 4058 43 management married university.degree no unknown unknown
## 4059 58 retired married basic.4y unknown no no
## 4060 54 blue-collar married basic.4y unknown no no
## 4061 25 blue-collar married basic.4y no no no
## 4062 24 technician single professional.course unknown no no
## 4063 53 self-employed married university.degree no no no
## 4064 36 admin. married university.degree no no no
## 4065 49 housemaid married basic.4y no no no
## 4067 51 blue-collar married basic.4y no unknown unknown
## 4068 37 housemaid married high.school no yes yes
## 4069 41 blue-collar married basic.9y no no no
## 4070 40 blue-collar married basic.9y no yes no
## 4071 35 services married professional.course unknown yes yes
## 4072 24 services single professional.course no yes no
## 4073 34 technician married university.degree no yes no
## 4074 30 blue-collar married basic.9y no no no
## 4078 40 admin. married university.degree unknown yes yes
## 4079 48 admin. married basic.9y unknown no yes
## 4080 35 admin. single high.school no yes yes
## 4081 26 admin. married high.school no no yes
## 4084 45 blue-collar married basic.4y unknown yes yes
## 4085 35 admin. married university.degree no yes no
## 4086 32 blue-collar married basic.9y no yes no
## 4087 34 blue-collar married basic.9y no yes no
## 4088 33 services single high.school no no yes
## 4089 37 blue-collar married basic.9y unknown no no
## 4090 29 admin. single basic.9y unknown no no
## 4092 43 services divorced high.school no yes no
## 4094 32 housemaid single high.school no unknown unknown
## 4095 33 unemployed divorced professional.course no unknown unknown
## 4096 26 unemployed married high.school no yes no
## 4097 39 blue-collar married basic.4y unknown yes no
## 4098 38 blue-collar married basic.6y unknown yes yes
## 4099 48 blue-collar married professional.course no no no
## 4100 42 entrepreneur married university.degree no no no
## 4101 35 blue-collar divorced basic.9y no yes yes
## 4102 42 blue-collar divorced basic.6y no yes no
## 4103 36 blue-collar single basic.9y unknown no no
## 4104 28 blue-collar married basic.9y no no yes
## 4105 32 technician single basic.9y no yes no
## 4106 28 blue-collar divorced high.school no yes no
## 4107 41 blue-collar divorced basic.9y no no no
## 4108 32 admin. married university.degree unknown unknown unknown
## 4109 42 blue-collar divorced basic.9y no unknown unknown
## 4110 29 technician single university.degree no unknown unknown
## 4111 38 services married high.school no yes no
## 4115 52 entrepreneur married university.degree no no no
## 4116 55 services divorced high.school no no yes
## 4117 24 services single high.school no no no
## 4118 46 admin. divorced high.school unknown no yes
## 4119 31 admin. divorced university.degree no no no
## 4120 34 admin. married university.degree no no no
## 4121 45 entrepreneur married basic.9y no no no
## 4122 45 blue-collar married basic.9y unknown yes no
## 4123 39 technician divorced professional.course no unknown unknown
## 4125 44 technician divorced high.school no yes no
## 4126 29 technician single university.degree no yes no
## 4127 32 technician married professional.course no no yes
## 4128 32 technician single high.school no yes yes
## 4129 48 technician divorced professional.course no no yes
## 4131 32 blue-collar married professional.course no yes no
## 4132 38 blue-collar single basic.4y no yes no
## 4133 28 unemployed single high.school no yes yes
## 4134 46 blue-collar married basic.4y no unknown unknown
## 4135 46 management married basic.9y unknown no no
## 4137 26 blue-collar married basic.4y no yes no
## 4138 33 blue-collar married basic.9y no yes no
## 4139 28 management married university.degree no no no
## 4140 52 management married basic.4y unknown no no
## 4141 35 admin. single university.degree no no no
## 4144 26 services married high.school no no no
## 4146 47 admin. married university.degree no no no
## 4147 26 blue-collar married basic.4y no no yes
## 4149 24 admin. single high.school no yes no
## 4150 31 technician married professional.course no no no
## 4154 60 admin. married professional.course no yes no
## 4155 32 blue-collar married basic.6y unknown yes no
## 4156 24 blue-collar married basic.9y no yes no
## 4157 28 admin. married high.school no no no
## 4159 38 admin. divorced high.school no no no
## 4160 37 blue-collar married professional.course no yes no
## 4161 36 services divorced university.degree no no no
## 4162 47 technician married professional.course unknown yes no
## 4163 49 technician married professional.course unknown yes no
## 4164 31 blue-collar married basic.4y no yes no
## 4165 52 services married high.school unknown yes no
## 4166 36 services married high.school unknown yes no
## 4167 51 blue-collar married basic.6y unknown yes no
## 4168 52 services divorced high.school no no no
## 4170 51 services married professional.course unknown no no
## 4171 31 blue-collar married basic.9y no yes no
## 4173 42 services married basic.9y unknown no no
## 4174 32 management single basic.4y no no no
## 4175 30 technician single professional.course no yes no
## 4176 27 blue-collar married basic.9y no yes no
## 4178 56 blue-collar married basic.4y unknown yes no
## 4179 57 housemaid married basic.6y no no yes
## 4180 27 services married professional.course no yes no
## 4182 43 technician single professional.course no yes no
## 4183 44 technician single professional.course unknown no no
## 4184 52 self-employed married university.degree unknown yes no
## 4186 48 blue-collar married basic.6y no no no
## 4187 31 technician married basic.9y unknown yes no
## 4188 33 management married university.degree no yes no
## 4190 34 blue-collar married basic.9y no yes no
## 4191 59 housemaid married unknown no no no
## 4194 29 blue-collar single professional.course no yes no
## 4195 46 entrepreneur married university.degree no yes no
## 4196 46 blue-collar married basic.9y unknown no no
## 4197 31 admin. unknown high.school no no no
## 4199 33 blue-collar married basic.4y unknown no no
## 4203 34 services married high.school no no no
## 4207 36 services married high.school no yes no
## 4208 47 services divorced high.school no no no
## 4209 49 self-employed single basic.9y no no no
## 4210 33 technician divorced professional.course no no no
## 4211 54 blue-collar married basic.9y unknown no yes
## 4212 35 admin. married university.degree no yes yes
## 4213 25 services single high.school no no no
## 4214 42 management married basic.6y unknown yes no
## 4215 26 admin. single high.school no no no
## 4216 36 technician married professional.course no no no
## 4217 47 technician single professional.course unknown no no
## 4218 43 services married basic.9y unknown no no
## 4219 27 admin. married university.degree no yes no
## 4220 40 housemaid married high.school unknown yes no
## 4221 56 management married unknown no no no
## 4222 59 admin. married basic.6y no yes no
## 4223 49 technician married professional.course unknown yes no
## 4224 40 blue-collar married basic.9y unknown no no
## 4226 43 housemaid married basic.4y unknown no no
## 4227 36 blue-collar married basic.9y no yes no
## 4228 53 technician married professional.course no yes no
## 4230 53 technician divorced professional.course no no no
## 4231 52 services married high.school unknown yes no
## 4233 31 unemployed single professional.course no no no
## 4234 54 technician single university.degree unknown unknown unknown
## 4235 45 blue-collar married basic.9y unknown no no
## 4237 31 admin. married high.school no yes no
## 4238 41 entrepreneur single university.degree unknown yes no
## 4239 25 admin. married high.school no no yes
## 4241 49 admin. divorced university.degree no no no
## 4242 53 blue-collar married high.school no no no
## 4243 40 admin. married professional.course unknown yes no
## 4245 40 unemployed married basic.4y unknown yes no
## 4246 48 technician married unknown no yes yes
## 4248 30 technician married university.degree unknown no no
## 4249 49 blue-collar married unknown unknown yes no
## 4251 45 technician single professional.course no yes yes
## 4252 34 services married high.school no yes no
## 4253 32 services single basic.6y no no yes
## 4254 41 blue-collar married basic.4y unknown no no
## 4258 37 admin. married high.school unknown yes yes
## 4259 25 management single basic.4y no no no
## 4260 50 blue-collar married basic.4y no yes no
## 4261 43 blue-collar married basic.4y no yes no
## 4263 41 blue-collar married basic.9y no no no
## 4265 31 blue-collar single high.school no no no
## 4266 34 management single university.degree no no no
## 4267 47 services married high.school no no no
## 4268 52 self-employed married basic.4y unknown yes no
## 4269 47 blue-collar married unknown unknown no no
## 4270 42 technician divorced university.degree no no no
## 4271 28 admin. married high.school no no no
## 4272 43 admin. married university.degree no yes no
## 4273 41 services married basic.9y no no no
## 4274 33 technician married high.school no no no
## 4275 53 admin. married university.degree no yes no
## 4276 49 blue-collar married basic.4y unknown no no
## 4277 45 blue-collar married basic.4y unknown yes no
## 4278 33 services married university.degree no yes no
## 4279 45 blue-collar married basic.4y unknown yes no
## 4280 30 unemployed single basic.9y no no no
## 4281 49 technician married professional.course no yes no
## 4282 38 technician married professional.course no yes yes
## 4283 39 services divorced high.school no yes no
## 4284 50 blue-collar married basic.4y unknown no yes
## 4285 58 blue-collar married unknown no yes no
## 4286 46 blue-collar married basic.6y no yes no
## 4287 46 housemaid married high.school unknown no no
## 4288 40 technician married professional.course no no no
## 4289 36 admin. married high.school no no no
## 4290 53 self-employed married basic.4y no no no
## 4293 39 services married high.school unknown yes no
## 4294 39 services married high.school no no yes
## 4295 53 blue-collar married basic.4y unknown no no
## 4297 39 services married high.school unknown yes yes
## 4298 50 blue-collar married basic.9y unknown yes yes
## 4299 40 admin. married high.school no no no
## 4300 56 technician married professional.course unknown no no
## 4301 41 technician married professional.course no unknown unknown
## 4303 36 blue-collar married unknown unknown no no
## 4304 42 blue-collar married unknown unknown yes yes
## 4305 38 technician married professional.course unknown yes no
## 4306 30 services divorced basic.9y no yes no
## 4307 42 technician married basic.9y no no no
## 4308 38 technician married professional.course no no no
## 4310 45 management married unknown unknown no no
## 4311 33 blue-collar married basic.9y no no no
## 4313 41 services married high.school unknown yes no
## 4315 36 admin. married high.school no yes yes
## 4316 21 admin. single basic.9y no yes yes
## 4317 29 admin. married high.school no yes no
## 4318 53 management married university.degree unknown yes no
## 4319 39 blue-collar married basic.6y no no yes
## 4320 31 blue-collar single basic.9y no yes no
## 4321 44 admin. divorced university.degree unknown yes yes
## 4322 38 admin. single basic.6y unknown no no
## 4323 47 entrepreneur married unknown unknown no no
## 4324 36 blue-collar married basic.9y no no no
## 4325 27 blue-collar single basic.9y no no no
## 4326 45 blue-collar married basic.9y unknown no no
## 4327 34 blue-collar married basic.4y no no no
## 4329 40 blue-collar married basic.4y no no no
## 4330 36 admin. divorced high.school no yes yes
## 4332 53 blue-collar married basic.4y no no no
## 4333 40 admin. divorced university.degree no yes no
## 4334 25 blue-collar married basic.9y no no no
## 4335 42 admin. married university.degree unknown no no
## 4336 47 admin. divorced professional.course unknown no no
## 4337 46 admin. divorced university.degree no no no
## 4338 35 technician married professional.course no no no
## 4339 45 blue-collar married basic.6y unknown no no
## 4340 43 technician married professional.course no no no
## 4341 58 admin. divorced basic.9y unknown no no
## 4342 43 admin. married high.school no yes no
## 4343 33 blue-collar single basic.9y no yes no
## 4346 49 technician married professional.course no yes no
## 4348 35 admin. married high.school no no no
## 4349 45 blue-collar married basic.9y unknown no no
## 4350 36 admin. divorced high.school no no no
## 4351 45 services married basic.9y no yes no
## 4352 34 services married high.school unknown yes no
## 4353 54 management married high.school unknown yes no
## 4354 35 services single basic.4y no yes no
## 4356 40 services married high.school no no no
## 4357 31 blue-collar married basic.6y no yes no
## 4358 52 technician married basic.9y unknown no no
## 4359 46 admin. married basic.4y no no no
## 4361 39 unemployed married professional.course no no yes
## 4362 59 technician married university.degree unknown no no
## 4365 43 unknown married university.degree no no no
## 4366 42 self-employed married high.school no no no
## 4367 42 admin. single university.degree no no no
## 4370 38 blue-collar single basic.9y no no yes
## 4371 49 blue-collar married basic.9y no no no
## 4372 57 blue-collar divorced basic.4y unknown yes no
## 4374 31 technician divorced basic.9y no no no
## 4375 52 management married university.degree unknown yes no
## 4376 57 retired married university.degree no yes no
## 4377 47 blue-collar married basic.9y no yes no
## 4378 42 blue-collar married basic.6y no yes no
## 4379 35 blue-collar single unknown no yes no
## 4380 31 admin. single university.degree no yes no
## 4382 44 blue-collar married basic.6y unknown yes no
## 4383 59 entrepreneur divorced high.school unknown no no
## 4384 57 blue-collar married unknown unknown yes no
## 4385 41 blue-collar married high.school unknown yes no
## 4387 33 blue-collar single basic.4y no no no
## 4388 54 entrepreneur married basic.6y unknown no no
## 4389 22 blue-collar single basic.9y no yes no
## 4391 56 retired married high.school unknown no no
## 4392 41 management married high.school no no yes
## 4393 46 blue-collar married professional.course unknown no yes
## 4394 60 admin. single high.school no no yes
## 4395 50 services married high.school no no no
## 4396 49 entrepreneur married basic.4y unknown yes yes
## 4398 34 services married high.school unknown no no
## 4399 49 admin. married university.degree unknown no no
## 4400 30 blue-collar single high.school no yes no
## 4403 42 housemaid married high.school no no no
## 4405 40 blue-collar married basic.9y no yes no
## 4406 32 entrepreneur single university.degree unknown yes no
## 4407 41 services married basic.9y no yes no
## 4408 57 blue-collar divorced professional.course no yes no
## 4409 34 services married high.school no no no
## 4410 40 management married university.degree no no yes
## 4411 44 blue-collar married basic.4y unknown no no
## 4412 51 blue-collar married basic.9y unknown unknown unknown
## 4414 32 technician divorced high.school no yes no
## 4415 33 blue-collar married basic.9y no yes no
## 4416 43 blue-collar married basic.4y unknown yes yes
## 4417 28 blue-collar married basic.6y unknown yes no
## 4418 37 services married high.school no yes no
## 4419 37 services single high.school no yes no
## 4420 41 housemaid married basic.9y unknown yes no
## 4421 37 admin. married university.degree no no no
## 4422 42 blue-collar married unknown no yes no
## 4423 60 services married unknown no no no
## 4424 28 admin. single university.degree no yes no
## 4425 45 housemaid divorced university.degree no no no
## 4427 52 technician married high.school no yes no
## 4429 43 entrepreneur married university.degree no no no
## 4430 41 management married university.degree no yes no
## 4433 47 services married high.school unknown no no
## 4434 38 admin. married basic.9y unknown yes no
## 4437 31 entrepreneur married basic.9y no no no
## 4438 45 self-employed married basic.4y unknown yes no
## 4439 41 blue-collar married basic.6y no no no
## 4440 51 retired married basic.9y no no no
## 4441 46 admin. divorced university.degree unknown no no
## 4442 48 self-employed married university.degree unknown no no
## 4443 51 retired married basic.9y no yes no
## 4444 44 services married high.school no unknown unknown
## 4447 35 unemployed married university.degree no no no
## 4448 57 technician married basic.9y no yes no
## 4449 38 admin. married university.degree no yes no
## 4451 30 admin. single university.degree no no no
## 4452 37 services married high.school unknown no yes
## 4453 31 technician divorced basic.9y no no no
## 4455 31 blue-collar unknown unknown unknown no no
## 4456 38 technician married professional.course no unknown unknown
## 4457 29 student single university.degree no yes no
## 4458 36 services married high.school no unknown unknown
## 4460 32 student single high.school unknown yes no
## 4461 42 blue-collar married basic.4y unknown yes no
## 4462 27 blue-collar married basic.9y no yes no
## 4463 34 technician married professional.course no no no
## 4464 44 management married university.degree no yes no
## 4465 42 services married professional.course no no no
## 4466 29 services divorced high.school no yes no
## 4467 40 blue-collar married basic.6y unknown no no
## 4468 57 retired single professional.course no no no
## 4469 42 blue-collar married basic.9y unknown yes no
## 4470 50 admin. married basic.9y no yes yes
## 4472 34 technician married professional.course no yes no
## 4473 40 admin. single university.degree no no no
## 4474 46 management married basic.9y no yes yes
## 4475 33 admin. married high.school no yes no
## 4476 42 retired married basic.9y unknown no no
## 4477 27 blue-collar married basic.6y no no no
## 4478 41 management single high.school no no no
## 4479 39 admin. married professional.course no yes no
## 4481 31 blue-collar married basic.9y no no no
## 4483 45 housemaid married professional.course unknown no no
## 4484 30 self-employed married professional.course no no no
## 4485 58 management married basic.4y no no no
## 4486 39 blue-collar single basic.9y no no no
## 4487 41 technician married professional.course no no no
## 4488 44 blue-collar married basic.4y no no no
## 4489 47 blue-collar married basic.9y no no no
## 4490 32 admin. married university.degree no no yes
## 4492 45 blue-collar married basic.4y unknown no no
## 4493 33 management married professional.course no no no
## 4494 27 blue-collar married basic.9y unknown yes no
## 4495 57 retired married basic.4y no yes yes
## 4496 32 blue-collar married basic.9y no yes no
## 4497 33 blue-collar divorced basic.9y no no no
## 4498 57 self-employed married unknown unknown no yes
## 4499 34 blue-collar married basic.4y no no yes
## 4500 58 unemployed married basic.4y unknown no no
## 4501 50 admin. single university.degree no yes no
## 4502 44 blue-collar married basic.9y no yes yes
## 4503 48 blue-collar married professional.course no yes no
## 4507 29 technician married professional.course no no no
## 4508 32 services married professional.course no yes no
## 4509 40 admin. single high.school no no no
## 4510 39 management married high.school no yes yes
## 4511 34 services married basic.6y unknown yes no
## 4512 50 housemaid divorced basic.4y unknown yes yes
## 4513 28 blue-collar single basic.4y no no no
## 4515 27 admin. married high.school no yes no
## 4516 38 services married basic.9y no unknown unknown
## 4517 37 technician married professional.course no yes no
## 4520 43 services married high.school no no no
## 4521 55 technician married basic.9y unknown yes yes
## 4522 35 admin. married university.degree no no no
## 4523 27 blue-collar married basic.6y unknown unknown unknown
## 4524 51 entrepreneur married basic.4y no no no
## 4525 34 housemaid married high.school no no no
## 4526 28 technician married professional.course no yes no
## 4527 50 blue-collar married basic.6y unknown no no
## 4528 26 blue-collar married basic.4y no yes yes
## 4529 50 admin. married basic.9y unknown yes yes
## 4530 52 blue-collar married basic.4y unknown no no
## 4531 52 blue-collar married basic.9y no yes yes
## 4533 37 blue-collar married unknown no no no
## 4535 46 admin. married high.school no yes no
## 4536 45 unemployed married university.degree no no no
## 4537 31 technician married professional.course no yes no
## 4538 39 blue-collar married professional.course unknown no no
## 4539 55 admin. divorced university.degree no no no
## 4540 55 admin. married high.school no no no
## 4542 38 self-employed single university.degree no unknown unknown
## 4543 24 student married university.degree no no no
## 4544 36 services married high.school no no no
## 4545 44 admin. married basic.4y unknown yes yes
## 4546 33 blue-collar single basic.9y no no no
## 4547 30 technician married university.degree no no no
## 4548 28 self-employed single basic.9y no no no
## 4550 38 technician single university.degree no yes no
## 4551 42 admin. married basic.9y no yes yes
## 4552 35 blue-collar married high.school no yes yes
## 4553 53 retired married high.school unknown no no
## 4554 24 admin. single high.school no no no
## 4555 35 admin. divorced university.degree no no no
## 4556 25 admin. single high.school no no no
## 4557 59 entrepreneur married university.degree unknown yes yes
## 4559 56 admin. married basic.9y no no no
## 4560 43 technician married unknown no yes no
## 4561 32 entrepreneur married basic.6y no no no
## 4562 27 blue-collar married basic.9y no yes yes
## 4563 34 management single basic.9y no no no
## 4566 29 services married high.school no no no
## 4568 57 technician divorced unknown no no no
## 4569 43 services married professional.course no yes no
## 4570 49 admin. single high.school no no no
## 4571 50 technician married basic.6y no yes no
## 4573 34 blue-collar married basic.9y no yes no
## 4574 24 services single high.school no no no
## 4575 43 blue-collar married basic.4y unknown yes no
## 4576 44 admin. married university.degree no no no
## 4577 37 technician married professional.course no yes no
## 4578 39 blue-collar married basic.9y no yes no
## 4579 33 admin. single professional.course no no no
## 4580 46 blue-collar married basic.4y unknown yes no
## 4582 28 admin. single university.degree no yes no
## 4583 25 technician single professional.course no yes yes
## 4584 39 services married high.school no no no
## 4586 32 admin. single high.school no no no
## 4587 32 services married high.school unknown no yes
## 4588 41 admin. married unknown unknown no no
## 4589 22 blue-collar married basic.4y no unknown unknown
## 4591 29 admin. single high.school no no no
## 4592 50 technician married professional.course unknown yes no
## 4594 39 housemaid married basic.4y no yes no
## 4595 55 services divorced basic.4y unknown yes no
## 4596 43 admin. married university.degree no no no
## 4597 42 services married high.school unknown yes no
## 4598 41 blue-collar married basic.6y unknown yes no
## 4599 31 technician single university.degree no no no
## 4600 56 blue-collar married basic.4y unknown yes no
## 4601 40 blue-collar married basic.4y unknown yes no
## 4602 46 management married basic.9y no yes no
## 4603 56 admin. divorced high.school no yes no
## 4604 42 blue-collar divorced basic.4y no no no
## 4606 41 technician divorced basic.4y no yes no
## 4607 53 admin. married university.degree no no yes
## 4608 33 housemaid married basic.4y no unknown unknown
## 4609 25 services single high.school no no no
## 4610 42 admin. married high.school no no no
## 4612 41 technician divorced basic.4y no yes no
## 4614 31 technician single high.school no no yes
## 4615 46 services married professional.course no yes no
## 4616 58 retired married university.degree no no no
## 4617 39 services married high.school no no yes
## 4618 54 blue-collar married basic.9y unknown yes no
## 4619 31 admin. divorced university.degree no yes no
## 4621 56 retired divorced basic.4y no no no
## 4622 41 admin. married university.degree no no no
## 4623 33 admin. divorced high.school no no no
## 4625 33 admin. divorced high.school no no no
## 4626 48 admin. divorced high.school no no no
## 4627 28 blue-collar married basic.6y unknown yes no
## 4628 39 unemployed married university.degree no no no
## 4629 42 admin. single basic.9y unknown no yes
## 4630 60 housemaid married high.school unknown yes no
## 4631 35 technician married basic.9y no no no
## 4633 36 blue-collar married basic.6y no yes no
## 4634 33 unemployed married basic.9y no yes no
## 4635 54 management divorced basic.6y unknown yes no
## 4636 49 housemaid married basic.4y unknown no yes
## 4638 32 management single university.degree no no no
## 4640 37 blue-collar married basic.6y no no no
## 4641 35 technician married university.degree no no no
## 4642 47 blue-collar married basic.6y no no no
## 4643 33 technician married professional.course no yes no
## 4644 38 blue-collar married basic.9y no yes yes
## 4645 39 housemaid married university.degree no no no
## 4646 55 admin. married high.school no yes no
## 4647 35 services married high.school no yes no
## 4649 33 blue-collar married basic.6y unknown no no
## 4650 32 blue-collar married basic.9y unknown yes no
## 4651 32 blue-collar married basic.9y no yes no
## 4652 32 blue-collar divorced basic.9y no no no
## 4653 42 admin. single university.degree no yes yes
## 4656 55 admin. married high.school no yes yes
## 4658 45 admin. single high.school unknown yes yes
## 4659 58 management married university.degree unknown no no
## 4660 46 self-employed married university.degree no yes yes
## 4662 50 self-employed married basic.4y unknown no yes
## 4663 56 blue-collar married basic.4y unknown no no
## 4664 33 blue-collar married basic.4y unknown yes yes
## 4665 26 admin. married university.degree no yes yes
## 4666 49 housemaid single high.school unknown yes no
## 4667 36 services married high.school no yes yes
## 4668 52 self-employed single university.degree unknown no no
## 4669 49 blue-collar married basic.9y unknown no yes
## 4671 28 admin. single high.school no no no
## 4673 45 admin. single professional.course no yes no
## 4674 41 technician married university.degree no no no
## 4676 31 services married professional.course no no no
## 4677 32 technician married professional.course no no no
## 4678 59 retired married professional.course unknown no no
## 4679 25 services divorced high.school no yes yes
## 4680 22 services single basic.4y no no no
## 4681 43 blue-collar married basic.9y no no no
## 4682 35 blue-collar married basic.9y no yes no
## 4684 40 admin. married university.degree no no no
## 4686 37 technician married university.degree no yes yes
## 4688 35 blue-collar married basic.9y no yes no
## 4690 39 housemaid married basic.9y no yes no
## 4693 38 blue-collar married professional.course no no no
## 4694 37 technician single university.degree no no no
## 4695 54 blue-collar married basic.9y unknown no no
## 4696 53 retired married high.school unknown no no
## 4697 38 services married basic.9y no no no
## 4698 47 technician single professional.course unknown no no
## 4699 33 management married high.school unknown no no
## 4700 39 blue-collar married basic.4y unknown yes no
## 4701 36 technician single professional.course unknown no no
## 4702 35 blue-collar married basic.9y no no no
## 4703 40 admin. married university.degree unknown yes yes
## 4704 55 admin. single university.degree unknown yes yes
## 4705 37 blue-collar married basic.4y no yes no
## 4706 53 blue-collar married basic.9y unknown no no
## 4707 36 admin. married high.school no unknown unknown
## 4708 32 blue-collar married basic.9y no no no
## 4709 42 admin. married high.school no yes no
## 4710 52 management married university.degree no yes no
## 4711 33 services married high.school no no yes
## 4712 51 admin. married professional.course unknown no no
## 4714 33 technician divorced professional.course no yes no
## 4715 34 services married high.school no no no
## 4717 55 admin. divorced university.degree no yes no
## 4720 52 services married university.degree no yes no
## 4721 55 technician married basic.9y unknown yes no
## 4722 45 blue-collar married basic.4y unknown yes no
## 4723 34 blue-collar married basic.9y unknown yes yes
## 4724 53 self-employed married university.degree no yes no
## 4725 43 admin. married university.degree no no no
## 4726 33 management married basic.9y no yes no
## 4727 39 blue-collar married basic.9y no no no
## 4728 29 blue-collar married basic.9y unknown yes no
## 4730 45 blue-collar married basic.4y no yes no
## 4731 35 blue-collar married basic.9y no yes no
## 4732 37 technician single university.degree no no no
## 4733 38 blue-collar married basic.6y unknown no no
## 4735 36 technician married university.degree no no no
## 4737 53 entrepreneur single basic.9y no no no
## 4738 30 admin. single university.degree no no no
## 4739 41 blue-collar married basic.4y unknown no no
## 4740 40 blue-collar married basic.9y unknown no no
## 4741 36 technician married university.degree no no no
## 4742 36 management married high.school no no no
## 4743 44 services divorced high.school unknown no no
## 4744 56 retired married high.school unknown no no
## 4746 35 blue-collar married professional.course no yes yes
## 4747 35 management married university.degree no no yes
## 4748 28 management married high.school unknown yes no
## 4749 43 housemaid married basic.4y unknown no yes
## 4750 30 entrepreneur married professional.course no no no
## 4751 36 student single university.degree unknown yes no
## 4752 40 blue-collar married basic.9y no yes yes
## 4755 42 technician divorced basic.9y no no no
## 4756 49 blue-collar married basic.6y no yes no
## 4757 38 technician married professional.course no yes yes
## 4758 31 admin. married high.school no yes no
## 4759 57 retired married basic.4y no no no
## 4760 29 blue-collar single basic.6y no no no
## 4761 36 management married university.degree no yes no
## 4762 55 retired divorced high.school unknown yes no
## 4763 30 services single high.school no yes no
## 4764 32 blue-collar married basic.9y unknown no no
## 4765 49 blue-collar married basic.4y unknown yes no
## 4766 48 admin. married university.degree no yes no
## 4767 30 blue-collar single basic.4y no no no
## 4768 53 retired divorced high.school no yes no
## 4770 31 blue-collar married basic.6y no no yes
## 4771 60 technician divorced professional.course unknown yes no
## 4772 45 blue-collar married basic.9y no no no
## 4773 56 management married university.degree no yes no
## 4774 31 blue-collar married basic.4y no no no
## 4775 56 management married university.degree no yes yes
## 4776 60 entrepreneur married basic.4y no no yes
## 4778 56 management married university.degree no no yes
## 4780 29 admin. single high.school no no no
## 4782 53 admin. married basic.9y no no no
## 4783 49 entrepreneur married high.school unknown no no
## 4784 43 blue-collar single professional.course no no no
## 4785 38 blue-collar single basic.4y no no no
## 4786 48 blue-collar married basic.4y no yes no
## 4788 30 blue-collar married basic.9y no no no
## 4789 31 technician married professional.course no no no
## 4790 37 services married high.school unknown no no
## 4792 59 retired married high.school unknown no no
## 4793 42 admin. single unknown unknown yes yes
## 4794 36 admin. single professional.course no yes yes
## 4795 41 blue-collar divorced basic.6y no yes yes
## 4796 44 services married high.school no no no
## 4797 40 admin. married university.degree no yes yes
## 4798 39 services married high.school no no no
## 4799 40 admin. divorced professional.course no no no
## 4800 33 blue-collar married professional.course no yes no
## 4801 57 services divorced high.school no yes yes
## 4802 31 admin. married high.school no yes yes
## 4803 57 housemaid married basic.4y no no yes
## 4804 48 blue-collar married basic.4y no yes no
## 4805 52 technician married high.school unknown no no
## 4806 37 blue-collar single unknown unknown no no
## 4807 42 technician married university.degree unknown no no
## 4809 36 services single high.school unknown no no
## 4810 57 management married basic.9y unknown yes no
## 4811 51 blue-collar married basic.9y no yes yes
## 4812 43 admin. married high.school no yes no
## 4813 55 admin. single university.degree no yes no
## 4814 41 blue-collar married basic.9y unknown yes yes
## 4817 37 blue-collar married basic.4y no no no
## 4818 40 admin. single high.school no yes no
## 4819 28 unknown single basic.9y unknown yes no
## 4820 31 management married basic.9y no no yes
## 4823 35 housemaid married high.school no no no
## 4824 36 technician divorced professional.course no yes no
## 4825 31 admin. married high.school no no no
## 4826 38 blue-collar married basic.9y unknown yes no
## 4827 46 blue-collar divorced basic.9y no no no
## 4828 39 self-employed married university.degree no no no
## 4830 44 technician divorced professional.course no no no
## 4831 33 admin. married university.degree no yes no
## 4833 33 technician married professional.course no yes no
## 4834 44 admin. married high.school no no no
## 4837 24 services single high.school no unknown unknown
## 4839 33 admin. married high.school no no no
## 4840 58 management married basic.9y no yes no
## 4841 42 blue-collar divorced basic.9y no yes no
## 4842 40 blue-collar married basic.9y unknown no no
## 4845 36 technician married university.degree no yes no
## 4846 29 blue-collar married basic.9y no no no
## 4847 46 entrepreneur married professional.course no yes no
## 4849 45 blue-collar married basic.9y unknown no no
## 4850 53 unknown married high.school unknown yes no
## 4851 57 technician married high.school no no no
## 4853 40 technician married professional.course unknown no no
## 4854 37 admin. divorced high.school unknown yes yes
## 4855 31 technician married professional.course no unknown unknown
## 4856 29 blue-collar married high.school no yes yes
## 4857 33 admin. married university.degree no yes no
## 4858 35 technician married professional.course no no no
## 4859 47 admin. married university.degree no yes no
## 4861 34 blue-collar married professional.course no yes no
## 4862 38 admin. married university.degree no no no
## 4863 46 admin. divorced university.degree no yes no
## 4864 26 blue-collar single basic.4y no yes yes
## 4865 30 blue-collar married high.school no yes no
## 4866 35 blue-collar married basic.9y unknown no no
## 4867 40 services divorced high.school no no no
## 4868 30 blue-collar married basic.9y no no no
## 4869 30 technician married professional.course no yes no
## 4870 35 technician married university.degree unknown no no
## 4871 36 blue-collar married basic.9y unknown yes no
## 4872 27 blue-collar single high.school no no no
## 4873 32 technician single university.degree unknown no no
## 4874 26 services divorced basic.6y no yes no
## 4876 30 management married university.degree no unknown unknown
## 4877 33 technician single university.degree no no no
## 4878 50 unemployed married high.school no no yes
## 4879 38 technician married professional.course no no no
## 4880 36 unknown single basic.6y unknown yes no
## 4882 35 technician married high.school no no no
## 4883 42 self-employed married university.degree no no no
## 4885 29 technician single university.degree no no no
## 4886 29 admin. single basic.9y unknown no no
## 4887 38 blue-collar married professional.course no yes no
## 4888 45 blue-collar divorced basic.9y no yes no
## 4890 58 admin. divorced university.degree no yes no
## 4891 51 entrepreneur married basic.4y unknown yes no
## 4892 39 technician divorced professional.course no no no
## 4893 44 unemployed divorced high.school unknown yes no
## 4895 30 management single university.degree no yes no
## 4896 46 admin. married high.school no yes no
## 4897 34 blue-collar married basic.6y unknown yes no
## 4898 57 management married basic.9y no no no
## 4899 47 blue-collar divorced basic.9y unknown no no
## 4900 45 admin. divorced university.degree no no no
## 4901 36 technician married basic.9y no no no
## 4902 45 blue-collar divorced basic.9y no no no
## 4903 56 entrepreneur married university.degree no no yes
## 4904 28 blue-collar single basic.6y no no no
## 4905 30 admin. single high.school no no no
## 4906 49 housemaid divorced basic.6y no yes no
## 4909 26 admin. married basic.9y no yes no
## 4910 38 technician married professional.course no no no
## 4911 58 technician married professional.course unknown no no
## 4912 29 admin. single basic.9y unknown yes no
## 4913 49 technician divorced university.degree unknown yes yes
## 4914 48 management married university.degree no unknown unknown
## 4916 30 technician married university.degree unknown yes no
## 4917 27 blue-collar married basic.9y unknown no no
## 4918 57 services divorced high.school no yes no
## 4919 38 technician single professional.course unknown no no
## 4921 52 services married high.school no no no
## 4922 55 admin. married university.degree unknown yes yes
## 4923 41 technician married professional.course no yes no
## 4924 38 admin. married high.school no no no
## 4925 45 services divorced high.school no no no
## 4926 57 services divorced high.school no yes no
## 4927 53 blue-collar married basic.4y unknown no no
## 4928 32 blue-collar divorced basic.9y no no no
## 4929 34 services married high.school unknown yes no
## 4930 43 management married university.degree no no no
## 4931 31 admin. married high.school no no no
## 4934 32 services married high.school unknown yes no
## 4935 40 blue-collar married basic.9y unknown yes no
## 4936 53 admin. single university.degree unknown yes no
## 4937 31 technician married high.school no yes no
## 4938 36 services single basic.6y unknown yes yes
## 4939 56 admin. married university.degree unknown no no
## 4940 42 blue-collar divorced basic.4y no yes no
## 4942 32 admin. single university.degree no yes no
## 4943 47 admin. married high.school no no no
## 4944 34 blue-collar married basic.6y unknown yes no
## 4945 56 technician married high.school no yes no
## 4946 28 admin. single high.school no yes no
## 4948 30 blue-collar single high.school unknown yes no
## 4949 38 admin. married high.school no unknown unknown
## 4950 39 technician married professional.course no unknown unknown
## 4951 31 blue-collar married basic.6y unknown unknown unknown
## 4952 29 admin. single university.degree no yes no
## 4953 31 self-employed married university.degree no no no
## 4954 25 self-employed single university.degree no yes no
## 4956 35 blue-collar single basic.9y unknown no no
## 4957 36 services married high.school no yes no
## 4958 43 services married high.school unknown unknown unknown
## 4959 49 management married university.degree no yes no
## 4960 29 blue-collar married high.school no no no
## 4961 38 unemployed divorced university.degree no yes no
## 4962 32 blue-collar married basic.6y no no yes
## 4963 35 self-employed married university.degree no yes no
## 4964 39 self-employed married basic.4y unknown no no
## 4966 54 admin. married high.school no no no
## 4967 35 admin. married university.degree unknown yes no
## 4968 32 technician married professional.course no no no
## 4969 55 technician married basic.6y unknown yes no
## 4971 50 blue-collar divorced basic.9y unknown no no
## 4972 25 blue-collar single basic.4y no no no
## 4973 52 management divorced university.degree no no no
## 4974 43 self-employed married basic.9y no no no
## 4975 38 blue-collar married basic.9y no yes no
## 4976 45 admin. married high.school no yes no
## 4977 33 admin. single university.degree no yes no
## 4981 34 services married basic.9y no yes yes
## 4982 33 services divorced high.school no yes yes
## 4983 44 blue-collar divorced unknown no yes yes
## 4985 48 services married high.school unknown yes no
## 4986 56 services divorced high.school unknown yes no
## 4987 37 management married university.degree no yes no
## 4989 50 blue-collar married basic.4y unknown unknown unknown
## 4990 38 entrepreneur married basic.6y no unknown unknown
## 4991 32 admin. single university.degree no no no
## 4992 35 admin. single high.school no yes no
## 4993 50 blue-collar married basic.4y no no no
## 4995 35 services married high.school no no no
## 4996 36 services single high.school no no no
## 4997 29 housemaid single high.school no yes no
## 4998 38 services single basic.9y unknown yes no
## 4999 36 services single high.school no no no
## 5000 46 entrepreneur married professional.course no no no
## 5003 26 admin. married university.degree no no no
## 5004 47 blue-collar married basic.6y unknown no no
## 5006 28 admin. single university.degree no no no
## 5008 32 blue-collar married basic.9y no no no
## 5009 54 technician married professional.course no yes no
## 5010 37 services married basic.6y no no no
## 5012 49 admin. divorced high.school no yes no
## 5013 33 services married high.school unknown no no
## 5015 40 admin. single unknown unknown yes no
## 5016 50 blue-collar divorced high.school no no no
## 5017 36 admin. married university.degree no yes yes
## 5018 35 admin. married high.school no no no
## 5019 39 self-employed married basic.4y unknown yes no
## 5020 44 blue-collar married high.school no no no
## 5021 30 technician married professional.course no no no
## 5022 40 blue-collar married basic.6y no no no
## 5023 29 entrepreneur married basic.6y no yes no
## 5024 34 blue-collar married basic.6y no no no
## 5025 47 blue-collar married unknown unknown yes no
## 5026 58 admin. divorced university.degree no yes yes
## 5027 43 blue-collar single basic.4y unknown no no
## 5028 37 services married high.school no yes yes
## 5030 34 admin. single university.degree no no yes
## 5031 36 technician married professional.course no no no
## 5032 48 blue-collar married basic.9y unknown yes no
## 5033 59 admin. single professional.course no no no
## 5035 28 services married high.school unknown yes no
## 5037 50 blue-collar married basic.4y no no no
## 5038 42 blue-collar married basic.4y unknown no no
## 5039 45 technician married high.school no yes no
## 5041 38 blue-collar married basic.4y unknown yes no
## 5042 37 blue-collar married basic.4y unknown no no
## 5043 57 blue-collar married basic.4y unknown yes no
## 5044 48 blue-collar married basic.9y no no no
## 5045 27 services married high.school unknown no no
## 5047 35 blue-collar married basic.9y no yes no
## 5048 46 technician single university.degree no yes no
## 5050 38 housemaid married basic.6y unknown yes no
## 5051 28 admin. married university.degree no yes no
## 5052 56 blue-collar married basic.4y unknown no no
## 5053 34 technician single professional.course no no no
## 5054 39 admin. married high.school no yes no
## 5056 45 blue-collar married basic.6y unknown yes no
## 5057 58 admin. divorced university.degree no yes no
## 5058 38 blue-collar married basic.6y no yes no
## 5059 35 admin. married high.school no yes no
## 5060 36 services married high.school no yes no
## 5061 39 technician divorced professional.course no yes no
## 5062 41 blue-collar divorced basic.6y no yes no
## 5063 41 blue-collar divorced basic.6y no yes no
## 5064 26 services single basic.9y no no yes
## 5066 41 blue-collar divorced basic.6y no no no
## 5067 45 management married unknown unknown yes yes
## 5069 33 services single high.school no unknown unknown
## 5071 42 management married university.degree no no no
## 5072 35 admin. single university.degree no yes yes
## 5073 41 blue-collar married basic.6y unknown yes no
## 5074 35 services married high.school no no no
## 5075 53 blue-collar divorced basic.4y unknown yes no
## 5076 38 admin. single university.degree unknown no no
## 5077 30 technician single professional.course no no no
## 5078 57 retired single high.school no yes no
## 5079 37 blue-collar single basic.9y no no no
## 5081 37 admin. married high.school no no yes
## 5082 54 blue-collar single basic.4y unknown yes no
## 5084 41 management married university.degree no no yes
## 5085 49 technician married professional.course no no no
## 5086 51 unemployed married basic.9y unknown no no
## 5087 53 admin. married basic.9y no no no
## 5088 36 blue-collar single high.school no no yes
## 5089 55 housemaid married basic.4y no no no
## 5090 47 admin. married high.school no no no
## 5091 25 services married high.school unknown no no
## 5093 47 blue-collar married basic.4y no yes no
## 5097 37 self-employed married professional.course no no yes
## 5098 36 services single basic.9y unknown no yes
## 5099 53 blue-collar married basic.9y no yes no
## 5100 42 blue-collar married basic.4y unknown yes no
## 5101 39 blue-collar married basic.4y no no yes
## 5102 46 entrepreneur married high.school no no yes
## 5103 32 services married high.school unknown yes no
## 5104 28 technician divorced university.degree no no no
## 5105 40 blue-collar married basic.9y no yes no
## 5106 26 blue-collar single basic.9y unknown no yes
## 5108 38 technician married basic.6y unknown no no
## 5109 37 technician single basic.9y no no yes
## 5110 39 self-employed married university.degree no no no
## 5111 36 blue-collar divorced high.school no no yes
## 5112 29 admin. married high.school no no no
## 5114 49 blue-collar married basic.4y unknown yes no
## 5115 31 admin. single university.degree no no no
## 5116 49 blue-collar married basic.4y unknown yes no
## 5117 41 blue-collar married basic.4y unknown no no
## 5118 47 management married basic.4y unknown no no
## 5119 47 admin. single university.degree no yes yes
## 5120 38 admin. married university.degree no no no
## 5122 46 services married high.school no yes no
## 5123 33 blue-collar married basic.6y no no no
## 5124 27 blue-collar single basic.9y no yes no
## 5125 53 technician married professional.course unknown yes no
## 5126 30 management divorced university.degree no no yes
## 5127 47 blue-collar divorced basic.9y no no yes
## 5128 55 blue-collar married professional.course unknown yes no
## 5129 60 retired divorced basic.4y unknown no yes
## 5131 42 blue-collar divorced basic.4y no no yes
## 5132 48 technician married high.school no no no
## 5133 48 technician married high.school no no no
## 5134 42 blue-collar divorced basic.4y no no no
## 5135 46 admin. single university.degree no yes no
## 5136 36 services single basic.9y no no no
## 5138 50 blue-collar married high.school unknown yes no
## 5139 33 admin. married unknown no yes no
## 5141 42 technician married university.degree no yes no
## 5142 24 services single basic.9y no yes yes
## 5143 55 technician married university.degree no no no
## 5144 38 blue-collar married basic.9y no yes no
## 5148 51 admin. divorced unknown no unknown unknown
## 5149 48 technician married high.school no no no
## 5150 46 admin. married university.degree no yes no
## 5151 47 management divorced university.degree no no no
## 5153 39 admin. married high.school no yes yes
## 5154 47 management divorced university.degree no yes no
## 5155 37 blue-collar single basic.9y no yes no
## 5156 47 entrepreneur divorced university.degree no yes no
## 5157 29 services single university.degree no yes yes
## 5159 45 blue-collar married basic.4y unknown no no
## 5160 47 blue-collar divorced basic.4y no no no
## 5161 38 entrepreneur divorced university.degree unknown yes no
## 5162 25 housemaid married basic.9y no yes no
## 5163 47 blue-collar married basic.6y no yes no
## 5164 55 housemaid married professional.course no yes yes
## 5165 56 retired married high.school unknown no no
## 5166 44 blue-collar married basic.4y no yes no
## 5167 36 technician single university.degree unknown no no
## 5168 40 blue-collar married basic.9y no yes no
## 5169 46 blue-collar married unknown unknown no no
## 5170 48 blue-collar divorced basic.9y no yes yes
## 5171 40 self-employed married high.school unknown yes no
## 5173 58 services divorced professional.course no yes no
## 5174 50 technician married professional.course no yes no
## 5175 55 retired married high.school no no no
## 5176 55 blue-collar married basic.4y unknown yes no
## 5177 51 management married university.degree no yes no
## 5178 45 admin. married university.degree no no no
## 5179 39 technician married professional.course no no yes
## 5180 47 blue-collar divorced basic.4y no no yes
## 5181 55 admin. married high.school no yes no
## 5183 48 blue-collar married basic.6y no unknown unknown
## 5184 41 technician married university.degree no no no
## 5186 30 services single high.school unknown no no
## 5187 32 entrepreneur married high.school unknown yes no
## 5188 56 unemployed divorced university.degree unknown yes no
## 5189 53 technician married professional.course no no no
## 5190 39 admin. married university.degree no no no
## 5191 48 technician single high.school no yes yes
## 5193 36 blue-collar married basic.9y no yes yes
## 5194 35 technician married professional.course no yes yes
## 5198 34 admin. divorced basic.6y no no no
## 5201 44 self-employed married university.degree unknown unknown unknown
## 5202 48 services single high.school unknown yes yes
## 5203 50 blue-collar married basic.6y unknown no no
## 5204 44 housemaid single unknown unknown yes yes
## 5205 33 unemployed married basic.9y no yes yes
## 5207 45 services single basic.9y unknown yes no
## 5210 55 technician single university.degree unknown yes no
## 5211 32 services single professional.course no yes yes
## 5212 42 blue-collar married basic.9y unknown no no
## 5213 42 admin. divorced university.degree no no yes
## 5214 57 blue-collar divorced unknown unknown yes no
## 5215 57 admin. divorced high.school no no no
## 5217 42 admin. divorced university.degree no yes no
## 5218 38 blue-collar married basic.9y no yes no
## 5219 31 technician single university.degree no yes no
## 5220 44 admin. married high.school no no no
## 5221 28 blue-collar single basic.9y unknown no yes
## 5222 29 admin. single university.degree no no no
## 5223 56 retired married basic.4y no yes no
## 5224 47 management married university.degree no yes yes
## 5225 26 student single basic.9y unknown yes yes
## 5226 39 management married university.degree no yes yes
## 5227 51 services married unknown unknown no no
## 5228 54 technician single university.degree unknown no no
## 5229 42 unemployed married basic.9y no yes yes
## 5230 57 blue-collar married basic.4y unknown yes yes
## 5231 27 blue-collar married basic.9y no yes yes
## 5232 27 technician single professional.course no yes no
## 5234 47 blue-collar divorced basic.9y unknown yes no
## 5235 43 admin. married professional.course no no no
## 5236 36 blue-collar married basic.6y unknown no no
## 5237 47 management divorced basic.6y unknown yes yes
## 5238 38 blue-collar married basic.9y no no no
## 5239 38 entrepreneur married basic.9y no no no
## 5240 33 blue-collar married basic.9y no yes no
## 5241 43 entrepreneur married basic.9y unknown yes no
## 5243 41 technician single professional.course no no no
## 5248 33 services single high.school no yes no
## 5249 42 admin. divorced university.degree no no no
## 5250 23 services married basic.9y no yes no
## 5251 28 services married high.school no yes no
## 5252 39 blue-collar married basic.9y unknown no no
## 5253 36 admin. married high.school unknown yes no
## 5254 27 technician married university.degree no no no
## 5256 49 housemaid married basic.4y no no no
## 5257 55 blue-collar married basic.4y no no yes
## 5259 38 services married high.school no no yes
## 5260 29 services single university.degree no no no
## 5261 28 blue-collar single basic.6y unknown unknown unknown
## 5263 51 blue-collar single basic.4y unknown no no
## 5264 58 admin. married university.degree no no yes
## 5265 45 technician married university.degree no yes no
## 5266 27 blue-collar single basic.9y unknown yes no
## 5267 35 admin. married high.school unknown no no
## 5268 37 blue-collar single basic.9y unknown yes no
## 5269 43 blue-collar married basic.6y unknown yes no
## 5270 40 blue-collar married basic.9y no yes no
## 5271 37 admin. married university.degree no yes yes
## 5272 31 entrepreneur married basic.6y no yes no
## 5273 29 admin. married high.school no no no
## 5275 30 admin. married university.degree no no no
## 5276 35 admin. single high.school no yes no
## 5277 43 admin. divorced high.school no no no
## 5278 39 admin. married university.degree unknown no no
## 5279 57 management married university.degree no yes no
## 5280 53 retired married basic.9y no yes no
## 5281 37 management married university.degree no yes no
## 5282 41 technician married professional.course no no no
## 5283 29 technician married university.degree no yes no
## 5286 51 technician married basic.6y unknown yes yes
## 5287 38 admin. single university.degree no yes no
## 5288 58 management married university.degree unknown no no
## 5289 36 blue-collar married basic.6y no no no
## 5290 48 technician divorced professional.course no yes yes
## 5291 39 blue-collar married basic.6y no yes no
## 5292 35 blue-collar married basic.6y unknown no no
## 5294 32 blue-collar married basic.4y unknown yes no
## 5297 32 services divorced high.school no yes no
## 5298 38 admin. married university.degree no yes no
## 5300 27 services single high.school no no no
## 5301 57 blue-collar married basic.9y no yes no
## 5302 37 housemaid married high.school no no no
## 5303 54 blue-collar single basic.4y unknown unknown unknown
## 5304 43 blue-collar married basic.4y unknown yes no
## 5305 44 retired married basic.9y no yes no
## 5306 37 admin. single high.school no yes no
## 5307 37 blue-collar married basic.6y unknown no yes
## 5308 50 admin. divorced university.degree no no no
## 5311 32 blue-collar married basic.6y unknown yes no
## 5312 31 services single professional.course no no no
## 5313 40 management married university.degree no no no
## 5314 43 blue-collar married basic.4y no yes no
## 5316 41 management married university.degree no no no
## 5317 32 blue-collar married basic.6y no yes no
## 5318 49 services married high.school unknown yes yes
## 5319 31 blue-collar married basic.6y no yes no
## 5320 46 admin. married high.school no yes no
## 5321 38 technician married university.degree unknown no no
## 5324 47 services married professional.course no yes no
## 5326 37 blue-collar divorced basic.4y unknown yes yes
## 5331 49 admin. single university.degree no no no
## 5332 39 blue-collar married basic.9y no yes no
## 5333 35 blue-collar married basic.9y no yes no
## 5334 28 blue-collar married basic.9y no no yes
## 5335 40 blue-collar married basic.6y unknown yes yes
## 5336 40 blue-collar married basic.9y unknown yes no
## 5337 53 services single high.school unknown no yes
## 5338 49 blue-collar married basic.9y unknown yes no
## 5339 55 technician married professional.course no yes yes
## 5340 36 blue-collar single high.school no yes no
## 5341 45 blue-collar married basic.6y unknown no no
## 5342 36 blue-collar married basic.6y unknown yes no
## 5343 46 admin. married basic.9y unknown no no
## 5344 49 blue-collar married basic.4y unknown yes no
## 5345 48 housemaid divorced basic.4y unknown no yes
## 5346 49 blue-collar divorced basic.4y no yes no
## 5347 49 technician married unknown no yes no
## 5348 32 admin. single university.degree no no no
## 5351 33 technician married professional.course no yes no
## 5352 37 admin. single high.school no yes yes
## 5354 38 entrepreneur married university.degree no yes no
## 5355 42 blue-collar married basic.6y unknown no yes
## 5359 51 blue-collar married basic.9y unknown no no
## 5360 35 housemaid married high.school no yes no
## 5363 51 blue-collar married basic.9y no yes no
## 5364 33 services single high.school no no no
## 5365 37 admin. single high.school no no no
## 5366 34 blue-collar married basic.9y no yes no
## 5367 44 admin. married university.degree unknown yes no
## 5369 40 admin. married professional.course unknown yes no
## 5370 40 management divorced university.degree unknown yes no
## 5371 32 technician single professional.course no no no
## 5372 58 blue-collar married basic.4y no yes no
## 5373 41 services divorced unknown no no no
## 5374 35 student single high.school no yes no
## 5375 47 admin. married university.degree no yes no
## 5377 33 self-employed single university.degree no no no
## 5378 34 management married university.degree no yes no
## 5381 38 admin. single university.degree no yes no
## 5382 40 entrepreneur married high.school no no yes
## 5383 26 services single high.school no no no
## 5384 42 self-employed married university.degree no no no
## 5385 60 retired married high.school unknown yes no
## 5386 35 student single university.degree unknown no yes
## 5387 59 technician married professional.course no yes no
## 5388 43 management married high.school no no no
## 5389 33 admin. married high.school no no no
## 5390 47 management divorced university.degree no yes no
## 5391 30 blue-collar single high.school no no no
## 5392 35 blue-collar married basic.4y no yes no
## 5393 31 admin. single university.degree no yes no
## 5395 33 management married university.degree no yes no
## 5396 60 retired married basic.4y unknown yes no
## 5397 46 entrepreneur married unknown unknown yes no
## 5398 31 blue-collar divorced basic.9y no yes no
## 5399 56 management married unknown no yes no
## 5400 28 services single high.school no yes yes
## 5401 29 blue-collar single unknown no no no
## 5403 35 entrepreneur married high.school no no no
## 5404 54 services single high.school unknown no no
## 5405 43 blue-collar married professional.course no no yes
## 5406 46 blue-collar married basic.9y unknown no no
## 5408 28 admin. married university.degree no no no
## 5409 30 housemaid married high.school unknown yes no
## 5410 36 services married high.school no no no
## 5411 50 blue-collar married basic.4y no yes no
## 5412 37 technician married university.degree unknown no no
## 5413 28 housemaid married basic.6y unknown no no
## 5414 52 blue-collar married basic.4y no no no
## 5415 37 blue-collar single unknown unknown no no
## 5416 46 blue-collar married basic.4y no yes no
## 5417 27 services married high.school unknown no yes
## 5418 44 blue-collar married basic.9y unknown no no
## 5420 34 management married unknown no yes no
## 5421 56 retired divorced basic.4y no yes yes
## 5423 36 blue-collar married basic.6y no no no
## 5424 39 housemaid married high.school no yes no
## 5425 37 blue-collar married basic.6y no no yes
## 5426 48 retired divorced professional.course no no no
## 5427 55 admin. married high.school no no no
## 5429 33 admin. married university.degree no no no
## 5430 32 blue-collar married basic.9y no no no
## 5431 35 admin. married high.school unknown yes no
## 5432 39 technician married professional.course no yes no
## 5434 36 services married high.school no yes no
## 5435 51 blue-collar married basic.9y unknown no no
## 5436 39 technician single professional.course no no no
## 5437 42 blue-collar married unknown no no yes
## 5438 49 services divorced high.school unknown no yes
## 5439 32 management divorced basic.4y unknown yes no
## 5440 43 technician married professional.course no no yes
## 5441 31 admin. divorced high.school no no yes
## 5442 25 blue-collar married basic.9y no yes no
## 5443 39 services married high.school no yes no
## 5444 49 technician married professional.course no no no
## 5445 53 blue-collar divorced basic.4y no yes no
## 5446 26 admin. single high.school no yes yes
## 5447 41 technician married professional.course no no yes
## 5448 39 blue-collar divorced basic.9y no no no
## 5449 33 admin. divorced university.degree no no no
## 5450 45 blue-collar married basic.9y unknown yes no
## 5451 56 admin. married university.degree unknown no no
## 5452 39 housemaid married basic.4y no no yes
## 5453 30 blue-collar single university.degree no no no
## 5454 28 unknown single basic.9y unknown yes no
## 5455 50 admin. married high.school unknown yes no
## 5456 44 management married university.degree no no yes
## 5457 55 blue-collar married basic.4y unknown yes no
## 5458 31 services single basic.6y no yes no
## 5460 44 services married high.school no unknown unknown
## 5461 27 technician married university.degree no no yes
## 5462 56 services married high.school unknown no yes
## 5463 35 admin. married high.school no yes yes
## 5465 47 management married university.degree no yes yes
## 5466 30 admin. divorced university.degree no no yes
## 5467 37 services married high.school no no no
## 5468 36 services single basic.6y unknown yes no
## 5469 33 services single basic.9y no no yes
## 5470 38 technician married professional.course no yes yes
## 5472 46 admin. single university.degree no no yes
## 5474 57 technician married professional.course no no no
## 5475 34 blue-collar married basic.9y no no no
## 5476 33 self-employed married basic.9y no no no
## 5477 49 management married university.degree unknown yes no
## 5479 32 management married university.degree no no no
## 5482 37 admin. single high.school unknown yes no
## 5484 42 housemaid married professional.course no yes no
## 5485 35 blue-collar married unknown no yes no
## 5487 59 admin. married university.degree unknown no yes
## 5488 30 self-employed married professional.course no no no
## 5490 35 blue-collar married high.school no yes no
## 5491 40 technician married professional.course no yes no
## 5492 42 admin. married university.degree no no no
## 5493 51 blue-collar married high.school no yes no
## 5494 49 admin. single high.school no no no
## 5495 48 admin. single university.degree no no no
## 5496 46 blue-collar married unknown no yes no
## 5497 29 services single high.school no no no
## 5498 44 technician married university.degree no no no
## 5499 41 self-employed married high.school no no no
## 5501 42 technician single high.school no no no
## 5502 38 blue-collar married unknown no yes no
## 5503 41 blue-collar divorced basic.4y unknown yes no
## 5505 57 retired single professional.course no yes no
## 5506 47 blue-collar married basic.4y unknown yes no
## 5507 47 admin. divorced university.degree no no no
## 5508 42 admin. married basic.4y no no no
## 5509 52 blue-collar married basic.9y unknown yes no
## 5510 33 admin. married basic.9y no no no
## 5511 35 admin. married university.degree no yes no
## 5514 39 entrepreneur married university.degree no yes no
## 5515 46 self-employed married basic.9y unknown yes yes
## 5517 48 self-employed married basic.9y unknown no no
## 5518 52 services divorced high.school no no no
## 5520 44 admin. single university.degree no yes no
## 5521 36 services single basic.9y no yes yes
## 5523 30 blue-collar married high.school no no no
## 5524 28 blue-collar married basic.6y no yes no
## 5525 41 technician married basic.9y no no no
## 5527 32 services single basic.9y no yes no
## 5528 42 entrepreneur married basic.6y no no no
## 5529 41 blue-collar married basic.9y unknown no no
## 5531 44 unemployed married university.degree unknown no yes
## 5532 32 blue-collar divorced basic.9y unknown yes no
## 5533 55 admin. married high.school no yes yes
## 5534 33 services married professional.course no no no
## 5535 42 unemployed married high.school unknown yes yes
## 5537 32 entrepreneur married high.school unknown yes no
## 5538 31 admin. married university.degree unknown yes no
## 5539 48 technician married professional.course no yes no
## 5540 41 blue-collar married basic.9y unknown yes no
## 5541 50 entrepreneur divorced university.degree no yes no
## 5542 42 services married unknown no no no
## 5543 42 admin. divorced university.degree no yes no
## 5546 34 blue-collar married basic.4y no yes no
## 5547 27 unemployed married high.school no yes yes
## 5548 44 blue-collar married basic.4y no no no
## 5549 44 services married high.school no yes yes
## 5550 56 technician married professional.course unknown no yes
## 5551 33 blue-collar single basic.9y unknown no yes
## 5552 38 technician married professional.course unknown yes no
## 5553 28 admin. married high.school no unknown unknown
## 5554 39 entrepreneur married basic.6y unknown yes yes
## 5555 52 admin. married basic.6y no no no
## 5559 43 management married professional.course no no no
## 5560 41 admin. single high.school no no no
## 5561 41 admin. single high.school no no yes
## 5562 41 admin. single high.school no no no
## 5564 44 blue-collar married basic.9y unknown no no
## 5565 39 admin. married university.degree no yes no
## 5569 45 housemaid married professional.course unknown no no
## 5570 47 admin. divorced university.degree no yes no
## 5571 44 admin. married high.school no yes yes
## 5572 44 management divorced basic.9y unknown no no
## 5573 42 housemaid married basic.4y no yes no
## 5574 44 technician married professional.course no no no
## 5577 32 admin. single university.degree unknown yes no
## 5578 36 admin. married university.degree no no no
## 5579 42 blue-collar married basic.6y no no no
## 5580 49 technician married professional.course no yes no
## 5582 45 blue-collar married basic.4y no no no
## 5583 54 housemaid divorced unknown no no no
## 5584 46 management married university.degree no no no
## 5585 39 blue-collar single unknown unknown no no
## 5587 48 technician single unknown no unknown unknown
## 5588 35 technician single high.school no no no
## 5589 41 blue-collar married basic.9y unknown no no
## 5590 53 admin. married basic.9y unknown no no
## 5591 37 services married high.school no no no
## 5592 49 admin. married university.degree no yes no
## 5593 37 services married high.school no yes no
## 5594 40 services married high.school no yes no
## 5596 41 unknown single basic.9y no no yes
## 5597 38 technician married basic.9y no yes no
## 5598 43 admin. divorced high.school no no no
## 5599 51 blue-collar married basic.6y unknown unknown unknown
## 5600 37 admin. married high.school unknown no no
## 5601 33 admin. married university.degree no no no
## 5603 30 admin. single university.degree no yes no
## 5604 51 blue-collar married basic.6y unknown yes no
## 5605 24 admin. married high.school no no yes
## 5606 26 technician single high.school no yes no
## 5608 39 blue-collar married basic.9y unknown no no
## 5609 37 technician married university.degree unknown yes no
## 5610 32 services married basic.9y no yes no
## 5615 45 admin. married basic.9y no no no
## 5617 46 admin. divorced university.degree no yes no
## 5618 40 admin. married university.degree unknown no yes
## 5619 40 admin. married university.degree unknown yes no
## 5620 58 admin. single university.degree no no no
## 5621 50 blue-collar married basic.4y unknown yes no
## 5622 44 blue-collar single basic.9y unknown no no
## 5623 40 admin. married university.degree unknown no no
## 5624 43 services married high.school no no no
## 5625 28 services single high.school no no yes
## 5627 30 services married high.school unknown yes no
## 5628 36 entrepreneur married university.degree unknown yes yes
## 5629 29 technician married university.degree no yes no
## 5630 44 services divorced high.school no no no
## 5631 30 admin. married high.school no no no
## 5632 26 services divorced basic.6y no no yes
## 5633 43 blue-collar single basic.4y unknown yes no
## 5634 29 technician married unknown no yes no
## 5637 44 management single university.degree unknown yes no
## 5638 39 technician single high.school no yes no
## 5639 29 student single high.school no no yes
## 5640 32 admin. single professional.course no yes no
## 5642 36 blue-collar married basic.9y unknown yes no
## 5645 57 blue-collar married basic.4y unknown no no
## 5646 36 blue-collar single high.school unknown no no
## 5647 44 blue-collar married high.school no yes no
## 5648 36 housemaid married basic.4y no no no
## 5649 24 services married professional.course no yes no
## 5650 48 technician married basic.4y unknown yes yes
## 5651 44 technician single unknown unknown yes no
## 5652 35 student single high.school no yes yes
## 5653 41 services married high.school unknown yes no
## 5655 47 unknown married unknown unknown yes no
## 5657 30 technician single unknown no yes no
## 5659 53 services married high.school unknown yes no
## 5660 26 admin. single high.school no yes no
## 5661 56 retired married high.school no yes no
## 5663 56 retired married high.school unknown yes yes
## 5664 38 technician married professional.course unknown no no
## 5665 56 blue-collar married basic.4y unknown no no
## 5666 35 self-employed married university.degree no no no
## 5667 34 services married high.school no no no
## 5668 35 retired single basic.9y unknown yes yes
## 5669 47 blue-collar married basic.4y unknown yes no
## 5670 42 blue-collar married basic.4y unknown yes yes
## 5671 54 retired married basic.9y no no yes
## 5672 43 management married professional.course no yes no
## 5673 28 admin. single university.degree no no no
## 5674 31 blue-collar married basic.6y unknown yes yes
## 5675 44 blue-collar single high.school no no yes
## 5676 59 retired married unknown unknown no no
## 5677 58 management married university.degree no no yes
## 5679 37 admin. married basic.6y no no no
## 5681 36 technician married professional.course no no no
## 5682 31 admin. single basic.9y no yes no
## 5683 30 blue-collar married basic.9y no yes no
## 5685 41 unknown married basic.6y unknown no no
## 5686 41 services married basic.6y unknown yes no
## 5688 26 admin. single high.school no yes no
## 5689 38 admin. single university.degree no no no
## 5691 28 blue-collar single basic.9y no yes no
## 5692 29 technician married university.degree no no no
## 5693 24 blue-collar single high.school no unknown unknown
## 5694 51 services single high.school unknown no no
## 5695 35 admin. married university.degree no yes yes
## 5696 50 entrepreneur married basic.9y no yes no
## 5697 33 technician divorced professional.course no yes no
## 5698 57 management divorced university.degree no no no
## 5699 28 blue-collar single basic.9y no no no
## 5700 58 admin. single university.degree no no no
## 5701 50 blue-collar single basic.4y no yes no
## 5704 48 admin. divorced university.degree no yes no
## 5705 43 entrepreneur married high.school no no yes
## 5706 39 admin. single university.degree no no no
## 5707 39 admin. married high.school no no no
## 5708 43 entrepreneur married high.school no yes yes
## 5712 33 services single basic.6y unknown no no
## 5713 31 blue-collar married basic.9y no yes yes
## 5714 43 blue-collar married basic.4y no yes no
## 5716 45 blue-collar married basic.9y no no no
## 5717 30 admin. married high.school no no no
## 5718 41 unemployed married university.degree unknown no no
## 5719 30 admin. married high.school no yes no
## 5721 43 entrepreneur divorced high.school unknown yes no
## 5722 49 technician married university.degree no no no
## 5723 38 technician single high.school no yes no
## 5724 58 admin. married high.school no yes no
## 5727 31 management single high.school no no no
## 5728 39 management married university.degree no yes no
## 5729 30 blue-collar married basic.6y no yes no
## 5730 58 retired married basic.6y unknown no no
## 5732 41 unemployed married basic.9y unknown yes yes
## 5733 30 blue-collar single basic.9y unknown yes yes
## 5734 57 admin. married university.degree no no yes
## 5735 34 blue-collar married basic.6y no no yes
## 5736 30 technician single university.degree no no no
## 5737 40 technician married professional.course no yes no
## 5738 37 housemaid married high.school no yes no
## 5739 41 admin. single high.school unknown yes no
## 5740 40 blue-collar married high.school no no yes
## 5742 42 blue-collar married unknown no yes no
## 5743 44 management married university.degree unknown yes no
## 5745 31 management married university.degree no no no
## 5746 29 admin. single high.school no no yes
## 5748 33 technician married professional.course no no no
## 5749 37 blue-collar single basic.9y unknown yes no
## 5750 27 services single basic.9y no no no
## 5751 35 admin. single high.school no yes no
## 5752 31 admin. single university.degree no no yes
## 5753 37 admin. married university.degree no yes no
## 5755 37 admin. single high.school no yes no
## 5757 40 admin. married high.school no no no
## 5758 29 blue-collar married basic.4y no yes no
## 5759 47 services married high.school unknown yes no
## 5762 35 blue-collar married basic.4y no no no
## 5763 27 blue-collar married basic.9y unknown yes yes
## 5764 35 management married university.degree no no no
## 5765 35 admin. married high.school no no yes
## 5766 38 housemaid married basic.9y no yes no
## 5768 35 blue-collar married professional.course no no no
## 5769 41 self-employed married university.degree no yes no
## 5770 51 blue-collar married unknown unknown no yes
## 5771 47 admin. married basic.4y no no no
## 5773 35 blue-collar married basic.9y no no no
## 5774 34 admin. single high.school no no no
## 5775 25 self-employed single university.degree no no no
## 5776 33 technician single university.degree no no yes
## 5777 59 retired married professional.course unknown yes yes
## 5778 51 retired married basic.9y no unknown unknown
## 5779 27 blue-collar married basic.9y unknown no no
## 5780 33 blue-collar married high.school no no no
## 5781 39 management married university.degree no no no
## 5782 38 blue-collar married basic.6y unknown no no
## 5785 25 blue-collar married high.school unknown yes yes
## 5786 50 blue-collar married basic.6y unknown no no
## 5787 36 blue-collar married basic.6y unknown no no
## 5789 52 unemployed married unknown no no no
## 5791 36 self-employed single professional.course no yes no
## 5792 33 services single basic.9y no no no
## 5793 27 blue-collar single basic.6y no no no
## 5794 41 admin. single high.school no yes no
## 5795 36 admin. married high.school no no no
## 5797 34 management married professional.course unknown no no
## 5798 55 services married high.school unknown yes yes
## 5799 30 blue-collar married basic.9y no no yes
## 5801 58 management married basic.6y no yes no
## 5804 31 unemployed married professional.course no yes yes
## 5805 30 technician single professional.course no yes no
## 5806 31 admin. single high.school no yes no
## 5807 30 admin. married university.degree no no no
## 5808 42 services married high.school no yes no
## 5810 31 services married high.school no no no
## 5811 46 self-employed married basic.9y unknown no yes
## 5813 43 services married high.school no no no
## 5814 58 management married basic.6y no yes no
## 5817 31 technician single university.degree no yes no
## 5818 28 services married high.school no yes yes
## 5819 38 self-employed single university.degree no no no
## 5820 35 admin. single high.school no yes no
## 5821 26 blue-collar married professional.course unknown yes no
## 5822 30 blue-collar single basic.9y no yes no
## 5823 52 technician married professional.course no no no
## 5824 47 technician married basic.9y no no no
## 5825 51 entrepreneur single unknown no yes no
## 5826 36 blue-collar married basic.9y no no no
## 5828 31 admin. single university.degree no yes no
## 5829 36 blue-collar married high.school no no no
## 5830 34 admin. married university.degree no no no
## 5831 32 blue-collar married basic.9y no no no
## 5832 42 blue-collar married basic.6y unknown yes no
## 5833 32 technician single university.degree no no no
## 5835 37 self-employed married basic.9y unknown no no
## 5836 45 blue-collar married basic.9y unknown yes no
## 5837 28 admin. single university.degree no yes no
## 5838 37 technician married professional.course unknown yes no
## 5839 43 entrepreneur married basic.9y unknown no no
## 5840 54 admin. divorced university.degree no yes yes
## 5841 59 admin. married professional.course no no no
## 5842 44 housemaid married basic.9y unknown yes no
## 5843 33 services single high.school no no no
## 5845 48 admin. married university.degree no no no
## 5846 50 technician divorced professional.course no no no
## 5847 29 self-employed married high.school no no no
## 5848 39 admin. married university.degree no no no
## 5849 36 admin. married university.degree no yes no
## 5850 52 management married unknown unknown yes no
## 5852 48 blue-collar married basic.4y unknown yes yes
## 5854 35 blue-collar married high.school no yes yes
## 5855 38 admin. married university.degree no no no
## 5857 34 blue-collar married basic.6y no no no
## 5858 45 blue-collar married basic.9y no yes no
## 5859 30 admin. married university.degree unknown yes no
## 5863 32 management married high.school no no no
## 5864 24 admin. married basic.9y no yes no
## 5865 55 management married university.degree no yes yes
## 5866 28 blue-collar single high.school unknown yes no
## 5867 37 management divorced high.school no yes no
## 5871 44 blue-collar single professional.course unknown no no
## 5872 39 blue-collar married basic.9y no yes yes
## 5874 36 blue-collar married high.school unknown yes no
## 5875 34 admin. married university.degree no yes yes
## 5876 32 blue-collar married basic.9y no no no
## 5877 35 technician married professional.course no no no
## 5879 44 admin. married high.school no yes no
## 5881 37 services single high.school no no no
## 5883 39 entrepreneur married basic.6y unknown no no
## 5884 30 services single high.school no no no
## 5885 31 admin. single university.degree no yes yes
## 5886 45 blue-collar married basic.9y unknown no no
## 5887 37 blue-collar divorced basic.9y unknown no no
## 5888 29 services divorced high.school no no yes
## 5890 52 blue-collar married basic.4y no yes no
## 5891 53 housemaid married basic.4y unknown no no
## 5892 31 technician single professional.course unknown yes no
## 5893 32 technician single professional.course no no no
## 5894 47 blue-collar married basic.9y no yes no
## 5895 39 management married university.degree no no no
## 5897 30 blue-collar married basic.6y no no no
## 5898 32 blue-collar married basic.4y no no no
## 5899 43 unknown married high.school unknown yes yes
## 5901 59 unknown married unknown unknown no no
## 5902 46 entrepreneur married basic.9y no no no
## 5903 54 retired divorced high.school no yes no
## 5904 35 blue-collar married basic.9y no yes no
## 5905 33 management single university.degree no no no
## 5906 37 services divorced high.school no yes yes
## 5907 41 blue-collar single high.school no yes no
## 5908 44 technician married professional.course no yes no
## 5909 33 technician married professional.course no yes no
## 5910 49 admin. divorced basic.9y no yes yes
## 5913 38 technician married professional.course no yes no
## 5914 37 blue-collar married high.school no yes yes
## 5915 39 admin. married professional.course no yes no
## 5916 43 blue-collar married basic.4y no yes no
## 5918 55 housemaid divorced unknown unknown yes no
## 5920 40 blue-collar married high.school no no yes
## 5921 41 services married high.school no yes no
## 5925 50 blue-collar married basic.6y unknown yes yes
## 5926 41 blue-collar married basic.4y no no no
## 5927 52 technician divorced university.degree no no no
## 5928 31 blue-collar married high.school unknown yes no
## 5929 34 technician single professional.course no yes no
## 5930 56 entrepreneur married university.degree no yes no
## 5931 51 admin. single basic.6y no no no
## 5933 39 blue-collar married basic.9y no yes no
## 5934 36 entrepreneur married university.degree unknown no no
## 5935 28 admin. single university.degree no no no
## 5936 32 management married high.school no yes yes
## 5937 38 blue-collar single high.school no no no
## 5938 46 blue-collar married basic.9y no yes no
## 5939 42 management married unknown unknown no no
## 5940 37 blue-collar married professional.course no yes no
## 5941 31 admin. married high.school unknown no no
## 5942 30 services married high.school no yes no
## 5943 41 management married unknown no no no
## 5944 34 blue-collar married basic.4y no yes no
## 5945 46 blue-collar divorced basic.6y no no no
## 5947 24 blue-collar married basic.9y no no no
## 5950 36 admin. married high.school no yes no
## 5953 39 admin. single university.degree unknown no no
## 5954 36 technician single high.school no yes yes
## 5955 38 housemaid married basic.9y no no no
## 5960 37 blue-collar married basic.6y no yes no
## 5963 35 admin. married high.school unknown yes yes
## 5964 41 services married university.degree no yes no
## 5965 52 unknown married basic.4y no no no
## 5966 31 technician married professional.course no no no
## 5969 35 blue-collar married basic.6y no no no
## 5970 39 blue-collar married basic.9y no no no
## 5971 40 technician married basic.9y no yes no
## 5972 34 admin. single high.school no yes no
## 5973 27 student single university.degree no yes no
## 5974 33 blue-collar married basic.9y no no yes
## 5975 39 entrepreneur married basic.9y no no no
## 5976 39 housemaid married basic.4y no yes no
## 5977 43 entrepreneur married basic.4y no no no
## 5978 26 technician married professional.course no no no
## 5979 42 services married professional.course no yes no
## 5982 50 blue-collar married basic.4y no yes no
## 5983 46 self-employed single high.school no yes no
## 5984 57 retired married high.school unknown no no
## 5985 40 services single high.school no yes no
## 5986 28 services single high.school no yes no
## 5988 51 unemployed married professional.course no no no
## 5989 32 technician single high.school no yes no
## 5990 28 blue-collar married basic.6y unknown no no
## 5991 38 admin. single university.degree unknown yes no
## 5992 34 blue-collar single basic.9y no no no
## 5993 34 technician married university.degree no no no
## 5994 31 services single basic.9y no no no
## 5995 35 services single high.school unknown no yes
## 5996 41 blue-collar divorced basic.9y unknown no no
## 5997 29 services married high.school no yes no
## 5998 56 housemaid divorced basic.4y unknown no no
## 5999 29 technician single university.degree no yes no
## 6000 27 admin. single university.degree no yes no
## 6001 42 blue-collar married basic.6y unknown no no
## contact month day_of_week duration campaign pdays previous poutcome
## 1 telephone may mon 261 1 999 0 nonexistent
## 2 telephone may mon 149 1 999 0 nonexistent
## 3 telephone may mon 226 1 999 0 nonexistent
## 4 telephone may mon 151 1 999 0 nonexistent
## 5 telephone may mon 307 1 999 0 nonexistent
## 6 telephone may mon 198 1 999 0 nonexistent
## 7 telephone may mon 139 1 999 0 nonexistent
## 8 telephone may mon 217 1 999 0 nonexistent
## 9 telephone may mon 380 1 999 0 nonexistent
## 10 telephone may mon 50 1 999 0 nonexistent
## 11 telephone may mon 55 1 999 0 nonexistent
## 12 telephone may mon 222 1 999 0 nonexistent
## 13 telephone may mon 137 1 999 0 nonexistent
## 16 telephone may mon 174 1 999 0 nonexistent
## 17 telephone may mon 312 1 999 0 nonexistent
## 18 telephone may mon 440 1 999 0 nonexistent
## 19 telephone may mon 353 1 999 0 nonexistent
## 20 telephone may mon 195 1 999 0 nonexistent
## 21 telephone may mon 38 1 999 0 nonexistent
## 22 telephone may mon 262 1 999 0 nonexistent
## 24 telephone may mon 181 1 999 0 nonexistent
## 26 telephone may mon 99 1 999 0 nonexistent
## 27 telephone may mon 93 1 999 0 nonexistent
## 28 telephone may mon 233 1 999 0 nonexistent
## 29 telephone may mon 255 2 999 0 nonexistent
## 30 telephone may mon 362 1 999 0 nonexistent
## 31 telephone may mon 348 1 999 0 nonexistent
## 32 telephone may mon 386 1 999 0 nonexistent
## 33 telephone may mon 73 1 999 0 nonexistent
## 34 telephone may mon 230 1 999 0 nonexistent
## 35 telephone may mon 208 1 999 0 nonexistent
## 36 telephone may mon 336 1 999 0 nonexistent
## 37 telephone may mon 365 1 999 0 nonexistent
## 38 telephone may mon 1666 1 999 0 nonexistent
## 39 telephone may mon 577 1 999 0 nonexistent
## 40 telephone may mon 137 1 999 0 nonexistent
## 41 telephone may mon 366 1 999 0 nonexistent
## 42 telephone may mon 314 1 999 0 nonexistent
## 43 telephone may mon 160 1 999 0 nonexistent
## 45 telephone may mon 188 1 999 0 nonexistent
## 46 telephone may mon 22 1 999 0 nonexistent
## 47 telephone may mon 616 1 999 0 nonexistent
## 48 telephone may mon 178 1 999 0 nonexistent
## 49 telephone may mon 355 1 999 0 nonexistent
## 50 telephone may mon 225 2 999 0 nonexistent
## 51 telephone may mon 160 1 999 0 nonexistent
## 52 telephone may mon 266 1 999 0 nonexistent
## 53 telephone may mon 253 1 999 0 nonexistent
## 54 telephone may mon 179 1 999 0 nonexistent
## 55 telephone may mon 269 2 999 0 nonexistent
## 56 telephone may mon 135 1 999 0 nonexistent
## 57 telephone may mon 161 1 999 0 nonexistent
## 58 telephone may mon 787 1 999 0 nonexistent
## 59 telephone may mon 145 1 999 0 nonexistent
## 60 telephone may mon 174 1 999 0 nonexistent
## 63 telephone may mon 164 1 999 0 nonexistent
## 64 telephone may mon 366 1 999 0 nonexistent
## 65 telephone may mon 357 1 999 0 nonexistent
## 66 telephone may mon 232 1 999 0 nonexistent
## 67 telephone may mon 91 1 999 0 nonexistent
## 69 telephone may mon 158 2 999 0 nonexistent
## 70 telephone may mon 177 1 999 0 nonexistent
## 71 telephone may mon 200 1 999 0 nonexistent
## 73 telephone may mon 176 1 999 0 nonexistent
## 74 telephone may mon 211 1 999 0 nonexistent
## 75 telephone may mon 214 1 999 0 nonexistent
## 77 telephone may mon 349 1 999 0 nonexistent
## 78 telephone may mon 337 2 999 0 nonexistent
## 79 telephone may mon 272 1 999 0 nonexistent
## 80 telephone may mon 208 1 999 0 nonexistent
## 82 telephone may mon 212 1 999 0 nonexistent
## 86 telephone may mon 246 1 999 0 nonexistent
## 87 telephone may mon 529 2 999 0 nonexistent
## 88 telephone may mon 192 1 999 0 nonexistent
## 89 telephone may mon 1467 1 999 0 nonexistent
## 90 telephone may mon 188 2 999 0 nonexistent
## 91 telephone may mon 180 2 999 0 nonexistent
## 92 telephone may mon 48 1 999 0 nonexistent
## 93 telephone may mon 213 2 999 0 nonexistent
## 94 telephone may mon 545 1 999 0 nonexistent
## 96 telephone may mon 221 1 999 0 nonexistent
## 97 telephone may mon 426 1 999 0 nonexistent
## 98 telephone may mon 287 1 999 0 nonexistent
## 99 telephone may mon 197 1 999 0 nonexistent
## 100 telephone may mon 257 1 999 0 nonexistent
## 101 telephone may mon 229 1 999 0 nonexistent
## 102 telephone may mon 55 3 999 0 nonexistent
## 103 telephone may mon 400 1 999 0 nonexistent
## 105 telephone may mon 190 1 999 0 nonexistent
## 106 telephone may mon 21 1 999 0 nonexistent
## 107 telephone may mon 300 2 999 0 nonexistent
## 109 telephone may mon 293 1 999 0 nonexistent
## 110 telephone may mon 325 1 999 0 nonexistent
## 111 telephone may mon 514 1 999 0 nonexistent
## 114 telephone may mon 212 2 999 0 nonexistent
## 115 telephone may mon 337 2 999 0 nonexistent
## 116 telephone may mon 286 1 999 0 nonexistent
## 117 telephone may mon 247 2 999 0 nonexistent
## 118 telephone may mon 518 1 999 0 nonexistent
## 120 telephone may mon 178 1 999 0 nonexistent
## 121 telephone may mon 98 1 999 0 nonexistent
## 122 telephone may mon 439 1 999 0 nonexistent
## 123 telephone may mon 139 1 999 0 nonexistent
## 125 telephone may mon 175 1 999 0 nonexistent
## 126 telephone may mon 262 2 999 0 nonexistent
## 127 telephone may mon 61 1 999 0 nonexistent
## 128 telephone may mon 78 1 999 0 nonexistent
## 129 telephone may mon 102 2 999 0 nonexistent
## 130 telephone may mon 579 1 999 0 nonexistent
## 131 telephone may mon 143 1 999 0 nonexistent
## 132 telephone may mon 677 1 999 0 nonexistent
## 133 telephone may mon 267 1 999 0 nonexistent
## 134 telephone may mon 345 1 999 0 nonexistent
## 135 telephone may mon 185 1 999 0 nonexistent
## 136 telephone may mon 207 1 999 0 nonexistent
## 137 telephone may mon 69 2 999 0 nonexistent
## 138 telephone may mon 100 2 999 0 nonexistent
## 139 telephone may mon 125 2 999 0 nonexistent
## 141 telephone may mon 240 1 999 0 nonexistent
## 142 telephone may mon 70 1 999 0 nonexistent
## 144 telephone may mon 136 1 999 0 nonexistent
## 145 telephone may mon 73 1 999 0 nonexistent
## 146 telephone may mon 528 1 999 0 nonexistent
## 147 telephone may mon 541 1 999 0 nonexistent
## 148 telephone may mon 338 1 999 0 nonexistent
## 150 telephone may mon 87 1 999 0 nonexistent
## 151 telephone may mon 301 1 999 0 nonexistent
## 152 telephone may mon 46 1 999 0 nonexistent
## 154 telephone may mon 204 1 999 0 nonexistent
## 155 telephone may mon 155 1 999 0 nonexistent
## 157 telephone may mon 71 1 999 0 nonexistent
## 158 telephone may mon 243 1 999 0 nonexistent
## 159 telephone may mon 186 2 999 0 nonexistent
## 160 telephone may mon 579 2 999 0 nonexistent
## 161 telephone may mon 165 2 999 0 nonexistent
## 162 telephone may mon 163 2 999 0 nonexistent
## 165 telephone may mon 2033 1 999 0 nonexistent
## 166 telephone may mon 85 1 999 0 nonexistent
## 167 telephone may mon 506 1 999 0 nonexistent
## 168 telephone may mon 114 2 999 0 nonexistent
## 171 telephone may mon 181 1 999 0 nonexistent
## 172 telephone may mon 427 1 999 0 nonexistent
## 173 telephone may mon 292 1 999 0 nonexistent
## 174 telephone may mon 192 1 999 0 nonexistent
## 176 telephone may mon 128 2 999 0 nonexistent
## 177 telephone may mon 107 1 999 0 nonexistent
## 178 telephone may mon 303 2 999 0 nonexistent
## 179 telephone may mon 81 1 999 0 nonexistent
## 180 telephone may mon 270 1 999 0 nonexistent
## 182 telephone may mon 240 1 999 0 nonexistent
## 183 telephone may mon 673 2 999 0 nonexistent
## 184 telephone may mon 233 3 999 0 nonexistent
## 185 telephone may mon 102 1 999 0 nonexistent
## 186 telephone may mon 461 1 999 0 nonexistent
## 187 telephone may mon 250 1 999 0 nonexistent
## 188 telephone may mon 130 1 999 0 nonexistent
## 190 telephone may mon 138 1 999 0 nonexistent
## 191 telephone may mon 412 1 999 0 nonexistent
## 192 telephone may mon 179 2 999 0 nonexistent
## 193 telephone may mon 19 2 999 0 nonexistent
## 194 telephone may mon 228 2 999 0 nonexistent
## 195 telephone may mon 55 1 999 0 nonexistent
## 196 telephone may mon 717 1 999 0 nonexistent
## 197 telephone may mon 313 1 999 0 nonexistent
## 198 telephone may mon 289 1 999 0 nonexistent
## 199 telephone may mon 683 2 999 0 nonexistent
## 200 telephone may mon 1077 1 999 0 nonexistent
## 201 telephone may mon 146 2 999 0 nonexistent
## 203 telephone may mon 356 2 999 0 nonexistent
## 205 telephone may mon 172 1 999 0 nonexistent
## 206 telephone may mon 218 1 999 0 nonexistent
## 208 telephone may mon 67 1 999 0 nonexistent
## 209 telephone may mon 291 1 999 0 nonexistent
## 210 telephone may mon 248 1 999 0 nonexistent
## 212 telephone may mon 286 1 999 0 nonexistent
## 215 telephone may mon 471 1 999 0 nonexistent
## 216 telephone may mon 381 2 999 0 nonexistent
## 219 telephone may mon 287 1 999 0 nonexistent
## 220 telephone may mon 322 3 999 0 nonexistent
## 221 telephone may mon 216 2 999 0 nonexistent
## 222 telephone may mon 366 2 999 0 nonexistent
## 224 telephone may mon 288 1 999 0 nonexistent
## 225 telephone may mon 168 1 999 0 nonexistent
## 226 telephone may mon 132 1 999 0 nonexistent
## 228 telephone may mon 209 2 999 0 nonexistent
## 231 telephone may mon 580 2 999 0 nonexistent
## 232 telephone may mon 165 1 999 0 nonexistent
## 233 telephone may mon 127 2 999 0 nonexistent
## 234 telephone may mon 357 1 999 0 nonexistent
## 235 telephone may mon 175 1 999 0 nonexistent
## 236 telephone may mon 300 1 999 0 nonexistent
## 237 telephone may mon 136 1 999 0 nonexistent
## 238 telephone may mon 125 2 999 0 nonexistent
## 239 telephone may mon 189 2 999 0 nonexistent
## 241 telephone may mon 238 2 999 0 nonexistent
## 242 telephone may mon 124 1 999 0 nonexistent
## 243 telephone may mon 18 1 999 0 nonexistent
## 244 telephone may mon 730 2 999 0 nonexistent
## 246 telephone may mon 181 2 999 0 nonexistent
## 247 telephone may mon 79 1 999 0 nonexistent
## 248 telephone may mon 142 2 999 0 nonexistent
## 250 telephone may mon 702 1 999 0 nonexistent
## 252 telephone may mon 211 1 999 0 nonexistent
## 253 telephone may mon 117 1 999 0 nonexistent
## 254 telephone may mon 232 3 999 0 nonexistent
## 255 telephone may mon 408 2 999 0 nonexistent
## 256 telephone may mon 370 3 999 0 nonexistent
## 257 telephone may mon 179 2 999 0 nonexistent
## 258 telephone may mon 46 1 999 0 nonexistent
## 259 telephone may mon 200 1 999 0 nonexistent
## 260 telephone may mon 50 1 999 0 nonexistent
## 261 telephone may mon 181 1 999 0 nonexistent
## 262 telephone may mon 119 1 999 0 nonexistent
## 263 telephone may mon 361 1 999 0 nonexistent
## 264 telephone may mon 73 3 999 0 nonexistent
## 265 telephone may mon 67 2 999 0 nonexistent
## 266 telephone may mon 350 1 999 0 nonexistent
## 268 telephone may mon 332 2 999 0 nonexistent
## 270 telephone may mon 58 3 999 0 nonexistent
## 271 telephone may mon 151 1 999 0 nonexistent
## 272 telephone may mon 89 2 999 0 nonexistent
## 273 telephone may mon 152 1 999 0 nonexistent
## 274 telephone may mon 611 2 999 0 nonexistent
## 275 telephone may mon 110 2 999 0 nonexistent
## 276 telephone may mon 463 1 999 0 nonexistent
## 277 telephone may mon 962 1 999 0 nonexistent
## 278 telephone may mon 102 2 999 0 nonexistent
## 279 telephone may mon 10 4 999 0 nonexistent
## 280 telephone may mon 118 3 999 0 nonexistent
## 281 telephone may mon 92 2 999 0 nonexistent
## 282 telephone may mon 143 3 999 0 nonexistent
## 283 telephone may mon 189 3 999 0 nonexistent
## 284 telephone may mon 75 2 999 0 nonexistent
## 285 telephone may mon 189 2 999 0 nonexistent
## 286 telephone may mon 55 2 999 0 nonexistent
## 288 telephone may mon 56 2 999 0 nonexistent
## 289 telephone may mon 5 2 999 0 nonexistent
## 292 telephone may mon 286 2 999 0 nonexistent
## 293 telephone may mon 206 2 999 0 nonexistent
## 294 telephone may mon 164 2 999 0 nonexistent
## 295 telephone may mon 98 2 999 0 nonexistent
## 296 telephone may mon 446 2 999 0 nonexistent
## 297 telephone may mon 742 2 999 0 nonexistent
## 299 telephone may mon 122 3 999 0 nonexistent
## 300 telephone may mon 362 4 999 0 nonexistent
## 301 telephone may mon 357 2 999 0 nonexistent
## 302 telephone may mon 200 2 999 0 nonexistent
## 303 telephone may mon 107 2 999 0 nonexistent
## 307 telephone may mon 209 2 999 0 nonexistent
## 308 telephone may mon 205 2 999 0 nonexistent
## 309 telephone may mon 261 3 999 0 nonexistent
## 310 telephone may mon 83 2 999 0 nonexistent
## 311 telephone may mon 106 3 999 0 nonexistent
## 312 telephone may mon 106 2 999 0 nonexistent
## 313 telephone may mon 108 2 999 0 nonexistent
## 314 telephone may mon 214 2 999 0 nonexistent
## 315 telephone may mon 358 2 999 0 nonexistent
## 316 telephone may mon 453 2 999 0 nonexistent
## 317 telephone may mon 364 2 999 0 nonexistent
## 318 telephone may mon 136 2 999 0 nonexistent
## 320 telephone may mon 241 2 999 0 nonexistent
## 321 telephone may mon 224 3 999 0 nonexistent
## 322 telephone may mon 148 2 999 0 nonexistent
## 323 telephone may mon 230 2 999 0 nonexistent
## 324 telephone may mon 199 3 999 0 nonexistent
## 325 telephone may mon 196 2 999 0 nonexistent
## 326 telephone may mon 111 4 999 0 nonexistent
## 327 telephone may mon 231 3 999 0 nonexistent
## 328 telephone may mon 316 3 999 0 nonexistent
## 329 telephone may mon 240 2 999 0 nonexistent
## 330 telephone may mon 669 3 999 0 nonexistent
## 331 telephone may mon 425 2 999 0 nonexistent
## 333 telephone may mon 174 5 999 0 nonexistent
## 335 telephone may mon 313 3 999 0 nonexistent
## 336 telephone may mon 135 4 999 0 nonexistent
## 337 telephone may mon 152 2 999 0 nonexistent
## 338 telephone may mon 402 3 999 0 nonexistent
## 339 telephone may mon 221 2 999 0 nonexistent
## 341 telephone may mon 144 3 999 0 nonexistent
## 342 telephone may mon 158 3 999 0 nonexistent
## 343 telephone may mon 220 3 999 0 nonexistent
## 345 telephone may mon 254 2 999 0 nonexistent
## 346 telephone may mon 503 2 999 0 nonexistent
## 348 telephone may mon 421 4 999 0 nonexistent
## 349 telephone may mon 130 3 999 0 nonexistent
## 350 telephone may mon 164 2 999 0 nonexistent
## 351 telephone may mon 174 3 999 0 nonexistent
## 352 telephone may mon 113 2 999 0 nonexistent
## 353 telephone may mon 195 2 999 0 nonexistent
## 354 telephone may mon 347 3 999 0 nonexistent
## 355 telephone may mon 208 2 999 0 nonexistent
## 356 telephone may mon 404 4 999 0 nonexistent
## 357 telephone may mon 396 2 999 0 nonexistent
## 358 telephone may mon 98 2 999 0 nonexistent
## 359 telephone may mon 229 3 999 0 nonexistent
## 360 telephone may mon 350 2 999 0 nonexistent
## 361 telephone may tue 88 3 999 0 nonexistent
## 363 telephone may tue 168 3 999 0 nonexistent
## 365 telephone may tue 158 1 999 0 nonexistent
## 366 telephone may tue 210 1 999 0 nonexistent
## 367 telephone may tue 102 1 999 0 nonexistent
## 369 telephone may tue 64 1 999 0 nonexistent
## 371 telephone may tue 77 1 999 0 nonexistent
## 373 telephone may tue 344 1 999 0 nonexistent
## 374 telephone may tue 195 1 999 0 nonexistent
## 375 telephone may tue 202 1 999 0 nonexistent
## 376 telephone may tue 286 1 999 0 nonexistent
## 377 telephone may tue 278 1 999 0 nonexistent
## 378 telephone may tue 189 1 999 0 nonexistent
## 380 telephone may tue 18 1 999 0 nonexistent
## 381 telephone may tue 184 2 999 0 nonexistent
## 382 telephone may tue 235 1 999 0 nonexistent
## 383 telephone may tue 290 1 999 0 nonexistent
## 384 telephone may tue 133 1 999 0 nonexistent
## 385 telephone may tue 318 1 999 0 nonexistent
## 386 telephone may tue 437 1 999 0 nonexistent
## 387 telephone may tue 402 1 999 0 nonexistent
## 390 telephone may tue 1030 1 999 0 nonexistent
## 391 telephone may tue 253 1 999 0 nonexistent
## 392 telephone may tue 149 1 999 0 nonexistent
## 393 telephone may tue 144 1 999 0 nonexistent
## 394 telephone may tue 69 1 999 0 nonexistent
## 395 telephone may tue 243 1 999 0 nonexistent
## 396 telephone may tue 769 2 999 0 nonexistent
## 397 telephone may tue 135 3 999 0 nonexistent
## 398 telephone may tue 231 1 999 0 nonexistent
## 399 telephone may tue 442 2 999 0 nonexistent
## 400 telephone may tue 199 1 999 0 nonexistent
## 401 telephone may tue 455 1 999 0 nonexistent
## 402 telephone may tue 152 1 999 0 nonexistent
## 403 telephone may tue 124 1 999 0 nonexistent
## 404 telephone may tue 424 1 999 0 nonexistent
## 405 telephone may tue 43 1 999 0 nonexistent
## 406 telephone may tue 154 1 999 0 nonexistent
## 408 telephone may tue 203 2 999 0 nonexistent
## 409 telephone may tue 140 2 999 0 nonexistent
## 410 telephone may tue 326 1 999 0 nonexistent
## 411 telephone may tue 483 1 999 0 nonexistent
## 412 telephone may tue 259 1 999 0 nonexistent
## 413 telephone may tue 227 1 999 0 nonexistent
## 414 telephone may tue 673 1 999 0 nonexistent
## 415 telephone may tue 576 1 999 0 nonexistent
## 416 telephone may tue 180 2 999 0 nonexistent
## 417 telephone may tue 90 1 999 0 nonexistent
## 419 telephone may tue 245 1 999 0 nonexistent
## 421 telephone may tue 208 1 999 0 nonexistent
## 422 telephone may tue 623 1 999 0 nonexistent
## 423 telephone may tue 180 1 999 0 nonexistent
## 424 telephone may tue 496 3 999 0 nonexistent
## 426 telephone may tue 102 2 999 0 nonexistent
## 428 telephone may tue 225 1 999 0 nonexistent
## 430 telephone may tue 276 1 999 0 nonexistent
## 431 telephone may tue 87 1 999 0 nonexistent
## 432 telephone may tue 744 1 999 0 nonexistent
## 433 telephone may tue 262 1 999 0 nonexistent
## 434 telephone may tue 271 1 999 0 nonexistent
## 436 telephone may tue 198 2 999 0 nonexistent
## 437 telephone may tue 150 1 999 0 nonexistent
## 438 telephone may tue 241 1 999 0 nonexistent
## 439 telephone may tue 196 1 999 0 nonexistent
## 440 telephone may tue 149 1 999 0 nonexistent
## 441 telephone may tue 264 1 999 0 nonexistent
## 442 telephone may tue 246 1 999 0 nonexistent
## 443 telephone may tue 309 2 999 0 nonexistent
## 444 telephone may tue 140 1 999 0 nonexistent
## 445 telephone may tue 175 1 999 0 nonexistent
## 447 telephone may tue 1623 1 999 0 nonexistent
## 448 telephone may tue 50 1 999 0 nonexistent
## 450 telephone may tue 144 1 999 0 nonexistent
## 451 telephone may tue 238 1 999 0 nonexistent
## 452 telephone may tue 354 1 999 0 nonexistent
## 453 telephone may tue 451 2 999 0 nonexistent
## 454 telephone may tue 159 1 999 0 nonexistent
## 455 telephone may tue 170 1 999 0 nonexistent
## 456 telephone may tue 243 1 999 0 nonexistent
## 458 telephone may tue 112 1 999 0 nonexistent
## 459 telephone may tue 262 2 999 0 nonexistent
## 460 telephone may tue 53 1 999 0 nonexistent
## 461 telephone may tue 134 1 999 0 nonexistent
## 462 telephone may tue 204 4 999 0 nonexistent
## 464 telephone may tue 182 1 999 0 nonexistent
## 465 telephone may tue 162 1 999 0 nonexistent
## 466 telephone may tue 177 1 999 0 nonexistent
## 469 telephone may tue 358 1 999 0 nonexistent
## 470 telephone may tue 1677 1 999 0 nonexistent
## 472 telephone may tue 310 1 999 0 nonexistent
## 473 telephone may tue 47 1 999 0 nonexistent
## 474 telephone may tue 379 1 999 0 nonexistent
## 475 telephone may tue 30 2 999 0 nonexistent
## 476 telephone may tue 472 1 999 0 nonexistent
## 479 telephone may tue 116 1 999 0 nonexistent
## 480 telephone may tue 448 1 999 0 nonexistent
## 481 telephone may tue 264 1 999 0 nonexistent
## 482 telephone may tue 169 1 999 0 nonexistent
## 484 telephone may tue 288 1 999 0 nonexistent
## 485 telephone may tue 381 1 999 0 nonexistent
## 486 telephone may tue 176 2 999 0 nonexistent
## 487 telephone may tue 215 1 999 0 nonexistent
## 488 telephone may tue 278 1 999 0 nonexistent
## 491 telephone may tue 226 2 999 0 nonexistent
## 492 telephone may tue 111 2 999 0 nonexistent
## 494 telephone may tue 46 1 999 0 nonexistent
## 495 telephone may tue 49 1 999 0 nonexistent
## 496 telephone may tue 374 1 999 0 nonexistent
## 497 telephone may tue 349 1 999 0 nonexistent
## 498 telephone may tue 325 1 999 0 nonexistent
## 499 telephone may tue 233 2 999 0 nonexistent
## 501 telephone may tue 153 1 999 0 nonexistent
## 502 telephone may tue 80 1 999 0 nonexistent
## 503 telephone may tue 198 1 999 0 nonexistent
## 504 telephone may tue 568 1 999 0 nonexistent
## 505 telephone may tue 918 1 999 0 nonexistent
## 506 telephone may tue 82 1 999 0 nonexistent
## 508 telephone may tue 211 1 999 0 nonexistent
## 509 telephone may tue 120 1 999 0 nonexistent
## 513 telephone may tue 211 1 999 0 nonexistent
## 514 telephone may tue 369 1 999 0 nonexistent
## 515 telephone may tue 91 1 999 0 nonexistent
## 516 telephone may tue 267 2 999 0 nonexistent
## 518 telephone may tue 371 2 999 0 nonexistent
## 519 telephone may tue 288 2 999 0 nonexistent
## 520 telephone may tue 221 1 999 0 nonexistent
## 521 telephone may tue 427 1 999 0 nonexistent
## 522 telephone may tue 310 1 999 0 nonexistent
## 523 telephone may tue 158 1 999 0 nonexistent
## 524 telephone may tue 198 1 999 0 nonexistent
## 525 telephone may tue 145 1 999 0 nonexistent
## 526 telephone may tue 247 1 999 0 nonexistent
## 528 telephone may tue 179 2 999 0 nonexistent
## 529 telephone may tue 73 1 999 0 nonexistent
## 532 telephone may tue 41 1 999 0 nonexistent
## 533 telephone may tue 13 1 999 0 nonexistent
## 534 telephone may tue 79 2 999 0 nonexistent
## 535 telephone may tue 358 1 999 0 nonexistent
## 536 telephone may tue 162 1 999 0 nonexistent
## 537 telephone may tue 150 1 999 0 nonexistent
## 538 telephone may tue 26 1 999 0 nonexistent
## 539 telephone may tue 250 1 999 0 nonexistent
## 540 telephone may tue 792 1 999 0 nonexistent
## 541 telephone may tue 146 1 999 0 nonexistent
## 542 telephone may tue 440 1 999 0 nonexistent
## 544 telephone may tue 242 2 999 0 nonexistent
## 546 telephone may tue 161 2 999 0 nonexistent
## 547 telephone may tue 268 2 999 0 nonexistent
## 548 telephone may tue 259 2 999 0 nonexistent
## 550 telephone may tue 153 1 999 0 nonexistent
## 551 telephone may tue 424 2 999 0 nonexistent
## 552 telephone may tue 375 1 999 0 nonexistent
## 553 telephone may tue 179 2 999 0 nonexistent
## 555 telephone may tue 440 1 999 0 nonexistent
## 556 telephone may tue 195 1 999 0 nonexistent
## 557 telephone may tue 1297 3 999 0 nonexistent
## 558 telephone may tue 217 1 999 0 nonexistent
## 559 telephone may tue 87 1 999 0 nonexistent
## 561 telephone may tue 189 1 999 0 nonexistent
## 562 telephone may tue 502 1 999 0 nonexistent
## 563 telephone may tue 260 1 999 0 nonexistent
## 565 telephone may tue 179 1 999 0 nonexistent
## 566 telephone may tue 179 1 999 0 nonexistent
## 568 telephone may tue 105 2 999 0 nonexistent
## 569 telephone may tue 266 3 999 0 nonexistent
## 570 telephone may tue 87 2 999 0 nonexistent
## 571 telephone may tue 524 2 999 0 nonexistent
## 572 telephone may tue 155 2 999 0 nonexistent
## 573 telephone may tue 162 2 999 0 nonexistent
## 574 telephone may tue 316 4 999 0 nonexistent
## 576 telephone may tue 695 3 999 0 nonexistent
## 577 telephone may tue 76 4 999 0 nonexistent
## 578 telephone may tue 535 2 999 0 nonexistent
## 580 telephone may tue 390 3 999 0 nonexistent
## 581 telephone may tue 369 1 999 0 nonexistent
## 583 telephone may tue 79 1 999 0 nonexistent
## 584 telephone may tue 140 2 999 0 nonexistent
## 585 telephone may tue 315 1 999 0 nonexistent
## 586 telephone may tue 262 2 999 0 nonexistent
## 587 telephone may tue 174 2 999 0 nonexistent
## 588 telephone may tue 424 2 999 0 nonexistent
## 589 telephone may tue 135 1 999 0 nonexistent
## 590 telephone may tue 36 5 999 0 nonexistent
## 592 telephone may tue 219 2 999 0 nonexistent
## 593 telephone may tue 135 1 999 0 nonexistent
## 594 telephone may tue 147 2 999 0 nonexistent
## 595 telephone may tue 407 2 999 0 nonexistent
## 596 telephone may tue 402 4 999 0 nonexistent
## 597 telephone may tue 209 1 999 0 nonexistent
## 598 telephone may tue 92 2 999 0 nonexistent
## 599 telephone may tue 208 1 999 0 nonexistent
## 601 telephone may tue 65 1 999 0 nonexistent
## 602 telephone may tue 284 2 999 0 nonexistent
## 604 telephone may tue 231 1 999 0 nonexistent
## 606 telephone may tue 389 1 999 0 nonexistent
## 607 telephone may tue 158 1 999 0 nonexistent
## 609 telephone may tue 258 5 999 0 nonexistent
## 610 telephone may tue 87 1 999 0 nonexistent
## 611 telephone may tue 147 2 999 0 nonexistent
## 612 telephone may tue 635 1 999 0 nonexistent
## 613 telephone may tue 289 1 999 0 nonexistent
## 614 telephone may tue 170 3 999 0 nonexistent
## 615 telephone may tue 802 1 999 0 nonexistent
## 616 telephone may tue 381 2 999 0 nonexistent
## 617 telephone may tue 218 4 999 0 nonexistent
## 619 telephone may tue 304 2 999 0 nonexistent
## 620 telephone may tue 241 3 999 0 nonexistent
## 621 telephone may tue 230 1 999 0 nonexistent
## 622 telephone may tue 79 4 999 0 nonexistent
## 623 telephone may tue 262 3 999 0 nonexistent
## 624 telephone may tue 392 2 999 0 nonexistent
## 625 telephone may tue 201 2 999 0 nonexistent
## 626 telephone may tue 145 1 999 0 nonexistent
## 627 telephone may tue 252 1 999 0 nonexistent
## 628 telephone may tue 329 1 999 0 nonexistent
## 629 telephone may tue 328 2 999 0 nonexistent
## 630 telephone may tue 191 2 999 0 nonexistent
## 631 telephone may tue 116 2 999 0 nonexistent
## 632 telephone may tue 246 1 999 0 nonexistent
## 635 telephone may tue 416 3 999 0 nonexistent
## 636 telephone may tue 37 2 999 0 nonexistent
## 637 telephone may tue 132 2 999 0 nonexistent
## 638 telephone may tue 530 2 999 0 nonexistent
## 639 telephone may tue 175 3 999 0 nonexistent
## 640 telephone may tue 90 5 999 0 nonexistent
## 641 telephone may tue 524 2 999 0 nonexistent
## 643 telephone may tue 311 2 999 0 nonexistent
## 648 telephone may tue 191 1 999 0 nonexistent
## 649 telephone may tue 284 2 999 0 nonexistent
## 650 telephone may tue 328 1 999 0 nonexistent
## 651 telephone may tue 100 1 999 0 nonexistent
## 652 telephone may tue 226 1 999 0 nonexistent
## 653 telephone may tue 507 1 999 0 nonexistent
## 655 telephone may tue 128 2 999 0 nonexistent
## 656 telephone may tue 322 2 999 0 nonexistent
## 657 telephone may tue 202 4 999 0 nonexistent
## 659 telephone may tue 205 2 999 0 nonexistent
## 660 telephone may tue 739 3 999 0 nonexistent
## 661 telephone may tue 273 2 999 0 nonexistent
## 662 telephone may tue 339 3 999 0 nonexistent
## 664 telephone may tue 308 3 999 0 nonexistent
## 665 telephone may tue 467 2 999 0 nonexistent
## 666 telephone may tue 245 2 999 0 nonexistent
## 667 telephone may tue 160 3 999 0 nonexistent
## 668 telephone may tue 189 2 999 0 nonexistent
## 669 telephone may tue 477 1 999 0 nonexistent
## 670 telephone may tue 65 3 999 0 nonexistent
## 671 telephone may tue 191 1 999 0 nonexistent
## 672 telephone may tue 196 2 999 0 nonexistent
## 673 telephone may tue 221 2 999 0 nonexistent
## 674 telephone may tue 197 2 999 0 nonexistent
## 676 telephone may tue 221 2 999 0 nonexistent
## 677 telephone may tue 64 2 999 0 nonexistent
## 678 telephone may tue 75 2 999 0 nonexistent
## 680 telephone may tue 378 3 999 0 nonexistent
## 681 telephone may tue 118 2 999 0 nonexistent
## 682 telephone may tue 1597 2 999 0 nonexistent
## 683 telephone may tue 346 2 999 0 nonexistent
## 684 telephone may tue 107 2 999 0 nonexistent
## 685 telephone may tue 60 3 999 0 nonexistent
## 686 telephone may tue 276 2 999 0 nonexistent
## 687 telephone may tue 176 2 999 0 nonexistent
## 688 telephone may tue 390 2 999 0 nonexistent
## 689 telephone may tue 251 3 999 0 nonexistent
## 693 telephone may tue 234 2 999 0 nonexistent
## 694 telephone may tue 79 2 999 0 nonexistent
## 695 telephone may tue 13 6 999 0 nonexistent
## 696 telephone may tue 296 3 999 0 nonexistent
## 697 telephone may tue 114 2 999 0 nonexistent
## 699 telephone may tue 109 2 999 0 nonexistent
## 700 telephone may tue 132 2 999 0 nonexistent
## 703 telephone may tue 95 3 999 0 nonexistent
## 704 telephone may tue 31 3 999 0 nonexistent
## 705 telephone may tue 112 3 999 0 nonexistent
## 707 telephone may tue 87 4 999 0 nonexistent
## 708 telephone may tue 593 2 999 0 nonexistent
## 710 telephone may tue 198 2 999 0 nonexistent
## 712 telephone may tue 190 3 999 0 nonexistent
## 713 telephone may tue 172 5 999 0 nonexistent
## 715 telephone may tue 174 2 999 0 nonexistent
## 716 telephone may tue 631 2 999 0 nonexistent
## 717 telephone may tue 152 3 999 0 nonexistent
## 718 telephone may tue 176 5 999 0 nonexistent
## 719 telephone may tue 32 3 999 0 nonexistent
## 720 telephone may tue 1529 2 999 0 nonexistent
## 722 telephone may tue 214 2 999 0 nonexistent
## 723 telephone may tue 147 3 999 0 nonexistent
## 724 telephone may tue 800 4 999 0 nonexistent
## 725 telephone may tue 106 2 999 0 nonexistent
## 726 telephone may tue 135 2 999 0 nonexistent
## 729 telephone may tue 314 3 999 0 nonexistent
## 731 telephone may tue 410 2 999 0 nonexistent
## 732 telephone may tue 207 3 999 0 nonexistent
## 733 telephone may tue 239 2 999 0 nonexistent
## 736 telephone may tue 42 3 999 0 nonexistent
## 737 telephone may tue 55 2 999 0 nonexistent
## 738 telephone may tue 157 2 999 0 nonexistent
## 740 telephone may tue 336 3 999 0 nonexistent
## 742 telephone may tue 211 2 999 0 nonexistent
## 743 telephone may tue 88 5 999 0 nonexistent
## 745 telephone may tue 329 3 999 0 nonexistent
## 746 telephone may tue 305 2 999 0 nonexistent
## 748 telephone may tue 128 2 999 0 nonexistent
## 749 telephone may tue 122 3 999 0 nonexistent
## 751 telephone may tue 126 2 999 0 nonexistent
## 754 telephone may tue 166 3 999 0 nonexistent
## 755 telephone may tue 190 3 999 0 nonexistent
## 756 telephone may tue 216 2 999 0 nonexistent
## 757 telephone may wed 51 3 999 0 nonexistent
## 758 telephone may wed 169 3 999 0 nonexistent
## 759 telephone may wed 148 3 999 0 nonexistent
## 760 telephone may wed 132 3 999 0 nonexistent
## 761 telephone may wed 117 3 999 0 nonexistent
## 762 telephone may wed 275 4 999 0 nonexistent
## 763 telephone may wed 124 2 999 0 nonexistent
## 764 telephone may wed 118 3 999 0 nonexistent
## 765 telephone may wed 479 2 999 0 nonexistent
## 767 telephone may wed 322 2 999 0 nonexistent
## 768 telephone may wed 202 2 999 0 nonexistent
## 770 telephone may wed 216 3 999 0 nonexistent
## 771 telephone may wed 195 2 999 0 nonexistent
## 774 telephone may wed 720 2 999 0 nonexistent
## 775 telephone may wed 92 2 999 0 nonexistent
## 776 telephone may wed 188 2 999 0 nonexistent
## 778 telephone may wed 141 3 999 0 nonexistent
## 779 telephone may wed 395 2 999 0 nonexistent
## 780 telephone may wed 629 2 999 0 nonexistent
## 783 telephone may wed 446 1 999 0 nonexistent
## 784 telephone may wed 131 3 999 0 nonexistent
## 785 telephone may wed 198 3 999 0 nonexistent
## 786 telephone may wed 312 1 999 0 nonexistent
## 787 telephone may wed 275 6 999 0 nonexistent
## 788 telephone may wed 120 2 999 0 nonexistent
## 791 telephone may wed 150 1 999 0 nonexistent
## 792 telephone may wed 91 1 999 0 nonexistent
## 793 telephone may wed 296 1 999 0 nonexistent
## 796 telephone may wed 326 1 999 0 nonexistent
## 797 telephone may wed 292 1 999 0 nonexistent
## 798 telephone may wed 215 1 999 0 nonexistent
## 799 telephone may wed 97 1 999 0 nonexistent
## 800 telephone may wed 32 1 999 0 nonexistent
## 801 telephone may wed 162 1 999 0 nonexistent
## 802 telephone may wed 421 1 999 0 nonexistent
## 803 telephone may wed 268 1 999 0 nonexistent
## 804 telephone may wed 232 1 999 0 nonexistent
## 805 telephone may wed 152 3 999 0 nonexistent
## 806 telephone may wed 104 2 999 0 nonexistent
## 807 telephone may wed 852 1 999 0 nonexistent
## 808 telephone may wed 159 2 999 0 nonexistent
## 809 telephone may wed 416 2 999 0 nonexistent
## 810 telephone may wed 174 1 999 0 nonexistent
## 811 telephone may wed 139 1 999 0 nonexistent
## 812 telephone may wed 193 1 999 0 nonexistent
## 814 telephone may wed 102 1 999 0 nonexistent
## 815 telephone may wed 124 1 999 0 nonexistent
## 816 telephone may wed 143 1 999 0 nonexistent
## 817 telephone may wed 231 1 999 0 nonexistent
## 818 telephone may wed 128 1 999 0 nonexistent
## 819 telephone may wed 74 1 999 0 nonexistent
## 820 telephone may wed 105 2 999 0 nonexistent
## 821 telephone may wed 992 1 999 0 nonexistent
## 822 telephone may wed 168 1 999 0 nonexistent
## 823 telephone may wed 250 1 999 0 nonexistent
## 824 telephone may wed 254 1 999 0 nonexistent
## 825 telephone may wed 149 1 999 0 nonexistent
## 826 telephone may wed 133 2 999 0 nonexistent
## 827 telephone may wed 374 1 999 0 nonexistent
## 828 telephone may wed 425 6 999 0 nonexistent
## 829 telephone may wed 207 1 999 0 nonexistent
## 830 telephone may wed 464 1 999 0 nonexistent
## 831 telephone may wed 439 1 999 0 nonexistent
## 832 telephone may wed 83 3 999 0 nonexistent
## 833 telephone may wed 732 2 999 0 nonexistent
## 834 telephone may wed 149 1 999 0 nonexistent
## 835 telephone may wed 142 1 999 0 nonexistent
## 837 telephone may wed 359 1 999 0 nonexistent
## 838 telephone may wed 112 1 999 0 nonexistent
## 839 telephone may wed 274 4 999 0 nonexistent
## 840 telephone may wed 325 2 999 0 nonexistent
## 841 telephone may wed 1521 1 999 0 nonexistent
## 842 telephone may wed 216 1 999 0 nonexistent
## 844 telephone may wed 122 2 999 0 nonexistent
## 846 telephone may wed 615 1 999 0 nonexistent
## 847 telephone may wed 111 1 999 0 nonexistent
## 848 telephone may wed 359 1 999 0 nonexistent
## 849 telephone may wed 327 3 999 0 nonexistent
## 850 telephone may wed 236 1 999 0 nonexistent
## 852 telephone may wed 109 1 999 0 nonexistent
## 853 telephone may wed 492 2 999 0 nonexistent
## 855 telephone may wed 83 2 999 0 nonexistent
## 856 telephone may wed 241 2 999 0 nonexistent
## 858 telephone may wed 131 1 999 0 nonexistent
## 859 telephone may wed 123 1 999 0 nonexistent
## 860 telephone may wed 125 1 999 0 nonexistent
## 861 telephone may wed 295 2 999 0 nonexistent
## 862 telephone may wed 287 1 999 0 nonexistent
## 863 telephone may wed 109 1 999 0 nonexistent
## 864 telephone may wed 140 2 999 0 nonexistent
## 865 telephone may wed 52 1 999 0 nonexistent
## 866 telephone may wed 233 1 999 0 nonexistent
## 867 telephone may wed 254 1 999 0 nonexistent
## 868 telephone may wed 255 1 999 0 nonexistent
## 869 telephone may wed 126 1 999 0 nonexistent
## 870 telephone may wed 184 2 999 0 nonexistent
## 871 telephone may wed 591 1 999 0 nonexistent
## 872 telephone may wed 294 1 999 0 nonexistent
## 874 telephone may wed 173 1 999 0 nonexistent
## 875 telephone may wed 336 1 999 0 nonexistent
## 876 telephone may wed 344 1 999 0 nonexistent
## 878 telephone may wed 153 1 999 0 nonexistent
## 879 telephone may wed 99 2 999 0 nonexistent
## 880 telephone may wed 243 1 999 0 nonexistent
## 881 telephone may wed 260 1 999 0 nonexistent
## 882 telephone may wed 164 2 999 0 nonexistent
## 883 telephone may wed 255 2 999 0 nonexistent
## 884 telephone may wed 47 1 999 0 nonexistent
## 885 telephone may wed 110 2 999 0 nonexistent
## 886 telephone may wed 463 1 999 0 nonexistent
## 887 telephone may wed 192 1 999 0 nonexistent
## 889 telephone may wed 221 1 999 0 nonexistent
## 890 telephone may wed 25 1 999 0 nonexistent
## 891 telephone may wed 256 6 999 0 nonexistent
## 893 telephone may wed 283 2 999 0 nonexistent
## 894 telephone may wed 448 1 999 0 nonexistent
## 895 telephone may wed 127 1 999 0 nonexistent
## 898 telephone may wed 221 2 999 0 nonexistent
## 899 telephone may wed 150 1 999 0 nonexistent
## 901 telephone may wed 296 2 999 0 nonexistent
## 902 telephone may wed 161 1 999 0 nonexistent
## 903 telephone may wed 401 2 999 0 nonexistent
## 905 telephone may wed 388 1 999 0 nonexistent
## 906 telephone may wed 245 1 999 0 nonexistent
## 907 telephone may wed 143 1 999 0 nonexistent
## 908 telephone may wed 423 1 999 0 nonexistent
## 909 telephone may wed 231 1 999 0 nonexistent
## 910 telephone may wed 181 1 999 0 nonexistent
## 911 telephone may wed 107 1 999 0 nonexistent
## 912 telephone may wed 227 1 999 0 nonexistent
## 913 telephone may wed 69 1 999 0 nonexistent
## 914 telephone may wed 799 1 999 0 nonexistent
## 915 telephone may wed 109 1 999 0 nonexistent
## 916 telephone may wed 127 1 999 0 nonexistent
## 917 telephone may wed 45 1 999 0 nonexistent
## 918 telephone may wed 120 1 999 0 nonexistent
## 919 telephone may wed 68 3 999 0 nonexistent
## 920 telephone may wed 180 2 999 0 nonexistent
## 921 telephone may wed 112 3 999 0 nonexistent
## 922 telephone may wed 444 1 999 0 nonexistent
## 923 telephone may wed 246 2 999 0 nonexistent
## 924 telephone may wed 148 4 999 0 nonexistent
## 925 telephone may wed 223 3 999 0 nonexistent
## 926 telephone may wed 566 2 999 0 nonexistent
## 927 telephone may wed 274 2 999 0 nonexistent
## 928 telephone may wed 49 3 999 0 nonexistent
## 929 telephone may wed 97 2 999 0 nonexistent
## 931 telephone may wed 421 2 999 0 nonexistent
## 932 telephone may wed 511 2 999 0 nonexistent
## 933 telephone may wed 121 2 999 0 nonexistent
## 934 telephone may wed 157 2 999 0 nonexistent
## 935 telephone may wed 101 1 999 0 nonexistent
## 936 telephone may wed 328 2 999 0 nonexistent
## 937 telephone may wed 19 1 999 0 nonexistent
## 938 telephone may wed 866 2 999 0 nonexistent
## 939 telephone may wed 229 3 999 0 nonexistent
## 940 telephone may wed 154 2 999 0 nonexistent
## 941 telephone may wed 56 1 999 0 nonexistent
## 942 telephone may wed 199 1 999 0 nonexistent
## 943 telephone may wed 117 1 999 0 nonexistent
## 944 telephone may wed 1581 2 999 0 nonexistent
## 945 telephone may wed 185 1 999 0 nonexistent
## 946 telephone may wed 202 1 999 0 nonexistent
## 947 telephone may wed 279 1 999 0 nonexistent
## 948 telephone may wed 180 5 999 0 nonexistent
## 949 telephone may wed 530 2 999 0 nonexistent
## 950 telephone may wed 129 5 999 0 nonexistent
## 951 telephone may wed 60 1 999 0 nonexistent
## 952 telephone may wed 432 1 999 0 nonexistent
## 953 telephone may wed 516 1 999 0 nonexistent
## 954 telephone may wed 617 1 999 0 nonexistent
## 955 telephone may wed 179 2 999 0 nonexistent
## 956 telephone may wed 125 2 999 0 nonexistent
## 957 telephone may wed 262 2 999 0 nonexistent
## 958 telephone may wed 396 2 999 0 nonexistent
## 959 telephone may wed 294 2 999 0 nonexistent
## 960 telephone may wed 171 2 999 0 nonexistent
## 961 telephone may wed 614 2 999 0 nonexistent
## 964 telephone may wed 406 2 999 0 nonexistent
## 965 telephone may wed 287 1 999 0 nonexistent
## 966 telephone may wed 216 2 999 0 nonexistent
## 967 telephone may wed 37 2 999 0 nonexistent
## 968 telephone may wed 650 1 999 0 nonexistent
## 969 telephone may wed 590 3 999 0 nonexistent
## 970 telephone may wed 55 1 999 0 nonexistent
## 971 telephone may wed 166 1 999 0 nonexistent
## 973 telephone may wed 48 1 999 0 nonexistent
## 974 telephone may wed 72 1 999 0 nonexistent
## 975 telephone may wed 55 1 999 0 nonexistent
## 976 telephone may wed 92 1 999 0 nonexistent
## 977 telephone may wed 196 2 999 0 nonexistent
## 978 telephone may wed 96 1 999 0 nonexistent
## 979 telephone may wed 144 1 999 0 nonexistent
## 980 telephone may wed 474 1 999 0 nonexistent
## 983 telephone may wed 229 3 999 0 nonexistent
## 984 telephone may wed 236 2 999 0 nonexistent
## 985 telephone may wed 164 1 999 0 nonexistent
## 986 telephone may wed 93 1 999 0 nonexistent
## 987 telephone may wed 123 1 999 0 nonexistent
## 988 telephone may wed 912 2 999 0 nonexistent
## 989 telephone may wed 209 2 999 0 nonexistent
## 990 telephone may wed 485 1 999 0 nonexistent
## 991 telephone may wed 206 2 999 0 nonexistent
## 992 telephone may wed 239 2 999 0 nonexistent
## 994 telephone may wed 362 1 999 0 nonexistent
## 997 telephone may wed 345 1 999 0 nonexistent
## 998 telephone may wed 329 1 999 0 nonexistent
## 1000 telephone may wed 143 3 999 0 nonexistent
## 1001 telephone may wed 214 2 999 0 nonexistent
## 1002 telephone may wed 1062 1 999 0 nonexistent
## 1003 telephone may wed 258 3 999 0 nonexistent
## 1004 telephone may wed 253 2 999 0 nonexistent
## 1005 telephone may wed 106 1 999 0 nonexistent
## 1006 telephone may wed 688 2 999 0 nonexistent
## 1007 telephone may wed 103 3 999 0 nonexistent
## 1008 telephone may wed 349 2 999 0 nonexistent
## 1010 telephone may wed 78 5 999 0 nonexistent
## 1012 telephone may wed 126 1 999 0 nonexistent
## 1014 telephone may wed 98 1 999 0 nonexistent
## 1016 telephone may wed 607 1 999 0 nonexistent
## 1021 telephone may wed 803 1 999 0 nonexistent
## 1022 telephone may wed 203 1 999 0 nonexistent
## 1023 telephone may wed 96 3 999 0 nonexistent
## 1024 telephone may wed 238 3 999 0 nonexistent
## 1025 telephone may wed 153 3 999 0 nonexistent
## 1027 telephone may wed 119 3 999 0 nonexistent
## 1029 telephone may wed 152 2 999 0 nonexistent
## 1030 telephone may wed 418 2 999 0 nonexistent
## 1031 telephone may wed 421 2 999 0 nonexistent
## 1032 telephone may wed 198 2 999 0 nonexistent
## 1033 telephone may wed 175 1 999 0 nonexistent
## 1034 telephone may wed 374 1 999 0 nonexistent
## 1035 telephone may wed 51 1 999 0 nonexistent
## 1036 telephone may wed 263 1 999 0 nonexistent
## 1037 telephone may wed 257 1 999 0 nonexistent
## 1038 telephone may wed 229 2 999 0 nonexistent
## 1040 telephone may wed 278 6 999 0 nonexistent
## 1041 telephone may wed 306 5 999 0 nonexistent
## 1042 telephone may wed 114 2 999 0 nonexistent
## 1043 telephone may wed 24 2 999 0 nonexistent
## 1044 telephone may wed 79 8 999 0 nonexistent
## 1045 telephone may wed 169 2 999 0 nonexistent
## 1046 telephone may wed 332 2 999 0 nonexistent
## 1048 telephone may wed 353 3 999 0 nonexistent
## 1049 telephone may wed 108 6 999 0 nonexistent
## 1050 telephone may wed 441 2 999 0 nonexistent
## 1051 telephone may wed 46 3 999 0 nonexistent
## 1052 telephone may wed 266 2 999 0 nonexistent
## 1055 telephone may wed 105 2 999 0 nonexistent
## 1056 telephone may wed 381 2 999 0 nonexistent
## 1057 telephone may wed 228 3 999 0 nonexistent
## 1058 telephone may wed 128 2 999 0 nonexistent
## 1059 telephone may wed 550 3 999 0 nonexistent
## 1061 telephone may wed 113 3 999 0 nonexistent
## 1062 telephone may wed 396 4 999 0 nonexistent
## 1063 telephone may wed 42 2 999 0 nonexistent
## 1064 telephone may wed 234 4 999 0 nonexistent
## 1065 telephone may wed 50 2 999 0 nonexistent
## 1066 telephone may wed 110 2 999 0 nonexistent
## 1067 telephone may wed 274 4 999 0 nonexistent
## 1068 telephone may wed 191 4 999 0 nonexistent
## 1069 telephone may wed 305 3 999 0 nonexistent
## 1070 telephone may wed 134 2 999 0 nonexistent
## 1071 telephone may wed 112 4 999 0 nonexistent
## 1072 telephone may wed 217 2 999 0 nonexistent
## 1074 telephone may wed 353 4 999 0 nonexistent
## 1075 telephone may wed 212 2 999 0 nonexistent
## 1077 telephone may wed 283 1 999 0 nonexistent
## 1079 telephone may wed 1574 2 999 0 nonexistent
## 1080 telephone may wed 139 3 999 0 nonexistent
## 1081 telephone may wed 62 5 999 0 nonexistent
## 1082 telephone may wed 256 3 999 0 nonexistent
## 1084 telephone may wed 161 2 999 0 nonexistent
## 1085 telephone may wed 245 3 999 0 nonexistent
## 1086 telephone may wed 89 3 999 0 nonexistent
## 1087 telephone may wed 591 3 999 0 nonexistent
## 1088 telephone may wed 113 2 999 0 nonexistent
## 1089 telephone may wed 517 3 999 0 nonexistent
## 1090 telephone may wed 193 3 999 0 nonexistent
## 1092 telephone may wed 348 3 999 0 nonexistent
## 1095 telephone may wed 253 8 999 0 nonexistent
## 1097 telephone may wed 164 5 999 0 nonexistent
## 1099 telephone may wed 191 2 999 0 nonexistent
## 1102 telephone may wed 114 3 999 0 nonexistent
## 1103 telephone may wed 126 5 999 0 nonexistent
## 1104 telephone may wed 161 3 999 0 nonexistent
## 1106 telephone may wed 155 1 999 0 nonexistent
## 1107 telephone may wed 152 3 999 0 nonexistent
## 1108 telephone may wed 145 1 999 0 nonexistent
## 1109 telephone may wed 66 3 999 0 nonexistent
## 1110 telephone may wed 123 2 999 0 nonexistent
## 1111 telephone may wed 74 1 999 0 nonexistent
## 1112 telephone may wed 248 3 999 0 nonexistent
## 1113 telephone may wed 275 2 999 0 nonexistent
## 1114 telephone may wed 984 1 999 0 nonexistent
## 1115 telephone may wed 1689 4 999 0 nonexistent
## 1116 telephone may wed 84 2 999 0 nonexistent
## 1118 telephone may wed 130 4 999 0 nonexistent
## 1119 telephone may wed 489 2 999 0 nonexistent
## 1120 telephone may wed 41 3 999 0 nonexistent
## 1121 telephone may wed 159 3 999 0 nonexistent
## 1122 telephone may wed 276 4 999 0 nonexistent
## 1123 telephone may wed 196 2 999 0 nonexistent
## 1124 telephone may wed 81 2 999 0 nonexistent
## 1125 telephone may wed 865 2 999 0 nonexistent
## 1126 telephone may wed 149 1 999 0 nonexistent
## 1127 telephone may wed 281 2 999 0 nonexistent
## 1128 telephone may wed 122 5 999 0 nonexistent
## 1129 telephone may wed 361 2 999 0 nonexistent
## 1130 telephone may wed 944 3 999 0 nonexistent
## 1131 telephone may wed 319 3 999 0 nonexistent
## 1132 telephone may wed 35 3 999 0 nonexistent
## 1133 telephone may wed 143 2 999 0 nonexistent
## 1134 telephone may wed 22 2 999 0 nonexistent
## 1135 telephone may wed 90 2 999 0 nonexistent
## 1136 telephone may wed 505 2 999 0 nonexistent
## 1137 telephone may wed 17 2 999 0 nonexistent
## 1138 telephone may wed 404 5 999 0 nonexistent
## 1139 telephone may wed 238 2 999 0 nonexistent
## 1140 telephone may wed 71 4 999 0 nonexistent
## 1142 telephone may wed 408 3 999 0 nonexistent
## 1143 telephone may wed 157 3 999 0 nonexistent
## 1144 telephone may wed 280 3 999 0 nonexistent
## 1147 telephone may thu 177 3 999 0 nonexistent
## 1151 telephone may thu 77 2 999 0 nonexistent
## 1152 telephone may thu 223 2 999 0 nonexistent
## 1153 telephone may thu 239 2 999 0 nonexistent
## 1154 telephone may thu 116 2 999 0 nonexistent
## 1155 telephone may thu 308 3 999 0 nonexistent
## 1156 telephone may thu 137 2 999 0 nonexistent
## 1158 telephone may thu 134 1 999 0 nonexistent
## 1160 telephone may thu 125 3 999 0 nonexistent
## 1161 telephone may thu 211 3 999 0 nonexistent
## 1162 telephone may thu 180 1 999 0 nonexistent
## 1163 telephone may thu 67 1 999 0 nonexistent
## 1165 telephone may thu 342 1 999 0 nonexistent
## 1166 telephone may thu 156 1 999 0 nonexistent
## 1167 telephone may thu 813 1 999 0 nonexistent
## 1168 telephone may thu 178 1 999 0 nonexistent
## 1169 telephone may thu 142 1 999 0 nonexistent
## 1170 telephone may thu 194 1 999 0 nonexistent
## 1171 telephone may thu 132 1 999 0 nonexistent
## 1172 telephone may thu 110 1 999 0 nonexistent
## 1173 telephone may thu 109 1 999 0 nonexistent
## 1174 telephone may thu 94 1 999 0 nonexistent
## 1175 telephone may thu 31 1 999 0 nonexistent
## 1176 telephone may thu 220 1 999 0 nonexistent
## 1177 telephone may thu 489 1 999 0 nonexistent
## 1178 telephone may thu 180 1 999 0 nonexistent
## 1179 telephone may thu 314 1 999 0 nonexistent
## 1180 telephone may thu 203 1 999 0 nonexistent
## 1181 telephone may thu 328 2 999 0 nonexistent
## 1182 telephone may thu 207 1 999 0 nonexistent
## 1183 telephone may thu 193 1 999 0 nonexistent
## 1185 telephone may thu 528 1 999 0 nonexistent
## 1186 telephone may thu 183 1 999 0 nonexistent
## 1187 telephone may thu 238 1 999 0 nonexistent
## 1188 telephone may thu 61 1 999 0 nonexistent
## 1189 telephone may thu 70 1 999 0 nonexistent
## 1191 telephone may thu 41 1 999 0 nonexistent
## 1192 telephone may thu 93 1 999 0 nonexistent
## 1193 telephone may thu 149 1 999 0 nonexistent
## 1194 telephone may thu 35 1 999 0 nonexistent
## 1195 telephone may thu 262 1 999 0 nonexistent
## 1196 telephone may thu 151 1 999 0 nonexistent
## 1198 telephone may thu 221 1 999 0 nonexistent
## 1200 telephone may thu 86 1 999 0 nonexistent
## 1201 telephone may thu 65 1 999 0 nonexistent
## 1202 telephone may thu 380 3 999 0 nonexistent
## 1203 telephone may thu 11 1 999 0 nonexistent
## 1204 telephone may thu 184 2 999 0 nonexistent
## 1205 telephone may thu 405 1 999 0 nonexistent
## 1208 telephone may thu 235 1 999 0 nonexistent
## 1209 telephone may thu 75 1 999 0 nonexistent
## 1210 telephone may thu 134 1 999 0 nonexistent
## 1211 telephone may thu 255 1 999 0 nonexistent
## 1212 telephone may thu 462 1 999 0 nonexistent
## 1214 telephone may thu 56 1 999 0 nonexistent
## 1216 telephone may thu 139 2 999 0 nonexistent
## 1217 telephone may thu 96 2 999 0 nonexistent
## 1219 telephone may thu 231 2 999 0 nonexistent
## 1220 telephone may thu 66 2 999 0 nonexistent
## 1222 telephone may thu 159 1 999 0 nonexistent
## 1223 telephone may thu 129 2 999 0 nonexistent
## 1224 telephone may thu 200 1 999 0 nonexistent
## 1225 telephone may thu 187 3 999 0 nonexistent
## 1226 telephone may thu 166 1 999 0 nonexistent
## 1227 telephone may thu 144 1 999 0 nonexistent
## 1228 telephone may thu 323 1 999 0 nonexistent
## 1229 telephone may thu 194 1 999 0 nonexistent
## 1230 telephone may thu 82 1 999 0 nonexistent
## 1231 telephone may thu 521 7 999 0 nonexistent
## 1232 telephone may thu 269 1 999 0 nonexistent
## 1233 telephone may thu 285 1 999 0 nonexistent
## 1234 telephone may thu 1119 1 999 0 nonexistent
## 1235 telephone may thu 294 1 999 0 nonexistent
## 1236 telephone may thu 106 1 999 0 nonexistent
## 1237 telephone may thu 158 1 999 0 nonexistent
## 1238 telephone may thu 152 1 999 0 nonexistent
## 1240 telephone may thu 187 1 999 0 nonexistent
## 1241 telephone may thu 268 1 999 0 nonexistent
## 1242 telephone may thu 193 1 999 0 nonexistent
## 1243 telephone may thu 95 1 999 0 nonexistent
## 1245 telephone may thu 206 1 999 0 nonexistent
## 1246 telephone may thu 155 1 999 0 nonexistent
## 1247 telephone may thu 216 1 999 0 nonexistent
## 1248 telephone may thu 103 3 999 0 nonexistent
## 1251 telephone may thu 147 1 999 0 nonexistent
## 1252 telephone may thu 190 1 999 0 nonexistent
## 1253 telephone may thu 339 2 999 0 nonexistent
## 1254 telephone may thu 198 1 999 0 nonexistent
## 1255 telephone may thu 141 1 999 0 nonexistent
## 1256 telephone may thu 255 1 999 0 nonexistent
## 1257 telephone may thu 1120 2 999 0 nonexistent
## 1259 telephone may thu 226 1 999 0 nonexistent
## 1260 telephone may thu 215 1 999 0 nonexistent
## 1262 telephone may thu 249 1 999 0 nonexistent
## 1263 telephone may thu 143 1 999 0 nonexistent
## 1265 telephone may thu 81 1 999 0 nonexistent
## 1266 telephone may thu 124 1 999 0 nonexistent
## 1268 telephone may thu 33 4 999 0 nonexistent
## 1269 telephone may thu 393 1 999 0 nonexistent
## 1270 telephone may thu 784 1 999 0 nonexistent
## 1272 telephone may thu 108 2 999 0 nonexistent
## 1273 telephone may thu 207 1 999 0 nonexistent
## 1274 telephone may thu 278 2 999 0 nonexistent
## 1275 telephone may thu 196 1 999 0 nonexistent
## 1277 telephone may thu 154 1 999 0 nonexistent
## 1278 telephone may thu 287 2 999 0 nonexistent
## 1279 telephone may thu 229 1 999 0 nonexistent
## 1280 telephone may thu 21 1 999 0 nonexistent
## 1281 telephone may thu 191 1 999 0 nonexistent
## 1284 telephone may thu 665 1 999 0 nonexistent
## 1285 telephone may thu 131 1 999 0 nonexistent
## 1286 telephone may thu 160 1 999 0 nonexistent
## 1289 telephone may thu 97 2 999 0 nonexistent
## 1290 telephone may thu 82 1 999 0 nonexistent
## 1291 telephone may thu 475 1 999 0 nonexistent
## 1292 telephone may thu 111 1 999 0 nonexistent
## 1294 telephone may thu 110 1 999 0 nonexistent
## 1295 telephone may thu 64 1 999 0 nonexistent
## 1296 telephone may thu 149 1 999 0 nonexistent
## 1297 telephone may thu 156 1 999 0 nonexistent
## 1298 telephone may thu 63 3 999 0 nonexistent
## 1299 telephone may thu 362 1 999 0 nonexistent
## 1300 telephone may thu 712 1 999 0 nonexistent
## 1301 telephone may thu 338 2 999 0 nonexistent
## 1302 telephone may thu 102 2 999 0 nonexistent
## 1303 telephone may thu 446 1 999 0 nonexistent
## 1304 telephone may thu 249 2 999 0 nonexistent
## 1305 telephone may thu 176 1 999 0 nonexistent
## 1306 telephone may thu 1007 1 999 0 nonexistent
## 1307 telephone may thu 266 1 999 0 nonexistent
## 1308 telephone may thu 172 1 999 0 nonexistent
## 1309 telephone may thu 175 1 999 0 nonexistent
## 1310 telephone may thu 211 2 999 0 nonexistent
## 1311 telephone may thu 237 1 999 0 nonexistent
## 1313 telephone may thu 186 1 999 0 nonexistent
## 1314 telephone may thu 96 1 999 0 nonexistent
## 1315 telephone may thu 98 1 999 0 nonexistent
## 1318 telephone may thu 319 1 999 0 nonexistent
## 1320 telephone may thu 513 1 999 0 nonexistent
## 1321 telephone may thu 280 2 999 0 nonexistent
## 1322 telephone may thu 170 1 999 0 nonexistent
## 1323 telephone may thu 365 1 999 0 nonexistent
## 1324 telephone may thu 63 2 999 0 nonexistent
## 1325 telephone may thu 159 4 999 0 nonexistent
## 1326 telephone may thu 177 2 999 0 nonexistent
## 1328 telephone may thu 194 3 999 0 nonexistent
## 1329 telephone may thu 366 2 999 0 nonexistent
## 1330 telephone may thu 213 1 999 0 nonexistent
## 1333 telephone may thu 168 2 999 0 nonexistent
## 1334 telephone may thu 468 1 999 0 nonexistent
## 1335 telephone may thu 180 1 999 0 nonexistent
## 1336 telephone may thu 195 1 999 0 nonexistent
## 1337 telephone may thu 352 3 999 0 nonexistent
## 1338 telephone may thu 91 1 999 0 nonexistent
## 1339 telephone may thu 93 2 999 0 nonexistent
## 1340 telephone may thu 288 1 999 0 nonexistent
## 1341 telephone may thu 218 2 999 0 nonexistent
## 1342 telephone may thu 289 1 999 0 nonexistent
## 1343 telephone may thu 130 3 999 0 nonexistent
## 1344 telephone may thu 208 1 999 0 nonexistent
## 1345 telephone may thu 177 1 999 0 nonexistent
## 1348 telephone may thu 166 1 999 0 nonexistent
## 1349 telephone may thu 756 1 999 0 nonexistent
## 1350 telephone may thu 342 1 999 0 nonexistent
## 1351 telephone may thu 189 1 999 0 nonexistent
## 1352 telephone may thu 108 1 999 0 nonexistent
## 1354 telephone may thu 238 1 999 0 nonexistent
## 1355 telephone may thu 226 1 999 0 nonexistent
## 1356 telephone may thu 136 1 999 0 nonexistent
## 1357 telephone may thu 14 1 999 0 nonexistent
## 1358 telephone may thu 250 1 999 0 nonexistent
## 1359 telephone may thu 161 1 999 0 nonexistent
## 1360 telephone may thu 269 3 999 0 nonexistent
## 1361 telephone may thu 491 1 999 0 nonexistent
## 1362 telephone may thu 44 1 999 0 nonexistent
## 1363 telephone may thu 26 1 999 0 nonexistent
## 1364 telephone may thu 22 1 999 0 nonexistent
## 1365 telephone may thu 293 2 999 0 nonexistent
## 1369 telephone may thu 807 2 999 0 nonexistent
## 1370 telephone may thu 347 2 999 0 nonexistent
## 1371 telephone may thu 58 2 999 0 nonexistent
## 1372 telephone may thu 534 2 999 0 nonexistent
## 1374 telephone may thu 159 2 999 0 nonexistent
## 1376 telephone may thu 152 2 999 0 nonexistent
## 1378 telephone may thu 389 2 999 0 nonexistent
## 1380 telephone may thu 314 3 999 0 nonexistent
## 1382 telephone may thu 30 2 999 0 nonexistent
## 1384 telephone may thu 32 2 999 0 nonexistent
## 1385 telephone may thu 252 2 999 0 nonexistent
## 1386 telephone may thu 20 2 999 0 nonexistent
## 1389 telephone may thu 302 2 999 0 nonexistent
## 1390 telephone may thu 31 1 999 0 nonexistent
## 1391 telephone may thu 190 1 999 0 nonexistent
## 1392 telephone may thu 149 1 999 0 nonexistent
## 1393 telephone may thu 210 1 999 0 nonexistent
## 1394 telephone may thu 180 2 999 0 nonexistent
## 1397 telephone may thu 2087 2 999 0 nonexistent
## 1398 telephone may thu 102 1 999 0 nonexistent
## 1400 telephone may thu 245 1 999 0 nonexistent
## 1401 telephone may thu 190 1 999 0 nonexistent
## 1402 telephone may thu 223 2 999 0 nonexistent
## 1403 telephone may thu 42 1 999 0 nonexistent
## 1404 telephone may thu 206 2 999 0 nonexistent
## 1405 telephone may thu 242 2 999 0 nonexistent
## 1406 telephone may thu 66 2 999 0 nonexistent
## 1407 telephone may thu 173 2 999 0 nonexistent
## 1408 telephone may thu 477 2 999 0 nonexistent
## 1409 telephone may thu 77 1 999 0 nonexistent
## 1411 telephone may thu 205 2 999 0 nonexistent
## 1413 telephone may thu 453 2 999 0 nonexistent
## 1416 telephone may thu 200 2 999 0 nonexistent
## 1418 telephone may thu 305 2 999 0 nonexistent
## 1419 telephone may thu 627 3 999 0 nonexistent
## 1420 telephone may thu 242 1 999 0 nonexistent
## 1422 telephone may thu 184 1 999 0 nonexistent
## 1423 telephone may thu 119 2 999 0 nonexistent
## 1425 telephone may thu 626 6 999 0 nonexistent
## 1426 telephone may thu 12 1 999 0 nonexistent
## 1434 telephone may thu 224 2 999 0 nonexistent
## 1435 telephone may thu 202 2 999 0 nonexistent
## 1436 telephone may thu 144 3 999 0 nonexistent
## 1438 telephone may thu 543 3 999 0 nonexistent
## 1439 telephone may thu 257 2 999 0 nonexistent
## 1440 telephone may thu 237 2 999 0 nonexistent
## 1441 telephone may thu 23 5 999 0 nonexistent
## 1442 telephone may thu 209 3 999 0 nonexistent
## 1443 telephone may thu 1178 2 999 0 nonexistent
## 1444 telephone may thu 442 2 999 0 nonexistent
## 1445 telephone may thu 1120 2 999 0 nonexistent
## 1446 telephone may thu 186 2 999 0 nonexistent
## 1448 telephone may thu 617 2 999 0 nonexistent
## 1449 telephone may thu 226 1 999 0 nonexistent
## 1450 telephone may thu 275 1 999 0 nonexistent
## 1451 telephone may thu 81 2 999 0 nonexistent
## 1452 telephone may thu 74 7 999 0 nonexistent
## 1453 telephone may thu 285 1 999 0 nonexistent
## 1454 telephone may thu 261 5 999 0 nonexistent
## 1455 telephone may thu 151 2 999 0 nonexistent
## 1456 telephone may thu 422 2 999 0 nonexistent
## 1457 telephone may thu 159 2 999 0 nonexistent
## 1458 telephone may thu 102 2 999 0 nonexistent
## 1459 telephone may thu 78 3 999 0 nonexistent
## 1460 telephone may thu 15 1 999 0 nonexistent
## 1461 telephone may thu 352 2 999 0 nonexistent
## 1464 telephone may thu 296 1 999 0 nonexistent
## 1465 telephone may thu 185 2 999 0 nonexistent
## 1466 telephone may thu 181 2 999 0 nonexistent
## 1467 telephone may thu 133 2 999 0 nonexistent
## 1468 telephone may thu 335 9 999 0 nonexistent
## 1469 telephone may thu 139 1 999 0 nonexistent
## 1470 telephone may thu 163 2 999 0 nonexistent
## 1471 telephone may thu 956 2 999 0 nonexistent
## 1472 telephone may thu 166 2 999 0 nonexistent
## 1473 telephone may thu 95 2 999 0 nonexistent
## 1474 telephone may thu 71 2 999 0 nonexistent
## 1475 telephone may thu 191 2 999 0 nonexistent
## 1477 telephone may thu 100 5 999 0 nonexistent
## 1478 telephone may thu 233 2 999 0 nonexistent
## 1480 telephone may thu 128 2 999 0 nonexistent
## 1481 telephone may thu 56 2 999 0 nonexistent
## 1482 telephone may thu 4 3 999 0 nonexistent
## 1484 telephone may thu 210 2 999 0 nonexistent
## 1485 telephone may thu 21 9 999 0 nonexistent
## 1486 telephone may thu 67 2 999 0 nonexistent
## 1487 telephone may thu 219 4 999 0 nonexistent
## 1489 telephone may thu 248 3 999 0 nonexistent
## 1491 telephone may thu 92 3 999 0 nonexistent
## 1492 telephone may thu 112 3 999 0 nonexistent
## 1493 telephone may thu 205 4 999 0 nonexistent
## 1495 telephone may thu 105 2 999 0 nonexistent
## 1496 telephone may thu 112 2 999 0 nonexistent
## 1497 telephone may thu 383 3 999 0 nonexistent
## 1499 telephone may thu 207 2 999 0 nonexistent
## 1500 telephone may thu 132 2 999 0 nonexistent
## 1501 telephone may thu 10 2 999 0 nonexistent
## 1502 telephone may thu 985 2 999 0 nonexistent
## 1503 telephone may thu 249 5 999 0 nonexistent
## 1504 telephone may thu 122 2 999 0 nonexistent
## 1505 telephone may thu 300 2 999 0 nonexistent
## 1506 telephone may thu 672 3 999 0 nonexistent
## 1507 telephone may thu 390 3 999 0 nonexistent
## 1508 telephone may thu 116 2 999 0 nonexistent
## 1509 telephone may thu 21 3 999 0 nonexistent
## 1510 telephone may thu 192 2 999 0 nonexistent
## 1511 telephone may thu 8 2 999 0 nonexistent
## 1512 telephone may thu 13 2 999 0 nonexistent
## 1514 telephone may thu 393 2 999 0 nonexistent
## 1518 telephone may thu 84 2 999 0 nonexistent
## 1519 telephone may thu 277 3 999 0 nonexistent
## 1520 telephone may thu 399 4 999 0 nonexistent
## 1522 telephone may thu 297 2 999 0 nonexistent
## 1523 telephone may thu 111 3 999 0 nonexistent
## 1526 telephone may thu 886 2 999 0 nonexistent
## 1527 telephone may thu 49 4 999 0 nonexistent
## 1528 telephone may thu 89 7 999 0 nonexistent
## 1529 telephone may thu 341 2 999 0 nonexistent
## 1530 telephone may thu 461 3 999 0 nonexistent
## 1531 telephone may thu 515 3 999 0 nonexistent
## 1532 telephone may thu 123 2 999 0 nonexistent
## 1534 telephone may thu 102 4 999 0 nonexistent
## 1536 telephone may thu 17 3 999 0 nonexistent
## 1537 telephone may thu 291 2 999 0 nonexistent
## 1538 telephone may thu 209 3 999 0 nonexistent
## 1539 telephone may thu 1187 2 999 0 nonexistent
## 1540 telephone may thu 89 5 999 0 nonexistent
## 1541 telephone may thu 123 2 999 0 nonexistent
## 1542 telephone may thu 200 2 999 0 nonexistent
## 1543 telephone may thu 104 3 999 0 nonexistent
## 1544 telephone may thu 117 3 999 0 nonexistent
## 1545 telephone may thu 37 3 999 0 nonexistent
## 1546 telephone may thu 51 3 999 0 nonexistent
## 1548 telephone may thu 466 2 999 0 nonexistent
## 1549 telephone may thu 101 2 999 0 nonexistent
## 1550 telephone may thu 303 3 999 0 nonexistent
## 1552 telephone may thu 826 3 999 0 nonexistent
## 1553 telephone may thu 598 3 999 0 nonexistent
## 1556 telephone may thu 220 2 999 0 nonexistent
## 1557 telephone may thu 423 2 999 0 nonexistent
## 1559 telephone may thu 99 3 999 0 nonexistent
## 1560 telephone may thu 27 3 999 0 nonexistent
## 1562 telephone may thu 201 2 999 0 nonexistent
## 1563 telephone may thu 166 3 999 0 nonexistent
## 1564 telephone may thu 182 1 999 0 nonexistent
## 1565 telephone may thu 271 5 999 0 nonexistent
## 1567 telephone may thu 379 4 999 0 nonexistent
## 1570 telephone may thu 126 3 999 0 nonexistent
## 1571 telephone may thu 172 4 999 0 nonexistent
## 1574 telephone may thu 191 2 999 0 nonexistent
## 1575 telephone may thu 117 2 999 0 nonexistent
## 1576 telephone may thu 64 1 999 0 nonexistent
## 1577 telephone may thu 260 5 999 0 nonexistent
## 1578 telephone may thu 207 3 999 0 nonexistent
## 1579 telephone may thu 128 3 999 0 nonexistent
## 1581 telephone may fri 144 2 999 0 nonexistent
## 1582 telephone may fri 110 4 999 0 nonexistent
## 1583 telephone may fri 203 4 999 0 nonexistent
## 1584 telephone may fri 85 2 999 0 nonexistent
## 1586 telephone may fri 94 2 999 0 nonexistent
## 1587 telephone may fri 122 4 999 0 nonexistent
## 1588 telephone may fri 175 5 999 0 nonexistent
## 1590 telephone may fri 130 2 999 0 nonexistent
## 1591 telephone may fri 208 2 999 0 nonexistent
## 1593 telephone may fri 205 1 999 0 nonexistent
## 1595 telephone may fri 62 1 999 0 nonexistent
## 1596 telephone may fri 93 5 999 0 nonexistent
## 1597 telephone may fri 85 2 999 0 nonexistent
## 1598 telephone may fri 97 1 999 0 nonexistent
## 1599 telephone may fri 252 4 999 0 nonexistent
## 1600 telephone may fri 286 1 999 0 nonexistent
## 1602 telephone may fri 283 1 999 0 nonexistent
## 1603 telephone may fri 380 1 999 0 nonexistent
## 1604 telephone may fri 584 1 999 0 nonexistent
## 1605 telephone may fri 371 1 999 0 nonexistent
## 1606 telephone may fri 274 1 999 0 nonexistent
## 1607 telephone may fri 71 3 999 0 nonexistent
## 1608 telephone may fri 357 1 999 0 nonexistent
## 1610 telephone may fri 215 1 999 0 nonexistent
## 1611 telephone may fri 131 1 999 0 nonexistent
## 1612 telephone may fri 188 1 999 0 nonexistent
## 1613 telephone may fri 383 3 999 0 nonexistent
## 1615 telephone may fri 847 1 999 0 nonexistent
## 1616 telephone may fri 57 2 999 0 nonexistent
## 1617 telephone may fri 306 1 999 0 nonexistent
## 1618 telephone may fri 147 1 999 0 nonexistent
## 1619 telephone may fri 244 1 999 0 nonexistent
## 1620 telephone may fri 59 1 999 0 nonexistent
## 1621 telephone may fri 24 1 999 0 nonexistent
## 1622 telephone may fri 85 2 999 0 nonexistent
## 1624 telephone may fri 21 1 999 0 nonexistent
## 1625 telephone may fri 659 2 999 0 nonexistent
## 1626 telephone may fri 327 2 999 0 nonexistent
## 1627 telephone may fri 267 1 999 0 nonexistent
## 1628 telephone may fri 296 3 999 0 nonexistent
## 1629 telephone may fri 307 1 999 0 nonexistent
## 1630 telephone may fri 120 1 999 0 nonexistent
## 1631 telephone may fri 390 2 999 0 nonexistent
## 1632 telephone may fri 83 2 999 0 nonexistent
## 1635 telephone may fri 198 1 999 0 nonexistent
## 1636 telephone may fri 100 1 999 0 nonexistent
## 1637 telephone may fri 929 3 999 0 nonexistent
## 1638 telephone may fri 21 3 999 0 nonexistent
## 1639 telephone may fri 254 1 999 0 nonexistent
## 1640 telephone may fri 166 1 999 0 nonexistent
## 1642 telephone may fri 217 2 999 0 nonexistent
## 1644 telephone may fri 375 2 999 0 nonexistent
## 1645 telephone may fri 352 1 999 0 nonexistent
## 1646 telephone may fri 45 1 999 0 nonexistent
## 1647 telephone may fri 93 1 999 0 nonexistent
## 1648 telephone may fri 165 1 999 0 nonexistent
## 1649 telephone may fri 266 1 999 0 nonexistent
## 1650 telephone may fri 237 1 999 0 nonexistent
## 1651 telephone may fri 410 1 999 0 nonexistent
## 1652 telephone may fri 157 1 999 0 nonexistent
## 1654 telephone may fri 171 1 999 0 nonexistent
## 1655 telephone may fri 70 3 999 0 nonexistent
## 1657 telephone may fri 131 3 999 0 nonexistent
## 1658 telephone may fri 498 1 999 0 nonexistent
## 1659 telephone may fri 514 1 999 0 nonexistent
## 1660 telephone may fri 127 1 999 0 nonexistent
## 1661 telephone may fri 162 1 999 0 nonexistent
## 1662 telephone may fri 198 1 999 0 nonexistent
## 1663 telephone may fri 705 1 999 0 nonexistent
## 1665 telephone may fri 117 1 999 0 nonexistent
## 1666 telephone may fri 155 1 999 0 nonexistent
## 1667 telephone may fri 18 1 999 0 nonexistent
## 1668 telephone may fri 386 1 999 0 nonexistent
## 1669 telephone may fri 138 1 999 0 nonexistent
## 1670 telephone may fri 341 1 999 0 nonexistent
## 1671 telephone may fri 339 2 999 0 nonexistent
## 1672 telephone may fri 232 1 999 0 nonexistent
## 1673 telephone may fri 208 1 999 0 nonexistent
## 1674 telephone may fri 44 1 999 0 nonexistent
## 1675 telephone may fri 75 1 999 0 nonexistent
## 1676 telephone may fri 485 1 999 0 nonexistent
## 1677 telephone may fri 576 1 999 0 nonexistent
## 1678 telephone may fri 280 1 999 0 nonexistent
## 1679 telephone may fri 480 2 999 0 nonexistent
## 1680 telephone may fri 86 2 999 0 nonexistent
## 1681 telephone may fri 121 4 999 0 nonexistent
## 1682 telephone may fri 93 2 999 0 nonexistent
## 1683 telephone may fri 238 2 999 0 nonexistent
## 1684 telephone may fri 399 3 999 0 nonexistent
## 1685 telephone may fri 93 2 999 0 nonexistent
## 1687 telephone may fri 123 1 999 0 nonexistent
## 1690 telephone may fri 2462 1 999 0 nonexistent
## 1691 telephone may fri 114 1 999 0 nonexistent
## 1692 telephone may fri 1132 2 999 0 nonexistent
## 1693 telephone may fri 249 3 999 0 nonexistent
## 1694 telephone may fri 210 1 999 0 nonexistent
## 1695 telephone may fri 187 1 999 0 nonexistent
## 1696 telephone may fri 172 1 999 0 nonexistent
## 1697 telephone may fri 122 1 999 0 nonexistent
## 1698 telephone may fri 207 1 999 0 nonexistent
## 1699 telephone may fri 136 2 999 0 nonexistent
## 1700 telephone may fri 117 2 999 0 nonexistent
## 1701 telephone may fri 393 1 999 0 nonexistent
## 1702 telephone may fri 107 1 999 0 nonexistent
## 1703 telephone may fri 25 1 999 0 nonexistent
## 1705 telephone may fri 384 2 999 0 nonexistent
## 1706 telephone may fri 38 1 999 0 nonexistent
## 1707 telephone may fri 164 1 999 0 nonexistent
## 1708 telephone may fri 825 1 999 0 nonexistent
## 1709 telephone may fri 331 1 999 0 nonexistent
## 1710 telephone may fri 479 2 999 0 nonexistent
## 1711 telephone may fri 229 2 999 0 nonexistent
## 1712 telephone may fri 258 2 999 0 nonexistent
## 1713 telephone may fri 490 1 999 0 nonexistent
## 1714 telephone may fri 308 1 999 0 nonexistent
## 1715 telephone may fri 137 1 999 0 nonexistent
## 1716 telephone may fri 545 2 999 0 nonexistent
## 1717 telephone may fri 109 1 999 0 nonexistent
## 1718 telephone may fri 257 6 999 0 nonexistent
## 1719 telephone may fri 213 2 999 0 nonexistent
## 1720 telephone may fri 115 1 999 0 nonexistent
## 1721 telephone may fri 646 1 999 0 nonexistent
## 1724 telephone may fri 95 2 999 0 nonexistent
## 1725 telephone may fri 64 1 999 0 nonexistent
## 1726 telephone may fri 653 1 999 0 nonexistent
## 1727 telephone may fri 186 1 999 0 nonexistent
## 1728 telephone may fri 205 1 999 0 nonexistent
## 1729 telephone may fri 122 1 999 0 nonexistent
## 1730 telephone may fri 377 1 999 0 nonexistent
## 1731 telephone may fri 322 1 999 0 nonexistent
## 1732 telephone may fri 208 3 999 0 nonexistent
## 1734 telephone may fri 211 2 999 0 nonexistent
## 1735 telephone may fri 156 2 999 0 nonexistent
## 1737 telephone may fri 206 2 999 0 nonexistent
## 1738 telephone may fri 544 1 999 0 nonexistent
## 1739 telephone may fri 143 1 999 0 nonexistent
## 1740 telephone may fri 200 3 999 0 nonexistent
## 1741 telephone may fri 71 1 999 0 nonexistent
## 1743 telephone may fri 164 5 999 0 nonexistent
## 1744 telephone may fri 137 3 999 0 nonexistent
## 1745 telephone may fri 87 2 999 0 nonexistent
## 1746 telephone may fri 91 2 999 0 nonexistent
## 1747 telephone may fri 280 1 999 0 nonexistent
## 1748 telephone may fri 230 2 999 0 nonexistent
## 1750 telephone may fri 135 1 999 0 nonexistent
## 1751 telephone may fri 261 1 999 0 nonexistent
## 1752 telephone may fri 215 2 999 0 nonexistent
## 1753 telephone may fri 125 1 999 0 nonexistent
## 1754 telephone may fri 391 2 999 0 nonexistent
## 1755 telephone may fri 107 3 999 0 nonexistent
## 1756 telephone may fri 108 2 999 0 nonexistent
## 1759 telephone may fri 106 1 999 0 nonexistent
## 1760 telephone may fri 134 1 999 0 nonexistent
## 1761 telephone may fri 190 1 999 0 nonexistent
## 1763 telephone may fri 180 1 999 0 nonexistent
## 1764 telephone may fri 654 1 999 0 nonexistent
## 1768 telephone may fri 62 1 999 0 nonexistent
## 1769 telephone may fri 323 1 999 0 nonexistent
## 1770 telephone may fri 111 2 999 0 nonexistent
## 1772 telephone may fri 224 3 999 0 nonexistent
## 1774 telephone may fri 150 2 999 0 nonexistent
## 1775 telephone may fri 388 2 999 0 nonexistent
## 1776 telephone may fri 194 1 999 0 nonexistent
## 1777 telephone may fri 57 2 999 0 nonexistent
## 1779 telephone may fri 188 1 999 0 nonexistent
## 1780 telephone may fri 342 1 999 0 nonexistent
## 1781 telephone may fri 84 1 999 0 nonexistent
## 1783 telephone may fri 97 1 999 0 nonexistent
## 1784 telephone may fri 365 1 999 0 nonexistent
## 1785 telephone may fri 285 1 999 0 nonexistent
## 1786 telephone may fri 352 1 999 0 nonexistent
## 1788 telephone may fri 79 4 999 0 nonexistent
## 1789 telephone may fri 331 2 999 0 nonexistent
## 1791 telephone may fri 76 2 999 0 nonexistent
## 1793 telephone may fri 24 1 999 0 nonexistent
## 1794 telephone may fri 73 1 999 0 nonexistent
## 1795 telephone may fri 253 1 999 0 nonexistent
## 1796 telephone may fri 622 1 999 0 nonexistent
## 1798 telephone may fri 178 1 999 0 nonexistent
## 1799 telephone may fri 404 2 999 0 nonexistent
## 1802 telephone may fri 134 1 999 0 nonexistent
## 1805 telephone may fri 93 3 999 0 nonexistent
## 1806 telephone may fri 20 1 999 0 nonexistent
## 1808 telephone may fri 129 3 999 0 nonexistent
## 1810 telephone may fri 2016 2 999 0 nonexistent
## 1811 telephone may fri 1054 2 999 0 nonexistent
## 1813 telephone may fri 279 2 999 0 nonexistent
## 1814 telephone may fri 251 2 999 0 nonexistent
## 1815 telephone may fri 113 4 999 0 nonexistent
## 1818 telephone may fri 282 2 999 0 nonexistent
## 1819 telephone may fri 344 2 999 0 nonexistent
## 1820 telephone may fri 665 2 999 0 nonexistent
## 1821 telephone may fri 67 3 999 0 nonexistent
## 1822 telephone may fri 167 4 999 0 nonexistent
## 1823 telephone may fri 395 1 999 0 nonexistent
## 1824 telephone may fri 137 2 999 0 nonexistent
## 1825 telephone may fri 118 1 999 0 nonexistent
## 1826 telephone may fri 231 2 999 0 nonexistent
## 1827 telephone may fri 128 1 999 0 nonexistent
## 1828 telephone may fri 174 1 999 0 nonexistent
## 1829 telephone may fri 195 1 999 0 nonexistent
## 1830 telephone may fri 412 1 999 0 nonexistent
## 1831 telephone may fri 127 1 999 0 nonexistent
## 1833 telephone may fri 13 1 999 0 nonexistent
## 1834 telephone may fri 61 1 999 0 nonexistent
## 1835 telephone may fri 286 5 999 0 nonexistent
## 1837 telephone may fri 409 3 999 0 nonexistent
## 1838 telephone may fri 325 1 999 0 nonexistent
## 1839 telephone may fri 144 2 999 0 nonexistent
## 1840 telephone may fri 1713 1 999 0 nonexistent
## 1841 telephone may fri 241 2 999 0 nonexistent
## 1842 telephone may fri 338 3 999 0 nonexistent
## 1844 telephone may fri 346 3 999 0 nonexistent
## 1845 telephone may fri 204 2 999 0 nonexistent
## 1846 telephone may fri 296 2 999 0 nonexistent
## 1847 telephone may fri 551 2 999 0 nonexistent
## 1850 telephone may fri 153 1 999 0 nonexistent
## 1851 telephone may fri 188 2 999 0 nonexistent
## 1853 telephone may fri 1080 5 999 0 nonexistent
## 1854 telephone may fri 1461 2 999 0 nonexistent
## 1855 telephone may fri 116 1 999 0 nonexistent
## 1856 telephone may fri 129 2 999 0 nonexistent
## 1857 telephone may fri 98 3 999 0 nonexistent
## 1858 telephone may fri 262 1 999 0 nonexistent
## 1859 telephone may fri 147 7 999 0 nonexistent
## 1860 telephone may fri 150 1 999 0 nonexistent
## 1861 telephone may fri 282 2 999 0 nonexistent
## 1862 telephone may fri 332 2 999 0 nonexistent
## 1863 telephone may fri 94 1 999 0 nonexistent
## 1864 telephone may fri 455 1 999 0 nonexistent
## 1865 telephone may fri 49 1 999 0 nonexistent
## 1866 telephone may fri 181 1 999 0 nonexistent
## 1867 telephone may fri 345 9 999 0 nonexistent
## 1868 telephone may fri 154 3 999 0 nonexistent
## 1869 telephone may fri 294 2 999 0 nonexistent
## 1870 telephone may fri 750 7 999 0 nonexistent
## 1871 telephone may fri 202 2 999 0 nonexistent
## 1872 telephone may fri 191 2 999 0 nonexistent
## 1874 telephone may fri 214 2 999 0 nonexistent
## 1875 telephone may fri 128 1 999 0 nonexistent
## 1876 telephone may fri 70 1 999 0 nonexistent
## 1877 telephone may fri 279 1 999 0 nonexistent
## 1878 telephone may fri 400 2 999 0 nonexistent
## 1879 telephone may fri 231 2 999 0 nonexistent
## 1880 telephone may fri 175 2 999 0 nonexistent
## 1881 telephone may fri 70 4 999 0 nonexistent
## 1882 telephone may fri 179 2 999 0 nonexistent
## 1883 telephone may fri 107 4 999 0 nonexistent
## 1884 telephone may fri 142 2 999 0 nonexistent
## 1885 telephone may fri 119 2 999 0 nonexistent
## 1886 telephone may fri 180 3 999 0 nonexistent
## 1887 telephone may fri 135 2 999 0 nonexistent
## 1888 telephone may fri 213 2 999 0 nonexistent
## 1889 telephone may fri 136 2 999 0 nonexistent
## 1890 telephone may fri 44 3 999 0 nonexistent
## 1892 telephone may fri 184 2 999 0 nonexistent
## 1893 telephone may fri 32 2 999 0 nonexistent
## 1894 telephone may fri 73 4 999 0 nonexistent
## 1895 telephone may fri 126 2 999 0 nonexistent
## 1897 telephone may fri 379 2 999 0 nonexistent
## 1902 telephone may fri 89 2 999 0 nonexistent
## 1903 telephone may fri 210 3 999 0 nonexistent
## 1904 telephone may fri 393 2 999 0 nonexistent
## 1905 telephone may fri 128 3 999 0 nonexistent
## 1906 telephone may fri 161 2 999 0 nonexistent
## 1907 telephone may fri 1178 4 999 0 nonexistent
## 1908 telephone may fri 182 7 999 0 nonexistent
## 1910 telephone may fri 177 2 999 0 nonexistent
## 1911 telephone may fri 191 2 999 0 nonexistent
## 1912 telephone may fri 245 4 999 0 nonexistent
## 1914 telephone may fri 488 2 999 0 nonexistent
## 1915 telephone may fri 211 2 999 0 nonexistent
## 1916 telephone may fri 226 2 999 0 nonexistent
## 1917 telephone may fri 460 2 999 0 nonexistent
## 1919 telephone may fri 136 3 999 0 nonexistent
## 1920 telephone may fri 176 2 999 0 nonexistent
## 1922 telephone may fri 237 3 999 0 nonexistent
## 1923 telephone may fri 134 3 999 0 nonexistent
## 1924 telephone may fri 44 2 999 0 nonexistent
## 1925 telephone may fri 47 5 999 0 nonexistent
## 1926 telephone may fri 483 1 999 0 nonexistent
## 1927 telephone may fri 116 3 999 0 nonexistent
## 1928 telephone may fri 182 3 999 0 nonexistent
## 1929 telephone may fri 122 2 999 0 nonexistent
## 1930 telephone may fri 232 2 999 0 nonexistent
## 1931 telephone may fri 51 3 999 0 nonexistent
## 1932 telephone may fri 260 4 999 0 nonexistent
## 1933 telephone may fri 214 2 999 0 nonexistent
## 1934 telephone may fri 407 4 999 0 nonexistent
## 1935 telephone may fri 389 2 999 0 nonexistent
## 1936 telephone may fri 31 3 999 0 nonexistent
## 1937 telephone may fri 145 3 999 0 nonexistent
## 1938 telephone may fri 115 2 999 0 nonexistent
## 1939 telephone may fri 878 3 999 0 nonexistent
## 1940 telephone may fri 268 2 999 0 nonexistent
## 1942 telephone may fri 101 6 999 0 nonexistent
## 1943 telephone may fri 119 2 999 0 nonexistent
## 1944 telephone may fri 185 2 999 0 nonexistent
## 1945 telephone may fri 162 2 999 0 nonexistent
## 1946 telephone may fri 18 7 999 0 nonexistent
## 1947 telephone may fri 317 2 999 0 nonexistent
## 1948 telephone may fri 71 3 999 0 nonexistent
## 1949 telephone may fri 43 2 999 0 nonexistent
## 1950 telephone may fri 298 2 999 0 nonexistent
## 1952 telephone may fri 255 2 999 0 nonexistent
## 1953 telephone may fri 83 3 999 0 nonexistent
## 1954 telephone may fri 194 3 999 0 nonexistent
## 1955 telephone may fri 268 3 999 0 nonexistent
## 1956 telephone may fri 97 1 999 0 nonexistent
## 1957 telephone may fri 263 5 999 0 nonexistent
## 1958 telephone may fri 338 4 999 0 nonexistent
## 1959 telephone may fri 180 2 999 0 nonexistent
## 1960 telephone may fri 322 5 999 0 nonexistent
## 1961 telephone may fri 64 4 999 0 nonexistent
## 1962 telephone may fri 71 4 999 0 nonexistent
## 1965 telephone may fri 210 3 999 0 nonexistent
## 1966 telephone may fri 160 3 999 0 nonexistent
## 1967 telephone may fri 77 2 999 0 nonexistent
## 1969 telephone may fri 164 8 999 0 nonexistent
## 1970 telephone may fri 154 2 999 0 nonexistent
## 1971 telephone may fri 155 3 999 0 nonexistent
## 1973 telephone may fri 111 2 999 0 nonexistent
## 1975 telephone may fri 213 4 999 0 nonexistent
## 1977 telephone may fri 315 4 999 0 nonexistent
## 1978 telephone may fri 102 3 999 0 nonexistent
## 1981 telephone may fri 834 9 999 0 nonexistent
## 1982 telephone may fri 244 5 999 0 nonexistent
## 1983 telephone may fri 143 3 999 0 nonexistent
## 1985 telephone may fri 1534 2 999 0 nonexistent
## 1986 telephone may fri 291 4 999 0 nonexistent
## 1987 telephone may mon 163 2 999 0 nonexistent
## 1989 telephone may mon 33 4 999 0 nonexistent
## 1990 telephone may mon 144 6 999 0 nonexistent
## 1991 telephone may mon 146 4 999 0 nonexistent
## 1992 telephone may mon 40 3 999 0 nonexistent
## 1993 telephone may mon 79 6 999 0 nonexistent
## 1994 telephone may mon 112 2 999 0 nonexistent
## 1995 telephone may mon 147 5 999 0 nonexistent
## 1996 telephone may mon 836 4 999 0 nonexistent
## 1997 telephone may mon 290 5 999 0 nonexistent
## 1998 telephone may mon 148 2 999 0 nonexistent
## 1999 telephone may mon 289 5 999 0 nonexistent
## 2000 telephone may mon 345 2 999 0 nonexistent
## 2002 telephone may mon 181 4 999 0 nonexistent
## 2003 telephone may mon 460 5 999 0 nonexistent
## 2004 telephone may mon 129 2 999 0 nonexistent
## 2005 telephone may mon 76 2 999 0 nonexistent
## 2006 telephone may mon 111 2 999 0 nonexistent
## 2007 telephone may mon 98 3 999 0 nonexistent
## 2008 telephone may mon 221 2 999 0 nonexistent
## 2009 telephone may mon 150 7 999 0 nonexistent
## 2011 telephone may mon 139 6 999 0 nonexistent
## 2013 telephone may mon 149 5 999 0 nonexistent
## 2014 telephone may mon 327 2 999 0 nonexistent
## 2015 telephone may mon 92 4 999 0 nonexistent
## 2016 telephone may mon 111 2 999 0 nonexistent
## 2017 telephone may mon 192 2 999 0 nonexistent
## 2019 telephone may mon 592 2 999 0 nonexistent
## 2020 telephone may mon 105 3 999 0 nonexistent
## 2021 telephone may mon 62 2 999 0 nonexistent
## 2022 telephone may mon 114 5 999 0 nonexistent
## 2023 telephone may mon 59 4 999 0 nonexistent
## 2024 telephone may mon 144 7 999 0 nonexistent
## 2025 telephone may mon 346 4 999 0 nonexistent
## 2026 telephone may mon 57 2 999 0 nonexistent
## 2028 telephone may mon 286 4 999 0 nonexistent
## 2029 telephone may mon 59 4 999 0 nonexistent
## 2030 telephone may mon 38 4 999 0 nonexistent
## 2032 telephone may mon 566 7 999 0 nonexistent
## 2033 telephone may mon 167 2 999 0 nonexistent
## 2034 telephone may mon 127 2 999 0 nonexistent
## 2035 telephone may mon 71 2 999 0 nonexistent
## 2036 telephone may mon 120 2 999 0 nonexistent
## 2037 telephone may mon 409 2 999 0 nonexistent
## 2039 telephone may mon 177 4 999 0 nonexistent
## 2040 telephone may mon 757 2 999 0 nonexistent
## 2042 telephone may mon 124 1 999 0 nonexistent
## 2043 telephone may mon 36 4 999 0 nonexistent
## 2044 telephone may mon 94 2 999 0 nonexistent
## 2045 telephone may mon 189 1 999 0 nonexistent
## 2046 telephone may mon 24 1 999 0 nonexistent
## 2048 telephone may mon 185 1 999 0 nonexistent
## 2049 telephone may mon 122 1 999 0 nonexistent
## 2050 telephone may mon 225 1 999 0 nonexistent
## 2051 telephone may mon 165 1 999 0 nonexistent
## 2052 telephone may mon 186 1 999 0 nonexistent
## 2053 telephone may mon 405 3 999 0 nonexistent
## 2054 telephone may mon 172 2 999 0 nonexistent
## 2055 telephone may mon 207 3 999 0 nonexistent
## 2057 telephone may mon 57 8 999 0 nonexistent
## 2058 telephone may mon 102 1 999 0 nonexistent
## 2059 telephone may mon 164 3 999 0 nonexistent
## 2060 telephone may mon 288 2 999 0 nonexistent
## 2061 telephone may mon 154 1 999 0 nonexistent
## 2063 telephone may mon 136 2 999 0 nonexistent
## 2064 telephone may mon 53 1 999 0 nonexistent
## 2065 telephone may mon 744 6 999 0 nonexistent
## 2066 telephone may mon 202 1 999 0 nonexistent
## 2068 telephone may mon 130 3 999 0 nonexistent
## 2069 telephone may mon 523 1 999 0 nonexistent
## 2070 telephone may mon 231 1 999 0 nonexistent
## 2071 telephone may mon 217 1 999 0 nonexistent
## 2072 telephone may mon 151 1 999 0 nonexistent
## 2073 telephone may mon 293 1 999 0 nonexistent
## 2074 telephone may mon 281 1 999 0 nonexistent
## 2075 telephone may mon 363 2 999 0 nonexistent
## 2076 telephone may mon 86 1 999 0 nonexistent
## 2078 telephone may mon 486 1 999 0 nonexistent
## 2079 telephone may mon 49 2 999 0 nonexistent
## 2080 telephone may mon 170 2 999 0 nonexistent
## 2081 telephone may mon 539 1 999 0 nonexistent
## 2082 telephone may mon 66 3 999 0 nonexistent
## 2083 telephone may mon 820 1 999 0 nonexistent
## 2085 telephone may mon 398 1 999 0 nonexistent
## 2086 telephone may mon 112 1 999 0 nonexistent
## 2087 telephone may mon 64 1 999 0 nonexistent
## 2088 telephone may mon 255 1 999 0 nonexistent
## 2089 telephone may mon 95 8 999 0 nonexistent
## 2090 telephone may mon 140 3 999 0 nonexistent
## 2091 telephone may mon 788 2 999 0 nonexistent
## 2093 telephone may mon 194 2 999 0 nonexistent
## 2095 telephone may mon 306 2 999 0 nonexistent
## 2097 telephone may mon 501 2 999 0 nonexistent
## 2098 telephone may mon 832 3 999 0 nonexistent
## 2099 telephone may mon 214 4 999 0 nonexistent
## 2100 telephone may mon 283 6 999 0 nonexistent
## 2101 telephone may mon 101 2 999 0 nonexistent
## 2102 telephone may mon 77 2 999 0 nonexistent
## 2103 telephone may mon 290 6 999 0 nonexistent
## 2104 telephone may mon 388 2 999 0 nonexistent
## 2106 telephone may mon 1495 4 999 0 nonexistent
## 2108 telephone may mon 480 1 999 0 nonexistent
## 2110 telephone may mon 393 1 999 0 nonexistent
## 2111 telephone may mon 744 2 999 0 nonexistent
## 2113 telephone may mon 215 1 999 0 nonexistent
## 2115 telephone may mon 315 1 999 0 nonexistent
## 2116 telephone may mon 162 1 999 0 nonexistent
## 2117 telephone may mon 493 1 999 0 nonexistent
## 2118 telephone may mon 225 1 999 0 nonexistent
## 2119 telephone may mon 208 1 999 0 nonexistent
## 2120 telephone may mon 80 4 999 0 nonexistent
## 2121 telephone may mon 39 3 999 0 nonexistent
## 2122 telephone may mon 132 1 999 0 nonexistent
## 2123 telephone may mon 101 1 999 0 nonexistent
## 2124 telephone may mon 188 1 999 0 nonexistent
## 2125 telephone may mon 386 2 999 0 nonexistent
## 2126 telephone may mon 457 4 999 0 nonexistent
## 2127 telephone may mon 891 1 999 0 nonexistent
## 2128 telephone may mon 53 1 999 0 nonexistent
## 2131 telephone may mon 1083 2 999 0 nonexistent
## 2133 telephone may mon 1266 1 999 0 nonexistent
## 2134 telephone may mon 171 6 999 0 nonexistent
## 2135 telephone may mon 160 4 999 0 nonexistent
## 2136 telephone may mon 178 2 999 0 nonexistent
## 2137 telephone may mon 156 3 999 0 nonexistent
## 2139 telephone may mon 154 2 999 0 nonexistent
## 2142 telephone may mon 470 1 999 0 nonexistent
## 2143 telephone may mon 268 4 999 0 nonexistent
## 2144 telephone may mon 793 5 999 0 nonexistent
## 2145 telephone may mon 219 4 999 0 nonexistent
## 2147 telephone may mon 246 1 999 0 nonexistent
## 2148 telephone may mon 194 3 999 0 nonexistent
## 2152 telephone may mon 88 2 999 0 nonexistent
## 2153 telephone may mon 146 1 999 0 nonexistent
## 2154 telephone may mon 596 1 999 0 nonexistent
## 2156 telephone may mon 139 1 999 0 nonexistent
## 2158 telephone may mon 177 3 999 0 nonexistent
## 2159 telephone may mon 335 1 999 0 nonexistent
## 2160 telephone may mon 262 2 999 0 nonexistent
## 2161 telephone may mon 115 1 999 0 nonexistent
## 2162 telephone may mon 136 4 999 0 nonexistent
## 2163 telephone may mon 289 3 999 0 nonexistent
## 2164 telephone may mon 529 2 999 0 nonexistent
## 2165 telephone may mon 247 2 999 0 nonexistent
## 2167 telephone may mon 166 2 999 0 nonexistent
## 2168 telephone may mon 320 3 999 0 nonexistent
## 2169 telephone may mon 307 4 999 0 nonexistent
## 2170 telephone may mon 220 3 999 0 nonexistent
## 2171 telephone may mon 241 3 999 0 nonexistent
## 2172 telephone may mon 241 1 999 0 nonexistent
## 2173 telephone may mon 198 3 999 0 nonexistent
## 2174 telephone may mon 98 2 999 0 nonexistent
## 2175 telephone may mon 391 2 999 0 nonexistent
## 2176 telephone may mon 126 2 999 0 nonexistent
## 2177 telephone may mon 55 2 999 0 nonexistent
## 2179 telephone may mon 166 2 999 0 nonexistent
## 2180 telephone may mon 66 4 999 0 nonexistent
## 2182 telephone may mon 311 3 999 0 nonexistent
## 2185 telephone may mon 92 3 999 0 nonexistent
## 2186 telephone may mon 253 2 999 0 nonexistent
## 2187 telephone may mon 65 1 999 0 nonexistent
## 2188 telephone may mon 41 1 999 0 nonexistent
## 2189 telephone may mon 163 2 999 0 nonexistent
## 2190 telephone may mon 10 11 999 0 nonexistent
## 2191 telephone may mon 221 1 999 0 nonexistent
## 2192 telephone may mon 484 3 999 0 nonexistent
## 2193 telephone may mon 467 5 999 0 nonexistent
## 2194 telephone may mon 241 3 999 0 nonexistent
## 2195 telephone may mon 248 2 999 0 nonexistent
## 2196 telephone may mon 198 3 999 0 nonexistent
## 2197 telephone may mon 212 2 999 0 nonexistent
## 2198 telephone may mon 115 4 999 0 nonexistent
## 2199 telephone may mon 58 7 999 0 nonexistent
## 2201 telephone may mon 145 4 999 0 nonexistent
## 2202 telephone may mon 300 3 999 0 nonexistent
## 2203 telephone may mon 264 2 999 0 nonexistent
## 2206 telephone may mon 65 5 999 0 nonexistent
## 2207 telephone may mon 299 5 999 0 nonexistent
## 2209 telephone may mon 22 5 999 0 nonexistent
## 2210 telephone may mon 170 8 999 0 nonexistent
## 2211 telephone may mon 89 3 999 0 nonexistent
## 2212 telephone may mon 166 4 999 0 nonexistent
## 2213 telephone may mon 128 3 999 0 nonexistent
## 2214 telephone may mon 197 3 999 0 nonexistent
## 2215 telephone may mon 395 3 999 0 nonexistent
## 2216 telephone may mon 220 2 999 0 nonexistent
## 2217 telephone may mon 298 2 999 0 nonexistent
## 2218 telephone may mon 123 7 999 0 nonexistent
## 2219 telephone may mon 334 7 999 0 nonexistent
## 2220 telephone may mon 73 3 999 0 nonexistent
## 2221 telephone may mon 186 6 999 0 nonexistent
## 2223 telephone may mon 13 5 999 0 nonexistent
## 2224 telephone may mon 51 9 999 0 nonexistent
## 2226 telephone may mon 159 3 999 0 nonexistent
## 2227 telephone may mon 103 8 999 0 nonexistent
## 2229 telephone may mon 46 3 999 0 nonexistent
## 2231 telephone may mon 344 3 999 0 nonexistent
## 2232 telephone may mon 157 5 999 0 nonexistent
## 2234 telephone may mon 249 4 999 0 nonexistent
## 2235 telephone may mon 24 12 999 0 nonexistent
## 2238 telephone may mon 195 2 999 0 nonexistent
## 2239 telephone may mon 143 4 999 0 nonexistent
## 2240 telephone may mon 68 2 999 0 nonexistent
## 2241 telephone may mon 274 6 999 0 nonexistent
## 2242 telephone may mon 152 5 999 0 nonexistent
## 2243 telephone may mon 325 4 999 0 nonexistent
## 2245 telephone may mon 111 4 999 0 nonexistent
## 2246 telephone may mon 81 4 999 0 nonexistent
## 2247 telephone may mon 181 4 999 0 nonexistent
## 2248 telephone may tue 92 2 999 0 nonexistent
## 2249 telephone may tue 85 2 999 0 nonexistent
## 2250 telephone may tue 141 6 999 0 nonexistent
## 2251 telephone may tue 182 6 999 0 nonexistent
## 2255 telephone may tue 134 2 999 0 nonexistent
## 2256 telephone may tue 514 5 999 0 nonexistent
## 2257 telephone may tue 181 5 999 0 nonexistent
## 2258 telephone may tue 504 4 999 0 nonexistent
## 2259 telephone may tue 160 3 999 0 nonexistent
## 2260 telephone may tue 267 3 999 0 nonexistent
## 2261 telephone may tue 907 2 999 0 nonexistent
## 2262 telephone may tue 200 1 999 0 nonexistent
## 2263 telephone may tue 139 1 999 0 nonexistent
## 2265 telephone may tue 153 1 999 0 nonexistent
## 2266 telephone may tue 109 1 999 0 nonexistent
## 2267 telephone may tue 97 2 999 0 nonexistent
## 2268 telephone may tue 164 1 999 0 nonexistent
## 2269 telephone may tue 70 1 999 0 nonexistent
## 2271 telephone may tue 723 1 999 0 nonexistent
## 2272 telephone may tue 518 1 999 0 nonexistent
## 2273 telephone may tue 147 1 999 0 nonexistent
## 2274 telephone may tue 101 1 999 0 nonexistent
## 2275 telephone may tue 142 1 999 0 nonexistent
## 2276 telephone may tue 1346 1 999 0 nonexistent
## 2277 telephone may tue 520 1 999 0 nonexistent
## 2278 telephone may tue 611 2 999 0 nonexistent
## 2280 telephone may tue 135 3 999 0 nonexistent
## 2281 telephone may tue 276 2 999 0 nonexistent
## 2282 telephone may tue 449 1 999 0 nonexistent
## 2283 telephone may tue 98 1 999 0 nonexistent
## 2284 telephone may tue 105 1 999 0 nonexistent
## 2285 telephone may tue 382 2 999 0 nonexistent
## 2286 telephone may tue 213 1 999 0 nonexistent
## 2287 telephone may tue 116 1 999 0 nonexistent
## 2288 telephone may tue 249 3 999 0 nonexistent
## 2289 telephone may tue 50 1 999 0 nonexistent
## 2290 telephone may tue 138 1 999 0 nonexistent
## 2292 telephone may tue 49 1 999 0 nonexistent
## 2294 telephone may tue 169 1 999 0 nonexistent
## 2296 telephone may tue 155 1 999 0 nonexistent
## 2297 telephone may tue 120 1 999 0 nonexistent
## 2298 telephone may tue 203 1 999 0 nonexistent
## 2299 telephone may tue 244 1 999 0 nonexistent
## 2300 telephone may tue 428 1 999 0 nonexistent
## 2301 telephone may tue 53 1 999 0 nonexistent
## 2302 telephone may tue 360 1 999 0 nonexistent
## 2303 telephone may tue 215 1 999 0 nonexistent
## 2304 telephone may tue 500 2 999 0 nonexistent
## 2305 telephone may tue 207 1 999 0 nonexistent
## 2306 telephone may tue 568 4 999 0 nonexistent
## 2307 telephone may tue 270 1 999 0 nonexistent
## 2309 telephone may tue 272 1 999 0 nonexistent
## 2311 telephone may tue 108 1 999 0 nonexistent
## 2313 telephone may tue 383 1 999 0 nonexistent
## 2314 telephone may tue 3366 3 999 0 nonexistent
## 2315 telephone may tue 259 6 999 0 nonexistent
## 2316 telephone may tue 1000 1 999 0 nonexistent
## 2317 telephone may tue 618 1 999 0 nonexistent
## 2318 telephone may tue 237 1 999 0 nonexistent
## 2320 telephone may tue 351 1 999 0 nonexistent
## 2321 telephone may tue 218 1 999 0 nonexistent
## 2322 telephone may tue 198 1 999 0 nonexistent
## 2323 telephone may tue 284 2 999 0 nonexistent
## 2324 telephone may tue 190 1 999 0 nonexistent
## 2325 telephone may tue 295 1 999 0 nonexistent
## 2328 telephone may tue 174 1 999 0 nonexistent
## 2329 telephone may tue 124 1 999 0 nonexistent
## 2330 telephone may tue 62 3 999 0 nonexistent
## 2331 telephone may tue 2231 1 999 0 nonexistent
## 2333 telephone may tue 343 1 999 0 nonexistent
## 2335 telephone may tue 248 2 999 0 nonexistent
## 2336 telephone may tue 180 1 999 0 nonexistent
## 2337 telephone may tue 117 1 999 0 nonexistent
## 2338 telephone may tue 205 1 999 0 nonexistent
## 2339 telephone may tue 370 1 999 0 nonexistent
## 2340 telephone may tue 427 1 999 0 nonexistent
## 2341 telephone may tue 289 2 999 0 nonexistent
## 2344 telephone may tue 198 1 999 0 nonexistent
## 2345 telephone may tue 247 1 999 0 nonexistent
## 2347 telephone may tue 213 1 999 0 nonexistent
## 2349 telephone may tue 166 1 999 0 nonexistent
## 2351 telephone may tue 259 1 999 0 nonexistent
## 2352 telephone may tue 340 1 999 0 nonexistent
## 2353 telephone may tue 392 1 999 0 nonexistent
## 2354 telephone may tue 245 1 999 0 nonexistent
## 2356 telephone may tue 148 1 999 0 nonexistent
## 2357 telephone may tue 137 1 999 0 nonexistent
## 2358 telephone may tue 456 1 999 0 nonexistent
## 2359 telephone may tue 107 1 999 0 nonexistent
## 2360 telephone may tue 44 1 999 0 nonexistent
## 2361 telephone may tue 118 1 999 0 nonexistent
## 2362 telephone may tue 135 1 999 0 nonexistent
## 2363 telephone may tue 276 1 999 0 nonexistent
## 2365 telephone may tue 118 1 999 0 nonexistent
## 2366 telephone may tue 38 1 999 0 nonexistent
## 2367 telephone may tue 232 3 999 0 nonexistent
## 2368 telephone may tue 1167 1 999 0 nonexistent
## 2369 telephone may tue 39 2 999 0 nonexistent
## 2371 telephone may tue 311 1 999 0 nonexistent
## 2372 telephone may tue 147 1 999 0 nonexistent
## 2373 telephone may tue 125 1 999 0 nonexistent
## 2374 telephone may tue 98 1 999 0 nonexistent
## 2376 telephone may tue 83 1 999 0 nonexistent
## 2377 telephone may tue 67 1 999 0 nonexistent
## 2378 telephone may tue 77 1 999 0 nonexistent
## 2379 telephone may tue 191 1 999 0 nonexistent
## 2380 telephone may tue 144 1 999 0 nonexistent
## 2381 telephone may tue 20 1 999 0 nonexistent
## 2382 telephone may tue 27 1 999 0 nonexistent
## 2383 telephone may tue 174 4 999 0 nonexistent
## 2384 telephone may tue 260 3 999 0 nonexistent
## 2388 telephone may tue 609 2 999 0 nonexistent
## 2390 telephone may tue 262 1 999 0 nonexistent
## 2391 telephone may tue 302 1 999 0 nonexistent
## 2392 telephone may tue 121 2 999 0 nonexistent
## 2393 telephone may tue 202 3 999 0 nonexistent
## 2395 telephone may tue 31 1 999 0 nonexistent
## 2396 telephone may tue 21 1 999 0 nonexistent
## 2397 telephone may tue 334 2 999 0 nonexistent
## 2398 telephone may tue 156 1 999 0 nonexistent
## 2399 telephone may tue 92 1 999 0 nonexistent
## 2401 telephone may tue 766 1 999 0 nonexistent
## 2402 telephone may tue 162 1 999 0 nonexistent
## 2403 telephone may tue 255 5 999 0 nonexistent
## 2404 telephone may tue 137 1 999 0 nonexistent
## 2405 telephone may tue 189 1 999 0 nonexistent
## 2406 telephone may tue 110 1 999 0 nonexistent
## 2407 telephone may tue 395 2 999 0 nonexistent
## 2408 telephone may tue 135 1 999 0 nonexistent
## 2409 telephone may tue 102 4 999 0 nonexistent
## 2410 telephone may tue 705 1 999 0 nonexistent
## 2411 telephone may tue 192 1 999 0 nonexistent
## 2413 telephone may tue 139 1 999 0 nonexistent
## 2415 telephone may tue 65 1 999 0 nonexistent
## 2416 telephone may tue 266 2 999 0 nonexistent
## 2417 telephone may tue 76 1 999 0 nonexistent
## 2418 telephone may tue 1015 1 999 0 nonexistent
## 2419 telephone may tue 122 1 999 0 nonexistent
## 2421 telephone may tue 111 3 999 0 nonexistent
## 2422 telephone may tue 683 2 999 0 nonexistent
## 2423 telephone may tue 100 1 999 0 nonexistent
## 2425 telephone may tue 470 1 999 0 nonexistent
## 2426 telephone may tue 149 1 999 0 nonexistent
## 2428 telephone may tue 127 2 999 0 nonexistent
## 2429 telephone may tue 320 1 999 0 nonexistent
## 2430 telephone may tue 145 1 999 0 nonexistent
## 2431 telephone may tue 129 1 999 0 nonexistent
## 2432 telephone may tue 730 1 999 0 nonexistent
## 2433 telephone may tue 36 1 999 0 nonexistent
## 2434 telephone may tue 521 1 999 0 nonexistent
## 2435 telephone may tue 95 3 999 0 nonexistent
## 2436 telephone may tue 120 1 999 0 nonexistent
## 2437 telephone may tue 349 1 999 0 nonexistent
## 2438 telephone may tue 768 1 999 0 nonexistent
## 2439 telephone may tue 277 1 999 0 nonexistent
## 2440 telephone may tue 289 1 999 0 nonexistent
## 2441 telephone may tue 473 1 999 0 nonexistent
## 2442 telephone may tue 133 1 999 0 nonexistent
## 2444 telephone may tue 386 2 999 0 nonexistent
## 2446 telephone may tue 76 1 999 0 nonexistent
## 2447 telephone may tue 214 1 999 0 nonexistent
## 2448 telephone may tue 355 1 999 0 nonexistent
## 2450 telephone may tue 845 1 999 0 nonexistent
## 2452 telephone may tue 173 1 999 0 nonexistent
## 2453 telephone may tue 113 2 999 0 nonexistent
## 2454 telephone may tue 109 2 999 0 nonexistent
## 2455 telephone may tue 853 1 999 0 nonexistent
## 2456 telephone may tue 518 1 999 0 nonexistent
## 2458 telephone may tue 452 2 999 0 nonexistent
## 2459 telephone may tue 203 2 999 0 nonexistent
## 2461 telephone may tue 81 1 999 0 nonexistent
## 2462 telephone may tue 93 1 999 0 nonexistent
## 2463 telephone may tue 119 1 999 0 nonexistent
## 2464 telephone may tue 295 3 999 0 nonexistent
## 2465 telephone may tue 296 1 999 0 nonexistent
## 2466 telephone may tue 916 2 999 0 nonexistent
## 2467 telephone may tue 60 2 999 0 nonexistent
## 2470 telephone may tue 262 2 999 0 nonexistent
## 2471 telephone may tue 431 2 999 0 nonexistent
## 2472 telephone may tue 358 2 999 0 nonexistent
## 2473 telephone may tue 565 2 999 0 nonexistent
## 2474 telephone may tue 753 6 999 0 nonexistent
## 2475 telephone may tue 103 3 999 0 nonexistent
## 2476 telephone may tue 708 2 999 0 nonexistent
## 2477 telephone may tue 265 1 999 0 nonexistent
## 2478 telephone may tue 255 2 999 0 nonexistent
## 2479 telephone may tue 434 2 999 0 nonexistent
## 2480 telephone may tue 59 1 999 0 nonexistent
## 2481 telephone may tue 305 1 999 0 nonexistent
## 2482 telephone may tue 155 2 999 0 nonexistent
## 2483 telephone may tue 805 2 999 0 nonexistent
## 2484 telephone may tue 242 1 999 0 nonexistent
## 2486 telephone may tue 93 6 999 0 nonexistent
## 2488 telephone may tue 31 2 999 0 nonexistent
## 2489 telephone may tue 213 5 999 0 nonexistent
## 2490 telephone may tue 104 2 999 0 nonexistent
## 2491 telephone may tue 342 3 999 0 nonexistent
## 2493 telephone may tue 160 3 999 0 nonexistent
## 2494 telephone may tue 535 2 999 0 nonexistent
## 2495 telephone may tue 514 5 999 0 nonexistent
## 2496 telephone may tue 276 1 999 0 nonexistent
## 2497 telephone may tue 176 3 999 0 nonexistent
## 2498 telephone may tue 20 1 999 0 nonexistent
## 2499 telephone may tue 161 1 999 0 nonexistent
## 2502 telephone may tue 144 1 999 0 nonexistent
## 2504 telephone may tue 93 2 999 0 nonexistent
## 2505 telephone may tue 188 3 999 0 nonexistent
## 2506 telephone may tue 332 1 999 0 nonexistent
## 2507 telephone may tue 178 2 999 0 nonexistent
## 2509 telephone may tue 94 1 999 0 nonexistent
## 2510 telephone may tue 139 2 999 0 nonexistent
## 2511 telephone may tue 152 1 999 0 nonexistent
## 2512 telephone may tue 188 1 999 0 nonexistent
## 2513 telephone may tue 94 2 999 0 nonexistent
## 2514 telephone may tue 54 3 999 0 nonexistent
## 2515 telephone may tue 29 1 999 0 nonexistent
## 2517 telephone may tue 95 1 999 0 nonexistent
## 2518 telephone may tue 227 1 999 0 nonexistent
## 2519 telephone may tue 190 1 999 0 nonexistent
## 2520 telephone may tue 60 1 999 0 nonexistent
## 2522 telephone may tue 296 1 999 0 nonexistent
## 2523 telephone may tue 125 1 999 0 nonexistent
## 2524 telephone may tue 78 3 999 0 nonexistent
## 2525 telephone may tue 67 2 999 0 nonexistent
## 2526 telephone may tue 93 1 999 0 nonexistent
## 2527 telephone may tue 119 2 999 0 nonexistent
## 2528 telephone may tue 3 1 999 0 nonexistent
## 2529 telephone may tue 297 3 999 0 nonexistent
## 2530 telephone may tue 179 1 999 0 nonexistent
## 2532 telephone may tue 420 1 999 0 nonexistent
## 2535 telephone may tue 354 2 999 0 nonexistent
## 2536 telephone may tue 190 1 999 0 nonexistent
## 2538 telephone may tue 367 1 999 0 nonexistent
## 2539 telephone may tue 394 1 999 0 nonexistent
## 2540 telephone may tue 91 2 999 0 nonexistent
## 2542 telephone may tue 768 2 999 0 nonexistent
## 2543 telephone may tue 184 1 999 0 nonexistent
## 2544 telephone may tue 43 2 999 0 nonexistent
## 2545 telephone may tue 108 2 999 0 nonexistent
## 2546 telephone may tue 195 2 999 0 nonexistent
## 2547 telephone may tue 109 1 999 0 nonexistent
## 2549 telephone may tue 299 3 999 0 nonexistent
## 2550 telephone may tue 192 1 999 0 nonexistent
## 2552 telephone may tue 87 1 999 0 nonexistent
## 2553 telephone may tue 169 2 999 0 nonexistent
## 2554 telephone may tue 119 10 999 0 nonexistent
## 2555 telephone may tue 101 13 999 0 nonexistent
## 2556 telephone may tue 210 1 999 0 nonexistent
## 2557 telephone may tue 129 4 999 0 nonexistent
## 2558 telephone may tue 481 3 999 0 nonexistent
## 2559 telephone may tue 215 1 999 0 nonexistent
## 2561 telephone may tue 411 2 999 0 nonexistent
## 2562 telephone may tue 93 1 999 0 nonexistent
## 2563 telephone may tue 65 1 999 0 nonexistent
## 2565 telephone may tue 34 4 999 0 nonexistent
## 2567 telephone may tue 431 1 999 0 nonexistent
## 2568 telephone may tue 851 4 999 0 nonexistent
## 2569 telephone may tue 315 3 999 0 nonexistent
## 2570 telephone may tue 214 1 999 0 nonexistent
## 2571 telephone may tue 92 4 999 0 nonexistent
## 2573 telephone may tue 181 3 999 0 nonexistent
## 2574 telephone may tue 159 2 999 0 nonexistent
## 2575 telephone may tue 58 2 999 0 nonexistent
## 2577 telephone may tue 165 2 999 0 nonexistent
## 2578 telephone may tue 309 2 999 0 nonexistent
## 2580 telephone may tue 210 3 999 0 nonexistent
## 2581 telephone may tue 165 3 999 0 nonexistent
## 2582 telephone may tue 331 2 999 0 nonexistent
## 2583 telephone may tue 230 3 999 0 nonexistent
## 2584 telephone may tue 584 2 999 0 nonexistent
## 2588 telephone may tue 86 4 999 0 nonexistent
## 2589 telephone may tue 151 4 999 0 nonexistent
## 2590 telephone may tue 69 11 999 0 nonexistent
## 2591 telephone may tue 15 11 999 0 nonexistent
## 2592 telephone may tue 437 2 999 0 nonexistent
## 2594 telephone may tue 267 2 999 0 nonexistent
## 2595 telephone may tue 259 5 999 0 nonexistent
## 2596 telephone may tue 165 2 999 0 nonexistent
## 2598 telephone may tue 175 2 999 0 nonexistent
## 2599 telephone may tue 198 2 999 0 nonexistent
## 2601 telephone may tue 168 2 999 0 nonexistent
## 2602 telephone may tue 247 3 999 0 nonexistent
## 2603 telephone may tue 291 2 999 0 nonexistent
## 2604 telephone may tue 322 2 999 0 nonexistent
## 2605 telephone may tue 194 2 999 0 nonexistent
## 2606 telephone may tue 379 2 999 0 nonexistent
## 2607 telephone may tue 151 2 999 0 nonexistent
## 2608 telephone may tue 166 4 999 0 nonexistent
## 2609 telephone may tue 64 2 999 0 nonexistent
## 2610 telephone may tue 232 4 999 0 nonexistent
## 2611 telephone may tue 647 7 999 0 nonexistent
## 2612 telephone may tue 322 3 999 0 nonexistent
## 2613 telephone may tue 337 6 999 0 nonexistent
## 2614 telephone may tue 133 12 999 0 nonexistent
## 2615 telephone may tue 50 3 999 0 nonexistent
## 2616 telephone may tue 87 2 999 0 nonexistent
## 2617 telephone may tue 771 2 999 0 nonexistent
## 2618 telephone may tue 205 3 999 0 nonexistent
## 2619 telephone may tue 76 2 999 0 nonexistent
## 2622 telephone may tue 304 2 999 0 nonexistent
## 2623 telephone may tue 209 2 999 0 nonexistent
## 2624 telephone may tue 271 2 999 0 nonexistent
## 2625 telephone may tue 1093 3 999 0 nonexistent
## 2626 telephone may tue 326 4 999 0 nonexistent
## 2627 telephone may tue 389 2 999 0 nonexistent
## 2629 telephone may tue 264 3 999 0 nonexistent
## 2630 telephone may tue 1106 4 999 0 nonexistent
## 2631 telephone may tue 195 5 999 0 nonexistent
## 2633 telephone may tue 214 2 999 0 nonexistent
## 2634 telephone may tue 87 9 999 0 nonexistent
## 2635 telephone may tue 122 7 999 0 nonexistent
## 2637 telephone may tue 288 2 999 0 nonexistent
## 2638 telephone may tue 50 3 999 0 nonexistent
## 2639 telephone may tue 816 3 999 0 nonexistent
## 2640 telephone may tue 284 2 999 0 nonexistent
## 2641 telephone may tue 116 4 999 0 nonexistent
## 2643 telephone may tue 232 2 999 0 nonexistent
## 2644 telephone may tue 262 2 999 0 nonexistent
## 2645 telephone may tue 190 5 999 0 nonexistent
## 2648 telephone may tue 166 2 999 0 nonexistent
## 2649 telephone may tue 104 2 999 0 nonexistent
## 2650 telephone may tue 163 3 999 0 nonexistent
## 2651 telephone may tue 492 2 999 0 nonexistent
## 2652 telephone may tue 152 3 999 0 nonexistent
## 2653 telephone may tue 109 4 999 0 nonexistent
## 2654 telephone may tue 384 1 999 0 nonexistent
## 2655 telephone may tue 1032 1 999 0 nonexistent
## 2656 telephone may wed 128 2 999 0 nonexistent
## 2657 telephone may wed 65 6 999 0 nonexistent
## 2658 telephone may wed 194 4 999 0 nonexistent
## 2659 telephone may wed 360 2 999 0 nonexistent
## 2661 telephone may wed 20 11 999 0 nonexistent
## 2662 telephone may wed 323 4 999 0 nonexistent
## 2665 telephone may wed 151 2 999 0 nonexistent
## 2666 telephone may wed 158 3 999 0 nonexistent
## 2667 telephone may wed 73 2 999 0 nonexistent
## 2668 telephone may wed 407 4 999 0 nonexistent
## 2669 telephone may wed 438 2 999 0 nonexistent
## 2670 telephone may wed 174 3 999 0 nonexistent
## 2671 telephone may wed 175 3 999 0 nonexistent
## 2672 telephone may wed 313 4 999 0 nonexistent
## 2673 telephone may wed 137 4 999 0 nonexistent
## 2676 telephone may wed 93 4 999 0 nonexistent
## 2677 telephone may wed 97 2 999 0 nonexistent
## 2678 telephone may wed 219 4 999 0 nonexistent
## 2679 telephone may wed 455 3 999 0 nonexistent
## 2680 telephone may wed 103 6 999 0 nonexistent
## 2681 telephone may wed 133 2 999 0 nonexistent
## 2682 telephone may wed 77 2 999 0 nonexistent
## 2683 telephone may wed 211 2 999 0 nonexistent
## 2684 telephone may wed 72 2 999 0 nonexistent
## 2685 telephone may wed 942 3 999 0 nonexistent
## 2686 telephone may wed 89 2 999 0 nonexistent
## 2687 telephone may wed 108 4 999 0 nonexistent
## 2689 telephone may wed 305 3 999 0 nonexistent
## 2690 telephone may wed 387 9 999 0 nonexistent
## 2691 telephone may wed 146 4 999 0 nonexistent
## 2692 telephone may wed 160 1 999 0 nonexistent
## 2693 telephone may wed 70 1 999 0 nonexistent
## 2695 telephone may wed 117 4 999 0 nonexistent
## 2696 telephone may wed 381 1 999 0 nonexistent
## 2697 telephone may wed 109 1 999 0 nonexistent
## 2699 telephone may wed 178 1 999 0 nonexistent
## 2700 telephone may wed 260 1 999 0 nonexistent
## 2701 telephone may wed 231 1 999 0 nonexistent
## 2703 telephone may wed 145 1 999 0 nonexistent
## 2706 telephone may wed 282 1 999 0 nonexistent
## 2707 telephone may wed 73 1 999 0 nonexistent
## 2708 telephone may wed 48 1 999 0 nonexistent
## 2709 telephone may wed 220 1 999 0 nonexistent
## 2710 telephone may wed 606 1 999 0 nonexistent
## 2712 telephone may wed 451 3 999 0 nonexistent
## 2713 telephone may wed 202 2 999 0 nonexistent
## 2714 telephone may wed 832 1 999 0 nonexistent
## 2715 telephone may wed 168 3 999 0 nonexistent
## 2717 telephone may wed 69 1 999 0 nonexistent
## 2718 telephone may wed 200 1 999 0 nonexistent
## 2719 telephone may wed 170 1 999 0 nonexistent
## 2720 telephone may wed 142 1 999 0 nonexistent
## 2721 telephone may wed 283 8 999 0 nonexistent
## 2724 telephone may wed 179 1 999 0 nonexistent
## 2725 telephone may wed 238 1 999 0 nonexistent
## 2727 telephone may wed 138 3 999 0 nonexistent
## 2728 telephone may wed 218 2 999 0 nonexistent
## 2729 telephone may wed 158 2 999 0 nonexistent
## 2730 telephone may wed 105 1 999 0 nonexistent
## 2731 telephone may wed 106 1 999 0 nonexistent
## 2733 telephone may wed 132 1 999 0 nonexistent
## 2734 telephone may wed 824 2 999 0 nonexistent
## 2735 telephone may wed 243 1 999 0 nonexistent
## 2736 telephone may wed 488 12 999 0 nonexistent
## 2737 telephone may wed 148 2 999 0 nonexistent
## 2738 telephone may wed 159 2 999 0 nonexistent
## 2739 telephone may wed 124 1 999 0 nonexistent
## 2740 telephone may wed 452 1 999 0 nonexistent
## 2741 telephone may wed 114 1 999 0 nonexistent
## 2743 telephone may wed 125 1 999 0 nonexistent
## 2744 telephone may wed 145 2 999 0 nonexistent
## 2745 telephone may wed 1328 1 999 0 nonexistent
## 2746 telephone may wed 686 1 999 0 nonexistent
## 2747 telephone may wed 80 1 999 0 nonexistent
## 2748 telephone may wed 265 1 999 0 nonexistent
## 2751 telephone may wed 71 1 999 0 nonexistent
## 2753 telephone may wed 243 1 999 0 nonexistent
## 2756 telephone may wed 1125 2 999 0 nonexistent
## 2757 telephone may wed 136 2 999 0 nonexistent
## 2758 telephone may wed 158 2 999 0 nonexistent
## 2759 telephone may wed 267 2 999 0 nonexistent
## 2760 telephone may wed 257 1 999 0 nonexistent
## 2761 telephone may wed 110 1 999 0 nonexistent
## 2762 telephone may wed 477 5 999 0 nonexistent
## 2763 telephone may wed 456 9 999 0 nonexistent
## 2765 telephone may wed 298 1 999 0 nonexistent
## 2767 telephone may wed 483 2 999 0 nonexistent
## 2768 telephone may wed 213 1 999 0 nonexistent
## 2769 telephone may wed 51 1 999 0 nonexistent
## 2770 telephone may wed 44 1 999 0 nonexistent
## 2773 telephone may wed 220 2 999 0 nonexistent
## 2774 telephone may wed 178 1 999 0 nonexistent
## 2775 telephone may wed 452 2 999 0 nonexistent
## 2776 telephone may wed 858 1 999 0 nonexistent
## 2779 telephone may wed 122 1 999 0 nonexistent
## 2780 telephone may wed 629 2 999 0 nonexistent
## 2781 telephone may wed 116 1 999 0 nonexistent
## 2782 telephone may wed 120 1 999 0 nonexistent
## 2785 telephone may wed 179 1 999 0 nonexistent
## 2786 telephone may wed 35 1 999 0 nonexistent
## 2787 telephone may wed 156 1 999 0 nonexistent
## 2788 telephone may wed 201 1 999 0 nonexistent
## 2790 telephone may wed 68 1 999 0 nonexistent
## 2791 telephone may wed 75 1 999 0 nonexistent
## 2792 telephone may wed 191 1 999 0 nonexistent
## 2793 telephone may wed 461 1 999 0 nonexistent
## 2794 telephone may wed 188 1 999 0 nonexistent
## 2795 telephone may wed 117 6 999 0 nonexistent
## 2796 telephone may wed 546 1 999 0 nonexistent
## 2797 telephone may wed 171 1 999 0 nonexistent
## 2799 telephone may wed 429 1 999 0 nonexistent
## 2801 telephone may wed 568 1 999 0 nonexistent
## 2802 telephone may wed 299 1 999 0 nonexistent
## 2803 telephone may wed 282 1 999 0 nonexistent
## 2804 telephone may wed 211 1 999 0 nonexistent
## 2805 telephone may wed 77 1 999 0 nonexistent
## 2806 telephone may wed 283 1 999 0 nonexistent
## 2807 telephone may wed 263 1 999 0 nonexistent
## 2808 telephone may wed 189 1 999 0 nonexistent
## 2809 telephone may wed 91 1 999 0 nonexistent
## 2810 telephone may wed 32 1 999 0 nonexistent
## 2811 telephone may wed 139 2 999 0 nonexistent
## 2812 telephone may wed 347 1 999 0 nonexistent
## 2814 telephone may wed 152 1 999 0 nonexistent
## 2815 telephone may wed 869 1 999 0 nonexistent
## 2816 telephone may wed 339 1 999 0 nonexistent
## 2817 telephone may wed 267 1 999 0 nonexistent
## 2820 telephone may wed 28 2 999 0 nonexistent
## 2821 telephone may wed 216 1 999 0 nonexistent
## 2822 telephone may wed 199 2 999 0 nonexistent
## 2823 telephone may wed 139 1 999 0 nonexistent
## 2825 telephone may wed 189 1 999 0 nonexistent
## 2826 telephone may wed 197 2 999 0 nonexistent
## 2827 telephone may wed 224 2 999 0 nonexistent
## 2828 telephone may wed 160 1 999 0 nonexistent
## 2830 telephone may wed 191 1 999 0 nonexistent
## 2831 telephone may wed 833 1 999 0 nonexistent
## 2832 telephone may wed 485 2 999 0 nonexistent
## 2833 telephone may wed 57 1 999 0 nonexistent
## 2834 telephone may wed 247 2 999 0 nonexistent
## 2835 telephone may wed 89 1 999 0 nonexistent
## 2836 telephone may wed 849 1 999 0 nonexistent
## 2837 telephone may wed 260 1 999 0 nonexistent
## 2838 telephone may wed 181 1 999 0 nonexistent
## 2842 telephone may wed 749 2 999 0 nonexistent
## 2843 telephone may wed 166 2 999 0 nonexistent
## 2845 telephone may wed 182 2 999 0 nonexistent
## 2846 telephone may wed 152 2 999 0 nonexistent
## 2847 telephone may wed 438 4 999 0 nonexistent
## 2848 telephone may wed 387 2 999 0 nonexistent
## 2849 telephone may wed 100 3 999 0 nonexistent
## 2850 telephone may wed 413 2 999 0 nonexistent
## 2852 telephone may wed 109 1 999 0 nonexistent
## 2853 telephone may wed 345 2 999 0 nonexistent
## 2854 telephone may wed 1028 2 999 0 nonexistent
## 2855 telephone may wed 566 2 999 0 nonexistent
## 2856 telephone may wed 38 1 999 0 nonexistent
## 2857 telephone may wed 214 1 999 0 nonexistent
## 2859 telephone may wed 246 1 999 0 nonexistent
## 2860 telephone may wed 170 2 999 0 nonexistent
## 2862 telephone may wed 98 1 999 0 nonexistent
## 2864 telephone may wed 230 1 999 0 nonexistent
## 2865 telephone may wed 364 1 999 0 nonexistent
## 2867 telephone may wed 93 11 999 0 nonexistent
## 2868 telephone may wed 57 2 999 0 nonexistent
## 2870 telephone may wed 210 2 999 0 nonexistent
## 2871 telephone may wed 222 2 999 0 nonexistent
## 2872 telephone may wed 265 2 999 0 nonexistent
## 2873 telephone may wed 21 10 999 0 nonexistent
## 2874 telephone may wed 157 1 999 0 nonexistent
## 2875 telephone may wed 143 1 999 0 nonexistent
## 2876 telephone may wed 230 2 999 0 nonexistent
## 2878 telephone may wed 161 2 999 0 nonexistent
## 2880 telephone may wed 155 1 999 0 nonexistent
## 2881 telephone may wed 162 1 999 0 nonexistent
## 2882 telephone may wed 565 1 999 0 nonexistent
## 2883 telephone may wed 44 5 999 0 nonexistent
## 2884 telephone may wed 337 1 999 0 nonexistent
## 2887 telephone may wed 129 2 999 0 nonexistent
## 2888 telephone may wed 977 1 999 0 nonexistent
## 2890 telephone may wed 70 2 999 0 nonexistent
## 2891 telephone may wed 71 1 999 0 nonexistent
## 2894 telephone may wed 110 1 999 0 nonexistent
## 2895 telephone may wed 230 2 999 0 nonexistent
## 2896 telephone may wed 48 1 999 0 nonexistent
## 2897 telephone may wed 369 1 999 0 nonexistent
## 2898 telephone may wed 136 1 999 0 nonexistent
## 2899 telephone may wed 22 4 999 0 nonexistent
## 2900 telephone may wed 174 2 999 0 nonexistent
## 2901 telephone may wed 378 1 999 0 nonexistent
## 2902 telephone may wed 80 1 999 0 nonexistent
## 2905 telephone may wed 108 1 999 0 nonexistent
## 2907 telephone may wed 389 1 999 0 nonexistent
## 2908 telephone may wed 192 1 999 0 nonexistent
## 2909 telephone may wed 273 1 999 0 nonexistent
## 2910 telephone may wed 48 1 999 0 nonexistent
## 2911 telephone may wed 8 1 999 0 nonexistent
## 2912 telephone may wed 90 1 999 0 nonexistent
## 2913 telephone may wed 221 1 999 0 nonexistent
## 2916 telephone may wed 302 2 999 0 nonexistent
## 2917 telephone may wed 411 1 999 0 nonexistent
## 2918 telephone may wed 179 1 999 0 nonexistent
## 2919 telephone may wed 245 2 999 0 nonexistent
## 2920 telephone may wed 746 1 999 0 nonexistent
## 2921 telephone may wed 673 2 999 0 nonexistent
## 2922 telephone may wed 220 7 999 0 nonexistent
## 2923 telephone may wed 232 1 999 0 nonexistent
## 2924 telephone may wed 106 4 999 0 nonexistent
## 2926 telephone may wed 485 2 999 0 nonexistent
## 2928 telephone may wed 106 5 999 0 nonexistent
## 2929 telephone may wed 107 1 999 0 nonexistent
## 2930 telephone may wed 1044 2 999 0 nonexistent
## 2931 telephone may wed 354 1 999 0 nonexistent
## 2932 telephone may wed 55 1 999 0 nonexistent
## 2933 telephone may wed 180 4 999 0 nonexistent
## 2934 telephone may wed 95 1 999 0 nonexistent
## 2936 telephone may wed 331 2 999 0 nonexistent
## 2937 telephone may wed 123 1 999 0 nonexistent
## 2938 telephone may wed 148 3 999 0 nonexistent
## 2939 telephone may wed 74 3 999 0 nonexistent
## 2940 telephone may wed 267 7 999 0 nonexistent
## 2941 telephone may wed 374 2 999 0 nonexistent
## 2942 telephone may wed 295 2 999 0 nonexistent
## 2943 telephone may wed 77 4 999 0 nonexistent
## 2944 telephone may wed 149 2 999 0 nonexistent
## 2945 telephone may wed 668 1 999 0 nonexistent
## 2946 telephone may wed 95 6 999 0 nonexistent
## 2947 telephone may wed 229 2 999 0 nonexistent
## 2948 telephone may wed 286 9 999 0 nonexistent
## 2949 telephone may wed 242 5 999 0 nonexistent
## 2950 telephone may wed 335 1 999 0 nonexistent
## 2951 telephone may wed 140 1 999 0 nonexistent
## 2952 telephone may wed 159 3 999 0 nonexistent
## 2953 telephone may wed 343 1 999 0 nonexistent
## 2954 telephone may wed 85 4 999 0 nonexistent
## 2955 telephone may wed 295 1 999 0 nonexistent
## 2956 telephone may wed 360 1 999 0 nonexistent
## 2957 telephone may wed 183 4 999 0 nonexistent
## 2958 telephone may wed 726 2 999 0 nonexistent
## 2959 telephone may wed 158 1 999 0 nonexistent
## 2960 telephone may wed 514 2 999 0 nonexistent
## 2961 telephone may wed 382 10 999 0 nonexistent
## 2963 telephone may wed 301 3 999 0 nonexistent
## 2964 telephone may wed 153 3 999 0 nonexistent
## 2965 telephone may wed 264 2 999 0 nonexistent
## 2966 telephone may wed 161 2 999 0 nonexistent
## 2967 telephone may wed 150 1 999 0 nonexistent
## 2968 telephone may wed 49 1 999 0 nonexistent
## 2969 telephone may wed 326 3 999 0 nonexistent
## 2972 telephone may wed 339 1 999 0 nonexistent
## 2973 telephone may wed 125 1 999 0 nonexistent
## 2974 telephone may wed 232 2 999 0 nonexistent
## 2975 telephone may wed 312 5 999 0 nonexistent
## 2976 telephone may wed 423 2 999 0 nonexistent
## 2978 telephone may wed 248 1 999 0 nonexistent
## 2979 telephone may wed 146 1 999 0 nonexistent
## 2980 telephone may wed 125 2 999 0 nonexistent
## 2981 telephone may wed 234 1 999 0 nonexistent
## 2985 telephone may wed 162 4 999 0 nonexistent
## 2986 telephone may wed 436 1 999 0 nonexistent
## 2987 telephone may wed 302 2 999 0 nonexistent
## 2988 telephone may wed 349 5 999 0 nonexistent
## 2989 telephone may wed 174 2 999 0 nonexistent
## 2990 telephone may wed 180 1 999 0 nonexistent
## 2991 telephone may wed 902 5 999 0 nonexistent
## 2992 telephone may wed 137 2 999 0 nonexistent
## 2993 telephone may wed 282 1 999 0 nonexistent
## 2994 telephone may wed 126 3 999 0 nonexistent
## 2995 telephone may wed 554 1 999 0 nonexistent
## 2999 telephone may wed 427 1 999 0 nonexistent
## 3000 telephone may wed 97 5 999 0 nonexistent
## 3002 telephone may wed 252 2 999 0 nonexistent
## 3004 telephone may wed 852 2 999 0 nonexistent
## 3005 telephone may wed 241 2 999 0 nonexistent
## 3006 telephone may wed 133 4 999 0 nonexistent
## 3007 telephone may wed 98 2 999 0 nonexistent
## 3008 telephone may wed 574 2 999 0 nonexistent
## 3009 telephone may wed 274 2 999 0 nonexistent
## 3011 telephone may wed 122 4 999 0 nonexistent
## 3012 telephone may wed 166 4 999 0 nonexistent
## 3013 telephone may wed 167 3 999 0 nonexistent
## 3014 telephone may wed 91 7 999 0 nonexistent
## 3015 telephone may wed 133 4 999 0 nonexistent
## 3017 telephone may wed 86 2 999 0 nonexistent
## 3019 telephone may wed 302 10 999 0 nonexistent
## 3020 telephone may wed 303 4 999 0 nonexistent
## 3023 telephone may wed 483 3 999 0 nonexistent
## 3024 telephone may wed 234 2 999 0 nonexistent
## 3025 telephone may wed 211 3 999 0 nonexistent
## 3026 telephone may wed 738 2 999 0 nonexistent
## 3027 telephone may wed 482 2 999 0 nonexistent
## 3028 telephone may wed 238 2 999 0 nonexistent
## 3030 telephone may wed 76 2 999 0 nonexistent
## 3031 telephone may wed 225 2 999 0 nonexistent
## 3032 telephone may wed 256 2 999 0 nonexistent
## 3033 telephone may wed 567 3 999 0 nonexistent
## 3034 telephone may wed 147 3 999 0 nonexistent
## 3035 telephone may wed 135 2 999 0 nonexistent
## 3036 telephone may wed 582 2 999 0 nonexistent
## 3037 telephone may wed 270 2 999 0 nonexistent
## 3038 telephone may wed 52 4 999 0 nonexistent
## 3039 telephone may wed 260 2 999 0 nonexistent
## 3041 telephone may wed 1118 2 999 0 nonexistent
## 3042 telephone may wed 76 9 999 0 nonexistent
## 3043 telephone may wed 79 3 999 0 nonexistent
## 3044 telephone may wed 837 2 999 0 nonexistent
## 3046 telephone may wed 245 7 999 0 nonexistent
## 3048 telephone may wed 1423 3 999 0 nonexistent
## 3049 telephone may wed 271 2 999 0 nonexistent
## 3050 telephone may wed 166 5 999 0 nonexistent
## 3052 telephone may wed 173 7 999 0 nonexistent
## 3053 telephone may wed 367 3 999 0 nonexistent
## 3054 telephone may wed 227 4 999 0 nonexistent
## 3055 telephone may wed 276 4 999 0 nonexistent
## 3056 telephone may wed 349 2 999 0 nonexistent
## 3057 telephone may wed 856 2 999 0 nonexistent
## 3058 telephone may wed 278 2 999 0 nonexistent
## 3060 telephone may wed 249 2 999 0 nonexistent
## 3062 telephone may wed 260 3 999 0 nonexistent
## 3063 telephone may wed 323 7 999 0 nonexistent
## 3066 telephone may wed 211 2 999 0 nonexistent
## 3067 telephone may wed 266 2 999 0 nonexistent
## 3068 telephone may wed 806 2 999 0 nonexistent
## 3070 telephone may wed 318 2 999 0 nonexistent
## 3071 telephone may wed 104 3 999 0 nonexistent
## 3072 telephone may wed 747 3 999 0 nonexistent
## 3073 telephone may thu 95 4 999 0 nonexistent
## 3076 telephone may thu 319 5 999 0 nonexistent
## 3077 telephone may thu 114 2 999 0 nonexistent
## 3078 telephone may thu 170 5 999 0 nonexistent
## 3079 telephone may thu 311 5 999 0 nonexistent
## 3080 telephone may thu 362 3 999 0 nonexistent
## 3081 telephone may thu 86 4 999 0 nonexistent
## 3082 telephone may thu 90 2 999 0 nonexistent
## 3083 telephone may thu 44 3 999 0 nonexistent
## 3084 telephone may thu 1013 3 999 0 nonexistent
## 3085 telephone may thu 76 7 999 0 nonexistent
## 3087 telephone may thu 155 6 999 0 nonexistent
## 3088 telephone may thu 468 5 999 0 nonexistent
## 3089 telephone may thu 226 2 999 0 nonexistent
## 3090 telephone may thu 349 2 999 0 nonexistent
## 3091 telephone may thu 646 3 999 0 nonexistent
## 3092 telephone may thu 148 3 999 0 nonexistent
## 3093 telephone may thu 517 3 999 0 nonexistent
## 3096 telephone may thu 204 1 999 0 nonexistent
## 3097 telephone may thu 236 4 999 0 nonexistent
## 3098 telephone may thu 112 1 999 0 nonexistent
## 3100 telephone may thu 360 1 999 0 nonexistent
## 3102 telephone may thu 366 1 999 0 nonexistent
## 3104 telephone may thu 230 1 999 0 nonexistent
## 3106 telephone may thu 12 3 999 0 nonexistent
## 3107 telephone may thu 65 1 999 0 nonexistent
## 3108 telephone may thu 420 1 999 0 nonexistent
## 3110 telephone may thu 192 1 999 0 nonexistent
## 3115 telephone may thu 260 1 999 0 nonexistent
## 3116 telephone may thu 71 1 999 0 nonexistent
## 3117 telephone may thu 735 1 999 0 nonexistent
## 3118 telephone may thu 183 5 999 0 nonexistent
## 3119 telephone may thu 75 1 999 0 nonexistent
## 3120 telephone may thu 87 1 999 0 nonexistent
## 3124 telephone may thu 244 1 999 0 nonexistent
## 3127 telephone may thu 183 1 999 0 nonexistent
## 3128 telephone may thu 552 11 999 0 nonexistent
## 3129 telephone may thu 121 1 999 0 nonexistent
## 3130 telephone may thu 27 1 999 0 nonexistent
## 3131 telephone may thu 157 1 999 0 nonexistent
## 3132 telephone may thu 203 1 999 0 nonexistent
## 3133 telephone may thu 104 1 999 0 nonexistent
## 3134 telephone may thu 153 1 999 0 nonexistent
## 3135 telephone may thu 182 2 999 0 nonexistent
## 3137 telephone may thu 644 2 999 0 nonexistent
## 3138 telephone may thu 305 1 999 0 nonexistent
## 3139 telephone may thu 140 1 999 0 nonexistent
## 3140 telephone may thu 180 2 999 0 nonexistent
## 3142 telephone may thu 374 1 999 0 nonexistent
## 3143 telephone may thu 240 1 999 0 nonexistent
## 3146 telephone may thu 219 1 999 0 nonexistent
## 3148 telephone may thu 436 1 999 0 nonexistent
## 3149 telephone may thu 463 1 999 0 nonexistent
## 3150 telephone may thu 265 1 999 0 nonexistent
## 3151 telephone may thu 234 1 999 0 nonexistent
## 3153 telephone may thu 200 1 999 0 nonexistent
## 3154 telephone may thu 158 1 999 0 nonexistent
## 3155 telephone may thu 34 1 999 0 nonexistent
## 3156 telephone may thu 160 1 999 0 nonexistent
## 3159 telephone may thu 36 1 999 0 nonexistent
## 3160 telephone may thu 139 2 999 0 nonexistent
## 3163 telephone may thu 90 1 999 0 nonexistent
## 3164 telephone may thu 134 1 999 0 nonexistent
## 3165 telephone may thu 257 1 999 0 nonexistent
## 3167 telephone may thu 94 1 999 0 nonexistent
## 3168 telephone may thu 171 10 999 0 nonexistent
## 3170 telephone may thu 285 2 999 0 nonexistent
## 3171 telephone may thu 326 4 999 0 nonexistent
## 3172 telephone may thu 451 2 999 0 nonexistent
## 3173 telephone may thu 347 1 999 0 nonexistent
## 3174 telephone may thu 116 1 999 0 nonexistent
## 3175 telephone may thu 1074 1 999 0 nonexistent
## 3176 telephone may thu 191 1 999 0 nonexistent
## 3177 telephone may thu 77 1 999 0 nonexistent
## 3178 telephone may thu 1036 1 999 0 nonexistent
## 3179 telephone may thu 303 1 999 0 nonexistent
## 3180 telephone may thu 80 1 999 0 nonexistent
## 3181 telephone may thu 322 1 999 0 nonexistent
## 3182 telephone may thu 111 1 999 0 nonexistent
## 3183 telephone may thu 750 2 999 0 nonexistent
## 3184 telephone may thu 695 1 999 0 nonexistent
## 3185 telephone may thu 435 1 999 0 nonexistent
## 3187 telephone may thu 95 3 999 0 nonexistent
## 3188 telephone may thu 208 2 999 0 nonexistent
## 3189 telephone may thu 163 1 999 0 nonexistent
## 3190 telephone may thu 168 5 999 0 nonexistent
## 3191 telephone may thu 161 3 999 0 nonexistent
## 3193 telephone may thu 112 1 999 0 nonexistent
## 3194 telephone may thu 599 2 999 0 nonexistent
## 3195 telephone may thu 30 1 999 0 nonexistent
## 3197 telephone may thu 55 1 999 0 nonexistent
## 3198 telephone may thu 231 1 999 0 nonexistent
## 3199 telephone may thu 191 1 999 0 nonexistent
## 3201 telephone may thu 75 1 999 0 nonexistent
## 3202 telephone may thu 106 1 999 0 nonexistent
## 3204 telephone may thu 1257 3 999 0 nonexistent
## 3205 telephone may thu 221 1 999 0 nonexistent
## 3207 telephone may thu 106 1 999 0 nonexistent
## 3208 telephone may thu 93 1 999 0 nonexistent
## 3209 telephone may thu 71 2 999 0 nonexistent
## 3210 telephone may thu 290 3 999 0 nonexistent
## 3211 telephone may thu 1165 1 999 0 nonexistent
## 3212 telephone may thu 164 1 999 0 nonexistent
## 3214 telephone may thu 295 2 999 0 nonexistent
## 3215 telephone may thu 187 1 999 0 nonexistent
## 3216 telephone may thu 106 1 999 0 nonexistent
## 3217 telephone may thu 219 1 999 0 nonexistent
## 3218 telephone may thu 236 1 999 0 nonexistent
## 3221 telephone may thu 124 1 999 0 nonexistent
## 3222 telephone may thu 145 4 999 0 nonexistent
## 3224 telephone may thu 734 1 999 0 nonexistent
## 3225 telephone may thu 291 2 999 0 nonexistent
## 3226 telephone may thu 101 1 999 0 nonexistent
## 3227 telephone may thu 417 3 999 0 nonexistent
## 3228 telephone may thu 191 4 999 0 nonexistent
## 3229 telephone may thu 131 1 999 0 nonexistent
## 3230 telephone may thu 97 1 999 0 nonexistent
## 3231 telephone may thu 221 2 999 0 nonexistent
## 3233 telephone may thu 104 1 999 0 nonexistent
## 3234 telephone may thu 122 1 999 0 nonexistent
## 3235 telephone may thu 72 1 999 0 nonexistent
## 3236 telephone may thu 186 1 999 0 nonexistent
## 3237 telephone may thu 23 1 999 0 nonexistent
## 3238 telephone may thu 402 1 999 0 nonexistent
## 3239 telephone may thu 37 1 999 0 nonexistent
## 3240 telephone may thu 68 5 999 0 nonexistent
## 3242 telephone may thu 587 1 999 0 nonexistent
## 3243 telephone may thu 348 1 999 0 nonexistent
## 3244 telephone may thu 51 2 999 0 nonexistent
## 3246 telephone may thu 144 2 999 0 nonexistent
## 3248 telephone may thu 203 2 999 0 nonexistent
## 3249 telephone may thu 57 2 999 0 nonexistent
## 3251 telephone may thu 217 2 999 0 nonexistent
## 3252 telephone may thu 74 1 999 0 nonexistent
## 3253 telephone may thu 464 2 999 0 nonexistent
## 3254 telephone may thu 738 7 999 0 nonexistent
## 3255 telephone may thu 126 1 999 0 nonexistent
## 3256 telephone may thu 452 2 999 0 nonexistent
## 3257 telephone may thu 203 4 999 0 nonexistent
## 3258 telephone may thu 230 7 999 0 nonexistent
## 3259 telephone may thu 187 4 999 0 nonexistent
## 3260 telephone may thu 920 2 999 0 nonexistent
## 3261 telephone may thu 136 1 999 0 nonexistent
## 3262 telephone may thu 1244 3 999 0 nonexistent
## 3263 telephone may thu 80 1 999 0 nonexistent
## 3264 telephone may thu 431 1 999 0 nonexistent
## 3265 telephone may thu 500 1 999 0 nonexistent
## 3266 telephone may thu 301 1 999 0 nonexistent
## 3267 telephone may thu 115 3 999 0 nonexistent
## 3268 telephone may thu 30 1 999 0 nonexistent
## 3270 telephone may thu 270 1 999 0 nonexistent
## 3271 telephone may thu 218 2 999 0 nonexistent
## 3272 telephone may thu 355 1 999 0 nonexistent
## 3277 telephone may thu 49 1 999 0 nonexistent
## 3278 telephone may thu 117 1 999 0 nonexistent
## 3279 telephone may thu 155 1 999 0 nonexistent
## 3281 telephone may thu 99 1 999 0 nonexistent
## 3282 telephone may thu 188 1 999 0 nonexistent
## 3283 telephone may thu 200 3 999 0 nonexistent
## 3284 telephone may thu 187 2 999 0 nonexistent
## 3286 telephone may thu 50 7 999 0 nonexistent
## 3288 telephone may thu 51 10 999 0 nonexistent
## 3290 telephone may thu 140 3 999 0 nonexistent
## 3291 telephone may thu 221 4 999 0 nonexistent
## 3292 telephone may thu 98 2 999 0 nonexistent
## 3293 telephone may thu 253 2 999 0 nonexistent
## 3294 telephone may thu 71 1 999 0 nonexistent
## 3295 telephone may thu 127 2 999 0 nonexistent
## 3296 telephone may thu 74 2 999 0 nonexistent
## 3297 telephone may thu 126 4 999 0 nonexistent
## 3298 telephone may thu 122 1 999 0 nonexistent
## 3299 telephone may thu 173 2 999 0 nonexistent
## 3300 telephone may thu 918 1 999 0 nonexistent
## 3301 telephone may thu 544 2 999 0 nonexistent
## 3302 telephone may thu 309 2 999 0 nonexistent
## 3303 telephone may thu 138 2 999 0 nonexistent
## 3306 telephone may thu 193 5 999 0 nonexistent
## 3307 telephone may thu 198 3 999 0 nonexistent
## 3308 telephone may thu 243 4 999 0 nonexistent
## 3309 telephone may thu 57 2 999 0 nonexistent
## 3310 telephone may thu 49 1 999 0 nonexistent
## 3311 telephone may thu 105 1 999 0 nonexistent
## 3312 telephone may thu 719 1 999 0 nonexistent
## 3314 telephone may thu 196 2 999 0 nonexistent
## 3315 telephone may thu 243 1 999 0 nonexistent
## 3316 telephone may thu 344 2 999 0 nonexistent
## 3317 telephone may thu 135 1 999 0 nonexistent
## 3319 telephone may thu 168 1 999 0 nonexistent
## 3320 telephone may thu 43 9 999 0 nonexistent
## 3321 telephone may thu 525 1 999 0 nonexistent
## 3322 telephone may thu 122 6 999 0 nonexistent
## 3323 telephone may thu 152 2 999 0 nonexistent
## 3324 telephone may thu 111 2 999 0 nonexistent
## 3328 telephone may thu 164 2 999 0 nonexistent
## 3331 telephone may thu 99 2 999 0 nonexistent
## 3333 telephone may thu 236 3 999 0 nonexistent
## 3334 telephone may thu 815 1 999 0 nonexistent
## 3335 telephone may thu 282 1 999 0 nonexistent
## 3337 telephone may thu 318 1 999 0 nonexistent
## 3338 telephone may thu 118 1 999 0 nonexistent
## 3339 telephone may thu 911 2 999 0 nonexistent
## 3340 telephone may thu 238 1 999 0 nonexistent
## 3341 telephone may thu 225 1 999 0 nonexistent
## 3342 telephone may thu 490 3 999 0 nonexistent
## 3343 telephone may thu 89 1 999 0 nonexistent
## 3344 telephone may thu 199 1 999 0 nonexistent
## 3345 telephone may thu 644 1 999 0 nonexistent
## 3346 telephone may thu 286 2 999 0 nonexistent
## 3349 telephone may thu 422 3 999 0 nonexistent
## 3350 telephone may thu 22 3 999 0 nonexistent
## 3351 telephone may thu 71 4 999 0 nonexistent
## 3352 telephone may thu 465 3 999 0 nonexistent
## 3353 telephone may thu 83 3 999 0 nonexistent
## 3354 telephone may thu 973 2 999 0 nonexistent
## 3355 telephone may thu 56 1 999 0 nonexistent
## 3356 telephone may thu 190 2 999 0 nonexistent
## 3357 telephone may thu 323 1 999 0 nonexistent
## 3358 telephone may thu 113 1 999 0 nonexistent
## 3359 telephone may thu 228 1 999 0 nonexistent
## 3360 telephone may thu 110 1 999 0 nonexistent
## 3362 telephone may thu 59 1 999 0 nonexistent
## 3363 telephone may thu 294 2 999 0 nonexistent
## 3364 telephone may thu 21 5 999 0 nonexistent
## 3365 telephone may thu 210 3 999 0 nonexistent
## 3366 telephone may thu 144 1 999 0 nonexistent
## 3367 telephone may thu 251 1 999 0 nonexistent
## 3369 telephone may thu 237 2 999 0 nonexistent
## 3370 telephone may thu 399 1 999 0 nonexistent
## 3371 telephone may thu 132 22 999 0 nonexistent
## 3373 telephone may thu 387 4 999 0 nonexistent
## 3374 telephone may thu 344 2 999 0 nonexistent
## 3376 telephone may thu 484 8 999 0 nonexistent
## 3377 telephone may thu 95 1 999 0 nonexistent
## 3378 telephone may thu 461 1 999 0 nonexistent
## 3379 telephone may thu 30 2 999 0 nonexistent
## 3380 telephone may thu 561 1 999 0 nonexistent
## 3381 telephone may thu 468 2 999 0 nonexistent
## 3382 telephone may thu 920 2 999 0 nonexistent
## 3383 telephone may thu 388 2 999 0 nonexistent
## 3385 telephone may thu 1224 2 999 0 nonexistent
## 3386 telephone may thu 589 1 999 0 nonexistent
## 3387 telephone may thu 160 1 999 0 nonexistent
## 3389 telephone may thu 69 1 999 0 nonexistent
## 3390 telephone may thu 964 2 999 0 nonexistent
## 3391 telephone may thu 384 4 999 0 nonexistent
## 3392 telephone may thu 103 1 999 0 nonexistent
## 3393 telephone may thu 52 1 999 0 nonexistent
## 3394 telephone may thu 205 2 999 0 nonexistent
## 3395 telephone may thu 486 2 999 0 nonexistent
## 3396 telephone may thu 1156 2 999 0 nonexistent
## 3397 telephone may thu 73 2 999 0 nonexistent
## 3398 telephone may thu 523 5 999 0 nonexistent
## 3399 telephone may thu 157 5 999 0 nonexistent
## 3400 telephone may thu 186 5 999 0 nonexistent
## 3401 telephone may thu 73 5 999 0 nonexistent
## 3402 telephone may thu 544 3 999 0 nonexistent
## 3403 telephone may thu 194 2 999 0 nonexistent
## 3404 telephone may thu 420 4 999 0 nonexistent
## 3405 telephone may thu 584 2 999 0 nonexistent
## 3406 telephone may thu 192 3 999 0 nonexistent
## 3408 telephone may thu 1231 2 999 0 nonexistent
## 3410 telephone may thu 298 3 999 0 nonexistent
## 3412 telephone may thu 21 6 999 0 nonexistent
## 3413 telephone may thu 404 7 999 0 nonexistent
## 3414 telephone may thu 241 23 999 0 nonexistent
## 3415 telephone may thu 302 1 999 0 nonexistent
## 3416 telephone may thu 440 2 999 0 nonexistent
## 3417 telephone may thu 172 2 999 0 nonexistent
## 3418 telephone may thu 319 7 999 0 nonexistent
## 3419 telephone may thu 1051 3 999 0 nonexistent
## 3421 telephone may thu 213 4 999 0 nonexistent
## 3422 telephone may thu 194 2 999 0 nonexistent
## 3423 telephone may thu 276 4 999 0 nonexistent
## 3424 telephone may thu 19 8 999 0 nonexistent
## 3425 telephone may thu 226 2 999 0 nonexistent
## 3426 telephone may thu 546 8 999 0 nonexistent
## 3427 telephone may thu 419 2 999 0 nonexistent
## 3429 telephone may thu 156 5 999 0 nonexistent
## 3430 telephone may thu 184 2 999 0 nonexistent
## 3431 telephone may thu 548 1 999 0 nonexistent
## 3432 telephone may thu 760 2 999 0 nonexistent
## 3433 telephone may thu 244 2 999 0 nonexistent
## 3434 telephone may thu 328 4 999 0 nonexistent
## 3435 telephone may thu 171 2 999 0 nonexistent
## 3437 telephone may thu 1263 2 999 0 nonexistent
## 3441 telephone may thu 17 10 999 0 nonexistent
## 3442 telephone may thu 301 4 999 0 nonexistent
## 3443 telephone may thu 267 5 999 0 nonexistent
## 3444 telephone may thu 475 2 999 0 nonexistent
## 3446 telephone may thu 487 4 999 0 nonexistent
## 3447 telephone may thu 126 2 999 0 nonexistent
## 3448 telephone may thu 114 1 999 0 nonexistent
## 3450 telephone may thu 196 2 999 0 nonexistent
## 3453 telephone may thu 365 1 999 0 nonexistent
## 3455 telephone may thu 192 3 999 0 nonexistent
## 3456 telephone may thu 244 2 999 0 nonexistent
## 3457 telephone may thu 118 4 999 0 nonexistent
## 3458 telephone may thu 160 1 999 0 nonexistent
## 3460 telephone may thu 56 13 999 0 nonexistent
## 3461 telephone may thu 430 2 999 0 nonexistent
## 3462 telephone may thu 242 6 999 0 nonexistent
## 3463 telephone may thu 809 3 999 0 nonexistent
## 3464 telephone may thu 317 7 999 0 nonexistent
## 3465 telephone may thu 7 7 999 0 nonexistent
## 3466 telephone may thu 493 2 999 0 nonexistent
## 3467 telephone may thu 381 7 999 0 nonexistent
## 3468 telephone may thu 112 2 999 0 nonexistent
## 3469 telephone may thu 523 2 999 0 nonexistent
## 3470 telephone may thu 309 2 999 0 nonexistent
## 3471 telephone may thu 184 2 999 0 nonexistent
## 3472 telephone may thu 850 6 999 0 nonexistent
## 3473 telephone may thu 420 2 999 0 nonexistent
## 3474 telephone may thu 118 4 999 0 nonexistent
## 3475 telephone may thu 71 3 999 0 nonexistent
## 3476 telephone may thu 314 7 999 0 nonexistent
## 3477 telephone may thu 196 4 999 0 nonexistent
## 3478 telephone may thu 151 2 999 0 nonexistent
## 3480 telephone may thu 516 9 999 0 nonexistent
## 3481 telephone may thu 855 4 999 0 nonexistent
## 3482 telephone may thu 78 4 999 0 nonexistent
## 3483 telephone may thu 875 5 999 0 nonexistent
## 3484 telephone may thu 124 2 999 0 nonexistent
## 3485 telephone may thu 24 16 999 0 nonexistent
## 3486 telephone may thu 190 6 999 0 nonexistent
## 3487 telephone may thu 53 3 999 0 nonexistent
## 3489 telephone may thu 284 2 999 0 nonexistent
## 3490 telephone may thu 262 4 999 0 nonexistent
## 3492 telephone may thu 263 4 999 0 nonexistent
## 3493 telephone may thu 214 4 999 0 nonexistent
## 3494 telephone may thu 88 3 999 0 nonexistent
## 3495 telephone may thu 255 12 999 0 nonexistent
## 3496 telephone may thu 202 4 999 0 nonexistent
## 3497 telephone may thu 438 5 999 0 nonexistent
## 3499 telephone may thu 426 6 999 0 nonexistent
## 3500 telephone may thu 302 8 999 0 nonexistent
## 3501 telephone may thu 213 2 999 0 nonexistent
## 3502 telephone may thu 214 4 999 0 nonexistent
## 3503 telephone may thu 90 3 999 0 nonexistent
## 3504 telephone may thu 448 4 999 0 nonexistent
## 3505 telephone may thu 70 6 999 0 nonexistent
## 3506 telephone may thu 347 4 999 0 nonexistent
## 3507 telephone may thu 892 4 999 0 nonexistent
## 3508 telephone may thu 320 3 999 0 nonexistent
## 3509 telephone may thu 175 2 999 0 nonexistent
## 3510 telephone may thu 222 11 999 0 nonexistent
## 3512 telephone may thu 734 5 999 0 nonexistent
## 3513 telephone may thu 177 3 999 0 nonexistent
## 3515 telephone may thu 543 12 999 0 nonexistent
## 3516 telephone may thu 374 5 999 0 nonexistent
## 3517 telephone may thu 241 2 999 0 nonexistent
## 3518 telephone may thu 137 2 999 0 nonexistent
## 3520 telephone may thu 297 1 999 0 nonexistent
## 3522 telephone may thu 377 4 999 0 nonexistent
## 3523 telephone may fri 84 2 999 0 nonexistent
## 3524 telephone may fri 122 2 999 0 nonexistent
## 3525 telephone may fri 135 3 999 0 nonexistent
## 3527 telephone may fri 95 3 999 0 nonexistent
## 3528 telephone may fri 248 3 999 0 nonexistent
## 3530 telephone may fri 28 4 999 0 nonexistent
## 3531 telephone may fri 371 2 999 0 nonexistent
## 3532 telephone may fri 329 3 999 0 nonexistent
## 3534 telephone may fri 247 1 999 0 nonexistent
## 3535 telephone may fri 343 1 999 0 nonexistent
## 3536 telephone may fri 266 6 999 0 nonexistent
## 3537 telephone may fri 137 1 999 0 nonexistent
## 3539 telephone may fri 206 4 999 0 nonexistent
## 3540 telephone may fri 69 15 999 0 nonexistent
## 3541 telephone may fri 228 1 999 0 nonexistent
## 3542 telephone may fri 515 1 999 0 nonexistent
## 3544 telephone may fri 29 1 999 0 nonexistent
## 3546 telephone may fri 813 1 999 0 nonexistent
## 3548 telephone may fri 601 1 999 0 nonexistent
## 3549 telephone may fri 73 1 999 0 nonexistent
## 3551 telephone may fri 230 3 999 0 nonexistent
## 3552 telephone may fri 456 1 999 0 nonexistent
## 3553 telephone may fri 75 1 999 0 nonexistent
## 3554 telephone may fri 225 1 999 0 nonexistent
## 3555 telephone may fri 387 1 999 0 nonexistent
## 3556 telephone may fri 286 3 999 0 nonexistent
## 3558 telephone may fri 448 2 999 0 nonexistent
## 3559 telephone may fri 223 3 999 0 nonexistent
## 3560 telephone may fri 136 1 999 0 nonexistent
## 3561 telephone may fri 93 1 999 0 nonexistent
## 3563 telephone may fri 178 1 999 0 nonexistent
## 3566 telephone may fri 150 1 999 0 nonexistent
## 3567 telephone may fri 844 1 999 0 nonexistent
## 3570 telephone may fri 137 1 999 0 nonexistent
## 3571 telephone may fri 676 1 999 0 nonexistent
## 3572 telephone may fri 656 2 999 0 nonexistent
## 3574 telephone may fri 88 6 999 0 nonexistent
## 3575 telephone may fri 1252 1 999 0 nonexistent
## 3576 telephone may fri 228 2 999 0 nonexistent
## 3577 telephone may fri 1143 3 999 0 nonexistent
## 3578 telephone may fri 283 1 999 0 nonexistent
## 3580 telephone may fri 104 1 999 0 nonexistent
## 3581 telephone may fri 103 1 999 0 nonexistent
## 3582 telephone may fri 213 1 999 0 nonexistent
## 3584 telephone may fri 122 1 999 0 nonexistent
## 3588 telephone may fri 114 2 999 0 nonexistent
## 3589 telephone may fri 216 1 999 0 nonexistent
## 3590 telephone may fri 250 1 999 0 nonexistent
## 3591 telephone may fri 91 1 999 0 nonexistent
## 3592 telephone may fri 159 1 999 0 nonexistent
## 3593 telephone may fri 147 1 999 0 nonexistent
## 3596 telephone may fri 37 1 999 0 nonexistent
## 3598 telephone may fri 356 2 999 0 nonexistent
## 3599 telephone may fri 248 1 999 0 nonexistent
## 3600 telephone may fri 242 7 999 0 nonexistent
## 3601 telephone may fri 134 3 999 0 nonexistent
## 3605 telephone may fri 346 1 999 0 nonexistent
## 3606 telephone may fri 370 1 999 0 nonexistent
## 3607 telephone may fri 261 1 999 0 nonexistent
## 3608 telephone may fri 63 1 999 0 nonexistent
## 3609 telephone may fri 688 1 999 0 nonexistent
## 3610 telephone may fri 84 1 999 0 nonexistent
## 3612 telephone may fri 167 1 999 0 nonexistent
## 3613 telephone may fri 25 1 999 0 nonexistent
## 3614 telephone may fri 244 1 999 0 nonexistent
## 3615 telephone may fri 140 1 999 0 nonexistent
## 3616 telephone may fri 165 1 999 0 nonexistent
## 3617 telephone may fri 122 1 999 0 nonexistent
## 3618 telephone may fri 130 2 999 0 nonexistent
## 3619 telephone may fri 345 1 999 0 nonexistent
## 3620 telephone may fri 42 2 999 0 nonexistent
## 3621 telephone may fri 277 5 999 0 nonexistent
## 3623 telephone may fri 214 1 999 0 nonexistent
## 3624 telephone may fri 140 1 999 0 nonexistent
## 3625 telephone may fri 140 1 999 0 nonexistent
## 3628 telephone may fri 96 2 999 0 nonexistent
## 3629 telephone may fri 803 1 999 0 nonexistent
## 3630 telephone may fri 225 4 999 0 nonexistent
## 3631 telephone may fri 260 1 999 0 nonexistent
## 3632 telephone may fri 754 1 999 0 nonexistent
## 3634 telephone may fri 192 1 999 0 nonexistent
## 3636 telephone may fri 76 3 999 0 nonexistent
## 3637 telephone may fri 24 1 999 0 nonexistent
## 3638 telephone may fri 171 2 999 0 nonexistent
## 3640 telephone may fri 42 8 999 0 nonexistent
## 3641 telephone may fri 343 1 999 0 nonexistent
## 3642 telephone may fri 111 1 999 0 nonexistent
## 3643 telephone may fri 77 1 999 0 nonexistent
## 3644 telephone may fri 268 6 999 0 nonexistent
## 3645 telephone may fri 217 2 999 0 nonexistent
## 3647 telephone may fri 241 1 999 0 nonexistent
## 3648 telephone may fri 47 1 999 0 nonexistent
## 3649 telephone may fri 196 1 999 0 nonexistent
## 3650 telephone may fri 601 1 999 0 nonexistent
## 3651 telephone may fri 178 2 999 0 nonexistent
## 3653 telephone may fri 362 22 999 0 nonexistent
## 3654 telephone may fri 410 1 999 0 nonexistent
## 3656 telephone may fri 108 2 999 0 nonexistent
## 3657 telephone may fri 172 4 999 0 nonexistent
## 3658 telephone may fri 184 2 999 0 nonexistent
## 3660 telephone may fri 359 1 999 0 nonexistent
## 3662 telephone may fri 787 1 999 0 nonexistent
## 3663 telephone may fri 169 1 999 0 nonexistent
## 3664 telephone may fri 241 1 999 0 nonexistent
## 3666 telephone may fri 22 4 999 0 nonexistent
## 3667 telephone may fri 326 1 999 0 nonexistent
## 3669 telephone may fri 196 3 999 0 nonexistent
## 3670 telephone may fri 270 1 999 0 nonexistent
## 3672 telephone may fri 679 17 999 0 nonexistent
## 3673 telephone may fri 184 1 999 0 nonexistent
## 3675 telephone may fri 102 1 999 0 nonexistent
## 3679 telephone may fri 33 1 999 0 nonexistent
## 3680 telephone may fri 27 2 999 0 nonexistent
## 3681 telephone may fri 230 1 999 0 nonexistent
## 3683 telephone may fri 322 2 999 0 nonexistent
## 3684 telephone may fri 187 1 999 0 nonexistent
## 3685 telephone may fri 124 1 999 0 nonexistent
## 3686 telephone may fri 1230 3 999 0 nonexistent
## 3687 telephone may fri 107 2 999 0 nonexistent
## 3688 telephone may fri 379 1 999 0 nonexistent
## 3689 telephone may fri 95 1 999 0 nonexistent
## 3690 telephone may fri 42 3 999 0 nonexistent
## 3691 telephone may fri 197 1 999 0 nonexistent
## 3692 telephone may fri 320 2 999 0 nonexistent
## 3693 telephone may fri 223 1 999 0 nonexistent
## 3695 telephone may fri 230 1 999 0 nonexistent
## 3696 telephone may fri 489 2 999 0 nonexistent
## 3697 telephone may fri 98 1 999 0 nonexistent
## 3698 telephone may fri 894 1 999 0 nonexistent
## 3699 telephone may fri 38 3 999 0 nonexistent
## 3701 telephone may fri 335 1 999 0 nonexistent
## 3702 telephone may fri 161 1 999 0 nonexistent
## 3703 telephone may fri 410 3 999 0 nonexistent
## 3704 telephone may fri 280 1 999 0 nonexistent
## 3705 telephone may fri 374 2 999 0 nonexistent
## 3706 telephone may fri 193 8 999 0 nonexistent
## 3707 telephone may fri 166 2 999 0 nonexistent
## 3709 telephone may fri 258 2 999 0 nonexistent
## 3711 telephone may fri 136 2 999 0 nonexistent
## 3712 telephone may fri 299 2 999 0 nonexistent
## 3713 telephone may fri 381 2 999 0 nonexistent
## 3715 telephone may fri 412 1 999 0 nonexistent
## 3716 telephone may fri 376 2 999 0 nonexistent
## 3717 telephone may fri 393 2 999 0 nonexistent
## 3718 telephone may fri 56 3 999 0 nonexistent
## 3719 telephone may fri 112 4 999 0 nonexistent
## 3720 telephone may fri 155 3 999 0 nonexistent
## 3721 telephone may fri 703 4 999 0 nonexistent
## 3722 telephone may fri 141 2 999 0 nonexistent
## 3723 telephone may fri 475 2 999 0 nonexistent
## 3724 telephone may fri 121 2 999 0 nonexistent
## 3725 telephone may fri 471 2 999 0 nonexistent
## 3727 telephone may fri 177 4 999 0 nonexistent
## 3728 telephone may fri 344 2 999 0 nonexistent
## 3730 telephone may fri 404 1 999 0 nonexistent
## 3731 telephone may fri 287 4 999 0 nonexistent
## 3732 telephone may fri 329 1 999 0 nonexistent
## 3733 telephone may fri 433 1 999 0 nonexistent
## 3734 telephone may fri 216 1 999 0 nonexistent
## 3735 telephone may fri 1340 1 999 0 nonexistent
## 3736 telephone may fri 323 2 999 0 nonexistent
## 3737 telephone may fri 132 11 999 0 nonexistent
## 3738 telephone may fri 199 4 999 0 nonexistent
## 3739 telephone may fri 221 2 999 0 nonexistent
## 3740 telephone may fri 200 2 999 0 nonexistent
## 3742 telephone may fri 80 2 999 0 nonexistent
## 3743 telephone may fri 123 3 999 0 nonexistent
## 3745 telephone may fri 461 2 999 0 nonexistent
## 3746 telephone may fri 213 14 999 0 nonexistent
## 3747 telephone may fri 193 11 999 0 nonexistent
## 3748 telephone may fri 428 1 999 0 nonexistent
## 3749 telephone may fri 291 1 999 0 nonexistent
## 3750 telephone may fri 136 1 999 0 nonexistent
## 3751 telephone may fri 124 1 999 0 nonexistent
## 3752 telephone may fri 214 4 999 0 nonexistent
## 3754 telephone may fri 718 1 999 0 nonexistent
## 3756 telephone may fri 94 1 999 0 nonexistent
## 3757 telephone may fri 74 1 999 0 nonexistent
## 3758 telephone may fri 107 1 999 0 nonexistent
## 3759 telephone may fri 97 3 999 0 nonexistent
## 3760 telephone may fri 51 1 999 0 nonexistent
## 3761 telephone may fri 109 1 999 0 nonexistent
## 3762 telephone may fri 225 1 999 0 nonexistent
## 3763 telephone may fri 378 1 999 0 nonexistent
## 3764 telephone may fri 217 1 999 0 nonexistent
## 3767 telephone may fri 467 1 999 0 nonexistent
## 3768 telephone may fri 386 1 999 0 nonexistent
## 3769 telephone may fri 290 1 999 0 nonexistent
## 3771 telephone may fri 764 7 999 0 nonexistent
## 3773 telephone may fri 16 23 999 0 nonexistent
## 3774 telephone may fri 148 18 999 0 nonexistent
## 3775 telephone may fri 2680 1 999 0 nonexistent
## 3776 telephone may fri 242 3 999 0 nonexistent
## 3777 telephone may fri 269 2 999 0 nonexistent
## 3778 telephone may fri 208 2 999 0 nonexistent
## 3779 telephone may fri 370 2 999 0 nonexistent
## 3780 telephone may fri 274 8 999 0 nonexistent
## 3781 telephone may fri 326 1 999 0 nonexistent
## 3782 telephone may fri 337 2 999 0 nonexistent
## 3783 telephone may fri 104 1 999 0 nonexistent
## 3785 telephone may fri 353 4 999 0 nonexistent
## 3787 telephone may fri 698 9 999 0 nonexistent
## 3788 telephone may fri 180 1 999 0 nonexistent
## 3789 telephone may fri 257 2 999 0 nonexistent
## 3790 telephone may fri 467 1 999 0 nonexistent
## 3791 telephone may fri 233 1 999 0 nonexistent
## 3792 telephone may fri 218 2 999 0 nonexistent
## 3795 telephone may fri 40 5 999 0 nonexistent
## 3796 telephone may fri 698 1 999 0 nonexistent
## 3797 telephone may fri 76 17 999 0 nonexistent
## 3798 telephone may fri 355 2 999 0 nonexistent
## 3799 telephone may fri 557 4 999 0 nonexistent
## 3800 telephone may fri 148 2 999 0 nonexistent
## 3801 telephone may fri 128 2 999 0 nonexistent
## 3802 telephone may fri 130 3 999 0 nonexistent
## 3803 telephone may fri 280 2 999 0 nonexistent
## 3804 telephone may fri 152 2 999 0 nonexistent
## 3805 telephone may fri 283 2 999 0 nonexistent
## 3806 telephone may fri 523 3 999 0 nonexistent
## 3807 telephone may fri 316 7 999 0 nonexistent
## 3808 telephone may fri 1128 3 999 0 nonexistent
## 3809 telephone may fri 171 4 999 0 nonexistent
## 3810 telephone may fri 174 15 999 0 nonexistent
## 3811 telephone may fri 71 11 999 0 nonexistent
## 3813 telephone may fri 221 2 999 0 nonexistent
## 3814 telephone may fri 234 2 999 0 nonexistent
## 3815 telephone may fri 138 2 999 0 nonexistent
## 3816 telephone may fri 339 5 999 0 nonexistent
## 3817 telephone may fri 509 2 999 0 nonexistent
## 3818 telephone may fri 254 16 999 0 nonexistent
## 3820 telephone may fri 344 4 999 0 nonexistent
## 3822 telephone may fri 251 4 999 0 nonexistent
## 3825 telephone may fri 312 3 999 0 nonexistent
## 3826 telephone may fri 292 8 999 0 nonexistent
## 3827 telephone may fri 279 2 999 0 nonexistent
## 3828 telephone may fri 293 3 999 0 nonexistent
## 3829 telephone may fri 198 5 999 0 nonexistent
## 3830 telephone may fri 1408 2 999 0 nonexistent
## 3831 telephone may fri 827 2 999 0 nonexistent
## 3832 telephone may fri 303 5 999 0 nonexistent
## 3833 telephone may fri 588 3 999 0 nonexistent
## 3834 telephone may fri 680 3 999 0 nonexistent
## 3836 telephone may fri 21 3 999 0 nonexistent
## 3837 telephone may fri 251 3 999 0 nonexistent
## 3839 telephone may fri 81 6 999 0 nonexistent
## 3840 telephone may fri 4 2 999 0 nonexistent
## 3841 telephone may fri 283 3 999 0 nonexistent
## 3842 telephone may fri 248 2 999 0 nonexistent
## 3845 telephone may fri 427 3 999 0 nonexistent
## 3846 telephone may fri 148 9 999 0 nonexistent
## 3847 telephone may fri 408 10 999 0 nonexistent
## 3849 telephone may fri 236 2 999 0 nonexistent
## 3850 telephone may fri 428 2 999 0 nonexistent
## 3851 telephone may fri 32 3 999 0 nonexistent
## 3853 telephone may fri 522 5 999 0 nonexistent
## 3854 telephone may fri 165 4 999 0 nonexistent
## 3857 telephone may fri 730 2 999 0 nonexistent
## 3858 telephone may fri 167 2 999 0 nonexistent
## 3859 telephone may fri 1023 4 999 0 nonexistent
## 3860 telephone may fri 469 2 999 0 nonexistent
## 3861 telephone may fri 385 7 999 0 nonexistent
## 3862 telephone may fri 169 3 999 0 nonexistent
## 3863 telephone may fri 409 3 999 0 nonexistent
## 3864 telephone may fri 165 6 999 0 nonexistent
## 3865 telephone may fri 437 2 999 0 nonexistent
## 3866 telephone may fri 89 2 999 0 nonexistent
## 3867 telephone may fri 261 6 999 0 nonexistent
## 3868 telephone may fri 294 4 999 0 nonexistent
## 3872 telephone may fri 230 2 999 0 nonexistent
## 3873 telephone may fri 192 20 999 0 nonexistent
## 3874 telephone may fri 65 3 999 0 nonexistent
## 3876 telephone may fri 239 2 999 0 nonexistent
## 3877 telephone may fri 196 6 999 0 nonexistent
## 3878 telephone may fri 243 2 999 0 nonexistent
## 3879 telephone may fri 393 2 999 0 nonexistent
## 3880 telephone may fri 512 6 999 0 nonexistent
## 3881 telephone may fri 218 3 999 0 nonexistent
## 3882 telephone may fri 215 3 999 0 nonexistent
## 3883 telephone may fri 186 5 999 0 nonexistent
## 3884 telephone may fri 299 4 999 0 nonexistent
## 3886 telephone may fri 103 7 999 0 nonexistent
## 3887 telephone may fri 297 4 999 0 nonexistent
## 3888 telephone may fri 1064 4 999 0 nonexistent
## 3889 telephone may fri 90 7 999 0 nonexistent
## 3890 telephone may fri 59 5 999 0 nonexistent
## 3891 telephone may fri 102 4 999 0 nonexistent
## 3892 telephone may fri 1110 3 999 0 nonexistent
## 3893 telephone may fri 1187 4 999 0 nonexistent
## 3894 telephone may mon 93 4 999 0 nonexistent
## 3895 telephone may mon 119 2 999 0 nonexistent
## 3896 telephone may mon 65 3 999 0 nonexistent
## 3897 telephone may mon 79 19 999 0 nonexistent
## 3898 telephone may mon 145 4 999 0 nonexistent
## 3899 telephone may mon 39 6 999 0 nonexistent
## 3901 telephone may mon 311 2 999 0 nonexistent
## 3902 telephone may mon 179 4 999 0 nonexistent
## 3903 telephone may mon 62 2 999 0 nonexistent
## 3904 telephone may mon 115 2 999 0 nonexistent
## 3905 telephone may mon 134 2 999 0 nonexistent
## 3906 telephone may mon 594 2 999 0 nonexistent
## 3908 telephone may mon 92 2 999 0 nonexistent
## 3909 telephone may mon 19 5 999 0 nonexistent
## 3910 telephone may mon 501 3 999 0 nonexistent
## 3911 telephone may mon 114 2 999 0 nonexistent
## 3912 telephone may mon 221 2 999 0 nonexistent
## 3913 telephone may mon 219 2 999 0 nonexistent
## 3914 telephone may mon 221 4 999 0 nonexistent
## 3915 telephone may mon 374 6 999 0 nonexistent
## 3916 telephone may mon 123 1 999 0 nonexistent
## 3917 telephone may mon 166 1 999 0 nonexistent
## 3919 telephone may mon 37 1 999 0 nonexistent
## 3920 telephone may mon 35 1 999 0 nonexistent
## 3922 telephone may mon 88 5 999 0 nonexistent
## 3923 telephone may mon 77 2 999 0 nonexistent
## 3925 telephone may mon 312 1 999 0 nonexistent
## 3926 telephone may mon 134 3 999 0 nonexistent
## 3927 telephone may mon 61 4 999 0 nonexistent
## 3928 telephone may mon 258 1 999 0 nonexistent
## 3931 telephone may mon 153 1 999 0 nonexistent
## 3932 telephone may mon 131 1 999 0 nonexistent
## 3933 telephone may mon 219 1 999 0 nonexistent
## 3934 telephone may mon 468 1 999 0 nonexistent
## 3935 telephone may mon 326 2 999 0 nonexistent
## 3936 telephone may mon 412 1 999 0 nonexistent
## 3937 telephone may mon 579 1 999 0 nonexistent
## 3938 telephone may mon 277 3 999 0 nonexistent
## 3939 telephone may mon 316 2 999 0 nonexistent
## 3940 telephone may mon 882 1 999 0 nonexistent
## 3941 telephone may mon 380 1 999 0 nonexistent
## 3942 telephone may mon 169 1 999 0 nonexistent
## 3944 telephone may mon 122 6 999 0 nonexistent
## 3945 telephone may mon 83 4 999 0 nonexistent
## 3946 telephone may mon 318 1 999 0 nonexistent
## 3947 telephone may mon 29 3 999 0 nonexistent
## 3948 telephone may mon 218 1 999 0 nonexistent
## 3950 telephone may mon 130 2 999 0 nonexistent
## 3951 telephone may mon 429 1 999 0 nonexistent
## 3952 telephone may mon 27 1 999 0 nonexistent
## 3953 telephone may mon 343 2 999 0 nonexistent
## 3955 telephone may mon 167 3 999 0 nonexistent
## 3956 telephone may mon 89 1 999 0 nonexistent
## 3958 telephone may mon 289 1 999 0 nonexistent
## 3959 telephone may mon 156 1 999 0 nonexistent
## 3961 telephone may mon 351 1 999 0 nonexistent
## 3962 telephone may mon 198 1 999 0 nonexistent
## 3963 telephone may mon 165 1 999 0 nonexistent
## 3964 telephone may mon 25 1 999 0 nonexistent
## 3965 telephone may mon 134 2 999 0 nonexistent
## 3967 telephone may mon 298 1 999 0 nonexistent
## 3968 telephone may mon 188 2 999 0 nonexistent
## 3970 telephone may mon 201 1 999 0 nonexistent
## 3972 telephone may mon 206 1 999 0 nonexistent
## 3973 telephone may mon 68 1 999 0 nonexistent
## 3974 telephone may mon 82 3 999 0 nonexistent
## 3975 telephone may mon 94 2 999 0 nonexistent
## 3976 telephone may mon 97 2 999 0 nonexistent
## 3977 telephone may mon 138 1 999 0 nonexistent
## 3978 telephone may mon 285 2 999 0 nonexistent
## 3980 telephone may mon 483 2 999 0 nonexistent
## 3981 telephone may mon 267 1 999 0 nonexistent
## 3982 telephone may mon 382 2 999 0 nonexistent
## 3983 telephone may mon 55 2 999 0 nonexistent
## 3985 telephone may mon 18 1 999 0 nonexistent
## 3986 telephone may mon 234 1 999 0 nonexistent
## 3987 telephone may mon 792 4 999 0 nonexistent
## 3988 telephone may mon 95 1 999 0 nonexistent
## 3989 telephone may mon 943 2 999 0 nonexistent
## 3990 telephone may mon 798 1 999 0 nonexistent
## 3992 telephone may mon 84 12 999 0 nonexistent
## 3993 telephone may mon 100 3 999 0 nonexistent
## 3995 telephone may mon 143 1 999 0 nonexistent
## 3997 telephone may mon 23 1 999 0 nonexistent
## 3998 telephone may mon 73 1 999 0 nonexistent
## 3999 telephone may mon 31 1 999 0 nonexistent
## 4000 telephone may mon 182 2 999 0 nonexistent
## 4001 telephone may mon 190 1 999 0 nonexistent
## 4002 telephone may mon 351 1 999 0 nonexistent
## 4004 telephone may mon 237 1 999 0 nonexistent
## 4006 telephone may mon 529 3 999 0 nonexistent
## 4007 telephone may mon 36 1 999 0 nonexistent
## 4008 telephone may mon 122 2 999 0 nonexistent
## 4009 telephone may mon 198 1 999 0 nonexistent
## 4010 telephone may mon 67 1 999 0 nonexistent
## 4013 telephone may mon 496 3 999 0 nonexistent
## 4014 telephone may mon 114 2 999 0 nonexistent
## 4015 telephone may mon 156 5 999 0 nonexistent
## 4016 telephone may mon 211 2 999 0 nonexistent
## 4017 telephone may mon 265 1 999 0 nonexistent
## 4021 telephone may mon 287 1 999 0 nonexistent
## 4022 telephone may mon 68 2 999 0 nonexistent
## 4023 telephone may mon 167 4 999 0 nonexistent
## 4024 telephone may mon 336 1 999 0 nonexistent
## 4025 telephone may mon 202 1 999 0 nonexistent
## 4026 telephone may mon 228 1 999 0 nonexistent
## 4027 telephone may mon 192 1 999 0 nonexistent
## 4029 telephone may mon 260 1 999 0 nonexistent
## 4030 telephone may mon 387 1 999 0 nonexistent
## 4031 telephone may mon 70 1 999 0 nonexistent
## 4032 telephone may mon 272 1 999 0 nonexistent
## 4034 telephone may mon 35 3 999 0 nonexistent
## 4035 telephone may mon 607 1 999 0 nonexistent
## 4036 telephone may mon 257 1 999 0 nonexistent
## 4037 telephone may mon 36 2 999 0 nonexistent
## 4039 telephone may mon 105 2 999 0 nonexistent
## 4040 telephone may mon 260 9 999 0 nonexistent
## 4041 telephone may mon 197 4 999 0 nonexistent
## 4042 telephone may mon 174 2 999 0 nonexistent
## 4043 telephone may mon 144 2 999 0 nonexistent
## 4045 telephone may mon 136 2 999 0 nonexistent
## 4046 telephone may mon 546 12 999 0 nonexistent
## 4047 telephone may mon 49 2 999 0 nonexistent
## 4048 telephone may mon 335 4 999 0 nonexistent
## 4049 telephone may mon 105 1 999 0 nonexistent
## 4050 telephone may mon 1203 3 999 0 nonexistent
## 4051 telephone may mon 1022 4 999 0 nonexistent
## 4053 telephone may mon 258 1 999 0 nonexistent
## 4054 telephone may mon 199 1 999 0 nonexistent
## 4056 telephone may mon 123 1 999 0 nonexistent
## 4057 telephone may mon 201 14 999 0 nonexistent
## 4058 telephone may mon 193 3 999 0 nonexistent
## 4059 telephone may mon 159 3 999 0 nonexistent
## 4060 telephone may mon 166 3 999 0 nonexistent
## 4061 telephone may mon 480 1 999 0 nonexistent
## 4062 telephone may mon 149 4 999 0 nonexistent
## 4063 telephone may mon 396 3 999 0 nonexistent
## 4064 telephone may mon 124 3 999 0 nonexistent
## 4065 telephone may mon 13 1 999 0 nonexistent
## 4067 telephone may mon 162 1 999 0 nonexistent
## 4068 telephone may mon 723 1 999 0 nonexistent
## 4069 telephone may mon 89 1 999 0 nonexistent
## 4070 telephone may mon 257 2 999 0 nonexistent
## 4071 telephone may mon 361 2 999 0 nonexistent
## 4072 telephone may mon 314 1 999 0 nonexistent
## 4073 telephone may mon 83 1 999 0 nonexistent
## 4074 telephone may mon 215 1 999 0 nonexistent
## 4078 telephone may mon 183 7 999 0 nonexistent
## 4079 telephone may mon 70 1 999 0 nonexistent
## 4080 telephone may mon 19 1 999 0 nonexistent
## 4081 telephone may mon 346 1 999 0 nonexistent
## 4084 telephone may mon 133 1 999 0 nonexistent
## 4085 telephone may mon 193 6 999 0 nonexistent
## 4086 telephone may mon 181 1 999 0 nonexistent
## 4087 telephone may mon 513 1 999 0 nonexistent
## 4088 telephone may mon 109 2 999 0 nonexistent
## 4089 telephone may mon 263 1 999 0 nonexistent
## 4090 telephone may mon 333 1 999 0 nonexistent
## 4092 telephone may mon 191 4 999 0 nonexistent
## 4094 telephone may mon 180 1 999 0 nonexistent
## 4095 telephone may mon 446 3 999 0 nonexistent
## 4096 telephone may mon 107 2 999 0 nonexistent
## 4097 telephone may mon 335 3 999 0 nonexistent
## 4098 telephone may mon 120 3 999 0 nonexistent
## 4099 telephone may mon 219 2 999 0 nonexistent
## 4100 telephone may mon 148 1 999 0 nonexistent
## 4101 telephone may mon 400 2 999 0 nonexistent
## 4102 telephone may mon 503 2 999 0 nonexistent
## 4103 telephone may mon 125 5 999 0 nonexistent
## 4104 telephone may mon 329 1 999 0 nonexistent
## 4105 telephone may mon 194 3 999 0 nonexistent
## 4106 telephone may mon 7 1 999 0 nonexistent
## 4107 telephone may mon 53 1 999 0 nonexistent
## 4108 telephone may mon 261 56 999 0 nonexistent
## 4109 telephone may mon 100 1 999 0 nonexistent
## 4110 telephone may mon 104 1 999 0 nonexistent
## 4111 telephone may mon 552 3 999 0 nonexistent
## 4115 telephone may mon 44 39 999 0 nonexistent
## 4116 telephone may mon 207 3 999 0 nonexistent
## 4117 telephone may mon 401 2 999 0 nonexistent
## 4118 telephone may mon 178 5 999 0 nonexistent
## 4119 telephone may mon 53 5 999 0 nonexistent
## 4120 telephone may mon 349 2 999 0 nonexistent
## 4121 telephone may mon 34 9 999 0 nonexistent
## 4122 telephone may mon 48 3 999 0 nonexistent
## 4123 telephone may mon 182 11 999 0 nonexistent
## 4125 telephone may mon 457 5 999 0 nonexistent
## 4126 telephone may mon 193 1 999 0 nonexistent
## 4127 telephone may mon 142 3 999 0 nonexistent
## 4128 telephone may mon 123 2 999 0 nonexistent
## 4129 telephone may mon 65 3 999 0 nonexistent
## 4131 telephone may mon 100 2 999 0 nonexistent
## 4132 telephone may mon 403 2 999 0 nonexistent
## 4133 telephone may mon 229 3 999 0 nonexistent
## 4134 telephone may mon 445 2 999 0 nonexistent
## 4135 telephone may mon 206 4 999 0 nonexistent
## 4137 telephone may mon 183 2 999 0 nonexistent
## 4138 telephone may mon 140 2 999 0 nonexistent
## 4139 telephone may mon 134 3 999 0 nonexistent
## 4140 telephone may mon 88 35 999 0 nonexistent
## 4141 telephone may mon 234 13 999 0 nonexistent
## 4144 telephone may mon 394 2 999 0 nonexistent
## 4146 telephone may mon 408 2 999 0 nonexistent
## 4147 telephone may mon 114 2 999 0 nonexistent
## 4149 telephone may mon 243 6 999 0 nonexistent
## 4150 telephone may mon 180 6 999 0 nonexistent
## 4154 telephone may mon 324 2 999 0 nonexistent
## 4155 telephone may mon 205 3 999 0 nonexistent
## 4156 telephone may mon 194 2 999 0 nonexistent
## 4157 telephone may mon 165 5 999 0 nonexistent
## 4159 telephone may mon 160 2 999 0 nonexistent
## 4160 telephone may mon 492 6 999 0 nonexistent
## 4161 telephone may mon 187 3 999 0 nonexistent
## 4162 telephone may mon 197 4 999 0 nonexistent
## 4163 telephone may mon 95 5 999 0 nonexistent
## 4164 telephone may mon 159 3 999 0 nonexistent
## 4165 telephone may mon 967 6 999 0 nonexistent
## 4166 telephone may mon 260 3 999 0 nonexistent
## 4167 telephone may mon 109 2 999 0 nonexistent
## 4168 telephone may mon 579 5 999 0 nonexistent
## 4170 telephone may mon 158 5 999 0 nonexistent
## 4171 telephone may mon 162 10 999 0 nonexistent
## 4173 telephone may mon 173 5 999 0 nonexistent
## 4174 telephone may mon 73 7 999 0 nonexistent
## 4175 telephone may mon 220 3 999 0 nonexistent
## 4176 telephone may mon 110 2 999 0 nonexistent
## 4178 telephone may mon 112 7 999 0 nonexistent
## 4179 telephone may mon 168 4 999 0 nonexistent
## 4180 telephone may mon 283 3 999 0 nonexistent
## 4182 telephone may mon 138 8 999 0 nonexistent
## 4183 telephone may mon 374 6 999 0 nonexistent
## 4184 telephone may mon 353 4 999 0 nonexistent
## 4186 telephone may mon 332 10 999 0 nonexistent
## 4187 telephone may mon 179 9 999 0 nonexistent
## 4188 telephone may mon 396 9 999 0 nonexistent
## 4190 telephone may mon 360 2 999 0 nonexistent
## 4191 telephone may mon 175 2 999 0 nonexistent
## 4194 telephone may mon 57 7 999 0 nonexistent
## 4195 telephone may mon 105 11 999 0 nonexistent
## 4196 telephone may mon 886 3 999 0 nonexistent
## 4197 telephone may mon 182 8 999 0 nonexistent
## 4199 telephone may mon 21 11 999 0 nonexistent
## 4203 telephone may mon 298 2 999 0 nonexistent
## 4207 telephone may mon 195 4 999 0 nonexistent
## 4208 telephone may mon 179 2 999 0 nonexistent
## 4209 telephone may mon 58 10 999 0 nonexistent
## 4210 telephone may mon 1218 3 999 0 nonexistent
## 4211 telephone may mon 500 3 999 0 nonexistent
## 4212 telephone may mon 66 9 999 0 nonexistent
## 4213 telephone may mon 328 10 999 0 nonexistent
## 4214 telephone may mon 3078 4 999 0 nonexistent
## 4215 telephone may tue 21 7 999 0 nonexistent
## 4216 telephone may tue 150 1 999 0 nonexistent
## 4217 telephone may tue 148 5 999 0 nonexistent
## 4218 telephone may tue 102 1 999 0 nonexistent
## 4219 telephone may tue 91 1 999 0 nonexistent
## 4220 telephone may tue 201 1 999 0 nonexistent
## 4221 telephone may tue 70 1 999 0 nonexistent
## 4222 telephone may tue 19 15 999 0 nonexistent
## 4223 telephone may tue 82 9 999 0 nonexistent
## 4224 telephone may tue 59 1 999 0 nonexistent
## 4226 telephone may tue 365 4 999 0 nonexistent
## 4227 telephone may tue 257 1 999 0 nonexistent
## 4228 telephone may tue 280 1 999 0 nonexistent
## 4230 telephone may tue 249 1 999 0 nonexistent
## 4231 telephone may tue 140 1 999 0 nonexistent
## 4233 telephone may tue 20 12 999 0 nonexistent
## 4234 telephone may tue 686 1 999 0 nonexistent
## 4235 telephone may tue 107 2 999 0 nonexistent
## 4237 telephone may tue 172 1 999 0 nonexistent
## 4238 telephone may tue 19 1 999 0 nonexistent
## 4239 telephone may tue 125 4 999 0 nonexistent
## 4241 telephone may tue 216 1 999 0 nonexistent
## 4242 telephone may tue 109 1 999 0 nonexistent
## 4243 telephone may tue 81 1 999 0 nonexistent
## 4245 telephone may tue 146 1 999 0 nonexistent
## 4246 telephone may tue 83 1 999 0 nonexistent
## 4248 telephone may tue 191 1 999 0 nonexistent
## 4249 telephone may tue 171 1 999 0 nonexistent
## 4251 telephone may tue 133 1 999 0 nonexistent
## 4252 telephone may tue 656 1 999 0 nonexistent
## 4253 telephone may tue 1205 1 999 0 nonexistent
## 4254 telephone may tue 202 6 999 0 nonexistent
## 4258 telephone may tue 196 1 999 0 nonexistent
## 4259 telephone may tue 186 4 999 0 nonexistent
## 4260 telephone may tue 532 1 999 0 nonexistent
## 4261 telephone may tue 97 2 999 0 nonexistent
## 4263 telephone may tue 216 1 999 0 nonexistent
## 4265 telephone may tue 1882 2 999 0 nonexistent
## 4266 telephone may tue 243 1 999 0 nonexistent
## 4267 telephone may tue 98 1 999 0 nonexistent
## 4268 telephone may tue 81 1 999 0 nonexistent
## 4269 telephone may tue 1334 1 999 0 nonexistent
## 4270 telephone may tue 190 1 999 0 nonexistent
## 4271 telephone may tue 142 3 999 0 nonexistent
## 4272 telephone may tue 775 1 999 0 nonexistent
## 4273 telephone may tue 335 1 999 0 nonexistent
## 4274 telephone may tue 168 1 999 0 nonexistent
## 4275 telephone may tue 68 2 999 0 nonexistent
## 4276 telephone may tue 217 1 999 0 nonexistent
## 4277 telephone may tue 68 1 999 0 nonexistent
## 4278 telephone may tue 119 1 999 0 nonexistent
## 4279 telephone may tue 160 1 999 0 nonexistent
## 4280 telephone may tue 294 10 999 0 nonexistent
## 4281 telephone may tue 57 1 999 0 nonexistent
## 4282 telephone may tue 297 2 999 0 nonexistent
## 4283 telephone may tue 90 1 999 0 nonexistent
## 4284 telephone may tue 600 1 999 0 nonexistent
## 4285 telephone may tue 38 1 999 0 nonexistent
## 4286 telephone may tue 217 1 999 0 nonexistent
## 4287 telephone may tue 142 1 999 0 nonexistent
## 4288 telephone may tue 26 1 999 0 nonexistent
## 4289 telephone may tue 369 1 999 0 nonexistent
## 4290 telephone may tue 29 1 999 0 nonexistent
## 4293 telephone may tue 24 1 999 0 nonexistent
## 4294 telephone may tue 793 2 999 0 nonexistent
## 4295 telephone may tue 182 2 999 0 nonexistent
## 4297 telephone may tue 203 1 999 0 nonexistent
## 4298 telephone may tue 166 1 999 0 nonexistent
## 4299 telephone may tue 167 1 999 0 nonexistent
## 4300 telephone may tue 37 1 999 0 nonexistent
## 4301 telephone may tue 154 1 999 0 nonexistent
## 4303 telephone may tue 127 1 999 0 nonexistent
## 4304 telephone may tue 264 1 999 0 nonexistent
## 4305 telephone may tue 231 1 999 0 nonexistent
## 4306 telephone may tue 320 1 999 0 nonexistent
## 4307 telephone may tue 618 1 999 0 nonexistent
## 4308 telephone may tue 101 1 999 0 nonexistent
## 4310 telephone may tue 121 3 999 0 nonexistent
## 4311 telephone may tue 85 1 999 0 nonexistent
## 4313 telephone may tue 171 1 999 0 nonexistent
## 4315 telephone may tue 224 1 999 0 nonexistent
## 4316 telephone may tue 171 1 999 0 nonexistent
## 4317 telephone may tue 67 1 999 0 nonexistent
## 4318 telephone may tue 186 1 999 0 nonexistent
## 4319 telephone may tue 269 1 999 0 nonexistent
## 4320 telephone may tue 115 1 999 0 nonexistent
## 4321 telephone may tue 273 1 999 0 nonexistent
## 4322 telephone may tue 65 1 999 0 nonexistent
## 4323 telephone may tue 434 1 999 0 nonexistent
## 4324 telephone may tue 148 1 999 0 nonexistent
## 4325 telephone may tue 507 1 999 0 nonexistent
## 4326 telephone may tue 253 1 999 0 nonexistent
## 4327 telephone may tue 27 1 999 0 nonexistent
## 4329 telephone may tue 116 1 999 0 nonexistent
## 4330 telephone may tue 124 1 999 0 nonexistent
## 4332 telephone may tue 233 2 999 0 nonexistent
## 4333 telephone may tue 380 1 999 0 nonexistent
## 4334 telephone may tue 90 1 999 0 nonexistent
## 4335 telephone may tue 258 1 999 0 nonexistent
## 4336 telephone may tue 92 2 999 0 nonexistent
## 4337 telephone may tue 423 1 999 0 nonexistent
## 4338 telephone may tue 215 2 999 0 nonexistent
## 4339 telephone may tue 209 1 999 0 nonexistent
## 4340 telephone may tue 181 1 999 0 nonexistent
## 4341 telephone may tue 201 1 999 0 nonexistent
## 4342 telephone may tue 360 6 999 0 nonexistent
## 4343 telephone may tue 155 1 999 0 nonexistent
## 4346 telephone may tue 447 1 999 0 nonexistent
## 4348 telephone may tue 184 1 999 0 nonexistent
## 4349 telephone may tue 121 1 999 0 nonexistent
## 4350 telephone may tue 138 4 999 0 nonexistent
## 4351 telephone may tue 207 6 999 0 nonexistent
## 4352 telephone may tue 309 1 999 0 nonexistent
## 4353 telephone may tue 134 1 999 0 nonexistent
## 4354 telephone may tue 1777 1 999 0 nonexistent
## 4356 telephone may tue 70 2 999 0 nonexistent
## 4357 telephone may tue 774 1 999 0 nonexistent
## 4358 telephone may tue 62 1 999 0 nonexistent
## 4359 telephone may tue 247 2 999 0 nonexistent
## 4361 telephone may tue 277 2 999 0 nonexistent
## 4362 telephone may tue 126 3 999 0 nonexistent
## 4365 telephone may tue 378 1 999 0 nonexistent
## 4366 telephone may tue 83 1 999 0 nonexistent
## 4367 telephone may tue 71 3 999 0 nonexistent
## 4370 telephone may tue 208 2 999 0 nonexistent
## 4371 telephone may tue 199 4 999 0 nonexistent
## 4372 telephone may tue 47 1 999 0 nonexistent
## 4374 telephone may tue 244 1 999 0 nonexistent
## 4375 telephone may tue 311 1 999 0 nonexistent
## 4376 telephone may tue 177 1 999 0 nonexistent
## 4377 telephone may tue 217 2 999 0 nonexistent
## 4378 telephone may tue 189 1 999 0 nonexistent
## 4379 telephone may tue 152 1 999 0 nonexistent
## 4380 telephone may tue 151 1 999 0 nonexistent
## 4382 telephone may tue 212 1 999 0 nonexistent
## 4383 telephone may tue 184 1 999 0 nonexistent
## 4384 telephone may tue 473 2 999 0 nonexistent
## 4385 telephone may tue 485 1 999 0 nonexistent
## 4387 telephone may tue 172 1 999 0 nonexistent
## 4388 telephone may tue 77 2 999 0 nonexistent
## 4389 telephone may tue 396 1 999 0 nonexistent
## 4391 telephone may tue 88 2 999 0 nonexistent
## 4392 telephone may tue 129 2 999 0 nonexistent
## 4393 telephone may tue 346 2 999 0 nonexistent
## 4394 telephone may tue 474 2 999 0 nonexistent
## 4395 telephone may tue 268 2 999 0 nonexistent
## 4396 telephone may tue 222 2 999 0 nonexistent
## 4398 telephone may tue 1313 2 999 0 nonexistent
## 4399 telephone may tue 72 5 999 0 nonexistent
## 4400 telephone may tue 309 1 999 0 nonexistent
## 4403 telephone may tue 205 2 999 0 nonexistent
## 4405 telephone may tue 381 2 999 0 nonexistent
## 4406 telephone may tue 355 1 999 0 nonexistent
## 4407 telephone may tue 256 1 999 0 nonexistent
## 4408 telephone may tue 211 2 999 0 nonexistent
## 4409 telephone may tue 211 1 999 0 nonexistent
## 4410 telephone may tue 66 12 999 0 nonexistent
## 4411 telephone may tue 1452 10 999 0 nonexistent
## 4412 telephone may tue 487 2 999 0 nonexistent
## 4414 telephone may tue 120 1 999 0 nonexistent
## 4415 telephone may tue 464 2 999 0 nonexistent
## 4416 telephone may tue 547 7 999 0 nonexistent
## 4417 telephone may tue 152 2 999 0 nonexistent
## 4418 telephone may tue 522 1 999 0 nonexistent
## 4419 telephone may tue 227 9 999 0 nonexistent
## 4420 telephone may tue 129 2 999 0 nonexistent
## 4421 telephone may tue 1376 2 999 0 nonexistent
## 4422 telephone may tue 37 1 999 0 nonexistent
## 4423 telephone may tue 360 1 999 0 nonexistent
## 4424 telephone may tue 51 1 999 0 nonexistent
## 4425 telephone may tue 834 6 999 0 nonexistent
## 4427 telephone may tue 106 1 999 0 nonexistent
## 4429 telephone may tue 535 1 999 0 nonexistent
## 4430 telephone may tue 182 1 999 0 nonexistent
## 4433 telephone may tue 281 1 999 0 nonexistent
## 4434 telephone may tue 150 1 999 0 nonexistent
## 4437 telephone may tue 359 2 999 0 nonexistent
## 4438 telephone may tue 332 2 999 0 nonexistent
## 4439 telephone may tue 592 1 999 0 nonexistent
## 4440 telephone may tue 166 1 999 0 nonexistent
## 4441 telephone may tue 245 1 999 0 nonexistent
## 4442 telephone may tue 138 8 999 0 nonexistent
## 4443 telephone may tue 369 1 999 0 nonexistent
## 4444 telephone may tue 158 1 999 0 nonexistent
## 4447 telephone may tue 592 1 999 0 nonexistent
## 4448 telephone may tue 412 1 999 0 nonexistent
## 4449 telephone may tue 137 2 999 0 nonexistent
## 4451 telephone may tue 266 1 999 0 nonexistent
## 4452 telephone may tue 335 1 999 0 nonexistent
## 4453 telephone may tue 235 2 999 0 nonexistent
## 4455 telephone may tue 170 2 999 0 nonexistent
## 4456 telephone may tue 272 2 999 0 nonexistent
## 4457 telephone may tue 1042 17 999 0 nonexistent
## 4458 telephone may tue 271 1 999 0 nonexistent
## 4460 telephone may tue 107 1 999 0 nonexistent
## 4461 telephone may tue 78 2 999 0 nonexistent
## 4462 telephone may tue 383 1 999 0 nonexistent
## 4463 telephone may tue 185 1 999 0 nonexistent
## 4464 telephone may tue 254 1 999 0 nonexistent
## 4465 telephone may tue 107 1 999 0 nonexistent
## 4466 telephone may tue 157 1 999 0 nonexistent
## 4467 telephone may tue 85 2 999 0 nonexistent
## 4468 telephone may tue 249 3 999 0 nonexistent
## 4469 telephone may tue 163 2 999 0 nonexistent
## 4470 telephone may tue 112 2 999 0 nonexistent
## 4472 telephone may tue 148 1 999 0 nonexistent
## 4473 telephone may tue 145 2 999 0 nonexistent
## 4474 telephone may tue 415 2 999 0 nonexistent
## 4475 telephone may tue 742 2 999 0 nonexistent
## 4476 telephone may tue 129 1 999 0 nonexistent
## 4477 telephone may tue 37 9 999 0 nonexistent
## 4478 telephone may tue 120 1 999 0 nonexistent
## 4479 telephone may tue 185 2 999 0 nonexistent
## 4481 telephone may tue 204 1 999 0 nonexistent
## 4483 telephone may tue 74 2 999 0 nonexistent
## 4484 telephone may tue 190 2 999 0 nonexistent
## 4485 telephone may tue 325 3 999 0 nonexistent
## 4486 telephone may tue 650 3 999 0 nonexistent
## 4487 telephone may tue 148 2 999 0 nonexistent
## 4488 telephone may tue 38 8 999 0 nonexistent
## 4489 telephone may tue 625 2 999 0 nonexistent
## 4490 telephone may tue 175 3 999 0 nonexistent
## 4492 telephone may tue 97 8 999 0 nonexistent
## 4493 telephone may tue 282 2 999 0 nonexistent
## 4494 telephone may tue 304 2 999 0 nonexistent
## 4495 telephone may tue 438 2 999 0 nonexistent
## 4496 telephone may tue 999 3 999 0 nonexistent
## 4497 telephone may tue 127 2 999 0 nonexistent
## 4498 telephone may tue 446 2 999 0 nonexistent
## 4499 telephone may tue 289 3 999 0 nonexistent
## 4500 telephone may tue 217 4 999 0 nonexistent
## 4501 telephone may tue 169 1 999 0 nonexistent
## 4502 telephone may tue 247 3 999 0 nonexistent
## 4503 telephone may tue 140 1 999 0 nonexistent
## 4507 telephone may tue 128 6 999 0 nonexistent
## 4508 telephone may tue 215 3 999 0 nonexistent
## 4509 telephone may tue 64 1 999 0 nonexistent
## 4510 telephone may tue 52 10 999 0 nonexistent
## 4511 telephone may tue 216 2 999 0 nonexistent
## 4512 telephone may tue 292 1 999 0 nonexistent
## 4513 telephone may tue 129 7 999 0 nonexistent
## 4515 telephone may tue 210 2 999 0 nonexistent
## 4516 telephone may tue 114 1 999 0 nonexistent
## 4517 telephone may tue 657 1 999 0 nonexistent
## 4520 telephone may tue 443 1 999 0 nonexistent
## 4521 telephone may tue 73 1 999 0 nonexistent
## 4522 telephone may tue 127 8 999 0 nonexistent
## 4523 telephone may tue 1063 2 999 0 nonexistent
## 4524 telephone may tue 446 2 999 0 nonexistent
## 4525 telephone may tue 252 2 999 0 nonexistent
## 4526 telephone may tue 80 2 999 0 nonexistent
## 4527 telephone may tue 1446 1 999 0 nonexistent
## 4528 telephone may tue 144 2 999 0 nonexistent
## 4529 telephone may tue 412 2 999 0 nonexistent
## 4530 telephone may tue 222 2 999 0 nonexistent
## 4531 telephone may tue 29 16 999 0 nonexistent
## 4533 telephone may tue 154 2 999 0 nonexistent
## 4535 telephone may tue 723 2 999 0 nonexistent
## 4536 telephone may tue 550 2 999 0 nonexistent
## 4537 telephone may tue 130 2 999 0 nonexistent
## 4538 telephone may tue 192 2 999 0 nonexistent
## 4539 telephone may tue 146 2 999 0 nonexistent
## 4540 telephone may tue 239 2 999 0 nonexistent
## 4542 telephone may tue 114 3 999 0 nonexistent
## 4543 telephone may tue 139 3 999 0 nonexistent
## 4544 telephone may tue 445 2 999 0 nonexistent
## 4545 telephone may tue 139 5 999 0 nonexistent
## 4546 telephone may tue 16 10 999 0 nonexistent
## 4547 telephone may tue 169 4 999 0 nonexistent
## 4548 telephone may tue 125 3 999 0 nonexistent
## 4550 telephone may tue 446 12 999 0 nonexistent
## 4551 telephone may tue 267 2 999 0 nonexistent
## 4552 telephone may tue 6 2 999 0 nonexistent
## 4553 telephone may tue 15 13 999 0 nonexistent
## 4554 telephone may tue 172 4 999 0 nonexistent
## 4555 telephone may tue 94 3 999 0 nonexistent
## 4556 telephone may tue 268 3 999 0 nonexistent
## 4557 telephone may tue 130 3 999 0 nonexistent
## 4559 telephone may tue 91 6 999 0 nonexistent
## 4560 telephone may tue 324 2 999 0 nonexistent
## 4561 telephone may tue 465 8 999 0 nonexistent
## 4562 telephone may tue 274 2 999 0 nonexistent
## 4563 telephone may tue 300 3 999 0 nonexistent
## 4566 telephone may tue 189 2 999 0 nonexistent
## 4568 telephone may tue 137 2 999 0 nonexistent
## 4569 telephone may tue 614 2 999 0 nonexistent
## 4570 telephone may tue 363 5 999 0 nonexistent
## 4571 telephone may tue 418 2 999 0 nonexistent
## 4573 telephone may tue 96 2 999 0 nonexistent
## 4574 telephone may tue 119 3 999 0 nonexistent
## 4575 telephone may tue 103 3 999 0 nonexistent
## 4576 telephone may tue 10 17 999 0 nonexistent
## 4577 telephone may tue 216 2 999 0 nonexistent
## 4578 telephone may tue 484 2 999 0 nonexistent
## 4579 telephone may tue 485 3 999 0 nonexistent
## 4580 telephone may tue 404 2 999 0 nonexistent
## 4582 telephone may tue 138 2 999 0 nonexistent
## 4583 telephone may tue 243 2 999 0 nonexistent
## 4584 telephone may tue 919 2 999 0 nonexistent
## 4586 telephone may tue 247 2 999 0 nonexistent
## 4587 telephone may tue 89 2 999 0 nonexistent
## 4588 telephone may tue 185 12 999 0 nonexistent
## 4589 telephone may tue 777 3 999 0 nonexistent
## 4591 telephone may tue 110 2 999 0 nonexistent
## 4592 telephone may tue 256 2 999 0 nonexistent
## 4594 telephone may tue 54 2 999 0 nonexistent
## 4595 telephone may tue 26 2 999 0 nonexistent
## 4596 telephone may tue 350 4 999 0 nonexistent
## 4597 telephone may tue 226 2 999 0 nonexistent
## 4598 telephone may tue 167 2 999 0 nonexistent
## 4599 telephone may tue 47 3 999 0 nonexistent
## 4600 telephone may tue 214 10 999 0 nonexistent
## 4601 telephone may tue 446 7 999 0 nonexistent
## 4602 telephone may tue 153 2 999 0 nonexistent
## 4603 telephone may tue 181 6 999 0 nonexistent
## 4604 telephone may tue 747 5 999 0 nonexistent
## 4606 telephone may tue 270 1 999 0 nonexistent
## 4607 telephone may tue 37 13 999 0 nonexistent
## 4608 telephone may tue 129 8 999 0 nonexistent
## 4609 telephone may tue 72 3 999 0 nonexistent
## 4610 telephone may tue 1392 2 999 0 nonexistent
## 4612 telephone may tue 725 1 999 0 nonexistent
## 4614 telephone may tue 177 10 999 0 nonexistent
## 4615 telephone may tue 273 4 999 0 nonexistent
## 4616 telephone may tue 98 2 999 0 nonexistent
## 4617 telephone may tue 480 4 999 0 nonexistent
## 4618 telephone may tue 152 1 999 0 nonexistent
## 4619 telephone may tue 204 2 999 0 nonexistent
## 4621 telephone may tue 246 3 999 0 nonexistent
## 4622 telephone may tue 352 5 999 0 nonexistent
## 4623 telephone may tue 190 1 999 0 nonexistent
## 4625 telephone may tue 277 1 999 0 nonexistent
## 4626 telephone may tue 315 1 999 0 nonexistent
## 4627 telephone may wed 289 1 999 0 nonexistent
## 4628 telephone may wed 225 1 999 0 nonexistent
## 4629 telephone may wed 408 1 999 0 nonexistent
## 4630 telephone may wed 74 1 999 0 nonexistent
## 4631 telephone may wed 24 1 999 0 nonexistent
## 4633 telephone may wed 167 1 999 0 nonexistent
## 4634 telephone may wed 64 3 999 0 nonexistent
## 4635 telephone may wed 151 1 999 0 nonexistent
## 4636 telephone may wed 801 1 999 0 nonexistent
## 4638 telephone may wed 59 1 999 0 nonexistent
## 4640 telephone may wed 181 1 999 0 nonexistent
## 4641 telephone may wed 86 6 999 0 nonexistent
## 4642 telephone may wed 317 1 999 0 nonexistent
## 4643 telephone may wed 120 1 999 0 nonexistent
## 4644 telephone may wed 388 1 999 0 nonexistent
## 4645 telephone may wed 174 1 999 0 nonexistent
## 4646 telephone may wed 72 1 999 0 nonexistent
## 4647 telephone may wed 126 1 999 0 nonexistent
## 4649 telephone may wed 171 5 999 0 nonexistent
## 4650 telephone may wed 162 1 999 0 nonexistent
## 4651 telephone may wed 18 28 999 0 nonexistent
## 4652 telephone may wed 129 1 999 0 nonexistent
## 4653 telephone may wed 938 1 999 0 nonexistent
## 4656 telephone may wed 692 1 999 0 nonexistent
## 4658 telephone may wed 78 1 999 0 nonexistent
## 4659 telephone may wed 134 5 999 0 nonexistent
## 4660 telephone may wed 323 1 999 0 nonexistent
## 4662 telephone may wed 245 1 999 0 nonexistent
## 4663 telephone may wed 482 1 999 0 nonexistent
## 4664 telephone may wed 207 2 999 0 nonexistent
## 4665 telephone may wed 56 1 999 0 nonexistent
## 4666 telephone may wed 85 2 999 0 nonexistent
## 4667 telephone may wed 201 1 999 0 nonexistent
## 4668 telephone may wed 353 1 999 0 nonexistent
## 4669 telephone may wed 554 3 999 0 nonexistent
## 4671 telephone may wed 27 2 999 0 nonexistent
## 4673 telephone may wed 565 1 999 0 nonexistent
## 4674 telephone may wed 162 1 999 0 nonexistent
## 4676 telephone may wed 287 3 999 0 nonexistent
## 4677 telephone may wed 147 1 999 0 nonexistent
## 4678 telephone may wed 905 1 999 0 nonexistent
## 4679 telephone may wed 118 1 999 0 nonexistent
## 4680 telephone may wed 91 1 999 0 nonexistent
## 4681 telephone may wed 111 5 999 0 nonexistent
## 4682 telephone may wed 162 1 999 0 nonexistent
## 4684 telephone may wed 73 1 999 0 nonexistent
## 4686 telephone may wed 298 2 999 0 nonexistent
## 4688 telephone may wed 420 1 999 0 nonexistent
## 4690 telephone may wed 164 1 999 0 nonexistent
## 4693 telephone may wed 192 1 999 0 nonexistent
## 4694 telephone may wed 226 1 999 0 nonexistent
## 4695 telephone may wed 783 2 999 0 nonexistent
## 4696 telephone may wed 264 2 999 0 nonexistent
## 4697 telephone may wed 166 1 999 0 nonexistent
## 4698 telephone may wed 27 1 999 0 nonexistent
## 4699 telephone may wed 353 1 999 0 nonexistent
## 4700 telephone may wed 85 1 999 0 nonexistent
## 4701 telephone may wed 1106 1 999 0 nonexistent
## 4702 telephone may wed 419 1 999 0 nonexistent
## 4703 telephone may wed 603 5 999 0 nonexistent
## 4704 telephone may wed 415 1 999 0 nonexistent
## 4705 telephone may wed 179 1 999 0 nonexistent
## 4706 telephone may wed 872 5 999 0 nonexistent
## 4707 telephone may wed 52 1 999 0 nonexistent
## 4708 telephone may wed 490 1 999 0 nonexistent
## 4709 telephone may wed 63 1 999 0 nonexistent
## 4710 telephone may wed 27 10 999 0 nonexistent
## 4711 telephone may wed 425 1 999 0 nonexistent
## 4712 telephone may wed 12 11 999 0 nonexistent
## 4714 telephone may wed 103 1 999 0 nonexistent
## 4715 telephone may wed 210 1 999 0 nonexistent
## 4717 telephone may wed 115 2 999 0 nonexistent
## 4720 telephone may wed 370 1 999 0 nonexistent
## 4721 telephone may wed 958 2 999 0 nonexistent
## 4722 telephone may wed 103 2 999 0 nonexistent
## 4723 telephone may wed 628 1 999 0 nonexistent
## 4724 telephone may wed 232 1 999 0 nonexistent
## 4725 telephone may wed 68 1 999 0 nonexistent
## 4726 telephone may wed 192 1 999 0 nonexistent
## 4727 telephone may wed 494 3 999 0 nonexistent
## 4728 telephone may wed 166 7 999 0 nonexistent
## 4730 telephone may wed 204 1 999 0 nonexistent
## 4731 telephone may wed 180 1 999 0 nonexistent
## 4732 telephone may wed 494 2 999 0 nonexistent
## 4733 telephone may wed 530 2 999 0 nonexistent
## 4735 telephone may wed 85 1 999 0 nonexistent
## 4737 telephone may wed 345 1 999 0 nonexistent
## 4738 telephone may wed 819 1 999 0 nonexistent
## 4739 telephone may wed 16 1 999 0 nonexistent
## 4740 telephone may wed 32 1 999 0 nonexistent
## 4741 telephone may wed 648 1 999 0 nonexistent
## 4742 telephone may wed 29 1 999 0 nonexistent
## 4743 telephone may wed 220 1 999 0 nonexistent
## 4744 telephone may wed 151 1 999 0 nonexistent
## 4746 telephone may wed 634 2 999 0 nonexistent
## 4747 telephone may wed 717 3 999 0 nonexistent
## 4748 telephone may wed 249 1 999 0 nonexistent
## 4749 telephone may wed 228 1 999 0 nonexistent
## 4750 telephone may wed 122 1 999 0 nonexistent
## 4751 telephone may wed 544 1 999 0 nonexistent
## 4752 telephone may wed 951 2 999 0 nonexistent
## 4755 telephone may wed 211 1 999 0 nonexistent
## 4756 telephone may wed 97 1 999 0 nonexistent
## 4757 telephone may wed 192 1 999 0 nonexistent
## 4758 telephone may wed 160 1 999 0 nonexistent
## 4759 telephone may wed 97 1 999 0 nonexistent
## 4760 telephone may wed 244 1 999 0 nonexistent
## 4761 telephone may wed 578 2 999 0 nonexistent
## 4762 telephone may wed 359 1 999 0 nonexistent
## 4763 telephone may wed 190 2 999 0 nonexistent
## 4764 telephone may wed 111 1 999 0 nonexistent
## 4765 telephone may wed 487 5 999 0 nonexistent
## 4766 telephone may wed 396 1 999 0 nonexistent
## 4767 telephone may wed 59 8 999 0 nonexistent
## 4768 telephone may wed 111 3 999 0 nonexistent
## 4770 telephone may wed 795 1 999 0 nonexistent
## 4771 telephone may wed 202 6 999 0 nonexistent
## 4772 telephone may wed 135 1 999 0 nonexistent
## 4773 telephone may wed 29 1 999 0 nonexistent
## 4774 telephone may wed 408 1 999 0 nonexistent
## 4775 telephone may wed 136 1 999 0 nonexistent
## 4776 telephone may wed 141 2 999 0 nonexistent
## 4778 telephone may wed 171 1 999 0 nonexistent
## 4780 telephone may wed 93 1 999 0 nonexistent
## 4782 telephone may wed 35 1 999 0 nonexistent
## 4783 telephone may wed 7 12 999 0 nonexistent
## 4784 telephone may wed 51 2 999 0 nonexistent
## 4785 telephone may wed 17 7 999 0 nonexistent
## 4786 telephone may wed 504 1 999 0 nonexistent
## 4788 telephone may wed 542 1 999 0 nonexistent
## 4789 telephone may wed 257 2 999 0 nonexistent
## 4790 telephone may wed 112 1 999 0 nonexistent
## 4792 telephone may wed 294 2 999 0 nonexistent
## 4793 telephone may wed 303 3 999 0 nonexistent
## 4794 telephone may wed 828 4 999 0 nonexistent
## 4795 telephone may wed 343 1 999 0 nonexistent
## 4796 telephone may wed 206 1 999 0 nonexistent
## 4797 telephone may wed 786 2 999 0 nonexistent
## 4798 telephone may wed 178 1 999 0 nonexistent
## 4799 telephone may wed 509 1 999 0 nonexistent
## 4800 telephone may wed 161 4 999 0 nonexistent
## 4801 telephone may wed 125 3 999 0 nonexistent
## 4802 telephone may wed 159 1 999 0 nonexistent
## 4803 telephone may wed 221 1 999 0 nonexistent
## 4804 telephone may wed 211 1 999 0 nonexistent
## 4805 telephone may wed 68 1 999 0 nonexistent
## 4806 telephone may wed 293 1 999 0 nonexistent
## 4807 telephone may wed 389 1 999 0 nonexistent
## 4809 telephone may wed 145 1 999 0 nonexistent
## 4810 telephone may wed 59 2 999 0 nonexistent
## 4811 telephone may wed 39 2 999 0 nonexistent
## 4812 telephone may wed 140 2 999 0 nonexistent
## 4813 telephone may wed 53 3 999 0 nonexistent
## 4814 telephone may wed 44 3 999 0 nonexistent
## 4817 telephone may wed 45 13 999 0 nonexistent
## 4818 telephone may wed 738 3 999 0 nonexistent
## 4819 telephone may wed 102 3 999 0 nonexistent
## 4820 telephone may wed 161 2 999 0 nonexistent
## 4823 telephone may wed 122 2 999 0 nonexistent
## 4824 telephone may wed 137 2 999 0 nonexistent
## 4825 telephone may wed 189 2 999 0 nonexistent
## 4826 telephone may wed 88 2 999 0 nonexistent
## 4827 telephone may wed 418 2 999 0 nonexistent
## 4828 telephone may wed 17 2 999 0 nonexistent
## 4830 telephone may wed 445 1 999 0 nonexistent
## 4831 telephone may wed 623 1 999 0 nonexistent
## 4833 telephone may wed 316 1 999 0 nonexistent
## 4834 telephone may wed 650 2 999 0 nonexistent
## 4837 telephone may wed 1307 1 999 0 nonexistent
## 4839 telephone may wed 143 1 999 0 nonexistent
## 4840 telephone may wed 187 5 999 0 nonexistent
## 4841 telephone may wed 748 1 999 0 nonexistent
## 4842 telephone may wed 486 2 999 0 nonexistent
## 4845 telephone may wed 197 2 999 0 nonexistent
## 4846 telephone may wed 304 1 999 0 nonexistent
## 4847 telephone may wed 51 2 999 0 nonexistent
## 4849 telephone may wed 394 2 999 0 nonexistent
## 4850 telephone may wed 125 1 999 0 nonexistent
## 4851 telephone may wed 315 1 999 0 nonexistent
## 4853 telephone may wed 288 1 999 0 nonexistent
## 4854 telephone may wed 354 5 999 0 nonexistent
## 4855 telephone may wed 154 4 999 0 nonexistent
## 4856 telephone may wed 184 2 999 0 nonexistent
## 4857 telephone may wed 563 2 999 0 nonexistent
## 4858 telephone may wed 450 1 999 0 nonexistent
## 4859 telephone may wed 34 3 999 0 nonexistent
## 4861 telephone may wed 518 1 999 0 nonexistent
## 4862 telephone may wed 111 4 999 0 nonexistent
## 4863 telephone may wed 176 4 999 0 nonexistent
## 4864 telephone may wed 196 1 999 0 nonexistent
## 4865 telephone may wed 85 1 999 0 nonexistent
## 4866 telephone may wed 91 2 999 0 nonexistent
## 4867 telephone may wed 172 2 999 0 nonexistent
## 4868 telephone may wed 252 2 999 0 nonexistent
## 4869 telephone may wed 265 1 999 0 nonexistent
## 4870 telephone may wed 899 1 999 0 nonexistent
## 4871 telephone may wed 588 2 999 0 nonexistent
## 4872 telephone may wed 393 1 999 0 nonexistent
## 4873 telephone may wed 857 1 999 0 nonexistent
## 4874 telephone may wed 205 2 999 0 nonexistent
## 4876 telephone may wed 178 1 999 0 nonexistent
## 4877 telephone may wed 127 1 999 0 nonexistent
## 4878 telephone may wed 38 12 999 0 nonexistent
## 4879 telephone may wed 127 2 999 0 nonexistent
## 4880 telephone may wed 660 1 999 0 nonexistent
## 4882 telephone may wed 208 3 999 0 nonexistent
## 4883 telephone may wed 518 2 999 0 nonexistent
## 4885 telephone may wed 171 1 999 0 nonexistent
## 4886 telephone may wed 272 1 999 0 nonexistent
## 4887 telephone may wed 143 2 999 0 nonexistent
## 4888 telephone may wed 572 1 999 0 nonexistent
## 4890 telephone may wed 244 1 999 0 nonexistent
## 4891 telephone may wed 384 3 999 0 nonexistent
## 4892 telephone may wed 240 3 999 0 nonexistent
## 4893 telephone may wed 269 2 999 0 nonexistent
## 4895 telephone may wed 83 1 999 0 nonexistent
## 4896 telephone may wed 100 4 999 0 nonexistent
## 4897 telephone may wed 811 2 999 0 nonexistent
## 4898 telephone may wed 890 26 999 0 nonexistent
## 4899 telephone may wed 159 2 999 0 nonexistent
## 4900 telephone may wed 681 3 999 0 nonexistent
## 4901 telephone may wed 443 2 999 0 nonexistent
## 4902 telephone may wed 1162 2 999 0 nonexistent
## 4903 telephone may wed 1697 2 999 0 nonexistent
## 4904 telephone may wed 244 2 999 0 nonexistent
## 4905 telephone may wed 860 2 999 0 nonexistent
## 4906 telephone may wed 295 1 999 0 nonexistent
## 4909 telephone may wed 86 2 999 0 nonexistent
## 4910 telephone may wed 154 2 999 0 nonexistent
## 4911 telephone may wed 113 2 999 0 nonexistent
## 4912 telephone may wed 83 2 999 0 nonexistent
## 4913 telephone may wed 297 8 999 0 nonexistent
## 4914 telephone may wed 291 2 999 0 nonexistent
## 4916 telephone may wed 72 3 999 0 nonexistent
## 4917 telephone may wed 151 2 999 0 nonexistent
## 4918 telephone may wed 312 2 999 0 nonexistent
## 4919 telephone may wed 474 2 999 0 nonexistent
## 4921 telephone may wed 91 3 999 0 nonexistent
## 4922 telephone may wed 232 2 999 0 nonexistent
## 4923 telephone may wed 446 2 999 0 nonexistent
## 4924 telephone may wed 153 4 999 0 nonexistent
## 4925 telephone may wed 111 5 999 0 nonexistent
## 4926 telephone may wed 72 3 999 0 nonexistent
## 4927 telephone may wed 559 2 999 0 nonexistent
## 4928 telephone may wed 205 2 999 0 nonexistent
## 4929 telephone may wed 189 7 999 0 nonexistent
## 4930 telephone may wed 237 2 999 0 nonexistent
## 4931 telephone may wed 230 2 999 0 nonexistent
## 4934 telephone may wed 127 2 999 0 nonexistent
## 4935 telephone may wed 239 2 999 0 nonexistent
## 4936 telephone may wed 222 5 999 0 nonexistent
## 4937 telephone may wed 69 4 999 0 nonexistent
## 4938 telephone may wed 501 2 999 0 nonexistent
## 4939 telephone may wed 192 1 999 0 nonexistent
## 4940 telephone may wed 273 1 999 0 nonexistent
## 4942 telephone may wed 175 2 999 0 nonexistent
## 4943 telephone may wed 465 11 999 0 nonexistent
## 4944 telephone may wed 175 2 999 0 nonexistent
## 4945 telephone may wed 87 14 999 0 nonexistent
## 4946 telephone may wed 292 2 999 0 nonexistent
## 4948 telephone may wed 198 1 999 0 nonexistent
## 4949 telephone may wed 23 16 999 0 nonexistent
## 4950 telephone may wed 575 2 999 0 nonexistent
## 4951 telephone may wed 67 5 999 0 nonexistent
## 4952 telephone may wed 248 3 999 0 nonexistent
## 4953 telephone may wed 108 2 999 0 nonexistent
## 4954 telephone may wed 373 3 999 0 nonexistent
## 4956 telephone may wed 395 2 999 0 nonexistent
## 4957 telephone may wed 229 2 999 0 nonexistent
## 4958 telephone may wed 54 4 999 0 nonexistent
## 4959 telephone may wed 135 2 999 0 nonexistent
## 4960 telephone may wed 357 2 999 0 nonexistent
## 4961 telephone may wed 152 3 999 0 nonexistent
## 4962 telephone may wed 36 2 999 0 nonexistent
## 4963 telephone may wed 206 3 999 0 nonexistent
## 4964 telephone may wed 389 2 999 0 nonexistent
## 4966 telephone may wed 66 2 999 0 nonexistent
## 4967 telephone may wed 86 2 999 0 nonexistent
## 4968 telephone may wed 489 2 999 0 nonexistent
## 4969 telephone may wed 85 4 999 0 nonexistent
## 4971 telephone may wed 832 2 999 0 nonexistent
## 4972 telephone may wed 149 3 999 0 nonexistent
## 4973 telephone may wed 634 2 999 0 nonexistent
## 4974 telephone may wed 173 2 999 0 nonexistent
## 4975 telephone may wed 151 1 999 0 nonexistent
## 4976 telephone may wed 987 3 999 0 nonexistent
## 4977 telephone may wed 66 13 999 0 nonexistent
## 4981 telephone may wed 369 2 999 0 nonexistent
## 4982 telephone may wed 88 3 999 0 nonexistent
## 4983 telephone may wed 799 1 999 0 nonexistent
## 4985 telephone may wed 397 9 999 0 nonexistent
## 4986 telephone may wed 935 1 999 0 nonexistent
## 4987 telephone may wed 189 2 999 0 nonexistent
## 4989 telephone may wed 21 3 999 0 nonexistent
## 4990 telephone may wed 234 2 999 0 nonexistent
## 4991 telephone may wed 81 2 999 0 nonexistent
## 4992 telephone may wed 59 2 999 0 nonexistent
## 4993 telephone may wed 233 3 999 0 nonexistent
## 4995 telephone may wed 265 2 999 0 nonexistent
## 4996 telephone may wed 173 3 999 0 nonexistent
## 4997 telephone may wed 178 3 999 0 nonexistent
## 4998 telephone may wed 203 2 999 0 nonexistent
## 4999 telephone may wed 45 9 999 0 nonexistent
## 5000 telephone may wed 86 2 999 0 nonexistent
## 5003 telephone may wed 239 4 999 0 nonexistent
## 5004 telephone may wed 207 3 999 0 nonexistent
## 5006 telephone may wed 165 2 999 0 nonexistent
## 5008 telephone may wed 923 3 999 0 nonexistent
## 5009 telephone may wed 150 3 999 0 nonexistent
## 5010 telephone may wed 155 4 999 0 nonexistent
## 5012 telephone may wed 202 3 999 0 nonexistent
## 5013 telephone may wed 227 3 999 0 nonexistent
## 5015 telephone may wed 30 12 999 0 nonexistent
## 5016 telephone may wed 206 6 999 0 nonexistent
## 5017 telephone may wed 362 5 999 0 nonexistent
## 5018 telephone may wed 15 19 999 0 nonexistent
## 5019 telephone may wed 315 3 999 0 nonexistent
## 5020 telephone may wed 250 4 999 0 nonexistent
## 5021 telephone may wed 700 3 999 0 nonexistent
## 5022 telephone may wed 154 5 999 0 nonexistent
## 5023 telephone may wed 190 5 999 0 nonexistent
## 5024 telephone may wed 20 8 999 0 nonexistent
## 5025 telephone may wed 191 6 999 0 nonexistent
## 5026 telephone may wed 363 6 999 0 nonexistent
## 5027 telephone may wed 339 3 999 0 nonexistent
## 5028 telephone may wed 521 3 999 0 nonexistent
## 5030 telephone may wed 110 4 999 0 nonexistent
## 5031 telephone may wed 142 10 999 0 nonexistent
## 5032 telephone may wed 173 6 999 0 nonexistent
## 5033 telephone may wed 291 4 999 0 nonexistent
## 5035 telephone may wed 322 2 999 0 nonexistent
## 5037 telephone may wed 304 2 999 0 nonexistent
## 5038 telephone may wed 526 8 999 0 nonexistent
## 5039 telephone may fri 78 9 999 0 nonexistent
## 5041 telephone may fri 72 5 999 0 nonexistent
## 5042 telephone may fri 72 3 999 0 nonexistent
## 5043 telephone may fri 42 3 999 0 nonexistent
## 5044 telephone may fri 407 14 999 0 nonexistent
## 5045 telephone may fri 136 2 999 0 nonexistent
## 5047 telephone may fri 405 5 999 0 nonexistent
## 5048 telephone may fri 417 6 999 0 nonexistent
## 5050 telephone may fri 201 2 999 0 nonexistent
## 5051 telephone may fri 101 3 999 0 nonexistent
## 5052 telephone may fri 214 3 999 0 nonexistent
## 5053 telephone may fri 350 5 999 0 nonexistent
## 5054 telephone may fri 433 3 999 0 nonexistent
## 5056 telephone may fri 329 2 999 0 nonexistent
## 5057 telephone may fri 628 2 999 0 nonexistent
## 5058 telephone may fri 110 3 999 0 nonexistent
## 5059 telephone may fri 259 9 999 0 nonexistent
## 5060 telephone may fri 260 3 999 0 nonexistent
## 5061 telephone may fri 363 2 999 0 nonexistent
## 5062 telephone may fri 149 1 999 0 nonexistent
## 5063 telephone may fri 174 1 999 0 nonexistent
## 5064 telephone may fri 83 4 999 0 nonexistent
## 5066 telephone may fri 245 1 999 0 nonexistent
## 5067 telephone may fri 260 1 999 0 nonexistent
## 5069 telephone may fri 271 1 999 0 nonexistent
## 5071 telephone may fri 206 1 999 0 nonexistent
## 5072 telephone may fri 218 1 999 0 nonexistent
## 5073 telephone may fri 621 1 999 0 nonexistent
## 5074 telephone may fri 1349 5 999 0 nonexistent
## 5075 telephone may fri 385 1 999 0 nonexistent
## 5076 telephone may fri 70 5 999 0 nonexistent
## 5077 telephone may fri 509 1 999 0 nonexistent
## 5078 telephone may fri 128 1 999 0 nonexistent
## 5079 telephone may fri 136 1 999 0 nonexistent
## 5081 telephone may fri 3 3 999 0 nonexistent
## 5082 telephone may fri 1171 1 999 0 nonexistent
## 5084 telephone may fri 359 4 999 0 nonexistent
## 5085 telephone may fri 736 2 999 0 nonexistent
## 5086 telephone may fri 217 1 999 0 nonexistent
## 5087 telephone may fri 121 2 999 0 nonexistent
## 5088 telephone may fri 154 2 999 0 nonexistent
## 5089 telephone may fri 98 1 999 0 nonexistent
## 5090 telephone may fri 189 1 999 0 nonexistent
## 5091 telephone may fri 89 1 999 0 nonexistent
## 5093 telephone may fri 302 1 999 0 nonexistent
## 5097 telephone may fri 254 1 999 0 nonexistent
## 5098 telephone may fri 230 1 999 0 nonexistent
## 5099 telephone may fri 373 1 999 0 nonexistent
## 5100 telephone may fri 72 2 999 0 nonexistent
## 5101 telephone may fri 534 1 999 0 nonexistent
## 5102 telephone may fri 225 4 999 0 nonexistent
## 5103 telephone may fri 445 1 999 0 nonexistent
## 5104 telephone may fri 193 2 999 0 nonexistent
## 5105 telephone may fri 76 2 999 0 nonexistent
## 5106 telephone may fri 268 1 999 0 nonexistent
## 5108 telephone may fri 785 1 999 0 nonexistent
## 5109 telephone may fri 298 1 999 0 nonexistent
## 5110 telephone may fri 286 1 999 0 nonexistent
## 5111 telephone may fri 442 1 999 0 nonexistent
## 5112 telephone may fri 206 1 999 0 nonexistent
## 5114 telephone may fri 299 1 999 0 nonexistent
## 5115 telephone may fri 162 1 999 0 nonexistent
## 5116 telephone may fri 504 1 999 0 nonexistent
## 5117 telephone may fri 488 1 999 0 nonexistent
## 5118 telephone may fri 190 1 999 0 nonexistent
## 5119 telephone may fri 139 1 999 0 nonexistent
## 5120 telephone may fri 124 4 999 0 nonexistent
## 5122 telephone may fri 290 1 999 0 nonexistent
## 5123 telephone may fri 152 1 999 0 nonexistent
## 5124 telephone may fri 168 1 999 0 nonexistent
## 5125 telephone may fri 204 1 999 0 nonexistent
## 5126 telephone may fri 164 4 999 0 nonexistent
## 5127 telephone may fri 322 1 999 0 nonexistent
## 5128 telephone may fri 530 1 999 0 nonexistent
## 5129 telephone may fri 237 1 999 0 nonexistent
## 5131 telephone may fri 57 1 999 0 nonexistent
## 5132 telephone may fri 700 1 999 0 nonexistent
## 5133 telephone may fri 601 1 999 0 nonexistent
## 5134 telephone may fri 231 1 999 0 nonexistent
## 5135 telephone may fri 135 1 999 0 nonexistent
## 5136 telephone may fri 86 2 999 0 nonexistent
## 5138 telephone may fri 106 3 999 0 nonexistent
## 5139 telephone may fri 134 1 999 0 nonexistent
## 5141 telephone may fri 293 1 999 0 nonexistent
## 5142 telephone may fri 816 2 999 0 nonexistent
## 5143 telephone may fri 435 1 999 0 nonexistent
## 5144 telephone may fri 100 1 999 0 nonexistent
## 5148 telephone may fri 152 1 999 0 nonexistent
## 5149 telephone may fri 533 1 999 0 nonexistent
## 5150 telephone may fri 28 3 999 0 nonexistent
## 5151 telephone may fri 63 1 999 0 nonexistent
## 5153 telephone may fri 202 2 999 0 nonexistent
## 5154 telephone may fri 181 1 999 0 nonexistent
## 5155 telephone may fri 240 2 999 0 nonexistent
## 5156 telephone may fri 354 4 999 0 nonexistent
## 5157 telephone may fri 210 1 999 0 nonexistent
## 5159 telephone may fri 108 5 999 0 nonexistent
## 5160 telephone may fri 223 1 999 0 nonexistent
## 5161 telephone may fri 275 2 999 0 nonexistent
## 5162 telephone may fri 263 2 999 0 nonexistent
## 5163 telephone may fri 600 1 999 0 nonexistent
## 5164 telephone may fri 85 1 999 0 nonexistent
## 5165 telephone may fri 319 3 999 0 nonexistent
## 5166 telephone may fri 242 3 999 0 nonexistent
## 5167 telephone may fri 128 4 999 0 nonexistent
## 5168 telephone may fri 236 2 999 0 nonexistent
## 5169 telephone may fri 67 1 999 0 nonexistent
## 5170 telephone may fri 246 3 999 0 nonexistent
## 5171 telephone may fri 83 1 999 0 nonexistent
## 5173 telephone may fri 293 1 999 0 nonexistent
## 5174 telephone may fri 245 1 999 0 nonexistent
## 5175 telephone may fri 924 1 999 0 nonexistent
## 5176 telephone may fri 334 1 999 0 nonexistent
## 5177 telephone may fri 317 1 999 0 nonexistent
## 5178 telephone may fri 134 2 999 0 nonexistent
## 5179 telephone may fri 110 2 999 0 nonexistent
## 5180 telephone may fri 37 1 999 0 nonexistent
## 5181 telephone may fri 188 1 999 0 nonexistent
## 5183 telephone may fri 379 1 999 0 nonexistent
## 5184 telephone may fri 206 1 999 0 nonexistent
## 5186 telephone may fri 156 2 999 0 nonexistent
## 5187 telephone may fri 314 3 999 0 nonexistent
## 5188 telephone may fri 98 1 999 0 nonexistent
## 5189 telephone may fri 260 1 999 0 nonexistent
## 5190 telephone may fri 78 1 999 0 nonexistent
## 5191 telephone may fri 115 2 999 0 nonexistent
## 5193 telephone may fri 95 1 999 0 nonexistent
## 5194 telephone may fri 14 2 999 0 nonexistent
## 5198 telephone may fri 111 2 999 0 nonexistent
## 5201 telephone may fri 38 1 999 0 nonexistent
## 5202 telephone may fri 127 2 999 0 nonexistent
## 5203 telephone may fri 66 1 999 0 nonexistent
## 5204 telephone may fri 234 2 999 0 nonexistent
## 5205 telephone may fri 691 1 999 0 nonexistent
## 5207 telephone may fri 270 1 999 0 nonexistent
## 5210 telephone may fri 390 1 999 0 nonexistent
## 5211 telephone may fri 249 1 999 0 nonexistent
## 5212 telephone may fri 31 1 999 0 nonexistent
## 5213 telephone may fri 161 1 999 0 nonexistent
## 5214 telephone may fri 369 1 999 0 nonexistent
## 5215 telephone may fri 162 1 999 0 nonexistent
## 5217 telephone may fri 397 1 999 0 nonexistent
## 5218 telephone may fri 227 1 999 0 nonexistent
## 5219 telephone may fri 7 1 999 0 nonexistent
## 5220 telephone may fri 465 1 999 0 nonexistent
## 5221 telephone may fri 137 1 999 0 nonexistent
## 5222 telephone may fri 98 1 999 0 nonexistent
## 5223 telephone may fri 665 1 999 0 nonexistent
## 5224 telephone may fri 80 1 999 0 nonexistent
## 5225 telephone may fri 164 1 999 0 nonexistent
## 5226 telephone may fri 145 1 999 0 nonexistent
## 5227 telephone may fri 25 2 999 0 nonexistent
## 5228 telephone may fri 187 1 999 0 nonexistent
## 5229 telephone may fri 76 2 999 0 nonexistent
## 5230 telephone may fri 163 2 999 0 nonexistent
## 5231 telephone may fri 152 2 999 0 nonexistent
## 5232 telephone may fri 27 1 999 0 nonexistent
## 5234 telephone may fri 567 3 999 0 nonexistent
## 5235 telephone may fri 284 2 999 0 nonexistent
## 5236 telephone may fri 378 2 999 0 nonexistent
## 5237 telephone may fri 353 1 999 0 nonexistent
## 5238 telephone may fri 83 2 999 0 nonexistent
## 5239 telephone may fri 104 1 999 0 nonexistent
## 5240 telephone may fri 50 3 999 0 nonexistent
## 5241 telephone may fri 536 2 999 0 nonexistent
## 5243 telephone may fri 139 2 999 0 nonexistent
## 5248 telephone may fri 466 2 999 0 nonexistent
## 5249 telephone may fri 254 1 999 0 nonexistent
## 5250 telephone may fri 250 1 999 0 nonexistent
## 5251 telephone may fri 79 1 999 0 nonexistent
## 5252 telephone may fri 563 1 999 0 nonexistent
## 5253 telephone may fri 147 14 999 0 nonexistent
## 5254 telephone may fri 125 3 999 0 nonexistent
## 5256 telephone may fri 556 1 999 0 nonexistent
## 5257 telephone may fri 119 1 999 0 nonexistent
## 5259 telephone may fri 268 1 999 0 nonexistent
## 5260 telephone may fri 332 1 999 0 nonexistent
## 5261 telephone may fri 159 2 999 0 nonexistent
## 5263 telephone may fri 448 1 999 0 nonexistent
## 5264 telephone may fri 160 1 999 0 nonexistent
## 5265 telephone may fri 240 1 999 0 nonexistent
## 5266 telephone may fri 115 4 999 0 nonexistent
## 5267 telephone may fri 290 3 999 0 nonexistent
## 5268 telephone may fri 140 2 999 0 nonexistent
## 5269 telephone may fri 57 4 999 0 nonexistent
## 5270 telephone may fri 811 1 999 0 nonexistent
## 5271 telephone may fri 221 2 999 0 nonexistent
## 5272 telephone may fri 108 3 999 0 nonexistent
## 5273 telephone may fri 288 3 999 0 nonexistent
## 5275 telephone may fri 542 2 999 0 nonexistent
## 5276 telephone may fri 541 2 999 0 nonexistent
## 5277 telephone may fri 198 2 999 0 nonexistent
## 5278 telephone may fri 302 1 999 0 nonexistent
## 5279 telephone may fri 268 1 999 0 nonexistent
## 5280 telephone may fri 154 2 999 0 nonexistent
## 5281 telephone may fri 66 1 999 0 nonexistent
## 5282 telephone may fri 216 2 999 0 nonexistent
## 5283 telephone may fri 206 3 999 0 nonexistent
## 5286 telephone may fri 168 1 999 0 nonexistent
## 5287 telephone may fri 186 1 999 0 nonexistent
## 5288 telephone may fri 472 1 999 0 nonexistent
## 5289 telephone may fri 189 2 999 0 nonexistent
## 5290 telephone may fri 215 2 999 0 nonexistent
## 5291 telephone may fri 216 1 999 0 nonexistent
## 5292 telephone may fri 418 3 999 0 nonexistent
## 5294 telephone may fri 926 1 999 0 nonexistent
## 5297 telephone may fri 228 2 999 0 nonexistent
## 5298 telephone may fri 411 3 999 0 nonexistent
## 5300 telephone may fri 144 2 999 0 nonexistent
## 5301 telephone may fri 248 2 999 0 nonexistent
## 5302 telephone may fri 138 6 999 0 nonexistent
## 5303 telephone may fri 824 2 999 0 nonexistent
## 5304 telephone may fri 345 3 999 0 nonexistent
## 5305 telephone may fri 147 42 999 0 nonexistent
## 5306 telephone may fri 773 2 999 0 nonexistent
## 5307 telephone may fri 574 5 999 0 nonexistent
## 5308 telephone may fri 122 6 999 0 nonexistent
## 5311 telephone may fri 343 4 999 0 nonexistent
## 5312 telephone may fri 111 1 999 0 nonexistent
## 5313 telephone may fri 166 1 999 0 nonexistent
## 5314 telephone may fri 469 2 999 0 nonexistent
## 5316 telephone may fri 106 6 999 0 nonexistent
## 5317 telephone may fri 165 3 999 0 nonexistent
## 5318 telephone may fri 178 1 999 0 nonexistent
## 5319 telephone may fri 364 2 999 0 nonexistent
## 5320 telephone may fri 185 4 999 0 nonexistent
## 5321 telephone may fri 224 4 999 0 nonexistent
## 5324 telephone may fri 226 2 999 0 nonexistent
## 5326 telephone may fri 301 2 999 0 nonexistent
## 5331 telephone may fri 201 3 999 0 nonexistent
## 5332 telephone may fri 83 2 999 0 nonexistent
## 5333 telephone may fri 339 2 999 0 nonexistent
## 5334 telephone may fri 478 2 999 0 nonexistent
## 5335 telephone may fri 13 5 999 0 nonexistent
## 5336 telephone may fri 242 3 999 0 nonexistent
## 5337 telephone may fri 55 4 999 0 nonexistent
## 5338 telephone may fri 281 27 999 0 nonexistent
## 5339 telephone may fri 210 1 999 0 nonexistent
## 5340 telephone may fri 423 2 999 0 nonexistent
## 5341 telephone may fri 200 1 999 0 nonexistent
## 5342 telephone may fri 109 2 999 0 nonexistent
## 5343 telephone may fri 233 2 999 0 nonexistent
## 5344 telephone may fri 133 2 999 0 nonexistent
## 5345 telephone may fri 209 3 999 0 nonexistent
## 5346 telephone may fri 114 4 999 0 nonexistent
## 5347 telephone may fri 319 2 999 0 nonexistent
## 5348 telephone may fri 588 3 999 0 nonexistent
## 5351 telephone may fri 83 3 999 0 nonexistent
## 5352 telephone may fri 123 2 999 0 nonexistent
## 5354 telephone may fri 167 4 999 0 nonexistent
## 5355 telephone may fri 89 4 999 0 nonexistent
## 5359 telephone may fri 304 2 999 0 nonexistent
## 5360 telephone may fri 82 7 999 0 nonexistent
## 5363 telephone may fri 76 4 999 0 nonexistent
## 5364 telephone may fri 777 2 999 0 nonexistent
## 5365 telephone may fri 147 1 999 0 nonexistent
## 5366 telephone may fri 243 1 999 0 nonexistent
## 5367 telephone may fri 124 2 999 0 nonexistent
## 5369 telephone may fri 488 1 999 0 nonexistent
## 5370 telephone may fri 157 1 999 0 nonexistent
## 5371 telephone may fri 700 3 999 0 nonexistent
## 5372 telephone may fri 281 1 999 0 nonexistent
## 5373 telephone may fri 211 3 999 0 nonexistent
## 5374 telephone may fri 160 3 999 0 nonexistent
## 5375 telephone may fri 138 6 999 0 nonexistent
## 5377 telephone may fri 92 1 999 0 nonexistent
## 5378 telephone may fri 247 1 999 0 nonexistent
## 5381 telephone may fri 153 4 999 0 nonexistent
## 5382 telephone may fri 241 2 999 0 nonexistent
## 5383 telephone may fri 211 4 999 0 nonexistent
## 5384 telephone may fri 493 2 999 0 nonexistent
## 5385 telephone may fri 597 6 999 0 nonexistent
## 5386 telephone may fri 107 2 999 0 nonexistent
## 5387 telephone may fri 1438 2 999 0 nonexistent
## 5388 telephone may fri 172 3 999 0 nonexistent
## 5389 telephone may fri 159 3 999 0 nonexistent
## 5390 telephone may fri 29 3 999 0 nonexistent
## 5391 telephone may fri 76 2 999 0 nonexistent
## 5392 telephone may fri 185 4 999 0 nonexistent
## 5393 telephone may fri 569 3 999 0 nonexistent
## 5395 telephone may fri 95 4 999 0 nonexistent
## 5396 telephone may fri 557 2 999 0 nonexistent
## 5397 telephone may fri 160 3 999 0 nonexistent
## 5398 telephone may fri 209 3 999 0 nonexistent
## 5399 telephone may fri 335 3 999 0 nonexistent
## 5400 telephone may fri 372 3 999 0 nonexistent
## 5401 telephone may fri 92 3 999 0 nonexistent
## 5403 telephone may fri 178 2 999 0 nonexistent
## 5404 telephone may fri 85 2 999 0 nonexistent
## 5405 telephone may fri 95 12 999 0 nonexistent
## 5406 telephone may fri 134 10 999 0 nonexistent
## 5408 telephone may fri 63 2 999 0 nonexistent
## 5409 telephone may fri 67 13 999 0 nonexistent
## 5410 telephone may fri 77 3 999 0 nonexistent
## 5411 telephone may fri 292 2 999 0 nonexistent
## 5412 telephone may fri 57 5 999 0 nonexistent
## 5413 telephone may fri 38 11 999 0 nonexistent
## 5414 telephone may fri 151 9 999 0 nonexistent
## 5415 telephone may fri 331 3 999 0 nonexistent
## 5416 telephone may fri 1392 2 999 0 nonexistent
## 5417 telephone may fri 100 4 999 0 nonexistent
## 5418 telephone may fri 358 2 999 0 nonexistent
## 5420 telephone may fri 181 16 999 0 nonexistent
## 5421 telephone may fri 188 6 999 0 nonexistent
## 5423 telephone may fri 203 5 999 0 nonexistent
## 5424 telephone may fri 61 2 999 0 nonexistent
## 5425 telephone may fri 297 2 999 0 nonexistent
## 5426 telephone may fri 219 2 999 0 nonexistent
## 5427 telephone may fri 129 6 999 0 nonexistent
## 5429 telephone may fri 266 2 999 0 nonexistent
## 5430 telephone may fri 559 3 999 0 nonexistent
## 5431 telephone may fri 162 3 999 0 nonexistent
## 5432 telephone may fri 75 3 999 0 nonexistent
## 5434 telephone may fri 352 2 999 0 nonexistent
## 5435 telephone may fri 204 4 999 0 nonexistent
## 5436 telephone may fri 1059 5 999 0 nonexistent
## 5437 telephone may fri 248 4 999 0 nonexistent
## 5438 telephone may fri 82 2 999 0 nonexistent
## 5439 telephone may fri 259 2 999 0 nonexistent
## 5440 telephone may fri 703 2 999 0 nonexistent
## 5441 telephone may fri 100 4 999 0 nonexistent
## 5442 telephone may fri 348 2 999 0 nonexistent
## 5443 telephone may fri 430 6 999 0 nonexistent
## 5444 telephone may fri 146 6 999 0 nonexistent
## 5445 telephone may fri 34 2 999 0 nonexistent
## 5446 telephone may fri 297 3 999 0 nonexistent
## 5447 telephone may fri 22 2 999 0 nonexistent
## 5448 telephone may fri 106 3 999 0 nonexistent
## 5449 telephone may fri 465 4 999 0 nonexistent
## 5450 telephone may fri 104 5 999 0 nonexistent
## 5451 telephone may fri 213 4 999 0 nonexistent
## 5452 telephone may fri 74 4 999 0 nonexistent
## 5453 telephone may fri 245 4 999 0 nonexistent
## 5454 telephone may fri 252 5 999 0 nonexistent
## 5455 telephone may fri 317 4 999 0 nonexistent
## 5456 telephone may fri 93 8 999 0 nonexistent
## 5457 telephone may fri 116 5 999 0 nonexistent
## 5458 telephone may fri 386 2 999 0 nonexistent
## 5460 telephone may fri 146 4 999 0 nonexistent
## 5461 telephone may fri 215 4 999 0 nonexistent
## 5462 telephone may fri 90 3 999 0 nonexistent
## 5463 telephone may fri 260 3 999 0 nonexistent
## 5465 telephone may fri 107 3 999 0 nonexistent
## 5466 telephone may fri 164 3 999 0 nonexistent
## 5467 telephone may fri 427 2 999 0 nonexistent
## 5468 telephone may fri 1222 5 999 0 nonexistent
## 5469 telephone may fri 426 9 999 0 nonexistent
## 5470 telephone may fri 456 4 999 0 nonexistent
## 5472 telephone may fri 105 4 999 0 nonexistent
## 5474 telephone may fri 27 7 999 0 nonexistent
## 5475 telephone may fri 137 3 999 0 nonexistent
## 5476 telephone may fri 100 4 999 0 nonexistent
## 5477 telephone may fri 1034 9 999 0 nonexistent
## 5479 telephone may fri 159 3 999 0 nonexistent
## 5482 telephone may fri 159 5 999 0 nonexistent
## 5484 telephone may mon 117 2 999 0 nonexistent
## 5485 telephone may mon 85 2 999 0 nonexistent
## 5487 telephone may mon 49 1 999 0 nonexistent
## 5488 telephone may mon 260 5 999 0 nonexistent
## 5490 telephone may mon 193 1 999 0 nonexistent
## 5491 telephone may mon 373 2 999 0 nonexistent
## 5492 telephone may mon 336 1 999 0 nonexistent
## 5493 telephone may mon 200 2 999 0 nonexistent
## 5494 telephone may mon 501 2 999 0 nonexistent
## 5495 telephone may mon 80 1 999 0 nonexistent
## 5496 telephone may mon 299 1 999 0 nonexistent
## 5497 telephone may mon 207 1 999 0 nonexistent
## 5498 telephone may mon 125 1 999 0 nonexistent
## 5499 telephone may mon 237 1 999 0 nonexistent
## 5501 telephone may mon 224 1 999 0 nonexistent
## 5502 telephone may mon 183 1 999 0 nonexistent
## 5503 telephone may mon 63 1 999 0 nonexistent
## 5505 telephone may mon 188 1 999 0 nonexistent
## 5506 telephone may mon 897 5 999 0 nonexistent
## 5507 telephone may mon 168 1 999 0 nonexistent
## 5508 telephone may mon 322 1 999 0 nonexistent
## 5509 telephone may mon 317 1 999 0 nonexistent
## 5510 telephone may mon 511 1 999 0 nonexistent
## 5511 telephone may mon 155 1 999 0 nonexistent
## 5514 telephone may mon 247 1 999 0 nonexistent
## 5515 telephone may mon 88 1 999 0 nonexistent
## 5517 telephone may mon 31 1 999 0 nonexistent
## 5518 telephone may mon 142 3 999 0 nonexistent
## 5520 telephone may mon 158 7 999 0 nonexistent
## 5521 telephone may mon 129 3 999 0 nonexistent
## 5523 telephone may mon 122 4 999 0 nonexistent
## 5524 telephone may mon 120 2 999 0 nonexistent
## 5525 telephone may mon 180 2 999 0 nonexistent
## 5527 telephone may mon 329 1 999 0 nonexistent
## 5528 telephone may mon 204 1 999 0 nonexistent
## 5529 telephone may mon 120 1 999 0 nonexistent
## 5531 telephone may mon 19 17 999 0 nonexistent
## 5532 telephone may mon 460 1 999 0 nonexistent
## 5533 telephone may mon 437 1 999 0 nonexistent
## 5534 telephone may mon 76 2 999 0 nonexistent
## 5535 telephone may mon 226 1 999 0 nonexistent
## 5537 telephone may mon 109 1 999 0 nonexistent
## 5538 telephone may mon 219 1 999 0 nonexistent
## 5539 telephone may mon 41 2 999 0 nonexistent
## 5540 telephone may mon 581 1 999 0 nonexistent
## 5541 telephone may mon 131 2 999 0 nonexistent
## 5542 telephone may mon 50 2 999 0 nonexistent
## 5543 telephone may mon 130 1 999 0 nonexistent
## 5546 telephone may mon 80 1 999 0 nonexistent
## 5547 telephone may mon 470 1 999 0 nonexistent
## 5548 telephone may mon 281 1 999 0 nonexistent
## 5549 telephone may mon 391 1 999 0 nonexistent
## 5550 telephone may mon 24 1 999 0 nonexistent
## 5551 telephone may mon 788 11 999 0 nonexistent
## 5552 telephone may mon 210 1 999 0 nonexistent
## 5553 telephone may mon 367 4 999 0 nonexistent
## 5554 telephone may mon 107 2 999 0 nonexistent
## 5555 telephone may mon 228 1 999 0 nonexistent
## 5559 telephone may mon 153 1 999 0 nonexistent
## 5560 telephone may mon 76 1 999 0 nonexistent
## 5561 telephone may mon 111 1 999 0 nonexistent
## 5562 telephone may mon 168 1 999 0 nonexistent
## 5564 telephone may mon 219 1 999 0 nonexistent
## 5565 telephone may mon 14 32 999 0 nonexistent
## 5569 telephone may mon 166 2 999 0 nonexistent
## 5570 telephone may mon 208 2 999 0 nonexistent
## 5571 telephone may mon 483 1 999 0 nonexistent
## 5572 telephone may mon 129 1 999 0 nonexistent
## 5573 telephone may mon 130 1 999 0 nonexistent
## 5574 telephone may mon 754 1 999 0 nonexistent
## 5577 telephone may mon 258 1 999 0 nonexistent
## 5578 telephone may mon 227 1 999 0 nonexistent
## 5579 telephone may mon 266 3 999 0 nonexistent
## 5580 telephone may mon 232 1 999 0 nonexistent
## 5582 telephone may mon 164 1 999 0 nonexistent
## 5583 telephone may mon 167 1 999 0 nonexistent
## 5584 telephone may mon 103 1 999 0 nonexistent
## 5585 telephone may mon 168 1 999 0 nonexistent
## 5587 telephone may mon 317 1 999 0 nonexistent
## 5588 telephone may mon 388 1 999 0 nonexistent
## 5589 telephone may mon 62 1 999 0 nonexistent
## 5590 telephone may mon 142 1 999 0 nonexistent
## 5591 telephone may mon 63 1 999 0 nonexistent
## 5592 telephone may mon 212 1 999 0 nonexistent
## 5593 telephone may mon 149 1 999 0 nonexistent
## 5594 telephone may mon 161 3 999 0 nonexistent
## 5596 telephone may mon 369 1 999 0 nonexistent
## 5597 telephone may mon 170 2 999 0 nonexistent
## 5598 telephone may mon 974 1 999 0 nonexistent
## 5599 telephone may mon 167 1 999 0 nonexistent
## 5600 telephone may mon 74 1 999 0 nonexistent
## 5601 telephone may mon 96 1 999 0 nonexistent
## 5603 telephone may mon 140 2 999 0 nonexistent
## 5604 telephone may mon 396 1 999 0 nonexistent
## 5605 telephone may mon 61 1 999 0 nonexistent
## 5606 telephone may mon 252 1 999 0 nonexistent
## 5608 telephone may mon 374 1 999 0 nonexistent
## 5609 telephone may mon 351 1 999 0 nonexistent
## 5610 telephone may mon 262 2 999 0 nonexistent
## 5615 telephone may mon 367 2 999 0 nonexistent
## 5617 telephone may mon 115 1 999 0 nonexistent
## 5618 telephone may mon 61 1 999 0 nonexistent
## 5619 telephone may mon 142 1 999 0 nonexistent
## 5620 telephone may mon 543 2 999 0 nonexistent
## 5621 telephone may mon 133 1 999 0 nonexistent
## 5622 telephone may mon 52 1 999 0 nonexistent
## 5623 telephone may mon 377 1 999 0 nonexistent
## 5624 telephone may mon 77 1 999 0 nonexistent
## 5625 telephone may mon 200 1 999 0 nonexistent
## 5627 telephone may mon 144 1 999 0 nonexistent
## 5628 telephone may mon 473 5 999 0 nonexistent
## 5629 telephone may mon 90 4 999 0 nonexistent
## 5630 telephone may mon 470 1 999 0 nonexistent
## 5631 telephone may mon 302 1 999 0 nonexistent
## 5632 telephone may mon 81 8 999 0 nonexistent
## 5633 telephone may mon 225 1 999 0 nonexistent
## 5634 telephone may mon 252 2 999 0 nonexistent
## 5637 telephone may mon 745 4 999 0 nonexistent
## 5638 telephone may mon 247 1 999 0 nonexistent
## 5639 telephone may mon 630 1 999 0 nonexistent
## 5640 telephone may mon 16 11 999 0 nonexistent
## 5642 telephone may mon 131 4 999 0 nonexistent
## 5645 telephone may mon 80 2 999 0 nonexistent
## 5646 telephone may mon 90 2 999 0 nonexistent
## 5647 telephone may mon 592 4 999 0 nonexistent
## 5648 telephone may mon 85 1 999 0 nonexistent
## 5649 telephone may mon 153 3 999 0 nonexistent
## 5650 telephone may mon 207 2 999 0 nonexistent
## 5651 telephone may mon 440 1 999 0 nonexistent
## 5652 telephone may mon 127 1 999 0 nonexistent
## 5653 telephone may mon 679 2 999 0 nonexistent
## 5655 telephone may mon 269 1 999 0 nonexistent
## 5657 telephone may mon 144 3 999 0 nonexistent
## 5659 telephone may mon 107 1 999 0 nonexistent
## 5660 telephone may mon 130 1 999 0 nonexistent
## 5661 telephone may mon 167 3 999 0 nonexistent
## 5663 telephone may mon 77 1 999 0 nonexistent
## 5664 telephone may mon 407 2 999 0 nonexistent
## 5665 telephone may mon 136 1 999 0 nonexistent
## 5666 telephone may mon 293 1 999 0 nonexistent
## 5667 telephone may mon 97 3 999 0 nonexistent
## 5668 telephone may mon 145 1 999 0 nonexistent
## 5669 telephone may mon 162 2 999 0 nonexistent
## 5670 telephone may mon 105 1 999 0 nonexistent
## 5671 telephone may mon 596 1 999 0 nonexistent
## 5672 telephone may mon 134 1 999 0 nonexistent
## 5673 telephone may mon 108 1 999 0 nonexistent
## 5674 telephone may mon 161 1 999 0 nonexistent
## 5675 telephone may mon 65 1 999 0 nonexistent
## 5676 telephone may mon 188 1 999 0 nonexistent
## 5677 telephone may mon 312 1 999 0 nonexistent
## 5679 telephone may mon 130 1 999 0 nonexistent
## 5681 telephone may mon 175 2 999 0 nonexistent
## 5682 telephone may mon 87 2 999 0 nonexistent
## 5683 telephone may mon 123 14 999 0 nonexistent
## 5685 telephone may mon 204 2 999 0 nonexistent
## 5686 telephone may mon 150 2 999 0 nonexistent
## 5688 telephone may mon 109 7 999 0 nonexistent
## 5689 telephone may mon 243 6 999 0 nonexistent
## 5691 telephone may mon 120 1 999 0 nonexistent
## 5692 telephone may mon 182 5 999 0 nonexistent
## 5693 telephone may mon 70 3 999 0 nonexistent
## 5694 telephone may mon 45 4 999 0 nonexistent
## 5695 telephone may mon 280 3 999 0 nonexistent
## 5696 telephone may mon 215 2 999 0 nonexistent
## 5697 telephone may mon 147 3 999 0 nonexistent
## 5698 telephone may mon 222 2 999 0 nonexistent
## 5699 telephone may mon 404 1 999 0 nonexistent
## 5700 telephone may mon 1234 3 999 0 nonexistent
## 5701 telephone may mon 306 3 999 0 nonexistent
## 5704 telephone may mon 252 2 999 0 nonexistent
## 5705 telephone may mon 127 2 999 0 nonexistent
## 5706 telephone may mon 140 2 999 0 nonexistent
## 5707 telephone may mon 200 2 999 0 nonexistent
## 5708 telephone may mon 642 2 999 0 nonexistent
## 5712 telephone may mon 916 2 999 0 nonexistent
## 5713 telephone may mon 629 2 999 0 nonexistent
## 5714 telephone may mon 155 6 999 0 nonexistent
## 5716 telephone may mon 159 3 999 0 nonexistent
## 5717 telephone may mon 111 1 999 0 nonexistent
## 5718 telephone may mon 729 2 999 0 nonexistent
## 5719 telephone may mon 434 4 999 0 nonexistent
## 5721 telephone may mon 250 3 999 0 nonexistent
## 5722 telephone may mon 107 3 999 0 nonexistent
## 5723 telephone may mon 272 6 999 0 nonexistent
## 5724 telephone may mon 574 3 999 0 nonexistent
## 5727 telephone may mon 114 3 999 0 nonexistent
## 5728 telephone may mon 175 3 999 0 nonexistent
## 5729 telephone may mon 257 3 999 0 nonexistent
## 5730 telephone may mon 268 3 999 0 nonexistent
## 5732 telephone may mon 895 4 999 0 nonexistent
## 5733 telephone may mon 225 1 999 0 nonexistent
## 5734 telephone may mon 327 1 999 0 nonexistent
## 5735 telephone may mon 99 3 999 0 nonexistent
## 5736 telephone may mon 293 4 999 0 nonexistent
## 5737 telephone may mon 68 3 999 0 nonexistent
## 5738 telephone may mon 124 2 999 0 nonexistent
## 5739 telephone may mon 519 2 999 0 nonexistent
## 5740 telephone may mon 150 1 999 0 nonexistent
## 5742 telephone may mon 175 1 999 0 nonexistent
## 5743 telephone may mon 289 1 999 0 nonexistent
## 5745 telephone may mon 100 8 999 0 nonexistent
## 5746 telephone may mon 321 1 999 0 nonexistent
## 5748 telephone may mon 614 2 999 0 nonexistent
## 5749 telephone may mon 248 2 999 0 nonexistent
## 5750 telephone may mon 93 2 999 0 nonexistent
## 5751 telephone may mon 355 2 999 0 nonexistent
## 5752 telephone may mon 177 1 999 0 nonexistent
## 5753 telephone may mon 245 3 999 0 nonexistent
## 5755 telephone may mon 192 6 999 0 nonexistent
## 5757 telephone may mon 160 3 999 0 nonexistent
## 5758 telephone may mon 249 2 999 0 nonexistent
## 5759 telephone may mon 147 1 999 0 nonexistent
## 5762 telephone may mon 131 1 999 0 nonexistent
## 5763 telephone may mon 115 2 999 0 nonexistent
## 5764 telephone may mon 349 2 999 0 nonexistent
## 5765 telephone may mon 114 2 999 0 nonexistent
## 5766 telephone may mon 445 2 999 0 nonexistent
## 5768 telephone may mon 341 12 999 0 nonexistent
## 5769 telephone may mon 796 1 999 0 nonexistent
## 5770 telephone may mon 76 3 999 0 nonexistent
## 5771 telephone may mon 126 2 999 0 nonexistent
## 5773 telephone may mon 91 2 999 0 nonexistent
## 5774 telephone may mon 52 3 999 0 nonexistent
## 5775 telephone may mon 78 2 999 0 nonexistent
## 5776 telephone may mon 471 1 999 0 nonexistent
## 5777 telephone may mon 724 1 999 0 nonexistent
## 5778 telephone may mon 99 1 999 0 nonexistent
## 5779 telephone may mon 293 1 999 0 nonexistent
## 5780 telephone may mon 333 1 999 0 nonexistent
## 5781 telephone may mon 431 2 999 0 nonexistent
## 5782 telephone may mon 523 2 999 0 nonexistent
## 5785 telephone may mon 741 6 999 0 nonexistent
## 5786 telephone may mon 151 3 999 0 nonexistent
## 5787 telephone may mon 135 2 999 0 nonexistent
## 5789 telephone may mon 472 3 999 0 nonexistent
## 5791 telephone may mon 113 4 999 0 nonexistent
## 5792 telephone may mon 372 14 999 0 nonexistent
## 5793 telephone may mon 603 1 999 0 nonexistent
## 5794 telephone may mon 85 2 999 0 nonexistent
## 5795 telephone may mon 76 2 999 0 nonexistent
## 5797 telephone may mon 402 2 999 0 nonexistent
## 5798 telephone may mon 129 3 999 0 nonexistent
## 5799 telephone may mon 535 6 999 0 nonexistent
## 5801 telephone may mon 48 2 999 0 nonexistent
## 5804 telephone may mon 169 4 999 0 nonexistent
## 5805 telephone may mon 116 4 999 0 nonexistent
## 5806 telephone may mon 100 2 999 0 nonexistent
## 5807 telephone may mon 212 2 999 0 nonexistent
## 5808 telephone may mon 304 4 999 0 nonexistent
## 5810 telephone may mon 102 2 999 0 nonexistent
## 5811 telephone may mon 291 2 999 0 nonexistent
## 5813 telephone may mon 207 2 999 0 nonexistent
## 5814 telephone may mon 197 2 999 0 nonexistent
## 5817 telephone may mon 125 6 999 0 nonexistent
## 5818 telephone may mon 114 2 999 0 nonexistent
## 5819 telephone may mon 414 2 999 0 nonexistent
## 5820 telephone may mon 319 4 999 0 nonexistent
## 5821 telephone may mon 346 2 999 0 nonexistent
## 5822 telephone may mon 157 3 999 0 nonexistent
## 5823 telephone may mon 160 11 999 0 nonexistent
## 5824 telephone may mon 83 3 999 0 nonexistent
## 5825 telephone may mon 97 3 999 0 nonexistent
## 5826 telephone may mon 98 4 999 0 nonexistent
## 5828 telephone may mon 451 2 999 0 nonexistent
## 5829 telephone may mon 34 3 999 0 nonexistent
## 5830 telephone may mon 79 5 999 0 nonexistent
## 5831 telephone may mon 109 2 999 0 nonexistent
## 5832 telephone may mon 454 3 999 0 nonexistent
## 5833 telephone may mon 251 3 999 0 nonexistent
## 5835 telephone may mon 166 2 999 0 nonexistent
## 5836 telephone may mon 816 2 999 0 nonexistent
## 5837 telephone may mon 87 2 999 0 nonexistent
## 5838 telephone may mon 81 6 999 0 nonexistent
## 5839 telephone may mon 109 5 999 0 nonexistent
## 5840 telephone may mon 375 2 999 0 nonexistent
## 5841 telephone may mon 51 2 999 0 nonexistent
## 5842 telephone may mon 118 4 999 0 nonexistent
## 5843 telephone may mon 178 5 999 0 nonexistent
## 5845 telephone may mon 155 2 999 0 nonexistent
## 5846 telephone may mon 173 3 999 0 nonexistent
## 5847 telephone may mon 304 4 999 0 nonexistent
## 5848 telephone may mon 583 6 999 0 nonexistent
## 5849 telephone may mon 138 2 999 0 nonexistent
## 5850 telephone may mon 250 2 999 0 nonexistent
## 5852 telephone may mon 14 11 999 0 nonexistent
## 5854 telephone may mon 83 1 999 0 nonexistent
## 5855 telephone may mon 543 4 999 0 nonexistent
## 5857 telephone may mon 158 4 999 0 nonexistent
## 5858 telephone may mon 365 3 999 0 nonexistent
## 5859 telephone may mon 304 3 999 0 nonexistent
## 5863 telephone may mon 232 3 999 0 nonexistent
## 5864 telephone may mon 764 2 999 0 nonexistent
## 5865 telephone may mon 411 3 999 0 nonexistent
## 5866 telephone may mon 149 7 999 0 nonexistent
## 5867 telephone may mon 63 3 999 0 nonexistent
## 5871 telephone may mon 29 2 999 0 nonexistent
## 5872 telephone may mon 162 4 999 0 nonexistent
## 5874 telephone may mon 23 10 999 0 nonexistent
## 5875 telephone may mon 147 6 999 0 nonexistent
## 5876 telephone may mon 90 5 999 0 nonexistent
## 5877 telephone may mon 409 2 999 0 nonexistent
## 5879 telephone may mon 175 5 999 0 nonexistent
## 5881 telephone may mon 96 5 999 0 nonexistent
## 5883 telephone may mon 66 3 999 0 nonexistent
## 5884 telephone may mon 113 5 999 0 nonexistent
## 5885 telephone may mon 232 5 999 0 nonexistent
## 5886 telephone may mon 129 3 999 0 nonexistent
## 5887 telephone may mon 405 4 999 0 nonexistent
## 5888 telephone may mon 251 11 999 0 nonexistent
## 5890 telephone may mon 253 2 999 0 nonexistent
## 5891 telephone may mon 245 3 999 0 nonexistent
## 5892 telephone may mon 188 7 999 0 nonexistent
## 5893 telephone may mon 118 2 999 0 nonexistent
## 5894 telephone may mon 140 2 999 0 nonexistent
## 5895 telephone may mon 102 22 999 0 nonexistent
## 5897 telephone may mon 97 4 999 0 nonexistent
## 5898 telephone may mon 41 2 999 0 nonexistent
## 5899 telephone may mon 329 2 999 0 nonexistent
## 5901 telephone may mon 130 3 999 0 nonexistent
## 5902 telephone may mon 241 2 999 0 nonexistent
## 5903 telephone may mon 308 4 999 0 nonexistent
## 5904 telephone may mon 118 2 999 0 nonexistent
## 5905 telephone may mon 14 16 999 0 nonexistent
## 5906 telephone may mon 125 4 999 0 nonexistent
## 5907 telephone may mon 193 5 999 0 nonexistent
## 5908 telephone may mon 200 3 999 0 nonexistent
## 5909 telephone may mon 349 4 999 0 nonexistent
## 5910 telephone may mon 282 3 999 0 nonexistent
## 5913 telephone may tue 114 3 999 0 nonexistent
## 5914 telephone may tue 172 7 999 0 nonexistent
## 5915 telephone may tue 292 7 999 0 nonexistent
## 5916 telephone may tue 269 3 999 0 nonexistent
## 5918 telephone may tue 376 3 999 0 nonexistent
## 5920 telephone may tue 121 2 999 0 nonexistent
## 5921 telephone may tue 59 4 999 0 nonexistent
## 5925 telephone may tue 67 3 999 0 nonexistent
## 5926 telephone may tue 163 2 999 0 nonexistent
## 5927 telephone may tue 99 3 999 0 nonexistent
## 5928 telephone may tue 27 2 999 0 nonexistent
## 5929 telephone may tue 119 2 999 0 nonexistent
## 5930 telephone may tue 148 4 999 0 nonexistent
## 5931 telephone may tue 222 4 999 0 nonexistent
## 5933 telephone may tue 214 2 999 0 nonexistent
## 5934 telephone may tue 152 2 999 0 nonexistent
## 5935 telephone may tue 75 2 999 0 nonexistent
## 5936 telephone may tue 62 4 999 0 nonexistent
## 5937 telephone may tue 112 3 999 0 nonexistent
## 5938 telephone may tue 220 6 999 0 nonexistent
## 5939 telephone may tue 204 3 999 0 nonexistent
## 5940 telephone may tue 160 6 999 0 nonexistent
## 5941 telephone may tue 233 1 999 0 nonexistent
## 5942 telephone may tue 129 1 999 0 nonexistent
## 5943 telephone may tue 172 1 999 0 nonexistent
## 5944 telephone may tue 578 2 999 0 nonexistent
## 5945 telephone may tue 183 9 999 0 nonexistent
## 5947 telephone may tue 154 1 999 0 nonexistent
## 5950 telephone may tue 111 1 999 0 nonexistent
## 5953 telephone may tue 125 3 999 0 nonexistent
## 5954 telephone may tue 193 5 999 0 nonexistent
## 5955 telephone may tue 287 4 999 0 nonexistent
## 5960 telephone may tue 130 2 999 0 nonexistent
## 5963 telephone may tue 236 1 999 0 nonexistent
## 5964 telephone may tue 336 2 999 0 nonexistent
## 5965 telephone may tue 150 1 999 0 nonexistent
## 5966 telephone may tue 159 1 999 0 nonexistent
## 5969 telephone may tue 197 1 999 0 nonexistent
## 5970 telephone may tue 218 1 999 0 nonexistent
## 5971 telephone may tue 34 3 999 0 nonexistent
## 5972 telephone may tue 386 11 999 0 nonexistent
## 5973 telephone may tue 154 1 999 0 nonexistent
## 5974 telephone may tue 159 2 999 0 nonexistent
## 5975 telephone may tue 157 2 999 0 nonexistent
## 5976 telephone may tue 227 3 999 0 nonexistent
## 5977 telephone may tue 116 1 999 0 nonexistent
## 5978 telephone may tue 205 3 999 0 nonexistent
## 5979 telephone may tue 1205 1 999 0 nonexistent
## 5982 telephone may tue 229 2 999 0 nonexistent
## 5983 telephone may tue 147 1 999 0 nonexistent
## 5984 telephone may tue 147 1 999 0 nonexistent
## 5985 telephone may tue 179 1 999 0 nonexistent
## 5986 telephone may tue 185 1 999 0 nonexistent
## 5988 telephone may tue 171 3 999 0 nonexistent
## 5989 telephone may tue 237 1 999 0 nonexistent
## 5990 telephone may tue 228 1 999 0 nonexistent
## 5991 telephone may tue 269 1 999 0 nonexistent
## 5992 telephone may tue 156 2 999 0 nonexistent
## 5993 telephone may tue 162 1 999 0 nonexistent
## 5994 telephone may tue 674 1 999 0 nonexistent
## 5995 telephone may tue 234 1 999 0 nonexistent
## 5996 telephone may tue 123 1 999 0 nonexistent
## 5997 telephone may tue 275 1 999 0 nonexistent
## 5998 telephone may tue 115 1 999 0 nonexistent
## 5999 telephone may tue 1051 1 999 0 nonexistent
## 6000 telephone may tue 142 1 999 0 nonexistent
## 6001 telephone may tue 99 1 999 0 nonexistent
## emp.var.rate cons.price.idx cons.conf.idx euribor3m nr.employed y
## 1 1.1 93.994 -36.4 4.857 5191 no
## 2 1.1 93.994 -36.4 4.857 5191 no
## 3 1.1 93.994 -36.4 4.857 5191 no
## 4 1.1 93.994 -36.4 4.857 5191 no
## 5 1.1 93.994 -36.4 4.857 5191 no
## 6 1.1 93.994 -36.4 4.857 5191 no
## 7 1.1 93.994 -36.4 4.857 5191 no
## 8 1.1 93.994 -36.4 4.857 5191 no
## 9 1.1 93.994 -36.4 4.857 5191 no
## 10 1.1 93.994 -36.4 4.857 5191 no
## 11 1.1 93.994 -36.4 4.857 5191 no
## 12 1.1 93.994 -36.4 4.857 5191 no
## 13 1.1 93.994 -36.4 4.857 5191 no
## 16 1.1 93.994 -36.4 4.857 5191 no
## 17 1.1 93.994 -36.4 4.857 5191 no
## 18 1.1 93.994 -36.4 4.857 5191 no
## 19 1.1 93.994 -36.4 4.857 5191 no
## 20 1.1 93.994 -36.4 4.857 5191 no
## 21 1.1 93.994 -36.4 4.857 5191 no
## 22 1.1 93.994 -36.4 4.857 5191 no
## 24 1.1 93.994 -36.4 4.857 5191 no
## 26 1.1 93.994 -36.4 4.857 5191 no
## 27 1.1 93.994 -36.4 4.857 5191 no
## 28 1.1 93.994 -36.4 4.857 5191 no
## 29 1.1 93.994 -36.4 4.857 5191 no
## 30 1.1 93.994 -36.4 4.857 5191 no
## 31 1.1 93.994 -36.4 4.857 5191 no
## 32 1.1 93.994 -36.4 4.857 5191 no
## 33 1.1 93.994 -36.4 4.857 5191 no
## 34 1.1 93.994 -36.4 4.857 5191 no
## 35 1.1 93.994 -36.4 4.857 5191 no
## 36 1.1 93.994 -36.4 4.857 5191 no
## 37 1.1 93.994 -36.4 4.857 5191 no
## 38 1.1 93.994 -36.4 4.857 5191 no
## 39 1.1 93.994 -36.4 4.857 5191 no
## 40 1.1 93.994 -36.4 4.857 5191 no
## 41 1.1 93.994 -36.4 4.857 5191 no
## 42 1.1 93.994 -36.4 4.857 5191 no
## 43 1.1 93.994 -36.4 4.857 5191 no
## 45 1.1 93.994 -36.4 4.857 5191 no
## 46 1.1 93.994 -36.4 4.857 5191 no
## 47 1.1 93.994 -36.4 4.857 5191 no
## 48 1.1 93.994 -36.4 4.857 5191 no
## 49 1.1 93.994 -36.4 4.857 5191 no
## 50 1.1 93.994 -36.4 4.857 5191 no
## 51 1.1 93.994 -36.4 4.857 5191 no
## 52 1.1 93.994 -36.4 4.857 5191 no
## 53 1.1 93.994 -36.4 4.857 5191 no
## 54 1.1 93.994 -36.4 4.857 5191 no
## 55 1.1 93.994 -36.4 4.857 5191 no
## 56 1.1 93.994 -36.4 4.857 5191 no
## 57 1.1 93.994 -36.4 4.857 5191 no
## 58 1.1 93.994 -36.4 4.857 5191 no
## 59 1.1 93.994 -36.4 4.857 5191 no
## 60 1.1 93.994 -36.4 4.857 5191 no
## 63 1.1 93.994 -36.4 4.857 5191 no
## 64 1.1 93.994 -36.4 4.857 5191 no
## 65 1.1 93.994 -36.4 4.857 5191 no
## 66 1.1 93.994 -36.4 4.857 5191 no
## 67 1.1 93.994 -36.4 4.857 5191 no
## 69 1.1 93.994 -36.4 4.857 5191 no
## 70 1.1 93.994 -36.4 4.857 5191 no
## 71 1.1 93.994 -36.4 4.857 5191 no
## 73 1.1 93.994 -36.4 4.857 5191 no
## 74 1.1 93.994 -36.4 4.857 5191 no
## 75 1.1 93.994 -36.4 4.857 5191 no
## 77 1.1 93.994 -36.4 4.857 5191 no
## 78 1.1 93.994 -36.4 4.857 5191 no
## 79 1.1 93.994 -36.4 4.857 5191 no
## 80 1.1 93.994 -36.4 4.857 5191 no
## 82 1.1 93.994 -36.4 4.857 5191 no
## 86 1.1 93.994 -36.4 4.857 5191 no
## 87 1.1 93.994 -36.4 4.857 5191 no
## 88 1.1 93.994 -36.4 4.857 5191 no
## 89 1.1 93.994 -36.4 4.857 5191 yes
## 90 1.1 93.994 -36.4 4.857 5191 no
## 91 1.1 93.994 -36.4 4.857 5191 no
## 92 1.1 93.994 -36.4 4.857 5191 no
## 93 1.1 93.994 -36.4 4.857 5191 no
## 94 1.1 93.994 -36.4 4.857 5191 no
## 96 1.1 93.994 -36.4 4.857 5191 no
## 97 1.1 93.994 -36.4 4.857 5191 no
## 98 1.1 93.994 -36.4 4.857 5191 no
## 99 1.1 93.994 -36.4 4.857 5191 no
## 100 1.1 93.994 -36.4 4.857 5191 no
## 101 1.1 93.994 -36.4 4.857 5191 no
## 102 1.1 93.994 -36.4 4.857 5191 no
## 103 1.1 93.994 -36.4 4.857 5191 no
## 105 1.1 93.994 -36.4 4.857 5191 no
## 106 1.1 93.994 -36.4 4.857 5191 no
## 107 1.1 93.994 -36.4 4.857 5191 no
## 109 1.1 93.994 -36.4 4.857 5191 no
## 110 1.1 93.994 -36.4 4.857 5191 no
## 111 1.1 93.994 -36.4 4.857 5191 no
## 114 1.1 93.994 -36.4 4.857 5191 no
## 115 1.1 93.994 -36.4 4.857 5191 no
## 116 1.1 93.994 -36.4 4.857 5191 no
## 117 1.1 93.994 -36.4 4.857 5191 no
## 118 1.1 93.994 -36.4 4.857 5191 no
## 120 1.1 93.994 -36.4 4.857 5191 no
## 121 1.1 93.994 -36.4 4.857 5191 no
## 122 1.1 93.994 -36.4 4.857 5191 no
## 123 1.1 93.994 -36.4 4.857 5191 no
## 125 1.1 93.994 -36.4 4.857 5191 no
## 126 1.1 93.994 -36.4 4.857 5191 no
## 127 1.1 93.994 -36.4 4.857 5191 no
## 128 1.1 93.994 -36.4 4.857 5191 no
## 129 1.1 93.994 -36.4 4.857 5191 no
## 130 1.1 93.994 -36.4 4.857 5191 yes
## 131 1.1 93.994 -36.4 4.857 5191 no
## 132 1.1 93.994 -36.4 4.857 5191 no
## 133 1.1 93.994 -36.4 4.857 5191 no
## 134 1.1 93.994 -36.4 4.857 5191 no
## 135 1.1 93.994 -36.4 4.857 5191 no
## 136 1.1 93.994 -36.4 4.857 5191 no
## 137 1.1 93.994 -36.4 4.857 5191 no
## 138 1.1 93.994 -36.4 4.857 5191 no
## 139 1.1 93.994 -36.4 4.857 5191 no
## 141 1.1 93.994 -36.4 4.857 5191 no
## 142 1.1 93.994 -36.4 4.857 5191 no
## 144 1.1 93.994 -36.4 4.857 5191 no
## 145 1.1 93.994 -36.4 4.857 5191 no
## 146 1.1 93.994 -36.4 4.857 5191 no
## 147 1.1 93.994 -36.4 4.857 5191 no
## 148 1.1 93.994 -36.4 4.857 5191 no
## 150 1.1 93.994 -36.4 4.857 5191 no
## 151 1.1 93.994 -36.4 4.857 5191 no
## 152 1.1 93.994 -36.4 4.857 5191 no
## 154 1.1 93.994 -36.4 4.857 5191 no
## 155 1.1 93.994 -36.4 4.857 5191 no
## 157 1.1 93.994 -36.4 4.857 5191 no
## 158 1.1 93.994 -36.4 4.857 5191 no
## 159 1.1 93.994 -36.4 4.857 5191 no
## 160 1.1 93.994 -36.4 4.857 5191 no
## 161 1.1 93.994 -36.4 4.857 5191 no
## 162 1.1 93.994 -36.4 4.857 5191 no
## 165 1.1 93.994 -36.4 4.857 5191 no
## 166 1.1 93.994 -36.4 4.857 5191 no
## 167 1.1 93.994 -36.4 4.857 5191 no
## 168 1.1 93.994 -36.4 4.857 5191 no
## 171 1.1 93.994 -36.4 4.857 5191 no
## 172 1.1 93.994 -36.4 4.857 5191 no
## 173 1.1 93.994 -36.4 4.857 5191 no
## 174 1.1 93.994 -36.4 4.857 5191 no
## 176 1.1 93.994 -36.4 4.857 5191 no
## 177 1.1 93.994 -36.4 4.857 5191 no
## 178 1.1 93.994 -36.4 4.857 5191 no
## 179 1.1 93.994 -36.4 4.857 5191 no
## 180 1.1 93.994 -36.4 4.857 5191 no
## 182 1.1 93.994 -36.4 4.857 5191 no
## 183 1.1 93.994 -36.4 4.857 5191 yes
## 184 1.1 93.994 -36.4 4.857 5191 no
## 185 1.1 93.994 -36.4 4.857 5191 no
## 186 1.1 93.994 -36.4 4.857 5191 no
## 187 1.1 93.994 -36.4 4.857 5191 no
## 188 1.1 93.994 -36.4 4.857 5191 no
## 190 1.1 93.994 -36.4 4.857 5191 no
## 191 1.1 93.994 -36.4 4.857 5191 no
## 192 1.1 93.994 -36.4 4.857 5191 no
## 193 1.1 93.994 -36.4 4.857 5191 no
## 194 1.1 93.994 -36.4 4.857 5191 no
## 195 1.1 93.994 -36.4 4.857 5191 no
## 196 1.1 93.994 -36.4 4.857 5191 no
## 197 1.1 93.994 -36.4 4.857 5191 no
## 198 1.1 93.994 -36.4 4.857 5191 no
## 199 1.1 93.994 -36.4 4.857 5191 no
## 200 1.1 93.994 -36.4 4.857 5191 no
## 201 1.1 93.994 -36.4 4.857 5191 no
## 203 1.1 93.994 -36.4 4.857 5191 no
## 205 1.1 93.994 -36.4 4.857 5191 no
## 206 1.1 93.994 -36.4 4.857 5191 no
## 208 1.1 93.994 -36.4 4.857 5191 no
## 209 1.1 93.994 -36.4 4.857 5191 no
## 210 1.1 93.994 -36.4 4.857 5191 no
## 212 1.1 93.994 -36.4 4.857 5191 no
## 215 1.1 93.994 -36.4 4.857 5191 no
## 216 1.1 93.994 -36.4 4.857 5191 no
## 219 1.1 93.994 -36.4 4.857 5191 no
## 220 1.1 93.994 -36.4 4.857 5191 no
## 221 1.1 93.994 -36.4 4.857 5191 no
## 222 1.1 93.994 -36.4 4.857 5191 no
## 224 1.1 93.994 -36.4 4.857 5191 no
## 225 1.1 93.994 -36.4 4.857 5191 no
## 226 1.1 93.994 -36.4 4.857 5191 no
## 228 1.1 93.994 -36.4 4.857 5191 no
## 231 1.1 93.994 -36.4 4.857 5191 no
## 232 1.1 93.994 -36.4 4.857 5191 no
## 233 1.1 93.994 -36.4 4.857 5191 no
## 234 1.1 93.994 -36.4 4.857 5191 no
## 235 1.1 93.994 -36.4 4.857 5191 no
## 236 1.1 93.994 -36.4 4.857 5191 no
## 237 1.1 93.994 -36.4 4.857 5191 no
## 238 1.1 93.994 -36.4 4.857 5191 no
## 239 1.1 93.994 -36.4 4.857 5191 no
## 241 1.1 93.994 -36.4 4.857 5191 no
## 242 1.1 93.994 -36.4 4.857 5191 no
## 243 1.1 93.994 -36.4 4.857 5191 no
## 244 1.1 93.994 -36.4 4.857 5191 no
## 246 1.1 93.994 -36.4 4.857 5191 no
## 247 1.1 93.994 -36.4 4.857 5191 no
## 248 1.1 93.994 -36.4 4.857 5191 no
## 250 1.1 93.994 -36.4 4.857 5191 no
## 252 1.1 93.994 -36.4 4.857 5191 no
## 253 1.1 93.994 -36.4 4.857 5191 no
## 254 1.1 93.994 -36.4 4.857 5191 no
## 255 1.1 93.994 -36.4 4.857 5191 no
## 256 1.1 93.994 -36.4 4.857 5191 no
## 257 1.1 93.994 -36.4 4.857 5191 no
## 258 1.1 93.994 -36.4 4.857 5191 no
## 259 1.1 93.994 -36.4 4.857 5191 no
## 260 1.1 93.994 -36.4 4.857 5191 no
## 261 1.1 93.994 -36.4 4.857 5191 no
## 262 1.1 93.994 -36.4 4.857 5191 no
## 263 1.1 93.994 -36.4 4.857 5191 no
## 264 1.1 93.994 -36.4 4.857 5191 no
## 265 1.1 93.994 -36.4 4.857 5191 no
## 266 1.1 93.994 -36.4 4.857 5191 no
## 268 1.1 93.994 -36.4 4.857 5191 no
## 270 1.1 93.994 -36.4 4.857 5191 no
## 271 1.1 93.994 -36.4 4.857 5191 no
## 272 1.1 93.994 -36.4 4.857 5191 no
## 273 1.1 93.994 -36.4 4.857 5191 no
## 274 1.1 93.994 -36.4 4.857 5191 no
## 275 1.1 93.994 -36.4 4.857 5191 no
## 276 1.1 93.994 -36.4 4.857 5191 no
## 277 1.1 93.994 -36.4 4.857 5191 no
## 278 1.1 93.994 -36.4 4.857 5191 no
## 279 1.1 93.994 -36.4 4.857 5191 no
## 280 1.1 93.994 -36.4 4.857 5191 no
## 281 1.1 93.994 -36.4 4.857 5191 no
## 282 1.1 93.994 -36.4 4.857 5191 no
## 283 1.1 93.994 -36.4 4.857 5191 no
## 284 1.1 93.994 -36.4 4.857 5191 no
## 285 1.1 93.994 -36.4 4.857 5191 no
## 286 1.1 93.994 -36.4 4.857 5191 no
## 288 1.1 93.994 -36.4 4.857 5191 no
## 289 1.1 93.994 -36.4 4.857 5191 no
## 292 1.1 93.994 -36.4 4.857 5191 no
## 293 1.1 93.994 -36.4 4.857 5191 no
## 294 1.1 93.994 -36.4 4.857 5191 no
## 295 1.1 93.994 -36.4 4.857 5191 no
## 296 1.1 93.994 -36.4 4.857 5191 no
## 297 1.1 93.994 -36.4 4.857 5191 no
## 299 1.1 93.994 -36.4 4.857 5191 no
## 300 1.1 93.994 -36.4 4.857 5191 no
## 301 1.1 93.994 -36.4 4.857 5191 no
## 302 1.1 93.994 -36.4 4.857 5191 no
## 303 1.1 93.994 -36.4 4.857 5191 no
## 307 1.1 93.994 -36.4 4.857 5191 no
## 308 1.1 93.994 -36.4 4.857 5191 no
## 309 1.1 93.994 -36.4 4.857 5191 no
## 310 1.1 93.994 -36.4 4.857 5191 no
## 311 1.1 93.994 -36.4 4.857 5191 no
## 312 1.1 93.994 -36.4 4.857 5191 no
## 313 1.1 93.994 -36.4 4.857 5191 no
## 314 1.1 93.994 -36.4 4.857 5191 no
## 315 1.1 93.994 -36.4 4.857 5191 no
## 316 1.1 93.994 -36.4 4.857 5191 no
## 317 1.1 93.994 -36.4 4.857 5191 no
## 318 1.1 93.994 -36.4 4.857 5191 no
## 320 1.1 93.994 -36.4 4.857 5191 no
## 321 1.1 93.994 -36.4 4.857 5191 no
## 322 1.1 93.994 -36.4 4.857 5191 no
## 323 1.1 93.994 -36.4 4.857 5191 no
## 324 1.1 93.994 -36.4 4.857 5191 no
## 325 1.1 93.994 -36.4 4.857 5191 no
## 326 1.1 93.994 -36.4 4.857 5191 no
## 327 1.1 93.994 -36.4 4.857 5191 no
## 328 1.1 93.994 -36.4 4.857 5191 no
## 329 1.1 93.994 -36.4 4.857 5191 no
## 330 1.1 93.994 -36.4 4.857 5191 no
## 331 1.1 93.994 -36.4 4.857 5191 no
## 333 1.1 93.994 -36.4 4.857 5191 no
## 335 1.1 93.994 -36.4 4.857 5191 no
## 336 1.1 93.994 -36.4 4.857 5191 no
## 337 1.1 93.994 -36.4 4.857 5191 no
## 338 1.1 93.994 -36.4 4.857 5191 no
## 339 1.1 93.994 -36.4 4.857 5191 no
## 341 1.1 93.994 -36.4 4.857 5191 no
## 342 1.1 93.994 -36.4 4.857 5191 no
## 343 1.1 93.994 -36.4 4.857 5191 no
## 345 1.1 93.994 -36.4 4.857 5191 no
## 346 1.1 93.994 -36.4 4.857 5191 no
## 348 1.1 93.994 -36.4 4.857 5191 no
## 349 1.1 93.994 -36.4 4.857 5191 no
## 350 1.1 93.994 -36.4 4.857 5191 no
## 351 1.1 93.994 -36.4 4.857 5191 no
## 352 1.1 93.994 -36.4 4.857 5191 no
## 353 1.1 93.994 -36.4 4.857 5191 no
## 354 1.1 93.994 -36.4 4.857 5191 no
## 355 1.1 93.994 -36.4 4.857 5191 no
## 356 1.1 93.994 -36.4 4.857 5191 no
## 357 1.1 93.994 -36.4 4.857 5191 no
## 358 1.1 93.994 -36.4 4.857 5191 no
## 359 1.1 93.994 -36.4 4.857 5191 no
## 360 1.1 93.994 -36.4 4.857 5191 no
## 361 1.1 93.994 -36.4 4.857 5191 no
## 363 1.1 93.994 -36.4 4.857 5191 no
## 365 1.1 93.994 -36.4 4.857 5191 no
## 366 1.1 93.994 -36.4 4.857 5191 no
## 367 1.1 93.994 -36.4 4.857 5191 no
## 369 1.1 93.994 -36.4 4.857 5191 no
## 371 1.1 93.994 -36.4 4.857 5191 no
## 373 1.1 93.994 -36.4 4.857 5191 no
## 374 1.1 93.994 -36.4 4.857 5191 no
## 375 1.1 93.994 -36.4 4.857 5191 no
## 376 1.1 93.994 -36.4 4.857 5191 no
## 377 1.1 93.994 -36.4 4.857 5191 no
## 378 1.1 93.994 -36.4 4.857 5191 no
## 380 1.1 93.994 -36.4 4.857 5191 no
## 381 1.1 93.994 -36.4 4.857 5191 no
## 382 1.1 93.994 -36.4 4.857 5191 no
## 383 1.1 93.994 -36.4 4.857 5191 no
## 384 1.1 93.994 -36.4 4.857 5191 no
## 385 1.1 93.994 -36.4 4.857 5191 no
## 386 1.1 93.994 -36.4 4.857 5191 no
## 387 1.1 93.994 -36.4 4.857 5191 no
## 390 1.1 93.994 -36.4 4.857 5191 yes
## 391 1.1 93.994 -36.4 4.857 5191 no
## 392 1.1 93.994 -36.4 4.857 5191 no
## 393 1.1 93.994 -36.4 4.857 5191 no
## 394 1.1 93.994 -36.4 4.857 5191 no
## 395 1.1 93.994 -36.4 4.857 5191 no
## 396 1.1 93.994 -36.4 4.857 5191 no
## 397 1.1 93.994 -36.4 4.857 5191 no
## 398 1.1 93.994 -36.4 4.857 5191 no
## 399 1.1 93.994 -36.4 4.857 5191 no
## 400 1.1 93.994 -36.4 4.857 5191 no
## 401 1.1 93.994 -36.4 4.857 5191 no
## 402 1.1 93.994 -36.4 4.857 5191 no
## 403 1.1 93.994 -36.4 4.857 5191 no
## 404 1.1 93.994 -36.4 4.857 5191 no
## 405 1.1 93.994 -36.4 4.857 5191 no
## 406 1.1 93.994 -36.4 4.857 5191 no
## 408 1.1 93.994 -36.4 4.857 5191 no
## 409 1.1 93.994 -36.4 4.857 5191 no
## 410 1.1 93.994 -36.4 4.857 5191 no
## 411 1.1 93.994 -36.4 4.857 5191 no
## 412 1.1 93.994 -36.4 4.857 5191 no
## 413 1.1 93.994 -36.4 4.857 5191 no
## 414 1.1 93.994 -36.4 4.857 5191 no
## 415 1.1 93.994 -36.4 4.857 5191 no
## 416 1.1 93.994 -36.4 4.857 5191 no
## 417 1.1 93.994 -36.4 4.857 5191 no
## 419 1.1 93.994 -36.4 4.857 5191 no
## 421 1.1 93.994 -36.4 4.857 5191 no
## 422 1.1 93.994 -36.4 4.857 5191 no
## 423 1.1 93.994 -36.4 4.857 5191 no
## 424 1.1 93.994 -36.4 4.857 5191 no
## 426 1.1 93.994 -36.4 4.857 5191 no
## 428 1.1 93.994 -36.4 4.857 5191 no
## 430 1.1 93.994 -36.4 4.857 5191 no
## 431 1.1 93.994 -36.4 4.857 5191 no
## 432 1.1 93.994 -36.4 4.857 5191 no
## 433 1.1 93.994 -36.4 4.857 5191 no
## 434 1.1 93.994 -36.4 4.857 5191 no
## 436 1.1 93.994 -36.4 4.857 5191 no
## 437 1.1 93.994 -36.4 4.857 5191 no
## 438 1.1 93.994 -36.4 4.857 5191 no
## 439 1.1 93.994 -36.4 4.857 5191 no
## 440 1.1 93.994 -36.4 4.857 5191 no
## 441 1.1 93.994 -36.4 4.857 5191 no
## 442 1.1 93.994 -36.4 4.857 5191 no
## 443 1.1 93.994 -36.4 4.857 5191 no
## 444 1.1 93.994 -36.4 4.857 5191 no
## 445 1.1 93.994 -36.4 4.857 5191 no
## 447 1.1 93.994 -36.4 4.857 5191 yes
## 448 1.1 93.994 -36.4 4.857 5191 no
## 450 1.1 93.994 -36.4 4.857 5191 no
## 451 1.1 93.994 -36.4 4.857 5191 no
## 452 1.1 93.994 -36.4 4.857 5191 no
## 453 1.1 93.994 -36.4 4.857 5191 no
## 454 1.1 93.994 -36.4 4.857 5191 no
## 455 1.1 93.994 -36.4 4.857 5191 no
## 456 1.1 93.994 -36.4 4.857 5191 no
## 458 1.1 93.994 -36.4 4.857 5191 no
## 459 1.1 93.994 -36.4 4.857 5191 no
## 460 1.1 93.994 -36.4 4.857 5191 no
## 461 1.1 93.994 -36.4 4.857 5191 no
## 462 1.1 93.994 -36.4 4.857 5191 no
## 464 1.1 93.994 -36.4 4.857 5191 no
## 465 1.1 93.994 -36.4 4.857 5191 no
## 466 1.1 93.994 -36.4 4.857 5191 no
## 469 1.1 93.994 -36.4 4.857 5191 no
## 470 1.1 93.994 -36.4 4.857 5191 yes
## 472 1.1 93.994 -36.4 4.857 5191 no
## 473 1.1 93.994 -36.4 4.857 5191 no
## 474 1.1 93.994 -36.4 4.857 5191 no
## 475 1.1 93.994 -36.4 4.857 5191 no
## 476 1.1 93.994 -36.4 4.857 5191 no
## 479 1.1 93.994 -36.4 4.857 5191 no
## 480 1.1 93.994 -36.4 4.857 5191 no
## 481 1.1 93.994 -36.4 4.857 5191 no
## 482 1.1 93.994 -36.4 4.857 5191 no
## 484 1.1 93.994 -36.4 4.857 5191 no
## 485 1.1 93.994 -36.4 4.857 5191 no
## 486 1.1 93.994 -36.4 4.857 5191 no
## 487 1.1 93.994 -36.4 4.857 5191 no
## 488 1.1 93.994 -36.4 4.857 5191 no
## 491 1.1 93.994 -36.4 4.857 5191 no
## 492 1.1 93.994 -36.4 4.857 5191 no
## 494 1.1 93.994 -36.4 4.857 5191 no
## 495 1.1 93.994 -36.4 4.857 5191 no
## 496 1.1 93.994 -36.4 4.857 5191 no
## 497 1.1 93.994 -36.4 4.857 5191 no
## 498 1.1 93.994 -36.4 4.857 5191 no
## 499 1.1 93.994 -36.4 4.857 5191 no
## 501 1.1 93.994 -36.4 4.857 5191 no
## 502 1.1 93.994 -36.4 4.857 5191 no
## 503 1.1 93.994 -36.4 4.857 5191 no
## 504 1.1 93.994 -36.4 4.857 5191 no
## 505 1.1 93.994 -36.4 4.857 5191 yes
## 506 1.1 93.994 -36.4 4.857 5191 no
## 508 1.1 93.994 -36.4 4.857 5191 no
## 509 1.1 93.994 -36.4 4.857 5191 no
## 513 1.1 93.994 -36.4 4.857 5191 no
## 514 1.1 93.994 -36.4 4.857 5191 no
## 515 1.1 93.994 -36.4 4.857 5191 no
## 516 1.1 93.994 -36.4 4.857 5191 no
## 518 1.1 93.994 -36.4 4.857 5191 no
## 519 1.1 93.994 -36.4 4.857 5191 no
## 520 1.1 93.994 -36.4 4.857 5191 no
## 521 1.1 93.994 -36.4 4.857 5191 no
## 522 1.1 93.994 -36.4 4.857 5191 no
## 523 1.1 93.994 -36.4 4.857 5191 no
## 524 1.1 93.994 -36.4 4.857 5191 no
## 525 1.1 93.994 -36.4 4.857 5191 no
## 526 1.1 93.994 -36.4 4.857 5191 no
## 528 1.1 93.994 -36.4 4.857 5191 no
## 529 1.1 93.994 -36.4 4.857 5191 no
## 532 1.1 93.994 -36.4 4.857 5191 no
## 533 1.1 93.994 -36.4 4.857 5191 no
## 534 1.1 93.994 -36.4 4.857 5191 no
## 535 1.1 93.994 -36.4 4.857 5191 no
## 536 1.1 93.994 -36.4 4.857 5191 no
## 537 1.1 93.994 -36.4 4.857 5191 no
## 538 1.1 93.994 -36.4 4.857 5191 no
## 539 1.1 93.994 -36.4 4.857 5191 no
## 540 1.1 93.994 -36.4 4.857 5191 no
## 541 1.1 93.994 -36.4 4.857 5191 no
## 542 1.1 93.994 -36.4 4.857 5191 no
## 544 1.1 93.994 -36.4 4.857 5191 no
## 546 1.1 93.994 -36.4 4.857 5191 no
## 547 1.1 93.994 -36.4 4.857 5191 no
## 548 1.1 93.994 -36.4 4.857 5191 no
## 550 1.1 93.994 -36.4 4.857 5191 no
## 551 1.1 93.994 -36.4 4.857 5191 no
## 552 1.1 93.994 -36.4 4.857 5191 no
## 553 1.1 93.994 -36.4 4.857 5191 no
## 555 1.1 93.994 -36.4 4.857 5191 no
## 556 1.1 93.994 -36.4 4.857 5191 no
## 557 1.1 93.994 -36.4 4.857 5191 yes
## 558 1.1 93.994 -36.4 4.857 5191 no
## 559 1.1 93.994 -36.4 4.857 5191 no
## 561 1.1 93.994 -36.4 4.857 5191 no
## 562 1.1 93.994 -36.4 4.857 5191 no
## 563 1.1 93.994 -36.4 4.857 5191 no
## 565 1.1 93.994 -36.4 4.857 5191 no
## 566 1.1 93.994 -36.4 4.857 5191 no
## 568 1.1 93.994 -36.4 4.857 5191 no
## 569 1.1 93.994 -36.4 4.857 5191 no
## 570 1.1 93.994 -36.4 4.857 5191 no
## 571 1.1 93.994 -36.4 4.857 5191 no
## 572 1.1 93.994 -36.4 4.857 5191 no
## 573 1.1 93.994 -36.4 4.857 5191 no
## 574 1.1 93.994 -36.4 4.857 5191 no
## 576 1.1 93.994 -36.4 4.857 5191 no
## 577 1.1 93.994 -36.4 4.857 5191 no
## 578 1.1 93.994 -36.4 4.857 5191 no
## 580 1.1 93.994 -36.4 4.857 5191 no
## 581 1.1 93.994 -36.4 4.857 5191 no
## 583 1.1 93.994 -36.4 4.857 5191 no
## 584 1.1 93.994 -36.4 4.857 5191 no
## 585 1.1 93.994 -36.4 4.857 5191 no
## 586 1.1 93.994 -36.4 4.857 5191 no
## 587 1.1 93.994 -36.4 4.857 5191 no
## 588 1.1 93.994 -36.4 4.857 5191 no
## 589 1.1 93.994 -36.4 4.857 5191 no
## 590 1.1 93.994 -36.4 4.857 5191 no
## 592 1.1 93.994 -36.4 4.857 5191 no
## 593 1.1 93.994 -36.4 4.857 5191 no
## 594 1.1 93.994 -36.4 4.857 5191 no
## 595 1.1 93.994 -36.4 4.857 5191 no
## 596 1.1 93.994 -36.4 4.857 5191 no
## 597 1.1 93.994 -36.4 4.857 5191 no
## 598 1.1 93.994 -36.4 4.857 5191 no
## 599 1.1 93.994 -36.4 4.857 5191 no
## 601 1.1 93.994 -36.4 4.857 5191 no
## 602 1.1 93.994 -36.4 4.857 5191 no
## 604 1.1 93.994 -36.4 4.857 5191 no
## 606 1.1 93.994 -36.4 4.857 5191 no
## 607 1.1 93.994 -36.4 4.857 5191 no
## 609 1.1 93.994 -36.4 4.857 5191 no
## 610 1.1 93.994 -36.4 4.857 5191 no
## 611 1.1 93.994 -36.4 4.857 5191 no
## 612 1.1 93.994 -36.4 4.857 5191 no
## 613 1.1 93.994 -36.4 4.857 5191 no
## 614 1.1 93.994 -36.4 4.857 5191 no
## 615 1.1 93.994 -36.4 4.857 5191 no
## 616 1.1 93.994 -36.4 4.857 5191 no
## 617 1.1 93.994 -36.4 4.857 5191 no
## 619 1.1 93.994 -36.4 4.857 5191 no
## 620 1.1 93.994 -36.4 4.857 5191 no
## 621 1.1 93.994 -36.4 4.857 5191 no
## 622 1.1 93.994 -36.4 4.857 5191 no
## 623 1.1 93.994 -36.4 4.857 5191 no
## 624 1.1 93.994 -36.4 4.857 5191 no
## 625 1.1 93.994 -36.4 4.857 5191 no
## 626 1.1 93.994 -36.4 4.857 5191 no
## 627 1.1 93.994 -36.4 4.857 5191 no
## 628 1.1 93.994 -36.4 4.857 5191 no
## 629 1.1 93.994 -36.4 4.857 5191 no
## 630 1.1 93.994 -36.4 4.857 5191 no
## 631 1.1 93.994 -36.4 4.857 5191 no
## 632 1.1 93.994 -36.4 4.857 5191 no
## 635 1.1 93.994 -36.4 4.857 5191 no
## 636 1.1 93.994 -36.4 4.857 5191 no
## 637 1.1 93.994 -36.4 4.857 5191 no
## 638 1.1 93.994 -36.4 4.857 5191 no
## 639 1.1 93.994 -36.4 4.857 5191 no
## 640 1.1 93.994 -36.4 4.857 5191 no
## 641 1.1 93.994 -36.4 4.857 5191 no
## 643 1.1 93.994 -36.4 4.857 5191 no
## 648 1.1 93.994 -36.4 4.857 5191 no
## 649 1.1 93.994 -36.4 4.857 5191 no
## 650 1.1 93.994 -36.4 4.857 5191 no
## 651 1.1 93.994 -36.4 4.857 5191 no
## 652 1.1 93.994 -36.4 4.857 5191 no
## 653 1.1 93.994 -36.4 4.857 5191 no
## 655 1.1 93.994 -36.4 4.857 5191 no
## 656 1.1 93.994 -36.4 4.857 5191 no
## 657 1.1 93.994 -36.4 4.857 5191 no
## 659 1.1 93.994 -36.4 4.857 5191 no
## 660 1.1 93.994 -36.4 4.857 5191 no
## 661 1.1 93.994 -36.4 4.857 5191 no
## 662 1.1 93.994 -36.4 4.857 5191 no
## 664 1.1 93.994 -36.4 4.857 5191 no
## 665 1.1 93.994 -36.4 4.857 5191 no
## 666 1.1 93.994 -36.4 4.857 5191 no
## 667 1.1 93.994 -36.4 4.857 5191 no
## 668 1.1 93.994 -36.4 4.857 5191 no
## 669 1.1 93.994 -36.4 4.857 5191 no
## 670 1.1 93.994 -36.4 4.857 5191 no
## 671 1.1 93.994 -36.4 4.857 5191 no
## 672 1.1 93.994 -36.4 4.857 5191 no
## 673 1.1 93.994 -36.4 4.857 5191 no
## 674 1.1 93.994 -36.4 4.857 5191 no
## 676 1.1 93.994 -36.4 4.857 5191 no
## 677 1.1 93.994 -36.4 4.857 5191 no
## 678 1.1 93.994 -36.4 4.857 5191 no
## 680 1.1 93.994 -36.4 4.857 5191 no
## 681 1.1 93.994 -36.4 4.857 5191 no
## 682 1.1 93.994 -36.4 4.857 5191 yes
## 683 1.1 93.994 -36.4 4.857 5191 no
## 684 1.1 93.994 -36.4 4.857 5191 no
## 685 1.1 93.994 -36.4 4.857 5191 no
## 686 1.1 93.994 -36.4 4.857 5191 no
## 687 1.1 93.994 -36.4 4.857 5191 no
## 688 1.1 93.994 -36.4 4.857 5191 no
## 689 1.1 93.994 -36.4 4.857 5191 no
## 693 1.1 93.994 -36.4 4.857 5191 no
## 694 1.1 93.994 -36.4 4.857 5191 no
## 695 1.1 93.994 -36.4 4.857 5191 no
## 696 1.1 93.994 -36.4 4.857 5191 no
## 697 1.1 93.994 -36.4 4.857 5191 no
## 699 1.1 93.994 -36.4 4.857 5191 no
## 700 1.1 93.994 -36.4 4.857 5191 no
## 703 1.1 93.994 -36.4 4.857 5191 no
## 704 1.1 93.994 -36.4 4.857 5191 no
## 705 1.1 93.994 -36.4 4.857 5191 no
## 707 1.1 93.994 -36.4 4.857 5191 no
## 708 1.1 93.994 -36.4 4.857 5191 no
## 710 1.1 93.994 -36.4 4.857 5191 no
## 712 1.1 93.994 -36.4 4.857 5191 no
## 713 1.1 93.994 -36.4 4.857 5191 no
## 715 1.1 93.994 -36.4 4.857 5191 no
## 716 1.1 93.994 -36.4 4.857 5191 no
## 717 1.1 93.994 -36.4 4.857 5191 no
## 718 1.1 93.994 -36.4 4.857 5191 no
## 719 1.1 93.994 -36.4 4.857 5191 no
## 720 1.1 93.994 -36.4 4.857 5191 no
## 722 1.1 93.994 -36.4 4.857 5191 no
## 723 1.1 93.994 -36.4 4.857 5191 no
## 724 1.1 93.994 -36.4 4.857 5191 no
## 725 1.1 93.994 -36.4 4.857 5191 no
## 726 1.1 93.994 -36.4 4.857 5191 no
## 729 1.1 93.994 -36.4 4.857 5191 no
## 731 1.1 93.994 -36.4 4.857 5191 no
## 732 1.1 93.994 -36.4 4.857 5191 no
## 733 1.1 93.994 -36.4 4.857 5191 no
## 736 1.1 93.994 -36.4 4.857 5191 no
## 737 1.1 93.994 -36.4 4.857 5191 no
## 738 1.1 93.994 -36.4 4.857 5191 no
## 740 1.1 93.994 -36.4 4.857 5191 no
## 742 1.1 93.994 -36.4 4.857 5191 no
## 743 1.1 93.994 -36.4 4.857 5191 no
## 745 1.1 93.994 -36.4 4.857 5191 no
## 746 1.1 93.994 -36.4 4.857 5191 no
## 748 1.1 93.994 -36.4 4.857 5191 no
## 749 1.1 93.994 -36.4 4.857 5191 no
## 751 1.1 93.994 -36.4 4.857 5191 no
## 754 1.1 93.994 -36.4 4.857 5191 no
## 755 1.1 93.994 -36.4 4.857 5191 no
## 756 1.1 93.994 -36.4 4.857 5191 no
## 757 1.1 93.994 -36.4 4.856 5191 no
## 758 1.1 93.994 -36.4 4.856 5191 no
## 759 1.1 93.994 -36.4 4.856 5191 no
## 760 1.1 93.994 -36.4 4.856 5191 no
## 761 1.1 93.994 -36.4 4.856 5191 no
## 762 1.1 93.994 -36.4 4.856 5191 no
## 763 1.1 93.994 -36.4 4.856 5191 no
## 764 1.1 93.994 -36.4 4.856 5191 no
## 765 1.1 93.994 -36.4 4.856 5191 no
## 767 1.1 93.994 -36.4 4.856 5191 no
## 768 1.1 93.994 -36.4 4.856 5191 no
## 770 1.1 93.994 -36.4 4.856 5191 no
## 771 1.1 93.994 -36.4 4.856 5191 no
## 774 1.1 93.994 -36.4 4.856 5191 no
## 775 1.1 93.994 -36.4 4.856 5191 no
## 776 1.1 93.994 -36.4 4.856 5191 no
## 778 1.1 93.994 -36.4 4.856 5191 no
## 779 1.1 93.994 -36.4 4.856 5191 no
## 780 1.1 93.994 -36.4 4.856 5191 no
## 783 1.1 93.994 -36.4 4.856 5191 no
## 784 1.1 93.994 -36.4 4.856 5191 no
## 785 1.1 93.994 -36.4 4.856 5191 no
## 786 1.1 93.994 -36.4 4.856 5191 no
## 787 1.1 93.994 -36.4 4.856 5191 no
## 788 1.1 93.994 -36.4 4.856 5191 no
## 791 1.1 93.994 -36.4 4.856 5191 no
## 792 1.1 93.994 -36.4 4.856 5191 no
## 793 1.1 93.994 -36.4 4.856 5191 no
## 796 1.1 93.994 -36.4 4.856 5191 no
## 797 1.1 93.994 -36.4 4.856 5191 no
## 798 1.1 93.994 -36.4 4.856 5191 no
## 799 1.1 93.994 -36.4 4.856 5191 no
## 800 1.1 93.994 -36.4 4.856 5191 no
## 801 1.1 93.994 -36.4 4.856 5191 no
## 802 1.1 93.994 -36.4 4.856 5191 no
## 803 1.1 93.994 -36.4 4.856 5191 no
## 804 1.1 93.994 -36.4 4.856 5191 no
## 805 1.1 93.994 -36.4 4.856 5191 no
## 806 1.1 93.994 -36.4 4.856 5191 no
## 807 1.1 93.994 -36.4 4.856 5191 no
## 808 1.1 93.994 -36.4 4.856 5191 no
## 809 1.1 93.994 -36.4 4.856 5191 no
## 810 1.1 93.994 -36.4 4.856 5191 no
## 811 1.1 93.994 -36.4 4.856 5191 no
## 812 1.1 93.994 -36.4 4.856 5191 no
## 814 1.1 93.994 -36.4 4.856 5191 no
## 815 1.1 93.994 -36.4 4.856 5191 no
## 816 1.1 93.994 -36.4 4.856 5191 no
## 817 1.1 93.994 -36.4 4.856 5191 no
## 818 1.1 93.994 -36.4 4.856 5191 no
## 819 1.1 93.994 -36.4 4.856 5191 no
## 820 1.1 93.994 -36.4 4.856 5191 no
## 821 1.1 93.994 -36.4 4.856 5191 yes
## 822 1.1 93.994 -36.4 4.856 5191 no
## 823 1.1 93.994 -36.4 4.856 5191 no
## 824 1.1 93.994 -36.4 4.856 5191 no
## 825 1.1 93.994 -36.4 4.856 5191 no
## 826 1.1 93.994 -36.4 4.856 5191 no
## 827 1.1 93.994 -36.4 4.856 5191 no
## 828 1.1 93.994 -36.4 4.856 5191 no
## 829 1.1 93.994 -36.4 4.856 5191 no
## 830 1.1 93.994 -36.4 4.856 5191 no
## 831 1.1 93.994 -36.4 4.856 5191 no
## 832 1.1 93.994 -36.4 4.856 5191 no
## 833 1.1 93.994 -36.4 4.856 5191 yes
## 834 1.1 93.994 -36.4 4.856 5191 no
## 835 1.1 93.994 -36.4 4.856 5191 no
## 837 1.1 93.994 -36.4 4.856 5191 no
## 838 1.1 93.994 -36.4 4.856 5191 no
## 839 1.1 93.994 -36.4 4.856 5191 no
## 840 1.1 93.994 -36.4 4.856 5191 no
## 841 1.1 93.994 -36.4 4.856 5191 no
## 842 1.1 93.994 -36.4 4.856 5191 no
## 844 1.1 93.994 -36.4 4.856 5191 no
## 846 1.1 93.994 -36.4 4.856 5191 no
## 847 1.1 93.994 -36.4 4.856 5191 no
## 848 1.1 93.994 -36.4 4.856 5191 no
## 849 1.1 93.994 -36.4 4.856 5191 no
## 850 1.1 93.994 -36.4 4.856 5191 no
## 852 1.1 93.994 -36.4 4.856 5191 no
## 853 1.1 93.994 -36.4 4.856 5191 no
## 855 1.1 93.994 -36.4 4.856 5191 no
## 856 1.1 93.994 -36.4 4.856 5191 no
## 858 1.1 93.994 -36.4 4.856 5191 no
## 859 1.1 93.994 -36.4 4.856 5191 no
## 860 1.1 93.994 -36.4 4.856 5191 no
## 861 1.1 93.994 -36.4 4.856 5191 no
## 862 1.1 93.994 -36.4 4.856 5191 no
## 863 1.1 93.994 -36.4 4.856 5191 no
## 864 1.1 93.994 -36.4 4.856 5191 no
## 865 1.1 93.994 -36.4 4.856 5191 no
## 866 1.1 93.994 -36.4 4.856 5191 no
## 867 1.1 93.994 -36.4 4.856 5191 no
## 868 1.1 93.994 -36.4 4.856 5191 no
## 869 1.1 93.994 -36.4 4.856 5191 no
## 870 1.1 93.994 -36.4 4.856 5191 no
## 871 1.1 93.994 -36.4 4.856 5191 yes
## 872 1.1 93.994 -36.4 4.856 5191 no
## 874 1.1 93.994 -36.4 4.856 5191 no
## 875 1.1 93.994 -36.4 4.856 5191 no
## 876 1.1 93.994 -36.4 4.856 5191 no
## 878 1.1 93.994 -36.4 4.856 5191 no
## 879 1.1 93.994 -36.4 4.856 5191 no
## 880 1.1 93.994 -36.4 4.856 5191 no
## 881 1.1 93.994 -36.4 4.856 5191 no
## 882 1.1 93.994 -36.4 4.856 5191 no
## 883 1.1 93.994 -36.4 4.856 5191 no
## 884 1.1 93.994 -36.4 4.856 5191 no
## 885 1.1 93.994 -36.4 4.856 5191 no
## 886 1.1 93.994 -36.4 4.856 5191 no
## 887 1.1 93.994 -36.4 4.856 5191 no
## 889 1.1 93.994 -36.4 4.856 5191 no
## 890 1.1 93.994 -36.4 4.856 5191 no
## 891 1.1 93.994 -36.4 4.856 5191 no
## 893 1.1 93.994 -36.4 4.856 5191 no
## 894 1.1 93.994 -36.4 4.856 5191 no
## 895 1.1 93.994 -36.4 4.856 5191 no
## 898 1.1 93.994 -36.4 4.856 5191 no
## 899 1.1 93.994 -36.4 4.856 5191 no
## 901 1.1 93.994 -36.4 4.856 5191 no
## 902 1.1 93.994 -36.4 4.856 5191 no
## 903 1.1 93.994 -36.4 4.856 5191 no
## 905 1.1 93.994 -36.4 4.856 5191 no
## 906 1.1 93.994 -36.4 4.856 5191 no
## 907 1.1 93.994 -36.4 4.856 5191 no
## 908 1.1 93.994 -36.4 4.856 5191 no
## 909 1.1 93.994 -36.4 4.856 5191 no
## 910 1.1 93.994 -36.4 4.856 5191 no
## 911 1.1 93.994 -36.4 4.856 5191 no
## 912 1.1 93.994 -36.4 4.856 5191 no
## 913 1.1 93.994 -36.4 4.856 5191 no
## 914 1.1 93.994 -36.4 4.856 5191 no
## 915 1.1 93.994 -36.4 4.856 5191 no
## 916 1.1 93.994 -36.4 4.856 5191 no
## 917 1.1 93.994 -36.4 4.856 5191 no
## 918 1.1 93.994 -36.4 4.856 5191 no
## 919 1.1 93.994 -36.4 4.856 5191 no
## 920 1.1 93.994 -36.4 4.856 5191 no
## 921 1.1 93.994 -36.4 4.856 5191 no
## 922 1.1 93.994 -36.4 4.856 5191 no
## 923 1.1 93.994 -36.4 4.856 5191 no
## 924 1.1 93.994 -36.4 4.856 5191 no
## 925 1.1 93.994 -36.4 4.856 5191 no
## 926 1.1 93.994 -36.4 4.856 5191 no
## 927 1.1 93.994 -36.4 4.856 5191 no
## 928 1.1 93.994 -36.4 4.856 5191 no
## 929 1.1 93.994 -36.4 4.856 5191 no
## 931 1.1 93.994 -36.4 4.856 5191 no
## 932 1.1 93.994 -36.4 4.856 5191 no
## 933 1.1 93.994 -36.4 4.856 5191 no
## 934 1.1 93.994 -36.4 4.856 5191 no
## 935 1.1 93.994 -36.4 4.856 5191 no
## 936 1.1 93.994 -36.4 4.856 5191 no
## 937 1.1 93.994 -36.4 4.856 5191 no
## 938 1.1 93.994 -36.4 4.856 5191 no
## 939 1.1 93.994 -36.4 4.856 5191 no
## 940 1.1 93.994 -36.4 4.856 5191 no
## 941 1.1 93.994 -36.4 4.856 5191 no
## 942 1.1 93.994 -36.4 4.856 5191 no
## 943 1.1 93.994 -36.4 4.856 5191 no
## 944 1.1 93.994 -36.4 4.856 5191 no
## 945 1.1 93.994 -36.4 4.856 5191 no
## 946 1.1 93.994 -36.4 4.856 5191 no
## 947 1.1 93.994 -36.4 4.856 5191 no
## 948 1.1 93.994 -36.4 4.856 5191 no
## 949 1.1 93.994 -36.4 4.856 5191 no
## 950 1.1 93.994 -36.4 4.856 5191 no
## 951 1.1 93.994 -36.4 4.856 5191 no
## 952 1.1 93.994 -36.4 4.856 5191 no
## 953 1.1 93.994 -36.4 4.856 5191 no
## 954 1.1 93.994 -36.4 4.856 5191 no
## 955 1.1 93.994 -36.4 4.856 5191 no
## 956 1.1 93.994 -36.4 4.856 5191 no
## 957 1.1 93.994 -36.4 4.856 5191 no
## 958 1.1 93.994 -36.4 4.856 5191 no
## 959 1.1 93.994 -36.4 4.856 5191 no
## 960 1.1 93.994 -36.4 4.856 5191 no
## 961 1.1 93.994 -36.4 4.856 5191 no
## 964 1.1 93.994 -36.4 4.856 5191 no
## 965 1.1 93.994 -36.4 4.856 5191 no
## 966 1.1 93.994 -36.4 4.856 5191 no
## 967 1.1 93.994 -36.4 4.856 5191 no
## 968 1.1 93.994 -36.4 4.856 5191 no
## 969 1.1 93.994 -36.4 4.856 5191 no
## 970 1.1 93.994 -36.4 4.856 5191 no
## 971 1.1 93.994 -36.4 4.856 5191 no
## 973 1.1 93.994 -36.4 4.856 5191 no
## 974 1.1 93.994 -36.4 4.856 5191 no
## 975 1.1 93.994 -36.4 4.856 5191 no
## 976 1.1 93.994 -36.4 4.856 5191 no
## 977 1.1 93.994 -36.4 4.856 5191 no
## 978 1.1 93.994 -36.4 4.856 5191 no
## 979 1.1 93.994 -36.4 4.856 5191 no
## 980 1.1 93.994 -36.4 4.856 5191 no
## 983 1.1 93.994 -36.4 4.856 5191 no
## 984 1.1 93.994 -36.4 4.856 5191 no
## 985 1.1 93.994 -36.4 4.856 5191 no
## 986 1.1 93.994 -36.4 4.856 5191 no
## 987 1.1 93.994 -36.4 4.856 5191 no
## 988 1.1 93.994 -36.4 4.856 5191 no
## 989 1.1 93.994 -36.4 4.856 5191 no
## 990 1.1 93.994 -36.4 4.856 5191 no
## 991 1.1 93.994 -36.4 4.856 5191 no
## 992 1.1 93.994 -36.4 4.856 5191 no
## 994 1.1 93.994 -36.4 4.856 5191 no
## 997 1.1 93.994 -36.4 4.856 5191 no
## 998 1.1 93.994 -36.4 4.856 5191 no
## 1000 1.1 93.994 -36.4 4.856 5191 no
## 1001 1.1 93.994 -36.4 4.856 5191 no
## 1002 1.1 93.994 -36.4 4.856 5191 no
## 1003 1.1 93.994 -36.4 4.856 5191 no
## 1004 1.1 93.994 -36.4 4.856 5191 no
## 1005 1.1 93.994 -36.4 4.856 5191 no
## 1006 1.1 93.994 -36.4 4.856 5191 no
## 1007 1.1 93.994 -36.4 4.856 5191 no
## 1008 1.1 93.994 -36.4 4.856 5191 no
## 1010 1.1 93.994 -36.4 4.856 5191 no
## 1012 1.1 93.994 -36.4 4.856 5191 no
## 1014 1.1 93.994 -36.4 4.856 5191 no
## 1016 1.1 93.994 -36.4 4.856 5191 no
## 1021 1.1 93.994 -36.4 4.856 5191 no
## 1022 1.1 93.994 -36.4 4.856 5191 no
## 1023 1.1 93.994 -36.4 4.856 5191 no
## 1024 1.1 93.994 -36.4 4.856 5191 no
## 1025 1.1 93.994 -36.4 4.856 5191 no
## 1027 1.1 93.994 -36.4 4.856 5191 no
## 1029 1.1 93.994 -36.4 4.856 5191 no
## 1030 1.1 93.994 -36.4 4.856 5191 no
## 1031 1.1 93.994 -36.4 4.856 5191 no
## 1032 1.1 93.994 -36.4 4.856 5191 no
## 1033 1.1 93.994 -36.4 4.856 5191 no
## 1034 1.1 93.994 -36.4 4.856 5191 no
## 1035 1.1 93.994 -36.4 4.856 5191 no
## 1036 1.1 93.994 -36.4 4.856 5191 no
## 1037 1.1 93.994 -36.4 4.856 5191 no
## 1038 1.1 93.994 -36.4 4.856 5191 no
## 1040 1.1 93.994 -36.4 4.856 5191 no
## 1041 1.1 93.994 -36.4 4.856 5191 no
## 1042 1.1 93.994 -36.4 4.856 5191 no
## 1043 1.1 93.994 -36.4 4.856 5191 no
## 1044 1.1 93.994 -36.4 4.856 5191 no
## 1045 1.1 93.994 -36.4 4.856 5191 no
## 1046 1.1 93.994 -36.4 4.856 5191 no
## 1048 1.1 93.994 -36.4 4.856 5191 no
## 1049 1.1 93.994 -36.4 4.856 5191 no
## 1050 1.1 93.994 -36.4 4.856 5191 no
## 1051 1.1 93.994 -36.4 4.856 5191 no
## 1052 1.1 93.994 -36.4 4.856 5191 no
## 1055 1.1 93.994 -36.4 4.856 5191 no
## 1056 1.1 93.994 -36.4 4.856 5191 no
## 1057 1.1 93.994 -36.4 4.856 5191 no
## 1058 1.1 93.994 -36.4 4.856 5191 no
## 1059 1.1 93.994 -36.4 4.856 5191 no
## 1061 1.1 93.994 -36.4 4.856 5191 no
## 1062 1.1 93.994 -36.4 4.856 5191 no
## 1063 1.1 93.994 -36.4 4.856 5191 no
## 1064 1.1 93.994 -36.4 4.856 5191 no
## 1065 1.1 93.994 -36.4 4.856 5191 no
## 1066 1.1 93.994 -36.4 4.856 5191 no
## 1067 1.1 93.994 -36.4 4.856 5191 no
## 1068 1.1 93.994 -36.4 4.856 5191 no
## 1069 1.1 93.994 -36.4 4.856 5191 no
## 1070 1.1 93.994 -36.4 4.856 5191 no
## 1071 1.1 93.994 -36.4 4.856 5191 no
## 1072 1.1 93.994 -36.4 4.856 5191 no
## 1074 1.1 93.994 -36.4 4.856 5191 no
## 1075 1.1 93.994 -36.4 4.856 5191 no
## 1077 1.1 93.994 -36.4 4.856 5191 no
## 1079 1.1 93.994 -36.4 4.856 5191 yes
## 1080 1.1 93.994 -36.4 4.856 5191 no
## 1081 1.1 93.994 -36.4 4.856 5191 no
## 1082 1.1 93.994 -36.4 4.856 5191 no
## 1084 1.1 93.994 -36.4 4.856 5191 no
## 1085 1.1 93.994 -36.4 4.856 5191 no
## 1086 1.1 93.994 -36.4 4.856 5191 no
## 1087 1.1 93.994 -36.4 4.856 5191 no
## 1088 1.1 93.994 -36.4 4.856 5191 no
## 1089 1.1 93.994 -36.4 4.856 5191 no
## 1090 1.1 93.994 -36.4 4.856 5191 no
## 1092 1.1 93.994 -36.4 4.856 5191 no
## 1095 1.1 93.994 -36.4 4.856 5191 no
## 1097 1.1 93.994 -36.4 4.856 5191 no
## 1099 1.1 93.994 -36.4 4.856 5191 no
## 1102 1.1 93.994 -36.4 4.856 5191 no
## 1103 1.1 93.994 -36.4 4.856 5191 no
## 1104 1.1 93.994 -36.4 4.856 5191 no
## 1106 1.1 93.994 -36.4 4.856 5191 no
## 1107 1.1 93.994 -36.4 4.856 5191 no
## 1108 1.1 93.994 -36.4 4.856 5191 no
## 1109 1.1 93.994 -36.4 4.856 5191 no
## 1110 1.1 93.994 -36.4 4.856 5191 no
## 1111 1.1 93.994 -36.4 4.856 5191 no
## 1112 1.1 93.994 -36.4 4.856 5191 no
## 1113 1.1 93.994 -36.4 4.856 5191 no
## 1114 1.1 93.994 -36.4 4.856 5191 no
## 1115 1.1 93.994 -36.4 4.856 5191 yes
## 1116 1.1 93.994 -36.4 4.856 5191 no
## 1118 1.1 93.994 -36.4 4.856 5191 no
## 1119 1.1 93.994 -36.4 4.856 5191 no
## 1120 1.1 93.994 -36.4 4.856 5191 no
## 1121 1.1 93.994 -36.4 4.856 5191 no
## 1122 1.1 93.994 -36.4 4.856 5191 no
## 1123 1.1 93.994 -36.4 4.856 5191 no
## 1124 1.1 93.994 -36.4 4.856 5191 no
## 1125 1.1 93.994 -36.4 4.856 5191 no
## 1126 1.1 93.994 -36.4 4.856 5191 no
## 1127 1.1 93.994 -36.4 4.856 5191 no
## 1128 1.1 93.994 -36.4 4.856 5191 no
## 1129 1.1 93.994 -36.4 4.856 5191 no
## 1130 1.1 93.994 -36.4 4.856 5191 no
## 1131 1.1 93.994 -36.4 4.856 5191 no
## 1132 1.1 93.994 -36.4 4.856 5191 no
## 1133 1.1 93.994 -36.4 4.856 5191 no
## 1134 1.1 93.994 -36.4 4.856 5191 no
## 1135 1.1 93.994 -36.4 4.856 5191 no
## 1136 1.1 93.994 -36.4 4.856 5191 no
## 1137 1.1 93.994 -36.4 4.856 5191 no
## 1138 1.1 93.994 -36.4 4.856 5191 no
## 1139 1.1 93.994 -36.4 4.856 5191 no
## 1140 1.1 93.994 -36.4 4.856 5191 no
## 1142 1.1 93.994 -36.4 4.856 5191 no
## 1143 1.1 93.994 -36.4 4.856 5191 no
## 1144 1.1 93.994 -36.4 4.856 5191 no
## 1147 1.1 93.994 -36.4 4.855 5191 no
## 1151 1.1 93.994 -36.4 4.855 5191 no
## 1152 1.1 93.994 -36.4 4.855 5191 no
## 1153 1.1 93.994 -36.4 4.855 5191 no
## 1154 1.1 93.994 -36.4 4.855 5191 no
## 1155 1.1 93.994 -36.4 4.855 5191 no
## 1156 1.1 93.994 -36.4 4.855 5191 no
## 1158 1.1 93.994 -36.4 4.855 5191 no
## 1160 1.1 93.994 -36.4 4.855 5191 no
## 1161 1.1 93.994 -36.4 4.855 5191 no
## 1162 1.1 93.994 -36.4 4.855 5191 no
## 1163 1.1 93.994 -36.4 4.855 5191 no
## 1165 1.1 93.994 -36.4 4.855 5191 no
## 1166 1.1 93.994 -36.4 4.855 5191 no
## 1167 1.1 93.994 -36.4 4.855 5191 yes
## 1168 1.1 93.994 -36.4 4.855 5191 no
## 1169 1.1 93.994 -36.4 4.855 5191 no
## 1170 1.1 93.994 -36.4 4.855 5191 no
## 1171 1.1 93.994 -36.4 4.855 5191 no
## 1172 1.1 93.994 -36.4 4.855 5191 no
## 1173 1.1 93.994 -36.4 4.855 5191 no
## 1174 1.1 93.994 -36.4 4.855 5191 no
## 1175 1.1 93.994 -36.4 4.855 5191 no
## 1176 1.1 93.994 -36.4 4.855 5191 no
## 1177 1.1 93.994 -36.4 4.855 5191 no
## 1178 1.1 93.994 -36.4 4.855 5191 no
## 1179 1.1 93.994 -36.4 4.855 5191 no
## 1180 1.1 93.994 -36.4 4.855 5191 no
## 1181 1.1 93.994 -36.4 4.855 5191 no
## 1182 1.1 93.994 -36.4 4.855 5191 no
## 1183 1.1 93.994 -36.4 4.855 5191 no
## 1185 1.1 93.994 -36.4 4.855 5191 no
## 1186 1.1 93.994 -36.4 4.855 5191 no
## 1187 1.1 93.994 -36.4 4.855 5191 no
## 1188 1.1 93.994 -36.4 4.855 5191 no
## 1189 1.1 93.994 -36.4 4.855 5191 no
## 1191 1.1 93.994 -36.4 4.855 5191 no
## 1192 1.1 93.994 -36.4 4.855 5191 no
## 1193 1.1 93.994 -36.4 4.855 5191 no
## 1194 1.1 93.994 -36.4 4.855 5191 no
## 1195 1.1 93.994 -36.4 4.855 5191 no
## 1196 1.1 93.994 -36.4 4.855 5191 no
## 1198 1.1 93.994 -36.4 4.855 5191 no
## 1200 1.1 93.994 -36.4 4.855 5191 no
## 1201 1.1 93.994 -36.4 4.855 5191 no
## 1202 1.1 93.994 -36.4 4.855 5191 no
## 1203 1.1 93.994 -36.4 4.855 5191 no
## 1204 1.1 93.994 -36.4 4.855 5191 no
## 1205 1.1 93.994 -36.4 4.855 5191 no
## 1208 1.1 93.994 -36.4 4.855 5191 no
## 1209 1.1 93.994 -36.4 4.855 5191 no
## 1210 1.1 93.994 -36.4 4.855 5191 no
## 1211 1.1 93.994 -36.4 4.855 5191 no
## 1212 1.1 93.994 -36.4 4.855 5191 no
## 1214 1.1 93.994 -36.4 4.855 5191 no
## 1216 1.1 93.994 -36.4 4.855 5191 no
## 1217 1.1 93.994 -36.4 4.855 5191 no
## 1219 1.1 93.994 -36.4 4.855 5191 no
## 1220 1.1 93.994 -36.4 4.855 5191 no
## 1222 1.1 93.994 -36.4 4.855 5191 no
## 1223 1.1 93.994 -36.4 4.855 5191 no
## 1224 1.1 93.994 -36.4 4.855 5191 no
## 1225 1.1 93.994 -36.4 4.855 5191 no
## 1226 1.1 93.994 -36.4 4.855 5191 no
## 1227 1.1 93.994 -36.4 4.855 5191 no
## 1228 1.1 93.994 -36.4 4.855 5191 no
## 1229 1.1 93.994 -36.4 4.855 5191 no
## 1230 1.1 93.994 -36.4 4.855 5191 no
## 1231 1.1 93.994 -36.4 4.855 5191 no
## 1232 1.1 93.994 -36.4 4.855 5191 no
## 1233 1.1 93.994 -36.4 4.855 5191 no
## 1234 1.1 93.994 -36.4 4.855 5191 yes
## 1235 1.1 93.994 -36.4 4.855 5191 no
## 1236 1.1 93.994 -36.4 4.855 5191 no
## 1237 1.1 93.994 -36.4 4.855 5191 no
## 1238 1.1 93.994 -36.4 4.855 5191 no
## 1240 1.1 93.994 -36.4 4.855 5191 no
## 1241 1.1 93.994 -36.4 4.855 5191 no
## 1242 1.1 93.994 -36.4 4.855 5191 no
## 1243 1.1 93.994 -36.4 4.855 5191 no
## 1245 1.1 93.994 -36.4 4.855 5191 no
## 1246 1.1 93.994 -36.4 4.855 5191 no
## 1247 1.1 93.994 -36.4 4.855 5191 no
## 1248 1.1 93.994 -36.4 4.855 5191 no
## 1251 1.1 93.994 -36.4 4.855 5191 no
## 1252 1.1 93.994 -36.4 4.855 5191 no
## 1253 1.1 93.994 -36.4 4.855 5191 no
## 1254 1.1 93.994 -36.4 4.855 5191 no
## 1255 1.1 93.994 -36.4 4.855 5191 no
## 1256 1.1 93.994 -36.4 4.855 5191 no
## 1257 1.1 93.994 -36.4 4.855 5191 yes
## 1259 1.1 93.994 -36.4 4.855 5191 no
## 1260 1.1 93.994 -36.4 4.855 5191 no
## 1262 1.1 93.994 -36.4 4.855 5191 no
## 1263 1.1 93.994 -36.4 4.855 5191 no
## 1265 1.1 93.994 -36.4 4.855 5191 no
## 1266 1.1 93.994 -36.4 4.855 5191 no
## 1268 1.1 93.994 -36.4 4.855 5191 no
## 1269 1.1 93.994 -36.4 4.855 5191 no
## 1270 1.1 93.994 -36.4 4.855 5191 no
## 1272 1.1 93.994 -36.4 4.855 5191 no
## 1273 1.1 93.994 -36.4 4.855 5191 no
## 1274 1.1 93.994 -36.4 4.855 5191 no
## 1275 1.1 93.994 -36.4 4.855 5191 no
## 1277 1.1 93.994 -36.4 4.855 5191 no
## 1278 1.1 93.994 -36.4 4.855 5191 no
## 1279 1.1 93.994 -36.4 4.855 5191 no
## 1280 1.1 93.994 -36.4 4.855 5191 no
## 1281 1.1 93.994 -36.4 4.855 5191 no
## 1284 1.1 93.994 -36.4 4.855 5191 no
## 1285 1.1 93.994 -36.4 4.855 5191 no
## 1286 1.1 93.994 -36.4 4.855 5191 no
## 1289 1.1 93.994 -36.4 4.855 5191 no
## 1290 1.1 93.994 -36.4 4.855 5191 no
## 1291 1.1 93.994 -36.4 4.855 5191 no
## 1292 1.1 93.994 -36.4 4.855 5191 no
## 1294 1.1 93.994 -36.4 4.855 5191 no
## 1295 1.1 93.994 -36.4 4.855 5191 no
## 1296 1.1 93.994 -36.4 4.855 5191 no
## 1297 1.1 93.994 -36.4 4.855 5191 no
## 1298 1.1 93.994 -36.4 4.855 5191 no
## 1299 1.1 93.994 -36.4 4.855 5191 no
## 1300 1.1 93.994 -36.4 4.855 5191 no
## 1301 1.1 93.994 -36.4 4.855 5191 no
## 1302 1.1 93.994 -36.4 4.855 5191 no
## 1303 1.1 93.994 -36.4 4.855 5191 no
## 1304 1.1 93.994 -36.4 4.855 5191 no
## 1305 1.1 93.994 -36.4 4.855 5191 no
## 1306 1.1 93.994 -36.4 4.855 5191 no
## 1307 1.1 93.994 -36.4 4.855 5191 no
## 1308 1.1 93.994 -36.4 4.855 5191 no
## 1309 1.1 93.994 -36.4 4.855 5191 no
## 1310 1.1 93.994 -36.4 4.855 5191 no
## 1311 1.1 93.994 -36.4 4.855 5191 no
## 1313 1.1 93.994 -36.4 4.855 5191 no
## 1314 1.1 93.994 -36.4 4.855 5191 no
## 1315 1.1 93.994 -36.4 4.855 5191 no
## 1318 1.1 93.994 -36.4 4.855 5191 no
## 1320 1.1 93.994 -36.4 4.855 5191 yes
## 1321 1.1 93.994 -36.4 4.855 5191 no
## 1322 1.1 93.994 -36.4 4.855 5191 no
## 1323 1.1 93.994 -36.4 4.855 5191 no
## 1324 1.1 93.994 -36.4 4.855 5191 no
## 1325 1.1 93.994 -36.4 4.855 5191 no
## 1326 1.1 93.994 -36.4 4.855 5191 no
## 1328 1.1 93.994 -36.4 4.855 5191 no
## 1329 1.1 93.994 -36.4 4.855 5191 no
## 1330 1.1 93.994 -36.4 4.855 5191 no
## 1333 1.1 93.994 -36.4 4.855 5191 no
## 1334 1.1 93.994 -36.4 4.855 5191 no
## 1335 1.1 93.994 -36.4 4.855 5191 no
## 1336 1.1 93.994 -36.4 4.855 5191 no
## 1337 1.1 93.994 -36.4 4.855 5191 no
## 1338 1.1 93.994 -36.4 4.855 5191 no
## 1339 1.1 93.994 -36.4 4.855 5191 no
## 1340 1.1 93.994 -36.4 4.855 5191 no
## 1341 1.1 93.994 -36.4 4.855 5191 no
## 1342 1.1 93.994 -36.4 4.855 5191 no
## 1343 1.1 93.994 -36.4 4.855 5191 no
## 1344 1.1 93.994 -36.4 4.855 5191 no
## 1345 1.1 93.994 -36.4 4.855 5191 no
## 1348 1.1 93.994 -36.4 4.855 5191 no
## 1349 1.1 93.994 -36.4 4.855 5191 yes
## 1350 1.1 93.994 -36.4 4.855 5191 no
## 1351 1.1 93.994 -36.4 4.855 5191 no
## 1352 1.1 93.994 -36.4 4.855 5191 no
## 1354 1.1 93.994 -36.4 4.855 5191 no
## 1355 1.1 93.994 -36.4 4.855 5191 no
## 1356 1.1 93.994 -36.4 4.855 5191 no
## 1357 1.1 93.994 -36.4 4.855 5191 no
## 1358 1.1 93.994 -36.4 4.855 5191 no
## 1359 1.1 93.994 -36.4 4.855 5191 no
## 1360 1.1 93.994 -36.4 4.855 5191 no
## 1361 1.1 93.994 -36.4 4.855 5191 no
## 1362 1.1 93.994 -36.4 4.855 5191 no
## 1363 1.1 93.994 -36.4 4.855 5191 no
## 1364 1.1 93.994 -36.4 4.855 5191 no
## 1365 1.1 93.994 -36.4 4.855 5191 no
## 1369 1.1 93.994 -36.4 4.855 5191 no
## 1370 1.1 93.994 -36.4 4.855 5191 no
## 1371 1.1 93.994 -36.4 4.855 5191 no
## 1372 1.1 93.994 -36.4 4.855 5191 no
## 1374 1.1 93.994 -36.4 4.855 5191 no
## 1376 1.1 93.994 -36.4 4.855 5191 no
## 1378 1.1 93.994 -36.4 4.855 5191 no
## 1380 1.1 93.994 -36.4 4.855 5191 no
## 1382 1.1 93.994 -36.4 4.855 5191 no
## 1384 1.1 93.994 -36.4 4.855 5191 no
## 1385 1.1 93.994 -36.4 4.855 5191 no
## 1386 1.1 93.994 -36.4 4.855 5191 no
## 1389 1.1 93.994 -36.4 4.855 5191 no
## 1390 1.1 93.994 -36.4 4.855 5191 no
## 1391 1.1 93.994 -36.4 4.855 5191 no
## 1392 1.1 93.994 -36.4 4.855 5191 no
## 1393 1.1 93.994 -36.4 4.855 5191 no
## 1394 1.1 93.994 -36.4 4.855 5191 no
## 1397 1.1 93.994 -36.4 4.855 5191 yes
## 1398 1.1 93.994 -36.4 4.855 5191 no
## 1400 1.1 93.994 -36.4 4.855 5191 no
## 1401 1.1 93.994 -36.4 4.855 5191 no
## 1402 1.1 93.994 -36.4 4.855 5191 no
## 1403 1.1 93.994 -36.4 4.855 5191 no
## 1404 1.1 93.994 -36.4 4.855 5191 no
## 1405 1.1 93.994 -36.4 4.855 5191 no
## 1406 1.1 93.994 -36.4 4.855 5191 no
## 1407 1.1 93.994 -36.4 4.855 5191 no
## 1408 1.1 93.994 -36.4 4.855 5191 no
## 1409 1.1 93.994 -36.4 4.855 5191 no
## 1411 1.1 93.994 -36.4 4.855 5191 no
## 1413 1.1 93.994 -36.4 4.855 5191 no
## 1416 1.1 93.994 -36.4 4.855 5191 no
## 1418 1.1 93.994 -36.4 4.855 5191 no
## 1419 1.1 93.994 -36.4 4.855 5191 no
## 1420 1.1 93.994 -36.4 4.855 5191 no
## 1422 1.1 93.994 -36.4 4.855 5191 no
## 1423 1.1 93.994 -36.4 4.855 5191 no
## 1425 1.1 93.994 -36.4 4.855 5191 no
## 1426 1.1 93.994 -36.4 4.855 5191 no
## 1434 1.1 93.994 -36.4 4.855 5191 no
## 1435 1.1 93.994 -36.4 4.855 5191 no
## 1436 1.1 93.994 -36.4 4.855 5191 no
## 1438 1.1 93.994 -36.4 4.855 5191 no
## 1439 1.1 93.994 -36.4 4.855 5191 no
## 1440 1.1 93.994 -36.4 4.855 5191 no
## 1441 1.1 93.994 -36.4 4.855 5191 no
## 1442 1.1 93.994 -36.4 4.855 5191 no
## 1443 1.1 93.994 -36.4 4.855 5191 yes
## 1444 1.1 93.994 -36.4 4.855 5191 no
## 1445 1.1 93.994 -36.4 4.855 5191 yes
## 1446 1.1 93.994 -36.4 4.855 5191 no
## 1448 1.1 93.994 -36.4 4.855 5191 no
## 1449 1.1 93.994 -36.4 4.855 5191 no
## 1450 1.1 93.994 -36.4 4.855 5191 no
## 1451 1.1 93.994 -36.4 4.855 5191 no
## 1452 1.1 93.994 -36.4 4.855 5191 no
## 1453 1.1 93.994 -36.4 4.855 5191 no
## 1454 1.1 93.994 -36.4 4.855 5191 no
## 1455 1.1 93.994 -36.4 4.855 5191 no
## 1456 1.1 93.994 -36.4 4.855 5191 no
## 1457 1.1 93.994 -36.4 4.855 5191 no
## 1458 1.1 93.994 -36.4 4.855 5191 no
## 1459 1.1 93.994 -36.4 4.855 5191 no
## 1460 1.1 93.994 -36.4 4.855 5191 no
## 1461 1.1 93.994 -36.4 4.855 5191 no
## 1464 1.1 93.994 -36.4 4.855 5191 no
## 1465 1.1 93.994 -36.4 4.855 5191 no
## 1466 1.1 93.994 -36.4 4.855 5191 no
## 1467 1.1 93.994 -36.4 4.855 5191 no
## 1468 1.1 93.994 -36.4 4.855 5191 no
## 1469 1.1 93.994 -36.4 4.855 5191 no
## 1470 1.1 93.994 -36.4 4.855 5191 no
## 1471 1.1 93.994 -36.4 4.855 5191 no
## 1472 1.1 93.994 -36.4 4.855 5191 no
## 1473 1.1 93.994 -36.4 4.855 5191 no
## 1474 1.1 93.994 -36.4 4.855 5191 no
## 1475 1.1 93.994 -36.4 4.855 5191 no
## 1477 1.1 93.994 -36.4 4.855 5191 no
## 1478 1.1 93.994 -36.4 4.855 5191 no
## 1480 1.1 93.994 -36.4 4.855 5191 no
## 1481 1.1 93.994 -36.4 4.855 5191 no
## 1482 1.1 93.994 -36.4 4.855 5191 no
## 1484 1.1 93.994 -36.4 4.855 5191 no
## 1485 1.1 93.994 -36.4 4.855 5191 no
## 1486 1.1 93.994 -36.4 4.855 5191 no
## 1487 1.1 93.994 -36.4 4.855 5191 no
## 1489 1.1 93.994 -36.4 4.855 5191 no
## 1491 1.1 93.994 -36.4 4.855 5191 no
## 1492 1.1 93.994 -36.4 4.855 5191 no
## 1493 1.1 93.994 -36.4 4.855 5191 no
## 1495 1.1 93.994 -36.4 4.855 5191 no
## 1496 1.1 93.994 -36.4 4.855 5191 no
## 1497 1.1 93.994 -36.4 4.855 5191 no
## 1499 1.1 93.994 -36.4 4.855 5191 no
## 1500 1.1 93.994 -36.4 4.855 5191 no
## 1501 1.1 93.994 -36.4 4.855 5191 no
## 1502 1.1 93.994 -36.4 4.855 5191 yes
## 1503 1.1 93.994 -36.4 4.855 5191 no
## 1504 1.1 93.994 -36.4 4.855 5191 no
## 1505 1.1 93.994 -36.4 4.855 5191 no
## 1506 1.1 93.994 -36.4 4.855 5191 no
## 1507 1.1 93.994 -36.4 4.855 5191 no
## 1508 1.1 93.994 -36.4 4.855 5191 no
## 1509 1.1 93.994 -36.4 4.855 5191 no
## 1510 1.1 93.994 -36.4 4.855 5191 no
## 1511 1.1 93.994 -36.4 4.855 5191 no
## 1512 1.1 93.994 -36.4 4.855 5191 no
## 1514 1.1 93.994 -36.4 4.855 5191 no
## 1518 1.1 93.994 -36.4 4.855 5191 no
## 1519 1.1 93.994 -36.4 4.855 5191 no
## 1520 1.1 93.994 -36.4 4.855 5191 no
## 1522 1.1 93.994 -36.4 4.855 5191 no
## 1523 1.1 93.994 -36.4 4.855 5191 no
## 1526 1.1 93.994 -36.4 4.855 5191 no
## 1527 1.1 93.994 -36.4 4.855 5191 no
## 1528 1.1 93.994 -36.4 4.855 5191 no
## 1529 1.1 93.994 -36.4 4.855 5191 no
## 1530 1.1 93.994 -36.4 4.855 5191 no
## 1531 1.1 93.994 -36.4 4.855 5191 no
## 1532 1.1 93.994 -36.4 4.855 5191 no
## 1534 1.1 93.994 -36.4 4.855 5191 no
## 1536 1.1 93.994 -36.4 4.855 5191 no
## 1537 1.1 93.994 -36.4 4.855 5191 no
## 1538 1.1 93.994 -36.4 4.855 5191 no
## 1539 1.1 93.994 -36.4 4.855 5191 no
## 1540 1.1 93.994 -36.4 4.855 5191 no
## 1541 1.1 93.994 -36.4 4.855 5191 no
## 1542 1.1 93.994 -36.4 4.855 5191 no
## 1543 1.1 93.994 -36.4 4.855 5191 no
## 1544 1.1 93.994 -36.4 4.855 5191 no
## 1545 1.1 93.994 -36.4 4.855 5191 no
## 1546 1.1 93.994 -36.4 4.855 5191 no
## 1548 1.1 93.994 -36.4 4.855 5191 no
## 1549 1.1 93.994 -36.4 4.855 5191 no
## 1550 1.1 93.994 -36.4 4.855 5191 no
## 1552 1.1 93.994 -36.4 4.855 5191 no
## 1553 1.1 93.994 -36.4 4.855 5191 no
## 1556 1.1 93.994 -36.4 4.855 5191 no
## 1557 1.1 93.994 -36.4 4.855 5191 no
## 1559 1.1 93.994 -36.4 4.855 5191 no
## 1560 1.1 93.994 -36.4 4.855 5191 no
## 1562 1.1 93.994 -36.4 4.855 5191 no
## 1563 1.1 93.994 -36.4 4.855 5191 no
## 1564 1.1 93.994 -36.4 4.855 5191 no
## 1565 1.1 93.994 -36.4 4.855 5191 no
## 1567 1.1 93.994 -36.4 4.855 5191 no
## 1570 1.1 93.994 -36.4 4.855 5191 no
## 1571 1.1 93.994 -36.4 4.855 5191 no
## 1574 1.1 93.994 -36.4 4.855 5191 no
## 1575 1.1 93.994 -36.4 4.855 5191 no
## 1576 1.1 93.994 -36.4 4.855 5191 no
## 1577 1.1 93.994 -36.4 4.855 5191 no
## 1578 1.1 93.994 -36.4 4.855 5191 no
## 1579 1.1 93.994 -36.4 4.855 5191 no
## 1581 1.1 93.994 -36.4 4.855 5191 no
## 1582 1.1 93.994 -36.4 4.855 5191 no
## 1583 1.1 93.994 -36.4 4.855 5191 no
## 1584 1.1 93.994 -36.4 4.855 5191 no
## 1586 1.1 93.994 -36.4 4.855 5191 no
## 1587 1.1 93.994 -36.4 4.855 5191 no
## 1588 1.1 93.994 -36.4 4.855 5191 no
## 1590 1.1 93.994 -36.4 4.855 5191 no
## 1591 1.1 93.994 -36.4 4.855 5191 no
## 1593 1.1 93.994 -36.4 4.855 5191 no
## 1595 1.1 93.994 -36.4 4.855 5191 no
## 1596 1.1 93.994 -36.4 4.855 5191 no
## 1597 1.1 93.994 -36.4 4.855 5191 no
## 1598 1.1 93.994 -36.4 4.855 5191 no
## 1599 1.1 93.994 -36.4 4.855 5191 no
## 1600 1.1 93.994 -36.4 4.855 5191 no
## 1602 1.1 93.994 -36.4 4.855 5191 no
## 1603 1.1 93.994 -36.4 4.855 5191 no
## 1604 1.1 93.994 -36.4 4.855 5191 no
## 1605 1.1 93.994 -36.4 4.855 5191 no
## 1606 1.1 93.994 -36.4 4.855 5191 no
## 1607 1.1 93.994 -36.4 4.855 5191 no
## 1608 1.1 93.994 -36.4 4.855 5191 no
## 1610 1.1 93.994 -36.4 4.855 5191 no
## 1611 1.1 93.994 -36.4 4.855 5191 no
## 1612 1.1 93.994 -36.4 4.855 5191 no
## 1613 1.1 93.994 -36.4 4.855 5191 no
## 1615 1.1 93.994 -36.4 4.855 5191 no
## 1616 1.1 93.994 -36.4 4.855 5191 no
## 1617 1.1 93.994 -36.4 4.855 5191 no
## 1618 1.1 93.994 -36.4 4.855 5191 no
## 1619 1.1 93.994 -36.4 4.855 5191 no
## 1620 1.1 93.994 -36.4 4.855 5191 no
## 1621 1.1 93.994 -36.4 4.855 5191 no
## 1622 1.1 93.994 -36.4 4.855 5191 no
## 1624 1.1 93.994 -36.4 4.855 5191 no
## 1625 1.1 93.994 -36.4 4.855 5191 no
## 1626 1.1 93.994 -36.4 4.855 5191 no
## 1627 1.1 93.994 -36.4 4.855 5191 no
## 1628 1.1 93.994 -36.4 4.855 5191 no
## 1629 1.1 93.994 -36.4 4.855 5191 no
## 1630 1.1 93.994 -36.4 4.855 5191 no
## 1631 1.1 93.994 -36.4 4.855 5191 no
## 1632 1.1 93.994 -36.4 4.855 5191 no
## 1635 1.1 93.994 -36.4 4.855 5191 no
## 1636 1.1 93.994 -36.4 4.855 5191 no
## 1637 1.1 93.994 -36.4 4.855 5191 yes
## 1638 1.1 93.994 -36.4 4.855 5191 no
## 1639 1.1 93.994 -36.4 4.855 5191 no
## 1640 1.1 93.994 -36.4 4.855 5191 no
## 1642 1.1 93.994 -36.4 4.855 5191 no
## 1644 1.1 93.994 -36.4 4.855 5191 no
## 1645 1.1 93.994 -36.4 4.855 5191 no
## 1646 1.1 93.994 -36.4 4.855 5191 no
## 1647 1.1 93.994 -36.4 4.855 5191 no
## 1648 1.1 93.994 -36.4 4.855 5191 no
## 1649 1.1 93.994 -36.4 4.855 5191 no
## 1650 1.1 93.994 -36.4 4.855 5191 no
## 1651 1.1 93.994 -36.4 4.855 5191 no
## 1652 1.1 93.994 -36.4 4.855 5191 no
## 1654 1.1 93.994 -36.4 4.855 5191 no
## 1655 1.1 93.994 -36.4 4.855 5191 no
## 1657 1.1 93.994 -36.4 4.855 5191 no
## 1658 1.1 93.994 -36.4 4.855 5191 no
## 1659 1.1 93.994 -36.4 4.855 5191 no
## 1660 1.1 93.994 -36.4 4.855 5191 no
## 1661 1.1 93.994 -36.4 4.855 5191 no
## 1662 1.1 93.994 -36.4 4.855 5191 no
## 1663 1.1 93.994 -36.4 4.855 5191 no
## 1665 1.1 93.994 -36.4 4.855 5191 no
## 1666 1.1 93.994 -36.4 4.855 5191 no
## 1667 1.1 93.994 -36.4 4.855 5191 no
## 1668 1.1 93.994 -36.4 4.855 5191 no
## 1669 1.1 93.994 -36.4 4.855 5191 no
## 1670 1.1 93.994 -36.4 4.855 5191 no
## 1671 1.1 93.994 -36.4 4.855 5191 no
## 1672 1.1 93.994 -36.4 4.855 5191 no
## 1673 1.1 93.994 -36.4 4.855 5191 no
## 1674 1.1 93.994 -36.4 4.855 5191 no
## 1675 1.1 93.994 -36.4 4.855 5191 no
## 1676 1.1 93.994 -36.4 4.855 5191 no
## 1677 1.1 93.994 -36.4 4.855 5191 no
## 1678 1.1 93.994 -36.4 4.855 5191 no
## 1679 1.1 93.994 -36.4 4.855 5191 no
## 1680 1.1 93.994 -36.4 4.855 5191 no
## 1681 1.1 93.994 -36.4 4.855 5191 no
## 1682 1.1 93.994 -36.4 4.855 5191 no
## 1683 1.1 93.994 -36.4 4.855 5191 no
## 1684 1.1 93.994 -36.4 4.855 5191 no
## 1685 1.1 93.994 -36.4 4.855 5191 no
## 1687 1.1 93.994 -36.4 4.855 5191 no
## 1690 1.1 93.994 -36.4 4.855 5191 no
## 1691 1.1 93.994 -36.4 4.855 5191 no
## 1692 1.1 93.994 -36.4 4.855 5191 yes
## 1693 1.1 93.994 -36.4 4.855 5191 no
## 1694 1.1 93.994 -36.4 4.855 5191 no
## 1695 1.1 93.994 -36.4 4.855 5191 no
## 1696 1.1 93.994 -36.4 4.855 5191 no
## 1697 1.1 93.994 -36.4 4.855 5191 no
## 1698 1.1 93.994 -36.4 4.855 5191 no
## 1699 1.1 93.994 -36.4 4.855 5191 no
## 1700 1.1 93.994 -36.4 4.855 5191 no
## 1701 1.1 93.994 -36.4 4.855 5191 no
## 1702 1.1 93.994 -36.4 4.855 5191 no
## 1703 1.1 93.994 -36.4 4.855 5191 no
## 1705 1.1 93.994 -36.4 4.855 5191 no
## 1706 1.1 93.994 -36.4 4.855 5191 no
## 1707 1.1 93.994 -36.4 4.855 5191 no
## 1708 1.1 93.994 -36.4 4.855 5191 no
## 1709 1.1 93.994 -36.4 4.855 5191 no
## 1710 1.1 93.994 -36.4 4.855 5191 no
## 1711 1.1 93.994 -36.4 4.855 5191 no
## 1712 1.1 93.994 -36.4 4.855 5191 no
## 1713 1.1 93.994 -36.4 4.855 5191 no
## 1714 1.1 93.994 -36.4 4.855 5191 no
## 1715 1.1 93.994 -36.4 4.855 5191 no
## 1716 1.1 93.994 -36.4 4.855 5191 no
## 1717 1.1 93.994 -36.4 4.855 5191 no
## 1718 1.1 93.994 -36.4 4.855 5191 no
## 1719 1.1 93.994 -36.4 4.855 5191 no
## 1720 1.1 93.994 -36.4 4.855 5191 no
## 1721 1.1 93.994 -36.4 4.855 5191 no
## 1724 1.1 93.994 -36.4 4.855 5191 no
## 1725 1.1 93.994 -36.4 4.855 5191 no
## 1726 1.1 93.994 -36.4 4.855 5191 yes
## 1727 1.1 93.994 -36.4 4.855 5191 no
## 1728 1.1 93.994 -36.4 4.855 5191 no
## 1729 1.1 93.994 -36.4 4.855 5191 no
## 1730 1.1 93.994 -36.4 4.855 5191 no
## 1731 1.1 93.994 -36.4 4.855 5191 no
## 1732 1.1 93.994 -36.4 4.855 5191 no
## 1734 1.1 93.994 -36.4 4.855 5191 no
## 1735 1.1 93.994 -36.4 4.855 5191 no
## 1737 1.1 93.994 -36.4 4.855 5191 no
## 1738 1.1 93.994 -36.4 4.855 5191 no
## 1739 1.1 93.994 -36.4 4.855 5191 no
## 1740 1.1 93.994 -36.4 4.855 5191 no
## 1741 1.1 93.994 -36.4 4.855 5191 no
## 1743 1.1 93.994 -36.4 4.855 5191 no
## 1744 1.1 93.994 -36.4 4.855 5191 no
## 1745 1.1 93.994 -36.4 4.855 5191 no
## 1746 1.1 93.994 -36.4 4.855 5191 no
## 1747 1.1 93.994 -36.4 4.855 5191 no
## 1748 1.1 93.994 -36.4 4.855 5191 no
## 1750 1.1 93.994 -36.4 4.855 5191 no
## 1751 1.1 93.994 -36.4 4.855 5191 no
## 1752 1.1 93.994 -36.4 4.855 5191 no
## 1753 1.1 93.994 -36.4 4.855 5191 no
## 1754 1.1 93.994 -36.4 4.855 5191 no
## 1755 1.1 93.994 -36.4 4.855 5191 no
## 1756 1.1 93.994 -36.4 4.855 5191 no
## 1759 1.1 93.994 -36.4 4.855 5191 no
## 1760 1.1 93.994 -36.4 4.855 5191 no
## 1761 1.1 93.994 -36.4 4.855 5191 no
## 1763 1.1 93.994 -36.4 4.855 5191 no
## 1764 1.1 93.994 -36.4 4.855 5191 yes
## 1768 1.1 93.994 -36.4 4.855 5191 no
## 1769 1.1 93.994 -36.4 4.855 5191 no
## 1770 1.1 93.994 -36.4 4.855 5191 no
## 1772 1.1 93.994 -36.4 4.855 5191 no
## 1774 1.1 93.994 -36.4 4.855 5191 no
## 1775 1.1 93.994 -36.4 4.855 5191 no
## 1776 1.1 93.994 -36.4 4.855 5191 no
## 1777 1.1 93.994 -36.4 4.855 5191 no
## 1779 1.1 93.994 -36.4 4.855 5191 no
## 1780 1.1 93.994 -36.4 4.855 5191 no
## 1781 1.1 93.994 -36.4 4.855 5191 no
## 1783 1.1 93.994 -36.4 4.855 5191 no
## 1784 1.1 93.994 -36.4 4.855 5191 no
## 1785 1.1 93.994 -36.4 4.855 5191 no
## 1786 1.1 93.994 -36.4 4.855 5191 no
## 1788 1.1 93.994 -36.4 4.855 5191 no
## 1789 1.1 93.994 -36.4 4.855 5191 no
## 1791 1.1 93.994 -36.4 4.855 5191 no
## 1793 1.1 93.994 -36.4 4.855 5191 no
## 1794 1.1 93.994 -36.4 4.855 5191 no
## 1795 1.1 93.994 -36.4 4.855 5191 no
## 1796 1.1 93.994 -36.4 4.855 5191 no
## 1798 1.1 93.994 -36.4 4.855 5191 no
## 1799 1.1 93.994 -36.4 4.855 5191 no
## 1802 1.1 93.994 -36.4 4.855 5191 no
## 1805 1.1 93.994 -36.4 4.855 5191 no
## 1806 1.1 93.994 -36.4 4.855 5191 no
## 1808 1.1 93.994 -36.4 4.855 5191 no
## 1810 1.1 93.994 -36.4 4.855 5191 yes
## 1811 1.1 93.994 -36.4 4.855 5191 no
## 1813 1.1 93.994 -36.4 4.855 5191 no
## 1814 1.1 93.994 -36.4 4.855 5191 no
## 1815 1.1 93.994 -36.4 4.855 5191 no
## 1818 1.1 93.994 -36.4 4.855 5191 no
## 1819 1.1 93.994 -36.4 4.855 5191 no
## 1820 1.1 93.994 -36.4 4.855 5191 yes
## 1821 1.1 93.994 -36.4 4.855 5191 no
## 1822 1.1 93.994 -36.4 4.855 5191 no
## 1823 1.1 93.994 -36.4 4.855 5191 no
## 1824 1.1 93.994 -36.4 4.855 5191 no
## 1825 1.1 93.994 -36.4 4.855 5191 no
## 1826 1.1 93.994 -36.4 4.855 5191 no
## 1827 1.1 93.994 -36.4 4.855 5191 no
## 1828 1.1 93.994 -36.4 4.855 5191 no
## 1829 1.1 93.994 -36.4 4.855 5191 no
## 1830 1.1 93.994 -36.4 4.855 5191 no
## 1831 1.1 93.994 -36.4 4.855 5191 no
## 1833 1.1 93.994 -36.4 4.855 5191 no
## 1834 1.1 93.994 -36.4 4.855 5191 no
## 1835 1.1 93.994 -36.4 4.855 5191 no
## 1837 1.1 93.994 -36.4 4.855 5191 no
## 1838 1.1 93.994 -36.4 4.855 5191 no
## 1839 1.1 93.994 -36.4 4.855 5191 no
## 1840 1.1 93.994 -36.4 4.855 5191 no
## 1841 1.1 93.994 -36.4 4.855 5191 no
## 1842 1.1 93.994 -36.4 4.855 5191 no
## 1844 1.1 93.994 -36.4 4.855 5191 no
## 1845 1.1 93.994 -36.4 4.855 5191 no
## 1846 1.1 93.994 -36.4 4.855 5191 no
## 1847 1.1 93.994 -36.4 4.855 5191 no
## 1850 1.1 93.994 -36.4 4.855 5191 no
## 1851 1.1 93.994 -36.4 4.855 5191 no
## 1853 1.1 93.994 -36.4 4.855 5191 no
## 1854 1.1 93.994 -36.4 4.855 5191 no
## 1855 1.1 93.994 -36.4 4.855 5191 no
## 1856 1.1 93.994 -36.4 4.855 5191 no
## 1857 1.1 93.994 -36.4 4.855 5191 no
## 1858 1.1 93.994 -36.4 4.855 5191 no
## 1859 1.1 93.994 -36.4 4.855 5191 no
## 1860 1.1 93.994 -36.4 4.855 5191 no
## 1861 1.1 93.994 -36.4 4.855 5191 no
## 1862 1.1 93.994 -36.4 4.855 5191 no
## 1863 1.1 93.994 -36.4 4.855 5191 no
## 1864 1.1 93.994 -36.4 4.855 5191 no
## 1865 1.1 93.994 -36.4 4.855 5191 no
## 1866 1.1 93.994 -36.4 4.855 5191 no
## 1867 1.1 93.994 -36.4 4.855 5191 no
## 1868 1.1 93.994 -36.4 4.855 5191 no
## 1869 1.1 93.994 -36.4 4.855 5191 no
## 1870 1.1 93.994 -36.4 4.855 5191 no
## 1871 1.1 93.994 -36.4 4.855 5191 no
## 1872 1.1 93.994 -36.4 4.855 5191 no
## 1874 1.1 93.994 -36.4 4.855 5191 no
## 1875 1.1 93.994 -36.4 4.855 5191 no
## 1876 1.1 93.994 -36.4 4.855 5191 no
## 1877 1.1 93.994 -36.4 4.855 5191 no
## 1878 1.1 93.994 -36.4 4.855 5191 no
## 1879 1.1 93.994 -36.4 4.855 5191 no
## 1880 1.1 93.994 -36.4 4.855 5191 no
## 1881 1.1 93.994 -36.4 4.855 5191 no
## 1882 1.1 93.994 -36.4 4.855 5191 no
## 1883 1.1 93.994 -36.4 4.855 5191 no
## 1884 1.1 93.994 -36.4 4.855 5191 no
## 1885 1.1 93.994 -36.4 4.855 5191 no
## 1886 1.1 93.994 -36.4 4.855 5191 no
## 1887 1.1 93.994 -36.4 4.855 5191 no
## 1888 1.1 93.994 -36.4 4.855 5191 no
## 1889 1.1 93.994 -36.4 4.855 5191 no
## 1890 1.1 93.994 -36.4 4.855 5191 no
## 1892 1.1 93.994 -36.4 4.855 5191 no
## 1893 1.1 93.994 -36.4 4.855 5191 no
## 1894 1.1 93.994 -36.4 4.855 5191 no
## 1895 1.1 93.994 -36.4 4.855 5191 no
## 1897 1.1 93.994 -36.4 4.855 5191 no
## 1902 1.1 93.994 -36.4 4.855 5191 no
## 1903 1.1 93.994 -36.4 4.855 5191 no
## 1904 1.1 93.994 -36.4 4.855 5191 no
## 1905 1.1 93.994 -36.4 4.855 5191 no
## 1906 1.1 93.994 -36.4 4.855 5191 no
## 1907 1.1 93.994 -36.4 4.855 5191 no
## 1908 1.1 93.994 -36.4 4.855 5191 no
## 1910 1.1 93.994 -36.4 4.855 5191 no
## 1911 1.1 93.994 -36.4 4.855 5191 no
## 1912 1.1 93.994 -36.4 4.855 5191 no
## 1914 1.1 93.994 -36.4 4.855 5191 no
## 1915 1.1 93.994 -36.4 4.855 5191 no
## 1916 1.1 93.994 -36.4 4.855 5191 no
## 1917 1.1 93.994 -36.4 4.855 5191 no
## 1919 1.1 93.994 -36.4 4.855 5191 no
## 1920 1.1 93.994 -36.4 4.855 5191 no
## 1922 1.1 93.994 -36.4 4.855 5191 no
## 1923 1.1 93.994 -36.4 4.855 5191 no
## 1924 1.1 93.994 -36.4 4.855 5191 no
## 1925 1.1 93.994 -36.4 4.855 5191 no
## 1926 1.1 93.994 -36.4 4.855 5191 no
## 1927 1.1 93.994 -36.4 4.855 5191 no
## 1928 1.1 93.994 -36.4 4.855 5191 no
## 1929 1.1 93.994 -36.4 4.855 5191 no
## 1930 1.1 93.994 -36.4 4.855 5191 no
## 1931 1.1 93.994 -36.4 4.855 5191 no
## 1932 1.1 93.994 -36.4 4.855 5191 no
## 1933 1.1 93.994 -36.4 4.855 5191 no
## 1934 1.1 93.994 -36.4 4.855 5191 no
## 1935 1.1 93.994 -36.4 4.855 5191 no
## 1936 1.1 93.994 -36.4 4.855 5191 no
## 1937 1.1 93.994 -36.4 4.855 5191 no
## 1938 1.1 93.994 -36.4 4.855 5191 no
## 1939 1.1 93.994 -36.4 4.855 5191 no
## 1940 1.1 93.994 -36.4 4.855 5191 no
## 1942 1.1 93.994 -36.4 4.855 5191 no
## 1943 1.1 93.994 -36.4 4.855 5191 no
## 1944 1.1 93.994 -36.4 4.855 5191 no
## 1945 1.1 93.994 -36.4 4.855 5191 no
## 1946 1.1 93.994 -36.4 4.855 5191 no
## 1947 1.1 93.994 -36.4 4.855 5191 no
## 1948 1.1 93.994 -36.4 4.855 5191 no
## 1949 1.1 93.994 -36.4 4.855 5191 no
## 1950 1.1 93.994 -36.4 4.855 5191 no
## 1952 1.1 93.994 -36.4 4.855 5191 no
## 1953 1.1 93.994 -36.4 4.855 5191 no
## 1954 1.1 93.994 -36.4 4.855 5191 no
## 1955 1.1 93.994 -36.4 4.855 5191 no
## 1956 1.1 93.994 -36.4 4.855 5191 no
## 1957 1.1 93.994 -36.4 4.855 5191 no
## 1958 1.1 93.994 -36.4 4.855 5191 no
## 1959 1.1 93.994 -36.4 4.855 5191 no
## 1960 1.1 93.994 -36.4 4.855 5191 no
## 1961 1.1 93.994 -36.4 4.855 5191 no
## 1962 1.1 93.994 -36.4 4.855 5191 no
## 1965 1.1 93.994 -36.4 4.855 5191 no
## 1966 1.1 93.994 -36.4 4.855 5191 no
## 1967 1.1 93.994 -36.4 4.855 5191 no
## 1969 1.1 93.994 -36.4 4.855 5191 no
## 1970 1.1 93.994 -36.4 4.855 5191 no
## 1971 1.1 93.994 -36.4 4.855 5191 no
## 1973 1.1 93.994 -36.4 4.855 5191 no
## 1975 1.1 93.994 -36.4 4.855 5191 no
## 1977 1.1 93.994 -36.4 4.855 5191 no
## 1978 1.1 93.994 -36.4 4.855 5191 no
## 1981 1.1 93.994 -36.4 4.855 5191 no
## 1982 1.1 93.994 -36.4 4.855 5191 no
## 1983 1.1 93.994 -36.4 4.855 5191 no
## 1985 1.1 93.994 -36.4 4.855 5191 no
## 1986 1.1 93.994 -36.4 4.855 5191 no
## 1987 1.1 93.994 -36.4 4.857 5191 no
## 1989 1.1 93.994 -36.4 4.857 5191 no
## 1990 1.1 93.994 -36.4 4.857 5191 no
## 1991 1.1 93.994 -36.4 4.857 5191 no
## 1992 1.1 93.994 -36.4 4.857 5191 no
## 1993 1.1 93.994 -36.4 4.857 5191 no
## 1994 1.1 93.994 -36.4 4.857 5191 no
## 1995 1.1 93.994 -36.4 4.857 5191 no
## 1996 1.1 93.994 -36.4 4.857 5191 no
## 1997 1.1 93.994 -36.4 4.857 5191 no
## 1998 1.1 93.994 -36.4 4.857 5191 no
## 1999 1.1 93.994 -36.4 4.857 5191 no
## 2000 1.1 93.994 -36.4 4.857 5191 no
## 2002 1.1 93.994 -36.4 4.857 5191 no
## 2003 1.1 93.994 -36.4 4.857 5191 yes
## 2004 1.1 93.994 -36.4 4.857 5191 no
## 2005 1.1 93.994 -36.4 4.857 5191 no
## 2006 1.1 93.994 -36.4 4.857 5191 no
## 2007 1.1 93.994 -36.4 4.857 5191 no
## 2008 1.1 93.994 -36.4 4.857 5191 no
## 2009 1.1 93.994 -36.4 4.857 5191 no
## 2011 1.1 93.994 -36.4 4.857 5191 no
## 2013 1.1 93.994 -36.4 4.857 5191 no
## 2014 1.1 93.994 -36.4 4.857 5191 no
## 2015 1.1 93.994 -36.4 4.857 5191 no
## 2016 1.1 93.994 -36.4 4.857 5191 no
## 2017 1.1 93.994 -36.4 4.857 5191 no
## 2019 1.1 93.994 -36.4 4.857 5191 no
## 2020 1.1 93.994 -36.4 4.857 5191 no
## 2021 1.1 93.994 -36.4 4.857 5191 no
## 2022 1.1 93.994 -36.4 4.857 5191 no
## 2023 1.1 93.994 -36.4 4.857 5191 no
## 2024 1.1 93.994 -36.4 4.857 5191 no
## 2025 1.1 93.994 -36.4 4.857 5191 no
## 2026 1.1 93.994 -36.4 4.857 5191 no
## 2028 1.1 93.994 -36.4 4.857 5191 no
## 2029 1.1 93.994 -36.4 4.857 5191 no
## 2030 1.1 93.994 -36.4 4.857 5191 no
## 2032 1.1 93.994 -36.4 4.857 5191 no
## 2033 1.1 93.994 -36.4 4.857 5191 no
## 2034 1.1 93.994 -36.4 4.857 5191 no
## 2035 1.1 93.994 -36.4 4.857 5191 no
## 2036 1.1 93.994 -36.4 4.857 5191 no
## 2037 1.1 93.994 -36.4 4.857 5191 no
## 2039 1.1 93.994 -36.4 4.857 5191 no
## 2040 1.1 93.994 -36.4 4.857 5191 yes
## 2042 1.1 93.994 -36.4 4.857 5191 no
## 2043 1.1 93.994 -36.4 4.857 5191 no
## 2044 1.1 93.994 -36.4 4.857 5191 no
## 2045 1.1 93.994 -36.4 4.857 5191 no
## 2046 1.1 93.994 -36.4 4.857 5191 no
## 2048 1.1 93.994 -36.4 4.857 5191 no
## 2049 1.1 93.994 -36.4 4.857 5191 no
## 2050 1.1 93.994 -36.4 4.857 5191 no
## 2051 1.1 93.994 -36.4 4.857 5191 no
## 2052 1.1 93.994 -36.4 4.857 5191 no
## 2053 1.1 93.994 -36.4 4.857 5191 no
## 2054 1.1 93.994 -36.4 4.857 5191 no
## 2055 1.1 93.994 -36.4 4.857 5191 no
## 2057 1.1 93.994 -36.4 4.857 5191 no
## 2058 1.1 93.994 -36.4 4.857 5191 no
## 2059 1.1 93.994 -36.4 4.857 5191 no
## 2060 1.1 93.994 -36.4 4.857 5191 no
## 2061 1.1 93.994 -36.4 4.857 5191 no
## 2063 1.1 93.994 -36.4 4.857 5191 no
## 2064 1.1 93.994 -36.4 4.857 5191 no
## 2065 1.1 93.994 -36.4 4.857 5191 yes
## 2066 1.1 93.994 -36.4 4.857 5191 no
## 2068 1.1 93.994 -36.4 4.857 5191 no
## 2069 1.1 93.994 -36.4 4.857 5191 no
## 2070 1.1 93.994 -36.4 4.857 5191 no
## 2071 1.1 93.994 -36.4 4.857 5191 no
## 2072 1.1 93.994 -36.4 4.857 5191 no
## 2073 1.1 93.994 -36.4 4.857 5191 no
## 2074 1.1 93.994 -36.4 4.857 5191 no
## 2075 1.1 93.994 -36.4 4.857 5191 no
## 2076 1.1 93.994 -36.4 4.857 5191 no
## 2078 1.1 93.994 -36.4 4.857 5191 no
## 2079 1.1 93.994 -36.4 4.857 5191 no
## 2080 1.1 93.994 -36.4 4.857 5191 no
## 2081 1.1 93.994 -36.4 4.857 5191 no
## 2082 1.1 93.994 -36.4 4.857 5191 no
## 2083 1.1 93.994 -36.4 4.857 5191 no
## 2085 1.1 93.994 -36.4 4.857 5191 no
## 2086 1.1 93.994 -36.4 4.857 5191 no
## 2087 1.1 93.994 -36.4 4.857 5191 no
## 2088 1.1 93.994 -36.4 4.857 5191 no
## 2089 1.1 93.994 -36.4 4.857 5191 no
## 2090 1.1 93.994 -36.4 4.857 5191 no
## 2091 1.1 93.994 -36.4 4.857 5191 no
## 2093 1.1 93.994 -36.4 4.857 5191 no
## 2095 1.1 93.994 -36.4 4.857 5191 no
## 2097 1.1 93.994 -36.4 4.857 5191 no
## 2098 1.1 93.994 -36.4 4.857 5191 no
## 2099 1.1 93.994 -36.4 4.857 5191 no
## 2100 1.1 93.994 -36.4 4.857 5191 no
## 2101 1.1 93.994 -36.4 4.857 5191 no
## 2102 1.1 93.994 -36.4 4.857 5191 no
## 2103 1.1 93.994 -36.4 4.857 5191 no
## 2104 1.1 93.994 -36.4 4.857 5191 no
## 2106 1.1 93.994 -36.4 4.857 5191 no
## 2108 1.1 93.994 -36.4 4.857 5191 no
## 2110 1.1 93.994 -36.4 4.857 5191 no
## 2111 1.1 93.994 -36.4 4.857 5191 no
## 2113 1.1 93.994 -36.4 4.857 5191 no
## 2115 1.1 93.994 -36.4 4.857 5191 no
## 2116 1.1 93.994 -36.4 4.857 5191 no
## 2117 1.1 93.994 -36.4 4.857 5191 no
## 2118 1.1 93.994 -36.4 4.857 5191 no
## 2119 1.1 93.994 -36.4 4.857 5191 no
## 2120 1.1 93.994 -36.4 4.857 5191 no
## 2121 1.1 93.994 -36.4 4.857 5191 no
## 2122 1.1 93.994 -36.4 4.857 5191 no
## 2123 1.1 93.994 -36.4 4.857 5191 no
## 2124 1.1 93.994 -36.4 4.857 5191 no
## 2125 1.1 93.994 -36.4 4.857 5191 no
## 2126 1.1 93.994 -36.4 4.857 5191 no
## 2127 1.1 93.994 -36.4 4.857 5191 no
## 2128 1.1 93.994 -36.4 4.857 5191 no
## 2131 1.1 93.994 -36.4 4.857 5191 no
## 2133 1.1 93.994 -36.4 4.857 5191 no
## 2134 1.1 93.994 -36.4 4.857 5191 no
## 2135 1.1 93.994 -36.4 4.857 5191 no
## 2136 1.1 93.994 -36.4 4.857 5191 no
## 2137 1.1 93.994 -36.4 4.857 5191 no
## 2139 1.1 93.994 -36.4 4.857 5191 no
## 2142 1.1 93.994 -36.4 4.857 5191 no
## 2143 1.1 93.994 -36.4 4.857 5191 no
## 2144 1.1 93.994 -36.4 4.857 5191 no
## 2145 1.1 93.994 -36.4 4.857 5191 no
## 2147 1.1 93.994 -36.4 4.857 5191 no
## 2148 1.1 93.994 -36.4 4.857 5191 no
## 2152 1.1 93.994 -36.4 4.857 5191 no
## 2153 1.1 93.994 -36.4 4.857 5191 no
## 2154 1.1 93.994 -36.4 4.857 5191 no
## 2156 1.1 93.994 -36.4 4.857 5191 no
## 2158 1.1 93.994 -36.4 4.857 5191 no
## 2159 1.1 93.994 -36.4 4.857 5191 no
## 2160 1.1 93.994 -36.4 4.857 5191 no
## 2161 1.1 93.994 -36.4 4.857 5191 no
## 2162 1.1 93.994 -36.4 4.857 5191 no
## 2163 1.1 93.994 -36.4 4.857 5191 no
## 2164 1.1 93.994 -36.4 4.857 5191 no
## 2165 1.1 93.994 -36.4 4.857 5191 no
## 2167 1.1 93.994 -36.4 4.857 5191 no
## 2168 1.1 93.994 -36.4 4.857 5191 no
## 2169 1.1 93.994 -36.4 4.857 5191 no
## 2170 1.1 93.994 -36.4 4.857 5191 no
## 2171 1.1 93.994 -36.4 4.857 5191 no
## 2172 1.1 93.994 -36.4 4.857 5191 no
## 2173 1.1 93.994 -36.4 4.857 5191 no
## 2174 1.1 93.994 -36.4 4.857 5191 no
## 2175 1.1 93.994 -36.4 4.857 5191 no
## 2176 1.1 93.994 -36.4 4.857 5191 no
## 2177 1.1 93.994 -36.4 4.857 5191 no
## 2179 1.1 93.994 -36.4 4.857 5191 no
## 2180 1.1 93.994 -36.4 4.857 5191 no
## 2182 1.1 93.994 -36.4 4.857 5191 no
## 2185 1.1 93.994 -36.4 4.857 5191 no
## 2186 1.1 93.994 -36.4 4.857 5191 no
## 2187 1.1 93.994 -36.4 4.857 5191 no
## 2188 1.1 93.994 -36.4 4.857 5191 no
## 2189 1.1 93.994 -36.4 4.857 5191 no
## 2190 1.1 93.994 -36.4 4.857 5191 no
## 2191 1.1 93.994 -36.4 4.857 5191 no
## 2192 1.1 93.994 -36.4 4.857 5191 no
## 2193 1.1 93.994 -36.4 4.857 5191 no
## 2194 1.1 93.994 -36.4 4.857 5191 no
## 2195 1.1 93.994 -36.4 4.857 5191 no
## 2196 1.1 93.994 -36.4 4.857 5191 no
## 2197 1.1 93.994 -36.4 4.857 5191 no
## 2198 1.1 93.994 -36.4 4.857 5191 no
## 2199 1.1 93.994 -36.4 4.857 5191 no
## 2201 1.1 93.994 -36.4 4.857 5191 no
## 2202 1.1 93.994 -36.4 4.857 5191 no
## 2203 1.1 93.994 -36.4 4.857 5191 no
## 2206 1.1 93.994 -36.4 4.857 5191 no
## 2207 1.1 93.994 -36.4 4.857 5191 no
## 2209 1.1 93.994 -36.4 4.857 5191 no
## 2210 1.1 93.994 -36.4 4.857 5191 no
## 2211 1.1 93.994 -36.4 4.857 5191 no
## 2212 1.1 93.994 -36.4 4.857 5191 no
## 2213 1.1 93.994 -36.4 4.857 5191 no
## 2214 1.1 93.994 -36.4 4.857 5191 no
## 2215 1.1 93.994 -36.4 4.857 5191 no
## 2216 1.1 93.994 -36.4 4.857 5191 no
## 2217 1.1 93.994 -36.4 4.857 5191 no
## 2218 1.1 93.994 -36.4 4.857 5191 no
## 2219 1.1 93.994 -36.4 4.857 5191 no
## 2220 1.1 93.994 -36.4 4.857 5191 no
## 2221 1.1 93.994 -36.4 4.857 5191 no
## 2223 1.1 93.994 -36.4 4.857 5191 no
## 2224 1.1 93.994 -36.4 4.857 5191 no
## 2226 1.1 93.994 -36.4 4.857 5191 no
## 2227 1.1 93.994 -36.4 4.857 5191 no
## 2229 1.1 93.994 -36.4 4.857 5191 no
## 2231 1.1 93.994 -36.4 4.857 5191 no
## 2232 1.1 93.994 -36.4 4.857 5191 no
## 2234 1.1 93.994 -36.4 4.857 5191 no
## 2235 1.1 93.994 -36.4 4.857 5191 no
## 2238 1.1 93.994 -36.4 4.857 5191 no
## 2239 1.1 93.994 -36.4 4.857 5191 no
## 2240 1.1 93.994 -36.4 4.857 5191 no
## 2241 1.1 93.994 -36.4 4.857 5191 no
## 2242 1.1 93.994 -36.4 4.857 5191 no
## 2243 1.1 93.994 -36.4 4.857 5191 no
## 2245 1.1 93.994 -36.4 4.857 5191 no
## 2246 1.1 93.994 -36.4 4.857 5191 no
## 2247 1.1 93.994 -36.4 4.857 5191 no
## 2248 1.1 93.994 -36.4 4.856 5191 no
## 2249 1.1 93.994 -36.4 4.856 5191 no
## 2250 1.1 93.994 -36.4 4.856 5191 no
## 2251 1.1 93.994 -36.4 4.856 5191 no
## 2255 1.1 93.994 -36.4 4.856 5191 no
## 2256 1.1 93.994 -36.4 4.856 5191 no
## 2257 1.1 93.994 -36.4 4.856 5191 no
## 2258 1.1 93.994 -36.4 4.856 5191 yes
## 2259 1.1 93.994 -36.4 4.856 5191 no
## 2260 1.1 93.994 -36.4 4.856 5191 no
## 2261 1.1 93.994 -36.4 4.856 5191 no
## 2262 1.1 93.994 -36.4 4.856 5191 no
## 2263 1.1 93.994 -36.4 4.856 5191 no
## 2265 1.1 93.994 -36.4 4.856 5191 no
## 2266 1.1 93.994 -36.4 4.856 5191 no
## 2267 1.1 93.994 -36.4 4.856 5191 no
## 2268 1.1 93.994 -36.4 4.856 5191 no
## 2269 1.1 93.994 -36.4 4.856 5191 no
## 2271 1.1 93.994 -36.4 4.856 5191 no
## 2272 1.1 93.994 -36.4 4.856 5191 no
## 2273 1.1 93.994 -36.4 4.856 5191 no
## 2274 1.1 93.994 -36.4 4.856 5191 no
## 2275 1.1 93.994 -36.4 4.856 5191 no
## 2276 1.1 93.994 -36.4 4.856 5191 yes
## 2277 1.1 93.994 -36.4 4.856 5191 no
## 2278 1.1 93.994 -36.4 4.856 5191 no
## 2280 1.1 93.994 -36.4 4.856 5191 no
## 2281 1.1 93.994 -36.4 4.856 5191 no
## 2282 1.1 93.994 -36.4 4.856 5191 no
## 2283 1.1 93.994 -36.4 4.856 5191 no
## 2284 1.1 93.994 -36.4 4.856 5191 no
## 2285 1.1 93.994 -36.4 4.856 5191 no
## 2286 1.1 93.994 -36.4 4.856 5191 no
## 2287 1.1 93.994 -36.4 4.856 5191 no
## 2288 1.1 93.994 -36.4 4.856 5191 no
## 2289 1.1 93.994 -36.4 4.856 5191 no
## 2290 1.1 93.994 -36.4 4.856 5191 no
## 2292 1.1 93.994 -36.4 4.856 5191 no
## 2294 1.1 93.994 -36.4 4.856 5191 no
## 2296 1.1 93.994 -36.4 4.856 5191 no
## 2297 1.1 93.994 -36.4 4.856 5191 no
## 2298 1.1 93.994 -36.4 4.856 5191 no
## 2299 1.1 93.994 -36.4 4.856 5191 no
## 2300 1.1 93.994 -36.4 4.856 5191 no
## 2301 1.1 93.994 -36.4 4.856 5191 no
## 2302 1.1 93.994 -36.4 4.856 5191 no
## 2303 1.1 93.994 -36.4 4.856 5191 no
## 2304 1.1 93.994 -36.4 4.856 5191 no
## 2305 1.1 93.994 -36.4 4.856 5191 no
## 2306 1.1 93.994 -36.4 4.856 5191 yes
## 2307 1.1 93.994 -36.4 4.856 5191 no
## 2309 1.1 93.994 -36.4 4.856 5191 no
## 2311 1.1 93.994 -36.4 4.856 5191 no
## 2313 1.1 93.994 -36.4 4.856 5191 no
## 2314 1.1 93.994 -36.4 4.856 5191 no
## 2315 1.1 93.994 -36.4 4.856 5191 no
## 2316 1.1 93.994 -36.4 4.856 5191 yes
## 2317 1.1 93.994 -36.4 4.856 5191 yes
## 2318 1.1 93.994 -36.4 4.856 5191 no
## 2320 1.1 93.994 -36.4 4.856 5191 no
## 2321 1.1 93.994 -36.4 4.856 5191 no
## 2322 1.1 93.994 -36.4 4.856 5191 no
## 2323 1.1 93.994 -36.4 4.856 5191 no
## 2324 1.1 93.994 -36.4 4.856 5191 no
## 2325 1.1 93.994 -36.4 4.856 5191 no
## 2328 1.1 93.994 -36.4 4.856 5191 no
## 2329 1.1 93.994 -36.4 4.856 5191 no
## 2330 1.1 93.994 -36.4 4.856 5191 no
## 2331 1.1 93.994 -36.4 4.856 5191 yes
## 2333 1.1 93.994 -36.4 4.856 5191 no
## 2335 1.1 93.994 -36.4 4.856 5191 no
## 2336 1.1 93.994 -36.4 4.856 5191 no
## 2337 1.1 93.994 -36.4 4.856 5191 no
## 2338 1.1 93.994 -36.4 4.856 5191 no
## 2339 1.1 93.994 -36.4 4.856 5191 no
## 2340 1.1 93.994 -36.4 4.856 5191 no
## 2341 1.1 93.994 -36.4 4.856 5191 no
## 2344 1.1 93.994 -36.4 4.856 5191 no
## 2345 1.1 93.994 -36.4 4.856 5191 no
## 2347 1.1 93.994 -36.4 4.856 5191 no
## 2349 1.1 93.994 -36.4 4.856 5191 no
## 2351 1.1 93.994 -36.4 4.856 5191 no
## 2352 1.1 93.994 -36.4 4.856 5191 no
## 2353 1.1 93.994 -36.4 4.856 5191 no
## 2354 1.1 93.994 -36.4 4.856 5191 no
## 2356 1.1 93.994 -36.4 4.856 5191 no
## 2357 1.1 93.994 -36.4 4.856 5191 no
## 2358 1.1 93.994 -36.4 4.856 5191 no
## 2359 1.1 93.994 -36.4 4.856 5191 no
## 2360 1.1 93.994 -36.4 4.856 5191 no
## 2361 1.1 93.994 -36.4 4.856 5191 no
## 2362 1.1 93.994 -36.4 4.856 5191 no
## 2363 1.1 93.994 -36.4 4.856 5191 no
## 2365 1.1 93.994 -36.4 4.856 5191 no
## 2366 1.1 93.994 -36.4 4.856 5191 no
## 2367 1.1 93.994 -36.4 4.856 5191 no
## 2368 1.1 93.994 -36.4 4.856 5191 no
## 2369 1.1 93.994 -36.4 4.856 5191 no
## 2371 1.1 93.994 -36.4 4.856 5191 no
## 2372 1.1 93.994 -36.4 4.856 5191 no
## 2373 1.1 93.994 -36.4 4.856 5191 no
## 2374 1.1 93.994 -36.4 4.856 5191 no
## 2376 1.1 93.994 -36.4 4.856 5191 no
## 2377 1.1 93.994 -36.4 4.856 5191 no
## 2378 1.1 93.994 -36.4 4.856 5191 no
## 2379 1.1 93.994 -36.4 4.856 5191 no
## 2380 1.1 93.994 -36.4 4.856 5191 no
## 2381 1.1 93.994 -36.4 4.856 5191 no
## 2382 1.1 93.994 -36.4 4.856 5191 no
## 2383 1.1 93.994 -36.4 4.856 5191 no
## 2384 1.1 93.994 -36.4 4.856 5191 no
## 2388 1.1 93.994 -36.4 4.856 5191 no
## 2390 1.1 93.994 -36.4 4.856 5191 no
## 2391 1.1 93.994 -36.4 4.856 5191 no
## 2392 1.1 93.994 -36.4 4.856 5191 no
## 2393 1.1 93.994 -36.4 4.856 5191 no
## 2395 1.1 93.994 -36.4 4.856 5191 no
## 2396 1.1 93.994 -36.4 4.856 5191 no
## 2397 1.1 93.994 -36.4 4.856 5191 no
## 2398 1.1 93.994 -36.4 4.856 5191 no
## 2399 1.1 93.994 -36.4 4.856 5191 no
## 2401 1.1 93.994 -36.4 4.856 5191 no
## 2402 1.1 93.994 -36.4 4.856 5191 no
## 2403 1.1 93.994 -36.4 4.856 5191 no
## 2404 1.1 93.994 -36.4 4.856 5191 no
## 2405 1.1 93.994 -36.4 4.856 5191 no
## 2406 1.1 93.994 -36.4 4.856 5191 no
## 2407 1.1 93.994 -36.4 4.856 5191 yes
## 2408 1.1 93.994 -36.4 4.856 5191 no
## 2409 1.1 93.994 -36.4 4.856 5191 no
## 2410 1.1 93.994 -36.4 4.856 5191 no
## 2411 1.1 93.994 -36.4 4.856 5191 no
## 2413 1.1 93.994 -36.4 4.856 5191 no
## 2415 1.1 93.994 -36.4 4.856 5191 no
## 2416 1.1 93.994 -36.4 4.856 5191 no
## 2417 1.1 93.994 -36.4 4.856 5191 no
## 2418 1.1 93.994 -36.4 4.856 5191 yes
## 2419 1.1 93.994 -36.4 4.856 5191 no
## 2421 1.1 93.994 -36.4 4.856 5191 no
## 2422 1.1 93.994 -36.4 4.856 5191 yes
## 2423 1.1 93.994 -36.4 4.856 5191 no
## 2425 1.1 93.994 -36.4 4.856 5191 yes
## 2426 1.1 93.994 -36.4 4.856 5191 no
## 2428 1.1 93.994 -36.4 4.856 5191 no
## 2429 1.1 93.994 -36.4 4.856 5191 no
## 2430 1.1 93.994 -36.4 4.856 5191 no
## 2431 1.1 93.994 -36.4 4.856 5191 no
## 2432 1.1 93.994 -36.4 4.856 5191 no
## 2433 1.1 93.994 -36.4 4.856 5191 no
## 2434 1.1 93.994 -36.4 4.856 5191 no
## 2435 1.1 93.994 -36.4 4.856 5191 no
## 2436 1.1 93.994 -36.4 4.856 5191 no
## 2437 1.1 93.994 -36.4 4.856 5191 no
## 2438 1.1 93.994 -36.4 4.856 5191 no
## 2439 1.1 93.994 -36.4 4.856 5191 no
## 2440 1.1 93.994 -36.4 4.856 5191 no
## 2441 1.1 93.994 -36.4 4.856 5191 no
## 2442 1.1 93.994 -36.4 4.856 5191 no
## 2444 1.1 93.994 -36.4 4.856 5191 no
## 2446 1.1 93.994 -36.4 4.856 5191 no
## 2447 1.1 93.994 -36.4 4.856 5191 no
## 2448 1.1 93.994 -36.4 4.856 5191 no
## 2450 1.1 93.994 -36.4 4.856 5191 yes
## 2452 1.1 93.994 -36.4 4.856 5191 no
## 2453 1.1 93.994 -36.4 4.856 5191 no
## 2454 1.1 93.994 -36.4 4.856 5191 no
## 2455 1.1 93.994 -36.4 4.856 5191 no
## 2456 1.1 93.994 -36.4 4.856 5191 no
## 2458 1.1 93.994 -36.4 4.856 5191 no
## 2459 1.1 93.994 -36.4 4.856 5191 no
## 2461 1.1 93.994 -36.4 4.856 5191 no
## 2462 1.1 93.994 -36.4 4.856 5191 no
## 2463 1.1 93.994 -36.4 4.856 5191 no
## 2464 1.1 93.994 -36.4 4.856 5191 no
## 2465 1.1 93.994 -36.4 4.856 5191 no
## 2466 1.1 93.994 -36.4 4.856 5191 no
## 2467 1.1 93.994 -36.4 4.856 5191 no
## 2470 1.1 93.994 -36.4 4.856 5191 no
## 2471 1.1 93.994 -36.4 4.856 5191 no
## 2472 1.1 93.994 -36.4 4.856 5191 no
## 2473 1.1 93.994 -36.4 4.856 5191 no
## 2474 1.1 93.994 -36.4 4.856 5191 yes
## 2475 1.1 93.994 -36.4 4.856 5191 no
## 2476 1.1 93.994 -36.4 4.856 5191 no
## 2477 1.1 93.994 -36.4 4.856 5191 no
## 2478 1.1 93.994 -36.4 4.856 5191 no
## 2479 1.1 93.994 -36.4 4.856 5191 no
## 2480 1.1 93.994 -36.4 4.856 5191 no
## 2481 1.1 93.994 -36.4 4.856 5191 no
## 2482 1.1 93.994 -36.4 4.856 5191 no
## 2483 1.1 93.994 -36.4 4.856 5191 no
## 2484 1.1 93.994 -36.4 4.856 5191 no
## 2486 1.1 93.994 -36.4 4.856 5191 no
## 2488 1.1 93.994 -36.4 4.856 5191 no
## 2489 1.1 93.994 -36.4 4.856 5191 no
## 2490 1.1 93.994 -36.4 4.856 5191 no
## 2491 1.1 93.994 -36.4 4.856 5191 no
## 2493 1.1 93.994 -36.4 4.856 5191 no
## 2494 1.1 93.994 -36.4 4.856 5191 no
## 2495 1.1 93.994 -36.4 4.856 5191 no
## 2496 1.1 93.994 -36.4 4.856 5191 no
## 2497 1.1 93.994 -36.4 4.856 5191 no
## 2498 1.1 93.994 -36.4 4.856 5191 no
## 2499 1.1 93.994 -36.4 4.856 5191 no
## 2502 1.1 93.994 -36.4 4.856 5191 no
## 2504 1.1 93.994 -36.4 4.856 5191 no
## 2505 1.1 93.994 -36.4 4.856 5191 no
## 2506 1.1 93.994 -36.4 4.856 5191 no
## 2507 1.1 93.994 -36.4 4.856 5191 no
## 2509 1.1 93.994 -36.4 4.856 5191 no
## 2510 1.1 93.994 -36.4 4.856 5191 no
## 2511 1.1 93.994 -36.4 4.856 5191 no
## 2512 1.1 93.994 -36.4 4.856 5191 no
## 2513 1.1 93.994 -36.4 4.856 5191 no
## 2514 1.1 93.994 -36.4 4.856 5191 no
## 2515 1.1 93.994 -36.4 4.856 5191 no
## 2517 1.1 93.994 -36.4 4.856 5191 no
## 2518 1.1 93.994 -36.4 4.856 5191 no
## 2519 1.1 93.994 -36.4 4.856 5191 no
## 2520 1.1 93.994 -36.4 4.856 5191 no
## 2522 1.1 93.994 -36.4 4.856 5191 no
## 2523 1.1 93.994 -36.4 4.856 5191 no
## 2524 1.1 93.994 -36.4 4.856 5191 no
## 2525 1.1 93.994 -36.4 4.856 5191 no
## 2526 1.1 93.994 -36.4 4.856 5191 no
## 2527 1.1 93.994 -36.4 4.856 5191 no
## 2528 1.1 93.994 -36.4 4.856 5191 no
## 2529 1.1 93.994 -36.4 4.856 5191 no
## 2530 1.1 93.994 -36.4 4.856 5191 no
## 2532 1.1 93.994 -36.4 4.856 5191 no
## 2535 1.1 93.994 -36.4 4.856 5191 no
## 2536 1.1 93.994 -36.4 4.856 5191 no
## 2538 1.1 93.994 -36.4 4.856 5191 no
## 2539 1.1 93.994 -36.4 4.856 5191 no
## 2540 1.1 93.994 -36.4 4.856 5191 no
## 2542 1.1 93.994 -36.4 4.856 5191 no
## 2543 1.1 93.994 -36.4 4.856 5191 no
## 2544 1.1 93.994 -36.4 4.856 5191 no
## 2545 1.1 93.994 -36.4 4.856 5191 no
## 2546 1.1 93.994 -36.4 4.856 5191 no
## 2547 1.1 93.994 -36.4 4.856 5191 no
## 2549 1.1 93.994 -36.4 4.856 5191 no
## 2550 1.1 93.994 -36.4 4.856 5191 no
## 2552 1.1 93.994 -36.4 4.856 5191 no
## 2553 1.1 93.994 -36.4 4.856 5191 no
## 2554 1.1 93.994 -36.4 4.856 5191 no
## 2555 1.1 93.994 -36.4 4.856 5191 no
## 2556 1.1 93.994 -36.4 4.856 5191 no
## 2557 1.1 93.994 -36.4 4.856 5191 no
## 2558 1.1 93.994 -36.4 4.856 5191 no
## 2559 1.1 93.994 -36.4 4.856 5191 no
## 2561 1.1 93.994 -36.4 4.856 5191 no
## 2562 1.1 93.994 -36.4 4.856 5191 no
## 2563 1.1 93.994 -36.4 4.856 5191 no
## 2565 1.1 93.994 -36.4 4.856 5191 no
## 2567 1.1 93.994 -36.4 4.856 5191 no
## 2568 1.1 93.994 -36.4 4.856 5191 no
## 2569 1.1 93.994 -36.4 4.856 5191 no
## 2570 1.1 93.994 -36.4 4.856 5191 no
## 2571 1.1 93.994 -36.4 4.856 5191 no
## 2573 1.1 93.994 -36.4 4.856 5191 no
## 2574 1.1 93.994 -36.4 4.856 5191 no
## 2575 1.1 93.994 -36.4 4.856 5191 no
## 2577 1.1 93.994 -36.4 4.856 5191 no
## 2578 1.1 93.994 -36.4 4.856 5191 no
## 2580 1.1 93.994 -36.4 4.856 5191 no
## 2581 1.1 93.994 -36.4 4.856 5191 no
## 2582 1.1 93.994 -36.4 4.856 5191 no
## 2583 1.1 93.994 -36.4 4.856 5191 no
## 2584 1.1 93.994 -36.4 4.856 5191 no
## 2588 1.1 93.994 -36.4 4.856 5191 no
## 2589 1.1 93.994 -36.4 4.856 5191 no
## 2590 1.1 93.994 -36.4 4.856 5191 no
## 2591 1.1 93.994 -36.4 4.856 5191 no
## 2592 1.1 93.994 -36.4 4.856 5191 no
## 2594 1.1 93.994 -36.4 4.856 5191 no
## 2595 1.1 93.994 -36.4 4.856 5191 no
## 2596 1.1 93.994 -36.4 4.856 5191 no
## 2598 1.1 93.994 -36.4 4.856 5191 no
## 2599 1.1 93.994 -36.4 4.856 5191 no
## 2601 1.1 93.994 -36.4 4.856 5191 no
## 2602 1.1 93.994 -36.4 4.856 5191 no
## 2603 1.1 93.994 -36.4 4.856 5191 no
## 2604 1.1 93.994 -36.4 4.856 5191 no
## 2605 1.1 93.994 -36.4 4.856 5191 no
## 2606 1.1 93.994 -36.4 4.856 5191 no
## 2607 1.1 93.994 -36.4 4.856 5191 no
## 2608 1.1 93.994 -36.4 4.856 5191 no
## 2609 1.1 93.994 -36.4 4.856 5191 no
## 2610 1.1 93.994 -36.4 4.856 5191 no
## 2611 1.1 93.994 -36.4 4.856 5191 no
## 2612 1.1 93.994 -36.4 4.856 5191 no
## 2613 1.1 93.994 -36.4 4.856 5191 no
## 2614 1.1 93.994 -36.4 4.856 5191 no
## 2615 1.1 93.994 -36.4 4.856 5191 no
## 2616 1.1 93.994 -36.4 4.856 5191 no
## 2617 1.1 93.994 -36.4 4.856 5191 no
## 2618 1.1 93.994 -36.4 4.856 5191 no
## 2619 1.1 93.994 -36.4 4.856 5191 no
## 2622 1.1 93.994 -36.4 4.856 5191 no
## 2623 1.1 93.994 -36.4 4.856 5191 no
## 2624 1.1 93.994 -36.4 4.856 5191 no
## 2625 1.1 93.994 -36.4 4.856 5191 no
## 2626 1.1 93.994 -36.4 4.856 5191 no
## 2627 1.1 93.994 -36.4 4.856 5191 no
## 2629 1.1 93.994 -36.4 4.856 5191 no
## 2630 1.1 93.994 -36.4 4.856 5191 no
## 2631 1.1 93.994 -36.4 4.856 5191 no
## 2633 1.1 93.994 -36.4 4.856 5191 no
## 2634 1.1 93.994 -36.4 4.856 5191 no
## 2635 1.1 93.994 -36.4 4.856 5191 no
## 2637 1.1 93.994 -36.4 4.856 5191 no
## 2638 1.1 93.994 -36.4 4.856 5191 no
## 2639 1.1 93.994 -36.4 4.856 5191 no
## 2640 1.1 93.994 -36.4 4.856 5191 no
## 2641 1.1 93.994 -36.4 4.856 5191 no
## 2643 1.1 93.994 -36.4 4.856 5191 no
## 2644 1.1 93.994 -36.4 4.856 5191 no
## 2645 1.1 93.994 -36.4 4.856 5191 no
## 2648 1.1 93.994 -36.4 4.856 5191 no
## 2649 1.1 93.994 -36.4 4.856 5191 no
## 2650 1.1 93.994 -36.4 4.856 5191 no
## 2651 1.1 93.994 -36.4 4.856 5191 no
## 2652 1.1 93.994 -36.4 4.856 5191 no
## 2653 1.1 93.994 -36.4 4.856 5191 no
## 2654 1.1 93.994 -36.4 4.856 5191 no
## 2655 1.1 93.994 -36.4 4.856 5191 no
## 2656 1.1 93.994 -36.4 4.859 5191 no
## 2657 1.1 93.994 -36.4 4.859 5191 no
## 2658 1.1 93.994 -36.4 4.859 5191 no
## 2659 1.1 93.994 -36.4 4.859 5191 no
## 2661 1.1 93.994 -36.4 4.859 5191 no
## 2662 1.1 93.994 -36.4 4.859 5191 no
## 2665 1.1 93.994 -36.4 4.859 5191 no
## 2666 1.1 93.994 -36.4 4.859 5191 no
## 2667 1.1 93.994 -36.4 4.859 5191 no
## 2668 1.1 93.994 -36.4 4.859 5191 no
## 2669 1.1 93.994 -36.4 4.859 5191 no
## 2670 1.1 93.994 -36.4 4.859 5191 no
## 2671 1.1 93.994 -36.4 4.859 5191 no
## 2672 1.1 93.994 -36.4 4.859 5191 no
## 2673 1.1 93.994 -36.4 4.859 5191 no
## 2676 1.1 93.994 -36.4 4.859 5191 no
## 2677 1.1 93.994 -36.4 4.859 5191 no
## 2678 1.1 93.994 -36.4 4.859 5191 no
## 2679 1.1 93.994 -36.4 4.859 5191 no
## 2680 1.1 93.994 -36.4 4.859 5191 no
## 2681 1.1 93.994 -36.4 4.859 5191 no
## 2682 1.1 93.994 -36.4 4.859 5191 no
## 2683 1.1 93.994 -36.4 4.859 5191 no
## 2684 1.1 93.994 -36.4 4.859 5191 no
## 2685 1.1 93.994 -36.4 4.859 5191 yes
## 2686 1.1 93.994 -36.4 4.859 5191 no
## 2687 1.1 93.994 -36.4 4.859 5191 no
## 2689 1.1 93.994 -36.4 4.859 5191 no
## 2690 1.1 93.994 -36.4 4.859 5191 no
## 2691 1.1 93.994 -36.4 4.859 5191 no
## 2692 1.1 93.994 -36.4 4.859 5191 no
## 2693 1.1 93.994 -36.4 4.859 5191 no
## 2695 1.1 93.994 -36.4 4.859 5191 no
## 2696 1.1 93.994 -36.4 4.859 5191 no
## 2697 1.1 93.994 -36.4 4.859 5191 no
## 2699 1.1 93.994 -36.4 4.859 5191 no
## 2700 1.1 93.994 -36.4 4.859 5191 no
## 2701 1.1 93.994 -36.4 4.859 5191 no
## 2703 1.1 93.994 -36.4 4.859 5191 no
## 2706 1.1 93.994 -36.4 4.859 5191 no
## 2707 1.1 93.994 -36.4 4.859 5191 no
## 2708 1.1 93.994 -36.4 4.859 5191 no
## 2709 1.1 93.994 -36.4 4.859 5191 no
## 2710 1.1 93.994 -36.4 4.859 5191 no
## 2712 1.1 93.994 -36.4 4.859 5191 no
## 2713 1.1 93.994 -36.4 4.859 5191 no
## 2714 1.1 93.994 -36.4 4.859 5191 yes
## 2715 1.1 93.994 -36.4 4.859 5191 no
## 2717 1.1 93.994 -36.4 4.859 5191 no
## 2718 1.1 93.994 -36.4 4.859 5191 no
## 2719 1.1 93.994 -36.4 4.859 5191 no
## 2720 1.1 93.994 -36.4 4.859 5191 no
## 2721 1.1 93.994 -36.4 4.859 5191 no
## 2724 1.1 93.994 -36.4 4.859 5191 no
## 2725 1.1 93.994 -36.4 4.859 5191 no
## 2727 1.1 93.994 -36.4 4.859 5191 no
## 2728 1.1 93.994 -36.4 4.859 5191 no
## 2729 1.1 93.994 -36.4 4.859 5191 no
## 2730 1.1 93.994 -36.4 4.859 5191 no
## 2731 1.1 93.994 -36.4 4.859 5191 no
## 2733 1.1 93.994 -36.4 4.859 5191 no
## 2734 1.1 93.994 -36.4 4.859 5191 no
## 2735 1.1 93.994 -36.4 4.859 5191 no
## 2736 1.1 93.994 -36.4 4.859 5191 no
## 2737 1.1 93.994 -36.4 4.859 5191 no
## 2738 1.1 93.994 -36.4 4.859 5191 no
## 2739 1.1 93.994 -36.4 4.859 5191 no
## 2740 1.1 93.994 -36.4 4.859 5191 no
## 2741 1.1 93.994 -36.4 4.859 5191 no
## 2743 1.1 93.994 -36.4 4.859 5191 no
## 2744 1.1 93.994 -36.4 4.859 5191 no
## 2745 1.1 93.994 -36.4 4.859 5191 yes
## 2746 1.1 93.994 -36.4 4.859 5191 no
## 2747 1.1 93.994 -36.4 4.859 5191 no
## 2748 1.1 93.994 -36.4 4.859 5191 no
## 2751 1.1 93.994 -36.4 4.859 5191 no
## 2753 1.1 93.994 -36.4 4.859 5191 no
## 2756 1.1 93.994 -36.4 4.859 5191 yes
## 2757 1.1 93.994 -36.4 4.859 5191 no
## 2758 1.1 93.994 -36.4 4.859 5191 no
## 2759 1.1 93.994 -36.4 4.859 5191 no
## 2760 1.1 93.994 -36.4 4.859 5191 no
## 2761 1.1 93.994 -36.4 4.859 5191 no
## 2762 1.1 93.994 -36.4 4.859 5191 no
## 2763 1.1 93.994 -36.4 4.859 5191 no
## 2765 1.1 93.994 -36.4 4.859 5191 no
## 2767 1.1 93.994 -36.4 4.859 5191 no
## 2768 1.1 93.994 -36.4 4.859 5191 no
## 2769 1.1 93.994 -36.4 4.859 5191 no
## 2770 1.1 93.994 -36.4 4.859 5191 no
## 2773 1.1 93.994 -36.4 4.859 5191 no
## 2774 1.1 93.994 -36.4 4.859 5191 no
## 2775 1.1 93.994 -36.4 4.859 5191 no
## 2776 1.1 93.994 -36.4 4.859 5191 yes
## 2779 1.1 93.994 -36.4 4.859 5191 no
## 2780 1.1 93.994 -36.4 4.859 5191 yes
## 2781 1.1 93.994 -36.4 4.859 5191 no
## 2782 1.1 93.994 -36.4 4.859 5191 no
## 2785 1.1 93.994 -36.4 4.859 5191 no
## 2786 1.1 93.994 -36.4 4.859 5191 no
## 2787 1.1 93.994 -36.4 4.859 5191 no
## 2788 1.1 93.994 -36.4 4.859 5191 no
## 2790 1.1 93.994 -36.4 4.859 5191 no
## 2791 1.1 93.994 -36.4 4.859 5191 no
## 2792 1.1 93.994 -36.4 4.859 5191 no
## 2793 1.1 93.994 -36.4 4.859 5191 no
## 2794 1.1 93.994 -36.4 4.859 5191 no
## 2795 1.1 93.994 -36.4 4.859 5191 no
## 2796 1.1 93.994 -36.4 4.859 5191 no
## 2797 1.1 93.994 -36.4 4.859 5191 no
## 2799 1.1 93.994 -36.4 4.859 5191 no
## 2801 1.1 93.994 -36.4 4.859 5191 no
## 2802 1.1 93.994 -36.4 4.859 5191 no
## 2803 1.1 93.994 -36.4 4.859 5191 no
## 2804 1.1 93.994 -36.4 4.859 5191 no
## 2805 1.1 93.994 -36.4 4.859 5191 no
## 2806 1.1 93.994 -36.4 4.859 5191 no
## 2807 1.1 93.994 -36.4 4.859 5191 no
## 2808 1.1 93.994 -36.4 4.859 5191 no
## 2809 1.1 93.994 -36.4 4.859 5191 no
## 2810 1.1 93.994 -36.4 4.859 5191 no
## 2811 1.1 93.994 -36.4 4.859 5191 no
## 2812 1.1 93.994 -36.4 4.859 5191 no
## 2814 1.1 93.994 -36.4 4.859 5191 no
## 2815 1.1 93.994 -36.4 4.859 5191 no
## 2816 1.1 93.994 -36.4 4.859 5191 no
## 2817 1.1 93.994 -36.4 4.859 5191 no
## 2820 1.1 93.994 -36.4 4.859 5191 no
## 2821 1.1 93.994 -36.4 4.859 5191 no
## 2822 1.1 93.994 -36.4 4.859 5191 no
## 2823 1.1 93.994 -36.4 4.859 5191 no
## 2825 1.1 93.994 -36.4 4.859 5191 no
## 2826 1.1 93.994 -36.4 4.859 5191 no
## 2827 1.1 93.994 -36.4 4.859 5191 no
## 2828 1.1 93.994 -36.4 4.859 5191 no
## 2830 1.1 93.994 -36.4 4.859 5191 no
## 2831 1.1 93.994 -36.4 4.859 5191 no
## 2832 1.1 93.994 -36.4 4.859 5191 no
## 2833 1.1 93.994 -36.4 4.859 5191 no
## 2834 1.1 93.994 -36.4 4.859 5191 no
## 2835 1.1 93.994 -36.4 4.859 5191 no
## 2836 1.1 93.994 -36.4 4.859 5191 no
## 2837 1.1 93.994 -36.4 4.859 5191 no
## 2838 1.1 93.994 -36.4 4.859 5191 no
## 2842 1.1 93.994 -36.4 4.859 5191 no
## 2843 1.1 93.994 -36.4 4.859 5191 no
## 2845 1.1 93.994 -36.4 4.859 5191 no
## 2846 1.1 93.994 -36.4 4.859 5191 no
## 2847 1.1 93.994 -36.4 4.859 5191 no
## 2848 1.1 93.994 -36.4 4.859 5191 no
## 2849 1.1 93.994 -36.4 4.859 5191 no
## 2850 1.1 93.994 -36.4 4.859 5191 no
## 2852 1.1 93.994 -36.4 4.859 5191 no
## 2853 1.1 93.994 -36.4 4.859 5191 no
## 2854 1.1 93.994 -36.4 4.859 5191 yes
## 2855 1.1 93.994 -36.4 4.859 5191 no
## 2856 1.1 93.994 -36.4 4.859 5191 no
## 2857 1.1 93.994 -36.4 4.859 5191 no
## 2859 1.1 93.994 -36.4 4.859 5191 no
## 2860 1.1 93.994 -36.4 4.859 5191 no
## 2862 1.1 93.994 -36.4 4.859 5191 no
## 2864 1.1 93.994 -36.4 4.859 5191 no
## 2865 1.1 93.994 -36.4 4.859 5191 no
## 2867 1.1 93.994 -36.4 4.859 5191 no
## 2868 1.1 93.994 -36.4 4.859 5191 no
## 2870 1.1 93.994 -36.4 4.859 5191 no
## 2871 1.1 93.994 -36.4 4.859 5191 no
## 2872 1.1 93.994 -36.4 4.859 5191 no
## 2873 1.1 93.994 -36.4 4.859 5191 no
## 2874 1.1 93.994 -36.4 4.859 5191 no
## 2875 1.1 93.994 -36.4 4.859 5191 no
## 2876 1.1 93.994 -36.4 4.859 5191 no
## 2878 1.1 93.994 -36.4 4.859 5191 no
## 2880 1.1 93.994 -36.4 4.859 5191 no
## 2881 1.1 93.994 -36.4 4.859 5191 no
## 2882 1.1 93.994 -36.4 4.859 5191 no
## 2883 1.1 93.994 -36.4 4.859 5191 no
## 2884 1.1 93.994 -36.4 4.859 5191 no
## 2887 1.1 93.994 -36.4 4.859 5191 no
## 2888 1.1 93.994 -36.4 4.859 5191 no
## 2890 1.1 93.994 -36.4 4.859 5191 no
## 2891 1.1 93.994 -36.4 4.859 5191 no
## 2894 1.1 93.994 -36.4 4.859 5191 no
## 2895 1.1 93.994 -36.4 4.859 5191 no
## 2896 1.1 93.994 -36.4 4.859 5191 no
## 2897 1.1 93.994 -36.4 4.859 5191 no
## 2898 1.1 93.994 -36.4 4.859 5191 no
## 2899 1.1 93.994 -36.4 4.859 5191 no
## 2900 1.1 93.994 -36.4 4.859 5191 no
## 2901 1.1 93.994 -36.4 4.859 5191 no
## 2902 1.1 93.994 -36.4 4.859 5191 no
## 2905 1.1 93.994 -36.4 4.859 5191 no
## 2907 1.1 93.994 -36.4 4.859 5191 no
## 2908 1.1 93.994 -36.4 4.859 5191 no
## 2909 1.1 93.994 -36.4 4.859 5191 no
## 2910 1.1 93.994 -36.4 4.859 5191 no
## 2911 1.1 93.994 -36.4 4.859 5191 no
## 2912 1.1 93.994 -36.4 4.859 5191 no
## 2913 1.1 93.994 -36.4 4.859 5191 no
## 2916 1.1 93.994 -36.4 4.859 5191 no
## 2917 1.1 93.994 -36.4 4.859 5191 no
## 2918 1.1 93.994 -36.4 4.859 5191 no
## 2919 1.1 93.994 -36.4 4.859 5191 no
## 2920 1.1 93.994 -36.4 4.859 5191 no
## 2921 1.1 93.994 -36.4 4.859 5191 no
## 2922 1.1 93.994 -36.4 4.859 5191 no
## 2923 1.1 93.994 -36.4 4.859 5191 no
## 2924 1.1 93.994 -36.4 4.859 5191 no
## 2926 1.1 93.994 -36.4 4.859 5191 no
## 2928 1.1 93.994 -36.4 4.859 5191 no
## 2929 1.1 93.994 -36.4 4.859 5191 no
## 2930 1.1 93.994 -36.4 4.859 5191 no
## 2931 1.1 93.994 -36.4 4.859 5191 no
## 2932 1.1 93.994 -36.4 4.859 5191 no
## 2933 1.1 93.994 -36.4 4.859 5191 no
## 2934 1.1 93.994 -36.4 4.859 5191 no
## 2936 1.1 93.994 -36.4 4.859 5191 no
## 2937 1.1 93.994 -36.4 4.859 5191 no
## 2938 1.1 93.994 -36.4 4.859 5191 no
## 2939 1.1 93.994 -36.4 4.859 5191 no
## 2940 1.1 93.994 -36.4 4.859 5191 no
## 2941 1.1 93.994 -36.4 4.859 5191 no
## 2942 1.1 93.994 -36.4 4.859 5191 no
## 2943 1.1 93.994 -36.4 4.859 5191 no
## 2944 1.1 93.994 -36.4 4.859 5191 no
## 2945 1.1 93.994 -36.4 4.859 5191 no
## 2946 1.1 93.994 -36.4 4.859 5191 no
## 2947 1.1 93.994 -36.4 4.859 5191 no
## 2948 1.1 93.994 -36.4 4.859 5191 no
## 2949 1.1 93.994 -36.4 4.859 5191 no
## 2950 1.1 93.994 -36.4 4.859 5191 no
## 2951 1.1 93.994 -36.4 4.859 5191 no
## 2952 1.1 93.994 -36.4 4.859 5191 no
## 2953 1.1 93.994 -36.4 4.859 5191 no
## 2954 1.1 93.994 -36.4 4.859 5191 no
## 2955 1.1 93.994 -36.4 4.859 5191 no
## 2956 1.1 93.994 -36.4 4.859 5191 no
## 2957 1.1 93.994 -36.4 4.859 5191 no
## 2958 1.1 93.994 -36.4 4.859 5191 no
## 2959 1.1 93.994 -36.4 4.859 5191 no
## 2960 1.1 93.994 -36.4 4.859 5191 no
## 2961 1.1 93.994 -36.4 4.859 5191 no
## 2963 1.1 93.994 -36.4 4.859 5191 no
## 2964 1.1 93.994 -36.4 4.859 5191 no
## 2965 1.1 93.994 -36.4 4.859 5191 no
## 2966 1.1 93.994 -36.4 4.859 5191 no
## 2967 1.1 93.994 -36.4 4.859 5191 no
## 2968 1.1 93.994 -36.4 4.859 5191 no
## 2969 1.1 93.994 -36.4 4.859 5191 no
## 2972 1.1 93.994 -36.4 4.859 5191 no
## 2973 1.1 93.994 -36.4 4.859 5191 no
## 2974 1.1 93.994 -36.4 4.859 5191 no
## 2975 1.1 93.994 -36.4 4.859 5191 no
## 2976 1.1 93.994 -36.4 4.859 5191 no
## 2978 1.1 93.994 -36.4 4.859 5191 no
## 2979 1.1 93.994 -36.4 4.859 5191 no
## 2980 1.1 93.994 -36.4 4.859 5191 no
## 2981 1.1 93.994 -36.4 4.859 5191 no
## 2985 1.1 93.994 -36.4 4.859 5191 no
## 2986 1.1 93.994 -36.4 4.859 5191 no
## 2987 1.1 93.994 -36.4 4.859 5191 no
## 2988 1.1 93.994 -36.4 4.859 5191 no
## 2989 1.1 93.994 -36.4 4.859 5191 no
## 2990 1.1 93.994 -36.4 4.859 5191 no
## 2991 1.1 93.994 -36.4 4.859 5191 no
## 2992 1.1 93.994 -36.4 4.859 5191 no
## 2993 1.1 93.994 -36.4 4.859 5191 no
## 2994 1.1 93.994 -36.4 4.859 5191 no
## 2995 1.1 93.994 -36.4 4.859 5191 no
## 2999 1.1 93.994 -36.4 4.859 5191 no
## 3000 1.1 93.994 -36.4 4.859 5191 no
## 3002 1.1 93.994 -36.4 4.859 5191 no
## 3004 1.1 93.994 -36.4 4.859 5191 no
## 3005 1.1 93.994 -36.4 4.859 5191 no
## 3006 1.1 93.994 -36.4 4.859 5191 no
## 3007 1.1 93.994 -36.4 4.859 5191 no
## 3008 1.1 93.994 -36.4 4.859 5191 no
## 3009 1.1 93.994 -36.4 4.859 5191 no
## 3011 1.1 93.994 -36.4 4.859 5191 no
## 3012 1.1 93.994 -36.4 4.859 5191 no
## 3013 1.1 93.994 -36.4 4.859 5191 no
## 3014 1.1 93.994 -36.4 4.859 5191 no
## 3015 1.1 93.994 -36.4 4.859 5191 no
## 3017 1.1 93.994 -36.4 4.859 5191 no
## 3019 1.1 93.994 -36.4 4.859 5191 no
## 3020 1.1 93.994 -36.4 4.859 5191 no
## 3023 1.1 93.994 -36.4 4.859 5191 no
## 3024 1.1 93.994 -36.4 4.859 5191 no
## 3025 1.1 93.994 -36.4 4.859 5191 no
## 3026 1.1 93.994 -36.4 4.859 5191 no
## 3027 1.1 93.994 -36.4 4.859 5191 no
## 3028 1.1 93.994 -36.4 4.859 5191 no
## 3030 1.1 93.994 -36.4 4.859 5191 no
## 3031 1.1 93.994 -36.4 4.859 5191 no
## 3032 1.1 93.994 -36.4 4.859 5191 no
## 3033 1.1 93.994 -36.4 4.859 5191 no
## 3034 1.1 93.994 -36.4 4.859 5191 no
## 3035 1.1 93.994 -36.4 4.859 5191 no
## 3036 1.1 93.994 -36.4 4.859 5191 no
## 3037 1.1 93.994 -36.4 4.859 5191 no
## 3038 1.1 93.994 -36.4 4.859 5191 no
## 3039 1.1 93.994 -36.4 4.859 5191 no
## 3041 1.1 93.994 -36.4 4.859 5191 no
## 3042 1.1 93.994 -36.4 4.859 5191 no
## 3043 1.1 93.994 -36.4 4.859 5191 no
## 3044 1.1 93.994 -36.4 4.859 5191 no
## 3046 1.1 93.994 -36.4 4.859 5191 no
## 3048 1.1 93.994 -36.4 4.859 5191 yes
## 3049 1.1 93.994 -36.4 4.859 5191 no
## 3050 1.1 93.994 -36.4 4.859 5191 no
## 3052 1.1 93.994 -36.4 4.859 5191 no
## 3053 1.1 93.994 -36.4 4.859 5191 no
## 3054 1.1 93.994 -36.4 4.859 5191 no
## 3055 1.1 93.994 -36.4 4.859 5191 no
## 3056 1.1 93.994 -36.4 4.859 5191 no
## 3057 1.1 93.994 -36.4 4.859 5191 no
## 3058 1.1 93.994 -36.4 4.859 5191 no
## 3060 1.1 93.994 -36.4 4.859 5191 no
## 3062 1.1 93.994 -36.4 4.859 5191 no
## 3063 1.1 93.994 -36.4 4.859 5191 no
## 3066 1.1 93.994 -36.4 4.859 5191 no
## 3067 1.1 93.994 -36.4 4.859 5191 no
## 3068 1.1 93.994 -36.4 4.859 5191 no
## 3070 1.1 93.994 -36.4 4.859 5191 no
## 3071 1.1 93.994 -36.4 4.859 5191 no
## 3072 1.1 93.994 -36.4 4.859 5191 no
## 3073 1.1 93.994 -36.4 4.860 5191 no
## 3076 1.1 93.994 -36.4 4.860 5191 no
## 3077 1.1 93.994 -36.4 4.860 5191 no
## 3078 1.1 93.994 -36.4 4.860 5191 no
## 3079 1.1 93.994 -36.4 4.860 5191 no
## 3080 1.1 93.994 -36.4 4.860 5191 no
## 3081 1.1 93.994 -36.4 4.860 5191 no
## 3082 1.1 93.994 -36.4 4.860 5191 no
## 3083 1.1 93.994 -36.4 4.860 5191 no
## 3084 1.1 93.994 -36.4 4.860 5191 no
## 3085 1.1 93.994 -36.4 4.860 5191 no
## 3087 1.1 93.994 -36.4 4.860 5191 no
## 3088 1.1 93.994 -36.4 4.860 5191 no
## 3089 1.1 93.994 -36.4 4.860 5191 no
## 3090 1.1 93.994 -36.4 4.860 5191 no
## 3091 1.1 93.994 -36.4 4.860 5191 yes
## 3092 1.1 93.994 -36.4 4.860 5191 no
## 3093 1.1 93.994 -36.4 4.860 5191 no
## 3096 1.1 93.994 -36.4 4.860 5191 no
## 3097 1.1 93.994 -36.4 4.860 5191 no
## 3098 1.1 93.994 -36.4 4.860 5191 no
## 3100 1.1 93.994 -36.4 4.860 5191 no
## 3102 1.1 93.994 -36.4 4.860 5191 no
## 3104 1.1 93.994 -36.4 4.860 5191 no
## 3106 1.1 93.994 -36.4 4.860 5191 no
## 3107 1.1 93.994 -36.4 4.860 5191 no
## 3108 1.1 93.994 -36.4 4.860 5191 no
## 3110 1.1 93.994 -36.4 4.860 5191 no
## 3115 1.1 93.994 -36.4 4.860 5191 no
## 3116 1.1 93.994 -36.4 4.860 5191 no
## 3117 1.1 93.994 -36.4 4.860 5191 no
## 3118 1.1 93.994 -36.4 4.860 5191 no
## 3119 1.1 93.994 -36.4 4.860 5191 no
## 3120 1.1 93.994 -36.4 4.860 5191 no
## 3124 1.1 93.994 -36.4 4.860 5191 no
## 3127 1.1 93.994 -36.4 4.860 5191 no
## 3128 1.1 93.994 -36.4 4.860 5191 no
## 3129 1.1 93.994 -36.4 4.860 5191 no
## 3130 1.1 93.994 -36.4 4.860 5191 no
## 3131 1.1 93.994 -36.4 4.860 5191 no
## 3132 1.1 93.994 -36.4 4.860 5191 no
## 3133 1.1 93.994 -36.4 4.860 5191 no
## 3134 1.1 93.994 -36.4 4.860 5191 no
## 3135 1.1 93.994 -36.4 4.860 5191 no
## 3137 1.1 93.994 -36.4 4.860 5191 no
## 3138 1.1 93.994 -36.4 4.860 5191 no
## 3139 1.1 93.994 -36.4 4.860 5191 no
## 3140 1.1 93.994 -36.4 4.860 5191 no
## 3142 1.1 93.994 -36.4 4.860 5191 no
## 3143 1.1 93.994 -36.4 4.860 5191 no
## 3146 1.1 93.994 -36.4 4.860 5191 no
## 3148 1.1 93.994 -36.4 4.860 5191 no
## 3149 1.1 93.994 -36.4 4.860 5191 no
## 3150 1.1 93.994 -36.4 4.860 5191 no
## 3151 1.1 93.994 -36.4 4.860 5191 no
## 3153 1.1 93.994 -36.4 4.860 5191 no
## 3154 1.1 93.994 -36.4 4.860 5191 no
## 3155 1.1 93.994 -36.4 4.860 5191 no
## 3156 1.1 93.994 -36.4 4.860 5191 no
## 3159 1.1 93.994 -36.4 4.860 5191 no
## 3160 1.1 93.994 -36.4 4.860 5191 no
## 3163 1.1 93.994 -36.4 4.860 5191 no
## 3164 1.1 93.994 -36.4 4.860 5191 no
## 3165 1.1 93.994 -36.4 4.860 5191 no
## 3167 1.1 93.994 -36.4 4.860 5191 no
## 3168 1.1 93.994 -36.4 4.860 5191 no
## 3170 1.1 93.994 -36.4 4.860 5191 no
## 3171 1.1 93.994 -36.4 4.860 5191 no
## 3172 1.1 93.994 -36.4 4.860 5191 no
## 3173 1.1 93.994 -36.4 4.860 5191 no
## 3174 1.1 93.994 -36.4 4.860 5191 no
## 3175 1.1 93.994 -36.4 4.860 5191 yes
## 3176 1.1 93.994 -36.4 4.860 5191 no
## 3177 1.1 93.994 -36.4 4.860 5191 no
## 3178 1.1 93.994 -36.4 4.860 5191 no
## 3179 1.1 93.994 -36.4 4.860 5191 no
## 3180 1.1 93.994 -36.4 4.860 5191 no
## 3181 1.1 93.994 -36.4 4.860 5191 no
## 3182 1.1 93.994 -36.4 4.860 5191 no
## 3183 1.1 93.994 -36.4 4.860 5191 no
## 3184 1.1 93.994 -36.4 4.860 5191 yes
## 3185 1.1 93.994 -36.4 4.860 5191 no
## 3187 1.1 93.994 -36.4 4.860 5191 no
## 3188 1.1 93.994 -36.4 4.860 5191 no
## 3189 1.1 93.994 -36.4 4.860 5191 no
## 3190 1.1 93.994 -36.4 4.860 5191 no
## 3191 1.1 93.994 -36.4 4.860 5191 no
## 3193 1.1 93.994 -36.4 4.860 5191 no
## 3194 1.1 93.994 -36.4 4.860 5191 no
## 3195 1.1 93.994 -36.4 4.860 5191 no
## 3197 1.1 93.994 -36.4 4.860 5191 no
## 3198 1.1 93.994 -36.4 4.860 5191 no
## 3199 1.1 93.994 -36.4 4.860 5191 no
## 3201 1.1 93.994 -36.4 4.860 5191 no
## 3202 1.1 93.994 -36.4 4.860 5191 no
## 3204 1.1 93.994 -36.4 4.860 5191 yes
## 3205 1.1 93.994 -36.4 4.860 5191 no
## 3207 1.1 93.994 -36.4 4.860 5191 no
## 3208 1.1 93.994 -36.4 4.860 5191 no
## 3209 1.1 93.994 -36.4 4.860 5191 no
## 3210 1.1 93.994 -36.4 4.860 5191 no
## 3211 1.1 93.994 -36.4 4.860 5191 no
## 3212 1.1 93.994 -36.4 4.860 5191 no
## 3214 1.1 93.994 -36.4 4.860 5191 no
## 3215 1.1 93.994 -36.4 4.860 5191 no
## 3216 1.1 93.994 -36.4 4.860 5191 no
## 3217 1.1 93.994 -36.4 4.860 5191 no
## 3218 1.1 93.994 -36.4 4.860 5191 no
## 3221 1.1 93.994 -36.4 4.860 5191 no
## 3222 1.1 93.994 -36.4 4.860 5191 no
## 3224 1.1 93.994 -36.4 4.860 5191 yes
## 3225 1.1 93.994 -36.4 4.860 5191 no
## 3226 1.1 93.994 -36.4 4.860 5191 no
## 3227 1.1 93.994 -36.4 4.860 5191 no
## 3228 1.1 93.994 -36.4 4.860 5191 no
## 3229 1.1 93.994 -36.4 4.860 5191 no
## 3230 1.1 93.994 -36.4 4.860 5191 no
## 3231 1.1 93.994 -36.4 4.860 5191 no
## 3233 1.1 93.994 -36.4 4.860 5191 no
## 3234 1.1 93.994 -36.4 4.860 5191 no
## 3235 1.1 93.994 -36.4 4.860 5191 no
## 3236 1.1 93.994 -36.4 4.860 5191 no
## 3237 1.1 93.994 -36.4 4.860 5191 no
## 3238 1.1 93.994 -36.4 4.860 5191 no
## 3239 1.1 93.994 -36.4 4.860 5191 no
## 3240 1.1 93.994 -36.4 4.860 5191 no
## 3242 1.1 93.994 -36.4 4.860 5191 no
## 3243 1.1 93.994 -36.4 4.860 5191 no
## 3244 1.1 93.994 -36.4 4.860 5191 no
## 3246 1.1 93.994 -36.4 4.860 5191 no
## 3248 1.1 93.994 -36.4 4.860 5191 no
## 3249 1.1 93.994 -36.4 4.860 5191 no
## 3251 1.1 93.994 -36.4 4.860 5191 no
## 3252 1.1 93.994 -36.4 4.860 5191 no
## 3253 1.1 93.994 -36.4 4.860 5191 no
## 3254 1.1 93.994 -36.4 4.860 5191 no
## 3255 1.1 93.994 -36.4 4.860 5191 no
## 3256 1.1 93.994 -36.4 4.860 5191 no
## 3257 1.1 93.994 -36.4 4.860 5191 no
## 3258 1.1 93.994 -36.4 4.860 5191 no
## 3259 1.1 93.994 -36.4 4.860 5191 no
## 3260 1.1 93.994 -36.4 4.860 5191 yes
## 3261 1.1 93.994 -36.4 4.860 5191 no
## 3262 1.1 93.994 -36.4 4.860 5191 no
## 3263 1.1 93.994 -36.4 4.860 5191 no
## 3264 1.1 93.994 -36.4 4.860 5191 no
## 3265 1.1 93.994 -36.4 4.860 5191 yes
## 3266 1.1 93.994 -36.4 4.860 5191 no
## 3267 1.1 93.994 -36.4 4.860 5191 no
## 3268 1.1 93.994 -36.4 4.860 5191 no
## 3270 1.1 93.994 -36.4 4.860 5191 no
## 3271 1.1 93.994 -36.4 4.860 5191 no
## 3272 1.1 93.994 -36.4 4.860 5191 no
## 3277 1.1 93.994 -36.4 4.860 5191 no
## 3278 1.1 93.994 -36.4 4.860 5191 no
## 3279 1.1 93.994 -36.4 4.860 5191 no
## 3281 1.1 93.994 -36.4 4.860 5191 no
## 3282 1.1 93.994 -36.4 4.860 5191 no
## 3283 1.1 93.994 -36.4 4.860 5191 no
## 3284 1.1 93.994 -36.4 4.860 5191 no
## 3286 1.1 93.994 -36.4 4.860 5191 no
## 3288 1.1 93.994 -36.4 4.860 5191 no
## 3290 1.1 93.994 -36.4 4.860 5191 no
## 3291 1.1 93.994 -36.4 4.860 5191 no
## 3292 1.1 93.994 -36.4 4.860 5191 no
## 3293 1.1 93.994 -36.4 4.860 5191 no
## 3294 1.1 93.994 -36.4 4.860 5191 no
## 3295 1.1 93.994 -36.4 4.860 5191 no
## 3296 1.1 93.994 -36.4 4.860 5191 no
## 3297 1.1 93.994 -36.4 4.860 5191 no
## 3298 1.1 93.994 -36.4 4.860 5191 no
## 3299 1.1 93.994 -36.4 4.860 5191 no
## 3300 1.1 93.994 -36.4 4.860 5191 no
## 3301 1.1 93.994 -36.4 4.860 5191 no
## 3302 1.1 93.994 -36.4 4.860 5191 no
## 3303 1.1 93.994 -36.4 4.860 5191 no
## 3306 1.1 93.994 -36.4 4.860 5191 no
## 3307 1.1 93.994 -36.4 4.860 5191 no
## 3308 1.1 93.994 -36.4 4.860 5191 no
## 3309 1.1 93.994 -36.4 4.860 5191 no
## 3310 1.1 93.994 -36.4 4.860 5191 no
## 3311 1.1 93.994 -36.4 4.860 5191 no
## 3312 1.1 93.994 -36.4 4.860 5191 no
## 3314 1.1 93.994 -36.4 4.860 5191 no
## 3315 1.1 93.994 -36.4 4.860 5191 no
## 3316 1.1 93.994 -36.4 4.860 5191 no
## 3317 1.1 93.994 -36.4 4.860 5191 no
## 3319 1.1 93.994 -36.4 4.860 5191 no
## 3320 1.1 93.994 -36.4 4.860 5191 no
## 3321 1.1 93.994 -36.4 4.860 5191 no
## 3322 1.1 93.994 -36.4 4.860 5191 no
## 3323 1.1 93.994 -36.4 4.860 5191 no
## 3324 1.1 93.994 -36.4 4.860 5191 no
## 3328 1.1 93.994 -36.4 4.860 5191 no
## 3331 1.1 93.994 -36.4 4.860 5191 no
## 3333 1.1 93.994 -36.4 4.860 5191 no
## 3334 1.1 93.994 -36.4 4.860 5191 no
## 3335 1.1 93.994 -36.4 4.860 5191 no
## 3337 1.1 93.994 -36.4 4.860 5191 no
## 3338 1.1 93.994 -36.4 4.860 5191 no
## 3339 1.1 93.994 -36.4 4.860 5191 yes
## 3340 1.1 93.994 -36.4 4.860 5191 no
## 3341 1.1 93.994 -36.4 4.860 5191 no
## 3342 1.1 93.994 -36.4 4.860 5191 no
## 3343 1.1 93.994 -36.4 4.860 5191 no
## 3344 1.1 93.994 -36.4 4.860 5191 no
## 3345 1.1 93.994 -36.4 4.860 5191 no
## 3346 1.1 93.994 -36.4 4.860 5191 no
## 3349 1.1 93.994 -36.4 4.860 5191 no
## 3350 1.1 93.994 -36.4 4.860 5191 no
## 3351 1.1 93.994 -36.4 4.860 5191 no
## 3352 1.1 93.994 -36.4 4.860 5191 no
## 3353 1.1 93.994 -36.4 4.860 5191 no
## 3354 1.1 93.994 -36.4 4.860 5191 no
## 3355 1.1 93.994 -36.4 4.860 5191 no
## 3356 1.1 93.994 -36.4 4.860 5191 no
## 3357 1.1 93.994 -36.4 4.860 5191 no
## 3358 1.1 93.994 -36.4 4.860 5191 no
## 3359 1.1 93.994 -36.4 4.860 5191 no
## 3360 1.1 93.994 -36.4 4.860 5191 no
## 3362 1.1 93.994 -36.4 4.860 5191 no
## 3363 1.1 93.994 -36.4 4.860 5191 no
## 3364 1.1 93.994 -36.4 4.860 5191 no
## 3365 1.1 93.994 -36.4 4.860 5191 no
## 3366 1.1 93.994 -36.4 4.860 5191 no
## 3367 1.1 93.994 -36.4 4.860 5191 no
## 3369 1.1 93.994 -36.4 4.860 5191 no
## 3370 1.1 93.994 -36.4 4.860 5191 no
## 3371 1.1 93.994 -36.4 4.860 5191 no
## 3373 1.1 93.994 -36.4 4.860 5191 no
## 3374 1.1 93.994 -36.4 4.860 5191 no
## 3376 1.1 93.994 -36.4 4.860 5191 no
## 3377 1.1 93.994 -36.4 4.860 5191 no
## 3378 1.1 93.994 -36.4 4.860 5191 no
## 3379 1.1 93.994 -36.4 4.860 5191 no
## 3380 1.1 93.994 -36.4 4.860 5191 no
## 3381 1.1 93.994 -36.4 4.860 5191 no
## 3382 1.1 93.994 -36.4 4.860 5191 yes
## 3383 1.1 93.994 -36.4 4.860 5191 no
## 3385 1.1 93.994 -36.4 4.860 5191 yes
## 3386 1.1 93.994 -36.4 4.860 5191 no
## 3387 1.1 93.994 -36.4 4.860 5191 no
## 3389 1.1 93.994 -36.4 4.860 5191 no
## 3390 1.1 93.994 -36.4 4.860 5191 no
## 3391 1.1 93.994 -36.4 4.860 5191 no
## 3392 1.1 93.994 -36.4 4.860 5191 no
## 3393 1.1 93.994 -36.4 4.860 5191 no
## 3394 1.1 93.994 -36.4 4.860 5191 no
## 3395 1.1 93.994 -36.4 4.860 5191 no
## 3396 1.1 93.994 -36.4 4.860 5191 yes
## 3397 1.1 93.994 -36.4 4.860 5191 no
## 3398 1.1 93.994 -36.4 4.860 5191 no
## 3399 1.1 93.994 -36.4 4.860 5191 no
## 3400 1.1 93.994 -36.4 4.860 5191 no
## 3401 1.1 93.994 -36.4 4.860 5191 no
## 3402 1.1 93.994 -36.4 4.860 5191 no
## 3403 1.1 93.994 -36.4 4.860 5191 no
## 3404 1.1 93.994 -36.4 4.860 5191 no
## 3405 1.1 93.994 -36.4 4.860 5191 no
## 3406 1.1 93.994 -36.4 4.860 5191 no
## 3408 1.1 93.994 -36.4 4.860 5191 no
## 3410 1.1 93.994 -36.4 4.860 5191 no
## 3412 1.1 93.994 -36.4 4.860 5191 no
## 3413 1.1 93.994 -36.4 4.860 5191 no
## 3414 1.1 93.994 -36.4 4.860 5191 no
## 3415 1.1 93.994 -36.4 4.860 5191 no
## 3416 1.1 93.994 -36.4 4.860 5191 no
## 3417 1.1 93.994 -36.4 4.860 5191 no
## 3418 1.1 93.994 -36.4 4.860 5191 no
## 3419 1.1 93.994 -36.4 4.860 5191 no
## 3421 1.1 93.994 -36.4 4.860 5191 no
## 3422 1.1 93.994 -36.4 4.860 5191 no
## 3423 1.1 93.994 -36.4 4.860 5191 no
## 3424 1.1 93.994 -36.4 4.860 5191 no
## 3425 1.1 93.994 -36.4 4.860 5191 no
## 3426 1.1 93.994 -36.4 4.860 5191 no
## 3427 1.1 93.994 -36.4 4.860 5191 no
## 3429 1.1 93.994 -36.4 4.860 5191 no
## 3430 1.1 93.994 -36.4 4.860 5191 no
## 3431 1.1 93.994 -36.4 4.860 5191 no
## 3432 1.1 93.994 -36.4 4.860 5191 no
## 3433 1.1 93.994 -36.4 4.860 5191 no
## 3434 1.1 93.994 -36.4 4.860 5191 no
## 3435 1.1 93.994 -36.4 4.860 5191 no
## 3437 1.1 93.994 -36.4 4.860 5191 yes
## 3441 1.1 93.994 -36.4 4.860 5191 no
## 3442 1.1 93.994 -36.4 4.860 5191 no
## 3443 1.1 93.994 -36.4 4.860 5191 no
## 3444 1.1 93.994 -36.4 4.860 5191 no
## 3446 1.1 93.994 -36.4 4.860 5191 no
## 3447 1.1 93.994 -36.4 4.860 5191 no
## 3448 1.1 93.994 -36.4 4.860 5191 no
## 3450 1.1 93.994 -36.4 4.860 5191 no
## 3453 1.1 93.994 -36.4 4.860 5191 no
## 3455 1.1 93.994 -36.4 4.860 5191 no
## 3456 1.1 93.994 -36.4 4.860 5191 no
## 3457 1.1 93.994 -36.4 4.860 5191 no
## 3458 1.1 93.994 -36.4 4.860 5191 no
## 3460 1.1 93.994 -36.4 4.860 5191 no
## 3461 1.1 93.994 -36.4 4.860 5191 no
## 3462 1.1 93.994 -36.4 4.860 5191 no
## 3463 1.1 93.994 -36.4 4.860 5191 no
## 3464 1.1 93.994 -36.4 4.860 5191 no
## 3465 1.1 93.994 -36.4 4.860 5191 no
## 3466 1.1 93.994 -36.4 4.860 5191 no
## 3467 1.1 93.994 -36.4 4.860 5191 no
## 3468 1.1 93.994 -36.4 4.860 5191 no
## 3469 1.1 93.994 -36.4 4.860 5191 no
## 3470 1.1 93.994 -36.4 4.860 5191 no
## 3471 1.1 93.994 -36.4 4.860 5191 no
## 3472 1.1 93.994 -36.4 4.860 5191 no
## 3473 1.1 93.994 -36.4 4.860 5191 no
## 3474 1.1 93.994 -36.4 4.860 5191 no
## 3475 1.1 93.994 -36.4 4.860 5191 no
## 3476 1.1 93.994 -36.4 4.860 5191 no
## 3477 1.1 93.994 -36.4 4.860 5191 no
## 3478 1.1 93.994 -36.4 4.860 5191 no
## 3480 1.1 93.994 -36.4 4.860 5191 no
## 3481 1.1 93.994 -36.4 4.860 5191 no
## 3482 1.1 93.994 -36.4 4.860 5191 no
## 3483 1.1 93.994 -36.4 4.860 5191 no
## 3484 1.1 93.994 -36.4 4.860 5191 no
## 3485 1.1 93.994 -36.4 4.860 5191 no
## 3486 1.1 93.994 -36.4 4.860 5191 no
## 3487 1.1 93.994 -36.4 4.860 5191 no
## 3489 1.1 93.994 -36.4 4.860 5191 no
## 3490 1.1 93.994 -36.4 4.860 5191 no
## 3492 1.1 93.994 -36.4 4.860 5191 no
## 3493 1.1 93.994 -36.4 4.860 5191 no
## 3494 1.1 93.994 -36.4 4.860 5191 no
## 3495 1.1 93.994 -36.4 4.860 5191 no
## 3496 1.1 93.994 -36.4 4.860 5191 no
## 3497 1.1 93.994 -36.4 4.860 5191 no
## 3499 1.1 93.994 -36.4 4.860 5191 no
## 3500 1.1 93.994 -36.4 4.860 5191 no
## 3501 1.1 93.994 -36.4 4.860 5191 no
## 3502 1.1 93.994 -36.4 4.860 5191 no
## 3503 1.1 93.994 -36.4 4.860 5191 no
## 3504 1.1 93.994 -36.4 4.860 5191 no
## 3505 1.1 93.994 -36.4 4.860 5191 no
## 3506 1.1 93.994 -36.4 4.860 5191 no
## 3507 1.1 93.994 -36.4 4.860 5191 yes
## 3508 1.1 93.994 -36.4 4.860 5191 no
## 3509 1.1 93.994 -36.4 4.860 5191 no
## 3510 1.1 93.994 -36.4 4.860 5191 no
## 3512 1.1 93.994 -36.4 4.860 5191 no
## 3513 1.1 93.994 -36.4 4.860 5191 no
## 3515 1.1 93.994 -36.4 4.860 5191 no
## 3516 1.1 93.994 -36.4 4.860 5191 no
## 3517 1.1 93.994 -36.4 4.860 5191 no
## 3518 1.1 93.994 -36.4 4.860 5191 no
## 3520 1.1 93.994 -36.4 4.860 5191 no
## 3522 1.1 93.994 -36.4 4.860 5191 no
## 3523 1.1 93.994 -36.4 4.859 5191 no
## 3524 1.1 93.994 -36.4 4.859 5191 no
## 3525 1.1 93.994 -36.4 4.859 5191 no
## 3527 1.1 93.994 -36.4 4.859 5191 no
## 3528 1.1 93.994 -36.4 4.859 5191 no
## 3530 1.1 93.994 -36.4 4.859 5191 no
## 3531 1.1 93.994 -36.4 4.859 5191 no
## 3532 1.1 93.994 -36.4 4.859 5191 no
## 3534 1.1 93.994 -36.4 4.859 5191 no
## 3535 1.1 93.994 -36.4 4.859 5191 no
## 3536 1.1 93.994 -36.4 4.859 5191 no
## 3537 1.1 93.994 -36.4 4.859 5191 no
## 3539 1.1 93.994 -36.4 4.859 5191 no
## 3540 1.1 93.994 -36.4 4.859 5191 no
## 3541 1.1 93.994 -36.4 4.859 5191 no
## 3542 1.1 93.994 -36.4 4.859 5191 yes
## 3544 1.1 93.994 -36.4 4.859 5191 no
## 3546 1.1 93.994 -36.4 4.859 5191 yes
## 3548 1.1 93.994 -36.4 4.859 5191 no
## 3549 1.1 93.994 -36.4 4.859 5191 no
## 3551 1.1 93.994 -36.4 4.859 5191 no
## 3552 1.1 93.994 -36.4 4.859 5191 no
## 3553 1.1 93.994 -36.4 4.859 5191 no
## 3554 1.1 93.994 -36.4 4.859 5191 no
## 3555 1.1 93.994 -36.4 4.859 5191 no
## 3556 1.1 93.994 -36.4 4.859 5191 no
## 3558 1.1 93.994 -36.4 4.859 5191 no
## 3559 1.1 93.994 -36.4 4.859 5191 no
## 3560 1.1 93.994 -36.4 4.859 5191 no
## 3561 1.1 93.994 -36.4 4.859 5191 no
## 3563 1.1 93.994 -36.4 4.859 5191 no
## 3566 1.1 93.994 -36.4 4.859 5191 no
## 3567 1.1 93.994 -36.4 4.859 5191 yes
## 3570 1.1 93.994 -36.4 4.859 5191 no
## 3571 1.1 93.994 -36.4 4.859 5191 yes
## 3572 1.1 93.994 -36.4 4.859 5191 no
## 3574 1.1 93.994 -36.4 4.859 5191 no
## 3575 1.1 93.994 -36.4 4.859 5191 yes
## 3576 1.1 93.994 -36.4 4.859 5191 no
## 3577 1.1 93.994 -36.4 4.859 5191 yes
## 3578 1.1 93.994 -36.4 4.859 5191 no
## 3580 1.1 93.994 -36.4 4.859 5191 no
## 3581 1.1 93.994 -36.4 4.859 5191 no
## 3582 1.1 93.994 -36.4 4.859 5191 no
## 3584 1.1 93.994 -36.4 4.859 5191 no
## 3588 1.1 93.994 -36.4 4.859 5191 no
## 3589 1.1 93.994 -36.4 4.859 5191 no
## 3590 1.1 93.994 -36.4 4.859 5191 no
## 3591 1.1 93.994 -36.4 4.859 5191 no
## 3592 1.1 93.994 -36.4 4.859 5191 no
## 3593 1.1 93.994 -36.4 4.859 5191 no
## 3596 1.1 93.994 -36.4 4.859 5191 no
## 3598 1.1 93.994 -36.4 4.859 5191 no
## 3599 1.1 93.994 -36.4 4.859 5191 no
## 3600 1.1 93.994 -36.4 4.859 5191 no
## 3601 1.1 93.994 -36.4 4.859 5191 no
## 3605 1.1 93.994 -36.4 4.859 5191 no
## 3606 1.1 93.994 -36.4 4.859 5191 no
## 3607 1.1 93.994 -36.4 4.859 5191 no
## 3608 1.1 93.994 -36.4 4.859 5191 no
## 3609 1.1 93.994 -36.4 4.859 5191 yes
## 3610 1.1 93.994 -36.4 4.859 5191 no
## 3612 1.1 93.994 -36.4 4.859 5191 no
## 3613 1.1 93.994 -36.4 4.859 5191 no
## 3614 1.1 93.994 -36.4 4.859 5191 no
## 3615 1.1 93.994 -36.4 4.859 5191 no
## 3616 1.1 93.994 -36.4 4.859 5191 no
## 3617 1.1 93.994 -36.4 4.859 5191 no
## 3618 1.1 93.994 -36.4 4.859 5191 no
## 3619 1.1 93.994 -36.4 4.859 5191 no
## 3620 1.1 93.994 -36.4 4.859 5191 no
## 3621 1.1 93.994 -36.4 4.859 5191 no
## 3623 1.1 93.994 -36.4 4.859 5191 no
## 3624 1.1 93.994 -36.4 4.859 5191 no
## 3625 1.1 93.994 -36.4 4.859 5191 no
## 3628 1.1 93.994 -36.4 4.859 5191 no
## 3629 1.1 93.994 -36.4 4.859 5191 yes
## 3630 1.1 93.994 -36.4 4.859 5191 no
## 3631 1.1 93.994 -36.4 4.859 5191 no
## 3632 1.1 93.994 -36.4 4.859 5191 no
## 3634 1.1 93.994 -36.4 4.859 5191 no
## 3636 1.1 93.994 -36.4 4.859 5191 no
## 3637 1.1 93.994 -36.4 4.859 5191 no
## 3638 1.1 93.994 -36.4 4.859 5191 no
## 3640 1.1 93.994 -36.4 4.859 5191 no
## 3641 1.1 93.994 -36.4 4.859 5191 no
## 3642 1.1 93.994 -36.4 4.859 5191 no
## 3643 1.1 93.994 -36.4 4.859 5191 no
## 3644 1.1 93.994 -36.4 4.859 5191 no
## 3645 1.1 93.994 -36.4 4.859 5191 no
## 3647 1.1 93.994 -36.4 4.859 5191 no
## 3648 1.1 93.994 -36.4 4.859 5191 no
## 3649 1.1 93.994 -36.4 4.859 5191 no
## 3650 1.1 93.994 -36.4 4.859 5191 no
## 3651 1.1 93.994 -36.4 4.859 5191 no
## 3653 1.1 93.994 -36.4 4.859 5191 no
## 3654 1.1 93.994 -36.4 4.859 5191 no
## 3656 1.1 93.994 -36.4 4.859 5191 no
## 3657 1.1 93.994 -36.4 4.859 5191 no
## 3658 1.1 93.994 -36.4 4.859 5191 no
## 3660 1.1 93.994 -36.4 4.859 5191 no
## 3662 1.1 93.994 -36.4 4.859 5191 yes
## 3663 1.1 93.994 -36.4 4.859 5191 no
## 3664 1.1 93.994 -36.4 4.859 5191 no
## 3666 1.1 93.994 -36.4 4.859 5191 no
## 3667 1.1 93.994 -36.4 4.859 5191 no
## 3669 1.1 93.994 -36.4 4.859 5191 no
## 3670 1.1 93.994 -36.4 4.859 5191 no
## 3672 1.1 93.994 -36.4 4.859 5191 no
## 3673 1.1 93.994 -36.4 4.859 5191 no
## 3675 1.1 93.994 -36.4 4.859 5191 no
## 3679 1.1 93.994 -36.4 4.859 5191 no
## 3680 1.1 93.994 -36.4 4.859 5191 no
## 3681 1.1 93.994 -36.4 4.859 5191 no
## 3683 1.1 93.994 -36.4 4.859 5191 no
## 3684 1.1 93.994 -36.4 4.859 5191 no
## 3685 1.1 93.994 -36.4 4.859 5191 no
## 3686 1.1 93.994 -36.4 4.859 5191 yes
## 3687 1.1 93.994 -36.4 4.859 5191 no
## 3688 1.1 93.994 -36.4 4.859 5191 no
## 3689 1.1 93.994 -36.4 4.859 5191 no
## 3690 1.1 93.994 -36.4 4.859 5191 no
## 3691 1.1 93.994 -36.4 4.859 5191 no
## 3692 1.1 93.994 -36.4 4.859 5191 no
## 3693 1.1 93.994 -36.4 4.859 5191 no
## 3695 1.1 93.994 -36.4 4.859 5191 no
## 3696 1.1 93.994 -36.4 4.859 5191 no
## 3697 1.1 93.994 -36.4 4.859 5191 no
## 3698 1.1 93.994 -36.4 4.859 5191 yes
## 3699 1.1 93.994 -36.4 4.859 5191 no
## 3701 1.1 93.994 -36.4 4.859 5191 no
## 3702 1.1 93.994 -36.4 4.859 5191 no
## 3703 1.1 93.994 -36.4 4.859 5191 no
## 3704 1.1 93.994 -36.4 4.859 5191 no
## 3705 1.1 93.994 -36.4 4.859 5191 no
## 3706 1.1 93.994 -36.4 4.859 5191 no
## 3707 1.1 93.994 -36.4 4.859 5191 no
## 3709 1.1 93.994 -36.4 4.859 5191 no
## 3711 1.1 93.994 -36.4 4.859 5191 no
## 3712 1.1 93.994 -36.4 4.859 5191 no
## 3713 1.1 93.994 -36.4 4.859 5191 no
## 3715 1.1 93.994 -36.4 4.859 5191 no
## 3716 1.1 93.994 -36.4 4.859 5191 no
## 3717 1.1 93.994 -36.4 4.859 5191 no
## 3718 1.1 93.994 -36.4 4.859 5191 no
## 3719 1.1 93.994 -36.4 4.859 5191 no
## 3720 1.1 93.994 -36.4 4.859 5191 no
## 3721 1.1 93.994 -36.4 4.859 5191 no
## 3722 1.1 93.994 -36.4 4.859 5191 no
## 3723 1.1 93.994 -36.4 4.859 5191 no
## 3724 1.1 93.994 -36.4 4.859 5191 no
## 3725 1.1 93.994 -36.4 4.859 5191 no
## 3727 1.1 93.994 -36.4 4.859 5191 no
## 3728 1.1 93.994 -36.4 4.859 5191 no
## 3730 1.1 93.994 -36.4 4.859 5191 no
## 3731 1.1 93.994 -36.4 4.859 5191 no
## 3732 1.1 93.994 -36.4 4.859 5191 no
## 3733 1.1 93.994 -36.4 4.859 5191 no
## 3734 1.1 93.994 -36.4 4.859 5191 no
## 3735 1.1 93.994 -36.4 4.859 5191 yes
## 3736 1.1 93.994 -36.4 4.859 5191 no
## 3737 1.1 93.994 -36.4 4.859 5191 no
## 3738 1.1 93.994 -36.4 4.859 5191 no
## 3739 1.1 93.994 -36.4 4.859 5191 no
## 3740 1.1 93.994 -36.4 4.859 5191 no
## 3742 1.1 93.994 -36.4 4.859 5191 no
## 3743 1.1 93.994 -36.4 4.859 5191 no
## 3745 1.1 93.994 -36.4 4.859 5191 no
## 3746 1.1 93.994 -36.4 4.859 5191 no
## 3747 1.1 93.994 -36.4 4.859 5191 no
## 3748 1.1 93.994 -36.4 4.859 5191 no
## 3749 1.1 93.994 -36.4 4.859 5191 no
## 3750 1.1 93.994 -36.4 4.859 5191 no
## 3751 1.1 93.994 -36.4 4.859 5191 no
## 3752 1.1 93.994 -36.4 4.859 5191 no
## 3754 1.1 93.994 -36.4 4.859 5191 no
## 3756 1.1 93.994 -36.4 4.859 5191 no
## 3757 1.1 93.994 -36.4 4.859 5191 no
## 3758 1.1 93.994 -36.4 4.859 5191 no
## 3759 1.1 93.994 -36.4 4.859 5191 no
## 3760 1.1 93.994 -36.4 4.859 5191 no
## 3761 1.1 93.994 -36.4 4.859 5191 no
## 3762 1.1 93.994 -36.4 4.859 5191 no
## 3763 1.1 93.994 -36.4 4.859 5191 no
## 3764 1.1 93.994 -36.4 4.859 5191 no
## 3767 1.1 93.994 -36.4 4.859 5191 no
## 3768 1.1 93.994 -36.4 4.859 5191 no
## 3769 1.1 93.994 -36.4 4.859 5191 no
## 3771 1.1 93.994 -36.4 4.859 5191 no
## 3773 1.1 93.994 -36.4 4.859 5191 no
## 3774 1.1 93.994 -36.4 4.859 5191 no
## 3775 1.1 93.994 -36.4 4.859 5191 yes
## 3776 1.1 93.994 -36.4 4.859 5191 no
## 3777 1.1 93.994 -36.4 4.859 5191 no
## 3778 1.1 93.994 -36.4 4.859 5191 no
## 3779 1.1 93.994 -36.4 4.859 5191 no
## 3780 1.1 93.994 -36.4 4.859 5191 no
## 3781 1.1 93.994 -36.4 4.859 5191 no
## 3782 1.1 93.994 -36.4 4.859 5191 no
## 3783 1.1 93.994 -36.4 4.859 5191 no
## 3785 1.1 93.994 -36.4 4.859 5191 no
## 3787 1.1 93.994 -36.4 4.859 5191 no
## 3788 1.1 93.994 -36.4 4.859 5191 no
## 3789 1.1 93.994 -36.4 4.859 5191 no
## 3790 1.1 93.994 -36.4 4.859 5191 no
## 3791 1.1 93.994 -36.4 4.859 5191 no
## 3792 1.1 93.994 -36.4 4.859 5191 no
## 3795 1.1 93.994 -36.4 4.859 5191 no
## 3796 1.1 93.994 -36.4 4.859 5191 no
## 3797 1.1 93.994 -36.4 4.859 5191 no
## 3798 1.1 93.994 -36.4 4.859 5191 no
## 3799 1.1 93.994 -36.4 4.859 5191 no
## 3800 1.1 93.994 -36.4 4.859 5191 no
## 3801 1.1 93.994 -36.4 4.859 5191 no
## 3802 1.1 93.994 -36.4 4.859 5191 no
## 3803 1.1 93.994 -36.4 4.859 5191 no
## 3804 1.1 93.994 -36.4 4.859 5191 no
## 3805 1.1 93.994 -36.4 4.859 5191 no
## 3806 1.1 93.994 -36.4 4.859 5191 no
## 3807 1.1 93.994 -36.4 4.859 5191 no
## 3808 1.1 93.994 -36.4 4.859 5191 no
## 3809 1.1 93.994 -36.4 4.859 5191 no
## 3810 1.1 93.994 -36.4 4.859 5191 no
## 3811 1.1 93.994 -36.4 4.859 5191 no
## 3813 1.1 93.994 -36.4 4.859 5191 no
## 3814 1.1 93.994 -36.4 4.859 5191 no
## 3815 1.1 93.994 -36.4 4.859 5191 no
## 3816 1.1 93.994 -36.4 4.859 5191 no
## 3817 1.1 93.994 -36.4 4.859 5191 no
## 3818 1.1 93.994 -36.4 4.859 5191 no
## 3820 1.1 93.994 -36.4 4.859 5191 no
## 3822 1.1 93.994 -36.4 4.859 5191 no
## 3825 1.1 93.994 -36.4 4.859 5191 no
## 3826 1.1 93.994 -36.4 4.859 5191 no
## 3827 1.1 93.994 -36.4 4.859 5191 no
## 3828 1.1 93.994 -36.4 4.859 5191 no
## 3829 1.1 93.994 -36.4 4.859 5191 no
## 3830 1.1 93.994 -36.4 4.859 5191 no
## 3831 1.1 93.994 -36.4 4.859 5191 no
## 3832 1.1 93.994 -36.4 4.859 5191 no
## 3833 1.1 93.994 -36.4 4.859 5191 no
## 3834 1.1 93.994 -36.4 4.859 5191 no
## 3836 1.1 93.994 -36.4 4.859 5191 no
## 3837 1.1 93.994 -36.4 4.859 5191 no
## 3839 1.1 93.994 -36.4 4.859 5191 no
## 3840 1.1 93.994 -36.4 4.859 5191 no
## 3841 1.1 93.994 -36.4 4.859 5191 no
## 3842 1.1 93.994 -36.4 4.859 5191 no
## 3845 1.1 93.994 -36.4 4.859 5191 no
## 3846 1.1 93.994 -36.4 4.859 5191 no
## 3847 1.1 93.994 -36.4 4.859 5191 no
## 3849 1.1 93.994 -36.4 4.859 5191 no
## 3850 1.1 93.994 -36.4 4.859 5191 no
## 3851 1.1 93.994 -36.4 4.859 5191 no
## 3853 1.1 93.994 -36.4 4.859 5191 no
## 3854 1.1 93.994 -36.4 4.859 5191 no
## 3857 1.1 93.994 -36.4 4.859 5191 no
## 3858 1.1 93.994 -36.4 4.859 5191 no
## 3859 1.1 93.994 -36.4 4.859 5191 no
## 3860 1.1 93.994 -36.4 4.859 5191 no
## 3861 1.1 93.994 -36.4 4.859 5191 no
## 3862 1.1 93.994 -36.4 4.859 5191 no
## 3863 1.1 93.994 -36.4 4.859 5191 no
## 3864 1.1 93.994 -36.4 4.859 5191 no
## 3865 1.1 93.994 -36.4 4.859 5191 no
## 3866 1.1 93.994 -36.4 4.859 5191 no
## 3867 1.1 93.994 -36.4 4.859 5191 no
## 3868 1.1 93.994 -36.4 4.859 5191 no
## 3872 1.1 93.994 -36.4 4.859 5191 no
## 3873 1.1 93.994 -36.4 4.859 5191 no
## 3874 1.1 93.994 -36.4 4.859 5191 no
## 3876 1.1 93.994 -36.4 4.859 5191 no
## 3877 1.1 93.994 -36.4 4.859 5191 no
## 3878 1.1 93.994 -36.4 4.859 5191 no
## 3879 1.1 93.994 -36.4 4.859 5191 no
## 3880 1.1 93.994 -36.4 4.859 5191 no
## 3881 1.1 93.994 -36.4 4.859 5191 no
## 3882 1.1 93.994 -36.4 4.859 5191 no
## 3883 1.1 93.994 -36.4 4.859 5191 no
## 3884 1.1 93.994 -36.4 4.859 5191 no
## 3886 1.1 93.994 -36.4 4.859 5191 no
## 3887 1.1 93.994 -36.4 4.859 5191 no
## 3888 1.1 93.994 -36.4 4.859 5191 yes
## 3889 1.1 93.994 -36.4 4.859 5191 no
## 3890 1.1 93.994 -36.4 4.859 5191 no
## 3891 1.1 93.994 -36.4 4.859 5191 no
## 3892 1.1 93.994 -36.4 4.859 5191 no
## 3893 1.1 93.994 -36.4 4.859 5191 no
## 3894 1.1 93.994 -36.4 4.858 5191 no
## 3895 1.1 93.994 -36.4 4.858 5191 no
## 3896 1.1 93.994 -36.4 4.858 5191 no
## 3897 1.1 93.994 -36.4 4.858 5191 no
## 3898 1.1 93.994 -36.4 4.858 5191 no
## 3899 1.1 93.994 -36.4 4.858 5191 no
## 3901 1.1 93.994 -36.4 4.858 5191 no
## 3902 1.1 93.994 -36.4 4.858 5191 no
## 3903 1.1 93.994 -36.4 4.858 5191 no
## 3904 1.1 93.994 -36.4 4.858 5191 no
## 3905 1.1 93.994 -36.4 4.858 5191 no
## 3906 1.1 93.994 -36.4 4.858 5191 no
## 3908 1.1 93.994 -36.4 4.858 5191 no
## 3909 1.1 93.994 -36.4 4.858 5191 no
## 3910 1.1 93.994 -36.4 4.858 5191 no
## 3911 1.1 93.994 -36.4 4.858 5191 no
## 3912 1.1 93.994 -36.4 4.858 5191 no
## 3913 1.1 93.994 -36.4 4.858 5191 no
## 3914 1.1 93.994 -36.4 4.858 5191 no
## 3915 1.1 93.994 -36.4 4.858 5191 no
## 3916 1.1 93.994 -36.4 4.858 5191 no
## 3917 1.1 93.994 -36.4 4.858 5191 no
## 3919 1.1 93.994 -36.4 4.858 5191 no
## 3920 1.1 93.994 -36.4 4.858 5191 no
## 3922 1.1 93.994 -36.4 4.858 5191 no
## 3923 1.1 93.994 -36.4 4.858 5191 no
## 3925 1.1 93.994 -36.4 4.858 5191 no
## 3926 1.1 93.994 -36.4 4.858 5191 no
## 3927 1.1 93.994 -36.4 4.858 5191 no
## 3928 1.1 93.994 -36.4 4.858 5191 no
## 3931 1.1 93.994 -36.4 4.858 5191 no
## 3932 1.1 93.994 -36.4 4.858 5191 no
## 3933 1.1 93.994 -36.4 4.858 5191 no
## 3934 1.1 93.994 -36.4 4.858 5191 no
## 3935 1.1 93.994 -36.4 4.858 5191 no
## 3936 1.1 93.994 -36.4 4.858 5191 no
## 3937 1.1 93.994 -36.4 4.858 5191 no
## 3938 1.1 93.994 -36.4 4.858 5191 no
## 3939 1.1 93.994 -36.4 4.858 5191 no
## 3940 1.1 93.994 -36.4 4.858 5191 yes
## 3941 1.1 93.994 -36.4 4.858 5191 no
## 3942 1.1 93.994 -36.4 4.858 5191 no
## 3944 1.1 93.994 -36.4 4.858 5191 no
## 3945 1.1 93.994 -36.4 4.858 5191 no
## 3946 1.1 93.994 -36.4 4.858 5191 no
## 3947 1.1 93.994 -36.4 4.858 5191 no
## 3948 1.1 93.994 -36.4 4.858 5191 no
## 3950 1.1 93.994 -36.4 4.858 5191 no
## 3951 1.1 93.994 -36.4 4.858 5191 no
## 3952 1.1 93.994 -36.4 4.858 5191 no
## 3953 1.1 93.994 -36.4 4.858 5191 no
## 3955 1.1 93.994 -36.4 4.858 5191 no
## 3956 1.1 93.994 -36.4 4.858 5191 no
## 3958 1.1 93.994 -36.4 4.858 5191 no
## 3959 1.1 93.994 -36.4 4.858 5191 no
## 3961 1.1 93.994 -36.4 4.858 5191 no
## 3962 1.1 93.994 -36.4 4.858 5191 no
## 3963 1.1 93.994 -36.4 4.858 5191 no
## 3964 1.1 93.994 -36.4 4.858 5191 no
## 3965 1.1 93.994 -36.4 4.858 5191 no
## 3967 1.1 93.994 -36.4 4.858 5191 no
## 3968 1.1 93.994 -36.4 4.858 5191 no
## 3970 1.1 93.994 -36.4 4.858 5191 no
## 3972 1.1 93.994 -36.4 4.858 5191 no
## 3973 1.1 93.994 -36.4 4.858 5191 no
## 3974 1.1 93.994 -36.4 4.858 5191 no
## 3975 1.1 93.994 -36.4 4.858 5191 no
## 3976 1.1 93.994 -36.4 4.858 5191 no
## 3977 1.1 93.994 -36.4 4.858 5191 no
## 3978 1.1 93.994 -36.4 4.858 5191 no
## 3980 1.1 93.994 -36.4 4.858 5191 yes
## 3981 1.1 93.994 -36.4 4.858 5191 no
## 3982 1.1 93.994 -36.4 4.858 5191 no
## 3983 1.1 93.994 -36.4 4.858 5191 no
## 3985 1.1 93.994 -36.4 4.858 5191 no
## 3986 1.1 93.994 -36.4 4.858 5191 no
## 3987 1.1 93.994 -36.4 4.858 5191 no
## 3988 1.1 93.994 -36.4 4.858 5191 no
## 3989 1.1 93.994 -36.4 4.858 5191 yes
## 3990 1.1 93.994 -36.4 4.858 5191 no
## 3992 1.1 93.994 -36.4 4.858 5191 no
## 3993 1.1 93.994 -36.4 4.858 5191 no
## 3995 1.1 93.994 -36.4 4.858 5191 no
## 3997 1.1 93.994 -36.4 4.858 5191 no
## 3998 1.1 93.994 -36.4 4.858 5191 no
## 3999 1.1 93.994 -36.4 4.858 5191 no
## 4000 1.1 93.994 -36.4 4.858 5191 no
## 4001 1.1 93.994 -36.4 4.858 5191 no
## 4002 1.1 93.994 -36.4 4.858 5191 no
## 4004 1.1 93.994 -36.4 4.858 5191 no
## 4006 1.1 93.994 -36.4 4.858 5191 no
## 4007 1.1 93.994 -36.4 4.858 5191 no
## 4008 1.1 93.994 -36.4 4.858 5191 no
## 4009 1.1 93.994 -36.4 4.858 5191 no
## 4010 1.1 93.994 -36.4 4.858 5191 no
## 4013 1.1 93.994 -36.4 4.858 5191 no
## 4014 1.1 93.994 -36.4 4.858 5191 no
## 4015 1.1 93.994 -36.4 4.858 5191 no
## 4016 1.1 93.994 -36.4 4.858 5191 no
## 4017 1.1 93.994 -36.4 4.858 5191 no
## 4021 1.1 93.994 -36.4 4.858 5191 no
## 4022 1.1 93.994 -36.4 4.858 5191 no
## 4023 1.1 93.994 -36.4 4.858 5191 no
## 4024 1.1 93.994 -36.4 4.858 5191 no
## 4025 1.1 93.994 -36.4 4.858 5191 no
## 4026 1.1 93.994 -36.4 4.858 5191 no
## 4027 1.1 93.994 -36.4 4.858 5191 no
## 4029 1.1 93.994 -36.4 4.858 5191 no
## 4030 1.1 93.994 -36.4 4.858 5191 no
## 4031 1.1 93.994 -36.4 4.858 5191 no
## 4032 1.1 93.994 -36.4 4.858 5191 no
## 4034 1.1 93.994 -36.4 4.858 5191 no
## 4035 1.1 93.994 -36.4 4.858 5191 yes
## 4036 1.1 93.994 -36.4 4.858 5191 no
## 4037 1.1 93.994 -36.4 4.858 5191 no
## 4039 1.1 93.994 -36.4 4.858 5191 no
## 4040 1.1 93.994 -36.4 4.858 5191 no
## 4041 1.1 93.994 -36.4 4.858 5191 no
## 4042 1.1 93.994 -36.4 4.858 5191 no
## 4043 1.1 93.994 -36.4 4.858 5191 no
## 4045 1.1 93.994 -36.4 4.858 5191 no
## 4046 1.1 93.994 -36.4 4.858 5191 no
## 4047 1.1 93.994 -36.4 4.858 5191 no
## 4048 1.1 93.994 -36.4 4.858 5191 no
## 4049 1.1 93.994 -36.4 4.858 5191 no
## 4050 1.1 93.994 -36.4 4.858 5191 no
## 4051 1.1 93.994 -36.4 4.858 5191 yes
## 4053 1.1 93.994 -36.4 4.858 5191 no
## 4054 1.1 93.994 -36.4 4.858 5191 no
## 4056 1.1 93.994 -36.4 4.858 5191 no
## 4057 1.1 93.994 -36.4 4.858 5191 no
## 4058 1.1 93.994 -36.4 4.858 5191 no
## 4059 1.1 93.994 -36.4 4.858 5191 no
## 4060 1.1 93.994 -36.4 4.858 5191 no
## 4061 1.1 93.994 -36.4 4.858 5191 no
## 4062 1.1 93.994 -36.4 4.858 5191 no
## 4063 1.1 93.994 -36.4 4.858 5191 no
## 4064 1.1 93.994 -36.4 4.858 5191 no
## 4065 1.1 93.994 -36.4 4.858 5191 no
## 4067 1.1 93.994 -36.4 4.858 5191 no
## 4068 1.1 93.994 -36.4 4.858 5191 no
## 4069 1.1 93.994 -36.4 4.858 5191 no
## 4070 1.1 93.994 -36.4 4.858 5191 no
## 4071 1.1 93.994 -36.4 4.858 5191 no
## 4072 1.1 93.994 -36.4 4.858 5191 no
## 4073 1.1 93.994 -36.4 4.858 5191 no
## 4074 1.1 93.994 -36.4 4.858 5191 no
## 4078 1.1 93.994 -36.4 4.858 5191 no
## 4079 1.1 93.994 -36.4 4.858 5191 no
## 4080 1.1 93.994 -36.4 4.858 5191 no
## 4081 1.1 93.994 -36.4 4.858 5191 no
## 4084 1.1 93.994 -36.4 4.858 5191 no
## 4085 1.1 93.994 -36.4 4.858 5191 no
## 4086 1.1 93.994 -36.4 4.858 5191 no
## 4087 1.1 93.994 -36.4 4.858 5191 no
## 4088 1.1 93.994 -36.4 4.858 5191 no
## 4089 1.1 93.994 -36.4 4.858 5191 no
## 4090 1.1 93.994 -36.4 4.858 5191 no
## 4092 1.1 93.994 -36.4 4.858 5191 no
## 4094 1.1 93.994 -36.4 4.858 5191 no
## 4095 1.1 93.994 -36.4 4.858 5191 no
## 4096 1.1 93.994 -36.4 4.858 5191 no
## 4097 1.1 93.994 -36.4 4.858 5191 no
## 4098 1.1 93.994 -36.4 4.858 5191 no
## 4099 1.1 93.994 -36.4 4.858 5191 no
## 4100 1.1 93.994 -36.4 4.858 5191 no
## 4101 1.1 93.994 -36.4 4.858 5191 no
## 4102 1.1 93.994 -36.4 4.858 5191 no
## 4103 1.1 93.994 -36.4 4.858 5191 no
## 4104 1.1 93.994 -36.4 4.858 5191 no
## 4105 1.1 93.994 -36.4 4.858 5191 no
## 4106 1.1 93.994 -36.4 4.858 5191 no
## 4107 1.1 93.994 -36.4 4.858 5191 no
## 4108 1.1 93.994 -36.4 4.858 5191 no
## 4109 1.1 93.994 -36.4 4.858 5191 no
## 4110 1.1 93.994 -36.4 4.858 5191 no
## 4111 1.1 93.994 -36.4 4.858 5191 yes
## 4115 1.1 93.994 -36.4 4.858 5191 no
## 4116 1.1 93.994 -36.4 4.858 5191 no
## 4117 1.1 93.994 -36.4 4.858 5191 no
## 4118 1.1 93.994 -36.4 4.858 5191 no
## 4119 1.1 93.994 -36.4 4.858 5191 no
## 4120 1.1 93.994 -36.4 4.858 5191 no
## 4121 1.1 93.994 -36.4 4.858 5191 no
## 4122 1.1 93.994 -36.4 4.858 5191 no
## 4123 1.1 93.994 -36.4 4.858 5191 no
## 4125 1.1 93.994 -36.4 4.858 5191 no
## 4126 1.1 93.994 -36.4 4.858 5191 no
## 4127 1.1 93.994 -36.4 4.858 5191 no
## 4128 1.1 93.994 -36.4 4.858 5191 no
## 4129 1.1 93.994 -36.4 4.858 5191 no
## 4131 1.1 93.994 -36.4 4.858 5191 no
## 4132 1.1 93.994 -36.4 4.858 5191 no
## 4133 1.1 93.994 -36.4 4.858 5191 no
## 4134 1.1 93.994 -36.4 4.858 5191 no
## 4135 1.1 93.994 -36.4 4.858 5191 no
## 4137 1.1 93.994 -36.4 4.858 5191 no
## 4138 1.1 93.994 -36.4 4.858 5191 no
## 4139 1.1 93.994 -36.4 4.858 5191 no
## 4140 1.1 93.994 -36.4 4.858 5191 no
## 4141 1.1 93.994 -36.4 4.858 5191 no
## 4144 1.1 93.994 -36.4 4.858 5191 no
## 4146 1.1 93.994 -36.4 4.858 5191 no
## 4147 1.1 93.994 -36.4 4.858 5191 no
## 4149 1.1 93.994 -36.4 4.858 5191 no
## 4150 1.1 93.994 -36.4 4.858 5191 no
## 4154 1.1 93.994 -36.4 4.858 5191 no
## 4155 1.1 93.994 -36.4 4.858 5191 no
## 4156 1.1 93.994 -36.4 4.858 5191 no
## 4157 1.1 93.994 -36.4 4.858 5191 no
## 4159 1.1 93.994 -36.4 4.858 5191 no
## 4160 1.1 93.994 -36.4 4.858 5191 no
## 4161 1.1 93.994 -36.4 4.858 5191 no
## 4162 1.1 93.994 -36.4 4.858 5191 no
## 4163 1.1 93.994 -36.4 4.858 5191 no
## 4164 1.1 93.994 -36.4 4.858 5191 no
## 4165 1.1 93.994 -36.4 4.858 5191 yes
## 4166 1.1 93.994 -36.4 4.858 5191 no
## 4167 1.1 93.994 -36.4 4.858 5191 no
## 4168 1.1 93.994 -36.4 4.858 5191 yes
## 4170 1.1 93.994 -36.4 4.858 5191 no
## 4171 1.1 93.994 -36.4 4.858 5191 no
## 4173 1.1 93.994 -36.4 4.858 5191 no
## 4174 1.1 93.994 -36.4 4.858 5191 no
## 4175 1.1 93.994 -36.4 4.858 5191 no
## 4176 1.1 93.994 -36.4 4.858 5191 no
## 4178 1.1 93.994 -36.4 4.858 5191 no
## 4179 1.1 93.994 -36.4 4.858 5191 no
## 4180 1.1 93.994 -36.4 4.858 5191 no
## 4182 1.1 93.994 -36.4 4.858 5191 no
## 4183 1.1 93.994 -36.4 4.858 5191 no
## 4184 1.1 93.994 -36.4 4.858 5191 no
## 4186 1.1 93.994 -36.4 4.858 5191 no
## 4187 1.1 93.994 -36.4 4.858 5191 no
## 4188 1.1 93.994 -36.4 4.858 5191 no
## 4190 1.1 93.994 -36.4 4.858 5191 no
## 4191 1.1 93.994 -36.4 4.858 5191 no
## 4194 1.1 93.994 -36.4 4.858 5191 no
## 4195 1.1 93.994 -36.4 4.858 5191 no
## 4196 1.1 93.994 -36.4 4.858 5191 no
## 4197 1.1 93.994 -36.4 4.858 5191 no
## 4199 1.1 93.994 -36.4 4.858 5191 no
## 4203 1.1 93.994 -36.4 4.858 5191 no
## 4207 1.1 93.994 -36.4 4.858 5191 no
## 4208 1.1 93.994 -36.4 4.858 5191 no
## 4209 1.1 93.994 -36.4 4.858 5191 no
## 4210 1.1 93.994 -36.4 4.858 5191 yes
## 4211 1.1 93.994 -36.4 4.858 5191 no
## 4212 1.1 93.994 -36.4 4.858 5191 no
## 4213 1.1 93.994 -36.4 4.858 5191 no
## 4214 1.1 93.994 -36.4 4.858 5191 no
## 4215 1.1 93.994 -36.4 4.856 5191 no
## 4216 1.1 93.994 -36.4 4.856 5191 no
## 4217 1.1 93.994 -36.4 4.856 5191 no
## 4218 1.1 93.994 -36.4 4.856 5191 no
## 4219 1.1 93.994 -36.4 4.856 5191 no
## 4220 1.1 93.994 -36.4 4.856 5191 no
## 4221 1.1 93.994 -36.4 4.856 5191 no
## 4222 1.1 93.994 -36.4 4.856 5191 no
## 4223 1.1 93.994 -36.4 4.856 5191 no
## 4224 1.1 93.994 -36.4 4.856 5191 no
## 4226 1.1 93.994 -36.4 4.856 5191 no
## 4227 1.1 93.994 -36.4 4.856 5191 no
## 4228 1.1 93.994 -36.4 4.856 5191 no
## 4230 1.1 93.994 -36.4 4.856 5191 no
## 4231 1.1 93.994 -36.4 4.856 5191 no
## 4233 1.1 93.994 -36.4 4.856 5191 no
## 4234 1.1 93.994 -36.4 4.856 5191 no
## 4235 1.1 93.994 -36.4 4.856 5191 no
## 4237 1.1 93.994 -36.4 4.856 5191 no
## 4238 1.1 93.994 -36.4 4.856 5191 no
## 4239 1.1 93.994 -36.4 4.856 5191 no
## 4241 1.1 93.994 -36.4 4.856 5191 no
## 4242 1.1 93.994 -36.4 4.856 5191 no
## 4243 1.1 93.994 -36.4 4.856 5191 no
## 4245 1.1 93.994 -36.4 4.856 5191 no
## 4246 1.1 93.994 -36.4 4.856 5191 no
## 4248 1.1 93.994 -36.4 4.856 5191 no
## 4249 1.1 93.994 -36.4 4.856 5191 no
## 4251 1.1 93.994 -36.4 4.856 5191 no
## 4252 1.1 93.994 -36.4 4.856 5191 no
## 4253 1.1 93.994 -36.4 4.856 5191 yes
## 4254 1.1 93.994 -36.4 4.856 5191 no
## 4258 1.1 93.994 -36.4 4.856 5191 no
## 4259 1.1 93.994 -36.4 4.856 5191 no
## 4260 1.1 93.994 -36.4 4.856 5191 no
## 4261 1.1 93.994 -36.4 4.856 5191 no
## 4263 1.1 93.994 -36.4 4.856 5191 no
## 4265 1.1 93.994 -36.4 4.856 5191 yes
## 4266 1.1 93.994 -36.4 4.856 5191 no
## 4267 1.1 93.994 -36.4 4.856 5191 no
## 4268 1.1 93.994 -36.4 4.856 5191 no
## 4269 1.1 93.994 -36.4 4.856 5191 yes
## 4270 1.1 93.994 -36.4 4.856 5191 no
## 4271 1.1 93.994 -36.4 4.856 5191 no
## 4272 1.1 93.994 -36.4 4.856 5191 no
## 4273 1.1 93.994 -36.4 4.856 5191 no
## 4274 1.1 93.994 -36.4 4.856 5191 no
## 4275 1.1 93.994 -36.4 4.856 5191 no
## 4276 1.1 93.994 -36.4 4.856 5191 no
## 4277 1.1 93.994 -36.4 4.856 5191 no
## 4278 1.1 93.994 -36.4 4.856 5191 no
## 4279 1.1 93.994 -36.4 4.856 5191 no
## 4280 1.1 93.994 -36.4 4.856 5191 no
## 4281 1.1 93.994 -36.4 4.856 5191 no
## 4282 1.1 93.994 -36.4 4.856 5191 no
## 4283 1.1 93.994 -36.4 4.856 5191 no
## 4284 1.1 93.994 -36.4 4.856 5191 no
## 4285 1.1 93.994 -36.4 4.856 5191 no
## 4286 1.1 93.994 -36.4 4.856 5191 no
## 4287 1.1 93.994 -36.4 4.856 5191 no
## 4288 1.1 93.994 -36.4 4.856 5191 no
## 4289 1.1 93.994 -36.4 4.856 5191 no
## 4290 1.1 93.994 -36.4 4.856 5191 no
## 4293 1.1 93.994 -36.4 4.856 5191 no
## 4294 1.1 93.994 -36.4 4.856 5191 no
## 4295 1.1 93.994 -36.4 4.856 5191 yes
## 4297 1.1 93.994 -36.4 4.856 5191 no
## 4298 1.1 93.994 -36.4 4.856 5191 no
## 4299 1.1 93.994 -36.4 4.856 5191 no
## 4300 1.1 93.994 -36.4 4.856 5191 no
## 4301 1.1 93.994 -36.4 4.856 5191 no
## 4303 1.1 93.994 -36.4 4.856 5191 no
## 4304 1.1 93.994 -36.4 4.856 5191 no
## 4305 1.1 93.994 -36.4 4.856 5191 no
## 4306 1.1 93.994 -36.4 4.856 5191 no
## 4307 1.1 93.994 -36.4 4.856 5191 no
## 4308 1.1 93.994 -36.4 4.856 5191 no
## 4310 1.1 93.994 -36.4 4.856 5191 no
## 4311 1.1 93.994 -36.4 4.856 5191 no
## 4313 1.1 93.994 -36.4 4.856 5191 no
## 4315 1.1 93.994 -36.4 4.856 5191 no
## 4316 1.1 93.994 -36.4 4.856 5191 no
## 4317 1.1 93.994 -36.4 4.856 5191 no
## 4318 1.1 93.994 -36.4 4.856 5191 no
## 4319 1.1 93.994 -36.4 4.856 5191 no
## 4320 1.1 93.994 -36.4 4.856 5191 no
## 4321 1.1 93.994 -36.4 4.856 5191 no
## 4322 1.1 93.994 -36.4 4.856 5191 no
## 4323 1.1 93.994 -36.4 4.856 5191 no
## 4324 1.1 93.994 -36.4 4.856 5191 no
## 4325 1.1 93.994 -36.4 4.856 5191 no
## 4326 1.1 93.994 -36.4 4.856 5191 no
## 4327 1.1 93.994 -36.4 4.856 5191 no
## 4329 1.1 93.994 -36.4 4.856 5191 no
## 4330 1.1 93.994 -36.4 4.856 5191 no
## 4332 1.1 93.994 -36.4 4.856 5191 no
## 4333 1.1 93.994 -36.4 4.856 5191 no
## 4334 1.1 93.994 -36.4 4.856 5191 no
## 4335 1.1 93.994 -36.4 4.856 5191 no
## 4336 1.1 93.994 -36.4 4.856 5191 no
## 4337 1.1 93.994 -36.4 4.856 5191 no
## 4338 1.1 93.994 -36.4 4.856 5191 no
## 4339 1.1 93.994 -36.4 4.856 5191 no
## 4340 1.1 93.994 -36.4 4.856 5191 no
## 4341 1.1 93.994 -36.4 4.856 5191 no
## 4342 1.1 93.994 -36.4 4.856 5191 no
## 4343 1.1 93.994 -36.4 4.856 5191 no
## 4346 1.1 93.994 -36.4 4.856 5191 no
## 4348 1.1 93.994 -36.4 4.856 5191 no
## 4349 1.1 93.994 -36.4 4.856 5191 no
## 4350 1.1 93.994 -36.4 4.856 5191 no
## 4351 1.1 93.994 -36.4 4.856 5191 no
## 4352 1.1 93.994 -36.4 4.856 5191 no
## 4353 1.1 93.994 -36.4 4.856 5191 no
## 4354 1.1 93.994 -36.4 4.856 5191 yes
## 4356 1.1 93.994 -36.4 4.856 5191 no
## 4357 1.1 93.994 -36.4 4.856 5191 no
## 4358 1.1 93.994 -36.4 4.856 5191 no
## 4359 1.1 93.994 -36.4 4.856 5191 no
## 4361 1.1 93.994 -36.4 4.856 5191 no
## 4362 1.1 93.994 -36.4 4.856 5191 no
## 4365 1.1 93.994 -36.4 4.856 5191 no
## 4366 1.1 93.994 -36.4 4.856 5191 no
## 4367 1.1 93.994 -36.4 4.856 5191 no
## 4370 1.1 93.994 -36.4 4.856 5191 no
## 4371 1.1 93.994 -36.4 4.856 5191 no
## 4372 1.1 93.994 -36.4 4.856 5191 no
## 4374 1.1 93.994 -36.4 4.856 5191 no
## 4375 1.1 93.994 -36.4 4.856 5191 no
## 4376 1.1 93.994 -36.4 4.856 5191 no
## 4377 1.1 93.994 -36.4 4.856 5191 no
## 4378 1.1 93.994 -36.4 4.856 5191 no
## 4379 1.1 93.994 -36.4 4.856 5191 no
## 4380 1.1 93.994 -36.4 4.856 5191 no
## 4382 1.1 93.994 -36.4 4.856 5191 no
## 4383 1.1 93.994 -36.4 4.856 5191 no
## 4384 1.1 93.994 -36.4 4.856 5191 no
## 4385 1.1 93.994 -36.4 4.856 5191 no
## 4387 1.1 93.994 -36.4 4.856 5191 no
## 4388 1.1 93.994 -36.4 4.856 5191 no
## 4389 1.1 93.994 -36.4 4.856 5191 no
## 4391 1.1 93.994 -36.4 4.856 5191 no
## 4392 1.1 93.994 -36.4 4.856 5191 no
## 4393 1.1 93.994 -36.4 4.856 5191 no
## 4394 1.1 93.994 -36.4 4.856 5191 no
## 4395 1.1 93.994 -36.4 4.856 5191 no
## 4396 1.1 93.994 -36.4 4.856 5191 no
## 4398 1.1 93.994 -36.4 4.856 5191 no
## 4399 1.1 93.994 -36.4 4.856 5191 no
## 4400 1.1 93.994 -36.4 4.856 5191 no
## 4403 1.1 93.994 -36.4 4.856 5191 no
## 4405 1.1 93.994 -36.4 4.856 5191 no
## 4406 1.1 93.994 -36.4 4.856 5191 no
## 4407 1.1 93.994 -36.4 4.856 5191 no
## 4408 1.1 93.994 -36.4 4.856 5191 no
## 4409 1.1 93.994 -36.4 4.856 5191 no
## 4410 1.1 93.994 -36.4 4.856 5191 no
## 4411 1.1 93.994 -36.4 4.856 5191 no
## 4412 1.1 93.994 -36.4 4.856 5191 no
## 4414 1.1 93.994 -36.4 4.856 5191 no
## 4415 1.1 93.994 -36.4 4.856 5191 no
## 4416 1.1 93.994 -36.4 4.856 5191 no
## 4417 1.1 93.994 -36.4 4.856 5191 no
## 4418 1.1 93.994 -36.4 4.856 5191 no
## 4419 1.1 93.994 -36.4 4.856 5191 no
## 4420 1.1 93.994 -36.4 4.856 5191 no
## 4421 1.1 93.994 -36.4 4.856 5191 no
## 4422 1.1 93.994 -36.4 4.856 5191 no
## 4423 1.1 93.994 -36.4 4.856 5191 no
## 4424 1.1 93.994 -36.4 4.856 5191 no
## 4425 1.1 93.994 -36.4 4.856 5191 no
## 4427 1.1 93.994 -36.4 4.856 5191 no
## 4429 1.1 93.994 -36.4 4.856 5191 no
## 4430 1.1 93.994 -36.4 4.856 5191 no
## 4433 1.1 93.994 -36.4 4.856 5191 no
## 4434 1.1 93.994 -36.4 4.856 5191 no
## 4437 1.1 93.994 -36.4 4.856 5191 no
## 4438 1.1 93.994 -36.4 4.856 5191 no
## 4439 1.1 93.994 -36.4 4.856 5191 no
## 4440 1.1 93.994 -36.4 4.856 5191 no
## 4441 1.1 93.994 -36.4 4.856 5191 no
## 4442 1.1 93.994 -36.4 4.856 5191 no
## 4443 1.1 93.994 -36.4 4.856 5191 no
## 4444 1.1 93.994 -36.4 4.856 5191 no
## 4447 1.1 93.994 -36.4 4.856 5191 no
## 4448 1.1 93.994 -36.4 4.856 5191 no
## 4449 1.1 93.994 -36.4 4.856 5191 no
## 4451 1.1 93.994 -36.4 4.856 5191 no
## 4452 1.1 93.994 -36.4 4.856 5191 no
## 4453 1.1 93.994 -36.4 4.856 5191 no
## 4455 1.1 93.994 -36.4 4.856 5191 no
## 4456 1.1 93.994 -36.4 4.856 5191 no
## 4457 1.1 93.994 -36.4 4.856 5191 no
## 4458 1.1 93.994 -36.4 4.856 5191 no
## 4460 1.1 93.994 -36.4 4.856 5191 no
## 4461 1.1 93.994 -36.4 4.856 5191 no
## 4462 1.1 93.994 -36.4 4.856 5191 no
## 4463 1.1 93.994 -36.4 4.856 5191 no
## 4464 1.1 93.994 -36.4 4.856 5191 no
## 4465 1.1 93.994 -36.4 4.856 5191 no
## 4466 1.1 93.994 -36.4 4.856 5191 no
## 4467 1.1 93.994 -36.4 4.856 5191 no
## 4468 1.1 93.994 -36.4 4.856 5191 no
## 4469 1.1 93.994 -36.4 4.856 5191 no
## 4470 1.1 93.994 -36.4 4.856 5191 no
## 4472 1.1 93.994 -36.4 4.856 5191 no
## 4473 1.1 93.994 -36.4 4.856 5191 no
## 4474 1.1 93.994 -36.4 4.856 5191 no
## 4475 1.1 93.994 -36.4 4.856 5191 no
## 4476 1.1 93.994 -36.4 4.856 5191 no
## 4477 1.1 93.994 -36.4 4.856 5191 no
## 4478 1.1 93.994 -36.4 4.856 5191 no
## 4479 1.1 93.994 -36.4 4.856 5191 no
## 4481 1.1 93.994 -36.4 4.856 5191 no
## 4483 1.1 93.994 -36.4 4.856 5191 no
## 4484 1.1 93.994 -36.4 4.856 5191 no
## 4485 1.1 93.994 -36.4 4.856 5191 no
## 4486 1.1 93.994 -36.4 4.856 5191 yes
## 4487 1.1 93.994 -36.4 4.856 5191 no
## 4488 1.1 93.994 -36.4 4.856 5191 no
## 4489 1.1 93.994 -36.4 4.856 5191 no
## 4490 1.1 93.994 -36.4 4.856 5191 no
## 4492 1.1 93.994 -36.4 4.856 5191 no
## 4493 1.1 93.994 -36.4 4.856 5191 no
## 4494 1.1 93.994 -36.4 4.856 5191 no
## 4495 1.1 93.994 -36.4 4.856 5191 no
## 4496 1.1 93.994 -36.4 4.856 5191 no
## 4497 1.1 93.994 -36.4 4.856 5191 no
## 4498 1.1 93.994 -36.4 4.856 5191 no
## 4499 1.1 93.994 -36.4 4.856 5191 no
## 4500 1.1 93.994 -36.4 4.856 5191 no
## 4501 1.1 93.994 -36.4 4.856 5191 no
## 4502 1.1 93.994 -36.4 4.856 5191 no
## 4503 1.1 93.994 -36.4 4.856 5191 no
## 4507 1.1 93.994 -36.4 4.856 5191 no
## 4508 1.1 93.994 -36.4 4.856 5191 no
## 4509 1.1 93.994 -36.4 4.856 5191 no
## 4510 1.1 93.994 -36.4 4.856 5191 no
## 4511 1.1 93.994 -36.4 4.856 5191 no
## 4512 1.1 93.994 -36.4 4.856 5191 no
## 4513 1.1 93.994 -36.4 4.856 5191 no
## 4515 1.1 93.994 -36.4 4.856 5191 no
## 4516 1.1 93.994 -36.4 4.856 5191 no
## 4517 1.1 93.994 -36.4 4.856 5191 no
## 4520 1.1 93.994 -36.4 4.856 5191 no
## 4521 1.1 93.994 -36.4 4.856 5191 no
## 4522 1.1 93.994 -36.4 4.856 5191 no
## 4523 1.1 93.994 -36.4 4.856 5191 yes
## 4524 1.1 93.994 -36.4 4.856 5191 no
## 4525 1.1 93.994 -36.4 4.856 5191 no
## 4526 1.1 93.994 -36.4 4.856 5191 no
## 4527 1.1 93.994 -36.4 4.856 5191 no
## 4528 1.1 93.994 -36.4 4.856 5191 no
## 4529 1.1 93.994 -36.4 4.856 5191 no
## 4530 1.1 93.994 -36.4 4.856 5191 no
## 4531 1.1 93.994 -36.4 4.856 5191 no
## 4533 1.1 93.994 -36.4 4.856 5191 no
## 4535 1.1 93.994 -36.4 4.856 5191 no
## 4536 1.1 93.994 -36.4 4.856 5191 no
## 4537 1.1 93.994 -36.4 4.856 5191 no
## 4538 1.1 93.994 -36.4 4.856 5191 no
## 4539 1.1 93.994 -36.4 4.856 5191 no
## 4540 1.1 93.994 -36.4 4.856 5191 no
## 4542 1.1 93.994 -36.4 4.856 5191 no
## 4543 1.1 93.994 -36.4 4.856 5191 no
## 4544 1.1 93.994 -36.4 4.856 5191 no
## 4545 1.1 93.994 -36.4 4.856 5191 no
## 4546 1.1 93.994 -36.4 4.856 5191 no
## 4547 1.1 93.994 -36.4 4.856 5191 no
## 4548 1.1 93.994 -36.4 4.856 5191 no
## 4550 1.1 93.994 -36.4 4.856 5191 no
## 4551 1.1 93.994 -36.4 4.856 5191 no
## 4552 1.1 93.994 -36.4 4.856 5191 no
## 4553 1.1 93.994 -36.4 4.856 5191 no
## 4554 1.1 93.994 -36.4 4.856 5191 no
## 4555 1.1 93.994 -36.4 4.856 5191 no
## 4556 1.1 93.994 -36.4 4.856 5191 no
## 4557 1.1 93.994 -36.4 4.856 5191 no
## 4559 1.1 93.994 -36.4 4.856 5191 no
## 4560 1.1 93.994 -36.4 4.856 5191 no
## 4561 1.1 93.994 -36.4 4.856 5191 no
## 4562 1.1 93.994 -36.4 4.856 5191 no
## 4563 1.1 93.994 -36.4 4.856 5191 no
## 4566 1.1 93.994 -36.4 4.856 5191 no
## 4568 1.1 93.994 -36.4 4.856 5191 no
## 4569 1.1 93.994 -36.4 4.856 5191 no
## 4570 1.1 93.994 -36.4 4.856 5191 no
## 4571 1.1 93.994 -36.4 4.856 5191 no
## 4573 1.1 93.994 -36.4 4.856 5191 no
## 4574 1.1 93.994 -36.4 4.856 5191 no
## 4575 1.1 93.994 -36.4 4.856 5191 no
## 4576 1.1 93.994 -36.4 4.856 5191 no
## 4577 1.1 93.994 -36.4 4.856 5191 no
## 4578 1.1 93.994 -36.4 4.856 5191 no
## 4579 1.1 93.994 -36.4 4.856 5191 no
## 4580 1.1 93.994 -36.4 4.856 5191 no
## 4582 1.1 93.994 -36.4 4.856 5191 no
## 4583 1.1 93.994 -36.4 4.856 5191 no
## 4584 1.1 93.994 -36.4 4.856 5191 no
## 4586 1.1 93.994 -36.4 4.856 5191 no
## 4587 1.1 93.994 -36.4 4.856 5191 no
## 4588 1.1 93.994 -36.4 4.856 5191 no
## 4589 1.1 93.994 -36.4 4.856 5191 no
## 4591 1.1 93.994 -36.4 4.856 5191 no
## 4592 1.1 93.994 -36.4 4.856 5191 no
## 4594 1.1 93.994 -36.4 4.856 5191 no
## 4595 1.1 93.994 -36.4 4.856 5191 no
## 4596 1.1 93.994 -36.4 4.856 5191 no
## 4597 1.1 93.994 -36.4 4.856 5191 no
## 4598 1.1 93.994 -36.4 4.856 5191 no
## 4599 1.1 93.994 -36.4 4.856 5191 no
## 4600 1.1 93.994 -36.4 4.856 5191 no
## 4601 1.1 93.994 -36.4 4.856 5191 no
## 4602 1.1 93.994 -36.4 4.856 5191 no
## 4603 1.1 93.994 -36.4 4.856 5191 no
## 4604 1.1 93.994 -36.4 4.856 5191 no
## 4606 1.1 93.994 -36.4 4.856 5191 no
## 4607 1.1 93.994 -36.4 4.856 5191 no
## 4608 1.1 93.994 -36.4 4.856 5191 no
## 4609 1.1 93.994 -36.4 4.856 5191 no
## 4610 1.1 93.994 -36.4 4.856 5191 yes
## 4612 1.1 93.994 -36.4 4.856 5191 no
## 4614 1.1 93.994 -36.4 4.856 5191 no
## 4615 1.1 93.994 -36.4 4.856 5191 no
## 4616 1.1 93.994 -36.4 4.856 5191 no
## 4617 1.1 93.994 -36.4 4.856 5191 no
## 4618 1.1 93.994 -36.4 4.856 5191 no
## 4619 1.1 93.994 -36.4 4.856 5191 no
## 4621 1.1 93.994 -36.4 4.856 5191 no
## 4622 1.1 93.994 -36.4 4.856 5191 no
## 4623 1.1 93.994 -36.4 4.856 5191 no
## 4625 1.1 93.994 -36.4 4.856 5191 no
## 4626 1.1 93.994 -36.4 4.856 5191 no
## 4627 1.1 93.994 -36.4 4.858 5191 no
## 4628 1.1 93.994 -36.4 4.858 5191 no
## 4629 1.1 93.994 -36.4 4.858 5191 no
## 4630 1.1 93.994 -36.4 4.858 5191 no
## 4631 1.1 93.994 -36.4 4.858 5191 no
## 4633 1.1 93.994 -36.4 4.858 5191 no
## 4634 1.1 93.994 -36.4 4.858 5191 no
## 4635 1.1 93.994 -36.4 4.858 5191 no
## 4636 1.1 93.994 -36.4 4.858 5191 yes
## 4638 1.1 93.994 -36.4 4.858 5191 no
## 4640 1.1 93.994 -36.4 4.858 5191 no
## 4641 1.1 93.994 -36.4 4.858 5191 no
## 4642 1.1 93.994 -36.4 4.858 5191 no
## 4643 1.1 93.994 -36.4 4.858 5191 no
## 4644 1.1 93.994 -36.4 4.858 5191 no
## 4645 1.1 93.994 -36.4 4.858 5191 no
## 4646 1.1 93.994 -36.4 4.858 5191 no
## 4647 1.1 93.994 -36.4 4.858 5191 no
## 4649 1.1 93.994 -36.4 4.858 5191 no
## 4650 1.1 93.994 -36.4 4.858 5191 no
## 4651 1.1 93.994 -36.4 4.858 5191 no
## 4652 1.1 93.994 -36.4 4.858 5191 no
## 4653 1.1 93.994 -36.4 4.858 5191 yes
## 4656 1.1 93.994 -36.4 4.858 5191 no
## 4658 1.1 93.994 -36.4 4.858 5191 no
## 4659 1.1 93.994 -36.4 4.858 5191 no
## 4660 1.1 93.994 -36.4 4.858 5191 no
## 4662 1.1 93.994 -36.4 4.858 5191 no
## 4663 1.1 93.994 -36.4 4.858 5191 no
## 4664 1.1 93.994 -36.4 4.858 5191 no
## 4665 1.1 93.994 -36.4 4.858 5191 no
## 4666 1.1 93.994 -36.4 4.858 5191 no
## 4667 1.1 93.994 -36.4 4.858 5191 no
## 4668 1.1 93.994 -36.4 4.858 5191 no
## 4669 1.1 93.994 -36.4 4.858 5191 no
## 4671 1.1 93.994 -36.4 4.858 5191 no
## 4673 1.1 93.994 -36.4 4.858 5191 yes
## 4674 1.1 93.994 -36.4 4.858 5191 no
## 4676 1.1 93.994 -36.4 4.858 5191 no
## 4677 1.1 93.994 -36.4 4.858 5191 no
## 4678 1.1 93.994 -36.4 4.858 5191 yes
## 4679 1.1 93.994 -36.4 4.858 5191 no
## 4680 1.1 93.994 -36.4 4.858 5191 no
## 4681 1.1 93.994 -36.4 4.858 5191 no
## 4682 1.1 93.994 -36.4 4.858 5191 no
## 4684 1.1 93.994 -36.4 4.858 5191 no
## 4686 1.1 93.994 -36.4 4.858 5191 no
## 4688 1.1 93.994 -36.4 4.858 5191 no
## 4690 1.1 93.994 -36.4 4.858 5191 no
## 4693 1.1 93.994 -36.4 4.858 5191 no
## 4694 1.1 93.994 -36.4 4.858 5191 no
## 4695 1.1 93.994 -36.4 4.858 5191 yes
## 4696 1.1 93.994 -36.4 4.858 5191 no
## 4697 1.1 93.994 -36.4 4.858 5191 no
## 4698 1.1 93.994 -36.4 4.858 5191 no
## 4699 1.1 93.994 -36.4 4.858 5191 no
## 4700 1.1 93.994 -36.4 4.858 5191 no
## 4701 1.1 93.994 -36.4 4.858 5191 no
## 4702 1.1 93.994 -36.4 4.858 5191 no
## 4703 1.1 93.994 -36.4 4.858 5191 no
## 4704 1.1 93.994 -36.4 4.858 5191 no
## 4705 1.1 93.994 -36.4 4.858 5191 no
## 4706 1.1 93.994 -36.4 4.858 5191 no
## 4707 1.1 93.994 -36.4 4.858 5191 no
## 4708 1.1 93.994 -36.4 4.858 5191 no
## 4709 1.1 93.994 -36.4 4.858 5191 no
## 4710 1.1 93.994 -36.4 4.858 5191 no
## 4711 1.1 93.994 -36.4 4.858 5191 no
## 4712 1.1 93.994 -36.4 4.858 5191 no
## 4714 1.1 93.994 -36.4 4.858 5191 no
## 4715 1.1 93.994 -36.4 4.858 5191 no
## 4717 1.1 93.994 -36.4 4.858 5191 no
## 4720 1.1 93.994 -36.4 4.858 5191 no
## 4721 1.1 93.994 -36.4 4.858 5191 yes
## 4722 1.1 93.994 -36.4 4.858 5191 no
## 4723 1.1 93.994 -36.4 4.858 5191 no
## 4724 1.1 93.994 -36.4 4.858 5191 no
## 4725 1.1 93.994 -36.4 4.858 5191 no
## 4726 1.1 93.994 -36.4 4.858 5191 no
## 4727 1.1 93.994 -36.4 4.858 5191 no
## 4728 1.1 93.994 -36.4 4.858 5191 no
## 4730 1.1 93.994 -36.4 4.858 5191 no
## 4731 1.1 93.994 -36.4 4.858 5191 no
## 4732 1.1 93.994 -36.4 4.858 5191 no
## 4733 1.1 93.994 -36.4 4.858 5191 no
## 4735 1.1 93.994 -36.4 4.858 5191 no
## 4737 1.1 93.994 -36.4 4.858 5191 no
## 4738 1.1 93.994 -36.4 4.858 5191 yes
## 4739 1.1 93.994 -36.4 4.858 5191 no
## 4740 1.1 93.994 -36.4 4.858 5191 no
## 4741 1.1 93.994 -36.4 4.858 5191 no
## 4742 1.1 93.994 -36.4 4.858 5191 no
## 4743 1.1 93.994 -36.4 4.858 5191 no
## 4744 1.1 93.994 -36.4 4.858 5191 no
## 4746 1.1 93.994 -36.4 4.858 5191 no
## 4747 1.1 93.994 -36.4 4.858 5191 no
## 4748 1.1 93.994 -36.4 4.858 5191 no
## 4749 1.1 93.994 -36.4 4.858 5191 no
## 4750 1.1 93.994 -36.4 4.858 5191 no
## 4751 1.1 93.994 -36.4 4.858 5191 no
## 4752 1.1 93.994 -36.4 4.858 5191 no
## 4755 1.1 93.994 -36.4 4.858 5191 no
## 4756 1.1 93.994 -36.4 4.858 5191 no
## 4757 1.1 93.994 -36.4 4.858 5191 no
## 4758 1.1 93.994 -36.4 4.858 5191 no
## 4759 1.1 93.994 -36.4 4.858 5191 no
## 4760 1.1 93.994 -36.4 4.858 5191 no
## 4761 1.1 93.994 -36.4 4.858 5191 no
## 4762 1.1 93.994 -36.4 4.858 5191 no
## 4763 1.1 93.994 -36.4 4.858 5191 no
## 4764 1.1 93.994 -36.4 4.858 5191 no
## 4765 1.1 93.994 -36.4 4.858 5191 no
## 4766 1.1 93.994 -36.4 4.858 5191 no
## 4767 1.1 93.994 -36.4 4.858 5191 no
## 4768 1.1 93.994 -36.4 4.858 5191 no
## 4770 1.1 93.994 -36.4 4.858 5191 yes
## 4771 1.1 93.994 -36.4 4.858 5191 no
## 4772 1.1 93.994 -36.4 4.858 5191 no
## 4773 1.1 93.994 -36.4 4.858 5191 no
## 4774 1.1 93.994 -36.4 4.858 5191 no
## 4775 1.1 93.994 -36.4 4.858 5191 no
## 4776 1.1 93.994 -36.4 4.858 5191 no
## 4778 1.1 93.994 -36.4 4.858 5191 no
## 4780 1.1 93.994 -36.4 4.858 5191 no
## 4782 1.1 93.994 -36.4 4.858 5191 no
## 4783 1.1 93.994 -36.4 4.858 5191 no
## 4784 1.1 93.994 -36.4 4.858 5191 no
## 4785 1.1 93.994 -36.4 4.858 5191 no
## 4786 1.1 93.994 -36.4 4.858 5191 no
## 4788 1.1 93.994 -36.4 4.858 5191 no
## 4789 1.1 93.994 -36.4 4.858 5191 no
## 4790 1.1 93.994 -36.4 4.858 5191 no
## 4792 1.1 93.994 -36.4 4.858 5191 no
## 4793 1.1 93.994 -36.4 4.858 5191 no
## 4794 1.1 93.994 -36.4 4.858 5191 yes
## 4795 1.1 93.994 -36.4 4.858 5191 no
## 4796 1.1 93.994 -36.4 4.858 5191 no
## 4797 1.1 93.994 -36.4 4.858 5191 no
## 4798 1.1 93.994 -36.4 4.858 5191 no
## 4799 1.1 93.994 -36.4 4.858 5191 no
## 4800 1.1 93.994 -36.4 4.858 5191 no
## 4801 1.1 93.994 -36.4 4.858 5191 no
## 4802 1.1 93.994 -36.4 4.858 5191 no
## 4803 1.1 93.994 -36.4 4.858 5191 no
## 4804 1.1 93.994 -36.4 4.858 5191 no
## 4805 1.1 93.994 -36.4 4.858 5191 no
## 4806 1.1 93.994 -36.4 4.858 5191 no
## 4807 1.1 93.994 -36.4 4.858 5191 no
## 4809 1.1 93.994 -36.4 4.858 5191 no
## 4810 1.1 93.994 -36.4 4.858 5191 no
## 4811 1.1 93.994 -36.4 4.858 5191 no
## 4812 1.1 93.994 -36.4 4.858 5191 no
## 4813 1.1 93.994 -36.4 4.858 5191 no
## 4814 1.1 93.994 -36.4 4.858 5191 no
## 4817 1.1 93.994 -36.4 4.858 5191 no
## 4818 1.1 93.994 -36.4 4.858 5191 no
## 4819 1.1 93.994 -36.4 4.858 5191 no
## 4820 1.1 93.994 -36.4 4.858 5191 no
## 4823 1.1 93.994 -36.4 4.858 5191 no
## 4824 1.1 93.994 -36.4 4.858 5191 no
## 4825 1.1 93.994 -36.4 4.858 5191 no
## 4826 1.1 93.994 -36.4 4.858 5191 no
## 4827 1.1 93.994 -36.4 4.858 5191 no
## 4828 1.1 93.994 -36.4 4.858 5191 no
## 4830 1.1 93.994 -36.4 4.858 5191 no
## 4831 1.1 93.994 -36.4 4.858 5191 no
## 4833 1.1 93.994 -36.4 4.858 5191 no
## 4834 1.1 93.994 -36.4 4.858 5191 no
## 4837 1.1 93.994 -36.4 4.858 5191 no
## 4839 1.1 93.994 -36.4 4.858 5191 no
## 4840 1.1 93.994 -36.4 4.858 5191 no
## 4841 1.1 93.994 -36.4 4.858 5191 no
## 4842 1.1 93.994 -36.4 4.858 5191 no
## 4845 1.1 93.994 -36.4 4.858 5191 no
## 4846 1.1 93.994 -36.4 4.858 5191 no
## 4847 1.1 93.994 -36.4 4.858 5191 no
## 4849 1.1 93.994 -36.4 4.858 5191 no
## 4850 1.1 93.994 -36.4 4.858 5191 no
## 4851 1.1 93.994 -36.4 4.858 5191 no
## 4853 1.1 93.994 -36.4 4.858 5191 no
## 4854 1.1 93.994 -36.4 4.858 5191 no
## 4855 1.1 93.994 -36.4 4.858 5191 no
## 4856 1.1 93.994 -36.4 4.858 5191 no
## 4857 1.1 93.994 -36.4 4.858 5191 no
## 4858 1.1 93.994 -36.4 4.858 5191 no
## 4859 1.1 93.994 -36.4 4.858 5191 no
## 4861 1.1 93.994 -36.4 4.858 5191 no
## 4862 1.1 93.994 -36.4 4.858 5191 no
## 4863 1.1 93.994 -36.4 4.858 5191 no
## 4864 1.1 93.994 -36.4 4.858 5191 no
## 4865 1.1 93.994 -36.4 4.858 5191 no
## 4866 1.1 93.994 -36.4 4.858 5191 no
## 4867 1.1 93.994 -36.4 4.858 5191 no
## 4868 1.1 93.994 -36.4 4.858 5191 no
## 4869 1.1 93.994 -36.4 4.858 5191 no
## 4870 1.1 93.994 -36.4 4.858 5191 no
## 4871 1.1 93.994 -36.4 4.858 5191 no
## 4872 1.1 93.994 -36.4 4.858 5191 no
## 4873 1.1 93.994 -36.4 4.858 5191 yes
## 4874 1.1 93.994 -36.4 4.858 5191 no
## 4876 1.1 93.994 -36.4 4.858 5191 no
## 4877 1.1 93.994 -36.4 4.858 5191 no
## 4878 1.1 93.994 -36.4 4.858 5191 no
## 4879 1.1 93.994 -36.4 4.858 5191 no
## 4880 1.1 93.994 -36.4 4.858 5191 no
## 4882 1.1 93.994 -36.4 4.858 5191 no
## 4883 1.1 93.994 -36.4 4.858 5191 no
## 4885 1.1 93.994 -36.4 4.858 5191 no
## 4886 1.1 93.994 -36.4 4.858 5191 no
## 4887 1.1 93.994 -36.4 4.858 5191 no
## 4888 1.1 93.994 -36.4 4.858 5191 no
## 4890 1.1 93.994 -36.4 4.858 5191 no
## 4891 1.1 93.994 -36.4 4.858 5191 no
## 4892 1.1 93.994 -36.4 4.858 5191 no
## 4893 1.1 93.994 -36.4 4.858 5191 no
## 4895 1.1 93.994 -36.4 4.858 5191 no
## 4896 1.1 93.994 -36.4 4.858 5191 no
## 4897 1.1 93.994 -36.4 4.858 5191 no
## 4898 1.1 93.994 -36.4 4.858 5191 no
## 4899 1.1 93.994 -36.4 4.858 5191 no
## 4900 1.1 93.994 -36.4 4.858 5191 yes
## 4901 1.1 93.994 -36.4 4.858 5191 no
## 4902 1.1 93.994 -36.4 4.858 5191 no
## 4903 1.1 93.994 -36.4 4.858 5191 yes
## 4904 1.1 93.994 -36.4 4.858 5191 no
## 4905 1.1 93.994 -36.4 4.858 5191 yes
## 4906 1.1 93.994 -36.4 4.858 5191 no
## 4909 1.1 93.994 -36.4 4.858 5191 no
## 4910 1.1 93.994 -36.4 4.858 5191 no
## 4911 1.1 93.994 -36.4 4.858 5191 no
## 4912 1.1 93.994 -36.4 4.858 5191 no
## 4913 1.1 93.994 -36.4 4.858 5191 no
## 4914 1.1 93.994 -36.4 4.858 5191 no
## 4916 1.1 93.994 -36.4 4.858 5191 no
## 4917 1.1 93.994 -36.4 4.858 5191 no
## 4918 1.1 93.994 -36.4 4.858 5191 no
## 4919 1.1 93.994 -36.4 4.858 5191 no
## 4921 1.1 93.994 -36.4 4.858 5191 no
## 4922 1.1 93.994 -36.4 4.858 5191 no
## 4923 1.1 93.994 -36.4 4.858 5191 no
## 4924 1.1 93.994 -36.4 4.858 5191 no
## 4925 1.1 93.994 -36.4 4.858 5191 no
## 4926 1.1 93.994 -36.4 4.858 5191 no
## 4927 1.1 93.994 -36.4 4.858 5191 no
## 4928 1.1 93.994 -36.4 4.858 5191 no
## 4929 1.1 93.994 -36.4 4.858 5191 no
## 4930 1.1 93.994 -36.4 4.858 5191 no
## 4931 1.1 93.994 -36.4 4.858 5191 no
## 4934 1.1 93.994 -36.4 4.858 5191 no
## 4935 1.1 93.994 -36.4 4.858 5191 no
## 4936 1.1 93.994 -36.4 4.858 5191 no
## 4937 1.1 93.994 -36.4 4.858 5191 no
## 4938 1.1 93.994 -36.4 4.858 5191 no
## 4939 1.1 93.994 -36.4 4.858 5191 no
## 4940 1.1 93.994 -36.4 4.858 5191 no
## 4942 1.1 93.994 -36.4 4.858 5191 no
## 4943 1.1 93.994 -36.4 4.858 5191 no
## 4944 1.1 93.994 -36.4 4.858 5191 no
## 4945 1.1 93.994 -36.4 4.858 5191 no
## 4946 1.1 93.994 -36.4 4.858 5191 no
## 4948 1.1 93.994 -36.4 4.858 5191 no
## 4949 1.1 93.994 -36.4 4.858 5191 no
## 4950 1.1 93.994 -36.4 4.858 5191 no
## 4951 1.1 93.994 -36.4 4.858 5191 no
## 4952 1.1 93.994 -36.4 4.858 5191 no
## 4953 1.1 93.994 -36.4 4.858 5191 no
## 4954 1.1 93.994 -36.4 4.858 5191 no
## 4956 1.1 93.994 -36.4 4.858 5191 no
## 4957 1.1 93.994 -36.4 4.858 5191 no
## 4958 1.1 93.994 -36.4 4.858 5191 no
## 4959 1.1 93.994 -36.4 4.858 5191 no
## 4960 1.1 93.994 -36.4 4.858 5191 no
## 4961 1.1 93.994 -36.4 4.858 5191 no
## 4962 1.1 93.994 -36.4 4.858 5191 no
## 4963 1.1 93.994 -36.4 4.858 5191 no
## 4964 1.1 93.994 -36.4 4.858 5191 no
## 4966 1.1 93.994 -36.4 4.858 5191 no
## 4967 1.1 93.994 -36.4 4.858 5191 no
## 4968 1.1 93.994 -36.4 4.858 5191 no
## 4969 1.1 93.994 -36.4 4.858 5191 no
## 4971 1.1 93.994 -36.4 4.858 5191 no
## 4972 1.1 93.994 -36.4 4.858 5191 no
## 4973 1.1 93.994 -36.4 4.858 5191 no
## 4974 1.1 93.994 -36.4 4.858 5191 no
## 4975 1.1 93.994 -36.4 4.858 5191 no
## 4976 1.1 93.994 -36.4 4.858 5191 no
## 4977 1.1 93.994 -36.4 4.858 5191 no
## 4981 1.1 93.994 -36.4 4.858 5191 no
## 4982 1.1 93.994 -36.4 4.858 5191 no
## 4983 1.1 93.994 -36.4 4.858 5191 yes
## 4985 1.1 93.994 -36.4 4.858 5191 no
## 4986 1.1 93.994 -36.4 4.858 5191 no
## 4987 1.1 93.994 -36.4 4.858 5191 no
## 4989 1.1 93.994 -36.4 4.858 5191 no
## 4990 1.1 93.994 -36.4 4.858 5191 no
## 4991 1.1 93.994 -36.4 4.858 5191 no
## 4992 1.1 93.994 -36.4 4.858 5191 no
## 4993 1.1 93.994 -36.4 4.858 5191 no
## 4995 1.1 93.994 -36.4 4.858 5191 no
## 4996 1.1 93.994 -36.4 4.858 5191 no
## 4997 1.1 93.994 -36.4 4.858 5191 no
## 4998 1.1 93.994 -36.4 4.858 5191 no
## 4999 1.1 93.994 -36.4 4.858 5191 no
## 5000 1.1 93.994 -36.4 4.858 5191 no
## 5003 1.1 93.994 -36.4 4.858 5191 no
## 5004 1.1 93.994 -36.4 4.858 5191 no
## 5006 1.1 93.994 -36.4 4.858 5191 no
## 5008 1.1 93.994 -36.4 4.858 5191 yes
## 5009 1.1 93.994 -36.4 4.858 5191 no
## 5010 1.1 93.994 -36.4 4.858 5191 no
## 5012 1.1 93.994 -36.4 4.858 5191 no
## 5013 1.1 93.994 -36.4 4.858 5191 no
## 5015 1.1 93.994 -36.4 4.858 5191 no
## 5016 1.1 93.994 -36.4 4.858 5191 no
## 5017 1.1 93.994 -36.4 4.858 5191 no
## 5018 1.1 93.994 -36.4 4.858 5191 no
## 5019 1.1 93.994 -36.4 4.858 5191 no
## 5020 1.1 93.994 -36.4 4.858 5191 no
## 5021 1.1 93.994 -36.4 4.858 5191 no
## 5022 1.1 93.994 -36.4 4.858 5191 no
## 5023 1.1 93.994 -36.4 4.858 5191 no
## 5024 1.1 93.994 -36.4 4.858 5191 no
## 5025 1.1 93.994 -36.4 4.858 5191 no
## 5026 1.1 93.994 -36.4 4.858 5191 no
## 5027 1.1 93.994 -36.4 4.858 5191 no
## 5028 1.1 93.994 -36.4 4.858 5191 yes
## 5030 1.1 93.994 -36.4 4.858 5191 no
## 5031 1.1 93.994 -36.4 4.858 5191 no
## 5032 1.1 93.994 -36.4 4.858 5191 no
## 5033 1.1 93.994 -36.4 4.858 5191 no
## 5035 1.1 93.994 -36.4 4.858 5191 no
## 5037 1.1 93.994 -36.4 4.858 5191 no
## 5038 1.1 93.994 -36.4 4.858 5191 no
## 5039 1.1 93.994 -36.4 4.857 5191 no
## 5041 1.1 93.994 -36.4 4.857 5191 no
## 5042 1.1 93.994 -36.4 4.857 5191 no
## 5043 1.1 93.994 -36.4 4.857 5191 no
## 5044 1.1 93.994 -36.4 4.857 5191 no
## 5045 1.1 93.994 -36.4 4.857 5191 no
## 5047 1.1 93.994 -36.4 4.857 5191 no
## 5048 1.1 93.994 -36.4 4.857 5191 no
## 5050 1.1 93.994 -36.4 4.857 5191 no
## 5051 1.1 93.994 -36.4 4.857 5191 no
## 5052 1.1 93.994 -36.4 4.857 5191 no
## 5053 1.1 93.994 -36.4 4.857 5191 no
## 5054 1.1 93.994 -36.4 4.857 5191 no
## 5056 1.1 93.994 -36.4 4.857 5191 no
## 5057 1.1 93.994 -36.4 4.857 5191 yes
## 5058 1.1 93.994 -36.4 4.857 5191 no
## 5059 1.1 93.994 -36.4 4.857 5191 no
## 5060 1.1 93.994 -36.4 4.857 5191 no
## 5061 1.1 93.994 -36.4 4.857 5191 no
## 5062 1.1 93.994 -36.4 4.857 5191 no
## 5063 1.1 93.994 -36.4 4.857 5191 no
## 5064 1.1 93.994 -36.4 4.857 5191 no
## 5066 1.1 93.994 -36.4 4.857 5191 no
## 5067 1.1 93.994 -36.4 4.857 5191 no
## 5069 1.1 93.994 -36.4 4.857 5191 no
## 5071 1.1 93.994 -36.4 4.857 5191 no
## 5072 1.1 93.994 -36.4 4.857 5191 no
## 5073 1.1 93.994 -36.4 4.857 5191 no
## 5074 1.1 93.994 -36.4 4.857 5191 yes
## 5075 1.1 93.994 -36.4 4.857 5191 no
## 5076 1.1 93.994 -36.4 4.857 5191 no
## 5077 1.1 93.994 -36.4 4.857 5191 no
## 5078 1.1 93.994 -36.4 4.857 5191 no
## 5079 1.1 93.994 -36.4 4.857 5191 no
## 5081 1.1 93.994 -36.4 4.857 5191 no
## 5082 1.1 93.994 -36.4 4.857 5191 no
## 5084 1.1 93.994 -36.4 4.857 5191 no
## 5085 1.1 93.994 -36.4 4.857 5191 yes
## 5086 1.1 93.994 -36.4 4.857 5191 no
## 5087 1.1 93.994 -36.4 4.857 5191 no
## 5088 1.1 93.994 -36.4 4.857 5191 no
## 5089 1.1 93.994 -36.4 4.857 5191 no
## 5090 1.1 93.994 -36.4 4.857 5191 no
## 5091 1.1 93.994 -36.4 4.857 5191 no
## 5093 1.1 93.994 -36.4 4.857 5191 no
## 5097 1.1 93.994 -36.4 4.857 5191 no
## 5098 1.1 93.994 -36.4 4.857 5191 no
## 5099 1.1 93.994 -36.4 4.857 5191 no
## 5100 1.1 93.994 -36.4 4.857 5191 no
## 5101 1.1 93.994 -36.4 4.857 5191 no
## 5102 1.1 93.994 -36.4 4.857 5191 no
## 5103 1.1 93.994 -36.4 4.857 5191 no
## 5104 1.1 93.994 -36.4 4.857 5191 no
## 5105 1.1 93.994 -36.4 4.857 5191 no
## 5106 1.1 93.994 -36.4 4.857 5191 no
## 5108 1.1 93.994 -36.4 4.857 5191 yes
## 5109 1.1 93.994 -36.4 4.857 5191 no
## 5110 1.1 93.994 -36.4 4.857 5191 no
## 5111 1.1 93.994 -36.4 4.857 5191 no
## 5112 1.1 93.994 -36.4 4.857 5191 no
## 5114 1.1 93.994 -36.4 4.857 5191 no
## 5115 1.1 93.994 -36.4 4.857 5191 no
## 5116 1.1 93.994 -36.4 4.857 5191 no
## 5117 1.1 93.994 -36.4 4.857 5191 no
## 5118 1.1 93.994 -36.4 4.857 5191 no
## 5119 1.1 93.994 -36.4 4.857 5191 no
## 5120 1.1 93.994 -36.4 4.857 5191 no
## 5122 1.1 93.994 -36.4 4.857 5191 no
## 5123 1.1 93.994 -36.4 4.857 5191 no
## 5124 1.1 93.994 -36.4 4.857 5191 no
## 5125 1.1 93.994 -36.4 4.857 5191 no
## 5126 1.1 93.994 -36.4 4.857 5191 no
## 5127 1.1 93.994 -36.4 4.857 5191 no
## 5128 1.1 93.994 -36.4 4.857 5191 no
## 5129 1.1 93.994 -36.4 4.857 5191 no
## 5131 1.1 93.994 -36.4 4.857 5191 no
## 5132 1.1 93.994 -36.4 4.857 5191 no
## 5133 1.1 93.994 -36.4 4.857 5191 no
## 5134 1.1 93.994 -36.4 4.857 5191 no
## 5135 1.1 93.994 -36.4 4.857 5191 no
## 5136 1.1 93.994 -36.4 4.857 5191 no
## 5138 1.1 93.994 -36.4 4.857 5191 no
## 5139 1.1 93.994 -36.4 4.857 5191 no
## 5141 1.1 93.994 -36.4 4.857 5191 no
## 5142 1.1 93.994 -36.4 4.857 5191 no
## 5143 1.1 93.994 -36.4 4.857 5191 no
## 5144 1.1 93.994 -36.4 4.857 5191 no
## 5148 1.1 93.994 -36.4 4.857 5191 no
## 5149 1.1 93.994 -36.4 4.857 5191 no
## 5150 1.1 93.994 -36.4 4.857 5191 no
## 5151 1.1 93.994 -36.4 4.857 5191 no
## 5153 1.1 93.994 -36.4 4.857 5191 no
## 5154 1.1 93.994 -36.4 4.857 5191 no
## 5155 1.1 93.994 -36.4 4.857 5191 no
## 5156 1.1 93.994 -36.4 4.857 5191 no
## 5157 1.1 93.994 -36.4 4.857 5191 no
## 5159 1.1 93.994 -36.4 4.857 5191 no
## 5160 1.1 93.994 -36.4 4.857 5191 no
## 5161 1.1 93.994 -36.4 4.857 5191 no
## 5162 1.1 93.994 -36.4 4.857 5191 no
## 5163 1.1 93.994 -36.4 4.857 5191 yes
## 5164 1.1 93.994 -36.4 4.857 5191 no
## 5165 1.1 93.994 -36.4 4.857 5191 no
## 5166 1.1 93.994 -36.4 4.857 5191 no
## 5167 1.1 93.994 -36.4 4.857 5191 no
## 5168 1.1 93.994 -36.4 4.857 5191 no
## 5169 1.1 93.994 -36.4 4.857 5191 no
## 5170 1.1 93.994 -36.4 4.857 5191 no
## 5171 1.1 93.994 -36.4 4.857 5191 no
## 5173 1.1 93.994 -36.4 4.857 5191 no
## 5174 1.1 93.994 -36.4 4.857 5191 no
## 5175 1.1 93.994 -36.4 4.857 5191 yes
## 5176 1.1 93.994 -36.4 4.857 5191 no
## 5177 1.1 93.994 -36.4 4.857 5191 no
## 5178 1.1 93.994 -36.4 4.857 5191 no
## 5179 1.1 93.994 -36.4 4.857 5191 no
## 5180 1.1 93.994 -36.4 4.857 5191 no
## 5181 1.1 93.994 -36.4 4.857 5191 no
## 5183 1.1 93.994 -36.4 4.857 5191 no
## 5184 1.1 93.994 -36.4 4.857 5191 no
## 5186 1.1 93.994 -36.4 4.857 5191 no
## 5187 1.1 93.994 -36.4 4.857 5191 no
## 5188 1.1 93.994 -36.4 4.857 5191 no
## 5189 1.1 93.994 -36.4 4.857 5191 no
## 5190 1.1 93.994 -36.4 4.857 5191 no
## 5191 1.1 93.994 -36.4 4.857 5191 no
## 5193 1.1 93.994 -36.4 4.857 5191 no
## 5194 1.1 93.994 -36.4 4.857 5191 no
## 5198 1.1 93.994 -36.4 4.857 5191 no
## 5201 1.1 93.994 -36.4 4.857 5191 no
## 5202 1.1 93.994 -36.4 4.857 5191 no
## 5203 1.1 93.994 -36.4 4.857 5191 no
## 5204 1.1 93.994 -36.4 4.857 5191 no
## 5205 1.1 93.994 -36.4 4.857 5191 no
## 5207 1.1 93.994 -36.4 4.857 5191 no
## 5210 1.1 93.994 -36.4 4.857 5191 no
## 5211 1.1 93.994 -36.4 4.857 5191 no
## 5212 1.1 93.994 -36.4 4.857 5191 no
## 5213 1.1 93.994 -36.4 4.857 5191 no
## 5214 1.1 93.994 -36.4 4.857 5191 no
## 5215 1.1 93.994 -36.4 4.857 5191 no
## 5217 1.1 93.994 -36.4 4.857 5191 no
## 5218 1.1 93.994 -36.4 4.857 5191 no
## 5219 1.1 93.994 -36.4 4.857 5191 no
## 5220 1.1 93.994 -36.4 4.857 5191 no
## 5221 1.1 93.994 -36.4 4.857 5191 no
## 5222 1.1 93.994 -36.4 4.857 5191 no
## 5223 1.1 93.994 -36.4 4.857 5191 no
## 5224 1.1 93.994 -36.4 4.857 5191 no
## 5225 1.1 93.994 -36.4 4.857 5191 no
## 5226 1.1 93.994 -36.4 4.857 5191 no
## 5227 1.1 93.994 -36.4 4.857 5191 no
## 5228 1.1 93.994 -36.4 4.857 5191 no
## 5229 1.1 93.994 -36.4 4.857 5191 no
## 5230 1.1 93.994 -36.4 4.857 5191 no
## 5231 1.1 93.994 -36.4 4.857 5191 no
## 5232 1.1 93.994 -36.4 4.857 5191 no
## 5234 1.1 93.994 -36.4 4.857 5191 no
## 5235 1.1 93.994 -36.4 4.857 5191 no
## 5236 1.1 93.994 -36.4 4.857 5191 no
## 5237 1.1 93.994 -36.4 4.857 5191 no
## 5238 1.1 93.994 -36.4 4.857 5191 no
## 5239 1.1 93.994 -36.4 4.857 5191 no
## 5240 1.1 93.994 -36.4 4.857 5191 no
## 5241 1.1 93.994 -36.4 4.857 5191 no
## 5243 1.1 93.994 -36.4 4.857 5191 no
## 5248 1.1 93.994 -36.4 4.857 5191 no
## 5249 1.1 93.994 -36.4 4.857 5191 no
## 5250 1.1 93.994 -36.4 4.857 5191 no
## 5251 1.1 93.994 -36.4 4.857 5191 no
## 5252 1.1 93.994 -36.4 4.857 5191 no
## 5253 1.1 93.994 -36.4 4.857 5191 no
## 5254 1.1 93.994 -36.4 4.857 5191 no
## 5256 1.1 93.994 -36.4 4.857 5191 no
## 5257 1.1 93.994 -36.4 4.857 5191 no
## 5259 1.1 93.994 -36.4 4.857 5191 no
## 5260 1.1 93.994 -36.4 4.857 5191 no
## 5261 1.1 93.994 -36.4 4.857 5191 no
## 5263 1.1 93.994 -36.4 4.857 5191 no
## 5264 1.1 93.994 -36.4 4.857 5191 no
## 5265 1.1 93.994 -36.4 4.857 5191 no
## 5266 1.1 93.994 -36.4 4.857 5191 no
## 5267 1.1 93.994 -36.4 4.857 5191 no
## 5268 1.1 93.994 -36.4 4.857 5191 no
## 5269 1.1 93.994 -36.4 4.857 5191 no
## 5270 1.1 93.994 -36.4 4.857 5191 no
## 5271 1.1 93.994 -36.4 4.857 5191 no
## 5272 1.1 93.994 -36.4 4.857 5191 no
## 5273 1.1 93.994 -36.4 4.857 5191 no
## 5275 1.1 93.994 -36.4 4.857 5191 no
## 5276 1.1 93.994 -36.4 4.857 5191 no
## 5277 1.1 93.994 -36.4 4.857 5191 no
## 5278 1.1 93.994 -36.4 4.857 5191 no
## 5279 1.1 93.994 -36.4 4.857 5191 no
## 5280 1.1 93.994 -36.4 4.857 5191 no
## 5281 1.1 93.994 -36.4 4.857 5191 no
## 5282 1.1 93.994 -36.4 4.857 5191 no
## 5283 1.1 93.994 -36.4 4.857 5191 no
## 5286 1.1 93.994 -36.4 4.857 5191 no
## 5287 1.1 93.994 -36.4 4.857 5191 no
## 5288 1.1 93.994 -36.4 4.857 5191 no
## 5289 1.1 93.994 -36.4 4.857 5191 no
## 5290 1.1 93.994 -36.4 4.857 5191 no
## 5291 1.1 93.994 -36.4 4.857 5191 no
## 5292 1.1 93.994 -36.4 4.857 5191 no
## 5294 1.1 93.994 -36.4 4.857 5191 no
## 5297 1.1 93.994 -36.4 4.857 5191 no
## 5298 1.1 93.994 -36.4 4.857 5191 no
## 5300 1.1 93.994 -36.4 4.857 5191 no
## 5301 1.1 93.994 -36.4 4.857 5191 no
## 5302 1.1 93.994 -36.4 4.857 5191 no
## 5303 1.1 93.994 -36.4 4.857 5191 no
## 5304 1.1 93.994 -36.4 4.857 5191 no
## 5305 1.1 93.994 -36.4 4.857 5191 no
## 5306 1.1 93.994 -36.4 4.857 5191 no
## 5307 1.1 93.994 -36.4 4.857 5191 no
## 5308 1.1 93.994 -36.4 4.857 5191 no
## 5311 1.1 93.994 -36.4 4.857 5191 no
## 5312 1.1 93.994 -36.4 4.857 5191 no
## 5313 1.1 93.994 -36.4 4.857 5191 no
## 5314 1.1 93.994 -36.4 4.857 5191 no
## 5316 1.1 93.994 -36.4 4.857 5191 no
## 5317 1.1 93.994 -36.4 4.857 5191 no
## 5318 1.1 93.994 -36.4 4.857 5191 no
## 5319 1.1 93.994 -36.4 4.857 5191 no
## 5320 1.1 93.994 -36.4 4.857 5191 no
## 5321 1.1 93.994 -36.4 4.857 5191 no
## 5324 1.1 93.994 -36.4 4.857 5191 no
## 5326 1.1 93.994 -36.4 4.857 5191 no
## 5331 1.1 93.994 -36.4 4.857 5191 no
## 5332 1.1 93.994 -36.4 4.857 5191 no
## 5333 1.1 93.994 -36.4 4.857 5191 no
## 5334 1.1 93.994 -36.4 4.857 5191 no
## 5335 1.1 93.994 -36.4 4.857 5191 no
## 5336 1.1 93.994 -36.4 4.857 5191 no
## 5337 1.1 93.994 -36.4 4.857 5191 no
## 5338 1.1 93.994 -36.4 4.857 5191 no
## 5339 1.1 93.994 -36.4 4.857 5191 no
## 5340 1.1 93.994 -36.4 4.857 5191 no
## 5341 1.1 93.994 -36.4 4.857 5191 no
## 5342 1.1 93.994 -36.4 4.857 5191 no
## 5343 1.1 93.994 -36.4 4.857 5191 no
## 5344 1.1 93.994 -36.4 4.857 5191 no
## 5345 1.1 93.994 -36.4 4.857 5191 no
## 5346 1.1 93.994 -36.4 4.857 5191 no
## 5347 1.1 93.994 -36.4 4.857 5191 no
## 5348 1.1 93.994 -36.4 4.857 5191 yes
## 5351 1.1 93.994 -36.4 4.857 5191 no
## 5352 1.1 93.994 -36.4 4.857 5191 no
## 5354 1.1 93.994 -36.4 4.857 5191 no
## 5355 1.1 93.994 -36.4 4.857 5191 no
## 5359 1.1 93.994 -36.4 4.857 5191 no
## 5360 1.1 93.994 -36.4 4.857 5191 no
## 5363 1.1 93.994 -36.4 4.857 5191 no
## 5364 1.1 93.994 -36.4 4.857 5191 yes
## 5365 1.1 93.994 -36.4 4.857 5191 no
## 5366 1.1 93.994 -36.4 4.857 5191 no
## 5367 1.1 93.994 -36.4 4.857 5191 no
## 5369 1.1 93.994 -36.4 4.857 5191 no
## 5370 1.1 93.994 -36.4 4.857 5191 no
## 5371 1.1 93.994 -36.4 4.857 5191 no
## 5372 1.1 93.994 -36.4 4.857 5191 no
## 5373 1.1 93.994 -36.4 4.857 5191 no
## 5374 1.1 93.994 -36.4 4.857 5191 no
## 5375 1.1 93.994 -36.4 4.857 5191 no
## 5377 1.1 93.994 -36.4 4.857 5191 no
## 5378 1.1 93.994 -36.4 4.857 5191 no
## 5381 1.1 93.994 -36.4 4.857 5191 no
## 5382 1.1 93.994 -36.4 4.857 5191 no
## 5383 1.1 93.994 -36.4 4.857 5191 no
## 5384 1.1 93.994 -36.4 4.857 5191 no
## 5385 1.1 93.994 -36.4 4.857 5191 yes
## 5386 1.1 93.994 -36.4 4.857 5191 no
## 5387 1.1 93.994 -36.4 4.857 5191 no
## 5388 1.1 93.994 -36.4 4.857 5191 no
## 5389 1.1 93.994 -36.4 4.857 5191 no
## 5390 1.1 93.994 -36.4 4.857 5191 no
## 5391 1.1 93.994 -36.4 4.857 5191 no
## 5392 1.1 93.994 -36.4 4.857 5191 no
## 5393 1.1 93.994 -36.4 4.857 5191 no
## 5395 1.1 93.994 -36.4 4.857 5191 no
## 5396 1.1 93.994 -36.4 4.857 5191 no
## 5397 1.1 93.994 -36.4 4.857 5191 no
## 5398 1.1 93.994 -36.4 4.857 5191 no
## 5399 1.1 93.994 -36.4 4.857 5191 no
## 5400 1.1 93.994 -36.4 4.857 5191 no
## 5401 1.1 93.994 -36.4 4.857 5191 no
## 5403 1.1 93.994 -36.4 4.857 5191 no
## 5404 1.1 93.994 -36.4 4.857 5191 no
## 5405 1.1 93.994 -36.4 4.857 5191 no
## 5406 1.1 93.994 -36.4 4.857 5191 no
## 5408 1.1 93.994 -36.4 4.857 5191 no
## 5409 1.1 93.994 -36.4 4.857 5191 no
## 5410 1.1 93.994 -36.4 4.857 5191 no
## 5411 1.1 93.994 -36.4 4.857 5191 no
## 5412 1.1 93.994 -36.4 4.857 5191 no
## 5413 1.1 93.994 -36.4 4.857 5191 no
## 5414 1.1 93.994 -36.4 4.857 5191 no
## 5415 1.1 93.994 -36.4 4.857 5191 no
## 5416 1.1 93.994 -36.4 4.857 5191 yes
## 5417 1.1 93.994 -36.4 4.857 5191 no
## 5418 1.1 93.994 -36.4 4.857 5191 no
## 5420 1.1 93.994 -36.4 4.857 5191 no
## 5421 1.1 93.994 -36.4 4.857 5191 no
## 5423 1.1 93.994 -36.4 4.857 5191 no
## 5424 1.1 93.994 -36.4 4.857 5191 no
## 5425 1.1 93.994 -36.4 4.857 5191 no
## 5426 1.1 93.994 -36.4 4.857 5191 no
## 5427 1.1 93.994 -36.4 4.857 5191 no
## 5429 1.1 93.994 -36.4 4.857 5191 no
## 5430 1.1 93.994 -36.4 4.857 5191 no
## 5431 1.1 93.994 -36.4 4.857 5191 no
## 5432 1.1 93.994 -36.4 4.857 5191 no
## 5434 1.1 93.994 -36.4 4.857 5191 no
## 5435 1.1 93.994 -36.4 4.857 5191 no
## 5436 1.1 93.994 -36.4 4.857 5191 yes
## 5437 1.1 93.994 -36.4 4.857 5191 no
## 5438 1.1 93.994 -36.4 4.857 5191 no
## 5439 1.1 93.994 -36.4 4.857 5191 no
## 5440 1.1 93.994 -36.4 4.857 5191 no
## 5441 1.1 93.994 -36.4 4.857 5191 no
## 5442 1.1 93.994 -36.4 4.857 5191 no
## 5443 1.1 93.994 -36.4 4.857 5191 yes
## 5444 1.1 93.994 -36.4 4.857 5191 no
## 5445 1.1 93.994 -36.4 4.857 5191 no
## 5446 1.1 93.994 -36.4 4.857 5191 no
## 5447 1.1 93.994 -36.4 4.857 5191 no
## 5448 1.1 93.994 -36.4 4.857 5191 no
## 5449 1.1 93.994 -36.4 4.857 5191 no
## 5450 1.1 93.994 -36.4 4.857 5191 no
## 5451 1.1 93.994 -36.4 4.857 5191 no
## 5452 1.1 93.994 -36.4 4.857 5191 no
## 5453 1.1 93.994 -36.4 4.857 5191 no
## 5454 1.1 93.994 -36.4 4.857 5191 no
## 5455 1.1 93.994 -36.4 4.857 5191 no
## 5456 1.1 93.994 -36.4 4.857 5191 no
## 5457 1.1 93.994 -36.4 4.857 5191 no
## 5458 1.1 93.994 -36.4 4.857 5191 no
## 5460 1.1 93.994 -36.4 4.857 5191 no
## 5461 1.1 93.994 -36.4 4.857 5191 no
## 5462 1.1 93.994 -36.4 4.857 5191 no
## 5463 1.1 93.994 -36.4 4.857 5191 no
## 5465 1.1 93.994 -36.4 4.857 5191 no
## 5466 1.1 93.994 -36.4 4.857 5191 no
## 5467 1.1 93.994 -36.4 4.857 5191 no
## 5468 1.1 93.994 -36.4 4.857 5191 no
## 5469 1.1 93.994 -36.4 4.857 5191 no
## 5470 1.1 93.994 -36.4 4.857 5191 no
## 5472 1.1 93.994 -36.4 4.857 5191 no
## 5474 1.1 93.994 -36.4 4.857 5191 no
## 5475 1.1 93.994 -36.4 4.857 5191 no
## 5476 1.1 93.994 -36.4 4.857 5191 no
## 5477 1.1 93.994 -36.4 4.857 5191 no
## 5479 1.1 93.994 -36.4 4.857 5191 no
## 5482 1.1 93.994 -36.4 4.857 5191 no
## 5484 1.1 93.994 -36.4 4.857 5191 no
## 5485 1.1 93.994 -36.4 4.857 5191 no
## 5487 1.1 93.994 -36.4 4.857 5191 no
## 5488 1.1 93.994 -36.4 4.857 5191 no
## 5490 1.1 93.994 -36.4 4.857 5191 no
## 5491 1.1 93.994 -36.4 4.857 5191 no
## 5492 1.1 93.994 -36.4 4.857 5191 no
## 5493 1.1 93.994 -36.4 4.857 5191 no
## 5494 1.1 93.994 -36.4 4.857 5191 no
## 5495 1.1 93.994 -36.4 4.857 5191 no
## 5496 1.1 93.994 -36.4 4.857 5191 no
## 5497 1.1 93.994 -36.4 4.857 5191 no
## 5498 1.1 93.994 -36.4 4.857 5191 no
## 5499 1.1 93.994 -36.4 4.857 5191 no
## 5501 1.1 93.994 -36.4 4.857 5191 no
## 5502 1.1 93.994 -36.4 4.857 5191 no
## 5503 1.1 93.994 -36.4 4.857 5191 no
## 5505 1.1 93.994 -36.4 4.857 5191 no
## 5506 1.1 93.994 -36.4 4.857 5191 no
## 5507 1.1 93.994 -36.4 4.857 5191 no
## 5508 1.1 93.994 -36.4 4.857 5191 no
## 5509 1.1 93.994 -36.4 4.857 5191 no
## 5510 1.1 93.994 -36.4 4.857 5191 no
## 5511 1.1 93.994 -36.4 4.857 5191 no
## 5514 1.1 93.994 -36.4 4.857 5191 no
## 5515 1.1 93.994 -36.4 4.857 5191 no
## 5517 1.1 93.994 -36.4 4.857 5191 no
## 5518 1.1 93.994 -36.4 4.857 5191 no
## 5520 1.1 93.994 -36.4 4.857 5191 no
## 5521 1.1 93.994 -36.4 4.857 5191 no
## 5523 1.1 93.994 -36.4 4.857 5191 no
## 5524 1.1 93.994 -36.4 4.857 5191 no
## 5525 1.1 93.994 -36.4 4.857 5191 no
## 5527 1.1 93.994 -36.4 4.857 5191 no
## 5528 1.1 93.994 -36.4 4.857 5191 no
## 5529 1.1 93.994 -36.4 4.857 5191 no
## 5531 1.1 93.994 -36.4 4.857 5191 no
## 5532 1.1 93.994 -36.4 4.857 5191 no
## 5533 1.1 93.994 -36.4 4.857 5191 no
## 5534 1.1 93.994 -36.4 4.857 5191 no
## 5535 1.1 93.994 -36.4 4.857 5191 no
## 5537 1.1 93.994 -36.4 4.857 5191 no
## 5538 1.1 93.994 -36.4 4.857 5191 no
## 5539 1.1 93.994 -36.4 4.857 5191 no
## 5540 1.1 93.994 -36.4 4.857 5191 no
## 5541 1.1 93.994 -36.4 4.857 5191 no
## 5542 1.1 93.994 -36.4 4.857 5191 no
## 5543 1.1 93.994 -36.4 4.857 5191 no
## 5546 1.1 93.994 -36.4 4.857 5191 no
## 5547 1.1 93.994 -36.4 4.857 5191 no
## 5548 1.1 93.994 -36.4 4.857 5191 no
## 5549 1.1 93.994 -36.4 4.857 5191 no
## 5550 1.1 93.994 -36.4 4.857 5191 no
## 5551 1.1 93.994 -36.4 4.857 5191 yes
## 5552 1.1 93.994 -36.4 4.857 5191 no
## 5553 1.1 93.994 -36.4 4.857 5191 no
## 5554 1.1 93.994 -36.4 4.857 5191 no
## 5555 1.1 93.994 -36.4 4.857 5191 no
## 5559 1.1 93.994 -36.4 4.857 5191 no
## 5560 1.1 93.994 -36.4 4.857 5191 no
## 5561 1.1 93.994 -36.4 4.857 5191 no
## 5562 1.1 93.994 -36.4 4.857 5191 no
## 5564 1.1 93.994 -36.4 4.857 5191 no
## 5565 1.1 93.994 -36.4 4.857 5191 no
## 5569 1.1 93.994 -36.4 4.857 5191 no
## 5570 1.1 93.994 -36.4 4.857 5191 no
## 5571 1.1 93.994 -36.4 4.857 5191 no
## 5572 1.1 93.994 -36.4 4.857 5191 no
## 5573 1.1 93.994 -36.4 4.857 5191 no
## 5574 1.1 93.994 -36.4 4.857 5191 no
## 5577 1.1 93.994 -36.4 4.857 5191 no
## 5578 1.1 93.994 -36.4 4.857 5191 no
## 5579 1.1 93.994 -36.4 4.857 5191 no
## 5580 1.1 93.994 -36.4 4.857 5191 no
## 5582 1.1 93.994 -36.4 4.857 5191 no
## 5583 1.1 93.994 -36.4 4.857 5191 no
## 5584 1.1 93.994 -36.4 4.857 5191 no
## 5585 1.1 93.994 -36.4 4.857 5191 no
## 5587 1.1 93.994 -36.4 4.857 5191 no
## 5588 1.1 93.994 -36.4 4.857 5191 no
## 5589 1.1 93.994 -36.4 4.857 5191 no
## 5590 1.1 93.994 -36.4 4.857 5191 no
## 5591 1.1 93.994 -36.4 4.857 5191 no
## 5592 1.1 93.994 -36.4 4.857 5191 no
## 5593 1.1 93.994 -36.4 4.857 5191 no
## 5594 1.1 93.994 -36.4 4.857 5191 no
## 5596 1.1 93.994 -36.4 4.857 5191 no
## 5597 1.1 93.994 -36.4 4.857 5191 no
## 5598 1.1 93.994 -36.4 4.857 5191 no
## 5599 1.1 93.994 -36.4 4.857 5191 no
## 5600 1.1 93.994 -36.4 4.857 5191 no
## 5601 1.1 93.994 -36.4 4.857 5191 no
## 5603 1.1 93.994 -36.4 4.857 5191 no
## 5604 1.1 93.994 -36.4 4.857 5191 no
## 5605 1.1 93.994 -36.4 4.857 5191 no
## 5606 1.1 93.994 -36.4 4.857 5191 no
## 5608 1.1 93.994 -36.4 4.857 5191 no
## 5609 1.1 93.994 -36.4 4.857 5191 no
## 5610 1.1 93.994 -36.4 4.857 5191 no
## 5615 1.1 93.994 -36.4 4.857 5191 no
## 5617 1.1 93.994 -36.4 4.857 5191 no
## 5618 1.1 93.994 -36.4 4.857 5191 no
## 5619 1.1 93.994 -36.4 4.857 5191 no
## 5620 1.1 93.994 -36.4 4.857 5191 yes
## 5621 1.1 93.994 -36.4 4.857 5191 no
## 5622 1.1 93.994 -36.4 4.857 5191 no
## 5623 1.1 93.994 -36.4 4.857 5191 no
## 5624 1.1 93.994 -36.4 4.857 5191 no
## 5625 1.1 93.994 -36.4 4.857 5191 no
## 5627 1.1 93.994 -36.4 4.857 5191 no
## 5628 1.1 93.994 -36.4 4.857 5191 no
## 5629 1.1 93.994 -36.4 4.857 5191 no
## 5630 1.1 93.994 -36.4 4.857 5191 no
## 5631 1.1 93.994 -36.4 4.857 5191 no
## 5632 1.1 93.994 -36.4 4.857 5191 no
## 5633 1.1 93.994 -36.4 4.857 5191 no
## 5634 1.1 93.994 -36.4 4.857 5191 no
## 5637 1.1 93.994 -36.4 4.857 5191 yes
## 5638 1.1 93.994 -36.4 4.857 5191 no
## 5639 1.1 93.994 -36.4 4.857 5191 yes
## 5640 1.1 93.994 -36.4 4.857 5191 no
## 5642 1.1 93.994 -36.4 4.857 5191 no
## 5645 1.1 93.994 -36.4 4.857 5191 no
## 5646 1.1 93.994 -36.4 4.857 5191 no
## 5647 1.1 93.994 -36.4 4.857 5191 no
## 5648 1.1 93.994 -36.4 4.857 5191 no
## 5649 1.1 93.994 -36.4 4.857 5191 no
## 5650 1.1 93.994 -36.4 4.857 5191 no
## 5651 1.1 93.994 -36.4 4.857 5191 no
## 5652 1.1 93.994 -36.4 4.857 5191 no
## 5653 1.1 93.994 -36.4 4.857 5191 yes
## 5655 1.1 93.994 -36.4 4.857 5191 no
## 5657 1.1 93.994 -36.4 4.857 5191 no
## 5659 1.1 93.994 -36.4 4.857 5191 no
## 5660 1.1 93.994 -36.4 4.857 5191 no
## 5661 1.1 93.994 -36.4 4.857 5191 no
## 5663 1.1 93.994 -36.4 4.857 5191 no
## 5664 1.1 93.994 -36.4 4.857 5191 no
## 5665 1.1 93.994 -36.4 4.857 5191 no
## 5666 1.1 93.994 -36.4 4.857 5191 no
## 5667 1.1 93.994 -36.4 4.857 5191 no
## 5668 1.1 93.994 -36.4 4.857 5191 no
## 5669 1.1 93.994 -36.4 4.857 5191 no
## 5670 1.1 93.994 -36.4 4.857 5191 no
## 5671 1.1 93.994 -36.4 4.857 5191 no
## 5672 1.1 93.994 -36.4 4.857 5191 no
## 5673 1.1 93.994 -36.4 4.857 5191 no
## 5674 1.1 93.994 -36.4 4.857 5191 no
## 5675 1.1 93.994 -36.4 4.857 5191 no
## 5676 1.1 93.994 -36.4 4.857 5191 no
## 5677 1.1 93.994 -36.4 4.857 5191 no
## 5679 1.1 93.994 -36.4 4.857 5191 no
## 5681 1.1 93.994 -36.4 4.857 5191 no
## 5682 1.1 93.994 -36.4 4.857 5191 no
## 5683 1.1 93.994 -36.4 4.857 5191 no
## 5685 1.1 93.994 -36.4 4.857 5191 no
## 5686 1.1 93.994 -36.4 4.857 5191 no
## 5688 1.1 93.994 -36.4 4.857 5191 no
## 5689 1.1 93.994 -36.4 4.857 5191 no
## 5691 1.1 93.994 -36.4 4.857 5191 no
## 5692 1.1 93.994 -36.4 4.857 5191 no
## 5693 1.1 93.994 -36.4 4.857 5191 no
## 5694 1.1 93.994 -36.4 4.857 5191 no
## 5695 1.1 93.994 -36.4 4.857 5191 no
## 5696 1.1 93.994 -36.4 4.857 5191 no
## 5697 1.1 93.994 -36.4 4.857 5191 no
## 5698 1.1 93.994 -36.4 4.857 5191 no
## 5699 1.1 93.994 -36.4 4.857 5191 no
## 5700 1.1 93.994 -36.4 4.857 5191 yes
## 5701 1.1 93.994 -36.4 4.857 5191 no
## 5704 1.1 93.994 -36.4 4.857 5191 no
## 5705 1.1 93.994 -36.4 4.857 5191 no
## 5706 1.1 93.994 -36.4 4.857 5191 no
## 5707 1.1 93.994 -36.4 4.857 5191 no
## 5708 1.1 93.994 -36.4 4.857 5191 yes
## 5712 1.1 93.994 -36.4 4.857 5191 no
## 5713 1.1 93.994 -36.4 4.857 5191 no
## 5714 1.1 93.994 -36.4 4.857 5191 no
## 5716 1.1 93.994 -36.4 4.857 5191 no
## 5717 1.1 93.994 -36.4 4.857 5191 no
## 5718 1.1 93.994 -36.4 4.857 5191 no
## 5719 1.1 93.994 -36.4 4.857 5191 no
## 5721 1.1 93.994 -36.4 4.857 5191 no
## 5722 1.1 93.994 -36.4 4.857 5191 no
## 5723 1.1 93.994 -36.4 4.857 5191 no
## 5724 1.1 93.994 -36.4 4.857 5191 no
## 5727 1.1 93.994 -36.4 4.857 5191 no
## 5728 1.1 93.994 -36.4 4.857 5191 no
## 5729 1.1 93.994 -36.4 4.857 5191 no
## 5730 1.1 93.994 -36.4 4.857 5191 no
## 5732 1.1 93.994 -36.4 4.857 5191 yes
## 5733 1.1 93.994 -36.4 4.857 5191 no
## 5734 1.1 93.994 -36.4 4.857 5191 no
## 5735 1.1 93.994 -36.4 4.857 5191 no
## 5736 1.1 93.994 -36.4 4.857 5191 no
## 5737 1.1 93.994 -36.4 4.857 5191 no
## 5738 1.1 93.994 -36.4 4.857 5191 no
## 5739 1.1 93.994 -36.4 4.857 5191 no
## 5740 1.1 93.994 -36.4 4.857 5191 no
## 5742 1.1 93.994 -36.4 4.857 5191 no
## 5743 1.1 93.994 -36.4 4.857 5191 no
## 5745 1.1 93.994 -36.4 4.857 5191 no
## 5746 1.1 93.994 -36.4 4.857 5191 no
## 5748 1.1 93.994 -36.4 4.857 5191 no
## 5749 1.1 93.994 -36.4 4.857 5191 no
## 5750 1.1 93.994 -36.4 4.857 5191 no
## 5751 1.1 93.994 -36.4 4.857 5191 no
## 5752 1.1 93.994 -36.4 4.857 5191 no
## 5753 1.1 93.994 -36.4 4.857 5191 no
## 5755 1.1 93.994 -36.4 4.857 5191 no
## 5757 1.1 93.994 -36.4 4.857 5191 no
## 5758 1.1 93.994 -36.4 4.857 5191 no
## 5759 1.1 93.994 -36.4 4.857 5191 no
## 5762 1.1 93.994 -36.4 4.857 5191 no
## 5763 1.1 93.994 -36.4 4.857 5191 no
## 5764 1.1 93.994 -36.4 4.857 5191 no
## 5765 1.1 93.994 -36.4 4.857 5191 no
## 5766 1.1 93.994 -36.4 4.857 5191 no
## 5768 1.1 93.994 -36.4 4.857 5191 no
## 5769 1.1 93.994 -36.4 4.857 5191 no
## 5770 1.1 93.994 -36.4 4.857 5191 no
## 5771 1.1 93.994 -36.4 4.857 5191 no
## 5773 1.1 93.994 -36.4 4.857 5191 no
## 5774 1.1 93.994 -36.4 4.857 5191 no
## 5775 1.1 93.994 -36.4 4.857 5191 no
## 5776 1.1 93.994 -36.4 4.857 5191 no
## 5777 1.1 93.994 -36.4 4.857 5191 no
## 5778 1.1 93.994 -36.4 4.857 5191 no
## 5779 1.1 93.994 -36.4 4.857 5191 no
## 5780 1.1 93.994 -36.4 4.857 5191 no
## 5781 1.1 93.994 -36.4 4.857 5191 yes
## 5782 1.1 93.994 -36.4 4.857 5191 no
## 5785 1.1 93.994 -36.4 4.857 5191 yes
## 5786 1.1 93.994 -36.4 4.857 5191 no
## 5787 1.1 93.994 -36.4 4.857 5191 no
## 5789 1.1 93.994 -36.4 4.857 5191 no
## 5791 1.1 93.994 -36.4 4.857 5191 no
## 5792 1.1 93.994 -36.4 4.857 5191 no
## 5793 1.1 93.994 -36.4 4.857 5191 no
## 5794 1.1 93.994 -36.4 4.857 5191 no
## 5795 1.1 93.994 -36.4 4.857 5191 no
## 5797 1.1 93.994 -36.4 4.857 5191 no
## 5798 1.1 93.994 -36.4 4.857 5191 no
## 5799 1.1 93.994 -36.4 4.857 5191 no
## 5801 1.1 93.994 -36.4 4.857 5191 no
## 5804 1.1 93.994 -36.4 4.857 5191 no
## 5805 1.1 93.994 -36.4 4.857 5191 no
## 5806 1.1 93.994 -36.4 4.857 5191 no
## 5807 1.1 93.994 -36.4 4.857 5191 no
## 5808 1.1 93.994 -36.4 4.857 5191 no
## 5810 1.1 93.994 -36.4 4.857 5191 no
## 5811 1.1 93.994 -36.4 4.857 5191 no
## 5813 1.1 93.994 -36.4 4.857 5191 no
## 5814 1.1 93.994 -36.4 4.857 5191 no
## 5817 1.1 93.994 -36.4 4.857 5191 no
## 5818 1.1 93.994 -36.4 4.857 5191 no
## 5819 1.1 93.994 -36.4 4.857 5191 yes
## 5820 1.1 93.994 -36.4 4.857 5191 no
## 5821 1.1 93.994 -36.4 4.857 5191 no
## 5822 1.1 93.994 -36.4 4.857 5191 no
## 5823 1.1 93.994 -36.4 4.857 5191 no
## 5824 1.1 93.994 -36.4 4.857 5191 no
## 5825 1.1 93.994 -36.4 4.857 5191 no
## 5826 1.1 93.994 -36.4 4.857 5191 no
## 5828 1.1 93.994 -36.4 4.857 5191 no
## 5829 1.1 93.994 -36.4 4.857 5191 no
## 5830 1.1 93.994 -36.4 4.857 5191 no
## 5831 1.1 93.994 -36.4 4.857 5191 no
## 5832 1.1 93.994 -36.4 4.857 5191 no
## 5833 1.1 93.994 -36.4 4.857 5191 no
## 5835 1.1 93.994 -36.4 4.857 5191 no
## 5836 1.1 93.994 -36.4 4.857 5191 no
## 5837 1.1 93.994 -36.4 4.857 5191 no
## 5838 1.1 93.994 -36.4 4.857 5191 no
## 5839 1.1 93.994 -36.4 4.857 5191 no
## 5840 1.1 93.994 -36.4 4.857 5191 no
## 5841 1.1 93.994 -36.4 4.857 5191 no
## 5842 1.1 93.994 -36.4 4.857 5191 no
## 5843 1.1 93.994 -36.4 4.857 5191 no
## 5845 1.1 93.994 -36.4 4.857 5191 no
## 5846 1.1 93.994 -36.4 4.857 5191 no
## 5847 1.1 93.994 -36.4 4.857 5191 no
## 5848 1.1 93.994 -36.4 4.857 5191 no
## 5849 1.1 93.994 -36.4 4.857 5191 no
## 5850 1.1 93.994 -36.4 4.857 5191 no
## 5852 1.1 93.994 -36.4 4.857 5191 no
## 5854 1.1 93.994 -36.4 4.857 5191 no
## 5855 1.1 93.994 -36.4 4.857 5191 no
## 5857 1.1 93.994 -36.4 4.857 5191 no
## 5858 1.1 93.994 -36.4 4.857 5191 no
## 5859 1.1 93.994 -36.4 4.857 5191 no
## 5863 1.1 93.994 -36.4 4.857 5191 no
## 5864 1.1 93.994 -36.4 4.857 5191 yes
## 5865 1.1 93.994 -36.4 4.857 5191 no
## 5866 1.1 93.994 -36.4 4.857 5191 no
## 5867 1.1 93.994 -36.4 4.857 5191 no
## 5871 1.1 93.994 -36.4 4.857 5191 no
## 5872 1.1 93.994 -36.4 4.857 5191 no
## 5874 1.1 93.994 -36.4 4.857 5191 no
## 5875 1.1 93.994 -36.4 4.857 5191 no
## 5876 1.1 93.994 -36.4 4.857 5191 no
## 5877 1.1 93.994 -36.4 4.857 5191 no
## 5879 1.1 93.994 -36.4 4.857 5191 no
## 5881 1.1 93.994 -36.4 4.857 5191 no
## 5883 1.1 93.994 -36.4 4.857 5191 no
## 5884 1.1 93.994 -36.4 4.857 5191 no
## 5885 1.1 93.994 -36.4 4.857 5191 no
## 5886 1.1 93.994 -36.4 4.857 5191 no
## 5887 1.1 93.994 -36.4 4.857 5191 no
## 5888 1.1 93.994 -36.4 4.857 5191 no
## 5890 1.1 93.994 -36.4 4.857 5191 no
## 5891 1.1 93.994 -36.4 4.857 5191 no
## 5892 1.1 93.994 -36.4 4.857 5191 no
## 5893 1.1 93.994 -36.4 4.857 5191 no
## 5894 1.1 93.994 -36.4 4.857 5191 no
## 5895 1.1 93.994 -36.4 4.857 5191 no
## 5897 1.1 93.994 -36.4 4.857 5191 no
## 5898 1.1 93.994 -36.4 4.857 5191 no
## 5899 1.1 93.994 -36.4 4.857 5191 no
## 5901 1.1 93.994 -36.4 4.857 5191 no
## 5902 1.1 93.994 -36.4 4.857 5191 no
## 5903 1.1 93.994 -36.4 4.857 5191 no
## 5904 1.1 93.994 -36.4 4.857 5191 no
## 5905 1.1 93.994 -36.4 4.857 5191 no
## 5906 1.1 93.994 -36.4 4.857 5191 no
## 5907 1.1 93.994 -36.4 4.857 5191 no
## 5908 1.1 93.994 -36.4 4.857 5191 no
## 5909 1.1 93.994 -36.4 4.857 5191 no
## 5910 1.1 93.994 -36.4 4.857 5191 no
## 5913 1.1 93.994 -36.4 4.857 5191 no
## 5914 1.1 93.994 -36.4 4.857 5191 no
## 5915 1.1 93.994 -36.4 4.857 5191 no
## 5916 1.1 93.994 -36.4 4.857 5191 no
## 5918 1.1 93.994 -36.4 4.857 5191 no
## 5920 1.1 93.994 -36.4 4.857 5191 no
## 5921 1.1 93.994 -36.4 4.857 5191 no
## 5925 1.1 93.994 -36.4 4.857 5191 no
## 5926 1.1 93.994 -36.4 4.857 5191 no
## 5927 1.1 93.994 -36.4 4.857 5191 no
## 5928 1.1 93.994 -36.4 4.857 5191 no
## 5929 1.1 93.994 -36.4 4.857 5191 no
## 5930 1.1 93.994 -36.4 4.857 5191 no
## 5931 1.1 93.994 -36.4 4.857 5191 no
## 5933 1.1 93.994 -36.4 4.857 5191 no
## 5934 1.1 93.994 -36.4 4.857 5191 no
## 5935 1.1 93.994 -36.4 4.857 5191 no
## 5936 1.1 93.994 -36.4 4.857 5191 no
## 5937 1.1 93.994 -36.4 4.857 5191 no
## 5938 1.1 93.994 -36.4 4.857 5191 no
## 5939 1.1 93.994 -36.4 4.857 5191 no
## 5940 1.1 93.994 -36.4 4.857 5191 no
## 5941 1.1 93.994 -36.4 4.857 5191 no
## 5942 1.1 93.994 -36.4 4.857 5191 no
## 5943 1.1 93.994 -36.4 4.857 5191 no
## 5944 1.1 93.994 -36.4 4.857 5191 no
## 5945 1.1 93.994 -36.4 4.857 5191 no
## 5947 1.1 93.994 -36.4 4.857 5191 no
## 5950 1.1 93.994 -36.4 4.857 5191 no
## 5953 1.1 93.994 -36.4 4.857 5191 no
## 5954 1.1 93.994 -36.4 4.857 5191 no
## 5955 1.1 93.994 -36.4 4.857 5191 no
## 5960 1.1 93.994 -36.4 4.857 5191 no
## 5963 1.1 93.994 -36.4 4.857 5191 no
## 5964 1.1 93.994 -36.4 4.857 5191 no
## 5965 1.1 93.994 -36.4 4.857 5191 no
## 5966 1.1 93.994 -36.4 4.857 5191 no
## 5969 1.1 93.994 -36.4 4.857 5191 no
## 5970 1.1 93.994 -36.4 4.857 5191 no
## 5971 1.1 93.994 -36.4 4.857 5191 no
## 5972 1.1 93.994 -36.4 4.857 5191 no
## 5973 1.1 93.994 -36.4 4.857 5191 no
## 5974 1.1 93.994 -36.4 4.857 5191 no
## 5975 1.1 93.994 -36.4 4.857 5191 no
## 5976 1.1 93.994 -36.4 4.857 5191 no
## 5977 1.1 93.994 -36.4 4.857 5191 no
## 5978 1.1 93.994 -36.4 4.857 5191 no
## 5979 1.1 93.994 -36.4 4.857 5191 yes
## 5982 1.1 93.994 -36.4 4.857 5191 no
## 5983 1.1 93.994 -36.4 4.857 5191 no
## 5984 1.1 93.994 -36.4 4.857 5191 no
## 5985 1.1 93.994 -36.4 4.857 5191 no
## 5986 1.1 93.994 -36.4 4.857 5191 no
## 5988 1.1 93.994 -36.4 4.857 5191 no
## 5989 1.1 93.994 -36.4 4.857 5191 no
## 5990 1.1 93.994 -36.4 4.857 5191 no
## 5991 1.1 93.994 -36.4 4.857 5191 no
## 5992 1.1 93.994 -36.4 4.857 5191 no
## 5993 1.1 93.994 -36.4 4.857 5191 no
## 5994 1.1 93.994 -36.4 4.857 5191 no
## 5995 1.1 93.994 -36.4 4.857 5191 no
## 5996 1.1 93.994 -36.4 4.857 5191 no
## 5997 1.1 93.994 -36.4 4.857 5191 no
## 5998 1.1 93.994 -36.4 4.857 5191 no
## 5999 1.1 93.994 -36.4 4.857 5191 yes
## 6000 1.1 93.994 -36.4 4.857 5191 no
## 6001 1.1 93.994 -36.4 4.857 5191 no
## [ reached 'max' / getOption("max.print") -- omitted 28190 rows ]
test_data
## age job marital education default housing loan
## 14 57 housemaid divorced basic.4y no yes no
## 15 35 blue-collar married basic.6y no yes no
## 23 55 retired single high.school no yes no
## 25 37 admin. married high.school no yes no
## 44 57 admin. married university.degree no no yes
## 61 47 entrepreneur married university.degree unknown no no
## 62 51 blue-collar married basic.9y no yes no
## 68 33 admin. married unknown no yes no
## 72 44 management divorced university.degree no yes no
## 76 41 blue-collar divorced basic.4y unknown yes no
## 81 50 blue-collar married basic.4y unknown yes no
## 83 38 admin. married high.school unknown no no
## 84 49 entrepreneur married university.degree unknown yes no
## 85 38 technician single university.degree no no yes
## 95 42 blue-collar married basic.6y no no yes
## 104 52 admin. divorced university.degree no no no
## 108 35 admin. married high.school no yes no
## 112 58 unemployed married basic.4y unknown no no
## 113 35 services divorced high.school no yes no
## 119 56 admin. married unknown no yes no
## 124 45 technician married high.school no yes no
## 140 45 blue-collar married basic.9y unknown yes no
## 143 39 management married university.degree no yes no
## 149 40 admin. married university.degree unknown yes no
## 153 39 services divorced high.school unknown yes no
## 156 36 blue-collar married basic.9y no yes yes
## 163 40 blue-collar married basic.9y unknown no no
## 164 42 blue-collar married basic.9y unknown no no
## 169 40 blue-collar married unknown no no no
## 170 54 management divorced university.degree no yes no
## 175 43 services married high.school no no no
## 181 34 technician married high.school no no no
## 189 49 blue-collar married basic.4y unknown no no
## 202 32 services single basic.6y no no no
## 204 43 admin. married unknown no no no
## 207 35 student single university.degree unknown yes yes
## 211 36 student single basic.9y no yes no
## 213 59 admin. married university.degree no no no
## 214 57 retired married unknown unknown no no
## 217 30 blue-collar single unknown no yes no
## 218 30 blue-collar single unknown no yes yes
## 223 36 services single basic.6y unknown yes no
## 227 42 technician married university.degree no no no
## 229 43 retired married basic.4y unknown no no
## 230 45 blue-collar married basic.4y no yes yes
## 240 43 management married university.degree unknown no yes
## 245 30 technician married university.degree unknown no no
## 249 36 blue-collar single high.school no no yes
## 251 40 technician divorced professional.course no no no
## 267 34 self-employed single university.degree no yes no
## 269 54 management divorced university.degree no no no
## 287 39 housemaid married basic.9y no yes no
## 290 36 services married high.school no no no
## 291 42 management divorced university.degree no yes no
## 298 36 admin. married university.degree no yes no
## 304 43 unknown married unknown no yes no
## 305 42 admin. married high.school no yes no
## 306 40 admin. married basic.6y unknown yes no
## 319 42 blue-collar married basic.9y no no no
## 332 36 blue-collar married basic.9y no yes no
## 334 50 self-employed single university.degree no no yes
## 340 41 management married university.degree unknown no no
## 344 57 unknown married unknown unknown yes no
## 347 50 services divorced professional.course no no no
## 362 57 management married university.degree no yes no
## 364 42 blue-collar married basic.4y unknown yes no
## 368 57 admin. divorced basic.9y no no no
## 370 56 management divorced high.school no no no
## 372 37 blue-collar married basic.9y no no yes
## 379 33 admin. married basic.9y no no no
## 388 48 housemaid married basic.6y unknown yes yes
## 389 28 unknown single unknown unknown yes yes
## 407 52 services divorced basic.6y no no no
## 418 47 admin. married high.school unknown no no
## 420 34 technician single university.degree no yes no
## 425 38 blue-collar married basic.4y unknown yes no
## 427 58 management married basic.6y no no no
## 429 50 unknown married unknown unknown yes no
## 435 51 services married unknown unknown no no
## 446 47 blue-collar married unknown unknown no no
## 449 57 technician married basic.4y unknown no no
## 457 51 management married professional.course unknown yes no
## 463 52 self-employed married university.degree no yes no
## 467 39 management married basic.6y unknown no no
## 468 57 management married professional.course unknown yes no
## 471 42 technician single professional.course unknown unknown unknown
## 477 59 unknown married unknown unknown no no
## 478 39 blue-collar married basic.4y unknown no no
## 483 42 retired married basic.4y no no no
## 489 45 housemaid married professional.course unknown no no
## 490 56 technician married unknown no yes no
## 493 41 services married basic.9y no no no
## 500 51 admin. married basic.6y unknown yes no
## 507 40 technician single university.degree no no no
## 510 47 blue-collar married high.school unknown yes no
## 511 48 blue-collar married basic.4y no no no
## 512 43 entrepreneur married high.school no no no
## 517 42 housemaid single basic.4y unknown yes no
## 527 30 services single high.school no no no
## 530 44 admin. married high.school no no no
## 531 36 admin. married high.school no no no
## 543 57 technician married professional.course unknown no yes
## 545 30 self-employed single high.school no yes no
## 549 34 admin. single university.degree no yes yes
## 554 57 retired married university.degree no yes no
## 560 39 blue-collar married basic.6y unknown yes yes
## 564 45 admin. married university.degree unknown no no
## 567 49 blue-collar married high.school unknown no no
## 575 45 housemaid married high.school no no no
## 579 46 management married university.degree no no no
## 582 30 blue-collar married basic.4y no no no
## 591 32 technician married professional.course no no no
## 600 34 services married high.school no no no
## 603 47 blue-collar married basic.9y no no no
## 605 32 admin. single university.degree no yes no
## 608 53 blue-collar married basic.4y unknown no yes
## 618 52 blue-collar married basic.4y no no no
## 633 38 services married basic.6y no no no
## 634 55 management single basic.4y no no no
## 642 29 admin. married high.school no yes no
## 644 54 retired married high.school unknown yes no
## 645 36 technician single professional.course no no no
## 646 30 management single university.degree no yes no
## 647 33 housemaid divorced university.degree no no no
## 654 39 blue-collar married basic.9y no no yes
## 658 56 management married university.degree unknown no yes
## 663 43 services married high.school no no yes
## 675 45 services married high.school no yes no
## 679 47 entrepreneur married professional.course no no no
## 690 46 management married university.degree no yes no
## 691 40 admin. divorced university.degree no yes no
## 692 33 management single university.degree no no no
## 698 49 housemaid married basic.4y no no no
## 701 51 self-employed married basic.9y no yes no
## 702 57 housemaid married basic.6y unknown yes no
## 706 35 admin. married university.degree no yes yes
## 709 42 admin. married high.school unknown yes no
## 711 36 blue-collar married basic.9y no yes no
## 714 30 admin. married university.degree no no no
## 721 42 admin. married university.degree no yes no
## 727 38 admin. married high.school no no no
## 728 48 entrepreneur married university.degree no yes no
## 730 24 technician single professional.course no no no
## 734 39 self-employed single basic.4y unknown yes no
## 735 41 technician single university.degree unknown no no
## 739 47 unemployed divorced university.degree no no no
## 741 48 admin. divorced high.school no no no
## 744 44 technician single professional.course no yes yes
## 747 38 unemployed married basic.4y unknown yes yes
## 750 31 technician single professional.course no yes no
## 752 36 blue-collar married basic.4y no yes no
## 753 60 blue-collar married professional.course no no no
## 766 31 technician married university.degree no yes no
## 769 38 technician married unknown unknown unknown unknown
## 772 54 housemaid divorced unknown no yes no
## 773 41 management married unknown unknown yes no
## 777 38 blue-collar single unknown unknown no yes
## 781 43 technician married basic.6y no yes no
## 782 30 services married high.school unknown yes no
## 789 50 technician married professional.course no yes no
## 790 33 blue-collar single basic.9y unknown no no
## 794 40 entrepreneur married basic.9y no no no
## 795 28 unknown single basic.9y unknown no no
## 813 43 blue-collar married high.school no yes no
## 836 45 blue-collar married basic.9y unknown no no
## 843 50 entrepreneur married basic.9y no yes yes
## 845 44 admin. divorced high.school unknown yes no
## 851 43 blue-collar married basic.4y unknown yes no
## 854 31 blue-collar married basic.6y unknown yes no
## 857 41 entrepreneur married university.degree no yes no
## 873 40 blue-collar married high.school no yes no
## 877 44 blue-collar married basic.4y no yes no
## 888 54 admin. married university.degree no no no
## 892 39 blue-collar married basic.6y no no no
## 896 44 admin. married high.school no yes no
## 897 33 blue-collar married basic.9y no yes no
## 900 46 technician married professional.course no yes no
## 904 57 management divorced university.degree no unknown unknown
## 930 36 services married high.school unknown yes no
## 962 58 unknown married unknown unknown no no
## 963 48 blue-collar married professional.course no no yes
## 972 33 management single unknown no yes no
## 981 35 admin. single university.degree no no no
## 982 55 blue-collar married basic.4y no yes yes
## 993 39 blue-collar married basic.9y no no no
## 995 39 services married basic.9y no no no
## 996 32 entrepreneur married basic.6y no yes no
## 999 57 technician married basic.9y no yes no
## 1009 36 unemployed married basic.4y no yes no
## 1011 51 management married university.degree no no no
## 1013 50 technician married high.school no no no
## 1015 38 blue-collar single basic.9y no no no
## 1017 35 admin. single basic.4y unknown no no
## 1018 35 admin. single basic.4y unknown yes no
## 1019 32 admin. single high.school no no no
## 1020 48 blue-collar married basic.9y no yes no
## 1026 44 technician married professional.course unknown yes no
## 1028 32 services divorced high.school no yes no
## 1039 58 housemaid married basic.4y no yes no
## 1047 51 blue-collar married basic.4y unknown yes no
## 1053 52 housemaid divorced professional.course no yes no
## 1054 51 blue-collar married basic.4y no yes no
## 1060 43 management married professional.course no no no
## 1073 57 management divorced university.degree no no no
## 1076 31 admin. married university.degree no no no
## 1078 29 admin. single university.degree no yes no
## 1083 29 admin. single high.school no yes no
## 1091 36 blue-collar married basic.9y no yes no
## 1093 51 admin. married university.degree no no no
## 1094 42 admin. married university.degree unknown yes no
## 1096 26 blue-collar married basic.9y unknown no no
## 1098 51 blue-collar married basic.4y unknown yes no
## 1100 31 technician married professional.course no yes no
## 1101 38 blue-collar married basic.4y no no no
## 1105 60 services married unknown no yes no
## 1117 29 services married high.school no yes yes
## 1141 35 admin. single basic.4y unknown no no
## 1145 44 blue-collar married basic.4y no no no
## 1146 58 admin. divorced university.degree no yes no
## 1148 37 technician married professional.course no yes no
## 1149 45 blue-collar married basic.9y unknown no no
## 1150 59 retired married university.degree no no no
## 1157 58 admin. married university.degree no no yes
## 1159 39 self-employed married high.school no yes no
## 1164 43 admin. married high.school no no no
## 1184 41 technician married high.school no yes yes
## 1190 46 blue-collar single basic.9y no yes no
## 1197 50 blue-collar married basic.9y no yes no
## 1199 48 blue-collar married basic.6y no yes no
## 1206 35 unknown married basic.9y no yes yes
## 1207 46 blue-collar married basic.4y unknown no no
## 1213 30 services married high.school unknown no no
## 1215 53 blue-collar married professional.course no yes yes
## 1218 51 unemployed married high.school no yes no
## 1221 42 entrepreneur single university.degree no yes no
## 1239 36 blue-collar married basic.6y unknown yes no
## 1244 32 blue-collar married basic.6y unknown no no
## 1249 32 student single university.degree no no no
## 1250 43 blue-collar married basic.4y unknown yes no
## 1258 35 admin. married university.degree no yes yes
## 1261 48 technician married professional.course unknown yes no
## 1264 30 admin. married high.school no yes yes
## 1267 39 blue-collar married basic.6y no no no
## 1271 41 technician married professional.course no yes yes
## 1276 52 blue-collar married basic.9y no yes no
## 1282 25 services divorced high.school no yes no
## 1283 32 admin. married basic.6y no no no
## 1287 35 blue-collar married basic.9y no yes no
## 1288 45 services married basic.9y no yes yes
## 1293 37 unemployed married professional.course no no no
## 1312 37 technician single university.degree no no no
## 1316 37 blue-collar married basic.9y unknown yes no
## 1317 35 entrepreneur married university.degree no yes yes
## 1319 33 services single high.school no yes no
## 1327 39 blue-collar married basic.6y no no no
## 1331 59 blue-collar married basic.6y no yes no
## 1332 31 blue-collar married basic.9y no yes no
## 1346 60 entrepreneur married basic.4y no yes no
## 1347 31 blue-collar married basic.9y no no no
## 1353 33 management married university.degree no no no
## 1366 36 blue-collar single basic.6y no no no
## 1367 36 blue-collar married basic.9y no no no
## 1368 27 blue-collar married basic.9y no no yes
## 1373 32 admin. single high.school no unknown unknown
## 1375 35 blue-collar married basic.9y no no no
## 1377 35 unknown married basic.9y no no no
## 1379 36 admin. married high.school no no no
## 1381 38 blue-collar single basic.4y unknown no no
## 1383 45 admin. married high.school no yes no
## 1387 30 technician married professional.course no no no
## 1388 45 blue-collar married basic.4y unknown yes no
## 1395 33 management married high.school unknown no no
## 1396 43 unemployed married basic.4y no no no
## 1399 42 admin. married university.degree no no no
## 1410 37 blue-collar married basic.4y no no no
## 1412 28 admin. single basic.9y no yes yes
## 1414 37 blue-collar married basic.4y no yes no
## 1415 36 housemaid divorced university.degree no no no
## 1417 53 retired married basic.6y unknown no yes
## 1421 36 services married high.school no yes no
## 1424 38 blue-collar married basic.4y no yes no
## 1427 46 blue-collar divorced basic.6y no no no
## 1428 32 unemployed divorced basic.4y no unknown unknown
## 1429 43 blue-collar divorced basic.4y unknown no no
## 1430 53 admin. married university.degree no no no
## 1431 43 blue-collar married basic.6y unknown no no
## 1432 35 services single basic.4y no no yes
## 1433 49 admin. divorced basic.9y no yes no
## 1437 43 blue-collar married basic.4y unknown no no
## 1447 28 blue-collar married basic.6y unknown yes yes
## 1462 40 management married university.degree no yes no
## 1463 55 admin. divorced university.degree no yes no
## 1476 38 self-employed single university.degree no no no
## 1479 40 entrepreneur married basic.9y no yes no
## 1483 57 services married basic.6y no no no
## 1488 52 self-employed single university.degree unknown yes no
## 1490 60 retired divorced high.school no yes no
## 1494 33 services unknown high.school no yes yes
## 1498 39 blue-collar married basic.9y unknown no no
## 1513 33 blue-collar married basic.6y unknown yes yes
## 1515 46 blue-collar married basic.4y no no no
## 1516 35 technician married university.degree no yes no
## 1517 40 admin. married university.degree unknown yes yes
## 1521 40 admin. married high.school unknown yes no
## 1524 35 technician single professional.course no yes no
## 1525 29 admin. single university.degree no no no
## 1533 38 admin. married high.school no no no
## 1535 49 unemployed married university.degree no yes yes
## 1547 43 management married university.degree no no no
## 1551 50 entrepreneur married basic.9y no yes no
## 1554 41 blue-collar married professional.course unknown yes no
## 1555 47 blue-collar married basic.9y no yes no
## 1558 28 technician single professional.course no yes yes
## 1561 42 blue-collar married basic.4y unknown yes no
## 1566 36 admin. married high.school no yes no
## 1568 38 technician divorced professional.course no yes no
## 1569 31 blue-collar single basic.9y no no no
## 1572 27 technician single high.school no yes no
## 1573 39 retired single high.school no no no
## 1580 32 blue-collar married basic.9y unknown no no
## 1585 48 admin. married professional.course unknown yes no
## 1589 29 admin. single high.school no no no
## 1592 39 services single high.school no no no
## 1594 31 admin. married university.degree no yes no
## 1601 39 unemployed married high.school no no no
## 1609 32 unknown unknown university.degree no no no
## 1614 33 services married high.school unknown no no
## 1623 33 management married university.degree no no yes
## 1633 38 management married basic.9y unknown no no
## 1634 28 services married high.school unknown no no
## 1641 31 blue-collar married basic.9y no no no
## 1643 42 blue-collar married basic.6y no no no
## 1653 25 services divorced high.school no no no
## 1656 35 blue-collar married professional.course no yes yes
## 1664 45 unemployed married high.school unknown yes no
## 1686 58 management married unknown unknown yes no
## 1688 32 blue-collar married high.school no no yes
## 1689 35 management married university.degree no yes yes
## 1704 36 blue-collar single basic.4y no no no
## 1722 51 blue-collar married basic.9y no no no
## 1723 50 services single high.school no no no
## 1733 38 technician married professional.course no yes no
## 1736 35 unemployed married basic.9y unknown no no
## 1742 32 admin. divorced high.school no yes no
## 1749 50 management single university.degree no yes yes
## 1757 42 admin. single basic.9y no no no
## 1758 44 admin. married high.school no yes no
## 1762 53 management married basic.4y no yes no
## 1765 49 entrepreneur married high.school no no no
## 1766 41 blue-collar married high.school no yes no
## 1767 40 admin. married high.school no yes yes
## 1771 34 management married university.degree no yes no
## 1773 28 blue-collar single basic.6y no no no
## 1778 32 retired married high.school no no no
## 1782 27 entrepreneur married university.degree no no no
## 1787 40 unemployed married basic.9y no yes yes
## 1790 39 technician married professional.course no no no
## 1792 32 admin. married university.degree no no yes
## 1797 46 blue-collar divorced basic.9y no yes no
## 1800 45 blue-collar married basic.9y unknown no no
## 1801 31 blue-collar married basic.9y no no no
## 1803 45 admin. married high.school no no yes
## 1804 32 admin. married high.school no no no
## 1807 25 blue-collar single basic.4y no yes no
## 1809 25 blue-collar single basic.4y no no no
## 1812 44 admin. married basic.9y no no no
## 1816 50 blue-collar married basic.4y unknown unknown unknown
## 1817 42 admin. divorced university.degree no yes no
## 1832 37 blue-collar single high.school no no no
## 1836 33 management single university.degree no yes yes
## 1843 45 services married high.school no no no
## 1848 28 blue-collar single basic.9y no yes no
## 1849 36 technician married professional.course no yes no
## 1852 26 technician married high.school no yes no
## 1873 46 blue-collar married professional.course no yes no
## 1891 34 blue-collar married basic.9y no yes no
## 1896 52 self-employed married university.degree no yes no
## 1898 56 services married high.school unknown yes no
## 1899 35 technician married professional.course no no no
## 1900 33 admin. married high.school unknown yes no
## 1901 32 blue-collar married basic.9y no yes no
## 1909 33 management married high.school no yes no
## 1913 57 entrepreneur married high.school unknown yes no
## 1918 32 services married high.school no yes no
## 1921 27 services married basic.9y no yes no
## 1941 51 entrepreneur married basic.4y unknown no no
## 1951 27 services single high.school no no no
## 1963 43 services divorced basic.9y no yes no
## 1964 38 technician single professional.course no yes no
## 1968 51 services married professional.course unknown no no
## 1972 38 housemaid married basic.6y unknown yes no
## 1974 41 blue-collar divorced basic.4y no no no
## 1976 43 management married basic.4y no yes no
## 1979 45 admin. married high.school no no yes
## 1980 40 admin. married high.school no no no
## 1984 40 blue-collar married basic.9y unknown yes no
## 1988 43 blue-collar married basic.4y unknown yes yes
## 2001 42 self-employed married university.degree no yes no
## 2010 39 blue-collar married basic.6y unknown yes no
## 2012 37 admin. married high.school no yes no
## 2018 35 services married high.school no yes no
## 2027 32 admin. married high.school no yes no
## 2031 55 technician divorced professional.course unknown yes no
## 2038 57 management divorced university.degree no yes no
## 2041 49 management divorced high.school unknown yes no
## 2047 36 unemployed married unknown unknown no no
## 2056 35 admin. married university.degree no yes no
## 2062 34 blue-collar married basic.4y no yes no
## 2067 37 admin. married university.degree unknown yes no
## 2077 29 technician single university.degree no no no
## 2084 46 blue-collar married basic.4y unknown no yes
## 2092 36 blue-collar single basic.9y no yes no
## 2094 30 technician married university.degree no no no
## 2096 40 self-employed married university.degree unknown no no
## 2105 41 admin. single unknown no yes yes
## 2107 27 blue-collar married basic.9y unknown no no
## 2109 41 services married high.school unknown yes yes
## 2112 34 admin. single university.degree no yes no
## 2114 36 blue-collar single basic.9y unknown yes no
## 2129 50 blue-collar married high.school unknown no no
## 2130 57 retired single high.school no yes yes
## 2132 44 blue-collar married basic.4y no yes yes
## 2138 38 unemployed married basic.9y unknown no no
## 2140 30 blue-collar single basic.9y no yes yes
## 2141 37 blue-collar divorced basic.4y unknown yes no
## 2146 53 retired divorced basic.4y no no no
## 2149 55 blue-collar married basic.4y unknown yes no
## 2150 42 unemployed married basic.4y unknown yes no
## 2151 47 admin. divorced university.degree no yes no
## 2155 45 blue-collar married basic.4y unknown yes no
## 2157 30 admin. single high.school no no no
## 2166 32 services married high.school no unknown unknown
## 2178 34 self-employed married university.degree no yes yes
## 2181 39 technician married basic.6y no no yes
## 2183 35 blue-collar married basic.9y no no no
## 2184 58 management married university.degree no no no
## 2200 31 services single high.school no unknown unknown
## 2204 40 admin. married basic.9y unknown yes yes
## 2205 40 services married high.school unknown yes no
## 2208 31 blue-collar single high.school unknown yes no
## 2222 57 services divorced high.school no no no
## 2225 46 admin. divorced university.degree unknown no no
## 2228 35 admin. single basic.4y unknown no no
## 2230 52 housemaid married basic.4y unknown yes no
## 2233 40 blue-collar divorced basic.6y no no no
## 2236 39 admin. married high.school no unknown unknown
## 2237 45 admin. divorced university.degree unknown yes no
## 2244 39 blue-collar married basic.9y no no no
## 2252 25 services married high.school no yes no
## 2253 40 housemaid single university.degree no no no
## 2254 28 services married high.school no yes no
## 2264 38 blue-collar married basic.6y no yes no
## 2270 28 blue-collar single basic.9y no unknown unknown
## 2279 51 unemployed married basic.9y unknown yes no
## 2291 48 unknown married basic.4y unknown no no
## 2293 30 admin. single university.degree no yes no
## 2295 51 unemployed married basic.9y unknown no no
## 2308 38 admin. married university.degree no unknown unknown
## 2310 45 services married high.school no no no
## 2312 28 admin. married university.degree no yes no
## 2319 30 technician single university.degree unknown no no
## 2326 26 blue-collar single high.school unknown no no
## 2327 47 blue-collar married basic.4y unknown no yes
## 2332 40 technician divorced university.degree no yes no
## 2334 35 blue-collar married basic.9y no no no
## 2342 53 technician married professional.course unknown yes no
## 2343 42 technician married basic.6y no yes no
## 2346 33 blue-collar divorced basic.6y unknown yes no
## 2348 34 admin. married university.degree no no no
## 2350 34 admin. married university.degree no no no
## 2355 36 blue-collar married basic.9y unknown no yes
## 2364 34 services married basic.9y unknown yes no
## 2370 32 admin. divorced high.school no no no
## 2375 37 technician single basic.9y unknown no yes
## 2385 43 self-employed single professional.course unknown yes yes
## 2386 41 technician single professional.course no yes no
## 2387 54 technician married professional.course no no yes
## 2389 47 admin. married university.degree unknown no no
## 2394 35 services divorced professional.course unknown no no
## 2400 37 blue-collar married professional.course unknown no no
## 2412 60 retired married basic.4y unknown no no
## 2414 46 blue-collar married unknown unknown no no
## 2420 32 blue-collar married basic.6y no no yes
## 2424 48 admin. married high.school no no no
## 2427 48 blue-collar divorced basic.4y unknown no no
## 2443 55 retired married basic.6y unknown no no
## 2445 31 services married basic.6y unknown no no
## 2449 27 admin. single university.degree no yes yes
## 2451 34 management divorced university.degree no yes no
## 2457 48 blue-collar married unknown unknown no no
## 2460 49 blue-collar married basic.9y unknown no no
## 2468 35 student single university.degree unknown no no
## 2469 42 blue-collar divorced high.school no no no
## 2485 27 blue-collar married basic.4y unknown no no
## 2487 30 management single university.degree no yes no
## 2492 54 admin. married university.degree no no no
## 2500 50 housemaid single unknown no yes no
## 2501 40 blue-collar single basic.9y no no no
## 2503 30 technician married university.degree unknown no no
## 2508 48 self-employed married basic.9y unknown yes no
## 2516 47 technician married basic.9y no yes no
## 2521 42 technician single unknown no no no
## 2531 39 services married high.school no no no
## 2533 45 services married high.school unknown yes no
## 2534 48 blue-collar married basic.4y unknown yes no
## 2537 33 services married high.school unknown no no
## 2541 51 admin. married high.school unknown no no
## 2548 43 technician married basic.9y unknown no yes
## 2551 36 housemaid married high.school no no no
## 2560 51 entrepreneur married basic.9y no yes no
## 2564 36 blue-collar divorced high.school no no no
## 2566 46 housemaid married basic.4y no no no
## 2572 44 blue-collar married unknown unknown no no
## 2576 29 admin. single high.school no yes no
## 2579 39 blue-collar married basic.6y no yes no
## 2585 27 management single university.degree no yes no
## 2586 31 entrepreneur single basic.9y no no no
## 2587 48 blue-collar married basic.4y no no no
## 2593 51 self-employed married professional.course unknown yes yes
## 2597 46 blue-collar married basic.4y unknown yes no
## 2600 60 retired married high.school unknown yes no
## 2620 58 blue-collar married basic.4y no yes no
## 2621 36 technician married basic.9y unknown no no
## 2628 39 technician married professional.course no no no
## 2632 48 technician single unknown no unknown unknown
## 2636 31 services married basic.9y no no no
## 2642 42 admin. single university.degree no yes no
## 2646 45 entrepreneur married university.degree no yes no
## 2647 27 technician single high.school unknown no yes
## 2660 40 admin. single university.degree unknown yes no
## 2663 46 management married basic.6y unknown no no
## 2664 37 management married university.degree no yes no
## 2674 47 self-employed married unknown unknown no no
## 2675 54 management divorced university.degree no yes no
## 2688 45 services divorced high.school unknown yes no
## 2694 58 housemaid married university.degree unknown no no
## 2698 38 blue-collar married basic.6y unknown yes no
## 2702 35 services married high.school no no no
## 2704 38 technician married basic.6y unknown yes yes
## 2705 34 technician single professional.course no no no
## 2711 50 management divorced high.school unknown no no
## 2716 34 admin. single high.school no yes yes
## 2722 46 blue-collar married basic.4y unknown no no
## 2723 39 blue-collar married high.school unknown no no
## 2726 33 blue-collar married basic.9y no yes yes
## 2732 31 management married high.school no no no
## 2742 51 services married high.school no yes no
## 2749 41 admin. married high.school no yes no
## 2750 57 retired married university.degree unknown no no
## 2752 29 housemaid married high.school no no no
## 2754 33 services single basic.6y unknown yes no
## 2755 51 services married high.school unknown yes no
## 2764 33 unemployed divorced basic.9y no no no
## 2766 43 unknown married high.school unknown no no
## 2771 49 admin. divorced basic.9y no yes no
## 2772 54 blue-collar married basic.9y unknown yes no
## 2777 49 blue-collar married basic.9y no yes no
## 2778 36 blue-collar married basic.6y unknown no no
## 2783 51 unemployed married professional.course no no no
## 2784 48 retired married basic.9y no no no
## 2789 29 services married high.school unknown unknown unknown
## 2798 41 technician married basic.9y no no no
## 2800 39 admin. married basic.4y no yes no
## 2813 35 blue-collar married basic.9y no no yes
## 2818 48 admin. divorced high.school no yes no
## 2819 29 admin. single university.degree no no no
## 2824 28 services single high.school no no no
## 2829 31 blue-collar married basic.9y no no no
## 2839 29 blue-collar married high.school no no yes
## 2840 50 admin. married high.school unknown no no
## 2841 39 blue-collar married basic.4y unknown yes no
## 2844 34 blue-collar married high.school no no no
## 2851 47 blue-collar married basic.6y no no yes
## 2858 40 services married high.school unknown yes no
## 2861 41 management married university.degree unknown yes no
## 2863 28 services divorced high.school no yes no
## 2866 35 blue-collar single basic.6y unknown yes no
## 2869 36 technician married professional.course no yes no
## 2877 28 entrepreneur married basic.4y unknown no no
## 2879 56 management married university.degree no no no
## 2885 36 admin. divorced high.school no yes no
## 2886 41 technician married basic.9y no no no
## 2889 35 self-employed single basic.6y unknown no yes
## 2892 31 blue-collar married basic.6y unknown yes no
## 2893 33 blue-collar married basic.6y unknown no no
## 2903 45 blue-collar married basic.4y no yes no
## 2904 32 services single high.school no no no
## 2906 40 blue-collar married basic.6y no yes no
## 2914 26 student single university.degree no yes no
## 2915 54 housemaid divorced basic.4y unknown no no
## 2925 34 unemployed single university.degree no no no
## 2927 27 student single university.degree no yes no
## 2935 60 housemaid married high.school no unknown unknown
## 2962 31 admin. single university.degree no no no
## 2970 39 blue-collar married basic.9y no yes no
## 2971 27 blue-collar single basic.6y no yes no
## 2977 37 blue-collar married basic.4y no yes no
## 2982 48 services married high.school no no no
## 2983 32 technician married professional.course no no no
## 2984 32 blue-collar single basic.9y unknown no no
## 2996 33 self-employed married basic.9y no yes no
## 2997 36 technician married professional.course no no no
## 2998 44 blue-collar married basic.4y no no no
## 3001 35 technician married professional.course no no no
## 3003 36 blue-collar married basic.9y no no no
## 3010 49 blue-collar married basic.4y unknown no no
## 3016 41 admin. single high.school no no no
## 3018 49 management married university.degree no no no
## 3021 31 services married high.school no no no
## 3022 59 blue-collar divorced basic.4y no no no
## 3029 47 services divorced high.school no yes no
## 3040 41 admin. married high.school no no no
## 3045 59 retired married professional.course unknown no no
## 3047 34 technician married professional.course unknown no yes
## 3051 58 retired married basic.9y no no no
## 3059 43 technician divorced basic.9y no no yes
## 3061 43 admin. married university.degree no yes yes
## 3064 41 admin. married university.degree no yes no
## 3065 39 services single high.school unknown no no
## 3069 33 blue-collar single basic.9y no no no
## 3074 31 blue-collar married basic.6y unknown no no
## 3075 45 blue-collar married basic.4y unknown no no
## 3086 45 blue-collar married basic.9y unknown no no
## 3094 38 management married basic.6y unknown yes no
## 3095 39 admin. single university.degree unknown no no
## 3099 37 services married professional.course unknown no no
## 3101 37 admin. divorced basic.9y unknown no no
## 3103 32 admin. married university.degree no yes no
## 3105 39 unemployed married high.school no no yes
## 3109 41 blue-collar married basic.6y no no no
## 3111 52 entrepreneur married university.degree unknown no no
## 3112 42 technician divorced basic.9y no no no
## 3113 58 management divorced university.degree no no no
## 3114 32 services married basic.9y no no no
## 3121 32 admin. single university.degree no no no
## 3122 33 admin. married university.degree no yes no
## 3123 35 technician single professional.course no yes yes
## 3125 43 unknown married high.school unknown yes yes
## 3126 32 housemaid married basic.4y no yes no
## 3136 31 admin. married high.school no no no
## 3141 49 services divorced basic.6y unknown yes no
## 3144 29 services married high.school no yes no
## 3145 34 blue-collar single basic.9y no no no
## 3147 30 blue-collar single basic.4y no no no
## 3152 44 blue-collar single basic.4y no yes no
## 3157 35 technician married professional.course no no no
## 3158 39 services single high.school unknown no no
## 3161 53 unknown married high.school unknown no no
## 3162 33 services divorced high.school no yes no
## 3166 38 blue-collar married basic.4y unknown no no
## 3169 45 management married unknown unknown no no
## 3186 52 blue-collar married basic.9y no yes no
## 3192 34 services married basic.6y no yes yes
## 3196 35 entrepreneur married basic.9y no no yes
## 3200 46 entrepreneur divorced university.degree no no no
## 3203 54 admin. married university.degree no unknown unknown
## 3206 59 admin. married high.school no yes no
## 3213 42 self-employed married university.degree no no no
## 3219 34 blue-collar married basic.9y unknown yes no
## 3220 39 blue-collar married basic.9y no no no
## 3223 31 blue-collar single high.school no yes no
## 3232 38 admin. married basic.6y no yes no
## 3241 48 blue-collar married basic.6y no yes yes
## 3245 30 management single university.degree no unknown unknown
## 3247 31 services married basic.6y unknown yes no
## 3250 35 services single high.school unknown yes no
## 3269 37 admin. married high.school no yes no
## 3273 53 unemployed divorced basic.9y unknown no no
## 3274 40 admin. married high.school unknown yes no
## 3275 45 unknown married unknown no no yes
## 3276 55 blue-collar married basic.9y unknown yes no
## 3280 32 housemaid single basic.4y no no no
## 3285 50 blue-collar single basic.9y unknown yes no
## 3287 49 self-employed married professional.course no unknown unknown
## 3289 46 unknown married basic.6y unknown no no
## 3304 39 admin. married university.degree no no no
## 3305 32 admin. married university.degree unknown yes no
## 3313 35 unemployed divorced basic.4y no yes no
## 3318 24 student single high.school no no no
## 3325 35 technician married university.degree unknown yes no
## 3326 53 retired divorced high.school no no yes
## 3327 54 blue-collar divorced basic.4y no no no
## 3329 39 services divorced basic.9y no yes no
## 3330 48 admin. married professional.course no yes no
## 3332 36 blue-collar married professional.course no yes yes
## 3336 38 admin. divorced high.school no no no
## 3347 44 blue-collar divorced unknown no no no
## 3348 38 blue-collar married basic.6y no yes no
## 3361 27 unemployed married basic.9y no no no
## 3368 27 blue-collar single basic.6y unknown no no
## 3372 58 blue-collar married basic.4y unknown yes yes
## 3375 42 management divorced university.degree no no no
## 3384 34 technician single professional.course no no no
## 3388 27 blue-collar married basic.4y unknown no no
## 3407 28 admin. divorced high.school no no yes
## 3409 38 student single university.degree no no no
## 3411 44 technician married professional.course no yes no
## 3420 45 blue-collar married basic.4y no yes no
## 3428 33 blue-collar divorced basic.9y unknown no no
## 3436 44 technician married professional.course unknown no no
## 3438 56 management married basic.6y no no yes
## 3439 35 unemployed married university.degree no no no
## 3440 37 blue-collar married basic.9y unknown no no
## 3445 38 technician married university.degree no yes no
## 3449 49 admin. divorced high.school no no no
## 3451 28 technician single university.degree no yes no
## 3452 48 technician single unknown unknown no no
## 3454 50 blue-collar married basic.9y no yes no
## 3459 60 entrepreneur married basic.4y no unknown unknown
## 3479 37 management unknown high.school no no no
## 3488 57 management married university.degree no yes no
## 3491 42 blue-collar married basic.4y unknown no no
## 3498 25 admin. single high.school no no yes
## 3511 35 blue-collar married basic.4y no no no
## 3514 47 blue-collar divorced basic.9y unknown yes no
## 3519 47 services married high.school no unknown unknown
## 3521 58 self-employed divorced unknown no yes no
## 3526 37 services married basic.9y unknown no yes
## 3529 36 admin. married university.degree no yes no
## 3533 31 blue-collar divorced basic.6y no yes no
## 3538 39 technician married professional.course no yes no
## 3543 30 self-employed single high.school no yes no
## 3545 38 services married high.school no yes no
## 3547 32 technician single professional.course no yes no
## 3550 41 unemployed married basic.9y unknown yes no
## 3557 37 blue-collar married high.school no no no
## 3562 39 admin. single unknown no no no
## 3564 57 management divorced university.degree no no no
## 3565 29 blue-collar single high.school no yes no
## 3568 46 admin. married high.school no no no
## 3569 57 retired married unknown unknown yes no
## 3573 47 blue-collar married basic.6y unknown yes yes
## 3579 59 retired divorced basic.4y no yes no
## 3583 50 housemaid divorced basic.4y unknown no no
## 3585 25 housemaid single basic.9y no no no
## 3586 44 management married university.degree no no no
## 3587 28 services single high.school no yes no
## 3594 24 student single high.school no unknown unknown
## 3595 49 admin. married unknown no yes no
## 3597 39 blue-collar married high.school no no no
## 3602 48 admin. divorced basic.9y no yes no
## 3603 52 management divorced university.degree no no no
## 3604 35 technician married professional.course no yes no
## 3611 29 housemaid single high.school no no no
## 3622 52 technician married professional.course no no no
## 3626 37 technician single university.degree no no no
## 3627 45 technician divorced professional.course no yes no
## 3633 33 services married high.school no yes no
## 3635 52 management married professional.course no no no
## 3639 48 technician married unknown unknown no yes
## 3646 40 technician married professional.course unknown yes no
## 3652 52 services divorced unknown unknown yes yes
## 3655 28 admin. single high.school no yes no
## 3659 59 blue-collar married basic.4y unknown no no
## 3661 42 management married university.degree no yes yes
## 3665 53 unemployed married basic.4y unknown no no
## 3668 53 blue-collar divorced basic.4y unknown no no
## 3671 37 management married university.degree no unknown unknown
## 3674 33 admin. married university.degree no yes no
## 3676 28 admin. married university.degree no no no
## 3677 41 housemaid married high.school no no no
## 3678 26 admin. single high.school no no no
## 3682 58 admin. divorced basic.9y unknown yes no
## 3694 37 admin. single high.school no yes no
## 3700 31 blue-collar single basic.9y no yes no
## 3708 36 blue-collar married basic.4y unknown yes no
## 3710 40 blue-collar married basic.4y unknown no no
## 3714 55 retired married basic.4y unknown no no
## 3726 48 admin. single university.degree no no yes
## 3729 47 blue-collar married basic.9y unknown yes no
## 3741 46 admin. divorced university.degree no no no
## 3744 31 admin. married university.degree no yes no
## 3753 28 blue-collar married basic.9y no yes no
## 3755 38 services married high.school unknown yes no
## 3765 37 technician married high.school no yes no
## 3766 47 blue-collar divorced basic.9y unknown no no
## 3770 43 blue-collar married basic.4y unknown yes no
## 3772 44 blue-collar married basic.6y unknown yes no
## 3784 48 blue-collar married professional.course no no no
## 3786 42 admin. single university.degree no yes no
## 3793 25 blue-collar single basic.4y no yes no
## 3794 28 admin. single university.degree no yes no
## 3812 33 blue-collar married basic.9y no no yes
## 3819 51 retired married university.degree no yes yes
## 3821 31 technician single professional.course unknown yes yes
## 3823 46 technician married basic.9y no yes no
## 3824 31 technician married university.degree no no no
## 3835 41 blue-collar married basic.6y unknown yes no
## 3838 36 technician married basic.9y no no no
## 3843 52 entrepreneur married university.degree unknown yes no
## 3844 33 self-employed single university.degree no yes no
## 3848 45 management married university.degree no no no
## 3852 37 admin. married high.school no no yes
## 3855 57 services divorced high.school no yes yes
## 3856 23 services married basic.9y no no no
## 3869 34 blue-collar married basic.9y unknown no yes
## 3870 28 admin. single high.school no no no
## 3871 46 blue-collar married basic.9y no no yes
## 3875 35 blue-collar married basic.4y no yes no
## 3885 52 self-employed married university.degree no yes no
## 3900 41 blue-collar married basic.9y unknown no no
## 3907 35 self-employed divorced basic.9y no no yes
## 3918 37 blue-collar single professional.course no no no
## 3921 44 blue-collar married basic.6y no yes yes
## 3924 46 admin. married high.school unknown yes yes
## 3929 40 self-employed married high.school unknown no no
## 3930 28 technician divorced professional.course no no no
## 3943 37 admin. married high.school no yes no
## 3949 41 blue-collar married professional.course no no no
## 3954 55 blue-collar married basic.4y unknown yes no
## 3957 42 admin. divorced university.degree no no no
## 3960 32 services single basic.6y no yes yes
## 3966 47 management married basic.4y unknown no no
## 3969 38 blue-collar married basic.4y no no no
## 3971 41 management married university.degree unknown yes no
## 3979 35 student single high.school no no no
## 3984 52 management divorced high.school no unknown unknown
## 3991 37 blue-collar married basic.6y no no no
## 3994 50 services married basic.6y no yes no
## 3996 44 unknown married basic.6y no yes yes
## 4003 31 self-employed married university.degree no no yes
## 4005 45 blue-collar married basic.6y unknown yes no
## 4011 29 services married basic.9y no yes no
## 4012 34 admin. married university.degree no no no
## 4018 31 blue-collar married basic.9y no yes no
## 4019 25 services married high.school unknown yes yes
## 4020 38 management married unknown no no no
## 4028 32 admin. married university.degree no yes no
## 4033 48 services divorced high.school unknown yes yes
## 4038 36 blue-collar single basic.9y no no no
## 4044 39 admin. married basic.4y no no no
## 4052 41 admin. divorced university.degree unknown yes no
## 4055 49 blue-collar married basic.4y unknown yes no
## 4066 44 entrepreneur married professional.course no no no
## 4075 48 services married high.school unknown yes yes
## 4076 27 blue-collar married basic.9y no yes no
## 4077 40 admin. divorced professional.course no no no
## 4082 33 admin. married university.degree no no no
## 4083 29 services single university.degree unknown yes no
## 4091 27 student single university.degree no yes no
## 4093 47 blue-collar married professional.course unknown no no
## 4112 22 services single high.school no yes no
## 4113 34 blue-collar married basic.9y no no no
## 4114 31 blue-collar married basic.9y unknown yes yes
## 4124 29 technician single university.degree no unknown unknown
## 4130 29 technician single university.degree no yes no
## 4136 27 admin. single university.degree no yes no
## 4142 33 blue-collar married basic.9y no unknown unknown
## 4143 46 blue-collar married basic.9y no yes no
## 4145 39 services married high.school unknown no no
## 4148 34 blue-collar married professional.course no yes no
## 4151 26 admin. single high.school no no yes
## 4152 31 admin. married high.school no no no
## 4153 34 blue-collar married basic.6y no yes no
## 4158 55 entrepreneur divorced university.degree no yes yes
## 4169 29 technician married professional.course no yes no
## 4172 36 admin. married high.school no no no
## 4177 47 management married basic.4y unknown no no
## 4181 46 blue-collar divorced basic.4y no no no
## 4185 38 technician single professional.course no no no
## 4189 37 blue-collar single university.degree no yes no
## 4192 34 admin. married university.degree no yes yes
## 4193 34 blue-collar single basic.9y no no no
## 4198 58 blue-collar divorced unknown no no no
## 4200 32 admin. single university.degree no no no
## 4201 38 services single high.school unknown yes no
## 4202 51 admin. single university.degree no no no
## 4204 30 blue-collar married basic.9y no no no
## 4205 39 blue-collar married professional.course no no no
## 4206 47 blue-collar married basic.4y no yes no
## 4225 54 technician divorced professional.course no no no
## 4229 31 admin. married high.school no no no
## 4232 34 admin. married university.degree no no no
## 4236 40 admin. married basic.9y no no no
## 4240 35 student single university.degree unknown yes no
## 4244 46 blue-collar married basic.4y no yes yes
## 4247 58 retired married university.degree no no yes
## 4250 54 technician married high.school no no no
## 4255 50 blue-collar married basic.4y no yes no
## 4256 52 blue-collar single basic.9y unknown yes no
## 4257 45 admin. married unknown no no no
## 4262 34 management married university.degree no no yes
## 4264 35 admin. married high.school no no no
## 4291 32 technician married unknown unknown no no
## 4292 42 admin. divorced university.degree no no no
## 4296 34 blue-collar single basic.9y no no no
## 4302 46 blue-collar married basic.9y no no yes
## 4309 31 services married high.school unknown no no
## 4312 36 admin. married university.degree unknown yes no
## 4314 31 admin. married high.school unknown no no
## 4328 50 blue-collar married basic.4y unknown no no
## 4331 40 admin. married university.degree no yes no
## 4344 38 blue-collar divorced unknown unknown unknown unknown
## 4345 32 unknown unknown university.degree no yes yes
## 4347 36 services single unknown no no no
## 4355 30 admin. married university.degree no no yes
## 4360 27 admin. married high.school unknown no yes
## 4363 39 admin. single unknown no no no
## 4364 55 retired divorced professional.course no no no
## 4368 56 management married unknown no yes no
## 4369 45 services married high.school no yes no
## 4373 51 admin. married basic.6y unknown no no
## 4381 43 technician single university.degree no no no
## 4386 32 services married high.school no no no
## 4390 36 management married university.degree unknown no no
## 4397 47 admin. married university.degree unknown no yes
## 4401 35 blue-collar divorced high.school unknown yes no
## 4402 40 entrepreneur married basic.9y unknown yes yes
## 4404 45 blue-collar single basic.9y no yes yes
## 4413 42 technician married basic.9y no no no
## 4426 34 blue-collar married basic.6y unknown yes no
## 4428 33 admin. married university.degree no no no
## 4431 31 technician married professional.course no no no
## 4432 48 entrepreneur married basic.9y unknown yes no
## 4435 51 unemployed married professional.course no no no
## 4436 49 admin. married university.degree unknown yes no
## 4445 30 services married high.school no yes no
## 4446 35 blue-collar divorced basic.9y no no yes
## 4450 36 self-employed married basic.6y unknown yes yes
## 4454 37 admin. married high.school no yes yes
## 4459 41 management married basic.9y no yes no
## 4471 58 retired married basic.4y no yes no
## 4480 58 retired married basic.4y unknown no no
## 4482 48 blue-collar divorced professional.course no yes no
## 4491 39 management single basic.9y unknown yes no
## 4504 56 retired divorced high.school no yes no
## 4505 42 blue-collar married basic.6y no yes yes
## 4506 37 blue-collar married high.school unknown no no
## 4514 43 housemaid married basic.4y no unknown unknown
## 4518 39 admin. married basic.6y unknown yes yes
## 4519 36 technician divorced university.degree unknown yes no
## 4532 45 admin. married high.school no no no
## 4534 43 technician married basic.9y unknown yes no
## 4541 27 technician single university.degree no yes no
## 4549 60 admin. married university.degree unknown no no
## 4558 48 blue-collar married basic.4y unknown no no
## 4564 31 blue-collar divorced professional.course no yes no
## 4565 37 unemployed married high.school no no no
## 4567 35 technician married university.degree no yes no
## 4572 33 technician married university.degree unknown yes no
## 4581 39 blue-collar married basic.9y no yes no
## 4585 31 blue-collar married basic.9y no no no
## 4590 39 housemaid married basic.9y no no no
## 4593 46 housemaid married basic.9y no no no
## 4605 41 admin. single high.school no yes no
## 4611 34 services married high.school unknown yes yes
## 4613 38 admin. married high.school no no no
## 4620 40 services single high.school no yes yes
## 4624 55 technician married high.school no yes no
## 4632 45 admin. married university.degree no yes yes
## 4637 46 housemaid married basic.4y no no no
## 4639 42 blue-collar divorced basic.4y no no no
## 4648 55 admin. married high.school no yes no
## 4654 38 blue-collar married high.school unknown yes no
## 4655 56 self-employed married basic.4y no no no
## 4657 33 technician married professional.course no yes yes
## 4661 33 management married university.degree no yes no
## 4670 49 blue-collar married basic.4y unknown no no
## 4672 36 services married high.school no no no
## 4675 49 admin. married high.school unknown no no
## 4683 60 entrepreneur married basic.4y no yes no
## 4685 37 unemployed married professional.course no yes no
## 4687 36 technician single university.degree no no no
## 4689 43 entrepreneur married basic.9y no yes no
## 4691 56 blue-collar married unknown unknown yes no
## 4692 37 services single high.school no no no
## 4713 32 management single university.degree no yes no
## 4716 34 services married high.school no no no
## 4718 33 management married high.school unknown yes no
## 4719 34 blue-collar married basic.9y no yes yes
## 4729 35 self-employed married basic.9y no yes no
## 4734 35 retired married professional.course no no no
## 4736 30 blue-collar married basic.4y no no no
## 4745 38 management married university.degree no yes no
## 4753 35 technician single university.degree no yes no
## 4754 27 admin. single basic.9y no yes yes
## 4769 40 housemaid single university.degree no no yes
## 4777 34 blue-collar married basic.9y no no no
## 4779 33 blue-collar married basic.6y unknown no no
## 4781 49 blue-collar married basic.4y unknown yes no
## 4787 43 admin. married high.school no no no
## 4791 42 blue-collar married basic.4y unknown yes no
## 4808 33 admin. single high.school no no no
## 4815 27 admin. single high.school unknown yes no
## 4816 37 management married university.degree unknown no no
## 4821 32 services married high.school no yes yes
## 4822 32 services married high.school no yes yes
## 4829 58 management single professional.course no no no
## 4832 24 services single high.school no no no
## 4835 30 housemaid married high.school no yes no
## 4836 36 unemployed single basic.4y unknown yes no
## 4838 32 technician married professional.course no yes no
## 4843 29 blue-collar married basic.9y no yes no
## 4844 52 retired divorced basic.4y no yes yes
## 4848 58 blue-collar married high.school no yes no
## 4852 46 housemaid married basic.4y no no no
## 4860 26 blue-collar single basic.4y no yes yes
## 4875 43 admin. married high.school no unknown unknown
## 4881 25 blue-collar single basic.4y no yes no
## 4884 55 retired married basic.4y unknown yes no
## 4889 30 admin. married university.degree no no no
## 4894 25 blue-collar married basic.9y unknown yes no
## 4907 44 technician married high.school unknown yes no
## 4908 60 retired married professional.course unknown no no
## 4915 37 self-employed married high.school no no yes
## 4920 42 blue-collar divorced basic.9y no no no
## 4932 24 unemployed single university.degree no no no
## 4933 53 self-employed married university.degree no yes no
## 4941 49 blue-collar married basic.9y no yes no
## 4947 34 admin. single high.school no yes no
## 4955 40 services single university.degree no no no
## 4965 35 services single professional.course unknown no no
## 4970 30 blue-collar married basic.9y no no yes
## 4978 30 blue-collar married basic.9y no yes no
## 4979 26 services divorced basic.6y no no no
## 4980 51 services married high.school unknown no no
## 4984 43 blue-collar married high.school unknown unknown unknown
## 4988 31 blue-collar single basic.9y unknown yes no
## 4994 33 self-employed divorced unknown no no no
## 5001 44 unknown married basic.6y no no no
## 5002 37 blue-collar single high.school no yes yes
## 5005 36 blue-collar married high.school unknown no no
## 5007 50 admin. married high.school no no no
## 5011 46 entrepreneur married university.degree unknown no no
## 5014 55 technician married high.school no no no
## 5029 37 technician married professional.course unknown no no
## 5034 32 technician married professional.course no no no
## 5036 53 unemployed married basic.4y unknown yes no
## 5040 39 admin. single unknown no no yes
## 5046 38 blue-collar single high.school unknown yes no
## 5049 40 blue-collar single unknown unknown yes no
## 5055 37 entrepreneur married university.degree no no yes
## 5065 54 management married basic.4y no no no
## 5068 38 admin. divorced high.school no no no
## 5070 26 blue-collar single high.school no no no
## 5080 46 admin. divorced high.school no no no
## 5083 47 blue-collar married basic.4y unknown no no
## 5092 27 blue-collar married basic.9y unknown yes no
## 5094 36 technician married professional.course unknown no no
## 5095 50 admin. divorced basic.9y no no no
## 5096 53 blue-collar married basic.9y no no yes
## 5107 30 services single unknown no no yes
## 5113 22 blue-collar single basic.6y unknown no yes
## 5121 43 admin. divorced high.school no yes no
## 5130 48 technician married high.school no yes no
## 5137 29 technician single university.degree no yes no
## 5140 37 management single university.degree no yes no
## 5145 36 blue-collar married university.degree unknown yes yes
## 5146 45 unemployed married university.degree no no no
## 5147 38 blue-collar married basic.9y no no no
## 5152 33 entrepreneur married university.degree no yes no
## 5158 44 housemaid married high.school unknown no no
## 5172 37 technician single professional.course no yes no
## 5182 41 services married high.school no no no
## 5185 41 blue-collar divorced basic.6y no yes no
## 5192 42 admin. divorced high.school no yes no
## 5195 47 admin. married unknown no no no
## 5196 38 blue-collar married basic.4y no no no
## 5197 59 retired married university.degree no no no
## 5199 47 management married basic.4y unknown no no
## 5200 53 services divorced university.degree no no yes
## 5206 42 entrepreneur married high.school no yes no
## 5208 51 blue-collar married basic.4y no yes no
## 5209 35 blue-collar married professional.course no yes yes
## 5216 46 blue-collar married basic.9y no yes no
## 5233 59 technician divorced university.degree no no no
## 5242 39 blue-collar married unknown no no no
## 5244 37 blue-collar single unknown no no no
## 5245 32 blue-collar married basic.9y no yes no
## 5246 46 management married university.degree no yes no
## 5247 49 entrepreneur married university.degree no no no
## 5255 37 entrepreneur married basic.6y unknown unknown unknown
## 5258 42 management married unknown unknown no no
## 5262 36 admin. single high.school no no yes
## 5274 50 technician married professional.course no yes no
## 5284 30 management married university.degree no yes no
## 5285 32 self-employed married basic.9y no no no
## 5293 32 services single basic.6y no no no
## 5295 34 blue-collar married high.school no yes no
## 5296 41 self-employed married university.degree no yes no
## 5299 41 blue-collar divorced basic.6y no no no
## 5309 41 admin. married basic.6y no no no
## 5310 46 admin. married high.school unknown yes no
## 5315 44 blue-collar married professional.course no unknown unknown
## 5322 27 blue-collar married unknown no yes no
## 5323 31 blue-collar married basic.9y no no no
## 5325 39 blue-collar single professional.course no no no
## 5327 52 technician married basic.9y no no no
## 5328 49 admin. divorced university.degree no no no
## 5329 39 admin. married professional.course no yes no
## 5330 50 technician married high.school no yes no
## 5349 25 self-employed married university.degree no yes no
## 5350 26 blue-collar married basic.6y unknown yes yes
## 5353 53 technician divorced professional.course no no no
## 5356 48 blue-collar married high.school no no no
## 5357 51 blue-collar married unknown no no no
## 5358 40 admin. divorced university.degree no yes no
## 5361 45 blue-collar married basic.6y unknown no no
## 5362 35 blue-collar married basic.4y unknown no no
## 5368 53 entrepreneur married university.degree unknown no yes
## 5376 52 technician married unknown unknown yes no
## 5379 38 services married high.school unknown no no
## 5380 48 services married professional.course no yes no
## 5394 45 blue-collar married illiterate unknown no yes
## 5402 26 blue-collar single basic.9y no yes yes
## 5407 37 admin. single university.degree no yes yes
## 5419 31 unemployed married professional.course no yes no
## 5422 51 admin. married basic.9y no yes no
## 5428 34 blue-collar single basic.9y no yes no
## 5433 32 admin. married university.degree no yes no
## 5459 40 blue-collar married basic.4y no no no
## 5464 31 admin. divorced high.school no no no
## 5471 29 self-employed married basic.9y unknown yes no
## 5473 50 blue-collar married basic.9y unknown yes no
## 5478 43 technician single professional.course no yes no
## 5480 38 admin. single basic.9y no no no
## 5481 38 blue-collar single basic.6y no yes no
## 5483 28 admin. married university.degree no no no
## 5486 49 technician married basic.9y no yes no
## 5489 35 admin. married university.degree no yes no
## 5500 28 self-employed married professional.course no no no
## 5504 43 services married high.school no yes no
## 5512 26 blue-collar married basic.9y no yes no
## 5513 35 services married high.school no yes no
## 5516 46 self-employed married basic.9y unknown yes yes
## 5519 47 entrepreneur married high.school no no no
## 5522 48 retired divorced professional.course no yes no
## 5526 45 blue-collar married basic.4y unknown no no
## 5530 44 blue-collar married basic.4y unknown yes no
## 5536 42 admin. single university.degree no yes no
## 5544 47 technician married professional.course unknown no no
## 5545 36 management married university.degree no yes no
## 5556 51 admin. divorced basic.9y unknown yes no
## 5557 38 blue-collar married basic.6y unknown no no
## 5558 39 management divorced university.degree no no no
## 5563 44 blue-collar married basic.9y unknown no no
## 5566 46 admin. married unknown unknown no no
## 5567 36 technician married high.school no yes no
## 5568 44 admin. married high.school no yes no
## 5575 59 retired divorced professional.course no no no
## 5576 42 housemaid married basic.4y no yes no
## 5581 37 admin. married university.degree no no no
## 5586 39 blue-collar married basic.6y no yes no
## 5595 34 admin. married university.degree no no yes
## 5602 45 blue-collar married unknown unknown no no
## 5607 56 services married basic.9y unknown no no
## 5611 38 admin. married university.degree no no yes
## 5612 50 services married high.school no yes no
## 5613 45 services divorced high.school unknown no no
## 5614 56 blue-collar married professional.course no yes no
## 5616 35 services married high.school no no yes
## 5626 37 blue-collar married basic.4y unknown no no
## 5635 34 services divorced basic.9y unknown no yes
## 5636 47 technician married professional.course unknown no yes
## 5641 41 admin. married high.school no no yes
## 5643 38 admin. married high.school unknown yes no
## 5644 39 admin. married university.degree no no no
## 5654 38 housemaid divorced high.school unknown yes no
## 5656 40 admin. single university.degree no yes yes
## 5658 32 admin. single university.degree no no no
## 5662 30 services married high.school unknown no no
## 5678 31 admin. single university.degree no no no
## 5680 52 entrepreneur divorced high.school no no no
## 5684 31 admin. married high.school unknown yes yes
## 5687 41 management divorced basic.9y no yes yes
## 5690 44 unemployed married basic.6y no yes yes
## 5702 57 admin. married university.degree unknown yes no
## 5703 30 admin. single university.degree no yes no
## 5709 43 blue-collar single basic.4y unknown yes no
## 5710 36 admin. married university.degree no yes no
## 5711 29 technician single high.school no no no
## 5715 46 technician married professional.course no no no
## 5720 46 admin. single high.school no no no
## 5725 33 admin. married university.degree no yes no
## 5726 33 technician divorced professional.course no no no
## 5731 35 admin. married high.school no no yes
## 5741 42 technician single basic.9y no no no
## 5744 41 admin. married high.school no no yes
## 5747 41 entrepreneur married university.degree unknown yes no
## 5754 48 management married university.degree no yes no
## 5756 33 technician divorced professional.course no yes no
## 5760 47 services married high.school unknown yes no
## 5761 38 unknown married basic.6y no yes no
## 5767 46 technician divorced professional.course no yes no
## 5772 28 blue-collar single basic.4y no yes no
## 5783 46 self-employed married basic.9y unknown no no
## 5784 35 admin. divorced university.degree no no no
## 5788 35 services married basic.6y no no no
## 5790 43 technician married basic.9y unknown no no
## 5796 39 admin. single high.school unknown no no
## 5800 42 unemployed married high.school unknown no no
## 5802 43 management married university.degree no yes no
## 5803 45 admin. single unknown unknown no no
## 5809 30 student single unknown unknown yes no
## 5812 51 entrepreneur divorced university.degree unknown no yes
## 5815 56 retired married basic.4y unknown yes no
## 5816 57 unemployed married basic.9y unknown yes no
## 5827 36 services married high.school no yes no
## 5834 51 admin. divorced university.degree no no no
## 5844 35 admin. married high.school no no no
## 5851 52 blue-collar married basic.4y unknown yes no
## 5853 28 entrepreneur married basic.9y no no no
## 5856 44 admin. married university.degree unknown yes yes
## 5860 38 blue-collar single basic.4y no no no
## 5861 33 technician single professional.course no yes yes
## 5862 31 admin. divorced high.school no no no
## 5868 33 blue-collar married basic.9y unknown yes no
## 5869 34 technician married professional.course no yes yes
## 5870 36 admin. divorced high.school no yes no
## 5873 31 management single high.school no yes no
## 5878 47 technician single university.degree unknown yes yes
## 5880 38 services married high.school no no no
## 5882 57 technician married university.degree unknown no yes
## 5889 42 blue-collar married basic.4y unknown yes no
## 5896 38 student single university.degree no yes no
## 5900 27 blue-collar married basic.4y no yes no
## 5911 23 blue-collar married basic.9y no no no
## 5912 49 blue-collar married high.school no no no
## 5917 42 services married high.school unknown yes yes
## 5919 44 blue-collar single basic.6y no no yes
## 5922 32 management married university.degree no yes no
## 5923 57 admin. married basic.6y unknown yes no
## 5924 38 entrepreneur married university.degree no no no
## 5932 40 management married high.school no yes yes
## 5946 37 blue-collar married basic.4y no no no
## 5948 30 admin. married basic.9y no yes yes
## 5949 45 services divorced unknown no yes no
## 5951 48 blue-collar married professional.course no yes yes
## 5952 47 management married professional.course no no no
## 5956 37 technician single high.school unknown yes yes
## 5957 30 technician single professional.course no no no
## 5958 38 admin. married university.degree no yes no
## 5959 28 services married unknown no yes no
## 5961 43 management married high.school no no no
## 5962 32 blue-collar married basic.9y no yes no
## 5967 28 blue-collar married basic.9y no yes no
## 5968 50 entrepreneur married basic.9y no no no
## 5980 36 management married university.degree no yes no
## 5981 40 blue-collar married high.school no yes no
## 5987 34 blue-collar married basic.9y no no no
## 6008 44 management married university.degree no yes no
## 6017 24 services single high.school no no no
## 6018 25 admin. married high.school no yes yes
## 6021 31 admin. divorced high.school no no no
## 6022 38 management married high.school no no no
## 6026 29 blue-collar single basic.9y no yes no
## 6031 34 services married high.school no no no
## 6033 43 management married basic.4y no yes no
## 6034 37 unemployed married professional.course no no no
## 6040 53 housemaid married basic.4y no yes no
## 6047 26 technician single professional.course no no no
## 6048 31 entrepreneur divorced high.school no yes no
## 6054 33 entrepreneur married basic.9y unknown no no
## 6055 29 admin. single university.degree no yes no
## 6057 26 technician single professional.course no no no
## 6060 46 services divorced high.school no yes no
## 6062 37 blue-collar single professional.course no yes no
## 6074 32 services married high.school no no no
## 6077 41 admin. divorced high.school no no no
## 6078 37 admin. married high.school no no no
## 6083 28 student single basic.9y unknown yes yes
## 6087 33 admin. divorced high.school unknown no no
## 6088 43 blue-collar married basic.9y no no no
## 6090 43 unknown married high.school unknown no no
## 6092 37 blue-collar single professional.course no no no
## 6094 37 blue-collar single basic.6y unknown no no
## 6101 37 technician married professional.course no no no
## 6105 47 admin. married high.school no no no
## 6126 47 technician married professional.course unknown yes no
## 6128 38 technician married professional.course no yes no
## 6133 35 admin. married basic.9y no no no
## 6136 30 self-employed married basic.9y no no no
## 6145 37 technician single university.degree no yes yes
## 6146 37 technician single university.degree no no no
## 6160 35 technician married professional.course no no no
## 6168 52 blue-collar married basic.9y no yes no
## 6174 46 housemaid married basic.4y no yes no
## 6184 39 services married high.school unknown no no
## 6188 39 technician married professional.course no no no
## 6189 55 admin. married high.school no no no
## 6195 31 entrepreneur divorced high.school no yes no
## 6196 31 blue-collar married basic.9y no no no
## 6198 31 technician married professional.course no no no
## 6201 29 admin. married high.school no yes no
## 6204 36 services married high.school no no yes
## 6205 35 blue-collar married basic.4y no yes no
## 6216 31 blue-collar married basic.9y no no no
## 6218 34 blue-collar married basic.9y unknown no yes
## 6221 38 admin. single university.degree no no no
## 6224 30 management married basic.9y no yes no
## 6230 38 services married high.school no yes no
## 6240 42 admin. married high.school no yes no
## 6244 35 services married high.school unknown yes no
## 6248 27 technician single professional.course no yes no
## 6249 57 management divorced high.school no no no
## 6251 38 blue-collar single basic.4y no unknown unknown
## 6255 50 services married professional.course unknown no yes
## 6260 45 admin. divorced basic.9y no no no
## 6268 24 unemployed single university.degree no no yes
## 6280 43 admin. married high.school no no yes
## 6281 30 self-employed married basic.9y no no no
## 6284 51 management divorced university.degree no no no
## 6287 37 blue-collar single basic.9y no yes no
## 6293 47 blue-collar married basic.4y unknown unknown unknown
## 6295 31 services married high.school no no no
## 6297 38 admin. married university.degree no no no
## 6300 55 technician married basic.6y no yes no
## 6305 32 admin. single high.school no yes no
## 6307 34 technician married professional.course no yes no
## 6308 35 blue-collar married basic.4y unknown no no
## 6311 41 admin. divorced high.school no no no
## 6317 30 blue-collar divorced basic.9y no no no
## 6331 28 management married university.degree no no no
## 6332 40 blue-collar married basic.6y no yes no
## 6339 55 admin. married high.school unknown no no
## 6341 31 entrepreneur married basic.6y no yes no
## 6342 40 technician married professional.course unknown yes no
## 6343 40 technician married professional.course unknown yes no
## 6344 32 blue-collar single high.school no yes no
## 6346 50 admin. married high.school no yes no
## 6350 45 technician married professional.course no yes no
## 6357 45 admin. married basic.9y no yes no
## 6371 39 services married high.school no no no
## 6377 50 self-employed unknown basic.6y no no no
## 6380 30 entrepreneur single high.school no no no
## 6382 35 admin. single professional.course unknown yes no
## 6383 35 blue-collar married unknown no yes no
## 6387 27 admin. divorced high.school no yes no
## 6397 29 services divorced high.school no yes no
## 6413 36 admin. married high.school unknown yes no
## 6415 39 blue-collar married basic.9y unknown yes no
## 6417 29 services married high.school no yes no
## 6430 45 admin. married high.school no no no
## 6432 37 blue-collar single high.school no no no
## 6436 46 admin. married unknown no no no
## 6439 33 blue-collar married basic.9y unknown yes no
## 6441 35 blue-collar married basic.9y no no no
## 6442 32 blue-collar divorced basic.9y no no no
## 6444 39 technician married basic.6y no yes no
## 6448 30 management single university.degree no no no
## 6450 37 housemaid married high.school no no no
## 6461 39 self-employed married basic.4y unknown yes no
## 6473 53 technician married professional.course no yes no
## 6475 31 technician single university.degree no yes no
## 6480 46 blue-collar married basic.4y unknown yes yes
## 6481 30 technician married professional.course no yes yes
## 6490 33 technician married basic.9y no no no
## 6492 35 management married professional.course no yes yes
## 6496 59 retired married basic.4y unknown yes yes
## 6498 27 admin. single university.degree no yes no
## 6499 37 blue-collar single basic.9y no no no
## 6501 34 technician married university.degree no no yes
## 6512 37 self-employed single university.degree unknown yes no
## 6513 45 services married high.school unknown yes no
## 6516 56 technician married basic.9y no yes no
## 6518 34 admin. single high.school no no yes
## 6520 34 admin. divorced university.degree no no no
## 6524 32 technician single university.degree no no no
## 6527 52 admin. married high.school unknown yes no
## 6532 34 blue-collar married basic.9y no yes yes
## 6544 44 blue-collar divorced basic.9y no yes no
## 6549 25 management single university.degree no yes no
## 6551 27 services single high.school no yes no
## 6559 39 blue-collar married basic.6y unknown no no
## 6561 31 blue-collar married basic.6y no no no
## 6564 32 technician single high.school no yes no
## 6566 34 admin. single high.school no yes no
## 6567 27 blue-collar married basic.9y no no yes
## 6576 20 entrepreneur single high.school no no yes
## 6581 30 services married basic.9y no yes no
## 6592 29 admin. single high.school no yes no
## 6597 33 blue-collar married basic.6y no yes no
## 6604 30 blue-collar married unknown no no no
## 6605 31 services single high.school unknown yes no
## 6608 55 retired married high.school no no no
## 6618 31 blue-collar married basic.6y no no no
## 6619 49 management divorced university.degree no no no
## 6621 39 blue-collar married basic.9y unknown no no
## 6629 38 admin. married professional.course no no no
## 6637 46 blue-collar married unknown no no no
## 6638 32 blue-collar married basic.6y no yes no
## 6639 48 admin. single high.school no yes no
## 6646 48 retired married basic.4y no no no
## 6651 45 admin. married high.school no no no
## 6652 43 blue-collar married basic.4y unknown no no
## 6655 44 technician single high.school no no no
## 6666 42 unemployed single basic.4y unknown yes no
## 6672 46 blue-collar married professional.course no no no
## 6674 41 admin. married basic.9y unknown no no
## 6676 49 management divorced university.degree unknown no yes
## 6677 46 housemaid married basic.4y unknown no no
## 6679 41 management married basic.6y no yes no
## 6687 43 management married basic.6y unknown no no
## 6688 42 technician married basic.9y no yes no
## 6691 30 blue-collar single basic.9y unknown no no
## 6692 34 blue-collar married basic.4y no yes no
## 6693 39 admin. married basic.6y unknown no no
## 6698 59 retired divorced basic.9y unknown no yes
## 6701 36 blue-collar married basic.9y unknown no no
## 6703 31 admin. divorced university.degree unknown no no
## 6708 35 blue-collar divorced basic.4y no yes yes
## 6713 34 blue-collar married basic.9y no yes no
## 6721 39 services married high.school no no no
## 6723 50 management married university.degree no yes no
## 6733 46 retired married basic.4y no no no
## 6736 31 services single high.school unknown no no
## 6738 46 blue-collar married basic.9y unknown yes no
## 6739 54 retired married basic.4y unknown no no
## 6741 34 blue-collar married basic.4y no no no
## 6744 36 technician married professional.course unknown yes no
## 6749 29 services married basic.9y no yes no
## 6750 28 services single high.school no no no
## 6752 46 housemaid married basic.4y no yes no
## 6757 40 services married high.school unknown yes no
## 6763 30 management single university.degree no no yes
## 6767 35 blue-collar married basic.9y no no no
## 6783 49 blue-collar married basic.4y unknown yes no
## 6789 39 entrepreneur divorced high.school no no no
## 6792 27 admin. married high.school unknown no no
## 6794 42 technician married professional.course no yes no
## 6796 52 blue-collar married basic.9y no yes no
## 6797 36 admin. married high.school no yes no
## 6800 47 blue-collar divorced basic.9y unknown yes no
## 6809 25 blue-collar single high.school no no no
## 6811 30 blue-collar divorced basic.9y no yes no
## 6812 45 blue-collar married basic.6y unknown yes no
## 6817 44 blue-collar single basic.4y unknown no no
## 6824 50 management married university.degree no no yes
## 6832 50 technician married professional.course unknown no no
## 6835 60 retired divorced basic.4y unknown no no
## 6844 45 services single professional.course unknown no no
## 6845 48 entrepreneur married high.school unknown yes no
## 6846 28 self-employed single university.degree no no no
## 6850 29 blue-collar married professional.course no no no
## 6851 27 technician married professional.course no no no
## 6855 41 self-employed single university.degree no yes yes
## 6860 40 technician married professional.course no no yes
## 6868 52 entrepreneur married basic.9y unknown no no
## 6879 38 unknown divorced high.school unknown yes no
## 6883 43 unemployed married high.school no yes no
## 6889 33 technician married university.degree unknown no yes
## 6891 48 entrepreneur divorced basic.4y no no no
## 6893 46 retired married university.degree no no no
## 6897 36 blue-collar single basic.9y no no no
## 6902 39 admin. married university.degree no yes no
## 6904 54 services single high.school unknown no no
## 6912 35 housemaid married basic.4y unknown no yes
## 6923 37 services married high.school unknown no yes
## 6924 33 services married basic.6y no yes no
## 6926 30 admin. single high.school no no no
## 6932 35 admin. married high.school no yes no
## 6935 56 admin. divorced unknown unknown yes no
## 6938 40 technician married basic.9y unknown yes no
## 6940 35 admin. married university.degree no yes no
## 6946 52 blue-collar single basic.9y unknown yes no
## 6947 29 admin. married university.degree no yes no
## 6955 34 self-employed married professional.course no no no
## 6956 37 blue-collar married basic.9y no no no
## 6957 42 blue-collar divorced basic.9y no no no
## 6961 38 services single basic.9y no yes no
## 6963 34 management single basic.9y no yes no
## 6965 53 admin. married university.degree no yes no
## 6971 42 admin. divorced high.school no yes no
## 6977 48 technician married high.school no no no
## 6980 49 blue-collar married basic.4y unknown yes no
## 6995 37 admin. married high.school no no yes
## 7007 42 technician married university.degree unknown no no
## 7018 39 technician married professional.course no no no
## 7023 59 retired divorced basic.4y unknown yes no
## 7036 52 services divorced high.school no yes no
## 7040 35 services married basic.6y no yes no
## 7046 30 technician married high.school no yes no
## 7057 41 services married university.degree no no no
## 7069 41 blue-collar married basic.9y unknown no no
## 7072 42 services married basic.6y no yes no
## 7078 33 management married high.school unknown yes no
## 7089 39 blue-collar married high.school unknown yes no
## 7091 37 unemployed married university.degree unknown no no
## 7092 38 admin. married high.school no yes no
## 7094 33 unemployed divorced basic.9y no yes no
## 7096 31 blue-collar married basic.9y no no no
## 7101 39 admin. single university.degree no no yes
## 7109 59 entrepreneur married basic.9y no no no
## 7114 30 blue-collar single basic.4y unknown yes yes
## 7117 35 technician married university.degree unknown no no
## 7122 56 blue-collar married basic.4y no yes no
## 7130 29 self-employed married university.degree no no no
## 7131 34 management married professional.course unknown no no
## 7136 40 admin. single high.school no yes no
## 7139 37 technician single high.school unknown yes no
## 7152 51 management married university.degree no yes no
## 7153 46 management married university.degree unknown yes no
## 7155 57 management divorced university.degree no yes no
## 7169 41 technician married professional.course unknown yes no
## 7173 49 admin. single unknown unknown yes no
## 7181 34 blue-collar married basic.9y no yes no
## 7183 53 self-employed married basic.4y no no no
## 7188 27 blue-collar married basic.4y no yes no
## 7190 33 blue-collar single basic.4y no no no
## 7195 35 self-employed married university.degree no no yes
## 7198 32 blue-collar married basic.9y unknown no no
## 7204 31 blue-collar married basic.9y no yes no
## 7216 44 blue-collar divorced basic.6y unknown yes no
## 7226 36 blue-collar married basic.9y unknown yes no
## 7237 59 blue-collar married basic.9y unknown no no
## 7243 35 admin. married high.school no yes no
## 7245 27 student single high.school unknown yes no
## 7247 50 blue-collar married basic.4y unknown no no
## 7249 37 admin. single university.degree no yes no
## 7275 41 blue-collar married professional.course no no no
## 7276 39 management married basic.6y no yes no
## 7281 51 blue-collar married basic.9y no no no
## 7283 54 blue-collar single basic.4y no no no
## 7286 54 technician divorced university.degree no no yes
## 7292 37 blue-collar single basic.9y unknown no no
## 7293 55 technician married university.degree no yes no
## 7296 27 services single professional.course no no no
## 7300 51 blue-collar divorced basic.4y no yes no
## 7305 59 management married basic.4y unknown yes no
## 7309 45 unknown married unknown no no yes
## 7310 50 blue-collar single basic.4y no no no
## 7313 36 entrepreneur married university.degree no yes no
## 7317 32 services married high.school no yes no
## 7323 48 admin. divorced high.school no yes no
## 7329 39 blue-collar married basic.9y no no yes
## 7333 25 blue-collar single high.school no yes no
## 7334 54 self-employed married professional.course unknown no no
## 7335 46 management married basic.9y no no no
## 7344 33 blue-collar single basic.9y no yes yes
## 7345 58 services married basic.4y no no no
## 7347 52 self-employed married university.degree no no no
## 7351 28 services married high.school no yes no
## 7354 36 blue-collar single basic.9y unknown no no
## 7372 38 blue-collar married basic.9y no yes yes
## 7373 34 admin. single university.degree no no no
## 7375 33 admin. married university.degree no yes no
## 7389 26 admin. married high.school unknown no no
## 7398 40 services married high.school no no yes
## 7403 34 services married high.school no yes no
## 7405 48 blue-collar married basic.6y no yes no
## 7406 26 technician married basic.6y no yes no
## 7418 37 technician married professional.course unknown unknown unknown
## 7422 41 admin. divorced high.school no no no
## 7432 37 blue-collar single unknown unknown no no
## 7433 33 management married basic.9y unknown no no
## 7438 43 blue-collar divorced basic.4y unknown yes no
## 7440 32 technician single university.degree no yes no
## 7441 45 blue-collar divorced basic.9y no no no
## 7445 25 blue-collar married basic.9y unknown yes no
## 7450 52 blue-collar single unknown unknown no no
## 7451 36 admin. married high.school no no no
## 7461 42 unemployed divorced high.school no no no
## 7467 41 blue-collar married basic.4y no yes no
## 7469 26 services single unknown no yes no
## 7471 47 blue-collar married basic.6y unknown yes no
## 7476 52 services married high.school unknown unknown unknown
## 7478 30 services married high.school no yes yes
## 7479 50 technician married professional.course no yes no
## 7482 35 blue-collar married unknown no no no
## 7486 57 services divorced high.school no no no
## 7491 28 technician single professional.course no yes no
## 7492 44 technician married high.school no no no
## 7493 46 blue-collar divorced basic.4y no yes no
## 7497 41 admin. divorced high.school no yes no
## 7501 30 admin. married unknown no yes no
## 7509 31 blue-collar married basic.9y no yes no
## 7513 30 blue-collar married unknown unknown yes yes
## 7514 46 management married basic.9y no no no
## 7520 33 technician married high.school no yes no
## 7527 36 blue-collar married basic.9y no no yes
## 7534 23 services single high.school no no no
## 7536 54 admin. married basic.4y unknown unknown unknown
## 7547 33 admin. married high.school no no yes
## 7556 37 blue-collar married high.school no no no
## 7560 32 admin. single university.degree unknown no no
## 7563 38 blue-collar single basic.9y unknown no no
## 7564 42 technician married professional.course unknown yes no
## 7571 29 services married high.school no no no
## 7573 51 retired divorced basic.9y no no no
## 7578 56 blue-collar married professional.course no unknown unknown
## 7582 26 services single high.school no yes no
## 7583 46 blue-collar married basic.9y unknown no no
## 7584 40 admin. married professional.course no no yes
## 7587 38 admin. divorced high.school no yes no
## 7603 46 blue-collar married basic.9y no yes no
## 7606 53 admin. married basic.9y unknown yes no
## 7614 49 blue-collar married basic.6y no yes no
## 7616 54 management married basic.9y no yes no
## 7632 54 blue-collar married unknown unknown no no
## 7634 47 admin. married university.degree unknown no no
## 7641 55 technician married university.degree no no no
## 7644 27 blue-collar married basic.6y no yes no
## 7656 29 housemaid married high.school no no no
## 7691 37 self-employed married high.school no no no
## 7695 37 self-employed married professional.course unknown yes no
## 7701 28 admin. married high.school no no yes
## 7711 38 services married high.school unknown no no
## 7716 30 technician married university.degree no yes no
## 7717 37 housemaid married high.school no yes yes
## 7730 42 blue-collar married basic.4y no yes no
## 7741 34 blue-collar divorced basic.4y no yes no
## 7749 39 blue-collar married basic.9y unknown no yes
## 7750 40 self-employed married basic.4y unknown yes no
## 7755 47 management married basic.4y unknown no yes
## 7758 35 admin. single university.degree no no no
## 7760 46 blue-collar married basic.4y unknown no yes
## 7761 24 entrepreneur married university.degree unknown no no
## 7772 45 services married basic.9y no no no
## 7782 30 services married high.school no no no
## 7784 46 retired married basic.4y no yes no
## 7790 59 retired married university.degree unknown yes no
## 7793 34 blue-collar divorced basic.4y unknown no no
## 7794 46 admin. married university.degree no yes no
## 7798 42 blue-collar married unknown unknown no no
## 7802 41 admin. single university.degree no no no
## 7815 60 management married university.degree no no no
## 7818 30 services divorced basic.9y no no no
## 7826 51 management married university.degree no yes yes
## 7828 35 admin. divorced university.degree no yes no
## 7834 35 admin. single basic.4y unknown yes no
## 7846 35 management single university.degree no yes no
## 7847 38 blue-collar married basic.9y unknown no no
## 7848 39 blue-collar married basic.9y unknown yes no
## 7851 30 services married high.school no no no
## 7859 40 management married university.degree no unknown unknown
## 7860 49 admin. divorced high.school no yes no
## 7861 34 blue-collar married basic.9y unknown yes no
## 7862 49 unemployed divorced professional.course no no no
## 7871 47 entrepreneur married university.degree no no yes
## 7872 51 blue-collar married basic.9y no yes no
## 7876 32 blue-collar single basic.4y no yes yes
## 7884 39 self-employed married basic.4y unknown yes yes
## 7913 56 technician married university.degree no no yes
## 7916 36 technician married professional.course no yes no
## 7934 45 admin. married unknown no yes no
## 7937 39 admin. single unknown no yes no
## 7939 53 unknown married high.school unknown no no
## 7940 31 blue-collar married basic.9y no yes no
## 7941 39 admin. single university.degree unknown no no
## 7945 34 blue-collar married high.school no yes no
## 7946 54 admin. married high.school unknown yes no
## 7957 40 technician single professional.course no yes no
## 7960 28 blue-collar single high.school no yes no
## 7962 45 management divorced university.degree no no no
## 7969 39 self-employed married university.degree no yes yes
## 7970 55 blue-collar married basic.4y unknown yes yes
## 7971 48 blue-collar divorced basic.4y unknown yes no
## 7973 58 blue-collar married basic.4y no no no
## 7976 37 admin. married university.degree no no no
## 7981 39 blue-collar married basic.9y no no no
## 7986 39 services divorced high.school unknown yes no
## 7990 45 admin. married university.degree no no no
## 8011 32 admin. married university.degree no yes no
## 8012 33 technician married high.school no no yes
## 8015 55 technician married professional.course no yes no
## 8016 35 technician married professional.course no no no
## 8026 58 admin. married university.degree no no yes
## 8031 55 retired divorced basic.6y unknown no no
## 8035 39 admin. married high.school unknown yes no
## 8037 47 entrepreneur single university.degree unknown yes no
## 8043 28 blue-collar married basic.9y no yes yes
## 8044 44 blue-collar divorced unknown no no yes
## 8048 41 blue-collar married basic.9y no no no
## 8049 57 blue-collar married basic.4y unknown yes no
## 8052 39 management married basic.6y unknown no no
## 8053 36 admin. married university.degree no yes no
## 8055 44 technician married high.school no no no
## 8056 34 technician married professional.course no yes yes
## 8061 38 technician single university.degree no no no
## 8063 52 blue-collar married high.school unknown no no
## 8071 54 blue-collar married high.school no no no
## 8073 39 admin. married university.degree no no no
## 8081 41 blue-collar married basic.4y unknown no no
## 8084 56 services married basic.4y unknown no no
## 8091 34 blue-collar married basic.9y no no no
## 8099 50 admin. married high.school no no no
## 8100 24 services single high.school no yes no
## 8102 41 technician married professional.course unknown yes no
## 8103 34 blue-collar married basic.6y no no yes
## 8104 48 unemployed single basic.4y no yes no
## 8107 31 services married basic.6y no no no
## 8108 42 services married high.school no no no
## 8114 41 admin. married high.school no unknown unknown
## 8119 36 blue-collar married basic.9y unknown no yes
## 8120 28 services single high.school no no no
## 8128 39 technician married professional.course no yes no
## 8129 33 admin. married university.degree no yes no
## 8132 42 self-employed married university.degree no no no
## 8138 60 unknown married basic.6y unknown no no
## 8145 43 blue-collar single professional.course no yes no
## 8159 38 technician single university.degree no yes no
## 8162 36 services single basic.6y unknown no no
## 8165 43 entrepreneur married basic.9y no no no
## 8166 46 blue-collar married basic.9y no no no
## 8172 29 management single university.degree no no no
## 8173 26 technician single university.degree no no no
## 8188 33 admin. married high.school no yes no
## 8190 31 services single high.school no yes no
## 8194 35 technician married university.degree unknown no no
## 8197 32 blue-collar single high.school no no no
## 8206 37 services married high.school unknown yes no
## 8236 60 retired divorced basic.4y unknown yes no
## 8237 37 admin. single high.school no yes no
## 8244 50 blue-collar married basic.6y unknown yes no
## 8246 50 services married high.school unknown yes no
## 8247 48 management married university.degree no yes yes
## 8255 34 technician married professional.course no no yes
## 8263 31 admin. single university.degree no yes no
## 8264 40 admin. single high.school no no yes
## 8265 30 blue-collar married unknown no no yes
## 8276 57 technician married professional.course no yes no
## 8277 38 admin. single university.degree unknown yes no
## 8280 41 blue-collar married basic.6y no yes no
## 8287 46 unemployed divorced basic.9y no yes no
## 8290 53 self-employed married university.degree no yes no
## 8294 26 blue-collar single high.school no no no
## 8305 30 blue-collar married basic.6y no no no
## 8306 32 admin. married university.degree no yes yes
## 8307 29 entrepreneur married high.school unknown yes no
## 8309 43 management married university.degree no yes yes
## 8319 35 technician married unknown unknown yes no
## 8326 37 admin. married university.degree no no no
## 8327 47 blue-collar divorced basic.9y unknown no yes
## 8329 29 admin. divorced professional.course no yes no
## 8338 30 services married high.school no no yes
## 8342 34 admin. single university.degree no no no
## 8351 24 admin. single high.school no no no
## 8355 28 blue-collar single basic.4y no no no
## 8357 32 blue-collar married basic.6y no unknown unknown
## 8360 29 blue-collar single high.school no yes no
## 8362 34 admin. married university.degree unknown no no
## 8364 28 student single university.degree unknown no no
## 8371 36 services divorced professional.course no no no
## 8377 40 technician married professional.course no no no
## 8379 45 admin. married unknown no no no
## 8381 41 blue-collar married basic.9y unknown no no
## 8390 50 blue-collar divorced basic.9y no no no
## 8393 50 admin. married university.degree no yes no
## 8398 33 admin. married high.school no no yes
## 8401 58 blue-collar married high.school no yes no
## 8402 42 blue-collar divorced basic.4y no no no
## 8406 46 management married basic.9y unknown yes no
## 8407 28 admin. married high.school no no no
## 8419 58 self-employed married university.degree no no no
## 8432 36 blue-collar married basic.9y no yes yes
## 8434 31 blue-collar married basic.9y no no no
## 8438 40 blue-collar married basic.4y no no no
## 8439 30 admin. married high.school no yes no
## 8441 46 housemaid divorced basic.6y no yes no
## 8444 35 entrepreneur married high.school no no yes
## 8460 47 admin. married university.degree no yes no
## 8476 37 admin. married high.school unknown yes no
## 8478 35 entrepreneur married university.degree no no no
## 8485 46 unemployed married basic.9y unknown no no
## 8494 42 technician single high.school no yes no
## 8501 50 admin. married university.degree no yes no
## 8502 34 entrepreneur married basic.4y no yes no
## 8521 41 self-employed married basic.4y no yes no
## 8522 57 blue-collar married basic.4y unknown yes no
## 8524 41 unknown single unknown unknown yes yes
## 8526 42 blue-collar single basic.4y no no no
## 8527 32 blue-collar married professional.course no yes no
## 8529 26 unknown single high.school unknown yes yes
## 8541 29 admin. married high.school no yes no
## 8547 46 admin. married high.school no yes yes
## 8553 58 services married basic.4y no yes no
## 8561 46 technician married professional.course unknown yes no
## 8566 50 admin. single university.degree no no no
## 8575 26 management single basic.9y no yes no
## 8584 36 blue-collar married basic.4y no no no
## 8592 57 blue-collar married basic.9y no yes yes
## 8593 27 blue-collar single basic.6y no yes yes
## 8602 53 technician married professional.course unknown yes no
## 8621 53 management married university.degree no unknown unknown
## 8623 56 admin. married university.degree no no no
## 8624 48 blue-collar married basic.9y no yes no
## 8632 39 admin. single high.school no no no
## 8637 37 blue-collar married basic.6y no no no
## 8641 53 blue-collar married basic.4y unknown yes no
## 8642 32 blue-collar married basic.4y unknown yes no
## 8645 45 management married unknown unknown yes no
## 8650 23 blue-collar married basic.9y no yes no
## 8651 35 admin. married high.school no no no
## 8666 36 admin. married basic.9y no no no
## 8673 39 technician married professional.course no no no
## 8680 23 services single high.school no no no
## 8681 35 unemployed married basic.9y unknown unknown unknown
## 8687 52 management divorced university.degree no no no
## 8688 36 entrepreneur married university.degree no yes yes
## 8692 29 blue-collar single university.degree no no no
## 8694 29 services married high.school no no no
## 8701 28 admin. married high.school no no no
## 8706 40 admin. divorced basic.6y unknown no yes
## 8711 45 entrepreneur married unknown no no no
## 8721 40 management married basic.6y unknown yes no
## 8724 46 blue-collar married high.school no yes no
## 8725 52 technician married high.school unknown yes no
## 8729 36 technician married basic.9y no yes yes
## 8738 42 blue-collar married basic.6y no no yes
## 8742 51 technician divorced professional.course no no no
## 8746 54 admin. married high.school no yes no
## 8759 34 management married university.degree no no no
## 8767 26 self-employed married university.degree no yes no
## 8777 49 admin. divorced university.degree no no no
## 8781 45 blue-collar married basic.6y unknown yes no
## 8783 35 blue-collar married basic.9y no no no
## 8806 52 management divorced university.degree no yes yes
## 8809 23 services single professional.course unknown no no
## 8810 28 unknown single unknown unknown yes no
## 8815 30 technician single professional.course no unknown unknown
## 8818 52 blue-collar divorced basic.4y no no no
## 8829 31 blue-collar divorced basic.9y no yes no
## 8831 27 admin. single university.degree no no yes
## 8832 43 blue-collar single professional.course no no no
## 8837 43 unemployed married university.degree unknown yes no
## 8844 45 blue-collar married basic.4y unknown yes no
## 8852 49 blue-collar married unknown no no no
## 8862 36 management married university.degree no no no
## 8864 50 blue-collar married basic.4y no yes no
## 8873 49 entrepreneur married basic.4y unknown no no
## 8878 41 management married university.degree no no no
## 8880 44 blue-collar married basic.4y no no no
## 8882 56 retired married basic.9y unknown yes no
## 8888 29 entrepreneur divorced basic.9y no yes no
## 8890 38 services married high.school unknown no no
## 8893 50 blue-collar married basic.4y no unknown unknown
## 8896 35 admin. single basic.4y unknown no no
## 8914 39 entrepreneur single basic.6y no no no
## 8915 54 technician single university.degree unknown no no
## 8920 56 entrepreneur married university.degree unknown yes no
## 8925 37 blue-collar single basic.6y unknown no no
## 8934 41 blue-collar married basic.9y unknown no no
## 8937 34 services married high.school no no no
## 8940 26 blue-collar single basic.9y no yes no
## 8948 31 management single university.degree unknown no yes
## 8950 38 blue-collar married high.school no no no
## 8951 38 services married basic.4y no yes no
## 8954 37 technician married university.degree no no no
## 8955 32 housemaid married basic.6y unknown no no
## 8956 48 management married university.degree no no yes
## 8959 31 technician married university.degree no no no
## 8960 40 admin. married high.school no no no
## 8966 34 admin. single university.degree no no no
## 8970 37 entrepreneur married university.degree no unknown unknown
## 8978 31 technician single university.degree unknown yes no
## 8983 35 blue-collar divorced basic.9y no no no
## 8987 41 blue-collar divorced professional.course no unknown unknown
## 8993 34 entrepreneur married basic.4y no no no
## 8998 40 blue-collar married basic.9y unknown no no
## 9003 47 blue-collar married basic.9y no yes no
## 9004 29 services single high.school no yes no
## 9009 31 entrepreneur married university.degree no yes no
## 9011 40 admin. married high.school no no no
## 9015 41 services married high.school no no no
## 9017 32 technician married professional.course no no no
## 9039 38 admin. single high.school unknown yes no
## 9040 25 services single professional.course no yes no
## 9043 52 blue-collar married unknown unknown yes no
## 9052 30 management single university.degree no no no
## 9061 39 blue-collar married basic.6y no no no
## 9064 42 unemployed married basic.6y unknown no no
## 9066 43 blue-collar married basic.9y no no no
## 9067 25 technician single university.degree no yes yes
## 9084 30 services married high.school unknown unknown unknown
## 9088 36 blue-collar married high.school no yes no
## 9090 36 blue-collar married high.school no no no
## 9099 38 blue-collar divorced unknown no no no
## 9105 36 technician married professional.course no no no
## 9109 30 blue-collar married basic.9y no unknown unknown
## 9114 54 management married high.school unknown no no
## 9117 38 technician married professional.course no yes no
## 9118 53 services married high.school unknown no no
## 9124 41 blue-collar married basic.9y unknown yes no
## 9135 48 unemployed married high.school unknown yes no
## 9136 36 management married university.degree no no yes
## 9138 27 services single professional.course no no no
## 9139 33 admin. married professional.course no yes yes
## 9148 44 blue-collar married basic.4y no yes no
## 9154 29 technician married professional.course no no no
## 9155 48 services married high.school unknown yes no
## 9159 58 technician divorced basic.9y no no no
## 9168 52 technician married basic.9y no no no
## 9175 53 blue-collar married basic.9y unknown no yes
## 9181 42 services married professional.course no no no
## 9184 56 blue-collar married high.school unknown yes no
## 9192 35 unemployed married university.degree no no no
## 9196 37 blue-collar married basic.9y no yes no
## 9201 26 entrepreneur married university.degree no yes no
## 9204 38 admin. married university.degree no no no
## 9210 38 housemaid married basic.9y no yes yes
## 9211 44 blue-collar married basic.9y unknown yes yes
## 9214 32 unemployed single high.school unknown yes no
## 9222 44 technician married professional.course unknown no no
## 9225 30 admin. divorced university.degree unknown yes no
## 9230 33 services married high.school unknown no no
## 9232 40 blue-collar married basic.4y unknown no yes
## 9237 48 blue-collar married basic.6y no unknown unknown
## 9242 58 services married basic.4y no unknown unknown
## 9245 27 self-employed single university.degree no no no
## 9249 42 blue-collar married basic.9y no yes no
## 9264 37 technician married professional.course no no no
## 9266 39 unemployed married university.degree no no no
## 9269 29 admin. married high.school no no no
## 9272 40 blue-collar single unknown no no yes
## 9276 41 technician divorced basic.4y no no no
## 9279 34 blue-collar married basic.4y no yes yes
## 9281 37 entrepreneur married university.degree unknown yes no
## 9298 46 self-employed married professional.course no yes no
## 9307 57 retired married university.degree no yes no
## 9315 37 housemaid married university.degree no yes no
## 9343 35 admin. single university.degree no no yes
## 9344 39 management married basic.6y unknown yes no
## 9345 34 technician married university.degree no no no
## 9362 53 admin. divorced university.degree no no no
## 9365 41 blue-collar married basic.9y unknown no no
## 9377 56 technician married unknown no no no
## 9380 39 blue-collar divorced basic.9y no unknown unknown
## 9383 56 admin. married high.school no yes no
## 9384 46 admin. married high.school no no no
## 9385 53 blue-collar divorced basic.4y unknown no no
## 9386 38 unemployed married basic.9y no no no
## 9390 34 blue-collar married basic.6y unknown no no
## 9392 47 retired married basic.4y unknown no no
## 9397 30 services divorced basic.9y no no no
## 9404 36 admin. married high.school no no no
## 9405 43 blue-collar married basic.9y no yes no
## 9409 45 technician married professional.course unknown no no
## 9424 44 admin. divorced university.degree no yes no
## 9428 25 blue-collar single high.school no yes no
## 9430 31 entrepreneur married high.school no yes no
## 9434 47 retired married basic.4y unknown no yes
## 9437 54 blue-collar married basic.4y no no no
## 9446 34 technician married university.degree no no no
## 9449 37 entrepreneur married basic.9y no no no
## 9451 52 blue-collar married basic.4y no yes no
## 9452 39 management married university.degree no yes no
## 9456 35 services married professional.course unknown no no
## 9459 42 services married high.school no yes yes
## 9462 36 blue-collar single high.school no yes no
## 9468 49 admin. single high.school no yes no
## 9472 32 housemaid married university.degree no yes no
## 9475 32 housemaid single basic.4y no yes yes
## 9478 29 admin. single university.degree no yes no
## 9482 48 blue-collar married basic.4y unknown no no
## 9488 54 blue-collar unknown basic.6y unknown no no
## 9508 44 blue-collar married basic.4y unknown yes no
## 9509 36 blue-collar single high.school no unknown unknown
## 9510 26 technician married basic.6y no no no
## 9517 33 technician married professional.course no no no
## 9531 40 services married basic.6y unknown no no
## 9544 32 technician single university.degree no no no
## 9550 37 admin. divorced university.degree no no no
## 9565 53 admin. single basic.6y no yes no
## 9567 32 blue-collar married basic.9y unknown no no
## 9568 29 admin. married high.school no no no
## 9573 26 student single high.school no no no
## 9578 44 technician divorced professional.course no yes no
## 9588 30 admin. divorced high.school no yes no
## 9591 54 technician single basic.9y no no no
## 9598 36 technician married professional.course no yes yes
## 9599 26 student single high.school no no no
## 9604 34 blue-collar married basic.9y unknown no no
## 9605 46 entrepreneur married professional.course unknown no no
## 9611 41 blue-collar single basic.9y no no no
## 9616 35 admin. married high.school no no no
## 9622 39 self-employed married basic.4y unknown no no
## 9629 33 management married high.school no no yes
## 9635 39 management married university.degree no yes no
## 9639 32 admin. single professional.course no no yes
## 9643 35 technician married university.degree no no no
## 9644 33 technician married basic.9y no no no
## 9654 48 unemployed married basic.9y no yes no
## 9658 31 blue-collar married basic.6y no no no
## 9663 44 admin. married university.degree unknown no no
## 9673 41 management married high.school no yes no
## 9677 53 blue-collar single basic.9y no yes no
## 9680 41 services single high.school no no no
## 9681 32 blue-collar married high.school no yes no
## 9682 31 admin. married high.school no no no
## 9684 52 entrepreneur married basic.9y unknown no no
## 9692 40 blue-collar married basic.6y no no no
## 9693 32 blue-collar married basic.4y unknown no no
## 9694 30 blue-collar single basic.4y no no no
## 9699 28 entrepreneur single high.school no yes no
## 9700 48 admin. married high.school unknown yes no
## 9714 39 self-employed married university.degree no no no
## 9727 39 admin. single university.degree no yes no
## 9732 28 blue-collar single basic.9y no yes no
## 9734 42 technician married basic.9y no yes no
## 9735 35 blue-collar married basic.4y unknown yes no
## 9737 39 self-employed married basic.4y unknown yes no
## 9738 38 management married basic.6y unknown yes no
## 9741 45 blue-collar married basic.4y unknown yes no
## 9747 36 blue-collar married basic.4y no no no
## 9751 54 management married university.degree no no no
## 9755 41 blue-collar married high.school unknown yes yes
## 9762 33 blue-collar married basic.9y no no yes
## 9763 37 admin. married high.school no no no
## 9786 26 blue-collar married high.school no yes no
## 9787 26 admin. married high.school unknown yes no
## 9788 36 technician married high.school no yes no
## 9791 37 management single university.degree no no no
## 9796 39 blue-collar married basic.4y unknown no no
## 9797 29 admin. married professional.course no yes no
## 9801 25 admin. married unknown no no no
## 9804 34 blue-collar married high.school no yes no
## 9805 39 technician divorced professional.course no no no
## 9814 29 admin. married professional.course no no no
## 9819 44 services married unknown no no no
## 9823 55 unemployed married basic.4y unknown yes no
## 9827 43 blue-collar married basic.4y no yes no
## 9831 36 blue-collar divorced high.school no no no
## 9835 42 management married university.degree no no no
## 9838 39 entrepreneur married high.school no no no
## 9839 45 services married high.school no yes no
## 9843 56 technician married basic.4y unknown no no
## 9844 28 admin. married university.degree no no no
## 9846 28 admin. married university.degree no no no
## 9848 36 blue-collar married basic.6y no no no
## 9859 29 admin. single university.degree no yes no
## 9861 38 blue-collar single basic.9y no no no
## 9865 31 admin. single university.degree no yes no
## 9887 33 admin. single university.degree no yes no
## 9898 25 services single high.school no no no
## 9900 33 admin. single university.degree no yes yes
## 9905 50 blue-collar married basic.6y unknown no no
## 9915 57 blue-collar married unknown unknown no no
## 9916 39 blue-collar married professional.course no no no
## 9917 52 blue-collar divorced high.school no no no
## 9926 56 blue-collar married basic.4y unknown yes no
## 9939 42 blue-collar divorced basic.9y no yes no
## 9961 51 unemployed married high.school unknown yes no
## 9966 35 blue-collar married basic.6y unknown no no
## 9976 40 blue-collar married basic.4y unknown no no
## 9978 41 blue-collar married basic.9y no yes no
## 9981 49 admin. divorced university.degree no no no
## 9988 57 retired single high.school no no no
## 9995 59 retired married professional.course unknown yes no
## 10002 30 services married high.school no yes no
## 10008 49 blue-collar divorced basic.4y unknown no no
## 10009 42 blue-collar married basic.6y no no no
## 10012 56 blue-collar divorced basic.4y no yes no
## 10015 53 unknown married high.school unknown no no
## 10019 40 admin. married high.school unknown no no
## 10022 59 technician married university.degree no no no
## 10023 45 blue-collar divorced basic.9y no yes no
## 10026 55 retired divorced high.school no no no
## 10027 37 admin. single university.degree no yes no
## 10029 56 management married university.degree no no no
## 10032 30 student single basic.9y no no no
## 10041 39 admin. single high.school no no no
## 10049 39 admin. divorced professional.course no yes yes
## 10050 55 technician divorced professional.course unknown no no
## 10061 36 entrepreneur married high.school no no yes
## 10068 55 blue-collar married basic.4y no no no
## 10075 41 services married basic.9y no yes no
## 10077 28 management single university.degree no no no
## 10078 47 technician married professional.course no no no
## 10079 59 services married high.school no no no
## 10084 45 services divorced high.school unknown no no
## 10086 56 entrepreneur married university.degree unknown no no
## 10087 53 entrepreneur divorced unknown no yes no
## 10088 35 technician married basic.6y no yes yes
## 10093 32 admin. single university.degree no yes no
## 10098 50 admin. married university.degree no no no
## 10101 35 blue-collar married basic.6y no yes no
## 10102 44 admin. married university.degree no yes no
## 10108 43 blue-collar married basic.4y unknown no no
## 10113 48 admin. married basic.9y unknown no no
## 10116 24 blue-collar married basic.9y no no yes
## 10124 39 unemployed married university.degree no yes no
## 10125 46 technician married university.degree unknown no yes
## 10126 40 blue-collar single basic.4y no yes no
## 10129 42 blue-collar married basic.6y no no no
## 10130 32 technician married basic.9y unknown no no
## 10135 35 blue-collar married high.school no no no
## 10143 47 blue-collar married basic.4y no yes no
## 10146 39 entrepreneur married high.school no yes no
## 10148 55 blue-collar divorced basic.4y unknown no no
## 10150 32 technician married university.degree no no no
## 10152 31 blue-collar married basic.9y no no no
## 10159 59 entrepreneur divorced high.school unknown yes no
## 10162 36 self-employed divorced university.degree no yes no
## 10173 48 blue-collar married basic.6y unknown no no
## 10180 38 management single university.degree no yes no
## 10185 25 admin. single high.school no yes no
## 10198 47 blue-collar married basic.4y no yes no
## 10201 32 admin. single university.degree unknown no no
## 10203 38 admin. married university.degree no no no
## 10205 48 blue-collar married high.school no yes no
## 10206 30 services married university.degree no yes no
## 10224 39 management married university.degree no yes no
## 10236 28 admin. single unknown no yes no
## 10241 40 blue-collar married basic.6y no yes no
## 10242 31 blue-collar single high.school no yes yes
## 10249 40 admin. single high.school unknown no no
## 10253 35 entrepreneur married basic.6y no no no
## 10257 29 admin. divorced university.degree no no no
## 10267 28 admin. single university.degree no no no
## 10293 40 technician married professional.course unknown no no
## 10299 40 admin. single university.degree unknown no yes
## 10302 32 services single high.school no no no
## 10305 43 admin. married high.school no no no
## 10307 41 unemployed divorced high.school no no no
## 10310 30 technician married university.degree no unknown unknown
## 10313 52 blue-collar married basic.4y unknown yes no
## 10314 59 blue-collar married basic.4y unknown yes no
## 10325 34 blue-collar married basic.9y no no no
## 10326 38 admin. married high.school no no no
## 10327 31 blue-collar married basic.9y no yes no
## 10332 44 technician divorced professional.course no yes no
## 10347 57 technician married basic.9y no yes no
## 10349 41 technician single university.degree no no no
## 10354 31 entrepreneur single basic.9y no no no
## 10357 28 blue-collar married basic.6y unknown yes no
## 10368 55 housemaid married professional.course no no no
## 10376 41 blue-collar divorced basic.6y no no no
## 10386 41 blue-collar divorced basic.9y unknown no no
## 10403 39 management married university.degree no no no
## 10410 60 retired married basic.4y unknown no no
## 10417 42 blue-collar married basic.6y no no no
## 10433 55 blue-collar married basic.4y unknown no no
## 10437 54 technician married university.degree unknown no no
## 10438 24 services single high.school no yes no
## 10443 48 technician married high.school no unknown unknown
## 10450 42 admin. single high.school no no no
## 10458 49 management married high.school no yes no
## 10462 39 entrepreneur married high.school no unknown unknown
## 10465 40 blue-collar married basic.9y unknown no no
## 10469 36 admin. married university.degree no unknown unknown
## 10478 44 services divorced high.school no no no
## 10483 34 blue-collar married professional.course no no no
## 10492 30 technician divorced high.school no yes yes
## 10494 43 technician single professional.course no no no
## 10495 31 services married high.school no no no
## 10504 47 blue-collar married basic.4y unknown yes yes
## 10511 47 entrepreneur married professional.course unknown yes no
## 10518 43 blue-collar married basic.9y no yes no
## 10527 41 admin. married university.degree no yes yes
## 10532 47 services divorced high.school no no no
## 10536 34 admin. single high.school no no no
## 10538 37 technician married professional.course no yes no
## 10539 31 blue-collar married professional.course no no no
## 10543 55 admin. married high.school no yes yes
## 10547 54 admin. married university.degree no no no
## 10551 24 blue-collar married basic.9y unknown no no
## 10552 27 blue-collar married basic.9y no no no
## 10555 36 technician married university.degree no no no
## 10566 30 blue-collar single basic.4y no no no
## 10567 50 management single university.degree no no no
## 10570 32 self-employed married professional.course no no yes
## 10575 49 admin. divorced university.degree no unknown unknown
## 10577 45 blue-collar single basic.4y unknown no no
## 10581 50 management married high.school unknown yes no
## 10585 31 blue-collar married basic.6y no yes yes
## 10586 38 admin. single basic.9y no no no
## 10597 31 technician single university.degree no no no
## 10604 52 services married high.school no yes no
## 10607 40 admin. married high.school no unknown unknown
## 10610 31 services married high.school unknown yes no
## 10612 44 technician divorced professional.course no no yes
## 10613 36 technician single university.degree no yes no
## 10615 27 entrepreneur single university.degree no no no
## 10619 36 technician married high.school no no no
## 10621 33 entrepreneur married university.degree no yes no
## 10633 43 technician married professional.course no no no
## 10635 38 admin. married university.degree no no yes
## 10636 51 blue-collar married basic.4y unknown no yes
## 10639 41 services married high.school unknown yes yes
## 10643 47 admin. married university.degree no no yes
## 10655 30 technician single professional.course no no no
## 10656 50 admin. married university.degree unknown yes no
## 10666 35 services single high.school unknown yes no
## 10672 57 management married university.degree unknown yes no
## 10676 44 technician married professional.course no yes no
## 10679 45 blue-collar married basic.6y unknown no no
## 10682 54 technician married professional.course no yes no
## 10684 41 admin. divorced high.school no yes no
## 10688 28 technician single professional.course no no yes
## 10692 32 blue-collar married basic.9y no yes yes
## 10698 32 self-employed married basic.9y no yes yes
## 10703 50 entrepreneur married university.degree no no no
## 10705 30 entrepreneur married professional.course no yes no
## 10707 36 blue-collar married professional.course unknown yes yes
## 10709 33 admin. married high.school no no no
## 10716 47 admin. married university.degree no yes no
## 10717 37 technician married university.degree no yes no
## 10720 37 technician married professional.course no no no
## 10730 26 admin. married high.school no yes no
## 10731 36 self-employed married university.degree no yes no
## 10737 40 admin. married high.school unknown no no
## 10742 33 admin. single university.degree no yes no
## 10743 29 student married high.school no no yes
## 10752 40 entrepreneur married basic.4y unknown yes no
## 10753 41 management married basic.6y no no yes
## 10760 54 technician married professional.course unknown yes yes
## 10762 39 admin. married university.degree no no no
## 10776 30 blue-collar divorced basic.9y no yes no
## 10783 35 unemployed divorced basic.4y no yes yes
## 10794 51 blue-collar married basic.4y unknown yes no
## 10796 55 housemaid married university.degree no yes no
## 10798 59 admin. married university.degree no yes no
## 10802 54 blue-collar married high.school no yes yes
## 10805 43 services married high.school no no no
## 10808 43 technician single professional.course no unknown unknown
## 10810 46 technician divorced professional.course no no no
## 10811 42 housemaid married unknown unknown yes no
## 10813 38 blue-collar married basic.9y no no yes
## 10824 31 unemployed divorced basic.4y no yes no
## 10826 30 student single university.degree no yes no
## 10835 57 retired married unknown unknown yes no
## 10836 36 blue-collar single high.school no yes no
## 10837 30 services married high.school no yes no
## 10839 32 services married professional.course no unknown unknown
## 10843 45 blue-collar married unknown unknown no no
## 10849 31 technician married professional.course no no no
## 10853 38 admin. single basic.9y unknown yes no
## 10857 35 blue-collar single basic.4y unknown no no
## 10871 38 blue-collar married basic.6y unknown no yes
## 10879 56 retired married high.school unknown yes no
## 10882 52 self-employed married professional.course unknown no yes
## 10884 29 admin. married high.school no no yes
## 10892 32 services married high.school no yes no
## 10893 41 services married basic.9y no yes no
## 10899 42 admin. divorced university.degree no no no
## 10903 32 admin. married high.school no yes no
## 10909 39 blue-collar divorced basic.9y no yes no
## 10916 25 housemaid married basic.4y no no no
## 10918 56 blue-collar married basic.4y unknown no no
## 10919 54 blue-collar divorced basic.4y unknown no yes
## 10937 24 blue-collar single basic.4y no no no
## 10938 24 blue-collar single basic.4y no no no
## 10955 43 blue-collar married basic.4y unknown yes yes
## 10958 55 blue-collar married basic.4y unknown no no
## 10959 38 blue-collar married basic.4y unknown no no
## 10960 40 admin. married university.degree no no no
## 10963 58 management unknown university.degree no no no
## 10966 57 housemaid married basic.4y no no no
## 10971 52 services single high.school no yes no
## 10986 50 unemployed married high.school no no no
## 10987 34 blue-collar married high.school no no no
## 10989 44 entrepreneur married professional.course no no yes
## 10994 32 technician married professional.course no no no
## 10996 27 admin. single university.degree no no no
## 11004 56 retired married basic.4y no yes no
## 11007 29 blue-collar married unknown unknown no no
## 11010 46 entrepreneur married university.degree unknown unknown unknown
## 11015 44 admin. single high.school no no no
## 11017 31 blue-collar married basic.9y no yes no
## 11028 43 management married high.school no no no
## 11034 38 blue-collar married basic.4y no yes no
## 11035 36 services married high.school unknown yes yes
## 11039 33 blue-collar married basic.4y no yes no
## 11045 44 blue-collar married high.school unknown yes no
## 11059 46 admin. married basic.9y unknown yes no
## 11063 41 admin. single high.school unknown yes no
## 11071 28 blue-collar married basic.6y no no no
## 11074 60 admin. married university.degree unknown no no
## 11077 29 management single university.degree unknown yes no
## 11079 56 retired married basic.4y no no no
## 11080 33 admin. married high.school no no no
## 11084 36 blue-collar married basic.9y unknown yes no
## 11092 32 blue-collar married basic.6y unknown yes no
## 11097 31 technician single professional.course unknown no yes
## 11099 32 technician married university.degree no no no
## 11100 34 blue-collar married basic.9y unknown yes no
## 11115 30 blue-collar married basic.9y no no no
## 11116 35 blue-collar married unknown no no no
## 11122 35 blue-collar married basic.6y no no no
## 11125 46 blue-collar married basic.6y no no no
## 11129 43 services married high.school no yes no
## 11131 41 blue-collar married basic.9y unknown no no
## 11149 45 blue-collar married basic.9y unknown yes yes
## 11156 37 technician married professional.course no no no
## 11161 55 admin. married high.school no yes no
## 11165 48 services divorced basic.6y unknown yes no
## 11168 45 admin. married basic.9y no no no
## 11170 41 admin. married university.degree no yes yes
## 11186 40 entrepreneur married university.degree unknown unknown unknown
## 11197 38 blue-collar married basic.4y unknown no no
## 11199 49 services married high.school no no yes
## 11200 39 blue-collar married basic.9y unknown no no
## 11201 41 blue-collar married basic.9y unknown yes no
## 11205 42 unemployed married high.school unknown yes no
## 11207 49 admin. divorced high.school no no no
## 11208 43 technician married basic.9y unknown yes no
## 11212 57 admin. married university.degree no no yes
## 11214 44 blue-collar married unknown no no no
## 11218 37 unemployed married professional.course unknown yes yes
## 11225 29 student married high.school unknown no no
## 11228 30 blue-collar single unknown no no yes
## 11236 52 retired divorced basic.4y unknown yes yes
## 11237 29 admin. single high.school no yes no
## 11238 43 technician married basic.9y unknown yes no
## 11247 39 blue-collar married basic.6y unknown yes no
## 11255 38 unemployed married basic.4y unknown no no
## 11260 37 blue-collar divorced basic.9y no no no
## 11265 49 management married university.degree no no no
## 11275 55 blue-collar married basic.4y unknown yes no
## 11283 34 services married basic.6y no no no
## 11291 45 blue-collar married basic.9y unknown no no
## 11295 37 blue-collar married professional.course no no no
## 11297 52 technician married unknown unknown no no
## 11301 55 housemaid married basic.4y unknown yes no
## 11303 35 management married high.school no yes no
## 11304 45 management single basic.9y no yes no
## 11308 45 management single basic.9y no yes no
## 11321 56 retired married basic.4y no no no
## 11323 46 entrepreneur married university.degree unknown yes no
## 11328 40 blue-collar married basic.4y no no no
## 11337 39 unemployed married university.degree unknown no no
## 11338 43 technician single professional.course no unknown unknown
## 11345 36 admin. married high.school unknown no yes
## 11351 38 technician married basic.9y no no no
## 11355 39 blue-collar married basic.9y no unknown unknown
## 11356 32 unknown unknown university.degree no no no
## 11362 46 admin. divorced university.degree no yes no
## 11373 35 blue-collar married basic.9y unknown no no
## 11374 40 technician married professional.course no no no
## 11383 29 self-employed married basic.6y unknown no no
## 11386 48 retired married basic.4y unknown no no
## 11398 31 blue-collar married basic.9y unknown yes no
## 11399 38 blue-collar married basic.6y no yes no
## 11402 36 technician married professional.course no no no
## 11419 36 management married university.degree no yes no
## 11423 56 technician married professional.course unknown no no
## 11426 29 admin. married university.degree no no no
## 11429 28 blue-collar married basic.9y unknown no no
## 11433 40 management married unknown no yes no
## 11435 39 blue-collar married high.school no yes no
## 11439 33 blue-collar divorced basic.6y unknown no no
## 11444 47 blue-collar divorced basic.4y no yes no
## 11458 58 entrepreneur married university.degree unknown no no
## 11463 49 blue-collar married basic.4y unknown unknown unknown
## 11464 56 retired divorced basic.4y unknown no no
## 11465 34 admin. married university.degree no no no
## 11471 37 housemaid married high.school no no yes
## 11472 49 blue-collar married basic.4y unknown no no
## 11482 46 blue-collar married basic.6y no no no
## 11484 36 blue-collar married basic.4y unknown yes no
## 11489 32 services single basic.6y no yes no
## 11491 32 services married high.school unknown no no
## 11493 42 blue-collar married basic.6y unknown no no
## 11494 49 admin. divorced high.school no yes no
## 11495 37 entrepreneur married university.degree no no no
## 11496 42 unemployed married high.school unknown no no
## 11497 24 entrepreneur single high.school no yes no
## 11499 47 services married high.school no yes no
## 11500 47 services married basic.6y no no no
## 11505 48 blue-collar married basic.4y no no no
## 11506 36 services married high.school no no no
## 11524 56 technician married unknown no yes no
## 11537 45 management married university.degree no no no
## 11546 34 management married university.degree no yes no
## 11548 55 blue-collar married basic.9y unknown no no
## 11553 36 blue-collar married basic.9y no yes no
## 11562 36 admin. married university.degree no yes yes
## 11569 50 admin. divorced high.school no no no
## 11577 31 blue-collar married basic.6y no yes no
## 11584 42 blue-collar married basic.9y unknown yes no
## 11585 59 retired married basic.4y unknown no yes
## 11587 54 technician married high.school no yes no
## 11591 35 management divorced high.school no yes no
## 11600 56 blue-collar married basic.4y no no no
## 11613 36 admin. married university.degree no yes no
## 11620 37 blue-collar married unknown no no no
## 11621 36 technician single unknown no no no
## 11627 48 blue-collar married basic.4y no no no
## 11633 35 technician single professional.course no unknown unknown
## 11638 34 admin. married university.degree no yes no
## 11639 41 admin. married high.school no yes no
## 11644 59 retired married professional.course unknown yes no
## 11649 35 admin. married high.school no no no
## 11654 53 management divorced university.degree no no no
## 11655 57 entrepreneur married basic.9y unknown yes no
## 11656 43 technician married basic.9y unknown yes yes
## 11666 57 retired married university.degree no yes no
## 11669 40 admin. married high.school unknown yes no
## 11674 31 student single unknown unknown yes no
## 11680 33 services unknown high.school no no no
## 11690 35 services married basic.6y no yes no
## 11694 26 blue-collar single basic.9y unknown no yes
## 11696 56 retired married basic.6y no yes no
## 11703 55 admin. married university.degree no no no
## 11704 35 blue-collar married basic.9y unknown yes no
## 11712 32 admin. married university.degree no yes no
## 11716 29 blue-collar single professional.course no no no
## 11718 38 blue-collar married basic.9y no no no
## 11723 30 blue-collar married basic.9y no yes no
## 11727 31 entrepreneur single university.degree unknown no no
## 11731 44 self-employed single university.degree no no no
## 11735 43 services married high.school no no no
## 11752 42 blue-collar married basic.4y unknown yes no
## 11763 31 entrepreneur married professional.course no yes no
## 11764 44 admin. single university.degree unknown yes no
## 11770 56 self-employed married professional.course no no yes
## 11775 59 entrepreneur married university.degree no no no
## 11790 58 blue-collar unknown basic.9y unknown no no
## 11795 40 admin. married university.degree no no no
## 11796 22 technician single professional.course no no no
## 11798 30 blue-collar married basic.9y no no yes
## 11803 53 blue-collar married basic.9y no yes no
## 11806 48 admin. divorced high.school no no yes
## 11807 29 blue-collar married unknown unknown no yes
## 11811 40 housemaid married basic.4y unknown yes no
## 11812 38 blue-collar single basic.9y no yes no
## 11814 33 admin. married high.school no yes no
## 11816 42 technician divorced basic.9y no no no
## 11817 59 retired married basic.9y unknown no no
## 11829 31 admin. single basic.9y unknown yes yes
## 11840 37 blue-collar married basic.4y no yes no
## 11843 37 technician single professional.course unknown no no
## 11845 33 self-employed single university.degree no unknown unknown
## 11847 39 technician single high.school no yes no
## 11853 41 admin. married high.school unknown no no
## 11854 33 blue-collar married basic.9y no no no
## 11861 44 blue-collar married basic.9y no no no
## 11866 38 admin. married university.degree no no no
## 11872 46 admin. married basic.9y unknown no yes
## 11879 28 blue-collar married unknown unknown no no
## 11892 47 admin. married university.degree no yes no
## 11923 53 technician married unknown no no no
## 11932 45 blue-collar married basic.9y unknown no no
## 11938 39 management single university.degree no no no
## 11946 41 self-employed single university.degree no yes yes
## 11950 47 admin. married university.degree no no no
## 11952 34 blue-collar single high.school no yes no
## 11961 37 services married high.school unknown yes no
## 11973 32 blue-collar single basic.9y no yes no
## 11980 36 admin. married university.degree no yes no
## 11993 36 blue-collar married unknown unknown no no
## 12001 58 services married basic.4y no no no
## 12003 31 blue-collar married basic.4y unknown yes yes
## 12006 52 technician married basic.9y no yes yes
## 12008 60 self-employed married professional.course no yes no
## 12010 30 admin. married high.school no unknown unknown
## 12011 30 admin. single university.degree no no no
## 12014 29 blue-collar married basic.9y no no yes
## 12015 45 technician single professional.course unknown yes yes
## 12023 29 admin. married university.degree no no no
## 12034 38 blue-collar married high.school unknown no no
## 12041 34 blue-collar married basic.6y no no no
## 12046 32 management married university.degree no no no
## 12051 26 admin. married high.school no no no
## 12053 34 admin. married high.school no yes no
## 12056 34 blue-collar married basic.9y no no no
## 12064 40 management married basic.9y no yes yes
## 12068 27 admin. single professional.course no yes yes
## 12070 27 self-employed single university.degree no yes no
## 12072 42 admin. single high.school no no no
## 12074 30 blue-collar married basic.9y unknown no no
## 12081 59 technician divorced basic.4y no yes no
## 12085 30 entrepreneur married basic.9y no no no
## 12093 49 housemaid married basic.4y no no yes
## 12095 36 admin. married high.school no yes yes
## 12096 29 services divorced high.school no yes no
## 12098 44 blue-collar single basic.6y no no no
## 12099 28 technician single university.degree no no no
## 12101 39 technician single professional.course no yes no
## 12103 31 blue-collar married basic.9y no yes no
## 12113 42 admin. married university.degree no no no
## 12127 28 self-employed single university.degree no yes no
## 12131 37 self-employed single university.degree unknown no yes
## 12138 41 entrepreneur married university.degree no yes yes
## 12152 31 blue-collar married basic.4y unknown no no
## 12154 34 technician single professional.course no yes no
## 12156 28 blue-collar single basic.6y no no no
## 12158 28 blue-collar married basic.6y no no no
## 12163 44 admin. divorced unknown no no no
## 12172 43 technician single professional.course no yes yes
## 12186 57 retired divorced university.degree no no no
## 12189 41 services single professional.course no yes no
## 12191 27 entrepreneur single university.degree no yes no
## 12192 40 blue-collar married basic.9y no no yes
## 12196 42 management married university.degree no no yes
## 12198 26 blue-collar married university.degree no no no
## 12201 46 housemaid married basic.4y no yes no
## 12205 43 technician single professional.course no no no
## 12209 47 technician married professional.course no no no
## 12222 45 management single university.degree no no yes
## 12225 48 entrepreneur married basic.6y no yes no
## 12229 29 admin. single university.degree no yes no
## 12251 38 technician single university.degree unknown yes yes
## 12252 55 admin. married basic.9y unknown yes no
## 12254 50 blue-collar married basic.9y unknown unknown unknown
## 12264 37 technician married basic.9y no yes no
## 12266 34 management married university.degree no yes no
## 12267 29 blue-collar divorced high.school no yes no
## 12268 52 housemaid single basic.4y no yes no
## 12272 34 blue-collar married basic.6y no yes no
## 12293 46 blue-collar married unknown no yes no
## 12296 37 admin. single university.degree no no no
## 12299 55 technician married university.degree no yes no
## 12300 32 blue-collar married basic.6y unknown no yes
## 12307 32 blue-collar married basic.6y no yes no
## 12308 43 management married high.school no no yes
## 12314 43 technician married university.degree no yes no
## 12322 30 admin. single high.school no yes no
## 12326 30 admin. single university.degree no yes no
## 12342 41 entrepreneur married basic.4y no yes no
## 12346 34 technician single professional.course unknown yes no
## 12352 59 retired married basic.4y unknown no no
## 12358 45 blue-collar married basic.9y no yes no
## 12361 33 technician married basic.9y unknown yes no
## 12363 31 technician single professional.course no no no
## 12364 30 services divorced high.school no yes yes
## 12365 58 retired married professional.course unknown yes no
## 12369 33 services married high.school no yes no
## 12372 40 blue-collar married basic.9y no no no
## 12377 46 blue-collar married basic.9y unknown no no
## 12383 38 admin. divorced high.school no no yes
## 12384 51 admin. married illiterate unknown no no
## 12385 52 management married professional.course no yes no
## 12389 48 admin. married university.degree no yes no
## 12391 34 technician single university.degree no no yes
## 12393 56 technician married university.degree unknown no no
## 12395 52 blue-collar married basic.9y unknown no no
## 12396 31 services married high.school unknown no no
## 12397 30 blue-collar single basic.9y no yes no
## 12401 42 blue-collar married basic.4y no yes no
## 12402 35 admin. single university.degree no no no
## 12416 42 technician married professional.course unknown no no
## 12417 42 services married high.school unknown yes no
## 12437 47 services single basic.9y no no no
## 12439 37 self-employed single basic.4y no unknown unknown
## 12442 23 blue-collar single basic.9y no no no
## 12461 42 blue-collar divorced basic.9y no no no
## 12473 56 blue-collar married basic.9y unknown no no
## 12476 23 admin. single university.degree no yes yes
## 12477 49 unemployed divorced basic.9y unknown no no
## 12484 33 services divorced unknown no no no
## 12494 30 blue-collar married basic.9y no yes no
## 12499 48 blue-collar divorced basic.4y unknown yes yes
## 12503 43 admin. married high.school no yes no
## 12504 33 blue-collar married basic.9y no no no
## 12508 55 blue-collar married basic.4y no no no
## 12510 59 technician divorced university.degree no no no
## 12513 52 management married university.degree no yes yes
## 12515 35 self-employed married high.school no no no
## 12517 34 services married high.school no yes no
## 12521 36 entrepreneur married unknown unknown yes no
## 12524 41 technician married high.school no unknown unknown
## 12526 39 blue-collar married basic.9y unknown no yes
## 12530 33 technician single professional.course no yes yes
## 12532 42 admin. married university.degree no yes no
## 12533 37 entrepreneur married basic.6y no yes no
## 12545 43 services married professional.course no yes no
## 12548 40 services married high.school no no yes
## 12554 41 entrepreneur married basic.4y no yes no
## 12558 52 entrepreneur married university.degree no yes no
## 12571 37 technician single high.school unknown no no
## 12573 24 services married high.school no yes no
## 12590 36 technician married basic.6y no yes no
## 12594 33 admin. married professional.course no no no
## 12595 36 admin. married high.school no yes no
## 12598 29 services single high.school no yes no
## 12609 32 technician married professional.course no no no
## 12616 27 admin. married high.school no yes no
## 12620 25 admin. married high.school no no no
## 12622 37 management married university.degree unknown no no
## 12623 25 admin. divorced professional.course no no no
## 12627 51 blue-collar divorced basic.9y no no no
## 12635 49 technician married professional.course no yes yes
## 12637 34 management single high.school no no no
## 12642 31 admin. married basic.9y no yes no
## 12652 38 technician married professional.course unknown no no
## 12658 37 blue-collar single high.school no yes no
## 12661 52 unemployed married unknown no yes no
## 12667 31 admin. married high.school no no no
## 12669 39 services married basic.9y no yes no
## 12679 35 admin. single university.degree no yes no
## 12682 48 blue-collar married basic.6y no yes no
## 12684 39 admin. divorced basic.9y no yes no
## 12686 47 blue-collar married basic.4y unknown yes yes
## 12688 46 blue-collar married basic.6y unknown no no
## 12689 44 blue-collar single high.school no yes yes
## 12694 44 blue-collar divorced basic.6y unknown no yes
## 12695 50 admin. married high.school unknown yes no
## 12703 36 technician married university.degree no no no
## 12705 52 housemaid married basic.4y no yes no
## 12707 25 services single high.school no no no
## 12711 55 technician married professional.course unknown no no
## 12715 31 services married high.school no no no
## 12720 44 admin. married high.school no yes no
## 12722 44 admin. married high.school no yes no
## 12723 44 admin. married high.school no yes no
## 12729 26 technician married professional.course no no no
## 12732 48 technician married unknown unknown yes no
## 12735 49 housemaid married basic.4y unknown yes no
## 12737 31 blue-collar single basic.9y no yes no
## 12745 52 admin. divorced university.degree unknown yes no
## 12755 49 services divorced high.school no yes no
## 12758 48 services divorced high.school no yes yes
## 12760 42 unemployed married university.degree unknown yes no
## 12765 38 admin. divorced university.degree no yes no
## 12771 40 services divorced high.school no yes no
## 12775 31 admin. single high.school no yes no
## 12778 36 technician single unknown no no no
## 12782 38 admin. married high.school unknown no no
## 12786 39 management divorced university.degree no yes no
## 12794 26 blue-collar married basic.9y unknown no no
## 12801 35 admin. single high.school no no no
## 12802 33 blue-collar single basic.9y no yes yes
## 12805 43 management married basic.9y no no no
## 12806 53 retired divorced high.school unknown yes no
## 12816 43 technician single professional.course unknown yes no
## 12820 35 services divorced high.school no unknown unknown
## 12821 33 services married high.school no no no
## 12823 49 management married university.degree no yes no
## 12842 43 admin. single high.school no yes no
## 12846 29 blue-collar married basic.9y no no no
## 12862 46 services married basic.9y no no no
## 12863 30 technician single high.school no no no
## 12868 30 unemployed single basic.4y unknown no yes
## 12875 34 technician single university.degree no no no
## 12878 30 technician single professional.course no yes no
## 12881 29 self-employed married unknown no no no
## 12883 30 technician single professional.course no yes no
## 12888 36 admin. married university.degree no yes no
## 12898 28 services married high.school no no no
## 12899 43 technician single professional.course unknown no no
## 12901 34 self-employed divorced professional.course unknown no no
## 12903 34 blue-collar married basic.4y no yes yes
## 12905 27 admin. single professional.course no no no
## 12906 54 retired divorced basic.4y unknown yes no
## 12910 54 retired divorced basic.4y unknown yes no
## 12915 24 student single high.school unknown yes no
## 12918 33 admin. married university.degree unknown yes no
## 12928 29 admin. single high.school no yes no
## 12933 27 entrepreneur married high.school no no no
## 12936 45 management married university.degree unknown unknown unknown
## 12940 31 admin. married high.school no yes no
## 12942 43 management single university.degree unknown no no
## 12945 48 technician divorced professional.course no yes no
## 12946 27 admin. single high.school no no no
## 12950 29 admin. single high.school no yes no
## 12952 41 blue-collar married unknown no yes yes
## 12957 33 blue-collar single basic.9y no no yes
## 12968 27 admin. single high.school no no no
## 12974 35 technician married professional.course no yes no
## 12979 28 blue-collar divorced high.school no yes yes
## 12995 33 blue-collar single basic.9y no no no
## 12997 25 blue-collar single basic.4y no yes yes
## 13007 28 services married high.school no yes no
## 13011 33 blue-collar single basic.9y no yes no
## 13014 47 technician married professional.course unknown yes no
## 13017 27 admin. single professional.course no yes no
## 13020 28 services married high.school no no yes
## 13030 28 blue-collar married basic.9y unknown yes no
## 13043 33 services married high.school no yes no
## 13044 30 technician single high.school no no no
## 13045 31 admin. single high.school no no no
## 13051 55 retired married basic.6y unknown yes no
## 13053 48 management married high.school no yes no
## 13057 43 blue-collar divorced basic.9y no yes no
## 13059 28 technician married professional.course no yes no
## 13062 23 admin. single high.school no yes no
## 13066 27 self-employed single professional.course no yes no
## 13095 32 blue-collar single basic.4y unknown no no
## 13096 29 admin. single basic.9y no no no
## 13101 29 admin. single high.school no unknown unknown
## 13107 35 self-employed single university.degree no no no
## 13108 33 admin. married high.school no no no
## 13115 28 technician divorced university.degree no yes no
## 13119 54 services married high.school no no no
## 13121 29 admin. single high.school no yes no
## 13128 25 technician single university.degree no yes no
## 13129 25 blue-collar married basic.9y no yes no
## 13132 31 services married basic.9y no yes no
## 13134 57 blue-collar married basic.6y no yes no
## 13135 31 services married basic.9y no no no
## 13136 29 blue-collar married high.school no yes no
## 13137 30 technician single university.degree no yes yes
## 13139 53 admin. married university.degree no yes no
## 13156 33 self-employed married university.degree no yes no
## 13157 36 admin. married university.degree no yes no
## 13158 51 management married university.degree no yes no
## 13170 24 services single professional.course no yes no
## 13171 24 services single professional.course no yes no
## 13180 41 technician single university.degree no yes yes
## 13185 34 admin. single high.school no yes no
## 13189 34 blue-collar married basic.9y no yes no
## 13191 26 services single high.school no unknown unknown
## 13195 27 admin. single university.degree no no no
## 13203 32 blue-collar married basic.4y unknown yes no
## 13208 32 blue-collar married basic.4y unknown no no
## 13212 44 unemployed married basic.9y unknown no no
## 13216 31 admin. married university.degree no no no
## 13236 45 blue-collar divorced basic.4y no no no
## 13237 45 blue-collar divorced basic.4y no yes no
## 13239 33 admin. married high.school no yes no
## 13242 28 blue-collar single professional.course no yes no
## 13244 37 blue-collar single basic.4y no yes yes
## 13246 33 admin. single university.degree no yes yes
## 13258 42 blue-collar married basic.9y unknown yes no
## 13261 40 blue-collar married basic.4y unknown unknown unknown
## 13263 31 blue-collar married basic.9y no yes no
## 13264 31 blue-collar married basic.9y no no no
## 13265 31 housemaid married basic.9y no yes no
## 13266 50 admin. single high.school no yes no
## 13267 25 blue-collar single basic.9y unknown yes no
## 13277 31 blue-collar married basic.9y no yes no
## 13280 44 admin. married high.school no yes no
## 13287 26 admin. single high.school no yes yes
## 13290 50 admin. single high.school no yes no
## 13291 32 admin. single university.degree no no no
## 13296 28 entrepreneur married university.degree no no no
## 13303 36 technician married professional.course no yes no
## 13305 51 management married university.degree unknown yes no
## 13312 26 services married high.school no unknown unknown
## 13316 30 blue-collar married basic.9y no yes no
## 13322 28 blue-collar married basic.4y unknown no yes
## 13325 45 self-employed married basic.9y no yes no
## 13326 28 services single university.degree no yes no
## 13327 34 technician married professional.course no yes no
## 13328 45 self-employed married basic.9y no yes yes
## 13330 39 technician married professional.course no yes no
## 13331 56 blue-collar married professional.course no yes no
## 13332 26 blue-collar single basic.9y no yes yes
## 13337 27 admin. married university.degree no no no
## 13343 29 admin. single high.school no yes no
## 13347 33 services married high.school unknown yes yes
## 13351 26 services single university.degree no yes no
## 13356 36 admin. divorced high.school no yes no
## 13357 39 admin. married basic.9y unknown no no
## 13361 49 services married high.school no no no
## 13364 29 technician married professional.course no no no
## 13366 42 blue-collar married basic.6y no yes no
## 13377 32 self-employed single university.degree no no no
## 13383 57 blue-collar married basic.9y no yes no
## 13386 21 blue-collar single basic.9y no no no
## 13387 21 blue-collar single basic.9y no unknown unknown
## 13389 57 housemaid married university.degree no no no
## 13390 30 admin. married university.degree no no no
## 13392 27 technician single university.degree no yes no
## 13393 40 blue-collar married basic.6y no yes no
## 13402 40 blue-collar married basic.4y unknown yes no
## 13407 34 admin. married high.school no yes yes
## 13409 57 blue-collar married basic.4y unknown yes no
## 13411 41 unemployed single high.school no no no
## 13412 24 management married university.degree no unknown unknown
## 13418 27 blue-collar single basic.4y no yes no
## 13420 32 admin. married university.degree no no no
## 13425 27 technician divorced professional.course no yes no
## 13426 28 blue-collar single basic.9y no no no
## 13428 33 admin. married high.school no no no
## 13434 32 admin. single university.degree no no no
## 13437 57 blue-collar married basic.4y unknown yes yes
## 13438 48 technician single professional.course no yes yes
## 13446 56 blue-collar married basic.4y unknown no no
## 13449 45 technician married professional.course no no no
## 13455 38 technician married professional.course no no no
## 13456 42 admin. married university.degree no no no
## 13457 36 technician divorced basic.9y no no no
## 13464 36 technician divorced basic.9y no yes no
## 13466 53 services divorced basic.4y unknown yes no
## 13467 53 services divorced basic.4y unknown yes no
## 13472 30 services single high.school no no no
## 13479 32 admin. divorced university.degree no yes no
## 13483 57 retired married basic.4y no yes no
## 13485 40 blue-collar married basic.4y unknown no yes
## 13489 40 blue-collar married basic.4y unknown yes no
## 13491 27 admin. married high.school no yes no
## 13496 55 housemaid married basic.4y no no no
## 13497 57 technician divorced professional.course no yes yes
## 13498 50 management married university.degree no no no
## 13500 39 blue-collar married basic.9y no yes no
## 13505 34 technician single university.degree no yes no
## 13506 48 technician divorced professional.course no yes no
## 13508 34 blue-collar married basic.9y no yes yes
## 13517 27 blue-collar single basic.9y no yes no
## 13519 34 technician single university.degree no yes yes
## 13525 36 blue-collar married basic.9y unknown no yes
## 13532 33 blue-collar single basic.6y no no no
## 13546 35 admin. single university.degree unknown no no
## 13548 49 blue-collar married basic.9y no no no
## 13549 25 services single professional.course no yes no
## 13550 49 blue-collar married basic.9y no yes no
## 13551 32 services single basic.9y no yes no
## 13554 34 blue-collar divorced basic.9y no yes no
## 13560 25 technician single professional.course no yes no
## 13562 23 blue-collar single high.school no no no
## 13570 25 admin. single high.school no no yes
## 13580 30 self-employed married university.degree no yes no
## 13581 28 admin. married high.school no no no
## 13593 46 management married high.school unknown yes no
## 13594 36 admin. divorced university.degree unknown yes no
## 13601 30 blue-collar single basic.9y no yes no
## 13602 58 services married high.school unknown no no
## 13608 32 blue-collar married basic.4y no yes no
## 13610 32 admin. single university.degree no no no
## 13611 32 technician single university.degree no yes no
## 13617 34 student divorced basic.6y no yes no
## 13637 29 admin. married university.degree unknown no yes
## 13639 40 technician married basic.9y no yes no
## 13647 25 blue-collar married basic.9y no no no
## 13653 39 self-employed married basic.9y no no no
## 13654 39 blue-collar married university.degree no no no
## 13656 29 blue-collar single basic.9y no yes no
## 13659 31 blue-collar single basic.4y no yes no
## 13666 33 self-employed married basic.9y unknown no no
## 13671 33 self-employed married basic.9y unknown no no
## 13677 32 services divorced high.school no yes no
## 13680 45 blue-collar divorced high.school unknown yes yes
## 13685 54 blue-collar married high.school no no yes
## 13702 49 management divorced university.degree no no no
## 13705 30 admin. single university.degree no yes no
## 13711 31 admin. married high.school no no no
## 13717 46 blue-collar single basic.9y unknown no no
## 13720 46 blue-collar single basic.9y unknown yes no
## 13721 26 self-employed single professional.course no yes no
## 13722 46 blue-collar single basic.9y unknown no no
## 13724 46 blue-collar single basic.9y unknown yes no
## 13727 25 admin. single high.school no yes no
## 13728 42 blue-collar married basic.9y no yes no
## 13730 32 blue-collar married basic.4y unknown no no
## 13734 29 technician married university.degree no no yes
## 13742 38 blue-collar married basic.6y unknown no no
## 13744 38 blue-collar married basic.6y unknown yes no
## 13747 29 entrepreneur married professional.course no no no
## 13761 41 entrepreneur divorced professional.course no yes no
## 13764 33 blue-collar married basic.9y no yes no
## 13765 28 services single university.degree no no no
## 13767 50 management single university.degree no no no
## 13773 35 technician single university.degree no no no
## 13777 34 blue-collar single basic.9y unknown yes no
## 13787 30 self-employed married university.degree no yes no
## 13795 26 technician married university.degree no no no
## 13797 48 technician married basic.6y no no no
## 13798 28 admin. single university.degree no yes no
## 13799 32 technician married high.school no no no
## 13801 42 admin. single high.school no no no
## 13806 30 self-employed married university.degree no yes no
## 13811 28 admin. single high.school no no no
## 13817 40 technician married university.degree no yes no
## 13820 60 management married university.degree unknown no yes
## 13822 26 entrepreneur single university.degree no no no
## 13831 56 blue-collar married basic.4y unknown yes yes
## 13835 30 services married high.school no yes no
## 13841 35 blue-collar married basic.9y unknown yes no
## 13845 35 blue-collar married basic.9y unknown yes no
## 13846 30 blue-collar single basic.6y no no no
## 13847 37 blue-collar married basic.9y no yes no
## 13852 24 student single basic.4y no no no
## 13854 51 services single basic.6y no no no
## 13860 35 admin. married high.school unknown no no
## 13861 35 admin. married high.school unknown yes yes
## 13862 51 blue-collar married basic.9y unknown no no
## 13871 44 entrepreneur divorced basic.4y no no no
## 13883 53 retired married basic.9y unknown yes no
## 13890 53 retired married basic.9y unknown no no
## 13892 43 blue-collar divorced basic.4y no yes no
## 13893 28 blue-collar single basic.4y unknown yes no
## 13895 24 blue-collar married basic.9y no no yes
## 13898 27 student single high.school no yes no
## 13907 55 entrepreneur married professional.course unknown yes no
## 13912 32 blue-collar married basic.9y no no yes
## 13913 31 admin. single university.degree no no no
## 13914 29 admin. single high.school no yes no
## 13915 33 admin. married high.school no no no
## 13920 38 entrepreneur married basic.9y no yes no
## 13922 39 services married high.school unknown yes no
## 13924 54 blue-collar divorced high.school unknown no no
## 13925 27 blue-collar married basic.6y no yes no
## 13927 36 services single high.school no yes no
## 13935 31 blue-collar married basic.6y no no yes
## 13946 29 services single high.school unknown yes no
## 13947 30 admin. married university.degree no no yes
## 13949 29 admin. single high.school unknown no no
## 13963 42 services married high.school no yes no
## 13970 50 blue-collar divorced basic.9y no yes no
## 13978 38 blue-collar divorced basic.9y no no no
## 13988 32 technician married unknown no no no
## 13994 29 blue-collar single basic.9y no no no
## 13998 31 student single high.school unknown no no
## 14000 31 blue-collar married basic.6y no no no
## 14006 35 admin. married high.school no no no
## 14010 28 blue-collar married basic.6y unknown yes no
## 14014 50 admin. divorced basic.9y no no no
## 14016 40 technician single professional.course no no no
## 14026 30 admin. married university.degree no no no
## 14030 30 admin. married university.degree no no no
## 14036 52 unemployed married university.degree unknown no yes
## 14038 33 blue-collar single basic.6y unknown no yes
## 14041 22 blue-collar married professional.course no yes no
## 14047 35 blue-collar married basic.6y no yes no
## 14049 30 services single high.school no yes no
## 14051 41 self-employed divorced professional.course no no no
## 14052 35 blue-collar married basic.6y no no no
## 14072 36 blue-collar single high.school no no no
## 14075 46 housemaid married basic.4y unknown no no
## 14089 29 blue-collar married basic.9y no yes no
## 14091 58 management married university.degree unknown yes no
## 14093 27 blue-collar single basic.9y no yes no
## 14099 40 entrepreneur married university.degree no no no
## 14101 39 technician divorced university.degree no no no
## 14116 45 blue-collar divorced basic.9y no no yes
## 14127 50 admin. divorced basic.9y no no no
## 14138 39 services married professional.course no yes no
## 14148 22 housemaid single high.school no yes yes
## 14158 40 services married basic.6y no yes no
## 14162 32 admin. single university.degree no unknown unknown
## 14169 39 admin. married university.degree no no no
## 14170 56 services divorced high.school unknown yes no
## 14173 28 admin. married university.degree no no no
## 14186 35 admin. married university.degree no yes yes
## 14191 54 blue-collar single unknown no yes no
## 14192 33 blue-collar married high.school no no no
## 14197 43 admin. married high.school no yes yes
## 14198 40 services married basic.6y no no no
## 14202 26 blue-collar single professional.course no no no
## 14215 30 technician married professional.course no yes no
## 14228 31 services married basic.9y no yes no
## 14230 29 admin. married high.school unknown no no
## 14231 35 admin. single university.degree no yes no
## 14233 34 self-employed divorced university.degree no yes no
## 14245 47 blue-collar married basic.6y no no no
## 14256 22 blue-collar single basic.9y no yes no
## 14257 47 management married basic.4y no yes no
## 14266 46 blue-collar single basic.6y unknown yes yes
## 14267 35 self-employed married university.degree no yes no
## 14274 35 blue-collar married high.school no yes no
## 14275 52 services married high.school unknown no no
## 14281 36 admin. single high.school unknown yes yes
## 14285 35 technician single university.degree no yes no
## 14286 54 blue-collar single unknown no no no
## 14293 41 housemaid single basic.4y unknown yes no
## 14297 26 blue-collar single high.school no no no
## 14298 46 services married high.school no no no
## 14320 30 technician married professional.course no yes yes
## 14322 34 blue-collar single professional.course no no yes
## 14329 28 admin. single basic.9y no yes no
## 14330 54 blue-collar married basic.4y unknown no no
## 14331 52 blue-collar married unknown no no yes
## 14334 55 management single unknown no no yes
## 14344 52 services married high.school unknown no no
## 14346 35 admin. married high.school unknown no no
## 14347 27 blue-collar single basic.9y no yes no
## 14355 30 blue-collar married basic.9y no no no
## 14361 48 blue-collar divorced high.school unknown no yes
## 14362 30 blue-collar married basic.9y no yes no
## 14371 27 admin. married high.school no yes no
## 14372 30 blue-collar single basic.9y no yes no
## 14373 32 technician married professional.course no yes yes
## 14378 33 entrepreneur married university.degree no yes no
## 14381 23 services single high.school no no no
## 14385 27 services married high.school no yes no
## 14386 42 admin. married high.school no no no
## 14391 29 entrepreneur single basic.9y no no no
## 14400 34 blue-collar married basic.4y no no no
## 14401 32 admin. single university.degree no yes no
## 14402 38 blue-collar single basic.9y unknown yes no
## 14404 33 blue-collar married high.school no yes no
## 14410 33 admin. single university.degree no no no
## 14414 49 blue-collar married basic.4y unknown yes no
## 14416 38 technician single professional.course no yes no
## 14417 57 blue-collar married basic.9y unknown yes no
## 14420 31 blue-collar married basic.9y unknown yes yes
## 14431 25 management single university.degree no no no
## 14433 46 blue-collar married basic.4y unknown no no
## 14436 27 blue-collar single basic.9y no no no
## 14462 57 blue-collar married basic.9y unknown no no
## 14466 42 technician married basic.9y no no no
## 14481 30 entrepreneur single high.school no yes no
## 14487 55 blue-collar married illiterate no no no
## 14488 40 admin. single high.school no yes no
## 14490 30 entrepreneur single high.school no no yes
## 14495 32 blue-collar married basic.9y unknown no no
## 14497 51 retired married basic.9y no yes no
## 14501 25 entrepreneur single university.degree no no yes
## 14510 33 admin. married high.school unknown no no
## 14520 38 management married university.degree no yes no
## 14528 35 admin. married basic.6y no yes no
## 14536 31 blue-collar married basic.9y unknown no no
## 14543 48 unemployed married university.degree no no no
## 14547 49 blue-collar married basic.4y unknown yes no
## 14554 36 blue-collar married basic.4y unknown no no
## 14555 33 housemaid married basic.9y no no no
## 14557 49 blue-collar divorced basic.4y unknown yes no
## 14565 48 blue-collar married basic.4y unknown yes no
## 14567 25 services single high.school no yes no
## 14572 34 admin. single university.degree no no no
## 14573 31 blue-collar single basic.9y no yes no
## 14577 35 blue-collar divorced basic.9y no no no
## 14587 46 technician divorced professional.course no yes no
## 14591 31 admin. single high.school no no no
## 14596 29 management single high.school no no yes
## 14598 50 admin. married professional.course no no no
## 14601 30 blue-collar single basic.4y no yes no
## 14608 38 admin. single high.school no no yes
## 14614 41 technician married university.degree no no no
## 14627 57 blue-collar divorced basic.6y unknown yes yes
## 14640 34 technician single professional.course no no yes
## 14641 41 entrepreneur divorced university.degree no yes no
## 14645 33 services married high.school no no no
## 14649 30 entrepreneur single high.school no yes no
## 14652 36 admin. single basic.9y no no yes
## 14656 37 admin. single university.degree unknown no no
## 14663 39 blue-collar married basic.4y unknown yes yes
## 14666 44 blue-collar married basic.4y no no no
## 14670 57 management married basic.9y no no no
## 14671 35 blue-collar single basic.9y no yes no
## 14675 48 blue-collar married basic.9y no yes no
## 14676 35 admin. married university.degree no unknown unknown
## 14687 33 blue-collar divorced basic.9y unknown no no
## 14690 28 technician single high.school no yes no
## 14691 48 admin. divorced basic.9y no no no
## 14700 34 admin. single university.degree no no no
## 14701 40 admin. divorced high.school no no yes
## 14705 38 admin. divorced university.degree no no no
## 14706 33 blue-collar married high.school unknown yes no
## 14710 50 blue-collar married basic.4y unknown yes no
## 14711 25 admin. single high.school no yes no
## 14721 53 blue-collar divorced unknown no yes no
## 14724 24 services single high.school no no no
## 14725 24 admin. single high.school no no no
## 14732 33 admin. single unknown no no yes
## 14733 38 self-employed married professional.course no no no
## 14734 34 blue-collar married basic.4y no no no
## 14736 31 admin. married university.degree no yes no
## 14743 34 admin. married high.school no yes no
## 14747 26 technician single professional.course no unknown unknown
## 14748 30 self-employed married university.degree no yes no
## 14749 37 entrepreneur divorced high.school unknown no no
## 14751 33 blue-collar married basic.9y unknown yes no
## 14760 43 housemaid married basic.9y unknown no no
## 14762 28 blue-collar single basic.6y unknown yes no
## 14765 28 blue-collar single basic.6y unknown yes no
## 14767 49 blue-collar divorced unknown unknown yes no
## 14769 27 services married high.school no no no
## 14787 45 management married university.degree unknown no no
## 14788 39 technician married high.school unknown no no
## 14793 55 management married basic.9y no yes no
## 14794 49 blue-collar divorced unknown unknown no no
## 14797 45 management married high.school unknown no no
## 14798 29 technician divorced high.school no no no
## 14804 49 retired married high.school no yes no
## 14806 34 admin. married university.degree no yes no
## 14813 49 blue-collar divorced unknown unknown yes no
## 14831 30 admin. married high.school no no no
## 14836 44 blue-collar married basic.4y no yes no
## 14839 31 admin. single university.degree no yes no
## 14846 37 services divorced basic.9y no yes no
## 14858 47 technician divorced professional.course no yes no
## 14861 37 blue-collar married basic.9y no no no
## 14863 29 self-employed single university.degree no yes no
## 14870 28 services married high.school no yes yes
## 14874 58 retired married high.school no yes no
## 14878 25 services married basic.9y no no no
## 14883 25 services divorced high.school no yes no
## 14888 52 admin. married high.school no no no
## 14889 48 blue-collar married basic.6y unknown yes no
## 14895 49 services married high.school unknown yes no
## 14899 34 blue-collar married basic.4y unknown no no
## 14902 59 retired married university.degree unknown yes yes
## 14905 29 blue-collar married professional.course no no no
## 14911 43 technician single professional.course unknown no no
## 14912 29 services married high.school unknown no no
## 14915 34 blue-collar single basic.6y no unknown unknown
## 14924 36 management single university.degree no no no
## 14933 23 blue-collar married basic.9y no yes no
## 14937 29 admin. single university.degree no yes no
## 14947 29 technician single university.degree no no yes
## 14951 29 admin. single university.degree no yes yes
## 14955 28 services married basic.9y no no no
## 14958 24 management married basic.9y no no no
## 14959 29 admin. married university.degree no no no
## 14962 35 services married basic.9y no no yes
## 14965 55 admin. single high.school no no yes
## 14967 29 self-employed single university.degree no yes no
## 14973 32 admin. single high.school no no no
## 14976 32 admin. single basic.9y no no no
## 14977 33 management married university.degree no no no
## 14982 32 admin. single basic.9y no no no
## 14987 25 admin. married high.school no no no
## 14988 37 blue-collar married high.school unknown no no
## 14992 30 admin. single university.degree no no no
## 14995 39 blue-collar married basic.4y no yes no
## 15009 41 technician married professional.course no yes yes
## 15016 47 blue-collar married basic.4y unknown yes yes
## 15023 25 blue-collar married basic.4y no no yes
## 15042 29 admin. single university.degree no yes yes
## 15046 31 services single basic.9y no yes no
## 15058 47 blue-collar divorced basic.9y no yes no
## 15062 43 technician married basic.9y no yes no
## 15066 31 self-employed divorced university.degree no unknown unknown
## 15068 27 blue-collar single basic.9y no yes no
## 15074 27 admin. single high.school unknown yes no
## 15091 34 technician single professional.course no no no
## 15093 42 housemaid married basic.9y no yes no
## 15096 30 entrepreneur single university.degree no yes no
## 15109 35 admin. married high.school no no no
## 15110 24 admin. single high.school unknown yes no
## 15121 23 management single university.degree no yes no
## 15122 27 unemployed single university.degree no yes yes
## 15127 23 management single university.degree no no no
## 15150 54 blue-collar married basic.9y unknown no no
## 15155 25 technician single professional.course no yes no
## 15160 26 admin. single university.degree no yes yes
## 15169 23 management single university.degree no yes yes
## 15174 25 blue-collar married basic.4y no yes yes
## 15180 24 technician single basic.6y no yes yes
## 15184 32 management divorced university.degree unknown yes no
## 15187 42 entrepreneur married basic.4y unknown yes no
## 15191 49 blue-collar single basic.6y unknown yes no
## 15197 23 management single university.degree no no no
## 15198 26 housemaid married basic.4y no yes no
## 15199 40 housemaid divorced high.school unknown no yes
## 15203 31 self-employed unknown professional.course no no yes
## 15204 31 services single high.school no no no
## 15205 25 admin. single university.degree no yes no
## 15206 52 blue-collar divorced basic.4y unknown no no
## 15210 27 blue-collar single basic.9y no no no
## 15212 28 blue-collar single unknown no no no
## 15250 27 blue-collar divorced unknown no no no
## 15257 44 technician single professional.course no no no
## 15259 42 self-employed single professional.course no yes no
## 15262 44 technician single professional.course no yes no
## 15264 25 services single basic.6y unknown no no
## 15272 30 blue-collar married basic.9y unknown no no
## 15275 32 admin. married university.degree no yes no
## 15277 38 entrepreneur married basic.6y unknown no no
## 15283 35 unemployed divorced basic.9y no no no
## 15293 30 technician single university.degree no yes no
## 15296 49 admin. divorced high.school no no no
## 15302 39 admin. married high.school unknown no yes
## 15316 32 self-employed married university.degree unknown no no
## 15323 30 blue-collar married basic.6y unknown yes no
## 15330 31 self-employed single university.degree no yes no
## 15333 53 services divorced basic.9y no no no
## 15334 46 admin. married university.degree unknown no no
## 15336 38 technician single professional.course no no no
## 15343 28 technician married basic.9y no yes no
## 15350 35 admin. single university.degree no no no
## 15353 36 admin. married high.school no unknown unknown
## 15358 35 admin. single university.degree no no no
## 15361 27 admin. single university.degree no no no
## 15367 56 admin. married university.degree no yes yes
## 15375 37 entrepreneur single professional.course no no no
## 15378 43 blue-collar married basic.9y no yes no
## 15380 43 blue-collar married basic.9y no no no
## 15385 29 technician single professional.course no yes no
## 15387 36 admin. married professional.course no no no
## 15389 33 admin. single high.school no no no
## 15396 31 admin. married university.degree no no no
## 15402 56 admin. married university.degree no no yes
## 15404 28 services divorced high.school unknown no yes
## 15405 54 blue-collar married basic.4y unknown no no
## 15408 37 blue-collar divorced basic.9y no yes no
## 15420 44 services divorced high.school no no no
## 15424 26 admin. single university.degree no yes no
## 15427 38 services married high.school no yes no
## 15430 37 blue-collar married basic.6y no no no
## 15442 49 unemployed divorced university.degree no yes yes
## 15444 47 blue-collar married basic.9y unknown yes no
## 15446 36 management single university.degree no yes no
## 15453 45 housemaid divorced basic.4y unknown no no
## 15459 26 blue-collar married basic.9y no no no
## 15466 31 admin. single university.degree no yes yes
## 15471 45 blue-collar divorced basic.4y unknown yes no
## 15487 25 admin. single university.degree no no no
## 15494 33 admin. married high.school no no no
## 15499 46 admin. single university.degree no no no
## 15503 26 services single high.school unknown yes no
## 15513 20 student single university.degree no yes no
## 15515 25 blue-collar single basic.6y no no yes
## 15522 29 management single basic.9y no yes yes
## 15527 25 technician single high.school no no no
## 15532 37 technician married professional.course no yes no
## 15533 44 self-employed married high.school unknown no no
## 15538 41 self-employed married basic.9y unknown no no
## 15543 39 blue-collar single basic.4y unknown no no
## 15551 56 admin. married university.degree no yes no
## 15554 26 services single high.school no yes no
## 15557 28 technician single university.degree no no no
## 15558 24 technician single unknown no no no
## 15561 26 services single high.school no yes no
## 15564 28 admin. single unknown no yes no
## 15569 21 blue-collar single basic.9y no no no
## 15574 31 blue-collar single university.degree no no no
## 15581 39 blue-collar single basic.4y unknown no no
## 15589 31 blue-collar divorced unknown no yes no
## 15592 44 blue-collar divorced basic.6y unknown no no
## 15607 30 technician single university.degree no yes no
## 15612 39 blue-collar single basic.9y unknown yes no
## 15615 26 services married high.school no yes yes
## 15620 59 retired married basic.4y unknown no no
## 15625 54 blue-collar married basic.4y no no no
## 15626 22 blue-collar single basic.9y no yes no
## 15631 43 blue-collar married basic.9y unknown yes no
## 15642 24 admin. single professional.course no yes no
## 15643 40 management married university.degree no yes no
## 15647 32 technician married professional.course no no no
## 15658 28 technician married basic.9y no yes no
## 15660 48 services divorced high.school no no yes
## 15667 29 blue-collar married basic.9y no yes no
## 15670 30 management single university.degree no yes no
## 15674 30 technician single university.degree no yes yes
## 15676 27 blue-collar single basic.9y no no no
## 15683 47 technician single professional.course unknown no no
## 15690 37 blue-collar single basic.6y unknown no no
## 15691 36 services divorced high.school no yes no
## 15693 41 blue-collar single university.degree no no no
## 15694 46 blue-collar single basic.6y unknown yes no
## 15699 34 admin. married high.school no yes yes
## 15704 28 blue-collar married basic.9y no yes no
## 15709 41 admin. married university.degree no no yes
## 15715 43 admin. married high.school no yes no
## 15719 38 management married high.school no yes no
## 15720 38 blue-collar single basic.9y no no yes
## 15734 31 blue-collar married basic.9y no no no
## 15742 32 services married high.school unknown no no
## 15751 34 blue-collar married basic.6y no yes yes
## 15760 44 blue-collar married basic.9y unknown yes no
## 15769 39 technician single professional.course no no no
## 15780 37 admin. single high.school no no no
## 15783 39 admin. married university.degree no no no
## 15789 43 admin. married high.school no no no
## 15790 55 admin. married university.degree no no no
## 15791 43 blue-collar married high.school unknown yes no
## 15792 28 technician married basic.9y no yes no
## 15796 29 admin. single university.degree no yes no
## 15797 43 services married high.school no yes yes
## 15810 47 housemaid divorced basic.4y unknown no no
## 15811 32 services married basic.4y unknown no no
## 15819 31 blue-collar single basic.4y unknown yes no
## 15821 52 blue-collar divorced basic.9y unknown yes yes
## 15840 27 admin. single high.school no yes no
## 15850 27 technician single high.school no yes no
## 15855 22 services married high.school unknown yes no
## 15869 56 blue-collar married unknown unknown no no
## 15876 39 technician single professional.course no no no
## 15894 26 services single high.school no yes no
## 15895 27 admin. single high.school unknown no no
## 15898 31 services divorced high.school no yes no
## 15901 25 entrepreneur single professional.course no yes no
## 15906 30 services married high.school no yes yes
## 15913 28 technician single professional.course no yes no
## 15928 32 admin. married high.school no yes no
## 15937 30 blue-collar single basic.9y no yes yes
## 15938 49 admin. married university.degree unknown no no
## 15943 25 admin. single basic.9y no no no
## 15947 26 admin. single unknown no no yes
## 15952 39 management married university.degree unknown yes no
## 15959 27 admin. single university.degree no no no
## 15962 32 services married basic.4y unknown no no
## 15968 32 blue-collar married basic.4y unknown yes yes
## 15976 33 blue-collar married basic.6y unknown no yes
## 15981 36 blue-collar single basic.9y unknown yes no
## 15982 45 blue-collar married basic.4y unknown yes no
## 15984 24 admin. single high.school no yes no
## 15987 31 blue-collar single high.school no no no
## 15988 41 admin. divorced high.school no no no
## 15990 37 management married unknown no yes no
## 15992 53 retired divorced basic.4y unknown no yes
## 15994 42 admin. single university.degree no no no
## 15997 44 blue-collar married professional.course unknown no no
## 15998 44 blue-collar married professional.course unknown no no
## 16000 48 technician single high.school no no yes
## 16001 30 services single high.school unknown yes no
## 16002 54 retired divorced university.degree no yes no
## 16007 28 technician married professional.course no no no
## 16020 29 technician married professional.course no yes yes
## 16027 24 blue-collar married professional.course no no no
## 16028 40 management married university.degree no no no
## 16029 33 services married high.school no yes no
## 16034 31 admin. single university.degree no yes no
## 16045 46 housemaid divorced basic.4y unknown yes no
## 16046 33 services single high.school no yes no
## 16053 27 services single high.school no yes no
## 16058 44 technician married professional.course unknown yes no
## 16059 38 blue-collar married basic.4y unknown no no
## 16064 44 blue-collar married professional.course unknown no no
## 16067 45 services married high.school no no no
## 16073 35 services single high.school unknown yes no
## 16078 59 retired married basic.6y no yes no
## 16080 35 services single high.school unknown yes no
## 16082 35 services single high.school unknown yes yes
## 16104 30 admin. single university.degree no no yes
## 16107 41 blue-collar married basic.9y no yes no
## 16113 27 admin. single university.degree no yes yes
## 16115 35 blue-collar married unknown no yes no
## 16116 38 housemaid married basic.4y unknown no no
## 16121 30 admin. single high.school no no yes
## 16122 27 unemployed single university.degree no yes no
## 16123 27 unemployed single university.degree no no no
## 16126 32 blue-collar married basic.4y no no yes
## 16129 39 technician married professional.course no no no
## 16134 35 services divorced university.degree no no yes
## 16135 30 admin. single university.degree no no yes
## 16139 34 services single high.school no no no
## 16145 32 admin. married basic.9y no yes no
## 16149 58 retired married basic.4y no no no
## 16150 50 blue-collar married basic.4y no no yes
## 16169 48 entrepreneur single university.degree no yes no
## 16177 33 technician single professional.course no no no
## 16182 36 admin. single unknown no no no
## 16183 34 services single high.school no unknown unknown
## 16184 27 blue-collar single basic.6y no no no
## 16189 28 technician single high.school no yes no
## 16190 44 admin. married university.degree no yes no
## 16195 30 admin. single university.degree no yes no
## 16200 48 blue-collar married basic.4y no yes no
## 16203 45 services married high.school unknown no no
## 16208 46 unemployed married professional.course no no no
## 16214 39 blue-collar married basic.9y unknown no no
## 16216 35 blue-collar divorced basic.4y no no yes
## 16220 48 technician single professional.course unknown yes no
## 16221 41 blue-collar married basic.9y no yes no
## 16226 27 admin. single university.degree unknown no no
## 16227 27 admin. single university.degree unknown yes no
## 16229 28 technician single high.school no no no
## 16232 40 management married university.degree no yes no
## 16236 26 services married high.school no yes no
## 16239 30 admin. single university.degree no no yes
## 16245 51 housemaid married basic.9y no yes no
## 16251 31 blue-collar single high.school no no yes
## 16253 23 blue-collar single basic.9y no yes no
## 16262 48 housemaid divorced basic.4y no yes no
## 16268 27 admin. single university.degree unknown no yes
## 16269 32 blue-collar single basic.9y no yes no
## 16275 37 services single high.school no no yes
## 16279 27 admin. single university.degree no no no
## 16289 41 blue-collar married basic.9y no no no
## 16293 33 blue-collar married basic.6y no no yes
## 16299 24 blue-collar single unknown no no no
## 16301 20 services single high.school no no no
## 16302 24 blue-collar single unknown no no no
## 16303 38 blue-collar married basic.6y no yes no
## 16305 44 unknown married basic.6y no no no
## 16310 27 blue-collar single basic.6y no yes yes
## 16316 30 admin. single university.degree no yes no
## 16318 26 admin. single university.degree no yes no
## 16323 36 blue-collar married basic.6y no yes no
## 16324 55 admin. married university.degree no yes no
## 16325 53 admin. married university.degree unknown yes no
## 16333 20 student single high.school no yes yes
## 16337 35 housemaid married basic.4y no no yes
## 16338 31 blue-collar single high.school no no no
## 16342 50 entrepreneur married university.degree no no no
## 16344 29 blue-collar single basic.9y unknown yes no
## 16347 35 services married unknown unknown yes yes
## 16350 31 blue-collar married unknown unknown no no
## 16351 31 admin. single university.degree no unknown unknown
## 16352 30 management married university.degree no no no
## 16356 30 management married university.degree no yes no
## 16359 31 blue-collar married basic.6y no no no
## 16368 32 admin. married university.degree no no yes
## 16372 28 blue-collar single high.school no yes no
## 16373 32 blue-collar divorced basic.6y unknown yes no
## 16374 42 housemaid married basic.4y unknown no yes
## 16384 31 technician married basic.9y no no no
## 16385 59 blue-collar married basic.9y unknown yes no
## 16386 32 services single high.school no yes no
## 16388 58 entrepreneur married university.degree no no yes
## 16389 58 entrepreneur married university.degree no no no
## 16394 24 services single basic.9y no no no
## 16398 23 admin. single professional.course no no no
## 16408 56 blue-collar married basic.9y no yes no
## 16411 40 services married basic.4y unknown yes no
## 16412 30 technician married basic.9y no yes no
## 16416 31 blue-collar married basic.4y unknown yes no
## 16422 35 admin. married high.school no no no
## 16423 39 admin. married basic.6y unknown yes no
## 16430 31 blue-collar single high.school no yes no
## 16431 55 retired married basic.4y no no no
## 16446 25 admin. single university.degree no yes no
## 16451 34 services married high.school no no no
## 16456 44 management married university.degree no yes yes
## 16458 39 services married unknown unknown yes no
## 16460 31 blue-collar divorced basic.9y unknown yes no
## 16462 37 unemployed married professional.course unknown yes no
## 16480 33 blue-collar married basic.4y no yes yes
## 16481 32 blue-collar divorced basic.6y unknown yes no
## 16484 31 blue-collar married basic.4y unknown yes no
## 16494 24 blue-collar single basic.9y unknown yes no
## 16495 39 services married unknown unknown no no
## 16499 36 blue-collar single basic.6y no yes no
## 16505 25 blue-collar single basic.6y no no no
## 16506 32 technician married professional.course no no yes
## 16511 47 self-employed single unknown no yes no
## 16512 36 blue-collar married basic.9y no no no
## 16521 39 blue-collar single university.degree no no no
## 16532 50 admin. single university.degree no no no
## 16542 39 services married unknown unknown unknown unknown
## 16550 30 management married university.degree no unknown unknown
## 16559 27 services single high.school no yes yes
## 16561 30 blue-collar married basic.6y no no yes
## 16562 27 blue-collar single high.school no yes no
## 16563 36 self-employed single university.degree no yes no
## 16566 26 technician single professional.course no no no
## 16568 49 unknown married university.degree no yes no
## 16573 39 blue-collar married basic.6y unknown no no
## 16575 53 entrepreneur divorced university.degree no no no
## 16577 31 blue-collar married basic.9y no no no
## 16581 29 self-employed married professional.course unknown no no
## 16587 27 services single university.degree no no no
## 16595 31 blue-collar single basic.6y no no no
## 16597 24 technician married high.school unknown no no
## 16600 25 services married high.school no no no
## 16602 39 services married high.school unknown yes no
## 16604 30 management married university.degree no yes no
## 16611 23 admin. single professional.course no yes no
## 16614 27 services single university.degree no unknown unknown
## 16617 39 blue-collar single university.degree no no no
## 16623 39 blue-collar married unknown unknown yes no
## 16624 56 management divorced high.school no no yes
## 16625 31 blue-collar married high.school no no no
## 16629 30 management married university.degree no yes no
## 16635 33 admin. single university.degree no no no
## 16636 21 blue-collar married basic.9y no yes no
## 16640 29 technician single university.degree no no yes
## 16643 38 blue-collar married basic.6y no no no
## 16648 25 blue-collar married basic.9y no yes no
## 16671 28 admin. single university.degree no yes no
## 16674 50 management married university.degree no yes no
## 16675 38 blue-collar married basic.6y no no no
## 16679 39 technician married professional.course no unknown unknown
## 16682 26 blue-collar married basic.6y no no no
## 16702 50 admin. married university.degree unknown yes no
## 16706 43 admin. married university.degree no yes no
## 16718 27 blue-collar single basic.9y unknown yes yes
## 16724 24 admin. married university.degree no yes yes
## 16726 27 admin. married high.school no yes no
## 16729 40 admin. divorced university.degree no no no
## 16733 44 admin. married high.school no no no
## 16734 56 retired married basic.4y no no no
## 16739 47 technician divorced high.school no no no
## 16742 58 blue-collar married basic.4y no yes no
## 16744 41 blue-collar married high.school no yes yes
## 16747 41 entrepreneur single high.school no yes yes
## 16753 43 housemaid divorced basic.6y unknown no yes
## 16755 29 blue-collar single basic.6y no yes no
## 16758 47 technician divorced high.school no no no
## 16759 39 services divorced high.school no no yes
## 16761 26 admin. married high.school no no no
## 16762 50 management married professional.course no no no
## 16769 44 blue-collar married basic.4y no yes no
## 16770 41 technician single university.degree no no no
## 16772 51 technician married professional.course no yes yes
## 16777 41 technician single university.degree no yes yes
## 16780 27 blue-collar single basic.6y no no no
## 16782 55 entrepreneur married university.degree unknown no no
## 16784 49 blue-collar married basic.9y unknown no yes
## 16786 59 technician married university.degree unknown no yes
## 16788 54 blue-collar married basic.4y unknown yes yes
## 16789 25 blue-collar single basic.9y no yes yes
## 16795 43 entrepreneur married high.school no yes no
## 16798 31 blue-collar married basic.4y no yes no
## 16799 27 services single university.degree no no no
## 16801 50 technician married professional.course no no yes
## 16807 57 self-employed married university.degree no no no
## 16822 23 blue-collar single basic.9y no yes no
## 16831 47 technician divorced high.school no yes no
## 16836 57 self-employed married university.degree no no yes
## 16839 52 technician married professional.course no no no
## 16856 44 blue-collar married basic.9y unknown no no
## 16864 45 admin. married unknown unknown yes no
## 16872 51 housemaid married basic.4y no yes no
## 16876 24 services single high.school no yes no
## 16902 55 blue-collar married basic.6y unknown no no
## 16913 51 admin. married university.degree unknown no no
## 16915 27 services single high.school no no no
## 16916 45 admin. divorced high.school no no no
## 16918 48 admin. married high.school no yes no
## 16919 53 retired married basic.9y no yes yes
## 16920 29 admin. single university.degree no yes no
## 16922 35 blue-collar divorced basic.9y unknown yes no
## 16923 55 unknown married basic.4y no yes no
## 16935 34 admin. single unknown unknown yes no
## 16942 54 technician married basic.6y no yes no
## 16952 56 blue-collar married basic.4y no yes no
## 16954 54 unemployed married university.degree no yes no
## 16962 43 entrepreneur married high.school no no no
## 16963 33 technician single basic.9y no no no
## 16964 28 blue-collar married basic.4y no no no
## 16966 32 blue-collar married basic.9y no no no
## 16975 45 admin. married unknown unknown yes no
## 16977 27 services single high.school no no no
## 16982 59 retired single professional.course unknown yes no
## 16987 44 admin. married university.degree no yes yes
## 16991 49 management married high.school no no no
## 16993 50 management married university.degree no yes no
## 16995 48 blue-collar married unknown no no no
## 16997 50 management married university.degree unknown unknown unknown
## 16998 51 housemaid divorced high.school no yes no
## 16999 28 blue-collar married basic.4y no yes no
## 17001 43 blue-collar married basic.9y unknown yes no
## 17005 38 technician divorced university.degree no yes no
## 17013 57 unemployed married university.degree no yes no
## 17016 56 unemployed married unknown no no no
## 17017 35 services single basic.9y no yes no
## 17018 35 technician married professional.course no yes yes
## 17019 28 unemployed married university.degree no yes no
## 17021 54 retired single high.school no yes no
## 17022 47 technician divorced high.school no no yes
## 17047 45 technician divorced unknown unknown no no
## 17052 52 blue-collar married basic.4y unknown no yes
## 17060 56 technician divorced professional.course no yes no
## 17062 28 services single high.school no no no
## 17068 32 admin. single high.school no yes no
## 17072 42 admin. married university.degree no no no
## 17074 51 entrepreneur married basic.6y unknown no no
## 17077 46 admin. married professional.course no no no
## 17080 27 technician single high.school no no no
## 17086 42 blue-collar single basic.4y no yes yes
## 17094 44 admin. married unknown no no no
## 17097 28 blue-collar single basic.9y no no no
## 17098 39 admin. single high.school no yes no
## 17099 50 technician married university.degree no no yes
## 17104 32 blue-collar married professional.course no yes no
## 17105 44 blue-collar married unknown unknown no no
## 17112 52 admin. married high.school no no no
## 17113 44 blue-collar married basic.4y no yes no
## 17118 42 blue-collar single basic.4y no yes no
## 17129 27 admin. married university.degree no yes no
## 17130 27 admin. married university.degree no unknown unknown
## 17139 34 technician married university.degree no yes no
## 17140 42 technician single professional.course no yes no
## 17142 33 blue-collar married basic.9y no no no
## 17144 45 admin. married professional.course no no no
## 17154 60 retired married high.school unknown yes no
## 17162 49 admin. divorced high.school no yes no
## 17167 54 unemployed married high.school unknown no no
## 17169 50 technician married university.degree no no no
## 17170 57 retired single basic.4y no no no
## 17171 39 admin. married high.school no no no
## 17177 55 blue-collar married basic.9y no no no
## 17198 55 management married basic.9y no yes no
## 17200 42 admin. married high.school no yes no
## 17201 34 technician married university.degree no yes yes
## 17204 48 blue-collar married basic.4y unknown no no
## 17205 53 admin. married university.degree no no no
## 17212 54 unemployed married high.school unknown yes no
## 17218 55 retired married basic.4y unknown yes no
## 17219 55 retired married basic.4y unknown yes yes
## 17223 53 management married university.degree no yes no
## 17224 54 blue-collar married basic.9y no no no
## 17225 26 services married high.school no yes no
## 17226 60 management married university.degree no no no
## 17227 49 technician married professional.course unknown yes yes
## 17228 32 admin. single high.school no yes no
## 17242 47 admin. married university.degree no no no
## 17244 57 entrepreneur divorced high.school no unknown unknown
## 17255 58 services married high.school no yes no
## 17257 52 admin. divorced high.school no no no
## 17272 35 unemployed single basic.9y no no no
## 17276 31 services married high.school no no yes
## 17279 59 admin. married unknown unknown yes no
## 17289 42 self-employed married basic.4y unknown yes no
## 17291 42 admin. married university.degree no no yes
## 17293 44 blue-collar married basic.9y no no yes
## 17297 56 admin. married high.school unknown yes no
## 17298 57 admin. single unknown no no no
## 17308 51 admin. single university.degree no no no
## 17311 56 technician married basic.9y unknown no no
## 17314 39 admin. married university.degree no no no
## 17322 46 admin. married high.school unknown yes no
## 17323 43 admin. married high.school no yes yes
## 17330 36 admin. married university.degree no yes yes
## 17332 54 housemaid divorced university.degree unknown yes no
## 17335 42 entrepreneur single university.degree no no no
## 17341 44 technician divorced university.degree unknown yes yes
## 17350 56 admin. divorced basic.6y unknown no yes
## 17354 51 retired divorced professional.course no yes no
## 17356 40 blue-collar married basic.6y no yes no
## 17357 37 admin. married university.degree unknown yes no
## 17358 45 admin. married high.school unknown yes no
## 17362 49 admin. married high.school no yes no
## 17366 47 technician single professional.course no yes no
## 17369 38 technician married university.degree no yes no
## 17371 44 blue-collar single high.school unknown no no
## 17373 59 retired married university.degree no yes no
## 17386 45 services married professional.course no yes yes
## 17387 41 services married high.school no yes no
## 17408 46 management married university.degree no no no
## 17410 57 self-employed married university.degree unknown unknown unknown
## 17411 59 blue-collar married basic.6y unknown yes no
## 17412 47 housemaid married basic.4y unknown yes no
## 17414 39 blue-collar married high.school no yes no
## 17420 53 services married unknown unknown yes no
## 17421 57 self-employed married university.degree unknown yes no
## 17423 31 admin. single university.degree no no no
## 17424 47 housemaid married basic.4y unknown no no
## 17426 50 management divorced university.degree no no no
## 17427 58 admin. single unknown unknown no yes
## 17435 44 management married high.school unknown yes no
## 17439 42 self-employed married university.degree no no no
## 17440 43 services married basic.6y unknown no no
## 17441 44 management married high.school unknown no yes
## 17447 42 admin. married high.school no yes yes
## 17450 44 services divorced high.school no yes yes
## 17453 50 unknown married unknown unknown yes no
## 17457 40 admin. divorced high.school no no no
## 17459 36 blue-collar married basic.9y no no no
## 17461 51 services married high.school unknown yes no
## 17466 43 services married basic.6y unknown yes no
## 17470 45 admin. divorced basic.6y no no yes
## 17471 35 entrepreneur single university.degree no no no
## 17475 51 admin. divorced university.degree no no no
## 17478 59 admin. divorced high.school no yes no
## 17480 34 blue-collar single high.school no yes no
## 17489 47 self-employed married university.degree no no yes
## 17495 40 blue-collar married professional.course no no no
## 17505 43 services married basic.6y unknown yes yes
## 17511 36 services single high.school no no no
## 17512 40 unemployed married basic.9y unknown yes no
## 17515 40 blue-collar married professional.course no no no
## 17522 49 technician single university.degree unknown no no
## 17527 40 blue-collar married professional.course no no no
## 17528 46 housemaid married basic.4y unknown yes no
## 17534 55 self-employed married unknown unknown no no
## 17536 40 self-employed married unknown unknown yes no
## 17537 42 management divorced university.degree unknown yes no
## 17545 37 blue-collar married basic.9y no yes no
## 17550 43 blue-collar married basic.9y no yes no
## 17552 52 admin. divorced university.degree no yes no
## 17560 42 admin. single basic.9y unknown yes no
## 17563 43 housemaid married basic.4y no yes no
## 17564 53 management divorced high.school no no no
## 17569 42 technician divorced professional.course no yes yes
## 17570 41 admin. married high.school no no no
## 17585 50 self-employed divorced university.degree unknown yes no
## 17590 46 admin. married high.school no yes no
## 17592 38 student single unknown unknown no no
## 17595 56 blue-collar divorced unknown no no yes
## 17599 43 housemaid married basic.4y no no no
## 17610 30 admin. married unknown no no no
## 17611 30 admin. married unknown no no no
## 17614 36 housemaid married basic.4y no no no
## 17618 47 blue-collar divorced basic.9y no yes yes
## 17627 52 entrepreneur married basic.9y no yes no
## 17628 36 technician married professional.course no no no
## 17633 58 technician divorced unknown unknown yes no
## 17636 51 entrepreneur divorced university.degree no unknown unknown
## 17641 43 services married high.school no yes yes
## 17642 45 self-employed divorced university.degree no yes no
## 17645 48 admin. single university.degree no no no
## 17646 54 self-employed divorced high.school unknown no no
## 17650 56 blue-collar divorced basic.9y no yes yes
## 17651 54 housemaid divorced basic.4y no yes no
## 17658 44 technician divorced professional.course no no yes
## 17660 46 management married basic.9y unknown yes yes
## 17661 43 unemployed divorced basic.9y no yes no
## 17662 57 retired single unknown unknown yes yes
## 17664 26 admin. single university.degree no no no
## 17666 55 services divorced high.school no no no
## 17672 40 admin. divorced university.degree no no no
## 17687 55 entrepreneur divorced university.degree no no no
## 17689 53 technician married professional.course no no yes
## 17715 50 management divorced high.school no no no
## 17724 53 blue-collar divorced basic.4y no yes no
## 17725 54 management married university.degree no yes yes
## 17733 47 technician married basic.9y no unknown unknown
## 17737 57 admin. divorced high.school unknown yes no
## 17745 47 services divorced professional.course no yes no
## 17747 47 services divorced professional.course no no no
## 17749 45 housemaid married basic.4y no yes no
## 17752 50 technician married professional.course unknown yes no
## 17754 50 technician married professional.course unknown no yes
## 17765 42 admin. married basic.9y unknown no yes
## 17777 36 admin. married university.degree unknown no no
## 17779 41 admin. married high.school no yes no
## 17780 39 admin. single high.school no no no
## 17785 46 admin. married high.school no yes no
## 17788 57 admin. single university.degree no yes no
## 17789 60 technician married professional.course unknown no no
## 17793 50 technician single basic.4y unknown yes no
## 17799 53 blue-collar divorced basic.4y no no no
## 17802 53 blue-collar divorced basic.4y no no yes
## 17811 56 retired married university.degree unknown no no
## 17813 29 services divorced high.school unknown no no
## 17819 57 admin. married university.degree no yes yes
## 17825 59 retired divorced university.degree unknown no no
## 17827 44 technician divorced professional.course no yes no
## 17833 26 admin. single university.degree no no no
## 17840 47 technician single unknown no yes yes
## 17844 37 services married high.school no yes no
## 17847 51 blue-collar divorced basic.9y no yes no
## 17853 40 entrepreneur married high.school no no no
## 17854 35 admin. married high.school no no no
## 17855 54 admin. divorced high.school no no yes
## 17858 40 admin. divorced university.degree no yes no
## 17859 36 technician married professional.course no no no
## 17863 48 blue-collar married basic.6y no no yes
## 17867 47 blue-collar married high.school no yes no
## 17871 56 admin. divorced university.degree no yes no
## 17885 47 admin. single university.degree no no no
## 17886 58 admin. married high.school no yes no
## 17894 28 technician single university.degree unknown no no
## 17896 40 admin. single high.school no yes no
## 17898 37 admin. single high.school no yes no
## 17899 39 technician married university.degree no no no
## 17901 31 blue-collar single professional.course no no yes
## 17902 46 technician divorced professional.course unknown no no
## 17904 35 technician divorced professional.course no no no
## 17909 30 admin. married high.school no no no
## 17911 25 admin. single high.school no no no
## 17913 57 admin. divorced university.degree unknown yes no
## 17917 39 services married high.school no yes yes
## 17919 48 technician married professional.course no yes no
## 17928 38 services single high.school unknown yes no
## 17929 60 retired married basic.6y unknown yes no
## 17930 52 technician married basic.9y no no no
## 17933 37 admin. single high.school no yes no
## 17939 48 services married basic.6y unknown yes no
## 17946 55 housemaid married basic.4y unknown no no
## 17947 43 retired married basic.9y no yes no
## 17952 44 housemaid married university.degree unknown no yes
## 17960 58 retired divorced professional.course no no no
## 17961 25 admin. single high.school no no yes
## 17963 47 housemaid married basic.4y unknown yes yes
## 17965 45 admin. married university.degree no no no
## 17980 32 admin. married high.school no no no
## 17991 45 admin. married university.degree no no no
## 17992 56 technician married basic.4y unknown yes yes
## 17993 48 entrepreneur married basic.9y no yes no
## 17994 26 services single university.degree no yes no
## 17999 47 housemaid married basic.4y unknown no no
## 18000 31 housemaid single high.school no yes no
## 18007 26 services single high.school no yes no
## 18011 45 technician married professional.course no no no
## 18028 50 services divorced basic.6y no no yes
## 18030 33 technician married university.degree no yes yes
## 18033 38 technician married university.degree no yes yes
## 18034 38 admin. single university.degree no yes no
## 18042 23 services married high.school no no no
## 18044 29 admin. single high.school no no no
## 18058 44 services divorced high.school no no no
## 18059 52 management married university.degree no no no
## 18060 28 self-employed married university.degree no yes no
## 18064 42 management married university.degree no yes yes
## 18071 30 admin. single high.school no yes no
## 18074 28 self-employed single university.degree no yes no
## 18077 43 admin. married high.school no yes yes
## 18079 28 technician single professional.course no no no
## 18080 34 admin. married university.degree unknown no no
## 18085 44 admin. married high.school no yes yes
## 18086 28 technician single professional.course no yes no
## 18096 37 blue-collar married basic.6y unknown yes no
## 18098 39 blue-collar married basic.9y unknown no no
## 18112 31 admin. married university.degree no yes no
## 18121 41 technician divorced professional.course no no no
## 18125 30 services married high.school unknown yes no
## 18129 25 services single basic.9y no yes no
## 18132 32 technician single professional.course no yes no
## 18133 40 management single high.school no no no
## 18137 25 services single basic.9y no no yes
## 18139 31 blue-collar single high.school no no yes
## 18142 51 technician married professional.course no yes no
## 18149 41 services divorced high.school no no yes
## 18151 33 blue-collar divorced basic.9y no yes no
## 18153 28 self-employed married university.degree no yes yes
## 18156 32 admin. married professional.course no yes no
## 18168 34 self-employed single university.degree no yes no
## 18175 34 self-employed single university.degree no no no
## 18178 37 admin. single high.school no no no
## 18181 39 admin. single basic.9y unknown no yes
## 18183 55 blue-collar married professional.course no yes no
## 18184 36 admin. married high.school no yes no
## 18187 40 self-employed married university.degree no yes no
## 18188 35 student single unknown unknown no no
## 18190 42 admin. single high.school unknown yes no
## 18191 39 technician single university.degree no no no
## 18194 56 services single high.school no no yes
## 18195 32 admin. married high.school no yes no
## 18199 30 unemployed single university.degree no yes yes
## 18200 33 admin. married university.degree no yes no
## 18201 44 admin. married university.degree no yes no
## 18205 41 management married university.degree no no no
## 18209 30 admin. single high.school no no yes
## 18211 34 technician married professional.course unknown yes no
## 18215 38 housemaid married high.school no yes no
## 18225 36 self-employed single university.degree no no no
## 18238 26 management single university.degree no no yes
## 18244 53 technician married professional.course unknown no no
## 18254 26 blue-collar married high.school no no no
## 18259 48 services married professional.course unknown yes yes
## 18265 33 unemployed married high.school unknown yes no
## 18272 44 admin. divorced high.school no yes yes
## 18279 35 blue-collar married basic.9y no no no
## 18283 38 admin. married unknown no no yes
## 18297 33 unemployed married high.school unknown yes yes
## 18301 37 blue-collar married basic.9y no yes yes
## 18303 32 admin. married high.school no no no
## 18304 40 self-employed single university.degree no yes yes
## 18313 27 self-employed married university.degree no no no
## 18326 36 technician married professional.course no no no
## 18328 43 services married high.school unknown no yes
## 18334 40 admin. married basic.9y no yes no
## 18335 55 technician married professional.course no yes yes
## 18337 49 technician married basic.9y unknown yes no
## 18340 56 entrepreneur married basic.4y unknown yes no
## 18354 30 admin. single high.school no no no
## 18361 58 blue-collar divorced basic.4y unknown no no
## 18363 46 technician divorced professional.course no yes no
## 18368 37 admin. married university.degree no no yes
## 18370 37 services divorced high.school no no no
## 18374 35 technician married professional.course no unknown unknown
## 18376 36 blue-collar single high.school no yes no
## 18378 29 admin. single high.school no no yes
## 18382 36 blue-collar married basic.6y unknown yes no
## 18386 32 admin. single university.degree no no yes
## 18388 32 admin. divorced high.school no unknown unknown
## 18389 34 technician married university.degree no no no
## 18391 48 services married professional.course unknown yes no
## 18395 42 self-employed married university.degree no yes no
## 18403 27 admin. married high.school unknown no no
## 18409 29 admin. single university.degree no no no
## 18416 48 entrepreneur married university.degree no yes no
## 18420 29 admin. single university.degree no yes no
## 18428 43 blue-collar single basic.6y unknown no no
## 18448 50 technician married high.school no yes no
## 18454 33 services divorced high.school no no yes
## 18462 32 technician single professional.course no no no
## 18465 32 technician single professional.course no yes no
## 18471 31 entrepreneur single university.degree unknown no yes
## 18474 53 technician married professional.course no yes no
## 18476 36 blue-collar married basic.6y unknown no no
## 18478 35 technician single professional.course no yes no
## 18479 43 admin. married unknown no yes no
## 18484 34 technician married university.degree no no yes
## 18494 42 management married basic.9y no yes no
## 18503 26 blue-collar married high.school no yes no
## 18505 36 blue-collar married basic.9y no yes no
## 18507 56 management married university.degree no yes no
## 18510 34 unemployed married high.school no unknown unknown
## 18522 44 technician married professional.course no no no
## 18523 44 technician married professional.course no yes no
## 18538 41 self-employed divorced university.degree no no yes
## 18545 28 technician married professional.course no no no
## 18554 38 services married high.school no no no
## 18560 39 management married high.school no no yes
## 18562 36 entrepreneur married university.degree unknown yes no
## 18565 32 services single high.school no no yes
## 18586 24 admin. single high.school no yes yes
## 18592 39 services single high.school no yes no
## 18595 35 self-employed married university.degree no yes no
## 18596 39 technician married high.school no no no
## 18610 59 services married high.school no yes no
## 18613 45 management married university.degree no yes no
## 18618 28 blue-collar married basic.4y unknown no no
## 18623 25 admin. single basic.9y no no no
## 18624 30 unemployed married high.school no yes no
## 18632 54 blue-collar married basic.9y no yes no
## 18638 30 services single high.school no no no
## 18639 36 admin. single university.degree no yes no
## 18640 29 management married university.degree no yes no
## 18656 44 blue-collar divorced professional.course no no no
## 18661 48 technician married professional.course no yes no
## 18668 41 housemaid married basic.4y unknown no no
## 18674 34 technician married professional.course no yes no
## 18694 34 technician divorced unknown no yes no
## 18697 55 retired married basic.9y unknown yes no
## 18699 30 admin. single professional.course no yes yes
## 18700 36 technician single professional.course no no no
## 18703 36 unemployed single unknown unknown no no
## 18709 36 admin. single university.degree no yes no
## 18712 38 admin. married basic.6y no no no
## 18717 49 technician married unknown unknown yes no
## 18718 40 services married basic.9y no no no
## 18727 32 technician married university.degree no yes no
## 18728 41 housemaid married basic.4y unknown yes no
## 18734 43 services married basic.6y no no yes
## 18751 31 services single high.school no no yes
## 18752 45 blue-collar married basic.6y no no yes
## 18754 59 technician married high.school unknown no no
## 18758 28 technician single professional.course no no no
## 18761 32 technician married university.degree no yes no
## 18765 30 services single high.school no yes no
## 18767 36 admin. single university.degree no yes no
## 18768 36 admin. married high.school no no yes
## 18772 32 technician married university.degree no yes yes
## 18776 27 admin. single high.school no yes no
## 18783 39 blue-collar single basic.4y unknown yes no
## 18788 36 services married high.school no yes yes
## 18811 33 admin. single professional.course no yes no
## 18817 27 admin. single high.school no no no
## 18831 45 management divorced high.school no yes no
## 18838 41 technician married university.degree no yes no
## 18853 56 admin. married basic.6y no yes no
## 18866 56 retired married university.degree no yes no
## 18874 60 retired married university.degree unknown no no
## 18875 60 retired married university.degree unknown yes no
## 18877 35 technician divorced university.degree no yes yes
## 18881 33 admin. divorced university.degree no no yes
## 18882 35 management married university.degree unknown yes no
## 18883 38 technician married professional.course no no no
## 18904 50 admin. married high.school no no no
## 18906 46 blue-collar married basic.9y no no no
## 18908 47 technician married professional.course no yes no
## 18911 34 admin. single university.degree no yes no
## 18925 41 unknown married unknown no yes yes
## 18931 57 admin. married high.school no yes no
## 18934 39 housemaid married basic.4y no no yes
## 18941 34 admin. single university.degree no yes no
## 18946 44 blue-collar married basic.9y no no no
## 18948 50 blue-collar married basic.9y unknown yes no
## 18958 45 technician divorced high.school no yes yes
## 18962 47 services married high.school no yes no
## 18963 37 management married university.degree unknown no no
## 18964 45 technician married high.school no yes no
## 18968 60 retired married university.degree unknown yes no
## 18971 59 retired married high.school no yes no
## 18973 34 admin. single university.degree no no yes
## 18977 48 housemaid married basic.4y unknown yes no
## 18980 41 technician married university.degree no yes no
## 18984 48 housemaid married basic.4y unknown yes no
## 18986 45 unemployed married university.degree no yes no
## 18992 45 services married high.school unknown yes no
## 19001 47 entrepreneur married university.degree no no no
## 19002 47 entrepreneur married university.degree no yes no
## 19006 43 admin. single university.degree no yes no
## 19010 58 admin. married high.school no yes yes
## 19015 52 technician divorced university.degree no no yes
## 19022 53 blue-collar married basic.9y no yes no
## 19026 41 technician married professional.course no no no
## 19028 45 housemaid married basic.4y unknown yes no
## 19030 45 housemaid married basic.4y unknown no no
## 19031 35 admin. single university.degree no yes no
## 19040 39 technician divorced professional.course no yes no
## 19046 39 admin. married university.degree no yes yes
## 19051 34 admin. married university.degree unknown yes no
## 19056 41 technician single professional.course no no no
## 19057 40 technician married professional.course no yes no
## 19065 53 technician married professional.course no yes no
## 19070 34 admin. single university.degree no yes no
## 19077 30 technician married professional.course no yes no
## 19083 33 admin. married university.degree no yes yes
## 19090 35 unknown married basic.9y no yes no
## 19094 56 admin. married high.school unknown yes no
## 19098 44 blue-collar married basic.4y no yes no
## 19102 33 technician married university.degree no yes no
## 19106 52 services divorced basic.6y no yes no
## 19108 50 blue-collar married basic.4y unknown yes no
## 19109 31 technician single professional.course no yes no
## 19111 43 technician single professional.course no no no
## 19115 49 services married high.school no yes no
## 19119 38 admin. divorced university.degree no yes no
## 19123 41 technician married university.degree no yes no
## 19125 33 unknown married unknown unknown yes no
## 19128 37 management married university.degree no no no
## 19141 57 housemaid married unknown no no no
## 19143 52 admin. married high.school no no no
## 19146 36 self-employed married basic.9y no no no
## 19148 49 services married high.school no no no
## 19150 49 services married high.school no yes no
## 19158 45 technician married professional.course unknown yes yes
## 19159 35 admin. married university.degree no yes no
## 19161 38 technician married high.school no no no
## 19163 35 technician married high.school no no no
## 19170 32 admin. single university.degree no yes no
## 19174 35 admin. single university.degree no no no
## 19178 51 admin. married university.degree unknown yes no
## 19179 50 admin. married university.degree no yes no
## 19181 51 admin. married high.school no no no
## 19185 59 blue-collar married basic.9y no yes no
## 19195 53 admin. married university.degree no no no
## 19197 46 blue-collar married basic.4y unknown yes no
## 19205 58 retired married university.degree unknown yes yes
## 19209 46 blue-collar married basic.9y no yes no
## 19210 37 management married university.degree no no no
## 19227 32 admin. single university.degree no no no
## 19233 45 blue-collar married basic.6y unknown yes no
## 19237 49 housemaid married basic.4y unknown yes no
## 19238 42 admin. divorced university.degree no yes no
## 19245 32 technician single professional.course no yes no
## 19248 31 technician single high.school no yes yes
## 19253 33 admin. single university.degree no no no
## 19262 52 technician married professional.course unknown no no
## 19267 55 admin. married university.degree unknown no no
## 19269 50 admin. divorced high.school unknown no no
## 19270 50 admin. divorced high.school unknown no yes
## 19284 47 blue-collar married basic.6y unknown no no
## 19286 31 admin. single university.degree no no yes
## 19299 38 admin. single high.school no yes no
## 19304 46 blue-collar married basic.9y no yes no
## 19311 35 technician married professional.course no no no
## 19314 39 admin. single university.degree no yes no
## 19320 55 retired married basic.4y unknown yes yes
## 19321 59 housemaid married basic.4y unknown yes no
## 19322 46 blue-collar divorced professional.course no yes no
## 19324 46 blue-collar married basic.9y no no no
## 19329 33 technician single professional.course no yes no
## 19331 47 blue-collar married basic.9y no yes no
## 19334 52 technician divorced university.degree no yes yes
## 19336 51 admin. married high.school no no no
## 19337 31 technician single university.degree no no no
## 19343 56 blue-collar married basic.4y no no no
## 19351 41 admin. divorced high.school no no no
## 19353 44 blue-collar married basic.4y no no no
## 19354 45 retired married basic.9y no yes no
## 19365 31 admin. single university.degree no yes no
## 19366 56 retired married basic.4y no yes no
## 19370 31 technician married university.degree no yes no
## 19373 37 admin. married university.degree no no no
## 19376 36 self-employed married basic.4y unknown yes no
## 19377 50 admin. married university.degree no no no
## 19388 47 management married university.degree no yes no
## 19392 36 technician single professional.course no no no
## 19399 37 management married university.degree no yes no
## 19403 35 admin. married university.degree no yes no
## 19404 46 management married high.school no no no
## 19407 32 technician single university.degree no yes no
## 19408 30 admin. married university.degree no yes no
## 19410 57 blue-collar married basic.6y no no no
## 19417 42 technician married professional.course no yes no
## 19419 45 blue-collar married basic.9y no no no
## 19422 37 admin. married university.degree no no no
## 19424 33 admin. single university.degree no yes no
## 19425 29 technician single university.degree no yes yes
## 19426 41 technician married high.school no yes yes
## 19433 30 self-employed single university.degree no yes yes
## 19438 52 blue-collar married basic.4y unknown yes yes
## 19440 43 admin. single university.degree no no yes
## 19447 48 technician married high.school no no no
## 19454 47 technician married professional.course no yes no
## 19464 30 technician single university.degree unknown yes no
## 19471 39 technician single university.degree no no no
## 19474 38 admin. married university.degree no no no
## 19476 48 admin. married high.school no no no
## 19486 39 technician married professional.course no yes no
## 19494 48 blue-collar married basic.4y unknown no yes
## 19499 35 technician single university.degree no yes no
## 19501 31 self-employed married basic.4y unknown yes no
## 19502 35 technician single university.degree no yes yes
## 19506 52 blue-collar married basic.9y no yes no
## 19508 32 technician married university.degree no yes no
## 19511 35 technician married professional.course no no no
## 19516 45 blue-collar married professional.course no no no
## 19536 31 admin. single university.degree unknown no yes
## 19538 35 technician single university.degree no no no
## 19549 39 admin. single high.school no no no
## 19554 56 admin. married basic.6y unknown no no
## 19558 53 blue-collar married basic.9y unknown yes yes
## 19565 29 admin. single high.school no yes no
## 19569 30 technician single university.degree unknown yes no
## 19573 36 admin. married university.degree unknown no no
## 19574 48 blue-collar married basic.9y unknown no no
## 19575 45 self-employed married basic.4y no no no
## 19581 50 admin. married university.degree no no no
## 19593 45 self-employed married basic.4y no yes yes
## 19598 39 admin. married university.degree no yes no
## 19613 39 admin. married university.degree no no no
## 19614 56 technician married professional.course unknown no yes
## 19623 45 self-employed married basic.4y no no no
## 19642 56 blue-collar married basic.4y unknown no no
## 19643 48 blue-collar married basic.4y unknown yes no
## 19648 52 technician divorced high.school no yes no
## 19650 36 admin. single university.degree no yes no
## 19653 53 blue-collar married basic.4y unknown yes no
## 19655 37 housemaid married high.school unknown no no
## 19656 37 housemaid married high.school unknown yes no
## 19679 48 blue-collar married unknown unknown unknown unknown
## 19682 55 retired married professional.course no yes no
## 19688 42 admin. married university.degree unknown yes no
## 19695 39 admin. married university.degree no yes no
## 19696 40 admin. single university.degree no yes no
## 19700 45 blue-collar married basic.9y no yes no
## 19701 49 technician married professional.course unknown yes no
## 19703 34 admin. single university.degree no no no
## 19711 44 self-employed married university.degree no no no
## 19714 38 housemaid married basic.6y no yes no
## 19723 31 technician married university.degree no yes yes
## 19738 34 admin. married university.degree no yes no
## 19739 39 management married high.school no no no
## 19740 47 technician married high.school unknown yes no
## 19747 42 admin. married university.degree no yes no
## 19755 31 admin. married university.degree no no yes
## 19756 37 technician married professional.course no no no
## 19760 38 technician divorced professional.course no yes no
## 19778 52 blue-collar married high.school no no no
## 19785 30 admin. single university.degree no no no
## 19787 47 services married high.school no yes no
## 19788 34 admin. married university.degree no yes no
## 19807 51 services married high.school no yes no
## 19809 48 technician married university.degree unknown no no
## 19811 45 blue-collar married basic.4y unknown yes no
## 19816 36 admin. married professional.course no no no
## 19824 44 admin. single university.degree no no no
## 19827 57 technician married high.school unknown no no
## 19833 34 admin. married university.degree no yes no
## 19841 42 admin. single university.degree no no no
## 19850 47 entrepreneur married high.school no unknown unknown
## 19854 29 admin. single university.degree unknown no no
## 19861 52 blue-collar married basic.4y no no no
## 19865 29 technician married professional.course no yes no
## 19872 39 management married university.degree no no no
## 19875 47 admin. married basic.9y no yes no
## 19879 36 technician married university.degree no yes no
## 19883 33 admin. married university.degree no yes no
## 19892 52 admin. divorced university.degree unknown yes no
## 19898 29 admin. single university.degree unknown yes no
## 19900 45 admin. married high.school unknown unknown unknown
## 19907 47 admin. married high.school unknown no no
## 19908 33 technician single professional.course no yes yes
## 19909 36 technician single high.school no yes no
## 19911 36 admin. married university.degree no yes no
## 19913 30 technician single professional.course no yes no
## 19919 35 admin. single university.degree no no yes
## 19925 47 blue-collar married unknown unknown yes no
## 19935 38 technician single professional.course no yes no
## 19940 33 technician married professional.course no no no
## 19946 52 services married professional.course no no yes
## 19949 35 admin. married university.degree no yes no
## 19958 41 technician divorced university.degree no yes no
## 19963 31 admin. single university.degree no yes no
## 19965 49 housemaid married basic.4y no yes no
## 19966 58 admin. married high.school no no no
## 19969 52 blue-collar married basic.6y unknown no no
## 19976 58 self-employed married university.degree no yes no
## 19979 50 blue-collar married basic.6y no yes no
## 19995 50 blue-collar married basic.9y no yes no
## 19996 44 technician married high.school no yes yes
## 20004 46 blue-collar married basic.4y no no no
## 20009 33 admin. divorced high.school no yes no
## 20011 32 technician single university.degree no yes no
## 20023 37 technician married professional.course unknown yes no
## 20026 44 admin. married high.school unknown no no
## 20029 36 technician married high.school no no no
## 20030 34 entrepreneur married university.degree unknown yes no
## 20042 36 admin. married university.degree no yes no
## 20047 31 management single university.degree no no no
## 20055 33 technician married professional.course no yes yes
## 20057 31 technician married professional.course no yes yes
## 20061 50 admin. married high.school no no no
## 20063 29 technician single professional.course no yes no
## 20070 47 retired married basic.9y unknown no yes
## 20079 37 housemaid married university.degree unknown no yes
## 20087 43 management divorced university.degree no yes no
## 20092 44 admin. married high.school no yes no
## 20095 49 services married high.school no no no
## 20102 41 self-employed married professional.course no yes no
## 20113 55 services married high.school unknown no no
## 20116 35 admin. single university.degree no no no
## 20117 31 admin. married university.degree unknown no no
## 20120 39 technician married university.degree no yes no
## 20124 36 housemaid married basic.6y no no no
## 20134 32 admin. married university.degree no yes yes
## 20137 38 technician divorced high.school no no no
## 20140 36 admin. married university.degree no yes no
## 20153 39 technician divorced professional.course no yes no
## 20167 35 technician married professional.course no yes yes
## 20168 37 technician single professional.course no yes no
## 20170 37 technician single professional.course no yes yes
## 20176 29 technician married university.degree unknown yes no
## 20186 44 management married university.degree no yes no
## 20189 37 technician married professional.course no no no
## 20190 52 services married high.school unknown no no
## 20191 41 self-employed married university.degree no no no
## 20195 50 technician married professional.course unknown yes no
## 20196 31 management single university.degree no no no
## 20197 32 technician married university.degree no no yes
## 20202 45 admin. married university.degree no yes no
## 20210 35 technician married professional.course no no no
## 20222 34 technician single professional.course no no no
## 20227 45 blue-collar married high.school no yes no
## 20239 34 admin. married university.degree no no no
## 20246 49 management married university.degree no no no
## 20250 36 admin. married university.degree no yes yes
## 20254 55 admin. married professional.course no no no
## 20259 30 technician single university.degree no yes no
## 20263 34 admin. single university.degree unknown yes yes
## 20265 47 admin. single university.degree no no no
## 20270 48 admin. married high.school no no yes
## 20283 30 admin. single university.degree no yes no
## 20300 29 technician married high.school no no no
## 20303 29 admin. married university.degree no yes no
## 20315 33 housemaid married high.school no yes no
## 20318 32 admin. married university.degree no no no
## 20322 36 admin. single university.degree unknown yes no
## 20323 35 technician single university.degree no yes no
## 20333 48 technician married university.degree no yes yes
## 20339 43 admin. married university.degree unknown no no
## 20341 34 admin. single university.degree no no no
## 20350 50 blue-collar married professional.course unknown no no
## 20358 52 housemaid married basic.6y no yes no
## 20362 31 housemaid single university.degree no yes no
## 20367 47 blue-collar married basic.9y no no no
## 20369 31 technician single high.school no yes yes
## 20370 39 management married university.degree no unknown unknown
## 20371 31 admin. married university.degree no no no
## 20372 52 housemaid married basic.6y no yes no
## 20377 37 technician single university.degree no yes no
## 20388 38 technician married high.school no unknown unknown
## 20391 46 services married university.degree no no no
## 20394 30 admin. single university.degree no no no
## 20396 32 technician married university.degree no yes no
## 20405 35 services married high.school no no no
## 20413 40 admin. married university.degree no yes yes
## 20421 49 blue-collar married basic.6y no yes no
## 20429 31 unemployed single university.degree no yes no
## 20432 31 technician married high.school no no no
## 20445 32 admin. divorced university.degree no yes no
## 20453 36 technician single professional.course no unknown unknown
## 20463 38 admin. married university.degree no yes no
## 20482 48 admin. married basic.9y no yes no
## 20489 38 technician single high.school unknown no no
## 20490 49 management married university.degree no no yes
## 20513 35 technician married high.school unknown no yes
## 20514 35 management married university.degree no unknown unknown
## 20518 42 technician single university.degree no yes no
## 20526 50 admin. married university.degree no yes no
## 20541 58 housemaid married basic.4y no no no
## 20550 32 technician single university.degree no no no
## 20552 32 admin. single university.degree no no no
## 20563 46 admin. married high.school no yes no
## 20566 39 admin. divorced university.degree no yes no
## 20567 52 services married basic.4y no yes no
## 20570 33 technician married university.degree no yes no
## 20573 45 management married university.degree no yes no
## 20576 38 technician married professional.course no yes no
## 20577 44 management married basic.9y no yes no
## 20585 31 admin. single university.degree no yes no
## 20589 34 admin. single university.degree no no no
## 20601 32 technician single university.degree no yes no
## 20602 35 management married university.degree no yes yes
## 20611 30 technician married high.school no no no
## 20616 41 housemaid married basic.6y unknown no no
## 20626 31 technician single high.school no no no
## 20629 38 management married university.degree no no no
## 20630 32 admin. single university.degree no no no
## 20632 33 technician married high.school no no no
## 20635 31 services single university.degree unknown yes no
## 20649 34 admin. divorced university.degree no no no
## 20658 55 entrepreneur divorced high.school unknown no no
## 20661 40 technician married professional.course unknown yes yes
## 20690 55 technician married university.degree unknown no no
## 20696 31 technician married professional.course no yes no
## 20697 34 admin. single university.degree no yes no
## 20699 34 admin. single university.degree no yes no
## 20701 45 blue-collar married basic.9y no no no
## 20707 39 admin. divorced university.degree no yes no
## 20717 34 technician single university.degree no no no
## 20727 33 admin. single university.degree no yes no
## 20728 32 management married university.degree no yes no
## 20731 54 services married basic.4y no yes yes
## 20733 32 admin. single university.degree unknown yes no
## 20736 34 admin. divorced university.degree no yes no
## 20738 31 technician married professional.course no no no
## 20743 46 admin. married high.school no no yes
## 20746 57 blue-collar married basic.9y unknown no no
## 20756 44 blue-collar married basic.6y no no no
## 20758 52 admin. divorced university.degree no no no
## 20766 44 blue-collar married basic.6y no no no
## 20773 34 entrepreneur married professional.course no no no
## 20774 54 management married university.degree no no yes
## 20775 48 admin. married university.degree unknown yes yes
## 20784 39 management married university.degree no yes no
## 20785 33 technician married professional.course unknown yes no
## 20788 29 blue-collar single university.degree no yes no
## 20790 29 admin. single high.school no yes no
## 20799 54 technician married university.degree no yes no
## 20819 55 technician divorced professional.course no yes no
## 20821 34 admin. single university.degree no yes no
## 20824 59 blue-collar married basic.4y unknown no no
## 20828 42 technician single university.degree no yes yes
## 20837 32 technician single university.degree no no yes
## 20856 31 technician married professional.course no yes no
## 20857 57 technician married university.degree no no no
## 20869 41 admin. married university.degree no yes no
## 20875 55 self-employed married basic.4y unknown unknown unknown
## 20876 54 services married high.school no yes no
## 20883 31 admin. single university.degree unknown no yes
## 20886 34 admin. married university.degree no no no
## 20897 41 housemaid married basic.4y unknown yes no
## 20914 40 self-employed married university.degree no yes no
## 20916 33 admin. single university.degree no yes no
## 20920 34 technician single university.degree no yes no
## 20924 54 blue-collar married university.degree unknown yes no
## 20926 32 admin. single university.degree no no no
## 20929 42 technician single university.degree no yes no
## 20934 41 technician single university.degree no yes no
## 20937 29 admin. single high.school no no no
## 20946 40 admin. married university.degree no yes no
## 20952 47 admin. married university.degree no no no
## 20960 35 entrepreneur married university.degree no yes no
## 20965 36 management married university.degree no no no
## 20966 41 admin. divorced university.degree unknown no no
## 20975 45 blue-collar married basic.6y unknown yes no
## 20983 40 admin. married university.degree unknown yes no
## 20986 59 retired married basic.4y no yes yes
## 20987 39 admin. divorced university.degree no yes yes
## 20992 44 blue-collar married basic.6y unknown no no
## 20994 58 technician married high.school no yes yes
## 20996 54 services married high.school no yes no
## 21000 56 blue-collar married basic.4y no yes no
## 21004 31 housemaid married university.degree no yes yes
## 21009 39 management married university.degree no yes no
## 21010 59 technician single university.degree unknown yes no
## 21016 32 technician single university.degree no yes no
## 21018 35 management married high.school no yes no
## 21032 45 blue-collar married basic.6y no yes yes
## 21034 42 self-employed married basic.4y unknown yes no
## 21036 47 admin. married university.degree no unknown unknown
## 21037 35 technician single professional.course no yes yes
## 21046 51 blue-collar married basic.9y unknown no no
## 21047 31 technician single high.school no yes no
## 21053 34 technician single university.degree no yes no
## 21055 59 retired married university.degree unknown no no
## 21058 41 admin. divorced university.degree unknown no no
## 21062 31 admin. single high.school no yes yes
## 21066 29 technician single university.degree no yes no
## 21070 31 technician married high.school no no no
## 21073 47 blue-collar married unknown unknown no yes
## 21074 43 housemaid divorced professional.course no no yes
## 21078 54 technician married professional.course no yes yes
## 21081 54 self-employed married high.school no yes no
## 21086 32 admin. single university.degree no no no
## 21092 36 technician married professional.course no yes no
## 21093 54 blue-collar married basic.4y no yes no
## 21096 35 technician married university.degree no unknown unknown
## 21100 38 technician divorced university.degree unknown no no
## 21101 30 admin. married university.degree no yes no
## 21102 33 unemployed divorced professional.course no no no
## 21103 35 admin. single university.degree no yes no
## 21104 50 technician married university.degree no unknown unknown
## 21106 45 services married basic.6y no yes no
## 21110 34 admin. single university.degree no no no
## 21111 32 technician married professional.course no yes no
## 21112 33 admin. married university.degree no unknown unknown
## 21115 41 technician married professional.course no yes no
## 21121 33 unemployed divorced professional.course no no no
## 21123 30 technician single university.degree unknown no no
## 21125 56 retired married basic.6y no no no
## 21126 30 admin. married university.degree unknown yes no
## 21131 59 admin. married university.degree unknown yes no
## 21132 49 admin. married basic.9y no yes no
## 21133 36 self-employed married basic.6y unknown no no
## 21142 31 technician single university.degree no no no
## 21151 50 admin. married university.degree no no no
## 21152 30 admin. married university.degree no no no
## 21170 31 technician single university.degree no yes no
## 21177 37 technician married professional.course no yes no
## 21181 49 unemployed married high.school no yes no
## 21185 32 technician married high.school unknown no no
## 21189 36 admin. married university.degree unknown no no
## 21194 50 admin. married university.degree no yes no
## 21197 37 technician married university.degree no no no
## 21198 35 technician married professional.course no yes no
## 21199 35 technician married professional.course no yes no
## 21202 33 technician single high.school no no no
## 21205 38 technician divorced university.degree unknown yes no
## 21214 44 admin. divorced university.degree no yes no
## 21216 34 admin. married university.degree no yes no
## 21221 45 technician married professional.course no yes no
## 21223 38 admin. married university.degree no no no
## 21225 52 housemaid married basic.4y unknown yes no
## 21229 36 admin. divorced university.degree unknown yes no
## 21233 32 management married university.degree no no no
## 21242 33 admin. married university.degree no yes no
## 21243 33 unemployed divorced professional.course no yes no
## 21246 30 admin. married university.degree unknown yes no
## 21248 50 blue-collar married basic.9y no yes yes
## 21249 44 blue-collar married basic.4y no yes no
## 21250 38 technician divorced university.degree unknown no no
## 21274 38 technician married university.degree no no no
## 21279 31 admin. single high.school no no no
## 21282 53 retired divorced professional.course no no no
## 21284 42 technician married professional.course no yes yes
## 21285 55 technician married professional.course no yes yes
## 21299 41 technician married professional.course no yes no
## 21301 53 retired divorced professional.course no unknown unknown
## 21308 47 admin. married university.degree no no no
## 21311 29 technician single high.school no yes no
## 21316 42 management married university.degree no yes no
## 21320 30 admin. single university.degree no no no
## 21345 45 admin. married university.degree no yes no
## 21346 30 admin. single university.degree no yes no
## 21354 35 admin. single university.degree no no no
## 21362 31 technician married university.degree no yes no
## 21364 48 technician married professional.course unknown no no
## 21369 33 technician married university.degree unknown yes no
## 21372 32 technician single university.degree no no no
## 21382 31 admin. divorced university.degree no no no
## 21386 34 technician single professional.course no yes no
## 21387 52 services married high.school no yes no
## 21388 44 blue-collar married basic.6y no no no
## 21398 44 blue-collar married basic.6y no no yes
## 21405 49 unknown married high.school unknown yes no
## 21411 44 blue-collar married basic.9y unknown no no
## 21420 54 technician married professional.course unknown no no
## 21423 54 technician married professional.course unknown no no
## 21429 39 admin. single university.degree no yes no
## 21445 35 admin. married university.degree no yes no
## 21446 31 technician married professional.course no yes no
## 21449 41 admin. divorced university.degree no no no
## 21457 29 management single university.degree no no no
## 21469 33 technician single professional.course no yes no
## 21472 36 admin. single university.degree no no no
## 21474 31 technician single professional.course no yes no
## 21475 33 technician single professional.course no no yes
## 21482 30 admin. married university.degree no no no
## 21486 32 technician single high.school no no no
## 21487 49 blue-collar married basic.6y no yes no
## 21501 36 technician married university.degree no yes no
## 21512 33 technician married professional.course no yes no
## 21516 33 admin. single high.school no yes no
## 21517 59 admin. married basic.4y unknown yes no
## 21518 45 technician single university.degree unknown no no
## 21521 36 technician married university.degree no yes no
## 21524 37 technician married high.school no no no
## 21529 50 blue-collar married basic.4y no yes no
## 21533 44 blue-collar married basic.6y no yes yes
## 21541 36 admin. married university.degree unknown no no
## 21546 32 technician single high.school no yes no
## 21547 36 admin. married university.degree unknown yes no
## 21552 32 technician married university.degree no no no
## 21557 44 unknown married unknown unknown unknown unknown
## 21574 48 technician married high.school unknown no yes
## 21577 34 admin. married university.degree no no yes
## 21588 40 admin. married high.school no yes no
## 21591 40 admin. married high.school no yes no
## 21609 41 blue-collar divorced basic.9y no no no
## 21612 30 technician married high.school no yes no
## 21636 49 admin. married high.school no no no
## 21637 31 admin. married university.degree no no yes
## 21639 45 blue-collar married unknown no no no
## 21654 41 admin. divorced university.degree no no no
## 21655 34 technician single university.degree no yes no
## 21661 38 unemployed single university.degree no yes yes
## 21663 30 technician single professional.course no no no
## 21665 44 blue-collar married basic.4y no yes no
## 21675 31 services married university.degree no yes no
## 21679 43 technician married high.school no yes no
## 21684 38 admin. married university.degree unknown yes no
## 21687 34 admin. single university.degree unknown no yes
## 21688 33 technician single university.degree no no no
## 21689 30 technician single professional.course no yes no
## 21694 44 management married university.degree no yes no
## 21701 32 technician single high.school no yes no
## 21702 52 unemployed married basic.4y no no no
## 21712 46 blue-collar married basic.6y unknown yes no
## 21716 31 technician single university.degree no yes no
## 21718 33 admin. single university.degree no yes yes
## 21719 37 services married high.school no no no
## 21721 29 technician single university.degree unknown no yes
## 21726 56 blue-collar married basic.4y unknown yes no
## 21728 41 technician single professional.course unknown yes no
## 21735 52 admin. divorced unknown no no no
## 21752 45 blue-collar married basic.6y unknown yes no
## 21768 48 blue-collar married basic.9y no yes no
## 21782 33 admin. single university.degree no no no
## 21786 37 technician married professional.course no yes no
## 21790 33 admin. married university.degree no yes no
## 21793 33 technician married university.degree no yes no
## 21802 32 admin. single university.degree no no no
## 21805 43 management married university.degree no no no
## 21810 54 blue-collar married basic.4y no no no
## 21813 40 admin. married high.school no yes yes
## 21816 33 admin. single university.degree no no no
## 21823 30 technician single university.degree unknown yes no
## 21824 33 admin. single university.degree no yes no
## 21833 29 admin. single university.degree no yes no
## 21840 40 technician single professional.course no yes no
## 21846 36 admin. married university.degree no no no
## 21868 59 retired married basic.9y no no no
## 21869 30 admin. single university.degree no yes no
## 21870 57 housemaid married basic.4y no yes no
## 21872 56 admin. married university.degree no no no
## 21873 57 blue-collar married basic.4y unknown no no
## 21876 57 blue-collar married basic.4y unknown yes no
## 21881 30 technician single professional.course no no no
## 21882 37 admin. single university.degree no no yes
## 21885 46 blue-collar married basic.4y no no yes
## 21886 49 technician married university.degree no yes no
## 21893 48 blue-collar married basic.9y no yes no
## 21894 30 blue-collar single basic.9y no no no
## 21896 32 admin. divorced university.degree no no no
## 21917 47 technician married professional.course no yes no
## 21922 35 management married university.degree no unknown unknown
## 21927 50 technician divorced professional.course unknown no no
## 21930 48 technician divorced professional.course unknown yes no
## 21931 30 technician single professional.course no yes no
## 21935 31 technician married university.degree no no no
## 21940 43 management married university.degree no no no
## 21941 32 admin. single university.degree no no no
## 21946 48 blue-collar married basic.9y no no yes
## 21947 30 admin. married university.degree no yes yes
## 21948 37 admin. married university.degree no yes no
## 21950 37 technician married high.school no yes no
## 21956 43 technician married professional.course no yes yes
## 21962 31 technician married university.degree no unknown unknown
## 21968 59 management married university.degree no no no
## 21970 36 technician married professional.course no yes no
## 21972 45 management married university.degree no yes no
## 21975 42 technician married professional.course unknown no no
## 21977 34 admin. married university.degree no no yes
## 21978 55 services married basic.4y no yes no
## 21981 34 technician single university.degree no yes no
## 21991 44 blue-collar married basic.9y no no no
## 21992 29 admin. married university.degree no yes no
## 22010 34 admin. married university.degree no no no
## 22012 31 technician married university.degree unknown no no
## 22015 48 blue-collar married basic.9y unknown no no
## 22025 43 admin. married university.degree no no yes
## 22028 39 housemaid married basic.4y no no no
## 22034 31 technician married university.degree unknown no no
## 22038 46 self-employed married university.degree no yes no
## 22054 42 admin. married university.degree no no no
## 22058 33 admin. married university.degree no yes no
## 22065 42 admin. married university.degree no yes no
## 22069 36 technician single university.degree no no no
## 22074 45 housemaid married basic.4y no no no
## 22076 31 unemployed married university.degree no no no
## 22088 30 technician single professional.course unknown yes no
## 22089 56 retired married basic.4y unknown no yes
## 22090 29 technician single professional.course no yes yes
## 22094 49 blue-collar divorced basic.4y no no no
## 22100 31 technician single university.degree no yes no
## 22110 43 admin. married university.degree no yes yes
## 22121 33 technician married high.school no yes no
## 22130 35 technician single professional.course no yes no
## 22133 53 admin. married university.degree no no no
## 22135 52 admin. married unknown no no no
## 22139 44 housemaid married basic.4y no yes no
## 22143 50 self-employed married university.degree no no no
## 22146 42 admin. married university.degree no yes no
## 22157 31 admin. single university.degree no no no
## 22159 48 admin. married high.school no yes no
## 22166 35 technician single professional.course no yes no
## 22167 39 technician married professional.course no no no
## 22169 48 services married high.school unknown yes yes
## 22185 30 admin. married university.degree no yes no
## 22188 34 admin. married university.degree no yes no
## 22193 52 blue-collar married basic.4y no no no
## 22208 33 housemaid divorced professional.course no yes no
## 22209 30 admin. single university.degree no yes no
## 22212 39 housemaid married basic.4y no no no
## 22215 51 admin. married university.degree no no no
## 22219 30 admin. single university.degree no yes no
## 22224 36 admin. married university.degree unknown yes no
## 22248 56 self-employed married basic.9y no yes no
## 22255 31 admin. single university.degree no no no
## 22256 49 services married basic.4y no no no
## 22277 45 services married high.school no no no
## 22282 52 admin. married unknown no yes no
## 22289 39 admin. married university.degree unknown yes yes
## 22295 29 technician single high.school no yes no
## 22304 48 blue-collar married basic.6y no no no
## 22311 32 technician married professional.course unknown no no
## 22312 32 technician married professional.course unknown no yes
## 22320 45 technician married professional.course unknown yes no
## 22322 37 technician married professional.course no yes no
## 22336 34 technician married professional.course unknown yes no
## 22337 55 blue-collar married basic.9y unknown unknown unknown
## 22342 34 technician married professional.course unknown yes no
## 22344 29 admin. single university.degree no yes no
## 22359 36 admin. single university.degree no yes no
## 22360 32 services married professional.course unknown yes no
## 22362 50 admin. married unknown no yes no
## 22363 36 admin. single university.degree no yes no
## 22375 57 technician married university.degree no yes no
## 22377 31 admin. divorced university.degree no unknown unknown
## 22380 33 admin. single university.degree no no no
## 22387 50 blue-collar married basic.6y unknown yes no
## 22393 54 technician divorced professional.course unknown yes no
## 22397 55 retired married professional.course no yes no
## 22399 42 services married high.school unknown yes yes
## 22401 51 blue-collar married basic.4y unknown yes no
## 22402 31 technician single university.degree unknown yes no
## 22406 47 blue-collar married basic.6y no yes no
## 22409 44 admin. married high.school no yes no
## 22433 46 services married unknown no no no
## 22435 41 self-employed married professional.course no yes no
## 22437 39 housemaid married professional.course no yes no
## 22443 51 blue-collar married basic.6y no yes no
## 22447 45 blue-collar married basic.9y no no yes
## 22452 30 admin. single high.school no no no
## 22466 47 admin. divorced university.degree no yes no
## 22468 35 technician single high.school unknown yes yes
## 22472 37 self-employed married university.degree no yes yes
## 22481 51 blue-collar married basic.4y unknown no no
## 22483 55 blue-collar married basic.4y no no no
## 22495 54 blue-collar married unknown unknown yes no
## 22500 30 technician single professional.course no yes no
## 22503 29 admin. single university.degree no yes no
## 22507 38 self-employed married basic.9y unknown yes no
## 22515 40 technician single high.school no yes no
## 22537 53 blue-collar married basic.9y no yes no
## 22549 49 unemployed married high.school unknown yes no
## 22550 31 blue-collar married basic.4y no no no
## 22551 32 admin. married university.degree unknown yes no
## 22560 58 blue-collar married unknown unknown yes yes
## 22568 56 blue-collar married basic.9y unknown no no
## 22577 33 unemployed married university.degree no no no
## 22586 47 admin. married unknown no yes no
## 22599 29 technician single professional.course no no no
## 22611 60 retired married basic.4y unknown yes no
## 22614 32 technician married professional.course no no yes
## 22629 42 entrepreneur married high.school no no no
## 22630 48 self-employed married high.school no yes no
## 22631 32 admin. single university.degree no yes yes
## 22632 41 self-employed married university.degree no yes no
## 22640 60 management married university.degree no unknown unknown
## 22642 55 technician divorced professional.course no no no
## 22644 40 technician married high.school no yes yes
## 22645 33 admin. married university.degree no no no
## 22669 36 admin. married professional.course no yes yes
## 22674 32 technician single professional.course no no no
## 22684 51 services married unknown no no no
## 22686 39 housemaid married basic.4y no no no
## 22690 46 housemaid married basic.4y no yes no
## 22691 46 housemaid married basic.4y no no no
## 22696 32 technician single professional.course no no yes
## 22699 31 technician single professional.course no no no
## 22706 32 admin. married university.degree no yes no
## 22712 58 services married high.school no no no
## 22718 31 technician divorced high.school no yes no
## 22724 47 technician married professional.course no yes no
## 22725 35 housemaid married basic.4y no yes no
## 22729 35 management divorced university.degree no no yes
## 22739 42 admin. divorced university.degree no yes no
## 22743 42 technician divorced university.degree no yes no
## 22745 57 blue-collar married basic.9y no yes no
## 22761 41 admin. married university.degree no yes no
## 22762 31 technician married university.degree no no no
## 22764 59 retired married basic.9y no yes no
## 22766 32 housemaid married basic.4y no yes no
## 22768 35 technician married professional.course no no yes
## 22770 37 admin. single university.degree no no yes
## 22772 58 admin. divorced university.degree unknown no no
## 22774 58 admin. divorced university.degree unknown no yes
## 22775 50 blue-collar married basic.4y no no no
## 22776 47 blue-collar married basic.9y no no no
## 22781 58 admin. divorced university.degree unknown no no
## 22786 58 admin. married university.degree no no no
## 22787 57 self-employed married university.degree unknown yes no
## 22794 39 admin. divorced university.degree no no no
## 22813 40 technician married professional.course no no no
## 22816 29 admin. single university.degree no no no
## 22817 58 management married university.degree no yes no
## 22822 32 technician single university.degree no yes yes
## 22837 55 retired married high.school unknown no no
## 22838 43 technician divorced professional.course unknown no yes
## 22840 42 admin. divorced university.degree no yes yes
## 22842 33 admin. married university.degree no no no
## 22855 44 self-employed married basic.9y no no yes
## 22857 42 technician married professional.course no yes no
## 22863 56 technician married university.degree no no no
## 22866 47 management married university.degree no yes yes
## 22872 48 blue-collar married basic.9y no yes no
## 22874 32 housemaid married basic.4y no yes no
## 22879 34 self-employed married basic.9y unknown yes no
## 22883 49 blue-collar married unknown unknown yes no
## 22886 44 blue-collar married basic.4y no no yes
## 22892 50 blue-collar married basic.4y no yes yes
## 22899 58 retired married basic.4y unknown no no
## 22901 53 blue-collar married basic.6y no yes no
## 22903 35 technician single professional.course no no no
## 22907 32 technician single high.school no yes no
## 22912 54 housemaid married basic.4y unknown yes no
## 22926 35 technician married university.degree no yes no
## 22928 57 blue-collar married basic.9y no yes no
## 22929 47 technician married high.school unknown yes yes
## 22935 39 technician divorced professional.course unknown no no
## 22939 45 admin. divorced university.degree no yes no
## 22942 55 management married university.degree no no no
## 22947 53 management married university.degree no no no
## 22948 48 blue-collar married basic.9y no no no
## 22949 50 blue-collar married basic.9y unknown no no
## 22957 41 technician married university.degree unknown yes no
## 22958 46 blue-collar married basic.9y no yes no
## 22963 54 blue-collar married basic.4y no yes no
## 22973 57 admin. married high.school unknown yes yes
## 22984 43 admin. single university.degree no no no
## 22994 50 admin. married university.degree no no no
## 22997 59 housemaid married basic.4y unknown yes yes
## 23003 51 admin. married university.degree no no no
## 23006 51 admin. single university.degree no yes no
## 23008 55 retired married high.school no yes no
## 23011 40 technician divorced professional.course no unknown unknown
## 23024 38 admin. married university.degree no yes no
## 23025 59 housemaid married basic.4y unknown no no
## 23027 49 services married high.school no yes no
## 23035 47 self-employed married university.degree no no no
## 23036 50 admin. divorced university.degree no yes no
## 23047 48 technician married university.degree no yes no
## 23049 44 admin. married university.degree no no no
## 23050 41 technician single university.degree no yes no
## 23054 36 technician married professional.course no yes no
## 23060 42 management married university.degree unknown no no
## 23064 42 management married university.degree unknown yes yes
## 23069 60 self-employed married basic.9y no no no
## 23071 46 admin. married university.degree unknown yes no
## 23077 50 blue-collar married professional.course no yes yes
## 23082 55 technician divorced university.degree no no no
## 23084 47 self-employed married university.degree no yes no
## 23088 39 technician married university.degree no no no
## 23090 53 admin. married university.degree unknown no no
## 23091 50 technician married university.degree no yes no
## 23098 45 unknown married high.school unknown yes no
## 23103 41 technician single professional.course no no no
## 23105 37 technician divorced professional.course no no no
## 23113 32 admin. married university.degree no yes yes
## 23120 29 technician single high.school no yes no
## 23123 52 unemployed divorced high.school no yes yes
## 23131 45 blue-collar married basic.9y no no no
## 23135 38 technician married university.degree no no no
## 23149 33 technician married professional.course no yes no
## 23160 35 technician married university.degree no yes no
## 23168 35 technician single professional.course no yes no
## 23172 46 admin. married university.degree unknown yes no
## 23174 51 blue-collar married basic.4y no no no
## 23179 32 technician single high.school no no no
## 23181 41 unemployed divorced professional.course no unknown unknown
## 23183 50 services married high.school unknown no no
## 23185 53 unknown married unknown unknown no no
## 23215 29 admin. single university.degree no yes no
## 23221 31 management married university.degree no yes no
## 23223 38 technician married high.school no no no
## 23230 54 admin. married high.school no no no
## 23231 48 admin. married professional.course no no no
## 23234 48 admin. divorced university.degree unknown no no
## 23235 38 admin. married university.degree no yes no
## 23241 46 housemaid married basic.4y no no no
## 23247 58 blue-collar divorced basic.6y unknown no no
## 23251 44 technician divorced professional.course no no no
## 23258 39 admin. married university.degree no yes no
## 23263 40 admin. married university.degree no no no
## 23264 29 admin. single university.degree no no no
## 23268 31 technician single high.school no no no
## 23269 37 blue-collar single professional.course no yes no
## 23271 59 admin. divorced professional.course unknown yes no
## 23276 41 technician single high.school no yes no
## 23280 36 admin. married university.degree unknown yes no
## 23285 46 admin. married university.degree unknown no no
## 23288 50 blue-collar married basic.4y no no no
## 23294 34 admin. married university.degree no yes no
## 23297 57 retired married high.school unknown yes yes
## 23304 44 technician married professional.course no yes no
## 23306 51 technician married university.degree no yes no
## 23309 60 retired married professional.course no no no
## 23310 57 retired married professional.course unknown no no
## 23312 47 admin. divorced university.degree no no yes
## 23313 57 retired married basic.4y unknown yes no
## 23325 54 admin. divorced university.degree no no yes
## 23336 44 technician single university.degree no yes no
## 23338 45 admin. married university.degree unknown yes no
## 23339 52 technician married university.degree no no no
## 23359 54 technician married professional.course no yes no
## 23363 31 self-employed married university.degree no yes no
## 23365 52 admin. married high.school no no no
## 23373 47 technician divorced high.school no yes no
## 23374 37 admin. single university.degree no no no
## 23376 47 technician divorced professional.course unknown yes yes
## 23381 41 technician divorced professional.course no yes no
## 23383 37 technician single university.degree no yes no
## 23385 54 management married university.degree no no no
## 23390 37 technician married university.degree no no no
## 23394 56 retired divorced university.degree unknown no no
## 23400 58 technician divorced professional.course unknown no no
## 23411 44 admin. married basic.9y unknown no no
## 23417 44 technician married professional.course no no no
## 23419 43 admin. married university.degree no yes no
## 23421 46 services married basic.9y unknown yes no
## 23449 41 technician married professional.course no no yes
## 23451 41 technician married professional.course no no no
## 23465 33 admin. married university.degree no yes no
## 23474 51 technician married professional.course no yes no
## 23479 51 technician married professional.course no yes no
## contact month day_of_week duration campaign pdays previous poutcome
## 14 telephone may mon 293 1 999 0 nonexistent
## 15 telephone may mon 146 1 999 0 nonexistent
## 23 telephone may mon 342 1 999 0 nonexistent
## 25 telephone may mon 172 1 999 0 nonexistent
## 44 telephone may mon 212 1 999 0 nonexistent
## 61 telephone may mon 449 1 999 0 nonexistent
## 62 telephone may mon 812 1 999 0 nonexistent
## 68 telephone may mon 273 1 999 0 nonexistent
## 72 telephone may mon 172 1 999 0 nonexistent
## 76 telephone may mon 1575 1 999 0 nonexistent
## 81 telephone may mon 193 1 999 0 nonexistent
## 83 telephone may mon 165 2 999 0 nonexistent
## 84 telephone may mon 1042 1 999 0 nonexistent
## 85 telephone may mon 20 1 999 0 nonexistent
## 95 telephone may mon 583 1 999 0 nonexistent
## 104 telephone may mon 197 1 999 0 nonexistent
## 108 telephone may mon 123 2 999 0 nonexistent
## 112 telephone may mon 849 2 999 0 nonexistent
## 113 telephone may mon 194 1 999 0 nonexistent
## 119 telephone may mon 364 1 999 0 nonexistent
## 124 telephone may mon 79 1 999 0 nonexistent
## 140 telephone may mon 461 1 999 0 nonexistent
## 143 telephone may mon 193 1 999 0 nonexistent
## 149 telephone may mon 163 1 999 0 nonexistent
## 153 telephone may mon 52 1 999 0 nonexistent
## 156 telephone may mon 98 1 999 0 nonexistent
## 163 telephone may mon 46 1 999 0 nonexistent
## 164 telephone may mon 559 3 999 0 nonexistent
## 169 telephone may mon 114 2 999 0 nonexistent
## 170 telephone may mon 843 2 999 0 nonexistent
## 175 telephone may mon 93 3 999 0 nonexistent
## 181 telephone may mon 228 1 999 0 nonexistent
## 189 telephone may mon 252 1 999 0 nonexistent
## 202 telephone may mon 167 1 999 0 nonexistent
## 204 telephone may mon 277 1 999 0 nonexistent
## 207 telephone may mon 217 1 999 0 nonexistent
## 211 telephone may mon 256 1 999 0 nonexistent
## 213 telephone may mon 477 1 999 0 nonexistent
## 214 telephone may mon 611 2 999 0 nonexistent
## 217 telephone may mon 251 1 999 0 nonexistent
## 218 telephone may mon 408 1 999 0 nonexistent
## 223 telephone may mon 210 1 999 0 nonexistent
## 227 telephone may mon 64 2 999 0 nonexistent
## 229 telephone may mon 410 3 999 0 nonexistent
## 230 telephone may mon 177 1 999 0 nonexistent
## 240 telephone may mon 213 3 999 0 nonexistent
## 245 telephone may mon 40 1 999 0 nonexistent
## 249 telephone may mon 389 1 999 0 nonexistent
## 251 telephone may mon 151 1 999 0 nonexistent
## 267 telephone may mon 150 2 999 0 nonexistent
## 269 telephone may mon 611 2 999 0 nonexistent
## 287 telephone may mon 935 3 999 0 nonexistent
## 290 telephone may mon 225 2 999 0 nonexistent
## 291 telephone may mon 125 2 999 0 nonexistent
## 298 telephone may mon 120 2 999 0 nonexistent
## 304 telephone may mon 267 2 999 0 nonexistent
## 305 telephone may mon 248 2 999 0 nonexistent
## 306 telephone may mon 215 2 999 0 nonexistent
## 319 telephone may mon 173 2 999 0 nonexistent
## 332 telephone may mon 121 2 999 0 nonexistent
## 334 telephone may mon 88 5 999 0 nonexistent
## 340 telephone may mon 213 2 999 0 nonexistent
## 344 telephone may mon 325 2 999 0 nonexistent
## 347 telephone may mon 680 2 999 0 nonexistent
## 362 telephone may tue 379 2 999 0 nonexistent
## 364 telephone may tue 190 3 999 0 nonexistent
## 368 telephone may tue 306 1 999 0 nonexistent
## 370 telephone may tue 218 1 999 0 nonexistent
## 372 telephone may tue 54 1 999 0 nonexistent
## 379 telephone may tue 83 1 999 0 nonexistent
## 388 telephone may tue 501 4 999 0 nonexistent
## 389 telephone may tue 1201 1 999 0 nonexistent
## 407 telephone may tue 393 1 999 0 nonexistent
## 418 telephone may tue 505 1 999 0 nonexistent
## 420 telephone may tue 186 1 999 0 nonexistent
## 425 telephone may tue 118 1 999 0 nonexistent
## 427 telephone may tue 342 1 999 0 nonexistent
## 429 telephone may tue 185 3 999 0 nonexistent
## 435 telephone may tue 141 1 999 0 nonexistent
## 446 telephone may tue 136 1 999 0 nonexistent
## 449 telephone may tue 101 1 999 0 nonexistent
## 457 telephone may tue 141 2 999 0 nonexistent
## 463 telephone may tue 678 1 999 0 nonexistent
## 467 telephone may tue 27 1 999 0 nonexistent
## 468 telephone may tue 699 3 999 0 nonexistent
## 471 telephone may tue 529 1 999 0 nonexistent
## 477 telephone may tue 113 1 999 0 nonexistent
## 478 telephone may tue 114 1 999 0 nonexistent
## 483 telephone may tue 145 1 999 0 nonexistent
## 489 telephone may tue 188 2 999 0 nonexistent
## 490 telephone may tue 174 2 999 0 nonexistent
## 493 telephone may tue 157 2 999 0 nonexistent
## 500 telephone may tue 531 1 999 0 nonexistent
## 507 telephone may tue 198 3 999 0 nonexistent
## 510 telephone may tue 269 1 999 0 nonexistent
## 511 telephone may tue 128 1 999 0 nonexistent
## 512 telephone may tue 166 2 999 0 nonexistent
## 517 telephone may tue 198 1 999 0 nonexistent
## 527 telephone may tue 102 1 999 0 nonexistent
## 530 telephone may tue 263 2 999 0 nonexistent
## 531 telephone may tue 342 2 999 0 nonexistent
## 543 telephone may tue 289 1 999 0 nonexistent
## 545 telephone may tue 123 1 999 0 nonexistent
## 549 telephone may tue 26 1 999 0 nonexistent
## 554 telephone may tue 383 1 999 0 nonexistent
## 560 telephone may tue 427 1 999 0 nonexistent
## 564 telephone may tue 209 1 999 0 nonexistent
## 567 telephone may tue 69 1 999 0 nonexistent
## 575 telephone may tue 352 2 999 0 nonexistent
## 579 telephone may tue 310 2 999 0 nonexistent
## 582 telephone may tue 112 2 999 0 nonexistent
## 591 telephone may tue 1906 3 999 0 nonexistent
## 600 telephone may tue 193 1 999 0 nonexistent
## 603 telephone may tue 285 1 999 0 nonexistent
## 605 telephone may tue 278 1 999 0 nonexistent
## 608 telephone may tue 78 2 999 0 nonexistent
## 618 telephone may tue 57 2 999 0 nonexistent
## 633 telephone may tue 532 2 999 0 nonexistent
## 634 telephone may tue 293 1 999 0 nonexistent
## 642 telephone may tue 29 3 999 0 nonexistent
## 644 telephone may tue 412 1 999 0 nonexistent
## 645 telephone may tue 211 2 999 0 nonexistent
## 646 telephone may tue 312 3 999 0 nonexistent
## 647 telephone may tue 392 1 999 0 nonexistent
## 654 telephone may tue 333 2 999 0 nonexistent
## 658 telephone may tue 92 2 999 0 nonexistent
## 663 telephone may tue 262 1 999 0 nonexistent
## 675 telephone may tue 178 2 999 0 nonexistent
## 679 telephone may tue 400 2 999 0 nonexistent
## 690 telephone may tue 716 2 999 0 nonexistent
## 691 telephone may tue 189 3 999 0 nonexistent
## 692 telephone may tue 125 2 999 0 nonexistent
## 698 telephone may tue 283 3 999 0 nonexistent
## 701 telephone may tue 144 2 999 0 nonexistent
## 702 telephone may tue 121 2 999 0 nonexistent
## 706 telephone may tue 161 2 999 0 nonexistent
## 709 telephone may tue 99 2 999 0 nonexistent
## 711 telephone may tue 285 2 999 0 nonexistent
## 714 telephone may tue 178 2 999 0 nonexistent
## 721 telephone may tue 254 2 999 0 nonexistent
## 727 telephone may tue 112 4 999 0 nonexistent
## 728 telephone may tue 222 2 999 0 nonexistent
## 730 telephone may tue 421 2 999 0 nonexistent
## 734 telephone may tue 83 4 999 0 nonexistent
## 735 telephone may tue 160 3 999 0 nonexistent
## 739 telephone may tue 303 3 999 0 nonexistent
## 741 telephone may tue 233 2 999 0 nonexistent
## 744 telephone may tue 139 2 999 0 nonexistent
## 747 telephone may tue 206 2 999 0 nonexistent
## 750 telephone may tue 343 3 999 0 nonexistent
## 752 telephone may tue 249 3 999 0 nonexistent
## 753 telephone may tue 59 3 999 0 nonexistent
## 766 telephone may wed 285 3 999 0 nonexistent
## 769 telephone may wed 162 2 999 0 nonexistent
## 772 telephone may wed 96 2 999 0 nonexistent
## 773 telephone may wed 149 2 999 0 nonexistent
## 777 telephone may wed 70 2 999 0 nonexistent
## 781 telephone may wed 261 3 999 0 nonexistent
## 782 telephone may wed 502 1 999 0 nonexistent
## 789 telephone may wed 333 4 999 0 nonexistent
## 790 telephone may wed 113 1 999 0 nonexistent
## 794 telephone may wed 128 3 999 0 nonexistent
## 795 telephone may wed 298 1 999 0 nonexistent
## 813 telephone may wed 294 1 999 0 nonexistent
## 836 telephone may wed 121 1 999 0 nonexistent
## 843 telephone may wed 161 1 999 0 nonexistent
## 845 telephone may wed 800 1 999 0 nonexistent
## 851 telephone may wed 227 1 999 0 nonexistent
## 854 telephone may wed 298 1 999 0 nonexistent
## 857 telephone may wed 1138 1 999 0 nonexistent
## 873 telephone may wed 285 1 999 0 nonexistent
## 877 telephone may wed 786 1 999 0 nonexistent
## 888 telephone may wed 388 7 999 0 nonexistent
## 892 telephone may wed 104 1 999 0 nonexistent
## 896 telephone may wed 378 1 999 0 nonexistent
## 897 telephone may wed 67 1 999 0 nonexistent
## 900 telephone may wed 144 2 999 0 nonexistent
## 904 telephone may wed 435 2 999 0 nonexistent
## 930 telephone may wed 376 2 999 0 nonexistent
## 962 telephone may wed 118 3 999 0 nonexistent
## 963 telephone may wed 485 4 999 0 nonexistent
## 972 telephone may wed 371 2 999 0 nonexistent
## 981 telephone may wed 559 1 999 0 nonexistent
## 982 telephone may wed 1101 1 999 0 nonexistent
## 993 telephone may wed 311 1 999 0 nonexistent
## 995 telephone may wed 274 1 999 0 nonexistent
## 996 telephone may wed 163 1 999 0 nonexistent
## 999 telephone may wed 68 1 999 0 nonexistent
## 1009 telephone may wed 170 1 999 0 nonexistent
## 1011 telephone may wed 194 1 999 0 nonexistent
## 1013 telephone may wed 224 5 999 0 nonexistent
## 1015 telephone may wed 252 5 999 0 nonexistent
## 1017 telephone may wed 331 1 999 0 nonexistent
## 1018 telephone may wed 398 1 999 0 nonexistent
## 1019 telephone may wed 103 2 999 0 nonexistent
## 1020 telephone may wed 241 2 999 0 nonexistent
## 1026 telephone may wed 481 1 999 0 nonexistent
## 1028 telephone may wed 245 2 999 0 nonexistent
## 1039 telephone may wed 154 2 999 0 nonexistent
## 1047 telephone may wed 263 6 999 0 nonexistent
## 1053 telephone may wed 222 4 999 0 nonexistent
## 1054 telephone may wed 1009 3 999 0 nonexistent
## 1060 telephone may wed 764 3 999 0 nonexistent
## 1073 telephone may wed 283 3 999 0 nonexistent
## 1076 telephone may wed 225 2 999 0 nonexistent
## 1078 telephone may wed 1273 1 999 0 nonexistent
## 1083 telephone may wed 245 2 999 0 nonexistent
## 1091 telephone may wed 231 2 999 0 nonexistent
## 1093 telephone may wed 299 2 999 0 nonexistent
## 1094 telephone may wed 103 4 999 0 nonexistent
## 1096 telephone may wed 73 2 999 0 nonexistent
## 1098 telephone may wed 244 7 999 0 nonexistent
## 1100 telephone may wed 157 6 999 0 nonexistent
## 1101 telephone may wed 548 2 999 0 nonexistent
## 1105 telephone may wed 333 1 999 0 nonexistent
## 1117 telephone may wed 27 3 999 0 nonexistent
## 1141 telephone may wed 309 2 999 0 nonexistent
## 1145 telephone may wed 374 2 999 0 nonexistent
## 1146 telephone may wed 365 4 999 0 nonexistent
## 1148 telephone may thu 238 3 999 0 nonexistent
## 1149 telephone may thu 31 2 999 0 nonexistent
## 1150 telephone may thu 425 6 999 0 nonexistent
## 1157 telephone may thu 162 2 999 0 nonexistent
## 1159 telephone may thu 175 5 999 0 nonexistent
## 1164 telephone may thu 196 1 999 0 nonexistent
## 1184 telephone may thu 177 2 999 0 nonexistent
## 1190 telephone may thu 541 3 999 0 nonexistent
## 1197 telephone may thu 135 2 999 0 nonexistent
## 1199 telephone may thu 604 1 999 0 nonexistent
## 1206 telephone may thu 20 1 999 0 nonexistent
## 1207 telephone may thu 202 1 999 0 nonexistent
## 1213 telephone may thu 80 1 999 0 nonexistent
## 1215 telephone may thu 418 1 999 0 nonexistent
## 1218 telephone may thu 39 1 999 0 nonexistent
## 1221 telephone may thu 204 1 999 0 nonexistent
## 1239 telephone may thu 12 2 999 0 nonexistent
## 1244 telephone may thu 60 1 999 0 nonexistent
## 1249 telephone may thu 107 1 999 0 nonexistent
## 1250 telephone may thu 219 1 999 0 nonexistent
## 1258 telephone may thu 369 1 999 0 nonexistent
## 1261 telephone may thu 306 1 999 0 nonexistent
## 1264 telephone may thu 162 1 999 0 nonexistent
## 1267 telephone may thu 124 1 999 0 nonexistent
## 1271 telephone may thu 87 2 999 0 nonexistent
## 1276 telephone may thu 149 1 999 0 nonexistent
## 1282 telephone may thu 147 1 999 0 nonexistent
## 1283 telephone may thu 93 1 999 0 nonexistent
## 1287 telephone may thu 74 1 999 0 nonexistent
## 1288 telephone may thu 60 1 999 0 nonexistent
## 1293 telephone may thu 140 1 999 0 nonexistent
## 1312 telephone may thu 500 1 999 0 nonexistent
## 1316 telephone may thu 364 4 999 0 nonexistent
## 1317 telephone may thu 477 1 999 0 nonexistent
## 1319 telephone may thu 789 1 999 0 nonexistent
## 1327 telephone may thu 108 3 999 0 nonexistent
## 1331 telephone may thu 166 1 999 0 nonexistent
## 1332 telephone may thu 141 1 999 0 nonexistent
## 1346 telephone may thu 442 2 999 0 nonexistent
## 1347 telephone may thu 101 1 999 0 nonexistent
## 1353 telephone may thu 178 2 999 0 nonexistent
## 1366 telephone may thu 989 1 999 0 nonexistent
## 1367 telephone may thu 147 5 999 0 nonexistent
## 1368 telephone may thu 1170 1 999 0 nonexistent
## 1373 telephone may thu 155 2 999 0 nonexistent
## 1375 telephone may thu 343 2 999 0 nonexistent
## 1377 telephone may thu 461 3 999 0 nonexistent
## 1379 telephone may thu 90 2 999 0 nonexistent
## 1381 telephone may thu 28 3 999 0 nonexistent
## 1383 telephone may thu 103 4 999 0 nonexistent
## 1387 telephone may thu 369 2 999 0 nonexistent
## 1388 telephone may thu 116 1 999 0 nonexistent
## 1395 telephone may thu 234 1 999 0 nonexistent
## 1396 telephone may thu 92 1 999 0 nonexistent
## 1399 telephone may thu 193 1 999 0 nonexistent
## 1410 telephone may thu 219 2 999 0 nonexistent
## 1412 telephone may thu 376 2 999 0 nonexistent
## 1414 telephone may thu 151 2 999 0 nonexistent
## 1415 telephone may thu 767 5 999 0 nonexistent
## 1417 telephone may thu 298 5 999 0 nonexistent
## 1421 telephone may thu 287 1 999 0 nonexistent
## 1424 telephone may thu 403 2 999 0 nonexistent
## 1427 telephone may thu 266 1 999 0 nonexistent
## 1428 telephone may thu 23 4 999 0 nonexistent
## 1429 telephone may thu 154 2 999 0 nonexistent
## 1430 telephone may thu 10 7 999 0 nonexistent
## 1431 telephone may thu 301 2 999 0 nonexistent
## 1432 telephone may thu 240 3 999 0 nonexistent
## 1433 telephone may thu 312 3 999 0 nonexistent
## 1437 telephone may thu 263 2 999 0 nonexistent
## 1447 telephone may thu 318 2 999 0 nonexistent
## 1462 telephone may thu 345 2 999 0 nonexistent
## 1463 telephone may thu 230 4 999 0 nonexistent
## 1476 telephone may thu 459 2 999 0 nonexistent
## 1479 telephone may thu 255 6 999 0 nonexistent
## 1483 telephone may thu 43 2 999 0 nonexistent
## 1488 telephone may thu 169 2 999 0 nonexistent
## 1490 telephone may thu 223 2 999 0 nonexistent
## 1494 telephone may thu 155 2 999 0 nonexistent
## 1498 telephone may thu 193 2 999 0 nonexistent
## 1513 telephone may thu 369 2 999 0 nonexistent
## 1515 telephone may thu 246 3 999 0 nonexistent
## 1516 telephone may thu 330 3 999 0 nonexistent
## 1517 telephone may thu 91 3 999 0 nonexistent
## 1521 telephone may thu 89 4 999 0 nonexistent
## 1524 telephone may thu 170 2 999 0 nonexistent
## 1525 telephone may thu 141 2 999 0 nonexistent
## 1533 telephone may thu 179 5 999 0 nonexistent
## 1535 telephone may thu 272 4 999 0 nonexistent
## 1547 telephone may thu 627 4 999 0 nonexistent
## 1551 telephone may thu 283 3 999 0 nonexistent
## 1554 telephone may thu 120 5 999 0 nonexistent
## 1555 telephone may thu 185 7 999 0 nonexistent
## 1558 telephone may thu 337 4 999 0 nonexistent
## 1561 telephone may thu 160 3 999 0 nonexistent
## 1566 telephone may thu 103 3 999 0 nonexistent
## 1568 telephone may thu 287 4 999 0 nonexistent
## 1569 telephone may thu 732 2 999 0 nonexistent
## 1572 telephone may thu 43 2 999 0 nonexistent
## 1573 telephone may thu 109 4 999 0 nonexistent
## 1580 telephone may fri 180 2 999 0 nonexistent
## 1585 telephone may fri 211 2 999 0 nonexistent
## 1589 telephone may fri 132 5 999 0 nonexistent
## 1592 telephone may fri 346 4 999 0 nonexistent
## 1594 telephone may fri 218 1 999 0 nonexistent
## 1601 telephone may fri 241 1 999 0 nonexistent
## 1609 telephone may fri 617 4 999 0 nonexistent
## 1614 telephone may fri 483 3 999 0 nonexistent
## 1623 telephone may fri 70 1 999 0 nonexistent
## 1633 telephone may fri 772 1 999 0 nonexistent
## 1634 telephone may fri 143 1 999 0 nonexistent
## 1641 telephone may fri 93 1 999 0 nonexistent
## 1643 telephone may fri 134 2 999 0 nonexistent
## 1653 telephone may fri 72 2 999 0 nonexistent
## 1656 telephone may fri 710 1 999 0 nonexistent
## 1664 telephone may fri 239 1 999 0 nonexistent
## 1686 telephone may fri 106 1 999 0 nonexistent
## 1688 telephone may fri 92 2 999 0 nonexistent
## 1689 telephone may fri 219 1 999 0 nonexistent
## 1704 telephone may fri 136 1 999 0 nonexistent
## 1722 telephone may fri 202 1 999 0 nonexistent
## 1723 telephone may fri 106 1 999 0 nonexistent
## 1733 telephone may fri 46 2 999 0 nonexistent
## 1736 telephone may fri 471 2 999 0 nonexistent
## 1742 telephone may fri 324 2 999 0 nonexistent
## 1749 telephone may fri 63 1 999 0 nonexistent
## 1757 telephone may fri 145 2 999 0 nonexistent
## 1758 telephone may fri 142 2 999 0 nonexistent
## 1762 telephone may fri 241 1 999 0 nonexistent
## 1765 telephone may fri 189 1 999 0 nonexistent
## 1766 telephone may fri 70 1 999 0 nonexistent
## 1767 telephone may fri 1087 2 999 0 nonexistent
## 1771 telephone may fri 197 4 999 0 nonexistent
## 1773 telephone may fri 557 1 999 0 nonexistent
## 1778 telephone may fri 209 3 999 0 nonexistent
## 1782 telephone may fri 530 2 999 0 nonexistent
## 1787 telephone may fri 316 3 999 0 nonexistent
## 1790 telephone may fri 126 2 999 0 nonexistent
## 1792 telephone may fri 1692 2 999 0 nonexistent
## 1797 telephone may fri 133 1 999 0 nonexistent
## 1800 telephone may fri 275 1 999 0 nonexistent
## 1801 telephone may fri 109 1 999 0 nonexistent
## 1803 telephone may fri 225 1 999 0 nonexistent
## 1804 telephone may fri 129 1 999 0 nonexistent
## 1807 telephone may fri 247 1 999 0 nonexistent
## 1809 telephone may fri 324 1 999 0 nonexistent
## 1812 telephone may fri 163 2 999 0 nonexistent
## 1816 telephone may fri 193 2 999 0 nonexistent
## 1817 telephone may fri 125 3 999 0 nonexistent
## 1832 telephone may fri 79 1 999 0 nonexistent
## 1836 telephone may fri 274 2 999 0 nonexistent
## 1843 telephone may fri 182 1 999 0 nonexistent
## 1848 telephone may fri 663 3 999 0 nonexistent
## 1849 telephone may fri 338 4 999 0 nonexistent
## 1852 telephone may fri 305 2 999 0 nonexistent
## 1873 telephone may fri 106 1 999 0 nonexistent
## 1891 telephone may fri 229 5 999 0 nonexistent
## 1896 telephone may fri 83 4 999 0 nonexistent
## 1898 telephone may fri 26 2 999 0 nonexistent
## 1899 telephone may fri 169 2 999 0 nonexistent
## 1900 telephone may fri 179 2 999 0 nonexistent
## 1901 telephone may fri 280 1 999 0 nonexistent
## 1909 telephone may fri 178 2 999 0 nonexistent
## 1913 telephone may fri 255 2 999 0 nonexistent
## 1918 telephone may fri 432 2 999 0 nonexistent
## 1921 telephone may fri 162 2 999 0 nonexistent
## 1941 telephone may fri 277 3 999 0 nonexistent
## 1951 telephone may fri 86 4 999 0 nonexistent
## 1963 telephone may fri 284 4 999 0 nonexistent
## 1964 telephone may fri 166 3 999 0 nonexistent
## 1968 telephone may fri 328 7 999 0 nonexistent
## 1972 telephone may fri 153 4 999 0 nonexistent
## 1974 telephone may fri 91 3 999 0 nonexistent
## 1976 telephone may fri 257 3 999 0 nonexistent
## 1979 telephone may fri 35 3 999 0 nonexistent
## 1980 telephone may fri 83 3 999 0 nonexistent
## 1984 telephone may fri 277 3 999 0 nonexistent
## 1988 telephone may mon 149 6 999 0 nonexistent
## 2001 telephone may mon 1002 5 999 0 nonexistent
## 2010 telephone may mon 399 3 999 0 nonexistent
## 2012 telephone may mon 115 4 999 0 nonexistent
## 2018 telephone may mon 88 5 999 0 nonexistent
## 2027 telephone may mon 396 3 999 0 nonexistent
## 2031 telephone may mon 252 4 999 0 nonexistent
## 2038 telephone may mon 117 2 999 0 nonexistent
## 2041 telephone may mon 145 1 999 0 nonexistent
## 2047 telephone may mon 33 2 999 0 nonexistent
## 2056 telephone may mon 325 3 999 0 nonexistent
## 2062 telephone may mon 102 1 999 0 nonexistent
## 2067 telephone may mon 113 3 999 0 nonexistent
## 2077 telephone may mon 1147 2 999 0 nonexistent
## 2084 telephone may mon 125 1 999 0 nonexistent
## 2092 telephone may mon 239 4 999 0 nonexistent
## 2094 telephone may mon 165 4 999 0 nonexistent
## 2096 telephone may mon 63 3 999 0 nonexistent
## 2105 telephone may mon 1111 3 999 0 nonexistent
## 2107 telephone may mon 322 1 999 0 nonexistent
## 2109 telephone may mon 146 3 999 0 nonexistent
## 2112 telephone may mon 593 2 999 0 nonexistent
## 2114 telephone may mon 379 2 999 0 nonexistent
## 2129 telephone may mon 326 1 999 0 nonexistent
## 2130 telephone may mon 507 1 999 0 nonexistent
## 2132 telephone may mon 123 2 999 0 nonexistent
## 2138 telephone may mon 200 2 999 0 nonexistent
## 2140 telephone may mon 163 4 999 0 nonexistent
## 2141 telephone may mon 391 1 999 0 nonexistent
## 2146 telephone may mon 460 1 999 0 nonexistent
## 2149 telephone may mon 413 1 999 0 nonexistent
## 2150 telephone may mon 574 6 999 0 nonexistent
## 2151 telephone may mon 256 4 999 0 nonexistent
## 2155 telephone may mon 170 2 999 0 nonexistent
## 2157 telephone may mon 577 1 999 0 nonexistent
## 2166 telephone may mon 72 2 999 0 nonexistent
## 2178 telephone may mon 86 4 999 0 nonexistent
## 2181 telephone may mon 155 3 999 0 nonexistent
## 2183 telephone may mon 63 5 999 0 nonexistent
## 2184 telephone may mon 236 10 999 0 nonexistent
## 2200 telephone may mon 456 6 999 0 nonexistent
## 2204 telephone may mon 184 4 999 0 nonexistent
## 2205 telephone may mon 177 4 999 0 nonexistent
## 2208 telephone may mon 93 4 999 0 nonexistent
## 2222 telephone may mon 78 3 999 0 nonexistent
## 2225 telephone may mon 303 3 999 0 nonexistent
## 2228 telephone may mon 95 3 999 0 nonexistent
## 2230 telephone may mon 84 3 999 0 nonexistent
## 2233 telephone may mon 162 4 999 0 nonexistent
## 2236 telephone may mon 185 4 999 0 nonexistent
## 2237 telephone may mon 212 5 999 0 nonexistent
## 2244 telephone may mon 249 4 999 0 nonexistent
## 2252 telephone may tue 530 7 999 0 nonexistent
## 2253 telephone may tue 160 3 999 0 nonexistent
## 2254 telephone may tue 176 4 999 0 nonexistent
## 2264 telephone may tue 147 1 999 0 nonexistent
## 2270 telephone may tue 71 1 999 0 nonexistent
## 2279 telephone may tue 66 1 999 0 nonexistent
## 2291 telephone may tue 375 1 999 0 nonexistent
## 2293 telephone may tue 178 2 999 0 nonexistent
## 2295 telephone may tue 1386 1 999 0 nonexistent
## 2308 telephone may tue 154 1 999 0 nonexistent
## 2310 telephone may tue 229 1 999 0 nonexistent
## 2312 telephone may tue 210 1 999 0 nonexistent
## 2319 telephone may tue 106 1 999 0 nonexistent
## 2326 telephone may tue 106 1 999 0 nonexistent
## 2327 telephone may tue 93 1 999 0 nonexistent
## 2332 telephone may tue 217 1 999 0 nonexistent
## 2334 telephone may tue 227 4 999 0 nonexistent
## 2342 telephone may tue 170 1 999 0 nonexistent
## 2343 telephone may tue 705 1 999 0 nonexistent
## 2346 telephone may tue 226 1 999 0 nonexistent
## 2348 telephone may tue 174 1 999 0 nonexistent
## 2350 telephone may tue 373 1 999 0 nonexistent
## 2355 telephone may tue 136 1 999 0 nonexistent
## 2364 telephone may tue 150 2 999 0 nonexistent
## 2370 telephone may tue 325 1 999 0 nonexistent
## 2375 telephone may tue 93 1 999 0 nonexistent
## 2385 telephone may tue 94 1 999 0 nonexistent
## 2386 telephone may tue 122 1 999 0 nonexistent
## 2387 telephone may tue 334 1 999 0 nonexistent
## 2389 telephone may tue 202 1 999 0 nonexistent
## 2394 telephone may tue 806 1 999 0 nonexistent
## 2400 telephone may tue 128 2 999 0 nonexistent
## 2412 telephone may tue 188 2 999 0 nonexistent
## 2414 telephone may tue 131 1 999 0 nonexistent
## 2420 telephone may tue 60 1 999 0 nonexistent
## 2424 telephone may tue 82 1 999 0 nonexistent
## 2427 telephone may tue 106 1 999 0 nonexistent
## 2443 telephone may tue 129 1 999 0 nonexistent
## 2445 telephone may tue 1001 4 999 0 nonexistent
## 2449 telephone may tue 194 2 999 0 nonexistent
## 2451 telephone may tue 208 1 999 0 nonexistent
## 2457 telephone may tue 124 2 999 0 nonexistent
## 2460 telephone may tue 813 2 999 0 nonexistent
## 2468 telephone may tue 443 1 999 0 nonexistent
## 2469 telephone may tue 225 2 999 0 nonexistent
## 2485 telephone may tue 19 9 999 0 nonexistent
## 2487 telephone may tue 211 3 999 0 nonexistent
## 2492 telephone may tue 172 2 999 0 nonexistent
## 2500 telephone may tue 473 1 999 0 nonexistent
## 2501 telephone may tue 245 4 999 0 nonexistent
## 2503 telephone may tue 123 1 999 0 nonexistent
## 2508 telephone may tue 318 2 999 0 nonexistent
## 2516 telephone may tue 271 1 999 0 nonexistent
## 2521 telephone may tue 162 4 999 0 nonexistent
## 2531 telephone may tue 342 2 999 0 nonexistent
## 2533 telephone may tue 378 1 999 0 nonexistent
## 2534 telephone may tue 190 1 999 0 nonexistent
## 2537 telephone may tue 131 1 999 0 nonexistent
## 2541 telephone may tue 280 1 999 0 nonexistent
## 2548 telephone may tue 226 1 999 0 nonexistent
## 2551 telephone may tue 141 4 999 0 nonexistent
## 2560 telephone may tue 142 2 999 0 nonexistent
## 2564 telephone may tue 531 2 999 0 nonexistent
## 2566 telephone may tue 788 3 999 0 nonexistent
## 2572 telephone may tue 73 3 999 0 nonexistent
## 2576 telephone may tue 1052 1 999 0 nonexistent
## 2579 telephone may tue 163 2 999 0 nonexistent
## 2585 telephone may tue 134 2 999 0 nonexistent
## 2586 telephone may tue 185 6 999 0 nonexistent
## 2587 telephone may tue 295 2 999 0 nonexistent
## 2593 telephone may tue 139 4 999 0 nonexistent
## 2597 telephone may tue 566 2 999 0 nonexistent
## 2600 telephone may tue 220 2 999 0 nonexistent
## 2620 telephone may tue 318 2 999 0 nonexistent
## 2621 telephone may tue 109 9 999 0 nonexistent
## 2628 telephone may tue 273 2 999 0 nonexistent
## 2632 telephone may tue 69 19 999 0 nonexistent
## 2636 telephone may tue 945 2 999 0 nonexistent
## 2642 telephone may tue 72 4 999 0 nonexistent
## 2646 telephone may tue 1721 2 999 0 nonexistent
## 2647 telephone may tue 351 2 999 0 nonexistent
## 2660 telephone may wed 96 4 999 0 nonexistent
## 2663 telephone may wed 332 2 999 0 nonexistent
## 2664 telephone may wed 735 8 999 0 nonexistent
## 2674 telephone may wed 22 3 999 0 nonexistent
## 2675 telephone may wed 328 4 999 0 nonexistent
## 2688 telephone may wed 101 2 999 0 nonexistent
## 2694 telephone may wed 162 1 999 0 nonexistent
## 2698 telephone may wed 476 1 999 0 nonexistent
## 2702 telephone may wed 188 1 999 0 nonexistent
## 2704 telephone may wed 163 3 999 0 nonexistent
## 2705 telephone may wed 27 1 999 0 nonexistent
## 2711 telephone may wed 82 7 999 0 nonexistent
## 2716 telephone may wed 230 1 999 0 nonexistent
## 2722 telephone may wed 421 1 999 0 nonexistent
## 2723 telephone may wed 278 1 999 0 nonexistent
## 2726 telephone may wed 110 2 999 0 nonexistent
## 2732 telephone may wed 217 1 999 0 nonexistent
## 2742 telephone may wed 92 1 999 0 nonexistent
## 2749 telephone may wed 300 1 999 0 nonexistent
## 2750 telephone may wed 203 1 999 0 nonexistent
## 2752 telephone may wed 534 1 999 0 nonexistent
## 2754 telephone may wed 230 1 999 0 nonexistent
## 2755 telephone may wed 127 3 999 0 nonexistent
## 2764 telephone may wed 1321 2 999 0 nonexistent
## 2766 telephone may wed 96 1 999 0 nonexistent
## 2771 telephone may wed 164 2 999 0 nonexistent
## 2772 telephone may wed 166 1 999 0 nonexistent
## 2777 telephone may wed 87 1 999 0 nonexistent
## 2778 telephone may wed 97 1 999 0 nonexistent
## 2783 telephone may wed 122 1 999 0 nonexistent
## 2784 telephone may wed 262 1 999 0 nonexistent
## 2789 telephone may wed 159 1 999 0 nonexistent
## 2798 telephone may wed 351 1 999 0 nonexistent
## 2800 telephone may wed 249 2 999 0 nonexistent
## 2813 telephone may wed 58 1 999 0 nonexistent
## 2818 telephone may wed 34 1 999 0 nonexistent
## 2819 telephone may wed 153 2 999 0 nonexistent
## 2824 telephone may wed 322 1 999 0 nonexistent
## 2829 telephone may wed 180 1 999 0 nonexistent
## 2839 telephone may wed 125 1 999 0 nonexistent
## 2840 telephone may wed 225 1 999 0 nonexistent
## 2841 telephone may wed 829 1 999 0 nonexistent
## 2844 telephone may wed 407 2 999 0 nonexistent
## 2851 telephone may wed 191 2 999 0 nonexistent
## 2858 telephone may wed 248 2 999 0 nonexistent
## 2861 telephone may wed 136 8 999 0 nonexistent
## 2863 telephone may wed 225 2 999 0 nonexistent
## 2866 telephone may wed 784 1 999 0 nonexistent
## 2869 telephone may wed 160 2 999 0 nonexistent
## 2877 telephone may wed 117 1 999 0 nonexistent
## 2879 telephone may wed 350 2 999 0 nonexistent
## 2885 telephone may wed 416 2 999 0 nonexistent
## 2886 telephone may wed 102 2 999 0 nonexistent
## 2889 telephone may wed 138 2 999 0 nonexistent
## 2892 telephone may wed 251 2 999 0 nonexistent
## 2893 telephone may wed 75 1 999 0 nonexistent
## 2903 telephone may wed 144 1 999 0 nonexistent
## 2904 telephone may wed 380 4 999 0 nonexistent
## 2906 telephone may wed 927 1 999 0 nonexistent
## 2914 telephone may wed 217 1 999 0 nonexistent
## 2915 telephone may wed 762 2 999 0 nonexistent
## 2925 telephone may wed 115 3 999 0 nonexistent
## 2927 telephone may wed 274 6 999 0 nonexistent
## 2935 telephone may wed 392 1 999 0 nonexistent
## 2962 telephone may wed 142 3 999 0 nonexistent
## 2970 telephone may wed 183 2 999 0 nonexistent
## 2971 telephone may wed 634 10 999 0 nonexistent
## 2977 telephone may wed 191 1 999 0 nonexistent
## 2982 telephone may wed 17 18 999 0 nonexistent
## 2983 telephone may wed 546 1 999 0 nonexistent
## 2984 telephone may wed 554 1 999 0 nonexistent
## 2996 telephone may wed 21 11 999 0 nonexistent
## 2997 telephone may wed 246 4 999 0 nonexistent
## 2998 telephone may wed 141 2 999 0 nonexistent
## 3001 telephone may wed 402 1 999 0 nonexistent
## 3003 telephone may wed 360 2 999 0 nonexistent
## 3010 telephone may wed 154 2 999 0 nonexistent
## 3016 telephone may wed 594 2 999 0 nonexistent
## 3018 telephone may wed 166 3 999 0 nonexistent
## 3021 telephone may wed 636 6 999 0 nonexistent
## 3022 telephone may wed 341 5 999 0 nonexistent
## 3029 telephone may wed 370 2 999 0 nonexistent
## 3040 telephone may wed 254 2 999 0 nonexistent
## 3045 telephone may wed 208 5 999 0 nonexistent
## 3047 telephone may wed 187 4 999 0 nonexistent
## 3051 telephone may wed 256 4 999 0 nonexistent
## 3059 telephone may wed 143 3 999 0 nonexistent
## 3061 telephone may wed 37 3 999 0 nonexistent
## 3064 telephone may wed 187 3 999 0 nonexistent
## 3065 telephone may wed 364 3 999 0 nonexistent
## 3069 telephone may wed 159 2 999 0 nonexistent
## 3074 telephone may thu 176 2 999 0 nonexistent
## 3075 telephone may thu 179 2 999 0 nonexistent
## 3086 telephone may thu 90 3 999 0 nonexistent
## 3094 telephone may thu 243 1 999 0 nonexistent
## 3095 telephone may thu 391 2 999 0 nonexistent
## 3099 telephone may thu 125 4 999 0 nonexistent
## 3101 telephone may thu 312 6 999 0 nonexistent
## 3103 telephone may thu 70 1 999 0 nonexistent
## 3105 telephone may thu 135 1 999 0 nonexistent
## 3109 telephone may thu 259 1 999 0 nonexistent
## 3111 telephone may thu 189 1 999 0 nonexistent
## 3112 telephone may thu 263 1 999 0 nonexistent
## 3113 telephone may thu 415 7 999 0 nonexistent
## 3114 telephone may thu 746 1 999 0 nonexistent
## 3121 telephone may thu 62 1 999 0 nonexistent
## 3122 telephone may thu 139 2 999 0 nonexistent
## 3123 telephone may thu 150 1 999 0 nonexistent
## 3125 telephone may thu 367 2 999 0 nonexistent
## 3126 telephone may thu 325 1 999 0 nonexistent
## 3136 telephone may thu 55 1 999 0 nonexistent
## 3141 telephone may thu 173 1 999 0 nonexistent
## 3144 telephone may thu 558 6 999 0 nonexistent
## 3145 telephone may thu 1088 2 999 0 nonexistent
## 3147 telephone may thu 41 1 999 0 nonexistent
## 3152 telephone may thu 113 1 999 0 nonexistent
## 3157 telephone may thu 504 3 999 0 nonexistent
## 3158 telephone may thu 206 1 999 0 nonexistent
## 3161 telephone may thu 303 1 999 0 nonexistent
## 3162 telephone may thu 109 1 999 0 nonexistent
## 3166 telephone may thu 241 2 999 0 nonexistent
## 3169 telephone may thu 178 1 999 0 nonexistent
## 3186 telephone may thu 397 1 999 0 nonexistent
## 3192 telephone may thu 1000 1 999 0 nonexistent
## 3196 telephone may thu 165 1 999 0 nonexistent
## 3200 telephone may thu 127 1 999 0 nonexistent
## 3203 telephone may thu 202 3 999 0 nonexistent
## 3206 telephone may thu 285 1 999 0 nonexistent
## 3213 telephone may thu 207 1 999 0 nonexistent
## 3219 telephone may thu 139 1 999 0 nonexistent
## 3220 telephone may thu 651 23 999 0 nonexistent
## 3223 telephone may thu 120 1 999 0 nonexistent
## 3232 telephone may thu 229 1 999 0 nonexistent
## 3241 telephone may thu 182 1 999 0 nonexistent
## 3245 telephone may thu 176 13 999 0 nonexistent
## 3247 telephone may thu 297 3 999 0 nonexistent
## 3250 telephone may thu 334 3 999 0 nonexistent
## 3269 telephone may thu 133 1 999 0 nonexistent
## 3273 telephone may thu 215 2 999 0 nonexistent
## 3274 telephone may thu 299 1 999 0 nonexistent
## 3275 telephone may thu 160 1 999 0 nonexistent
## 3276 telephone may thu 172 4 999 0 nonexistent
## 3280 telephone may thu 477 1 999 0 nonexistent
## 3285 telephone may thu 236 3 999 0 nonexistent
## 3287 telephone may thu 104 2 999 0 nonexistent
## 3289 telephone may thu 51 5 999 0 nonexistent
## 3304 telephone may thu 73 1 999 0 nonexistent
## 3305 telephone may thu 71 2 999 0 nonexistent
## 3313 telephone may thu 98 1 999 0 nonexistent
## 3318 telephone may thu 597 1 999 0 nonexistent
## 3325 telephone may thu 133 2 999 0 nonexistent
## 3326 telephone may thu 504 5 999 0 nonexistent
## 3327 telephone may thu 192 3 999 0 nonexistent
## 3329 telephone may thu 51 1 999 0 nonexistent
## 3330 telephone may thu 178 1 999 0 nonexistent
## 3332 telephone may thu 224 1 999 0 nonexistent
## 3336 telephone may thu 134 1 999 0 nonexistent
## 3347 telephone may thu 76 3 999 0 nonexistent
## 3348 telephone may thu 176 2 999 0 nonexistent
## 3361 telephone may thu 84 14 999 0 nonexistent
## 3368 telephone may thu 444 1 999 0 nonexistent
## 3372 telephone may thu 334 10 999 0 nonexistent
## 3375 telephone may thu 279 9 999 0 nonexistent
## 3384 telephone may thu 100 4 999 0 nonexistent
## 3388 telephone may thu 438 2 999 0 nonexistent
## 3407 telephone may thu 155 2 999 0 nonexistent
## 3409 telephone may thu 619 4 999 0 nonexistent
## 3411 telephone may thu 515 2 999 0 nonexistent
## 3420 telephone may thu 276 3 999 0 nonexistent
## 3428 telephone may thu 1867 6 999 0 nonexistent
## 3436 telephone may thu 284 5 999 0 nonexistent
## 3438 telephone may thu 92 3 999 0 nonexistent
## 3439 telephone may thu 17 25 999 0 nonexistent
## 3440 telephone may thu 422 2 999 0 nonexistent
## 3445 telephone may thu 770 2 999 0 nonexistent
## 3449 telephone may thu 136 3 999 0 nonexistent
## 3451 telephone may thu 129 1 999 0 nonexistent
## 3452 telephone may thu 257 7 999 0 nonexistent
## 3454 telephone may thu 697 3 999 0 nonexistent
## 3459 telephone may thu 101 3 999 0 nonexistent
## 3479 telephone may thu 95 6 999 0 nonexistent
## 3488 telephone may thu 278 4 999 0 nonexistent
## 3491 telephone may thu 391 3 999 0 nonexistent
## 3498 telephone may thu 311 3 999 0 nonexistent
## 3511 telephone may thu 98 2 999 0 nonexistent
## 3514 telephone may thu 65 7 999 0 nonexistent
## 3519 telephone may thu 178 2 999 0 nonexistent
## 3521 telephone may thu 491 2 999 0 nonexistent
## 3526 telephone may fri 246 2 999 0 nonexistent
## 3529 telephone may fri 336 2 999 0 nonexistent
## 3533 telephone may fri 597 17 999 0 nonexistent
## 3538 telephone may fri 159 1 999 0 nonexistent
## 3543 telephone may fri 144 1 999 0 nonexistent
## 3545 telephone may fri 512 1 999 0 nonexistent
## 3547 telephone may fri 247 1 999 0 nonexistent
## 3550 telephone may fri 144 4 999 0 nonexistent
## 3557 telephone may fri 286 1 999 0 nonexistent
## 3562 telephone may fri 212 1 999 0 nonexistent
## 3564 telephone may fri 111 1 999 0 nonexistent
## 3565 telephone may fri 803 1 999 0 nonexistent
## 3568 telephone may fri 297 1 999 0 nonexistent
## 3569 telephone may fri 529 4 999 0 nonexistent
## 3573 telephone may fri 249 1 999 0 nonexistent
## 3579 telephone may fri 118 2 999 0 nonexistent
## 3583 telephone may fri 132 1 999 0 nonexistent
## 3585 telephone may fri 130 4 999 0 nonexistent
## 3586 telephone may fri 627 1 999 0 nonexistent
## 3587 telephone may fri 207 1 999 0 nonexistent
## 3594 telephone may fri 86 1 999 0 nonexistent
## 3595 telephone may fri 731 4 999 0 nonexistent
## 3597 telephone may fri 46 1 999 0 nonexistent
## 3602 telephone may fri 274 2 999 0 nonexistent
## 3603 telephone may fri 355 2 999 0 nonexistent
## 3604 telephone may fri 149 1 999 0 nonexistent
## 3611 telephone may fri 125 1 999 0 nonexistent
## 3622 telephone may fri 145 1 999 0 nonexistent
## 3626 telephone may fri 132 1 999 0 nonexistent
## 3627 telephone may fri 117 1 999 0 nonexistent
## 3633 telephone may fri 211 2 999 0 nonexistent
## 3635 telephone may fri 203 1 999 0 nonexistent
## 3639 telephone may fri 136 1 999 0 nonexistent
## 3646 telephone may fri 360 1 999 0 nonexistent
## 3652 telephone may fri 306 1 999 0 nonexistent
## 3655 telephone may fri 265 1 999 0 nonexistent
## 3659 telephone may fri 424 1 999 0 nonexistent
## 3661 telephone may fri 123 1 999 0 nonexistent
## 3665 telephone may fri 141 1 999 0 nonexistent
## 3668 telephone may fri 317 1 999 0 nonexistent
## 3671 telephone may fri 107 1 999 0 nonexistent
## 3674 telephone may fri 576 1 999 0 nonexistent
## 3676 telephone may fri 161 3 999 0 nonexistent
## 3677 telephone may fri 206 2 999 0 nonexistent
## 3678 telephone may fri 619 2 999 0 nonexistent
## 3682 telephone may fri 38 2 999 0 nonexistent
## 3694 telephone may fri 912 1 999 0 nonexistent
## 3700 telephone may fri 323 4 999 0 nonexistent
## 3708 telephone may fri 865 1 999 0 nonexistent
## 3710 telephone may fri 215 1 999 0 nonexistent
## 3714 telephone may fri 197 1 999 0 nonexistent
## 3726 telephone may fri 121 1 999 0 nonexistent
## 3729 telephone may fri 229 1 999 0 nonexistent
## 3741 telephone may fri 897 1 999 0 nonexistent
## 3744 telephone may fri 90 2 999 0 nonexistent
## 3753 telephone may fri 239 3 999 0 nonexistent
## 3755 telephone may fri 323 1 999 0 nonexistent
## 3765 telephone may fri 136 1 999 0 nonexistent
## 3766 telephone may fri 1161 3 999 0 nonexistent
## 3770 telephone may fri 168 2 999 0 nonexistent
## 3772 telephone may fri 194 3 999 0 nonexistent
## 3784 telephone may fri 788 2 999 0 nonexistent
## 3786 telephone may fri 14 15 999 0 nonexistent
## 3793 telephone may fri 304 2 999 0 nonexistent
## 3794 telephone may fri 315 3 999 0 nonexistent
## 3812 telephone may fri 84 4 999 0 nonexistent
## 3819 telephone may fri 243 3 999 0 nonexistent
## 3821 telephone may fri 131 4 999 0 nonexistent
## 3823 telephone may fri 1135 2 999 0 nonexistent
## 3824 telephone may fri 1106 3 999 0 nonexistent
## 3835 telephone may fri 160 6 999 0 nonexistent
## 3838 telephone may fri 476 3 999 0 nonexistent
## 3843 telephone may fri 541 5 999 0 nonexistent
## 3844 telephone may fri 227 2 999 0 nonexistent
## 3848 telephone may fri 255 3 999 0 nonexistent
## 3852 telephone may fri 851 2 999 0 nonexistent
## 3855 telephone may fri 1193 5 999 0 nonexistent
## 3856 telephone may fri 1144 3 999 0 nonexistent
## 3869 telephone may fri 1245 19 999 0 nonexistent
## 3870 telephone may fri 498 2 999 0 nonexistent
## 3871 telephone may fri 134 4 999 0 nonexistent
## 3875 telephone may fri 237 3 999 0 nonexistent
## 3885 telephone may fri 107 3 999 0 nonexistent
## 3900 telephone may mon 105 2 999 0 nonexistent
## 3907 telephone may mon 55 3 999 0 nonexistent
## 3918 telephone may mon 128 1 999 0 nonexistent
## 3921 telephone may mon 668 7 999 0 nonexistent
## 3924 telephone may mon 358 3 999 0 nonexistent
## 3929 telephone may mon 131 2 999 0 nonexistent
## 3930 telephone may mon 71 1 999 0 nonexistent
## 3943 telephone may mon 124 1 999 0 nonexistent
## 3949 telephone may mon 144 2 999 0 nonexistent
## 3954 telephone may mon 385 1 999 0 nonexistent
## 3957 telephone may mon 95 1 999 0 nonexistent
## 3960 telephone may mon 112 1 999 0 nonexistent
## 3966 telephone may mon 268 6 999 0 nonexistent
## 3969 telephone may mon 241 1 999 0 nonexistent
## 3971 telephone may mon 27 1 999 0 nonexistent
## 3979 telephone may mon 135 1 999 0 nonexistent
## 3984 telephone may mon 259 3 999 0 nonexistent
## 3991 telephone may mon 168 1 999 0 nonexistent
## 3994 telephone may mon 85 4 999 0 nonexistent
## 3996 telephone may mon 115 1 999 0 nonexistent
## 4003 telephone may mon 179 1 999 0 nonexistent
## 4005 telephone may mon 107 2 999 0 nonexistent
## 4011 telephone may mon 238 3 999 0 nonexistent
## 4012 telephone may mon 81 1 999 0 nonexistent
## 4018 telephone may mon 48 2 999 0 nonexistent
## 4019 telephone may mon 104 2 999 0 nonexistent
## 4020 telephone may mon 610 1 999 0 nonexistent
## 4028 telephone may mon 23 1 999 0 nonexistent
## 4033 telephone may mon 158 2 999 0 nonexistent
## 4038 telephone may mon 214 3 999 0 nonexistent
## 4044 telephone may mon 222 2 999 0 nonexistent
## 4052 telephone may mon 128 1 999 0 nonexistent
## 4055 telephone may mon 364 1 999 0 nonexistent
## 4066 telephone may mon 259 1 999 0 nonexistent
## 4075 telephone may mon 115 4 999 0 nonexistent
## 4076 telephone may mon 147 3 999 0 nonexistent
## 4077 telephone may mon 102 1 999 0 nonexistent
## 4082 telephone may mon 643 1 999 0 nonexistent
## 4083 telephone may mon 78 1 999 0 nonexistent
## 4091 telephone may mon 104 1 999 0 nonexistent
## 4093 telephone may mon 571 1 999 0 nonexistent
## 4112 telephone may mon 345 1 999 0 nonexistent
## 4113 telephone may mon 263 1 999 0 nonexistent
## 4114 telephone may mon 88 6 999 0 nonexistent
## 4124 telephone may mon 147 1 999 0 nonexistent
## 4130 telephone may mon 420 1 999 0 nonexistent
## 4136 telephone may mon 182 2 999 0 nonexistent
## 4142 telephone may mon 215 3 999 0 nonexistent
## 4143 telephone may mon 194 5 999 0 nonexistent
## 4145 telephone may mon 5 2 999 0 nonexistent
## 4148 telephone may mon 210 2 999 0 nonexistent
## 4151 telephone may mon 8 2 999 0 nonexistent
## 4152 telephone may mon 313 2 999 0 nonexistent
## 4153 telephone may mon 1622 2 999 0 nonexistent
## 4158 telephone may mon 86 7 999 0 nonexistent
## 4169 telephone may mon 124 42 999 0 nonexistent
## 4172 telephone may mon 211 2 999 0 nonexistent
## 4177 telephone may mon 99 22 999 0 nonexistent
## 4181 telephone may mon 235 7 999 0 nonexistent
## 4185 telephone may mon 147 2 999 0 nonexistent
## 4189 telephone may mon 492 9 999 0 nonexistent
## 4192 telephone may mon 97 9 999 0 nonexistent
## 4193 telephone may mon 84 3 999 0 nonexistent
## 4198 telephone may mon 467 4 999 0 nonexistent
## 4200 telephone may mon 470 4 999 0 nonexistent
## 4201 telephone may mon 85 3 999 0 nonexistent
## 4202 telephone may mon 120 7 999 0 nonexistent
## 4204 telephone may mon 249 2 999 0 nonexistent
## 4205 telephone may mon 87 5 999 0 nonexistent
## 4206 telephone may mon 622 2 999 0 nonexistent
## 4225 telephone may tue 182 1 999 0 nonexistent
## 4229 telephone may tue 16 10 999 0 nonexistent
## 4232 telephone may tue 184 1 999 0 nonexistent
## 4236 telephone may tue 224 1 999 0 nonexistent
## 4240 telephone may tue 280 1 999 0 nonexistent
## 4244 telephone may tue 409 2 999 0 nonexistent
## 4247 telephone may tue 226 1 999 0 nonexistent
## 4250 telephone may tue 13 12 999 0 nonexistent
## 4255 telephone may tue 206 1 999 0 nonexistent
## 4256 telephone may tue 202 1 999 0 nonexistent
## 4257 telephone may tue 79 1 999 0 nonexistent
## 4262 telephone may tue 234 5 999 0 nonexistent
## 4264 telephone may tue 297 1 999 0 nonexistent
## 4291 telephone may tue 274 1 999 0 nonexistent
## 4292 telephone may tue 214 1 999 0 nonexistent
## 4296 telephone may tue 71 1 999 0 nonexistent
## 4302 telephone may tue 394 1 999 0 nonexistent
## 4309 telephone may tue 110 1 999 0 nonexistent
## 4312 telephone may tue 265 1 999 0 nonexistent
## 4314 telephone may tue 345 1 999 0 nonexistent
## 4328 telephone may tue 100 1 999 0 nonexistent
## 4331 telephone may tue 66 2 999 0 nonexistent
## 4344 telephone may tue 81 2 999 0 nonexistent
## 4345 telephone may tue 40 1 999 0 nonexistent
## 4347 telephone may tue 137 1 999 0 nonexistent
## 4355 telephone may tue 284 1 999 0 nonexistent
## 4360 telephone may tue 318 3 999 0 nonexistent
## 4363 telephone may tue 411 1 999 0 nonexistent
## 4364 telephone may tue 85 1 999 0 nonexistent
## 4368 telephone may tue 102 2 999 0 nonexistent
## 4369 telephone may tue 869 2 999 0 nonexistent
## 4373 telephone may tue 253 1 999 0 nonexistent
## 4381 telephone may tue 24 1 999 0 nonexistent
## 4386 telephone may tue 140 1 999 0 nonexistent
## 4390 telephone may tue 274 2 999 0 nonexistent
## 4397 telephone may tue 139 2 999 0 nonexistent
## 4401 telephone may tue 61 2 999 0 nonexistent
## 4402 telephone may tue 246 3 999 0 nonexistent
## 4404 telephone may tue 347 6 999 0 nonexistent
## 4413 telephone may tue 610 2 999 0 nonexistent
## 4426 telephone may tue 195 10 999 0 nonexistent
## 4428 telephone may tue 194 1 999 0 nonexistent
## 4431 telephone may tue 296 1 999 0 nonexistent
## 4432 telephone may tue 201 1 999 0 nonexistent
## 4435 telephone may tue 76 1 999 0 nonexistent
## 4436 telephone may tue 79 1 999 0 nonexistent
## 4445 telephone may tue 261 1 999 0 nonexistent
## 4446 telephone may tue 131 1 999 0 nonexistent
## 4450 telephone may tue 324 1 999 0 nonexistent
## 4454 telephone may tue 697 2 999 0 nonexistent
## 4459 telephone may tue 378 3 999 0 nonexistent
## 4471 telephone may tue 188 3 999 0 nonexistent
## 4480 telephone may tue 1045 1 999 0 nonexistent
## 4482 telephone may tue 205 2 999 0 nonexistent
## 4491 telephone may tue 134 3 999 0 nonexistent
## 4504 telephone may tue 60 6 999 0 nonexistent
## 4505 telephone may tue 99 1 999 0 nonexistent
## 4506 telephone may tue 26 14 999 0 nonexistent
## 4514 telephone may tue 201 4 999 0 nonexistent
## 4518 telephone may tue 88 1 999 0 nonexistent
## 4519 telephone may tue 147 2 999 0 nonexistent
## 4532 telephone may tue 165 2 999 0 nonexistent
## 4534 telephone may tue 202 3 999 0 nonexistent
## 4541 telephone may tue 304 2 999 0 nonexistent
## 4549 telephone may tue 266 2 999 0 nonexistent
## 4558 telephone may tue 70 4 999 0 nonexistent
## 4564 telephone may tue 191 7 999 0 nonexistent
## 4565 telephone may tue 56 3 999 0 nonexistent
## 4567 telephone may tue 236 2 999 0 nonexistent
## 4572 telephone may tue 221 2 999 0 nonexistent
## 4581 telephone may tue 175 2 999 0 nonexistent
## 4585 telephone may tue 203 2 999 0 nonexistent
## 4590 telephone may tue 340 3 999 0 nonexistent
## 4593 telephone may tue 165 2 999 0 nonexistent
## 4605 telephone may tue 214 1 999 0 nonexistent
## 4611 telephone may tue 441 9 999 0 nonexistent
## 4613 telephone may tue 213 3 999 0 nonexistent
## 4620 telephone may tue 117 1 999 0 nonexistent
## 4624 telephone may tue 719 1 999 0 nonexistent
## 4632 telephone may wed 369 1 999 0 nonexistent
## 4637 telephone may wed 336 1 999 0 nonexistent
## 4639 telephone may wed 93 1 999 0 nonexistent
## 4648 telephone may wed 339 1 999 0 nonexistent
## 4654 telephone may wed 173 1 999 0 nonexistent
## 4655 telephone may wed 222 1 999 0 nonexistent
## 4657 telephone may wed 262 2 999 0 nonexistent
## 4661 telephone may wed 43 1 999 0 nonexistent
## 4670 telephone may wed 432 1 999 0 nonexistent
## 4672 telephone may wed 361 1 999 0 nonexistent
## 4675 telephone may wed 139 1 999 0 nonexistent
## 4683 telephone may wed 236 1 999 0 nonexistent
## 4685 telephone may wed 123 1 999 0 nonexistent
## 4687 telephone may wed 86 1 999 0 nonexistent
## 4689 telephone may wed 139 2 999 0 nonexistent
## 4691 telephone may wed 508 1 999 0 nonexistent
## 4692 telephone may wed 139 1 999 0 nonexistent
## 4713 telephone may wed 350 1 999 0 nonexistent
## 4716 telephone may wed 261 1 999 0 nonexistent
## 4718 telephone may wed 641 1 999 0 nonexistent
## 4719 telephone may wed 71 1 999 0 nonexistent
## 4729 telephone may wed 151 2 999 0 nonexistent
## 4734 telephone may wed 759 1 999 0 nonexistent
## 4736 telephone may wed 445 2 999 0 nonexistent
## 4745 telephone may wed 290 2 999 0 nonexistent
## 4753 telephone may wed 412 1 999 0 nonexistent
## 4754 telephone may wed 264 1 999 0 nonexistent
## 4769 telephone may wed 502 1 999 0 nonexistent
## 4777 telephone may wed 103 2 999 0 nonexistent
## 4779 telephone may wed 229 2 999 0 nonexistent
## 4781 telephone may wed 61 1 999 0 nonexistent
## 4787 telephone may wed 726 1 999 0 nonexistent
## 4791 telephone may wed 250 2 999 0 nonexistent
## 4808 telephone may wed 240 1 999 0 nonexistent
## 4815 telephone may wed 212 2 999 0 nonexistent
## 4816 telephone may wed 57 2 999 0 nonexistent
## 4821 telephone may wed 383 2 999 0 nonexistent
## 4822 telephone may wed 184 9 999 0 nonexistent
## 4829 telephone may wed 233 1 999 0 nonexistent
## 4832 telephone may wed 260 1 999 0 nonexistent
## 4835 telephone may wed 207 1 999 0 nonexistent
## 4836 telephone may wed 226 1 999 0 nonexistent
## 4838 telephone may wed 104 1 999 0 nonexistent
## 4843 telephone may wed 492 1 999 0 nonexistent
## 4844 telephone may wed 485 1 999 0 nonexistent
## 4848 telephone may wed 836 12 999 0 nonexistent
## 4852 telephone may wed 506 2 999 0 nonexistent
## 4860 telephone may wed 371 1 999 0 nonexistent
## 4875 telephone may wed 164 2 999 0 nonexistent
## 4881 telephone may wed 1681 1 999 0 nonexistent
## 4884 telephone may wed 316 1 999 0 nonexistent
## 4889 telephone may wed 573 1 999 0 nonexistent
## 4894 telephone may wed 488 1 999 0 nonexistent
## 4907 telephone may wed 139 2 999 0 nonexistent
## 4908 telephone may wed 280 5 999 0 nonexistent
## 4915 telephone may wed 394 2 999 0 nonexistent
## 4920 telephone may wed 189 2 999 0 nonexistent
## 4932 telephone may wed 96 2 999 0 nonexistent
## 4933 telephone may wed 162 3 999 0 nonexistent
## 4941 telephone may wed 281 1 999 0 nonexistent
## 4947 telephone may wed 49 1 999 0 nonexistent
## 4955 telephone may wed 112 2 999 0 nonexistent
## 4965 telephone may wed 314 2 999 0 nonexistent
## 4970 telephone may wed 117 3 999 0 nonexistent
## 4978 telephone may wed 139 2 999 0 nonexistent
## 4979 telephone may wed 281 15 999 0 nonexistent
## 4980 telephone may wed 132 1 999 0 nonexistent
## 4984 telephone may wed 671 3 999 0 nonexistent
## 4988 telephone may wed 165 2 999 0 nonexistent
## 4994 telephone may wed 1161 4 999 0 nonexistent
## 5001 telephone may wed 254 3 999 0 nonexistent
## 5002 telephone may wed 131 2 999 0 nonexistent
## 5005 telephone may wed 713 4 999 0 nonexistent
## 5007 telephone may wed 260 5 999 0 nonexistent
## 5011 telephone may wed 433 3 999 0 nonexistent
## 5014 telephone may wed 214 3 999 0 nonexistent
## 5029 telephone may wed 135 2 999 0 nonexistent
## 5034 telephone may wed 293 2 999 0 nonexistent
## 5036 telephone may wed 339 10 999 0 nonexistent
## 5040 telephone may fri 219 4 999 0 nonexistent
## 5046 telephone may fri 158 3 999 0 nonexistent
## 5049 telephone may fri 48 5 999 0 nonexistent
## 5055 telephone may fri 253 2 999 0 nonexistent
## 5065 telephone may fri 92 1 999 0 nonexistent
## 5068 telephone may fri 346 1 999 0 nonexistent
## 5070 telephone may fri 203 1 999 0 nonexistent
## 5080 telephone may fri 132 1 999 0 nonexistent
## 5083 telephone may fri 107 1 999 0 nonexistent
## 5092 telephone may fri 412 6 999 0 nonexistent
## 5094 telephone may fri 90 1 999 0 nonexistent
## 5095 telephone may fri 145 4 999 0 nonexistent
## 5096 telephone may fri 203 1 999 0 nonexistent
## 5107 telephone may fri 154 1 999 0 nonexistent
## 5113 telephone may fri 1073 1 999 0 nonexistent
## 5121 telephone may fri 425 1 999 0 nonexistent
## 5130 telephone may fri 360 1 999 0 nonexistent
## 5137 telephone may fri 256 1 999 0 nonexistent
## 5140 telephone may fri 415 1 999 0 nonexistent
## 5145 telephone may fri 297 1 999 0 nonexistent
## 5146 telephone may fri 191 1 999 0 nonexistent
## 5147 telephone may fri 58 1 999 0 nonexistent
## 5152 telephone may fri 135 2 999 0 nonexistent
## 5158 telephone may fri 293 2 999 0 nonexistent
## 5172 telephone may fri 391 1 999 0 nonexistent
## 5182 telephone may fri 911 2 999 0 nonexistent
## 5185 telephone may fri 160 2 999 0 nonexistent
## 5192 telephone may fri 99 3 999 0 nonexistent
## 5195 telephone may fri 230 1 999 0 nonexistent
## 5196 telephone may fri 438 1 999 0 nonexistent
## 5197 telephone may fri 35 1 999 0 nonexistent
## 5199 telephone may fri 463 2 999 0 nonexistent
## 5200 telephone may fri 252 1 999 0 nonexistent
## 5206 telephone may fri 81 1 999 0 nonexistent
## 5208 telephone may fri 153 1 999 0 nonexistent
## 5209 telephone may fri 65 1 999 0 nonexistent
## 5216 telephone may fri 118 1 999 0 nonexistent
## 5233 telephone may fri 281 2 999 0 nonexistent
## 5242 telephone may fri 496 4 999 0 nonexistent
## 5244 telephone may fri 122 5 999 0 nonexistent
## 5245 telephone may fri 59 3 999 0 nonexistent
## 5246 telephone may fri 258 5 999 0 nonexistent
## 5247 telephone may fri 110 1 999 0 nonexistent
## 5255 telephone may fri 71 1 999 0 nonexistent
## 5258 telephone may fri 456 2 999 0 nonexistent
## 5262 telephone may fri 148 2 999 0 nonexistent
## 5274 telephone may fri 1003 1 999 0 nonexistent
## 5284 telephone may fri 28 18 999 0 nonexistent
## 5285 telephone may fri 101 2 999 0 nonexistent
## 5293 telephone may fri 361 1 999 0 nonexistent
## 5295 telephone may fri 116 2 999 0 nonexistent
## 5296 telephone may fri 150 6 999 0 nonexistent
## 5299 telephone may fri 253 2 999 0 nonexistent
## 5309 telephone may fri 193 2 999 0 nonexistent
## 5310 telephone may fri 138 1 999 0 nonexistent
## 5315 telephone may fri 189 2 999 0 nonexistent
## 5322 telephone may fri 187 1 999 0 nonexistent
## 5323 telephone may fri 451 4 999 0 nonexistent
## 5325 telephone may fri 128 2 999 0 nonexistent
## 5327 telephone may fri 97 1 999 0 nonexistent
## 5328 telephone may fri 24 1 999 0 nonexistent
## 5329 telephone may fri 232 1 999 0 nonexistent
## 5330 telephone may fri 893 3 999 0 nonexistent
## 5349 telephone may fri 274 2 999 0 nonexistent
## 5350 telephone may fri 353 2 999 0 nonexistent
## 5353 telephone may fri 327 2 999 0 nonexistent
## 5356 telephone may fri 34 3 999 0 nonexistent
## 5357 telephone may fri 208 2 999 0 nonexistent
## 5358 telephone may fri 117 2 999 0 nonexistent
## 5361 telephone may fri 131 1 999 0 nonexistent
## 5362 telephone may fri 25 14 999 0 nonexistent
## 5368 telephone may fri 199 2 999 0 nonexistent
## 5376 telephone may fri 553 2 999 0 nonexistent
## 5379 telephone may fri 50 3 999 0 nonexistent
## 5380 telephone may fri 253 1 999 0 nonexistent
## 5394 telephone may fri 333 2 999 0 nonexistent
## 5402 telephone may fri 277 2 999 0 nonexistent
## 5407 telephone may fri 138 4 999 0 nonexistent
## 5419 telephone may fri 298 3 999 0 nonexistent
## 5422 telephone may fri 368 5 999 0 nonexistent
## 5428 telephone may fri 247 3 999 0 nonexistent
## 5433 telephone may fri 82 3 999 0 nonexistent
## 5459 telephone may fri 283 11 999 0 nonexistent
## 5464 telephone may fri 267 4 999 0 nonexistent
## 5471 telephone may fri 40 7 999 0 nonexistent
## 5473 telephone may fri 98 17 999 0 nonexistent
## 5478 telephone may fri 320 3 999 0 nonexistent
## 5480 telephone may fri 353 2 999 0 nonexistent
## 5481 telephone may fri 331 6 999 0 nonexistent
## 5483 telephone may mon 52 3 999 0 nonexistent
## 5486 telephone may mon 146 6 999 0 nonexistent
## 5489 telephone may mon 60 3 999 0 nonexistent
## 5500 telephone may mon 185 5 999 0 nonexistent
## 5504 telephone may mon 312 1 999 0 nonexistent
## 5512 telephone may mon 161 3 999 0 nonexistent
## 5513 telephone may mon 368 6 999 0 nonexistent
## 5516 telephone may mon 140 1 999 0 nonexistent
## 5519 telephone may mon 118 1 999 0 nonexistent
## 5522 telephone may mon 136 2 999 0 nonexistent
## 5526 telephone may mon 702 4 999 0 nonexistent
## 5530 telephone may mon 181 1 999 0 nonexistent
## 5536 telephone may mon 422 5 999 0 nonexistent
## 5544 telephone may mon 194 1 999 0 nonexistent
## 5545 telephone may mon 165 1 999 0 nonexistent
## 5556 telephone may mon 135 1 999 0 nonexistent
## 5557 telephone may mon 85 1 999 0 nonexistent
## 5558 telephone may mon 290 2 999 0 nonexistent
## 5563 telephone may mon 109 1 999 0 nonexistent
## 5566 telephone may mon 285 1 999 0 nonexistent
## 5567 telephone may mon 262 1 999 0 nonexistent
## 5568 telephone may mon 96 2 999 0 nonexistent
## 5575 telephone may mon 113 1 999 0 nonexistent
## 5576 telephone may mon 364 1 999 0 nonexistent
## 5581 telephone may mon 172 1 999 0 nonexistent
## 5586 telephone may mon 297 1 999 0 nonexistent
## 5595 telephone may mon 165 2 999 0 nonexistent
## 5602 telephone may mon 223 1 999 0 nonexistent
## 5607 telephone may mon 379 1 999 0 nonexistent
## 5611 telephone may mon 206 1 999 0 nonexistent
## 5612 telephone may mon 248 1 999 0 nonexistent
## 5613 telephone may mon 166 12 999 0 nonexistent
## 5614 telephone may mon 621 4 999 0 nonexistent
## 5616 telephone may mon 116 1 999 0 nonexistent
## 5626 telephone may mon 296 1 999 0 nonexistent
## 5635 telephone may mon 202 2 999 0 nonexistent
## 5636 telephone may mon 68 1 999 0 nonexistent
## 5641 telephone may mon 863 1 999 0 nonexistent
## 5643 telephone may mon 265 9 999 0 nonexistent
## 5644 telephone may mon 104 1 999 0 nonexistent
## 5654 telephone may mon 204 1 999 0 nonexistent
## 5656 telephone may mon 190 2 999 0 nonexistent
## 5658 telephone may mon 112 1 999 0 nonexistent
## 5662 telephone may mon 314 2 999 0 nonexistent
## 5678 telephone may mon 237 1 999 0 nonexistent
## 5680 telephone may mon 314 2 999 0 nonexistent
## 5684 telephone may mon 157 5 999 0 nonexistent
## 5687 telephone may mon 240 2 999 0 nonexistent
## 5690 telephone may mon 536 1 999 0 nonexistent
## 5702 telephone may mon 506 2 999 0 nonexistent
## 5703 telephone may mon 255 1 999 0 nonexistent
## 5709 telephone may mon 181 2 999 0 nonexistent
## 5710 telephone may mon 127 2 999 0 nonexistent
## 5711 telephone may mon 171 1 999 0 nonexistent
## 5715 telephone may mon 290 2 999 0 nonexistent
## 5720 telephone may mon 218 2 999 0 nonexistent
## 5725 telephone may mon 89 3 999 0 nonexistent
## 5726 telephone may mon 133 3 999 0 nonexistent
## 5731 telephone may mon 208 3 999 0 nonexistent
## 5741 telephone may mon 504 2 999 0 nonexistent
## 5744 telephone may mon 16 1 999 0 nonexistent
## 5747 telephone may mon 239 3 999 0 nonexistent
## 5754 telephone may mon 121 1 999 0 nonexistent
## 5756 telephone may mon 110 2 999 0 nonexistent
## 5760 telephone may mon 16 1 999 0 nonexistent
## 5761 telephone may mon 240 1 999 0 nonexistent
## 5767 telephone may mon 144 3 999 0 nonexistent
## 5772 telephone may mon 101 2 999 0 nonexistent
## 5783 telephone may mon 470 2 999 0 nonexistent
## 5784 telephone may mon 695 4 999 0 nonexistent
## 5788 telephone may mon 70 6 999 0 nonexistent
## 5790 telephone may mon 258 2 999 0 nonexistent
## 5796 telephone may mon 399 2 999 0 nonexistent
## 5800 telephone may mon 181 3 999 0 nonexistent
## 5802 telephone may mon 114 2 999 0 nonexistent
## 5803 telephone may mon 87 3 999 0 nonexistent
## 5809 telephone may mon 114 2 999 0 nonexistent
## 5812 telephone may mon 112 2 999 0 nonexistent
## 5815 telephone may mon 103 2 999 0 nonexistent
## 5816 telephone may mon 45 5 999 0 nonexistent
## 5827 telephone may mon 133 4 999 0 nonexistent
## 5834 telephone may mon 122 5 999 0 nonexistent
## 5844 telephone may mon 165 5 999 0 nonexistent
## 5851 telephone may mon 748 3 999 0 nonexistent
## 5853 telephone may mon 896 3 999 0 nonexistent
## 5856 telephone may mon 398 7 999 0 nonexistent
## 5860 telephone may mon 118 6 999 0 nonexistent
## 5861 telephone may mon 469 2 999 0 nonexistent
## 5862 telephone may mon 488 3 999 0 nonexistent
## 5868 telephone may mon 125 3 999 0 nonexistent
## 5869 telephone may mon 207 4 999 0 nonexistent
## 5870 telephone may mon 84 3 999 0 nonexistent
## 5873 telephone may mon 159 2 999 0 nonexistent
## 5878 telephone may mon 118 6 999 0 nonexistent
## 5880 telephone may mon 219 4 999 0 nonexistent
## 5882 telephone may mon 76 5 999 0 nonexistent
## 5889 telephone may mon 128 5 999 0 nonexistent
## 5896 telephone may mon 763 6 999 0 nonexistent
## 5900 telephone may mon 51 5 999 0 nonexistent
## 5911 telephone may mon 633 1 999 0 nonexistent
## 5912 telephone may mon 560 4 999 0 nonexistent
## 5917 telephone may tue 220 6 999 0 nonexistent
## 5919 telephone may tue 73 6 999 0 nonexistent
## 5922 telephone may tue 64 3 999 0 nonexistent
## 5923 telephone may tue 353 3 999 0 nonexistent
## 5924 telephone may tue 322 5 999 0 nonexistent
## 5932 telephone may tue 265 2 999 0 nonexistent
## 5946 telephone may tue 565 2 999 0 nonexistent
## 5948 telephone may tue 125 1 999 0 nonexistent
## 5949 telephone may tue 1063 5 999 0 nonexistent
## 5951 telephone may tue 231 1 999 0 nonexistent
## 5952 telephone may tue 195 1 999 0 nonexistent
## 5956 telephone may tue 277 4 999 0 nonexistent
## 5957 telephone may tue 84 4 999 0 nonexistent
## 5958 telephone may tue 47 5 999 0 nonexistent
## 5959 telephone may tue 285 1 999 0 nonexistent
## 5961 telephone may tue 24 1 999 0 nonexistent
## 5962 telephone may tue 955 1 999 0 nonexistent
## 5967 telephone may tue 180 1 999 0 nonexistent
## 5968 telephone may tue 163 2 999 0 nonexistent
## 5980 telephone may tue 133 1 999 0 nonexistent
## 5981 telephone may tue 59 1 999 0 nonexistent
## 5987 telephone may tue 427 1 999 0 nonexistent
## 6008 telephone may tue 143 1 999 0 nonexistent
## 6017 telephone may tue 185 1 999 0 nonexistent
## 6018 telephone may tue 275 4 999 0 nonexistent
## 6021 telephone may tue 271 3 999 0 nonexistent
## 6022 telephone may tue 776 1 999 0 nonexistent
## 6026 telephone may tue 330 2 999 0 nonexistent
## 6031 telephone may tue 514 1 999 0 nonexistent
## 6033 telephone may tue 224 1 999 0 nonexistent
## 6034 telephone may tue 118 1 999 0 nonexistent
## 6040 telephone may tue 257 1 999 0 nonexistent
## 6047 telephone may tue 126 1 999 0 nonexistent
## 6048 telephone may tue 168 1 999 0 nonexistent
## 6054 telephone may tue 82 1 999 0 nonexistent
## 6055 telephone may tue 33 1 999 0 nonexistent
## 6057 telephone may tue 446 1 999 0 nonexistent
## 6060 telephone may tue 78 1 999 0 nonexistent
## 6062 telephone may tue 213 2 999 0 nonexistent
## 6074 telephone may tue 181 1 999 0 nonexistent
## 6077 telephone may tue 293 2 999 0 nonexistent
## 6078 telephone may tue 316 2 999 0 nonexistent
## 6083 telephone may tue 68 5 999 0 nonexistent
## 6087 telephone may tue 161 2 999 0 nonexistent
## 6088 telephone may tue 155 1 999 0 nonexistent
## 6090 telephone may tue 109 2 999 0 nonexistent
## 6092 telephone may tue 137 2 999 0 nonexistent
## 6094 telephone may tue 195 2 999 0 nonexistent
## 6101 telephone may tue 253 16 999 0 nonexistent
## 6105 telephone may tue 731 3 999 0 nonexistent
## 6126 telephone may tue 272 3 999 0 nonexistent
## 6128 telephone may tue 233 2 999 0 nonexistent
## 6133 telephone may tue 259 1 999 0 nonexistent
## 6136 telephone may tue 148 3 999 0 nonexistent
## 6145 telephone may tue 173 1 999 0 nonexistent
## 6146 telephone may tue 144 1 999 0 nonexistent
## 6160 telephone may tue 211 1 999 0 nonexistent
## 6168 telephone may tue 319 1 999 0 nonexistent
## 6174 telephone may tue 129 2 999 0 nonexistent
## 6184 telephone may tue 326 2 999 0 nonexistent
## 6188 telephone may tue 125 1 999 0 nonexistent
## 6189 telephone may tue 219 1 999 0 nonexistent
## 6195 telephone may tue 383 2 999 0 nonexistent
## 6196 telephone may tue 301 1 999 0 nonexistent
## 6198 telephone may tue 179 3 999 0 nonexistent
## 6201 telephone may tue 181 1 999 0 nonexistent
## 6204 telephone may tue 1590 2 999 0 nonexistent
## 6205 telephone may tue 125 4 999 0 nonexistent
## 6216 telephone may tue 33 6 999 0 nonexistent
## 6218 telephone may tue 107 2 999 0 nonexistent
## 6221 telephone may tue 574 5 999 0 nonexistent
## 6224 telephone may tue 68 9 999 0 nonexistent
## 6230 telephone may tue 392 3 999 0 nonexistent
## 6240 telephone may tue 453 1 999 0 nonexistent
## 6244 telephone may tue 146 8 999 0 nonexistent
## 6248 telephone may tue 324 3 999 0 nonexistent
## 6249 telephone may tue 436 1 999 0 nonexistent
## 6251 telephone may tue 100 2 999 0 nonexistent
## 6255 telephone may tue 111 3 999 0 nonexistent
## 6260 telephone may tue 233 2 999 0 nonexistent
## 6268 telephone may tue 121 2 999 0 nonexistent
## 6280 telephone may tue 315 2 999 0 nonexistent
## 6281 telephone may tue 3094 2 999 0 nonexistent
## 6284 telephone may tue 269 10 999 0 nonexistent
## 6287 telephone may tue 185 2 999 0 nonexistent
## 6293 telephone may tue 66 2 999 0 nonexistent
## 6295 telephone may tue 166 2 999 0 nonexistent
## 6297 telephone may tue 141 3 999 0 nonexistent
## 6300 telephone may tue 452 2 999 0 nonexistent
## 6305 telephone may tue 54 4 999 0 nonexistent
## 6307 telephone may tue 132 3 999 0 nonexistent
## 6308 telephone may tue 580 2 999 0 nonexistent
## 6311 telephone may tue 72 3 999 0 nonexistent
## 6317 telephone may tue 29 2 999 0 nonexistent
## 6331 telephone may tue 371 2 999 0 nonexistent
## 6332 telephone may tue 383 3 999 0 nonexistent
## 6339 telephone may tue 5 3 999 0 nonexistent
## 6341 telephone may tue 256 5 999 0 nonexistent
## 6342 telephone may tue 284 1 999 0 nonexistent
## 6343 telephone may tue 264 1 999 0 nonexistent
## 6344 telephone may tue 124 2 999 0 nonexistent
## 6346 telephone may tue 20 19 999 0 nonexistent
## 6350 telephone may tue 350 4 999 0 nonexistent
## 6357 telephone may tue 165 2 999 0 nonexistent
## 6371 telephone may tue 132 2 999 0 nonexistent
## 6377 telephone may tue 398 3 999 0 nonexistent
## 6380 telephone may tue 77 4 999 0 nonexistent
## 6382 telephone may tue 352 4 999 0 nonexistent
## 6383 telephone may tue 112 3 999 0 nonexistent
## 6387 telephone may tue 206 2 999 0 nonexistent
## 6397 telephone may tue 50 3 999 0 nonexistent
## 6413 telephone may wed 61 2 999 0 nonexistent
## 6415 telephone may wed 228 9 999 0 nonexistent
## 6417 telephone may wed 121 1 999 0 nonexistent
## 6430 telephone may wed 215 2 999 0 nonexistent
## 6432 telephone may wed 332 1 999 0 nonexistent
## 6436 telephone may wed 181 2 999 0 nonexistent
## 6439 telephone may wed 254 1 999 0 nonexistent
## 6441 telephone may wed 79 6 999 0 nonexistent
## 6442 telephone may wed 95 3 999 0 nonexistent
## 6444 telephone may wed 190 3 999 0 nonexistent
## 6448 telephone may wed 231 2 999 0 nonexistent
## 6450 telephone may wed 132 1 999 0 nonexistent
## 6461 telephone may wed 177 2 999 0 nonexistent
## 6473 telephone may wed 248 6 999 0 nonexistent
## 6475 telephone may wed 252 1 999 0 nonexistent
## 6480 telephone may wed 125 1 999 0 nonexistent
## 6481 telephone may wed 195 3 999 0 nonexistent
## 6490 telephone may wed 68 1 999 0 nonexistent
## 6492 telephone may wed 136 1 999 0 nonexistent
## 6496 telephone may wed 571 1 999 0 nonexistent
## 6498 telephone may wed 582 1 999 0 nonexistent
## 6499 telephone may wed 210 1 999 0 nonexistent
## 6501 telephone may wed 217 1 999 0 nonexistent
## 6512 telephone may wed 140 1 999 0 nonexistent
## 6513 telephone may wed 171 6 999 0 nonexistent
## 6516 telephone may wed 52 2 999 0 nonexistent
## 6518 telephone may wed 195 1 999 0 nonexistent
## 6520 telephone may wed 63 2 999 0 nonexistent
## 6524 telephone may wed 141 1 999 0 nonexistent
## 6527 telephone may wed 99 5 999 0 nonexistent
## 6532 telephone may wed 1479 4 999 0 nonexistent
## 6544 telephone may wed 166 1 999 0 nonexistent
## 6549 telephone may wed 126 4 999 0 nonexistent
## 6551 telephone may wed 386 1 999 0 nonexistent
## 6559 telephone may wed 181 1 999 0 nonexistent
## 6561 telephone may wed 439 2 999 0 nonexistent
## 6564 telephone may wed 202 1 999 0 nonexistent
## 6566 telephone may wed 78 4 999 0 nonexistent
## 6567 telephone may wed 217 1 999 0 nonexistent
## 6576 telephone may wed 680 1 999 0 nonexistent
## 6581 telephone may wed 821 2 999 0 nonexistent
## 6592 telephone may wed 143 2 999 0 nonexistent
## 6597 telephone may wed 289 1 999 0 nonexistent
## 6604 telephone may wed 85 2 999 0 nonexistent
## 6605 telephone may wed 317 1 999 0 nonexistent
## 6608 telephone may wed 302 1 999 0 nonexistent
## 6618 telephone may wed 174 1 999 0 nonexistent
## 6619 telephone may wed 675 1 999 0 nonexistent
## 6621 telephone may wed 257 2 999 0 nonexistent
## 6629 telephone may wed 314 2 999 0 nonexistent
## 6637 telephone may wed 97 1 999 0 nonexistent
## 6638 telephone may wed 71 2 999 0 nonexistent
## 6639 telephone may wed 275 2 999 0 nonexistent
## 6646 telephone may wed 157 1 999 0 nonexistent
## 6651 telephone may wed 272 2 999 0 nonexistent
## 6652 telephone may wed 296 1 999 0 nonexistent
## 6655 telephone may wed 189 3 999 0 nonexistent
## 6666 telephone may wed 51 1 999 0 nonexistent
## 6672 telephone may wed 247 1 999 0 nonexistent
## 6674 telephone may wed 244 6 999 0 nonexistent
## 6676 telephone may wed 289 2 999 0 nonexistent
## 6677 telephone may wed 183 1 999 0 nonexistent
## 6679 telephone may wed 648 1 999 0 nonexistent
## 6687 telephone may wed 347 2 999 0 nonexistent
## 6688 telephone may wed 88 3 999 0 nonexistent
## 6691 telephone may wed 188 2 999 0 nonexistent
## 6692 telephone may wed 116 6 999 0 nonexistent
## 6693 telephone may wed 60 6 999 0 nonexistent
## 6698 telephone may wed 139 2 999 0 nonexistent
## 6701 telephone may wed 129 2 999 0 nonexistent
## 6703 telephone may wed 346 2 999 0 nonexistent
## 6708 telephone may wed 433 3 999 0 nonexistent
## 6713 telephone may wed 172 1 999 0 nonexistent
## 6721 telephone may wed 239 2 999 0 nonexistent
## 6723 telephone may wed 383 1 999 0 nonexistent
## 6733 telephone may wed 94 1 999 0 nonexistent
## 6736 telephone may wed 491 1 999 0 nonexistent
## 6738 telephone may wed 258 1 999 0 nonexistent
## 6739 telephone may wed 1730 1 999 0 nonexistent
## 6741 telephone may wed 193 2 999 0 nonexistent
## 6744 telephone may wed 260 2 999 0 nonexistent
## 6749 telephone may wed 94 3 999 0 nonexistent
## 6750 telephone may wed 397 1 999 0 nonexistent
## 6752 telephone may wed 238 8 999 0 nonexistent
## 6757 telephone may wed 133 1 999 0 nonexistent
## 6763 telephone may wed 691 5 999 0 nonexistent
## 6767 telephone may wed 330 5 999 0 nonexistent
## 6783 telephone may wed 410 1 999 0 nonexistent
## 6789 telephone may wed 52 2 999 0 nonexistent
## 6792 telephone may wed 173 3 999 0 nonexistent
## 6794 telephone may wed 77 3 999 0 nonexistent
## 6796 telephone may wed 463 2 999 0 nonexistent
## 6797 telephone may wed 25 1 999 0 nonexistent
## 6800 telephone may wed 64 1 999 0 nonexistent
## 6809 telephone may wed 313 2 999 0 nonexistent
## 6811 telephone may wed 25 2 999 0 nonexistent
## 6812 telephone may wed 157 3 999 0 nonexistent
## 6817 telephone may wed 189 2 999 0 nonexistent
## 6824 telephone may wed 187 3 999 0 nonexistent
## 6832 telephone may wed 239 4 999 0 nonexistent
## 6835 telephone may wed 478 2 999 0 nonexistent
## 6844 telephone may wed 225 4 999 0 nonexistent
## 6845 telephone may wed 88 3 999 0 nonexistent
## 6846 telephone may wed 314 5 999 0 nonexistent
## 6850 telephone may wed 223 5 999 0 nonexistent
## 6851 telephone may wed 148 3 999 0 nonexistent
## 6855 telephone may wed 23 17 999 0 nonexistent
## 6860 telephone may wed 51 2 999 0 nonexistent
## 6868 telephone may wed 267 4 999 0 nonexistent
## 6879 telephone may wed 107 3 999 0 nonexistent
## 6883 telephone may wed 585 3 999 0 nonexistent
## 6889 telephone may wed 619 3 999 0 nonexistent
## 6891 telephone may thu 75 1 999 0 nonexistent
## 6893 telephone may thu 334 2 999 0 nonexistent
## 6897 telephone may thu 333 3 999 0 nonexistent
## 6902 telephone may thu 543 1 999 0 nonexistent
## 6904 telephone may thu 144 1 999 0 nonexistent
## 6912 telephone may thu 205 5 999 0 nonexistent
## 6923 telephone may thu 284 1 999 0 nonexistent
## 6924 telephone may thu 148 1 999 0 nonexistent
## 6926 telephone may thu 107 2 999 0 nonexistent
## 6932 telephone may thu 52 1 999 0 nonexistent
## 6935 telephone may thu 134 1 999 0 nonexistent
## 6938 telephone may thu 539 1 999 0 nonexistent
## 6940 telephone may thu 162 5 999 0 nonexistent
## 6946 telephone may thu 130 1 999 0 nonexistent
## 6947 telephone may thu 203 1 999 0 nonexistent
## 6955 telephone may thu 205 1 999 0 nonexistent
## 6956 telephone may thu 291 1 999 0 nonexistent
## 6957 telephone may thu 159 1 999 0 nonexistent
## 6961 telephone may thu 193 1 999 0 nonexistent
## 6963 telephone may thu 84 1 999 0 nonexistent
## 6965 telephone may thu 135 1 999 0 nonexistent
## 6971 telephone may thu 119 1 999 0 nonexistent
## 6977 telephone may thu 418 8 999 0 nonexistent
## 6980 telephone may thu 109 1 999 0 nonexistent
## 6995 telephone may thu 155 1 999 0 nonexistent
## 7007 telephone may thu 48 1 999 0 nonexistent
## 7018 telephone may thu 356 2 999 0 nonexistent
## 7023 telephone may thu 247 1 999 0 nonexistent
## 7036 telephone may thu 201 1 999 0 nonexistent
## 7040 telephone may thu 473 1 999 0 nonexistent
## 7046 telephone may thu 212 6 999 0 nonexistent
## 7057 telephone may thu 158 1 999 0 nonexistent
## 7069 telephone may thu 126 2 999 0 nonexistent
## 7072 telephone may thu 178 1 999 0 nonexistent
## 7078 telephone may thu 202 1 999 0 nonexistent
## 7089 telephone may thu 64 4 999 0 nonexistent
## 7091 telephone may thu 76 3 999 0 nonexistent
## 7092 telephone may thu 26 3 999 0 nonexistent
## 7094 telephone may thu 180 2 999 0 nonexistent
## 7096 telephone may thu 535 2 999 0 nonexistent
## 7101 telephone may thu 364 3 999 0 nonexistent
## 7109 telephone may thu 200 4 999 0 nonexistent
## 7114 telephone may thu 331 4 999 0 nonexistent
## 7117 telephone may thu 215 1 999 0 nonexistent
## 7122 telephone may thu 242 3 999 0 nonexistent
## 7130 telephone may thu 116 1 999 0 nonexistent
## 7131 telephone may thu 484 5 999 0 nonexistent
## 7136 telephone may thu 1047 2 999 0 nonexistent
## 7139 telephone may thu 54 2 999 0 nonexistent
## 7152 telephone may thu 410 3 999 0 nonexistent
## 7153 telephone may thu 311 3 999 0 nonexistent
## 7155 telephone may thu 81 1 999 0 nonexistent
## 7169 telephone may thu 768 4 999 0 nonexistent
## 7173 telephone may thu 122 2 999 0 nonexistent
## 7181 telephone may thu 399 5 999 0 nonexistent
## 7183 telephone may thu 107 2 999 0 nonexistent
## 7188 telephone may thu 310 3 999 0 nonexistent
## 7190 telephone may thu 119 2 999 0 nonexistent
## 7195 telephone may thu 188 6 999 0 nonexistent
## 7198 telephone may thu 128 3 999 0 nonexistent
## 7204 telephone may thu 203 2 999 0 nonexistent
## 7216 telephone may thu 318 2 999 0 nonexistent
## 7226 telephone may thu 744 6 999 0 nonexistent
## 7237 telephone may thu 668 2 999 0 nonexistent
## 7243 telephone may thu 228 3 999 0 nonexistent
## 7245 telephone may thu 38 9 999 0 nonexistent
## 7247 telephone may thu 18 16 999 0 nonexistent
## 7249 telephone may thu 900 2 999 0 nonexistent
## 7275 telephone may thu 53 3 999 0 nonexistent
## 7276 telephone may thu 364 2 999 0 nonexistent
## 7281 telephone may thu 191 5 999 0 nonexistent
## 7283 telephone may thu 253 3 999 0 nonexistent
## 7286 telephone may thu 155 2 999 0 nonexistent
## 7292 telephone may thu 96 5 999 0 nonexistent
## 7293 telephone may thu 197 9 999 0 nonexistent
## 7296 telephone may thu 201 3 999 0 nonexistent
## 7300 telephone may thu 660 2 999 0 nonexistent
## 7305 telephone may thu 374 4 999 0 nonexistent
## 7309 telephone may thu 62 6 999 0 nonexistent
## 7310 telephone may thu 152 2 999 0 nonexistent
## 7313 telephone may thu 23 15 999 0 nonexistent
## 7317 telephone may thu 52 8 999 0 nonexistent
## 7323 telephone may thu 139 2 999 0 nonexistent
## 7329 telephone may fri 67 3 999 0 nonexistent
## 7333 telephone may fri 139 3 999 0 nonexistent
## 7334 telephone may fri 235 1 999 0 nonexistent
## 7335 telephone may fri 43 1 999 0 nonexistent
## 7344 telephone may fri 58 2 999 0 nonexistent
## 7345 telephone may fri 226 1 999 0 nonexistent
## 7347 telephone may fri 151 3 999 0 nonexistent
## 7351 telephone may fri 133 4 999 0 nonexistent
## 7354 telephone may fri 45 3 999 0 nonexistent
## 7372 telephone may fri 57 1 999 0 nonexistent
## 7373 telephone may fri 234 1 999 0 nonexistent
## 7375 telephone may fri 555 1 999 0 nonexistent
## 7389 telephone may fri 120 6 999 0 nonexistent
## 7398 telephone may fri 762 3 999 0 nonexistent
## 7403 telephone may fri 69 1 999 0 nonexistent
## 7405 telephone may fri 290 5 999 0 nonexistent
## 7406 telephone may fri 138 1 999 0 nonexistent
## 7418 telephone may fri 92 1 999 0 nonexistent
## 7422 telephone may fri 556 1 999 0 nonexistent
## 7432 telephone may fri 379 1 999 0 nonexistent
## 7433 telephone may fri 127 1 999 0 nonexistent
## 7438 telephone may fri 618 2 999 0 nonexistent
## 7440 telephone may fri 160 1 999 0 nonexistent
## 7441 telephone may fri 171 1 999 0 nonexistent
## 7445 telephone may fri 763 1 999 0 nonexistent
## 7450 telephone may fri 67 2 999 0 nonexistent
## 7451 telephone may fri 381 2 999 0 nonexistent
## 7461 telephone may fri 275 2 999 0 nonexistent
## 7467 telephone may fri 153 2 999 0 nonexistent
## 7469 telephone may fri 536 2 999 0 nonexistent
## 7471 telephone may fri 604 2 999 0 nonexistent
## 7476 telephone may fri 854 2 999 0 nonexistent
## 7478 telephone may fri 114 2 999 0 nonexistent
## 7479 telephone may fri 855 2 999 0 nonexistent
## 7482 telephone may fri 100 2 999 0 nonexistent
## 7486 telephone may fri 251 1 999 0 nonexistent
## 7491 telephone may fri 65 13 999 0 nonexistent
## 7492 telephone may fri 75 1 999 0 nonexistent
## 7493 telephone may fri 157 3 999 0 nonexistent
## 7497 telephone may fri 109 1 999 0 nonexistent
## 7501 telephone may fri 96 2 999 0 nonexistent
## 7509 telephone may fri 127 1 999 0 nonexistent
## 7513 telephone may fri 129 2 999 0 nonexistent
## 7514 telephone may fri 134 3 999 0 nonexistent
## 7520 telephone may fri 136 2 999 0 nonexistent
## 7527 telephone may fri 298 3 999 0 nonexistent
## 7534 telephone may fri 557 2 999 0 nonexistent
## 7536 telephone may fri 296 1 999 0 nonexistent
## 7547 telephone may fri 84 3 999 0 nonexistent
## 7556 telephone may fri 1236 2 999 0 nonexistent
## 7560 telephone may fri 96 3 999 0 nonexistent
## 7563 telephone may fri 91 2 999 0 nonexistent
## 7564 telephone may fri 185 3 999 0 nonexistent
## 7571 telephone may fri 76 2 999 0 nonexistent
## 7573 telephone may fri 296 2 999 0 nonexistent
## 7578 telephone may fri 340 1 999 0 nonexistent
## 7582 telephone may fri 123 2 999 0 nonexistent
## 7583 telephone may fri 306 1 999 0 nonexistent
## 7584 telephone may fri 148 1 999 0 nonexistent
## 7587 telephone may fri 224 5 999 0 nonexistent
## 7603 telephone may fri 116 6 999 0 nonexistent
## 7606 telephone may fri 168 3 999 0 nonexistent
## 7614 telephone may fri 1980 2 999 0 nonexistent
## 7616 telephone may fri 398 5 999 0 nonexistent
## 7632 telephone may fri 67 2 999 0 nonexistent
## 7634 telephone may fri 216 3 999 0 nonexistent
## 7641 telephone may fri 41 3 999 0 nonexistent
## 7644 telephone may fri 408 2 999 0 nonexistent
## 7656 telephone may fri 161 12 999 0 nonexistent
## 7691 telephone may fri 833 8 999 0 nonexistent
## 7695 telephone may fri 78 13 999 0 nonexistent
## 7701 telephone may fri 30 18 999 0 nonexistent
## 7711 telephone may fri 293 6 999 0 nonexistent
## 7716 telephone may fri 104 6 999 0 nonexistent
## 7717 telephone may fri 205 6 999 0 nonexistent
## 7730 telephone may fri 29 4 999 0 nonexistent
## 7741 telephone may fri 306 3 999 0 nonexistent
## 7749 telephone may fri 97 3 999 0 nonexistent
## 7750 telephone may fri 82 2 999 0 nonexistent
## 7755 telephone may fri 251 3 999 0 nonexistent
## 7758 telephone may fri 123 4 999 0 nonexistent
## 7760 telephone may fri 28 8 999 0 nonexistent
## 7761 telephone may fri 1193 2 999 0 nonexistent
## 7772 telephone jun mon 71 2 999 0 nonexistent
## 7782 telephone jun mon 360 2 999 0 nonexistent
## 7784 telephone jun mon 550 3 999 0 nonexistent
## 7790 telephone jun mon 484 1 999 0 nonexistent
## 7793 telephone jun mon 178 1 999 0 nonexistent
## 7794 telephone jun mon 502 5 999 0 nonexistent
## 7798 telephone jun mon 268 1 999 0 nonexistent
## 7802 telephone jun mon 367 3 999 0 nonexistent
## 7815 telephone jun mon 526 2 999 0 nonexistent
## 7818 telephone jun mon 394 1 999 0 nonexistent
## 7826 telephone jun mon 409 2 999 0 nonexistent
## 7828 telephone jun mon 144 2 999 0 nonexistent
## 7834 telephone jun mon 143 1 999 0 nonexistent
## 7846 telephone jun mon 68 21 999 0 nonexistent
## 7847 telephone jun mon 464 1 999 0 nonexistent
## 7848 telephone jun mon 389 1 999 0 nonexistent
## 7851 telephone jun mon 88 2 999 0 nonexistent
## 7859 telephone jun mon 61 2 999 0 nonexistent
## 7860 telephone jun mon 537 5 999 0 nonexistent
## 7861 telephone jun mon 197 1 999 0 nonexistent
## 7862 telephone jun mon 464 2 999 0 nonexistent
## 7871 telephone jun mon 180 1 999 0 nonexistent
## 7872 telephone jun mon 159 1 999 0 nonexistent
## 7876 telephone jun mon 156 1 999 0 nonexistent
## 7884 telephone jun mon 258 1 999 0 nonexistent
## 7913 telephone jun mon 69 1 999 0 nonexistent
## 7916 telephone jun mon 302 1 999 0 nonexistent
## 7934 telephone jun mon 1068 1 999 0 nonexistent
## 7937 telephone jun mon 163 2 999 0 nonexistent
## 7939 telephone jun mon 313 2 999 0 nonexistent
## 7940 telephone jun mon 94 4 999 0 nonexistent
## 7941 telephone jun mon 658 2 999 0 nonexistent
## 7945 telephone jun mon 562 3 999 0 nonexistent
## 7946 telephone jun mon 490 12 999 0 nonexistent
## 7957 telephone jun mon 123 4 999 0 nonexistent
## 7960 telephone jun mon 102 2 999 0 nonexistent
## 7962 telephone jun mon 572 4 999 0 nonexistent
## 7969 telephone jun mon 31 3 999 0 nonexistent
## 7970 telephone jun mon 266 2 999 0 nonexistent
## 7971 telephone jun mon 163 2 999 0 nonexistent
## 7973 telephone jun mon 469 2 999 0 nonexistent
## 7976 telephone jun mon 85 8 999 0 nonexistent
## 7981 telephone jun mon 200 2 999 0 nonexistent
## 7986 telephone jun mon 241 5 999 0 nonexistent
## 7990 telephone jun mon 281 4 999 0 nonexistent
## 8011 telephone jun mon 102 2 999 0 nonexistent
## 8012 telephone jun mon 60 9 999 0 nonexistent
## 8015 telephone jun mon 555 5 999 0 nonexistent
## 8016 telephone jun mon 200 3 999 0 nonexistent
## 8026 telephone jun mon 129 4 999 0 nonexistent
## 8031 telephone jun mon 228 2 999 0 nonexistent
## 8035 telephone jun mon 252 5 999 0 nonexistent
## 8037 telephone jun mon 42 1 999 0 nonexistent
## 8043 telephone jun mon 288 1 999 0 nonexistent
## 8044 telephone jun mon 73 3 999 0 nonexistent
## 8048 telephone jun mon 345 3 999 0 nonexistent
## 8049 telephone jun mon 75 5 999 0 nonexistent
## 8052 telephone jun mon 156 5 999 0 nonexistent
## 8053 telephone jun mon 80 3 999 0 nonexistent
## 8055 telephone jun mon 360 3 999 0 nonexistent
## 8056 telephone jun mon 126 1 999 0 nonexistent
## 8061 telephone jun mon 127 6 999 0 nonexistent
## 8063 telephone jun mon 777 4 999 0 nonexistent
## 8071 telephone jun mon 53 1 999 0 nonexistent
## 8073 telephone jun mon 178 1 999 0 nonexistent
## 8081 telephone jun mon 213 2 999 0 nonexistent
## 8084 telephone jun mon 746 2 999 0 nonexistent
## 8091 telephone jun mon 227 15 999 0 nonexistent
## 8099 telephone jun mon 205 2 999 0 nonexistent
## 8100 telephone jun mon 468 8 999 0 nonexistent
## 8102 telephone jun mon 442 11 999 0 nonexistent
## 8103 telephone jun mon 1576 3 999 0 nonexistent
## 8104 telephone jun mon 83 6 999 0 nonexistent
## 8107 telephone jun mon 92 5 999 0 nonexistent
## 8108 telephone jun mon 217 4 999 0 nonexistent
## 8114 telephone jun mon 548 2 999 0 nonexistent
## 8119 telephone jun mon 280 2 999 0 nonexistent
## 8120 telephone jun mon 689 3 999 0 nonexistent
## 8128 telephone jun mon 59 4 999 0 nonexistent
## 8129 telephone jun mon 20 8 999 0 nonexistent
## 8132 telephone jun mon 180 3 999 0 nonexistent
## 8138 telephone jun tue 104 7 999 0 nonexistent
## 8145 telephone jun tue 209 2 999 0 nonexistent
## 8159 telephone jun tue 267 1 999 0 nonexistent
## 8162 telephone jun tue 63 1 999 0 nonexistent
## 8165 telephone jun tue 301 1 999 0 nonexistent
## 8166 telephone jun tue 207 1 999 0 nonexistent
## 8172 telephone jun tue 161 1 999 0 nonexistent
## 8173 telephone jun tue 1173 3 999 0 nonexistent
## 8188 telephone jun tue 361 1 999 0 nonexistent
## 8190 telephone jun tue 953 1 999 0 nonexistent
## 8194 telephone jun tue 194 1 999 0 nonexistent
## 8197 telephone jun tue 956 3 999 0 nonexistent
## 8206 telephone jun tue 132 1 999 0 nonexistent
## 8236 telephone jun tue 131 1 999 0 nonexistent
## 8237 telephone jun tue 384 1 999 0 nonexistent
## 8244 telephone jun tue 103 2 999 0 nonexistent
## 8246 telephone jun tue 235 1 999 0 nonexistent
## 8247 telephone jun tue 1025 7 999 0 nonexistent
## 8255 telephone jun tue 145 1 999 0 nonexistent
## 8263 telephone jun tue 116 1 999 0 nonexistent
## 8264 telephone jun tue 25 1 999 0 nonexistent
## 8265 telephone jun tue 118 2 999 0 nonexistent
## 8276 telephone jun tue 194 2 999 0 nonexistent
## 8277 telephone jun tue 992 1 999 0 nonexistent
## 8280 telephone jun tue 732 2 999 0 nonexistent
## 8287 telephone jun tue 231 2 999 0 nonexistent
## 8290 telephone jun tue 119 4 999 0 nonexistent
## 8294 telephone jun tue 185 1 999 0 nonexistent
## 8305 telephone jun tue 338 1 999 0 nonexistent
## 8306 telephone jun tue 299 1 999 0 nonexistent
## 8307 telephone jun tue 284 3 999 0 nonexistent
## 8309 telephone jun tue 435 3 999 0 nonexistent
## 8319 telephone jun tue 320 1 999 0 nonexistent
## 8326 telephone jun tue 192 4 999 0 nonexistent
## 8327 telephone jun tue 258 2 999 0 nonexistent
## 8329 telephone jun tue 860 1 999 0 nonexistent
## 8338 telephone jun tue 220 1 999 0 nonexistent
## 8342 telephone jun tue 35 32 999 0 nonexistent
## 8351 telephone jun tue 768 1 999 0 nonexistent
## 8355 telephone jun tue 320 1 999 0 nonexistent
## 8357 telephone jun tue 31 5 999 0 nonexistent
## 8360 telephone jun tue 201 2 999 0 nonexistent
## 8362 telephone jun tue 133 3 999 0 nonexistent
## 8364 telephone jun tue 171 5 999 0 nonexistent
## 8371 telephone jun tue 199 4 999 0 nonexistent
## 8377 telephone jun tue 61 2 999 0 nonexistent
## 8379 telephone jun tue 242 6 999 0 nonexistent
## 8381 telephone jun tue 13 13 999 0 nonexistent
## 8390 telephone jun tue 137 2 999 0 nonexistent
## 8393 telephone jun tue 199 3 999 0 nonexistent
## 8398 telephone jun tue 277 1 999 0 nonexistent
## 8401 telephone jun tue 183 2 999 0 nonexistent
## 8402 telephone jun tue 134 3 999 0 nonexistent
## 8406 telephone jun tue 495 2 999 0 nonexistent
## 8407 telephone jun tue 157 2 999 0 nonexistent
## 8419 telephone jun tue 380 4 999 0 nonexistent
## 8432 telephone jun tue 11 18 999 0 nonexistent
## 8434 telephone jun tue 397 2 999 0 nonexistent
## 8438 telephone jun tue 1030 6 999 0 nonexistent
## 8439 telephone jun tue 266 10 999 0 nonexistent
## 8441 telephone jun tue 143 8 999 0 nonexistent
## 8444 telephone jun tue 340 2 999 0 nonexistent
## 8460 telephone jun tue 203 9 999 0 nonexistent
## 8476 telephone jun tue 113 4 999 0 nonexistent
## 8478 telephone jun tue 52 1 999 0 nonexistent
## 8485 telephone jun tue 87 7 999 0 nonexistent
## 8494 telephone jun wed 457 1 999 0 nonexistent
## 8501 telephone jun wed 407 1 999 0 nonexistent
## 8502 telephone jun wed 250 1 999 0 nonexistent
## 8521 telephone jun wed 105 3 999 0 nonexistent
## 8522 telephone jun wed 71 5 999 0 nonexistent
## 8524 telephone jun wed 66 2 999 0 nonexistent
## 8526 telephone jun wed 166 2 999 0 nonexistent
## 8527 telephone jun wed 67 2 999 0 nonexistent
## 8529 telephone jun wed 524 15 999 0 nonexistent
## 8541 telephone jun wed 194 2 999 0 nonexistent
## 8547 telephone jun wed 148 10 999 0 nonexistent
## 8553 telephone jun wed 279 1 999 0 nonexistent
## 8561 telephone jun wed 77 8 999 0 nonexistent
## 8566 telephone jun wed 178 6 999 0 nonexistent
## 8575 telephone jun wed 184 1 999 0 nonexistent
## 8584 telephone jun wed 357 4 999 0 nonexistent
## 8592 telephone jun wed 367 2 999 0 nonexistent
## 8593 telephone jun wed 444 3 999 0 nonexistent
## 8602 telephone jun wed 104 2 999 0 nonexistent
## 8621 telephone jun wed 232 1 999 0 nonexistent
## 8623 telephone jun wed 79 1 999 0 nonexistent
## 8624 telephone jun wed 103 2 999 0 nonexistent
## 8632 telephone jun wed 213 1 999 0 nonexistent
## 8637 telephone jun wed 654 2 999 0 nonexistent
## 8641 telephone jun wed 597 7 999 0 nonexistent
## 8642 telephone jun wed 228 8 999 0 nonexistent
## 8645 telephone jun wed 61 6 999 0 nonexistent
## 8650 telephone jun wed 298 3 999 0 nonexistent
## 8651 telephone jun wed 113 2 999 0 nonexistent
## 8666 telephone jun wed 121 3 999 0 nonexistent
## 8673 telephone jun wed 249 2 999 0 nonexistent
## 8680 telephone jun wed 174 9 999 0 nonexistent
## 8681 telephone jun wed 60 4 999 0 nonexistent
## 8687 telephone jun wed 208 4 999 0 nonexistent
## 8688 telephone jun wed 135 1 999 0 nonexistent
## 8692 telephone jun wed 126 2 999 0 nonexistent
## 8694 telephone jun wed 209 2 999 0 nonexistent
## 8701 telephone jun wed 84 3 999 0 nonexistent
## 8706 telephone jun wed 170 3 999 0 nonexistent
## 8711 telephone jun wed 46 16 999 0 nonexistent
## 8721 telephone jun wed 229 6 999 0 nonexistent
## 8724 telephone jun wed 216 2 999 0 nonexistent
## 8725 telephone jun wed 122 1 999 0 nonexistent
## 8729 telephone jun wed 702 2 999 0 nonexistent
## 8738 telephone jun wed 292 1 999 0 nonexistent
## 8742 telephone jun thu 399 3 999 0 nonexistent
## 8746 telephone jun thu 243 1 999 0 nonexistent
## 8759 telephone jun thu 221 1 999 0 nonexistent
## 8767 telephone jun thu 400 2 999 0 nonexistent
## 8777 telephone jun thu 487 1 999 0 nonexistent
## 8781 telephone jun thu 222 1 999 0 nonexistent
## 8783 telephone jun thu 92 1 999 0 nonexistent
## 8806 telephone jun thu 73 1 999 0 nonexistent
## 8809 telephone jun thu 202 1 999 0 nonexistent
## 8810 telephone jun thu 169 1 999 0 nonexistent
## 8815 telephone jun thu 67 1 999 0 nonexistent
## 8818 telephone jun thu 910 2 999 0 nonexistent
## 8829 telephone jun thu 166 2 999 0 nonexistent
## 8831 telephone jun thu 263 2 999 0 nonexistent
## 8832 telephone jun thu 133 1 999 0 nonexistent
## 8837 telephone jun thu 409 1 999 0 nonexistent
## 8844 telephone jun thu 100 1 999 0 nonexistent
## 8852 telephone jun thu 225 1 999 0 nonexistent
## 8862 telephone jun thu 22 1 999 0 nonexistent
## 8864 telephone jun thu 152 1 999 0 nonexistent
## 8873 telephone jun thu 285 1 999 0 nonexistent
## 8878 telephone jun thu 21 1 999 0 nonexistent
## 8880 telephone jun thu 153 1 999 0 nonexistent
## 8882 telephone jun thu 60 20 999 0 nonexistent
## 8888 telephone jun thu 53 1 999 0 nonexistent
## 8890 telephone jun thu 419 1 999 0 nonexistent
## 8893 telephone jun thu 80 2 999 0 nonexistent
## 8896 telephone jun thu 117 2 999 0 nonexistent
## 8914 telephone jun thu 1053 2 999 0 nonexistent
## 8915 telephone jun thu 594 3 999 0 nonexistent
## 8920 telephone jun thu 215 1 999 0 nonexistent
## 8925 telephone jun thu 27 8 999 0 nonexistent
## 8934 telephone jun thu 237 2 999 0 nonexistent
## 8937 telephone jun thu 511 1 999 0 nonexistent
## 8940 telephone jun thu 61 2 999 0 nonexistent
## 8948 telephone jun thu 690 2 999 0 nonexistent
## 8950 telephone jun thu 140 2 999 0 nonexistent
## 8951 telephone jun thu 400 2 999 0 nonexistent
## 8954 telephone jun thu 82 1 999 0 nonexistent
## 8955 telephone jun thu 19 1 999 0 nonexistent
## 8956 telephone jun thu 94 1 999 0 nonexistent
## 8959 telephone jun thu 983 2 999 0 nonexistent
## 8960 telephone jun thu 221 2 999 0 nonexistent
## 8966 telephone jun thu 128 1 999 0 nonexistent
## 8970 telephone jun thu 59 7 999 0 nonexistent
## 8978 telephone jun thu 817 2 999 0 nonexistent
## 8983 telephone jun thu 77 2 999 0 nonexistent
## 8987 telephone jun thu 127 6 999 0 nonexistent
## 8993 telephone jun thu 26 24 999 0 nonexistent
## 8998 telephone jun thu 101 11 999 0 nonexistent
## 9003 telephone jun thu 955 4 999 0 nonexistent
## 9004 telephone jun thu 1018 3 999 0 nonexistent
## 9009 telephone jun thu 130 2 999 0 nonexistent
## 9011 telephone jun thu 314 2 999 0 nonexistent
## 9015 telephone jun thu 231 2 999 0 nonexistent
## 9017 telephone jun thu 805 2 999 0 nonexistent
## 9039 telephone jun thu 67 2 999 0 nonexistent
## 9040 telephone jun thu 18 3 999 0 nonexistent
## 9043 telephone jun thu 60 3 999 0 nonexistent
## 9052 telephone jun thu 27 7 999 0 nonexistent
## 9061 telephone jun thu 31 5 999 0 nonexistent
## 9064 telephone jun thu 87 2 999 0 nonexistent
## 9066 telephone jun thu 246 2 999 0 nonexistent
## 9067 telephone jun thu 128 2 999 0 nonexistent
## 9084 telephone jun fri 127 1 999 0 nonexistent
## 9088 telephone jun fri 178 1 999 0 nonexistent
## 9090 telephone jun fri 82 4 999 0 nonexistent
## 9099 telephone jun fri 278 1 999 0 nonexistent
## 9105 telephone jun fri 193 3 999 0 nonexistent
## 9109 telephone jun fri 361 1 999 0 nonexistent
## 9114 telephone jun fri 552 1 999 0 nonexistent
## 9117 telephone jun fri 220 2 999 0 nonexistent
## 9118 telephone jun fri 373 1 999 0 nonexistent
## 9124 telephone jun fri 513 3 999 0 nonexistent
## 9135 telephone jun fri 334 1 999 0 nonexistent
## 9136 telephone jun fri 49 5 999 0 nonexistent
## 9138 telephone jun fri 106 5 999 0 nonexistent
## 9139 telephone jun fri 248 2 999 0 nonexistent
## 9148 telephone jun fri 113 1 999 0 nonexistent
## 9154 telephone jun fri 29 1 999 0 nonexistent
## 9155 telephone jun fri 329 1 999 0 nonexistent
## 9159 telephone jun fri 80 3 999 0 nonexistent
## 9168 telephone jun fri 188 1 999 0 nonexistent
## 9175 telephone jun fri 164 1 999 0 nonexistent
## 9181 telephone jun fri 24 1 999 0 nonexistent
## 9184 telephone jun fri 79 3 999 0 nonexistent
## 9192 telephone jun fri 360 2 999 0 nonexistent
## 9196 telephone jun fri 28 1 999 0 nonexistent
## 9201 telephone jun fri 168 3 999 0 nonexistent
## 9204 telephone jun fri 460 4 999 0 nonexistent
## 9210 telephone jun fri 173 2 999 0 nonexistent
## 9211 telephone jun fri 175 2 999 0 nonexistent
## 9214 telephone jun fri 219 1 999 0 nonexistent
## 9222 telephone jun fri 45 1 999 0 nonexistent
## 9225 telephone jun fri 40 1 999 0 nonexistent
## 9230 telephone jun fri 78 3 999 0 nonexistent
## 9232 telephone jun fri 181 2 999 0 nonexistent
## 9237 telephone jun fri 52 1 999 0 nonexistent
## 9242 telephone jun fri 250 1 999 0 nonexistent
## 9245 telephone jun fri 46 2 999 0 nonexistent
## 9249 telephone jun fri 516 5 999 0 nonexistent
## 9264 telephone jun fri 140 5 999 0 nonexistent
## 9266 telephone jun fri 212 1 999 0 nonexistent
## 9269 telephone jun fri 319 4 999 0 nonexistent
## 9272 telephone jun fri 274 2 999 0 nonexistent
## 9276 telephone jun fri 639 2 999 0 nonexistent
## 9279 telephone jun fri 426 2 999 0 nonexistent
## 9281 telephone jun fri 460 8 999 0 nonexistent
## 9298 telephone jun fri 174 2 999 0 nonexistent
## 9307 telephone jun fri 59 2 999 0 nonexistent
## 9315 telephone jun fri 262 2 999 0 nonexistent
## 9343 telephone jun fri 159 9 999 0 nonexistent
## 9344 telephone jun fri 38 3 999 0 nonexistent
## 9345 telephone jun fri 191 2 999 0 nonexistent
## 9362 telephone jun fri 80 5 999 0 nonexistent
## 9365 telephone jun fri 201 6 999 0 nonexistent
## 9377 telephone jun fri 49 2 999 0 nonexistent
## 9380 telephone jun fri 92 1 999 0 nonexistent
## 9383 telephone jun fri 21 20 999 0 nonexistent
## 9384 telephone jun fri 354 2 999 0 nonexistent
## 9385 telephone jun fri 63 3 999 0 nonexistent
## 9386 telephone jun fri 56 1 999 0 nonexistent
## 9390 telephone jun fri 176 1 999 0 nonexistent
## 9392 telephone jun fri 63 2 999 0 nonexistent
## 9397 telephone jun fri 158 2 999 0 nonexistent
## 9404 telephone jun fri 355 4 999 0 nonexistent
## 9405 telephone jun fri 151 6 999 0 nonexistent
## 9409 telephone jun fri 124 3 999 0 nonexistent
## 9424 telephone jun fri 25 6 999 0 nonexistent
## 9428 telephone jun fri 446 3 999 0 nonexistent
## 9430 telephone jun fri 100 3 999 0 nonexistent
## 9434 telephone jun fri 37 3 999 0 nonexistent
## 9437 telephone jun fri 28 6 999 0 nonexistent
## 9446 telephone jun fri 288 12 999 0 nonexistent
## 9449 telephone jun fri 50 1 999 0 nonexistent
## 9451 telephone jun fri 160 1 999 0 nonexistent
## 9452 telephone jun fri 23 1 999 0 nonexistent
## 9456 telephone jun fri 103 1 999 0 nonexistent
## 9459 telephone jun fri 26 1 999 0 nonexistent
## 9462 telephone jun fri 61 1 999 0 nonexistent
## 9468 telephone jun fri 68 1 999 0 nonexistent
## 9472 telephone jun fri 1291 3 999 0 nonexistent
## 9475 telephone jun mon 123 1 999 0 nonexistent
## 9478 telephone jun mon 164 2 999 0 nonexistent
## 9482 telephone jun mon 349 2 999 0 nonexistent
## 9488 telephone jun mon 832 18 999 0 nonexistent
## 9508 telephone jun mon 299 4 999 0 nonexistent
## 9509 telephone jun mon 311 2 999 0 nonexistent
## 9510 telephone jun mon 123 1 999 0 nonexistent
## 9517 telephone jun mon 220 4 999 0 nonexistent
## 9531 telephone jun mon 49 1 999 0 nonexistent
## 9544 telephone jun mon 443 2 999 0 nonexistent
## 9550 telephone jun mon 83 1 999 0 nonexistent
## 9565 telephone jun mon 63 1 999 0 nonexistent
## 9567 telephone jun mon 70 1 999 0 nonexistent
## 9568 telephone jun mon 255 1 999 0 nonexistent
## 9573 telephone jun mon 901 1 999 0 nonexistent
## 9578 telephone jun mon 173 1 999 0 nonexistent
## 9588 telephone jun mon 225 2 999 0 nonexistent
## 9591 telephone jun mon 186 3 999 0 nonexistent
## 9598 telephone jun mon 37 1 999 0 nonexistent
## 9599 telephone jun mon 589 1 999 0 nonexistent
## 9604 telephone jun mon 73 1 999 0 nonexistent
## 9605 telephone jun mon 88 1 999 0 nonexistent
## 9611 telephone jun mon 123 2 999 0 nonexistent
## 9616 telephone jun mon 250 1 999 0 nonexistent
## 9622 telephone jun mon 87 1 999 0 nonexistent
## 9629 telephone jun mon 117 1 999 0 nonexistent
## 9635 telephone jun mon 23 1 999 0 nonexistent
## 9639 telephone jun mon 213 1 999 0 nonexistent
## 9643 telephone jun mon 114 1 999 0 nonexistent
## 9644 telephone jun mon 136 1 999 0 nonexistent
## 9654 telephone jun mon 85 1 999 0 nonexistent
## 9658 telephone jun mon 271 2 999 0 nonexistent
## 9663 telephone jun mon 78 3 999 0 nonexistent
## 9673 telephone jun mon 440 1 999 0 nonexistent
## 9677 telephone jun mon 91 3 999 0 nonexistent
## 9680 telephone jun mon 295 3 999 0 nonexistent
## 9681 telephone jun mon 83 2 999 0 nonexistent
## 9682 telephone jun mon 346 2 999 0 nonexistent
## 9684 telephone jun mon 291 3 999 0 nonexistent
## 9692 telephone jun mon 493 2 999 0 nonexistent
## 9693 telephone jun mon 188 2 999 0 nonexistent
## 9694 telephone jun mon 17 5 999 0 nonexistent
## 9699 telephone jun mon 419 2 999 0 nonexistent
## 9700 telephone jun mon 65 3 999 0 nonexistent
## 9714 telephone jun mon 135 3 999 0 nonexistent
## 9727 telephone jun mon 436 2 999 0 nonexistent
## 9732 telephone jun mon 243 2 999 0 nonexistent
## 9734 telephone jun mon 442 8 999 0 nonexistent
## 9735 telephone jun mon 184 5 999 0 nonexistent
## 9737 telephone jun mon 164 3 999 0 nonexistent
## 9738 telephone jun mon 166 3 999 0 nonexistent
## 9741 telephone jun mon 553 2 999 0 nonexistent
## 9747 telephone jun mon 90 2 999 0 nonexistent
## 9751 telephone jun mon 87 13 999 0 nonexistent
## 9755 telephone jun mon 116 3 999 0 nonexistent
## 9762 telephone jun mon 182 2 999 0 nonexistent
## 9763 telephone jun mon 250 2 999 0 nonexistent
## 9786 telephone jun wed 126 12 999 0 nonexistent
## 9787 telephone jun wed 198 5 999 0 nonexistent
## 9788 telephone jun wed 73 7 999 0 nonexistent
## 9791 telephone jun wed 76 3 999 0 nonexistent
## 9796 telephone jun wed 480 3 999 0 nonexistent
## 9797 telephone jun wed 583 4 999 0 nonexistent
## 9801 telephone jun wed 490 2 999 0 nonexistent
## 9804 telephone jun wed 42 2 999 0 nonexistent
## 9805 telephone jun wed 29 2 999 0 nonexistent
## 9814 telephone jun wed 103 3 999 0 nonexistent
## 9819 telephone jun wed 360 1 999 0 nonexistent
## 9823 telephone jun wed 175 4 999 0 nonexistent
## 9827 telephone jun wed 363 1 999 0 nonexistent
## 9831 telephone jun wed 68 1 999 0 nonexistent
## 9835 telephone jun wed 197 3 999 0 nonexistent
## 9838 telephone jun wed 439 1 999 0 nonexistent
## 9839 telephone jun wed 232 2 999 0 nonexistent
## 9843 telephone jun wed 458 1 999 0 nonexistent
## 9844 telephone jun wed 191 1 999 0 nonexistent
## 9846 telephone jun wed 354 1 999 0 nonexistent
## 9848 telephone jun wed 105 4 999 0 nonexistent
## 9859 telephone jun wed 694 2 999 0 nonexistent
## 9861 telephone jun wed 165 2 999 0 nonexistent
## 9865 telephone jun wed 76 1 999 0 nonexistent
## 9887 telephone jun wed 113 1 999 0 nonexistent
## 9898 telephone jun wed 119 1 999 0 nonexistent
## 9900 telephone jun wed 553 1 999 0 nonexistent
## 9905 telephone jun wed 586 1 999 0 nonexistent
## 9915 telephone jun wed 651 2 999 0 nonexistent
## 9916 telephone jun wed 437 2 999 0 nonexistent
## 9917 telephone jun wed 134 2 999 0 nonexistent
## 9926 telephone jun wed 114 1 999 0 nonexistent
## 9939 telephone jun wed 201 5 999 0 nonexistent
## 9961 telephone jun wed 204 2 999 0 nonexistent
## 9966 telephone jun wed 147 4 999 0 nonexistent
## 9976 telephone jun wed 105 3 999 0 nonexistent
## 9978 telephone jun wed 213 6 999 0 nonexistent
## 9981 telephone jun wed 141 2 999 0 nonexistent
## 9988 telephone jun wed 904 4 999 0 nonexistent
## 9995 telephone jun wed 59 8 999 0 nonexistent
## 10002 telephone jun wed 138 5 999 0 nonexistent
## 10008 telephone jun wed 122 5 999 0 nonexistent
## 10009 telephone jun wed 218 7 999 0 nonexistent
## 10012 telephone jun wed 378 4 999 0 nonexistent
## 10015 telephone jun wed 89 3 999 0 nonexistent
## 10019 telephone jun thu 89 6 999 0 nonexistent
## 10022 telephone jun thu 136 2 999 0 nonexistent
## 10023 telephone jun thu 542 3 999 0 nonexistent
## 10026 telephone jun thu 410 16 999 0 nonexistent
## 10027 telephone jun thu 93 8 999 0 nonexistent
## 10029 telephone jun thu 403 5 999 0 nonexistent
## 10032 telephone jun thu 90 3 999 0 nonexistent
## 10041 telephone jun thu 110 4 999 0 nonexistent
## 10049 telephone jun thu 106 1 999 0 nonexistent
## 10050 telephone jun thu 885 1 999 0 nonexistent
## 10061 telephone jun thu 91 1 999 0 nonexistent
## 10068 telephone jun thu 146 1 999 0 nonexistent
## 10075 telephone jun thu 385 1 999 0 nonexistent
## 10077 telephone jun thu 651 5 999 0 nonexistent
## 10078 telephone jun thu 223 1 999 0 nonexistent
## 10079 telephone jun thu 309 5 999 0 nonexistent
## 10084 telephone jun thu 691 1 999 0 nonexistent
## 10086 telephone jun thu 315 1 999 0 nonexistent
## 10087 telephone jun thu 154 3 999 0 nonexistent
## 10088 telephone jun thu 344 1 999 0 nonexistent
## 10093 telephone jun thu 186 1 999 0 nonexistent
## 10098 telephone jun thu 77 1 999 0 nonexistent
## 10101 telephone jun thu 64 6 999 0 nonexistent
## 10102 telephone jun thu 351 1 999 0 nonexistent
## 10108 telephone jun thu 349 1 999 0 nonexistent
## 10113 telephone jun thu 113 1 999 0 nonexistent
## 10116 telephone jun thu 167 1 999 0 nonexistent
## 10124 telephone jun thu 72 1 999 0 nonexistent
## 10125 telephone jun thu 993 6 999 0 nonexistent
## 10126 telephone jun thu 160 2 999 0 nonexistent
## 10129 telephone jun thu 919 1 999 0 nonexistent
## 10130 telephone jun thu 52 5 999 0 nonexistent
## 10135 telephone jun thu 992 2 999 0 nonexistent
## 10143 telephone jun thu 309 1 999 0 nonexistent
## 10146 telephone jun thu 582 1 999 0 nonexistent
## 10148 telephone jun thu 270 1 999 0 nonexistent
## 10150 telephone jun thu 281 1 999 0 nonexistent
## 10152 telephone jun thu 186 2 999 0 nonexistent
## 10159 telephone jun thu 1268 2 999 0 nonexistent
## 10162 telephone jun thu 130 2 999 0 nonexistent
## 10173 telephone jun thu 361 2 999 0 nonexistent
## 10180 telephone jun thu 69 3 999 0 nonexistent
## 10185 telephone jun thu 1243 7 999 0 nonexistent
## 10198 telephone jun thu 211 2 999 0 nonexistent
## 10201 telephone jun thu 188 4 999 0 nonexistent
## 10203 telephone jun thu 361 2 999 0 nonexistent
## 10205 telephone jun thu 700 2 999 0 nonexistent
## 10206 telephone jun mon 83 4 999 0 nonexistent
## 10224 telephone jun mon 157 2 999 0 nonexistent
## 10236 telephone jun mon 177 5 999 0 nonexistent
## 10241 telephone jun mon 104 4 999 0 nonexistent
## 10242 telephone jun mon 325 3 999 0 nonexistent
## 10249 telephone jun mon 349 2 999 0 nonexistent
## 10253 telephone jun mon 114 5 999 0 nonexistent
## 10257 telephone jun mon 187 3 999 0 nonexistent
## 10267 telephone jun mon 78 5 999 0 nonexistent
## 10293 telephone jun mon 60 2 999 0 nonexistent
## 10299 telephone jun mon 270 1 999 0 nonexistent
## 10302 telephone jun mon 223 2 999 0 nonexistent
## 10305 telephone jun mon 193 2 999 0 nonexistent
## 10307 telephone jun mon 163 4 999 0 nonexistent
## 10310 telephone jun mon 71 1 999 0 nonexistent
## 10313 telephone jun mon 116 1 999 0 nonexistent
## 10314 telephone jun mon 64 1 999 0 nonexistent
## 10325 telephone jun mon 263 8 999 0 nonexistent
## 10326 telephone jun mon 123 1 999 0 nonexistent
## 10327 telephone jun mon 208 1 999 0 nonexistent
## 10332 telephone jun mon 289 1 999 0 nonexistent
## 10347 telephone jun mon 215 3 999 0 nonexistent
## 10349 telephone jun mon 382 3 999 0 nonexistent
## 10354 telephone jun mon 1248 3 999 0 nonexistent
## 10357 telephone jun mon 273 5 999 0 nonexistent
## 10368 telephone jun mon 394 2 999 0 nonexistent
## 10376 telephone jun mon 66 1 999 0 nonexistent
## 10386 telephone jun mon 294 3 999 0 nonexistent
## 10403 telephone jun mon 721 3 999 0 nonexistent
## 10410 telephone jun mon 155 4 999 0 nonexistent
## 10417 telephone jun mon 298 4 999 0 nonexistent
## 10433 telephone jun mon 431 1 999 0 nonexistent
## 10437 telephone jun mon 71 4 999 0 nonexistent
## 10438 telephone jun mon 341 3 999 0 nonexistent
## 10443 telephone jun mon 221 1 999 0 nonexistent
## 10450 telephone jun mon 362 3 999 0 nonexistent
## 10458 telephone jun mon 26 18 999 0 nonexistent
## 10462 telephone jun mon 440 3 999 0 nonexistent
## 10465 telephone jun mon 154 3 999 0 nonexistent
## 10469 telephone jun mon 375 2 999 0 nonexistent
## 10478 telephone jun tue 118 3 999 0 nonexistent
## 10483 telephone jun tue 260 4 999 0 nonexistent
## 10492 telephone jun tue 131 2 999 0 nonexistent
## 10494 telephone jun tue 315 2 999 0 nonexistent
## 10495 telephone jun tue 37 6 999 0 nonexistent
## 10504 telephone jun tue 168 1 999 0 nonexistent
## 10511 telephone jun tue 78 1 999 0 nonexistent
## 10518 telephone jun tue 128 1 999 0 nonexistent
## 10527 telephone jun tue 75 1 999 0 nonexistent
## 10532 telephone jun tue 115 1 999 0 nonexistent
## 10536 telephone jun tue 60 3 999 0 nonexistent
## 10538 telephone jun tue 296 1 999 0 nonexistent
## 10539 telephone jun tue 70 8 999 0 nonexistent
## 10543 telephone jun tue 269 1 999 0 nonexistent
## 10547 telephone jun tue 483 1 999 0 nonexistent
## 10551 telephone jun tue 218 1 999 0 nonexistent
## 10552 telephone jun tue 121 1 999 0 nonexistent
## 10555 telephone jun tue 181 1 999 0 nonexistent
## 10566 telephone jun tue 285 1 999 0 nonexistent
## 10567 telephone jun tue 255 1 999 0 nonexistent
## 10570 telephone jun tue 705 1 999 0 nonexistent
## 10575 telephone jun tue 23 3 999 0 nonexistent
## 10577 telephone jun tue 254 1 999 0 nonexistent
## 10581 telephone jun tue 135 1 999 0 nonexistent
## 10585 telephone jun tue 105 1 999 0 nonexistent
## 10586 telephone jun tue 98 1 999 0 nonexistent
## 10597 telephone jun tue 91 2 999 0 nonexistent
## 10604 telephone jun tue 168 2 999 0 nonexistent
## 10607 telephone jun tue 43 6 999 0 nonexistent
## 10610 telephone jun tue 157 1 999 0 nonexistent
## 10612 telephone jun tue 50 2 999 0 nonexistent
## 10613 telephone jun tue 49 1 999 0 nonexistent
## 10615 telephone jun tue 259 3 999 0 nonexistent
## 10619 telephone jun tue 128 1 999 0 nonexistent
## 10621 telephone jun tue 187 2 999 0 nonexistent
## 10633 telephone jun tue 161 1 999 0 nonexistent
## 10635 telephone jun tue 346 2 999 0 nonexistent
## 10636 telephone jun tue 781 1 999 0 nonexistent
## 10639 telephone jun tue 31 1 999 0 nonexistent
## 10643 telephone jun tue 24 1 999 0 nonexistent
## 10655 telephone jun tue 19 4 999 0 nonexistent
## 10656 telephone jun tue 93 2 999 0 nonexistent
## 10666 telephone jun tue 437 2 999 0 nonexistent
## 10672 telephone jun tue 412 7 999 0 nonexistent
## 10676 telephone jun tue 57 2 999 0 nonexistent
## 10679 telephone jun tue 171 4 999 0 nonexistent
## 10682 telephone jun tue 167 2 999 0 nonexistent
## 10684 telephone jun tue 204 2 999 0 nonexistent
## 10688 telephone jun tue 63 2 999 0 nonexistent
## 10692 telephone jun tue 118 3 999 0 nonexistent
## 10698 telephone jun tue 408 2 999 0 nonexistent
## 10703 telephone jun tue 424 2 999 0 nonexistent
## 10705 telephone jun tue 775 3 999 0 nonexistent
## 10707 telephone jun tue 102 3 999 0 nonexistent
## 10709 telephone jun tue 96 2 999 0 nonexistent
## 10716 telephone jun tue 50 2 999 0 nonexistent
## 10717 telephone jun tue 173 2 999 0 nonexistent
## 10720 telephone jun tue 854 3 999 0 nonexistent
## 10730 telephone jun tue 266 2 999 0 nonexistent
## 10731 telephone jun tue 134 7 999 0 nonexistent
## 10737 telephone jun tue 675 5 999 0 nonexistent
## 10742 telephone jun tue 61 2 999 0 nonexistent
## 10743 telephone jun tue 136 2 999 0 nonexistent
## 10752 telephone jun tue 76 6 999 0 nonexistent
## 10753 telephone jun tue 271 2 999 0 nonexistent
## 10760 telephone jun tue 76 4 999 0 nonexistent
## 10762 telephone jun tue 979 9 999 0 nonexistent
## 10776 telephone jun tue 116 3 999 0 nonexistent
## 10783 telephone jun tue 637 3 999 0 nonexistent
## 10794 telephone jun tue 334 2 999 0 nonexistent
## 10796 telephone jun tue 441 3 999 0 nonexistent
## 10798 telephone jun wed 47 2 999 0 nonexistent
## 10802 telephone jun wed 26 7 999 0 nonexistent
## 10805 telephone jun wed 386 5 999 0 nonexistent
## 10808 telephone jun wed 35 3 999 0 nonexistent
## 10810 telephone jun wed 53 2 999 0 nonexistent
## 10811 telephone jun wed 311 5 999 0 nonexistent
## 10813 telephone jun wed 151 3 999 0 nonexistent
## 10824 telephone jun wed 48 1 999 0 nonexistent
## 10826 telephone jun wed 1062 4 999 0 nonexistent
## 10835 telephone jun wed 54 1 999 0 nonexistent
## 10836 telephone jun wed 835 1 999 0 nonexistent
## 10837 telephone jun wed 421 2 999 0 nonexistent
## 10839 telephone jun wed 164 3 999 0 nonexistent
## 10843 telephone jun wed 503 11 999 0 nonexistent
## 10849 telephone jun wed 371 2 999 0 nonexistent
## 10853 telephone jun wed 247 5 999 0 nonexistent
## 10857 telephone jun wed 172 2 999 0 nonexistent
## 10871 telephone jun wed 82 1 999 0 nonexistent
## 10879 telephone jun wed 367 1 999 0 nonexistent
## 10882 telephone jun wed 56 1 999 0 nonexistent
## 10884 telephone jun wed 97 8 999 0 nonexistent
## 10892 telephone jun wed 443 1 999 0 nonexistent
## 10893 telephone jun wed 115 1 999 0 nonexistent
## 10899 telephone jun wed 104 1 999 0 nonexistent
## 10903 telephone jun wed 156 1 999 0 nonexistent
## 10909 telephone jun wed 310 1 999 0 nonexistent
## 10916 telephone jun wed 362 1 999 0 nonexistent
## 10918 telephone jun wed 36 4 999 0 nonexistent
## 10919 telephone jun wed 138 1 999 0 nonexistent
## 10937 telephone jun wed 537 1 999 0 nonexistent
## 10938 telephone jun wed 476 1 999 0 nonexistent
## 10955 telephone jun wed 320 3 999 0 nonexistent
## 10958 telephone jun wed 345 1 999 0 nonexistent
## 10959 telephone jun wed 146 3 999 0 nonexistent
## 10960 telephone jun wed 248 29 999 0 nonexistent
## 10963 telephone jun wed 16 9 999 0 nonexistent
## 10966 telephone jun wed 101 1 999 0 nonexistent
## 10971 telephone jun wed 43 1 999 0 nonexistent
## 10986 telephone jun wed 373 2 999 0 nonexistent
## 10987 telephone jun wed 18 6 999 0 nonexistent
## 10989 telephone jun wed 307 14 999 0 nonexistent
## 10994 telephone jun wed 188 1 999 0 nonexistent
## 10996 telephone jun wed 443 7 999 0 nonexistent
## 11004 telephone jun wed 19 30 999 0 nonexistent
## 11007 telephone jun wed 234 2 999 0 nonexistent
## 11010 telephone jun wed 156 9 999 0 nonexistent
## 11015 telephone jun wed 61 3 999 0 nonexistent
## 11017 telephone jun wed 704 4 999 0 nonexistent
## 11028 telephone jun wed 48 10 999 0 nonexistent
## 11034 telephone jun wed 25 41 999 0 nonexistent
## 11035 telephone jun wed 57 2 999 0 nonexistent
## 11039 telephone jun wed 313 2 999 0 nonexistent
## 11045 telephone jun wed 51 4 999 0 nonexistent
## 11059 telephone jun wed 16 14 999 0 nonexistent
## 11063 telephone jun wed 90 4 999 0 nonexistent
## 11071 telephone jun wed 1060 5 999 0 nonexistent
## 11074 telephone jun wed 521 11 999 0 nonexistent
## 11077 telephone jun wed 40 3 999 0 nonexistent
## 11079 telephone jun wed 375 2 999 0 nonexistent
## 11080 telephone jun wed 43 4 999 0 nonexistent
## 11084 telephone jun thu 102 13 999 0 nonexistent
## 11092 telephone jun thu 39 2 999 0 nonexistent
## 11097 telephone jun thu 127 1 999 0 nonexistent
## 11099 telephone jun thu 37 1 999 0 nonexistent
## 11100 telephone jun thu 266 4 999 0 nonexistent
## 11115 telephone jun thu 348 3 999 0 nonexistent
## 11116 telephone jun thu 71 1 999 0 nonexistent
## 11122 telephone jun thu 34 31 999 0 nonexistent
## 11125 telephone jun thu 144 10 999 0 nonexistent
## 11129 telephone jun thu 268 1 999 0 nonexistent
## 11131 telephone jun thu 203 2 999 0 nonexistent
## 11149 telephone jun thu 93 1 999 0 nonexistent
## 11156 telephone jun thu 96 1 999 0 nonexistent
## 11161 telephone jun thu 178 1 999 0 nonexistent
## 11165 telephone jun thu 122 1 999 0 nonexistent
## 11168 telephone jun thu 521 1 999 0 nonexistent
## 11170 telephone jun thu 142 4 999 0 nonexistent
## 11186 telephone jun thu 91 1 999 0 nonexistent
## 11197 telephone jun thu 149 1 999 0 nonexistent
## 11199 telephone jun thu 374 3 999 0 nonexistent
## 11200 telephone jun thu 207 1 999 0 nonexistent
## 11201 telephone jun thu 83 1 999 0 nonexistent
## 11205 telephone jun thu 106 1 999 0 nonexistent
## 11207 telephone jun thu 370 1 999 0 nonexistent
## 11208 telephone jun thu 487 1 999 0 nonexistent
## 11212 telephone jun thu 253 1 999 0 nonexistent
## 11214 telephone jun thu 239 1 999 0 nonexistent
## 11218 telephone jun thu 135 1 999 0 nonexistent
## 11225 telephone jun thu 145 4 999 0 nonexistent
## 11228 telephone jun thu 262 5 999 0 nonexistent
## 11236 telephone jun thu 26 2 999 0 nonexistent
## 11237 telephone jun thu 63 2 999 0 nonexistent
## 11238 telephone jun thu 176 2 999 0 nonexistent
## 11247 telephone jun thu 453 1 999 0 nonexistent
## 11255 telephone jun thu 55 1 999 0 nonexistent
## 11260 telephone jun thu 232 1 999 0 nonexistent
## 11265 telephone jun thu 216 2 999 0 nonexistent
## 11275 telephone jun thu 1136 1 999 0 nonexistent
## 11283 telephone jun thu 722 1 999 0 nonexistent
## 11291 telephone jun thu 10 16 999 0 nonexistent
## 11295 telephone jun thu 11 7 999 0 nonexistent
## 11297 telephone jun thu 208 2 999 0 nonexistent
## 11301 telephone jun thu 93 4 999 0 nonexistent
## 11303 telephone jun thu 405 2 999 0 nonexistent
## 11304 telephone jun thu 69 1 999 0 nonexistent
## 11308 telephone jun thu 237 2 999 0 nonexistent
## 11321 telephone jun thu 92 2 999 0 nonexistent
## 11323 telephone jun thu 563 2 999 0 nonexistent
## 11328 telephone jun thu 354 7 999 0 nonexistent
## 11337 telephone jun thu 21 8 999 0 nonexistent
## 11338 telephone jun thu 104 1 999 0 nonexistent
## 11345 telephone jun thu 59 8 999 0 nonexistent
## 11351 telephone jun thu 129 2 999 0 nonexistent
## 11355 telephone jun thu 112 4 999 0 nonexistent
## 11356 telephone jun thu 36 7 999 0 nonexistent
## 11362 telephone jun thu 138 9 999 0 nonexistent
## 11373 telephone jun fri 76 12 999 0 nonexistent
## 11374 telephone jun fri 37 2 999 0 nonexistent
## 11383 telephone jun fri 24 11 999 0 nonexistent
## 11386 telephone jun fri 75 2 999 0 nonexistent
## 11398 telephone jun fri 191 3 999 0 nonexistent
## 11399 telephone jun fri 167 2 999 0 nonexistent
## 11402 telephone jun fri 206 2 999 0 nonexistent
## 11419 telephone jun fri 122 1 999 0 nonexistent
## 11423 telephone jun fri 35 1 999 0 nonexistent
## 11426 telephone jun fri 45 1 999 0 nonexistent
## 11429 telephone jun fri 325 1 999 0 nonexistent
## 11433 telephone jun fri 170 1 999 0 nonexistent
## 11435 telephone jun fri 368 2 999 0 nonexistent
## 11439 telephone jun fri 398 2 999 0 nonexistent
## 11444 telephone jun fri 48 1 999 0 nonexistent
## 11458 telephone jun fri 218 1 999 0 nonexistent
## 11463 telephone jun fri 25 1 999 0 nonexistent
## 11464 telephone jun fri 75 4 999 0 nonexistent
## 11465 telephone jun fri 64 1 999 0 nonexistent
## 11471 telephone jun fri 31 1 999 0 nonexistent
## 11472 telephone jun fri 838 1 999 0 nonexistent
## 11482 telephone jun fri 98 1 999 0 nonexistent
## 11484 telephone jun fri 41 3 999 0 nonexistent
## 11489 telephone jun fri 307 3 999 0 nonexistent
## 11491 telephone jun fri 174 1 999 0 nonexistent
## 11493 telephone jun fri 1098 2 999 0 nonexistent
## 11494 telephone jun fri 115 20 999 0 nonexistent
## 11495 telephone jun fri 351 2 999 0 nonexistent
## 11496 telephone jun fri 89 1 999 0 nonexistent
## 11497 telephone jun fri 113 1 999 0 nonexistent
## 11499 telephone jun fri 256 8 999 0 nonexistent
## 11500 telephone jun fri 108 1 999 0 nonexistent
## 11505 telephone jun fri 63 1 999 0 nonexistent
## 11506 telephone jun fri 166 1 999 0 nonexistent
## 11524 telephone jun fri 471 2 999 0 nonexistent
## 11537 telephone jun fri 126 5 999 0 nonexistent
## 11546 telephone jun fri 415 4 999 0 nonexistent
## 11548 telephone jun fri 23 2 999 0 nonexistent
## 11553 telephone jun fri 560 3 999 0 nonexistent
## 11562 telephone jun fri 170 2 999 0 nonexistent
## 11569 telephone jun fri 519 2 999 0 nonexistent
## 11577 telephone jun fri 55 12 999 0 nonexistent
## 11584 telephone jun fri 93 2 999 0 nonexistent
## 11585 telephone jun fri 62 3 999 0 nonexistent
## 11587 telephone jun fri 47 2 999 0 nonexistent
## 11591 telephone jun fri 176 4 999 0 nonexistent
## 11600 telephone jun fri 11 5 999 0 nonexistent
## 11613 telephone jun fri 11 3 999 0 nonexistent
## 11620 telephone jun fri 34 3 999 0 nonexistent
## 11621 telephone jun fri 264 6 999 0 nonexistent
## 11627 telephone jun fri 29 2 999 0 nonexistent
## 11633 telephone jun fri 14 21 999 0 nonexistent
## 11638 telephone jun fri 22 5 999 0 nonexistent
## 11639 telephone jun fri 82 2 999 0 nonexistent
## 11644 telephone jun fri 435 4 999 0 nonexistent
## 11649 telephone jun fri 179 21 999 0 nonexistent
## 11654 telephone jun fri 23 3 999 0 nonexistent
## 11655 telephone jun fri 850 3 999 0 nonexistent
## 11656 telephone jun fri 818 2 999 0 nonexistent
## 11666 telephone jun fri 12 5 999 0 nonexistent
## 11669 telephone jun fri 17 10 999 0 nonexistent
## 11674 telephone jun fri 16 8 999 0 nonexistent
## 11680 telephone jun fri 11 21 999 0 nonexistent
## 11690 telephone jun fri 46 10 999 0 nonexistent
## 11694 telephone jun fri 175 14 999 0 nonexistent
## 11696 telephone jun fri 51 19 999 0 nonexistent
## 11703 telephone jun fri 44 4 999 0 nonexistent
## 11704 telephone jun fri 13 3 999 0 nonexistent
## 11712 telephone jun fri 65 2 999 0 nonexistent
## 11716 telephone jun fri 86 2 999 0 nonexistent
## 11718 telephone jun fri 693 3 999 0 nonexistent
## 11723 telephone jun fri 12 14 999 0 nonexistent
## 11727 telephone jun fri 22 12 999 0 nonexistent
## 11731 telephone jun fri 10 4 999 0 nonexistent
## 11735 telephone jun fri 16 7 999 0 nonexistent
## 11752 telephone jun fri 372 3 999 0 nonexistent
## 11763 telephone jun fri 40 2 999 0 nonexistent
## 11764 telephone jun fri 18 6 999 0 nonexistent
## 11770 telephone jun fri 13 40 999 0 nonexistent
## 11775 telephone jun fri 9 5 999 0 nonexistent
## 11790 telephone jun fri 180 6 999 0 nonexistent
## 11795 telephone jun fri 17 21 999 0 nonexistent
## 11796 telephone jun fri 184 4 999 0 nonexistent
## 11798 telephone jun fri 78 2 999 0 nonexistent
## 11803 telephone jun fri 13 5 999 0 nonexistent
## 11806 telephone jun fri 36 5 999 0 nonexistent
## 11807 telephone jun fri 55 5 999 0 nonexistent
## 11811 telephone jun fri 30 4 999 0 nonexistent
## 11812 telephone jun fri 38 6 999 0 nonexistent
## 11814 telephone jun fri 61 3 999 0 nonexistent
## 11816 telephone jun fri 45 22 999 0 nonexistent
## 11817 telephone jun fri 25 8 999 0 nonexistent
## 11829 telephone jun fri 13 15 999 0 nonexistent
## 11840 telephone jun fri 94 7 999 0 nonexistent
## 11843 telephone jun fri 43 2 999 0 nonexistent
## 11845 telephone jun fri 38 5 999 0 nonexistent
## 11847 telephone jun fri 274 9 999 0 nonexistent
## 11853 telephone jun fri 23 7 999 0 nonexistent
## 11854 telephone jun fri 12 3 999 0 nonexistent
## 11861 telephone jun fri 109 4 999 0 nonexistent
## 11866 telephone jun fri 24 5 999 0 nonexistent
## 11872 telephone jun fri 24 4 999 0 nonexistent
## 11879 telephone jun fri 20 3 999 0 nonexistent
## 11892 telephone jun fri 11 4 999 0 nonexistent
## 11923 telephone jun fri 51 2 999 0 nonexistent
## 11932 telephone jun fri 924 3 999 0 nonexistent
## 11938 telephone jun mon 670 3 999 0 nonexistent
## 11946 telephone jun mon 640 3 999 0 nonexistent
## 11950 telephone jun mon 216 3 999 0 nonexistent
## 11952 telephone jun tue 137 5 999 0 nonexistent
## 11961 telephone jun tue 146 3 999 0 nonexistent
## 11973 telephone jun wed 75 1 999 0 nonexistent
## 11980 telephone jun wed 67 1 999 0 nonexistent
## 11993 telephone jun wed 456 3 999 0 nonexistent
## 12001 telephone jun thu 322 2 999 0 nonexistent
## 12003 telephone jun thu 519 3 999 0 nonexistent
## 12006 telephone jun thu 138 3 999 0 nonexistent
## 12008 telephone jun thu 318 2 999 0 nonexistent
## 12010 telephone jun thu 344 1 999 0 nonexistent
## 12011 telephone jun thu 301 4 999 0 nonexistent
## 12014 telephone jun thu 190 1 999 0 nonexistent
## 12015 telephone jun thu 116 1 999 0 nonexistent
## 12023 telephone jun thu 176 7 999 0 nonexistent
## 12034 telephone jun thu 113 5 999 0 nonexistent
## 12041 telephone jun fri 381 3 999 0 nonexistent
## 12046 telephone jun fri 80 4 999 0 nonexistent
## 12051 telephone jun fri 120 6 999 0 nonexistent
## 12053 telephone jun fri 95 1 999 0 nonexistent
## 12056 telephone jun fri 302 2 999 0 nonexistent
## 12064 telephone jun fri 162 1 999 0 nonexistent
## 12068 telephone jun fri 103 1 999 0 nonexistent
## 12070 telephone jun fri 244 2 999 0 nonexistent
## 12072 telephone jun fri 140 2 999 0 nonexistent
## 12074 telephone jun fri 191 28 999 0 nonexistent
## 12081 telephone jun fri 135 2 999 0 nonexistent
## 12085 telephone jun fri 153 2 999 0 nonexistent
## 12093 telephone jun fri 183 2 999 0 nonexistent
## 12095 telephone jun fri 111 4 999 0 nonexistent
## 12096 telephone jun fri 56 2 999 0 nonexistent
## 12098 telephone jun fri 247 3 999 0 nonexistent
## 12099 telephone jun mon 125 2 999 0 nonexistent
## 12101 telephone jun mon 182 4 999 0 nonexistent
## 12103 telephone jun mon 198 2 999 0 nonexistent
## 12113 telephone jun mon 124 2 999 0 nonexistent
## 12127 telephone jun mon 73 2 999 0 nonexistent
## 12131 telephone jun mon 88 4 999 0 nonexistent
## 12138 telephone jul tue 381 4 999 0 nonexistent
## 12152 telephone jul tue 161 1 999 0 nonexistent
## 12154 telephone jul tue 157 1 999 0 nonexistent
## 12156 telephone jul tue 117 1 999 0 nonexistent
## 12158 telephone jul tue 36 1 999 0 nonexistent
## 12163 telephone jul tue 183 2 999 0 nonexistent
## 12172 telephone jul tue 359 1 999 0 nonexistent
## 12186 telephone jul tue 156 2 999 0 nonexistent
## 12189 telephone jul tue 143 1 999 0 nonexistent
## 12191 telephone jul tue 420 2 999 0 nonexistent
## 12192 telephone jul tue 1135 2 999 0 nonexistent
## 12196 telephone jul tue 650 2 999 0 nonexistent
## 12198 telephone jul wed 63 4 999 0 nonexistent
## 12201 telephone jul wed 220 2 999 0 nonexistent
## 12205 telephone jul wed 44 2 999 0 nonexistent
## 12209 telephone jul wed 348 3 999 0 nonexistent
## 12222 telephone jul thu 269 3 999 0 nonexistent
## 12225 telephone jul thu 202 1 999 0 nonexistent
## 12229 telephone jul thu 211 1 999 0 nonexistent
## 12251 telephone jul thu 168 1 999 0 nonexistent
## 12252 telephone jul thu 197 1 999 0 nonexistent
## 12254 telephone jul thu 90 1 999 0 nonexistent
## 12264 telephone jul thu 991 1 999 0 nonexistent
## 12266 telephone jul thu 652 1 999 0 nonexistent
## 12267 telephone jul thu 178 1 999 0 nonexistent
## 12268 telephone jul thu 306 4 999 0 nonexistent
## 12272 telephone jul thu 93 1 999 0 nonexistent
## 12293 telephone jul fri 257 1 999 0 nonexistent
## 12296 telephone jul fri 43 11 999 0 nonexistent
## 12299 telephone jul fri 49 1 999 0 nonexistent
## 12300 telephone jul fri 191 2 999 0 nonexistent
## 12307 telephone jul fri 133 1 999 0 nonexistent
## 12308 telephone jul fri 169 1 999 0 nonexistent
## 12314 telephone jul fri 105 3 999 0 nonexistent
## 12322 telephone jul fri 253 1 999 0 nonexistent
## 12326 telephone jul fri 121 1 999 0 nonexistent
## 12342 telephone jul fri 89 2 999 0 nonexistent
## 12346 telephone jul fri 225 2 999 0 nonexistent
## 12352 telephone jul fri 150 2 999 0 nonexistent
## 12358 cellular jul fri 297 1 999 0 nonexistent
## 12361 cellular jul fri 436 4 999 0 nonexistent
## 12363 telephone jul fri 141 2 999 0 nonexistent
## 12364 cellular jul fri 39 2 999 0 nonexistent
## 12365 cellular jul fri 165 2 999 0 nonexistent
## 12369 cellular jul fri 548 2 999 0 nonexistent
## 12372 telephone jul fri 304 3 999 0 nonexistent
## 12377 cellular jul fri 407 1 999 0 nonexistent
## 12383 cellular jul mon 125 2 999 0 nonexistent
## 12384 cellular jul mon 151 4 999 0 nonexistent
## 12385 cellular jul mon 491 3 999 0 nonexistent
## 12389 cellular jul mon 99 2 999 0 nonexistent
## 12391 cellular jul mon 164 5 999 0 nonexistent
## 12393 cellular jul mon 17 19 999 0 nonexistent
## 12395 cellular jul mon 128 3 999 0 nonexistent
## 12396 cellular jul mon 160 3 999 0 nonexistent
## 12397 cellular jul mon 89 4 999 0 nonexistent
## 12401 cellular jul mon 227 6 999 0 nonexistent
## 12402 cellular jul mon 107 5 999 0 nonexistent
## 12416 cellular jul mon 75 3 999 0 nonexistent
## 12417 cellular jul mon 136 4 999 0 nonexistent
## 12437 cellular jul mon 64 2 999 0 nonexistent
## 12439 cellular jul mon 277 2 999 0 nonexistent
## 12442 cellular jul mon 360 3 999 0 nonexistent
## 12461 telephone jul mon 259 8 999 0 nonexistent
## 12473 telephone jul mon 86 4 999 0 nonexistent
## 12476 telephone jul mon 69 3 999 0 nonexistent
## 12477 cellular jul mon 326 3 999 0 nonexistent
## 12484 cellular jul mon 66 1 999 0 nonexistent
## 12494 cellular jul mon 332 1 999 0 nonexistent
## 12499 cellular jul mon 169 1 999 0 nonexistent
## 12503 cellular jul mon 118 1 999 0 nonexistent
## 12504 cellular jul mon 199 1 999 0 nonexistent
## 12508 cellular jul mon 199 1 999 0 nonexistent
## 12510 cellular jul mon 39 1 999 0 nonexistent
## 12513 cellular jul mon 161 1 999 0 nonexistent
## 12515 cellular jul mon 187 3 999 0 nonexistent
## 12517 cellular jul mon 206 6 999 0 nonexistent
## 12521 cellular jul mon 44 3 999 0 nonexistent
## 12524 cellular jul mon 106 1 999 0 nonexistent
## 12526 cellular jul mon 51 1 999 0 nonexistent
## 12530 cellular jul mon 554 1 999 0 nonexistent
## 12532 cellular jul mon 46 1 999 0 nonexistent
## 12533 cellular jul mon 254 1 999 0 nonexistent
## 12545 cellular jul mon 451 1 999 0 nonexistent
## 12548 cellular jul mon 162 4 999 0 nonexistent
## 12554 cellular jul mon 120 1 999 0 nonexistent
## 12558 cellular jul mon 97 3 999 0 nonexistent
## 12571 cellular jul mon 500 1 999 0 nonexistent
## 12573 cellular jul mon 337 4 999 0 nonexistent
## 12590 cellular jul mon 422 3 999 0 nonexistent
## 12594 cellular jul mon 209 1 999 0 nonexistent
## 12595 telephone jul mon 194 2 999 0 nonexistent
## 12598 cellular jul mon 113 4 999 0 nonexistent
## 12609 cellular jul mon 167 2 999 0 nonexistent
## 12616 cellular jul mon 238 2 999 0 nonexistent
## 12620 cellular jul mon 68 1 999 0 nonexistent
## 12622 cellular jul mon 92 1 999 0 nonexistent
## 12623 cellular jul mon 159 1 999 0 nonexistent
## 12627 cellular jul mon 293 7 999 0 nonexistent
## 12635 telephone jul mon 70 3 999 0 nonexistent
## 12637 cellular jul mon 264 1 999 0 nonexistent
## 12642 cellular jul mon 196 3 999 0 nonexistent
## 12652 cellular jul mon 224 3 999 0 nonexistent
## 12658 telephone jul mon 416 8 999 0 nonexistent
## 12661 cellular jul mon 199 7 999 0 nonexistent
## 12667 cellular jul mon 160 5 999 0 nonexistent
## 12669 telephone jul mon 543 2 999 0 nonexistent
## 12679 cellular jul mon 447 3 999 0 nonexistent
## 12682 cellular jul mon 122 5 999 0 nonexistent
## 12684 cellular jul mon 79 2 999 0 nonexistent
## 12686 cellular jul mon 140 4 999 0 nonexistent
## 12688 cellular jul mon 500 5 999 0 nonexistent
## 12689 cellular jul mon 234 1 999 0 nonexistent
## 12694 telephone jul mon 122 2 999 0 nonexistent
## 12695 cellular jul mon 339 2 999 0 nonexistent
## 12703 cellular jul mon 95 2 999 0 nonexistent
## 12705 cellular jul mon 88 1 999 0 nonexistent
## 12707 cellular jul mon 422 2 999 0 nonexistent
## 12711 telephone jul mon 89 13 999 0 nonexistent
## 12715 cellular jul mon 624 5 999 0 nonexistent
## 12720 cellular jul mon 53 1 999 0 nonexistent
## 12722 cellular jul mon 136 1 999 0 nonexistent
## 12723 cellular jul mon 242 1 999 0 nonexistent
## 12729 cellular jul mon 192 1 999 0 nonexistent
## 12732 cellular jul mon 214 1 999 0 nonexistent
## 12735 cellular jul tue 226 1 999 0 nonexistent
## 12737 cellular jul tue 342 1 999 0 nonexistent
## 12745 cellular jul tue 104 2 999 0 nonexistent
## 12755 cellular jul tue 146 1 999 0 nonexistent
## 12758 cellular jul tue 191 1 999 0 nonexistent
## 12760 cellular jul tue 431 1 999 0 nonexistent
## 12765 cellular jul tue 395 1 999 0 nonexistent
## 12771 cellular jul tue 144 1 999 0 nonexistent
## 12775 cellular jul tue 85 4 999 0 nonexistent
## 12778 cellular jul tue 393 1 999 0 nonexistent
## 12782 cellular jul tue 203 1 999 0 nonexistent
## 12786 cellular jul tue 732 1 999 0 nonexistent
## 12794 cellular jul tue 106 1 999 0 nonexistent
## 12801 cellular jul tue 136 1 999 0 nonexistent
## 12802 cellular jul tue 367 1 999 0 nonexistent
## 12805 cellular jul tue 217 1 999 0 nonexistent
## 12806 cellular jul tue 256 1 999 0 nonexistent
## 12816 cellular jul tue 265 1 999 0 nonexistent
## 12820 cellular jul tue 96 2 999 0 nonexistent
## 12821 cellular jul tue 272 1 999 0 nonexistent
## 12823 cellular jul tue 71 1 999 0 nonexistent
## 12842 telephone jul tue 287 1 999 0 nonexistent
## 12846 cellular jul tue 249 3 999 0 nonexistent
## 12862 cellular jul tue 630 2 999 0 nonexistent
## 12863 cellular jul tue 116 1 999 0 nonexistent
## 12868 cellular jul tue 489 1 999 0 nonexistent
## 12875 cellular jul tue 173 1 999 0 nonexistent
## 12878 cellular jul tue 206 1 999 0 nonexistent
## 12881 cellular jul tue 125 2 999 0 nonexistent
## 12883 cellular jul tue 154 1 999 0 nonexistent
## 12888 cellular jul tue 716 5 999 0 nonexistent
## 12898 cellular jul tue 413 1 999 0 nonexistent
## 12899 cellular jul tue 97 6 999 0 nonexistent
## 12901 cellular jul tue 361 1 999 0 nonexistent
## 12903 cellular jul tue 528 2 999 0 nonexistent
## 12905 cellular jul tue 803 2 999 0 nonexistent
## 12906 cellular jul tue 141 1 999 0 nonexistent
## 12910 cellular jul tue 498 1 999 0 nonexistent
## 12915 cellular jul tue 154 2 999 0 nonexistent
## 12918 cellular jul tue 83 2 999 0 nonexistent
## 12928 cellular jul tue 303 1 999 0 nonexistent
## 12933 cellular jul tue 831 1 999 0 nonexistent
## 12936 cellular jul tue 107 2 999 0 nonexistent
## 12940 cellular jul tue 305 2 999 0 nonexistent
## 12942 cellular jul tue 312 2 999 0 nonexistent
## 12945 cellular jul tue 360 4 999 0 nonexistent
## 12946 cellular jul tue 216 1 999 0 nonexistent
## 12950 cellular jul tue 202 2 999 0 nonexistent
## 12952 cellular jul tue 301 1 999 0 nonexistent
## 12957 cellular jul tue 141 2 999 0 nonexistent
## 12968 cellular jul tue 192 1 999 0 nonexistent
## 12974 cellular jul tue 157 8 999 0 nonexistent
## 12979 cellular jul tue 214 1 999 0 nonexistent
## 12995 telephone jul tue 346 2 999 0 nonexistent
## 12997 cellular jul tue 426 3 999 0 nonexistent
## 13007 cellular jul tue 59 1 999 0 nonexistent
## 13011 cellular jul tue 154 3 999 0 nonexistent
## 13014 cellular jul tue 362 2 999 0 nonexistent
## 13017 cellular jul tue 1061 4 999 0 nonexistent
## 13020 cellular jul tue 378 1 999 0 nonexistent
## 13030 cellular jul tue 137 3 999 0 nonexistent
## 13043 cellular jul tue 90 2 999 0 nonexistent
## 13044 telephone jul tue 17 4 999 0 nonexistent
## 13045 cellular jul tue 140 3 999 0 nonexistent
## 13051 telephone jul tue 554 3 999 0 nonexistent
## 13053 cellular jul tue 22 3 999 0 nonexistent
## 13057 cellular jul tue 141 2 999 0 nonexistent
## 13059 cellular jul tue 249 2 999 0 nonexistent
## 13062 cellular jul tue 141 3 999 0 nonexistent
## 13066 cellular jul tue 279 3 999 0 nonexistent
## 13095 cellular jul tue 142 2 999 0 nonexistent
## 13096 telephone jul tue 280 5 999 0 nonexistent
## 13101 cellular jul wed 183 1 999 0 nonexistent
## 13107 cellular jul wed 157 1 999 0 nonexistent
## 13108 cellular jul wed 254 1 999 0 nonexistent
## 13115 cellular jul wed 136 1 999 0 nonexistent
## 13119 cellular jul wed 82 1 999 0 nonexistent
## 13121 cellular jul wed 1272 1 999 0 nonexistent
## 13128 cellular jul wed 259 3 999 0 nonexistent
## 13129 cellular jul wed 261 3 999 0 nonexistent
## 13132 cellular jul wed 537 1 999 0 nonexistent
## 13134 cellular jul wed 64 1 999 0 nonexistent
## 13135 cellular jul wed 679 1 999 0 nonexistent
## 13136 telephone jul wed 42 1 999 0 nonexistent
## 13137 cellular jul wed 63 1 999 0 nonexistent
## 13139 cellular jul wed 618 1 999 0 nonexistent
## 13156 cellular jul wed 99 2 999 0 nonexistent
## 13157 cellular jul wed 99 2 999 0 nonexistent
## 13158 cellular jul wed 194 1 999 0 nonexistent
## 13170 cellular jul wed 80 1 999 0 nonexistent
## 13171 cellular jul wed 185 1 999 0 nonexistent
## 13180 cellular jul wed 184 1 999 0 nonexistent
## 13185 cellular jul wed 85 1 999 0 nonexistent
## 13189 cellular jul wed 206 1 999 0 nonexistent
## 13191 cellular jul wed 125 1 999 0 nonexistent
## 13195 cellular jul wed 51 1 999 0 nonexistent
## 13203 cellular jul wed 147 1 999 0 nonexistent
## 13208 cellular jul wed 285 1 999 0 nonexistent
## 13212 cellular jul wed 92 1 999 0 nonexistent
## 13216 telephone jul wed 238 8 999 0 nonexistent
## 13236 cellular jul wed 87 1 999 0 nonexistent
## 13237 cellular jul wed 112 1 999 0 nonexistent
## 13239 cellular jul wed 310 1 999 0 nonexistent
## 13242 cellular jul wed 611 2 999 0 nonexistent
## 13244 cellular jul wed 156 1 999 0 nonexistent
## 13246 cellular jul wed 143 1 999 0 nonexistent
## 13258 cellular jul wed 90 10 999 0 nonexistent
## 13261 telephone jul wed 135 1 999 0 nonexistent
## 13263 cellular jul wed 72 1 999 0 nonexistent
## 13264 cellular jul wed 186 1 999 0 nonexistent
## 13265 cellular jul wed 219 1 999 0 nonexistent
## 13266 cellular jul wed 180 1 999 0 nonexistent
## 13267 cellular jul wed 111 1 999 0 nonexistent
## 13277 cellular jul wed 1121 1 999 0 nonexistent
## 13280 cellular jul wed 118 1 999 0 nonexistent
## 13287 cellular jul wed 668 1 999 0 nonexistent
## 13290 cellular jul wed 171 2 999 0 nonexistent
## 13291 cellular jul wed 76 2 999 0 nonexistent
## 13296 cellular jul wed 98 1 999 0 nonexistent
## 13303 cellular jul wed 167 1 999 0 nonexistent
## 13305 cellular jul wed 180 1 999 0 nonexistent
## 13312 cellular jul wed 136 6 999 0 nonexistent
## 13316 cellular jul wed 532 1 999 0 nonexistent
## 13322 cellular jul wed 98 2 999 0 nonexistent
## 13325 cellular jul wed 71 1 999 0 nonexistent
## 13326 cellular jul wed 90 1 999 0 nonexistent
## 13327 cellular jul wed 144 5 999 0 nonexistent
## 13328 cellular jul wed 332 1 999 0 nonexistent
## 13330 cellular jul wed 225 2 999 0 nonexistent
## 13331 cellular jul wed 289 1 999 0 nonexistent
## 13332 telephone jul wed 224 1 999 0 nonexistent
## 13337 telephone jul wed 672 6 999 0 nonexistent
## 13343 cellular jul wed 360 2 999 0 nonexistent
## 13347 cellular jul wed 172 1 999 0 nonexistent
## 13351 cellular jul wed 70 1 999 0 nonexistent
## 13356 cellular jul wed 111 4 999 0 nonexistent
## 13357 cellular jul wed 131 1 999 0 nonexistent
## 13361 cellular jul wed 313 1 999 0 nonexistent
## 13364 cellular jul wed 290 2 999 0 nonexistent
## 13366 cellular jul wed 77 1 999 0 nonexistent
## 13377 cellular jul wed 312 1 999 0 nonexistent
## 13383 telephone jul wed 106 1 999 0 nonexistent
## 13386 cellular jul wed 219 1 999 0 nonexistent
## 13387 cellular jul wed 208 1 999 0 nonexistent
## 13389 cellular jul wed 388 1 999 0 nonexistent
## 13390 cellular jul wed 397 6 999 0 nonexistent
## 13392 cellular jul wed 71 1 999 0 nonexistent
## 13393 cellular jul wed 480 1 999 0 nonexistent
## 13402 cellular jul wed 131 4 999 0 nonexistent
## 13407 cellular jul wed 411 1 999 0 nonexistent
## 13409 cellular jul wed 61 4 999 0 nonexistent
## 13411 cellular jul wed 197 1 999 0 nonexistent
## 13412 cellular jul wed 530 2 999 0 nonexistent
## 13418 cellular jul wed 211 11 999 0 nonexistent
## 13420 cellular jul wed 226 2 999 0 nonexistent
## 13425 cellular jul wed 243 5 999 0 nonexistent
## 13426 telephone jul wed 137 16 999 0 nonexistent
## 13428 cellular jul wed 156 1 999 0 nonexistent
## 13434 telephone jul wed 85 5 999 0 nonexistent
## 13437 telephone jul wed 10 19 999 0 nonexistent
## 13438 telephone jul wed 17 1 999 0 nonexistent
## 13446 telephone jul wed 39 1 999 0 nonexistent
## 13449 telephone jul wed 20 5 999 0 nonexistent
## 13455 telephone jul wed 56 1 999 0 nonexistent
## 13456 cellular jul wed 799 6 999 0 nonexistent
## 13457 telephone jul wed 372 1 999 0 nonexistent
## 13464 cellular jul wed 497 1 999 0 nonexistent
## 13466 cellular jul wed 89 1 999 0 nonexistent
## 13467 cellular jul wed 185 1 999 0 nonexistent
## 13472 cellular jul wed 1426 3 999 0 nonexistent
## 13479 cellular jul thu 668 1 999 0 nonexistent
## 13483 cellular jul thu 496 1 999 0 nonexistent
## 13485 telephone jul thu 29 1 999 0 nonexistent
## 13489 cellular jul thu 347 1 999 0 nonexistent
## 13491 cellular jul thu 141 1 999 0 nonexistent
## 13496 cellular jul thu 185 1 999 0 nonexistent
## 13497 cellular jul thu 235 1 999 0 nonexistent
## 13498 cellular jul thu 144 1 999 0 nonexistent
## 13500 cellular jul thu 266 1 999 0 nonexistent
## 13505 cellular jul thu 560 1 999 0 nonexistent
## 13506 cellular jul thu 108 2 999 0 nonexistent
## 13508 cellular jul thu 196 1 999 0 nonexistent
## 13517 cellular jul thu 402 1 999 0 nonexistent
## 13519 cellular jul thu 1065 1 999 0 nonexistent
## 13525 cellular jul thu 158 1 999 0 nonexistent
## 13532 cellular jul thu 854 1 999 0 nonexistent
## 13546 cellular jul thu 250 1 999 0 nonexistent
## 13548 telephone jul thu 75 1 999 0 nonexistent
## 13549 cellular jul thu 384 1 999 0 nonexistent
## 13550 cellular jul thu 268 1 999 0 nonexistent
## 13551 cellular jul thu 165 1 999 0 nonexistent
## 13554 cellular jul thu 181 1 999 0 nonexistent
## 13560 cellular jul thu 783 1 999 0 nonexistent
## 13562 cellular jul thu 228 1 999 0 nonexistent
## 13570 cellular jul thu 277 1 999 0 nonexistent
## 13580 cellular jul thu 140 2 999 0 nonexistent
## 13581 cellular jul thu 964 1 999 0 nonexistent
## 13593 cellular jul thu 329 1 999 0 nonexistent
## 13594 cellular jul thu 187 1 999 0 nonexistent
## 13601 cellular jul thu 45 1 999 0 nonexistent
## 13602 cellular jul thu 224 1 999 0 nonexistent
## 13608 cellular jul thu 96 1 999 0 nonexistent
## 13610 cellular jul thu 792 1 999 0 nonexistent
## 13611 cellular jul thu 100 1 999 0 nonexistent
## 13617 cellular jul thu 467 1 999 0 nonexistent
## 13637 cellular jul thu 160 1 999 0 nonexistent
## 13639 cellular jul thu 154 1 999 0 nonexistent
## 13647 cellular jul thu 157 1 999 0 nonexistent
## 13653 cellular jul thu 742 1 999 0 nonexistent
## 13654 cellular jul thu 188 1 999 0 nonexistent
## 13656 cellular jul thu 633 1 999 0 nonexistent
## 13659 cellular jul thu 133 1 999 0 nonexistent
## 13666 cellular jul thu 356 1 999 0 nonexistent
## 13671 cellular jul thu 466 1 999 0 nonexistent
## 13677 cellular jul thu 207 1 999 0 nonexistent
## 13680 cellular jul thu 112 1 999 0 nonexistent
## 13685 cellular jul thu 313 1 999 0 nonexistent
## 13702 cellular jul thu 161 5 999 0 nonexistent
## 13705 cellular jul thu 228 1 999 0 nonexistent
## 13711 cellular jul thu 634 1 999 0 nonexistent
## 13717 cellular jul thu 270 1 999 0 nonexistent
## 13720 cellular jul thu 446 1 999 0 nonexistent
## 13721 cellular jul thu 71 1 999 0 nonexistent
## 13722 cellular jul thu 121 1 999 0 nonexistent
## 13724 cellular jul thu 155 1 999 0 nonexistent
## 13727 cellular jul thu 476 4 999 0 nonexistent
## 13728 cellular jul thu 829 5 999 0 nonexistent
## 13730 cellular jul thu 360 17 999 0 nonexistent
## 13734 cellular jul thu 525 1 999 0 nonexistent
## 13742 cellular jul thu 60 1 999 0 nonexistent
## 13744 cellular jul thu 396 1 999 0 nonexistent
## 13747 cellular jul thu 227 1 999 0 nonexistent
## 13761 cellular jul thu 99 1 999 0 nonexistent
## 13764 cellular jul thu 90 9 999 0 nonexistent
## 13765 cellular jul thu 363 2 999 0 nonexistent
## 13767 cellular jul thu 192 1 999 0 nonexistent
## 13773 cellular jul thu 480 4 999 0 nonexistent
## 13777 cellular jul thu 412 1 999 0 nonexistent
## 13787 telephone jul thu 85 6 999 0 nonexistent
## 13795 telephone jul thu 270 7 999 0 nonexistent
## 13797 cellular jul thu 171 5 999 0 nonexistent
## 13798 cellular jul thu 721 3 999 0 nonexistent
## 13799 cellular jul thu 182 1 999 0 nonexistent
## 13801 telephone jul thu 229 4 999 0 nonexistent
## 13806 telephone jul thu 148 20 999 0 nonexistent
## 13811 telephone jul thu 535 2 999 0 nonexistent
## 13817 cellular jul thu 296 3 999 0 nonexistent
## 13820 cellular jul thu 258 1 999 0 nonexistent
## 13822 telephone jul fri 117 1 999 0 nonexistent
## 13831 cellular jul fri 522 1 999 0 nonexistent
## 13835 cellular jul fri 812 1 999 0 nonexistent
## 13841 cellular jul fri 157 1 999 0 nonexistent
## 13845 cellular jul fri 333 1 999 0 nonexistent
## 13846 cellular jul fri 252 1 999 0 nonexistent
## 13847 cellular jul fri 23 1 999 0 nonexistent
## 13852 cellular jul fri 159 1 999 0 nonexistent
## 13854 cellular jul fri 484 1 999 0 nonexistent
## 13860 cellular jul fri 451 1 999 0 nonexistent
## 13861 cellular jul fri 283 1 999 0 nonexistent
## 13862 cellular jul fri 78 1 999 0 nonexistent
## 13871 cellular jul fri 170 2 999 0 nonexistent
## 13883 cellular jul fri 817 2 999 0 nonexistent
## 13890 cellular jul fri 891 2 999 0 nonexistent
## 13892 cellular jul fri 1242 2 999 0 nonexistent
## 13893 telephone jul fri 76 2 999 0 nonexistent
## 13895 cellular jul fri 138 2 999 0 nonexistent
## 13898 cellular jul fri 100 2 999 0 nonexistent
## 13907 cellular jul fri 243 2 999 0 nonexistent
## 13912 telephone jul fri 518 3 999 0 nonexistent
## 13913 telephone jul fri 87 2 999 0 nonexistent
## 13914 cellular jul fri 130 2 999 0 nonexistent
## 13915 cellular jul fri 98 2 999 0 nonexistent
## 13920 cellular jul fri 188 2 999 0 nonexistent
## 13922 cellular jul fri 67 2 999 0 nonexistent
## 13924 cellular jul fri 86 2 999 0 nonexistent
## 13925 cellular jul fri 186 2 999 0 nonexistent
## 13927 cellular jul fri 249 2 999 0 nonexistent
## 13935 cellular jul fri 173 2 999 0 nonexistent
## 13946 cellular jul fri 289 2 999 0 nonexistent
## 13947 telephone jul fri 117 2 999 0 nonexistent
## 13949 cellular jul fri 487 3 999 0 nonexistent
## 13963 cellular jul fri 123 2 999 0 nonexistent
## 13970 cellular jul fri 502 2 999 0 nonexistent
## 13978 cellular jul fri 764 2 999 0 nonexistent
## 13988 cellular jul fri 221 2 999 0 nonexistent
## 13994 cellular jul fri 187 2 999 0 nonexistent
## 13998 cellular jul fri 175 2 999 0 nonexistent
## 14000 cellular jul fri 255 2 999 0 nonexistent
## 14006 cellular jul fri 213 2 999 0 nonexistent
## 14010 telephone jul fri 330 2 999 0 nonexistent
## 14014 cellular jul fri 452 2 999 0 nonexistent
## 14016 cellular jul fri 260 2 999 0 nonexistent
## 14026 cellular jul fri 159 2 999 0 nonexistent
## 14030 cellular jul fri 1164 2 999 0 nonexistent
## 14036 cellular jul fri 118 2 999 0 nonexistent
## 14038 cellular jul fri 184 2 999 0 nonexistent
## 14041 cellular jul fri 143 5 999 0 nonexistent
## 14047 cellular jul fri 145 2 999 0 nonexistent
## 14049 cellular jul fri 94 2 999 0 nonexistent
## 14051 cellular jul fri 911 2 999 0 nonexistent
## 14052 cellular jul fri 165 2 999 0 nonexistent
## 14072 cellular jul fri 172 2 999 0 nonexistent
## 14075 cellular jul fri 1649 2 999 0 nonexistent
## 14089 cellular jul mon 104 2 999 0 nonexistent
## 14091 cellular jul mon 332 2 999 0 nonexistent
## 14093 telephone jul mon 236 2 999 0 nonexistent
## 14099 cellular jul mon 68 3 999 0 nonexistent
## 14101 cellular jul mon 179 2 999 0 nonexistent
## 14116 cellular jul mon 194 2 999 0 nonexistent
## 14127 cellular jul mon 47 4 999 0 nonexistent
## 14138 cellular jul mon 751 2 999 0 nonexistent
## 14148 cellular jul mon 767 12 999 0 nonexistent
## 14158 cellular jul mon 137 3 999 0 nonexistent
## 14162 cellular jul mon 209 2 999 0 nonexistent
## 14169 cellular jul mon 97 3 999 0 nonexistent
## 14170 cellular jul mon 247 2 999 0 nonexistent
## 14173 cellular jul mon 187 3 999 0 nonexistent
## 14186 cellular jul mon 228 2 999 0 nonexistent
## 14191 cellular jul mon 56 3 999 0 nonexistent
## 14192 cellular jul mon 69 2 999 0 nonexistent
## 14197 cellular jul mon 183 3 999 0 nonexistent
## 14198 cellular jul mon 119 2 999 0 nonexistent
## 14202 cellular jul mon 74 6 999 0 nonexistent
## 14215 cellular jul mon 41 2 999 0 nonexistent
## 14228 cellular jul mon 334 3 999 0 nonexistent
## 14230 cellular jul mon 35 3 999 0 nonexistent
## 14231 cellular jul mon 77 2 999 0 nonexistent
## 14233 telephone jul mon 162 3 999 0 nonexistent
## 14245 cellular jul mon 126 3 999 0 nonexistent
## 14256 cellular jul mon 79 3 999 0 nonexistent
## 14257 cellular jul mon 130 3 999 0 nonexistent
## 14266 cellular jul mon 341 3 999 0 nonexistent
## 14267 cellular jul mon 192 3 999 0 nonexistent
## 14274 cellular jul mon 85 2 999 0 nonexistent
## 14275 cellular jul mon 76 2 999 0 nonexistent
## 14281 cellular jul mon 393 5 999 0 nonexistent
## 14285 cellular jul mon 118 4 999 0 nonexistent
## 14286 cellular jul mon 111 2 999 0 nonexistent
## 14293 cellular jul mon 385 3 999 0 nonexistent
## 14297 cellular jul mon 124 3 999 0 nonexistent
## 14298 cellular jul mon 93 3 999 0 nonexistent
## 14320 cellular jul mon 184 2 999 0 nonexistent
## 14322 cellular jul mon 123 3 999 0 nonexistent
## 14329 cellular jul mon 387 2 999 0 nonexistent
## 14330 cellular jul mon 163 3 999 0 nonexistent
## 14331 cellular jul mon 326 11 999 0 nonexistent
## 14334 cellular jul mon 342 2 999 0 nonexistent
## 14344 cellular jul mon 81 6 999 0 nonexistent
## 14346 cellular jul mon 1336 4 999 0 nonexistent
## 14347 telephone jul mon 111 3 999 0 nonexistent
## 14355 cellular jul mon 171 3 999 0 nonexistent
## 14361 telephone jul mon 716 3 999 0 nonexistent
## 14362 cellular jul mon 149 3 999 0 nonexistent
## 14371 cellular jul mon 164 3 999 0 nonexistent
## 14372 cellular jul mon 235 3 999 0 nonexistent
## 14373 cellular jul mon 330 4 999 0 nonexistent
## 14378 telephone jul mon 35 2 999 0 nonexistent
## 14381 telephone jul mon 821 3 999 0 nonexistent
## 14385 cellular jul mon 250 3 999 0 nonexistent
## 14386 cellular jul mon 110 3 999 0 nonexistent
## 14391 cellular jul mon 223 3 999 0 nonexistent
## 14400 telephone jul mon 252 4 999 0 nonexistent
## 14401 telephone jul mon 109 3 999 0 nonexistent
## 14402 cellular jul mon 72 3 999 0 nonexistent
## 14404 cellular jul mon 457 3 999 0 nonexistent
## 14410 cellular jul mon 546 2 999 0 nonexistent
## 14414 cellular jul tue 56 3 999 0 nonexistent
## 14416 cellular jul tue 170 3 999 0 nonexistent
## 14417 cellular jul tue 101 3 999 0 nonexistent
## 14420 cellular jul tue 656 3 999 0 nonexistent
## 14431 cellular jul tue 125 3 999 0 nonexistent
## 14433 cellular jul tue 166 3 999 0 nonexistent
## 14436 cellular jul tue 169 2 999 0 nonexistent
## 14462 cellular jul tue 659 3 999 0 nonexistent
## 14466 cellular jul tue 723 3 999 0 nonexistent
## 14481 telephone jul tue 501 2 999 0 nonexistent
## 14487 cellular jul tue 129 2 999 0 nonexistent
## 14488 cellular jul tue 237 4 999 0 nonexistent
## 14490 cellular jul tue 295 4 999 0 nonexistent
## 14495 telephone jul tue 89 5 999 0 nonexistent
## 14497 cellular jul tue 109 2 999 0 nonexistent
## 14501 cellular jul tue 280 2 999 0 nonexistent
## 14510 cellular jul tue 87 5 999 0 nonexistent
## 14520 cellular jul tue 646 4 999 0 nonexistent
## 14528 cellular jul tue 364 10 999 0 nonexistent
## 14536 cellular jul tue 243 4 999 0 nonexistent
## 14543 cellular jul tue 277 2 999 0 nonexistent
## 14547 cellular jul tue 106 12 999 0 nonexistent
## 14554 cellular jul tue 1615 3 999 0 nonexistent
## 14555 cellular jul tue 860 4 999 0 nonexistent
## 14557 cellular jul tue 246 1 999 0 nonexistent
## 14565 telephone jul tue 277 1 999 0 nonexistent
## 14567 cellular jul tue 218 1 999 0 nonexistent
## 14572 cellular jul tue 98 2 999 0 nonexistent
## 14573 cellular jul tue 442 1 999 0 nonexistent
## 14577 cellular jul tue 658 1 999 0 nonexistent
## 14587 cellular jul tue 513 5 999 0 nonexistent
## 14591 cellular jul tue 355 1 999 0 nonexistent
## 14596 cellular jul tue 103 4 999 0 nonexistent
## 14598 cellular jul tue 1001 3 999 0 nonexistent
## 14601 cellular jul tue 122 2 999 0 nonexistent
## 14608 telephone jul tue 91 2 999 0 nonexistent
## 14614 cellular jul tue 83 2 999 0 nonexistent
## 14627 cellular jul tue 329 6 999 0 nonexistent
## 14640 cellular jul tue 955 5 999 0 nonexistent
## 14641 cellular jul tue 194 5 999 0 nonexistent
## 14645 cellular jul tue 85 8 999 0 nonexistent
## 14649 cellular jul tue 85 5 999 0 nonexistent
## 14652 cellular jul tue 155 2 999 0 nonexistent
## 14656 cellular jul tue 150 5 999 0 nonexistent
## 14663 cellular jul tue 157 5 999 0 nonexistent
## 14666 cellular jul tue 115 2 999 0 nonexistent
## 14670 cellular jul tue 374 5 999 0 nonexistent
## 14671 cellular jul tue 120 6 999 0 nonexistent
## 14675 cellular jul tue 84 5 999 0 nonexistent
## 14676 telephone jul tue 78 4 999 0 nonexistent
## 14687 cellular jul tue 889 5 999 0 nonexistent
## 14690 telephone jul tue 166 6 999 0 nonexistent
## 14691 cellular jul tue 1424 4 999 0 nonexistent
## 14700 telephone jul tue 232 4 999 0 nonexistent
## 14701 cellular jul tue 270 5 999 0 nonexistent
## 14705 cellular jul tue 419 8 999 0 nonexistent
## 14706 cellular jul tue 624 6 999 0 nonexistent
## 14710 telephone jul tue 119 8 999 0 nonexistent
## 14711 cellular jul tue 84 5 999 0 nonexistent
## 14721 telephone jul tue 341 6 999 0 nonexistent
## 14724 telephone jul wed 61 14 999 0 nonexistent
## 14725 telephone jul wed 41 6 999 0 nonexistent
## 14732 cellular jul wed 186 4 999 0 nonexistent
## 14733 cellular jul wed 350 7 999 0 nonexistent
## 14734 cellular jul wed 52 7 999 0 nonexistent
## 14736 cellular jul wed 510 3 999 0 nonexistent
## 14743 cellular jul wed 95 4 999 0 nonexistent
## 14747 cellular jul wed 578 1 999 0 nonexistent
## 14748 telephone jul wed 51 1 999 0 nonexistent
## 14749 cellular jul wed 111 4 999 0 nonexistent
## 14751 telephone jul wed 164 1 999 0 nonexistent
## 14760 cellular jul wed 96 1 999 0 nonexistent
## 14762 cellular jul wed 70 1 999 0 nonexistent
## 14765 cellular jul wed 400 1 999 0 nonexistent
## 14767 cellular jul wed 284 1 999 0 nonexistent
## 14769 cellular jul wed 151 4 999 0 nonexistent
## 14787 cellular jul wed 225 2 999 0 nonexistent
## 14788 cellular jul wed 781 1 999 0 nonexistent
## 14793 cellular jul wed 90 1 999 0 nonexistent
## 14794 cellular jul wed 339 2 999 0 nonexistent
## 14797 cellular jul wed 94 3 999 0 nonexistent
## 14798 cellular jul wed 269 1 999 0 nonexistent
## 14804 cellular jul wed 555 1 999 0 nonexistent
## 14806 cellular jul wed 686 6 999 0 nonexistent
## 14813 cellular jul wed 206 2 999 0 nonexistent
## 14831 cellular jul wed 227 1 999 0 nonexistent
## 14836 cellular jul wed 214 1 999 0 nonexistent
## 14839 cellular jul wed 335 1 999 0 nonexistent
## 14846 cellular jul wed 684 1 999 0 nonexistent
## 14858 cellular jul wed 226 1 999 0 nonexistent
## 14861 cellular jul wed 77 1 999 0 nonexistent
## 14863 cellular jul wed 513 1 999 0 nonexistent
## 14870 cellular jul wed 177 1 999 0 nonexistent
## 14874 cellular jul wed 124 1 999 0 nonexistent
## 14878 cellular jul wed 128 2 999 0 nonexistent
## 14883 cellular jul wed 158 1 999 0 nonexistent
## 14888 cellular jul wed 131 7 999 0 nonexistent
## 14889 cellular jul wed 709 2 999 0 nonexistent
## 14895 cellular jul wed 346 2 999 0 nonexistent
## 14899 cellular jul wed 171 6 999 0 nonexistent
## 14902 cellular jul wed 87 16 999 0 nonexistent
## 14905 cellular jul wed 378 2 999 0 nonexistent
## 14911 telephone jul wed 87 5 999 0 nonexistent
## 14912 cellular jul wed 111 4 999 0 nonexistent
## 14915 cellular jul wed 254 3 999 0 nonexistent
## 14924 cellular jul wed 101 7 999 0 nonexistent
## 14933 cellular jul wed 240 2 999 0 nonexistent
## 14937 telephone jul wed 73 6 999 0 nonexistent
## 14947 telephone jul wed 357 7 999 0 nonexistent
## 14951 cellular jul wed 166 6 999 0 nonexistent
## 14955 cellular jul wed 191 1 999 0 nonexistent
## 14958 telephone jul wed 127 11 999 0 nonexistent
## 14959 cellular jul wed 319 5 999 0 nonexistent
## 14962 cellular jul wed 204 2 999 0 nonexistent
## 14965 cellular jul wed 108 5 999 0 nonexistent
## 14967 cellular jul wed 26 2 999 0 nonexistent
## 14973 cellular jul thu 98 3 999 0 nonexistent
## 14976 cellular jul thu 185 1 999 0 nonexistent
## 14977 cellular jul thu 66 7 999 0 nonexistent
## 14982 cellular jul thu 330 1 999 0 nonexistent
## 14987 cellular jul thu 298 1 999 0 nonexistent
## 14988 cellular jul thu 413 4 999 0 nonexistent
## 14992 cellular jul thu 36 2 999 0 nonexistent
## 14995 cellular jul thu 71 1 999 0 nonexistent
## 15009 cellular jul thu 539 1 999 0 nonexistent
## 15016 cellular jul thu 114 1 999 0 nonexistent
## 15023 cellular jul thu 521 1 999 0 nonexistent
## 15042 cellular jul thu 258 1 999 0 nonexistent
## 15046 cellular jul thu 753 2 999 0 nonexistent
## 15058 cellular jul thu 504 2 999 0 nonexistent
## 15062 cellular jul thu 50 1 999 0 nonexistent
## 15066 cellular jul thu 262 1 999 0 nonexistent
## 15068 cellular jul thu 818 1 999 0 nonexistent
## 15074 cellular jul thu 97 1 999 0 nonexistent
## 15091 cellular jul thu 28 1 999 0 nonexistent
## 15093 cellular jul thu 410 1 999 0 nonexistent
## 15096 cellular jul thu 11 12 999 0 nonexistent
## 15109 cellular jul thu 490 7 999 0 nonexistent
## 15110 cellular jul thu 282 1 999 0 nonexistent
## 15121 cellular jul thu 134 1 999 0 nonexistent
## 15122 cellular jul thu 538 2 999 0 nonexistent
## 15127 cellular jul thu 795 1 999 0 nonexistent
## 15150 cellular jul thu 225 2 999 0 nonexistent
## 15155 cellular jul thu 312 5 999 0 nonexistent
## 15160 cellular jul thu 22 1 999 0 nonexistent
## 15169 cellular jul thu 804 2 999 0 nonexistent
## 15174 cellular jul thu 309 2 999 0 nonexistent
## 15180 cellular jul thu 18 8 999 0 nonexistent
## 15184 cellular jul thu 489 2 999 0 nonexistent
## 15187 telephone jul thu 485 2 999 0 nonexistent
## 15191 cellular jul thu 626 3 999 0 nonexistent
## 15197 cellular jul thu 271 2 999 0 nonexistent
## 15198 cellular jul thu 1151 1 999 0 nonexistent
## 15199 telephone jul thu 265 2 999 0 nonexistent
## 15203 cellular jul thu 383 3 999 0 nonexistent
## 15204 cellular jul thu 186 2 999 0 nonexistent
## 15205 cellular jul thu 271 5 999 0 nonexistent
## 15206 cellular jul thu 160 6 999 0 nonexistent
## 15210 cellular jul thu 656 3 999 0 nonexistent
## 15212 cellular jul thu 637 1 999 0 nonexistent
## 15250 cellular jul thu 536 5 999 0 nonexistent
## 15257 cellular jul thu 330 3 999 0 nonexistent
## 15259 telephone jul thu 171 3 999 0 nonexistent
## 15262 cellular jul thu 408 11 999 0 nonexistent
## 15264 cellular jul thu 88 1 999 0 nonexistent
## 15272 cellular jul thu 903 4 999 0 nonexistent
## 15275 cellular jul thu 122 17 999 0 nonexistent
## 15277 telephone jul thu 517 5 999 0 nonexistent
## 15283 cellular jul thu 169 7 999 0 nonexistent
## 15293 cellular jul thu 91 2 999 0 nonexistent
## 15296 cellular jul thu 602 1 999 0 nonexistent
## 15302 cellular jul thu 134 2 999 0 nonexistent
## 15316 cellular jul fri 172 3 999 0 nonexistent
## 15323 cellular jul fri 50 4 999 0 nonexistent
## 15330 cellular jul fri 85 2 999 0 nonexistent
## 15333 cellular jul fri 127 3 999 0 nonexistent
## 15334 cellular jul fri 178 3 999 0 nonexistent
## 15336 cellular jul fri 59 4 999 0 nonexistent
## 15343 cellular jul fri 83 2 999 0 nonexistent
## 15350 cellular jul fri 91 1 999 0 nonexistent
## 15353 cellular jul fri 191 1 999 0 nonexistent
## 15358 cellular jul fri 536 1 999 0 nonexistent
## 15361 cellular jul fri 149 1 999 0 nonexistent
## 15367 cellular jul fri 383 1 999 0 nonexistent
## 15375 cellular jul fri 274 5 999 0 nonexistent
## 15378 cellular jul fri 226 1 999 0 nonexistent
## 15380 cellular jul fri 377 1 999 0 nonexistent
## 15385 cellular jul fri 274 3 999 0 nonexistent
## 15387 cellular jul fri 262 1 999 0 nonexistent
## 15389 cellular jul fri 191 1 999 0 nonexistent
## 15396 cellular jul fri 143 1 999 0 nonexistent
## 15402 cellular jul fri 569 1 999 0 nonexistent
## 15404 cellular jul fri 278 2 999 0 nonexistent
## 15405 cellular jul fri 94 1 999 0 nonexistent
## 15408 cellular jul fri 383 1 999 0 nonexistent
## 15420 cellular jul fri 238 3 999 0 nonexistent
## 15424 cellular jul fri 174 2 999 0 nonexistent
## 15427 cellular jul fri 47 1 999 0 nonexistent
## 15430 cellular jul fri 640 3 999 0 nonexistent
## 15442 cellular jul fri 133 5 999 0 nonexistent
## 15444 cellular jul fri 67 1 999 0 nonexistent
## 15446 cellular jul fri 381 1 999 0 nonexistent
## 15453 cellular jul fri 420 1 999 0 nonexistent
## 15459 cellular jul fri 199 1 999 0 nonexistent
## 15466 cellular jul fri 111 1 999 0 nonexistent
## 15471 cellular jul fri 328 1 999 0 nonexistent
## 15487 cellular jul fri 835 1 999 0 nonexistent
## 15494 cellular jul fri 595 2 999 0 nonexistent
## 15499 cellular jul fri 852 9 999 0 nonexistent
## 15503 cellular jul fri 34 3 999 0 nonexistent
## 15513 cellular jul fri 1503 11 999 0 nonexistent
## 15515 cellular jul fri 1127 3 999 0 nonexistent
## 15522 cellular jul fri 351 2 999 0 nonexistent
## 15527 cellular jul fri 96 3 999 0 nonexistent
## 15532 cellular jul fri 252 6 999 0 nonexistent
## 15533 cellular jul fri 175 11 999 0 nonexistent
## 15538 cellular jul fri 788 6 999 0 nonexistent
## 15543 cellular jul fri 541 7 999 0 nonexistent
## 15551 cellular jul fri 177 5 999 0 nonexistent
## 15554 telephone jul fri 200 3 999 0 nonexistent
## 15557 cellular jul fri 453 3 999 0 nonexistent
## 15558 cellular jul fri 126 2 999 0 nonexistent
## 15561 cellular jul fri 37 4 999 0 nonexistent
## 15564 cellular jul fri 251 5 999 0 nonexistent
## 15569 cellular jul fri 127 2 999 0 nonexistent
## 15574 cellular jul fri 35 3 999 0 nonexistent
## 15581 telephone jul fri 470 24 999 0 nonexistent
## 15589 cellular jul fri 596 1 999 0 nonexistent
## 15592 cellular jul fri 580 7 999 0 nonexistent
## 15607 cellular jul mon 463 2 999 0 nonexistent
## 15612 cellular jul mon 123 3 999 0 nonexistent
## 15615 cellular jul mon 114 2 999 0 nonexistent
## 15620 cellular jul mon 91 4 999 0 nonexistent
## 15625 cellular jul mon 168 5 999 0 nonexistent
## 15626 telephone jul mon 110 7 999 0 nonexistent
## 15631 cellular jul mon 24 3 999 0 nonexistent
## 15642 cellular jul mon 357 1 999 0 nonexistent
## 15643 cellular jul mon 638 3 999 0 nonexistent
## 15647 cellular jul mon 203 2 999 0 nonexistent
## 15658 cellular jul mon 236 2 999 0 nonexistent
## 15660 cellular jul mon 88 4 999 0 nonexistent
## 15667 cellular jul mon 808 1 999 0 nonexistent
## 15670 cellular jul mon 96 1 999 0 nonexistent
## 15674 cellular jul mon 126 4 999 0 nonexistent
## 15676 cellular jul mon 316 1 999 0 nonexistent
## 15683 cellular jul mon 171 1 999 0 nonexistent
## 15690 telephone jul mon 37 1 999 0 nonexistent
## 15691 cellular jul mon 226 1 999 0 nonexistent
## 15693 cellular jul mon 357 1 999 0 nonexistent
## 15694 cellular jul mon 47 1 999 0 nonexistent
## 15699 cellular jul mon 193 1 999 0 nonexistent
## 15704 cellular jul mon 225 3 999 0 nonexistent
## 15709 cellular jul mon 396 2 999 0 nonexistent
## 15715 cellular jul mon 475 4 999 0 nonexistent
## 15719 cellular jul mon 54 8 999 0 nonexistent
## 15720 cellular jul mon 730 8 999 0 nonexistent
## 15734 cellular jul mon 111 1 999 0 nonexistent
## 15742 cellular jul mon 44 1 999 0 nonexistent
## 15751 cellular jul mon 218 1 999 0 nonexistent
## 15760 cellular jul mon 369 1 999 0 nonexistent
## 15769 cellular jul mon 65 2 999 0 nonexistent
## 15780 cellular jul mon 71 15 999 0 nonexistent
## 15783 telephone jul mon 733 3 999 0 nonexistent
## 15789 cellular jul mon 507 1 999 0 nonexistent
## 15790 cellular jul mon 93 1 999 0 nonexistent
## 15791 cellular jul mon 245 1 999 0 nonexistent
## 15792 cellular jul mon 1080 4 999 0 nonexistent
## 15796 cellular jul mon 333 2 999 0 nonexistent
## 15797 cellular jul mon 1212 1 999 0 nonexistent
## 15810 cellular jul mon 357 1 999 0 nonexistent
## 15811 cellular jul mon 891 4 999 0 nonexistent
## 15819 cellular jul mon 153 3 999 0 nonexistent
## 15821 cellular jul mon 410 1 999 0 nonexistent
## 15840 cellular jul mon 112 1 999 0 nonexistent
## 15850 cellular jul mon 407 11 999 0 nonexistent
## 15855 cellular jul mon 100 1 999 0 nonexistent
## 15869 cellular jul mon 298 1 999 0 nonexistent
## 15876 cellular jul mon 690 3 999 0 nonexistent
## 15894 cellular jul mon 256 1 999 0 nonexistent
## 15895 cellular jul mon 510 6 999 0 nonexistent
## 15898 cellular jul mon 522 1 999 0 nonexistent
## 15901 cellular jul mon 354 1 999 0 nonexistent
## 15906 telephone jul mon 342 9 999 0 nonexistent
## 15913 cellular jul mon 1002 3 999 0 nonexistent
## 15928 cellular jul mon 67 2 999 0 nonexistent
## 15937 cellular jul mon 90 5 999 0 nonexistent
## 15938 cellular jul mon 91 3 999 0 nonexistent
## 15943 cellular jul mon 83 2 999 0 nonexistent
## 15947 cellular jul mon 106 3 999 0 nonexistent
## 15952 cellular jul mon 908 3 999 0 nonexistent
## 15959 telephone jul mon 86 9 999 0 nonexistent
## 15962 cellular jul mon 322 3 999 0 nonexistent
## 15968 cellular jul mon 419 2 999 0 nonexistent
## 15976 cellular jul mon 111 2 999 0 nonexistent
## 15981 cellular jul mon 445 4 999 0 nonexistent
## 15982 cellular jul mon 98 3 999 0 nonexistent
## 15984 telephone jul mon 722 3 999 0 nonexistent
## 15987 cellular jul tue 78 2 999 0 nonexistent
## 15988 cellular jul tue 126 3 999 0 nonexistent
## 15990 cellular jul tue 70 9 999 0 nonexistent
## 15992 cellular jul tue 159 3 999 0 nonexistent
## 15994 cellular jul tue 125 4 999 0 nonexistent
## 15997 cellular jul tue 156 20 999 0 nonexistent
## 15998 cellular jul tue 181 11 999 0 nonexistent
## 16000 cellular jul tue 93 2 999 0 nonexistent
## 16001 cellular jul tue 40 5 999 0 nonexistent
## 16002 cellular jul tue 152 2 999 0 nonexistent
## 16007 cellular jul tue 261 3 999 0 nonexistent
## 16020 cellular jul tue 82 1 999 0 nonexistent
## 16027 cellular jul tue 211 8 999 0 nonexistent
## 16028 cellular jul tue 314 4 999 0 nonexistent
## 16029 cellular jul tue 278 5 999 0 nonexistent
## 16034 cellular jul tue 72 1 999 0 nonexistent
## 16045 cellular jul tue 161 1 999 0 nonexistent
## 16046 cellular jul tue 714 1 999 0 nonexistent
## 16053 cellular jul tue 168 3 999 0 nonexistent
## 16058 cellular jul tue 663 1 999 0 nonexistent
## 16059 cellular jul tue 690 1 999 0 nonexistent
## 16064 cellular jul tue 407 4 999 0 nonexistent
## 16067 cellular jul tue 89 1 999 0 nonexistent
## 16073 cellular jul tue 150 1 999 0 nonexistent
## 16078 cellular jul tue 807 1 999 0 nonexistent
## 16080 cellular jul tue 40 1 999 0 nonexistent
## 16082 cellular jul tue 47 1 999 0 nonexistent
## 16104 telephone jul tue 215 1 999 0 nonexistent
## 16107 cellular jul tue 285 1 999 0 nonexistent
## 16113 cellular jul tue 292 1 999 0 nonexistent
## 16115 cellular jul tue 506 1 999 0 nonexistent
## 16116 cellular jul tue 136 2 999 0 nonexistent
## 16121 cellular jul tue 455 2 999 0 nonexistent
## 16122 cellular jul tue 65 1 999 0 nonexistent
## 16123 telephone jul tue 27 1 999 0 nonexistent
## 16126 telephone jul tue 605 1 999 0 nonexistent
## 16129 cellular jul tue 62 1 999 0 nonexistent
## 16134 cellular jul tue 654 2 999 0 nonexistent
## 16135 cellular jul tue 127 2 999 0 nonexistent
## 16139 telephone jul tue 29 16 999 0 nonexistent
## 16145 cellular jul tue 129 1 999 0 nonexistent
## 16149 cellular jul tue 81 1 999 0 nonexistent
## 16150 cellular jul tue 849 1 999 0 nonexistent
## 16169 cellular jul tue 654 1 999 0 nonexistent
## 16177 cellular jul tue 115 3 999 0 nonexistent
## 16182 cellular jul tue 209 1 999 0 nonexistent
## 16183 cellular jul tue 24 12 999 0 nonexistent
## 16184 cellular jul tue 1508 1 999 0 nonexistent
## 16189 cellular jul tue 662 1 999 0 nonexistent
## 16190 cellular jul tue 263 2 999 0 nonexistent
## 16195 cellular jul tue 124 2 999 0 nonexistent
## 16200 cellular jul tue 264 1 999 0 nonexistent
## 16203 cellular jul tue 210 2 999 0 nonexistent
## 16208 cellular jul tue 182 1 999 0 nonexistent
## 16214 cellular jul tue 181 1 999 0 nonexistent
## 16216 cellular jul tue 487 4 999 0 nonexistent
## 16220 cellular jul tue 417 1 999 0 nonexistent
## 16221 cellular jul tue 60 2 999 0 nonexistent
## 16226 cellular jul tue 137 1 999 0 nonexistent
## 16227 cellular jul tue 261 1 999 0 nonexistent
## 16229 cellular jul tue 206 2 999 0 nonexistent
## 16232 cellular jul tue 90 2 999 0 nonexistent
## 16236 telephone jul tue 514 11 999 0 nonexistent
## 16239 cellular jul tue 135 2 999 0 nonexistent
## 16245 cellular jul tue 160 2 999 0 nonexistent
## 16251 cellular jul tue 241 9 999 0 nonexistent
## 16253 cellular jul tue 211 1 999 0 nonexistent
## 16262 cellular jul tue 727 2 999 0 nonexistent
## 16268 telephone jul tue 287 2 999 0 nonexistent
## 16269 cellular jul tue 124 2 999 0 nonexistent
## 16275 cellular jul tue 96 2 999 0 nonexistent
## 16279 cellular jul tue 1237 7 999 0 nonexistent
## 16289 cellular jul tue 184 4 999 0 nonexistent
## 16293 cellular jul tue 289 3 999 0 nonexistent
## 16299 cellular jul tue 62 3 999 0 nonexistent
## 16301 telephone jul tue 97 15 999 0 nonexistent
## 16302 cellular jul tue 39 17 999 0 nonexistent
## 16303 cellular jul tue 102 5 999 0 nonexistent
## 16305 cellular jul tue 199 2 999 0 nonexistent
## 16310 cellular jul tue 246 4 999 0 nonexistent
## 16316 cellular jul tue 282 2 999 0 nonexistent
## 16318 cellular jul tue 1287 5 999 0 nonexistent
## 16323 cellular jul tue 864 4 999 0 nonexistent
## 16324 cellular jul tue 464 5 999 0 nonexistent
## 16325 cellular jul tue 188 3 999 0 nonexistent
## 16333 cellular jul tue 136 4 999 0 nonexistent
## 16337 cellular jul tue 203 1 999 0 nonexistent
## 16338 telephone jul tue 802 11 999 0 nonexistent
## 16342 cellular jul tue 1226 2 999 0 nonexistent
## 16344 cellular jul tue 714 1 999 0 nonexistent
## 16347 cellular jul tue 174 9 999 0 nonexistent
## 16350 cellular jul tue 1608 13 999 0 nonexistent
## 16351 cellular jul wed 61 2 999 0 nonexistent
## 16352 cellular jul wed 84 2 999 0 nonexistent
## 16356 cellular jul wed 217 2 999 0 nonexistent
## 16359 cellular jul wed 411 2 999 0 nonexistent
## 16368 cellular jul wed 70 5 999 0 nonexistent
## 16372 cellular jul wed 221 2 999 0 nonexistent
## 16373 cellular jul wed 97 2 999 0 nonexistent
## 16374 cellular jul wed 123 1 999 0 nonexistent
## 16384 cellular jul wed 500 3 999 0 nonexistent
## 16385 cellular jul wed 569 1 999 0 nonexistent
## 16386 cellular jul wed 318 1 999 0 nonexistent
## 16388 cellular jul wed 137 1 999 0 nonexistent
## 16389 telephone jul wed 175 1 999 0 nonexistent
## 16394 cellular jul wed 105 1 999 0 nonexistent
## 16398 cellular jul wed 187 1 999 0 nonexistent
## 16408 cellular jul wed 114 1 999 0 nonexistent
## 16411 cellular jul wed 205 1 999 0 nonexistent
## 16412 cellular jul wed 161 1 999 0 nonexistent
## 16416 cellular jul wed 158 1 999 0 nonexistent
## 16422 cellular jul wed 223 1 999 0 nonexistent
## 16423 cellular jul wed 138 1 999 0 nonexistent
## 16430 cellular jul wed 379 1 999 0 nonexistent
## 16431 cellular jul wed 761 1 999 0 nonexistent
## 16446 cellular jul wed 105 1 999 0 nonexistent
## 16451 cellular jul wed 235 11 999 0 nonexistent
## 16456 telephone jul wed 43 1 999 0 nonexistent
## 16458 cellular jul wed 40 1 999 0 nonexistent
## 16460 cellular jul wed 336 1 999 0 nonexistent
## 16462 cellular jul wed 59 1 999 0 nonexistent
## 16480 cellular jul wed 371 1 999 0 nonexistent
## 16481 cellular jul wed 670 1 999 0 nonexistent
## 16484 cellular jul wed 148 1 999 0 nonexistent
## 16494 cellular jul wed 213 1 999 0 nonexistent
## 16495 cellular jul wed 146 2 999 0 nonexistent
## 16499 cellular jul wed 423 1 999 0 nonexistent
## 16505 cellular jul wed 123 2 999 0 nonexistent
## 16506 cellular jul wed 183 1 999 0 nonexistent
## 16511 cellular jul wed 202 1 999 0 nonexistent
## 16512 cellular jul wed 157 1 999 0 nonexistent
## 16521 cellular jul wed 81 1 999 0 nonexistent
## 16532 cellular jul wed 102 1 999 0 nonexistent
## 16542 cellular jul wed 140 2 999 0 nonexistent
## 16550 cellular jul wed 173 2 999 0 nonexistent
## 16559 cellular jul wed 158 2 999 0 nonexistent
## 16561 cellular jul wed 1152 2 999 0 nonexistent
## 16562 cellular jul wed 55 1 999 0 nonexistent
## 16563 cellular jul wed 335 3 999 0 nonexistent
## 16566 cellular jul wed 169 2 999 0 nonexistent
## 16568 cellular jul wed 92 2 999 0 nonexistent
## 16573 cellular jul wed 85 3 999 0 nonexistent
## 16575 telephone jul wed 383 2 999 0 nonexistent
## 16577 cellular jul wed 152 1 999 0 nonexistent
## 16581 cellular jul wed 434 1 999 0 nonexistent
## 16587 cellular jul wed 698 2 999 0 nonexistent
## 16595 cellular jul wed 638 2 999 0 nonexistent
## 16597 cellular jul wed 517 4 999 0 nonexistent
## 16600 cellular jul wed 206 1 999 0 nonexistent
## 16602 cellular jul wed 671 4 999 0 nonexistent
## 16604 cellular jul wed 957 3 999 0 nonexistent
## 16611 cellular jul wed 332 2 999 0 nonexistent
## 16614 cellular jul wed 288 9 999 0 nonexistent
## 16617 cellular jul wed 91 7 999 0 nonexistent
## 16623 cellular jul wed 123 3 999 0 nonexistent
## 16624 cellular jul wed 361 3 999 0 nonexistent
## 16625 cellular jul wed 248 2 999 0 nonexistent
## 16629 telephone jul wed 90 2 999 0 nonexistent
## 16635 telephone jul wed 67 2 999 0 nonexistent
## 16636 cellular jul wed 2078 6 999 0 nonexistent
## 16640 telephone jul wed 1118 3 999 0 nonexistent
## 16643 cellular jul wed 179 17 999 0 nonexistent
## 16648 cellular jul wed 497 5 999 0 nonexistent
## 16671 cellular jul wed 147 4 999 0 nonexistent
## 16674 cellular jul wed 110 2 999 0 nonexistent
## 16675 cellular jul wed 328 2 999 0 nonexistent
## 16679 cellular jul wed 68 3 999 0 nonexistent
## 16682 cellular jul wed 609 2 999 0 nonexistent
## 16702 telephone jul wed 173 2 999 0 nonexistent
## 16706 telephone jul wed 122 4 999 0 nonexistent
## 16718 cellular jul wed 171 4 999 0 nonexistent
## 16724 cellular jul wed 84 13 999 0 nonexistent
## 16726 telephone jul wed 103 5 999 0 nonexistent
## 16729 telephone jul wed 192 5 999 0 nonexistent
## 16733 cellular jul thu 42 3 999 0 nonexistent
## 16734 cellular jul thu 57 4 999 0 nonexistent
## 16739 cellular jul thu 202 3 999 0 nonexistent
## 16742 telephone jul thu 48 6 999 0 nonexistent
## 16744 cellular jul thu 241 3 999 0 nonexistent
## 16747 cellular jul thu 21 20 999 0 nonexistent
## 16753 cellular jul thu 53 1 999 0 nonexistent
## 16755 cellular jul thu 92 1 999 0 nonexistent
## 16758 cellular jul thu 42 24 999 0 nonexistent
## 16759 cellular jul thu 187 1 999 0 nonexistent
## 16761 cellular jul thu 125 2 999 0 nonexistent
## 16762 cellular jul thu 162 1 999 0 nonexistent
## 16769 cellular jul thu 311 1 999 0 nonexistent
## 16770 cellular jul thu 186 2 999 0 nonexistent
## 16772 cellular jul thu 137 4 999 0 nonexistent
## 16777 cellular jul thu 78 1 999 0 nonexistent
## 16780 cellular jul thu 326 1 999 0 nonexistent
## 16782 cellular jul thu 58 2 999 0 nonexistent
## 16784 cellular jul thu 76 1 999 0 nonexistent
## 16786 cellular jul thu 459 7 999 0 nonexistent
## 16788 cellular jul thu 71 5 999 0 nonexistent
## 16789 cellular jul thu 212 2 999 0 nonexistent
## 16795 cellular jul thu 380 1 999 0 nonexistent
## 16798 cellular jul thu 467 1 999 0 nonexistent
## 16799 cellular jul thu 55 2 999 0 nonexistent
## 16801 cellular jul thu 168 1 999 0 nonexistent
## 16807 cellular jul thu 313 1 999 0 nonexistent
## 16822 cellular jul thu 523 2 999 0 nonexistent
## 16831 cellular jul thu 100 2 999 0 nonexistent
## 16836 cellular jul thu 1441 2 999 0 nonexistent
## 16839 cellular jul thu 191 1 999 0 nonexistent
## 16856 cellular jul thu 128 2 999 0 nonexistent
## 16864 cellular jul thu 92 1 999 0 nonexistent
## 16872 telephone jul thu 179 4 999 0 nonexistent
## 16876 cellular jul thu 576 2 999 0 nonexistent
## 16902 cellular jul thu 23 1 999 0 nonexistent
## 16913 cellular jul thu 229 2 999 0 nonexistent
## 16915 cellular jul thu 129 2 999 0 nonexistent
## 16916 cellular jul thu 537 5 999 0 nonexistent
## 16918 cellular jul thu 903 1 999 0 nonexistent
## 16919 cellular jul thu 58 2 999 0 nonexistent
## 16920 telephone jul thu 122 12 999 0 nonexistent
## 16922 cellular jul thu 248 1 999 0 nonexistent
## 16923 cellular jul thu 1298 1 999 0 nonexistent
## 16935 cellular jul thu 51 2 999 0 nonexistent
## 16942 cellular jul thu 823 1 999 0 nonexistent
## 16952 cellular jul thu 132 1 999 0 nonexistent
## 16954 cellular jul thu 773 2 999 0 nonexistent
## 16962 cellular jul thu 362 1 999 0 nonexistent
## 16963 cellular jul thu 89 2 999 0 nonexistent
## 16964 cellular jul thu 196 2 999 0 nonexistent
## 16966 cellular jul thu 79 3 999 0 nonexistent
## 16975 telephone jul thu 27 2 999 0 nonexistent
## 16977 telephone jul thu 101 14 999 0 nonexistent
## 16982 cellular jul thu 306 1 999 0 nonexistent
## 16987 cellular jul thu 844 5 999 0 nonexistent
## 16991 telephone jul thu 258 2 999 0 nonexistent
## 16993 cellular jul thu 161 2 999 0 nonexistent
## 16995 cellular jul thu 730 2 999 0 nonexistent
## 16997 cellular jul thu 367 2 999 0 nonexistent
## 16998 cellular jul thu 870 3 999 0 nonexistent
## 16999 cellular jul thu 1820 4 999 0 nonexistent
## 17001 cellular jul thu 732 2 999 0 nonexistent
## 17005 cellular jul thu 137 2 999 0 nonexistent
## 17013 cellular jul thu 1173 4 999 0 nonexistent
## 17016 telephone jul thu 626 5 999 0 nonexistent
## 17017 cellular jul thu 123 5 999 0 nonexistent
## 17018 cellular jul thu 77 3 999 0 nonexistent
## 17019 cellular jul thu 263 2 999 0 nonexistent
## 17021 cellular jul thu 577 3 999 0 nonexistent
## 17022 cellular jul thu 417 5 999 0 nonexistent
## 17047 cellular jul fri 64 2 999 0 nonexistent
## 17052 cellular jul fri 682 10 999 0 nonexistent
## 17060 telephone jul fri 159 4 999 0 nonexistent
## 17062 cellular jul fri 102 2 999 0 nonexistent
## 17068 cellular jul fri 212 2 999 0 nonexistent
## 17072 cellular jul fri 591 3 999 0 nonexistent
## 17074 cellular jul fri 190 2 999 0 nonexistent
## 17077 cellular jul fri 359 1 999 0 nonexistent
## 17080 cellular jul fri 198 1 999 0 nonexistent
## 17086 cellular jul fri 107 4 999 0 nonexistent
## 17094 cellular jul fri 735 1 999 0 nonexistent
## 17097 cellular jul fri 159 1 999 0 nonexistent
## 17098 cellular jul fri 337 1 999 0 nonexistent
## 17099 cellular jul fri 337 2 999 0 nonexistent
## 17104 telephone jul fri 168 1 999 0 nonexistent
## 17105 cellular jul fri 18 2 999 0 nonexistent
## 17112 cellular jul fri 324 1 999 0 nonexistent
## 17113 cellular jul fri 65 5 999 0 nonexistent
## 17118 cellular jul fri 112 2 999 0 nonexistent
## 17129 cellular jul fri 226 1 999 0 nonexistent
## 17130 cellular jul fri 352 1 999 0 nonexistent
## 17139 cellular jul fri 133 2 999 0 nonexistent
## 17140 cellular jul fri 98 1 999 0 nonexistent
## 17142 telephone jul fri 286 2 999 0 nonexistent
## 17144 cellular jul fri 49 1 999 0 nonexistent
## 17154 telephone jul fri 297 2 999 0 nonexistent
## 17162 cellular jul fri 81 2 999 0 nonexistent
## 17167 cellular jul fri 203 1 999 0 nonexistent
## 17169 cellular jul fri 146 1 999 0 nonexistent
## 17170 telephone jul fri 102 4 999 0 nonexistent
## 17171 cellular jul fri 184 2 999 0 nonexistent
## 17177 cellular jul fri 357 1 999 0 nonexistent
## 17198 telephone jul fri 106 3 999 0 nonexistent
## 17200 cellular jul fri 311 6 999 0 nonexistent
## 17201 cellular jul fri 483 3 999 0 nonexistent
## 17204 cellular jul fri 276 1 999 0 nonexistent
## 17205 telephone jul fri 120 1 999 0 nonexistent
## 17212 cellular jul fri 83 2 999 0 nonexistent
## 17218 cellular jul fri 129 3 999 0 nonexistent
## 17219 cellular jul fri 258 1 999 0 nonexistent
## 17223 telephone jul fri 199 1 999 0 nonexistent
## 17224 cellular jul fri 261 3 999 0 nonexistent
## 17225 cellular jul fri 442 12 999 0 nonexistent
## 17226 cellular jul fri 241 2 999 0 nonexistent
## 17227 cellular jul fri 152 1 999 0 nonexistent
## 17228 cellular jul fri 147 2 999 0 nonexistent
## 17242 cellular jul fri 84 3 999 0 nonexistent
## 17244 cellular jul fri 360 13 999 0 nonexistent
## 17255 cellular jul fri 72 30 999 0 nonexistent
## 17257 cellular jul fri 87 5 999 0 nonexistent
## 17272 cellular jul fri 936 1 999 0 nonexistent
## 17276 cellular jul fri 1319 2 999 0 nonexistent
## 17279 cellular jul fri 150 2 999 0 nonexistent
## 17289 cellular jul fri 126 3 999 0 nonexistent
## 17291 cellular jul fri 400 2 999 0 nonexistent
## 17293 cellular jul fri 185 3 999 0 nonexistent
## 17297 cellular jul fri 661 4 999 0 nonexistent
## 17298 cellular jul fri 137 7 999 0 nonexistent
## 17308 telephone jul fri 163 5 999 0 nonexistent
## 17311 cellular jul fri 188 14 999 0 nonexistent
## 17314 cellular jul fri 653 4 999 0 nonexistent
## 17322 cellular jul mon 151 2 999 0 nonexistent
## 17323 cellular jul mon 32 2 999 0 nonexistent
## 17330 cellular jul mon 230 2 999 0 nonexistent
## 17332 cellular jul mon 57 4 999 0 nonexistent
## 17335 cellular jul mon 49 2 999 0 nonexistent
## 17341 telephone jul mon 31 3 999 0 nonexistent
## 17350 cellular jul mon 234 2 999 0 nonexistent
## 17354 cellular jul mon 70 3 999 0 nonexistent
## 17356 cellular jul mon 62 2 999 0 nonexistent
## 17357 cellular jul mon 110 5 999 0 nonexistent
## 17358 cellular jul mon 386 3 999 0 nonexistent
## 17362 cellular jul mon 69 11 999 0 nonexistent
## 17366 cellular jul mon 365 3 999 0 nonexistent
## 17369 cellular jul mon 55 5 999 0 nonexistent
## 17371 telephone jul mon 193 2 999 0 nonexistent
## 17373 cellular jul mon 664 7 999 0 nonexistent
## 17386 cellular jul mon 307 1 999 0 nonexistent
## 17387 cellular jul mon 82 2 999 0 nonexistent
## 17408 cellular jul mon 87 3 999 0 nonexistent
## 17410 telephone jul mon 644 1 999 0 nonexistent
## 17411 cellular jul mon 108 7 999 0 nonexistent
## 17412 telephone jul mon 148 1 999 0 nonexistent
## 17414 cellular jul mon 84 4 999 0 nonexistent
## 17420 cellular jul mon 60 1 999 0 nonexistent
## 17421 telephone jul mon 40 1 999 0 nonexistent
## 17423 cellular jul mon 173 1 999 0 nonexistent
## 17424 cellular jul mon 78 1 999 0 nonexistent
## 17426 telephone jul mon 130 7 999 0 nonexistent
## 17427 cellular jul mon 49 1 999 0 nonexistent
## 17435 cellular jul mon 126 1 999 0 nonexistent
## 17439 cellular jul mon 84 2 999 0 nonexistent
## 17440 cellular jul mon 547 3 999 0 nonexistent
## 17441 cellular jul mon 292 1 999 0 nonexistent
## 17447 telephone jul mon 388 1 999 0 nonexistent
## 17450 cellular jul mon 1169 1 999 0 nonexistent
## 17453 cellular jul mon 143 1 999 0 nonexistent
## 17457 cellular jul mon 837 2 999 0 nonexistent
## 17459 cellular jul mon 63 1 999 0 nonexistent
## 17461 telephone jul mon 596 3 999 0 nonexistent
## 17466 cellular jul mon 65 4 999 0 nonexistent
## 17470 telephone jul mon 296 1 999 0 nonexistent
## 17471 cellular jul mon 180 3 999 0 nonexistent
## 17475 telephone jul mon 359 1 999 0 nonexistent
## 17478 cellular jul mon 86 3 999 0 nonexistent
## 17480 cellular jul mon 435 2 999 0 nonexistent
## 17489 cellular jul mon 83 4 999 0 nonexistent
## 17495 cellular jul mon 189 1 999 0 nonexistent
## 17505 cellular jul mon 76 5 999 0 nonexistent
## 17511 cellular jul mon 719 2 999 0 nonexistent
## 17512 cellular jul mon 68 2 999 0 nonexistent
## 17515 cellular jul mon 81 5 999 0 nonexistent
## 17522 telephone jul mon 97 1 999 0 nonexistent
## 17527 cellular jul mon 102 5 999 0 nonexistent
## 17528 cellular jul mon 59 8 999 0 nonexistent
## 17534 cellular jul mon 136 3 999 0 nonexistent
## 17536 telephone jul mon 81 2 999 0 nonexistent
## 17537 cellular jul mon 141 3 999 0 nonexistent
## 17545 cellular jul mon 247 3 999 0 nonexistent
## 17550 cellular jul mon 318 7 999 0 nonexistent
## 17552 cellular jul mon 867 2 999 0 nonexistent
## 17560 cellular jul mon 418 3 999 0 nonexistent
## 17563 cellular jul mon 88 4 999 0 nonexistent
## 17564 cellular jul mon 121 2 999 0 nonexistent
## 17569 cellular jul mon 154 5 999 0 nonexistent
## 17570 cellular jul mon 339 8 999 0 nonexistent
## 17585 cellular jul mon 433 4 999 0 nonexistent
## 17590 cellular jul mon 149 11 999 0 nonexistent
## 17592 cellular jul mon 91 3 999 0 nonexistent
## 17595 cellular jul mon 117 8 999 0 nonexistent
## 17599 cellular jul mon 90 6 999 0 nonexistent
## 17610 cellular jul mon 220 6 999 0 nonexistent
## 17611 cellular jul mon 270 3 999 0 nonexistent
## 17614 cellular jul mon 262 4 999 0 nonexistent
## 17618 cellular jul mon 138 3 999 0 nonexistent
## 17627 cellular jul mon 165 5 999 0 nonexistent
## 17628 cellular jul mon 314 4 999 0 nonexistent
## 17633 cellular jul mon 341 12 999 0 nonexistent
## 17636 cellular jul mon 19 14 999 0 nonexistent
## 17641 telephone jul mon 118 8 999 0 nonexistent
## 17642 cellular jul mon 168 4 999 0 nonexistent
## 17645 cellular jul mon 472 3 999 0 nonexistent
## 17646 telephone jul mon 178 4 999 0 nonexistent
## 17650 cellular jul mon 123 3 999 0 nonexistent
## 17651 cellular jul mon 50 4 999 0 nonexistent
## 17658 telephone jul mon 107 3 999 0 nonexistent
## 17660 cellular jul mon 488 4 999 0 nonexistent
## 17661 cellular jul mon 265 4 999 0 nonexistent
## 17662 cellular jul mon 174 6 999 0 nonexistent
## 17664 telephone jul mon 127 7 999 0 nonexistent
## 17666 cellular jul mon 164 7 999 0 nonexistent
## 17672 cellular jul mon 206 10 999 0 nonexistent
## 17687 telephone jul tue 345 16 999 0 nonexistent
## 17689 cellular jul tue 178 11 999 0 nonexistent
## 17715 cellular jul tue 36 1 999 0 nonexistent
## 17724 cellular jul tue 648 2 999 0 nonexistent
## 17725 telephone jul tue 44 1 999 0 nonexistent
## 17733 cellular jul tue 1569 1 999 0 nonexistent
## 17737 cellular jul tue 162 1 999 0 nonexistent
## 17745 telephone jul tue 165 1 999 0 nonexistent
## 17747 cellular jul tue 318 1 999 0 nonexistent
## 17749 cellular jul tue 241 4 999 0 nonexistent
## 17752 cellular jul tue 116 1 999 0 nonexistent
## 17754 cellular jul tue 106 1 999 0 nonexistent
## 17765 cellular jul tue 336 1 999 0 nonexistent
## 17777 cellular jul tue 97 1 999 0 nonexistent
## 17779 cellular jul tue 60 3 999 0 nonexistent
## 17780 cellular jul tue 48 2 999 0 nonexistent
## 17785 cellular jul tue 98 6 999 0 nonexistent
## 17788 cellular jul tue 69 1 999 0 nonexistent
## 17789 telephone jul tue 55 15 999 0 nonexistent
## 17793 cellular jul tue 96 5 999 0 nonexistent
## 17799 cellular jul tue 64 1 999 0 nonexistent
## 17802 cellular jul tue 446 1 999 0 nonexistent
## 17811 cellular jul tue 361 3 999 0 nonexistent
## 17813 cellular jul tue 145 2 999 0 nonexistent
## 17819 telephone jul tue 104 1 999 0 nonexistent
## 17825 cellular jul tue 46 2 999 0 nonexistent
## 17827 cellular jul tue 121 2 999 0 nonexistent
## 17833 cellular jul tue 212 1 999 0 nonexistent
## 17840 telephone jul tue 24 1 999 0 nonexistent
## 17844 cellular jul tue 520 7 999 0 nonexistent
## 17847 cellular jul tue 82 6 999 0 nonexistent
## 17853 cellular jul tue 422 2 999 0 nonexistent
## 17854 cellular jul tue 100 11 999 0 nonexistent
## 17855 cellular jul tue 129 4 999 0 nonexistent
## 17858 cellular jul tue 56 3 999 0 nonexistent
## 17859 cellular jul tue 281 3 999 0 nonexistent
## 17863 cellular jul tue 337 1 999 0 nonexistent
## 17867 cellular jul tue 20 18 999 0 nonexistent
## 17871 cellular jul tue 86 3 999 0 nonexistent
## 17885 cellular jul tue 108 1 999 0 nonexistent
## 17886 cellular jul tue 104 6 999 0 nonexistent
## 17894 telephone jul tue 38 3 999 0 nonexistent
## 17896 cellular jul tue 635 3 999 0 nonexistent
## 17898 telephone jul tue 77 34 999 0 nonexistent
## 17899 cellular jul tue 62 2 999 0 nonexistent
## 17901 cellular jul tue 171 13 999 0 nonexistent
## 17902 telephone jul tue 665 4 999 0 nonexistent
## 17904 cellular jul tue 77 4 999 0 nonexistent
## 17909 cellular jul tue 935 4 999 0 nonexistent
## 17911 cellular jul tue 313 6 999 0 nonexistent
## 17913 telephone jul tue 375 4 999 0 nonexistent
## 17917 cellular jul tue 197 4 999 0 nonexistent
## 17919 telephone jul tue 616 11 999 0 nonexistent
## 17928 cellular jul tue 109 3 999 0 nonexistent
## 17929 cellular jul tue 122 13 999 0 nonexistent
## 17930 cellular jul tue 162 4 999 0 nonexistent
## 17933 cellular jul tue 205 11 999 0 nonexistent
## 17939 cellular jul tue 64 6 999 0 nonexistent
## 17946 telephone jul tue 1140 2 999 0 nonexistent
## 17947 cellular jul tue 284 3 999 0 nonexistent
## 17952 cellular jul tue 468 2 999 0 nonexistent
## 17960 cellular jul tue 60 24 999 0 nonexistent
## 17961 cellular jul tue 234 6 999 0 nonexistent
## 17963 telephone jul tue 308 2 999 0 nonexistent
## 17965 cellular jul tue 242 5 999 0 nonexistent
## 17980 cellular jul tue 193 14 999 0 nonexistent
## 17991 cellular jul wed 520 4 999 0 nonexistent
## 17992 cellular jul wed 138 6 999 0 nonexistent
## 17993 cellular jul wed 44 7 999 0 nonexistent
## 17994 cellular jul wed 142 8 999 0 nonexistent
## 17999 cellular jul wed 189 3 999 0 nonexistent
## 18000 cellular jul wed 125 3 999 0 nonexistent
## 18007 cellular jul wed 142 2 999 0 nonexistent
## 18011 cellular jul wed 158 1 999 0 nonexistent
## 18028 cellular jul wed 684 1 999 0 nonexistent
## 18030 telephone jul wed 89 1 999 0 nonexistent
## 18033 cellular jul wed 150 1 999 0 nonexistent
## 18034 cellular jul wed 834 1 999 0 nonexistent
## 18042 cellular jul wed 650 1 999 0 nonexistent
## 18044 telephone jul wed 38 1 999 0 nonexistent
## 18058 cellular jul wed 32 1 999 0 nonexistent
## 18059 cellular jul wed 119 2 999 0 nonexistent
## 18060 cellular jul wed 229 1 999 0 nonexistent
## 18064 telephone jul wed 270 1 999 0 nonexistent
## 18071 cellular jul wed 605 1 999 0 nonexistent
## 18074 telephone jul wed 51 19 999 0 nonexistent
## 18077 cellular jul wed 351 1 999 0 nonexistent
## 18079 cellular jul wed 76 2 999 0 nonexistent
## 18080 cellular jul wed 183 1 999 0 nonexistent
## 18085 cellular jul wed 164 1 999 0 nonexistent
## 18086 cellular jul wed 111 1 999 0 nonexistent
## 18096 cellular jul wed 83 1 999 0 nonexistent
## 18098 cellular jul wed 138 1 999 0 nonexistent
## 18112 cellular jul wed 255 1 999 0 nonexistent
## 18121 telephone jul wed 38 1 999 0 nonexistent
## 18125 cellular jul wed 149 1 999 0 nonexistent
## 18129 cellular jul wed 197 1 999 0 nonexistent
## 18132 cellular jul wed 156 2 999 0 nonexistent
## 18133 cellular jul wed 94 4 999 0 nonexistent
## 18137 cellular jul wed 444 1 999 0 nonexistent
## 18139 cellular jul wed 287 1 999 0 nonexistent
## 18142 cellular jul wed 69 3 999 0 nonexistent
## 18149 cellular jul wed 72 2 999 0 nonexistent
## 18151 cellular jul wed 729 2 999 0 nonexistent
## 18153 cellular jul wed 186 3 999 0 nonexistent
## 18156 telephone jul wed 166 2 999 0 nonexistent
## 18168 cellular jul wed 359 1 999 0 nonexistent
## 18175 cellular jul wed 1211 1 999 0 nonexistent
## 18178 telephone jul wed 130 2 999 0 nonexistent
## 18181 cellular jul wed 94 4 999 0 nonexistent
## 18183 cellular jul wed 120 2 999 0 nonexistent
## 18184 cellular jul wed 136 13 999 0 nonexistent
## 18187 cellular jul wed 225 5 999 0 nonexistent
## 18188 cellular jul wed 103 2 999 0 nonexistent
## 18190 cellular jul wed 145 3 999 0 nonexistent
## 18191 cellular jul wed 31 1 999 0 nonexistent
## 18194 cellular jul wed 52 5 999 0 nonexistent
## 18195 cellular jul wed 154 1 999 0 nonexistent
## 18199 cellular jul wed 266 3 999 0 nonexistent
## 18200 cellular jul wed 107 10 999 0 nonexistent
## 18201 cellular jul wed 486 1 999 0 nonexistent
## 18205 cellular jul wed 174 3 999 0 nonexistent
## 18209 cellular jul wed 233 3 999 0 nonexistent
## 18211 cellular jul wed 64 4 999 0 nonexistent
## 18215 cellular jul wed 335 5 999 0 nonexistent
## 18225 cellular jul wed 540 6 999 0 nonexistent
## 18238 cellular jul wed 352 1 999 0 nonexistent
## 18244 telephone jul wed 191 3 999 0 nonexistent
## 18254 cellular jul wed 142 3 999 0 nonexistent
## 18259 cellular jul wed 354 3 999 0 nonexistent
## 18265 cellular jul wed 590 9 999 0 nonexistent
## 18272 cellular jul wed 70 6 999 0 nonexistent
## 18279 cellular jul wed 1259 6 999 0 nonexistent
## 18283 cellular jul wed 311 3 999 0 nonexistent
## 18297 cellular jul wed 285 8 999 0 nonexistent
## 18301 cellular jul wed 184 3 999 0 nonexistent
## 18303 cellular jul wed 185 4 999 0 nonexistent
## 18304 telephone jul wed 98 11 999 0 nonexistent
## 18313 telephone jul wed 215 3 999 0 nonexistent
## 18326 cellular jul wed 84 2 999 0 nonexistent
## 18328 cellular jul wed 105 11 999 0 nonexistent
## 18334 cellular jul thu 106 4 999 0 nonexistent
## 18335 cellular jul thu 101 5 999 0 nonexistent
## 18337 cellular jul thu 75 2 999 0 nonexistent
## 18340 cellular jul thu 20 20 999 0 nonexistent
## 18354 cellular jul thu 13 27 999 0 nonexistent
## 18361 telephone jul thu 69 7 999 0 nonexistent
## 18363 cellular jul thu 165 3 999 0 nonexistent
## 18368 cellular jul thu 175 3 999 0 nonexistent
## 18370 cellular jul thu 98 3 999 0 nonexistent
## 18374 cellular jul thu 12 12 999 0 nonexistent
## 18376 cellular jul thu 8 24 999 0 nonexistent
## 18378 cellular jul thu 130 3 999 0 nonexistent
## 18382 cellular jul thu 517 3 999 0 nonexistent
## 18386 cellular jul thu 749 8 999 0 nonexistent
## 18388 cellular jul thu 81 4 999 0 nonexistent
## 18389 cellular jul thu 85 2 999 0 nonexistent
## 18391 cellular jul thu 55 5 999 0 nonexistent
## 18395 telephone jul thu 1088 14 999 0 nonexistent
## 18403 cellular jul thu 84 3 999 0 nonexistent
## 18409 cellular jul thu 117 1 999 0 nonexistent
## 18416 cellular jul thu 413 1 999 0 nonexistent
## 18420 cellular jul thu 543 1 999 0 nonexistent
## 18428 cellular jul thu 79 5 999 0 nonexistent
## 18448 cellular jul thu 196 2 999 0 nonexistent
## 18454 cellular jul thu 51 7 999 0 nonexistent
## 18462 cellular jul thu 35 1 999 0 nonexistent
## 18465 cellular jul thu 128 1 999 0 nonexistent
## 18471 telephone jul thu 15 1 999 0 nonexistent
## 18474 telephone jul thu 144 1 999 0 nonexistent
## 18476 telephone jul thu 208 5 999 0 nonexistent
## 18478 cellular jul thu 307 4 999 0 nonexistent
## 18479 cellular jul thu 51 1 999 0 nonexistent
## 18484 cellular jul thu 114 2 999 0 nonexistent
## 18494 cellular jul thu 253 1 999 0 nonexistent
## 18503 cellular jul thu 49 1 999 0 nonexistent
## 18505 telephone jul thu 77 2 999 0 nonexistent
## 18507 cellular jul thu 122 1 999 0 nonexistent
## 18510 cellular jul thu 94 1 999 0 nonexistent
## 18522 cellular jul thu 221 1 999 0 nonexistent
## 18523 telephone jul thu 168 1 999 0 nonexistent
## 18538 cellular jul thu 52 6 999 0 nonexistent
## 18545 cellular jul thu 53 1 999 0 nonexistent
## 18554 cellular jul thu 857 2 999 0 nonexistent
## 18560 cellular jul thu 245 2 999 0 nonexistent
## 18562 cellular jul thu 55 7 999 0 nonexistent
## 18565 cellular jul thu 81 2 999 0 nonexistent
## 18586 cellular jul thu 109 5 999 0 nonexistent
## 18592 cellular jul thu 91 5 999 0 nonexistent
## 18595 telephone jul thu 33 12 999 0 nonexistent
## 18596 cellular jul thu 266 9 999 0 nonexistent
## 18610 cellular jul thu 300 1 999 0 nonexistent
## 18613 cellular jul thu 391 1 999 0 nonexistent
## 18618 cellular jul thu 94 2 999 0 nonexistent
## 18623 cellular jul thu 81 3 999 0 nonexistent
## 18624 cellular jul thu 34 1 999 0 nonexistent
## 18632 telephone jul thu 28 1 999 0 nonexistent
## 18638 telephone jul thu 444 5 999 0 nonexistent
## 18639 cellular jul thu 744 8 999 0 nonexistent
## 18640 cellular jul thu 196 4 999 0 nonexistent
## 18656 cellular jul thu 66 31 999 0 nonexistent
## 18661 cellular jul thu 21 2 999 0 nonexistent
## 18668 cellular jul thu 17 24 999 0 nonexistent
## 18674 cellular jul thu 11 3 999 0 nonexistent
## 18694 telephone jul thu 251 3 999 0 nonexistent
## 18697 cellular jul thu 55 8 999 0 nonexistent
## 18699 cellular jul thu 9 18 999 0 nonexistent
## 18700 telephone jul thu 237 7 999 0 nonexistent
## 18703 cellular jul thu 189 3 999 0 nonexistent
## 18709 cellular jul thu 10 3 999 0 nonexistent
## 18712 cellular jul thu 35 25 999 0 nonexistent
## 18717 cellular jul thu 160 14 999 0 nonexistent
## 18718 telephone jul thu 21 35 999 0 nonexistent
## 18727 cellular jul thu 280 6 999 0 nonexistent
## 18728 telephone jul thu 350 10 999 0 nonexistent
## 18734 cellular jul thu 124 8 999 0 nonexistent
## 18751 cellular jul thu 9 17 999 0 nonexistent
## 18752 cellular jul thu 92 4 999 0 nonexistent
## 18754 telephone jul thu 130 8 999 0 nonexistent
## 18758 cellular jul thu 28 5 999 0 nonexistent
## 18761 telephone jul thu 443 4 999 0 nonexistent
## 18765 cellular jul thu 248 5 999 0 nonexistent
## 18767 cellular jul thu 148 6 999 0 nonexistent
## 18768 cellular jul thu 18 12 999 0 nonexistent
## 18772 telephone jul thu 50 6 999 0 nonexistent
## 18776 cellular jul thu 5 3 999 0 nonexistent
## 18783 cellular jul thu 6 12 999 0 nonexistent
## 18788 cellular jul thu 1721 4 999 0 nonexistent
## 18811 cellular jul thu 143 4 999 0 nonexistent
## 18817 telephone jul thu 135 3 999 0 nonexistent
## 18831 cellular aug mon 272 1 999 0 nonexistent
## 18838 cellular aug mon 71 1 999 0 nonexistent
## 18853 cellular aug mon 240 1 999 0 nonexistent
## 18866 cellular aug mon 270 1 999 0 nonexistent
## 18874 cellular aug mon 144 1 999 0 nonexistent
## 18875 cellular aug mon 174 1 999 0 nonexistent
## 18877 cellular aug mon 142 2 999 0 nonexistent
## 18881 cellular aug mon 119 2 999 0 nonexistent
## 18882 cellular aug mon 372 1 999 0 nonexistent
## 18883 cellular aug mon 606 3 999 0 nonexistent
## 18904 cellular aug mon 20 3 999 0 nonexistent
## 18906 cellular aug mon 488 2 999 0 nonexistent
## 18908 cellular aug mon 506 1 999 0 nonexistent
## 18911 cellular aug mon 432 1 999 0 nonexistent
## 18925 cellular aug mon 653 2 999 0 nonexistent
## 18931 cellular aug mon 108 1 999 0 nonexistent
## 18934 cellular aug mon 357 2 999 0 nonexistent
## 18941 cellular aug mon 298 1 999 0 nonexistent
## 18946 cellular aug mon 135 3 999 0 nonexistent
## 18948 cellular aug mon 36 1 999 0 nonexistent
## 18958 cellular aug mon 482 3 999 0 nonexistent
## 18962 cellular aug mon 140 2 999 0 nonexistent
## 18963 cellular aug mon 110 2 999 0 nonexistent
## 18964 cellular aug mon 84 1 999 0 nonexistent
## 18968 cellular aug mon 368 2 999 0 nonexistent
## 18971 cellular aug mon 370 2 999 0 nonexistent
## 18973 cellular aug mon 230 3 999 0 nonexistent
## 18977 cellular aug mon 441 2 999 0 nonexistent
## 18980 cellular aug mon 101 2 999 0 nonexistent
## 18984 cellular aug mon 251 3 999 0 nonexistent
## 18986 cellular aug mon 211 3 999 0 nonexistent
## 18992 cellular aug mon 413 2 999 0 nonexistent
## 19001 cellular aug tue 487 3 999 0 nonexistent
## 19002 cellular aug tue 641 2 999 0 nonexistent
## 19006 cellular aug tue 837 2 999 0 nonexistent
## 19010 cellular aug tue 314 1 999 0 nonexistent
## 19015 cellular aug tue 86 1 999 0 nonexistent
## 19022 cellular aug tue 241 1 999 0 nonexistent
## 19026 cellular aug tue 269 1 999 0 nonexistent
## 19028 cellular aug tue 195 1 999 0 nonexistent
## 19030 cellular aug tue 148 1 999 0 nonexistent
## 19031 cellular aug tue 448 1 999 0 nonexistent
## 19040 cellular aug tue 1134 1 999 0 nonexistent
## 19046 cellular aug tue 328 1 999 0 nonexistent
## 19051 cellular aug tue 148 1 999 0 nonexistent
## 19056 cellular aug tue 109 1 999 0 nonexistent
## 19057 cellular aug tue 114 1 999 0 nonexistent
## 19065 cellular aug tue 123 1 999 0 nonexistent
## 19070 cellular aug tue 174 2 999 0 nonexistent
## 19077 cellular aug tue 297 1 999 0 nonexistent
## 19083 cellular aug tue 178 2 999 0 nonexistent
## 19090 cellular aug tue 148 2 999 0 nonexistent
## 19094 cellular aug tue 182 1 999 0 nonexistent
## 19098 cellular aug tue 720 2 999 0 nonexistent
## 19102 cellular aug tue 316 2 999 0 nonexistent
## 19106 cellular aug tue 683 2 999 0 nonexistent
## 19108 cellular aug tue 66 2 999 0 nonexistent
## 19109 cellular aug tue 935 1 999 0 nonexistent
## 19111 cellular aug tue 165 1 999 0 nonexistent
## 19115 cellular aug tue 158 2 999 0 nonexistent
## 19119 cellular aug tue 339 2 999 0 nonexistent
## 19123 cellular aug tue 27 3 999 0 nonexistent
## 19125 cellular aug tue 229 2 999 0 nonexistent
## 19128 cellular aug tue 104 1 999 0 nonexistent
## 19141 cellular aug tue 318 2 999 0 nonexistent
## 19143 cellular aug tue 80 1 999 0 nonexistent
## 19146 cellular aug tue 153 1 999 0 nonexistent
## 19148 cellular aug tue 203 1 999 0 nonexistent
## 19150 cellular aug tue 197 1 999 0 nonexistent
## 19158 cellular aug tue 504 2 999 0 nonexistent
## 19159 cellular aug tue 385 3 999 0 nonexistent
## 19161 cellular aug tue 134 2 999 0 nonexistent
## 19163 cellular aug tue 121 3 999 0 nonexistent
## 19170 cellular aug tue 419 3 999 0 nonexistent
## 19174 cellular aug tue 332 2 999 0 nonexistent
## 19178 cellular aug tue 507 2 999 0 nonexistent
## 19179 cellular aug tue 608 2 999 0 nonexistent
## 19181 cellular aug tue 178 4 999 0 nonexistent
## 19185 cellular aug tue 1197 2 999 0 nonexistent
## 19195 cellular aug wed 384 5 999 0 nonexistent
## 19197 cellular aug wed 1357 3 999 0 nonexistent
## 19205 cellular aug wed 269 1 999 0 nonexistent
## 19209 cellular aug wed 175 1 999 0 nonexistent
## 19210 cellular aug wed 902 2 999 0 nonexistent
## 19227 cellular aug wed 142 1 999 0 nonexistent
## 19233 cellular aug wed 134 1 999 0 nonexistent
## 19237 cellular aug wed 311 1 999 0 nonexistent
## 19238 cellular aug wed 81 1 999 0 nonexistent
## 19245 cellular aug wed 499 1 999 0 nonexistent
## 19248 cellular aug wed 113 2 999 0 nonexistent
## 19253 cellular aug wed 184 1 999 0 nonexistent
## 19262 cellular aug wed 244 1 999 0 nonexistent
## 19267 cellular aug wed 163 1 999 0 nonexistent
## 19269 cellular aug wed 64 1 999 0 nonexistent
## 19270 cellular aug wed 359 1 999 0 nonexistent
## 19284 cellular aug wed 89 1 999 0 nonexistent
## 19286 cellular aug wed 126 1 999 0 nonexistent
## 19299 cellular aug wed 246 1 999 0 nonexistent
## 19304 cellular aug wed 124 1 999 0 nonexistent
## 19311 cellular aug wed 199 5 999 0 nonexistent
## 19314 cellular aug wed 2191 1 999 0 nonexistent
## 19320 cellular aug wed 89 1 999 0 nonexistent
## 19321 cellular aug wed 111 1 999 0 nonexistent
## 19322 cellular aug wed 254 2 999 0 nonexistent
## 19324 cellular aug wed 1044 2 999 0 nonexistent
## 19329 cellular aug wed 136 1 999 0 nonexistent
## 19331 cellular aug wed 384 1 999 0 nonexistent
## 19334 cellular aug wed 100 4 999 0 nonexistent
## 19336 cellular aug wed 301 2 999 0 nonexistent
## 19337 cellular aug wed 118 1 999 0 nonexistent
## 19343 cellular aug wed 188 2 999 0 nonexistent
## 19351 cellular aug wed 170 1 999 0 nonexistent
## 19353 cellular aug wed 438 1 999 0 nonexistent
## 19354 cellular aug wed 601 1 999 0 nonexistent
## 19365 cellular aug wed 432 2 999 0 nonexistent
## 19366 cellular aug wed 240 1 999 0 nonexistent
## 19370 cellular aug wed 224 2 999 0 nonexistent
## 19373 cellular aug wed 996 1 999 0 nonexistent
## 19376 cellular aug wed 175 4 999 0 nonexistent
## 19377 cellular aug wed 536 1 999 0 nonexistent
## 19388 cellular aug wed 101 1 999 0 nonexistent
## 19392 cellular aug wed 275 1 999 0 nonexistent
## 19399 cellular aug wed 160 1 999 0 nonexistent
## 19403 cellular aug wed 252 5 999 0 nonexistent
## 19404 cellular aug wed 322 5 999 0 nonexistent
## 19407 cellular aug wed 127 3 999 0 nonexistent
## 19408 cellular aug wed 395 4 999 0 nonexistent
## 19410 cellular aug wed 433 3 999 0 nonexistent
## 19417 cellular aug wed 685 2 999 0 nonexistent
## 19419 cellular aug wed 61 3 999 0 nonexistent
## 19422 cellular aug wed 426 3 999 0 nonexistent
## 19424 cellular aug wed 236 4 999 0 nonexistent
## 19425 cellular aug wed 626 3 999 0 nonexistent
## 19426 cellular aug wed 105 6 999 0 nonexistent
## 19433 cellular aug wed 131 3 999 0 nonexistent
## 19438 cellular aug wed 1250 4 999 0 nonexistent
## 19440 cellular aug wed 1471 7 999 0 nonexistent
## 19447 cellular aug thu 157 3 999 0 nonexistent
## 19454 cellular aug thu 117 1 999 0 nonexistent
## 19464 cellular aug thu 78 1 999 0 nonexistent
## 19471 cellular aug thu 163 1 999 0 nonexistent
## 19474 cellular aug thu 326 1 999 0 nonexistent
## 19476 cellular aug thu 663 2 999 0 nonexistent
## 19486 cellular aug thu 253 1 999 0 nonexistent
## 19494 cellular aug thu 274 1 999 0 nonexistent
## 19499 cellular aug thu 159 1 999 0 nonexistent
## 19501 cellular aug thu 63 1 999 0 nonexistent
## 19502 cellular aug thu 30 1 999 0 nonexistent
## 19506 cellular aug thu 152 1 999 0 nonexistent
## 19508 cellular aug thu 228 2 999 0 nonexistent
## 19511 cellular aug thu 154 1 999 0 nonexistent
## 19516 cellular aug thu 398 1 999 0 nonexistent
## 19536 cellular aug thu 116 1 999 0 nonexistent
## 19538 cellular aug thu 92 2 999 0 nonexistent
## 19549 cellular aug thu 257 1 999 0 nonexistent
## 19554 cellular aug thu 102 1 999 0 nonexistent
## 19558 cellular aug thu 64 1 999 0 nonexistent
## 19565 cellular aug thu 61 1 999 0 nonexistent
## 19569 cellular aug thu 103 2 999 0 nonexistent
## 19573 cellular aug thu 111 1 999 0 nonexistent
## 19574 cellular aug thu 106 2 999 0 nonexistent
## 19575 cellular aug thu 64 1 999 0 nonexistent
## 19581 cellular aug thu 88 2 999 0 nonexistent
## 19593 cellular aug thu 266 2 999 0 nonexistent
## 19598 cellular aug thu 90 2 999 0 nonexistent
## 19613 cellular aug thu 436 2 999 0 nonexistent
## 19614 cellular aug thu 190 1 999 0 nonexistent
## 19623 cellular aug thu 65 2 999 0 nonexistent
## 19642 cellular aug thu 163 2 999 0 nonexistent
## 19643 cellular aug thu 115 3 999 0 nonexistent
## 19648 cellular aug thu 101 1 999 0 nonexistent
## 19650 cellular aug thu 117 1 999 0 nonexistent
## 19653 cellular aug thu 446 1 999 0 nonexistent
## 19655 cellular aug thu 126 1 999 0 nonexistent
## 19656 cellular aug thu 481 1 999 0 nonexistent
## 19679 cellular aug thu 642 3 999 0 nonexistent
## 19682 cellular aug thu 181 3 999 0 nonexistent
## 19688 cellular aug thu 51 7 999 0 nonexistent
## 19695 cellular aug thu 217 3 999 0 nonexistent
## 19696 cellular aug thu 123 3 999 0 nonexistent
## 19700 cellular aug thu 773 5 999 0 nonexistent
## 19701 cellular aug thu 142 2 999 0 nonexistent
## 19703 cellular aug thu 161 3 999 0 nonexistent
## 19711 cellular aug thu 107 3 999 0 nonexistent
## 19714 cellular aug thu 256 3 999 0 nonexistent
## 19723 cellular aug thu 265 3 999 0 nonexistent
## 19738 cellular aug fri 201 4 999 0 nonexistent
## 19739 cellular aug fri 215 3 999 0 nonexistent
## 19740 cellular aug fri 152 5 999 0 nonexistent
## 19747 cellular aug fri 231 1 999 0 nonexistent
## 19755 cellular aug fri 96 2 999 0 nonexistent
## 19756 cellular aug fri 188 1 999 0 nonexistent
## 19760 cellular aug fri 117 1 999 0 nonexistent
## 19778 cellular aug fri 161 4 999 0 nonexistent
## 19785 cellular aug fri 60 3 999 0 nonexistent
## 19787 cellular aug fri 207 1 999 0 nonexistent
## 19788 cellular aug fri 193 1 999 0 nonexistent
## 19807 cellular aug fri 241 4 999 0 nonexistent
## 19809 cellular aug fri 109 2 999 0 nonexistent
## 19811 cellular aug fri 994 1 999 0 nonexistent
## 19816 cellular aug fri 172 1 999 0 nonexistent
## 19824 cellular aug fri 84 2 999 0 nonexistent
## 19827 cellular aug fri 784 1 999 0 nonexistent
## 19833 cellular aug fri 80 1 999 0 nonexistent
## 19841 cellular aug fri 353 1 999 0 nonexistent
## 19850 cellular aug fri 86 3 999 0 nonexistent
## 19854 cellular aug fri 88 1 999 0 nonexistent
## 19861 cellular aug fri 151 1 999 0 nonexistent
## 19865 cellular aug fri 112 1 999 0 nonexistent
## 19872 cellular aug fri 224 1 999 0 nonexistent
## 19875 cellular aug fri 109 1 999 0 nonexistent
## 19879 cellular aug fri 167 1 999 0 nonexistent
## 19883 cellular aug fri 111 1 999 0 nonexistent
## 19892 cellular aug fri 172 1 999 0 nonexistent
## 19898 cellular aug fri 142 2 999 0 nonexistent
## 19900 cellular aug fri 215 2 999 0 nonexistent
## 19907 cellular aug fri 61 3 999 0 nonexistent
## 19908 cellular aug fri 125 1 999 0 nonexistent
## 19909 cellular aug fri 81 1 999 0 nonexistent
## 19911 cellular aug fri 194 2 999 0 nonexistent
## 19913 cellular aug fri 445 1 999 0 nonexistent
## 19919 telephone aug fri 91 1 999 0 nonexistent
## 19925 cellular aug fri 310 3 999 0 nonexistent
## 19935 cellular aug fri 87 1 999 0 nonexistent
## 19940 cellular aug fri 335 3 999 0 nonexistent
## 19946 cellular aug fri 173 7 999 0 nonexistent
## 19949 cellular aug fri 193 1 999 0 nonexistent
## 19958 cellular aug fri 191 1 999 0 nonexistent
## 19963 cellular aug fri 136 1 999 0 nonexistent
## 19965 cellular aug fri 448 5 999 0 nonexistent
## 19966 cellular aug fri 528 1 999 0 nonexistent
## 19969 cellular aug fri 88 3 999 0 nonexistent
## 19976 cellular aug fri 173 3 999 0 nonexistent
## 19979 cellular aug fri 604 4 999 0 nonexistent
## 19995 cellular aug fri 455 4 999 0 nonexistent
## 19996 cellular aug fri 390 2 999 0 nonexistent
## 20004 cellular aug fri 492 3 999 0 nonexistent
## 20009 cellular aug fri 57 3 999 0 nonexistent
## 20011 cellular aug fri 166 3 999 0 nonexistent
## 20023 cellular aug fri 17 7 999 0 nonexistent
## 20026 cellular aug fri 262 4 999 0 nonexistent
## 20029 cellular aug mon 46 3 999 0 nonexistent
## 20030 cellular aug mon 343 2 999 0 nonexistent
## 20042 cellular aug mon 258 3 999 0 nonexistent
## 20047 cellular aug mon 413 1 999 0 nonexistent
## 20055 cellular aug mon 106 2 999 0 nonexistent
## 20057 cellular aug mon 98 1 999 0 nonexistent
## 20061 cellular aug mon 104 1 999 0 nonexistent
## 20063 cellular aug mon 111 1 999 0 nonexistent
## 20070 cellular aug mon 97 1 999 0 nonexistent
## 20079 cellular aug mon 103 2 999 0 nonexistent
## 20087 cellular aug mon 269 1 999 0 nonexistent
## 20092 cellular aug mon 758 2 999 0 nonexistent
## 20095 cellular aug mon 565 1 999 0 nonexistent
## 20102 cellular aug mon 323 1 999 0 nonexistent
## 20113 cellular aug mon 123 1 999 0 nonexistent
## 20116 cellular aug mon 90 2 999 0 nonexistent
## 20117 cellular aug mon 275 1 999 0 nonexistent
## 20120 cellular aug mon 57 1 999 0 nonexistent
## 20124 cellular aug mon 210 2 999 0 nonexistent
## 20134 cellular aug mon 217 1 999 0 nonexistent
## 20137 cellular aug mon 79 3 999 0 nonexistent
## 20140 cellular aug mon 56 2 999 0 nonexistent
## 20153 cellular aug mon 316 1 999 0 nonexistent
## 20167 cellular aug mon 228 1 999 0 nonexistent
## 20168 cellular aug mon 76 1 999 0 nonexistent
## 20170 cellular aug mon 331 1 999 0 nonexistent
## 20176 cellular aug mon 140 1 999 0 nonexistent
## 20186 cellular aug mon 389 2 999 0 nonexistent
## 20189 cellular aug mon 275 6 999 0 nonexistent
## 20190 cellular aug mon 36 2 999 0 nonexistent
## 20191 cellular aug mon 247 2 999 0 nonexistent
## 20195 cellular aug mon 272 2 999 0 nonexistent
## 20196 cellular aug mon 1099 2 999 0 nonexistent
## 20197 cellular aug mon 331 5 999 0 nonexistent
## 20202 cellular aug mon 177 1 999 0 nonexistent
## 20210 cellular aug mon 189 1 999 0 nonexistent
## 20222 cellular aug mon 468 1 999 0 nonexistent
## 20227 cellular aug mon 103 1 999 0 nonexistent
## 20239 cellular aug mon 1238 1 999 0 nonexistent
## 20246 cellular aug mon 76 5 999 0 nonexistent
## 20250 cellular aug mon 246 3 999 0 nonexistent
## 20254 cellular aug mon 381 4 999 0 nonexistent
## 20259 cellular aug mon 720 1 999 0 nonexistent
## 20263 cellular aug mon 90 2 999 0 nonexistent
## 20265 cellular aug mon 549 1 999 0 nonexistent
## 20270 cellular aug mon 429 6 999 0 nonexistent
## 20283 cellular aug mon 104 3 999 0 nonexistent
## 20300 telephone aug mon 133 5 999 0 nonexistent
## 20303 cellular aug mon 209 2 999 0 nonexistent
## 20315 cellular aug mon 101 3 999 0 nonexistent
## 20318 cellular aug mon 247 1 999 0 nonexistent
## 20322 cellular aug mon 159 2 999 0 nonexistent
## 20323 cellular aug mon 217 1 999 0 nonexistent
## 20333 cellular aug mon 159 1 999 0 nonexistent
## 20339 cellular aug tue 101 1 999 0 nonexistent
## 20341 cellular aug tue 161 5 999 0 nonexistent
## 20350 cellular aug tue 150 1 999 0 nonexistent
## 20358 cellular aug tue 56 1 999 0 nonexistent
## 20362 cellular aug tue 348 1 999 0 nonexistent
## 20367 cellular aug tue 172 1 999 0 nonexistent
## 20369 cellular aug tue 768 1 999 0 nonexistent
## 20370 cellular aug tue 185 1 999 0 nonexistent
## 20371 cellular aug tue 336 6 999 0 nonexistent
## 20372 cellular aug tue 1134 1 999 0 nonexistent
## 20377 cellular aug tue 178 2 999 0 nonexistent
## 20388 cellular aug tue 234 1 999 0 nonexistent
## 20391 cellular aug tue 106 1 999 0 nonexistent
## 20394 cellular aug tue 52 1 999 0 nonexistent
## 20396 cellular aug tue 815 2 999 0 nonexistent
## 20405 cellular aug tue 63 1 999 0 nonexistent
## 20413 cellular aug tue 117 1 999 0 nonexistent
## 20421 cellular aug tue 232 4 999 0 nonexistent
## 20429 cellular aug tue 174 2 999 0 nonexistent
## 20432 cellular aug tue 87 2 999 0 nonexistent
## 20445 cellular aug tue 105 1 999 0 nonexistent
## 20453 cellular aug tue 217 3 999 0 nonexistent
## 20463 cellular aug tue 119 1 999 0 nonexistent
## 20482 cellular aug tue 1181 2 999 0 nonexistent
## 20489 cellular aug tue 104 6 999 0 nonexistent
## 20490 cellular aug tue 297 2 999 0 nonexistent
## 20513 cellular aug tue 306 1 999 0 nonexistent
## 20514 cellular aug tue 696 1 999 0 nonexistent
## 20518 cellular aug tue 578 2 999 0 nonexistent
## 20526 cellular aug tue 304 8 999 0 nonexistent
## 20541 cellular aug tue 168 5 999 0 nonexistent
## 20550 cellular aug tue 432 3 999 0 nonexistent
## 20552 cellular aug tue 1613 1 999 0 nonexistent
## 20563 cellular aug tue 252 3 999 0 nonexistent
## 20566 cellular aug tue 180 3 999 0 nonexistent
## 20567 cellular aug tue 483 4 999 0 nonexistent
## 20570 cellular aug tue 664 3 999 0 nonexistent
## 20573 cellular aug tue 1735 4 999 0 nonexistent
## 20576 cellular aug tue 124 3 999 0 nonexistent
## 20577 cellular aug tue 284 4 999 0 nonexistent
## 20585 cellular aug tue 465 6 999 0 nonexistent
## 20589 cellular aug tue 121 3 999 0 nonexistent
## 20601 cellular aug wed 168 1 999 0 nonexistent
## 20602 cellular aug wed 239 1 999 0 nonexistent
## 20611 cellular aug wed 176 1 999 0 nonexistent
## 20616 cellular aug wed 186 1 999 0 nonexistent
## 20626 cellular aug wed 303 1 999 0 nonexistent
## 20629 cellular aug wed 157 1 999 0 nonexistent
## 20630 cellular aug wed 823 1 999 0 nonexistent
## 20632 cellular aug wed 703 1 999 0 nonexistent
## 20635 cellular aug wed 55 3 999 0 nonexistent
## 20649 cellular aug wed 185 1 999 0 nonexistent
## 20658 cellular aug wed 88 1 999 0 nonexistent
## 20661 cellular aug wed 115 1 999 0 nonexistent
## 20690 cellular aug wed 144 1 999 0 nonexistent
## 20696 cellular aug wed 409 2 999 0 nonexistent
## 20697 cellular aug wed 100 1 999 0 nonexistent
## 20699 cellular aug wed 165 1 999 0 nonexistent
## 20701 cellular aug wed 325 1 999 0 nonexistent
## 20707 cellular aug wed 130 3 999 0 nonexistent
## 20717 cellular aug wed 62 1 999 0 nonexistent
## 20727 cellular aug wed 66 2 999 0 nonexistent
## 20728 cellular aug wed 78 3 999 0 nonexistent
## 20731 cellular aug wed 250 2 999 0 nonexistent
## 20733 cellular aug wed 141 2 999 0 nonexistent
## 20736 cellular aug wed 324 2 999 0 nonexistent
## 20738 cellular aug wed 112 1 999 0 nonexistent
## 20743 cellular aug wed 871 2 999 0 nonexistent
## 20746 cellular aug wed 175 1 999 0 nonexistent
## 20756 cellular aug wed 15 12 999 0 nonexistent
## 20758 cellular aug wed 559 2 999 0 nonexistent
## 20766 cellular aug wed 195 1 999 0 nonexistent
## 20773 cellular aug wed 327 1 999 0 nonexistent
## 20774 cellular aug wed 990 1 999 0 nonexistent
## 20775 cellular aug wed 523 1 999 0 nonexistent
## 20784 telephone aug wed 306 1 999 0 nonexistent
## 20785 cellular aug wed 31 1 999 0 nonexistent
## 20788 cellular aug wed 68 2 999 0 nonexistent
## 20790 cellular aug wed 257 3 999 0 nonexistent
## 20799 cellular aug wed 78 1 999 0 nonexistent
## 20819 cellular aug wed 150 3 999 0 nonexistent
## 20821 cellular aug wed 67 3 999 0 nonexistent
## 20824 cellular aug wed 413 4 999 0 nonexistent
## 20828 cellular aug wed 275 8 999 0 nonexistent
## 20837 cellular aug thu 65 8 999 0 nonexistent
## 20856 cellular aug thu 125 1 999 0 nonexistent
## 20857 cellular aug thu 259 2 999 0 nonexistent
## 20869 cellular aug thu 266 1 999 0 nonexistent
## 20875 cellular aug thu 169 5 999 0 nonexistent
## 20876 cellular aug thu 250 1 999 0 nonexistent
## 20883 cellular aug thu 103 1 999 0 nonexistent
## 20886 cellular aug thu 55 1 999 0 nonexistent
## 20897 cellular aug thu 92 1 999 0 nonexistent
## 20914 cellular aug thu 141 1 999 0 nonexistent
## 20916 cellular aug thu 370 2 999 0 nonexistent
## 20920 telephone aug thu 313 1 999 0 nonexistent
## 20924 cellular aug thu 128 2 999 0 nonexistent
## 20926 cellular aug thu 356 1 999 0 nonexistent
## 20929 cellular aug thu 935 1 999 0 nonexistent
## 20934 cellular aug thu 127 1 999 0 nonexistent
## 20937 cellular aug thu 90 2 999 0 nonexistent
## 20946 cellular aug thu 374 2 999 0 nonexistent
## 20952 cellular aug thu 93 1 999 0 nonexistent
## 20960 cellular aug thu 51 3 999 0 nonexistent
## 20965 cellular aug thu 112 1 999 0 nonexistent
## 20966 cellular aug thu 146 1 999 0 nonexistent
## 20975 cellular aug thu 90 3 999 0 nonexistent
## 20983 cellular aug thu 343 1 999 0 nonexistent
## 20986 cellular aug thu 265 1 999 0 nonexistent
## 20987 cellular aug thu 158 1 999 0 nonexistent
## 20992 cellular aug thu 145 1 999 0 nonexistent
## 20994 telephone aug thu 64 1 999 0 nonexistent
## 20996 cellular aug thu 834 9 999 0 nonexistent
## 21000 cellular aug thu 366 1 999 0 nonexistent
## 21004 cellular aug thu 208 4 999 0 nonexistent
## 21009 cellular aug thu 80 3 999 0 nonexistent
## 21010 cellular aug thu 95 1 999 0 nonexistent
## 21016 cellular aug thu 388 4 999 0 nonexistent
## 21018 cellular aug thu 448 3 999 0 nonexistent
## 21032 cellular aug thu 425 2 999 0 nonexistent
## 21034 cellular aug thu 52 2 999 0 nonexistent
## 21036 cellular aug thu 1231 2 999 0 nonexistent
## 21037 cellular aug thu 41 1 999 0 nonexistent
## 21046 cellular aug thu 187 2 999 0 nonexistent
## 21047 cellular aug thu 170 3 999 0 nonexistent
## 21053 cellular aug thu 244 1 999 0 nonexistent
## 21055 cellular aug thu 91 1 999 0 nonexistent
## 21058 cellular aug thu 120 2 999 0 nonexistent
## 21062 cellular aug thu 101 1 999 0 nonexistent
## 21066 telephone aug thu 234 3 999 0 nonexistent
## 21070 cellular aug thu 124 3 999 0 nonexistent
## 21073 cellular aug thu 163 3 999 0 nonexistent
## 21074 cellular aug thu 306 5 999 0 nonexistent
## 21078 cellular aug thu 64 2 999 0 nonexistent
## 21081 cellular aug thu 136 3 999 0 nonexistent
## 21086 cellular aug thu 211 4 999 0 nonexistent
## 21092 cellular aug thu 45 3 999 0 nonexistent
## 21093 cellular aug thu 109 2 999 0 nonexistent
## 21096 cellular aug thu 1579 2 999 0 nonexistent
## 21100 cellular aug mon 125 3 999 0 nonexistent
## 21101 cellular aug mon 618 3 999 0 nonexistent
## 21102 cellular aug mon 90 3 999 0 nonexistent
## 21103 cellular aug mon 773 2 999 0 nonexistent
## 21104 cellular aug mon 762 2 999 0 nonexistent
## 21106 cellular aug mon 671 2 999 0 nonexistent
## 21110 cellular aug mon 299 3 999 0 nonexistent
## 21111 cellular aug mon 92 5 999 0 nonexistent
## 21112 cellular aug mon 73 4 999 0 nonexistent
## 21115 cellular aug mon 105 2 999 0 nonexistent
## 21121 cellular aug mon 197 4 999 0 nonexistent
## 21123 cellular aug mon 131 2 999 0 nonexistent
## 21125 cellular aug mon 68 2 999 0 nonexistent
## 21126 cellular aug mon 109 2 999 0 nonexistent
## 21131 cellular aug mon 113 2 999 0 nonexistent
## 21132 cellular aug mon 161 4 999 0 nonexistent
## 21133 cellular aug mon 233 7 999 0 nonexistent
## 21142 cellular aug mon 230 4 999 0 nonexistent
## 21151 cellular aug mon 70 3 999 0 nonexistent
## 21152 cellular aug mon 146 3 999 0 nonexistent
## 21170 cellular aug mon 143 2 999 0 nonexistent
## 21177 cellular aug mon 89 2 999 0 nonexistent
## 21181 cellular aug mon 119 4 999 0 nonexistent
## 21185 cellular aug mon 98 3 999 0 nonexistent
## 21189 cellular aug mon 86 4 999 0 nonexistent
## 21194 cellular aug mon 166 2 999 0 nonexistent
## 21197 cellular aug mon 124 2 999 0 nonexistent
## 21198 cellular aug mon 207 3 999 0 nonexistent
## 21199 cellular aug mon 90 3 999 0 nonexistent
## 21202 cellular aug mon 129 2 999 0 nonexistent
## 21205 cellular aug mon 67 2 999 0 nonexistent
## 21214 cellular aug mon 240 2 999 0 nonexistent
## 21216 cellular aug mon 98 4 999 0 nonexistent
## 21221 cellular aug mon 95 4 999 0 nonexistent
## 21223 cellular aug mon 431 4 999 0 nonexistent
## 21225 cellular aug mon 197 2 999 0 nonexistent
## 21229 cellular aug mon 280 1 999 0 nonexistent
## 21233 cellular aug mon 119 4 999 0 nonexistent
## 21242 cellular aug mon 702 1 999 0 nonexistent
## 21243 telephone aug mon 331 1 999 0 nonexistent
## 21246 cellular aug mon 142 2 999 0 nonexistent
## 21248 cellular aug mon 68 3 999 0 nonexistent
## 21249 cellular aug mon 79 1 999 0 nonexistent
## 21250 cellular aug mon 102 5 999 0 nonexistent
## 21274 telephone aug mon 280 10 999 0 nonexistent
## 21279 cellular aug mon 93 2 999 0 nonexistent
## 21282 cellular aug mon 119 3 999 0 nonexistent
## 21284 cellular aug mon 223 2 999 0 nonexistent
## 21285 cellular aug mon 199 4 999 0 nonexistent
## 21299 cellular aug mon 75 1 999 0 nonexistent
## 21301 cellular aug mon 82 2 999 0 nonexistent
## 21308 cellular aug mon 384 6 999 0 nonexistent
## 21311 cellular aug mon 201 2 999 0 nonexistent
## 21316 cellular aug mon 178 2 999 0 nonexistent
## 21320 cellular aug mon 37 2 999 0 nonexistent
## 21345 cellular aug mon 92 12 999 0 nonexistent
## 21346 cellular aug mon 374 12 999 0 nonexistent
## 21354 cellular aug mon 724 12 999 0 nonexistent
## 21362 cellular aug mon 314 3 999 0 nonexistent
## 21364 cellular aug mon 43 3 999 0 nonexistent
## 21369 cellular aug mon 153 7 999 0 nonexistent
## 21372 cellular aug mon 195 7 999 0 nonexistent
## 21382 cellular aug tue 139 2 999 0 nonexistent
## 21386 cellular aug tue 120 9 999 0 nonexistent
## 21387 cellular aug tue 607 5 999 0 nonexistent
## 21388 cellular aug tue 141 2 999 0 nonexistent
## 21398 cellular aug tue 177 5 999 0 nonexistent
## 21405 cellular aug tue 54 1 999 0 nonexistent
## 21411 cellular aug tue 787 1 999 0 nonexistent
## 21420 cellular aug tue 87 1 999 0 nonexistent
## 21423 cellular aug tue 213 1 999 0 nonexistent
## 21429 cellular aug tue 104 1 999 0 nonexistent
## 21445 cellular aug tue 344 2 999 0 nonexistent
## 21446 cellular aug tue 284 1 999 0 nonexistent
## 21449 cellular aug tue 141 1 999 0 nonexistent
## 21457 cellular aug tue 189 1 999 0 nonexistent
## 21469 cellular aug tue 101 1 999 0 nonexistent
## 21472 cellular aug tue 260 1 999 0 nonexistent
## 21474 cellular aug tue 242 1 999 0 nonexistent
## 21475 cellular aug tue 501 1 999 0 nonexistent
## 21482 cellular aug tue 111 2 999 0 nonexistent
## 21486 cellular aug tue 186 2 999 0 nonexistent
## 21487 cellular aug tue 195 4 999 0 nonexistent
## 21501 cellular aug tue 139 1 999 0 nonexistent
## 21512 cellular aug tue 452 1 999 0 nonexistent
## 21516 cellular aug tue 167 1 999 0 nonexistent
## 21517 cellular aug tue 306 1 999 0 nonexistent
## 21518 cellular aug tue 117 4 999 0 nonexistent
## 21521 cellular aug tue 156 2 999 0 nonexistent
## 21524 cellular aug tue 190 1 999 0 nonexistent
## 21529 cellular aug tue 406 1 999 0 nonexistent
## 21533 cellular aug tue 222 2 999 0 nonexistent
## 21541 cellular aug tue 28 13 999 0 nonexistent
## 21546 cellular aug tue 129 2 999 0 nonexistent
## 21547 cellular aug tue 120 3 999 0 nonexistent
## 21552 cellular aug tue 224 1 999 0 nonexistent
## 21557 cellular aug tue 163 1 999 0 nonexistent
## 21574 cellular aug tue 171 1 999 0 nonexistent
## 21577 cellular aug tue 128 2 999 0 nonexistent
## 21588 cellular aug tue 195 1 999 0 nonexistent
## 21591 cellular aug tue 105 1 999 0 nonexistent
## 21609 cellular aug tue 102 1 999 0 nonexistent
## 21612 cellular aug tue 124 1 999 0 nonexistent
## 21636 cellular aug tue 15 13 999 0 nonexistent
## 21637 cellular aug tue 824 1 999 0 nonexistent
## 21639 cellular aug tue 194 2 999 0 nonexistent
## 21654 cellular aug tue 117 3 999 0 nonexistent
## 21655 cellular aug tue 149 3 999 0 nonexistent
## 21661 cellular aug tue 153 6 999 0 nonexistent
## 21663 cellular aug tue 405 3 999 0 nonexistent
## 21665 cellular aug tue 294 3 999 0 nonexistent
## 21675 cellular aug tue 88 1 999 0 nonexistent
## 21679 cellular aug tue 88 1 999 0 nonexistent
## 21684 cellular aug tue 173 1 999 0 nonexistent
## 21687 cellular aug tue 285 3 999 0 nonexistent
## 21688 cellular aug tue 302 3 999 0 nonexistent
## 21689 cellular aug tue 171 6 999 0 nonexistent
## 21694 cellular aug tue 61 4 999 0 nonexistent
## 21701 cellular aug tue 78 3 999 0 nonexistent
## 21702 cellular aug tue 121 3 999 0 nonexistent
## 21712 cellular aug tue 398 3 999 0 nonexistent
## 21716 cellular aug tue 290 9 999 0 nonexistent
## 21718 cellular aug tue 238 4 999 0 nonexistent
## 21719 cellular aug tue 249 3 999 0 nonexistent
## 21721 cellular aug tue 137 2 999 0 nonexistent
## 21726 cellular aug tue 147 3 999 0 nonexistent
## 21728 cellular aug tue 57 5 999 0 nonexistent
## 21735 cellular aug tue 228 5 999 0 nonexistent
## 21752 cellular aug tue 561 2 999 0 nonexistent
## 21768 cellular aug wed 118 3 999 0 nonexistent
## 21782 cellular aug wed 43 1 999 0 nonexistent
## 21786 cellular aug wed 72 1 999 0 nonexistent
## 21790 cellular aug wed 81 3 999 0 nonexistent
## 21793 cellular aug wed 86 1 999 0 nonexistent
## 21802 cellular aug wed 160 1 999 0 nonexistent
## 21805 cellular aug wed 104 2 999 0 nonexistent
## 21810 cellular aug wed 50 1 999 0 nonexistent
## 21813 cellular aug wed 18 4 999 0 nonexistent
## 21816 cellular aug wed 64 4 999 0 nonexistent
## 21823 cellular aug wed 60 1 999 0 nonexistent
## 21824 cellular aug wed 25 1 999 0 nonexistent
## 21833 cellular aug wed 243 1 999 0 nonexistent
## 21840 cellular aug wed 84 1 999 0 nonexistent
## 21846 cellular aug wed 155 2 999 0 nonexistent
## 21868 cellular aug wed 351 1 999 0 nonexistent
## 21869 cellular aug wed 202 1 999 0 nonexistent
## 21870 cellular aug wed 153 1 999 0 nonexistent
## 21872 cellular aug wed 552 3 999 0 nonexistent
## 21873 cellular aug wed 106 1 999 0 nonexistent
## 21876 cellular aug wed 89 1 999 0 nonexistent
## 21881 cellular aug wed 387 6 999 0 nonexistent
## 21882 cellular aug wed 162 2 999 0 nonexistent
## 21885 cellular aug wed 414 8 999 0 nonexistent
## 21886 cellular aug wed 552 2 999 0 nonexistent
## 21893 cellular aug wed 360 2 999 0 nonexistent
## 21894 cellular aug wed 219 1 999 0 nonexistent
## 21896 cellular aug wed 102 2 999 0 nonexistent
## 21917 cellular aug wed 49 1 999 0 nonexistent
## 21922 cellular aug wed 233 1 999 0 nonexistent
## 21927 cellular aug wed 119 1 999 0 nonexistent
## 21930 cellular aug wed 200 1 999 0 nonexistent
## 21931 cellular aug wed 214 5 999 0 nonexistent
## 21935 cellular aug wed 195 1 999 0 nonexistent
## 21940 cellular aug wed 157 2 999 0 nonexistent
## 21941 cellular aug wed 352 2 999 0 nonexistent
## 21946 cellular aug wed 76 2 999 0 nonexistent
## 21947 cellular aug wed 112 6 999 0 nonexistent
## 21948 cellular aug wed 161 2 999 0 nonexistent
## 21950 cellular aug wed 599 2 999 0 nonexistent
## 21956 cellular aug wed 744 5 999 0 nonexistent
## 21962 cellular aug wed 88 2 999 0 nonexistent
## 21968 cellular aug wed 414 1 999 0 nonexistent
## 21970 cellular aug wed 90 1 999 0 nonexistent
## 21972 cellular aug wed 113 2 999 0 nonexistent
## 21975 cellular aug wed 88 2 999 0 nonexistent
## 21977 cellular aug wed 15 11 999 0 nonexistent
## 21978 cellular aug wed 173 2 999 0 nonexistent
## 21981 cellular aug wed 82 1 999 0 nonexistent
## 21991 cellular aug wed 584 1 999 0 nonexistent
## 21992 cellular aug wed 718 1 999 0 nonexistent
## 22010 cellular aug wed 358 3 999 0 nonexistent
## 22012 cellular aug wed 132 2 999 0 nonexistent
## 22015 cellular aug wed 627 2 999 0 nonexistent
## 22025 cellular aug wed 291 1 999 0 nonexistent
## 22028 cellular aug wed 975 2 999 0 nonexistent
## 22034 cellular aug wed 93 3 999 0 nonexistent
## 22038 cellular aug wed 165 3 999 0 nonexistent
## 22054 cellular aug wed 273 6 999 0 nonexistent
## 22058 cellular aug wed 50 3 999 0 nonexistent
## 22065 cellular aug wed 78 8 999 0 nonexistent
## 22069 cellular aug wed 208 2 999 0 nonexistent
## 22074 cellular aug wed 188 5 999 0 nonexistent
## 22076 cellular aug wed 124 3 999 0 nonexistent
## 22088 cellular aug wed 46 9 999 0 nonexistent
## 22089 cellular aug wed 278 4 999 0 nonexistent
## 22090 cellular aug wed 162 3 999 0 nonexistent
## 22094 cellular aug wed 96 3 999 0 nonexistent
## 22100 cellular aug wed 320 4 999 0 nonexistent
## 22110 cellular aug thu 398 1 999 0 nonexistent
## 22121 cellular aug thu 115 1 999 0 nonexistent
## 22130 cellular aug thu 98 1 999 0 nonexistent
## 22133 cellular aug thu 102 1 999 0 nonexistent
## 22135 cellular aug thu 331 1 999 0 nonexistent
## 22139 cellular aug thu 150 1 999 0 nonexistent
## 22143 cellular aug thu 273 1 999 0 nonexistent
## 22146 cellular aug thu 121 1 999 0 nonexistent
## 22157 cellular aug thu 40 1 999 0 nonexistent
## 22159 cellular aug thu 62 1 999 0 nonexistent
## 22166 cellular aug thu 234 2 999 0 nonexistent
## 22167 cellular aug thu 129 1 999 0 nonexistent
## 22169 cellular aug thu 101 1 999 0 nonexistent
## 22185 cellular aug thu 104 1 999 0 nonexistent
## 22188 cellular aug thu 140 1 999 0 nonexistent
## 22193 telephone aug thu 4199 3 999 0 nonexistent
## 22208 cellular aug thu 321 1 999 0 nonexistent
## 22209 cellular aug thu 162 1 999 0 nonexistent
## 22212 cellular aug thu 179 1 999 0 nonexistent
## 22215 cellular aug thu 335 1 999 0 nonexistent
## 22219 cellular aug thu 244 3 999 0 nonexistent
## 22224 cellular aug thu 120 1 999 0 nonexistent
## 22248 cellular aug thu 176 7 999 0 nonexistent
## 22255 cellular aug thu 419 3 999 0 nonexistent
## 22256 cellular aug thu 575 2 999 0 nonexistent
## 22277 cellular aug thu 1026 2 999 0 nonexistent
## 22282 cellular aug thu 140 2 999 0 nonexistent
## 22289 cellular aug thu 381 4 999 0 nonexistent
## 22295 cellular aug thu 144 1 999 0 nonexistent
## 22304 cellular aug thu 362 1 999 0 nonexistent
## 22311 cellular aug thu 68 1 999 0 nonexistent
## 22312 cellular aug thu 81 1 999 0 nonexistent
## 22320 cellular aug thu 360 5 999 0 nonexistent
## 22322 cellular aug thu 224 7 999 0 nonexistent
## 22336 cellular aug thu 239 3 999 0 nonexistent
## 22337 cellular aug thu 159 2 999 0 nonexistent
## 22342 cellular aug thu 140 4 999 0 nonexistent
## 22344 cellular aug thu 184 3 999 0 nonexistent
## 22359 cellular aug thu 300 1 999 0 nonexistent
## 22360 cellular aug thu 160 7 999 0 nonexistent
## 22362 cellular aug thu 162 1 999 0 nonexistent
## 22363 cellular aug thu 379 1 999 0 nonexistent
## 22375 cellular aug thu 202 1 999 0 nonexistent
## 22377 cellular aug fri 351 3 999 0 nonexistent
## 22380 cellular aug fri 82 1 999 0 nonexistent
## 22387 cellular aug fri 118 5 999 0 nonexistent
## 22393 cellular aug fri 343 4 999 0 nonexistent
## 22397 cellular aug fri 122 1 999 0 nonexistent
## 22399 cellular aug fri 41 1 999 0 nonexistent
## 22401 cellular aug fri 586 1 999 0 nonexistent
## 22402 cellular aug fri 1123 2 999 0 nonexistent
## 22406 cellular aug fri 167 1 999 0 nonexistent
## 22409 cellular aug fri 111 1 999 0 nonexistent
## 22433 cellular aug fri 739 1 999 0 nonexistent
## 22435 cellular aug fri 326 3 999 0 nonexistent
## 22437 cellular aug fri 80 1 999 0 nonexistent
## 22443 cellular aug fri 246 1 999 0 nonexistent
## 22447 cellular aug fri 234 1 999 0 nonexistent
## 22452 cellular aug fri 254 1 999 0 nonexistent
## 22466 cellular aug fri 94 2 999 0 nonexistent
## 22468 cellular aug fri 107 1 999 0 nonexistent
## 22472 cellular aug fri 139 1 999 0 nonexistent
## 22481 cellular aug fri 80 1 999 0 nonexistent
## 22483 cellular aug fri 188 3 999 0 nonexistent
## 22495 cellular aug fri 257 1 999 0 nonexistent
## 22500 cellular aug fri 358 2 999 0 nonexistent
## 22503 cellular aug fri 268 1 999 0 nonexistent
## 22507 cellular aug fri 73 1 999 0 nonexistent
## 22515 cellular aug fri 73 1 999 0 nonexistent
## 22537 cellular aug fri 565 1 999 0 nonexistent
## 22549 cellular aug fri 112 2 999 0 nonexistent
## 22550 cellular aug fri 742 2 999 0 nonexistent
## 22551 cellular aug fri 200 2 999 0 nonexistent
## 22560 cellular aug fri 48 2 999 0 nonexistent
## 22568 cellular aug fri 142 4 999 0 nonexistent
## 22577 cellular aug fri 247 2 999 0 nonexistent
## 22586 cellular aug fri 251 2 999 0 nonexistent
## 22599 cellular aug fri 152 1 999 0 nonexistent
## 22611 cellular aug fri 155 2 999 0 nonexistent
## 22614 cellular aug fri 219 2 999 0 nonexistent
## 22629 cellular aug fri 277 3 999 0 nonexistent
## 22630 cellular aug fri 175 1 999 0 nonexistent
## 22631 cellular aug fri 309 3 999 0 nonexistent
## 22632 cellular aug fri 97 3 999 0 nonexistent
## 22640 cellular aug fri 154 5 999 0 nonexistent
## 22642 cellular aug fri 203 1 999 0 nonexistent
## 22644 cellular aug fri 105 1 999 0 nonexistent
## 22645 cellular aug fri 157 1 999 0 nonexistent
## 22669 cellular aug fri 153 4 999 0 nonexistent
## 22674 cellular aug fri 309 5 999 0 nonexistent
## 22684 cellular aug fri 547 3 999 0 nonexistent
## 22686 cellular aug fri 155 2 999 0 nonexistent
## 22690 cellular aug fri 195 1 999 0 nonexistent
## 22691 cellular aug fri 177 1 999 0 nonexistent
## 22696 cellular aug fri 82 5 999 0 nonexistent
## 22699 cellular aug fri 109 1 999 0 nonexistent
## 22706 cellular aug fri 1366 1 999 0 nonexistent
## 22712 cellular aug fri 155 5 999 0 nonexistent
## 22718 cellular aug fri 138 1 999 0 nonexistent
## 22724 cellular aug mon 139 3 999 0 nonexistent
## 22725 cellular aug mon 87 1 999 0 nonexistent
## 22729 cellular aug mon 116 7 999 0 nonexistent
## 22739 cellular aug mon 91 5 999 0 nonexistent
## 22743 cellular aug mon 57 2 999 0 nonexistent
## 22745 cellular aug mon 88 2 999 0 nonexistent
## 22761 cellular aug mon 145 4 999 0 nonexistent
## 22762 cellular aug mon 99 7 999 0 nonexistent
## 22764 cellular aug mon 337 4 999 0 nonexistent
## 22766 cellular aug mon 87 4 999 0 nonexistent
## 22768 cellular aug mon 463 2 999 0 nonexistent
## 22770 cellular aug mon 103 3 999 0 nonexistent
## 22772 cellular aug mon 74 2 999 0 nonexistent
## 22774 cellular aug mon 75 2 999 0 nonexistent
## 22775 cellular aug mon 79 3 999 0 nonexistent
## 22776 cellular aug mon 80 2 999 0 nonexistent
## 22781 cellular aug mon 129 2 999 0 nonexistent
## 22786 cellular aug mon 129 2 999 0 nonexistent
## 22787 cellular aug mon 932 2 999 0 nonexistent
## 22794 cellular aug mon 125 2 999 0 nonexistent
## 22813 cellular aug mon 40 9 999 0 nonexistent
## 22816 cellular aug mon 122 2 999 0 nonexistent
## 22817 cellular aug mon 59 3 999 0 nonexistent
## 22822 cellular aug mon 508 3 999 0 nonexistent
## 22837 cellular aug mon 88 2 999 0 nonexistent
## 22838 cellular aug mon 90 2 999 0 nonexistent
## 22840 cellular aug mon 159 1 999 0 nonexistent
## 22842 cellular aug mon 177 2 999 0 nonexistent
## 22855 cellular aug mon 140 5 999 0 nonexistent
## 22857 cellular aug mon 386 2 999 0 nonexistent
## 22863 cellular aug mon 228 2 999 0 nonexistent
## 22866 cellular aug mon 57 2 999 0 nonexistent
## 22872 cellular aug mon 9 6 999 0 nonexistent
## 22874 cellular aug mon 11 9 999 0 nonexistent
## 22879 cellular aug mon 68 3 999 0 nonexistent
## 22883 cellular aug mon 36 4 999 0 nonexistent
## 22886 cellular aug mon 734 2 999 0 nonexistent
## 22892 cellular aug mon 69 3 999 0 nonexistent
## 22899 cellular aug mon 454 2 999 0 nonexistent
## 22901 cellular aug mon 64 5 999 0 nonexistent
## 22903 cellular aug mon 203 6 999 0 nonexistent
## 22907 cellular aug mon 433 3 999 0 nonexistent
## 22912 cellular aug mon 53 3 999 0 nonexistent
## 22926 cellular aug mon 318 3 999 0 nonexistent
## 22928 cellular aug mon 365 4 999 0 nonexistent
## 22929 cellular aug mon 89 2 999 0 nonexistent
## 22935 cellular aug mon 93 4 999 0 nonexistent
## 22939 cellular aug mon 141 3 999 0 nonexistent
## 22942 cellular aug mon 106 6 999 0 nonexistent
## 22947 cellular aug mon 313 4 999 0 nonexistent
## 22948 cellular aug mon 348 2 999 0 nonexistent
## 22949 cellular aug mon 106 3 999 0 nonexistent
## 22957 cellular aug mon 124 4 999 0 nonexistent
## 22958 cellular aug mon 378 3 999 0 nonexistent
## 22963 cellular aug mon 56 4 999 0 nonexistent
## 22973 cellular aug mon 127 4 999 0 nonexistent
## 22984 cellular aug mon 99 5 999 0 nonexistent
## 22994 cellular aug mon 98 3 999 0 nonexistent
## 22997 cellular aug mon 56 5 999 0 nonexistent
## 23003 cellular aug tue 69 2 999 0 nonexistent
## 23006 cellular aug tue 179 11 999 0 nonexistent
## 23008 cellular aug tue 106 4 999 0 nonexistent
## 23011 cellular aug tue 69 3 999 0 nonexistent
## 23024 cellular aug tue 427 12 999 0 nonexistent
## 23025 cellular aug tue 77 6 999 0 nonexistent
## 23027 cellular aug tue 49 9 999 0 nonexistent
## 23035 cellular aug tue 42 4 999 0 nonexistent
## 23036 cellular aug tue 23 9 999 0 nonexistent
## 23047 cellular aug tue 64 1 999 0 nonexistent
## 23049 cellular aug tue 102 1 999 0 nonexistent
## 23050 cellular aug tue 87 3 999 0 nonexistent
## 23054 cellular aug tue 92 1 999 0 nonexistent
## 23060 cellular aug tue 217 1 999 0 nonexistent
## 23064 cellular aug tue 634 1 999 0 nonexistent
## 23069 cellular aug tue 17 13 999 0 nonexistent
## 23071 cellular aug tue 210 3 999 0 nonexistent
## 23077 cellular aug tue 14 8 999 0 nonexistent
## 23082 cellular aug tue 181 1 999 0 nonexistent
## 23084 cellular aug tue 28 13 999 0 nonexistent
## 23088 cellular aug tue 191 1 999 0 nonexistent
## 23090 cellular aug tue 18 11 999 0 nonexistent
## 23091 cellular aug tue 541 1 999 0 nonexistent
## 23098 cellular aug tue 142 1 999 0 nonexistent
## 23103 cellular aug tue 358 1 999 0 nonexistent
## 23105 cellular aug tue 312 1 999 0 nonexistent
## 23113 cellular aug tue 24 12 999 0 nonexistent
## 23120 cellular aug tue 130 6 999 0 nonexistent
## 23123 cellular aug tue 99 1 999 0 nonexistent
## 23131 cellular aug tue 260 2 999 0 nonexistent
## 23135 cellular aug tue 264 1 999 0 nonexistent
## 23149 cellular aug tue 211 6 999 0 nonexistent
## 23160 cellular aug tue 12 12 999 0 nonexistent
## 23168 cellular aug tue 300 2 999 0 nonexistent
## 23172 cellular aug tue 66 2 999 0 nonexistent
## 23174 cellular aug tue 36 19 999 0 nonexistent
## 23179 cellular aug tue 162 10 999 0 nonexistent
## 23181 cellular aug tue 271 3 999 0 nonexistent
## 23183 cellular aug tue 10 13 999 0 nonexistent
## 23185 cellular aug tue 12 9 999 0 nonexistent
## 23215 cellular aug tue 155 3 999 0 nonexistent
## 23221 cellular aug tue 57 6 999 0 nonexistent
## 23223 cellular aug tue 89 2 999 0 nonexistent
## 23230 cellular aug tue 84 5 999 0 nonexistent
## 23231 cellular aug tue 369 4 999 0 nonexistent
## 23234 cellular aug tue 58 5 999 0 nonexistent
## 23235 cellular aug tue 35 6 999 0 nonexistent
## 23241 cellular aug tue 240 4 999 0 nonexistent
## 23247 cellular aug tue 272 7 999 0 nonexistent
## 23251 cellular aug wed 157 2 999 0 nonexistent
## 23258 cellular aug wed 581 4 999 0 nonexistent
## 23263 cellular aug wed 154 2 999 0 nonexistent
## 23264 cellular aug wed 130 6 999 0 nonexistent
## 23268 cellular aug wed 1033 3 999 0 nonexistent
## 23269 cellular aug wed 503 8 999 0 nonexistent
## 23271 cellular aug wed 87 2 999 0 nonexistent
## 23276 cellular aug wed 219 3 999 0 nonexistent
## 23280 cellular aug wed 155 11 999 0 nonexistent
## 23285 telephone aug wed 39 5 999 0 nonexistent
## 23288 cellular aug wed 153 2 999 0 nonexistent
## 23294 cellular aug wed 147 3 999 0 nonexistent
## 23297 cellular aug wed 223 8 999 0 nonexistent
## 23304 cellular aug wed 114 1 999 0 nonexistent
## 23306 cellular aug wed 512 5 999 0 nonexistent
## 23309 cellular aug wed 111 1 999 0 nonexistent
## 23310 cellular aug wed 80 3 999 0 nonexistent
## 23312 cellular aug wed 69 6 999 0 nonexistent
## 23313 cellular aug wed 78 4 999 0 nonexistent
## 23325 cellular aug wed 121 1 999 0 nonexistent
## 23336 cellular aug wed 79 6 999 0 nonexistent
## 23338 cellular aug wed 119 8 999 0 nonexistent
## 23339 cellular aug wed 15 7 999 0 nonexistent
## 23359 cellular aug wed 14 10 999 0 nonexistent
## 23363 cellular aug wed 15 10 999 0 nonexistent
## 23365 cellular aug wed 114 6 999 0 nonexistent
## 23373 cellular aug wed 125 3 999 0 nonexistent
## 23374 cellular aug wed 125 11 999 0 nonexistent
## 23376 cellular aug wed 212 9 999 0 nonexistent
## 23381 cellular aug wed 122 4 999 0 nonexistent
## 23383 cellular aug wed 60 3 999 0 nonexistent
## 23385 cellular aug wed 561 2 999 0 nonexistent
## 23390 cellular aug wed 107 4 999 0 nonexistent
## 23394 cellular aug wed 168 2 999 0 nonexistent
## 23400 cellular aug wed 36 6 999 0 nonexistent
## 23411 cellular aug wed 19 17 999 0 nonexistent
## 23417 cellular aug wed 202 3 999 0 nonexistent
## 23419 cellular aug wed 35 10 999 0 nonexistent
## 23421 cellular aug wed 59 5 999 0 nonexistent
## 23449 cellular aug wed 81 2 999 0 nonexistent
## 23451 cellular aug wed 154 7 999 0 nonexistent
## 23465 cellular aug wed 62 4 999 0 nonexistent
## 23474 cellular aug wed 118 2 999 0 nonexistent
## 23479 cellular aug thu 81 2 999 0 nonexistent
## emp.var.rate cons.price.idx cons.conf.idx euribor3m nr.employed y
## 14 1.1 93.994 -36.4 4.857 5191.0 no
## 15 1.1 93.994 -36.4 4.857 5191.0 no
## 23 1.1 93.994 -36.4 4.857 5191.0 no
## 25 1.1 93.994 -36.4 4.857 5191.0 no
## 44 1.1 93.994 -36.4 4.857 5191.0 no
## 61 1.1 93.994 -36.4 4.857 5191.0 no
## 62 1.1 93.994 -36.4 4.857 5191.0 no
## 68 1.1 93.994 -36.4 4.857 5191.0 no
## 72 1.1 93.994 -36.4 4.857 5191.0 no
## 76 1.1 93.994 -36.4 4.857 5191.0 yes
## 81 1.1 93.994 -36.4 4.857 5191.0 no
## 83 1.1 93.994 -36.4 4.857 5191.0 no
## 84 1.1 93.994 -36.4 4.857 5191.0 yes
## 85 1.1 93.994 -36.4 4.857 5191.0 no
## 95 1.1 93.994 -36.4 4.857 5191.0 no
## 104 1.1 93.994 -36.4 4.857 5191.0 no
## 108 1.1 93.994 -36.4 4.857 5191.0 no
## 112 1.1 93.994 -36.4 4.857 5191.0 no
## 113 1.1 93.994 -36.4 4.857 5191.0 no
## 119 1.1 93.994 -36.4 4.857 5191.0 no
## 124 1.1 93.994 -36.4 4.857 5191.0 no
## 140 1.1 93.994 -36.4 4.857 5191.0 yes
## 143 1.1 93.994 -36.4 4.857 5191.0 no
## 149 1.1 93.994 -36.4 4.857 5191.0 no
## 153 1.1 93.994 -36.4 4.857 5191.0 no
## 156 1.1 93.994 -36.4 4.857 5191.0 no
## 163 1.1 93.994 -36.4 4.857 5191.0 no
## 164 1.1 93.994 -36.4 4.857 5191.0 no
## 169 1.1 93.994 -36.4 4.857 5191.0 no
## 170 1.1 93.994 -36.4 4.857 5191.0 no
## 175 1.1 93.994 -36.4 4.857 5191.0 no
## 181 1.1 93.994 -36.4 4.857 5191.0 no
## 189 1.1 93.994 -36.4 4.857 5191.0 no
## 202 1.1 93.994 -36.4 4.857 5191.0 no
## 204 1.1 93.994 -36.4 4.857 5191.0 no
## 207 1.1 93.994 -36.4 4.857 5191.0 no
## 211 1.1 93.994 -36.4 4.857 5191.0 no
## 213 1.1 93.994 -36.4 4.857 5191.0 no
## 214 1.1 93.994 -36.4 4.857 5191.0 no
## 217 1.1 93.994 -36.4 4.857 5191.0 no
## 218 1.1 93.994 -36.4 4.857 5191.0 no
## 223 1.1 93.994 -36.4 4.857 5191.0 no
## 227 1.1 93.994 -36.4 4.857 5191.0 no
## 229 1.1 93.994 -36.4 4.857 5191.0 no
## 230 1.1 93.994 -36.4 4.857 5191.0 no
## 240 1.1 93.994 -36.4 4.857 5191.0 no
## 245 1.1 93.994 -36.4 4.857 5191.0 no
## 249 1.1 93.994 -36.4 4.857 5191.0 no
## 251 1.1 93.994 -36.4 4.857 5191.0 no
## 267 1.1 93.994 -36.4 4.857 5191.0 no
## 269 1.1 93.994 -36.4 4.857 5191.0 no
## 287 1.1 93.994 -36.4 4.857 5191.0 yes
## 290 1.1 93.994 -36.4 4.857 5191.0 no
## 291 1.1 93.994 -36.4 4.857 5191.0 no
## 298 1.1 93.994 -36.4 4.857 5191.0 no
## 304 1.1 93.994 -36.4 4.857 5191.0 no
## 305 1.1 93.994 -36.4 4.857 5191.0 no
## 306 1.1 93.994 -36.4 4.857 5191.0 no
## 319 1.1 93.994 -36.4 4.857 5191.0 no
## 332 1.1 93.994 -36.4 4.857 5191.0 no
## 334 1.1 93.994 -36.4 4.857 5191.0 no
## 340 1.1 93.994 -36.4 4.857 5191.0 no
## 344 1.1 93.994 -36.4 4.857 5191.0 no
## 347 1.1 93.994 -36.4 4.857 5191.0 no
## 362 1.1 93.994 -36.4 4.857 5191.0 no
## 364 1.1 93.994 -36.4 4.857 5191.0 no
## 368 1.1 93.994 -36.4 4.857 5191.0 no
## 370 1.1 93.994 -36.4 4.857 5191.0 no
## 372 1.1 93.994 -36.4 4.857 5191.0 no
## 379 1.1 93.994 -36.4 4.857 5191.0 no
## 388 1.1 93.994 -36.4 4.857 5191.0 no
## 389 1.1 93.994 -36.4 4.857 5191.0 yes
## 407 1.1 93.994 -36.4 4.857 5191.0 no
## 418 1.1 93.994 -36.4 4.857 5191.0 no
## 420 1.1 93.994 -36.4 4.857 5191.0 no
## 425 1.1 93.994 -36.4 4.857 5191.0 no
## 427 1.1 93.994 -36.4 4.857 5191.0 no
## 429 1.1 93.994 -36.4 4.857 5191.0 no
## 435 1.1 93.994 -36.4 4.857 5191.0 no
## 446 1.1 93.994 -36.4 4.857 5191.0 no
## 449 1.1 93.994 -36.4 4.857 5191.0 no
## 457 1.1 93.994 -36.4 4.857 5191.0 no
## 463 1.1 93.994 -36.4 4.857 5191.0 no
## 467 1.1 93.994 -36.4 4.857 5191.0 no
## 468 1.1 93.994 -36.4 4.857 5191.0 no
## 471 1.1 93.994 -36.4 4.857 5191.0 no
## 477 1.1 93.994 -36.4 4.857 5191.0 no
## 478 1.1 93.994 -36.4 4.857 5191.0 no
## 483 1.1 93.994 -36.4 4.857 5191.0 no
## 489 1.1 93.994 -36.4 4.857 5191.0 no
## 490 1.1 93.994 -36.4 4.857 5191.0 no
## 493 1.1 93.994 -36.4 4.857 5191.0 no
## 500 1.1 93.994 -36.4 4.857 5191.0 no
## 507 1.1 93.994 -36.4 4.857 5191.0 no
## 510 1.1 93.994 -36.4 4.857 5191.0 no
## 511 1.1 93.994 -36.4 4.857 5191.0 no
## 512 1.1 93.994 -36.4 4.857 5191.0 no
## 517 1.1 93.994 -36.4 4.857 5191.0 no
## 527 1.1 93.994 -36.4 4.857 5191.0 no
## 530 1.1 93.994 -36.4 4.857 5191.0 no
## 531 1.1 93.994 -36.4 4.857 5191.0 no
## 543 1.1 93.994 -36.4 4.857 5191.0 no
## 545 1.1 93.994 -36.4 4.857 5191.0 no
## 549 1.1 93.994 -36.4 4.857 5191.0 no
## 554 1.1 93.994 -36.4 4.857 5191.0 no
## 560 1.1 93.994 -36.4 4.857 5191.0 no
## 564 1.1 93.994 -36.4 4.857 5191.0 no
## 567 1.1 93.994 -36.4 4.857 5191.0 no
## 575 1.1 93.994 -36.4 4.857 5191.0 no
## 579 1.1 93.994 -36.4 4.857 5191.0 no
## 582 1.1 93.994 -36.4 4.857 5191.0 no
## 591 1.1 93.994 -36.4 4.857 5191.0 no
## 600 1.1 93.994 -36.4 4.857 5191.0 no
## 603 1.1 93.994 -36.4 4.857 5191.0 no
## 605 1.1 93.994 -36.4 4.857 5191.0 no
## 608 1.1 93.994 -36.4 4.857 5191.0 no
## 618 1.1 93.994 -36.4 4.857 5191.0 no
## 633 1.1 93.994 -36.4 4.857 5191.0 no
## 634 1.1 93.994 -36.4 4.857 5191.0 no
## 642 1.1 93.994 -36.4 4.857 5191.0 no
## 644 1.1 93.994 -36.4 4.857 5191.0 no
## 645 1.1 93.994 -36.4 4.857 5191.0 no
## 646 1.1 93.994 -36.4 4.857 5191.0 no
## 647 1.1 93.994 -36.4 4.857 5191.0 no
## 654 1.1 93.994 -36.4 4.857 5191.0 no
## 658 1.1 93.994 -36.4 4.857 5191.0 no
## 663 1.1 93.994 -36.4 4.857 5191.0 no
## 675 1.1 93.994 -36.4 4.857 5191.0 no
## 679 1.1 93.994 -36.4 4.857 5191.0 no
## 690 1.1 93.994 -36.4 4.857 5191.0 no
## 691 1.1 93.994 -36.4 4.857 5191.0 no
## 692 1.1 93.994 -36.4 4.857 5191.0 no
## 698 1.1 93.994 -36.4 4.857 5191.0 no
## 701 1.1 93.994 -36.4 4.857 5191.0 no
## 702 1.1 93.994 -36.4 4.857 5191.0 no
## 706 1.1 93.994 -36.4 4.857 5191.0 no
## 709 1.1 93.994 -36.4 4.857 5191.0 no
## 711 1.1 93.994 -36.4 4.857 5191.0 no
## 714 1.1 93.994 -36.4 4.857 5191.0 no
## 721 1.1 93.994 -36.4 4.857 5191.0 no
## 727 1.1 93.994 -36.4 4.857 5191.0 no
## 728 1.1 93.994 -36.4 4.857 5191.0 no
## 730 1.1 93.994 -36.4 4.857 5191.0 no
## 734 1.1 93.994 -36.4 4.857 5191.0 no
## 735 1.1 93.994 -36.4 4.857 5191.0 no
## 739 1.1 93.994 -36.4 4.857 5191.0 no
## 741 1.1 93.994 -36.4 4.857 5191.0 no
## 744 1.1 93.994 -36.4 4.857 5191.0 no
## 747 1.1 93.994 -36.4 4.857 5191.0 no
## 750 1.1 93.994 -36.4 4.857 5191.0 no
## 752 1.1 93.994 -36.4 4.857 5191.0 no
## 753 1.1 93.994 -36.4 4.857 5191.0 no
## 766 1.1 93.994 -36.4 4.856 5191.0 no
## 769 1.1 93.994 -36.4 4.856 5191.0 no
## 772 1.1 93.994 -36.4 4.856 5191.0 no
## 773 1.1 93.994 -36.4 4.856 5191.0 no
## 777 1.1 93.994 -36.4 4.856 5191.0 no
## 781 1.1 93.994 -36.4 4.856 5191.0 no
## 782 1.1 93.994 -36.4 4.856 5191.0 no
## 789 1.1 93.994 -36.4 4.856 5191.0 no
## 790 1.1 93.994 -36.4 4.856 5191.0 no
## 794 1.1 93.994 -36.4 4.856 5191.0 no
## 795 1.1 93.994 -36.4 4.856 5191.0 no
## 813 1.1 93.994 -36.4 4.856 5191.0 no
## 836 1.1 93.994 -36.4 4.856 5191.0 no
## 843 1.1 93.994 -36.4 4.856 5191.0 no
## 845 1.1 93.994 -36.4 4.856 5191.0 no
## 851 1.1 93.994 -36.4 4.856 5191.0 no
## 854 1.1 93.994 -36.4 4.856 5191.0 no
## 857 1.1 93.994 -36.4 4.856 5191.0 yes
## 873 1.1 93.994 -36.4 4.856 5191.0 no
## 877 1.1 93.994 -36.4 4.856 5191.0 yes
## 888 1.1 93.994 -36.4 4.856 5191.0 no
## 892 1.1 93.994 -36.4 4.856 5191.0 no
## 896 1.1 93.994 -36.4 4.856 5191.0 no
## 897 1.1 93.994 -36.4 4.856 5191.0 no
## 900 1.1 93.994 -36.4 4.856 5191.0 no
## 904 1.1 93.994 -36.4 4.856 5191.0 no
## 930 1.1 93.994 -36.4 4.856 5191.0 no
## 962 1.1 93.994 -36.4 4.856 5191.0 no
## 963 1.1 93.994 -36.4 4.856 5191.0 no
## 972 1.1 93.994 -36.4 4.856 5191.0 no
## 981 1.1 93.994 -36.4 4.856 5191.0 no
## 982 1.1 93.994 -36.4 4.856 5191.0 no
## 993 1.1 93.994 -36.4 4.856 5191.0 no
## 995 1.1 93.994 -36.4 4.856 5191.0 no
## 996 1.1 93.994 -36.4 4.856 5191.0 no
## 999 1.1 93.994 -36.4 4.856 5191.0 no
## 1009 1.1 93.994 -36.4 4.856 5191.0 no
## 1011 1.1 93.994 -36.4 4.856 5191.0 no
## 1013 1.1 93.994 -36.4 4.856 5191.0 no
## 1015 1.1 93.994 -36.4 4.856 5191.0 no
## 1017 1.1 93.994 -36.4 4.856 5191.0 no
## 1018 1.1 93.994 -36.4 4.856 5191.0 no
## 1019 1.1 93.994 -36.4 4.856 5191.0 no
## 1020 1.1 93.994 -36.4 4.856 5191.0 no
## 1026 1.1 93.994 -36.4 4.856 5191.0 no
## 1028 1.1 93.994 -36.4 4.856 5191.0 no
## 1039 1.1 93.994 -36.4 4.856 5191.0 no
## 1047 1.1 93.994 -36.4 4.856 5191.0 no
## 1053 1.1 93.994 -36.4 4.856 5191.0 no
## 1054 1.1 93.994 -36.4 4.856 5191.0 no
## 1060 1.1 93.994 -36.4 4.856 5191.0 no
## 1073 1.1 93.994 -36.4 4.856 5191.0 no
## 1076 1.1 93.994 -36.4 4.856 5191.0 no
## 1078 1.1 93.994 -36.4 4.856 5191.0 no
## 1083 1.1 93.994 -36.4 4.856 5191.0 no
## 1091 1.1 93.994 -36.4 4.856 5191.0 no
## 1093 1.1 93.994 -36.4 4.856 5191.0 no
## 1094 1.1 93.994 -36.4 4.856 5191.0 no
## 1096 1.1 93.994 -36.4 4.856 5191.0 no
## 1098 1.1 93.994 -36.4 4.856 5191.0 no
## 1100 1.1 93.994 -36.4 4.856 5191.0 no
## 1101 1.1 93.994 -36.4 4.856 5191.0 no
## 1105 1.1 93.994 -36.4 4.856 5191.0 no
## 1117 1.1 93.994 -36.4 4.856 5191.0 no
## 1141 1.1 93.994 -36.4 4.856 5191.0 no
## 1145 1.1 93.994 -36.4 4.856 5191.0 no
## 1146 1.1 93.994 -36.4 4.856 5191.0 no
## 1148 1.1 93.994 -36.4 4.855 5191.0 no
## 1149 1.1 93.994 -36.4 4.855 5191.0 no
## 1150 1.1 93.994 -36.4 4.855 5191.0 no
## 1157 1.1 93.994 -36.4 4.855 5191.0 no
## 1159 1.1 93.994 -36.4 4.855 5191.0 no
## 1164 1.1 93.994 -36.4 4.855 5191.0 no
## 1184 1.1 93.994 -36.4 4.855 5191.0 no
## 1190 1.1 93.994 -36.4 4.855 5191.0 yes
## 1197 1.1 93.994 -36.4 4.855 5191.0 no
## 1199 1.1 93.994 -36.4 4.855 5191.0 no
## 1206 1.1 93.994 -36.4 4.855 5191.0 no
## 1207 1.1 93.994 -36.4 4.855 5191.0 no
## 1213 1.1 93.994 -36.4 4.855 5191.0 no
## 1215 1.1 93.994 -36.4 4.855 5191.0 no
## 1218 1.1 93.994 -36.4 4.855 5191.0 no
## 1221 1.1 93.994 -36.4 4.855 5191.0 no
## 1239 1.1 93.994 -36.4 4.855 5191.0 no
## 1244 1.1 93.994 -36.4 4.855 5191.0 no
## 1249 1.1 93.994 -36.4 4.855 5191.0 no
## 1250 1.1 93.994 -36.4 4.855 5191.0 no
## 1258 1.1 93.994 -36.4 4.855 5191.0 no
## 1261 1.1 93.994 -36.4 4.855 5191.0 no
## 1264 1.1 93.994 -36.4 4.855 5191.0 no
## 1267 1.1 93.994 -36.4 4.855 5191.0 no
## 1271 1.1 93.994 -36.4 4.855 5191.0 no
## 1276 1.1 93.994 -36.4 4.855 5191.0 no
## 1282 1.1 93.994 -36.4 4.855 5191.0 no
## 1283 1.1 93.994 -36.4 4.855 5191.0 no
## 1287 1.1 93.994 -36.4 4.855 5191.0 no
## 1288 1.1 93.994 -36.4 4.855 5191.0 no
## 1293 1.1 93.994 -36.4 4.855 5191.0 no
## 1312 1.1 93.994 -36.4 4.855 5191.0 no
## 1316 1.1 93.994 -36.4 4.855 5191.0 no
## 1317 1.1 93.994 -36.4 4.855 5191.0 no
## 1319 1.1 93.994 -36.4 4.855 5191.0 no
## 1327 1.1 93.994 -36.4 4.855 5191.0 no
## 1331 1.1 93.994 -36.4 4.855 5191.0 no
## 1332 1.1 93.994 -36.4 4.855 5191.0 no
## 1346 1.1 93.994 -36.4 4.855 5191.0 no
## 1347 1.1 93.994 -36.4 4.855 5191.0 no
## 1353 1.1 93.994 -36.4 4.855 5191.0 no
## 1366 1.1 93.994 -36.4 4.855 5191.0 no
## 1367 1.1 93.994 -36.4 4.855 5191.0 no
## 1368 1.1 93.994 -36.4 4.855 5191.0 no
## 1373 1.1 93.994 -36.4 4.855 5191.0 no
## 1375 1.1 93.994 -36.4 4.855 5191.0 no
## 1377 1.1 93.994 -36.4 4.855 5191.0 no
## 1379 1.1 93.994 -36.4 4.855 5191.0 no
## 1381 1.1 93.994 -36.4 4.855 5191.0 no
## 1383 1.1 93.994 -36.4 4.855 5191.0 no
## 1387 1.1 93.994 -36.4 4.855 5191.0 no
## 1388 1.1 93.994 -36.4 4.855 5191.0 no
## 1395 1.1 93.994 -36.4 4.855 5191.0 no
## 1396 1.1 93.994 -36.4 4.855 5191.0 no
## 1399 1.1 93.994 -36.4 4.855 5191.0 no
## 1410 1.1 93.994 -36.4 4.855 5191.0 no
## 1412 1.1 93.994 -36.4 4.855 5191.0 no
## 1414 1.1 93.994 -36.4 4.855 5191.0 no
## 1415 1.1 93.994 -36.4 4.855 5191.0 no
## 1417 1.1 93.994 -36.4 4.855 5191.0 no
## 1421 1.1 93.994 -36.4 4.855 5191.0 no
## 1424 1.1 93.994 -36.4 4.855 5191.0 no
## 1427 1.1 93.994 -36.4 4.855 5191.0 no
## 1428 1.1 93.994 -36.4 4.855 5191.0 no
## 1429 1.1 93.994 -36.4 4.855 5191.0 no
## 1430 1.1 93.994 -36.4 4.855 5191.0 no
## 1431 1.1 93.994 -36.4 4.855 5191.0 no
## 1432 1.1 93.994 -36.4 4.855 5191.0 no
## 1433 1.1 93.994 -36.4 4.855 5191.0 no
## 1437 1.1 93.994 -36.4 4.855 5191.0 no
## 1447 1.1 93.994 -36.4 4.855 5191.0 no
## 1462 1.1 93.994 -36.4 4.855 5191.0 no
## 1463 1.1 93.994 -36.4 4.855 5191.0 no
## 1476 1.1 93.994 -36.4 4.855 5191.0 no
## 1479 1.1 93.994 -36.4 4.855 5191.0 no
## 1483 1.1 93.994 -36.4 4.855 5191.0 no
## 1488 1.1 93.994 -36.4 4.855 5191.0 no
## 1490 1.1 93.994 -36.4 4.855 5191.0 no
## 1494 1.1 93.994 -36.4 4.855 5191.0 no
## 1498 1.1 93.994 -36.4 4.855 5191.0 no
## 1513 1.1 93.994 -36.4 4.855 5191.0 no
## 1515 1.1 93.994 -36.4 4.855 5191.0 no
## 1516 1.1 93.994 -36.4 4.855 5191.0 no
## 1517 1.1 93.994 -36.4 4.855 5191.0 no
## 1521 1.1 93.994 -36.4 4.855 5191.0 no
## 1524 1.1 93.994 -36.4 4.855 5191.0 no
## 1525 1.1 93.994 -36.4 4.855 5191.0 no
## 1533 1.1 93.994 -36.4 4.855 5191.0 no
## 1535 1.1 93.994 -36.4 4.855 5191.0 no
## 1547 1.1 93.994 -36.4 4.855 5191.0 no
## 1551 1.1 93.994 -36.4 4.855 5191.0 no
## 1554 1.1 93.994 -36.4 4.855 5191.0 no
## 1555 1.1 93.994 -36.4 4.855 5191.0 no
## 1558 1.1 93.994 -36.4 4.855 5191.0 no
## 1561 1.1 93.994 -36.4 4.855 5191.0 no
## 1566 1.1 93.994 -36.4 4.855 5191.0 no
## 1568 1.1 93.994 -36.4 4.855 5191.0 no
## 1569 1.1 93.994 -36.4 4.855 5191.0 no
## 1572 1.1 93.994 -36.4 4.855 5191.0 no
## 1573 1.1 93.994 -36.4 4.855 5191.0 no
## 1580 1.1 93.994 -36.4 4.855 5191.0 no
## 1585 1.1 93.994 -36.4 4.855 5191.0 no
## 1589 1.1 93.994 -36.4 4.855 5191.0 no
## 1592 1.1 93.994 -36.4 4.855 5191.0 no
## 1594 1.1 93.994 -36.4 4.855 5191.0 no
## 1601 1.1 93.994 -36.4 4.855 5191.0 no
## 1609 1.1 93.994 -36.4 4.855 5191.0 yes
## 1614 1.1 93.994 -36.4 4.855 5191.0 yes
## 1623 1.1 93.994 -36.4 4.855 5191.0 no
## 1633 1.1 93.994 -36.4 4.855 5191.0 yes
## 1634 1.1 93.994 -36.4 4.855 5191.0 no
## 1641 1.1 93.994 -36.4 4.855 5191.0 no
## 1643 1.1 93.994 -36.4 4.855 5191.0 no
## 1653 1.1 93.994 -36.4 4.855 5191.0 no
## 1656 1.1 93.994 -36.4 4.855 5191.0 yes
## 1664 1.1 93.994 -36.4 4.855 5191.0 no
## 1686 1.1 93.994 -36.4 4.855 5191.0 no
## 1688 1.1 93.994 -36.4 4.855 5191.0 no
## 1689 1.1 93.994 -36.4 4.855 5191.0 no
## 1704 1.1 93.994 -36.4 4.855 5191.0 no
## 1722 1.1 93.994 -36.4 4.855 5191.0 no
## 1723 1.1 93.994 -36.4 4.855 5191.0 no
## 1733 1.1 93.994 -36.4 4.855 5191.0 no
## 1736 1.1 93.994 -36.4 4.855 5191.0 no
## 1742 1.1 93.994 -36.4 4.855 5191.0 no
## 1749 1.1 93.994 -36.4 4.855 5191.0 no
## 1757 1.1 93.994 -36.4 4.855 5191.0 no
## 1758 1.1 93.994 -36.4 4.855 5191.0 no
## 1762 1.1 93.994 -36.4 4.855 5191.0 no
## 1765 1.1 93.994 -36.4 4.855 5191.0 no
## 1766 1.1 93.994 -36.4 4.855 5191.0 no
## 1767 1.1 93.994 -36.4 4.855 5191.0 no
## 1771 1.1 93.994 -36.4 4.855 5191.0 no
## 1773 1.1 93.994 -36.4 4.855 5191.0 no
## 1778 1.1 93.994 -36.4 4.855 5191.0 no
## 1782 1.1 93.994 -36.4 4.855 5191.0 no
## 1787 1.1 93.994 -36.4 4.855 5191.0 no
## 1790 1.1 93.994 -36.4 4.855 5191.0 no
## 1792 1.1 93.994 -36.4 4.855 5191.0 yes
## 1797 1.1 93.994 -36.4 4.855 5191.0 no
## 1800 1.1 93.994 -36.4 4.855 5191.0 no
## 1801 1.1 93.994 -36.4 4.855 5191.0 no
## 1803 1.1 93.994 -36.4 4.855 5191.0 no
## 1804 1.1 93.994 -36.4 4.855 5191.0 no
## 1807 1.1 93.994 -36.4 4.855 5191.0 no
## 1809 1.1 93.994 -36.4 4.855 5191.0 no
## 1812 1.1 93.994 -36.4 4.855 5191.0 no
## 1816 1.1 93.994 -36.4 4.855 5191.0 no
## 1817 1.1 93.994 -36.4 4.855 5191.0 no
## 1832 1.1 93.994 -36.4 4.855 5191.0 no
## 1836 1.1 93.994 -36.4 4.855 5191.0 no
## 1843 1.1 93.994 -36.4 4.855 5191.0 no
## 1848 1.1 93.994 -36.4 4.855 5191.0 no
## 1849 1.1 93.994 -36.4 4.855 5191.0 no
## 1852 1.1 93.994 -36.4 4.855 5191.0 no
## 1873 1.1 93.994 -36.4 4.855 5191.0 no
## 1891 1.1 93.994 -36.4 4.855 5191.0 no
## 1896 1.1 93.994 -36.4 4.855 5191.0 no
## 1898 1.1 93.994 -36.4 4.855 5191.0 no
## 1899 1.1 93.994 -36.4 4.855 5191.0 no
## 1900 1.1 93.994 -36.4 4.855 5191.0 no
## 1901 1.1 93.994 -36.4 4.855 5191.0 no
## 1909 1.1 93.994 -36.4 4.855 5191.0 no
## 1913 1.1 93.994 -36.4 4.855 5191.0 no
## 1918 1.1 93.994 -36.4 4.855 5191.0 no
## 1921 1.1 93.994 -36.4 4.855 5191.0 no
## 1941 1.1 93.994 -36.4 4.855 5191.0 no
## 1951 1.1 93.994 -36.4 4.855 5191.0 no
## 1963 1.1 93.994 -36.4 4.855 5191.0 no
## 1964 1.1 93.994 -36.4 4.855 5191.0 no
## 1968 1.1 93.994 -36.4 4.855 5191.0 no
## 1972 1.1 93.994 -36.4 4.855 5191.0 no
## 1974 1.1 93.994 -36.4 4.855 5191.0 no
## 1976 1.1 93.994 -36.4 4.855 5191.0 no
## 1979 1.1 93.994 -36.4 4.855 5191.0 no
## 1980 1.1 93.994 -36.4 4.855 5191.0 no
## 1984 1.1 93.994 -36.4 4.855 5191.0 no
## 1988 1.1 93.994 -36.4 4.857 5191.0 no
## 2001 1.1 93.994 -36.4 4.857 5191.0 no
## 2010 1.1 93.994 -36.4 4.857 5191.0 no
## 2012 1.1 93.994 -36.4 4.857 5191.0 no
## 2018 1.1 93.994 -36.4 4.857 5191.0 no
## 2027 1.1 93.994 -36.4 4.857 5191.0 no
## 2031 1.1 93.994 -36.4 4.857 5191.0 no
## 2038 1.1 93.994 -36.4 4.857 5191.0 no
## 2041 1.1 93.994 -36.4 4.857 5191.0 no
## 2047 1.1 93.994 -36.4 4.857 5191.0 no
## 2056 1.1 93.994 -36.4 4.857 5191.0 no
## 2062 1.1 93.994 -36.4 4.857 5191.0 no
## 2067 1.1 93.994 -36.4 4.857 5191.0 no
## 2077 1.1 93.994 -36.4 4.857 5191.0 no
## 2084 1.1 93.994 -36.4 4.857 5191.0 no
## 2092 1.1 93.994 -36.4 4.857 5191.0 no
## 2094 1.1 93.994 -36.4 4.857 5191.0 no
## 2096 1.1 93.994 -36.4 4.857 5191.0 no
## 2105 1.1 93.994 -36.4 4.857 5191.0 yes
## 2107 1.1 93.994 -36.4 4.857 5191.0 no
## 2109 1.1 93.994 -36.4 4.857 5191.0 no
## 2112 1.1 93.994 -36.4 4.857 5191.0 no
## 2114 1.1 93.994 -36.4 4.857 5191.0 no
## 2129 1.1 93.994 -36.4 4.857 5191.0 no
## 2130 1.1 93.994 -36.4 4.857 5191.0 no
## 2132 1.1 93.994 -36.4 4.857 5191.0 no
## 2138 1.1 93.994 -36.4 4.857 5191.0 no
## 2140 1.1 93.994 -36.4 4.857 5191.0 no
## 2141 1.1 93.994 -36.4 4.857 5191.0 no
## 2146 1.1 93.994 -36.4 4.857 5191.0 no
## 2149 1.1 93.994 -36.4 4.857 5191.0 no
## 2150 1.1 93.994 -36.4 4.857 5191.0 no
## 2151 1.1 93.994 -36.4 4.857 5191.0 no
## 2155 1.1 93.994 -36.4 4.857 5191.0 no
## 2157 1.1 93.994 -36.4 4.857 5191.0 no
## 2166 1.1 93.994 -36.4 4.857 5191.0 no
## 2178 1.1 93.994 -36.4 4.857 5191.0 no
## 2181 1.1 93.994 -36.4 4.857 5191.0 no
## 2183 1.1 93.994 -36.4 4.857 5191.0 no
## 2184 1.1 93.994 -36.4 4.857 5191.0 no
## 2200 1.1 93.994 -36.4 4.857 5191.0 no
## 2204 1.1 93.994 -36.4 4.857 5191.0 no
## 2205 1.1 93.994 -36.4 4.857 5191.0 no
## 2208 1.1 93.994 -36.4 4.857 5191.0 no
## 2222 1.1 93.994 -36.4 4.857 5191.0 no
## 2225 1.1 93.994 -36.4 4.857 5191.0 no
## 2228 1.1 93.994 -36.4 4.857 5191.0 no
## 2230 1.1 93.994 -36.4 4.857 5191.0 no
## 2233 1.1 93.994 -36.4 4.857 5191.0 no
## 2236 1.1 93.994 -36.4 4.857 5191.0 no
## 2237 1.1 93.994 -36.4 4.857 5191.0 no
## 2244 1.1 93.994 -36.4 4.857 5191.0 no
## 2252 1.1 93.994 -36.4 4.856 5191.0 no
## 2253 1.1 93.994 -36.4 4.856 5191.0 no
## 2254 1.1 93.994 -36.4 4.856 5191.0 no
## 2264 1.1 93.994 -36.4 4.856 5191.0 no
## 2270 1.1 93.994 -36.4 4.856 5191.0 no
## 2279 1.1 93.994 -36.4 4.856 5191.0 no
## 2291 1.1 93.994 -36.4 4.856 5191.0 no
## 2293 1.1 93.994 -36.4 4.856 5191.0 no
## 2295 1.1 93.994 -36.4 4.856 5191.0 no
## 2308 1.1 93.994 -36.4 4.856 5191.0 no
## 2310 1.1 93.994 -36.4 4.856 5191.0 no
## 2312 1.1 93.994 -36.4 4.856 5191.0 no
## 2319 1.1 93.994 -36.4 4.856 5191.0 no
## 2326 1.1 93.994 -36.4 4.856 5191.0 no
## 2327 1.1 93.994 -36.4 4.856 5191.0 no
## 2332 1.1 93.994 -36.4 4.856 5191.0 no
## 2334 1.1 93.994 -36.4 4.856 5191.0 no
## 2342 1.1 93.994 -36.4 4.856 5191.0 no
## 2343 1.1 93.994 -36.4 4.856 5191.0 no
## 2346 1.1 93.994 -36.4 4.856 5191.0 no
## 2348 1.1 93.994 -36.4 4.856 5191.0 no
## 2350 1.1 93.994 -36.4 4.856 5191.0 no
## 2355 1.1 93.994 -36.4 4.856 5191.0 no
## 2364 1.1 93.994 -36.4 4.856 5191.0 no
## 2370 1.1 93.994 -36.4 4.856 5191.0 no
## 2375 1.1 93.994 -36.4 4.856 5191.0 no
## 2385 1.1 93.994 -36.4 4.856 5191.0 no
## 2386 1.1 93.994 -36.4 4.856 5191.0 no
## 2387 1.1 93.994 -36.4 4.856 5191.0 no
## 2389 1.1 93.994 -36.4 4.856 5191.0 no
## 2394 1.1 93.994 -36.4 4.856 5191.0 no
## 2400 1.1 93.994 -36.4 4.856 5191.0 no
## 2412 1.1 93.994 -36.4 4.856 5191.0 no
## 2414 1.1 93.994 -36.4 4.856 5191.0 no
## 2420 1.1 93.994 -36.4 4.856 5191.0 no
## 2424 1.1 93.994 -36.4 4.856 5191.0 no
## 2427 1.1 93.994 -36.4 4.856 5191.0 no
## 2443 1.1 93.994 -36.4 4.856 5191.0 no
## 2445 1.1 93.994 -36.4 4.856 5191.0 yes
## 2449 1.1 93.994 -36.4 4.856 5191.0 no
## 2451 1.1 93.994 -36.4 4.856 5191.0 no
## 2457 1.1 93.994 -36.4 4.856 5191.0 no
## 2460 1.1 93.994 -36.4 4.856 5191.0 no
## 2468 1.1 93.994 -36.4 4.856 5191.0 no
## 2469 1.1 93.994 -36.4 4.856 5191.0 no
## 2485 1.1 93.994 -36.4 4.856 5191.0 no
## 2487 1.1 93.994 -36.4 4.856 5191.0 no
## 2492 1.1 93.994 -36.4 4.856 5191.0 no
## 2500 1.1 93.994 -36.4 4.856 5191.0 no
## 2501 1.1 93.994 -36.4 4.856 5191.0 no
## 2503 1.1 93.994 -36.4 4.856 5191.0 no
## 2508 1.1 93.994 -36.4 4.856 5191.0 no
## 2516 1.1 93.994 -36.4 4.856 5191.0 no
## 2521 1.1 93.994 -36.4 4.856 5191.0 no
## 2531 1.1 93.994 -36.4 4.856 5191.0 no
## 2533 1.1 93.994 -36.4 4.856 5191.0 no
## 2534 1.1 93.994 -36.4 4.856 5191.0 no
## 2537 1.1 93.994 -36.4 4.856 5191.0 no
## 2541 1.1 93.994 -36.4 4.856 5191.0 no
## 2548 1.1 93.994 -36.4 4.856 5191.0 no
## 2551 1.1 93.994 -36.4 4.856 5191.0 no
## 2560 1.1 93.994 -36.4 4.856 5191.0 no
## 2564 1.1 93.994 -36.4 4.856 5191.0 no
## 2566 1.1 93.994 -36.4 4.856 5191.0 no
## 2572 1.1 93.994 -36.4 4.856 5191.0 no
## 2576 1.1 93.994 -36.4 4.856 5191.0 no
## 2579 1.1 93.994 -36.4 4.856 5191.0 no
## 2585 1.1 93.994 -36.4 4.856 5191.0 no
## 2586 1.1 93.994 -36.4 4.856 5191.0 no
## 2587 1.1 93.994 -36.4 4.856 5191.0 no
## 2593 1.1 93.994 -36.4 4.856 5191.0 no
## 2597 1.1 93.994 -36.4 4.856 5191.0 no
## 2600 1.1 93.994 -36.4 4.856 5191.0 no
## 2620 1.1 93.994 -36.4 4.856 5191.0 no
## 2621 1.1 93.994 -36.4 4.856 5191.0 no
## 2628 1.1 93.994 -36.4 4.856 5191.0 no
## 2632 1.1 93.994 -36.4 4.856 5191.0 no
## 2636 1.1 93.994 -36.4 4.856 5191.0 yes
## 2642 1.1 93.994 -36.4 4.856 5191.0 no
## 2646 1.1 93.994 -36.4 4.856 5191.0 yes
## 2647 1.1 93.994 -36.4 4.856 5191.0 no
## 2660 1.1 93.994 -36.4 4.859 5191.0 no
## 2663 1.1 93.994 -36.4 4.859 5191.0 no
## 2664 1.1 93.994 -36.4 4.859 5191.0 no
## 2674 1.1 93.994 -36.4 4.859 5191.0 no
## 2675 1.1 93.994 -36.4 4.859 5191.0 no
## 2688 1.1 93.994 -36.4 4.859 5191.0 no
## 2694 1.1 93.994 -36.4 4.859 5191.0 no
## 2698 1.1 93.994 -36.4 4.859 5191.0 yes
## 2702 1.1 93.994 -36.4 4.859 5191.0 no
## 2704 1.1 93.994 -36.4 4.859 5191.0 no
## 2705 1.1 93.994 -36.4 4.859 5191.0 no
## 2711 1.1 93.994 -36.4 4.859 5191.0 no
## 2716 1.1 93.994 -36.4 4.859 5191.0 no
## 2722 1.1 93.994 -36.4 4.859 5191.0 no
## 2723 1.1 93.994 -36.4 4.859 5191.0 no
## 2726 1.1 93.994 -36.4 4.859 5191.0 no
## 2732 1.1 93.994 -36.4 4.859 5191.0 no
## 2742 1.1 93.994 -36.4 4.859 5191.0 no
## 2749 1.1 93.994 -36.4 4.859 5191.0 no
## 2750 1.1 93.994 -36.4 4.859 5191.0 no
## 2752 1.1 93.994 -36.4 4.859 5191.0 no
## 2754 1.1 93.994 -36.4 4.859 5191.0 no
## 2755 1.1 93.994 -36.4 4.859 5191.0 no
## 2764 1.1 93.994 -36.4 4.859 5191.0 yes
## 2766 1.1 93.994 -36.4 4.859 5191.0 no
## 2771 1.1 93.994 -36.4 4.859 5191.0 no
## 2772 1.1 93.994 -36.4 4.859 5191.0 no
## 2777 1.1 93.994 -36.4 4.859 5191.0 no
## 2778 1.1 93.994 -36.4 4.859 5191.0 no
## 2783 1.1 93.994 -36.4 4.859 5191.0 no
## 2784 1.1 93.994 -36.4 4.859 5191.0 no
## 2789 1.1 93.994 -36.4 4.859 5191.0 no
## 2798 1.1 93.994 -36.4 4.859 5191.0 no
## 2800 1.1 93.994 -36.4 4.859 5191.0 no
## 2813 1.1 93.994 -36.4 4.859 5191.0 no
## 2818 1.1 93.994 -36.4 4.859 5191.0 no
## 2819 1.1 93.994 -36.4 4.859 5191.0 no
## 2824 1.1 93.994 -36.4 4.859 5191.0 no
## 2829 1.1 93.994 -36.4 4.859 5191.0 no
## 2839 1.1 93.994 -36.4 4.859 5191.0 no
## 2840 1.1 93.994 -36.4 4.859 5191.0 no
## 2841 1.1 93.994 -36.4 4.859 5191.0 no
## 2844 1.1 93.994 -36.4 4.859 5191.0 no
## 2851 1.1 93.994 -36.4 4.859 5191.0 no
## 2858 1.1 93.994 -36.4 4.859 5191.0 no
## 2861 1.1 93.994 -36.4 4.859 5191.0 no
## 2863 1.1 93.994 -36.4 4.859 5191.0 no
## 2866 1.1 93.994 -36.4 4.859 5191.0 no
## 2869 1.1 93.994 -36.4 4.859 5191.0 no
## 2877 1.1 93.994 -36.4 4.859 5191.0 no
## 2879 1.1 93.994 -36.4 4.859 5191.0 no
## 2885 1.1 93.994 -36.4 4.859 5191.0 no
## 2886 1.1 93.994 -36.4 4.859 5191.0 no
## 2889 1.1 93.994 -36.4 4.859 5191.0 no
## 2892 1.1 93.994 -36.4 4.859 5191.0 no
## 2893 1.1 93.994 -36.4 4.859 5191.0 no
## 2903 1.1 93.994 -36.4 4.859 5191.0 no
## 2904 1.1 93.994 -36.4 4.859 5191.0 no
## 2906 1.1 93.994 -36.4 4.859 5191.0 yes
## 2914 1.1 93.994 -36.4 4.859 5191.0 no
## 2915 1.1 93.994 -36.4 4.859 5191.0 no
## 2925 1.1 93.994 -36.4 4.859 5191.0 no
## 2927 1.1 93.994 -36.4 4.859 5191.0 no
## 2935 1.1 93.994 -36.4 4.859 5191.0 no
## 2962 1.1 93.994 -36.4 4.859 5191.0 no
## 2970 1.1 93.994 -36.4 4.859 5191.0 no
## 2971 1.1 93.994 -36.4 4.859 5191.0 no
## 2977 1.1 93.994 -36.4 4.859 5191.0 no
## 2982 1.1 93.994 -36.4 4.859 5191.0 no
## 2983 1.1 93.994 -36.4 4.859 5191.0 no
## 2984 1.1 93.994 -36.4 4.859 5191.0 no
## 2996 1.1 93.994 -36.4 4.859 5191.0 no
## 2997 1.1 93.994 -36.4 4.859 5191.0 no
## 2998 1.1 93.994 -36.4 4.859 5191.0 no
## 3001 1.1 93.994 -36.4 4.859 5191.0 no
## 3003 1.1 93.994 -36.4 4.859 5191.0 no
## 3010 1.1 93.994 -36.4 4.859 5191.0 no
## 3016 1.1 93.994 -36.4 4.859 5191.0 no
## 3018 1.1 93.994 -36.4 4.859 5191.0 no
## 3021 1.1 93.994 -36.4 4.859 5191.0 no
## 3022 1.1 93.994 -36.4 4.859 5191.0 no
## 3029 1.1 93.994 -36.4 4.859 5191.0 no
## 3040 1.1 93.994 -36.4 4.859 5191.0 no
## 3045 1.1 93.994 -36.4 4.859 5191.0 no
## 3047 1.1 93.994 -36.4 4.859 5191.0 no
## 3051 1.1 93.994 -36.4 4.859 5191.0 no
## 3059 1.1 93.994 -36.4 4.859 5191.0 no
## 3061 1.1 93.994 -36.4 4.859 5191.0 no
## 3064 1.1 93.994 -36.4 4.859 5191.0 no
## 3065 1.1 93.994 -36.4 4.859 5191.0 no
## 3069 1.1 93.994 -36.4 4.859 5191.0 no
## 3074 1.1 93.994 -36.4 4.860 5191.0 no
## 3075 1.1 93.994 -36.4 4.860 5191.0 no
## 3086 1.1 93.994 -36.4 4.860 5191.0 no
## 3094 1.1 93.994 -36.4 4.860 5191.0 no
## 3095 1.1 93.994 -36.4 4.860 5191.0 no
## 3099 1.1 93.994 -36.4 4.860 5191.0 no
## 3101 1.1 93.994 -36.4 4.860 5191.0 no
## 3103 1.1 93.994 -36.4 4.860 5191.0 no
## 3105 1.1 93.994 -36.4 4.860 5191.0 no
## 3109 1.1 93.994 -36.4 4.860 5191.0 no
## 3111 1.1 93.994 -36.4 4.860 5191.0 no
## 3112 1.1 93.994 -36.4 4.860 5191.0 no
## 3113 1.1 93.994 -36.4 4.860 5191.0 no
## 3114 1.1 93.994 -36.4 4.860 5191.0 yes
## 3121 1.1 93.994 -36.4 4.860 5191.0 no
## 3122 1.1 93.994 -36.4 4.860 5191.0 no
## 3123 1.1 93.994 -36.4 4.860 5191.0 no
## 3125 1.1 93.994 -36.4 4.860 5191.0 no
## 3126 1.1 93.994 -36.4 4.860 5191.0 no
## 3136 1.1 93.994 -36.4 4.860 5191.0 no
## 3141 1.1 93.994 -36.4 4.860 5191.0 no
## 3144 1.1 93.994 -36.4 4.860 5191.0 no
## 3145 1.1 93.994 -36.4 4.860 5191.0 no
## 3147 1.1 93.994 -36.4 4.860 5191.0 no
## 3152 1.1 93.994 -36.4 4.860 5191.0 no
## 3157 1.1 93.994 -36.4 4.860 5191.0 no
## 3158 1.1 93.994 -36.4 4.860 5191.0 no
## 3161 1.1 93.994 -36.4 4.860 5191.0 no
## 3162 1.1 93.994 -36.4 4.860 5191.0 no
## 3166 1.1 93.994 -36.4 4.860 5191.0 no
## 3169 1.1 93.994 -36.4 4.860 5191.0 no
## 3186 1.1 93.994 -36.4 4.860 5191.0 no
## 3192 1.1 93.994 -36.4 4.860 5191.0 no
## 3196 1.1 93.994 -36.4 4.860 5191.0 no
## 3200 1.1 93.994 -36.4 4.860 5191.0 no
## 3203 1.1 93.994 -36.4 4.860 5191.0 no
## 3206 1.1 93.994 -36.4 4.860 5191.0 no
## 3213 1.1 93.994 -36.4 4.860 5191.0 no
## 3219 1.1 93.994 -36.4 4.860 5191.0 no
## 3220 1.1 93.994 -36.4 4.860 5191.0 yes
## 3223 1.1 93.994 -36.4 4.860 5191.0 no
## 3232 1.1 93.994 -36.4 4.860 5191.0 no
## 3241 1.1 93.994 -36.4 4.860 5191.0 no
## 3245 1.1 93.994 -36.4 4.860 5191.0 no
## 3247 1.1 93.994 -36.4 4.860 5191.0 no
## 3250 1.1 93.994 -36.4 4.860 5191.0 no
## 3269 1.1 93.994 -36.4 4.860 5191.0 no
## 3273 1.1 93.994 -36.4 4.860 5191.0 no
## 3274 1.1 93.994 -36.4 4.860 5191.0 no
## 3275 1.1 93.994 -36.4 4.860 5191.0 no
## 3276 1.1 93.994 -36.4 4.860 5191.0 no
## 3280 1.1 93.994 -36.4 4.860 5191.0 no
## 3285 1.1 93.994 -36.4 4.860 5191.0 no
## 3287 1.1 93.994 -36.4 4.860 5191.0 no
## 3289 1.1 93.994 -36.4 4.860 5191.0 no
## 3304 1.1 93.994 -36.4 4.860 5191.0 no
## 3305 1.1 93.994 -36.4 4.860 5191.0 no
## 3313 1.1 93.994 -36.4 4.860 5191.0 no
## 3318 1.1 93.994 -36.4 4.860 5191.0 no
## 3325 1.1 93.994 -36.4 4.860 5191.0 no
## 3326 1.1 93.994 -36.4 4.860 5191.0 no
## 3327 1.1 93.994 -36.4 4.860 5191.0 no
## 3329 1.1 93.994 -36.4 4.860 5191.0 no
## 3330 1.1 93.994 -36.4 4.860 5191.0 no
## 3332 1.1 93.994 -36.4 4.860 5191.0 no
## 3336 1.1 93.994 -36.4 4.860 5191.0 no
## 3347 1.1 93.994 -36.4 4.860 5191.0 no
## 3348 1.1 93.994 -36.4 4.860 5191.0 no
## 3361 1.1 93.994 -36.4 4.860 5191.0 no
## 3368 1.1 93.994 -36.4 4.860 5191.0 no
## 3372 1.1 93.994 -36.4 4.860 5191.0 no
## 3375 1.1 93.994 -36.4 4.860 5191.0 no
## 3384 1.1 93.994 -36.4 4.860 5191.0 no
## 3388 1.1 93.994 -36.4 4.860 5191.0 no
## 3407 1.1 93.994 -36.4 4.860 5191.0 no
## 3409 1.1 93.994 -36.4 4.860 5191.0 no
## 3411 1.1 93.994 -36.4 4.860 5191.0 no
## 3420 1.1 93.994 -36.4 4.860 5191.0 no
## 3428 1.1 93.994 -36.4 4.860 5191.0 yes
## 3436 1.1 93.994 -36.4 4.860 5191.0 no
## 3438 1.1 93.994 -36.4 4.860 5191.0 no
## 3439 1.1 93.994 -36.4 4.860 5191.0 no
## 3440 1.1 93.994 -36.4 4.860 5191.0 no
## 3445 1.1 93.994 -36.4 4.860 5191.0 no
## 3449 1.1 93.994 -36.4 4.860 5191.0 no
## 3451 1.1 93.994 -36.4 4.860 5191.0 no
## 3452 1.1 93.994 -36.4 4.860 5191.0 no
## 3454 1.1 93.994 -36.4 4.860 5191.0 yes
## 3459 1.1 93.994 -36.4 4.860 5191.0 no
## 3479 1.1 93.994 -36.4 4.860 5191.0 no
## 3488 1.1 93.994 -36.4 4.860 5191.0 no
## 3491 1.1 93.994 -36.4 4.860 5191.0 no
## 3498 1.1 93.994 -36.4 4.860 5191.0 no
## 3511 1.1 93.994 -36.4 4.860 5191.0 no
## 3514 1.1 93.994 -36.4 4.860 5191.0 no
## 3519 1.1 93.994 -36.4 4.860 5191.0 no
## 3521 1.1 93.994 -36.4 4.860 5191.0 no
## 3526 1.1 93.994 -36.4 4.859 5191.0 no
## 3529 1.1 93.994 -36.4 4.859 5191.0 no
## 3533 1.1 93.994 -36.4 4.859 5191.0 no
## 3538 1.1 93.994 -36.4 4.859 5191.0 no
## 3543 1.1 93.994 -36.4 4.859 5191.0 no
## 3545 1.1 93.994 -36.4 4.859 5191.0 no
## 3547 1.1 93.994 -36.4 4.859 5191.0 no
## 3550 1.1 93.994 -36.4 4.859 5191.0 no
## 3557 1.1 93.994 -36.4 4.859 5191.0 no
## 3562 1.1 93.994 -36.4 4.859 5191.0 no
## 3564 1.1 93.994 -36.4 4.859 5191.0 no
## 3565 1.1 93.994 -36.4 4.859 5191.0 yes
## 3568 1.1 93.994 -36.4 4.859 5191.0 no
## 3569 1.1 93.994 -36.4 4.859 5191.0 no
## 3573 1.1 93.994 -36.4 4.859 5191.0 no
## 3579 1.1 93.994 -36.4 4.859 5191.0 no
## 3583 1.1 93.994 -36.4 4.859 5191.0 no
## 3585 1.1 93.994 -36.4 4.859 5191.0 no
## 3586 1.1 93.994 -36.4 4.859 5191.0 no
## 3587 1.1 93.994 -36.4 4.859 5191.0 no
## 3594 1.1 93.994 -36.4 4.859 5191.0 no
## 3595 1.1 93.994 -36.4 4.859 5191.0 no
## 3597 1.1 93.994 -36.4 4.859 5191.0 no
## 3602 1.1 93.994 -36.4 4.859 5191.0 no
## 3603 1.1 93.994 -36.4 4.859 5191.0 no
## 3604 1.1 93.994 -36.4 4.859 5191.0 no
## 3611 1.1 93.994 -36.4 4.859 5191.0 no
## 3622 1.1 93.994 -36.4 4.859 5191.0 no
## 3626 1.1 93.994 -36.4 4.859 5191.0 no
## 3627 1.1 93.994 -36.4 4.859 5191.0 no
## 3633 1.1 93.994 -36.4 4.859 5191.0 no
## 3635 1.1 93.994 -36.4 4.859 5191.0 no
## 3639 1.1 93.994 -36.4 4.859 5191.0 no
## 3646 1.1 93.994 -36.4 4.859 5191.0 no
## 3652 1.1 93.994 -36.4 4.859 5191.0 no
## 3655 1.1 93.994 -36.4 4.859 5191.0 no
## 3659 1.1 93.994 -36.4 4.859 5191.0 no
## 3661 1.1 93.994 -36.4 4.859 5191.0 no
## 3665 1.1 93.994 -36.4 4.859 5191.0 no
## 3668 1.1 93.994 -36.4 4.859 5191.0 no
## 3671 1.1 93.994 -36.4 4.859 5191.0 no
## 3674 1.1 93.994 -36.4 4.859 5191.0 no
## 3676 1.1 93.994 -36.4 4.859 5191.0 no
## 3677 1.1 93.994 -36.4 4.859 5191.0 no
## 3678 1.1 93.994 -36.4 4.859 5191.0 yes
## 3682 1.1 93.994 -36.4 4.859 5191.0 no
## 3694 1.1 93.994 -36.4 4.859 5191.0 yes
## 3700 1.1 93.994 -36.4 4.859 5191.0 no
## 3708 1.1 93.994 -36.4 4.859 5191.0 no
## 3710 1.1 93.994 -36.4 4.859 5191.0 no
## 3714 1.1 93.994 -36.4 4.859 5191.0 no
## 3726 1.1 93.994 -36.4 4.859 5191.0 no
## 3729 1.1 93.994 -36.4 4.859 5191.0 no
## 3741 1.1 93.994 -36.4 4.859 5191.0 yes
## 3744 1.1 93.994 -36.4 4.859 5191.0 no
## 3753 1.1 93.994 -36.4 4.859 5191.0 no
## 3755 1.1 93.994 -36.4 4.859 5191.0 no
## 3765 1.1 93.994 -36.4 4.859 5191.0 no
## 3766 1.1 93.994 -36.4 4.859 5191.0 no
## 3770 1.1 93.994 -36.4 4.859 5191.0 no
## 3772 1.1 93.994 -36.4 4.859 5191.0 no
## 3784 1.1 93.994 -36.4 4.859 5191.0 no
## 3786 1.1 93.994 -36.4 4.859 5191.0 no
## 3793 1.1 93.994 -36.4 4.859 5191.0 no
## 3794 1.1 93.994 -36.4 4.859 5191.0 no
## 3812 1.1 93.994 -36.4 4.859 5191.0 no
## 3819 1.1 93.994 -36.4 4.859 5191.0 no
## 3821 1.1 93.994 -36.4 4.859 5191.0 no
## 3823 1.1 93.994 -36.4 4.859 5191.0 no
## 3824 1.1 93.994 -36.4 4.859 5191.0 no
## 3835 1.1 93.994 -36.4 4.859 5191.0 no
## 3838 1.1 93.994 -36.4 4.859 5191.0 no
## 3843 1.1 93.994 -36.4 4.859 5191.0 no
## 3844 1.1 93.994 -36.4 4.859 5191.0 no
## 3848 1.1 93.994 -36.4 4.859 5191.0 no
## 3852 1.1 93.994 -36.4 4.859 5191.0 no
## 3855 1.1 93.994 -36.4 4.859 5191.0 yes
## 3856 1.1 93.994 -36.4 4.859 5191.0 no
## 3869 1.1 93.994 -36.4 4.859 5191.0 no
## 3870 1.1 93.994 -36.4 4.859 5191.0 no
## 3871 1.1 93.994 -36.4 4.859 5191.0 no
## 3875 1.1 93.994 -36.4 4.859 5191.0 no
## 3885 1.1 93.994 -36.4 4.859 5191.0 no
## 3900 1.1 93.994 -36.4 4.858 5191.0 no
## 3907 1.1 93.994 -36.4 4.858 5191.0 no
## 3918 1.1 93.994 -36.4 4.858 5191.0 no
## 3921 1.1 93.994 -36.4 4.858 5191.0 no
## 3924 1.1 93.994 -36.4 4.858 5191.0 no
## 3929 1.1 93.994 -36.4 4.858 5191.0 no
## 3930 1.1 93.994 -36.4 4.858 5191.0 no
## 3943 1.1 93.994 -36.4 4.858 5191.0 no
## 3949 1.1 93.994 -36.4 4.858 5191.0 no
## 3954 1.1 93.994 -36.4 4.858 5191.0 no
## 3957 1.1 93.994 -36.4 4.858 5191.0 no
## 3960 1.1 93.994 -36.4 4.858 5191.0 no
## 3966 1.1 93.994 -36.4 4.858 5191.0 no
## 3969 1.1 93.994 -36.4 4.858 5191.0 no
## 3971 1.1 93.994 -36.4 4.858 5191.0 no
## 3979 1.1 93.994 -36.4 4.858 5191.0 no
## 3984 1.1 93.994 -36.4 4.858 5191.0 no
## 3991 1.1 93.994 -36.4 4.858 5191.0 no
## 3994 1.1 93.994 -36.4 4.858 5191.0 no
## 3996 1.1 93.994 -36.4 4.858 5191.0 no
## 4003 1.1 93.994 -36.4 4.858 5191.0 no
## 4005 1.1 93.994 -36.4 4.858 5191.0 no
## 4011 1.1 93.994 -36.4 4.858 5191.0 no
## 4012 1.1 93.994 -36.4 4.858 5191.0 no
## 4018 1.1 93.994 -36.4 4.858 5191.0 no
## 4019 1.1 93.994 -36.4 4.858 5191.0 no
## 4020 1.1 93.994 -36.4 4.858 5191.0 no
## 4028 1.1 93.994 -36.4 4.858 5191.0 no
## 4033 1.1 93.994 -36.4 4.858 5191.0 no
## 4038 1.1 93.994 -36.4 4.858 5191.0 no
## 4044 1.1 93.994 -36.4 4.858 5191.0 no
## 4052 1.1 93.994 -36.4 4.858 5191.0 no
## 4055 1.1 93.994 -36.4 4.858 5191.0 no
## 4066 1.1 93.994 -36.4 4.858 5191.0 no
## 4075 1.1 93.994 -36.4 4.858 5191.0 no
## 4076 1.1 93.994 -36.4 4.858 5191.0 no
## 4077 1.1 93.994 -36.4 4.858 5191.0 no
## 4082 1.1 93.994 -36.4 4.858 5191.0 no
## 4083 1.1 93.994 -36.4 4.858 5191.0 no
## 4091 1.1 93.994 -36.4 4.858 5191.0 no
## 4093 1.1 93.994 -36.4 4.858 5191.0 no
## 4112 1.1 93.994 -36.4 4.858 5191.0 no
## 4113 1.1 93.994 -36.4 4.858 5191.0 no
## 4114 1.1 93.994 -36.4 4.858 5191.0 no
## 4124 1.1 93.994 -36.4 4.858 5191.0 no
## 4130 1.1 93.994 -36.4 4.858 5191.0 no
## 4136 1.1 93.994 -36.4 4.858 5191.0 no
## 4142 1.1 93.994 -36.4 4.858 5191.0 no
## 4143 1.1 93.994 -36.4 4.858 5191.0 no
## 4145 1.1 93.994 -36.4 4.858 5191.0 no
## 4148 1.1 93.994 -36.4 4.858 5191.0 no
## 4151 1.1 93.994 -36.4 4.858 5191.0 no
## 4152 1.1 93.994 -36.4 4.858 5191.0 no
## 4153 1.1 93.994 -36.4 4.858 5191.0 yes
## 4158 1.1 93.994 -36.4 4.858 5191.0 no
## 4169 1.1 93.994 -36.4 4.858 5191.0 no
## 4172 1.1 93.994 -36.4 4.858 5191.0 no
## 4177 1.1 93.994 -36.4 4.858 5191.0 no
## 4181 1.1 93.994 -36.4 4.858 5191.0 no
## 4185 1.1 93.994 -36.4 4.858 5191.0 no
## 4189 1.1 93.994 -36.4 4.858 5191.0 no
## 4192 1.1 93.994 -36.4 4.858 5191.0 no
## 4193 1.1 93.994 -36.4 4.858 5191.0 no
## 4198 1.1 93.994 -36.4 4.858 5191.0 no
## 4200 1.1 93.994 -36.4 4.858 5191.0 no
## 4201 1.1 93.994 -36.4 4.858 5191.0 no
## 4202 1.1 93.994 -36.4 4.858 5191.0 no
## 4204 1.1 93.994 -36.4 4.858 5191.0 no
## 4205 1.1 93.994 -36.4 4.858 5191.0 no
## 4206 1.1 93.994 -36.4 4.858 5191.0 no
## 4225 1.1 93.994 -36.4 4.856 5191.0 no
## 4229 1.1 93.994 -36.4 4.856 5191.0 no
## 4232 1.1 93.994 -36.4 4.856 5191.0 no
## 4236 1.1 93.994 -36.4 4.856 5191.0 no
## 4240 1.1 93.994 -36.4 4.856 5191.0 no
## 4244 1.1 93.994 -36.4 4.856 5191.0 no
## 4247 1.1 93.994 -36.4 4.856 5191.0 no
## 4250 1.1 93.994 -36.4 4.856 5191.0 no
## 4255 1.1 93.994 -36.4 4.856 5191.0 no
## 4256 1.1 93.994 -36.4 4.856 5191.0 no
## 4257 1.1 93.994 -36.4 4.856 5191.0 no
## 4262 1.1 93.994 -36.4 4.856 5191.0 no
## 4264 1.1 93.994 -36.4 4.856 5191.0 no
## 4291 1.1 93.994 -36.4 4.856 5191.0 no
## 4292 1.1 93.994 -36.4 4.856 5191.0 no
## 4296 1.1 93.994 -36.4 4.856 5191.0 no
## 4302 1.1 93.994 -36.4 4.856 5191.0 no
## 4309 1.1 93.994 -36.4 4.856 5191.0 no
## 4312 1.1 93.994 -36.4 4.856 5191.0 no
## 4314 1.1 93.994 -36.4 4.856 5191.0 no
## 4328 1.1 93.994 -36.4 4.856 5191.0 no
## 4331 1.1 93.994 -36.4 4.856 5191.0 no
## 4344 1.1 93.994 -36.4 4.856 5191.0 no
## 4345 1.1 93.994 -36.4 4.856 5191.0 no
## 4347 1.1 93.994 -36.4 4.856 5191.0 no
## 4355 1.1 93.994 -36.4 4.856 5191.0 no
## 4360 1.1 93.994 -36.4 4.856 5191.0 no
## 4363 1.1 93.994 -36.4 4.856 5191.0 no
## 4364 1.1 93.994 -36.4 4.856 5191.0 no
## 4368 1.1 93.994 -36.4 4.856 5191.0 no
## 4369 1.1 93.994 -36.4 4.856 5191.0 no
## 4373 1.1 93.994 -36.4 4.856 5191.0 no
## 4381 1.1 93.994 -36.4 4.856 5191.0 no
## 4386 1.1 93.994 -36.4 4.856 5191.0 no
## 4390 1.1 93.994 -36.4 4.856 5191.0 no
## 4397 1.1 93.994 -36.4 4.856 5191.0 no
## 4401 1.1 93.994 -36.4 4.856 5191.0 no
## 4402 1.1 93.994 -36.4 4.856 5191.0 no
## 4404 1.1 93.994 -36.4 4.856 5191.0 no
## 4413 1.1 93.994 -36.4 4.856 5191.0 no
## 4426 1.1 93.994 -36.4 4.856 5191.0 no
## 4428 1.1 93.994 -36.4 4.856 5191.0 no
## 4431 1.1 93.994 -36.4 4.856 5191.0 no
## 4432 1.1 93.994 -36.4 4.856 5191.0 no
## 4435 1.1 93.994 -36.4 4.856 5191.0 no
## 4436 1.1 93.994 -36.4 4.856 5191.0 no
## 4445 1.1 93.994 -36.4 4.856 5191.0 no
## 4446 1.1 93.994 -36.4 4.856 5191.0 no
## 4450 1.1 93.994 -36.4 4.856 5191.0 no
## 4454 1.1 93.994 -36.4 4.856 5191.0 no
## 4459 1.1 93.994 -36.4 4.856 5191.0 no
## 4471 1.1 93.994 -36.4 4.856 5191.0 no
## 4480 1.1 93.994 -36.4 4.856 5191.0 yes
## 4482 1.1 93.994 -36.4 4.856 5191.0 no
## 4491 1.1 93.994 -36.4 4.856 5191.0 no
## 4504 1.1 93.994 -36.4 4.856 5191.0 no
## 4505 1.1 93.994 -36.4 4.856 5191.0 no
## 4506 1.1 93.994 -36.4 4.856 5191.0 no
## 4514 1.1 93.994 -36.4 4.856 5191.0 no
## 4518 1.1 93.994 -36.4 4.856 5191.0 no
## 4519 1.1 93.994 -36.4 4.856 5191.0 no
## 4532 1.1 93.994 -36.4 4.856 5191.0 no
## 4534 1.1 93.994 -36.4 4.856 5191.0 no
## 4541 1.1 93.994 -36.4 4.856 5191.0 no
## 4549 1.1 93.994 -36.4 4.856 5191.0 no
## 4558 1.1 93.994 -36.4 4.856 5191.0 no
## 4564 1.1 93.994 -36.4 4.856 5191.0 no
## 4565 1.1 93.994 -36.4 4.856 5191.0 no
## 4567 1.1 93.994 -36.4 4.856 5191.0 no
## 4572 1.1 93.994 -36.4 4.856 5191.0 no
## 4581 1.1 93.994 -36.4 4.856 5191.0 no
## 4585 1.1 93.994 -36.4 4.856 5191.0 no
## 4590 1.1 93.994 -36.4 4.856 5191.0 no
## 4593 1.1 93.994 -36.4 4.856 5191.0 no
## 4605 1.1 93.994 -36.4 4.856 5191.0 no
## 4611 1.1 93.994 -36.4 4.856 5191.0 no
## 4613 1.1 93.994 -36.4 4.856 5191.0 no
## 4620 1.1 93.994 -36.4 4.856 5191.0 no
## 4624 1.1 93.994 -36.4 4.856 5191.0 yes
## 4632 1.1 93.994 -36.4 4.858 5191.0 no
## 4637 1.1 93.994 -36.4 4.858 5191.0 no
## 4639 1.1 93.994 -36.4 4.858 5191.0 no
## 4648 1.1 93.994 -36.4 4.858 5191.0 no
## 4654 1.1 93.994 -36.4 4.858 5191.0 no
## 4655 1.1 93.994 -36.4 4.858 5191.0 no
## 4657 1.1 93.994 -36.4 4.858 5191.0 no
## 4661 1.1 93.994 -36.4 4.858 5191.0 no
## 4670 1.1 93.994 -36.4 4.858 5191.0 no
## 4672 1.1 93.994 -36.4 4.858 5191.0 no
## 4675 1.1 93.994 -36.4 4.858 5191.0 no
## 4683 1.1 93.994 -36.4 4.858 5191.0 no
## 4685 1.1 93.994 -36.4 4.858 5191.0 no
## 4687 1.1 93.994 -36.4 4.858 5191.0 no
## 4689 1.1 93.994 -36.4 4.858 5191.0 no
## 4691 1.1 93.994 -36.4 4.858 5191.0 no
## 4692 1.1 93.994 -36.4 4.858 5191.0 no
## 4713 1.1 93.994 -36.4 4.858 5191.0 no
## 4716 1.1 93.994 -36.4 4.858 5191.0 no
## 4718 1.1 93.994 -36.4 4.858 5191.0 no
## 4719 1.1 93.994 -36.4 4.858 5191.0 no
## 4729 1.1 93.994 -36.4 4.858 5191.0 no
## 4734 1.1 93.994 -36.4 4.858 5191.0 no
## 4736 1.1 93.994 -36.4 4.858 5191.0 no
## 4745 1.1 93.994 -36.4 4.858 5191.0 no
## 4753 1.1 93.994 -36.4 4.858 5191.0 yes
## 4754 1.1 93.994 -36.4 4.858 5191.0 no
## 4769 1.1 93.994 -36.4 4.858 5191.0 no
## 4777 1.1 93.994 -36.4 4.858 5191.0 no
## 4779 1.1 93.994 -36.4 4.858 5191.0 no
## 4781 1.1 93.994 -36.4 4.858 5191.0 no
## 4787 1.1 93.994 -36.4 4.858 5191.0 no
## 4791 1.1 93.994 -36.4 4.858 5191.0 no
## 4808 1.1 93.994 -36.4 4.858 5191.0 no
## 4815 1.1 93.994 -36.4 4.858 5191.0 no
## 4816 1.1 93.994 -36.4 4.858 5191.0 no
## 4821 1.1 93.994 -36.4 4.858 5191.0 no
## 4822 1.1 93.994 -36.4 4.858 5191.0 no
## 4829 1.1 93.994 -36.4 4.858 5191.0 no
## 4832 1.1 93.994 -36.4 4.858 5191.0 no
## 4835 1.1 93.994 -36.4 4.858 5191.0 no
## 4836 1.1 93.994 -36.4 4.858 5191.0 no
## 4838 1.1 93.994 -36.4 4.858 5191.0 no
## 4843 1.1 93.994 -36.4 4.858 5191.0 no
## 4844 1.1 93.994 -36.4 4.858 5191.0 no
## 4848 1.1 93.994 -36.4 4.858 5191.0 no
## 4852 1.1 93.994 -36.4 4.858 5191.0 yes
## 4860 1.1 93.994 -36.4 4.858 5191.0 no
## 4875 1.1 93.994 -36.4 4.858 5191.0 no
## 4881 1.1 93.994 -36.4 4.858 5191.0 yes
## 4884 1.1 93.994 -36.4 4.858 5191.0 no
## 4889 1.1 93.994 -36.4 4.858 5191.0 no
## 4894 1.1 93.994 -36.4 4.858 5191.0 no
## 4907 1.1 93.994 -36.4 4.858 5191.0 no
## 4908 1.1 93.994 -36.4 4.858 5191.0 no
## 4915 1.1 93.994 -36.4 4.858 5191.0 no
## 4920 1.1 93.994 -36.4 4.858 5191.0 no
## 4932 1.1 93.994 -36.4 4.858 5191.0 no
## 4933 1.1 93.994 -36.4 4.858 5191.0 no
## 4941 1.1 93.994 -36.4 4.858 5191.0 no
## 4947 1.1 93.994 -36.4 4.858 5191.0 no
## 4955 1.1 93.994 -36.4 4.858 5191.0 no
## 4965 1.1 93.994 -36.4 4.858 5191.0 no
## 4970 1.1 93.994 -36.4 4.858 5191.0 no
## 4978 1.1 93.994 -36.4 4.858 5191.0 no
## 4979 1.1 93.994 -36.4 4.858 5191.0 no
## 4980 1.1 93.994 -36.4 4.858 5191.0 no
## 4984 1.1 93.994 -36.4 4.858 5191.0 no
## 4988 1.1 93.994 -36.4 4.858 5191.0 no
## 4994 1.1 93.994 -36.4 4.858 5191.0 no
## 5001 1.1 93.994 -36.4 4.858 5191.0 no
## 5002 1.1 93.994 -36.4 4.858 5191.0 no
## 5005 1.1 93.994 -36.4 4.858 5191.0 no
## 5007 1.1 93.994 -36.4 4.858 5191.0 no
## 5011 1.1 93.994 -36.4 4.858 5191.0 no
## 5014 1.1 93.994 -36.4 4.858 5191.0 no
## 5029 1.1 93.994 -36.4 4.858 5191.0 no
## 5034 1.1 93.994 -36.4 4.858 5191.0 no
## 5036 1.1 93.994 -36.4 4.858 5191.0 no
## 5040 1.1 93.994 -36.4 4.857 5191.0 no
## 5046 1.1 93.994 -36.4 4.857 5191.0 no
## 5049 1.1 93.994 -36.4 4.857 5191.0 no
## 5055 1.1 93.994 -36.4 4.857 5191.0 no
## 5065 1.1 93.994 -36.4 4.857 5191.0 no
## 5068 1.1 93.994 -36.4 4.857 5191.0 no
## 5070 1.1 93.994 -36.4 4.857 5191.0 no
## 5080 1.1 93.994 -36.4 4.857 5191.0 no
## 5083 1.1 93.994 -36.4 4.857 5191.0 no
## 5092 1.1 93.994 -36.4 4.857 5191.0 no
## 5094 1.1 93.994 -36.4 4.857 5191.0 no
## 5095 1.1 93.994 -36.4 4.857 5191.0 no
## 5096 1.1 93.994 -36.4 4.857 5191.0 no
## 5107 1.1 93.994 -36.4 4.857 5191.0 no
## 5113 1.1 93.994 -36.4 4.857 5191.0 yes
## 5121 1.1 93.994 -36.4 4.857 5191.0 no
## 5130 1.1 93.994 -36.4 4.857 5191.0 no
## 5137 1.1 93.994 -36.4 4.857 5191.0 no
## 5140 1.1 93.994 -36.4 4.857 5191.0 no
## 5145 1.1 93.994 -36.4 4.857 5191.0 no
## 5146 1.1 93.994 -36.4 4.857 5191.0 no
## 5147 1.1 93.994 -36.4 4.857 5191.0 no
## 5152 1.1 93.994 -36.4 4.857 5191.0 no
## 5158 1.1 93.994 -36.4 4.857 5191.0 no
## 5172 1.1 93.994 -36.4 4.857 5191.0 no
## 5182 1.1 93.994 -36.4 4.857 5191.0 no
## 5185 1.1 93.994 -36.4 4.857 5191.0 no
## 5192 1.1 93.994 -36.4 4.857 5191.0 no
## 5195 1.1 93.994 -36.4 4.857 5191.0 no
## 5196 1.1 93.994 -36.4 4.857 5191.0 no
## 5197 1.1 93.994 -36.4 4.857 5191.0 no
## 5199 1.1 93.994 -36.4 4.857 5191.0 no
## 5200 1.1 93.994 -36.4 4.857 5191.0 no
## 5206 1.1 93.994 -36.4 4.857 5191.0 no
## 5208 1.1 93.994 -36.4 4.857 5191.0 no
## 5209 1.1 93.994 -36.4 4.857 5191.0 no
## 5216 1.1 93.994 -36.4 4.857 5191.0 no
## 5233 1.1 93.994 -36.4 4.857 5191.0 no
## 5242 1.1 93.994 -36.4 4.857 5191.0 no
## 5244 1.1 93.994 -36.4 4.857 5191.0 no
## 5245 1.1 93.994 -36.4 4.857 5191.0 no
## 5246 1.1 93.994 -36.4 4.857 5191.0 no
## 5247 1.1 93.994 -36.4 4.857 5191.0 no
## 5255 1.1 93.994 -36.4 4.857 5191.0 no
## 5258 1.1 93.994 -36.4 4.857 5191.0 no
## 5262 1.1 93.994 -36.4 4.857 5191.0 no
## 5274 1.1 93.994 -36.4 4.857 5191.0 no
## 5284 1.1 93.994 -36.4 4.857 5191.0 no
## 5285 1.1 93.994 -36.4 4.857 5191.0 no
## 5293 1.1 93.994 -36.4 4.857 5191.0 no
## 5295 1.1 93.994 -36.4 4.857 5191.0 no
## 5296 1.1 93.994 -36.4 4.857 5191.0 no
## 5299 1.1 93.994 -36.4 4.857 5191.0 no
## 5309 1.1 93.994 -36.4 4.857 5191.0 no
## 5310 1.1 93.994 -36.4 4.857 5191.0 no
## 5315 1.1 93.994 -36.4 4.857 5191.0 no
## 5322 1.1 93.994 -36.4 4.857 5191.0 no
## 5323 1.1 93.994 -36.4 4.857 5191.0 no
## 5325 1.1 93.994 -36.4 4.857 5191.0 no
## 5327 1.1 93.994 -36.4 4.857 5191.0 no
## 5328 1.1 93.994 -36.4 4.857 5191.0 no
## 5329 1.1 93.994 -36.4 4.857 5191.0 no
## 5330 1.1 93.994 -36.4 4.857 5191.0 yes
## 5349 1.1 93.994 -36.4 4.857 5191.0 no
## 5350 1.1 93.994 -36.4 4.857 5191.0 no
## 5353 1.1 93.994 -36.4 4.857 5191.0 no
## 5356 1.1 93.994 -36.4 4.857 5191.0 no
## 5357 1.1 93.994 -36.4 4.857 5191.0 no
## 5358 1.1 93.994 -36.4 4.857 5191.0 no
## 5361 1.1 93.994 -36.4 4.857 5191.0 no
## 5362 1.1 93.994 -36.4 4.857 5191.0 no
## 5368 1.1 93.994 -36.4 4.857 5191.0 no
## 5376 1.1 93.994 -36.4 4.857 5191.0 no
## 5379 1.1 93.994 -36.4 4.857 5191.0 no
## 5380 1.1 93.994 -36.4 4.857 5191.0 no
## 5394 1.1 93.994 -36.4 4.857 5191.0 no
## 5402 1.1 93.994 -36.4 4.857 5191.0 no
## 5407 1.1 93.994 -36.4 4.857 5191.0 no
## 5419 1.1 93.994 -36.4 4.857 5191.0 no
## 5422 1.1 93.994 -36.4 4.857 5191.0 no
## 5428 1.1 93.994 -36.4 4.857 5191.0 no
## 5433 1.1 93.994 -36.4 4.857 5191.0 no
## 5459 1.1 93.994 -36.4 4.857 5191.0 no
## 5464 1.1 93.994 -36.4 4.857 5191.0 no
## 5471 1.1 93.994 -36.4 4.857 5191.0 no
## 5473 1.1 93.994 -36.4 4.857 5191.0 no
## 5478 1.1 93.994 -36.4 4.857 5191.0 no
## 5480 1.1 93.994 -36.4 4.857 5191.0 no
## 5481 1.1 93.994 -36.4 4.857 5191.0 no
## 5483 1.1 93.994 -36.4 4.857 5191.0 no
## 5486 1.1 93.994 -36.4 4.857 5191.0 no
## 5489 1.1 93.994 -36.4 4.857 5191.0 no
## 5500 1.1 93.994 -36.4 4.857 5191.0 no
## 5504 1.1 93.994 -36.4 4.857 5191.0 no
## 5512 1.1 93.994 -36.4 4.857 5191.0 no
## 5513 1.1 93.994 -36.4 4.857 5191.0 no
## 5516 1.1 93.994 -36.4 4.857 5191.0 no
## 5519 1.1 93.994 -36.4 4.857 5191.0 no
## 5522 1.1 93.994 -36.4 4.857 5191.0 no
## 5526 1.1 93.994 -36.4 4.857 5191.0 no
## 5530 1.1 93.994 -36.4 4.857 5191.0 no
## 5536 1.1 93.994 -36.4 4.857 5191.0 no
## 5544 1.1 93.994 -36.4 4.857 5191.0 no
## 5545 1.1 93.994 -36.4 4.857 5191.0 no
## 5556 1.1 93.994 -36.4 4.857 5191.0 no
## 5557 1.1 93.994 -36.4 4.857 5191.0 no
## 5558 1.1 93.994 -36.4 4.857 5191.0 no
## 5563 1.1 93.994 -36.4 4.857 5191.0 no
## 5566 1.1 93.994 -36.4 4.857 5191.0 no
## 5567 1.1 93.994 -36.4 4.857 5191.0 no
## 5568 1.1 93.994 -36.4 4.857 5191.0 no
## 5575 1.1 93.994 -36.4 4.857 5191.0 no
## 5576 1.1 93.994 -36.4 4.857 5191.0 no
## 5581 1.1 93.994 -36.4 4.857 5191.0 no
## 5586 1.1 93.994 -36.4 4.857 5191.0 no
## 5595 1.1 93.994 -36.4 4.857 5191.0 no
## 5602 1.1 93.994 -36.4 4.857 5191.0 no
## 5607 1.1 93.994 -36.4 4.857 5191.0 no
## 5611 1.1 93.994 -36.4 4.857 5191.0 no
## 5612 1.1 93.994 -36.4 4.857 5191.0 no
## 5613 1.1 93.994 -36.4 4.857 5191.0 no
## 5614 1.1 93.994 -36.4 4.857 5191.0 yes
## 5616 1.1 93.994 -36.4 4.857 5191.0 no
## 5626 1.1 93.994 -36.4 4.857 5191.0 no
## 5635 1.1 93.994 -36.4 4.857 5191.0 no
## 5636 1.1 93.994 -36.4 4.857 5191.0 no
## 5641 1.1 93.994 -36.4 4.857 5191.0 no
## 5643 1.1 93.994 -36.4 4.857 5191.0 no
## 5644 1.1 93.994 -36.4 4.857 5191.0 no
## 5654 1.1 93.994 -36.4 4.857 5191.0 no
## 5656 1.1 93.994 -36.4 4.857 5191.0 no
## 5658 1.1 93.994 -36.4 4.857 5191.0 no
## 5662 1.1 93.994 -36.4 4.857 5191.0 no
## 5678 1.1 93.994 -36.4 4.857 5191.0 no
## 5680 1.1 93.994 -36.4 4.857 5191.0 no
## 5684 1.1 93.994 -36.4 4.857 5191.0 no
## 5687 1.1 93.994 -36.4 4.857 5191.0 no
## 5690 1.1 93.994 -36.4 4.857 5191.0 no
## 5702 1.1 93.994 -36.4 4.857 5191.0 no
## 5703 1.1 93.994 -36.4 4.857 5191.0 no
## 5709 1.1 93.994 -36.4 4.857 5191.0 no
## 5710 1.1 93.994 -36.4 4.857 5191.0 no
## 5711 1.1 93.994 -36.4 4.857 5191.0 no
## 5715 1.1 93.994 -36.4 4.857 5191.0 no
## 5720 1.1 93.994 -36.4 4.857 5191.0 no
## 5725 1.1 93.994 -36.4 4.857 5191.0 no
## 5726 1.1 93.994 -36.4 4.857 5191.0 no
## 5731 1.1 93.994 -36.4 4.857 5191.0 no
## 5741 1.1 93.994 -36.4 4.857 5191.0 no
## 5744 1.1 93.994 -36.4 4.857 5191.0 no
## 5747 1.1 93.994 -36.4 4.857 5191.0 no
## 5754 1.1 93.994 -36.4 4.857 5191.0 no
## 5756 1.1 93.994 -36.4 4.857 5191.0 no
## 5760 1.1 93.994 -36.4 4.857 5191.0 no
## 5761 1.1 93.994 -36.4 4.857 5191.0 no
## 5767 1.1 93.994 -36.4 4.857 5191.0 no
## 5772 1.1 93.994 -36.4 4.857 5191.0 no
## 5783 1.1 93.994 -36.4 4.857 5191.0 no
## 5784 1.1 93.994 -36.4 4.857 5191.0 no
## 5788 1.1 93.994 -36.4 4.857 5191.0 no
## 5790 1.1 93.994 -36.4 4.857 5191.0 no
## 5796 1.1 93.994 -36.4 4.857 5191.0 no
## 5800 1.1 93.994 -36.4 4.857 5191.0 no
## 5802 1.1 93.994 -36.4 4.857 5191.0 no
## 5803 1.1 93.994 -36.4 4.857 5191.0 no
## 5809 1.1 93.994 -36.4 4.857 5191.0 no
## 5812 1.1 93.994 -36.4 4.857 5191.0 no
## 5815 1.1 93.994 -36.4 4.857 5191.0 no
## 5816 1.1 93.994 -36.4 4.857 5191.0 no
## 5827 1.1 93.994 -36.4 4.857 5191.0 no
## 5834 1.1 93.994 -36.4 4.857 5191.0 no
## 5844 1.1 93.994 -36.4 4.857 5191.0 no
## 5851 1.1 93.994 -36.4 4.857 5191.0 yes
## 5853 1.1 93.994 -36.4 4.857 5191.0 yes
## 5856 1.1 93.994 -36.4 4.857 5191.0 no
## 5860 1.1 93.994 -36.4 4.857 5191.0 no
## 5861 1.1 93.994 -36.4 4.857 5191.0 no
## 5862 1.1 93.994 -36.4 4.857 5191.0 no
## 5868 1.1 93.994 -36.4 4.857 5191.0 no
## 5869 1.1 93.994 -36.4 4.857 5191.0 no
## 5870 1.1 93.994 -36.4 4.857 5191.0 no
## 5873 1.1 93.994 -36.4 4.857 5191.0 no
## 5878 1.1 93.994 -36.4 4.857 5191.0 no
## 5880 1.1 93.994 -36.4 4.857 5191.0 no
## 5882 1.1 93.994 -36.4 4.857 5191.0 no
## 5889 1.1 93.994 -36.4 4.857 5191.0 no
## 5896 1.1 93.994 -36.4 4.857 5191.0 no
## 5900 1.1 93.994 -36.4 4.857 5191.0 no
## 5911 1.1 93.994 -36.4 4.857 5191.0 no
## 5912 1.1 93.994 -36.4 4.857 5191.0 no
## 5917 1.1 93.994 -36.4 4.857 5191.0 no
## 5919 1.1 93.994 -36.4 4.857 5191.0 no
## 5922 1.1 93.994 -36.4 4.857 5191.0 no
## 5923 1.1 93.994 -36.4 4.857 5191.0 no
## 5924 1.1 93.994 -36.4 4.857 5191.0 no
## 5932 1.1 93.994 -36.4 4.857 5191.0 no
## 5946 1.1 93.994 -36.4 4.857 5191.0 no
## 5948 1.1 93.994 -36.4 4.857 5191.0 no
## 5949 1.1 93.994 -36.4 4.857 5191.0 yes
## 5951 1.1 93.994 -36.4 4.857 5191.0 no
## 5952 1.1 93.994 -36.4 4.857 5191.0 no
## 5956 1.1 93.994 -36.4 4.857 5191.0 no
## 5957 1.1 93.994 -36.4 4.857 5191.0 no
## 5958 1.1 93.994 -36.4 4.857 5191.0 no
## 5959 1.1 93.994 -36.4 4.857 5191.0 no
## 5961 1.1 93.994 -36.4 4.857 5191.0 no
## 5962 1.1 93.994 -36.4 4.857 5191.0 no
## 5967 1.1 93.994 -36.4 4.857 5191.0 no
## 5968 1.1 93.994 -36.4 4.857 5191.0 no
## 5980 1.1 93.994 -36.4 4.857 5191.0 no
## 5981 1.1 93.994 -36.4 4.857 5191.0 no
## 5987 1.1 93.994 -36.4 4.857 5191.0 no
## 6008 1.1 93.994 -36.4 4.857 5191.0 no
## 6017 1.1 93.994 -36.4 4.857 5191.0 no
## 6018 1.1 93.994 -36.4 4.857 5191.0 no
## 6021 1.1 93.994 -36.4 4.857 5191.0 no
## 6022 1.1 93.994 -36.4 4.857 5191.0 no
## 6026 1.1 93.994 -36.4 4.857 5191.0 no
## 6031 1.1 93.994 -36.4 4.857 5191.0 no
## 6033 1.1 93.994 -36.4 4.857 5191.0 no
## 6034 1.1 93.994 -36.4 4.857 5191.0 no
## 6040 1.1 93.994 -36.4 4.857 5191.0 no
## 6047 1.1 93.994 -36.4 4.857 5191.0 no
## 6048 1.1 93.994 -36.4 4.857 5191.0 no
## 6054 1.1 93.994 -36.4 4.857 5191.0 no
## 6055 1.1 93.994 -36.4 4.857 5191.0 no
## 6057 1.1 93.994 -36.4 4.857 5191.0 no
## 6060 1.1 93.994 -36.4 4.857 5191.0 no
## 6062 1.1 93.994 -36.4 4.857 5191.0 no
## 6074 1.1 93.994 -36.4 4.857 5191.0 no
## 6077 1.1 93.994 -36.4 4.857 5191.0 no
## 6078 1.1 93.994 -36.4 4.857 5191.0 no
## 6083 1.1 93.994 -36.4 4.857 5191.0 no
## 6087 1.1 93.994 -36.4 4.857 5191.0 no
## 6088 1.1 93.994 -36.4 4.857 5191.0 no
## 6090 1.1 93.994 -36.4 4.857 5191.0 no
## 6092 1.1 93.994 -36.4 4.857 5191.0 no
## 6094 1.1 93.994 -36.4 4.857 5191.0 no
## 6101 1.1 93.994 -36.4 4.857 5191.0 no
## 6105 1.1 93.994 -36.4 4.857 5191.0 yes
## 6126 1.1 93.994 -36.4 4.857 5191.0 no
## 6128 1.1 93.994 -36.4 4.857 5191.0 no
## 6133 1.1 93.994 -36.4 4.857 5191.0 no
## 6136 1.1 93.994 -36.4 4.857 5191.0 no
## 6145 1.1 93.994 -36.4 4.857 5191.0 no
## 6146 1.1 93.994 -36.4 4.857 5191.0 no
## 6160 1.1 93.994 -36.4 4.857 5191.0 no
## 6168 1.1 93.994 -36.4 4.857 5191.0 no
## 6174 1.1 93.994 -36.4 4.857 5191.0 no
## 6184 1.1 93.994 -36.4 4.857 5191.0 no
## 6188 1.1 93.994 -36.4 4.857 5191.0 no
## 6189 1.1 93.994 -36.4 4.857 5191.0 no
## 6195 1.1 93.994 -36.4 4.857 5191.0 no
## 6196 1.1 93.994 -36.4 4.857 5191.0 no
## 6198 1.1 93.994 -36.4 4.857 5191.0 no
## 6201 1.1 93.994 -36.4 4.857 5191.0 no
## 6204 1.1 93.994 -36.4 4.857 5191.0 no
## 6205 1.1 93.994 -36.4 4.857 5191.0 no
## 6216 1.1 93.994 -36.4 4.857 5191.0 no
## 6218 1.1 93.994 -36.4 4.857 5191.0 no
## 6221 1.1 93.994 -36.4 4.857 5191.0 no
## 6224 1.1 93.994 -36.4 4.857 5191.0 no
## 6230 1.1 93.994 -36.4 4.857 5191.0 no
## 6240 1.1 93.994 -36.4 4.857 5191.0 no
## 6244 1.1 93.994 -36.4 4.857 5191.0 no
## 6248 1.1 93.994 -36.4 4.857 5191.0 no
## 6249 1.1 93.994 -36.4 4.857 5191.0 no
## 6251 1.1 93.994 -36.4 4.857 5191.0 no
## 6255 1.1 93.994 -36.4 4.857 5191.0 no
## 6260 1.1 93.994 -36.4 4.857 5191.0 no
## 6268 1.1 93.994 -36.4 4.857 5191.0 no
## 6280 1.1 93.994 -36.4 4.857 5191.0 no
## 6281 1.1 93.994 -36.4 4.857 5191.0 yes
## 6284 1.1 93.994 -36.4 4.857 5191.0 no
## 6287 1.1 93.994 -36.4 4.857 5191.0 no
## 6293 1.1 93.994 -36.4 4.857 5191.0 no
## 6295 1.1 93.994 -36.4 4.857 5191.0 no
## 6297 1.1 93.994 -36.4 4.857 5191.0 no
## 6300 1.1 93.994 -36.4 4.857 5191.0 no
## 6305 1.1 93.994 -36.4 4.857 5191.0 no
## 6307 1.1 93.994 -36.4 4.857 5191.0 no
## 6308 1.1 93.994 -36.4 4.857 5191.0 no
## 6311 1.1 93.994 -36.4 4.857 5191.0 no
## 6317 1.1 93.994 -36.4 4.857 5191.0 no
## 6331 1.1 93.994 -36.4 4.857 5191.0 no
## 6332 1.1 93.994 -36.4 4.857 5191.0 no
## 6339 1.1 93.994 -36.4 4.857 5191.0 no
## 6341 1.1 93.994 -36.4 4.857 5191.0 no
## 6342 1.1 93.994 -36.4 4.857 5191.0 no
## 6343 1.1 93.994 -36.4 4.857 5191.0 no
## 6344 1.1 93.994 -36.4 4.857 5191.0 no
## 6346 1.1 93.994 -36.4 4.857 5191.0 no
## 6350 1.1 93.994 -36.4 4.857 5191.0 no
## 6357 1.1 93.994 -36.4 4.857 5191.0 no
## 6371 1.1 93.994 -36.4 4.857 5191.0 no
## 6377 1.1 93.994 -36.4 4.857 5191.0 no
## 6380 1.1 93.994 -36.4 4.857 5191.0 no
## 6382 1.1 93.994 -36.4 4.857 5191.0 no
## 6383 1.1 93.994 -36.4 4.857 5191.0 no
## 6387 1.1 93.994 -36.4 4.857 5191.0 no
## 6397 1.1 93.994 -36.4 4.857 5191.0 no
## 6413 1.1 93.994 -36.4 4.857 5191.0 no
## 6415 1.1 93.994 -36.4 4.857 5191.0 no
## 6417 1.1 93.994 -36.4 4.857 5191.0 no
## 6430 1.1 93.994 -36.4 4.857 5191.0 no
## 6432 1.1 93.994 -36.4 4.857 5191.0 no
## 6436 1.1 93.994 -36.4 4.857 5191.0 no
## 6439 1.1 93.994 -36.4 4.857 5191.0 no
## 6441 1.1 93.994 -36.4 4.857 5191.0 no
## 6442 1.1 93.994 -36.4 4.857 5191.0 no
## 6444 1.1 93.994 -36.4 4.857 5191.0 no
## 6448 1.1 93.994 -36.4 4.857 5191.0 no
## 6450 1.1 93.994 -36.4 4.857 5191.0 no
## 6461 1.1 93.994 -36.4 4.857 5191.0 no
## 6473 1.1 93.994 -36.4 4.857 5191.0 no
## 6475 1.1 93.994 -36.4 4.857 5191.0 no
## 6480 1.1 93.994 -36.4 4.857 5191.0 no
## 6481 1.1 93.994 -36.4 4.857 5191.0 no
## 6490 1.1 93.994 -36.4 4.857 5191.0 no
## 6492 1.1 93.994 -36.4 4.857 5191.0 no
## 6496 1.1 93.994 -36.4 4.857 5191.0 no
## 6498 1.1 93.994 -36.4 4.857 5191.0 no
## 6499 1.1 93.994 -36.4 4.857 5191.0 no
## 6501 1.1 93.994 -36.4 4.857 5191.0 no
## 6512 1.1 93.994 -36.4 4.857 5191.0 no
## 6513 1.1 93.994 -36.4 4.857 5191.0 no
## 6516 1.1 93.994 -36.4 4.857 5191.0 no
## 6518 1.1 93.994 -36.4 4.857 5191.0 no
## 6520 1.1 93.994 -36.4 4.857 5191.0 no
## 6524 1.1 93.994 -36.4 4.857 5191.0 no
## 6527 1.1 93.994 -36.4 4.857 5191.0 no
## 6532 1.1 93.994 -36.4 4.857 5191.0 yes
## 6544 1.1 93.994 -36.4 4.857 5191.0 no
## 6549 1.1 93.994 -36.4 4.857 5191.0 no
## 6551 1.1 93.994 -36.4 4.857 5191.0 no
## 6559 1.1 93.994 -36.4 4.857 5191.0 no
## 6561 1.1 93.994 -36.4 4.857 5191.0 no
## 6564 1.1 93.994 -36.4 4.857 5191.0 no
## 6566 1.1 93.994 -36.4 4.857 5191.0 no
## 6567 1.1 93.994 -36.4 4.857 5191.0 no
## 6576 1.1 93.994 -36.4 4.857 5191.0 no
## 6581 1.1 93.994 -36.4 4.857 5191.0 no
## 6592 1.1 93.994 -36.4 4.857 5191.0 no
## 6597 1.1 93.994 -36.4 4.857 5191.0 no
## 6604 1.1 93.994 -36.4 4.857 5191.0 no
## 6605 1.1 93.994 -36.4 4.857 5191.0 no
## 6608 1.1 93.994 -36.4 4.857 5191.0 no
## 6618 1.1 93.994 -36.4 4.857 5191.0 no
## 6619 1.1 93.994 -36.4 4.857 5191.0 no
## 6621 1.1 93.994 -36.4 4.857 5191.0 no
## 6629 1.1 93.994 -36.4 4.857 5191.0 no
## 6637 1.1 93.994 -36.4 4.857 5191.0 no
## 6638 1.1 93.994 -36.4 4.857 5191.0 no
## 6639 1.1 93.994 -36.4 4.857 5191.0 no
## 6646 1.1 93.994 -36.4 4.857 5191.0 no
## 6651 1.1 93.994 -36.4 4.857 5191.0 no
## 6652 1.1 93.994 -36.4 4.857 5191.0 no
## 6655 1.1 93.994 -36.4 4.857 5191.0 no
## 6666 1.1 93.994 -36.4 4.857 5191.0 no
## 6672 1.1 93.994 -36.4 4.857 5191.0 no
## 6674 1.1 93.994 -36.4 4.857 5191.0 no
## 6676 1.1 93.994 -36.4 4.857 5191.0 no
## 6677 1.1 93.994 -36.4 4.857 5191.0 no
## 6679 1.1 93.994 -36.4 4.857 5191.0 yes
## 6687 1.1 93.994 -36.4 4.857 5191.0 no
## 6688 1.1 93.994 -36.4 4.857 5191.0 no
## 6691 1.1 93.994 -36.4 4.857 5191.0 no
## 6692 1.1 93.994 -36.4 4.857 5191.0 no
## 6693 1.1 93.994 -36.4 4.857 5191.0 no
## 6698 1.1 93.994 -36.4 4.857 5191.0 no
## 6701 1.1 93.994 -36.4 4.857 5191.0 no
## 6703 1.1 93.994 -36.4 4.857 5191.0 no
## 6708 1.1 93.994 -36.4 4.857 5191.0 no
## 6713 1.1 93.994 -36.4 4.857 5191.0 no
## 6721 1.1 93.994 -36.4 4.857 5191.0 no
## 6723 1.1 93.994 -36.4 4.857 5191.0 no
## 6733 1.1 93.994 -36.4 4.857 5191.0 no
## 6736 1.1 93.994 -36.4 4.857 5191.0 no
## 6738 1.1 93.994 -36.4 4.857 5191.0 no
## 6739 1.1 93.994 -36.4 4.857 5191.0 yes
## 6741 1.1 93.994 -36.4 4.857 5191.0 no
## 6744 1.1 93.994 -36.4 4.857 5191.0 no
## 6749 1.1 93.994 -36.4 4.857 5191.0 no
## 6750 1.1 93.994 -36.4 4.857 5191.0 no
## 6752 1.1 93.994 -36.4 4.857 5191.0 no
## 6757 1.1 93.994 -36.4 4.857 5191.0 no
## 6763 1.1 93.994 -36.4 4.857 5191.0 yes
## 6767 1.1 93.994 -36.4 4.857 5191.0 no
## 6783 1.1 93.994 -36.4 4.857 5191.0 no
## 6789 1.1 93.994 -36.4 4.857 5191.0 no
## 6792 1.1 93.994 -36.4 4.857 5191.0 no
## 6794 1.1 93.994 -36.4 4.857 5191.0 no
## 6796 1.1 93.994 -36.4 4.857 5191.0 no
## 6797 1.1 93.994 -36.4 4.857 5191.0 no
## 6800 1.1 93.994 -36.4 4.857 5191.0 no
## 6809 1.1 93.994 -36.4 4.857 5191.0 no
## 6811 1.1 93.994 -36.4 4.857 5191.0 no
## 6812 1.1 93.994 -36.4 4.857 5191.0 no
## 6817 1.1 93.994 -36.4 4.857 5191.0 no
## 6824 1.1 93.994 -36.4 4.857 5191.0 no
## 6832 1.1 93.994 -36.4 4.857 5191.0 no
## 6835 1.1 93.994 -36.4 4.857 5191.0 no
## 6844 1.1 93.994 -36.4 4.857 5191.0 no
## 6845 1.1 93.994 -36.4 4.857 5191.0 no
## 6846 1.1 93.994 -36.4 4.857 5191.0 no
## 6850 1.1 93.994 -36.4 4.857 5191.0 no
## 6851 1.1 93.994 -36.4 4.857 5191.0 no
## 6855 1.1 93.994 -36.4 4.857 5191.0 no
## 6860 1.1 93.994 -36.4 4.857 5191.0 no
## 6868 1.1 93.994 -36.4 4.857 5191.0 no
## 6879 1.1 93.994 -36.4 4.857 5191.0 no
## 6883 1.1 93.994 -36.4 4.857 5191.0 no
## 6889 1.1 93.994 -36.4 4.857 5191.0 no
## 6891 1.1 93.994 -36.4 4.860 5191.0 no
## 6893 1.1 93.994 -36.4 4.860 5191.0 no
## 6897 1.1 93.994 -36.4 4.860 5191.0 no
## 6902 1.1 93.994 -36.4 4.860 5191.0 yes
## 6904 1.1 93.994 -36.4 4.860 5191.0 no
## 6912 1.1 93.994 -36.4 4.860 5191.0 no
## 6923 1.1 93.994 -36.4 4.860 5191.0 no
## 6924 1.1 93.994 -36.4 4.860 5191.0 no
## 6926 1.1 93.994 -36.4 4.860 5191.0 no
## 6932 1.1 93.994 -36.4 4.860 5191.0 no
## 6935 1.1 93.994 -36.4 4.860 5191.0 no
## 6938 1.1 93.994 -36.4 4.860 5191.0 yes
## 6940 1.1 93.994 -36.4 4.860 5191.0 no
## 6946 1.1 93.994 -36.4 4.860 5191.0 no
## 6947 1.1 93.994 -36.4 4.860 5191.0 no
## 6955 1.1 93.994 -36.4 4.860 5191.0 no
## 6956 1.1 93.994 -36.4 4.860 5191.0 no
## 6957 1.1 93.994 -36.4 4.860 5191.0 no
## 6961 1.1 93.994 -36.4 4.860 5191.0 no
## 6963 1.1 93.994 -36.4 4.860 5191.0 no
## 6965 1.1 93.994 -36.4 4.860 5191.0 no
## 6971 1.1 93.994 -36.4 4.860 5191.0 no
## 6977 1.1 93.994 -36.4 4.860 5191.0 no
## 6980 1.1 93.994 -36.4 4.860 5191.0 no
## 6995 1.1 93.994 -36.4 4.860 5191.0 no
## 7007 1.1 93.994 -36.4 4.860 5191.0 no
## 7018 1.1 93.994 -36.4 4.860 5191.0 no
## 7023 1.1 93.994 -36.4 4.860 5191.0 no
## 7036 1.1 93.994 -36.4 4.860 5191.0 no
## 7040 1.1 93.994 -36.4 4.860 5191.0 no
## 7046 1.1 93.994 -36.4 4.860 5191.0 no
## 7057 1.1 93.994 -36.4 4.860 5191.0 no
## 7069 1.1 93.994 -36.4 4.860 5191.0 no
## 7072 1.1 93.994 -36.4 4.860 5191.0 no
## 7078 1.1 93.994 -36.4 4.860 5191.0 no
## 7089 1.1 93.994 -36.4 4.860 5191.0 no
## 7091 1.1 93.994 -36.4 4.860 5191.0 no
## 7092 1.1 93.994 -36.4 4.860 5191.0 no
## 7094 1.1 93.994 -36.4 4.860 5191.0 no
## 7096 1.1 93.994 -36.4 4.860 5191.0 yes
## 7101 1.1 93.994 -36.4 4.860 5191.0 no
## 7109 1.1 93.994 -36.4 4.860 5191.0 no
## 7114 1.1 93.994 -36.4 4.860 5191.0 no
## 7117 1.1 93.994 -36.4 4.860 5191.0 no
## 7122 1.1 93.994 -36.4 4.860 5191.0 no
## 7130 1.1 93.994 -36.4 4.860 5191.0 no
## 7131 1.1 93.994 -36.4 4.860 5191.0 no
## 7136 1.1 93.994 -36.4 4.860 5191.0 yes
## 7139 1.1 93.994 -36.4 4.860 5191.0 no
## 7152 1.1 93.994 -36.4 4.860 5191.0 no
## 7153 1.1 93.994 -36.4 4.860 5191.0 no
## 7155 1.1 93.994 -36.4 4.860 5191.0 no
## 7169 1.1 93.994 -36.4 4.860 5191.0 no
## 7173 1.1 93.994 -36.4 4.860 5191.0 no
## 7181 1.1 93.994 -36.4 4.860 5191.0 no
## 7183 1.1 93.994 -36.4 4.860 5191.0 no
## 7188 1.1 93.994 -36.4 4.860 5191.0 no
## 7190 1.1 93.994 -36.4 4.860 5191.0 no
## 7195 1.1 93.994 -36.4 4.860 5191.0 no
## 7198 1.1 93.994 -36.4 4.860 5191.0 no
## 7204 1.1 93.994 -36.4 4.860 5191.0 no
## 7216 1.1 93.994 -36.4 4.860 5191.0 no
## 7226 1.1 93.994 -36.4 4.860 5191.0 no
## 7237 1.1 93.994 -36.4 4.860 5191.0 no
## 7243 1.1 93.994 -36.4 4.860 5191.0 no
## 7245 1.1 93.994 -36.4 4.860 5191.0 no
## 7247 1.1 93.994 -36.4 4.860 5191.0 no
## 7249 1.1 93.994 -36.4 4.860 5191.0 yes
## 7275 1.1 93.994 -36.4 4.860 5191.0 no
## 7276 1.1 93.994 -36.4 4.860 5191.0 no
## 7281 1.1 93.994 -36.4 4.860 5191.0 no
## 7283 1.1 93.994 -36.4 4.860 5191.0 no
## 7286 1.1 93.994 -36.4 4.860 5191.0 no
## 7292 1.1 93.994 -36.4 4.860 5191.0 no
## 7293 1.1 93.994 -36.4 4.860 5191.0 no
## 7296 1.1 93.994 -36.4 4.860 5191.0 no
## 7300 1.1 93.994 -36.4 4.860 5191.0 no
## 7305 1.1 93.994 -36.4 4.860 5191.0 no
## 7309 1.1 93.994 -36.4 4.860 5191.0 no
## 7310 1.1 93.994 -36.4 4.860 5191.0 no
## 7313 1.1 93.994 -36.4 4.860 5191.0 no
## 7317 1.1 93.994 -36.4 4.860 5191.0 no
## 7323 1.1 93.994 -36.4 4.860 5191.0 no
## 7329 1.1 93.994 -36.4 4.864 5191.0 no
## 7333 1.1 93.994 -36.4 4.864 5191.0 no
## 7334 1.1 93.994 -36.4 4.864 5191.0 no
## 7335 1.1 93.994 -36.4 4.864 5191.0 no
## 7344 1.1 93.994 -36.4 4.864 5191.0 no
## 7345 1.1 93.994 -36.4 4.864 5191.0 no
## 7347 1.1 93.994 -36.4 4.864 5191.0 no
## 7351 1.1 93.994 -36.4 4.864 5191.0 no
## 7354 1.1 93.994 -36.4 4.864 5191.0 no
## 7372 1.1 93.994 -36.4 4.864 5191.0 no
## 7373 1.1 93.994 -36.4 4.864 5191.0 no
## 7375 1.1 93.994 -36.4 4.864 5191.0 no
## 7389 1.1 93.994 -36.4 4.864 5191.0 no
## 7398 1.1 93.994 -36.4 4.864 5191.0 yes
## 7403 1.1 93.994 -36.4 4.864 5191.0 no
## 7405 1.1 93.994 -36.4 4.864 5191.0 yes
## 7406 1.1 93.994 -36.4 4.864 5191.0 no
## 7418 1.1 93.994 -36.4 4.864 5191.0 no
## 7422 1.1 93.994 -36.4 4.864 5191.0 no
## 7432 1.1 93.994 -36.4 4.864 5191.0 no
## 7433 1.1 93.994 -36.4 4.864 5191.0 no
## 7438 1.1 93.994 -36.4 4.864 5191.0 yes
## 7440 1.1 93.994 -36.4 4.864 5191.0 no
## 7441 1.1 93.994 -36.4 4.864 5191.0 no
## 7445 1.1 93.994 -36.4 4.864 5191.0 yes
## 7450 1.1 93.994 -36.4 4.864 5191.0 no
## 7451 1.1 93.994 -36.4 4.864 5191.0 no
## 7461 1.1 93.994 -36.4 4.864 5191.0 no
## 7467 1.1 93.994 -36.4 4.864 5191.0 no
## 7469 1.1 93.994 -36.4 4.864 5191.0 no
## 7471 1.1 93.994 -36.4 4.864 5191.0 yes
## 7476 1.1 93.994 -36.4 4.864 5191.0 yes
## 7478 1.1 93.994 -36.4 4.864 5191.0 no
## 7479 1.1 93.994 -36.4 4.864 5191.0 yes
## 7482 1.1 93.994 -36.4 4.864 5191.0 no
## 7486 1.1 93.994 -36.4 4.864 5191.0 no
## 7491 1.1 93.994 -36.4 4.864 5191.0 no
## 7492 1.1 93.994 -36.4 4.864 5191.0 no
## 7493 1.1 93.994 -36.4 4.864 5191.0 no
## 7497 1.1 93.994 -36.4 4.864 5191.0 no
## 7501 1.1 93.994 -36.4 4.864 5191.0 no
## 7509 1.1 93.994 -36.4 4.864 5191.0 no
## 7513 1.1 93.994 -36.4 4.864 5191.0 no
## 7514 1.1 93.994 -36.4 4.864 5191.0 no
## 7520 1.1 93.994 -36.4 4.864 5191.0 no
## 7527 1.1 93.994 -36.4 4.864 5191.0 no
## 7534 1.1 93.994 -36.4 4.864 5191.0 no
## 7536 1.1 93.994 -36.4 4.864 5191.0 no
## 7547 1.1 93.994 -36.4 4.864 5191.0 no
## 7556 1.1 93.994 -36.4 4.864 5191.0 yes
## 7560 1.1 93.994 -36.4 4.864 5191.0 no
## 7563 1.1 93.994 -36.4 4.864 5191.0 no
## 7564 1.1 93.994 -36.4 4.864 5191.0 no
## 7571 1.1 93.994 -36.4 4.864 5191.0 no
## 7573 1.1 93.994 -36.4 4.864 5191.0 no
## 7578 1.1 93.994 -36.4 4.864 5191.0 no
## 7582 1.1 93.994 -36.4 4.864 5191.0 no
## 7583 1.1 93.994 -36.4 4.864 5191.0 no
## 7584 1.1 93.994 -36.4 4.864 5191.0 no
## 7587 1.1 93.994 -36.4 4.864 5191.0 no
## 7603 1.1 93.994 -36.4 4.864 5191.0 no
## 7606 1.1 93.994 -36.4 4.864 5191.0 no
## 7614 1.1 93.994 -36.4 4.864 5191.0 yes
## 7616 1.1 93.994 -36.4 4.864 5191.0 no
## 7632 1.1 93.994 -36.4 4.864 5191.0 no
## 7634 1.1 93.994 -36.4 4.864 5191.0 no
## 7641 1.1 93.994 -36.4 4.864 5191.0 no
## 7644 1.1 93.994 -36.4 4.864 5191.0 no
## 7656 1.1 93.994 -36.4 4.864 5191.0 no
## 7691 1.1 93.994 -36.4 4.864 5191.0 no
## 7695 1.1 93.994 -36.4 4.864 5191.0 no
## 7701 1.1 93.994 -36.4 4.864 5191.0 no
## 7711 1.1 93.994 -36.4 4.864 5191.0 no
## 7716 1.1 93.994 -36.4 4.864 5191.0 no
## 7717 1.1 93.994 -36.4 4.864 5191.0 no
## 7730 1.1 93.994 -36.4 4.864 5191.0 no
## 7741 1.1 93.994 -36.4 4.864 5191.0 no
## 7749 1.1 93.994 -36.4 4.864 5191.0 no
## 7750 1.1 93.994 -36.4 4.864 5191.0 no
## 7755 1.1 93.994 -36.4 4.864 5191.0 no
## 7758 1.1 93.994 -36.4 4.864 5191.0 no
## 7760 1.1 93.994 -36.4 4.864 5191.0 no
## 7761 1.1 93.994 -36.4 4.864 5191.0 no
## 7772 1.4 94.465 -41.8 4.865 5228.1 no
## 7782 1.4 94.465 -41.8 4.865 5228.1 no
## 7784 1.4 94.465 -41.8 4.865 5228.1 no
## 7790 1.4 94.465 -41.8 4.865 5228.1 no
## 7793 1.4 94.465 -41.8 4.865 5228.1 no
## 7794 1.4 94.465 -41.8 4.865 5228.1 yes
## 7798 1.4 94.465 -41.8 4.865 5228.1 no
## 7802 1.4 94.465 -41.8 4.865 5228.1 no
## 7815 1.4 94.465 -41.8 4.865 5228.1 yes
## 7818 1.4 94.465 -41.8 4.865 5228.1 yes
## 7826 1.4 94.465 -41.8 4.865 5228.1 no
## 7828 1.4 94.465 -41.8 4.865 5228.1 no
## 7834 1.4 94.465 -41.8 4.865 5228.1 no
## 7846 1.4 94.465 -41.8 4.865 5228.1 no
## 7847 1.4 94.465 -41.8 4.865 5228.1 no
## 7848 1.4 94.465 -41.8 4.865 5228.1 no
## 7851 1.4 94.465 -41.8 4.865 5228.1 no
## 7859 1.4 94.465 -41.8 4.865 5228.1 no
## 7860 1.4 94.465 -41.8 4.865 5228.1 no
## 7861 1.4 94.465 -41.8 4.865 5228.1 no
## 7862 1.4 94.465 -41.8 4.865 5228.1 no
## 7871 1.4 94.465 -41.8 4.865 5228.1 no
## 7872 1.4 94.465 -41.8 4.865 5228.1 no
## 7876 1.4 94.465 -41.8 4.865 5228.1 no
## 7884 1.4 94.465 -41.8 4.865 5228.1 no
## 7913 1.4 94.465 -41.8 4.865 5228.1 no
## 7916 1.4 94.465 -41.8 4.865 5228.1 no
## 7934 1.4 94.465 -41.8 4.865 5228.1 yes
## 7937 1.4 94.465 -41.8 4.865 5228.1 no
## 7939 1.4 94.465 -41.8 4.865 5228.1 no
## 7940 1.4 94.465 -41.8 4.865 5228.1 no
## 7941 1.4 94.465 -41.8 4.865 5228.1 no
## 7945 1.4 94.465 -41.8 4.865 5228.1 no
## 7946 1.4 94.465 -41.8 4.865 5228.1 no
## 7957 1.4 94.465 -41.8 4.865 5228.1 no
## 7960 1.4 94.465 -41.8 4.865 5228.1 no
## 7962 1.4 94.465 -41.8 4.865 5228.1 no
## 7969 1.4 94.465 -41.8 4.865 5228.1 no
## 7970 1.4 94.465 -41.8 4.865 5228.1 no
## 7971 1.4 94.465 -41.8 4.865 5228.1 no
## 7973 1.4 94.465 -41.8 4.865 5228.1 no
## 7976 1.4 94.465 -41.8 4.865 5228.1 no
## 7981 1.4 94.465 -41.8 4.865 5228.1 no
## 7986 1.4 94.465 -41.8 4.865 5228.1 no
## 7990 1.4 94.465 -41.8 4.865 5228.1 no
## 8011 1.4 94.465 -41.8 4.865 5228.1 no
## 8012 1.4 94.465 -41.8 4.865 5228.1 no
## 8015 1.4 94.465 -41.8 4.865 5228.1 yes
## 8016 1.4 94.465 -41.8 4.865 5228.1 no
## 8026 1.4 94.465 -41.8 4.865 5228.1 no
## 8031 1.4 94.465 -41.8 4.865 5228.1 no
## 8035 1.4 94.465 -41.8 4.865 5228.1 no
## 8037 1.4 94.465 -41.8 4.865 5228.1 no
## 8043 1.4 94.465 -41.8 4.865 5228.1 no
## 8044 1.4 94.465 -41.8 4.865 5228.1 no
## 8048 1.4 94.465 -41.8 4.865 5228.1 no
## 8049 1.4 94.465 -41.8 4.865 5228.1 no
## 8052 1.4 94.465 -41.8 4.865 5228.1 no
## 8053 1.4 94.465 -41.8 4.865 5228.1 no
## 8055 1.4 94.465 -41.8 4.865 5228.1 no
## 8056 1.4 94.465 -41.8 4.865 5228.1 no
## 8061 1.4 94.465 -41.8 4.865 5228.1 no
## 8063 1.4 94.465 -41.8 4.865 5228.1 yes
## 8071 1.4 94.465 -41.8 4.865 5228.1 no
## 8073 1.4 94.465 -41.8 4.865 5228.1 no
## 8081 1.4 94.465 -41.8 4.865 5228.1 no
## 8084 1.4 94.465 -41.8 4.865 5228.1 no
## 8091 1.4 94.465 -41.8 4.865 5228.1 no
## 8099 1.4 94.465 -41.8 4.865 5228.1 no
## 8100 1.4 94.465 -41.8 4.865 5228.1 no
## 8102 1.4 94.465 -41.8 4.865 5228.1 no
## 8103 1.4 94.465 -41.8 4.865 5228.1 no
## 8104 1.4 94.465 -41.8 4.865 5228.1 no
## 8107 1.4 94.465 -41.8 4.865 5228.1 no
## 8108 1.4 94.465 -41.8 4.865 5228.1 no
## 8114 1.4 94.465 -41.8 4.865 5228.1 no
## 8119 1.4 94.465 -41.8 4.865 5228.1 no
## 8120 1.4 94.465 -41.8 4.865 5228.1 no
## 8128 1.4 94.465 -41.8 4.865 5228.1 no
## 8129 1.4 94.465 -41.8 4.865 5228.1 no
## 8132 1.4 94.465 -41.8 4.865 5228.1 no
## 8138 1.4 94.465 -41.8 4.864 5228.1 no
## 8145 1.4 94.465 -41.8 4.864 5228.1 no
## 8159 1.4 94.465 -41.8 4.864 5228.1 no
## 8162 1.4 94.465 -41.8 4.864 5228.1 no
## 8165 1.4 94.465 -41.8 4.864 5228.1 no
## 8166 1.4 94.465 -41.8 4.864 5228.1 no
## 8172 1.4 94.465 -41.8 4.864 5228.1 no
## 8173 1.4 94.465 -41.8 4.864 5228.1 yes
## 8188 1.4 94.465 -41.8 4.864 5228.1 no
## 8190 1.4 94.465 -41.8 4.864 5228.1 no
## 8194 1.4 94.465 -41.8 4.864 5228.1 no
## 8197 1.4 94.465 -41.8 4.864 5228.1 yes
## 8206 1.4 94.465 -41.8 4.864 5228.1 no
## 8236 1.4 94.465 -41.8 4.864 5228.1 no
## 8237 1.4 94.465 -41.8 4.864 5228.1 no
## 8244 1.4 94.465 -41.8 4.864 5228.1 no
## 8246 1.4 94.465 -41.8 4.864 5228.1 no
## 8247 1.4 94.465 -41.8 4.864 5228.1 yes
## 8255 1.4 94.465 -41.8 4.864 5228.1 no
## 8263 1.4 94.465 -41.8 4.864 5228.1 no
## 8264 1.4 94.465 -41.8 4.864 5228.1 no
## 8265 1.4 94.465 -41.8 4.864 5228.1 no
## 8276 1.4 94.465 -41.8 4.864 5228.1 no
## 8277 1.4 94.465 -41.8 4.864 5228.1 yes
## 8280 1.4 94.465 -41.8 4.864 5228.1 yes
## 8287 1.4 94.465 -41.8 4.864 5228.1 no
## 8290 1.4 94.465 -41.8 4.864 5228.1 no
## 8294 1.4 94.465 -41.8 4.864 5228.1 no
## 8305 1.4 94.465 -41.8 4.864 5228.1 no
## 8306 1.4 94.465 -41.8 4.864 5228.1 no
## 8307 1.4 94.465 -41.8 4.864 5228.1 no
## 8309 1.4 94.465 -41.8 4.864 5228.1 no
## 8319 1.4 94.465 -41.8 4.864 5228.1 no
## 8326 1.4 94.465 -41.8 4.864 5228.1 no
## 8327 1.4 94.465 -41.8 4.864 5228.1 no
## 8329 1.4 94.465 -41.8 4.864 5228.1 no
## 8338 1.4 94.465 -41.8 4.864 5228.1 no
## 8342 1.4 94.465 -41.8 4.864 5228.1 no
## 8351 1.4 94.465 -41.8 4.864 5228.1 yes
## 8355 1.4 94.465 -41.8 4.864 5228.1 no
## 8357 1.4 94.465 -41.8 4.864 5228.1 no
## 8360 1.4 94.465 -41.8 4.864 5228.1 no
## 8362 1.4 94.465 -41.8 4.864 5228.1 no
## 8364 1.4 94.465 -41.8 4.864 5228.1 no
## 8371 1.4 94.465 -41.8 4.864 5228.1 no
## 8377 1.4 94.465 -41.8 4.864 5228.1 no
## 8379 1.4 94.465 -41.8 4.864 5228.1 no
## 8381 1.4 94.465 -41.8 4.864 5228.1 no
## 8390 1.4 94.465 -41.8 4.864 5228.1 no
## 8393 1.4 94.465 -41.8 4.864 5228.1 no
## 8398 1.4 94.465 -41.8 4.864 5228.1 no
## 8401 1.4 94.465 -41.8 4.864 5228.1 no
## 8402 1.4 94.465 -41.8 4.864 5228.1 no
## 8406 1.4 94.465 -41.8 4.864 5228.1 no
## 8407 1.4 94.465 -41.8 4.864 5228.1 no
## 8419 1.4 94.465 -41.8 4.864 5228.1 no
## 8432 1.4 94.465 -41.8 4.864 5228.1 no
## 8434 1.4 94.465 -41.8 4.864 5228.1 no
## 8438 1.4 94.465 -41.8 4.864 5228.1 no
## 8439 1.4 94.465 -41.8 4.864 5228.1 no
## 8441 1.4 94.465 -41.8 4.864 5228.1 no
## 8444 1.4 94.465 -41.8 4.864 5228.1 no
## 8460 1.4 94.465 -41.8 4.864 5228.1 no
## 8476 1.4 94.465 -41.8 4.864 5228.1 no
## 8478 1.4 94.465 -41.8 4.864 5228.1 no
## 8485 1.4 94.465 -41.8 4.864 5228.1 no
## 8494 1.4 94.465 -41.8 4.864 5228.1 no
## 8501 1.4 94.465 -41.8 4.864 5228.1 no
## 8502 1.4 94.465 -41.8 4.864 5228.1 no
## 8521 1.4 94.465 -41.8 4.864 5228.1 no
## 8522 1.4 94.465 -41.8 4.864 5228.1 no
## 8524 1.4 94.465 -41.8 4.864 5228.1 no
## 8526 1.4 94.465 -41.8 4.864 5228.1 no
## 8527 1.4 94.465 -41.8 4.864 5228.1 no
## 8529 1.4 94.465 -41.8 4.864 5228.1 yes
## 8541 1.4 94.465 -41.8 4.864 5228.1 no
## 8547 1.4 94.465 -41.8 4.864 5228.1 no
## 8553 1.4 94.465 -41.8 4.864 5228.1 no
## 8561 1.4 94.465 -41.8 4.864 5228.1 no
## 8566 1.4 94.465 -41.8 4.864 5228.1 no
## 8575 1.4 94.465 -41.8 4.864 5228.1 no
## 8584 1.4 94.465 -41.8 4.864 5228.1 no
## 8592 1.4 94.465 -41.8 4.864 5228.1 no
## 8593 1.4 94.465 -41.8 4.864 5228.1 no
## 8602 1.4 94.465 -41.8 4.864 5228.1 no
## 8621 1.4 94.465 -41.8 4.864 5228.1 no
## 8623 1.4 94.465 -41.8 4.864 5228.1 no
## 8624 1.4 94.465 -41.8 4.864 5228.1 no
## 8632 1.4 94.465 -41.8 4.864 5228.1 no
## 8637 1.4 94.465 -41.8 4.864 5228.1 no
## 8641 1.4 94.465 -41.8 4.864 5228.1 no
## 8642 1.4 94.465 -41.8 4.864 5228.1 no
## 8645 1.4 94.465 -41.8 4.864 5228.1 no
## 8650 1.4 94.465 -41.8 4.864 5228.1 no
## 8651 1.4 94.465 -41.8 4.864 5228.1 no
## 8666 1.4 94.465 -41.8 4.864 5228.1 no
## 8673 1.4 94.465 -41.8 4.864 5228.1 no
## 8680 1.4 94.465 -41.8 4.864 5228.1 no
## 8681 1.4 94.465 -41.8 4.864 5228.1 no
## 8687 1.4 94.465 -41.8 4.864 5228.1 no
## 8688 1.4 94.465 -41.8 4.864 5228.1 no
## 8692 1.4 94.465 -41.8 4.864 5228.1 no
## 8694 1.4 94.465 -41.8 4.864 5228.1 no
## 8701 1.4 94.465 -41.8 4.864 5228.1 no
## 8706 1.4 94.465 -41.8 4.864 5228.1 no
## 8711 1.4 94.465 -41.8 4.864 5228.1 no
## 8721 1.4 94.465 -41.8 4.864 5228.1 no
## 8724 1.4 94.465 -41.8 4.864 5228.1 no
## 8725 1.4 94.465 -41.8 4.864 5228.1 no
## 8729 1.4 94.465 -41.8 4.864 5228.1 no
## 8738 1.4 94.465 -41.8 4.864 5228.1 no
## 8742 1.4 94.465 -41.8 4.866 5228.1 no
## 8746 1.4 94.465 -41.8 4.866 5228.1 no
## 8759 1.4 94.465 -41.8 4.866 5228.1 no
## 8767 1.4 94.465 -41.8 4.866 5228.1 no
## 8777 1.4 94.465 -41.8 4.866 5228.1 no
## 8781 1.4 94.465 -41.8 4.866 5228.1 no
## 8783 1.4 94.465 -41.8 4.866 5228.1 no
## 8806 1.4 94.465 -41.8 4.866 5228.1 no
## 8809 1.4 94.465 -41.8 4.866 5228.1 no
## 8810 1.4 94.465 -41.8 4.866 5228.1 no
## 8815 1.4 94.465 -41.8 4.866 5228.1 no
## 8818 1.4 94.465 -41.8 4.866 5228.1 yes
## 8829 1.4 94.465 -41.8 4.866 5228.1 no
## 8831 1.4 94.465 -41.8 4.866 5228.1 no
## 8832 1.4 94.465 -41.8 4.866 5228.1 no
## 8837 1.4 94.465 -41.8 4.866 5228.1 no
## 8844 1.4 94.465 -41.8 4.866 5228.1 no
## 8852 1.4 94.465 -41.8 4.866 5228.1 no
## 8862 1.4 94.465 -41.8 4.866 5228.1 no
## 8864 1.4 94.465 -41.8 4.866 5228.1 no
## 8873 1.4 94.465 -41.8 4.866 5228.1 no
## 8878 1.4 94.465 -41.8 4.866 5228.1 no
## 8880 1.4 94.465 -41.8 4.866 5228.1 no
## 8882 1.4 94.465 -41.8 4.866 5228.1 no
## 8888 1.4 94.465 -41.8 4.866 5228.1 no
## 8890 1.4 94.465 -41.8 4.866 5228.1 no
## 8893 1.4 94.465 -41.8 4.866 5228.1 no
## 8896 1.4 94.465 -41.8 4.866 5228.1 no
## 8914 1.4 94.465 -41.8 4.866 5228.1 yes
## 8915 1.4 94.465 -41.8 4.866 5228.1 no
## 8920 1.4 94.465 -41.8 4.866 5228.1 no
## 8925 1.4 94.465 -41.8 4.866 5228.1 no
## 8934 1.4 94.465 -41.8 4.866 5228.1 no
## 8937 1.4 94.465 -41.8 4.866 5228.1 no
## 8940 1.4 94.465 -41.8 4.866 5228.1 no
## 8948 1.4 94.465 -41.8 4.866 5228.1 no
## 8950 1.4 94.465 -41.8 4.866 5228.1 no
## 8951 1.4 94.465 -41.8 4.866 5228.1 no
## 8954 1.4 94.465 -41.8 4.866 5228.1 no
## 8955 1.4 94.465 -41.8 4.866 5228.1 no
## 8956 1.4 94.465 -41.8 4.866 5228.1 no
## 8959 1.4 94.465 -41.8 4.866 5228.1 yes
## 8960 1.4 94.465 -41.8 4.866 5228.1 no
## 8966 1.4 94.465 -41.8 4.866 5228.1 no
## 8970 1.4 94.465 -41.8 4.866 5228.1 no
## 8978 1.4 94.465 -41.8 4.866 5228.1 yes
## 8983 1.4 94.465 -41.8 4.866 5228.1 no
## 8987 1.4 94.465 -41.8 4.866 5228.1 no
## 8993 1.4 94.465 -41.8 4.866 5228.1 no
## 8998 1.4 94.465 -41.8 4.866 5228.1 no
## 9003 1.4 94.465 -41.8 4.866 5228.1 no
## 9004 1.4 94.465 -41.8 4.866 5228.1 yes
## 9009 1.4 94.465 -41.8 4.866 5228.1 no
## 9011 1.4 94.465 -41.8 4.866 5228.1 no
## 9015 1.4 94.465 -41.8 4.866 5228.1 no
## 9017 1.4 94.465 -41.8 4.866 5228.1 no
## 9039 1.4 94.465 -41.8 4.866 5228.1 no
## 9040 1.4 94.465 -41.8 4.866 5228.1 no
## 9043 1.4 94.465 -41.8 4.866 5228.1 no
## 9052 1.4 94.465 -41.8 4.866 5228.1 no
## 9061 1.4 94.465 -41.8 4.866 5228.1 no
## 9064 1.4 94.465 -41.8 4.866 5228.1 no
## 9066 1.4 94.465 -41.8 4.866 5228.1 no
## 9067 1.4 94.465 -41.8 4.866 5228.1 no
## 9084 1.4 94.465 -41.8 4.967 5228.1 no
## 9088 1.4 94.465 -41.8 4.967 5228.1 no
## 9090 1.4 94.465 -41.8 4.967 5228.1 no
## 9099 1.4 94.465 -41.8 4.967 5228.1 no
## 9105 1.4 94.465 -41.8 4.967 5228.1 no
## 9109 1.4 94.465 -41.8 4.967 5228.1 no
## 9114 1.4 94.465 -41.8 4.967 5228.1 no
## 9117 1.4 94.465 -41.8 4.967 5228.1 no
## 9118 1.4 94.465 -41.8 4.967 5228.1 no
## 9124 1.4 94.465 -41.8 4.967 5228.1 no
## 9135 1.4 94.465 -41.8 4.967 5228.1 no
## 9136 1.4 94.465 -41.8 4.967 5228.1 no
## 9138 1.4 94.465 -41.8 4.967 5228.1 no
## 9139 1.4 94.465 -41.8 4.967 5228.1 no
## 9148 1.4 94.465 -41.8 4.967 5228.1 no
## 9154 1.4 94.465 -41.8 4.967 5228.1 no
## 9155 1.4 94.465 -41.8 4.967 5228.1 no
## 9159 1.4 94.465 -41.8 4.967 5228.1 no
## 9168 1.4 94.465 -41.8 4.967 5228.1 no
## 9175 1.4 94.465 -41.8 4.967 5228.1 no
## 9181 1.4 94.465 -41.8 4.967 5228.1 no
## 9184 1.4 94.465 -41.8 4.967 5228.1 no
## 9192 1.4 94.465 -41.8 4.967 5228.1 no
## 9196 1.4 94.465 -41.8 4.967 5228.1 no
## 9201 1.4 94.465 -41.8 4.967 5228.1 no
## 9204 1.4 94.465 -41.8 4.967 5228.1 yes
## 9210 1.4 94.465 -41.8 4.967 5228.1 no
## 9211 1.4 94.465 -41.8 4.967 5228.1 no
## 9214 1.4 94.465 -41.8 4.967 5228.1 no
## 9222 1.4 94.465 -41.8 4.967 5228.1 no
## 9225 1.4 94.465 -41.8 4.967 5228.1 no
## 9230 1.4 94.465 -41.8 4.967 5228.1 no
## 9232 1.4 94.465 -41.8 4.967 5228.1 no
## 9237 1.4 94.465 -41.8 4.967 5228.1 no
## 9242 1.4 94.465 -41.8 4.967 5228.1 no
## 9245 1.4 94.465 -41.8 4.967 5228.1 no
## 9249 1.4 94.465 -41.8 4.967 5228.1 no
## 9264 1.4 94.465 -41.8 4.967 5228.1 no
## 9266 1.4 94.465 -41.8 4.967 5228.1 no
## 9269 1.4 94.465 -41.8 4.967 5228.1 no
## 9272 1.4 94.465 -41.8 4.967 5228.1 no
## 9276 1.4 94.465 -41.8 4.967 5228.1 no
## 9279 1.4 94.465 -41.8 4.967 5228.1 no
## 9281 1.4 94.465 -41.8 4.967 5228.1 no
## 9298 1.4 94.465 -41.8 4.967 5228.1 no
## 9307 1.4 94.465 -41.8 4.967 5228.1 no
## 9315 1.4 94.465 -41.8 4.967 5228.1 no
## 9343 1.4 94.465 -41.8 4.967 5228.1 no
## 9344 1.4 94.465 -41.8 4.967 5228.1 no
## 9345 1.4 94.465 -41.8 4.967 5228.1 no
## 9362 1.4 94.465 -41.8 4.967 5228.1 no
## 9365 1.4 94.465 -41.8 4.967 5228.1 no
## 9377 1.4 94.465 -41.8 4.967 5228.1 no
## 9380 1.4 94.465 -41.8 4.967 5228.1 no
## 9383 1.4 94.465 -41.8 4.967 5228.1 no
## 9384 1.4 94.465 -41.8 4.967 5228.1 no
## 9385 1.4 94.465 -41.8 4.967 5228.1 no
## 9386 1.4 94.465 -41.8 4.967 5228.1 no
## 9390 1.4 94.465 -41.8 4.967 5228.1 no
## 9392 1.4 94.465 -41.8 4.967 5228.1 no
## 9397 1.4 94.465 -41.8 4.967 5228.1 no
## 9404 1.4 94.465 -41.8 4.967 5228.1 no
## 9405 1.4 94.465 -41.8 4.967 5228.1 no
## 9409 1.4 94.465 -41.8 4.967 5228.1 no
## 9424 1.4 94.465 -41.8 4.967 5228.1 no
## 9428 1.4 94.465 -41.8 4.967 5228.1 no
## 9430 1.4 94.465 -41.8 4.967 5228.1 no
## 9434 1.4 94.465 -41.8 4.967 5228.1 no
## 9437 1.4 94.465 -41.8 4.967 5228.1 no
## 9446 1.4 94.465 -41.8 4.967 5228.1 no
## 9449 1.4 94.465 -41.8 4.967 5228.1 no
## 9451 1.4 94.465 -41.8 4.967 5228.1 no
## 9452 1.4 94.465 -41.8 4.967 5228.1 no
## 9456 1.4 94.465 -41.8 4.967 5228.1 no
## 9459 1.4 94.465 -41.8 4.967 5228.1 no
## 9462 1.4 94.465 -41.8 4.967 5228.1 no
## 9468 1.4 94.465 -41.8 4.967 5228.1 no
## 9472 1.4 94.465 -41.8 4.967 5228.1 no
## 9475 1.4 94.465 -41.8 4.961 5228.1 no
## 9478 1.4 94.465 -41.8 4.961 5228.1 no
## 9482 1.4 94.465 -41.8 4.961 5228.1 no
## 9488 1.4 94.465 -41.8 4.961 5228.1 no
## 9508 1.4 94.465 -41.8 4.961 5228.1 no
## 9509 1.4 94.465 -41.8 4.961 5228.1 no
## 9510 1.4 94.465 -41.8 4.961 5228.1 no
## 9517 1.4 94.465 -41.8 4.961 5228.1 no
## 9531 1.4 94.465 -41.8 4.961 5228.1 no
## 9544 1.4 94.465 -41.8 4.961 5228.1 no
## 9550 1.4 94.465 -41.8 4.961 5228.1 no
## 9565 1.4 94.465 -41.8 4.961 5228.1 no
## 9567 1.4 94.465 -41.8 4.961 5228.1 no
## 9568 1.4 94.465 -41.8 4.961 5228.1 no
## 9573 1.4 94.465 -41.8 4.961 5228.1 yes
## 9578 1.4 94.465 -41.8 4.961 5228.1 no
## 9588 1.4 94.465 -41.8 4.961 5228.1 no
## 9591 1.4 94.465 -41.8 4.961 5228.1 no
## 9598 1.4 94.465 -41.8 4.961 5228.1 no
## 9599 1.4 94.465 -41.8 4.961 5228.1 no
## 9604 1.4 94.465 -41.8 4.961 5228.1 no
## 9605 1.4 94.465 -41.8 4.961 5228.1 no
## 9611 1.4 94.465 -41.8 4.961 5228.1 no
## 9616 1.4 94.465 -41.8 4.961 5228.1 no
## 9622 1.4 94.465 -41.8 4.961 5228.1 no
## 9629 1.4 94.465 -41.8 4.961 5228.1 no
## 9635 1.4 94.465 -41.8 4.961 5228.1 no
## 9639 1.4 94.465 -41.8 4.961 5228.1 no
## 9643 1.4 94.465 -41.8 4.961 5228.1 no
## 9644 1.4 94.465 -41.8 4.961 5228.1 no
## 9654 1.4 94.465 -41.8 4.961 5228.1 no
## 9658 1.4 94.465 -41.8 4.961 5228.1 no
## 9663 1.4 94.465 -41.8 4.961 5228.1 no
## 9673 1.4 94.465 -41.8 4.961 5228.1 no
## 9677 1.4 94.465 -41.8 4.961 5228.1 no
## 9680 1.4 94.465 -41.8 4.961 5228.1 no
## 9681 1.4 94.465 -41.8 4.961 5228.1 no
## 9682 1.4 94.465 -41.8 4.961 5228.1 no
## 9684 1.4 94.465 -41.8 4.961 5228.1 no
## 9692 1.4 94.465 -41.8 4.961 5228.1 no
## 9693 1.4 94.465 -41.8 4.961 5228.1 no
## 9694 1.4 94.465 -41.8 4.961 5228.1 no
## 9699 1.4 94.465 -41.8 4.961 5228.1 no
## 9700 1.4 94.465 -41.8 4.961 5228.1 no
## 9714 1.4 94.465 -41.8 4.961 5228.1 no
## 9727 1.4 94.465 -41.8 4.961 5228.1 no
## 9732 1.4 94.465 -41.8 4.961 5228.1 no
## 9734 1.4 94.465 -41.8 4.961 5228.1 yes
## 9735 1.4 94.465 -41.8 4.961 5228.1 no
## 9737 1.4 94.465 -41.8 4.961 5228.1 no
## 9738 1.4 94.465 -41.8 4.961 5228.1 no
## 9741 1.4 94.465 -41.8 4.961 5228.1 no
## 9747 1.4 94.465 -41.8 4.961 5228.1 no
## 9751 1.4 94.465 -41.8 4.961 5228.1 no
## 9755 1.4 94.465 -41.8 4.961 5228.1 no
## 9762 1.4 94.465 -41.8 4.961 5228.1 no
## 9763 1.4 94.465 -41.8 4.961 5228.1 no
## 9786 1.4 94.465 -41.8 4.959 5228.1 no
## 9787 1.4 94.465 -41.8 4.959 5228.1 no
## 9788 1.4 94.465 -41.8 4.959 5228.1 no
## 9791 1.4 94.465 -41.8 4.959 5228.1 no
## 9796 1.4 94.465 -41.8 4.959 5228.1 no
## 9797 1.4 94.465 -41.8 4.959 5228.1 yes
## 9801 1.4 94.465 -41.8 4.959 5228.1 no
## 9804 1.4 94.465 -41.8 4.959 5228.1 no
## 9805 1.4 94.465 -41.8 4.959 5228.1 no
## 9814 1.4 94.465 -41.8 4.959 5228.1 no
## 9819 1.4 94.465 -41.8 4.959 5228.1 no
## 9823 1.4 94.465 -41.8 4.959 5228.1 no
## 9827 1.4 94.465 -41.8 4.959 5228.1 no
## 9831 1.4 94.465 -41.8 4.959 5228.1 no
## 9835 1.4 94.465 -41.8 4.959 5228.1 no
## 9838 1.4 94.465 -41.8 4.959 5228.1 no
## 9839 1.4 94.465 -41.8 4.959 5228.1 no
## 9843 1.4 94.465 -41.8 4.959 5228.1 no
## 9844 1.4 94.465 -41.8 4.959 5228.1 no
## 9846 1.4 94.465 -41.8 4.959 5228.1 no
## 9848 1.4 94.465 -41.8 4.959 5228.1 no
## 9859 1.4 94.465 -41.8 4.959 5228.1 no
## 9861 1.4 94.465 -41.8 4.959 5228.1 no
## 9865 1.4 94.465 -41.8 4.959 5228.1 no
## 9887 1.4 94.465 -41.8 4.959 5228.1 no
## 9898 1.4 94.465 -41.8 4.959 5228.1 no
## 9900 1.4 94.465 -41.8 4.959 5228.1 no
## 9905 1.4 94.465 -41.8 4.959 5228.1 yes
## 9915 1.4 94.465 -41.8 4.959 5228.1 yes
## 9916 1.4 94.465 -41.8 4.959 5228.1 no
## 9917 1.4 94.465 -41.8 4.959 5228.1 no
## 9926 1.4 94.465 -41.8 4.959 5228.1 no
## 9939 1.4 94.465 -41.8 4.959 5228.1 no
## 9961 1.4 94.465 -41.8 4.959 5228.1 no
## 9966 1.4 94.465 -41.8 4.959 5228.1 no
## 9976 1.4 94.465 -41.8 4.959 5228.1 no
## 9978 1.4 94.465 -41.8 4.959 5228.1 no
## 9981 1.4 94.465 -41.8 4.959 5228.1 no
## 9988 1.4 94.465 -41.8 4.959 5228.1 no
## 9995 1.4 94.465 -41.8 4.959 5228.1 no
## 10002 1.4 94.465 -41.8 4.959 5228.1 no
## 10008 1.4 94.465 -41.8 4.959 5228.1 no
## 10009 1.4 94.465 -41.8 4.959 5228.1 no
## 10012 1.4 94.465 -41.8 4.959 5228.1 no
## 10015 1.4 94.465 -41.8 4.959 5228.1 no
## 10019 1.4 94.465 -41.8 4.958 5228.1 no
## 10022 1.4 94.465 -41.8 4.958 5228.1 no
## 10023 1.4 94.465 -41.8 4.958 5228.1 no
## 10026 1.4 94.465 -41.8 4.958 5228.1 no
## 10027 1.4 94.465 -41.8 4.958 5228.1 no
## 10029 1.4 94.465 -41.8 4.958 5228.1 no
## 10032 1.4 94.465 -41.8 4.958 5228.1 no
## 10041 1.4 94.465 -41.8 4.958 5228.1 no
## 10049 1.4 94.465 -41.8 4.958 5228.1 no
## 10050 1.4 94.465 -41.8 4.958 5228.1 yes
## 10061 1.4 94.465 -41.8 4.958 5228.1 no
## 10068 1.4 94.465 -41.8 4.958 5228.1 no
## 10075 1.4 94.465 -41.8 4.958 5228.1 no
## 10077 1.4 94.465 -41.8 4.958 5228.1 yes
## 10078 1.4 94.465 -41.8 4.958 5228.1 no
## 10079 1.4 94.465 -41.8 4.958 5228.1 no
## 10084 1.4 94.465 -41.8 4.958 5228.1 no
## 10086 1.4 94.465 -41.8 4.958 5228.1 no
## 10087 1.4 94.465 -41.8 4.958 5228.1 no
## 10088 1.4 94.465 -41.8 4.958 5228.1 no
## 10093 1.4 94.465 -41.8 4.958 5228.1 no
## 10098 1.4 94.465 -41.8 4.958 5228.1 no
## 10101 1.4 94.465 -41.8 4.958 5228.1 no
## 10102 1.4 94.465 -41.8 4.958 5228.1 no
## 10108 1.4 94.465 -41.8 4.958 5228.1 no
## 10113 1.4 94.465 -41.8 4.958 5228.1 no
## 10116 1.4 94.465 -41.8 4.958 5228.1 no
## 10124 1.4 94.465 -41.8 4.958 5228.1 no
## 10125 1.4 94.465 -41.8 4.958 5228.1 yes
## 10126 1.4 94.465 -41.8 4.958 5228.1 no
## 10129 1.4 94.465 -41.8 4.958 5228.1 no
## 10130 1.4 94.465 -41.8 4.958 5228.1 no
## 10135 1.4 94.465 -41.8 4.958 5228.1 yes
## 10143 1.4 94.465 -41.8 4.958 5228.1 no
## 10146 1.4 94.465 -41.8 4.958 5228.1 no
## 10148 1.4 94.465 -41.8 4.958 5228.1 no
## 10150 1.4 94.465 -41.8 4.958 5228.1 no
## 10152 1.4 94.465 -41.8 4.958 5228.1 no
## 10159 1.4 94.465 -41.8 4.958 5228.1 yes
## 10162 1.4 94.465 -41.8 4.958 5228.1 no
## 10173 1.4 94.465 -41.8 4.958 5228.1 no
## 10180 1.4 94.465 -41.8 4.958 5228.1 no
## 10185 1.4 94.465 -41.8 4.958 5228.1 yes
## 10198 1.4 94.465 -41.8 4.958 5228.1 no
## 10201 1.4 94.465 -41.8 4.958 5228.1 no
## 10203 1.4 94.465 -41.8 4.958 5228.1 no
## 10205 1.4 94.465 -41.8 4.958 5228.1 no
## 10206 1.4 94.465 -41.8 4.960 5228.1 no
## 10224 1.4 94.465 -41.8 4.960 5228.1 no
## 10236 1.4 94.465 -41.8 4.960 5228.1 no
## 10241 1.4 94.465 -41.8 4.960 5228.1 no
## 10242 1.4 94.465 -41.8 4.960 5228.1 no
## 10249 1.4 94.465 -41.8 4.960 5228.1 no
## 10253 1.4 94.465 -41.8 4.960 5228.1 no
## 10257 1.4 94.465 -41.8 4.960 5228.1 no
## 10267 1.4 94.465 -41.8 4.960 5228.1 no
## 10293 1.4 94.465 -41.8 4.960 5228.1 no
## 10299 1.4 94.465 -41.8 4.960 5228.1 no
## 10302 1.4 94.465 -41.8 4.960 5228.1 no
## 10305 1.4 94.465 -41.8 4.960 5228.1 no
## 10307 1.4 94.465 -41.8 4.960 5228.1 no
## 10310 1.4 94.465 -41.8 4.960 5228.1 no
## 10313 1.4 94.465 -41.8 4.960 5228.1 no
## 10314 1.4 94.465 -41.8 4.960 5228.1 no
## 10325 1.4 94.465 -41.8 4.960 5228.1 no
## 10326 1.4 94.465 -41.8 4.960 5228.1 no
## 10327 1.4 94.465 -41.8 4.960 5228.1 no
## 10332 1.4 94.465 -41.8 4.960 5228.1 no
## 10347 1.4 94.465 -41.8 4.960 5228.1 no
## 10349 1.4 94.465 -41.8 4.960 5228.1 no
## 10354 1.4 94.465 -41.8 4.960 5228.1 yes
## 10357 1.4 94.465 -41.8 4.960 5228.1 no
## 10368 1.4 94.465 -41.8 4.960 5228.1 no
## 10376 1.4 94.465 -41.8 4.960 5228.1 no
## 10386 1.4 94.465 -41.8 4.960 5228.1 no
## 10403 1.4 94.465 -41.8 4.960 5228.1 yes
## 10410 1.4 94.465 -41.8 4.960 5228.1 no
## 10417 1.4 94.465 -41.8 4.960 5228.1 no
## 10433 1.4 94.465 -41.8 4.960 5228.1 no
## 10437 1.4 94.465 -41.8 4.960 5228.1 no
## 10438 1.4 94.465 -41.8 4.960 5228.1 no
## 10443 1.4 94.465 -41.8 4.960 5228.1 no
## 10450 1.4 94.465 -41.8 4.960 5228.1 no
## 10458 1.4 94.465 -41.8 4.960 5228.1 no
## 10462 1.4 94.465 -41.8 4.960 5228.1 no
## 10465 1.4 94.465 -41.8 4.960 5228.1 no
## 10469 1.4 94.465 -41.8 4.960 5228.1 no
## 10478 1.4 94.465 -41.8 4.961 5228.1 no
## 10483 1.4 94.465 -41.8 4.961 5228.1 no
## 10492 1.4 94.465 -41.8 4.961 5228.1 no
## 10494 1.4 94.465 -41.8 4.961 5228.1 no
## 10495 1.4 94.465 -41.8 4.961 5228.1 no
## 10504 1.4 94.465 -41.8 4.961 5228.1 no
## 10511 1.4 94.465 -41.8 4.961 5228.1 no
## 10518 1.4 94.465 -41.8 4.961 5228.1 no
## 10527 1.4 94.465 -41.8 4.961 5228.1 no
## 10532 1.4 94.465 -41.8 4.961 5228.1 no
## 10536 1.4 94.465 -41.8 4.961 5228.1 no
## 10538 1.4 94.465 -41.8 4.961 5228.1 no
## 10539 1.4 94.465 -41.8 4.961 5228.1 no
## 10543 1.4 94.465 -41.8 4.961 5228.1 no
## 10547 1.4 94.465 -41.8 4.961 5228.1 no
## 10551 1.4 94.465 -41.8 4.961 5228.1 no
## 10552 1.4 94.465 -41.8 4.961 5228.1 no
## 10555 1.4 94.465 -41.8 4.961 5228.1 no
## 10566 1.4 94.465 -41.8 4.961 5228.1 no
## 10567 1.4 94.465 -41.8 4.961 5228.1 no
## 10570 1.4 94.465 -41.8 4.961 5228.1 no
## 10575 1.4 94.465 -41.8 4.961 5228.1 no
## 10577 1.4 94.465 -41.8 4.961 5228.1 no
## 10581 1.4 94.465 -41.8 4.961 5228.1 no
## 10585 1.4 94.465 -41.8 4.961 5228.1 no
## 10586 1.4 94.465 -41.8 4.961 5228.1 no
## 10597 1.4 94.465 -41.8 4.961 5228.1 no
## 10604 1.4 94.465 -41.8 4.961 5228.1 no
## 10607 1.4 94.465 -41.8 4.961 5228.1 no
## 10610 1.4 94.465 -41.8 4.961 5228.1 no
## 10612 1.4 94.465 -41.8 4.961 5228.1 no
## 10613 1.4 94.465 -41.8 4.961 5228.1 no
## 10615 1.4 94.465 -41.8 4.961 5228.1 no
## 10619 1.4 94.465 -41.8 4.961 5228.1 no
## 10621 1.4 94.465 -41.8 4.961 5228.1 no
## 10633 1.4 94.465 -41.8 4.961 5228.1 no
## 10635 1.4 94.465 -41.8 4.961 5228.1 no
## 10636 1.4 94.465 -41.8 4.961 5228.1 yes
## 10639 1.4 94.465 -41.8 4.961 5228.1 no
## 10643 1.4 94.465 -41.8 4.961 5228.1 no
## 10655 1.4 94.465 -41.8 4.961 5228.1 no
## 10656 1.4 94.465 -41.8 4.961 5228.1 no
## 10666 1.4 94.465 -41.8 4.961 5228.1 no
## 10672 1.4 94.465 -41.8 4.961 5228.1 no
## 10676 1.4 94.465 -41.8 4.961 5228.1 no
## 10679 1.4 94.465 -41.8 4.961 5228.1 no
## 10682 1.4 94.465 -41.8 4.961 5228.1 no
## 10684 1.4 94.465 -41.8 4.961 5228.1 no
## 10688 1.4 94.465 -41.8 4.961 5228.1 no
## 10692 1.4 94.465 -41.8 4.961 5228.1 no
## 10698 1.4 94.465 -41.8 4.961 5228.1 no
## 10703 1.4 94.465 -41.8 4.961 5228.1 no
## 10705 1.4 94.465 -41.8 4.961 5228.1 yes
## 10707 1.4 94.465 -41.8 4.961 5228.1 no
## 10709 1.4 94.465 -41.8 4.961 5228.1 no
## 10716 1.4 94.465 -41.8 4.961 5228.1 no
## 10717 1.4 94.465 -41.8 4.961 5228.1 no
## 10720 1.4 94.465 -41.8 4.961 5228.1 no
## 10730 1.4 94.465 -41.8 4.961 5228.1 no
## 10731 1.4 94.465 -41.8 4.961 5228.1 no
## 10737 1.4 94.465 -41.8 4.961 5228.1 no
## 10742 1.4 94.465 -41.8 4.961 5228.1 no
## 10743 1.4 94.465 -41.8 4.961 5228.1 no
## 10752 1.4 94.465 -41.8 4.961 5228.1 no
## 10753 1.4 94.465 -41.8 4.961 5228.1 no
## 10760 1.4 94.465 -41.8 4.961 5228.1 no
## 10762 1.4 94.465 -41.8 4.961 5228.1 no
## 10776 1.4 94.465 -41.8 4.961 5228.1 no
## 10783 1.4 94.465 -41.8 4.961 5228.1 no
## 10794 1.4 94.465 -41.8 4.961 5228.1 no
## 10796 1.4 94.465 -41.8 4.961 5228.1 no
## 10798 1.4 94.465 -41.8 4.962 5228.1 no
## 10802 1.4 94.465 -41.8 4.962 5228.1 no
## 10805 1.4 94.465 -41.8 4.962 5228.1 no
## 10808 1.4 94.465 -41.8 4.962 5228.1 no
## 10810 1.4 94.465 -41.8 4.962 5228.1 no
## 10811 1.4 94.465 -41.8 4.962 5228.1 no
## 10813 1.4 94.465 -41.8 4.962 5228.1 no
## 10824 1.4 94.465 -41.8 4.962 5228.1 no
## 10826 1.4 94.465 -41.8 4.962 5228.1 no
## 10835 1.4 94.465 -41.8 4.962 5228.1 no
## 10836 1.4 94.465 -41.8 4.962 5228.1 yes
## 10837 1.4 94.465 -41.8 4.962 5228.1 no
## 10839 1.4 94.465 -41.8 4.962 5228.1 no
## 10843 1.4 94.465 -41.8 4.962 5228.1 no
## 10849 1.4 94.465 -41.8 4.962 5228.1 yes
## 10853 1.4 94.465 -41.8 4.962 5228.1 no
## 10857 1.4 94.465 -41.8 4.962 5228.1 no
## 10871 1.4 94.465 -41.8 4.962 5228.1 no
## 10879 1.4 94.465 -41.8 4.962 5228.1 no
## 10882 1.4 94.465 -41.8 4.962 5228.1 no
## 10884 1.4 94.465 -41.8 4.962 5228.1 no
## 10892 1.4 94.465 -41.8 4.962 5228.1 no
## 10893 1.4 94.465 -41.8 4.962 5228.1 no
## 10899 1.4 94.465 -41.8 4.962 5228.1 no
## 10903 1.4 94.465 -41.8 4.962 5228.1 no
## 10909 1.4 94.465 -41.8 4.962 5228.1 no
## 10916 1.4 94.465 -41.8 4.962 5228.1 no
## 10918 1.4 94.465 -41.8 4.962 5228.1 no
## 10919 1.4 94.465 -41.8 4.962 5228.1 no
## 10937 1.4 94.465 -41.8 4.962 5228.1 yes
## 10938 1.4 94.465 -41.8 4.962 5228.1 no
## 10955 1.4 94.465 -41.8 4.962 5228.1 no
## 10958 1.4 94.465 -41.8 4.962 5228.1 no
## 10959 1.4 94.465 -41.8 4.962 5228.1 no
## 10960 1.4 94.465 -41.8 4.962 5228.1 no
## 10963 1.4 94.465 -41.8 4.962 5228.1 no
## 10966 1.4 94.465 -41.8 4.962 5228.1 no
## 10971 1.4 94.465 -41.8 4.962 5228.1 no
## 10986 1.4 94.465 -41.8 4.962 5228.1 no
## 10987 1.4 94.465 -41.8 4.962 5228.1 no
## 10989 1.4 94.465 -41.8 4.962 5228.1 no
## 10994 1.4 94.465 -41.8 4.962 5228.1 no
## 10996 1.4 94.465 -41.8 4.962 5228.1 no
## 11004 1.4 94.465 -41.8 4.962 5228.1 no
## 11007 1.4 94.465 -41.8 4.962 5228.1 no
## 11010 1.4 94.465 -41.8 4.962 5228.1 no
## 11015 1.4 94.465 -41.8 4.962 5228.1 no
## 11017 1.4 94.465 -41.8 4.962 5228.1 yes
## 11028 1.4 94.465 -41.8 4.962 5228.1 no
## 11034 1.4 94.465 -41.8 4.962 5228.1 no
## 11035 1.4 94.465 -41.8 4.962 5228.1 no
## 11039 1.4 94.465 -41.8 4.962 5228.1 no
## 11045 1.4 94.465 -41.8 4.962 5228.1 no
## 11059 1.4 94.465 -41.8 4.962 5228.1 no
## 11063 1.4 94.465 -41.8 4.962 5228.1 no
## 11071 1.4 94.465 -41.8 4.962 5228.1 yes
## 11074 1.4 94.465 -41.8 4.962 5228.1 no
## 11077 1.4 94.465 -41.8 4.962 5228.1 no
## 11079 1.4 94.465 -41.8 4.962 5228.1 no
## 11080 1.4 94.465 -41.8 4.962 5228.1 no
## 11084 1.4 94.465 -41.8 4.961 5228.1 no
## 11092 1.4 94.465 -41.8 4.961 5228.1 no
## 11097 1.4 94.465 -41.8 4.961 5228.1 no
## 11099 1.4 94.465 -41.8 4.961 5228.1 no
## 11100 1.4 94.465 -41.8 4.961 5228.1 no
## 11115 1.4 94.465 -41.8 4.961 5228.1 no
## 11116 1.4 94.465 -41.8 4.961 5228.1 no
## 11122 1.4 94.465 -41.8 4.961 5228.1 no
## 11125 1.4 94.465 -41.8 4.961 5228.1 no
## 11129 1.4 94.465 -41.8 4.961 5228.1 no
## 11131 1.4 94.465 -41.8 4.961 5228.1 no
## 11149 1.4 94.465 -41.8 4.961 5228.1 no
## 11156 1.4 94.465 -41.8 4.961 5228.1 no
## 11161 1.4 94.465 -41.8 4.961 5228.1 no
## 11165 1.4 94.465 -41.8 4.961 5228.1 no
## 11168 1.4 94.465 -41.8 4.961 5228.1 no
## 11170 1.4 94.465 -41.8 4.961 5228.1 no
## 11186 1.4 94.465 -41.8 4.961 5228.1 no
## 11197 1.4 94.465 -41.8 4.961 5228.1 no
## 11199 1.4 94.465 -41.8 4.961 5228.1 no
## 11200 1.4 94.465 -41.8 4.961 5228.1 no
## 11201 1.4 94.465 -41.8 4.961 5228.1 no
## 11205 1.4 94.465 -41.8 4.961 5228.1 no
## 11207 1.4 94.465 -41.8 4.961 5228.1 no
## 11208 1.4 94.465 -41.8 4.961 5228.1 no
## 11212 1.4 94.465 -41.8 4.961 5228.1 no
## 11214 1.4 94.465 -41.8 4.961 5228.1 no
## 11218 1.4 94.465 -41.8 4.961 5228.1 no
## 11225 1.4 94.465 -41.8 4.961 5228.1 no
## 11228 1.4 94.465 -41.8 4.961 5228.1 no
## 11236 1.4 94.465 -41.8 4.961 5228.1 no
## 11237 1.4 94.465 -41.8 4.961 5228.1 no
## 11238 1.4 94.465 -41.8 4.961 5228.1 no
## 11247 1.4 94.465 -41.8 4.961 5228.1 no
## 11255 1.4 94.465 -41.8 4.961 5228.1 no
## 11260 1.4 94.465 -41.8 4.961 5228.1 no
## 11265 1.4 94.465 -41.8 4.961 5228.1 no
## 11275 1.4 94.465 -41.8 4.961 5228.1 yes
## 11283 1.4 94.465 -41.8 4.961 5228.1 no
## 11291 1.4 94.465 -41.8 4.961 5228.1 no
## 11295 1.4 94.465 -41.8 4.961 5228.1 no
## 11297 1.4 94.465 -41.8 4.961 5228.1 no
## 11301 1.4 94.465 -41.8 4.961 5228.1 no
## 11303 1.4 94.465 -41.8 4.961 5228.1 no
## 11304 1.4 94.465 -41.8 4.961 5228.1 no
## 11308 1.4 94.465 -41.8 4.961 5228.1 no
## 11321 1.4 94.465 -41.8 4.961 5228.1 no
## 11323 1.4 94.465 -41.8 4.961 5228.1 no
## 11328 1.4 94.465 -41.8 4.961 5228.1 no
## 11337 1.4 94.465 -41.8 4.961 5228.1 no
## 11338 1.4 94.465 -41.8 4.961 5228.1 no
## 11345 1.4 94.465 -41.8 4.961 5228.1 no
## 11351 1.4 94.465 -41.8 4.961 5228.1 no
## 11355 1.4 94.465 -41.8 4.961 5228.1 no
## 11356 1.4 94.465 -41.8 4.961 5228.1 no
## 11362 1.4 94.465 -41.8 4.961 5228.1 no
## 11373 1.4 94.465 -41.8 4.959 5228.1 no
## 11374 1.4 94.465 -41.8 4.959 5228.1 no
## 11383 1.4 94.465 -41.8 4.959 5228.1 no
## 11386 1.4 94.465 -41.8 4.959 5228.1 no
## 11398 1.4 94.465 -41.8 4.959 5228.1 no
## 11399 1.4 94.465 -41.8 4.959 5228.1 no
## 11402 1.4 94.465 -41.8 4.959 5228.1 no
## 11419 1.4 94.465 -41.8 4.959 5228.1 no
## 11423 1.4 94.465 -41.8 4.959 5228.1 no
## 11426 1.4 94.465 -41.8 4.959 5228.1 no
## 11429 1.4 94.465 -41.8 4.959 5228.1 no
## 11433 1.4 94.465 -41.8 4.959 5228.1 no
## 11435 1.4 94.465 -41.8 4.959 5228.1 no
## 11439 1.4 94.465 -41.8 4.959 5228.1 no
## 11444 1.4 94.465 -41.8 4.959 5228.1 no
## 11458 1.4 94.465 -41.8 4.959 5228.1 no
## 11463 1.4 94.465 -41.8 4.959 5228.1 no
## 11464 1.4 94.465 -41.8 4.959 5228.1 no
## 11465 1.4 94.465 -41.8 4.959 5228.1 no
## 11471 1.4 94.465 -41.8 4.959 5228.1 no
## 11472 1.4 94.465 -41.8 4.959 5228.1 yes
## 11482 1.4 94.465 -41.8 4.959 5228.1 no
## 11484 1.4 94.465 -41.8 4.959 5228.1 no
## 11489 1.4 94.465 -41.8 4.959 5228.1 no
## 11491 1.4 94.465 -41.8 4.959 5228.1 no
## 11493 1.4 94.465 -41.8 4.959 5228.1 yes
## 11494 1.4 94.465 -41.8 4.959 5228.1 no
## 11495 1.4 94.465 -41.8 4.959 5228.1 no
## 11496 1.4 94.465 -41.8 4.959 5228.1 no
## 11497 1.4 94.465 -41.8 4.959 5228.1 no
## 11499 1.4 94.465 -41.8 4.959 5228.1 no
## 11500 1.4 94.465 -41.8 4.959 5228.1 no
## 11505 1.4 94.465 -41.8 4.959 5228.1 no
## 11506 1.4 94.465 -41.8 4.959 5228.1 no
## 11524 1.4 94.465 -41.8 4.959 5228.1 no
## 11537 1.4 94.465 -41.8 4.959 5228.1 no
## 11546 1.4 94.465 -41.8 4.959 5228.1 no
## 11548 1.4 94.465 -41.8 4.959 5228.1 no
## 11553 1.4 94.465 -41.8 4.959 5228.1 yes
## 11562 1.4 94.465 -41.8 4.959 5228.1 no
## 11569 1.4 94.465 -41.8 4.959 5228.1 no
## 11577 1.4 94.465 -41.8 4.959 5228.1 no
## 11584 1.4 94.465 -41.8 4.959 5228.1 no
## 11585 1.4 94.465 -41.8 4.959 5228.1 no
## 11587 1.4 94.465 -41.8 4.959 5228.1 no
## 11591 1.4 94.465 -41.8 4.959 5228.1 no
## 11600 1.4 94.465 -41.8 4.959 5228.1 no
## 11613 1.4 94.465 -41.8 4.959 5228.1 no
## 11620 1.4 94.465 -41.8 4.959 5228.1 no
## 11621 1.4 94.465 -41.8 4.959 5228.1 no
## 11627 1.4 94.465 -41.8 4.959 5228.1 no
## 11633 1.4 94.465 -41.8 4.959 5228.1 no
## 11638 1.4 94.465 -41.8 4.959 5228.1 no
## 11639 1.4 94.465 -41.8 4.959 5228.1 no
## 11644 1.4 94.465 -41.8 4.959 5228.1 no
## 11649 1.4 94.465 -41.8 4.959 5228.1 no
## 11654 1.4 94.465 -41.8 4.959 5228.1 no
## 11655 1.4 94.465 -41.8 4.959 5228.1 no
## 11656 1.4 94.465 -41.8 4.959 5228.1 no
## 11666 1.4 94.465 -41.8 4.959 5228.1 no
## 11669 1.4 94.465 -41.8 4.959 5228.1 no
## 11674 1.4 94.465 -41.8 4.959 5228.1 no
## 11680 1.4 94.465 -41.8 4.959 5228.1 no
## 11690 1.4 94.465 -41.8 4.959 5228.1 no
## 11694 1.4 94.465 -41.8 4.959 5228.1 no
## 11696 1.4 94.465 -41.8 4.959 5228.1 no
## 11703 1.4 94.465 -41.8 4.959 5228.1 no
## 11704 1.4 94.465 -41.8 4.959 5228.1 no
## 11712 1.4 94.465 -41.8 4.959 5228.1 no
## 11716 1.4 94.465 -41.8 4.959 5228.1 no
## 11718 1.4 94.465 -41.8 4.959 5228.1 yes
## 11723 1.4 94.465 -41.8 4.959 5228.1 no
## 11727 1.4 94.465 -41.8 4.959 5228.1 no
## 11731 1.4 94.465 -41.8 4.959 5228.1 no
## 11735 1.4 94.465 -41.8 4.959 5228.1 no
## 11752 1.4 94.465 -41.8 4.959 5228.1 no
## 11763 1.4 94.465 -41.8 4.959 5228.1 no
## 11764 1.4 94.465 -41.8 4.959 5228.1 no
## 11770 1.4 94.465 -41.8 4.959 5228.1 no
## 11775 1.4 94.465 -41.8 4.959 5228.1 no
## 11790 1.4 94.465 -41.8 4.959 5228.1 no
## 11795 1.4 94.465 -41.8 4.959 5228.1 no
## 11796 1.4 94.465 -41.8 4.959 5228.1 no
## 11798 1.4 94.465 -41.8 4.959 5228.1 no
## 11803 1.4 94.465 -41.8 4.959 5228.1 no
## 11806 1.4 94.465 -41.8 4.959 5228.1 no
## 11807 1.4 94.465 -41.8 4.959 5228.1 no
## 11811 1.4 94.465 -41.8 4.959 5228.1 no
## 11812 1.4 94.465 -41.8 4.959 5228.1 no
## 11814 1.4 94.465 -41.8 4.959 5228.1 no
## 11816 1.4 94.465 -41.8 4.959 5228.1 no
## 11817 1.4 94.465 -41.8 4.959 5228.1 no
## 11829 1.4 94.465 -41.8 4.959 5228.1 no
## 11840 1.4 94.465 -41.8 4.959 5228.1 no
## 11843 1.4 94.465 -41.8 4.959 5228.1 no
## 11845 1.4 94.465 -41.8 4.959 5228.1 no
## 11847 1.4 94.465 -41.8 4.959 5228.1 no
## 11853 1.4 94.465 -41.8 4.959 5228.1 no
## 11854 1.4 94.465 -41.8 4.959 5228.1 no
## 11861 1.4 94.465 -41.8 4.959 5228.1 no
## 11866 1.4 94.465 -41.8 4.959 5228.1 no
## 11872 1.4 94.465 -41.8 4.959 5228.1 no
## 11879 1.4 94.465 -41.8 4.959 5228.1 no
## 11892 1.4 94.465 -41.8 4.959 5228.1 no
## 11923 1.4 94.465 -41.8 4.959 5228.1 no
## 11932 1.4 94.465 -41.8 4.959 5228.1 yes
## 11938 1.4 94.465 -41.8 4.958 5228.1 yes
## 11946 1.4 94.465 -41.8 4.958 5228.1 no
## 11950 1.4 94.465 -41.8 4.958 5228.1 no
## 11952 1.4 94.465 -41.8 4.958 5228.1 no
## 11961 1.4 94.465 -41.8 4.958 5228.1 no
## 11973 1.4 94.465 -41.8 4.958 5228.1 no
## 11980 1.4 94.465 -41.8 4.958 5228.1 no
## 11993 1.4 94.465 -41.8 4.958 5228.1 no
## 12001 1.4 94.465 -41.8 4.955 5228.1 no
## 12003 1.4 94.465 -41.8 4.955 5228.1 yes
## 12006 1.4 94.465 -41.8 4.955 5228.1 no
## 12008 1.4 94.465 -41.8 4.955 5228.1 no
## 12010 1.4 94.465 -41.8 4.955 5228.1 no
## 12011 1.4 94.465 -41.8 4.955 5228.1 no
## 12014 1.4 94.465 -41.8 4.955 5228.1 no
## 12015 1.4 94.465 -41.8 4.955 5228.1 no
## 12023 1.4 94.465 -41.8 4.955 5228.1 no
## 12034 1.4 94.465 -41.8 4.955 5228.1 no
## 12041 1.4 94.465 -41.8 4.947 5228.1 no
## 12046 1.4 94.465 -41.8 4.947 5228.1 no
## 12051 1.4 94.465 -41.8 4.947 5228.1 no
## 12053 1.4 94.465 -41.8 4.947 5228.1 no
## 12056 1.4 94.465 -41.8 4.947 5228.1 no
## 12064 1.4 94.465 -41.8 4.947 5228.1 no
## 12068 1.4 94.465 -41.8 4.947 5228.1 no
## 12070 1.4 94.465 -41.8 4.947 5228.1 no
## 12072 1.4 94.465 -41.8 4.947 5228.1 no
## 12074 1.4 94.465 -41.8 4.947 5228.1 no
## 12081 1.4 94.465 -41.8 4.947 5228.1 no
## 12085 1.4 94.465 -41.8 4.947 5228.1 no
## 12093 1.4 94.465 -41.8 4.947 5228.1 no
## 12095 1.4 94.465 -41.8 4.947 5228.1 no
## 12096 1.4 94.465 -41.8 4.947 5228.1 no
## 12098 1.4 94.465 -41.8 4.947 5228.1 no
## 12099 1.4 94.465 -41.8 4.947 5228.1 no
## 12101 1.4 94.465 -41.8 4.947 5228.1 no
## 12103 1.4 94.465 -41.8 4.947 5228.1 no
## 12113 1.4 94.465 -41.8 4.947 5228.1 no
## 12127 1.4 94.465 -41.8 4.947 5228.1 no
## 12131 1.4 94.465 -41.8 4.947 5228.1 no
## 12138 1.4 93.918 -42.7 4.955 5228.1 no
## 12152 1.4 93.918 -42.7 4.955 5228.1 no
## 12154 1.4 93.918 -42.7 4.955 5228.1 no
## 12156 1.4 93.918 -42.7 4.955 5228.1 no
## 12158 1.4 93.918 -42.7 4.955 5228.1 no
## 12163 1.4 93.918 -42.7 4.955 5228.1 no
## 12172 1.4 93.918 -42.7 4.955 5228.1 no
## 12186 1.4 93.918 -42.7 4.955 5228.1 no
## 12189 1.4 93.918 -42.7 4.955 5228.1 no
## 12191 1.4 93.918 -42.7 4.955 5228.1 no
## 12192 1.4 93.918 -42.7 4.955 5228.1 yes
## 12196 1.4 93.918 -42.7 4.955 5228.1 yes
## 12198 1.4 93.918 -42.7 4.956 5228.1 no
## 12201 1.4 93.918 -42.7 4.956 5228.1 no
## 12205 1.4 93.918 -42.7 4.956 5228.1 no
## 12209 1.4 93.918 -42.7 4.956 5228.1 no
## 12222 1.4 93.918 -42.7 4.966 5228.1 no
## 12225 1.4 93.918 -42.7 4.966 5228.1 no
## 12229 1.4 93.918 -42.7 4.966 5228.1 no
## 12251 1.4 93.918 -42.7 4.966 5228.1 no
## 12252 1.4 93.918 -42.7 4.966 5228.1 no
## 12254 1.4 93.918 -42.7 4.966 5228.1 no
## 12264 1.4 93.918 -42.7 4.966 5228.1 no
## 12266 1.4 93.918 -42.7 4.966 5228.1 no
## 12267 1.4 93.918 -42.7 4.966 5228.1 no
## 12268 1.4 93.918 -42.7 4.966 5228.1 no
## 12272 1.4 93.918 -42.7 4.966 5228.1 no
## 12293 1.4 93.918 -42.7 4.959 5228.1 no
## 12296 1.4 93.918 -42.7 4.959 5228.1 no
## 12299 1.4 93.918 -42.7 4.959 5228.1 no
## 12300 1.4 93.918 -42.7 4.959 5228.1 no
## 12307 1.4 93.918 -42.7 4.959 5228.1 no
## 12308 1.4 93.918 -42.7 4.959 5228.1 no
## 12314 1.4 93.918 -42.7 4.959 5228.1 no
## 12322 1.4 93.918 -42.7 4.959 5228.1 no
## 12326 1.4 93.918 -42.7 4.959 5228.1 no
## 12342 1.4 93.918 -42.7 4.959 5228.1 no
## 12346 1.4 93.918 -42.7 4.959 5228.1 no
## 12352 1.4 93.918 -42.7 4.959 5228.1 no
## 12358 1.4 93.918 -42.7 4.959 5228.1 no
## 12361 1.4 93.918 -42.7 4.959 5228.1 no
## 12363 1.4 93.918 -42.7 4.959 5228.1 no
## 12364 1.4 93.918 -42.7 4.959 5228.1 no
## 12365 1.4 93.918 -42.7 4.959 5228.1 no
## 12369 1.4 93.918 -42.7 4.959 5228.1 no
## 12372 1.4 93.918 -42.7 4.959 5228.1 no
## 12377 1.4 93.918 -42.7 4.959 5228.1 no
## 12383 1.4 93.918 -42.7 4.960 5228.1 no
## 12384 1.4 93.918 -42.7 4.960 5228.1 no
## 12385 1.4 93.918 -42.7 4.960 5228.1 yes
## 12389 1.4 93.918 -42.7 4.960 5228.1 no
## 12391 1.4 93.918 -42.7 4.960 5228.1 no
## 12393 1.4 93.918 -42.7 4.960 5228.1 no
## 12395 1.4 93.918 -42.7 4.960 5228.1 no
## 12396 1.4 93.918 -42.7 4.960 5228.1 no
## 12397 1.4 93.918 -42.7 4.960 5228.1 no
## 12401 1.4 93.918 -42.7 4.960 5228.1 no
## 12402 1.4 93.918 -42.7 4.960 5228.1 no
## 12416 1.4 93.918 -42.7 4.960 5228.1 no
## 12417 1.4 93.918 -42.7 4.960 5228.1 no
## 12437 1.4 93.918 -42.7 4.960 5228.1 no
## 12439 1.4 93.918 -42.7 4.960 5228.1 no
## 12442 1.4 93.918 -42.7 4.960 5228.1 no
## 12461 1.4 93.918 -42.7 4.960 5228.1 no
## 12473 1.4 93.918 -42.7 4.960 5228.1 no
## 12476 1.4 93.918 -42.7 4.960 5228.1 no
## 12477 1.4 93.918 -42.7 4.960 5228.1 no
## 12484 1.4 93.918 -42.7 4.960 5228.1 no
## 12494 1.4 93.918 -42.7 4.960 5228.1 no
## 12499 1.4 93.918 -42.7 4.960 5228.1 no
## 12503 1.4 93.918 -42.7 4.960 5228.1 no
## 12504 1.4 93.918 -42.7 4.960 5228.1 no
## 12508 1.4 93.918 -42.7 4.960 5228.1 no
## 12510 1.4 93.918 -42.7 4.960 5228.1 no
## 12513 1.4 93.918 -42.7 4.960 5228.1 no
## 12515 1.4 93.918 -42.7 4.960 5228.1 no
## 12517 1.4 93.918 -42.7 4.960 5228.1 no
## 12521 1.4 93.918 -42.7 4.960 5228.1 no
## 12524 1.4 93.918 -42.7 4.960 5228.1 no
## 12526 1.4 93.918 -42.7 4.960 5228.1 no
## 12530 1.4 93.918 -42.7 4.960 5228.1 no
## 12532 1.4 93.918 -42.7 4.960 5228.1 no
## 12533 1.4 93.918 -42.7 4.960 5228.1 no
## 12545 1.4 93.918 -42.7 4.960 5228.1 no
## 12548 1.4 93.918 -42.7 4.960 5228.1 no
## 12554 1.4 93.918 -42.7 4.960 5228.1 no
## 12558 1.4 93.918 -42.7 4.960 5228.1 no
## 12571 1.4 93.918 -42.7 4.960 5228.1 no
## 12573 1.4 93.918 -42.7 4.960 5228.1 no
## 12590 1.4 93.918 -42.7 4.960 5228.1 no
## 12594 1.4 93.918 -42.7 4.960 5228.1 no
## 12595 1.4 93.918 -42.7 4.960 5228.1 no
## 12598 1.4 93.918 -42.7 4.960 5228.1 no
## 12609 1.4 93.918 -42.7 4.960 5228.1 no
## 12616 1.4 93.918 -42.7 4.960 5228.1 no
## 12620 1.4 93.918 -42.7 4.960 5228.1 no
## 12622 1.4 93.918 -42.7 4.960 5228.1 no
## 12623 1.4 93.918 -42.7 4.960 5228.1 no
## 12627 1.4 93.918 -42.7 4.960 5228.1 no
## 12635 1.4 93.918 -42.7 4.960 5228.1 no
## 12637 1.4 93.918 -42.7 4.960 5228.1 no
## 12642 1.4 93.918 -42.7 4.960 5228.1 no
## 12652 1.4 93.918 -42.7 4.960 5228.1 no
## 12658 1.4 93.918 -42.7 4.960 5228.1 no
## 12661 1.4 93.918 -42.7 4.960 5228.1 no
## 12667 1.4 93.918 -42.7 4.960 5228.1 no
## 12669 1.4 93.918 -42.7 4.960 5228.1 no
## 12679 1.4 93.918 -42.7 4.960 5228.1 no
## 12682 1.4 93.918 -42.7 4.960 5228.1 no
## 12684 1.4 93.918 -42.7 4.960 5228.1 no
## 12686 1.4 93.918 -42.7 4.960 5228.1 no
## 12688 1.4 93.918 -42.7 4.960 5228.1 no
## 12689 1.4 93.918 -42.7 4.960 5228.1 no
## 12694 1.4 93.918 -42.7 4.960 5228.1 no
## 12695 1.4 93.918 -42.7 4.960 5228.1 no
## 12703 1.4 93.918 -42.7 4.960 5228.1 no
## 12705 1.4 93.918 -42.7 4.960 5228.1 no
## 12707 1.4 93.918 -42.7 4.960 5228.1 no
## 12711 1.4 93.918 -42.7 4.960 5228.1 no
## 12715 1.4 93.918 -42.7 4.960 5228.1 no
## 12720 1.4 93.918 -42.7 4.960 5228.1 no
## 12722 1.4 93.918 -42.7 4.960 5228.1 no
## 12723 1.4 93.918 -42.7 4.960 5228.1 no
## 12729 1.4 93.918 -42.7 4.960 5228.1 no
## 12732 1.4 93.918 -42.7 4.960 5228.1 no
## 12735 1.4 93.918 -42.7 4.962 5228.1 no
## 12737 1.4 93.918 -42.7 4.962 5228.1 no
## 12745 1.4 93.918 -42.7 4.962 5228.1 no
## 12755 1.4 93.918 -42.7 4.962 5228.1 no
## 12758 1.4 93.918 -42.7 4.962 5228.1 no
## 12760 1.4 93.918 -42.7 4.962 5228.1 no
## 12765 1.4 93.918 -42.7 4.962 5228.1 no
## 12771 1.4 93.918 -42.7 4.962 5228.1 no
## 12775 1.4 93.918 -42.7 4.962 5228.1 no
## 12778 1.4 93.918 -42.7 4.962 5228.1 no
## 12782 1.4 93.918 -42.7 4.962 5228.1 no
## 12786 1.4 93.918 -42.7 4.962 5228.1 yes
## 12794 1.4 93.918 -42.7 4.962 5228.1 no
## 12801 1.4 93.918 -42.7 4.962 5228.1 no
## 12802 1.4 93.918 -42.7 4.962 5228.1 no
## 12805 1.4 93.918 -42.7 4.962 5228.1 no
## 12806 1.4 93.918 -42.7 4.962 5228.1 no
## 12816 1.4 93.918 -42.7 4.962 5228.1 no
## 12820 1.4 93.918 -42.7 4.962 5228.1 no
## 12821 1.4 93.918 -42.7 4.962 5228.1 no
## 12823 1.4 93.918 -42.7 4.962 5228.1 no
## 12842 1.4 93.918 -42.7 4.962 5228.1 no
## 12846 1.4 93.918 -42.7 4.962 5228.1 no
## 12862 1.4 93.918 -42.7 4.962 5228.1 no
## 12863 1.4 93.918 -42.7 4.962 5228.1 no
## 12868 1.4 93.918 -42.7 4.962 5228.1 no
## 12875 1.4 93.918 -42.7 4.962 5228.1 no
## 12878 1.4 93.918 -42.7 4.962 5228.1 no
## 12881 1.4 93.918 -42.7 4.962 5228.1 no
## 12883 1.4 93.918 -42.7 4.962 5228.1 no
## 12888 1.4 93.918 -42.7 4.962 5228.1 yes
## 12898 1.4 93.918 -42.7 4.962 5228.1 no
## 12899 1.4 93.918 -42.7 4.962 5228.1 no
## 12901 1.4 93.918 -42.7 4.962 5228.1 no
## 12903 1.4 93.918 -42.7 4.962 5228.1 no
## 12905 1.4 93.918 -42.7 4.962 5228.1 yes
## 12906 1.4 93.918 -42.7 4.962 5228.1 no
## 12910 1.4 93.918 -42.7 4.962 5228.1 no
## 12915 1.4 93.918 -42.7 4.962 5228.1 no
## 12918 1.4 93.918 -42.7 4.962 5228.1 no
## 12928 1.4 93.918 -42.7 4.962 5228.1 no
## 12933 1.4 93.918 -42.7 4.962 5228.1 yes
## 12936 1.4 93.918 -42.7 4.962 5228.1 no
## 12940 1.4 93.918 -42.7 4.962 5228.1 no
## 12942 1.4 93.918 -42.7 4.962 5228.1 no
## 12945 1.4 93.918 -42.7 4.962 5228.1 no
## 12946 1.4 93.918 -42.7 4.962 5228.1 no
## 12950 1.4 93.918 -42.7 4.962 5228.1 no
## 12952 1.4 93.918 -42.7 4.962 5228.1 no
## 12957 1.4 93.918 -42.7 4.962 5228.1 no
## 12968 1.4 93.918 -42.7 4.962 5228.1 no
## 12974 1.4 93.918 -42.7 4.962 5228.1 no
## 12979 1.4 93.918 -42.7 4.962 5228.1 no
## 12995 1.4 93.918 -42.7 4.962 5228.1 no
## 12997 1.4 93.918 -42.7 4.962 5228.1 no
## 13007 1.4 93.918 -42.7 4.962 5228.1 no
## 13011 1.4 93.918 -42.7 4.962 5228.1 no
## 13014 1.4 93.918 -42.7 4.962 5228.1 no
## 13017 1.4 93.918 -42.7 4.962 5228.1 yes
## 13020 1.4 93.918 -42.7 4.962 5228.1 no
## 13030 1.4 93.918 -42.7 4.962 5228.1 no
## 13043 1.4 93.918 -42.7 4.962 5228.1 no
## 13044 1.4 93.918 -42.7 4.962 5228.1 no
## 13045 1.4 93.918 -42.7 4.962 5228.1 no
## 13051 1.4 93.918 -42.7 4.962 5228.1 no
## 13053 1.4 93.918 -42.7 4.962 5228.1 no
## 13057 1.4 93.918 -42.7 4.962 5228.1 no
## 13059 1.4 93.918 -42.7 4.962 5228.1 no
## 13062 1.4 93.918 -42.7 4.962 5228.1 no
## 13066 1.4 93.918 -42.7 4.962 5228.1 no
## 13095 1.4 93.918 -42.7 4.962 5228.1 no
## 13096 1.4 93.918 -42.7 4.962 5228.1 no
## 13101 1.4 93.918 -42.7 4.962 5228.1 no
## 13107 1.4 93.918 -42.7 4.962 5228.1 no
## 13108 1.4 93.918 -42.7 4.962 5228.1 no
## 13115 1.4 93.918 -42.7 4.962 5228.1 no
## 13119 1.4 93.918 -42.7 4.962 5228.1 no
## 13121 1.4 93.918 -42.7 4.962 5228.1 no
## 13128 1.4 93.918 -42.7 4.962 5228.1 no
## 13129 1.4 93.918 -42.7 4.962 5228.1 no
## 13132 1.4 93.918 -42.7 4.962 5228.1 yes
## 13134 1.4 93.918 -42.7 4.962 5228.1 no
## 13135 1.4 93.918 -42.7 4.962 5228.1 yes
## 13136 1.4 93.918 -42.7 4.962 5228.1 no
## 13137 1.4 93.918 -42.7 4.962 5228.1 no
## 13139 1.4 93.918 -42.7 4.962 5228.1 no
## 13156 1.4 93.918 -42.7 4.962 5228.1 no
## 13157 1.4 93.918 -42.7 4.962 5228.1 no
## 13158 1.4 93.918 -42.7 4.962 5228.1 no
## 13170 1.4 93.918 -42.7 4.962 5228.1 no
## 13171 1.4 93.918 -42.7 4.962 5228.1 no
## 13180 1.4 93.918 -42.7 4.962 5228.1 no
## 13185 1.4 93.918 -42.7 4.962 5228.1 no
## 13189 1.4 93.918 -42.7 4.962 5228.1 no
## 13191 1.4 93.918 -42.7 4.962 5228.1 no
## 13195 1.4 93.918 -42.7 4.962 5228.1 no
## 13203 1.4 93.918 -42.7 4.962 5228.1 no
## 13208 1.4 93.918 -42.7 4.962 5228.1 no
## 13212 1.4 93.918 -42.7 4.962 5228.1 no
## 13216 1.4 93.918 -42.7 4.962 5228.1 no
## 13236 1.4 93.918 -42.7 4.962 5228.1 no
## 13237 1.4 93.918 -42.7 4.962 5228.1 no
## 13239 1.4 93.918 -42.7 4.962 5228.1 no
## 13242 1.4 93.918 -42.7 4.962 5228.1 no
## 13244 1.4 93.918 -42.7 4.962 5228.1 no
## 13246 1.4 93.918 -42.7 4.962 5228.1 no
## 13258 1.4 93.918 -42.7 4.962 5228.1 no
## 13261 1.4 93.918 -42.7 4.962 5228.1 no
## 13263 1.4 93.918 -42.7 4.962 5228.1 no
## 13264 1.4 93.918 -42.7 4.962 5228.1 no
## 13265 1.4 93.918 -42.7 4.962 5228.1 no
## 13266 1.4 93.918 -42.7 4.962 5228.1 no
## 13267 1.4 93.918 -42.7 4.962 5228.1 no
## 13277 1.4 93.918 -42.7 4.962 5228.1 yes
## 13280 1.4 93.918 -42.7 4.962 5228.1 no
## 13287 1.4 93.918 -42.7 4.962 5228.1 no
## 13290 1.4 93.918 -42.7 4.962 5228.1 no
## 13291 1.4 93.918 -42.7 4.962 5228.1 no
## 13296 1.4 93.918 -42.7 4.962 5228.1 no
## 13303 1.4 93.918 -42.7 4.962 5228.1 no
## 13305 1.4 93.918 -42.7 4.962 5228.1 no
## 13312 1.4 93.918 -42.7 4.962 5228.1 no
## 13316 1.4 93.918 -42.7 4.962 5228.1 no
## 13322 1.4 93.918 -42.7 4.962 5228.1 no
## 13325 1.4 93.918 -42.7 4.962 5228.1 no
## 13326 1.4 93.918 -42.7 4.962 5228.1 no
## 13327 1.4 93.918 -42.7 4.962 5228.1 no
## 13328 1.4 93.918 -42.7 4.962 5228.1 no
## 13330 1.4 93.918 -42.7 4.962 5228.1 no
## 13331 1.4 93.918 -42.7 4.962 5228.1 no
## 13332 1.4 93.918 -42.7 4.962 5228.1 no
## 13337 1.4 93.918 -42.7 4.962 5228.1 no
## 13343 1.4 93.918 -42.7 4.962 5228.1 no
## 13347 1.4 93.918 -42.7 4.962 5228.1 no
## 13351 1.4 93.918 -42.7 4.962 5228.1 no
## 13356 1.4 93.918 -42.7 4.962 5228.1 no
## 13357 1.4 93.918 -42.7 4.962 5228.1 no
## 13361 1.4 93.918 -42.7 4.962 5228.1 no
## 13364 1.4 93.918 -42.7 4.962 5228.1 no
## 13366 1.4 93.918 -42.7 4.962 5228.1 no
## 13377 1.4 93.918 -42.7 4.962 5228.1 no
## 13383 1.4 93.918 -42.7 4.962 5228.1 no
## 13386 1.4 93.918 -42.7 4.962 5228.1 no
## 13387 1.4 93.918 -42.7 4.962 5228.1 no
## 13389 1.4 93.918 -42.7 4.962 5228.1 no
## 13390 1.4 93.918 -42.7 4.962 5228.1 no
## 13392 1.4 93.918 -42.7 4.962 5228.1 no
## 13393 1.4 93.918 -42.7 4.962 5228.1 no
## 13402 1.4 93.918 -42.7 4.962 5228.1 no
## 13407 1.4 93.918 -42.7 4.962 5228.1 no
## 13409 1.4 93.918 -42.7 4.962 5228.1 no
## 13411 1.4 93.918 -42.7 4.962 5228.1 no
## 13412 1.4 93.918 -42.7 4.962 5228.1 no
## 13418 1.4 93.918 -42.7 4.962 5228.1 no
## 13420 1.4 93.918 -42.7 4.962 5228.1 no
## 13425 1.4 93.918 -42.7 4.962 5228.1 no
## 13426 1.4 93.918 -42.7 4.962 5228.1 no
## 13428 1.4 93.918 -42.7 4.962 5228.1 no
## 13434 1.4 93.918 -42.7 4.962 5228.1 no
## 13437 1.4 93.918 -42.7 4.962 5228.1 no
## 13438 1.4 93.918 -42.7 4.962 5228.1 no
## 13446 1.4 93.918 -42.7 4.962 5228.1 no
## 13449 1.4 93.918 -42.7 4.962 5228.1 no
## 13455 1.4 93.918 -42.7 4.962 5228.1 no
## 13456 1.4 93.918 -42.7 4.962 5228.1 no
## 13457 1.4 93.918 -42.7 4.962 5228.1 no
## 13464 1.4 93.918 -42.7 4.962 5228.1 no
## 13466 1.4 93.918 -42.7 4.962 5228.1 no
## 13467 1.4 93.918 -42.7 4.962 5228.1 no
## 13472 1.4 93.918 -42.7 4.962 5228.1 yes
## 13479 1.4 93.918 -42.7 4.963 5228.1 no
## 13483 1.4 93.918 -42.7 4.963 5228.1 no
## 13485 1.4 93.918 -42.7 4.963 5228.1 no
## 13489 1.4 93.918 -42.7 4.963 5228.1 no
## 13491 1.4 93.918 -42.7 4.963 5228.1 no
## 13496 1.4 93.918 -42.7 4.963 5228.1 no
## 13497 1.4 93.918 -42.7 4.963 5228.1 no
## 13498 1.4 93.918 -42.7 4.963 5228.1 no
## 13500 1.4 93.918 -42.7 4.963 5228.1 no
## 13505 1.4 93.918 -42.7 4.963 5228.1 yes
## 13506 1.4 93.918 -42.7 4.963 5228.1 no
## 13508 1.4 93.918 -42.7 4.963 5228.1 no
## 13517 1.4 93.918 -42.7 4.963 5228.1 no
## 13519 1.4 93.918 -42.7 4.963 5228.1 no
## 13525 1.4 93.918 -42.7 4.963 5228.1 no
## 13532 1.4 93.918 -42.7 4.963 5228.1 yes
## 13546 1.4 93.918 -42.7 4.963 5228.1 no
## 13548 1.4 93.918 -42.7 4.963 5228.1 no
## 13549 1.4 93.918 -42.7 4.963 5228.1 no
## 13550 1.4 93.918 -42.7 4.963 5228.1 no
## 13551 1.4 93.918 -42.7 4.963 5228.1 no
## 13554 1.4 93.918 -42.7 4.963 5228.1 no
## 13560 1.4 93.918 -42.7 4.963 5228.1 no
## 13562 1.4 93.918 -42.7 4.963 5228.1 no
## 13570 1.4 93.918 -42.7 4.963 5228.1 no
## 13580 1.4 93.918 -42.7 4.963 5228.1 no
## 13581 1.4 93.918 -42.7 4.963 5228.1 no
## 13593 1.4 93.918 -42.7 4.963 5228.1 no
## 13594 1.4 93.918 -42.7 4.963 5228.1 no
## 13601 1.4 93.918 -42.7 4.963 5228.1 no
## 13602 1.4 93.918 -42.7 4.963 5228.1 no
## 13608 1.4 93.918 -42.7 4.963 5228.1 no
## 13610 1.4 93.918 -42.7 4.963 5228.1 no
## 13611 1.4 93.918 -42.7 4.963 5228.1 no
## 13617 1.4 93.918 -42.7 4.963 5228.1 no
## 13637 1.4 93.918 -42.7 4.963 5228.1 no
## 13639 1.4 93.918 -42.7 4.963 5228.1 no
## 13647 1.4 93.918 -42.7 4.963 5228.1 no
## 13653 1.4 93.918 -42.7 4.963 5228.1 no
## 13654 1.4 93.918 -42.7 4.963 5228.1 no
## 13656 1.4 93.918 -42.7 4.963 5228.1 no
## 13659 1.4 93.918 -42.7 4.963 5228.1 no
## 13666 1.4 93.918 -42.7 4.963 5228.1 no
## 13671 1.4 93.918 -42.7 4.963 5228.1 no
## 13677 1.4 93.918 -42.7 4.963 5228.1 no
## 13680 1.4 93.918 -42.7 4.963 5228.1 no
## 13685 1.4 93.918 -42.7 4.963 5228.1 no
## 13702 1.4 93.918 -42.7 4.963 5228.1 no
## 13705 1.4 93.918 -42.7 4.963 5228.1 no
## 13711 1.4 93.918 -42.7 4.963 5228.1 yes
## 13717 1.4 93.918 -42.7 4.963 5228.1 no
## 13720 1.4 93.918 -42.7 4.963 5228.1 no
## 13721 1.4 93.918 -42.7 4.963 5228.1 no
## 13722 1.4 93.918 -42.7 4.963 5228.1 no
## 13724 1.4 93.918 -42.7 4.963 5228.1 no
## 13727 1.4 93.918 -42.7 4.963 5228.1 yes
## 13728 1.4 93.918 -42.7 4.963 5228.1 yes
## 13730 1.4 93.918 -42.7 4.963 5228.1 no
## 13734 1.4 93.918 -42.7 4.963 5228.1 no
## 13742 1.4 93.918 -42.7 4.963 5228.1 no
## 13744 1.4 93.918 -42.7 4.963 5228.1 no
## 13747 1.4 93.918 -42.7 4.963 5228.1 no
## 13761 1.4 93.918 -42.7 4.963 5228.1 no
## 13764 1.4 93.918 -42.7 4.963 5228.1 no
## 13765 1.4 93.918 -42.7 4.963 5228.1 no
## 13767 1.4 93.918 -42.7 4.963 5228.1 no
## 13773 1.4 93.918 -42.7 4.963 5228.1 no
## 13777 1.4 93.918 -42.7 4.963 5228.1 no
## 13787 1.4 93.918 -42.7 4.963 5228.1 no
## 13795 1.4 93.918 -42.7 4.963 5228.1 no
## 13797 1.4 93.918 -42.7 4.963 5228.1 no
## 13798 1.4 93.918 -42.7 4.963 5228.1 no
## 13799 1.4 93.918 -42.7 4.963 5228.1 no
## 13801 1.4 93.918 -42.7 4.963 5228.1 no
## 13806 1.4 93.918 -42.7 4.963 5228.1 no
## 13811 1.4 93.918 -42.7 4.963 5228.1 no
## 13817 1.4 93.918 -42.7 4.963 5228.1 no
## 13820 1.4 93.918 -42.7 4.963 5228.1 no
## 13822 1.4 93.918 -42.7 4.963 5228.1 no
## 13831 1.4 93.918 -42.7 4.963 5228.1 no
## 13835 1.4 93.918 -42.7 4.963 5228.1 yes
## 13841 1.4 93.918 -42.7 4.963 5228.1 no
## 13845 1.4 93.918 -42.7 4.963 5228.1 no
## 13846 1.4 93.918 -42.7 4.963 5228.1 no
## 13847 1.4 93.918 -42.7 4.963 5228.1 no
## 13852 1.4 93.918 -42.7 4.963 5228.1 no
## 13854 1.4 93.918 -42.7 4.963 5228.1 no
## 13860 1.4 93.918 -42.7 4.963 5228.1 no
## 13861 1.4 93.918 -42.7 4.963 5228.1 no
## 13862 1.4 93.918 -42.7 4.963 5228.1 no
## 13871 1.4 93.918 -42.7 4.963 5228.1 no
## 13883 1.4 93.918 -42.7 4.963 5228.1 yes
## 13890 1.4 93.918 -42.7 4.963 5228.1 no
## 13892 1.4 93.918 -42.7 4.963 5228.1 no
## 13893 1.4 93.918 -42.7 4.963 5228.1 no
## 13895 1.4 93.918 -42.7 4.963 5228.1 no
## 13898 1.4 93.918 -42.7 4.963 5228.1 no
## 13907 1.4 93.918 -42.7 4.963 5228.1 no
## 13912 1.4 93.918 -42.7 4.963 5228.1 no
## 13913 1.4 93.918 -42.7 4.963 5228.1 no
## 13914 1.4 93.918 -42.7 4.963 5228.1 no
## 13915 1.4 93.918 -42.7 4.963 5228.1 no
## 13920 1.4 93.918 -42.7 4.963 5228.1 no
## 13922 1.4 93.918 -42.7 4.963 5228.1 no
## 13924 1.4 93.918 -42.7 4.963 5228.1 no
## 13925 1.4 93.918 -42.7 4.963 5228.1 no
## 13927 1.4 93.918 -42.7 4.963 5228.1 no
## 13935 1.4 93.918 -42.7 4.963 5228.1 no
## 13946 1.4 93.918 -42.7 4.963 5228.1 no
## 13947 1.4 93.918 -42.7 4.963 5228.1 no
## 13949 1.4 93.918 -42.7 4.963 5228.1 no
## 13963 1.4 93.918 -42.7 4.963 5228.1 no
## 13970 1.4 93.918 -42.7 4.963 5228.1 no
## 13978 1.4 93.918 -42.7 4.963 5228.1 yes
## 13988 1.4 93.918 -42.7 4.963 5228.1 no
## 13994 1.4 93.918 -42.7 4.963 5228.1 no
## 13998 1.4 93.918 -42.7 4.963 5228.1 no
## 14000 1.4 93.918 -42.7 4.963 5228.1 no
## 14006 1.4 93.918 -42.7 4.963 5228.1 no
## 14010 1.4 93.918 -42.7 4.963 5228.1 no
## 14014 1.4 93.918 -42.7 4.963 5228.1 no
## 14016 1.4 93.918 -42.7 4.963 5228.1 no
## 14026 1.4 93.918 -42.7 4.963 5228.1 no
## 14030 1.4 93.918 -42.7 4.963 5228.1 no
## 14036 1.4 93.918 -42.7 4.963 5228.1 no
## 14038 1.4 93.918 -42.7 4.963 5228.1 no
## 14041 1.4 93.918 -42.7 4.963 5228.1 no
## 14047 1.4 93.918 -42.7 4.963 5228.1 no
## 14049 1.4 93.918 -42.7 4.963 5228.1 no
## 14051 1.4 93.918 -42.7 4.963 5228.1 yes
## 14052 1.4 93.918 -42.7 4.963 5228.1 no
## 14072 1.4 93.918 -42.7 4.963 5228.1 no
## 14075 1.4 93.918 -42.7 4.963 5228.1 yes
## 14089 1.4 93.918 -42.7 4.962 5228.1 no
## 14091 1.4 93.918 -42.7 4.962 5228.1 no
## 14093 1.4 93.918 -42.7 4.962 5228.1 no
## 14099 1.4 93.918 -42.7 4.962 5228.1 no
## 14101 1.4 93.918 -42.7 4.962 5228.1 no
## 14116 1.4 93.918 -42.7 4.962 5228.1 no
## 14127 1.4 93.918 -42.7 4.962 5228.1 no
## 14138 1.4 93.918 -42.7 4.962 5228.1 yes
## 14148 1.4 93.918 -42.7 4.962 5228.1 no
## 14158 1.4 93.918 -42.7 4.962 5228.1 no
## 14162 1.4 93.918 -42.7 4.962 5228.1 no
## 14169 1.4 93.918 -42.7 4.962 5228.1 no
## 14170 1.4 93.918 -42.7 4.962 5228.1 no
## 14173 1.4 93.918 -42.7 4.962 5228.1 no
## 14186 1.4 93.918 -42.7 4.962 5228.1 no
## 14191 1.4 93.918 -42.7 4.962 5228.1 no
## 14192 1.4 93.918 -42.7 4.962 5228.1 no
## 14197 1.4 93.918 -42.7 4.962 5228.1 no
## 14198 1.4 93.918 -42.7 4.962 5228.1 no
## 14202 1.4 93.918 -42.7 4.962 5228.1 no
## 14215 1.4 93.918 -42.7 4.962 5228.1 no
## 14228 1.4 93.918 -42.7 4.962 5228.1 no
## 14230 1.4 93.918 -42.7 4.962 5228.1 no
## 14231 1.4 93.918 -42.7 4.962 5228.1 no
## 14233 1.4 93.918 -42.7 4.962 5228.1 no
## 14245 1.4 93.918 -42.7 4.962 5228.1 no
## 14256 1.4 93.918 -42.7 4.962 5228.1 no
## 14257 1.4 93.918 -42.7 4.962 5228.1 no
## 14266 1.4 93.918 -42.7 4.962 5228.1 no
## 14267 1.4 93.918 -42.7 4.962 5228.1 no
## 14274 1.4 93.918 -42.7 4.962 5228.1 no
## 14275 1.4 93.918 -42.7 4.962 5228.1 no
## 14281 1.4 93.918 -42.7 4.962 5228.1 no
## 14285 1.4 93.918 -42.7 4.962 5228.1 no
## 14286 1.4 93.918 -42.7 4.962 5228.1 no
## 14293 1.4 93.918 -42.7 4.962 5228.1 no
## 14297 1.4 93.918 -42.7 4.962 5228.1 no
## 14298 1.4 93.918 -42.7 4.962 5228.1 no
## 14320 1.4 93.918 -42.7 4.962 5228.1 no
## 14322 1.4 93.918 -42.7 4.962 5228.1 no
## 14329 1.4 93.918 -42.7 4.962 5228.1 no
## 14330 1.4 93.918 -42.7 4.962 5228.1 no
## 14331 1.4 93.918 -42.7 4.962 5228.1 no
## 14334 1.4 93.918 -42.7 4.962 5228.1 no
## 14344 1.4 93.918 -42.7 4.962 5228.1 no
## 14346 1.4 93.918 -42.7 4.962 5228.1 yes
## 14347 1.4 93.918 -42.7 4.962 5228.1 no
## 14355 1.4 93.918 -42.7 4.962 5228.1 no
## 14361 1.4 93.918 -42.7 4.962 5228.1 no
## 14362 1.4 93.918 -42.7 4.962 5228.1 no
## 14371 1.4 93.918 -42.7 4.962 5228.1 no
## 14372 1.4 93.918 -42.7 4.962 5228.1 no
## 14373 1.4 93.918 -42.7 4.962 5228.1 no
## 14378 1.4 93.918 -42.7 4.962 5228.1 no
## 14381 1.4 93.918 -42.7 4.962 5228.1 no
## 14385 1.4 93.918 -42.7 4.962 5228.1 no
## 14386 1.4 93.918 -42.7 4.962 5228.1 no
## 14391 1.4 93.918 -42.7 4.962 5228.1 no
## 14400 1.4 93.918 -42.7 4.962 5228.1 no
## 14401 1.4 93.918 -42.7 4.962 5228.1 no
## 14402 1.4 93.918 -42.7 4.962 5228.1 no
## 14404 1.4 93.918 -42.7 4.962 5228.1 no
## 14410 1.4 93.918 -42.7 4.962 5228.1 no
## 14414 1.4 93.918 -42.7 4.961 5228.1 no
## 14416 1.4 93.918 -42.7 4.961 5228.1 no
## 14417 1.4 93.918 -42.7 4.961 5228.1 no
## 14420 1.4 93.918 -42.7 4.961 5228.1 no
## 14431 1.4 93.918 -42.7 4.961 5228.1 no
## 14433 1.4 93.918 -42.7 4.961 5228.1 no
## 14436 1.4 93.918 -42.7 4.961 5228.1 no
## 14462 1.4 93.918 -42.7 4.961 5228.1 no
## 14466 1.4 93.918 -42.7 4.961 5228.1 yes
## 14481 1.4 93.918 -42.7 4.961 5228.1 no
## 14487 1.4 93.918 -42.7 4.961 5228.1 no
## 14488 1.4 93.918 -42.7 4.961 5228.1 no
## 14490 1.4 93.918 -42.7 4.961 5228.1 no
## 14495 1.4 93.918 -42.7 4.961 5228.1 no
## 14497 1.4 93.918 -42.7 4.961 5228.1 no
## 14501 1.4 93.918 -42.7 4.961 5228.1 no
## 14510 1.4 93.918 -42.7 4.961 5228.1 no
## 14520 1.4 93.918 -42.7 4.961 5228.1 no
## 14528 1.4 93.918 -42.7 4.961 5228.1 no
## 14536 1.4 93.918 -42.7 4.961 5228.1 no
## 14543 1.4 93.918 -42.7 4.961 5228.1 no
## 14547 1.4 93.918 -42.7 4.961 5228.1 no
## 14554 1.4 93.918 -42.7 4.961 5228.1 yes
## 14555 1.4 93.918 -42.7 4.961 5228.1 yes
## 14557 1.4 93.918 -42.7 4.961 5228.1 no
## 14565 1.4 93.918 -42.7 4.961 5228.1 no
## 14567 1.4 93.918 -42.7 4.961 5228.1 no
## 14572 1.4 93.918 -42.7 4.961 5228.1 no
## 14573 1.4 93.918 -42.7 4.961 5228.1 no
## 14577 1.4 93.918 -42.7 4.961 5228.1 yes
## 14587 1.4 93.918 -42.7 4.961 5228.1 no
## 14591 1.4 93.918 -42.7 4.961 5228.1 no
## 14596 1.4 93.918 -42.7 4.961 5228.1 no
## 14598 1.4 93.918 -42.7 4.961 5228.1 yes
## 14601 1.4 93.918 -42.7 4.961 5228.1 no
## 14608 1.4 93.918 -42.7 4.961 5228.1 no
## 14614 1.4 93.918 -42.7 4.961 5228.1 no
## 14627 1.4 93.918 -42.7 4.961 5228.1 no
## 14640 1.4 93.918 -42.7 4.961 5228.1 yes
## 14641 1.4 93.918 -42.7 4.961 5228.1 no
## 14645 1.4 93.918 -42.7 4.961 5228.1 no
## 14649 1.4 93.918 -42.7 4.961 5228.1 no
## 14652 1.4 93.918 -42.7 4.961 5228.1 no
## 14656 1.4 93.918 -42.7 4.961 5228.1 no
## 14663 1.4 93.918 -42.7 4.961 5228.1 no
## 14666 1.4 93.918 -42.7 4.961 5228.1 no
## 14670 1.4 93.918 -42.7 4.961 5228.1 no
## 14671 1.4 93.918 -42.7 4.961 5228.1 no
## 14675 1.4 93.918 -42.7 4.961 5228.1 no
## 14676 1.4 93.918 -42.7 4.961 5228.1 no
## 14687 1.4 93.918 -42.7 4.961 5228.1 yes
## 14690 1.4 93.918 -42.7 4.961 5228.1 no
## 14691 1.4 93.918 -42.7 4.961 5228.1 yes
## 14700 1.4 93.918 -42.7 4.961 5228.1 no
## 14701 1.4 93.918 -42.7 4.961 5228.1 no
## 14705 1.4 93.918 -42.7 4.961 5228.1 no
## 14706 1.4 93.918 -42.7 4.961 5228.1 no
## 14710 1.4 93.918 -42.7 4.961 5228.1 no
## 14711 1.4 93.918 -42.7 4.961 5228.1 no
## 14721 1.4 93.918 -42.7 4.961 5228.1 no
## 14724 1.4 93.918 -42.7 4.957 5228.1 no
## 14725 1.4 93.918 -42.7 4.957 5228.1 no
## 14732 1.4 93.918 -42.7 4.957 5228.1 no
## 14733 1.4 93.918 -42.7 4.957 5228.1 no
## 14734 1.4 93.918 -42.7 4.957 5228.1 no
## 14736 1.4 93.918 -42.7 4.957 5228.1 no
## 14743 1.4 93.918 -42.7 4.957 5228.1 no
## 14747 1.4 93.918 -42.7 4.957 5228.1 yes
## 14748 1.4 93.918 -42.7 4.957 5228.1 no
## 14749 1.4 93.918 -42.7 4.957 5228.1 no
## 14751 1.4 93.918 -42.7 4.957 5228.1 no
## 14760 1.4 93.918 -42.7 4.957 5228.1 no
## 14762 1.4 93.918 -42.7 4.957 5228.1 no
## 14765 1.4 93.918 -42.7 4.957 5228.1 no
## 14767 1.4 93.918 -42.7 4.957 5228.1 no
## 14769 1.4 93.918 -42.7 4.957 5228.1 no
## 14787 1.4 93.918 -42.7 4.957 5228.1 no
## 14788 1.4 93.918 -42.7 4.957 5228.1 yes
## 14793 1.4 93.918 -42.7 4.957 5228.1 no
## 14794 1.4 93.918 -42.7 4.957 5228.1 no
## 14797 1.4 93.918 -42.7 4.957 5228.1 no
## 14798 1.4 93.918 -42.7 4.957 5228.1 no
## 14804 1.4 93.918 -42.7 4.957 5228.1 yes
## 14806 1.4 93.918 -42.7 4.957 5228.1 yes
## 14813 1.4 93.918 -42.7 4.957 5228.1 no
## 14831 1.4 93.918 -42.7 4.957 5228.1 no
## 14836 1.4 93.918 -42.7 4.957 5228.1 no
## 14839 1.4 93.918 -42.7 4.957 5228.1 no
## 14846 1.4 93.918 -42.7 4.957 5228.1 no
## 14858 1.4 93.918 -42.7 4.957 5228.1 no
## 14861 1.4 93.918 -42.7 4.957 5228.1 no
## 14863 1.4 93.918 -42.7 4.957 5228.1 no
## 14870 1.4 93.918 -42.7 4.957 5228.1 no
## 14874 1.4 93.918 -42.7 4.957 5228.1 no
## 14878 1.4 93.918 -42.7 4.957 5228.1 no
## 14883 1.4 93.918 -42.7 4.957 5228.1 no
## 14888 1.4 93.918 -42.7 4.957 5228.1 no
## 14889 1.4 93.918 -42.7 4.957 5228.1 yes
## 14895 1.4 93.918 -42.7 4.957 5228.1 no
## 14899 1.4 93.918 -42.7 4.957 5228.1 no
## 14902 1.4 93.918 -42.7 4.957 5228.1 no
## 14905 1.4 93.918 -42.7 4.957 5228.1 no
## 14911 1.4 93.918 -42.7 4.957 5228.1 no
## 14912 1.4 93.918 -42.7 4.957 5228.1 no
## 14915 1.4 93.918 -42.7 4.957 5228.1 no
## 14924 1.4 93.918 -42.7 4.957 5228.1 no
## 14933 1.4 93.918 -42.7 4.957 5228.1 no
## 14937 1.4 93.918 -42.7 4.957 5228.1 no
## 14947 1.4 93.918 -42.7 4.957 5228.1 no
## 14951 1.4 93.918 -42.7 4.957 5228.1 no
## 14955 1.4 93.918 -42.7 4.957 5228.1 no
## 14958 1.4 93.918 -42.7 4.957 5228.1 no
## 14959 1.4 93.918 -42.7 4.957 5228.1 no
## 14962 1.4 93.918 -42.7 4.957 5228.1 no
## 14965 1.4 93.918 -42.7 4.957 5228.1 no
## 14967 1.4 93.918 -42.7 4.957 5228.1 no
## 14973 1.4 93.918 -42.7 4.958 5228.1 no
## 14976 1.4 93.918 -42.7 4.958 5228.1 no
## 14977 1.4 93.918 -42.7 4.958 5228.1 no
## 14982 1.4 93.918 -42.7 4.958 5228.1 no
## 14987 1.4 93.918 -42.7 4.958 5228.1 no
## 14988 1.4 93.918 -42.7 4.958 5228.1 no
## 14992 1.4 93.918 -42.7 4.958 5228.1 no
## 14995 1.4 93.918 -42.7 4.958 5228.1 no
## 15009 1.4 93.918 -42.7 4.958 5228.1 no
## 15016 1.4 93.918 -42.7 4.958 5228.1 no
## 15023 1.4 93.918 -42.7 4.958 5228.1 no
## 15042 1.4 93.918 -42.7 4.958 5228.1 no
## 15046 1.4 93.918 -42.7 4.958 5228.1 yes
## 15058 1.4 93.918 -42.7 4.958 5228.1 no
## 15062 1.4 93.918 -42.7 4.958 5228.1 no
## 15066 1.4 93.918 -42.7 4.958 5228.1 no
## 15068 1.4 93.918 -42.7 4.958 5228.1 no
## 15074 1.4 93.918 -42.7 4.958 5228.1 no
## 15091 1.4 93.918 -42.7 4.958 5228.1 no
## 15093 1.4 93.918 -42.7 4.958 5228.1 no
## 15096 1.4 93.918 -42.7 4.958 5228.1 no
## 15109 1.4 93.918 -42.7 4.958 5228.1 no
## 15110 1.4 93.918 -42.7 4.958 5228.1 no
## 15121 1.4 93.918 -42.7 4.958 5228.1 no
## 15122 1.4 93.918 -42.7 4.958 5228.1 yes
## 15127 1.4 93.918 -42.7 4.958 5228.1 yes
## 15150 1.4 93.918 -42.7 4.958 5228.1 no
## 15155 1.4 93.918 -42.7 4.958 5228.1 no
## 15160 1.4 93.918 -42.7 4.958 5228.1 no
## 15169 1.4 93.918 -42.7 4.958 5228.1 no
## 15174 1.4 93.918 -42.7 4.958 5228.1 no
## 15180 1.4 93.918 -42.7 4.958 5228.1 no
## 15184 1.4 93.918 -42.7 4.958 5228.1 no
## 15187 1.4 93.918 -42.7 4.958 5228.1 no
## 15191 1.4 93.918 -42.7 4.958 5228.1 yes
## 15197 1.4 93.918 -42.7 4.958 5228.1 no
## 15198 1.4 93.918 -42.7 4.958 5228.1 no
## 15199 1.4 93.918 -42.7 4.958 5228.1 no
## 15203 1.4 93.918 -42.7 4.958 5228.1 no
## 15204 1.4 93.918 -42.7 4.958 5228.1 no
## 15205 1.4 93.918 -42.7 4.958 5228.1 no
## 15206 1.4 93.918 -42.7 4.958 5228.1 no
## 15210 1.4 93.918 -42.7 4.958 5228.1 yes
## 15212 1.4 93.918 -42.7 4.958 5228.1 yes
## 15250 1.4 93.918 -42.7 4.958 5228.1 no
## 15257 1.4 93.918 -42.7 4.958 5228.1 no
## 15259 1.4 93.918 -42.7 4.958 5228.1 no
## 15262 1.4 93.918 -42.7 4.958 5228.1 no
## 15264 1.4 93.918 -42.7 4.958 5228.1 no
## 15272 1.4 93.918 -42.7 4.958 5228.1 no
## 15275 1.4 93.918 -42.7 4.958 5228.1 no
## 15277 1.4 93.918 -42.7 4.958 5228.1 no
## 15283 1.4 93.918 -42.7 4.958 5228.1 no
## 15293 1.4 93.918 -42.7 4.958 5228.1 no
## 15296 1.4 93.918 -42.7 4.958 5228.1 no
## 15302 1.4 93.918 -42.7 4.958 5228.1 no
## 15316 1.4 93.918 -42.7 4.957 5228.1 no
## 15323 1.4 93.918 -42.7 4.957 5228.1 no
## 15330 1.4 93.918 -42.7 4.957 5228.1 no
## 15333 1.4 93.918 -42.7 4.957 5228.1 no
## 15334 1.4 93.918 -42.7 4.957 5228.1 no
## 15336 1.4 93.918 -42.7 4.957 5228.1 no
## 15343 1.4 93.918 -42.7 4.957 5228.1 no
## 15350 1.4 93.918 -42.7 4.957 5228.1 no
## 15353 1.4 93.918 -42.7 4.957 5228.1 no
## 15358 1.4 93.918 -42.7 4.957 5228.1 yes
## 15361 1.4 93.918 -42.7 4.957 5228.1 no
## 15367 1.4 93.918 -42.7 4.957 5228.1 no
## 15375 1.4 93.918 -42.7 4.957 5228.1 no
## 15378 1.4 93.918 -42.7 4.957 5228.1 no
## 15380 1.4 93.918 -42.7 4.957 5228.1 no
## 15385 1.4 93.918 -42.7 4.957 5228.1 no
## 15387 1.4 93.918 -42.7 4.957 5228.1 no
## 15389 1.4 93.918 -42.7 4.957 5228.1 no
## 15396 1.4 93.918 -42.7 4.957 5228.1 no
## 15402 1.4 93.918 -42.7 4.957 5228.1 no
## 15404 1.4 93.918 -42.7 4.957 5228.1 yes
## 15405 1.4 93.918 -42.7 4.957 5228.1 no
## 15408 1.4 93.918 -42.7 4.957 5228.1 no
## 15420 1.4 93.918 -42.7 4.957 5228.1 no
## 15424 1.4 93.918 -42.7 4.957 5228.1 no
## 15427 1.4 93.918 -42.7 4.957 5228.1 no
## 15430 1.4 93.918 -42.7 4.957 5228.1 yes
## 15442 1.4 93.918 -42.7 4.957 5228.1 no
## 15444 1.4 93.918 -42.7 4.957 5228.1 no
## 15446 1.4 93.918 -42.7 4.957 5228.1 no
## 15453 1.4 93.918 -42.7 4.957 5228.1 yes
## 15459 1.4 93.918 -42.7 4.957 5228.1 no
## 15466 1.4 93.918 -42.7 4.957 5228.1 no
## 15471 1.4 93.918 -42.7 4.957 5228.1 no
## 15487 1.4 93.918 -42.7 4.957 5228.1 no
## 15494 1.4 93.918 -42.7 4.957 5228.1 no
## 15499 1.4 93.918 -42.7 4.957 5228.1 yes
## 15503 1.4 93.918 -42.7 4.957 5228.1 no
## 15513 1.4 93.918 -42.7 4.957 5228.1 no
## 15515 1.4 93.918 -42.7 4.957 5228.1 yes
## 15522 1.4 93.918 -42.7 4.957 5228.1 no
## 15527 1.4 93.918 -42.7 4.957 5228.1 no
## 15532 1.4 93.918 -42.7 4.957 5228.1 no
## 15533 1.4 93.918 -42.7 4.957 5228.1 no
## 15538 1.4 93.918 -42.7 4.957 5228.1 no
## 15543 1.4 93.918 -42.7 4.957 5228.1 no
## 15551 1.4 93.918 -42.7 4.957 5228.1 no
## 15554 1.4 93.918 -42.7 4.957 5228.1 no
## 15557 1.4 93.918 -42.7 4.957 5228.1 no
## 15558 1.4 93.918 -42.7 4.957 5228.1 no
## 15561 1.4 93.918 -42.7 4.957 5228.1 no
## 15564 1.4 93.918 -42.7 4.957 5228.1 no
## 15569 1.4 93.918 -42.7 4.957 5228.1 no
## 15574 1.4 93.918 -42.7 4.957 5228.1 no
## 15581 1.4 93.918 -42.7 4.957 5228.1 no
## 15589 1.4 93.918 -42.7 4.957 5228.1 no
## 15592 1.4 93.918 -42.7 4.957 5228.1 no
## 15607 1.4 93.918 -42.7 4.960 5228.1 no
## 15612 1.4 93.918 -42.7 4.960 5228.1 no
## 15615 1.4 93.918 -42.7 4.960 5228.1 no
## 15620 1.4 93.918 -42.7 4.960 5228.1 no
## 15625 1.4 93.918 -42.7 4.960 5228.1 no
## 15626 1.4 93.918 -42.7 4.960 5228.1 no
## 15631 1.4 93.918 -42.7 4.960 5228.1 no
## 15642 1.4 93.918 -42.7 4.960 5228.1 no
## 15643 1.4 93.918 -42.7 4.960 5228.1 yes
## 15647 1.4 93.918 -42.7 4.960 5228.1 no
## 15658 1.4 93.918 -42.7 4.960 5228.1 no
## 15660 1.4 93.918 -42.7 4.960 5228.1 no
## 15667 1.4 93.918 -42.7 4.960 5228.1 no
## 15670 1.4 93.918 -42.7 4.960 5228.1 no
## 15674 1.4 93.918 -42.7 4.960 5228.1 no
## 15676 1.4 93.918 -42.7 4.960 5228.1 no
## 15683 1.4 93.918 -42.7 4.960 5228.1 no
## 15690 1.4 93.918 -42.7 4.960 5228.1 no
## 15691 1.4 93.918 -42.7 4.960 5228.1 no
## 15693 1.4 93.918 -42.7 4.960 5228.1 no
## 15694 1.4 93.918 -42.7 4.960 5228.1 no
## 15699 1.4 93.918 -42.7 4.960 5228.1 no
## 15704 1.4 93.918 -42.7 4.960 5228.1 no
## 15709 1.4 93.918 -42.7 4.960 5228.1 no
## 15715 1.4 93.918 -42.7 4.960 5228.1 no
## 15719 1.4 93.918 -42.7 4.960 5228.1 no
## 15720 1.4 93.918 -42.7 4.960 5228.1 no
## 15734 1.4 93.918 -42.7 4.960 5228.1 no
## 15742 1.4 93.918 -42.7 4.960 5228.1 no
## 15751 1.4 93.918 -42.7 4.960 5228.1 no
## 15760 1.4 93.918 -42.7 4.960 5228.1 no
## 15769 1.4 93.918 -42.7 4.960 5228.1 no
## 15780 1.4 93.918 -42.7 4.960 5228.1 no
## 15783 1.4 93.918 -42.7 4.960 5228.1 yes
## 15789 1.4 93.918 -42.7 4.960 5228.1 no
## 15790 1.4 93.918 -42.7 4.960 5228.1 no
## 15791 1.4 93.918 -42.7 4.960 5228.1 no
## 15792 1.4 93.918 -42.7 4.960 5228.1 yes
## 15796 1.4 93.918 -42.7 4.960 5228.1 no
## 15797 1.4 93.918 -42.7 4.960 5228.1 yes
## 15810 1.4 93.918 -42.7 4.960 5228.1 no
## 15811 1.4 93.918 -42.7 4.960 5228.1 yes
## 15819 1.4 93.918 -42.7 4.960 5228.1 no
## 15821 1.4 93.918 -42.7 4.960 5228.1 no
## 15840 1.4 93.918 -42.7 4.960 5228.1 no
## 15850 1.4 93.918 -42.7 4.960 5228.1 no
## 15855 1.4 93.918 -42.7 4.960 5228.1 no
## 15869 1.4 93.918 -42.7 4.960 5228.1 no
## 15876 1.4 93.918 -42.7 4.960 5228.1 no
## 15894 1.4 93.918 -42.7 4.960 5228.1 no
## 15895 1.4 93.918 -42.7 4.960 5228.1 no
## 15898 1.4 93.918 -42.7 4.960 5228.1 no
## 15901 1.4 93.918 -42.7 4.960 5228.1 no
## 15906 1.4 93.918 -42.7 4.960 5228.1 no
## 15913 1.4 93.918 -42.7 4.960 5228.1 yes
## 15928 1.4 93.918 -42.7 4.960 5228.1 no
## 15937 1.4 93.918 -42.7 4.960 5228.1 no
## 15938 1.4 93.918 -42.7 4.960 5228.1 no
## 15943 1.4 93.918 -42.7 4.960 5228.1 no
## 15947 1.4 93.918 -42.7 4.960 5228.1 no
## 15952 1.4 93.918 -42.7 4.960 5228.1 yes
## 15959 1.4 93.918 -42.7 4.960 5228.1 no
## 15962 1.4 93.918 -42.7 4.960 5228.1 no
## 15968 1.4 93.918 -42.7 4.960 5228.1 no
## 15976 1.4 93.918 -42.7 4.960 5228.1 no
## 15981 1.4 93.918 -42.7 4.960 5228.1 no
## 15982 1.4 93.918 -42.7 4.960 5228.1 no
## 15984 1.4 93.918 -42.7 4.960 5228.1 no
## 15987 1.4 93.918 -42.7 4.961 5228.1 no
## 15988 1.4 93.918 -42.7 4.961 5228.1 no
## 15990 1.4 93.918 -42.7 4.961 5228.1 no
## 15992 1.4 93.918 -42.7 4.961 5228.1 no
## 15994 1.4 93.918 -42.7 4.961 5228.1 no
## 15997 1.4 93.918 -42.7 4.961 5228.1 no
## 15998 1.4 93.918 -42.7 4.961 5228.1 no
## 16000 1.4 93.918 -42.7 4.961 5228.1 no
## 16001 1.4 93.918 -42.7 4.961 5228.1 no
## 16002 1.4 93.918 -42.7 4.961 5228.1 no
## 16007 1.4 93.918 -42.7 4.961 5228.1 no
## 16020 1.4 93.918 -42.7 4.961 5228.1 no
## 16027 1.4 93.918 -42.7 4.961 5228.1 no
## 16028 1.4 93.918 -42.7 4.961 5228.1 no
## 16029 1.4 93.918 -42.7 4.961 5228.1 no
## 16034 1.4 93.918 -42.7 4.961 5228.1 no
## 16045 1.4 93.918 -42.7 4.961 5228.1 no
## 16046 1.4 93.918 -42.7 4.961 5228.1 yes
## 16053 1.4 93.918 -42.7 4.961 5228.1 no
## 16058 1.4 93.918 -42.7 4.961 5228.1 no
## 16059 1.4 93.918 -42.7 4.961 5228.1 yes
## 16064 1.4 93.918 -42.7 4.961 5228.1 no
## 16067 1.4 93.918 -42.7 4.961 5228.1 no
## 16073 1.4 93.918 -42.7 4.961 5228.1 no
## 16078 1.4 93.918 -42.7 4.961 5228.1 no
## 16080 1.4 93.918 -42.7 4.961 5228.1 no
## 16082 1.4 93.918 -42.7 4.961 5228.1 no
## 16104 1.4 93.918 -42.7 4.961 5228.1 no
## 16107 1.4 93.918 -42.7 4.961 5228.1 no
## 16113 1.4 93.918 -42.7 4.961 5228.1 no
## 16115 1.4 93.918 -42.7 4.961 5228.1 no
## 16116 1.4 93.918 -42.7 4.961 5228.1 no
## 16121 1.4 93.918 -42.7 4.961 5228.1 no
## 16122 1.4 93.918 -42.7 4.961 5228.1 no
## 16123 1.4 93.918 -42.7 4.961 5228.1 no
## 16126 1.4 93.918 -42.7 4.961 5228.1 no
## 16129 1.4 93.918 -42.7 4.961 5228.1 no
## 16134 1.4 93.918 -42.7 4.961 5228.1 yes
## 16135 1.4 93.918 -42.7 4.961 5228.1 no
## 16139 1.4 93.918 -42.7 4.961 5228.1 no
## 16145 1.4 93.918 -42.7 4.961 5228.1 no
## 16149 1.4 93.918 -42.7 4.961 5228.1 no
## 16150 1.4 93.918 -42.7 4.961 5228.1 yes
## 16169 1.4 93.918 -42.7 4.961 5228.1 no
## 16177 1.4 93.918 -42.7 4.961 5228.1 no
## 16182 1.4 93.918 -42.7 4.961 5228.1 no
## 16183 1.4 93.918 -42.7 4.961 5228.1 no
## 16184 1.4 93.918 -42.7 4.961 5228.1 yes
## 16189 1.4 93.918 -42.7 4.961 5228.1 no
## 16190 1.4 93.918 -42.7 4.961 5228.1 no
## 16195 1.4 93.918 -42.7 4.961 5228.1 no
## 16200 1.4 93.918 -42.7 4.961 5228.1 no
## 16203 1.4 93.918 -42.7 4.961 5228.1 no
## 16208 1.4 93.918 -42.7 4.961 5228.1 no
## 16214 1.4 93.918 -42.7 4.961 5228.1 no
## 16216 1.4 93.918 -42.7 4.961 5228.1 no
## 16220 1.4 93.918 -42.7 4.961 5228.1 no
## 16221 1.4 93.918 -42.7 4.961 5228.1 no
## 16226 1.4 93.918 -42.7 4.961 5228.1 no
## 16227 1.4 93.918 -42.7 4.961 5228.1 no
## 16229 1.4 93.918 -42.7 4.961 5228.1 no
## 16232 1.4 93.918 -42.7 4.961 5228.1 no
## 16236 1.4 93.918 -42.7 4.961 5228.1 no
## 16239 1.4 93.918 -42.7 4.961 5228.1 no
## 16245 1.4 93.918 -42.7 4.961 5228.1 no
## 16251 1.4 93.918 -42.7 4.961 5228.1 no
## 16253 1.4 93.918 -42.7 4.961 5228.1 no
## 16262 1.4 93.918 -42.7 4.961 5228.1 no
## 16268 1.4 93.918 -42.7 4.961 5228.1 no
## 16269 1.4 93.918 -42.7 4.961 5228.1 no
## 16275 1.4 93.918 -42.7 4.961 5228.1 no
## 16279 1.4 93.918 -42.7 4.961 5228.1 yes
## 16289 1.4 93.918 -42.7 4.961 5228.1 no
## 16293 1.4 93.918 -42.7 4.961 5228.1 no
## 16299 1.4 93.918 -42.7 4.961 5228.1 no
## 16301 1.4 93.918 -42.7 4.961 5228.1 no
## 16302 1.4 93.918 -42.7 4.961 5228.1 no
## 16303 1.4 93.918 -42.7 4.961 5228.1 no
## 16305 1.4 93.918 -42.7 4.961 5228.1 no
## 16310 1.4 93.918 -42.7 4.961 5228.1 no
## 16316 1.4 93.918 -42.7 4.961 5228.1 no
## 16318 1.4 93.918 -42.7 4.961 5228.1 no
## 16323 1.4 93.918 -42.7 4.961 5228.1 yes
## 16324 1.4 93.918 -42.7 4.961 5228.1 no
## 16325 1.4 93.918 -42.7 4.961 5228.1 no
## 16333 1.4 93.918 -42.7 4.961 5228.1 no
## 16337 1.4 93.918 -42.7 4.961 5228.1 no
## 16338 1.4 93.918 -42.7 4.961 5228.1 yes
## 16342 1.4 93.918 -42.7 4.961 5228.1 no
## 16344 1.4 93.918 -42.7 4.961 5228.1 no
## 16347 1.4 93.918 -42.7 4.961 5228.1 no
## 16350 1.4 93.918 -42.7 4.961 5228.1 yes
## 16351 1.4 93.918 -42.7 4.963 5228.1 no
## 16352 1.4 93.918 -42.7 4.963 5228.1 no
## 16356 1.4 93.918 -42.7 4.963 5228.1 no
## 16359 1.4 93.918 -42.7 4.963 5228.1 no
## 16368 1.4 93.918 -42.7 4.963 5228.1 no
## 16372 1.4 93.918 -42.7 4.963 5228.1 no
## 16373 1.4 93.918 -42.7 4.963 5228.1 no
## 16374 1.4 93.918 -42.7 4.963 5228.1 no
## 16384 1.4 93.918 -42.7 4.963 5228.1 no
## 16385 1.4 93.918 -42.7 4.963 5228.1 no
## 16386 1.4 93.918 -42.7 4.963 5228.1 no
## 16388 1.4 93.918 -42.7 4.963 5228.1 no
## 16389 1.4 93.918 -42.7 4.963 5228.1 no
## 16394 1.4 93.918 -42.7 4.963 5228.1 no
## 16398 1.4 93.918 -42.7 4.963 5228.1 no
## 16408 1.4 93.918 -42.7 4.963 5228.1 no
## 16411 1.4 93.918 -42.7 4.963 5228.1 no
## 16412 1.4 93.918 -42.7 4.963 5228.1 no
## 16416 1.4 93.918 -42.7 4.963 5228.1 no
## 16422 1.4 93.918 -42.7 4.963 5228.1 no
## 16423 1.4 93.918 -42.7 4.963 5228.1 no
## 16430 1.4 93.918 -42.7 4.963 5228.1 no
## 16431 1.4 93.918 -42.7 4.963 5228.1 yes
## 16446 1.4 93.918 -42.7 4.963 5228.1 no
## 16451 1.4 93.918 -42.7 4.963 5228.1 no
## 16456 1.4 93.918 -42.7 4.963 5228.1 no
## 16458 1.4 93.918 -42.7 4.963 5228.1 no
## 16460 1.4 93.918 -42.7 4.963 5228.1 no
## 16462 1.4 93.918 -42.7 4.963 5228.1 no
## 16480 1.4 93.918 -42.7 4.963 5228.1 no
## 16481 1.4 93.918 -42.7 4.963 5228.1 no
## 16484 1.4 93.918 -42.7 4.963 5228.1 no
## 16494 1.4 93.918 -42.7 4.963 5228.1 no
## 16495 1.4 93.918 -42.7 4.963 5228.1 no
## 16499 1.4 93.918 -42.7 4.963 5228.1 no
## 16505 1.4 93.918 -42.7 4.963 5228.1 no
## 16506 1.4 93.918 -42.7 4.963 5228.1 no
## 16511 1.4 93.918 -42.7 4.963 5228.1 no
## 16512 1.4 93.918 -42.7 4.963 5228.1 no
## 16521 1.4 93.918 -42.7 4.963 5228.1 no
## 16532 1.4 93.918 -42.7 4.963 5228.1 no
## 16542 1.4 93.918 -42.7 4.963 5228.1 no
## 16550 1.4 93.918 -42.7 4.963 5228.1 no
## 16559 1.4 93.918 -42.7 4.963 5228.1 no
## 16561 1.4 93.918 -42.7 4.963 5228.1 yes
## 16562 1.4 93.918 -42.7 4.963 5228.1 no
## 16563 1.4 93.918 -42.7 4.963 5228.1 no
## 16566 1.4 93.918 -42.7 4.963 5228.1 no
## 16568 1.4 93.918 -42.7 4.963 5228.1 no
## 16573 1.4 93.918 -42.7 4.963 5228.1 no
## 16575 1.4 93.918 -42.7 4.963 5228.1 no
## 16577 1.4 93.918 -42.7 4.963 5228.1 no
## 16581 1.4 93.918 -42.7 4.963 5228.1 no
## 16587 1.4 93.918 -42.7 4.963 5228.1 no
## 16595 1.4 93.918 -42.7 4.963 5228.1 no
## 16597 1.4 93.918 -42.7 4.963 5228.1 no
## 16600 1.4 93.918 -42.7 4.963 5228.1 no
## 16602 1.4 93.918 -42.7 4.963 5228.1 no
## 16604 1.4 93.918 -42.7 4.963 5228.1 yes
## 16611 1.4 93.918 -42.7 4.963 5228.1 no
## 16614 1.4 93.918 -42.7 4.963 5228.1 no
## 16617 1.4 93.918 -42.7 4.963 5228.1 no
## 16623 1.4 93.918 -42.7 4.963 5228.1 no
## 16624 1.4 93.918 -42.7 4.963 5228.1 no
## 16625 1.4 93.918 -42.7 4.963 5228.1 no
## 16629 1.4 93.918 -42.7 4.963 5228.1 no
## 16635 1.4 93.918 -42.7 4.963 5228.1 no
## 16636 1.4 93.918 -42.7 4.963 5228.1 yes
## 16640 1.4 93.918 -42.7 4.963 5228.1 no
## 16643 1.4 93.918 -42.7 4.963 5228.1 no
## 16648 1.4 93.918 -42.7 4.963 5228.1 no
## 16671 1.4 93.918 -42.7 4.963 5228.1 no
## 16674 1.4 93.918 -42.7 4.963 5228.1 no
## 16675 1.4 93.918 -42.7 4.963 5228.1 no
## 16679 1.4 93.918 -42.7 4.963 5228.1 no
## 16682 1.4 93.918 -42.7 4.963 5228.1 no
## 16702 1.4 93.918 -42.7 4.963 5228.1 no
## 16706 1.4 93.918 -42.7 4.963 5228.1 no
## 16718 1.4 93.918 -42.7 4.963 5228.1 no
## 16724 1.4 93.918 -42.7 4.963 5228.1 no
## 16726 1.4 93.918 -42.7 4.963 5228.1 no
## 16729 1.4 93.918 -42.7 4.963 5228.1 no
## 16733 1.4 93.918 -42.7 4.962 5228.1 no
## 16734 1.4 93.918 -42.7 4.962 5228.1 no
## 16739 1.4 93.918 -42.7 4.962 5228.1 no
## 16742 1.4 93.918 -42.7 4.962 5228.1 no
## 16744 1.4 93.918 -42.7 4.962 5228.1 no
## 16747 1.4 93.918 -42.7 4.962 5228.1 no
## 16753 1.4 93.918 -42.7 4.962 5228.1 no
## 16755 1.4 93.918 -42.7 4.962 5228.1 no
## 16758 1.4 93.918 -42.7 4.962 5228.1 no
## 16759 1.4 93.918 -42.7 4.962 5228.1 no
## 16761 1.4 93.918 -42.7 4.962 5228.1 no
## 16762 1.4 93.918 -42.7 4.962 5228.1 no
## 16769 1.4 93.918 -42.7 4.962 5228.1 no
## 16770 1.4 93.918 -42.7 4.962 5228.1 no
## 16772 1.4 93.918 -42.7 4.962 5228.1 no
## 16777 1.4 93.918 -42.7 4.962 5228.1 no
## 16780 1.4 93.918 -42.7 4.962 5228.1 no
## 16782 1.4 93.918 -42.7 4.962 5228.1 no
## 16784 1.4 93.918 -42.7 4.962 5228.1 no
## 16786 1.4 93.918 -42.7 4.962 5228.1 no
## 16788 1.4 93.918 -42.7 4.962 5228.1 no
## 16789 1.4 93.918 -42.7 4.962 5228.1 no
## 16795 1.4 93.918 -42.7 4.962 5228.1 no
## 16798 1.4 93.918 -42.7 4.962 5228.1 no
## 16799 1.4 93.918 -42.7 4.962 5228.1 no
## 16801 1.4 93.918 -42.7 4.962 5228.1 no
## 16807 1.4 93.918 -42.7 4.962 5228.1 no
## 16822 1.4 93.918 -42.7 4.962 5228.1 no
## 16831 1.4 93.918 -42.7 4.962 5228.1 no
## 16836 1.4 93.918 -42.7 4.962 5228.1 yes
## 16839 1.4 93.918 -42.7 4.962 5228.1 no
## 16856 1.4 93.918 -42.7 4.962 5228.1 no
## 16864 1.4 93.918 -42.7 4.962 5228.1 no
## 16872 1.4 93.918 -42.7 4.962 5228.1 no
## 16876 1.4 93.918 -42.7 4.962 5228.1 no
## 16902 1.4 93.918 -42.7 4.962 5228.1 no
## 16913 1.4 93.918 -42.7 4.962 5228.1 no
## 16915 1.4 93.918 -42.7 4.962 5228.1 no
## 16916 1.4 93.918 -42.7 4.962 5228.1 no
## 16918 1.4 93.918 -42.7 4.962 5228.1 yes
## 16919 1.4 93.918 -42.7 4.962 5228.1 no
## 16920 1.4 93.918 -42.7 4.962 5228.1 no
## 16922 1.4 93.918 -42.7 4.962 5228.1 no
## 16923 1.4 93.918 -42.7 4.962 5228.1 yes
## 16935 1.4 93.918 -42.7 4.962 5228.1 no
## 16942 1.4 93.918 -42.7 4.962 5228.1 no
## 16952 1.4 93.918 -42.7 4.962 5228.1 no
## 16954 1.4 93.918 -42.7 4.962 5228.1 no
## 16962 1.4 93.918 -42.7 4.962 5228.1 no
## 16963 1.4 93.918 -42.7 4.962 5228.1 no
## 16964 1.4 93.918 -42.7 4.962 5228.1 no
## 16966 1.4 93.918 -42.7 4.962 5228.1 no
## 16975 1.4 93.918 -42.7 4.962 5228.1 no
## 16977 1.4 93.918 -42.7 4.962 5228.1 no
## 16982 1.4 93.918 -42.7 4.962 5228.1 no
## 16987 1.4 93.918 -42.7 4.962 5228.1 no
## 16991 1.4 93.918 -42.7 4.962 5228.1 no
## 16993 1.4 93.918 -42.7 4.962 5228.1 no
## 16995 1.4 93.918 -42.7 4.962 5228.1 no
## 16997 1.4 93.918 -42.7 4.962 5228.1 no
## 16998 1.4 93.918 -42.7 4.962 5228.1 no
## 16999 1.4 93.918 -42.7 4.962 5228.1 no
## 17001 1.4 93.918 -42.7 4.962 5228.1 no
## 17005 1.4 93.918 -42.7 4.962 5228.1 no
## 17013 1.4 93.918 -42.7 4.962 5228.1 no
## 17016 1.4 93.918 -42.7 4.962 5228.1 no
## 17017 1.4 93.918 -42.7 4.962 5228.1 no
## 17018 1.4 93.918 -42.7 4.962 5228.1 no
## 17019 1.4 93.918 -42.7 4.962 5228.1 no
## 17021 1.4 93.918 -42.7 4.962 5228.1 no
## 17022 1.4 93.918 -42.7 4.962 5228.1 no
## 17047 1.4 93.918 -42.7 4.962 5228.1 no
## 17052 1.4 93.918 -42.7 4.962 5228.1 no
## 17060 1.4 93.918 -42.7 4.962 5228.1 no
## 17062 1.4 93.918 -42.7 4.962 5228.1 no
## 17068 1.4 93.918 -42.7 4.962 5228.1 no
## 17072 1.4 93.918 -42.7 4.962 5228.1 no
## 17074 1.4 93.918 -42.7 4.962 5228.1 no
## 17077 1.4 93.918 -42.7 4.962 5228.1 no
## 17080 1.4 93.918 -42.7 4.962 5228.1 no
## 17086 1.4 93.918 -42.7 4.962 5228.1 no
## 17094 1.4 93.918 -42.7 4.962 5228.1 yes
## 17097 1.4 93.918 -42.7 4.962 5228.1 no
## 17098 1.4 93.918 -42.7 4.962 5228.1 no
## 17099 1.4 93.918 -42.7 4.962 5228.1 no
## 17104 1.4 93.918 -42.7 4.962 5228.1 no
## 17105 1.4 93.918 -42.7 4.962 5228.1 no
## 17112 1.4 93.918 -42.7 4.962 5228.1 no
## 17113 1.4 93.918 -42.7 4.962 5228.1 no
## 17118 1.4 93.918 -42.7 4.962 5228.1 no
## 17129 1.4 93.918 -42.7 4.962 5228.1 no
## 17130 1.4 93.918 -42.7 4.962 5228.1 no
## 17139 1.4 93.918 -42.7 4.962 5228.1 no
## 17140 1.4 93.918 -42.7 4.962 5228.1 no
## 17142 1.4 93.918 -42.7 4.962 5228.1 no
## 17144 1.4 93.918 -42.7 4.962 5228.1 no
## 17154 1.4 93.918 -42.7 4.962 5228.1 no
## 17162 1.4 93.918 -42.7 4.962 5228.1 no
## 17167 1.4 93.918 -42.7 4.962 5228.1 no
## 17169 1.4 93.918 -42.7 4.962 5228.1 no
## 17170 1.4 93.918 -42.7 4.962 5228.1 no
## 17171 1.4 93.918 -42.7 4.962 5228.1 no
## 17177 1.4 93.918 -42.7 4.962 5228.1 no
## 17198 1.4 93.918 -42.7 4.962 5228.1 no
## 17200 1.4 93.918 -42.7 4.962 5228.1 no
## 17201 1.4 93.918 -42.7 4.962 5228.1 no
## 17204 1.4 93.918 -42.7 4.962 5228.1 no
## 17205 1.4 93.918 -42.7 4.962 5228.1 no
## 17212 1.4 93.918 -42.7 4.962 5228.1 no
## 17218 1.4 93.918 -42.7 4.962 5228.1 no
## 17219 1.4 93.918 -42.7 4.962 5228.1 no
## 17223 1.4 93.918 -42.7 4.962 5228.1 no
## 17224 1.4 93.918 -42.7 4.962 5228.1 no
## 17225 1.4 93.918 -42.7 4.962 5228.1 no
## 17226 1.4 93.918 -42.7 4.962 5228.1 no
## 17227 1.4 93.918 -42.7 4.962 5228.1 no
## 17228 1.4 93.918 -42.7 4.962 5228.1 no
## 17242 1.4 93.918 -42.7 4.962 5228.1 no
## 17244 1.4 93.918 -42.7 4.962 5228.1 no
## 17255 1.4 93.918 -42.7 4.962 5228.1 no
## 17257 1.4 93.918 -42.7 4.962 5228.1 no
## 17272 1.4 93.918 -42.7 4.962 5228.1 no
## 17276 1.4 93.918 -42.7 4.962 5228.1 no
## 17279 1.4 93.918 -42.7 4.962 5228.1 no
## 17289 1.4 93.918 -42.7 4.962 5228.1 no
## 17291 1.4 93.918 -42.7 4.962 5228.1 no
## 17293 1.4 93.918 -42.7 4.962 5228.1 no
## 17297 1.4 93.918 -42.7 4.962 5228.1 yes
## 17298 1.4 93.918 -42.7 4.962 5228.1 no
## 17308 1.4 93.918 -42.7 4.962 5228.1 no
## 17311 1.4 93.918 -42.7 4.962 5228.1 no
## 17314 1.4 93.918 -42.7 4.962 5228.1 yes
## 17322 1.4 93.918 -42.7 4.962 5228.1 no
## 17323 1.4 93.918 -42.7 4.962 5228.1 no
## 17330 1.4 93.918 -42.7 4.962 5228.1 no
## 17332 1.4 93.918 -42.7 4.962 5228.1 no
## 17335 1.4 93.918 -42.7 4.962 5228.1 no
## 17341 1.4 93.918 -42.7 4.962 5228.1 no
## 17350 1.4 93.918 -42.7 4.962 5228.1 no
## 17354 1.4 93.918 -42.7 4.962 5228.1 no
## 17356 1.4 93.918 -42.7 4.962 5228.1 no
## 17357 1.4 93.918 -42.7 4.962 5228.1 no
## 17358 1.4 93.918 -42.7 4.962 5228.1 no
## 17362 1.4 93.918 -42.7 4.962 5228.1 no
## 17366 1.4 93.918 -42.7 4.962 5228.1 yes
## 17369 1.4 93.918 -42.7 4.962 5228.1 no
## 17371 1.4 93.918 -42.7 4.962 5228.1 no
## 17373 1.4 93.918 -42.7 4.962 5228.1 yes
## 17386 1.4 93.918 -42.7 4.962 5228.1 no
## 17387 1.4 93.918 -42.7 4.962 5228.1 no
## 17408 1.4 93.918 -42.7 4.962 5228.1 no
## 17410 1.4 93.918 -42.7 4.962 5228.1 no
## 17411 1.4 93.918 -42.7 4.962 5228.1 no
## 17412 1.4 93.918 -42.7 4.962 5228.1 no
## 17414 1.4 93.918 -42.7 4.962 5228.1 no
## 17420 1.4 93.918 -42.7 4.962 5228.1 no
## 17421 1.4 93.918 -42.7 4.962 5228.1 no
## 17423 1.4 93.918 -42.7 4.962 5228.1 no
## 17424 1.4 93.918 -42.7 4.962 5228.1 no
## 17426 1.4 93.918 -42.7 4.962 5228.1 no
## 17427 1.4 93.918 -42.7 4.962 5228.1 no
## 17435 1.4 93.918 -42.7 4.962 5228.1 no
## 17439 1.4 93.918 -42.7 4.962 5228.1 no
## 17440 1.4 93.918 -42.7 4.962 5228.1 no
## 17441 1.4 93.918 -42.7 4.962 5228.1 no
## 17447 1.4 93.918 -42.7 4.962 5228.1 no
## 17450 1.4 93.918 -42.7 4.962 5228.1 yes
## 17453 1.4 93.918 -42.7 4.962 5228.1 no
## 17457 1.4 93.918 -42.7 4.962 5228.1 yes
## 17459 1.4 93.918 -42.7 4.962 5228.1 no
## 17461 1.4 93.918 -42.7 4.962 5228.1 yes
## 17466 1.4 93.918 -42.7 4.962 5228.1 no
## 17470 1.4 93.918 -42.7 4.962 5228.1 no
## 17471 1.4 93.918 -42.7 4.962 5228.1 no
## 17475 1.4 93.918 -42.7 4.962 5228.1 no
## 17478 1.4 93.918 -42.7 4.962 5228.1 no
## 17480 1.4 93.918 -42.7 4.962 5228.1 no
## 17489 1.4 93.918 -42.7 4.962 5228.1 no
## 17495 1.4 93.918 -42.7 4.962 5228.1 no
## 17505 1.4 93.918 -42.7 4.962 5228.1 no
## 17511 1.4 93.918 -42.7 4.962 5228.1 no
## 17512 1.4 93.918 -42.7 4.962 5228.1 no
## 17515 1.4 93.918 -42.7 4.962 5228.1 no
## 17522 1.4 93.918 -42.7 4.962 5228.1 no
## 17527 1.4 93.918 -42.7 4.962 5228.1 no
## 17528 1.4 93.918 -42.7 4.962 5228.1 no
## 17534 1.4 93.918 -42.7 4.962 5228.1 no
## 17536 1.4 93.918 -42.7 4.962 5228.1 no
## 17537 1.4 93.918 -42.7 4.962 5228.1 no
## 17545 1.4 93.918 -42.7 4.962 5228.1 no
## 17550 1.4 93.918 -42.7 4.962 5228.1 no
## 17552 1.4 93.918 -42.7 4.962 5228.1 yes
## 17560 1.4 93.918 -42.7 4.962 5228.1 no
## 17563 1.4 93.918 -42.7 4.962 5228.1 no
## 17564 1.4 93.918 -42.7 4.962 5228.1 no
## 17569 1.4 93.918 -42.7 4.962 5228.1 no
## 17570 1.4 93.918 -42.7 4.962 5228.1 no
## 17585 1.4 93.918 -42.7 4.962 5228.1 no
## 17590 1.4 93.918 -42.7 4.962 5228.1 no
## 17592 1.4 93.918 -42.7 4.962 5228.1 no
## 17595 1.4 93.918 -42.7 4.962 5228.1 no
## 17599 1.4 93.918 -42.7 4.962 5228.1 no
## 17610 1.4 93.918 -42.7 4.962 5228.1 no
## 17611 1.4 93.918 -42.7 4.962 5228.1 no
## 17614 1.4 93.918 -42.7 4.962 5228.1 no
## 17618 1.4 93.918 -42.7 4.962 5228.1 no
## 17627 1.4 93.918 -42.7 4.962 5228.1 no
## 17628 1.4 93.918 -42.7 4.962 5228.1 no
## 17633 1.4 93.918 -42.7 4.962 5228.1 no
## 17636 1.4 93.918 -42.7 4.962 5228.1 no
## 17641 1.4 93.918 -42.7 4.962 5228.1 no
## 17642 1.4 93.918 -42.7 4.962 5228.1 no
## 17645 1.4 93.918 -42.7 4.962 5228.1 no
## 17646 1.4 93.918 -42.7 4.962 5228.1 no
## 17650 1.4 93.918 -42.7 4.962 5228.1 no
## 17651 1.4 93.918 -42.7 4.962 5228.1 no
## 17658 1.4 93.918 -42.7 4.962 5228.1 no
## 17660 1.4 93.918 -42.7 4.962 5228.1 no
## 17661 1.4 93.918 -42.7 4.962 5228.1 no
## 17662 1.4 93.918 -42.7 4.962 5228.1 no
## 17664 1.4 93.918 -42.7 4.962 5228.1 no
## 17666 1.4 93.918 -42.7 4.962 5228.1 no
## 17672 1.4 93.918 -42.7 4.962 5228.1 no
## 17687 1.4 93.918 -42.7 4.961 5228.1 no
## 17689 1.4 93.918 -42.7 4.961 5228.1 no
## 17715 1.4 93.918 -42.7 4.961 5228.1 no
## 17724 1.4 93.918 -42.7 4.961 5228.1 yes
## 17725 1.4 93.918 -42.7 4.961 5228.1 no
## 17733 1.4 93.918 -42.7 4.961 5228.1 no
## 17737 1.4 93.918 -42.7 4.961 5228.1 no
## 17745 1.4 93.918 -42.7 4.961 5228.1 no
## 17747 1.4 93.918 -42.7 4.961 5228.1 no
## 17749 1.4 93.918 -42.7 4.961 5228.1 no
## 17752 1.4 93.918 -42.7 4.961 5228.1 no
## 17754 1.4 93.918 -42.7 4.961 5228.1 no
## 17765 1.4 93.918 -42.7 4.961 5228.1 no
## 17777 1.4 93.918 -42.7 4.961 5228.1 no
## 17779 1.4 93.918 -42.7 4.961 5228.1 no
## 17780 1.4 93.918 -42.7 4.961 5228.1 no
## 17785 1.4 93.918 -42.7 4.961 5228.1 no
## 17788 1.4 93.918 -42.7 4.961 5228.1 no
## 17789 1.4 93.918 -42.7 4.961 5228.1 no
## 17793 1.4 93.918 -42.7 4.961 5228.1 no
## 17799 1.4 93.918 -42.7 4.961 5228.1 no
## 17802 1.4 93.918 -42.7 4.961 5228.1 no
## 17811 1.4 93.918 -42.7 4.961 5228.1 no
## 17813 1.4 93.918 -42.7 4.961 5228.1 no
## 17819 1.4 93.918 -42.7 4.961 5228.1 no
## 17825 1.4 93.918 -42.7 4.961 5228.1 no
## 17827 1.4 93.918 -42.7 4.961 5228.1 no
## 17833 1.4 93.918 -42.7 4.961 5228.1 no
## 17840 1.4 93.918 -42.7 4.961 5228.1 no
## 17844 1.4 93.918 -42.7 4.961 5228.1 no
## 17847 1.4 93.918 -42.7 4.961 5228.1 no
## 17853 1.4 93.918 -42.7 4.961 5228.1 no
## 17854 1.4 93.918 -42.7 4.961 5228.1 no
## 17855 1.4 93.918 -42.7 4.961 5228.1 no
## 17858 1.4 93.918 -42.7 4.961 5228.1 no
## 17859 1.4 93.918 -42.7 4.961 5228.1 no
## 17863 1.4 93.918 -42.7 4.961 5228.1 no
## 17867 1.4 93.918 -42.7 4.961 5228.1 no
## 17871 1.4 93.918 -42.7 4.961 5228.1 no
## 17885 1.4 93.918 -42.7 4.961 5228.1 no
## 17886 1.4 93.918 -42.7 4.961 5228.1 no
## 17894 1.4 93.918 -42.7 4.961 5228.1 no
## 17896 1.4 93.918 -42.7 4.961 5228.1 no
## 17898 1.4 93.918 -42.7 4.961 5228.1 no
## 17899 1.4 93.918 -42.7 4.961 5228.1 no
## 17901 1.4 93.918 -42.7 4.961 5228.1 no
## 17902 1.4 93.918 -42.7 4.961 5228.1 no
## 17904 1.4 93.918 -42.7 4.961 5228.1 no
## 17909 1.4 93.918 -42.7 4.961 5228.1 no
## 17911 1.4 93.918 -42.7 4.961 5228.1 no
## 17913 1.4 93.918 -42.7 4.961 5228.1 no
## 17917 1.4 93.918 -42.7 4.961 5228.1 no
## 17919 1.4 93.918 -42.7 4.961 5228.1 yes
## 17928 1.4 93.918 -42.7 4.961 5228.1 no
## 17929 1.4 93.918 -42.7 4.961 5228.1 no
## 17930 1.4 93.918 -42.7 4.961 5228.1 no
## 17933 1.4 93.918 -42.7 4.961 5228.1 no
## 17939 1.4 93.918 -42.7 4.961 5228.1 no
## 17946 1.4 93.918 -42.7 4.961 5228.1 no
## 17947 1.4 93.918 -42.7 4.961 5228.1 no
## 17952 1.4 93.918 -42.7 4.961 5228.1 no
## 17960 1.4 93.918 -42.7 4.961 5228.1 no
## 17961 1.4 93.918 -42.7 4.961 5228.1 no
## 17963 1.4 93.918 -42.7 4.961 5228.1 no
## 17965 1.4 93.918 -42.7 4.961 5228.1 no
## 17980 1.4 93.918 -42.7 4.961 5228.1 no
## 17991 1.4 93.918 -42.7 4.963 5228.1 no
## 17992 1.4 93.918 -42.7 4.963 5228.1 no
## 17993 1.4 93.918 -42.7 4.963 5228.1 no
## 17994 1.4 93.918 -42.7 4.963 5228.1 no
## 17999 1.4 93.918 -42.7 4.963 5228.1 no
## 18000 1.4 93.918 -42.7 4.963 5228.1 no
## 18007 1.4 93.918 -42.7 4.963 5228.1 no
## 18011 1.4 93.918 -42.7 4.963 5228.1 no
## 18028 1.4 93.918 -42.7 4.963 5228.1 yes
## 18030 1.4 93.918 -42.7 4.963 5228.1 no
## 18033 1.4 93.918 -42.7 4.963 5228.1 no
## 18034 1.4 93.918 -42.7 4.963 5228.1 no
## 18042 1.4 93.918 -42.7 4.963 5228.1 yes
## 18044 1.4 93.918 -42.7 4.963 5228.1 no
## 18058 1.4 93.918 -42.7 4.963 5228.1 no
## 18059 1.4 93.918 -42.7 4.963 5228.1 no
## 18060 1.4 93.918 -42.7 4.963 5228.1 no
## 18064 1.4 93.918 -42.7 4.963 5228.1 no
## 18071 1.4 93.918 -42.7 4.963 5228.1 no
## 18074 1.4 93.918 -42.7 4.963 5228.1 no
## 18077 1.4 93.918 -42.7 4.963 5228.1 no
## 18079 1.4 93.918 -42.7 4.963 5228.1 no
## 18080 1.4 93.918 -42.7 4.963 5228.1 no
## 18085 1.4 93.918 -42.7 4.963 5228.1 no
## 18086 1.4 93.918 -42.7 4.963 5228.1 no
## 18096 1.4 93.918 -42.7 4.963 5228.1 no
## 18098 1.4 93.918 -42.7 4.963 5228.1 no
## 18112 1.4 93.918 -42.7 4.963 5228.1 no
## 18121 1.4 93.918 -42.7 4.963 5228.1 no
## 18125 1.4 93.918 -42.7 4.963 5228.1 no
## 18129 1.4 93.918 -42.7 4.963 5228.1 no
## 18132 1.4 93.918 -42.7 4.963 5228.1 no
## 18133 1.4 93.918 -42.7 4.963 5228.1 no
## 18137 1.4 93.918 -42.7 4.963 5228.1 no
## 18139 1.4 93.918 -42.7 4.963 5228.1 no
## 18142 1.4 93.918 -42.7 4.963 5228.1 no
## 18149 1.4 93.918 -42.7 4.963 5228.1 no
## 18151 1.4 93.918 -42.7 4.963 5228.1 yes
## 18153 1.4 93.918 -42.7 4.963 5228.1 no
## 18156 1.4 93.918 -42.7 4.963 5228.1 no
## 18168 1.4 93.918 -42.7 4.963 5228.1 no
## 18175 1.4 93.918 -42.7 4.963 5228.1 yes
## 18178 1.4 93.918 -42.7 4.963 5228.1 no
## 18181 1.4 93.918 -42.7 4.963 5228.1 no
## 18183 1.4 93.918 -42.7 4.963 5228.1 no
## 18184 1.4 93.918 -42.7 4.963 5228.1 no
## 18187 1.4 93.918 -42.7 4.963 5228.1 no
## 18188 1.4 93.918 -42.7 4.963 5228.1 no
## 18190 1.4 93.918 -42.7 4.963 5228.1 no
## 18191 1.4 93.918 -42.7 4.963 5228.1 no
## 18194 1.4 93.918 -42.7 4.963 5228.1 no
## 18195 1.4 93.918 -42.7 4.963 5228.1 no
## 18199 1.4 93.918 -42.7 4.963 5228.1 no
## 18200 1.4 93.918 -42.7 4.963 5228.1 no
## 18201 1.4 93.918 -42.7 4.963 5228.1 no
## 18205 1.4 93.918 -42.7 4.963 5228.1 no
## 18209 1.4 93.918 -42.7 4.963 5228.1 no
## 18211 1.4 93.918 -42.7 4.963 5228.1 no
## 18215 1.4 93.918 -42.7 4.963 5228.1 no
## 18225 1.4 93.918 -42.7 4.963 5228.1 yes
## 18238 1.4 93.918 -42.7 4.963 5228.1 no
## 18244 1.4 93.918 -42.7 4.963 5228.1 no
## 18254 1.4 93.918 -42.7 4.963 5228.1 no
## 18259 1.4 93.918 -42.7 4.963 5228.1 no
## 18265 1.4 93.918 -42.7 4.963 5228.1 no
## 18272 1.4 93.918 -42.7 4.963 5228.1 no
## 18279 1.4 93.918 -42.7 4.963 5228.1 no
## 18283 1.4 93.918 -42.7 4.963 5228.1 no
## 18297 1.4 93.918 -42.7 4.963 5228.1 no
## 18301 1.4 93.918 -42.7 4.963 5228.1 no
## 18303 1.4 93.918 -42.7 4.963 5228.1 no
## 18304 1.4 93.918 -42.7 4.963 5228.1 no
## 18313 1.4 93.918 -42.7 4.963 5228.1 no
## 18326 1.4 93.918 -42.7 4.963 5228.1 no
## 18328 1.4 93.918 -42.7 4.963 5228.1 no
## 18334 1.4 93.918 -42.7 4.968 5228.1 no
## 18335 1.4 93.918 -42.7 4.968 5228.1 no
## 18337 1.4 93.918 -42.7 4.968 5228.1 no
## 18340 1.4 93.918 -42.7 4.968 5228.1 no
## 18354 1.4 93.918 -42.7 4.968 5228.1 no
## 18361 1.4 93.918 -42.7 4.968 5228.1 no
## 18363 1.4 93.918 -42.7 4.968 5228.1 no
## 18368 1.4 93.918 -42.7 4.968 5228.1 no
## 18370 1.4 93.918 -42.7 4.968 5228.1 no
## 18374 1.4 93.918 -42.7 4.968 5228.1 no
## 18376 1.4 93.918 -42.7 4.968 5228.1 no
## 18378 1.4 93.918 -42.7 4.968 5228.1 no
## 18382 1.4 93.918 -42.7 4.968 5228.1 no
## 18386 1.4 93.918 -42.7 4.968 5228.1 no
## 18388 1.4 93.918 -42.7 4.968 5228.1 no
## 18389 1.4 93.918 -42.7 4.968 5228.1 no
## 18391 1.4 93.918 -42.7 4.968 5228.1 no
## 18395 1.4 93.918 -42.7 4.968 5228.1 yes
## 18403 1.4 93.918 -42.7 4.968 5228.1 no
## 18409 1.4 93.918 -42.7 4.968 5228.1 no
## 18416 1.4 93.918 -42.7 4.968 5228.1 no
## 18420 1.4 93.918 -42.7 4.968 5228.1 no
## 18428 1.4 93.918 -42.7 4.968 5228.1 no
## 18448 1.4 93.918 -42.7 4.968 5228.1 no
## 18454 1.4 93.918 -42.7 4.968 5228.1 no
## 18462 1.4 93.918 -42.7 4.968 5228.1 no
## 18465 1.4 93.918 -42.7 4.968 5228.1 no
## 18471 1.4 93.918 -42.7 4.968 5228.1 no
## 18474 1.4 93.918 -42.7 4.968 5228.1 no
## 18476 1.4 93.918 -42.7 4.968 5228.1 no
## 18478 1.4 93.918 -42.7 4.968 5228.1 no
## 18479 1.4 93.918 -42.7 4.968 5228.1 no
## 18484 1.4 93.918 -42.7 4.968 5228.1 no
## 18494 1.4 93.918 -42.7 4.968 5228.1 no
## 18503 1.4 93.918 -42.7 4.968 5228.1 no
## 18505 1.4 93.918 -42.7 4.968 5228.1 no
## 18507 1.4 93.918 -42.7 4.968 5228.1 no
## 18510 1.4 93.918 -42.7 4.968 5228.1 no
## 18522 1.4 93.918 -42.7 4.968 5228.1 no
## 18523 1.4 93.918 -42.7 4.968 5228.1 no
## 18538 1.4 93.918 -42.7 4.968 5228.1 no
## 18545 1.4 93.918 -42.7 4.968 5228.1 no
## 18554 1.4 93.918 -42.7 4.968 5228.1 yes
## 18560 1.4 93.918 -42.7 4.968 5228.1 no
## 18562 1.4 93.918 -42.7 4.968 5228.1 no
## 18565 1.4 93.918 -42.7 4.968 5228.1 no
## 18586 1.4 93.918 -42.7 4.968 5228.1 no
## 18592 1.4 93.918 -42.7 4.968 5228.1 no
## 18595 1.4 93.918 -42.7 4.968 5228.1 no
## 18596 1.4 93.918 -42.7 4.968 5228.1 no
## 18610 1.4 93.918 -42.7 4.968 5228.1 no
## 18613 1.4 93.918 -42.7 4.968 5228.1 no
## 18618 1.4 93.918 -42.7 4.968 5228.1 no
## 18623 1.4 93.918 -42.7 4.968 5228.1 no
## 18624 1.4 93.918 -42.7 4.968 5228.1 no
## 18632 1.4 93.918 -42.7 4.968 5228.1 no
## 18638 1.4 93.918 -42.7 4.968 5228.1 no
## 18639 1.4 93.918 -42.7 4.968 5228.1 no
## 18640 1.4 93.918 -42.7 4.968 5228.1 no
## 18656 1.4 93.918 -42.7 4.968 5228.1 no
## 18661 1.4 93.918 -42.7 4.968 5228.1 no
## 18668 1.4 93.918 -42.7 4.968 5228.1 no
## 18674 1.4 93.918 -42.7 4.968 5228.1 no
## 18694 1.4 93.918 -42.7 4.968 5228.1 no
## 18697 1.4 93.918 -42.7 4.968 5228.1 no
## 18699 1.4 93.918 -42.7 4.968 5228.1 no
## 18700 1.4 93.918 -42.7 4.968 5228.1 no
## 18703 1.4 93.918 -42.7 4.968 5228.1 no
## 18709 1.4 93.918 -42.7 4.968 5228.1 no
## 18712 1.4 93.918 -42.7 4.968 5228.1 no
## 18717 1.4 93.918 -42.7 4.968 5228.1 no
## 18718 1.4 93.918 -42.7 4.968 5228.1 no
## 18727 1.4 93.918 -42.7 4.968 5228.1 no
## 18728 1.4 93.918 -42.7 4.968 5228.1 no
## 18734 1.4 93.918 -42.7 4.968 5228.1 no
## 18751 1.4 93.918 -42.7 4.968 5228.1 no
## 18752 1.4 93.918 -42.7 4.968 5228.1 no
## 18754 1.4 93.918 -42.7 4.968 5228.1 no
## 18758 1.4 93.918 -42.7 4.968 5228.1 no
## 18761 1.4 93.918 -42.7 4.968 5228.1 no
## 18765 1.4 93.918 -42.7 4.968 5228.1 no
## 18767 1.4 93.918 -42.7 4.968 5228.1 no
## 18768 1.4 93.918 -42.7 4.968 5228.1 no
## 18772 1.4 93.918 -42.7 4.968 5228.1 no
## 18776 1.4 93.918 -42.7 4.968 5228.1 no
## 18783 1.4 93.918 -42.7 4.968 5228.1 no
## 18788 1.4 93.918 -42.7 4.968 5228.1 yes
## 18811 1.4 93.918 -42.7 4.968 5228.1 no
## 18817 1.4 93.918 -42.7 4.968 5228.1 no
## 18831 1.4 93.444 -36.1 4.970 5228.1 no
## 18838 1.4 93.444 -36.1 4.970 5228.1 no
## 18853 1.4 93.444 -36.1 4.970 5228.1 no
## 18866 1.4 93.444 -36.1 4.970 5228.1 no
## 18874 1.4 93.444 -36.1 4.970 5228.1 no
## 18875 1.4 93.444 -36.1 4.970 5228.1 no
## 18877 1.4 93.444 -36.1 4.970 5228.1 no
## 18881 1.4 93.444 -36.1 4.970 5228.1 no
## 18882 1.4 93.444 -36.1 4.970 5228.1 no
## 18883 1.4 93.444 -36.1 4.970 5228.1 no
## 18904 1.4 93.444 -36.1 4.970 5228.1 no
## 18906 1.4 93.444 -36.1 4.970 5228.1 no
## 18908 1.4 93.444 -36.1 4.970 5228.1 no
## 18911 1.4 93.444 -36.1 4.970 5228.1 no
## 18925 1.4 93.444 -36.1 4.970 5228.1 no
## 18931 1.4 93.444 -36.1 4.970 5228.1 no
## 18934 1.4 93.444 -36.1 4.970 5228.1 no
## 18941 1.4 93.444 -36.1 4.970 5228.1 no
## 18946 1.4 93.444 -36.1 4.970 5228.1 no
## 18948 1.4 93.444 -36.1 4.970 5228.1 no
## 18958 1.4 93.444 -36.1 4.970 5228.1 no
## 18962 1.4 93.444 -36.1 4.970 5228.1 no
## 18963 1.4 93.444 -36.1 4.970 5228.1 no
## 18964 1.4 93.444 -36.1 4.970 5228.1 no
## 18968 1.4 93.444 -36.1 4.970 5228.1 no
## 18971 1.4 93.444 -36.1 4.970 5228.1 no
## 18973 1.4 93.444 -36.1 4.970 5228.1 no
## 18977 1.4 93.444 -36.1 4.970 5228.1 no
## 18980 1.4 93.444 -36.1 4.970 5228.1 no
## 18984 1.4 93.444 -36.1 4.970 5228.1 no
## 18986 1.4 93.444 -36.1 4.970 5228.1 no
## 18992 1.4 93.444 -36.1 4.970 5228.1 no
## 19001 1.4 93.444 -36.1 4.968 5228.1 yes
## 19002 1.4 93.444 -36.1 4.968 5228.1 yes
## 19006 1.4 93.444 -36.1 4.968 5228.1 yes
## 19010 1.4 93.444 -36.1 4.968 5228.1 no
## 19015 1.4 93.444 -36.1 4.968 5228.1 no
## 19022 1.4 93.444 -36.1 4.968 5228.1 no
## 19026 1.4 93.444 -36.1 4.968 5228.1 no
## 19028 1.4 93.444 -36.1 4.968 5228.1 no
## 19030 1.4 93.444 -36.1 4.968 5228.1 no
## 19031 1.4 93.444 -36.1 4.968 5228.1 no
## 19040 1.4 93.444 -36.1 4.968 5228.1 yes
## 19046 1.4 93.444 -36.1 4.968 5228.1 no
## 19051 1.4 93.444 -36.1 4.968 5228.1 no
## 19056 1.4 93.444 -36.1 4.968 5228.1 no
## 19057 1.4 93.444 -36.1 4.968 5228.1 no
## 19065 1.4 93.444 -36.1 4.968 5228.1 no
## 19070 1.4 93.444 -36.1 4.968 5228.1 no
## 19077 1.4 93.444 -36.1 4.968 5228.1 no
## 19083 1.4 93.444 -36.1 4.968 5228.1 no
## 19090 1.4 93.444 -36.1 4.968 5228.1 no
## 19094 1.4 93.444 -36.1 4.968 5228.1 no
## 19098 1.4 93.444 -36.1 4.968 5228.1 yes
## 19102 1.4 93.444 -36.1 4.968 5228.1 no
## 19106 1.4 93.444 -36.1 4.968 5228.1 no
## 19108 1.4 93.444 -36.1 4.968 5228.1 no
## 19109 1.4 93.444 -36.1 4.968 5228.1 yes
## 19111 1.4 93.444 -36.1 4.968 5228.1 no
## 19115 1.4 93.444 -36.1 4.968 5228.1 no
## 19119 1.4 93.444 -36.1 4.968 5228.1 no
## 19123 1.4 93.444 -36.1 4.968 5228.1 no
## 19125 1.4 93.444 -36.1 4.968 5228.1 no
## 19128 1.4 93.444 -36.1 4.968 5228.1 no
## 19141 1.4 93.444 -36.1 4.968 5228.1 no
## 19143 1.4 93.444 -36.1 4.968 5228.1 no
## 19146 1.4 93.444 -36.1 4.968 5228.1 no
## 19148 1.4 93.444 -36.1 4.968 5228.1 no
## 19150 1.4 93.444 -36.1 4.968 5228.1 no
## 19158 1.4 93.444 -36.1 4.968 5228.1 no
## 19159 1.4 93.444 -36.1 4.968 5228.1 no
## 19161 1.4 93.444 -36.1 4.968 5228.1 no
## 19163 1.4 93.444 -36.1 4.968 5228.1 no
## 19170 1.4 93.444 -36.1 4.968 5228.1 yes
## 19174 1.4 93.444 -36.1 4.968 5228.1 no
## 19178 1.4 93.444 -36.1 4.968 5228.1 no
## 19179 1.4 93.444 -36.1 4.968 5228.1 no
## 19181 1.4 93.444 -36.1 4.968 5228.1 no
## 19185 1.4 93.444 -36.1 4.968 5228.1 no
## 19195 1.4 93.444 -36.1 4.967 5228.1 no
## 19197 1.4 93.444 -36.1 4.967 5228.1 yes
## 19205 1.4 93.444 -36.1 4.967 5228.1 no
## 19209 1.4 93.444 -36.1 4.967 5228.1 no
## 19210 1.4 93.444 -36.1 4.967 5228.1 yes
## 19227 1.4 93.444 -36.1 4.967 5228.1 no
## 19233 1.4 93.444 -36.1 4.967 5228.1 no
## 19237 1.4 93.444 -36.1 4.967 5228.1 no
## 19238 1.4 93.444 -36.1 4.967 5228.1 no
## 19245 1.4 93.444 -36.1 4.967 5228.1 no
## 19248 1.4 93.444 -36.1 4.967 5228.1 no
## 19253 1.4 93.444 -36.1 4.967 5228.1 no
## 19262 1.4 93.444 -36.1 4.967 5228.1 no
## 19267 1.4 93.444 -36.1 4.967 5228.1 no
## 19269 1.4 93.444 -36.1 4.967 5228.1 no
## 19270 1.4 93.444 -36.1 4.967 5228.1 no
## 19284 1.4 93.444 -36.1 4.967 5228.1 no
## 19286 1.4 93.444 -36.1 4.967 5228.1 no
## 19299 1.4 93.444 -36.1 4.967 5228.1 no
## 19304 1.4 93.444 -36.1 4.967 5228.1 no
## 19311 1.4 93.444 -36.1 4.967 5228.1 no
## 19314 1.4 93.444 -36.1 4.967 5228.1 no
## 19320 1.4 93.444 -36.1 4.967 5228.1 no
## 19321 1.4 93.444 -36.1 4.967 5228.1 no
## 19322 1.4 93.444 -36.1 4.967 5228.1 no
## 19324 1.4 93.444 -36.1 4.967 5228.1 yes
## 19329 1.4 93.444 -36.1 4.967 5228.1 no
## 19331 1.4 93.444 -36.1 4.967 5228.1 no
## 19334 1.4 93.444 -36.1 4.967 5228.1 no
## 19336 1.4 93.444 -36.1 4.967 5228.1 no
## 19337 1.4 93.444 -36.1 4.967 5228.1 no
## 19343 1.4 93.444 -36.1 4.967 5228.1 no
## 19351 1.4 93.444 -36.1 4.967 5228.1 no
## 19353 1.4 93.444 -36.1 4.967 5228.1 no
## 19354 1.4 93.444 -36.1 4.967 5228.1 no
## 19365 1.4 93.444 -36.1 4.967 5228.1 no
## 19366 1.4 93.444 -36.1 4.967 5228.1 no
## 19370 1.4 93.444 -36.1 4.967 5228.1 no
## 19373 1.4 93.444 -36.1 4.967 5228.1 yes
## 19376 1.4 93.444 -36.1 4.967 5228.1 no
## 19377 1.4 93.444 -36.1 4.967 5228.1 no
## 19388 1.4 93.444 -36.1 4.967 5228.1 no
## 19392 1.4 93.444 -36.1 4.967 5228.1 no
## 19399 1.4 93.444 -36.1 4.967 5228.1 no
## 19403 1.4 93.444 -36.1 4.967 5228.1 no
## 19404 1.4 93.444 -36.1 4.967 5228.1 no
## 19407 1.4 93.444 -36.1 4.967 5228.1 no
## 19408 1.4 93.444 -36.1 4.967 5228.1 no
## 19410 1.4 93.444 -36.1 4.967 5228.1 no
## 19417 1.4 93.444 -36.1 4.967 5228.1 no
## 19419 1.4 93.444 -36.1 4.967 5228.1 no
## 19422 1.4 93.444 -36.1 4.967 5228.1 no
## 19424 1.4 93.444 -36.1 4.967 5228.1 no
## 19425 1.4 93.444 -36.1 4.967 5228.1 no
## 19426 1.4 93.444 -36.1 4.967 5228.1 no
## 19433 1.4 93.444 -36.1 4.967 5228.1 no
## 19438 1.4 93.444 -36.1 4.967 5228.1 yes
## 19440 1.4 93.444 -36.1 4.967 5228.1 yes
## 19447 1.4 93.444 -36.1 4.968 5228.1 no
## 19454 1.4 93.444 -36.1 4.968 5228.1 no
## 19464 1.4 93.444 -36.1 4.968 5228.1 no
## 19471 1.4 93.444 -36.1 4.968 5228.1 no
## 19474 1.4 93.444 -36.1 4.968 5228.1 no
## 19476 1.4 93.444 -36.1 4.968 5228.1 yes
## 19486 1.4 93.444 -36.1 4.968 5228.1 no
## 19494 1.4 93.444 -36.1 4.968 5228.1 no
## 19499 1.4 93.444 -36.1 4.968 5228.1 no
## 19501 1.4 93.444 -36.1 4.968 5228.1 no
## 19502 1.4 93.444 -36.1 4.968 5228.1 no
## 19506 1.4 93.444 -36.1 4.968 5228.1 no
## 19508 1.4 93.444 -36.1 4.968 5228.1 no
## 19511 1.4 93.444 -36.1 4.968 5228.1 no
## 19516 1.4 93.444 -36.1 4.968 5228.1 no
## 19536 1.4 93.444 -36.1 4.968 5228.1 no
## 19538 1.4 93.444 -36.1 4.968 5228.1 no
## 19549 1.4 93.444 -36.1 4.968 5228.1 no
## 19554 1.4 93.444 -36.1 4.968 5228.1 no
## 19558 1.4 93.444 -36.1 4.968 5228.1 no
## 19565 1.4 93.444 -36.1 4.968 5228.1 no
## 19569 1.4 93.444 -36.1 4.968 5228.1 no
## 19573 1.4 93.444 -36.1 4.968 5228.1 no
## 19574 1.4 93.444 -36.1 4.968 5228.1 no
## 19575 1.4 93.444 -36.1 4.968 5228.1 no
## 19581 1.4 93.444 -36.1 4.968 5228.1 no
## 19593 1.4 93.444 -36.1 4.968 5228.1 no
## 19598 1.4 93.444 -36.1 4.968 5228.1 no
## 19613 1.4 93.444 -36.1 4.968 5228.1 no
## 19614 1.4 93.444 -36.1 4.968 5228.1 no
## 19623 1.4 93.444 -36.1 4.968 5228.1 no
## 19642 1.4 93.444 -36.1 4.968 5228.1 no
## 19643 1.4 93.444 -36.1 4.968 5228.1 no
## 19648 1.4 93.444 -36.1 4.968 5228.1 no
## 19650 1.4 93.444 -36.1 4.968 5228.1 no
## 19653 1.4 93.444 -36.1 4.968 5228.1 no
## 19655 1.4 93.444 -36.1 4.968 5228.1 no
## 19656 1.4 93.444 -36.1 4.968 5228.1 no
## 19679 1.4 93.444 -36.1 4.968 5228.1 no
## 19682 1.4 93.444 -36.1 4.968 5228.1 no
## 19688 1.4 93.444 -36.1 4.968 5228.1 no
## 19695 1.4 93.444 -36.1 4.968 5228.1 no
## 19696 1.4 93.444 -36.1 4.968 5228.1 no
## 19700 1.4 93.444 -36.1 4.968 5228.1 yes
## 19701 1.4 93.444 -36.1 4.968 5228.1 no
## 19703 1.4 93.444 -36.1 4.968 5228.1 no
## 19711 1.4 93.444 -36.1 4.968 5228.1 no
## 19714 1.4 93.444 -36.1 4.968 5228.1 no
## 19723 1.4 93.444 -36.1 4.968 5228.1 no
## 19738 1.4 93.444 -36.1 4.966 5228.1 no
## 19739 1.4 93.444 -36.1 4.966 5228.1 no
## 19740 1.4 93.444 -36.1 4.966 5228.1 no
## 19747 1.4 93.444 -36.1 4.966 5228.1 no
## 19755 1.4 93.444 -36.1 4.966 5228.1 no
## 19756 1.4 93.444 -36.1 4.966 5228.1 no
## 19760 1.4 93.444 -36.1 4.966 5228.1 no
## 19778 1.4 93.444 -36.1 4.966 5228.1 no
## 19785 1.4 93.444 -36.1 4.966 5228.1 no
## 19787 1.4 93.444 -36.1 4.966 5228.1 no
## 19788 1.4 93.444 -36.1 4.966 5228.1 no
## 19807 1.4 93.444 -36.1 4.966 5228.1 no
## 19809 1.4 93.444 -36.1 4.966 5228.1 no
## 19811 1.4 93.444 -36.1 4.966 5228.1 yes
## 19816 1.4 93.444 -36.1 4.966 5228.1 no
## 19824 1.4 93.444 -36.1 4.966 5228.1 no
## 19827 1.4 93.444 -36.1 4.966 5228.1 yes
## 19833 1.4 93.444 -36.1 4.966 5228.1 no
## 19841 1.4 93.444 -36.1 4.966 5228.1 no
## 19850 1.4 93.444 -36.1 4.966 5228.1 no
## 19854 1.4 93.444 -36.1 4.966 5228.1 no
## 19861 1.4 93.444 -36.1 4.966 5228.1 no
## 19865 1.4 93.444 -36.1 4.966 5228.1 no
## 19872 1.4 93.444 -36.1 4.966 5228.1 no
## 19875 1.4 93.444 -36.1 4.966 5228.1 no
## 19879 1.4 93.444 -36.1 4.966 5228.1 no
## 19883 1.4 93.444 -36.1 4.966 5228.1 no
## 19892 1.4 93.444 -36.1 4.966 5228.1 no
## 19898 1.4 93.444 -36.1 4.966 5228.1 no
## 19900 1.4 93.444 -36.1 4.966 5228.1 no
## 19907 1.4 93.444 -36.1 4.966 5228.1 no
## 19908 1.4 93.444 -36.1 4.966 5228.1 no
## 19909 1.4 93.444 -36.1 4.966 5228.1 no
## 19911 1.4 93.444 -36.1 4.966 5228.1 no
## 19913 1.4 93.444 -36.1 4.966 5228.1 no
## 19919 1.4 93.444 -36.1 4.966 5228.1 no
## 19925 1.4 93.444 -36.1 4.966 5228.1 no
## 19935 1.4 93.444 -36.1 4.966 5228.1 no
## 19940 1.4 93.444 -36.1 4.966 5228.1 no
## 19946 1.4 93.444 -36.1 4.966 5228.1 no
## 19949 1.4 93.444 -36.1 4.966 5228.1 no
## 19958 1.4 93.444 -36.1 4.966 5228.1 no
## 19963 1.4 93.444 -36.1 4.966 5228.1 no
## 19965 1.4 93.444 -36.1 4.966 5228.1 no
## 19966 1.4 93.444 -36.1 4.966 5228.1 no
## 19969 1.4 93.444 -36.1 4.966 5228.1 no
## 19976 1.4 93.444 -36.1 4.966 5228.1 no
## 19979 1.4 93.444 -36.1 4.966 5228.1 no
## 19995 1.4 93.444 -36.1 4.966 5228.1 no
## 19996 1.4 93.444 -36.1 4.966 5228.1 no
## 20004 1.4 93.444 -36.1 4.966 5228.1 no
## 20009 1.4 93.444 -36.1 4.966 5228.1 no
## 20011 1.4 93.444 -36.1 4.966 5228.1 no
## 20023 1.4 93.444 -36.1 4.966 5228.1 no
## 20026 1.4 93.444 -36.1 4.966 5228.1 no
## 20029 1.4 93.444 -36.1 4.965 5228.1 no
## 20030 1.4 93.444 -36.1 4.965 5228.1 no
## 20042 1.4 93.444 -36.1 4.965 5228.1 no
## 20047 1.4 93.444 -36.1 4.965 5228.1 no
## 20055 1.4 93.444 -36.1 4.965 5228.1 no
## 20057 1.4 93.444 -36.1 4.965 5228.1 no
## 20061 1.4 93.444 -36.1 4.965 5228.1 no
## 20063 1.4 93.444 -36.1 4.965 5228.1 no
## 20070 1.4 93.444 -36.1 4.965 5228.1 no
## 20079 1.4 93.444 -36.1 4.965 5228.1 no
## 20087 1.4 93.444 -36.1 4.965 5228.1 no
## 20092 1.4 93.444 -36.1 4.965 5228.1 yes
## 20095 1.4 93.444 -36.1 4.965 5228.1 no
## 20102 1.4 93.444 -36.1 4.965 5228.1 no
## 20113 1.4 93.444 -36.1 4.965 5228.1 no
## 20116 1.4 93.444 -36.1 4.965 5228.1 no
## 20117 1.4 93.444 -36.1 4.965 5228.1 no
## 20120 1.4 93.444 -36.1 4.965 5228.1 no
## 20124 1.4 93.444 -36.1 4.965 5228.1 no
## 20134 1.4 93.444 -36.1 4.965 5228.1 no
## 20137 1.4 93.444 -36.1 4.965 5228.1 no
## 20140 1.4 93.444 -36.1 4.965 5228.1 no
## 20153 1.4 93.444 -36.1 4.965 5228.1 no
## 20167 1.4 93.444 -36.1 4.965 5228.1 no
## 20168 1.4 93.444 -36.1 4.965 5228.1 no
## 20170 1.4 93.444 -36.1 4.965 5228.1 no
## 20176 1.4 93.444 -36.1 4.965 5228.1 no
## 20186 1.4 93.444 -36.1 4.965 5228.1 no
## 20189 1.4 93.444 -36.1 4.965 5228.1 no
## 20190 1.4 93.444 -36.1 4.965 5228.1 no
## 20191 1.4 93.444 -36.1 4.965 5228.1 no
## 20195 1.4 93.444 -36.1 4.965 5228.1 no
## 20196 1.4 93.444 -36.1 4.965 5228.1 no
## 20197 1.4 93.444 -36.1 4.965 5228.1 no
## 20202 1.4 93.444 -36.1 4.965 5228.1 no
## 20210 1.4 93.444 -36.1 4.965 5228.1 no
## 20222 1.4 93.444 -36.1 4.965 5228.1 no
## 20227 1.4 93.444 -36.1 4.965 5228.1 no
## 20239 1.4 93.444 -36.1 4.965 5228.1 yes
## 20246 1.4 93.444 -36.1 4.965 5228.1 no
## 20250 1.4 93.444 -36.1 4.965 5228.1 no
## 20254 1.4 93.444 -36.1 4.965 5228.1 no
## 20259 1.4 93.444 -36.1 4.965 5228.1 yes
## 20263 1.4 93.444 -36.1 4.965 5228.1 no
## 20265 1.4 93.444 -36.1 4.965 5228.1 no
## 20270 1.4 93.444 -36.1 4.965 5228.1 no
## 20283 1.4 93.444 -36.1 4.965 5228.1 no
## 20300 1.4 93.444 -36.1 4.965 5228.1 no
## 20303 1.4 93.444 -36.1 4.965 5228.1 no
## 20315 1.4 93.444 -36.1 4.965 5228.1 no
## 20318 1.4 93.444 -36.1 4.965 5228.1 no
## 20322 1.4 93.444 -36.1 4.965 5228.1 no
## 20323 1.4 93.444 -36.1 4.965 5228.1 no
## 20333 1.4 93.444 -36.1 4.965 5228.1 no
## 20339 1.4 93.444 -36.1 4.966 5228.1 no
## 20341 1.4 93.444 -36.1 4.966 5228.1 no
## 20350 1.4 93.444 -36.1 4.966 5228.1 no
## 20358 1.4 93.444 -36.1 4.966 5228.1 no
## 20362 1.4 93.444 -36.1 4.966 5228.1 no
## 20367 1.4 93.444 -36.1 4.966 5228.1 no
## 20369 1.4 93.444 -36.1 4.966 5228.1 yes
## 20370 1.4 93.444 -36.1 4.966 5228.1 no
## 20371 1.4 93.444 -36.1 4.966 5228.1 no
## 20372 1.4 93.444 -36.1 4.966 5228.1 yes
## 20377 1.4 93.444 -36.1 4.966 5228.1 no
## 20388 1.4 93.444 -36.1 4.966 5228.1 no
## 20391 1.4 93.444 -36.1 4.966 5228.1 no
## 20394 1.4 93.444 -36.1 4.966 5228.1 no
## 20396 1.4 93.444 -36.1 4.966 5228.1 yes
## 20405 1.4 93.444 -36.1 4.966 5228.1 no
## 20413 1.4 93.444 -36.1 4.966 5228.1 no
## 20421 1.4 93.444 -36.1 4.966 5228.1 no
## 20429 1.4 93.444 -36.1 4.966 5228.1 no
## 20432 1.4 93.444 -36.1 4.966 5228.1 no
## 20445 1.4 93.444 -36.1 4.966 5228.1 no
## 20453 1.4 93.444 -36.1 4.966 5228.1 no
## 20463 1.4 93.444 -36.1 4.966 5228.1 no
## 20482 1.4 93.444 -36.1 4.966 5228.1 yes
## 20489 1.4 93.444 -36.1 4.966 5228.1 no
## 20490 1.4 93.444 -36.1 4.966 5228.1 no
## 20513 1.4 93.444 -36.1 4.966 5228.1 no
## 20514 1.4 93.444 -36.1 4.966 5228.1 yes
## 20518 1.4 93.444 -36.1 4.966 5228.1 no
## 20526 1.4 93.444 -36.1 4.966 5228.1 no
## 20541 1.4 93.444 -36.1 4.966 5228.1 no
## 20550 1.4 93.444 -36.1 4.966 5228.1 yes
## 20552 1.4 93.444 -36.1 4.966 5228.1 yes
## 20563 1.4 93.444 -36.1 4.966 5228.1 no
## 20566 1.4 93.444 -36.1 4.966 5228.1 no
## 20567 1.4 93.444 -36.1 4.966 5228.1 no
## 20570 1.4 93.444 -36.1 4.966 5228.1 yes
## 20573 1.4 93.444 -36.1 4.966 5228.1 yes
## 20576 1.4 93.444 -36.1 4.966 5228.1 no
## 20577 1.4 93.444 -36.1 4.966 5228.1 no
## 20585 1.4 93.444 -36.1 4.966 5228.1 no
## 20589 1.4 93.444 -36.1 4.966 5228.1 no
## 20601 1.4 93.444 -36.1 4.965 5228.1 no
## 20602 1.4 93.444 -36.1 4.965 5228.1 no
## 20611 1.4 93.444 -36.1 4.965 5228.1 no
## 20616 1.4 93.444 -36.1 4.965 5228.1 no
## 20626 1.4 93.444 -36.1 4.965 5228.1 no
## 20629 1.4 93.444 -36.1 4.965 5228.1 no
## 20630 1.4 93.444 -36.1 4.965 5228.1 yes
## 20632 1.4 93.444 -36.1 4.965 5228.1 yes
## 20635 1.4 93.444 -36.1 4.965 5228.1 no
## 20649 1.4 93.444 -36.1 4.965 5228.1 no
## 20658 1.4 93.444 -36.1 4.965 5228.1 no
## 20661 1.4 93.444 -36.1 4.965 5228.1 no
## 20690 1.4 93.444 -36.1 4.965 5228.1 no
## 20696 1.4 93.444 -36.1 4.965 5228.1 no
## 20697 1.4 93.444 -36.1 4.965 5228.1 no
## 20699 1.4 93.444 -36.1 4.965 5228.1 no
## 20701 1.4 93.444 -36.1 4.965 5228.1 no
## 20707 1.4 93.444 -36.1 4.965 5228.1 no
## 20717 1.4 93.444 -36.1 4.965 5228.1 no
## 20727 1.4 93.444 -36.1 4.965 5228.1 no
## 20728 1.4 93.444 -36.1 4.965 5228.1 no
## 20731 1.4 93.444 -36.1 4.965 5228.1 no
## 20733 1.4 93.444 -36.1 4.965 5228.1 no
## 20736 1.4 93.444 -36.1 4.965 5228.1 no
## 20738 1.4 93.444 -36.1 4.965 5228.1 no
## 20743 1.4 93.444 -36.1 4.965 5228.1 yes
## 20746 1.4 93.444 -36.1 4.965 5228.1 no
## 20756 1.4 93.444 -36.1 4.965 5228.1 no
## 20758 1.4 93.444 -36.1 4.965 5228.1 no
## 20766 1.4 93.444 -36.1 4.965 5228.1 no
## 20773 1.4 93.444 -36.1 4.965 5228.1 no
## 20774 1.4 93.444 -36.1 4.965 5228.1 yes
## 20775 1.4 93.444 -36.1 4.965 5228.1 no
## 20784 1.4 93.444 -36.1 4.965 5228.1 yes
## 20785 1.4 93.444 -36.1 4.965 5228.1 no
## 20788 1.4 93.444 -36.1 4.965 5228.1 no
## 20790 1.4 93.444 -36.1 4.965 5228.1 no
## 20799 1.4 93.444 -36.1 4.965 5228.1 no
## 20819 1.4 93.444 -36.1 4.965 5228.1 no
## 20821 1.4 93.444 -36.1 4.965 5228.1 no
## 20824 1.4 93.444 -36.1 4.965 5228.1 no
## 20828 1.4 93.444 -36.1 4.965 5228.1 no
## 20837 1.4 93.444 -36.1 4.964 5228.1 no
## 20856 1.4 93.444 -36.1 4.964 5228.1 no
## 20857 1.4 93.444 -36.1 4.964 5228.1 no
## 20869 1.4 93.444 -36.1 4.964 5228.1 no
## 20875 1.4 93.444 -36.1 4.964 5228.1 no
## 20876 1.4 93.444 -36.1 4.964 5228.1 no
## 20883 1.4 93.444 -36.1 4.964 5228.1 no
## 20886 1.4 93.444 -36.1 4.964 5228.1 no
## 20897 1.4 93.444 -36.1 4.964 5228.1 no
## 20914 1.4 93.444 -36.1 4.964 5228.1 no
## 20916 1.4 93.444 -36.1 4.964 5228.1 no
## 20920 1.4 93.444 -36.1 4.964 5228.1 no
## 20924 1.4 93.444 -36.1 4.964 5228.1 no
## 20926 1.4 93.444 -36.1 4.964 5228.1 no
## 20929 1.4 93.444 -36.1 4.964 5228.1 no
## 20934 1.4 93.444 -36.1 4.964 5228.1 no
## 20937 1.4 93.444 -36.1 4.964 5228.1 no
## 20946 1.4 93.444 -36.1 4.964 5228.1 no
## 20952 1.4 93.444 -36.1 4.964 5228.1 no
## 20960 1.4 93.444 -36.1 4.964 5228.1 no
## 20965 1.4 93.444 -36.1 4.964 5228.1 no
## 20966 1.4 93.444 -36.1 4.964 5228.1 no
## 20975 1.4 93.444 -36.1 4.964 5228.1 no
## 20983 1.4 93.444 -36.1 4.964 5228.1 no
## 20986 1.4 93.444 -36.1 4.964 5228.1 no
## 20987 1.4 93.444 -36.1 4.964 5228.1 no
## 20992 1.4 93.444 -36.1 4.964 5228.1 no
## 20994 1.4 93.444 -36.1 4.964 5228.1 no
## 20996 1.4 93.444 -36.1 4.964 5228.1 yes
## 21000 1.4 93.444 -36.1 4.964 5228.1 no
## 21004 1.4 93.444 -36.1 4.964 5228.1 no
## 21009 1.4 93.444 -36.1 4.964 5228.1 no
## 21010 1.4 93.444 -36.1 4.964 5228.1 no
## 21016 1.4 93.444 -36.1 4.964 5228.1 no
## 21018 1.4 93.444 -36.1 4.964 5228.1 no
## 21032 1.4 93.444 -36.1 4.964 5228.1 no
## 21034 1.4 93.444 -36.1 4.964 5228.1 no
## 21036 1.4 93.444 -36.1 4.964 5228.1 yes
## 21037 1.4 93.444 -36.1 4.964 5228.1 no
## 21046 1.4 93.444 -36.1 4.964 5228.1 no
## 21047 1.4 93.444 -36.1 4.964 5228.1 no
## 21053 1.4 93.444 -36.1 4.964 5228.1 no
## 21055 1.4 93.444 -36.1 4.964 5228.1 no
## 21058 1.4 93.444 -36.1 4.964 5228.1 no
## 21062 1.4 93.444 -36.1 4.964 5228.1 no
## 21066 1.4 93.444 -36.1 4.964 5228.1 no
## 21070 1.4 93.444 -36.1 4.964 5228.1 no
## 21073 1.4 93.444 -36.1 4.964 5228.1 no
## 21074 1.4 93.444 -36.1 4.964 5228.1 no
## 21078 1.4 93.444 -36.1 4.964 5228.1 no
## 21081 1.4 93.444 -36.1 4.964 5228.1 no
## 21086 1.4 93.444 -36.1 4.964 5228.1 no
## 21092 1.4 93.444 -36.1 4.964 5228.1 no
## 21093 1.4 93.444 -36.1 4.964 5228.1 no
## 21096 1.4 93.444 -36.1 4.964 5228.1 yes
## 21100 1.4 93.444 -36.1 4.963 5228.1 no
## 21101 1.4 93.444 -36.1 4.963 5228.1 yes
## 21102 1.4 93.444 -36.1 4.963 5228.1 no
## 21103 1.4 93.444 -36.1 4.963 5228.1 yes
## 21104 1.4 93.444 -36.1 4.963 5228.1 yes
## 21106 1.4 93.444 -36.1 4.963 5228.1 yes
## 21110 1.4 93.444 -36.1 4.963 5228.1 no
## 21111 1.4 93.444 -36.1 4.963 5228.1 no
## 21112 1.4 93.444 -36.1 4.963 5228.1 no
## 21115 1.4 93.444 -36.1 4.963 5228.1 no
## 21121 1.4 93.444 -36.1 4.963 5228.1 no
## 21123 1.4 93.444 -36.1 4.963 5228.1 no
## 21125 1.4 93.444 -36.1 4.963 5228.1 no
## 21126 1.4 93.444 -36.1 4.963 5228.1 no
## 21131 1.4 93.444 -36.1 4.963 5228.1 no
## 21132 1.4 93.444 -36.1 4.963 5228.1 no
## 21133 1.4 93.444 -36.1 4.963 5228.1 no
## 21142 1.4 93.444 -36.1 4.963 5228.1 no
## 21151 1.4 93.444 -36.1 4.963 5228.1 no
## 21152 1.4 93.444 -36.1 4.963 5228.1 no
## 21170 1.4 93.444 -36.1 4.963 5228.1 no
## 21177 1.4 93.444 -36.1 4.963 5228.1 no
## 21181 1.4 93.444 -36.1 4.963 5228.1 no
## 21185 1.4 93.444 -36.1 4.963 5228.1 no
## 21189 1.4 93.444 -36.1 4.963 5228.1 no
## 21194 1.4 93.444 -36.1 4.963 5228.1 no
## 21197 1.4 93.444 -36.1 4.963 5228.1 no
## 21198 1.4 93.444 -36.1 4.963 5228.1 no
## 21199 1.4 93.444 -36.1 4.963 5228.1 no
## 21202 1.4 93.444 -36.1 4.963 5228.1 no
## 21205 1.4 93.444 -36.1 4.963 5228.1 no
## 21214 1.4 93.444 -36.1 4.963 5228.1 no
## 21216 1.4 93.444 -36.1 4.963 5228.1 no
## 21221 1.4 93.444 -36.1 4.963 5228.1 no
## 21223 1.4 93.444 -36.1 4.963 5228.1 no
## 21225 1.4 93.444 -36.1 4.963 5228.1 no
## 21229 1.4 93.444 -36.1 4.963 5228.1 no
## 21233 1.4 93.444 -36.1 4.963 5228.1 no
## 21242 1.4 93.444 -36.1 4.963 5228.1 no
## 21243 1.4 93.444 -36.1 4.963 5228.1 no
## 21246 1.4 93.444 -36.1 4.963 5228.1 no
## 21248 1.4 93.444 -36.1 4.963 5228.1 no
## 21249 1.4 93.444 -36.1 4.963 5228.1 no
## 21250 1.4 93.444 -36.1 4.963 5228.1 no
## 21274 1.4 93.444 -36.1 4.963 5228.1 no
## 21279 1.4 93.444 -36.1 4.963 5228.1 no
## 21282 1.4 93.444 -36.1 4.963 5228.1 no
## 21284 1.4 93.444 -36.1 4.963 5228.1 no
## 21285 1.4 93.444 -36.1 4.963 5228.1 no
## 21299 1.4 93.444 -36.1 4.963 5228.1 no
## 21301 1.4 93.444 -36.1 4.963 5228.1 no
## 21308 1.4 93.444 -36.1 4.963 5228.1 yes
## 21311 1.4 93.444 -36.1 4.963 5228.1 no
## 21316 1.4 93.444 -36.1 4.963 5228.1 no
## 21320 1.4 93.444 -36.1 4.963 5228.1 no
## 21345 1.4 93.444 -36.1 4.963 5228.1 no
## 21346 1.4 93.444 -36.1 4.963 5228.1 no
## 21354 1.4 93.444 -36.1 4.963 5228.1 yes
## 21362 1.4 93.444 -36.1 4.963 5228.1 no
## 21364 1.4 93.444 -36.1 4.963 5228.1 no
## 21369 1.4 93.444 -36.1 4.963 5228.1 no
## 21372 1.4 93.444 -36.1 4.963 5228.1 no
## 21382 1.4 93.444 -36.1 4.963 5228.1 no
## 21386 1.4 93.444 -36.1 4.963 5228.1 no
## 21387 1.4 93.444 -36.1 4.963 5228.1 no
## 21388 1.4 93.444 -36.1 4.963 5228.1 no
## 21398 1.4 93.444 -36.1 4.963 5228.1 no
## 21405 1.4 93.444 -36.1 4.963 5228.1 no
## 21411 1.4 93.444 -36.1 4.963 5228.1 no
## 21420 1.4 93.444 -36.1 4.963 5228.1 no
## 21423 1.4 93.444 -36.1 4.963 5228.1 no
## 21429 1.4 93.444 -36.1 4.963 5228.1 no
## 21445 1.4 93.444 -36.1 4.963 5228.1 no
## 21446 1.4 93.444 -36.1 4.963 5228.1 no
## 21449 1.4 93.444 -36.1 4.963 5228.1 no
## 21457 1.4 93.444 -36.1 4.963 5228.1 no
## 21469 1.4 93.444 -36.1 4.963 5228.1 no
## 21472 1.4 93.444 -36.1 4.963 5228.1 no
## 21474 1.4 93.444 -36.1 4.963 5228.1 no
## 21475 1.4 93.444 -36.1 4.963 5228.1 no
## 21482 1.4 93.444 -36.1 4.963 5228.1 no
## 21486 1.4 93.444 -36.1 4.963 5228.1 no
## 21487 1.4 93.444 -36.1 4.963 5228.1 no
## 21501 1.4 93.444 -36.1 4.963 5228.1 no
## 21512 1.4 93.444 -36.1 4.963 5228.1 no
## 21516 1.4 93.444 -36.1 4.963 5228.1 no
## 21517 1.4 93.444 -36.1 4.963 5228.1 no
## 21518 1.4 93.444 -36.1 4.963 5228.1 no
## 21521 1.4 93.444 -36.1 4.963 5228.1 no
## 21524 1.4 93.444 -36.1 4.963 5228.1 no
## 21529 1.4 93.444 -36.1 4.963 5228.1 no
## 21533 1.4 93.444 -36.1 4.963 5228.1 no
## 21541 1.4 93.444 -36.1 4.963 5228.1 no
## 21546 1.4 93.444 -36.1 4.963 5228.1 no
## 21547 1.4 93.444 -36.1 4.963 5228.1 no
## 21552 1.4 93.444 -36.1 4.963 5228.1 no
## 21557 1.4 93.444 -36.1 4.963 5228.1 no
## 21574 1.4 93.444 -36.1 4.963 5228.1 no
## 21577 1.4 93.444 -36.1 4.963 5228.1 no
## 21588 1.4 93.444 -36.1 4.963 5228.1 no
## 21591 1.4 93.444 -36.1 4.963 5228.1 no
## 21609 1.4 93.444 -36.1 4.963 5228.1 no
## 21612 1.4 93.444 -36.1 4.963 5228.1 no
## 21636 1.4 93.444 -36.1 4.963 5228.1 no
## 21637 1.4 93.444 -36.1 4.963 5228.1 no
## 21639 1.4 93.444 -36.1 4.963 5228.1 no
## 21654 1.4 93.444 -36.1 4.963 5228.1 no
## 21655 1.4 93.444 -36.1 4.963 5228.1 no
## 21661 1.4 93.444 -36.1 4.963 5228.1 no
## 21663 1.4 93.444 -36.1 4.963 5228.1 no
## 21665 1.4 93.444 -36.1 4.963 5228.1 no
## 21675 1.4 93.444 -36.1 4.963 5228.1 no
## 21679 1.4 93.444 -36.1 4.963 5228.1 no
## 21684 1.4 93.444 -36.1 4.963 5228.1 no
## 21687 1.4 93.444 -36.1 4.963 5228.1 no
## 21688 1.4 93.444 -36.1 4.963 5228.1 no
## 21689 1.4 93.444 -36.1 4.963 5228.1 no
## 21694 1.4 93.444 -36.1 4.963 5228.1 no
## 21701 1.4 93.444 -36.1 4.963 5228.1 no
## 21702 1.4 93.444 -36.1 4.963 5228.1 no
## 21712 1.4 93.444 -36.1 4.963 5228.1 no
## 21716 1.4 93.444 -36.1 4.963 5228.1 yes
## 21718 1.4 93.444 -36.1 4.963 5228.1 no
## 21719 1.4 93.444 -36.1 4.963 5228.1 no
## 21721 1.4 93.444 -36.1 4.963 5228.1 no
## 21726 1.4 93.444 -36.1 4.963 5228.1 no
## 21728 1.4 93.444 -36.1 4.963 5228.1 no
## 21735 1.4 93.444 -36.1 4.963 5228.1 no
## 21752 1.4 93.444 -36.1 4.963 5228.1 no
## 21768 1.4 93.444 -36.1 4.964 5228.1 no
## 21782 1.4 93.444 -36.1 4.964 5228.1 no
## 21786 1.4 93.444 -36.1 4.964 5228.1 no
## 21790 1.4 93.444 -36.1 4.964 5228.1 no
## 21793 1.4 93.444 -36.1 4.964 5228.1 no
## 21802 1.4 93.444 -36.1 4.964 5228.1 no
## 21805 1.4 93.444 -36.1 4.964 5228.1 no
## 21810 1.4 93.444 -36.1 4.964 5228.1 no
## 21813 1.4 93.444 -36.1 4.964 5228.1 no
## 21816 1.4 93.444 -36.1 4.964 5228.1 no
## 21823 1.4 93.444 -36.1 4.964 5228.1 no
## 21824 1.4 93.444 -36.1 4.964 5228.1 no
## 21833 1.4 93.444 -36.1 4.964 5228.1 no
## 21840 1.4 93.444 -36.1 4.964 5228.1 no
## 21846 1.4 93.444 -36.1 4.964 5228.1 no
## 21868 1.4 93.444 -36.1 4.964 5228.1 no
## 21869 1.4 93.444 -36.1 4.964 5228.1 no
## 21870 1.4 93.444 -36.1 4.964 5228.1 no
## 21872 1.4 93.444 -36.1 4.964 5228.1 yes
## 21873 1.4 93.444 -36.1 4.964 5228.1 no
## 21876 1.4 93.444 -36.1 4.964 5228.1 no
## 21881 1.4 93.444 -36.1 4.964 5228.1 no
## 21882 1.4 93.444 -36.1 4.964 5228.1 no
## 21885 1.4 93.444 -36.1 4.964 5228.1 no
## 21886 1.4 93.444 -36.1 4.964 5228.1 no
## 21893 1.4 93.444 -36.1 4.964 5228.1 no
## 21894 1.4 93.444 -36.1 4.964 5228.1 no
## 21896 1.4 93.444 -36.1 4.964 5228.1 no
## 21917 1.4 93.444 -36.1 4.964 5228.1 no
## 21922 1.4 93.444 -36.1 4.964 5228.1 no
## 21927 1.4 93.444 -36.1 4.964 5228.1 no
## 21930 1.4 93.444 -36.1 4.964 5228.1 no
## 21931 1.4 93.444 -36.1 4.964 5228.1 no
## 21935 1.4 93.444 -36.1 4.964 5228.1 no
## 21940 1.4 93.444 -36.1 4.964 5228.1 no
## 21941 1.4 93.444 -36.1 4.964 5228.1 no
## 21946 1.4 93.444 -36.1 4.964 5228.1 no
## 21947 1.4 93.444 -36.1 4.964 5228.1 no
## 21948 1.4 93.444 -36.1 4.964 5228.1 no
## 21950 1.4 93.444 -36.1 4.964 5228.1 no
## 21956 1.4 93.444 -36.1 4.964 5228.1 no
## 21962 1.4 93.444 -36.1 4.964 5228.1 no
## 21968 1.4 93.444 -36.1 4.964 5228.1 no
## 21970 1.4 93.444 -36.1 4.964 5228.1 no
## 21972 1.4 93.444 -36.1 4.964 5228.1 no
## 21975 1.4 93.444 -36.1 4.964 5228.1 no
## 21977 1.4 93.444 -36.1 4.964 5228.1 no
## 21978 1.4 93.444 -36.1 4.964 5228.1 no
## 21981 1.4 93.444 -36.1 4.964 5228.1 no
## 21991 1.4 93.444 -36.1 4.964 5228.1 no
## 21992 1.4 93.444 -36.1 4.964 5228.1 yes
## 22010 1.4 93.444 -36.1 4.964 5228.1 no
## 22012 1.4 93.444 -36.1 4.964 5228.1 no
## 22015 1.4 93.444 -36.1 4.964 5228.1 yes
## 22025 1.4 93.444 -36.1 4.964 5228.1 no
## 22028 1.4 93.444 -36.1 4.964 5228.1 no
## 22034 1.4 93.444 -36.1 4.964 5228.1 no
## 22038 1.4 93.444 -36.1 4.964 5228.1 no
## 22054 1.4 93.444 -36.1 4.964 5228.1 no
## 22058 1.4 93.444 -36.1 4.964 5228.1 no
## 22065 1.4 93.444 -36.1 4.964 5228.1 no
## 22069 1.4 93.444 -36.1 4.964 5228.1 no
## 22074 1.4 93.444 -36.1 4.964 5228.1 no
## 22076 1.4 93.444 -36.1 4.964 5228.1 no
## 22088 1.4 93.444 -36.1 4.964 5228.1 no
## 22089 1.4 93.444 -36.1 4.964 5228.1 no
## 22090 1.4 93.444 -36.1 4.964 5228.1 no
## 22094 1.4 93.444 -36.1 4.964 5228.1 no
## 22100 1.4 93.444 -36.1 4.964 5228.1 no
## 22110 1.4 93.444 -36.1 4.963 5228.1 no
## 22121 1.4 93.444 -36.1 4.963 5228.1 no
## 22130 1.4 93.444 -36.1 4.963 5228.1 no
## 22133 1.4 93.444 -36.1 4.963 5228.1 no
## 22135 1.4 93.444 -36.1 4.963 5228.1 no
## 22139 1.4 93.444 -36.1 4.963 5228.1 no
## 22143 1.4 93.444 -36.1 4.963 5228.1 no
## 22146 1.4 93.444 -36.1 4.963 5228.1 no
## 22157 1.4 93.444 -36.1 4.963 5228.1 no
## 22159 1.4 93.444 -36.1 4.963 5228.1 no
## 22166 1.4 93.444 -36.1 4.963 5228.1 no
## 22167 1.4 93.444 -36.1 4.963 5228.1 no
## 22169 1.4 93.444 -36.1 4.963 5228.1 no
## 22185 1.4 93.444 -36.1 4.963 5228.1 no
## 22188 1.4 93.444 -36.1 4.963 5228.1 no
## 22193 1.4 93.444 -36.1 4.963 5228.1 yes
## 22208 1.4 93.444 -36.1 4.963 5228.1 no
## 22209 1.4 93.444 -36.1 4.963 5228.1 no
## 22212 1.4 93.444 -36.1 4.963 5228.1 no
## 22215 1.4 93.444 -36.1 4.963 5228.1 no
## 22219 1.4 93.444 -36.1 4.963 5228.1 no
## 22224 1.4 93.444 -36.1 4.963 5228.1 no
## 22248 1.4 93.444 -36.1 4.963 5228.1 no
## 22255 1.4 93.444 -36.1 4.963 5228.1 no
## 22256 1.4 93.444 -36.1 4.963 5228.1 no
## 22277 1.4 93.444 -36.1 4.963 5228.1 no
## 22282 1.4 93.444 -36.1 4.963 5228.1 no
## 22289 1.4 93.444 -36.1 4.963 5228.1 no
## 22295 1.4 93.444 -36.1 4.963 5228.1 no
## 22304 1.4 93.444 -36.1 4.963 5228.1 no
## 22311 1.4 93.444 -36.1 4.963 5228.1 no
## 22312 1.4 93.444 -36.1 4.963 5228.1 no
## 22320 1.4 93.444 -36.1 4.963 5228.1 no
## 22322 1.4 93.444 -36.1 4.963 5228.1 no
## 22336 1.4 93.444 -36.1 4.963 5228.1 no
## 22337 1.4 93.444 -36.1 4.963 5228.1 no
## 22342 1.4 93.444 -36.1 4.963 5228.1 no
## 22344 1.4 93.444 -36.1 4.963 5228.1 no
## 22359 1.4 93.444 -36.1 4.963 5228.1 no
## 22360 1.4 93.444 -36.1 4.963 5228.1 no
## 22362 1.4 93.444 -36.1 4.963 5228.1 no
## 22363 1.4 93.444 -36.1 4.963 5228.1 no
## 22375 1.4 93.444 -36.1 4.963 5228.1 no
## 22377 1.4 93.444 -36.1 4.964 5228.1 no
## 22380 1.4 93.444 -36.1 4.964 5228.1 no
## 22387 1.4 93.444 -36.1 4.964 5228.1 no
## 22393 1.4 93.444 -36.1 4.964 5228.1 no
## 22397 1.4 93.444 -36.1 4.964 5228.1 no
## 22399 1.4 93.444 -36.1 4.964 5228.1 no
## 22401 1.4 93.444 -36.1 4.964 5228.1 no
## 22402 1.4 93.444 -36.1 4.964 5228.1 yes
## 22406 1.4 93.444 -36.1 4.964 5228.1 no
## 22409 1.4 93.444 -36.1 4.964 5228.1 no
## 22433 1.4 93.444 -36.1 4.964 5228.1 yes
## 22435 1.4 93.444 -36.1 4.964 5228.1 no
## 22437 1.4 93.444 -36.1 4.964 5228.1 no
## 22443 1.4 93.444 -36.1 4.964 5228.1 no
## 22447 1.4 93.444 -36.1 4.964 5228.1 no
## 22452 1.4 93.444 -36.1 4.964 5228.1 no
## 22466 1.4 93.444 -36.1 4.964 5228.1 no
## 22468 1.4 93.444 -36.1 4.964 5228.1 no
## 22472 1.4 93.444 -36.1 4.964 5228.1 no
## 22481 1.4 93.444 -36.1 4.964 5228.1 no
## 22483 1.4 93.444 -36.1 4.964 5228.1 no
## 22495 1.4 93.444 -36.1 4.964 5228.1 no
## 22500 1.4 93.444 -36.1 4.964 5228.1 no
## 22503 1.4 93.444 -36.1 4.964 5228.1 no
## 22507 1.4 93.444 -36.1 4.964 5228.1 no
## 22515 1.4 93.444 -36.1 4.964 5228.1 no
## 22537 1.4 93.444 -36.1 4.964 5228.1 yes
## 22549 1.4 93.444 -36.1 4.964 5228.1 no
## 22550 1.4 93.444 -36.1 4.964 5228.1 no
## 22551 1.4 93.444 -36.1 4.964 5228.1 no
## 22560 1.4 93.444 -36.1 4.964 5228.1 no
## 22568 1.4 93.444 -36.1 4.964 5228.1 no
## 22577 1.4 93.444 -36.1 4.964 5228.1 no
## 22586 1.4 93.444 -36.1 4.964 5228.1 no
## 22599 1.4 93.444 -36.1 4.964 5228.1 no
## 22611 1.4 93.444 -36.1 4.964 5228.1 no
## 22614 1.4 93.444 -36.1 4.964 5228.1 no
## 22629 1.4 93.444 -36.1 4.964 5228.1 no
## 22630 1.4 93.444 -36.1 4.964 5228.1 no
## 22631 1.4 93.444 -36.1 4.964 5228.1 no
## 22632 1.4 93.444 -36.1 4.964 5228.1 no
## 22640 1.4 93.444 -36.1 4.964 5228.1 no
## 22642 1.4 93.444 -36.1 4.964 5228.1 no
## 22644 1.4 93.444 -36.1 4.964 5228.1 no
## 22645 1.4 93.444 -36.1 4.964 5228.1 no
## 22669 1.4 93.444 -36.1 4.964 5228.1 no
## 22674 1.4 93.444 -36.1 4.964 5228.1 no
## 22684 1.4 93.444 -36.1 4.964 5228.1 no
## 22686 1.4 93.444 -36.1 4.964 5228.1 no
## 22690 1.4 93.444 -36.1 4.964 5228.1 no
## 22691 1.4 93.444 -36.1 4.964 5228.1 no
## 22696 1.4 93.444 -36.1 4.964 5228.1 no
## 22699 1.4 93.444 -36.1 4.964 5228.1 no
## 22706 1.4 93.444 -36.1 4.964 5228.1 no
## 22712 1.4 93.444 -36.1 4.964 5228.1 no
## 22718 1.4 93.444 -36.1 4.964 5228.1 no
## 22724 1.4 93.444 -36.1 4.965 5228.1 no
## 22725 1.4 93.444 -36.1 4.965 5228.1 no
## 22729 1.4 93.444 -36.1 4.965 5228.1 no
## 22739 1.4 93.444 -36.1 4.965 5228.1 no
## 22743 1.4 93.444 -36.1 4.965 5228.1 no
## 22745 1.4 93.444 -36.1 4.965 5228.1 no
## 22761 1.4 93.444 -36.1 4.965 5228.1 no
## 22762 1.4 93.444 -36.1 4.965 5228.1 no
## 22764 1.4 93.444 -36.1 4.965 5228.1 no
## 22766 1.4 93.444 -36.1 4.965 5228.1 no
## 22768 1.4 93.444 -36.1 4.965 5228.1 no
## 22770 1.4 93.444 -36.1 4.965 5228.1 no
## 22772 1.4 93.444 -36.1 4.965 5228.1 no
## 22774 1.4 93.444 -36.1 4.965 5228.1 no
## 22775 1.4 93.444 -36.1 4.965 5228.1 no
## 22776 1.4 93.444 -36.1 4.965 5228.1 no
## 22781 1.4 93.444 -36.1 4.965 5228.1 no
## 22786 1.4 93.444 -36.1 4.965 5228.1 no
## 22787 1.4 93.444 -36.1 4.965 5228.1 yes
## 22794 1.4 93.444 -36.1 4.965 5228.1 no
## 22813 1.4 93.444 -36.1 4.965 5228.1 no
## 22816 1.4 93.444 -36.1 4.965 5228.1 no
## 22817 1.4 93.444 -36.1 4.965 5228.1 no
## 22822 1.4 93.444 -36.1 4.965 5228.1 no
## 22837 1.4 93.444 -36.1 4.965 5228.1 no
## 22838 1.4 93.444 -36.1 4.965 5228.1 no
## 22840 1.4 93.444 -36.1 4.965 5228.1 no
## 22842 1.4 93.444 -36.1 4.965 5228.1 no
## 22855 1.4 93.444 -36.1 4.965 5228.1 no
## 22857 1.4 93.444 -36.1 4.965 5228.1 no
## 22863 1.4 93.444 -36.1 4.965 5228.1 no
## 22866 1.4 93.444 -36.1 4.965 5228.1 no
## 22872 1.4 93.444 -36.1 4.965 5228.1 no
## 22874 1.4 93.444 -36.1 4.965 5228.1 no
## 22879 1.4 93.444 -36.1 4.965 5228.1 no
## 22883 1.4 93.444 -36.1 4.965 5228.1 no
## 22886 1.4 93.444 -36.1 4.965 5228.1 no
## 22892 1.4 93.444 -36.1 4.965 5228.1 no
## 22899 1.4 93.444 -36.1 4.965 5228.1 no
## 22901 1.4 93.444 -36.1 4.965 5228.1 no
## 22903 1.4 93.444 -36.1 4.965 5228.1 no
## 22907 1.4 93.444 -36.1 4.965 5228.1 no
## 22912 1.4 93.444 -36.1 4.965 5228.1 no
## 22926 1.4 93.444 -36.1 4.965 5228.1 no
## 22928 1.4 93.444 -36.1 4.965 5228.1 no
## 22929 1.4 93.444 -36.1 4.965 5228.1 no
## 22935 1.4 93.444 -36.1 4.965 5228.1 no
## 22939 1.4 93.444 -36.1 4.965 5228.1 no
## 22942 1.4 93.444 -36.1 4.965 5228.1 no
## 22947 1.4 93.444 -36.1 4.965 5228.1 no
## 22948 1.4 93.444 -36.1 4.965 5228.1 no
## 22949 1.4 93.444 -36.1 4.965 5228.1 no
## 22957 1.4 93.444 -36.1 4.965 5228.1 no
## 22958 1.4 93.444 -36.1 4.965 5228.1 no
## 22963 1.4 93.444 -36.1 4.965 5228.1 no
## 22973 1.4 93.444 -36.1 4.965 5228.1 no
## 22984 1.4 93.444 -36.1 4.965 5228.1 no
## 22994 1.4 93.444 -36.1 4.965 5228.1 no
## 22997 1.4 93.444 -36.1 4.965 5228.1 no
## 23003 1.4 93.444 -36.1 4.965 5228.1 no
## 23006 1.4 93.444 -36.1 4.965 5228.1 no
## 23008 1.4 93.444 -36.1 4.965 5228.1 no
## 23011 1.4 93.444 -36.1 4.965 5228.1 no
## 23024 1.4 93.444 -36.1 4.965 5228.1 no
## 23025 1.4 93.444 -36.1 4.965 5228.1 no
## 23027 1.4 93.444 -36.1 4.965 5228.1 no
## 23035 1.4 93.444 -36.1 4.965 5228.1 no
## 23036 1.4 93.444 -36.1 4.965 5228.1 no
## 23047 1.4 93.444 -36.1 4.965 5228.1 no
## 23049 1.4 93.444 -36.1 4.965 5228.1 no
## 23050 1.4 93.444 -36.1 4.965 5228.1 no
## 23054 1.4 93.444 -36.1 4.965 5228.1 no
## 23060 1.4 93.444 -36.1 4.965 5228.1 no
## 23064 1.4 93.444 -36.1 4.965 5228.1 no
## 23069 1.4 93.444 -36.1 4.965 5228.1 no
## 23071 1.4 93.444 -36.1 4.965 5228.1 no
## 23077 1.4 93.444 -36.1 4.965 5228.1 no
## 23082 1.4 93.444 -36.1 4.965 5228.1 no
## 23084 1.4 93.444 -36.1 4.965 5228.1 no
## 23088 1.4 93.444 -36.1 4.965 5228.1 no
## 23090 1.4 93.444 -36.1 4.965 5228.1 no
## 23091 1.4 93.444 -36.1 4.965 5228.1 no
## 23098 1.4 93.444 -36.1 4.965 5228.1 no
## 23103 1.4 93.444 -36.1 4.965 5228.1 no
## 23105 1.4 93.444 -36.1 4.965 5228.1 no
## 23113 1.4 93.444 -36.1 4.965 5228.1 no
## 23120 1.4 93.444 -36.1 4.965 5228.1 no
## 23123 1.4 93.444 -36.1 4.965 5228.1 no
## 23131 1.4 93.444 -36.1 4.965 5228.1 no
## 23135 1.4 93.444 -36.1 4.965 5228.1 no
## 23149 1.4 93.444 -36.1 4.965 5228.1 no
## 23160 1.4 93.444 -36.1 4.965 5228.1 no
## 23168 1.4 93.444 -36.1 4.965 5228.1 no
## 23172 1.4 93.444 -36.1 4.965 5228.1 no
## 23174 1.4 93.444 -36.1 4.965 5228.1 no
## 23179 1.4 93.444 -36.1 4.965 5228.1 no
## 23181 1.4 93.444 -36.1 4.965 5228.1 no
## 23183 1.4 93.444 -36.1 4.965 5228.1 no
## 23185 1.4 93.444 -36.1 4.965 5228.1 no
## 23215 1.4 93.444 -36.1 4.965 5228.1 no
## 23221 1.4 93.444 -36.1 4.965 5228.1 no
## 23223 1.4 93.444 -36.1 4.965 5228.1 no
## 23230 1.4 93.444 -36.1 4.965 5228.1 no
## 23231 1.4 93.444 -36.1 4.965 5228.1 no
## 23234 1.4 93.444 -36.1 4.965 5228.1 no
## 23235 1.4 93.444 -36.1 4.965 5228.1 no
## 23241 1.4 93.444 -36.1 4.965 5228.1 no
## 23247 1.4 93.444 -36.1 4.965 5228.1 no
## 23251 1.4 93.444 -36.1 4.964 5228.1 no
## 23258 1.4 93.444 -36.1 4.964 5228.1 yes
## 23263 1.4 93.444 -36.1 4.964 5228.1 no
## 23264 1.4 93.444 -36.1 4.964 5228.1 no
## 23268 1.4 93.444 -36.1 4.964 5228.1 yes
## 23269 1.4 93.444 -36.1 4.964 5228.1 no
## 23271 1.4 93.444 -36.1 4.964 5228.1 no
## 23276 1.4 93.444 -36.1 4.964 5228.1 no
## 23280 1.4 93.444 -36.1 4.964 5228.1 no
## 23285 1.4 93.444 -36.1 4.964 5228.1 no
## 23288 1.4 93.444 -36.1 4.964 5228.1 no
## 23294 1.4 93.444 -36.1 4.964 5228.1 no
## 23297 1.4 93.444 -36.1 4.964 5228.1 no
## 23304 1.4 93.444 -36.1 4.964 5228.1 no
## 23306 1.4 93.444 -36.1 4.964 5228.1 yes
## 23309 1.4 93.444 -36.1 4.964 5228.1 no
## 23310 1.4 93.444 -36.1 4.964 5228.1 no
## 23312 1.4 93.444 -36.1 4.964 5228.1 no
## 23313 1.4 93.444 -36.1 4.964 5228.1 no
## 23325 1.4 93.444 -36.1 4.964 5228.1 no
## 23336 1.4 93.444 -36.1 4.964 5228.1 no
## 23338 1.4 93.444 -36.1 4.964 5228.1 no
## 23339 1.4 93.444 -36.1 4.964 5228.1 no
## 23359 1.4 93.444 -36.1 4.964 5228.1 no
## 23363 1.4 93.444 -36.1 4.964 5228.1 no
## 23365 1.4 93.444 -36.1 4.964 5228.1 no
## 23373 1.4 93.444 -36.1 4.964 5228.1 no
## 23374 1.4 93.444 -36.1 4.964 5228.1 no
## 23376 1.4 93.444 -36.1 4.964 5228.1 no
## 23381 1.4 93.444 -36.1 4.964 5228.1 no
## 23383 1.4 93.444 -36.1 4.964 5228.1 no
## 23385 1.4 93.444 -36.1 4.964 5228.1 no
## 23390 1.4 93.444 -36.1 4.964 5228.1 no
## 23394 1.4 93.444 -36.1 4.964 5228.1 no
## 23400 1.4 93.444 -36.1 4.964 5228.1 no
## 23411 1.4 93.444 -36.1 4.964 5228.1 no
## 23417 1.4 93.444 -36.1 4.964 5228.1 no
## 23419 1.4 93.444 -36.1 4.964 5228.1 no
## 23421 1.4 93.444 -36.1 4.964 5228.1 no
## 23449 1.4 93.444 -36.1 4.964 5228.1 no
## 23451 1.4 93.444 -36.1 4.964 5228.1 no
## 23465 1.4 93.444 -36.1 4.964 5228.1 no
## 23474 1.4 93.444 -36.1 4.964 5228.1 no
## 23479 1.4 93.444 -36.1 4.962 5228.1 no
## [ reached 'max' / getOption("max.print") -- omitted 3476 rows ]
print(table(train_data$y))
##
## yes no
## 3712 29239
train_data <- ovun.sample(y ~ ., data = train_data, method = "over", N = nrow(train_data))$data
print(table(train_data$y))
##
## no yes
## 29239 3712
train_data
## age job marital education default housing loan
## 1 56 housemaid married basic.4y no no no
## 2 57 services married high.school unknown no no
## 3 37 services married high.school no yes no
## 4 40 admin. married basic.6y no no no
## 5 56 services married high.school no no yes
## 6 45 services married basic.9y unknown no no
## 7 59 admin. married professional.course no no no
## 8 41 blue-collar married unknown unknown no no
## 9 24 technician single professional.course no yes no
## 10 25 services single high.school no yes no
## 11 41 blue-collar married unknown unknown no no
## 12 25 services single high.school no yes no
## 13 29 blue-collar single high.school no no yes
## 14 54 retired married basic.9y unknown yes yes
## 15 35 blue-collar married basic.6y no yes no
## 16 46 blue-collar married basic.6y unknown yes yes
## 17 50 blue-collar married basic.9y no yes yes
## 18 39 management single basic.9y unknown no no
## 19 30 unemployed married high.school no no no
## 20 55 blue-collar married basic.4y unknown yes no
## 21 41 technician single high.school no yes no
## 22 35 technician married university.degree no no yes
## 23 59 technician married unknown no yes no
## 24 39 self-employed married basic.9y unknown no no
## 25 54 technician single university.degree unknown no no
## 26 55 unknown married university.degree unknown unknown unknown
## 27 46 admin. married unknown no no no
## 28 59 technician married unknown no yes no
## 29 49 blue-collar married unknown no no no
## 30 54 management married basic.4y unknown yes no
## 31 54 blue-collar divorced basic.4y no no no
## 32 55 unknown married basic.4y unknown yes no
## 33 34 services married high.school no no no
## 34 52 technician married basic.9y no yes no
## 35 41 admin. married university.degree no yes no
## 36 56 technician married basic.4y no yes no
## 37 58 management unknown university.degree no yes no
## 38 32 entrepreneur married high.school no yes no
## 39 38 admin. single professional.course no no no
## 40 44 admin. married university.degree unknown yes no
## 41 42 technician single professional.course unknown no no
## 42 57 admin. married university.degree no yes yes
## 43 40 blue-collar married basic.9y no no yes
## 44 35 admin. married university.degree no yes no
## 45 45 blue-collar married basic.9y no yes no
## 46 54 admin. married high.school no no no
## 47 39 housemaid married basic.4y no no yes
## 48 60 admin. married high.school no no no
## 49 53 admin. single professional.course no no no
## 50 55 blue-collar married basic.4y unknown no no
## 51 55 technician married professional.course unknown yes no
## 52 50 management married university.degree unknown no yes
## 53 45 services married high.school unknown yes no
## 54 55 unemployed married professional.course unknown yes yes
## 55 25 technician single university.degree no yes no
## 56 42 blue-collar married basic.6y unknown yes no
## 57 42 blue-collar married basic.6y unknown no no
## 58 48 admin. married high.school no no no
## 59 37 admin. married university.degree no no no
## 60 44 blue-collar single basic.9y no yes no
## 61 56 admin. married basic.9y no yes no
## 62 44 blue-collar single basic.4y unknown yes yes
## 63 41 management married basic.6y no no no
## 64 47 admin. married university.degree unknown yes no
## 65 57 unknown married unknown unknown no no
## 66 37 admin. married university.degree unknown yes no
## 67 55 technician married university.degree no no no
## 68 33 services married high.school unknown yes no
## 69 55 management married unknown unknown yes no
## 70 42 blue-collar married basic.9y unknown no no
## 71 51 blue-collar married basic.4y unknown unknown unknown
## 72 31 admin. divorced high.school no no no
## 73 41 management married basic.6y no no no
## 74 39 admin. married university.degree no yes yes
## 75 34 admin. married high.school no yes no
## 76 35 admin. married university.degree no yes no
## 77 57 unknown married unknown unknown yes no
## 78 60 admin. married unknown unknown no yes
## 79 33 unemployed married basic.9y no no no
## 80 45 services married professional.course no yes no
## 81 42 management married university.degree no no no
## 82 53 admin. divorced university.degree unknown no no
## 83 37 technician single professional.course no no no
## 84 44 blue-collar married basic.6y no no no
## 85 54 services married unknown no yes no
## 86 49 blue-collar married basic.4y no no no
## 87 54 services married unknown no no no
## 88 52 admin. divorced university.degree no no no
## 89 43 services single high.school unknown no no
## 90 34 housemaid married basic.6y no yes no
## 91 42 entrepreneur married unknown unknown yes no
## 92 43 technician married unknown unknown yes yes
## 93 60 retired divorced university.degree unknown no no
## 94 55 blue-collar married basic.9y unknown yes no
## 95 37 management married university.degree no no no
## 96 36 blue-collar married high.school no no no
## 97 52 admin. divorced university.degree no no no
## 98 57 blue-collar divorced unknown unknown yes no
## 99 48 blue-collar divorced basic.4y unknown yes no
## 100 40 blue-collar married high.school unknown yes no
## 101 49 blue-collar divorced high.school no no no
## 102 41 services married high.school no no no
## 103 32 admin. married university.degree no yes yes
## 104 42 admin. married university.degree no no yes
## 105 50 admin. married basic.6y no no no
## 106 31 technician divorced professional.course no yes yes
## 107 56 retired married basic.4y no yes no
## 108 37 blue-collar married basic.6y no yes yes
## 109 41 technician married professional.course unknown no no
## 110 35 blue-collar married unknown no yes no
## 111 37 blue-collar married basic.6y no yes no
## 112 52 management married university.degree no no no
## 113 39 management divorced university.degree no no no
## 114 39 housemaid married basic.4y unknown no no
## 115 56 blue-collar married basic.4y unknown no no
## 116 34 services married high.school no yes no
## 117 43 unemployed single university.degree no yes no
## 118 56 management married unknown no yes no
## 119 53 blue-collar married basic.4y no yes no
## 120 38 unknown divorced high.school unknown yes no
## 121 42 blue-collar married basic.4y unknown yes no
## 122 42 blue-collar married basic.4y unknown no no
## 123 35 admin. single high.school no yes no
## 124 51 blue-collar married basic.4y no yes no
## 125 60 blue-collar married basic.9y unknown no no
## 126 56 entrepreneur married unknown unknown yes no
## 127 56 entrepreneur married unknown unknown no no
## 128 40 blue-collar married unknown no yes yes
## 129 51 blue-collar married unknown unknown yes no
## 130 51 blue-collar married unknown unknown no no
## 131 43 technician single professional.course no yes no
## 132 59 services married high.school no no no
## 133 24 management single university.degree no yes no
## 134 37 blue-collar single basic.9y unknown yes yes
## 135 39 services divorced high.school unknown no no
## 136 37 entrepreneur married basic.6y no no no
## 137 38 services married high.school no yes yes
## 138 56 admin. divorced unknown unknown no no
## 139 43 blue-collar married high.school unknown no yes
## 140 36 services married high.school unknown no no
## 141 45 technician married university.degree no yes yes
## 142 42 admin. single university.degree unknown no no
## 143 46 management married basic.9y no no no
## 144 44 services married high.school no yes yes
## 145 51 admin. single basic.6y no no no
## 146 28 services married high.school no yes no
## 147 37 blue-collar married basic.9y no no no
## 148 46 blue-collar married basic.6y unknown yes no
## 149 36 admin. married university.degree no yes no
## 150 54 blue-collar married basic.4y unknown no no
## 151 57 management married university.degree no no no
## 152 51 technician married basic.6y unknown no no
## 153 54 retired married high.school unknown no no
## 154 34 admin. married university.degree no yes no
## 155 41 technician married professional.course no no no
## 156 38 blue-collar single basic.9y no yes no
## 157 45 management divorced university.degree no no no
## 158 42 technician married university.degree no no no
## 159 34 blue-collar single basic.9y unknown yes no
## 160 48 blue-collar married basic.4y no yes no
## 161 37 admin. married high.school unknown yes no
## 162 34 blue-collar single basic.9y unknown no no
## 163 40 admin. married basic.9y unknown yes no
## 164 43 blue-collar married basic.6y no yes no
## 165 33 services married high.school no no no
## 166 39 blue-collar married high.school no yes no
## 167 44 blue-collar married basic.9y no yes no
## 168 35 student single university.degree unknown no no
## 169 35 unemployed married professional.course no no no
## 170 36 services single basic.4y no no no
## 171 35 student single university.degree unknown yes no
## 172 55 housemaid divorced university.degree no no no
## 173 39 blue-collar married professional.course unknown yes no
## 174 39 housemaid married basic.4y unknown yes no
## 175 50 housemaid married basic.4y unknown no no
## 176 40 services married high.school no no no
## 177 35 admin. married high.school no yes no
## 178 43 technician married unknown unknown no no
## 179 46 technician married basic.4y unknown yes no
## 180 40 technician married basic.9y no no no
## 181 58 retired married university.degree no no no
## 182 35 admin. single university.degree no no no
## 183 39 admin. married professional.course no yes no
## 184 50 services divorced professional.course no yes no
## 185 32 management divorced basic.4y unknown yes no
## 186 39 admin. married high.school unknown no no
## 187 52 self-employed married university.degree unknown no no
## 188 44 admin. married professional.course no yes no
## 189 56 blue-collar married basic.4y no no no
## 190 48 admin. married high.school no no no
## 191 33 services married high.school unknown no yes
## 192 57 retired married high.school no no no
## 193 36 technician single professional.course no no no
## 194 34 management married university.degree no yes no
## 195 34 services single basic.9y no no no
## 196 33 services divorced unknown no no no
## 197 32 technician single professional.course no no no
## 198 36 technician single high.school no yes no
## 199 33 services single high.school no no no
## 200 41 blue-collar married basic.4y no yes no
## 201 51 services married basic.6y no yes no
## 202 36 technician married professional.course no yes no
## 203 28 services married unknown no no no
## 204 53 services married high.school no yes yes
## 205 58 blue-collar married basic.9y unknown yes no
## 206 45 management married basic.9y no no yes
## 207 43 technician married unknown no yes no
## 208 33 admin. married high.school no no yes
## 209 33 admin. married high.school no no yes
## 210 27 blue-collar single basic.6y no unknown unknown
## 211 42 technician married high.school no no no
## 212 43 admin. divorced basic.9y no no no
## 213 42 admin. married university.degree no no no
## 214 27 blue-collar single basic.6y no no no
## 215 31 student single university.degree unknown no no
## 216 40 self-employed married basic.4y unknown no no
## 217 52 unemployed married high.school unknown yes no
## 218 47 management divorced university.degree no no no
## 219 49 housemaid married basic.9y unknown no no
## 220 32 admin. single high.school no no no
## 221 49 housemaid single high.school unknown yes yes
## 222 50 blue-collar married basic.9y unknown no no
## 223 34 services married high.school no no no
## 224 55 blue-collar married basic.4y unknown no no
## 225 47 technician single basic.9y no no no
## 226 51 retired married professional.course no no no
## 227 47 blue-collar married basic.6y no no no
## 228 56 technician married basic.4y no yes no
## 229 53 admin. married basic.9y no no no
## 230 36 blue-collar married basic.9y no yes no
## 231 42 blue-collar divorced basic.9y no yes no
## 232 44 blue-collar divorced basic.6y no no no
## 233 37 admin. single high.school no yes yes
## 234 60 blue-collar married unknown unknown yes no
## 235 31 admin. married high.school no yes yes
## 236 53 technician divorced professional.course unknown no yes
## 237 45 blue-collar married basic.4y no yes no
## 238 37 technician single professional.course no yes no
## 239 47 self-employed married professional.course no no no
## 240 49 blue-collar divorced high.school no no yes
## 241 35 services divorced high.school no no no
## 242 38 unknown married unknown unknown no no
## 243 38 services single high.school unknown no no
## 244 50 blue-collar divorced high.school unknown no yes
## 245 59 retired married professional.course unknown no no
## 246 46 blue-collar married unknown unknown no no
## 247 57 housemaid divorced basic.4y no yes yes
## 248 42 admin. married university.degree no yes no
## 249 41 blue-collar married basic.4y no yes no
## 250 54 management divorced university.degree no yes no
## 251 27 admin. single university.degree no no no
## 252 36 admin. married high.school no no no
## 253 58 blue-collar married professional.course unknown yes no
## 254 40 management married university.degree unknown yes no
## 255 34 admin. single basic.9y unknown no no
## 256 33 admin. divorced high.school no no no
## 257 56 retired married basic.6y no no no
## 258 43 services married high.school no yes no
## 259 54 management single basic.9y no yes no
## 260 53 admin. single basic.6y no yes yes
## 261 42 technician single unknown no no no
## 262 40 services married basic.6y unknown no no
## 263 54 technician married professional.course no yes yes
## 264 40 housemaid single professional.course no no no
## 265 26 admin. single university.degree no yes no
## 266 33 admin. married high.school no no no
## 267 35 blue-collar married basic.9y unknown no no
## 268 36 admin. married high.school no no no
## 269 29 services single high.school no yes no
## 270 35 management married high.school no yes no
## 271 46 services married high.school unknown yes no
## 272 49 entrepreneur married high.school no yes no
## 273 42 technician single professional.course unknown yes no
## 274 36 blue-collar single high.school no yes yes
## 275 55 blue-collar married basic.9y unknown yes no
## 276 57 management married professional.course unknown yes no
## 277 32 services single high.school no yes no
## 278 49 admin. married basic.9y no no no
## 279 58 blue-collar divorced basic.4y no yes no
## 280 52 technician married high.school no yes no
## 281 41 blue-collar single basic.9y unknown yes no
## 282 33 entrepreneur married university.degree no yes no
## 283 57 blue-collar married basic.4y no no no
## 284 48 blue-collar married basic.6y unknown no no
## 285 55 technician married professional.course no no no
## 286 38 management married university.degree no no no
## 287 38 services married high.school no yes no
## 288 53 admin. married university.degree no yes no
## 289 43 unemployed single university.degree no no no
## 290 36 blue-collar single high.school no no no
## 291 32 blue-collar married basic.9y no no no
## 292 33 services married basic.4y no no no
## 293 58 entrepreneur married basic.4y no yes no
## 294 40 unemployed divorced high.school unknown no no
## 295 45 technician married high.school no yes no
## 296 46 admin. married university.degree no yes no
## 297 36 technician married university.degree no no no
## 298 41 self-employed married high.school no yes no
## 299 49 blue-collar married basic.9y unknown yes no
## 300 37 blue-collar married basic.9y no no no
## 301 46 admin. single high.school no yes no
## 302 22 blue-collar single basic.9y no yes no
## 303 43 services married high.school no no no
## 304 49 blue-collar married unknown no no no
## 305 41 technician married basic.6y no yes no
## 306 38 admin. single university.degree no no no
## 307 49 admin. married university.degree no yes yes
## 308 30 blue-collar single unknown no no no
## 309 33 admin. married basic.9y no yes no
## 310 34 management single university.degree no no no
## 311 30 student single unknown unknown no no
## 312 59 management married basic.4y unknown yes yes
## 313 59 management married basic.4y unknown unknown unknown
## 314 41 self-employed married university.degree no no no
## 315 59 retired unknown university.degree unknown no no
## 316 50 management married high.school unknown no no
## 317 35 admin. married university.degree no no no
## 318 42 admin. married high.school no no no
## 319 45 admin. married basic.9y no no no
## 320 36 technician married professional.course no no no
## 321 56 services married high.school unknown no no
## 322 29 blue-collar divorced basic.4y no no no
## 323 41 self-employed married university.degree no yes yes
## 324 42 blue-collar married basic.9y unknown no no
## 325 52 services single high.school no no no
## 326 48 services married high.school unknown unknown unknown
## 327 31 blue-collar married high.school unknown yes no
## 328 43 unemployed married university.degree unknown yes no
## 329 36 blue-collar married basic.4y unknown no no
## 330 42 entrepreneur married university.degree no yes no
## 331 39 admin. married high.school no yes no
## 332 36 services married high.school no no yes
## 333 42 blue-collar married basic.9y unknown yes no
## 334 41 admin. married high.school no no no
## 335 55 technician married basic.4y no no yes
## 336 30 blue-collar married basic.9y no no no
## 337 57 retired unknown basic.4y no no no
## 338 45 entrepreneur married basic.4y unknown yes no
## 339 51 blue-collar married basic.4y unknown yes yes
## 340 39 self-employed single basic.9y unknown yes yes
## 341 27 services married high.school no yes no
## 342 57 blue-collar married basic.4y unknown yes no
## 343 43 entrepreneur married basic.4y no no no
## 344 49 blue-collar married basic.4y unknown no no
## 345 39 management married university.degree unknown no no
## 346 49 blue-collar married basic.9y no no no
## 347 43 technician married professional.course no yes no
## 348 31 services married high.school unknown no no
## 349 43 self-employed divorced university.degree no no no
## 350 43 self-employed married basic.9y unknown no no
## 351 30 self-employed single university.degree no yes no
## 352 27 services single professional.course no yes yes
## 353 37 technician married professional.course no yes no
## 354 46 housemaid married basic.9y no yes no
## 355 35 blue-collar married professional.course no no no
## 356 47 admin. divorced university.degree no no no
## 357 46 management married unknown no yes no
## 358 40 technician married professional.course unknown no yes
## 359 26 housemaid married university.degree no no no
## 360 32 blue-collar divorced basic.9y unknown no no
## 361 45 management married university.degree no yes no
## 362 34 admin. married basic.9y no no no
## 363 57 technician married basic.4y unknown no yes
## 364 38 blue-collar married basic.4y no no yes
## 365 57 technician married basic.4y unknown no no
## 366 28 student single basic.9y unknown yes no
## 367 60 management married university.degree no no no
## 368 48 admin. married university.degree no yes no
## 369 47 technician married professional.course no yes no
## 370 40 admin. married high.school no no no
## 371 48 unemployed single basic.4y no yes no
## 372 54 housemaid married basic.4y no no no
## 373 40 blue-collar married basic.6y no no yes
## 374 44 admin. single basic.9y unknown no no
## 375 42 technician divorced high.school no no no
## 376 31 blue-collar single basic.9y no yes no
## 377 32 services married high.school no no no
## 378 44 admin. married high.school no yes yes
## 379 52 admin. married basic.4y no yes no
## 380 43 management married professional.course no yes no
## 381 31 admin. divorced high.school no no no
## 382 29 admin. married university.degree unknown yes no
## 383 57 blue-collar divorced basic.4y no no no
## 384 44 blue-collar married basic.9y unknown no no
## 385 57 retired married university.degree no no no
## 386 41 management married unknown unknown no no
## 387 37 technician single high.school unknown no yes
## 388 38 services married high.school no yes no
## 389 49 unknown married unknown unknown yes no
## 390 54 management married basic.6y unknown yes yes
## 391 36 admin. married university.degree no unknown unknown
## 392 32 admin. single university.degree unknown no no
## 393 35 technician married professional.course no yes no
## 394 34 technician married university.degree no yes no
## 395 41 unemployed married basic.9y unknown no no
## 396 36 blue-collar married basic.9y unknown no no
## 397 32 admin. single university.degree unknown unknown unknown
## 398 31 services married high.school unknown unknown unknown
## 399 38 technician married professional.course no yes no
## 400 35 admin. divorced university.degree unknown yes no
## 401 53 admin. married professional.course no yes no
## 402 56 entrepreneur married university.degree unknown no no
## 403 33 admin. married basic.9y no unknown unknown
## 404 33 admin. married basic.9y no no no
## 405 51 services divorced high.school unknown yes no
## 406 45 entrepreneur married university.degree no no no
## 407 60 unknown single unknown unknown yes no
## 408 33 technician married university.degree no yes no
## 409 37 management married university.degree no yes no
## 410 50 services married basic.9y no yes yes
## 411 59 entrepreneur married high.school no yes no
## 412 32 technician married unknown unknown yes no
## 413 52 blue-collar married basic.4y no no no
## 414 42 blue-collar married unknown unknown no no
## 415 42 admin. married unknown no no no
## 416 40 management married basic.9y unknown unknown unknown
## 417 38 blue-collar married basic.9y no no no
## 418 39 blue-collar married basic.6y no yes no
## 419 39 blue-collar married basic.6y no no no
## 420 38 admin. married high.school no no no
## 421 47 admin. single unknown unknown yes no
## 422 38 admin. divorced high.school no yes yes
## 423 39 technician divorced university.degree no no no
## 424 41 services married high.school unknown yes yes
## 425 41 blue-collar married basic.6y no no no
## 426 35 blue-collar married basic.9y no no no
## 427 41 technician married high.school no no no
## 428 36 services married high.school unknown no no
## 429 35 admin. single high.school no yes yes
## 430 33 blue-collar single basic.4y unknown no no
## 431 38 admin. single basic.6y unknown no no
## 432 33 self-employed married university.degree no no no
## 433 55 self-employed married unknown unknown no no
## 434 36 blue-collar single basic.9y unknown no no
## 435 32 entrepreneur single university.degree no yes no
## 436 43 admin. married professional.course no yes yes
## 437 46 admin. married university.degree no no no
## 438 35 admin. divorced high.school no no yes
## 439 50 blue-collar married basic.4y unknown unknown unknown
## 440 39 admin. single university.degree no no no
## 441 39 blue-collar married basic.9y unknown no no
## 442 42 entrepreneur married basic.6y no no no
## 443 45 blue-collar married basic.4y unknown no no
## 444 40 technician married basic.4y no no yes
## 445 40 technician married basic.4y no no no
## 446 38 blue-collar single basic.4y unknown no no
## 447 41 blue-collar married basic.4y no no no
## 448 39 blue-collar married basic.6y unknown yes no
## 449 41 blue-collar married basic.4y no yes yes
## 450 35 admin. divorced university.degree no unknown unknown
## 451 35 admin. married basic.6y no yes no
## 452 36 technician married unknown no no no
## 453 23 admin. single university.degree no no no
## 454 43 unemployed married university.degree unknown unknown unknown
## 455 49 entrepreneur married professional.course no unknown unknown
## 456 36 technician married professional.course no unknown unknown
## 457 51 blue-collar married basic.9y unknown yes no
## 458 56 retired married basic.4y unknown yes yes
## 459 42 admin. married high.school no no no
## 460 41 admin. divorced high.school no no no
## 461 32 services married high.school unknown no yes
## 462 37 blue-collar married unknown no no no
## 463 53 management married university.degree unknown no no
## 464 45 unknown married unknown unknown no no
## 465 24 technician single professional.course no no yes
## 466 45 unknown married unknown unknown no no
## 467 34 admin. single university.degree no no yes
## 468 41 management married university.degree unknown no no
## 469 59 blue-collar married basic.4y no yes no
## 470 45 blue-collar married basic.4y unknown no no
## 471 54 blue-collar married basic.6y unknown no no
## 472 33 technician married professional.course no yes no
## 473 32 admin. married university.degree no no no
## 474 34 services single high.school no unknown unknown
## 475 46 management married university.degree no no no
## 476 57 technician married professional.course no yes no
## 477 42 technician married basic.9y no no no
## 478 48 admin. married professional.course no yes no
## 479 58 admin. divorced university.degree unknown yes no
## 480 32 admin. single university.degree no yes yes
## 481 48 blue-collar married basic.9y no no no
## 482 31 services married high.school unknown no no
## 483 32 admin. single university.degree no no no
## 484 36 services married high.school no no no
## 485 37 blue-collar married basic.9y unknown no no
## 486 50 services married high.school no no no
## 487 46 blue-collar married basic.6y no yes no
## 488 41 admin. married high.school no no no
## 489 43 blue-collar single basic.4y no no no
## 490 51 management married university.degree no yes no
## 491 38 admin. married university.degree no yes no
## 492 41 technician married basic.6y no yes no
## 493 39 services married high.school unknown no no
## 494 37 technician married professional.course no yes no
## 495 41 admin. married basic.9y no yes no
## 496 46 admin. divorced university.degree no yes yes
## 497 47 technician married professional.course no no no
## 498 35 technician married professional.course no no no
## 499 38 services married high.school unknown no no
## 500 30 blue-collar single unknown no yes yes
## 501 46 blue-collar married basic.9y no yes no
## 502 30 technician married professional.course no no no
## 503 35 services single basic.4y no no no
## 504 58 admin. married unknown unknown yes no
## 505 40 technician married professional.course no no no
## 506 34 technician married university.degree no no no
## 507 30 admin. single university.degree no no no
## 508 55 management married university.degree unknown yes no
## 509 45 technician single professional.course no yes no
## 510 36 admin. married university.degree no yes yes
## 511 32 admin. single university.degree no no no
## 512 35 technician married unknown unknown yes no
## 513 55 management divorced university.degree no yes no
## 514 49 housemaid married basic.4y unknown unknown unknown
## 515 34 blue-collar married basic.4y no yes no
## 516 37 blue-collar married high.school no no no
## 517 36 technician married basic.9y unknown yes no
## 518 33 blue-collar married high.school no no no
## 519 32 housemaid married high.school no yes no
## 520 32 housemaid married high.school no no no
## 521 50 blue-collar married basic.4y unknown yes no
## 522 51 blue-collar divorced unknown unknown yes yes
## 523 33 services married high.school no no no
## 524 33 services married basic.4y no no no
## 525 39 management divorced university.degree unknown yes no
## 526 33 self-employed single university.degree no no no
## 527 59 retired divorced basic.4y unknown no no
## 528 42 admin. single unknown no yes no
## 529 35 admin. married university.degree no unknown unknown
## 530 46 blue-collar married basic.6y unknown yes no
## 531 27 technician married basic.9y no no yes
## 532 47 admin. divorced university.degree no yes no
## 533 31 admin. single university.degree no no no
## 534 32 blue-collar married basic.9y no yes no
## 535 54 admin. married high.school no no no
## 536 56 management married university.degree unknown no no
## 537 48 services single high.school unknown yes no
## 538 44 admin. married high.school no yes no
## 539 46 admin. married high.school no no yes
## 540 43 admin. married professional.course no no yes
## 541 40 admin. single high.school unknown no no
## 542 56 management married university.degree no yes no
## 543 39 management divorced university.degree unknown yes no
## 544 48 technician married basic.4y unknown no no
## 545 36 self-employed married university.degree no no no
## 546 49 management married professional.course unknown yes no
## 547 46 services married high.school no no no
## 548 38 blue-collar married basic.9y no yes no
## 549 50 housemaid married basic.4y unknown yes no
## 550 27 admin. single high.school no yes no
## 551 40 technician married professional.course unknown yes no
## 552 54 retired married high.school no yes no
## 553 52 blue-collar married basic.4y unknown yes no
## 554 53 admin. married university.degree unknown yes no
## 555 49 services married high.school unknown no no
## 556 42 blue-collar married basic.4y unknown no no
## 557 40 entrepreneur married basic.9y no no no
## 558 59 admin. married university.degree unknown no no
## 559 38 self-employed divorced basic.9y no yes no
## 560 52 self-employed married university.degree no no no
## 561 26 unemployed single basic.9y no yes no
## 562 51 admin. married university.degree no no no
## 563 43 blue-collar married basic.4y unknown yes yes
## 564 60 retired divorced university.degree unknown yes no
## 565 57 management married university.degree unknown no no
## 566 35 student single university.degree unknown no no
## 567 43 services married high.school no no no
## 568 40 technician married basic.9y no no no
## 569 45 technician married university.degree no no no
## 570 56 retired married high.school no no no
## 571 46 services married basic.6y no no no
## 572 41 blue-collar married basic.4y no yes no
## 573 56 blue-collar married basic.4y no no no
## 574 43 entrepreneur married basic.4y no yes no
## 575 34 blue-collar married basic.4y no no no
## 576 38 services married high.school no yes no
## 577 40 technician married basic.9y no no no
## 578 27 blue-collar married basic.9y unknown yes no
## 579 47 admin. single unknown unknown yes yes
## 580 48 blue-collar married professional.course unknown no no
## 581 31 admin. single high.school no yes yes
## 582 49 blue-collar married basic.4y unknown yes no
## 583 56 retired married basic.4y no no no
## 584 49 admin. married high.school no no no
## 585 44 blue-collar married unknown unknown yes no
## 586 55 housemaid married basic.4y no yes yes
## 587 59 management married basic.4y unknown yes no
## 588 46 blue-collar married basic.9y no no yes
## 589 39 blue-collar divorced basic.6y unknown yes no
## 590 36 services married high.school no yes no
## 591 29 admin. single university.degree no no no
## 592 30 services divorced basic.9y no no yes
## 593 36 admin. married university.degree no yes no
## 594 32 services married high.school no no no
## 595 39 blue-collar married basic.9y unknown yes no
## 596 30 services married university.degree no yes no
## 597 39 blue-collar married basic.4y unknown no no
## 598 37 blue-collar married basic.9y unknown yes no
## 599 39 blue-collar married professional.course unknown yes no
## 600 46 blue-collar married basic.4y no no no
## 601 43 unemployed married basic.4y no no no
## 602 37 services married high.school no yes no
## 603 30 technician married university.degree unknown no no
## 604 38 technician married professional.course no no no
## 605 44 admin. married university.degree no no no
## 606 44 self-employed married university.degree unknown no no
## 607 30 student single high.school unknown no no
## 608 37 blue-collar married basic.4y unknown unknown unknown
## 609 43 technician married professional.course no no no
## 610 38 housemaid married basic.9y no no no
## 611 41 blue-collar married basic.4y no yes no
## 612 33 blue-collar married basic.9y no unknown unknown
## 613 32 admin. married high.school no yes no
## 614 30 services married high.school unknown no no
## 615 36 technician divorced professional.course no no no
## 616 38 blue-collar married basic.6y no unknown unknown
## 617 35 blue-collar single basic.6y no yes no
## 618 50 self-employed married university.degree no no no
## 619 38 blue-collar married basic.9y no yes no
## 620 58 admin. married basic.4y unknown no yes
## 621 33 blue-collar single basic.9y unknown unknown unknown
## 622 44 management single university.degree unknown yes yes
## 623 31 management married high.school no no no
## 624 36 services single unknown no yes no
## 625 44 blue-collar single high.school no no no
## 626 38 blue-collar divorced unknown no yes no
## 627 33 blue-collar married basic.9y no unknown unknown
## 628 39 blue-collar divorced basic.6y unknown yes yes
## 629 47 blue-collar single basic.4y unknown yes no
## 630 47 services divorced high.school no no no
## 631 35 entrepreneur single professional.course no no no
## 632 42 admin. divorced university.degree no no no
## 633 36 admin. married high.school no no no
## 634 35 technician married basic.6y no no no
## 635 36 services single unknown no yes no
## 636 56 entrepreneur married university.degree unknown yes no
## 637 26 admin. single high.school no no no
## 638 31 admin. single university.degree no yes yes
## 639 57 self-employed single high.school unknown no no
## 640 39 services married high.school no no no
## 641 50 admin. married university.degree no no no
## 642 52 blue-collar single high.school unknown unknown unknown
## 643 39 blue-collar divorced basic.9y no no no
## 644 44 technician single unknown unknown yes no
## 645 36 housemaid married basic.4y no yes no
## 646 54 management married high.school unknown yes no
## 647 27 admin. single basic.9y no yes no
## 648 31 admin. married university.degree unknown no no
## 649 28 blue-collar married basic.6y no no no
## 650 31 management single university.degree no yes no
## 651 30 management divorced high.school no no yes
## 652 52 technician married professional.course no yes no
## 653 37 technician divorced professional.course no no no
## 654 30 services married university.degree no yes no
## 655 45 blue-collar married basic.9y unknown yes yes
## 656 54 technician married university.degree no yes no
## 657 49 entrepreneur married basic.9y no yes no
## 658 44 admin. married high.school no no no
## 659 53 technician married high.school no yes no
## 660 45 blue-collar married basic.9y unknown yes no
## 661 51 admin. married high.school unknown yes no
## 662 41 blue-collar married basic.9y unknown yes no
## 663 43 technician married professional.course no yes no
## 664 31 admin. single university.degree no yes no
## 665 39 admin. single unknown no yes no
## 666 38 technician married professional.course no no no
## 667 53 admin. single university.degree unknown yes no
## 668 53 blue-collar married basic.9y unknown yes yes
## 669 24 services single high.school no no no
## 670 34 admin. single high.school no yes no
## 671 40 technician married professional.course no yes no
## 672 57 management divorced university.degree no yes no
## 673 31 blue-collar married basic.6y unknown no no
## 674 31 services married basic.6y no yes no
## 675 45 housemaid married basic.4y unknown yes no
## 676 38 admin. married university.degree no no no
## 677 47 blue-collar married professional.course unknown yes no
## 678 42 blue-collar married basic.6y no no no
## 679 35 blue-collar single unknown no yes no
## 680 40 management married university.degree no yes no
## 681 42 blue-collar married basic.6y no no no
## 682 34 technician married professional.course unknown yes no
## 683 48 admin. single university.degree no yes no
## 684 35 blue-collar married unknown no yes yes
## 685 33 blue-collar married high.school no yes no
## 686 37 technician married professional.course no yes no
## 687 43 technician married professional.course no yes no
## 688 42 admin. single unknown unknown no no
## 689 46 admin. divorced university.degree no yes no
## 690 40 blue-collar married high.school no yes no
## 691 59 entrepreneur divorced high.school unknown yes no
## 692 43 technician single university.degree no no no
## 693 44 blue-collar married basic.6y no yes yes
## 694 41 admin. married university.degree no yes no
## 695 28 unknown single basic.9y unknown yes no
## 696 48 services married high.school unknown yes no
## 697 31 admin. single high.school no yes no
## 698 27 blue-collar married basic.9y no yes no
## 699 43 technician single university.degree no yes no
## 700 47 retired married basic.4y unknown yes no
## 701 40 blue-collar divorced unknown no yes no
## 702 43 unknown married high.school unknown no no
## 703 29 technician married professional.course no yes no
## 704 36 technician married professional.course no no no
## 705 30 admin. single university.degree no no no
## 706 38 services single unknown unknown yes no
## 707 33 blue-collar married basic.9y no no no
## 708 39 retired single high.school no yes no
## 709 38 technician single professional.course no no no
## 710 37 blue-collar married basic.6y no no no
## 711 32 management married basic.6y no no no
## 712 34 technician divorced professional.course no yes no
## 713 52 technician married basic.4y unknown no no
## 714 46 blue-collar married basic.6y unknown no no
## 715 52 technician married basic.4y unknown no yes
## 716 32 technician single professional.course no no no
## 717 31 blue-collar single basic.9y no no no
## 718 46 admin. divorced basic.9y unknown no no
## 719 59 services divorced high.school no no no
## 720 38 blue-collar married unknown unknown no yes
## 721 42 blue-collar divorced basic.6y unknown yes no
## 722 40 blue-collar married basic.4y no no no
## 723 46 admin. married professional.course no no no
## 724 35 admin. single high.school no no no
## 725 28 blue-collar married basic.9y no no yes
## 726 47 services married high.school unknown yes no
## 727 35 blue-collar married basic.4y no yes no
## 728 48 retired married basic.9y no yes no
## 729 40 blue-collar married basic.6y unknown yes no
## 730 32 services single high.school no yes no
## 731 59 retired divorced basic.4y no yes no
## 732 48 entrepreneur married basic.9y unknown no no
## 733 45 blue-collar married basic.9y unknown yes no
## 734 49 blue-collar single basic.6y no yes no
## 735 51 admin. married university.degree no yes no
## 736 38 technician single university.degree no yes no
## 737 53 technician married high.school no yes no
## 738 49 blue-collar married basic.9y no yes no
## 739 31 blue-collar married basic.9y no yes yes
## 740 54 retired married basic.4y unknown yes no
## 741 29 admin. single high.school no yes no
## 742 31 blue-collar married basic.6y unknown yes no
## 743 35 admin. married high.school no yes no
## 744 38 blue-collar married basic.9y no no no
## 745 54 management married high.school unknown yes yes
## 746 48 admin. married basic.9y unknown no no
## 747 48 management divorced university.degree no yes no
## 748 32 admin. single university.degree unknown yes no
## 749 34 technician married professional.course unknown yes no
## 750 49 technician single university.degree unknown yes no
## 751 44 blue-collar married basic.9y unknown unknown unknown
## 752 42 services divorced high.school unknown no no
## 753 55 blue-collar married basic.4y unknown no no
## 754 42 services divorced high.school unknown no no
## 755 44 admin. married university.degree unknown no no
## 756 51 blue-collar married basic.9y no no no
## 757 43 blue-collar married basic.4y unknown yes no
## 758 52 technician married high.school no yes no
## 759 45 blue-collar single basic.6y no yes no
## 760 41 services divorced high.school no yes yes
## 761 35 technician divorced unknown no yes yes
## 762 41 services divorced high.school no no yes
## 763 46 management married basic.9y no no no
## 764 36 housemaid divorced basic.9y unknown no no
## 765 29 technician married professional.course no no no
## 766 47 services married unknown no no no
## 767 43 blue-collar married basic.4y unknown yes no
## 768 38 blue-collar single basic.9y unknown no no
## 769 44 blue-collar married basic.4y no yes no
## 770 29 services married high.school no no no
## 771 46 blue-collar married basic.9y unknown no no
## 772 31 blue-collar married basic.4y no yes no
## 773 47 services married unknown no no no
## 774 44 admin. married university.degree no yes no
## 775 31 blue-collar married basic.4y no yes no
## 776 38 unemployed divorced professional.course no no no
## 777 33 admin. married university.degree no no no
## 778 53 blue-collar married basic.9y no yes no
## 779 33 self-employed married basic.9y no yes no
## 780 37 admin. divorced university.degree no yes no
## 781 55 blue-collar married basic.9y no yes no
## 782 41 admin. single basic.6y no unknown unknown
## 783 46 blue-collar married basic.6y unknown yes no
## 784 32 entrepreneur divorced university.degree no no no
## 785 48 blue-collar married high.school no no no
## 786 34 entrepreneur married basic.4y no yes no
## 787 45 entrepreneur single university.degree no unknown unknown
## 788 48 management divorced university.degree no no no
## 789 34 blue-collar married basic.6y no yes no
## 790 46 admin. divorced university.degree unknown no no
## 791 34 blue-collar married basic.6y no yes no
## 792 51 unemployed married professional.course unknown no no
## 793 37 admin. married university.degree no no no
## 794 54 housemaid divorced basic.4y no no no
## 795 45 services married high.school unknown yes no
## 796 39 services single high.school no unknown unknown
## 797 39 technician single basic.6y unknown no no
## 798 41 services single high.school no yes yes
## 799 59 housemaid married basic.6y no yes no
## 800 30 services married unknown no no no
## 801 34 entrepreneur married basic.4y no no no
## 802 34 technician married high.school no no no
## 803 38 blue-collar divorced unknown no no no
## 804 31 blue-collar married basic.6y no yes no
## 805 47 admin. married university.degree no unknown unknown
## 806 57 self-employed single high.school unknown no no
## 807 44 blue-collar married basic.9y unknown no no
## 808 45 services married high.school unknown yes no
## 809 44 services married high.school no yes no
## 810 28 admin. single university.degree no no no
## 811 51 entrepreneur married university.degree no no no
## 812 44 blue-collar married basic.4y no yes no
## 813 35 admin. single basic.4y unknown no no
## 814 44 technician married professional.course unknown no no
## 815 43 technician married professional.course no no no
## 816 40 management married high.school no no no
## 817 50 self-employed married basic.4y unknown unknown unknown
## 818 37 blue-collar single basic.9y unknown no no
## 819 58 admin. married high.school no no yes
## 820 49 technician married high.school no yes no
## 821 32 blue-collar married basic.4y unknown no no
## 822 30 services married high.school no no yes
## 823 28 admin. married high.school no yes no
## 824 40 blue-collar married basic.4y unknown unknown unknown
## 825 44 management married university.degree no no no
## 826 30 services married professional.course unknown yes no
## 827 30 services married professional.course unknown no no
## 828 28 technician single professional.course no yes no
## 829 45 blue-collar single high.school unknown no yes
## 830 35 blue-collar married professional.course no no no
## 831 57 retired divorced high.school no no no
## 832 35 admin. divorced high.school no yes no
## 833 41 technician single university.degree unknown no no
## 834 42 services married high.school unknown no no
## 835 42 blue-collar married basic.4y unknown no no
## 836 48 management married university.degree no yes no
## 837 39 blue-collar married basic.6y no no no
## 838 47 retired married basic.4y unknown unknown unknown
## 839 34 technician single professional.course no unknown unknown
## 840 44 services married basic.6y unknown no no
## 841 49 services married high.school no no no
## 842 35 admin. single basic.4y unknown yes no
## 843 44 admin. married high.school no no no
## 844 37 admin. married high.school no yes no
## 845 47 management married university.degree no no no
## 846 40 blue-collar married basic.9y unknown yes no
## 847 32 management divorced basic.4y unknown no no
## 848 42 blue-collar married basic.4y unknown unknown unknown
## 849 42 self-employed married university.degree no yes no
## 850 39 technician married professional.course no unknown unknown
## 851 32 housemaid married basic.4y no no no
## 852 30 services married unknown no yes no
## 853 42 blue-collar married basic.4y unknown yes no
## 854 35 blue-collar married basic.6y no yes yes
## 855 56 retired married basic.4y no no no
## 856 40 blue-collar married basic.9y unknown no no
## 857 26 admin. single university.degree no yes no
## 858 51 blue-collar married basic.4y no no no
## 859 31 technician married professional.course no no no
## 860 60 services married unknown no no no
## 861 26 technician single basic.9y no yes no
## 862 54 blue-collar married basic.4y no yes no
## 863 34 blue-collar single high.school unknown no yes
## 864 33 admin. divorced high.school no yes no
## 865 35 blue-collar single high.school no yes no
## 866 42 management married basic.6y no yes yes
## 867 53 retired married basic.4y unknown yes no
## 868 51 technician married professional.course no yes no
## 869 59 retired divorced basic.4y no yes no
## 870 51 admin. married basic.6y unknown no no
## 871 47 technician divorced professional.course unknown no no
## 872 40 technician married professional.course no yes no
## 873 45 technician married professional.course no yes no
## 874 42 services married high.school no no no
## 875 51 services divorced basic.6y unknown no yes
## 876 39 entrepreneur married high.school no yes no
## 877 36 blue-collar married unknown unknown yes yes
## 878 34 management married university.degree no yes no
## 879 41 blue-collar married basic.4y no yes no
## 880 34 management married university.degree no yes yes
## 881 36 blue-collar married basic.9y no no no
## 882 33 technician married professional.course no no no
## 883 46 admin. single university.degree no unknown unknown
## 884 44 blue-collar married basic.4y no yes no
## 885 30 blue-collar married basic.6y no no no
## 886 34 management married university.degree no no no
## 887 58 self-employed married professional.course no yes no
## 888 41 entrepreneur married university.degree no no no
## 889 53 blue-collar married basic.9y unknown yes no
## 890 35 admin. married university.degree no no no
## 891 34 blue-collar single basic.9y no no no
## 892 36 blue-collar single unknown no yes no
## 893 31 blue-collar married basic.9y no no no
## 894 59 retired married basic.4y unknown no no
## 895 49 technician married professional.course unknown unknown unknown
## 896 37 management married high.school unknown no no
## 897 50 management married university.degree no yes no
## 898 34 services married high.school no no no
## 899 32 admin. married university.degree unknown no no
## 900 45 blue-collar married basic.9y unknown yes no
## 901 39 management married university.degree no yes no
## 902 43 unknown married high.school unknown no no
## 903 43 blue-collar married basic.4y unknown no no
## 904 52 blue-collar married basic.9y unknown no no
## 905 54 blue-collar married basic.9y no yes no
## 906 54 blue-collar married basic.9y no yes no
## 907 31 services single high.school no yes no
## 908 35 blue-collar married basic.6y no no no
## 909 28 admin. married high.school no yes no
## 910 56 retired married basic.9y no yes yes
## 911 45 blue-collar married basic.9y unknown no no
## 912 38 entrepreneur married basic.9y no no no
## 913 42 technician married professional.course no yes no
## 914 43 admin. divorced high.school no yes no
## 915 50 blue-collar married basic.9y unknown no no
## 916 41 admin. married high.school no yes yes
## 917 33 admin. married university.degree no yes no
## 918 46 blue-collar married professional.course no no no
## 919 30 admin. single high.school no no no
## 920 28 services single high.school no no no
## 921 43 blue-collar married basic.4y no no no
## 922 25 services married professional.course unknown no no
## 923 39 admin. single unknown no no no
## 924 42 retired married basic.9y unknown yes no
## 925 43 admin. married high.school no yes no
## 926 33 admin. single university.degree no no no
## 927 52 unknown married basic.4y no no no
## 928 53 blue-collar married basic.4y unknown no no
## 929 41 housemaid married basic.6y no no no
## 930 48 blue-collar married professional.course no yes no
## 931 40 admin. single high.school no yes no
## 932 40 admin. single high.school no no yes
## 933 53 blue-collar married high.school unknown no yes
## 934 55 admin. married high.school no no no
## 935 39 technician married professional.course no no no
## 936 35 blue-collar married basic.9y no no yes
## 937 50 housemaid divorced basic.4y unknown no no
## 938 38 services divorced basic.6y no no no
## 939 41 unemployed married basic.9y unknown no no
## 940 44 technician married professional.course unknown no no
## 941 39 admin. married basic.6y unknown no no
## 942 44 unknown married basic.6y no no no
## 943 51 technician married professional.course no no yes
## 944 31 technician married professional.course no no no
## 945 40 blue-collar married high.school no yes no
## 946 38 self-employed single university.degree no no no
## 947 48 blue-collar married basic.6y no no yes
## 948 32 admin. married high.school no no no
## 949 49 housemaid married basic.4y unknown no no
## 950 47 blue-collar married basic.6y no yes yes
## 951 28 blue-collar married basic.6y unknown no no
## 952 38 admin. single university.degree unknown yes no
## 953 28 blue-collar married basic.6y unknown no no
## 954 51 services married unknown no yes no
## 955 38 admin. single university.degree unknown yes yes
## 956 44 technician divorced unknown no yes no
## 957 30 technician married professional.course no no no
## 958 34 blue-collar single basic.4y no no no
## 959 36 blue-collar married basic.6y no yes no
## 960 41 management married university.degree unknown no no
## 961 40 blue-collar married basic.6y unknown no no
## 962 35 unknown married basic.9y no yes no
## 963 32 management single university.degree no no no
## 964 34 admin. married university.degree unknown no no
## 965 35 blue-collar married basic.9y no yes no
## 966 28 admin. single professional.course no no no
## 967 48 unemployed married basic.4y no yes yes
## 968 31 management married university.degree no yes yes
## 969 59 retired married unknown no yes no
## 970 47 services married high.school unknown yes no
## 971 40 technician married university.degree unknown no no
## 972 30 housemaid married high.school unknown no no
## 973 40 blue-collar married basic.9y no no no
## 974 30 housemaid married high.school unknown no no
## 975 50 entrepreneur married basic.9y no yes no
## 976 36 blue-collar married basic.6y unknown no no
## 977 29 unemployed single university.degree no no no
## 978 43 blue-collar married basic.9y no no no
## 979 35 services married high.school no no no
## 980 35 unknown single basic.4y unknown no no
## 981 48 blue-collar divorced basic.4y no no no
## 982 49 technician married professional.course no no no
## 983 44 blue-collar married basic.6y unknown no yes
## 984 55 admin. married high.school no no no
## 985 41 admin. married basic.4y unknown no yes
## 986 27 student single high.school unknown no no
## 987 41 blue-collar married basic.9y no yes no
## 988 45 services married basic.9y no no no
## 989 36 blue-collar married high.school no no no
## 990 54 technician married basic.9y no no no
## 991 48 admin. married high.school unknown no yes
## 992 33 management married university.degree no no yes
## 993 43 blue-collar married basic.4y unknown no no
## 994 44 technician single high.school no no no
## 995 50 technician married professional.course no no no
## 996 32 student single university.degree no yes no
## 997 43 blue-collar married basic.4y unknown no no
## 998 40 admin. divorced professional.course no yes no
## 999 24 services single high.school no yes yes
## 1000 32 technician married university.degree no no yes
## 1001 43 blue-collar married basic.4y unknown yes yes
## 1002 33 admin. single high.school unknown yes no
## 1003 43 blue-collar married basic.4y unknown yes no
## 1004 52 housemaid married basic.4y no no no
## 1005 49 blue-collar married basic.4y unknown yes no
## 1006 36 services married high.school no yes no
## 1007 39 blue-collar married basic.6y no no no
## 1008 36 admin. divorced university.degree no no no
## 1009 39 blue-collar married basic.6y no no no
## 1010 31 admin. married high.school no no no
## 1011 35 unknown married basic.9y no no no
## 1012 55 retired married university.degree unknown no no
## 1013 57 retired married high.school unknown yes no
## 1014 38 entrepreneur married basic.6y no yes no
## 1015 60 services married high.school no yes no
## 1016 24 student single high.school no yes no
## 1017 38 entrepreneur married basic.6y no no no
## 1018 44 technician divorced high.school no no no
## 1019 42 blue-collar married basic.9y unknown yes no
## 1020 51 blue-collar married basic.4y unknown no no
## 1021 28 admin. single university.degree no no no
## 1022 27 housemaid married basic.9y no yes no
## 1023 30 services single high.school no yes no
## 1024 60 entrepreneur married basic.4y no yes no
## 1025 28 services single unknown no yes no
## 1026 45 blue-collar married basic.4y unknown no yes
## 1027 37 unemployed married professional.course no no yes
## 1028 36 services married basic.6y no yes no
## 1029 49 blue-collar married basic.4y no yes no
## 1030 35 services married professional.course unknown yes no
## 1031 34 admin. single high.school no no no
## 1032 31 blue-collar married basic.9y no no no
## 1033 42 admin. married university.degree unknown yes no
## 1034 39 blue-collar married basic.6y no yes no
## 1035 33 services married university.degree no yes no
## 1036 38 unemployed married high.school no no yes
## 1037 30 admin. divorced university.degree unknown no no
## 1038 31 blue-collar divorced professional.course no yes no
## 1039 39 management married university.degree no no no
## 1040 37 blue-collar married unknown unknown yes no
## 1041 48 blue-collar married basic.4y unknown no no
## 1042 32 services married high.school no no no
## 1043 48 blue-collar married basic.6y no yes no
## 1044 37 technician single university.degree no yes no
## 1045 26 services divorced basic.6y no no no
## 1046 33 management married high.school unknown no no
## 1047 54 admin. married university.degree no yes no
## 1048 45 admin. married university.degree no no no
## 1049 37 blue-collar married basic.4y no no yes
## 1050 35 blue-collar married basic.9y unknown no no
## 1051 33 blue-collar divorced basic.6y unknown yes no
## 1052 49 technician married professional.course no no no
## 1053 43 technician married university.degree no yes no
## 1054 43 entrepreneur married university.degree no no no
## 1055 47 blue-collar married basic.9y no yes no
## 1056 30 services divorced high.school no no no
## 1057 51 admin. divorced university.degree no yes no
## 1058 39 unemployed married university.degree no yes no
## 1059 43 blue-collar married basic.6y unknown no no
## 1060 30 blue-collar married basic.9y unknown yes no
## 1061 37 blue-collar married professional.course no no no
## 1062 42 blue-collar married basic.6y no no no
## 1063 37 blue-collar married professional.course no yes yes
## 1064 37 admin. divorced university.degree no yes no
## 1065 37 blue-collar single basic.6y unknown yes no
## 1066 36 management single basic.6y no no no
## 1067 48 blue-collar married basic.9y no yes yes
## 1068 43 services married high.school no no no
## 1069 28 blue-collar married basic.6y no no no
## 1070 30 admin. divorced high.school no yes no
## 1071 38 entrepreneur married university.degree no no no
## 1072 36 blue-collar married basic.9y no yes no
## 1073 50 unemployed married professional.course no no no
## 1074 54 entrepreneur married basic.4y unknown no yes
## 1075 20 entrepreneur single high.school no no no
## 1076 24 blue-collar married basic.9y unknown yes no
## 1077 28 management single unknown no yes no
## 1078 55 housemaid married basic.4y no yes no
## 1079 25 blue-collar married high.school no no no
## 1080 41 admin. married basic.9y unknown yes no
## 1081 39 blue-collar married basic.6y no yes no
## 1082 27 blue-collar married basic.9y no yes no
## 1083 27 blue-collar married basic.9y no no no
## 1084 34 blue-collar married basic.6y unknown yes yes
## 1085 25 technician single professional.course no no no
## 1086 48 management married university.degree unknown yes no
## 1087 45 management married university.degree no yes yes
## 1088 28 blue-collar married basic.6y unknown yes no
## 1089 30 technician single basic.6y unknown yes no
## 1090 43 blue-collar married basic.4y no no no
## 1091 29 services single basic.9y no no no
## 1092 43 admin. married high.school no yes no
## 1093 36 admin. married high.school no yes no
## 1094 48 admin. married high.school unknown no no
## 1095 38 blue-collar single basic.9y unknown no no
## 1096 35 technician married professional.course no no yes
## 1097 42 services married high.school unknown no yes
## 1098 56 blue-collar married basic.4y unknown no no
## 1099 39 services single high.school unknown no no
## 1100 36 blue-collar married basic.6y unknown no no
## 1101 32 admin. married university.degree unknown no yes
## 1102 29 admin. single high.school no no no
## 1103 34 blue-collar married basic.9y no no no
## 1104 36 self-employed single basic.6y no no no
## 1105 35 blue-collar married basic.6y no no no
## 1106 35 blue-collar married basic.6y no no no
## 1107 44 blue-collar married basic.4y unknown no no
## 1108 36 technician divorced professional.course no yes no
## 1109 47 admin. married university.degree no no no
## 1110 59 technician married professional.course unknown no no
## 1111 29 blue-collar single high.school unknown unknown unknown
## 1112 30 services single high.school no no no
## 1113 38 blue-collar married basic.9y unknown no no
## 1114 45 management single university.degree no no no
## 1115 28 self-employed single university.degree no no no
## 1116 38 entrepreneur married basic.6y no yes yes
## 1117 31 technician divorced professional.course no yes yes
## 1118 54 housemaid married basic.9y no yes no
## 1119 43 unemployed married basic.9y no yes no
## 1120 49 admin. married high.school no no yes
## 1121 32 self-employed divorced professional.course no no no
## 1122 50 blue-collar single basic.9y unknown yes yes
## 1123 51 blue-collar divorced basic.9y no no no
## 1124 44 self-employed married professional.course no no no
## 1125 29 blue-collar married high.school no no no
## 1126 35 blue-collar married basic.6y unknown yes no
## 1127 40 services single professional.course no no no
## 1128 29 services divorced high.school no no no
## 1129 47 blue-collar married basic.6y no no no
## 1130 38 technician married university.degree unknown no no
## 1131 48 technician married professional.course no yes no
## 1132 53 retired married high.school unknown yes no
## 1133 53 management married university.degree no yes no
## 1134 35 services married basic.9y no yes yes
## 1135 46 entrepreneur married basic.4y no no no
## 1136 38 admin. married basic.9y unknown yes no
## 1137 28 self-employed single university.degree no yes no
## 1138 50 technician married professional.course no yes no
## 1139 32 management single university.degree no no no
## 1140 31 blue-collar divorced basic.4y no yes no
## 1141 39 blue-collar married basic.9y unknown no no
## 1142 41 blue-collar married basic.9y no no yes
## 1143 31 admin. married high.school no yes yes
## 1144 54 blue-collar married basic.9y unknown no yes
## 1145 34 blue-collar married basic.6y unknown no yes
## 1146 51 services married high.school unknown yes no
## 1147 45 blue-collar single basic.9y no no no
## 1148 32 admin. divorced high.school no no yes
## 1149 28 student married university.degree no no yes
## 1150 41 self-employed single university.degree no no no
## 1151 57 services divorced high.school unknown no yes
## 1152 44 entrepreneur married high.school no yes no
## 1153 29 blue-collar single high.school unknown yes no
## 1154 38 admin. single university.degree no no no
## 1155 34 blue-collar married basic.4y no yes no
## 1156 36 technician single university.degree no yes no
## 1157 39 services divorced high.school no yes no
## 1158 30 blue-collar married basic.9y no yes yes
## 1159 35 services married basic.9y no no no
## 1160 60 entrepreneur married basic.4y no no no
## 1161 35 blue-collar married basic.9y no yes no
## 1162 57 blue-collar divorced professional.course no no no
## 1163 44 technician divorced unknown no no yes
## 1164 46 technician divorced basic.9y no yes no
## 1165 50 technician married professional.course unknown yes no
## 1166 45 management married university.degree no yes no
## 1167 35 admin. single basic.6y no yes no
## 1168 38 blue-collar married basic.6y no no no
## 1169 30 services divorced high.school no yes no
## 1170 25 services divorced high.school no no no
## 1171 37 technician single university.degree no yes no
## 1172 42 blue-collar married basic.4y unknown no no
## 1173 37 blue-collar married professional.course no yes no
## 1174 43 services married high.school no no no
## 1175 32 technician married professional.course no yes yes
## 1176 41 technician married professional.course no no no
## 1177 37 blue-collar married basic.6y unknown no no
## 1178 36 services married high.school no no yes
## 1179 38 blue-collar married basic.6y unknown no no
## 1180 33 admin. married high.school no yes yes
## 1181 58 services married basic.4y no no no
## 1182 44 blue-collar single basic.9y unknown no no
## 1183 36 blue-collar married basic.9y unknown no no
## 1184 33 admin. married high.school no yes no
## 1185 30 technician married professional.course no no no
## 1186 44 blue-collar married basic.9y unknown no no
## 1187 32 admin. married high.school no yes yes
## 1188 38 admin. married basic.9y unknown no no
## 1189 41 blue-collar married professional.course unknown yes no
## 1190 40 services married basic.9y unknown no no
## 1191 28 admin. single university.degree no yes no
## 1192 36 services married high.school no yes no
## 1193 38 management married university.degree unknown no no
## 1194 36 services married high.school no yes no
## 1195 31 services married basic.9y no yes no
## 1196 47 technician married professional.course no yes no
## 1197 29 blue-collar single high.school no yes yes
## 1198 35 self-employed married university.degree no no yes
## 1199 33 services single basic.6y unknown no no
## 1200 41 management divorced university.degree unknown yes yes
## 1201 54 admin. married university.degree no yes no
## 1202 31 admin. single university.degree no no yes
## 1203 55 technician married university.degree no yes no
## 1204 41 services married high.school no no yes
## 1205 39 services married high.school no yes no
## 1206 34 blue-collar divorced professional.course no no yes
## 1207 39 services divorced high.school no yes no
## 1208 37 services married high.school no no no
## 1209 45 blue-collar married high.school no yes no
## 1210 49 admin. married university.degree no yes yes
## 1211 43 blue-collar married basic.4y unknown no no
## 1212 40 management married high.school no no no
## 1213 42 admin. married university.degree no yes no
## 1214 47 services single high.school no no no
## 1215 56 entrepreneur married university.degree no yes no
## 1216 34 blue-collar married basic.9y no no no
## 1217 29 admin. divorced university.degree no no no
## 1218 53 entrepreneur married university.degree no yes no
## 1219 51 self-employed married university.degree unknown no no
## 1220 20 entrepreneur single high.school no no no
## 1221 48 technician married professional.course no yes no
## 1222 29 entrepreneur married university.degree no yes no
## 1223 31 blue-collar single professional.course no no no
## 1224 29 blue-collar single basic.6y no no no
## 1225 40 blue-collar single basic.6y unknown no no
## 1226 33 management married university.degree no no no
## 1227 33 services single professional.course no no no
## 1228 34 management divorced basic.6y unknown yes no
## 1229 35 admin. married university.degree no yes no
## 1230 30 blue-collar married basic.6y no no no
## 1231 42 admin. single university.degree no no no
## 1232 38 admin. married high.school no yes no
## 1233 30 management married university.degree no yes no
## 1234 52 housemaid married university.degree no yes no
## 1235 38 admin. married high.school no yes no
## 1236 54 technician married basic.9y no no no
## 1237 29 admin. single university.degree no yes no
## 1238 28 admin. married high.school no no no
## 1239 30 admin. married high.school no yes no
## 1240 44 technician married professional.course unknown no yes
## 1241 37 blue-collar married basic.4y no no no
## 1242 25 blue-collar married professional.course unknown no no
## 1243 49 blue-collar married basic.4y unknown no no
## 1244 60 technician married university.degree unknown yes no
## 1245 55 technician married basic.9y unknown unknown unknown
## 1246 41 blue-collar married basic.9y unknown yes no
## 1247 39 management married high.school no no no
## 1248 38 services married high.school no no no
## 1249 32 technician married university.degree no yes no
## 1250 53 housemaid divorced basic.6y unknown unknown unknown
## 1251 37 admin. married high.school no unknown unknown
## 1252 34 self-employed married professional.course no unknown unknown
## 1253 31 admin. married high.school no yes yes
## 1254 39 unemployed married high.school no yes no
## 1255 39 unemployed married high.school no yes no
## 1256 37 admin. married high.school no yes no
## 1257 30 blue-collar married basic.4y no no no
## 1258 32 blue-collar married professional.course no no no
## 1259 37 technician married basic.9y no no no
## 1260 27 blue-collar married university.degree no no yes
## 1261 33 blue-collar single basic.9y no yes no
## 1262 47 blue-collar single basic.4y no no no
## 1263 40 blue-collar married basic.9y unknown no no
## 1264 38 blue-collar married basic.4y unknown yes yes
## 1265 54 admin. married university.degree no no no
## 1266 51 services married high.school no yes no
## 1267 41 blue-collar single basic.9y no yes no
## 1268 51 blue-collar married high.school no no no
## 1269 55 services married high.school no yes no
## 1270 39 admin. single high.school no yes no
## 1271 37 self-employed married basic.9y no yes yes
## 1272 39 blue-collar married basic.9y no yes no
## 1273 33 management married university.degree no no no
## 1274 59 management married university.degree no no no
## 1275 55 technician married basic.9y unknown yes no
## 1276 53 blue-collar married basic.9y unknown yes no
## 1277 36 services married basic.6y no no no
## 1278 40 services married high.school no no no
## 1279 37 technician single professional.course no no no
## 1280 56 housemaid divorced high.school no no no
## 1281 32 admin. married high.school no yes no
## 1282 30 blue-collar married basic.9y no yes no
## 1283 45 management married basic.4y unknown yes no
## 1284 32 student single university.degree no no no
## 1285 39 unemployed single basic.9y unknown yes no
## 1286 56 services married basic.4y unknown yes yes
## 1287 20 entrepreneur single high.school no no no
## 1288 46 admin. married university.degree no yes yes
## 1289 28 technician single university.degree unknown no no
## 1290 41 admin. single university.degree no no no
## 1291 33 admin. divorced basic.9y no no no
## 1292 43 admin. married university.degree unknown yes no
## 1293 43 admin. married university.degree unknown no no
## 1294 47 unemployed married high.school unknown yes no
## 1295 24 technician single professional.course no no no
## 1296 31 blue-collar married basic.4y no no no
## 1297 35 blue-collar married basic.6y no unknown unknown
## 1298 58 blue-collar married basic.4y unknown no no
## 1299 35 blue-collar married basic.9y no no no
## 1300 25 admin. married high.school no no no
## 1301 31 blue-collar married basic.4y no no no
## 1302 39 admin. married basic.9y no no no
## 1303 39 blue-collar married basic.6y unknown yes yes
## 1304 37 blue-collar married basic.9y no yes yes
## 1305 36 unemployed divorced professional.course unknown yes no
## 1306 30 blue-collar married basic.9y no yes yes
## 1307 60 retired married high.school no no no
## 1308 37 admin. divorced university.degree no no no
## 1309 28 services single high.school no yes yes
## 1310 45 admin. married basic.9y unknown yes no
## 1311 31 entrepreneur single basic.9y no no no
## 1312 49 unemployed single professional.course unknown no no
## 1313 46 unknown married basic.4y unknown no no
## 1314 36 services divorced university.degree no no no
## 1315 33 technician divorced professional.course no yes no
## 1316 27 services single high.school unknown no no
## 1317 60 retired married university.degree unknown no no
## 1318 60 retired married university.degree unknown yes no
## 1319 27 services single high.school unknown no no
## 1320 39 blue-collar married high.school no yes no
## 1321 39 services married high.school no yes no
## 1322 35 unknown single basic.4y unknown no no
## 1323 56 admin. single high.school no no no
## 1324 39 admin. married university.degree no yes no
## 1325 35 entrepreneur married basic.9y no no no
## 1326 35 technician divorced high.school no no no
## 1327 29 management single university.degree no yes no
## 1328 26 admin. married high.school no yes yes
## 1329 31 technician married professional.course no no no
## 1330 39 blue-collar divorced basic.9y no yes no
## 1331 49 blue-collar married basic.6y unknown yes no
## 1332 31 admin. married high.school no no no
## 1333 31 admin. married high.school unknown no no
## 1334 49 blue-collar married basic.4y no no no
## 1335 49 blue-collar married basic.4y no no no
## 1336 31 entrepreneur married basic.9y unknown no no
## 1337 36 management married basic.9y no no no
## 1338 52 management married professional.course no no no
## 1339 37 blue-collar single unknown unknown no no
## 1340 40 blue-collar divorced basic.9y no no no
## 1341 34 technician single professional.course unknown no no
## 1342 39 management single university.degree no no no
## 1343 39 management single university.degree no no no
## 1344 58 retired divorced university.degree no yes no
## 1345 56 services married high.school unknown no no
## 1346 29 blue-collar single basic.9y no no no
## 1347 39 admin. married high.school no no no
## 1348 31 technician married professional.course no no no
## 1349 60 management married university.degree unknown no no
## 1350 39 blue-collar married basic.6y no yes no
## 1351 49 admin. divorced high.school no yes no
## 1352 45 unemployed married high.school unknown no no
## 1353 32 blue-collar married high.school unknown yes no
## 1354 41 technician married high.school no no no
## 1355 32 services married high.school no no no
## 1356 46 services married professional.course no no no
## 1357 28 services single basic.9y unknown no no
## 1358 35 admin. married professional.course no yes yes
## 1359 24 services single high.school no yes no
## 1360 59 admin. married university.degree no no yes
## 1361 33 technician married professional.course no no no
## 1362 36 unemployed single basic.4y unknown no no
## 1363 24 services single high.school no no no
## 1364 30 blue-collar single basic.9y no yes no
## 1365 49 admin. married university.degree unknown no no
## 1366 34 admin. married university.degree no yes no
## 1367 25 technician single professional.course no yes yes
## 1368 43 entrepreneur married high.school unknown yes no
## 1369 36 unemployed single basic.4y unknown no no
## 1370 36 unemployed single basic.4y unknown no no
## 1371 37 technician married professional.course unknown yes no
## 1372 36 self-employed married university.degree no no no
## 1373 33 blue-collar single high.school no no no
## 1374 42 services married high.school no no no
## 1375 37 admin. married high.school no yes yes
## 1376 35 admin. married high.school no no no
## 1377 50 admin. married high.school unknown yes yes
## 1378 48 admin. married high.school no yes yes
## 1379 39 technician divorced professional.course no yes no
## 1380 33 management single university.degree no no no
## 1381 29 admin. married high.school no no no
## 1382 33 admin. married high.school no yes no
## 1383 41 admin. single university.degree no yes no
## 1384 46 blue-collar married basic.4y no yes no
## 1385 27 services single high.school unknown no no
## 1386 37 housemaid married high.school unknown no yes
## 1387 24 services single high.school no no yes
## 1388 30 blue-collar married basic.6y unknown yes no
## 1389 36 entrepreneur married university.degree no no yes
## 1390 40 housemaid married basic.4y no yes yes
## 1391 49 entrepreneur married high.school no no no
## 1392 25 admin. single high.school no yes no
## 1393 34 technician married professional.course no yes yes
## 1394 39 admin. married basic.9y no yes no
## 1395 34 technician married professional.course no no yes
## 1396 36 technician married professional.course no no no
## 1397 60 technician divorced professional.course unknown yes no
## 1398 40 housemaid divorced high.school no no no
## 1399 56 blue-collar married basic.6y unknown no no
## 1400 36 technician married professional.course no yes no
## 1401 33 blue-collar single basic.9y unknown yes yes
## 1402 36 technician married professional.course no no yes
## 1403 47 blue-collar married basic.4y no no no
## 1404 47 blue-collar married basic.4y no yes no
## 1405 30 blue-collar married basic.9y no yes no
## 1406 37 housemaid married basic.4y unknown yes yes
## 1407 58 blue-collar married basic.9y no no no
## 1408 34 blue-collar married basic.9y unknown yes no
## 1409 43 blue-collar married basic.4y unknown no no
## 1410 30 technician married professional.course no yes no
## 1411 52 admin. married university.degree no no no
## 1412 32 admin. single university.degree no yes yes
## 1413 53 self-employed married university.degree no no no
## 1414 51 technician married professional.course no no no
## 1415 43 admin. married high.school no yes no
## 1416 34 admin. married high.school no yes yes
## 1417 41 management married unknown no yes no
## 1418 34 blue-collar married basic.9y unknown yes no
## 1419 59 admin. married university.degree no no no
## 1420 39 technician divorced professional.course no no no
## 1421 52 management married high.school unknown yes no
## 1422 30 technician married university.degree no no no
## 1423 49 services married high.school no yes no
## 1424 41 technician married university.degree no yes no
## 1425 27 services single high.school no yes no
## 1426 32 admin. single university.degree no yes no
## 1427 27 admin. single high.school no yes no
## 1428 29 management single university.degree no no no
## 1429 53 admin. married university.degree unknown yes no
## 1430 30 blue-collar single basic.9y no yes no
## 1431 29 management single university.degree no yes no
## 1432 32 technician single university.degree no no no
## 1433 55 admin. divorced university.degree no yes no
## 1434 39 admin. married university.degree no yes no
## 1435 26 admin. married university.degree no yes yes
## 1436 52 self-employed married university.degree no no no
## 1437 28 admin. single university.degree no yes no
## 1438 60 management married university.degree unknown no no
## 1439 45 blue-collar married basic.4y unknown yes yes
## 1440 32 admin. single university.degree no yes yes
## 1441 50 unemployed married basic.9y no yes no
## 1442 47 management divorced basic.4y no no no
## 1443 40 technician married university.degree no no no
## 1444 52 blue-collar married basic.9y unknown yes no
## 1445 43 management married unknown no no no
## 1446 40 blue-collar married basic.6y unknown yes no
## 1447 43 blue-collar single basic.9y no yes no
## 1448 37 services married high.school no yes no
## 1449 32 admin. single university.degree no no no
## 1450 35 admin. married high.school no yes no
## 1451 56 admin. married university.degree no no no
## 1452 56 blue-collar married basic.4y unknown no no
## 1453 37 entrepreneur single university.degree no no no
## 1454 43 technician single professional.course no no no
## 1455 41 housemaid married high.school no yes no
## 1456 55 unemployed single basic.4y unknown unknown unknown
## 1457 43 technician single professional.course no no no
## 1458 29 unknown married university.degree no unknown unknown
## 1459 31 services married high.school no yes no
## 1460 39 admin. single university.degree no no no
## 1461 38 blue-collar single basic.9y unknown yes no
## 1462 56 admin. married high.school no yes no
## 1463 36 entrepreneur married unknown unknown yes no
## 1464 54 management married basic.4y unknown no no
## 1465 34 admin. married university.degree no yes no
## 1466 28 services single basic.9y unknown yes no
## 1467 34 blue-collar married basic.4y no yes no
## 1468 45 blue-collar married basic.9y no yes no
## 1469 59 admin. married university.degree no yes no
## 1470 25 blue-collar married basic.9y no yes no
## 1471 33 admin. divorced university.degree no no yes
## 1472 27 admin. married university.degree no yes no
## 1473 33 admin. divorced university.degree no no no
## 1474 56 blue-collar married basic.4y unknown yes no
## 1475 25 admin. married high.school no yes no
## 1476 30 housemaid married high.school unknown yes no
## 1477 38 blue-collar divorced basic.9y no no yes
## 1478 37 self-employed single university.degree unknown yes no
## 1479 58 entrepreneur married university.degree unknown no no
## 1480 28 blue-collar married basic.6y unknown no no
## 1481 42 blue-collar married basic.9y unknown no no
## 1482 36 technician single professional.course unknown no no
## 1483 52 management married professional.course no unknown unknown
## 1484 33 technician single high.school no no yes
## 1485 33 management single university.degree no no no
## 1486 29 blue-collar single high.school unknown no no
## 1487 50 management single university.degree no yes no
## 1488 38 management married university.degree no no no
## 1489 33 services married high.school no no no
## 1490 42 admin. married university.degree no no no
## 1491 28 blue-collar married basic.9y unknown yes no
## 1492 50 retired married basic.4y unknown yes no
## 1493 29 admin. single basic.9y unknown no no
## 1494 30 technician married professional.course no no yes
## 1495 46 blue-collar married basic.9y no yes yes
## 1496 26 admin. single high.school unknown yes no
## 1497 34 admin. single basic.9y no no no
## 1498 46 self-employed married basic.9y unknown yes no
## 1499 50 housemaid divorced high.school no no no
## 1500 31 technician single basic.9y unknown no no
## 1501 48 blue-collar married professional.course no no no
## 1502 45 admin. divorced basic.9y unknown no no
## 1503 50 services married professional.course unknown yes no
## 1504 44 unknown single basic.9y unknown unknown unknown
## 1505 44 services married high.school no no no
## 1506 37 housemaid single basic.9y unknown yes yes
## 1507 34 admin. single high.school no no no
## 1508 40 housemaid single university.degree no yes no
## 1509 39 services married high.school unknown no yes
## 1510 29 admin. married high.school no yes no
## 1511 34 blue-collar married basic.6y unknown yes yes
## 1512 25 blue-collar married basic.9y no no no
## 1513 29 services married basic.9y no no no
## 1514 44 technician single professional.course no no no
## 1515 33 admin. single university.degree no yes no
## 1516 33 blue-collar married basic.4y no yes no
## 1517 40 blue-collar married high.school no no no
## 1518 59 retired married basic.4y unknown no no
## 1519 38 technician single professional.course no no no
## 1520 41 blue-collar married basic.6y unknown no no
## 1521 33 services married high.school no yes no
## 1522 36 admin. married high.school no yes no
## 1523 48 admin. married basic.9y no no yes
## 1524 44 services divorced high.school unknown yes no
## 1525 50 blue-collar divorced basic.9y no no no
## 1526 35 self-employed married professional.course no no no
## 1527 24 blue-collar married basic.9y no yes yes
## 1528 32 management married high.school no yes no
## 1529 56 services divorced high.school unknown no no
## 1530 50 technician married university.degree no yes no
## 1531 38 blue-collar married high.school no no no
## 1532 25 self-employed single university.degree no unknown unknown
## 1533 28 services single high.school no unknown unknown
## 1534 41 blue-collar married basic.4y no no no
## 1535 34 blue-collar married unknown unknown unknown unknown
## 1536 31 admin. married university.degree unknown no no
## 1537 39 housemaid married basic.4y no yes yes
## 1538 26 entrepreneur married unknown no no no
## 1539 37 blue-collar married basic.6y unknown yes yes
## 1540 25 student single high.school no no no
## 1541 33 services married high.school no yes no
## 1542 40 blue-collar married unknown no no no
## 1543 37 entrepreneur single university.degree no no no
## 1544 46 housemaid married basic.9y no no no
## 1545 53 admin. divorced high.school no yes no
## 1546 32 unemployed married basic.9y no no no
## 1547 26 technician married professional.course no yes no
## 1548 52 blue-collar single basic.9y unknown yes no
## 1549 54 admin. married basic.4y unknown no no
## 1550 42 admin. married basic.9y no yes no
## 1551 41 management single unknown no no no
## 1552 26 services single high.school no no no
## 1553 54 technician married unknown unknown no no
## 1554 26 blue-collar single high.school no no no
## 1555 28 technician single professional.course no yes no
## 1556 35 technician divorced professional.course no no yes
## 1557 37 technician married professional.course no yes no
## 1558 52 technician married university.degree no no no
## 1559 36 admin. married high.school no yes no
## 1560 43 blue-collar married basic.4y no yes no
## 1561 36 blue-collar married basic.6y unknown no no
## 1562 36 blue-collar single high.school no no yes
## 1563 44 blue-collar married basic.9y unknown yes no
## 1564 49 blue-collar married professional.course unknown no no
## 1565 56 retired married basic.4y unknown yes yes
## 1566 39 blue-collar divorced basic.9y no no no
## 1567 29 blue-collar married professional.course unknown yes no
## 1568 41 admin. single university.degree unknown no no
## 1569 47 admin. married university.degree no yes no
## 1570 38 blue-collar married basic.6y unknown yes no
## 1571 36 technician married high.school no yes no
## 1572 46 technician divorced professional.course no yes no
## 1573 47 services divorced high.school no yes no
## 1574 47 blue-collar single basic.4y no yes no
## 1575 42 management married university.degree unknown yes no
## 1576 33 unemployed married professional.course unknown yes no
## 1577 48 entrepreneur married high.school no yes no
## 1578 53 technician single professional.course no yes no
## 1579 57 blue-collar married unknown unknown unknown unknown
## 1580 34 services married high.school unknown yes no
## 1581 51 services divorced professional.course no yes no
## 1582 45 unknown married unknown unknown no no
## 1583 44 blue-collar married basic.6y no yes no
## 1584 48 admin. married university.degree no no yes
## 1585 59 retired married university.degree unknown no no
## 1586 44 admin. single high.school no no no
## 1587 50 blue-collar married basic.9y unknown yes no
## 1588 53 self-employed married university.degree no no no
## 1589 41 technician married professional.course unknown no no
## 1590 55 admin. married high.school no yes yes
## 1591 36 blue-collar married basic.4y unknown no no
## 1592 37 blue-collar married basic.4y no yes no
## 1593 36 management divorced high.school no no no
## 1594 45 management married basic.9y no yes yes
## 1595 35 admin. single basic.6y no yes no
## 1596 43 blue-collar married basic.6y unknown yes no
## 1597 36 entrepreneur married university.degree no yes no
## 1598 55 admin. divorced university.degree no yes no
## 1599 54 services married basic.4y unknown yes no
## 1600 39 housemaid married university.degree no yes no
## 1601 40 technician married professional.course unknown no no
## 1602 49 services married high.school unknown unknown unknown
## 1603 45 unemployed married high.school unknown no no
## 1604 32 admin. single university.degree no no no
## 1605 41 admin. divorced high.school no no no
## 1606 49 management divorced high.school unknown no no
## 1607 59 retired single university.degree no no no
## 1608 44 blue-collar married professional.course no no no
## 1609 43 management married basic.6y unknown no no
## 1610 59 blue-collar married basic.4y unknown no no
## 1611 49 technician divorced basic.9y unknown yes no
## 1612 39 entrepreneur divorced high.school no no no
## 1613 39 entrepreneur divorced high.school no no no
## 1614 33 blue-collar single high.school no no no
## 1615 42 blue-collar married professional.course no yes no
## 1616 33 management married university.degree no no no
## 1617 51 blue-collar married basic.4y unknown no no
## 1618 29 management single university.degree no yes yes
## 1619 29 student single high.school unknown no no
## 1620 34 management married university.degree unknown no no
## 1621 33 services married high.school unknown no no
## 1622 54 management divorced university.degree no no no
## 1623 56 services divorced high.school unknown no no
## 1624 51 blue-collar married basic.4y no yes yes
## 1625 33 blue-collar married professional.course no no no
## 1626 32 blue-collar married professional.course no no no
## 1627 47 technician divorced university.degree no no no
## 1628 26 technician married university.degree no no no
## 1629 26 self-employed married university.degree no no no
## 1630 25 blue-collar married high.school no no no
## 1631 52 entrepreneur married university.degree unknown no no
## 1632 59 blue-collar married basic.4y unknown no no
## 1633 39 blue-collar divorced high.school no no no
## 1634 31 blue-collar married basic.4y unknown no no
## 1635 56 housemaid divorced basic.4y unknown no no
## 1636 36 technician married university.degree no yes yes
## 1637 44 blue-collar married basic.4y unknown no no
## 1638 31 admin. divorced high.school no no no
## 1639 40 housemaid single university.degree no no yes
## 1640 34 technician single university.degree unknown no no
## 1641 56 entrepreneur married basic.4y no no no
## 1642 38 services divorced high.school no no no
## 1643 42 management married university.degree no yes no
## 1644 42 management married university.degree no no no
## 1645 40 services married high.school unknown no no
## 1646 47 blue-collar married basic.4y unknown no no
## 1647 44 blue-collar married professional.course unknown yes no
## 1648 48 services married high.school no no no
## 1649 31 blue-collar married basic.9y unknown yes no
## 1650 29 admin. single basic.9y unknown no no
## 1651 39 unemployed married university.degree no yes no
## 1652 35 technician married professional.course no yes no
## 1653 33 entrepreneur married high.school no no no
## 1654 48 unemployed married high.school unknown yes yes
## 1655 39 technician married professional.course no yes no
## 1656 41 admin. married university.degree no yes yes
## 1657 28 management single unknown no no no
## 1658 34 housemaid married university.degree no no no
## 1659 27 admin. single high.school unknown unknown unknown
## 1660 30 technician single professional.course no no no
## 1661 38 blue-collar married professional.course no no no
## 1662 37 entrepreneur single university.degree no yes no
## 1663 33 technician married basic.9y no yes no
## 1664 33 technician married basic.9y no yes no
## 1665 36 technician married high.school no yes no
## 1666 33 technician married basic.9y no no no
## 1667 28 student single university.degree unknown yes no
## 1668 28 student single university.degree unknown yes no
## 1669 38 technician married professional.course no no no
## 1670 50 management divorced professional.course no no no
## 1671 32 management married high.school no yes no
## 1672 45 blue-collar married basic.4y no no no
## 1673 36 admin. married university.degree no no no
## 1674 30 blue-collar single basic.9y unknown unknown unknown
## 1675 41 blue-collar married basic.9y unknown no no
## 1676 34 blue-collar single basic.6y unknown yes no
## 1677 57 retired single high.school no no no
## 1678 32 blue-collar married basic.4y unknown no no
## 1679 57 retired single high.school no unknown unknown
## 1680 46 technician married basic.9y no no no
## 1681 44 services married basic.4y unknown yes no
## 1682 32 blue-collar single basic.9y no no no
## 1683 41 entrepreneur married basic.6y no no no
## 1684 33 technician married basic.9y no no no
## 1685 51 blue-collar married basic.9y no no no
## 1686 52 management married university.degree unknown no no
## 1687 39 blue-collar married basic.9y no no no
## 1688 50 management married basic.9y no no no
## 1689 51 technician married professional.course no yes yes
## 1690 40 admin. single university.degree no yes no
## 1691 33 blue-collar married basic.9y unknown yes no
## 1692 37 self-employed divorced university.degree no yes yes
## 1693 37 self-employed divorced university.degree no yes no
## 1694 30 admin. single high.school no unknown unknown
## 1695 38 blue-collar married basic.6y no no no
## 1696 31 services married high.school no yes no
## 1697 48 blue-collar married basic.9y no yes no
## 1698 29 admin. single high.school no yes no
## 1699 44 blue-collar married basic.9y unknown yes no
## 1700 38 blue-collar single basic.9y unknown yes no
## 1701 48 blue-collar married basic.9y no yes no
## 1702 41 blue-collar married basic.4y no yes no
## 1703 56 admin. married high.school no yes no
## 1704 39 technician married university.degree no yes no
## 1705 33 technician married professional.course no yes no
## 1706 31 admin. married high.school no no no
## 1707 54 retired divorced professional.course no no no
## 1708 26 services divorced professional.course no no no
## 1709 54 blue-collar married professional.course unknown yes yes
## 1710 45 management married professional.course no no no
## 1711 41 blue-collar divorced basic.6y no yes no
## 1712 35 admin. single university.degree no no yes
## 1713 28 admin. married high.school no yes no
## 1714 57 retired single high.school no no no
## 1715 35 admin. married high.school unknown no no
## 1716 30 services married professional.course unknown no no
## 1717 34 blue-collar married basic.9y no no yes
## 1718 29 management single university.degree no yes no
## 1719 37 admin. married basic.4y no yes no
## 1720 25 blue-collar married basic.9y no yes no
## 1721 31 blue-collar married basic.9y no unknown unknown
## 1722 56 admin. married basic.9y unknown no no
## 1723 39 services married professional.course no no no
## 1724 27 blue-collar married basic.9y unknown no no
## 1725 52 management married university.degree unknown no no
## 1726 39 technician married university.degree no yes no
## 1727 34 management single university.degree no no no
## 1728 47 services divorced high.school no no no
## 1729 31 blue-collar married basic.6y no yes no
## 1730 33 admin. married high.school no yes yes
## 1731 36 blue-collar married basic.6y unknown no no
## 1732 36 blue-collar married basic.6y unknown yes no
## 1733 57 blue-collar married basic.4y unknown yes no
## 1734 41 management married high.school no no no
## 1735 29 blue-collar married basic.9y no no no
## 1736 39 blue-collar married basic.9y no no no
## 1737 50 blue-collar married basic.4y unknown yes no
## 1738 47 blue-collar married basic.4y no unknown unknown
## 1739 37 admin. married unknown no no no
## 1740 37 admin. married high.school no yes no
## 1741 32 unemployed married basic.9y no unknown unknown
## 1742 56 admin. married high.school no yes yes
## 1743 36 services married high.school unknown yes no
## 1744 51 technician married professional.course no yes no
## 1745 47 blue-collar divorced basic.4y no no yes
## 1746 54 technician married university.degree unknown no yes
## 1747 41 blue-collar married basic.4y unknown no no
## 1748 44 blue-collar married high.school unknown yes no
## 1749 41 admin. single university.degree unknown yes yes
## 1750 44 blue-collar married high.school no no no
## 1751 42 admin. single unknown no no no
## 1752 35 services married high.school no no no
## 1753 54 unknown married unknown unknown no no
## 1754 37 technician married basic.9y unknown yes no
## 1755 41 admin. married basic.9y unknown yes no
## 1756 31 technician married professional.course no no no
## 1757 45 entrepreneur married basic.9y no no no
## 1758 47 management married university.degree no no no
## 1759 26 admin. single high.school no yes no
## 1760 36 blue-collar single basic.4y no yes no
## 1761 33 blue-collar married basic.9y no no no
## 1762 38 management married university.degree no yes no
## 1763 50 blue-collar married basic.4y unknown yes no
## 1764 37 blue-collar single high.school no no no
## 1765 36 admin. single high.school no yes yes
## 1766 35 admin. married high.school no yes no
## 1767 31 blue-collar married basic.9y no yes no
## 1768 31 unemployed single professional.course no no no
## 1769 32 blue-collar married basic.9y no no no
## 1770 51 entrepreneur divorced unknown no yes no
## 1771 39 blue-collar divorced basic.9y no yes no
## 1772 29 management married university.degree no no no
## 1773 57 blue-collar married professional.course unknown unknown unknown
## 1774 53 blue-collar married basic.9y unknown no no
## 1775 60 technician divorced professional.course unknown yes no
## 1776 42 blue-collar married basic.4y unknown no no
## 1777 30 admin. married university.degree no yes no
## 1778 34 technician married university.degree no no no
## 1779 43 technician single professional.course no no no
## 1780 35 admin. single university.degree no yes no
## 1781 26 admin. single high.school no no no
## 1782 31 blue-collar married basic.9y no yes no
## 1783 55 unemployed married basic.4y unknown yes no
## 1784 59 housemaid married basic.4y unknown no yes
## 1785 48 blue-collar married basic.9y no yes no
## 1786 37 services married basic.9y no yes no
## 1787 35 blue-collar married basic.6y unknown no no
## 1788 30 admin. single high.school no yes yes
## 1789 30 admin. single high.school no no no
## 1790 53 admin. married high.school no yes no
## 1791 34 blue-collar married basic.4y no no no
## 1792 43 admin. married high.school no yes no
## 1793 54 retired divorced basic.4y no yes no
## 1794 45 services single professional.course unknown no no
## 1795 46 management single university.degree no no no
## 1796 57 admin. divorced university.degree no yes no
## 1797 34 admin. divorced university.degree no no no
## 1798 33 housemaid married basic.4y no no no
## 1799 48 admin. married high.school no yes no
## 1800 37 unknown married university.degree no no yes
## 1801 33 self-employed married university.degree no yes no
## 1802 36 admin. single university.degree no no yes
## 1803 28 blue-collar single basic.9y no yes no
## 1804 31 management single university.degree no no no
## 1805 26 admin. married high.school unknown no no
## 1806 40 blue-collar married basic.6y unknown no no
## 1807 40 blue-collar married basic.6y unknown yes no
## 1808 51 blue-collar divorced basic.4y no no no
## 1809 30 blue-collar single basic.9y no yes no
## 1810 34 entrepreneur married professional.course no yes no
## 1811 51 blue-collar divorced basic.4y no no no
## 1812 39 admin. single high.school unknown no no
## 1813 57 blue-collar married basic.4y unknown no yes
## 1814 33 technician divorced high.school no no no
## 1815 22 blue-collar single basic.6y unknown unknown unknown
## 1816 56 technician married basic.4y unknown unknown unknown
## 1817 50 technician married professional.course no no no
## 1818 53 technician married professional.course unknown yes no
## 1819 39 self-employed married basic.4y unknown yes no
## 1820 33 technician divorced professional.course no no no
## 1821 28 blue-collar married basic.9y unknown no no
## 1822 37 admin. single university.degree no no no
## 1823 42 housemaid married high.school unknown yes no
## 1824 35 services single high.school no no yes
## 1825 48 admin. divorced high.school no no yes
## 1826 41 technician married professional.course unknown yes no
## 1827 26 blue-collar married basic.9y no no no
## 1828 58 retired married unknown no unknown unknown
## 1829 58 retired married unknown no unknown unknown
## 1830 54 management divorced university.degree no yes no
## 1831 35 admin. married university.degree no yes no
## 1832 34 admin. married professional.course no yes no
## 1833 28 technician married high.school no no no
## 1834 36 services single basic.9y no yes yes
## 1835 42 admin. single high.school no no no
## 1836 37 technician single university.degree no yes no
## 1837 45 services married basic.9y no no no
## 1838 48 self-employed married basic.9y unknown yes no
## 1839 53 technician married professional.course unknown yes no
## 1840 53 technician married professional.course unknown yes yes
## 1841 30 unknown single university.degree no no no
## 1842 48 technician married high.school no no no
## 1843 49 services divorced basic.9y no yes no
## 1844 48 technician married high.school no no yes
## 1845 38 blue-collar single university.degree unknown no no
## 1846 44 technician married professional.course unknown yes no
## 1847 44 blue-collar divorced basic.4y unknown yes no
## 1848 50 self-employed married university.degree no yes yes
## 1849 38 blue-collar single university.degree unknown no no
## 1850 41 technician married professional.course no yes no
## 1851 45 blue-collar married basic.4y no no no
## 1852 53 admin. married university.degree no yes no
## 1853 36 entrepreneur married university.degree no yes no
## 1854 45 services married high.school no yes no
## 1855 37 blue-collar married professional.course no no yes
## 1856 25 technician single university.degree no yes no
## 1857 35 admin. divorced university.degree no no yes
## 1858 34 admin. married university.degree no no no
## 1859 32 unknown married basic.6y unknown no no
## 1860 39 self-employed single university.degree no no no
## 1861 36 admin. married high.school no no yes
## 1862 46 entrepreneur married university.degree no yes no
## 1863 56 entrepreneur married university.degree no no no
## 1864 37 technician single basic.9y unknown no no
## 1865 39 blue-collar married high.school no yes no
## 1866 52 services married unknown unknown no no
## 1867 39 services married unknown unknown no no
## 1868 52 services married unknown unknown no no
## 1869 51 technician married professional.course unknown no no
## 1870 42 technician single unknown no no no
## 1871 34 technician married high.school no no yes
## 1872 28 blue-collar married basic.9y no yes no
## 1873 53 blue-collar married basic.9y no yes no
## 1874 47 admin. married university.degree unknown no no
## 1875 39 blue-collar married basic.9y no no no
## 1876 37 services married high.school no no no
## 1877 40 technician married professional.course unknown no no
## 1878 56 admin. divorced unknown unknown yes yes
## 1879 36 admin. married high.school unknown no no
## 1880 45 blue-collar married basic.4y unknown yes no
## 1881 38 technician single university.degree no yes yes
## 1882 41 technician married professional.course no no no
## 1883 45 admin. single university.degree no no yes
## 1884 48 services married high.school unknown no no
## 1885 29 admin. single basic.9y unknown no no
## 1886 38 technician single university.degree no no no
## 1887 48 services married high.school unknown yes no
## 1888 40 blue-collar married high.school no no no
## 1889 42 blue-collar married basic.4y no no no
## 1890 32 blue-collar married basic.9y no no no
## 1891 56 admin. married unknown unknown yes no
## 1892 54 services married unknown no no no
## 1893 47 admin. married high.school unknown yes no
## 1894 42 admin. single high.school no no no
## 1895 55 blue-collar married basic.4y unknown yes yes
## 1896 37 services married high.school no yes no
## 1897 45 technician married university.degree unknown yes no
## 1898 37 blue-collar married professional.course unknown yes yes
## 1899 36 blue-collar married high.school no no yes
## 1900 46 housemaid married basic.4y no no yes
## 1901 47 services married high.school unknown no no
## 1902 41 blue-collar married basic.4y unknown yes no
## 1903 53 retired single professional.course unknown yes no
## 1904 55 retired married basic.4y unknown yes no
## 1905 44 management married university.degree unknown no no
## 1906 48 blue-collar married basic.4y no yes no
## 1907 50 services married unknown unknown no no
## 1908 34 blue-collar married basic.9y no no no
## 1909 38 entrepreneur married basic.9y no no no
## 1910 42 unemployed single university.degree no no no
## 1911 57 retired married university.degree no yes no
## 1912 58 blue-collar divorced basic.4y no yes no
## 1913 48 management married university.degree unknown yes no
## 1914 32 admin. divorced high.school no no no
## 1915 35 admin. single university.degree no no no
## 1916 47 blue-collar married basic.4y no yes yes
## 1917 38 technician married professional.course no yes no
## 1918 49 self-employed married professional.course no yes no
## 1919 33 self-employed divorced basic.9y no yes no
## 1920 38 blue-collar married basic.4y unknown yes no
## 1921 45 technician single professional.course no no no
## 1922 28 admin. single unknown no no no
## 1923 54 blue-collar married basic.4y unknown no no
## 1924 58 retired married professional.course unknown no yes
## 1925 57 admin. divorced basic.9y unknown no no
## 1926 28 admin. married university.degree no unknown unknown
## 1927 60 retired married university.degree unknown unknown unknown
## 1928 39 services divorced basic.9y no no no
## 1929 40 self-employed married professional.course no no no
## 1930 58 unknown married basic.4y no no yes
## 1931 36 blue-collar married basic.9y unknown no no
## 1932 59 retired married university.degree no no no
## 1933 42 admin. married basic.6y no no no
## 1934 37 blue-collar married high.school no yes no
## 1935 49 blue-collar married basic.4y unknown no no
## 1936 39 blue-collar married basic.9y unknown yes yes
## 1937 46 blue-collar married basic.9y unknown no no
## 1938 35 technician married professional.course no no no
## 1939 51 blue-collar married basic.4y unknown no no
## 1940 40 blue-collar divorced basic.9y unknown yes yes
## 1941 32 blue-collar married basic.9y no yes no
## 1942 42 admin. divorced university.degree no no no
## 1943 25 admin. single university.degree no no no
## 1944 46 blue-collar married basic.6y unknown yes no
## 1945 42 admin. married basic.6y no no no
## 1946 47 management married basic.4y unknown yes no
## 1947 56 admin. married high.school no no no
## 1948 47 housemaid married university.degree no no no
## 1949 48 admin. divorced high.school no no no
## 1950 45 management married unknown unknown yes no
## 1951 58 retired married high.school no yes no
## 1952 39 blue-collar married basic.9y unknown yes no
## 1953 33 management single university.degree no yes yes
## 1954 58 retired divorced professional.course unknown yes no
## 1955 39 admin. married high.school unknown yes no
## 1956 49 self-employed married professional.course no yes no
## 1957 33 blue-collar married basic.9y no no no
## 1958 40 housemaid divorced unknown no no no
## 1959 49 services married high.school no yes no
## 1960 50 services married unknown unknown no no
## 1961 32 admin. married university.degree no yes no
## 1962 59 retired married basic.4y unknown no no
## 1963 53 technician married professional.course no no no
## 1964 43 admin. divorced basic.9y no unknown unknown
## 1965 47 unknown divorced basic.4y unknown no no
## 1966 53 blue-collar married basic.9y unknown yes no
## 1967 37 admin. married high.school unknown no no
## 1968 26 services single high.school no yes no
## 1969 38 technician single professional.course no yes no
## 1970 36 admin. married university.degree no no no
## 1971 45 admin. married basic.9y no yes no
## 1972 36 technician married professional.course no no yes
## 1973 47 technician married basic.9y no no no
## 1974 31 management married university.degree no no no
## 1975 29 blue-collar married basic.6y no no yes
## 1976 41 services married basic.9y no yes yes
## 1977 27 technician single professional.course no yes no
## 1978 35 admin. single high.school no yes no
## 1979 49 blue-collar married basic.4y unknown yes no
## 1980 45 blue-collar married basic.4y no unknown unknown
## 1981 50 technician married basic.6y no yes no
## 1982 49 blue-collar married basic.9y no yes no
## 1983 27 blue-collar married basic.9y no yes no
## 1984 58 retired married professional.course unknown unknown unknown
## 1985 41 technician married basic.9y no yes no
## 1986 46 admin. divorced high.school unknown yes no
## 1987 49 blue-collar married basic.4y unknown no no
## 1988 46 blue-collar married basic.4y unknown no no
## 1989 51 retired married basic.4y unknown yes yes
## 1990 43 admin. married high.school no yes no
## 1991 43 blue-collar married basic.9y no no no
## 1992 38 blue-collar married basic.6y no no no
## 1993 56 unemployed married basic.9y unknown no yes
## 1994 34 services married high.school no yes yes
## 1995 35 admin. single university.degree no yes yes
## 1996 45 admin. married basic.9y unknown yes no
## 1997 47 services divorced high.school no unknown unknown
## 1998 49 unknown married unknown no no no
## 1999 35 services married high.school no yes no
## 2000 27 blue-collar married basic.9y no unknown unknown
## 2001 54 retired married high.school unknown no no
## 2002 31 admin. married high.school unknown yes no
## 2003 33 blue-collar married basic.4y unknown no no
## 2004 29 management married university.degree no no no
## 2005 40 blue-collar married basic.6y unknown yes no
## 2006 36 admin. married university.degree no no no
## 2007 39 technician married professional.course no no no
## 2008 36 management married university.degree no no no
## 2009 30 services single high.school no no no
## 2010 37 technician married professional.course no no no
## 2011 44 blue-collar married unknown no no yes
## 2012 30 management married university.degree no no no
## 2013 30 admin. single high.school no no no
## 2014 33 technician single high.school no no no
## 2015 54 management divorced university.degree no yes no
## 2016 39 blue-collar single unknown unknown no no
## 2017 35 services married high.school no no no
## 2018 55 technician married professional.course no no no
## 2019 55 services married high.school no no no
## 2020 36 technician married university.degree no no no
## 2021 58 admin. married basic.6y no yes no
## 2022 37 admin. single high.school no no no
## 2023 28 blue-collar single basic.6y unknown yes no
## 2024 34 management married university.degree no yes no
## 2025 54 retired divorced basic.4y no yes no
## 2026 46 housemaid married basic.4y no no no
## 2027 40 technician single high.school no no no
## 2028 47 services married high.school unknown no yes
## 2029 47 blue-collar married professional.course unknown yes no
## 2030 58 entrepreneur married university.degree unknown no no
## 2031 36 blue-collar married basic.9y unknown no no
## 2032 36 admin. married high.school no yes no
## 2033 36 blue-collar single university.degree unknown yes no
## 2034 50 services married high.school unknown yes no
## 2035 47 management divorced university.degree no no no
## 2036 36 services married high.school no no no
## 2037 25 self-employed single university.degree no no no
## 2038 40 entrepreneur married university.degree unknown yes no
## 2039 36 technician married unknown no yes no
## 2040 37 services married high.school unknown yes no
## 2041 46 blue-collar married unknown unknown yes no
## 2042 49 services married high.school no no yes
## 2043 42 technician married professional.course unknown no no
## 2044 37 blue-collar married high.school no no no
## 2045 36 technician married university.degree no yes yes
## 2046 57 blue-collar married basic.4y no yes yes
## 2047 39 services married basic.9y no yes no
## 2048 28 admin. married high.school no no no
## 2049 47 blue-collar married basic.4y no yes no
## 2050 42 blue-collar married basic.9y unknown yes no
## 2051 34 entrepreneur married professional.course no no no
## 2052 51 blue-collar married professional.course no no yes
## 2053 30 services single unknown no yes no
## 2054 33 admin. single university.degree no yes no
## 2055 39 blue-collar divorced basic.9y unknown no no
## 2056 31 services single high.school no no no
## 2057 45 services single professional.course unknown unknown unknown
## 2058 34 blue-collar single basic.4y no yes yes
## 2059 33 services divorced high.school no no no
## 2060 35 blue-collar married basic.6y unknown yes no
## 2061 42 technician single high.school unknown no no
## 2062 37 admin. married high.school no no no
## 2063 42 blue-collar single basic.9y no unknown unknown
## 2064 29 admin. married high.school no no no
## 2065 59 retired married basic.9y no yes no
## 2066 32 blue-collar single basic.9y no no no
## 2067 52 management married basic.4y unknown yes no
## 2068 46 blue-collar married unknown no no no
## 2069 25 blue-collar married basic.9y no no no
## 2070 36 entrepreneur married basic.6y no yes no
## 2071 23 blue-collar married professional.course no yes no
## 2072 43 admin. married high.school no no no
## 2073 29 services single high.school no no yes
## 2074 45 admin. married high.school no yes no
## 2075 35 admin. married high.school no yes no
## 2076 35 technician married professional.course no no no
## 2077 39 blue-collar divorced high.school no yes yes
## 2078 29 technician married professional.course no no no
## 2079 46 blue-collar divorced basic.4y unknown no no
## 2080 39 admin. married university.degree no no no
## 2081 34 blue-collar married basic.6y no no no
## 2082 44 entrepreneur divorced university.degree no yes no
## 2083 35 blue-collar married unknown no no no
## 2084 33 technician single professional.course no yes yes
## 2085 41 blue-collar single basic.9y unknown no no
## 2086 37 technician married university.degree no no no
## 2087 42 blue-collar divorced basic.9y no yes no
## 2088 55 blue-collar married basic.9y no yes no
## 2089 39 technician married professional.course no no no
## 2090 40 blue-collar married high.school no no no
## 2091 52 technician married high.school no yes yes
## 2092 43 management married university.degree no unknown unknown
## 2093 51 blue-collar married basic.4y no yes no
## 2094 45 management divorced basic.9y unknown no no
## 2095 40 management divorced university.degree unknown no no
## 2096 28 student single high.school unknown yes no
## 2097 33 admin. single high.school no unknown unknown
## 2098 46 unknown married university.degree no no no
## 2099 36 admin. married high.school no no no
## 2100 46 unemployed married professional.course unknown yes no
## 2101 45 blue-collar divorced basic.9y no yes no
## 2102 46 management married university.degree no no yes
## 2103 30 services married unknown no no no
## 2104 55 management married unknown no yes yes
## 2105 45 admin. married basic.9y unknown yes yes
## 2106 45 admin. married high.school no yes no
## 2107 31 admin. single university.degree no no no
## 2108 33 admin. married unknown no yes no
## 2109 52 blue-collar married basic.4y unknown yes yes
## 2110 35 unemployed married university.degree no yes no
## 2111 50 admin. married high.school unknown yes no
## 2112 48 admin. married university.degree no yes yes
## 2113 41 management married unknown unknown yes no
## 2114 36 admin. single university.degree unknown no no
## 2115 44 blue-collar single basic.4y no no no
## 2116 38 blue-collar single university.degree no no no
## 2117 53 blue-collar married basic.9y no no no
## 2118 37 blue-collar married basic.9y no yes no
## 2119 29 admin. single university.degree no no no
## 2120 59 entrepreneur married high.school no no no
## 2121 28 blue-collar married basic.9y no yes no
## 2122 43 blue-collar married unknown unknown no yes
## 2123 45 blue-collar divorced basic.9y no yes yes
## 2124 31 blue-collar single basic.9y no no no
## 2125 34 blue-collar married basic.9y no no no
## 2126 38 technician single university.degree no no no
## 2127 39 technician married university.degree unknown no no
## 2128 29 blue-collar married basic.6y no no yes
## 2129 45 technician married professional.course unknown no no
## 2130 42 blue-collar married basic.4y unknown unknown unknown
## 2131 32 blue-collar married basic.9y no no no
## 2132 41 blue-collar married basic.4y no no no
## 2133 49 blue-collar married basic.4y no no no
## 2134 45 unknown married unknown unknown unknown unknown
## 2135 48 management married basic.4y unknown no no
## 2136 52 blue-collar married basic.6y no yes no
## 2137 44 blue-collar married basic.4y unknown no yes
## 2138 44 management married university.degree no no no
## 2139 33 unemployed divorced basic.9y no yes no
## 2140 57 blue-collar divorced professional.course no no no
## 2141 52 admin. married high.school no unknown unknown
## 2142 40 blue-collar single basic.9y unknown yes no
## 2143 37 admin. married university.degree no no yes
## 2144 39 blue-collar married basic.6y no no no
## 2145 34 self-employed single university.degree no yes no
## 2146 38 technician single professional.course unknown unknown unknown
## 2147 43 services married high.school no no no
## 2148 33 blue-collar married basic.9y no no yes
## 2149 51 services married high.school no yes no
## 2150 50 housemaid married basic.9y unknown yes yes
## 2151 45 blue-collar married basic.9y unknown no yes
## 2152 50 admin. married university.degree no yes no
## 2153 53 services married high.school unknown yes no
## 2154 42 management married university.degree unknown yes no
## 2155 47 blue-collar single basic.9y no no yes
## 2156 39 unemployed single university.degree no no yes
## 2157 36 admin. married university.degree unknown yes no
## 2158 48 blue-collar married basic.4y no yes no
## 2159 44 technician single unknown unknown no no
## 2160 34 blue-collar single high.school unknown yes yes
## 2161 54 management married university.degree unknown no no
## 2162 40 housemaid divorced basic.6y unknown yes no
## 2163 52 management married professional.course no yes no
## 2164 35 blue-collar married basic.9y no yes no
## 2165 38 services married high.school no no no
## 2166 55 admin. married high.school no no yes
## 2167 42 blue-collar married basic.4y no no no
## 2168 40 services single high.school no yes no
## 2169 49 blue-collar married basic.6y unknown yes yes
## 2170 37 services married high.school no yes no
## 2171 54 blue-collar married basic.9y no no no
## 2172 48 entrepreneur married university.degree no yes no
## 2173 42 blue-collar divorced basic.6y unknown no no
## 2174 35 technician divorced professional.course no no no
## 2175 50 admin. divorced basic.9y no yes no
## 2176 35 admin. married high.school unknown unknown unknown
## 2177 45 services married high.school unknown no no
## 2178 46 management divorced university.degree no unknown unknown
## 2179 39 management married university.degree no yes no
## 2180 34 entrepreneur married basic.4y no no no
## 2181 37 admin. married high.school no yes no
## 2182 26 services single high.school no no no
## 2183 52 blue-collar married basic.9y no no no
## 2184 42 admin. married basic.9y no yes no
## 2185 44 blue-collar divorced basic.4y unknown yes no
## 2186 55 blue-collar married basic.4y unknown yes no
## 2187 53 services married high.school no no no
## 2188 40 technician married professional.course no no no
## 2189 42 services married professional.course no yes no
## 2190 29 services divorced high.school no no no
## 2191 30 blue-collar divorced basic.9y no yes no
## 2192 41 housemaid married basic.6y no no no
## 2193 30 blue-collar divorced basic.9y no yes no
## 2194 52 blue-collar married basic.9y no yes no
## 2195 41 housemaid married basic.6y no no no
## 2196 34 technician divorced professional.course no no no
## 2197 40 admin. single high.school no no no
## 2198 34 blue-collar married basic.9y no no no
## 2199 42 blue-collar married basic.6y no yes no
## 2200 28 entrepreneur married university.degree no no no
## 2201 29 services divorced high.school no no no
## 2202 50 housemaid divorced basic.4y unknown no no
## 2203 56 unemployed divorced high.school no yes no
## 2204 42 blue-collar married basic.6y no no no
## 2205 51 management married basic.4y no no no
## 2206 29 technician single professional.course no no no
## 2207 41 admin. single university.degree no yes no
## 2208 34 management married university.degree no yes no
## 2209 31 admin. married university.degree no no no
## 2210 47 blue-collar married basic.9y no yes no
## 2211 40 blue-collar married basic.4y unknown yes no
## 2212 39 unemployed married university.degree no no no
## 2213 52 blue-collar married basic.4y unknown yes yes
## 2214 50 technician married professional.course unknown yes no
## 2215 36 blue-collar married basic.6y no yes no
## 2216 56 blue-collar married basic.9y unknown no no
## 2217 35 unknown married basic.9y no no no
## 2218 29 admin. single university.degree no yes no
## 2219 29 blue-collar married professional.course no yes yes
## 2220 34 blue-collar single basic.9y no no yes
## 2221 29 blue-collar married professional.course no yes no
## 2222 41 admin. single high.school no yes yes
## 2223 43 technician divorced professional.course unknown unknown unknown
## 2224 48 admin. divorced high.school no yes no
## 2225 38 admin. married university.degree no no no
## 2226 32 admin. single high.school no no no
## 2227 35 admin. married high.school no no no
## 2228 39 blue-collar married basic.6y no no no
## 2229 41 entrepreneur married basic.4y no no no
## 2230 41 management married unknown no no no
## 2231 43 unknown married university.degree no no no
## 2232 35 services married high.school no no no
## 2233 49 services married high.school no yes no
## 2234 24 student single high.school unknown no no
## 2235 49 blue-collar married basic.9y unknown yes no
## 2236 44 admin. married university.degree no yes no
## 2237 41 blue-collar married basic.9y no no no
## 2238 35 technician married university.degree no no no
## 2239 32 blue-collar married basic.6y unknown yes yes
## 2240 45 admin. married university.degree no no no
## 2241 41 technician married basic.9y no yes no
## 2242 40 admin. single high.school no yes no
## 2243 41 admin. single university.degree no no no
## 2244 43 blue-collar single basic.4y unknown no no
## 2245 38 technician married professional.course unknown yes no
## 2246 28 entrepreneur married basic.4y unknown yes no
## 2247 36 services single unknown no yes no
## 2248 35 technician married professional.course no no no
## 2249 25 blue-collar single basic.9y no yes no
## 2250 59 blue-collar married basic.4y no yes no
## 2251 28 entrepreneur married basic.4y unknown yes no
## 2252 56 services married basic.9y unknown no no
## 2253 33 admin. single university.degree no no no
## 2254 35 unknown married basic.9y no no yes
## 2255 24 services single high.school no yes no
## 2256 32 technician divorced professional.course no yes no
## 2257 29 technician married professional.course no no no
## 2258 33 management married high.school unknown yes no
## 2259 42 admin. married professional.course no no no
## 2260 34 services married high.school unknown no no
## 2261 29 technician married professional.course no yes no
## 2262 38 blue-collar married basic.9y no no no
## 2263 45 blue-collar married basic.9y unknown no no
## 2264 33 admin. married university.degree no yes no
## 2265 42 blue-collar married basic.9y unknown yes no
## 2266 36 services married basic.6y no no no
## 2267 37 admin. married university.degree no yes no
## 2268 26 blue-collar married basic.6y no no no
## 2269 35 management married university.degree no yes yes
## 2270 35 management married university.degree no no no
## 2271 30 services married high.school unknown no no
## 2272 36 management married university.degree no yes no
## 2273 36 management married university.degree no no no
## 2274 40 blue-collar married unknown unknown no no
## 2275 51 technician married professional.course no no no
## 2276 45 blue-collar single basic.9y no yes yes
## 2277 36 blue-collar married basic.9y no no no
## 2278 58 admin. divorced university.degree no no no
## 2279 33 entrepreneur married high.school no no no
## 2280 50 housemaid married basic.9y unknown no no
## 2281 33 blue-collar married basic.4y no yes yes
## 2282 31 services married high.school no no no
## 2283 34 admin. single high.school no no no
## 2284 30 admin. married high.school unknown no no
## 2285 30 services married high.school no no no
## 2286 23 services single high.school no no no
## 2287 33 admin. married high.school no yes yes
## 2288 23 services single high.school no no no
## 2289 36 blue-collar married basic.9y no yes yes
## 2290 42 admin. divorced university.degree no no no
## 2291 36 blue-collar married basic.9y no no no
## 2292 26 entrepreneur single high.school no no no
## 2293 45 blue-collar divorced basic.4y unknown no no
## 2294 32 admin. married university.degree no no no
## 2295 37 services married high.school no no no
## 2296 40 blue-collar married basic.4y unknown no no
## 2297 36 admin. single university.degree no yes yes
## 2298 35 entrepreneur married basic.9y no yes no
## 2299 45 self-employed single professional.course unknown yes no
## 2300 48 admin. married university.degree unknown no no
## 2301 36 entrepreneur married basic.9y no no no
## 2302 37 technician divorced high.school no yes no
## 2303 36 blue-collar married basic.9y unknown no no
## 2304 56 blue-collar divorced basic.9y no yes no
## 2305 28 blue-collar single basic.9y no yes no
## 2306 43 blue-collar married basic.9y no no yes
## 2307 30 technician married professional.course unknown no no
## 2308 33 blue-collar single basic.9y unknown no no
## 2309 30 technician single professional.course no yes no
## 2310 33 technician divorced professional.course no no no
## 2311 42 technician married professional.course unknown no no
## 2312 30 blue-collar married basic.9y no yes no
## 2313 33 blue-collar married high.school no yes no
## 2314 39 admin. married high.school no no no
## 2315 37 blue-collar married basic.9y no no no
## 2316 41 self-employed married basic.9y no yes no
## 2317 53 self-employed married university.degree no yes no
## 2318 47 technician married professional.course unknown no no
## 2319 46 blue-collar married basic.4y unknown no no
## 2320 52 admin. single basic.9y no no no
## 2321 28 technician single basic.9y no no no
## 2322 60 blue-collar married basic.9y unknown no no
## 2323 50 admin. married high.school no no yes
## 2324 31 technician married university.degree no no no
## 2325 33 blue-collar married basic.9y no no no
## 2326 47 services divorced high.school no no no
## 2327 39 admin. married high.school unknown yes no
## 2328 37 services married high.school unknown yes no
## 2329 32 services married high.school no no no
## 2330 31 blue-collar married basic.9y no yes yes
## 2331 32 blue-collar married basic.9y no no no
## 2332 59 retired married professional.course unknown yes no
## 2333 48 technician married university.degree unknown yes no
## 2334 38 blue-collar married professional.course no yes no
## 2335 34 entrepreneur married high.school unknown no no
## 2336 44 blue-collar married basic.9y unknown yes no
## 2337 54 services divorced high.school unknown no no
## 2338 39 services married high.school no yes yes
## 2339 32 admin. single university.degree no no no
## 2340 43 services single high.school unknown yes no
## 2341 30 technician married professional.course no unknown unknown
## 2342 26 unemployed single basic.9y no no no
## 2343 38 admin. single university.degree no yes yes
## 2344 35 technician married professional.course no no no
## 2345 35 technician married professional.course no yes yes
## 2346 42 blue-collar married basic.4y no yes yes
## 2347 54 self-employed married professional.course unknown no no
## 2348 26 student single high.school no no no
## 2349 27 blue-collar married basic.9y no yes no
## 2350 44 blue-collar divorced basic.6y no no no
## 2351 28 services married unknown no no no
## 2352 53 retired divorced high.school no unknown unknown
## 2353 46 blue-collar married basic.9y unknown no no
## 2354 33 admin. married university.degree no no no
## 2355 30 student single unknown unknown no no
## 2356 29 admin. single high.school no yes yes
## 2357 51 self-employed married basic.4y unknown no yes
## 2358 55 admin. married high.school no yes no
## 2359 39 blue-collar divorced basic.9y no yes no
## 2360 39 blue-collar divorced unknown no no no
## 2361 30 admin. married university.degree no yes no
## 2362 33 blue-collar single high.school no no no
## 2363 44 blue-collar married basic.4y no yes no
## 2364 28 services married high.school no yes yes
## 2365 26 blue-collar single basic.9y no no no
## 2366 28 blue-collar married basic.6y no yes yes
## 2367 32 technician single high.school no yes no
## 2368 33 blue-collar married basic.9y no yes no
## 2369 28 student married university.degree no no no
## 2370 51 blue-collar divorced basic.9y unknown no no
## 2371 37 housemaid married university.degree unknown no no
## 2372 37 blue-collar married basic.4y unknown yes no
## 2373 34 blue-collar single basic.4y unknown no yes
## 2374 31 blue-collar married basic.9y no no yes
## 2375 38 self-employed single university.degree no no yes
## 2376 33 management married high.school no no no
## 2377 28 services married unknown no yes no
## 2378 29 technician married university.degree no yes no
## 2379 38 blue-collar married basic.4y unknown no no
## 2380 46 admin. married high.school no yes no
## 2381 36 blue-collar married unknown no no no
## 2382 44 management married university.degree unknown no yes
## 2383 51 blue-collar married basic.6y unknown yes no
## 2384 36 services married high.school no no yes
## 2385 39 entrepreneur married high.school unknown no yes
## 2386 42 blue-collar married basic.4y unknown no yes
## 2387 46 blue-collar married basic.9y unknown no yes
## 2388 46 admin. divorced university.degree no yes no
## 2389 41 admin. single university.degree no no no
## 2390 36 admin. married university.degree no no no
## 2391 60 retired married high.school no no no
## 2392 30 services married high.school no yes no
## 2393 37 admin. married high.school unknown yes no
## 2394 52 self-employed married basic.4y unknown yes no
## 2395 29 unemployed single university.degree no no yes
## 2396 29 admin. single university.degree no yes yes
## 2397 55 technician married professional.course unknown no no
## 2398 41 self-employed single university.degree no yes no
## 2399 53 retired divorced professional.course unknown yes yes
## 2400 43 technician married professional.course no yes no
## 2401 51 services divorced basic.4y unknown yes no
## 2402 40 management married university.degree no no no
## 2403 30 blue-collar married basic.9y no no yes
## 2404 37 admin. married unknown no yes no
## 2405 56 services divorced high.school unknown no no
## 2406 29 admin. single high.school no yes no
## 2407 30 services married high.school no no no
## 2408 36 blue-collar married basic.9y no yes no
## 2409 32 admin. single basic.9y unknown no no
## 2410 41 admin. married basic.6y no no no
## 2411 35 blue-collar married unknown no yes no
## 2412 40 blue-collar divorced high.school unknown no no
## 2413 34 admin. single university.degree no yes no
## 2414 45 admin. married basic.6y no yes no
## 2415 31 admin. married high.school no no yes
## 2416 58 blue-collar married basic.4y unknown yes no
## 2417 48 admin. married basic.9y unknown no no
## 2418 38 blue-collar married basic.6y unknown unknown unknown
## 2419 49 blue-collar single basic.4y no no no
## 2420 60 unknown married university.degree no no yes
## 2421 48 technician married university.degree no no no
## 2422 30 technician divorced professional.course no yes no
## 2423 30 entrepreneur married university.degree no no no
## 2424 56 blue-collar married basic.4y unknown yes no
## 2425 37 self-employed married basic.9y no yes no
## 2426 37 admin. divorced high.school no yes no
## 2427 42 technician divorced basic.9y no no no
## 2428 26 technician married professional.course no no no
## 2429 28 services married basic.9y unknown unknown unknown
## 2430 31 blue-collar single unknown no no no
## 2431 31 services married high.school no yes no
## 2432 27 admin. single high.school unknown no no
## 2433 37 blue-collar married basic.9y no yes yes
## 2434 32 housemaid married basic.4y no no no
## 2435 31 entrepreneur single basic.9y no no no
## 2436 51 blue-collar married basic.9y no no no
## 2437 38 technician single professional.course unknown yes no
## 2438 40 admin. divorced professional.course no yes no
## 2439 42 unemployed divorced high.school unknown yes yes
## 2440 45 housemaid married basic.6y unknown no no
## 2441 35 blue-collar single unknown no no no
## 2442 40 services married high.school no no no
## 2443 44 blue-collar single high.school no yes no
## 2444 30 blue-collar married basic.9y no no no
## 2445 33 blue-collar married basic.6y unknown no no
## 2446 28 blue-collar married basic.9y unknown no no
## 2447 36 technician married professional.course unknown yes no
## 2448 31 technician married professional.course no yes no
## 2449 45 admin. divorced basic.6y no yes no
## 2450 45 blue-collar married basic.4y unknown yes no
## 2451 38 technician married professional.course no no no
## 2452 33 admin. married university.degree no no no
## 2453 46 blue-collar married basic.9y no no no
## 2454 41 entrepreneur divorced university.degree no yes no
## 2455 32 blue-collar married high.school unknown yes no
## 2456 46 housemaid married basic.4y no yes no
## 2457 35 blue-collar married basic.9y no unknown unknown
## 2458 44 technician married professional.course no yes no
## 2459 52 blue-collar married basic.4y no yes no
## 2460 44 blue-collar married basic.4y unknown no no
## 2461 41 technician single university.degree unknown yes no
## 2462 33 admin. single university.degree no no no
## 2463 46 admin. single high.school no unknown unknown
## 2464 44 blue-collar divorced unknown no no yes
## 2465 57 retired unknown basic.4y no yes no
## 2466 55 unknown married unknown unknown yes no
## 2467 26 admin. married high.school no no no
## 2468 38 blue-collar divorced unknown no yes no
## 2469 41 technician married basic.9y no yes no
## 2470 53 retired divorced basic.4y no no no
## 2471 56 technician married professional.course unknown no no
## 2472 41 management married high.school no no no
## 2473 49 blue-collar married basic.9y no no no
## 2474 31 admin. married high.school no no no
## 2475 37 self-employed married professional.course no yes no
## 2476 40 blue-collar married basic.6y unknown no no
## 2477 43 blue-collar married basic.4y no no no
## 2478 48 self-employed married university.degree unknown yes no
## 2479 49 technician married high.school no yes no
## 2480 35 blue-collar married basic.9y unknown no no
## 2481 52 technician married basic.9y no yes no
## 2482 59 retired married basic.4y unknown yes no
## 2483 34 admin. single high.school no yes no
## 2484 33 admin. single high.school no unknown unknown
## 2485 33 blue-collar married basic.6y no no no
## 2486 46 blue-collar married basic.4y no no yes
## 2487 37 technician single university.degree no yes no
## 2488 41 admin. married university.degree no yes no
## 2489 39 blue-collar married basic.6y unknown no no
## 2490 52 blue-collar married basic.4y unknown unknown unknown
## 2491 41 services married basic.9y no yes yes
## 2492 57 blue-collar married unknown unknown yes no
## 2493 48 admin. married high.school no no yes
## 2494 42 blue-collar divorced basic.4y unknown yes no
## 2495 45 unknown married unknown no no yes
## 2496 40 housemaid single university.degree no no no
## 2497 50 admin. married high.school no no no
## 2498 49 services married basic.6y unknown yes no
## 2499 45 blue-collar married basic.4y no no no
## 2500 36 services married high.school no no no
## 2501 41 blue-collar divorced basic.9y unknown yes no
## 2502 47 blue-collar married basic.4y no yes no
## 2503 45 blue-collar married basic.4y no no no
## 2504 44 blue-collar married basic.6y unknown no no
## 2505 45 admin. married basic.6y unknown yes no
## 2506 48 technician married professional.course no no no
## 2507 36 services married high.school unknown no no
## 2508 40 unemployed divorced high.school no no no
## 2509 34 blue-collar married basic.9y no no no
## 2510 33 technician married professional.course no no no
## 2511 40 admin. married high.school unknown no no
## 2512 55 blue-collar married basic.9y unknown no no
## 2513 30 management married university.degree no no no
## 2514 36 blue-collar single basic.9y no no no
## 2515 34 admin. married high.school no no no
## 2516 55 technician divorced professional.course unknown yes yes
## 2517 34 admin. married high.school no yes yes
## 2518 34 blue-collar married basic.4y no no yes
## 2519 33 services married basic.4y no no no
## 2520 43 unemployed married university.degree unknown yes no
## 2521 46 admin. married university.degree no no no
## 2522 50 management married university.degree unknown no no
## 2523 48 entrepreneur married basic.4y no no no
## 2524 39 admin. single high.school unknown yes no
## 2525 27 services single high.school unknown no no
## 2526 55 blue-collar married basic.9y no no no
## 2527 42 unknown divorced high.school no no no
## 2528 53 retired married basic.4y unknown yes no
## 2529 41 blue-collar single basic.9y no no no
## 2530 36 blue-collar single basic.4y no no no
## 2531 36 technician single university.degree no no no
## 2532 46 management married basic.9y no yes no
## 2533 57 technician divorced basic.4y no yes no
## 2534 53 services married high.school unknown no no
## 2535 36 blue-collar married unknown unknown no no
## 2536 48 blue-collar married basic.9y no no no
## 2537 58 self-employed married university.degree no no no
## 2538 36 unknown single basic.6y unknown no no
## 2539 34 admin. single high.school no no no
## 2540 42 admin. married university.degree no no no
## 2541 55 retired married professional.course no yes no
## 2542 43 blue-collar married basic.4y unknown no no
## 2543 59 technician married unknown no yes no
## 2544 38 unknown married unknown unknown yes no
## 2545 46 blue-collar single basic.4y no no no
## 2546 52 technician married high.school no yes no
## 2547 54 management divorced university.degree no yes no
## 2548 32 housemaid single basic.4y no yes no
## 2549 36 admin. divorced university.degree no yes no
## 2550 35 blue-collar single professional.course no yes no
## 2551 44 services married high.school unknown yes no
## 2552 37 services married high.school no no no
## 2553 38 blue-collar single basic.4y no yes no
## 2554 38 blue-collar single basic.6y unknown yes no
## 2555 37 admin. divorced high.school no no no
## 2556 36 blue-collar married basic.9y unknown yes no
## 2557 47 blue-collar married basic.9y unknown yes no
## 2558 33 blue-collar married basic.4y unknown no no
## 2559 31 services married high.school no no no
## 2560 45 entrepreneur married university.degree no no no
## 2561 36 blue-collar married basic.9y no no no
## 2562 49 self-employed married basic.9y no yes no
## 2563 39 services married professional.course unknown yes no
## 2564 34 housemaid divorced basic.6y no no no
## 2565 39 technician married professional.course no no no
## 2566 26 admin. single high.school no yes no
## 2567 36 blue-collar married basic.4y no no no
## 2568 31 admin. single university.degree no yes no
## 2569 54 blue-collar divorced basic.4y no no no
## 2570 43 technician divorced professional.course no yes no
## 2571 53 blue-collar married basic.4y no no no
## 2572 28 admin. single high.school no yes no
## 2573 50 blue-collar single basic.9y unknown yes no
## 2574 44 admin. single university.degree unknown no no
## 2575 45 housemaid divorced university.degree no yes no
## 2576 56 admin. divorced unknown unknown yes no
## 2577 31 housemaid married basic.4y unknown no no
## 2578 47 management divorced university.degree no yes no
## 2579 39 admin. single high.school unknown no no
## 2580 35 admin. single university.degree no no no
## 2581 31 entrepreneur married high.school no yes no
## 2582 39 entrepreneur single university.degree no yes no
## 2583 45 blue-collar married basic.9y unknown no no
## 2584 39 blue-collar single basic.4y no no no
## 2585 60 management married university.degree unknown yes no
## 2586 45 admin. married basic.9y unknown yes no
## 2587 36 services single basic.6y unknown yes no
## 2588 32 admin. married university.degree no no no
## 2589 42 admin. single university.degree no no no
## 2590 36 blue-collar married basic.9y no no no
## 2591 49 blue-collar married basic.4y unknown yes no
## 2592 34 entrepreneur single unknown unknown yes no
## 2593 34 management married university.degree no yes no
## 2594 36 technician single professional.course no yes no
## 2595 48 admin. single university.degree no yes no
## 2596 32 management married basic.6y no yes no
## 2597 51 admin. married high.school no unknown unknown
## 2598 47 blue-collar married basic.4y no no yes
## 2599 43 technician divorced professional.course no no no
## 2600 29 services married high.school no yes yes
## 2601 59 retired married professional.course no no no
## 2602 29 admin. single university.degree no no no
## 2603 35 unemployed married basic.4y unknown unknown unknown
## 2604 36 blue-collar single basic.9y no no yes
## 2605 33 services married high.school unknown yes no
## 2606 34 admin. divorced basic.9y no no no
## 2607 25 blue-collar single basic.9y unknown no no
## 2608 48 management married university.degree no yes no
## 2609 25 blue-collar single basic.9y unknown yes no
## 2610 25 blue-collar single basic.9y unknown yes no
## 2611 52 self-employed married basic.4y unknown yes no
## 2612 34 blue-collar single basic.9y unknown no yes
## 2613 44 blue-collar married basic.4y no no yes
## 2614 36 blue-collar married basic.9y no no no
## 2615 40 blue-collar married basic.9y unknown yes no
## 2616 38 blue-collar married basic.6y unknown no no
## 2617 57 blue-collar married basic.4y unknown yes no
## 2618 45 unknown married unknown no yes no
## 2619 31 blue-collar married basic.6y no yes yes
## 2620 30 blue-collar single high.school no yes no
## 2621 31 admin. single high.school no no no
## 2622 40 admin. married unknown no no no
## 2623 44 admin. married university.degree unknown yes no
## 2624 28 student single basic.4y no no no
## 2625 47 blue-collar married unknown unknown yes yes
## 2626 47 blue-collar married unknown unknown yes no
## 2627 58 retired divorced university.degree no yes no
## 2628 32 services single professional.course no yes no
## 2629 50 services single high.school unknown yes no
## 2630 29 technician single professional.course no no no
## 2631 32 services single professional.course no no no
## 2632 26 blue-collar single basic.6y no no yes
## 2633 47 technician married professional.course no yes no
## 2634 47 blue-collar married professional.course unknown no yes
## 2635 38 housemaid married high.school unknown no no
## 2636 41 admin. single unknown no yes no
## 2637 41 blue-collar married basic.4y no no no
## 2638 58 management married university.degree unknown no no
## 2639 24 services single high.school no no no
## 2640 26 entrepreneur married university.degree no no no
## 2641 28 blue-collar married basic.9y no no no
## 2642 49 admin. married high.school unknown no no
## 2643 55 blue-collar married basic.4y unknown yes no
## 2644 38 blue-collar single basic.9y no no no
## 2645 50 blue-collar married basic.6y unknown no no
## 2646 46 blue-collar married basic.4y unknown no no
## 2647 35 admin. married university.degree no no no
## 2648 30 technician single professional.course no no no
## 2649 39 entrepreneur married basic.9y unknown no no
## 2650 46 blue-collar married basic.6y unknown no yes
## 2651 34 management married university.degree no no yes
## 2652 36 management married basic.9y no yes no
## 2653 40 admin. married university.degree no yes no
## 2654 32 admin. divorced high.school no yes no
## 2655 29 admin. married university.degree no yes no
## 2656 50 unemployed married professional.course no no no
## 2657 53 admin. divorced university.degree no yes yes
## 2658 46 management married basic.4y unknown no no
## 2659 57 blue-collar married basic.4y unknown yes no
## 2660 57 admin. married university.degree no yes no
## 2661 29 technician married university.degree no no yes
## 2662 32 blue-collar married basic.9y no unknown unknown
## 2663 25 technician single university.degree no yes no
## 2664 43 admin. married university.degree unknown yes no
## 2665 26 unemployed single basic.9y no no yes
## 2666 34 admin. married university.degree no yes no
## 2667 37 technician single university.degree no no no
## 2668 34 technician married university.degree no yes no
## 2669 53 admin. married basic.9y no yes yes
## 2670 28 technician single professional.course no yes no
## 2671 48 blue-collar married basic.9y no yes no
## 2672 36 blue-collar married basic.4y unknown yes no
## 2673 54 admin. married high.school no yes yes
## 2674 43 admin. married university.degree unknown yes no
## 2675 31 self-employed married basic.9y no no no
## 2676 31 student single unknown unknown yes no
## 2677 31 blue-collar divorced basic.9y no no no
## 2678 40 blue-collar single basic.4y unknown no no
## 2679 44 services married high.school no no no
## 2680 36 admin. married basic.6y no no no
## 2681 30 admin. married university.degree no yes no
## 2682 35 self-employed married university.degree unknown yes yes
## 2683 49 management married university.degree no no yes
## 2684 50 self-employed married basic.4y unknown no no
## 2685 29 technician single professional.course no yes yes
## 2686 29 blue-collar married basic.6y no no no
## 2687 41 entrepreneur married high.school unknown no no
## 2688 46 admin. married university.degree no no no
## 2689 54 retired divorced professional.course no yes no
## 2690 49 blue-collar married unknown no no no
## 2691 41 admin. married high.school no yes no
## 2692 26 unemployed single professional.course no no no
## 2693 43 admin. married university.degree no yes no
## 2694 40 services single high.school unknown yes no
## 2695 35 management married university.degree no no no
## 2696 34 admin. single high.school no no no
## 2697 36 admin. divorced university.degree no yes no
## 2698 50 blue-collar married unknown unknown no no
## 2699 45 technician divorced professional.course no yes no
## 2700 49 technician married university.degree no yes no
## 2701 59 admin. married high.school unknown yes yes
## 2702 35 blue-collar married basic.9y no no no
## 2703 41 blue-collar married basic.9y no yes no
## 2704 34 blue-collar married basic.9y no yes no
## 2705 56 blue-collar married basic.9y unknown yes no
## 2706 46 blue-collar married basic.6y unknown yes no
## 2707 50 retired married basic.4y unknown yes no
## 2708 46 admin. single high.school no no no
## 2709 39 blue-collar married basic.4y unknown no yes
## 2710 27 technician single professional.course no no no
## 2711 59 technician married basic.6y unknown no no
## 2712 55 blue-collar divorced basic.9y no yes no
## 2713 36 admin. single university.degree no no no
## 2714 58 retired married basic.6y unknown no no
## 2715 36 services married high.school no unknown unknown
## 2716 37 technician married university.degree no no no
## 2717 34 services married high.school no no no
## 2718 32 admin. married university.degree no no no
## 2719 40 technician married professional.course no no no
## 2720 48 blue-collar married high.school unknown no no
## 2721 56 blue-collar married basic.9y unknown no no
## 2722 36 blue-collar married high.school no yes yes
## 2723 48 entrepreneur married basic.4y no no yes
## 2724 28 student single basic.9y unknown yes no
## 2725 55 unemployed married basic.4y unknown no no
## 2726 31 blue-collar married basic.9y no unknown unknown
## 2727 57 retired single high.school no yes no
## 2728 42 technician married high.school no no no
## 2729 44 admin. single high.school no yes no
## 2730 30 blue-collar married basic.9y no yes no
## 2731 37 technician married professional.course no yes no
## 2732 45 blue-collar married basic.4y unknown yes no
## 2733 43 management married professional.course no no no
## 2734 32 services married high.school unknown yes no
## 2735 31 services single high.school no yes no
## 2736 49 blue-collar married basic.6y no yes no
## 2737 36 admin. divorced university.degree no no no
## 2738 40 blue-collar single basic.9y no yes no
## 2739 29 unemployed single university.degree no no no
## 2740 37 blue-collar married basic.9y no yes no
## 2741 33 blue-collar single basic.9y unknown yes yes
## 2742 36 self-employed married basic.9y no yes yes
## 2743 46 unemployed married high.school unknown no no
## 2744 33 entrepreneur married basic.9y unknown no no
## 2745 32 entrepreneur married high.school no no no
## 2746 28 blue-collar single basic.9y no no yes
## 2747 35 technician married university.degree no yes no
## 2748 47 entrepreneur married university.degree no yes no
## 2749 51 blue-collar married high.school no no yes
## 2750 51 admin. married basic.6y unknown yes no
## 2751 34 blue-collar single university.degree no yes yes
## 2752 42 admin. married unknown no no no
## 2753 32 services married high.school no no yes
## 2754 46 unemployed divorced high.school unknown yes yes
## 2755 37 services married high.school no yes no
## 2756 58 management married basic.9y no no no
## 2757 25 services divorced basic.4y no yes no
## 2758 56 technician married professional.course no no yes
## 2759 39 admin. married university.degree no no no
## 2760 40 services divorced high.school no no no
## 2761 48 management married university.degree no no no
## 2762 53 blue-collar married basic.9y unknown yes no
## 2763 38 admin. single basic.9y no no no
## 2764 42 technician divorced professional.course unknown no yes
## 2765 26 admin. single high.school no yes no
## 2766 50 management married high.school unknown no yes
## 2767 50 management married university.degree unknown no no
## 2768 46 services married basic.4y unknown no no
## 2769 53 technician married high.school no no no
## 2770 35 admin. married university.degree no yes no
## 2771 41 admin. single university.degree unknown no no
## 2772 27 admin. single high.school no no no
## 2773 43 admin. divorced high.school no yes no
## 2774 51 blue-collar married basic.9y unknown no no
## 2775 35 admin. single basic.4y unknown no no
## 2776 38 self-employed single university.degree no no no
## 2777 41 technician single professional.course no yes no
## 2778 29 blue-collar single basic.6y no no no
## 2779 35 admin. married university.degree no yes no
## 2780 45 admin. divorced university.degree no no no
## 2781 39 admin. married high.school no no no
## 2782 28 admin. single university.degree no yes no
## 2783 42 admin. single university.degree no yes no
## 2784 59 blue-collar married basic.4y no no no
## 2785 49 blue-collar married basic.4y unknown yes no
## 2786 34 admin. married university.degree no yes no
## 2787 41 admin. married high.school no no no
## 2788 48 technician married professional.course unknown yes no
## 2789 39 blue-collar married basic.4y no no no
## 2790 41 blue-collar married basic.4y unknown no no
## 2791 56 blue-collar single basic.6y no yes no
## 2792 54 blue-collar divorced unknown unknown yes no
## 2793 60 entrepreneur married basic.4y no no no
## 2794 34 technician married professional.course no no yes
## 2795 39 blue-collar married basic.4y unknown unknown unknown
## 2796 38 technician married professional.course no yes no
## 2797 35 housemaid married basic.4y no no no
## 2798 32 blue-collar married basic.9y no no no
## 2799 47 blue-collar married high.school unknown no no
## 2800 50 blue-collar single basic.9y unknown no no
## 2801 24 services married high.school no no no
## 2802 53 blue-collar married basic.9y no no no
## 2803 34 blue-collar married basic.9y no no no
## 2804 57 retired married high.school unknown yes no
## 2805 26 student single unknown unknown no no
## 2806 40 admin. married university.degree no no no
## 2807 28 management married high.school unknown no no
## 2808 30 blue-collar single basic.4y unknown unknown unknown
## 2809 26 blue-collar single high.school unknown no no
## 2810 44 blue-collar divorced basic.4y unknown yes no
## 2811 56 blue-collar married basic.9y unknown yes no
## 2812 57 management divorced university.degree no yes no
## 2813 35 admin. divorced university.degree no yes no
## 2814 48 technician single high.school no yes no
## 2815 44 technician single university.degree no yes no
## 2816 52 blue-collar married basic.9y no yes no
## 2817 43 blue-collar married basic.4y unknown no no
## 2818 39 admin. married high.school no yes no
## 2819 46 services married high.school unknown yes no
## 2820 50 blue-collar married basic.9y no yes no
## 2821 37 admin. married university.degree unknown no no
## 2822 29 entrepreneur married basic.6y no no no
## 2823 31 blue-collar married basic.4y unknown no yes
## 2824 36 services married high.school unknown yes no
## 2825 25 blue-collar single basic.4y no no no
## 2826 33 blue-collar single basic.9y unknown yes no
## 2827 32 admin. married university.degree no no no
## 2828 52 self-employed single basic.4y unknown yes no
## 2829 30 entrepreneur married high.school no yes no
## 2830 42 blue-collar married basic.6y unknown no no
## 2831 41 management married university.degree no no no
## 2832 35 services married high.school unknown no no
## 2833 34 blue-collar married basic.4y no no no
## 2834 39 management married university.degree no no no
## 2835 24 services married high.school no no yes
## 2836 29 admin. single university.degree no yes no
## 2837 26 blue-collar single high.school no yes no
## 2838 35 admin. married high.school no yes yes
## 2839 32 services married high.school no no yes
## 2840 36 entrepreneur married university.degree no no yes
## 2841 32 blue-collar married basic.9y unknown yes no
## 2842 27 services married high.school no yes no
## 2843 40 blue-collar married basic.6y unknown no no
## 2844 56 retired married professional.course unknown no no
## 2845 33 admin. married high.school no yes yes
## 2846 36 admin. married university.degree no yes no
## 2847 49 blue-collar married basic.4y unknown no no
## 2848 59 retired divorced basic.9y unknown yes no
## 2849 29 blue-collar single basic.9y no yes no
## 2850 32 services married professional.course no yes no
## 2851 53 blue-collar married basic.6y no yes no
## 2852 48 technician married high.school unknown yes no
## 2853 56 blue-collar married basic.4y unknown yes no
## 2854 37 services single basic.9y no yes no
## 2855 43 self-employed single professional.course unknown no no
## 2856 46 blue-collar married basic.6y no no no
## 2857 28 blue-collar single basic.9y no no no
## 2858 44 housemaid married basic.9y no no no
## 2859 31 admin. single basic.9y no yes no
## 2860 36 technician married professional.course no no yes
## 2861 51 admin. single basic.6y no yes no
## 2862 29 technician married university.degree no no no
## 2863 28 admin. single university.degree no yes no
## 2864 49 self-employed married professional.course no no no
## 2865 30 technician married university.degree no yes no
## 2866 36 services married basic.9y unknown no no
## 2867 57 blue-collar married basic.4y unknown no no
## 2868 52 blue-collar married basic.4y no no no
## 2869 29 blue-collar single unknown no no no
## 2870 45 management married university.degree no no no
## 2871 52 management married university.degree no yes no
## 2872 24 admin. married high.school no yes no
## 2873 44 blue-collar divorced basic.4y unknown yes yes
## 2874 46 services divorced high.school no no no
## 2875 25 student single high.school no no no
## 2876 33 blue-collar single basic.9y no yes no
## 2877 29 services single basic.9y no no no
## 2878 44 admin. single university.degree no yes no
## 2879 41 blue-collar married basic.9y unknown no no
## 2880 50 technician married professional.course no no no
## 2881 41 blue-collar married basic.9y unknown no no
## 2882 26 services single high.school no no no
## 2883 48 unknown married basic.4y unknown no no
## 2884 36 admin. married university.degree no no no
## 2885 54 technician divorced basic.9y unknown no no
## 2886 26 admin. single university.degree unknown no no
## 2887 35 technician married basic.9y no no no
## 2888 54 services divorced high.school unknown yes no
## 2889 28 technician single professional.course no no no
## 2890 52 services married university.degree no no no
## 2891 31 admin. married basic.9y unknown yes no
## 2892 28 services single high.school no yes no
## 2893 32 blue-collar married basic.9y no no no
## 2894 38 admin. married university.degree no yes no
## 2895 36 blue-collar married basic.9y no no no
## 2896 38 management married university.degree no no no
## 2897 35 admin. married high.school unknown yes no
## 2898 39 housemaid married high.school no yes no
## 2899 31 housemaid divorced high.school no yes no
## 2900 39 self-employed married high.school no yes no
## 2901 36 housemaid married high.school no no no
## 2902 29 services married basic.9y unknown no no
## 2903 37 management married university.degree no no no
## 2904 41 management married unknown no no no
## 2905 31 technician married university.degree no no no
## 2906 50 blue-collar married basic.4y unknown yes no
## 2907 36 admin. married basic.9y no no no
## 2908 40 management married unknown no no no
## 2909 37 admin. married university.degree no no no
## 2910 28 unemployed single high.school no no no
## 2911 50 services divorced basic.4y unknown unknown unknown
## 2912 38 housemaid married basic.9y no no no
## 2913 43 blue-collar married basic.9y unknown no no
## 2914 52 technician married high.school unknown no no
## 2915 30 admin. single university.degree no no no
## 2916 33 admin. divorced high.school no yes no
## 2917 52 technician married basic.9y no no no
## 2918 48 management married university.degree no yes no
## 2919 40 admin. divorced professional.course no no no
## 2920 56 management married basic.4y unknown unknown unknown
## 2921 53 technician married high.school no no no
## 2922 33 blue-collar married professional.course no yes no
## 2923 54 retired married basic.9y unknown no no
## 2924 35 technician married professional.course no no no
## 2925 33 services single high.school no no no
## 2926 36 services single basic.9y no yes no
## 2927 41 housemaid married university.degree unknown no no
## 2928 35 admin. married university.degree no no no
## 2929 35 admin. married university.degree no yes no
## 2930 34 admin. married high.school no yes yes
## 2931 29 management single university.degree no yes no
## 2932 32 admin. single university.degree no yes no
## 2933 31 blue-collar married basic.9y no yes yes
## 2934 46 blue-collar married basic.4y no yes no
## 2935 48 technician single university.degree unknown yes no
## 2936 42 retired married basic.9y unknown no no
## 2937 32 technician divorced professional.course no yes no
## 2938 30 admin. married university.degree no yes no
## 2939 32 services single high.school no no no
## 2940 28 services single basic.9y no yes no
## 2941 28 blue-collar married basic.9y no yes no
## 2942 40 blue-collar married basic.6y no yes no
## 2943 46 blue-collar married basic.9y unknown yes no
## 2944 38 entrepreneur married basic.6y no no no
## 2945 47 blue-collar married basic.4y no no no
## 2946 37 services married high.school no no no
## 2947 55 technician married basic.4y unknown yes no
## 2948 28 admin. single university.degree no yes no
## 2949 43 blue-collar single basic.9y no yes no
## 2950 56 unknown married unknown unknown yes no
## 2951 33 management single university.degree no no yes
## 2952 35 admin. divorced university.degree no yes no
## 2953 41 blue-collar divorced basic.6y no unknown unknown
## 2954 59 entrepreneur divorced high.school unknown yes no
## 2955 29 services single university.degree no no no
## 2956 30 self-employed married basic.9y no yes no
## 2957 39 admin. single high.school unknown yes no
## 2958 34 blue-collar married basic.9y no no no
## 2959 36 blue-collar married basic.9y unknown yes yes
## 2960 37 technician married professional.course unknown yes no
## 2961 30 self-employed single high.school no yes yes
## 2962 47 admin. married high.school no no no
## 2963 41 blue-collar married high.school no yes no
## 2964 27 services single high.school no yes yes
## 2965 27 blue-collar divorced unknown no yes no
## 2966 39 blue-collar divorced basic.6y unknown no no
## 2967 32 services married high.school no no no
## 2968 42 blue-collar married basic.4y unknown yes yes
## 2969 37 services married high.school no no no
## 2970 51 blue-collar married basic.9y unknown no no
## 2971 48 technician married high.school no no no
## 2972 50 management single university.degree no no no
## 2973 25 admin. married high.school no yes no
## 2974 49 blue-collar married basic.9y unknown no no
## 2975 44 self-employed single basic.6y unknown yes no
## 2976 48 admin. divorced professional.course no yes no
## 2977 42 blue-collar married basic.9y unknown no no
## 2978 35 management married university.degree no yes no
## 2979 28 admin. married high.school no yes no
## 2980 56 entrepreneur married university.degree no yes no
## 2981 60 retired married basic.9y unknown yes no
## 2982 38 entrepreneur married basic.9y no no no
## 2983 41 self-employed married high.school unknown no no
## 2984 33 admin. married high.school no yes no
## 2985 48 blue-collar married basic.9y no yes no
## 2986 38 technician married university.degree unknown yes no
## 2987 32 blue-collar married basic.4y unknown yes no
## 2988 31 management married high.school no no no
## 2989 43 blue-collar divorced basic.9y no yes no
## 2990 44 management married high.school no yes no
## 2991 44 admin. married university.degree unknown no no
## 2992 33 services married high.school no no yes
## 2993 36 admin. married basic.9y no no no
## 2994 47 technician married professional.course unknown no no
## 2995 30 admin. married university.degree no no no
## 2996 32 blue-collar married basic.4y no no no
## 2997 36 retired married high.school no no no
## 2998 24 student single university.degree no yes yes
## 2999 31 admin. single university.degree no no no
## 3000 51 admin. divorced university.degree unknown no no
## 3001 33 admin. married university.degree no no no
## 3002 28 services single basic.9y no yes no
## 3003 43 blue-collar married unknown unknown no no
## 3004 43 blue-collar married basic.6y no no no
## 3005 33 self-employed married university.degree no yes no
## 3006 31 services married basic.9y no yes no
## 3007 39 admin. married professional.course no no no
## 3008 24 student single high.school unknown yes yes
## 3009 30 admin. single university.degree unknown no yes
## 3010 28 blue-collar married basic.9y no no no
## 3011 41 technician single university.degree unknown yes no
## 3012 39 blue-collar married basic.9y no no no
## 3013 37 technician married basic.9y no no no
## 3014 51 blue-collar married basic.4y no no yes
## 3015 50 management married university.degree unknown unknown unknown
## 3016 53 technician married high.school no no yes
## 3017 53 technician married unknown no yes no
## 3018 52 blue-collar married basic.4y no no yes
## 3019 33 services married high.school no no no
## 3020 36 self-employed single university.degree no yes no
## 3021 43 admin. divorced high.school no no no
## 3022 39 self-employed married basic.4y unknown no no
## 3023 43 technician divorced university.degree unknown no no
## 3024 56 blue-collar married basic.4y unknown yes yes
## 3025 52 admin. married university.degree no no yes
## 3026 36 technician married professional.course no yes no
## 3027 30 services married high.school no yes no
## 3028 30 management divorced high.school no yes no
## 3029 36 housemaid married basic.4y unknown no no
## 3030 38 admin. divorced high.school no yes no
## 3031 38 blue-collar married basic.6y no yes no
## 3032 39 entrepreneur divorced university.degree no yes no
## 3033 34 management married high.school no no no
## 3034 35 unknown single basic.4y unknown yes yes
## 3035 59 retired married basic.4y unknown yes no
## 3036 32 blue-collar married basic.9y no yes no
## 3037 52 self-employed single university.degree unknown yes no
## 3038 29 technician married professional.course no yes no
## 3039 41 blue-collar married basic.4y unknown no no
## 3040 37 services divorced high.school no yes no
## 3041 49 services single basic.4y unknown no no
## 3042 46 admin. divorced university.degree no no no
## 3043 40 admin. single unknown unknown no yes
## 3044 32 student single university.degree no no no
## 3045 40 blue-collar married basic.6y unknown yes no
## 3046 32 admin. single professional.course no no no
## 3047 47 management married basic.4y unknown yes no
## 3048 38 blue-collar married basic.9y no yes yes
## 3049 32 management single high.school no yes no
## 3050 34 admin. single high.school no no yes
## 3051 53 technician married professional.course unknown yes yes
## 3052 36 technician married university.degree no yes no
## 3053 45 entrepreneur married basic.4y unknown no no
## 3054 44 blue-collar divorced basic.6y no no no
## 3055 44 blue-collar divorced basic.9y no no no
## 3056 47 services married unknown unknown yes yes
## 3057 58 retired divorced university.degree no yes no
## 3058 28 services single high.school no yes no
## 3059 46 technician married professional.course no no no
## 3060 48 admin. married high.school no yes no
## 3061 32 blue-collar single basic.6y no yes no
## 3062 48 technician married unknown no yes no
## 3063 49 management married university.degree no no no
## 3064 27 services single high.school no yes no
## 3065 46 admin. married professional.course no no no
## 3066 47 technician married professional.course no unknown unknown
## 3067 51 blue-collar married basic.9y unknown no no
## 3068 57 retired married basic.4y unknown yes no
## 3069 54 blue-collar married basic.4y unknown yes yes
## 3070 33 admin. married professional.course no no no
## 3071 50 blue-collar married basic.6y no no no
## 3072 45 services divorced high.school unknown yes no
## 3073 49 services divorced basic.9y no no no
## 3074 45 services married basic.9y no no yes
## 3075 36 technician married professional.course no yes no
## 3076 30 self-employed single high.school no yes no
## 3077 31 technician single university.degree unknown yes yes
## 3078 35 blue-collar married basic.6y no yes yes
## 3079 36 technician married basic.6y no yes no
## 3080 51 services married high.school unknown yes yes
## 3081 41 management married university.degree no no no
## 3082 37 blue-collar married basic.9y no yes no
## 3083 36 management married basic.9y no unknown unknown
## 3084 28 admin. single university.degree no yes no
## 3085 54 housemaid divorced basic.4y no no no
## 3086 38 admin. single university.degree unknown yes no
## 3087 43 blue-collar married basic.4y unknown no yes
## 3088 30 student single basic.9y no no no
## 3089 51 blue-collar married basic.4y unknown yes no
## 3090 31 technician married university.degree no no no
## 3091 42 blue-collar married basic.4y no yes no
## 3092 49 blue-collar married basic.4y unknown yes no
## 3093 34 blue-collar married basic.9y unknown yes yes
## 3094 47 services divorced high.school no no no
## 3095 42 blue-collar married basic.9y no yes no
## 3096 31 blue-collar married basic.9y no unknown unknown
## 3097 52 management married high.school unknown no no
## 3098 56 housemaid married basic.4y no no no
## 3099 36 blue-collar married basic.6y unknown unknown unknown
## 3100 45 admin. married university.degree no no no
## 3101 39 housemaid married university.degree no no no
## 3102 46 self-employed married basic.9y unknown no no
## 3103 32 blue-collar married basic.6y unknown yes no
## 3104 29 management single university.degree no yes yes
## 3105 41 blue-collar married basic.9y no no no
## 3106 35 admin. married university.degree no yes yes
## 3107 31 blue-collar single basic.9y no no no
## 3108 36 technician single professional.course no no yes
## 3109 41 technician married university.degree no no no
## 3110 59 retired married basic.9y unknown no no
## 3111 45 unemployed married basic.6y unknown no no
## 3112 32 blue-collar divorced basic.9y no no no
## 3113 33 admin. single high.school unknown yes no
## 3114 35 self-employed married university.degree no unknown unknown
## 3115 37 blue-collar married professional.course no no no
## 3116 47 technician married professional.course no no no
## 3117 28 blue-collar married basic.6y no no no
## 3118 36 admin. married high.school no no no
## 3119 36 blue-collar single high.school no yes yes
## 3120 51 blue-collar married basic.4y no yes yes
## 3121 32 admin. married high.school no no no
## 3122 50 unemployed married basic.4y unknown yes no
## 3123 32 admin. married high.school unknown yes no
## 3124 52 technician divorced basic.9y no yes yes
## 3125 30 blue-collar single basic.9y unknown no yes
## 3126 48 admin. married university.degree no yes no
## 3127 25 blue-collar single basic.9y unknown yes no
## 3128 28 admin. single high.school no no no
## 3129 28 self-employed single basic.9y no no no
## 3130 34 blue-collar married basic.6y no no no
## 3131 42 services married professional.course no no no
## 3132 57 retired married basic.4y no yes no
## 3133 44 admin. married basic.4y unknown no no
## 3134 28 admin. single basic.9y no yes yes
## 3135 25 self-employed single university.degree no no no
## 3136 29 housemaid single high.school no no no
## 3137 28 self-employed married professional.course no no no
## 3138 32 admin. married high.school no no no
## 3139 59 technician married university.degree unknown unknown unknown
## 3140 55 admin. married university.degree no no no
## 3141 43 management married university.degree no unknown unknown
## 3142 58 retired married basic.4y unknown no no
## 3143 54 blue-collar married basic.4y unknown no no
## 3144 25 blue-collar married basic.4y no no no
## 3145 24 technician single professional.course unknown no no
## 3146 53 self-employed married university.degree no no no
## 3147 36 admin. married university.degree no no no
## 3148 49 housemaid married basic.4y no no no
## 3149 51 blue-collar married basic.4y no unknown unknown
## 3150 37 housemaid married high.school no yes yes
## 3151 41 blue-collar married basic.9y no no no
## 3152 40 blue-collar married basic.9y no yes no
## 3153 35 services married professional.course unknown yes yes
## 3154 24 services single professional.course no yes no
## 3155 34 technician married university.degree no yes no
## 3156 30 blue-collar married basic.9y no no no
## 3157 40 admin. married university.degree unknown yes yes
## 3158 48 admin. married basic.9y unknown no yes
## 3159 35 admin. single high.school no yes yes
## 3160 26 admin. married high.school no no yes
## 3161 45 blue-collar married basic.4y unknown yes yes
## 3162 35 admin. married university.degree no yes no
## 3163 32 blue-collar married basic.9y no yes no
## 3164 34 blue-collar married basic.9y no yes no
## 3165 33 services single high.school no no yes
## 3166 37 blue-collar married basic.9y unknown no no
## 3167 29 admin. single basic.9y unknown no no
## 3168 43 services divorced high.school no yes no
## 3169 32 housemaid single high.school no unknown unknown
## 3170 33 unemployed divorced professional.course no unknown unknown
## 3171 26 unemployed married high.school no yes no
## 3172 39 blue-collar married basic.4y unknown yes no
## 3173 38 blue-collar married basic.6y unknown yes yes
## 3174 48 blue-collar married professional.course no no no
## 3175 42 entrepreneur married university.degree no no no
## 3176 35 blue-collar divorced basic.9y no yes yes
## 3177 42 blue-collar divorced basic.6y no yes no
## 3178 36 blue-collar single basic.9y unknown no no
## 3179 28 blue-collar married basic.9y no no yes
## 3180 32 technician single basic.9y no yes no
## 3181 28 blue-collar divorced high.school no yes no
## 3182 41 blue-collar divorced basic.9y no no no
## 3183 32 admin. married university.degree unknown unknown unknown
## 3184 42 blue-collar divorced basic.9y no unknown unknown
## 3185 29 technician single university.degree no unknown unknown
## 3186 52 entrepreneur married university.degree no no no
## 3187 55 services divorced high.school no no yes
## 3188 24 services single high.school no no no
## 3189 46 admin. divorced high.school unknown no yes
## 3190 31 admin. divorced university.degree no no no
## 3191 34 admin. married university.degree no no no
## 3192 45 entrepreneur married basic.9y no no no
## 3193 45 blue-collar married basic.9y unknown yes no
## 3194 39 technician divorced professional.course no unknown unknown
## 3195 44 technician divorced high.school no yes no
## 3196 29 technician single university.degree no yes no
## 3197 32 technician married professional.course no no yes
## 3198 32 technician single high.school no yes yes
## 3199 48 technician divorced professional.course no no yes
## 3200 32 blue-collar married professional.course no yes no
## 3201 38 blue-collar single basic.4y no yes no
## 3202 28 unemployed single high.school no yes yes
## 3203 46 blue-collar married basic.4y no unknown unknown
## 3204 46 management married basic.9y unknown no no
## 3205 26 blue-collar married basic.4y no yes no
## 3206 33 blue-collar married basic.9y no yes no
## 3207 28 management married university.degree no no no
## 3208 52 management married basic.4y unknown no no
## 3209 35 admin. single university.degree no no no
## 3210 26 services married high.school no no no
## 3211 47 admin. married university.degree no no no
## 3212 26 blue-collar married basic.4y no no yes
## 3213 24 admin. single high.school no yes no
## 3214 31 technician married professional.course no no no
## 3215 60 admin. married professional.course no yes no
## 3216 32 blue-collar married basic.6y unknown yes no
## 3217 24 blue-collar married basic.9y no yes no
## 3218 28 admin. married high.school no no no
## 3219 38 admin. divorced high.school no no no
## 3220 37 blue-collar married professional.course no yes no
## 3221 36 services divorced university.degree no no no
## 3222 47 technician married professional.course unknown yes no
## 3223 49 technician married professional.course unknown yes no
## 3224 31 blue-collar married basic.4y no yes no
## 3225 36 services married high.school unknown yes no
## 3226 51 blue-collar married basic.6y unknown yes no
## 3227 51 services married professional.course unknown no no
## 3228 31 blue-collar married basic.9y no yes no
## 3229 42 services married basic.9y unknown no no
## 3230 32 management single basic.4y no no no
## 3231 30 technician single professional.course no yes no
## 3232 27 blue-collar married basic.9y no yes no
## 3233 56 blue-collar married basic.4y unknown yes no
## 3234 57 housemaid married basic.6y no no yes
## 3235 27 services married professional.course no yes no
## 3236 43 technician single professional.course no yes no
## 3237 44 technician single professional.course unknown no no
## 3238 52 self-employed married university.degree unknown yes no
## 3239 48 blue-collar married basic.6y no no no
## 3240 31 technician married basic.9y unknown yes no
## 3241 33 management married university.degree no yes no
## 3242 34 blue-collar married basic.9y no yes no
## 3243 59 housemaid married unknown no no no
## 3244 29 blue-collar single professional.course no yes no
## 3245 46 entrepreneur married university.degree no yes no
## 3246 46 blue-collar married basic.9y unknown no no
## 3247 31 admin. unknown high.school no no no
## 3248 33 blue-collar married basic.4y unknown no no
## 3249 34 services married high.school no no no
## 3250 36 services married high.school no yes no
## 3251 47 services divorced high.school no no no
## 3252 49 self-employed single basic.9y no no no
## 3253 54 blue-collar married basic.9y unknown no yes
## 3254 35 admin. married university.degree no yes yes
## 3255 25 services single high.school no no no
## 3256 42 management married basic.6y unknown yes no
## 3257 26 admin. single high.school no no no
## 3258 36 technician married professional.course no no no
## 3259 47 technician single professional.course unknown no no
## 3260 43 services married basic.9y unknown no no
## 3261 27 admin. married university.degree no yes no
## 3262 40 housemaid married high.school unknown yes no
## 3263 56 management married unknown no no no
## 3264 59 admin. married basic.6y no yes no
## 3265 49 technician married professional.course unknown yes no
## 3266 40 blue-collar married basic.9y unknown no no
## 3267 43 housemaid married basic.4y unknown no no
## 3268 36 blue-collar married basic.9y no yes no
## 3269 53 technician married professional.course no yes no
## 3270 53 technician divorced professional.course no no no
## 3271 52 services married high.school unknown yes no
## 3272 31 unemployed single professional.course no no no
## 3273 54 technician single university.degree unknown unknown unknown
## 3274 45 blue-collar married basic.9y unknown no no
## 3275 31 admin. married high.school no yes no
## 3276 41 entrepreneur single university.degree unknown yes no
## 3277 25 admin. married high.school no no yes
## 3278 49 admin. divorced university.degree no no no
## 3279 53 blue-collar married high.school no no no
## 3280 40 admin. married professional.course unknown yes no
## 3281 40 unemployed married basic.4y unknown yes no
## 3282 48 technician married unknown no yes yes
## 3283 30 technician married university.degree unknown no no
## 3284 49 blue-collar married unknown unknown yes no
## 3285 45 technician single professional.course no yes yes
## 3286 34 services married high.school no yes no
## 3287 41 blue-collar married basic.4y unknown no no
## 3288 37 admin. married high.school unknown yes yes
## 3289 25 management single basic.4y no no no
## 3290 50 blue-collar married basic.4y no yes no
## 3291 43 blue-collar married basic.4y no yes no
## 3292 41 blue-collar married basic.9y no no no
## 3293 34 management single university.degree no no no
## 3294 47 services married high.school no no no
## 3295 52 self-employed married basic.4y unknown yes no
## 3296 42 technician divorced university.degree no no no
## 3297 28 admin. married high.school no no no
## 3298 43 admin. married university.degree no yes no
## 3299 41 services married basic.9y no no no
## 3300 33 technician married high.school no no no
## 3301 53 admin. married university.degree no yes no
## 3302 49 blue-collar married basic.4y unknown no no
## 3303 45 blue-collar married basic.4y unknown yes no
## 3304 33 services married university.degree no yes no
## 3305 45 blue-collar married basic.4y unknown yes no
## 3306 30 unemployed single basic.9y no no no
## 3307 49 technician married professional.course no yes no
## 3308 38 technician married professional.course no yes yes
## 3309 39 services divorced high.school no yes no
## 3310 50 blue-collar married basic.4y unknown no yes
## 3311 58 blue-collar married unknown no yes no
## 3312 46 blue-collar married basic.6y no yes no
## 3313 46 housemaid married high.school unknown no no
## 3314 40 technician married professional.course no no no
## 3315 36 admin. married high.school no no no
## 3316 53 self-employed married basic.4y no no no
## 3317 39 services married high.school unknown yes no
## 3318 39 services married high.school no no yes
## 3319 39 services married high.school unknown yes yes
## 3320 50 blue-collar married basic.9y unknown yes yes
## 3321 40 admin. married high.school no no no
## 3322 56 technician married professional.course unknown no no
## 3323 41 technician married professional.course no unknown unknown
## 3324 36 blue-collar married unknown unknown no no
## 3325 42 blue-collar married unknown unknown yes yes
## 3326 38 technician married professional.course unknown yes no
## 3327 30 services divorced basic.9y no yes no
## 3328 42 technician married basic.9y no no no
## 3329 38 technician married professional.course no no no
## 3330 45 management married unknown unknown no no
## 3331 33 blue-collar married basic.9y no no no
## 3332 41 services married high.school unknown yes no
## 3333 36 admin. married high.school no yes yes
## 3334 21 admin. single basic.9y no yes yes
## 3335 29 admin. married high.school no yes no
## 3336 53 management married university.degree unknown yes no
## 3337 39 blue-collar married basic.6y no no yes
## 3338 31 blue-collar single basic.9y no yes no
## 3339 44 admin. divorced university.degree unknown yes yes
## 3340 38 admin. single basic.6y unknown no no
## 3341 47 entrepreneur married unknown unknown no no
## 3342 36 blue-collar married basic.9y no no no
## 3343 27 blue-collar single basic.9y no no no
## 3344 45 blue-collar married basic.9y unknown no no
## 3345 34 blue-collar married basic.4y no no no
## 3346 40 blue-collar married basic.4y no no no
## 3347 36 admin. divorced high.school no yes yes
## 3348 53 blue-collar married basic.4y no no no
## 3349 40 admin. divorced university.degree no yes no
## 3350 25 blue-collar married basic.9y no no no
## 3351 42 admin. married university.degree unknown no no
## 3352 47 admin. divorced professional.course unknown no no
## 3353 46 admin. divorced university.degree no no no
## 3354 35 technician married professional.course no no no
## 3355 45 blue-collar married basic.6y unknown no no
## 3356 43 technician married professional.course no no no
## 3357 58 admin. divorced basic.9y unknown no no
## 3358 43 admin. married high.school no yes no
## 3359 33 blue-collar single basic.9y no yes no
## 3360 49 technician married professional.course no yes no
## 3361 35 admin. married high.school no no no
## 3362 45 blue-collar married basic.9y unknown no no
## 3363 36 admin. divorced high.school no no no
## 3364 45 services married basic.9y no yes no
## 3365 34 services married high.school unknown yes no
## 3366 54 management married high.school unknown yes no
## 3367 40 services married high.school no no no
## 3368 31 blue-collar married basic.6y no yes no
## 3369 52 technician married basic.9y unknown no no
## 3370 46 admin. married basic.4y no no no
## 3371 39 unemployed married professional.course no no yes
## 3372 59 technician married university.degree unknown no no
## 3373 43 unknown married university.degree no no no
## 3374 42 self-employed married high.school no no no
## 3375 42 admin. single university.degree no no no
## 3376 38 blue-collar single basic.9y no no yes
## 3377 49 blue-collar married basic.9y no no no
## 3378 57 blue-collar divorced basic.4y unknown yes no
## 3379 31 technician divorced basic.9y no no no
## 3380 52 management married university.degree unknown yes no
## 3381 57 retired married university.degree no yes no
## 3382 47 blue-collar married basic.9y no yes no
## 3383 42 blue-collar married basic.6y no yes no
## 3384 35 blue-collar single unknown no yes no
## 3385 31 admin. single university.degree no yes no
## 3386 44 blue-collar married basic.6y unknown yes no
## 3387 59 entrepreneur divorced high.school unknown no no
## 3388 57 blue-collar married unknown unknown yes no
## 3389 41 blue-collar married high.school unknown yes no
## 3390 33 blue-collar single basic.4y no no no
## 3391 54 entrepreneur married basic.6y unknown no no
## 3392 22 blue-collar single basic.9y no yes no
## 3393 56 retired married high.school unknown no no
## 3394 41 management married high.school no no yes
## 3395 46 blue-collar married professional.course unknown no yes
## 3396 60 admin. single high.school no no yes
## 3397 50 services married high.school no no no
## 3398 49 entrepreneur married basic.4y unknown yes yes
## 3399 34 services married high.school unknown no no
## 3400 49 admin. married university.degree unknown no no
## 3401 30 blue-collar single high.school no yes no
## 3402 42 housemaid married high.school no no no
## 3403 40 blue-collar married basic.9y no yes no
## 3404 32 entrepreneur single university.degree unknown yes no
## 3405 41 services married basic.9y no yes no
## 3406 57 blue-collar divorced professional.course no yes no
## 3407 34 services married high.school no no no
## 3408 40 management married university.degree no no yes
## 3409 44 blue-collar married basic.4y unknown no no
## 3410 51 blue-collar married basic.9y unknown unknown unknown
## 3411 32 technician divorced high.school no yes no
## 3412 33 blue-collar married basic.9y no yes no
## 3413 43 blue-collar married basic.4y unknown yes yes
## 3414 28 blue-collar married basic.6y unknown yes no
## 3415 37 services married high.school no yes no
## 3416 37 services single high.school no yes no
## 3417 41 housemaid married basic.9y unknown yes no
## 3418 37 admin. married university.degree no no no
## 3419 42 blue-collar married unknown no yes no
## 3420 60 services married unknown no no no
## 3421 28 admin. single university.degree no yes no
## 3422 45 housemaid divorced university.degree no no no
## 3423 52 technician married high.school no yes no
## 3424 43 entrepreneur married university.degree no no no
## 3425 41 management married university.degree no yes no
## 3426 47 services married high.school unknown no no
## 3427 38 admin. married basic.9y unknown yes no
## 3428 31 entrepreneur married basic.9y no no no
## 3429 45 self-employed married basic.4y unknown yes no
## 3430 41 blue-collar married basic.6y no no no
## 3431 51 retired married basic.9y no no no
## 3432 46 admin. divorced university.degree unknown no no
## 3433 48 self-employed married university.degree unknown no no
## 3434 51 retired married basic.9y no yes no
## 3435 44 services married high.school no unknown unknown
## 3436 35 unemployed married university.degree no no no
## 3437 57 technician married basic.9y no yes no
## 3438 38 admin. married university.degree no yes no
## 3439 30 admin. single university.degree no no no
## 3440 37 services married high.school unknown no yes
## 3441 31 technician divorced basic.9y no no no
## 3442 31 blue-collar unknown unknown unknown no no
## 3443 38 technician married professional.course no unknown unknown
## 3444 29 student single university.degree no yes no
## 3445 36 services married high.school no unknown unknown
## 3446 32 student single high.school unknown yes no
## 3447 42 blue-collar married basic.4y unknown yes no
## 3448 27 blue-collar married basic.9y no yes no
## 3449 34 technician married professional.course no no no
## 3450 44 management married university.degree no yes no
## 3451 42 services married professional.course no no no
## 3452 29 services divorced high.school no yes no
## 3453 40 blue-collar married basic.6y unknown no no
## 3454 57 retired single professional.course no no no
## 3455 42 blue-collar married basic.9y unknown yes no
## 3456 50 admin. married basic.9y no yes yes
## 3457 34 technician married professional.course no yes no
## 3458 40 admin. single university.degree no no no
## 3459 46 management married basic.9y no yes yes
## 3460 33 admin. married high.school no yes no
## 3461 42 retired married basic.9y unknown no no
## 3462 27 blue-collar married basic.6y no no no
## 3463 41 management single high.school no no no
## 3464 39 admin. married professional.course no yes no
## 3465 31 blue-collar married basic.9y no no no
## 3466 45 housemaid married professional.course unknown no no
## 3467 30 self-employed married professional.course no no no
## 3468 58 management married basic.4y no no no
## 3469 41 technician married professional.course no no no
## 3470 44 blue-collar married basic.4y no no no
## 3471 47 blue-collar married basic.9y no no no
## 3472 32 admin. married university.degree no no yes
## 3473 45 blue-collar married basic.4y unknown no no
## 3474 33 management married professional.course no no no
## 3475 27 blue-collar married basic.9y unknown yes no
## 3476 57 retired married basic.4y no yes yes
## 3477 32 blue-collar married basic.9y no yes no
## 3478 33 blue-collar divorced basic.9y no no no
## 3479 57 self-employed married unknown unknown no yes
## 3480 34 blue-collar married basic.4y no no yes
## 3481 58 unemployed married basic.4y unknown no no
## 3482 50 admin. single university.degree no yes no
## 3483 44 blue-collar married basic.9y no yes yes
## 3484 48 blue-collar married professional.course no yes no
## 3485 29 technician married professional.course no no no
## 3486 32 services married professional.course no yes no
## 3487 40 admin. single high.school no no no
## 3488 39 management married high.school no yes yes
## 3489 34 services married basic.6y unknown yes no
## 3490 50 housemaid divorced basic.4y unknown yes yes
## 3491 28 blue-collar single basic.4y no no no
## 3492 27 admin. married high.school no yes no
## 3493 38 services married basic.9y no unknown unknown
## 3494 37 technician married professional.course no yes no
## 3495 43 services married high.school no no no
## 3496 55 technician married basic.9y unknown yes yes
## 3497 35 admin. married university.degree no no no
## 3498 51 entrepreneur married basic.4y no no no
## 3499 34 housemaid married high.school no no no
## 3500 28 technician married professional.course no yes no
## 3501 50 blue-collar married basic.6y unknown no no
## 3502 26 blue-collar married basic.4y no yes yes
## 3503 50 admin. married basic.9y unknown yes yes
## 3504 52 blue-collar married basic.4y unknown no no
## 3505 52 blue-collar married basic.9y no yes yes
## 3506 37 blue-collar married unknown no no no
## 3507 46 admin. married high.school no yes no
## 3508 45 unemployed married university.degree no no no
## 3509 31 technician married professional.course no yes no
## 3510 39 blue-collar married professional.course unknown no no
## 3511 55 admin. divorced university.degree no no no
## 3512 55 admin. married high.school no no no
## 3513 38 self-employed single university.degree no unknown unknown
## 3514 24 student married university.degree no no no
## 3515 36 services married high.school no no no
## 3516 44 admin. married basic.4y unknown yes yes
## 3517 33 blue-collar single basic.9y no no no
## 3518 30 technician married university.degree no no no
## 3519 28 self-employed single basic.9y no no no
## 3520 38 technician single university.degree no yes no
## 3521 42 admin. married basic.9y no yes yes
## 3522 35 blue-collar married high.school no yes yes
## 3523 53 retired married high.school unknown no no
## 3524 24 admin. single high.school no no no
## 3525 35 admin. divorced university.degree no no no
## 3526 25 admin. single high.school no no no
## 3527 59 entrepreneur married university.degree unknown yes yes
## 3528 56 admin. married basic.9y no no no
## 3529 43 technician married unknown no yes no
## 3530 32 entrepreneur married basic.6y no no no
## 3531 27 blue-collar married basic.9y no yes yes
## 3532 34 management single basic.9y no no no
## 3533 29 services married high.school no no no
## 3534 57 technician divorced unknown no no no
## 3535 43 services married professional.course no yes no
## 3536 49 admin. single high.school no no no
## 3537 50 technician married basic.6y no yes no
## 3538 34 blue-collar married basic.9y no yes no
## 3539 24 services single high.school no no no
## 3540 43 blue-collar married basic.4y unknown yes no
## 3541 44 admin. married university.degree no no no
## 3542 37 technician married professional.course no yes no
## 3543 39 blue-collar married basic.9y no yes no
## 3544 33 admin. single professional.course no no no
## 3545 46 blue-collar married basic.4y unknown yes no
## 3546 28 admin. single university.degree no yes no
## 3547 25 technician single professional.course no yes yes
## 3548 39 services married high.school no no no
## 3549 32 admin. single high.school no no no
## 3550 32 services married high.school unknown no yes
## 3551 41 admin. married unknown unknown no no
## 3552 22 blue-collar married basic.4y no unknown unknown
## 3553 29 admin. single high.school no no no
## 3554 50 technician married professional.course unknown yes no
## 3555 39 housemaid married basic.4y no yes no
## 3556 55 services divorced basic.4y unknown yes no
## 3557 43 admin. married university.degree no no no
## 3558 42 services married high.school unknown yes no
## 3559 41 blue-collar married basic.6y unknown yes no
## 3560 31 technician single university.degree no no no
## 3561 56 blue-collar married basic.4y unknown yes no
## 3562 40 blue-collar married basic.4y unknown yes no
## 3563 46 management married basic.9y no yes no
## 3564 56 admin. divorced high.school no yes no
## 3565 42 blue-collar divorced basic.4y no no no
## 3566 41 technician divorced basic.4y no yes no
## 3567 53 admin. married university.degree no no yes
## 3568 33 housemaid married basic.4y no unknown unknown
## 3569 25 services single high.school no no no
## 3570 41 technician divorced basic.4y no yes no
## 3571 31 technician single high.school no no yes
## 3572 46 services married professional.course no yes no
## 3573 58 retired married university.degree no no no
## 3574 39 services married high.school no no yes
## 3575 54 blue-collar married basic.9y unknown yes no
## 3576 31 admin. divorced university.degree no yes no
## 3577 56 retired divorced basic.4y no no no
## 3578 41 admin. married university.degree no no no
## 3579 33 admin. divorced high.school no no no
## 3580 33 admin. divorced high.school no no no
## 3581 48 admin. divorced high.school no no no
## 3582 28 blue-collar married basic.6y unknown yes no
## 3583 39 unemployed married university.degree no no no
## 3584 42 admin. single basic.9y unknown no yes
## 3585 60 housemaid married high.school unknown yes no
## 3586 35 technician married basic.9y no no no
## 3587 36 blue-collar married basic.6y no yes no
## 3588 33 unemployed married basic.9y no yes no
## 3589 54 management divorced basic.6y unknown yes no
## 3590 32 management single university.degree no no no
## 3591 37 blue-collar married basic.6y no no no
## 3592 35 technician married university.degree no no no
## 3593 47 blue-collar married basic.6y no no no
## 3594 33 technician married professional.course no yes no
## 3595 38 blue-collar married basic.9y no yes yes
## 3596 39 housemaid married university.degree no no no
## 3597 55 admin. married high.school no yes no
## 3598 35 services married high.school no yes no
## 3599 33 blue-collar married basic.6y unknown no no
## 3600 32 blue-collar married basic.9y unknown yes no
## 3601 32 blue-collar married basic.9y no yes no
## 3602 32 blue-collar divorced basic.9y no no no
## 3603 55 admin. married high.school no yes yes
## 3604 45 admin. single high.school unknown yes yes
## 3605 58 management married university.degree unknown no no
## 3606 46 self-employed married university.degree no yes yes
## 3607 50 self-employed married basic.4y unknown no yes
## 3608 56 blue-collar married basic.4y unknown no no
## 3609 33 blue-collar married basic.4y unknown yes yes
## 3610 26 admin. married university.degree no yes yes
## 3611 49 housemaid single high.school unknown yes no
## 3612 36 services married high.school no yes yes
## 3613 52 self-employed single university.degree unknown no no
## 3614 49 blue-collar married basic.9y unknown no yes
## 3615 28 admin. single high.school no no no
## 3616 41 technician married university.degree no no no
## 3617 31 services married professional.course no no no
## 3618 32 technician married professional.course no no no
## 3619 25 services divorced high.school no yes yes
## 3620 22 services single basic.4y no no no
## 3621 43 blue-collar married basic.9y no no no
## 3622 35 blue-collar married basic.9y no yes no
## 3623 40 admin. married university.degree no no no
## 3624 37 technician married university.degree no yes yes
## 3625 35 blue-collar married basic.9y no yes no
## 3626 39 housemaid married basic.9y no yes no
## 3627 38 blue-collar married professional.course no no no
## 3628 37 technician single university.degree no no no
## 3629 53 retired married high.school unknown no no
## 3630 38 services married basic.9y no no no
## 3631 47 technician single professional.course unknown no no
## 3632 33 management married high.school unknown no no
## 3633 39 blue-collar married basic.4y unknown yes no
## 3634 36 technician single professional.course unknown no no
## 3635 35 blue-collar married basic.9y no no no
## 3636 40 admin. married university.degree unknown yes yes
## 3637 55 admin. single university.degree unknown yes yes
## 3638 37 blue-collar married basic.4y no yes no
## 3639 53 blue-collar married basic.9y unknown no no
## 3640 36 admin. married high.school no unknown unknown
## 3641 32 blue-collar married basic.9y no no no
## 3642 42 admin. married high.school no yes no
## 3643 52 management married university.degree no yes no
## 3644 33 services married high.school no no yes
## 3645 51 admin. married professional.course unknown no no
## 3646 33 technician divorced professional.course no yes no
## 3647 34 services married high.school no no no
## 3648 55 admin. divorced university.degree no yes no
## 3649 52 services married university.degree no yes no
## 3650 45 blue-collar married basic.4y unknown yes no
## 3651 34 blue-collar married basic.9y unknown yes yes
## 3652 53 self-employed married university.degree no yes no
## 3653 43 admin. married university.degree no no no
## 3654 33 management married basic.9y no yes no
## 3655 39 blue-collar married basic.9y no no no
## 3656 29 blue-collar married basic.9y unknown yes no
## 3657 45 blue-collar married basic.4y no yes no
## 3658 35 blue-collar married basic.9y no yes no
## 3659 37 technician single university.degree no no no
## 3660 38 blue-collar married basic.6y unknown no no
## 3661 36 technician married university.degree no no no
## 3662 53 entrepreneur single basic.9y no no no
## 3663 41 blue-collar married basic.4y unknown no no
## 3664 40 blue-collar married basic.9y unknown no no
## 3665 36 technician married university.degree no no no
## 3666 36 management married high.school no no no
## 3667 44 services divorced high.school unknown no no
## 3668 56 retired married high.school unknown no no
## 3669 35 blue-collar married professional.course no yes yes
## 3670 35 management married university.degree no no yes
## 3671 28 management married high.school unknown yes no
## 3672 43 housemaid married basic.4y unknown no yes
## 3673 30 entrepreneur married professional.course no no no
## 3674 36 student single university.degree unknown yes no
## 3675 40 blue-collar married basic.9y no yes yes
## 3676 42 technician divorced basic.9y no no no
## 3677 49 blue-collar married basic.6y no yes no
## 3678 38 technician married professional.course no yes yes
## 3679 31 admin. married high.school no yes no
## 3680 57 retired married basic.4y no no no
## 3681 29 blue-collar single basic.6y no no no
## 3682 36 management married university.degree no yes no
## 3683 55 retired divorced high.school unknown yes no
## 3684 30 services single high.school no yes no
## 3685 32 blue-collar married basic.9y unknown no no
## 3686 49 blue-collar married basic.4y unknown yes no
## 3687 48 admin. married university.degree no yes no
## 3688 30 blue-collar single basic.4y no no no
## 3689 53 retired divorced high.school no yes no
## 3690 60 technician divorced professional.course unknown yes no
## 3691 45 blue-collar married basic.9y no no no
## 3692 56 management married university.degree no yes no
## 3693 31 blue-collar married basic.4y no no no
## 3694 56 management married university.degree no yes yes
## 3695 60 entrepreneur married basic.4y no no yes
## 3696 56 management married university.degree no no yes
## 3697 29 admin. single high.school no no no
## 3698 53 admin. married basic.9y no no no
## 3699 49 entrepreneur married high.school unknown no no
## 3700 43 blue-collar single professional.course no no no
## 3701 38 blue-collar single basic.4y no no no
## 3702 48 blue-collar married basic.4y no yes no
## 3703 30 blue-collar married basic.9y no no no
## 3704 31 technician married professional.course no no no
## 3705 37 services married high.school unknown no no
## 3706 59 retired married high.school unknown no no
## 3707 42 admin. single unknown unknown yes yes
## 3708 41 blue-collar divorced basic.6y no yes yes
## 3709 44 services married high.school no no no
## 3710 40 admin. married university.degree no yes yes
## 3711 39 services married high.school no no no
## 3712 40 admin. divorced professional.course no no no
## 3713 33 blue-collar married professional.course no yes no
## 3714 57 services divorced high.school no yes yes
## 3715 31 admin. married high.school no yes yes
## 3716 57 housemaid married basic.4y no no yes
## 3717 48 blue-collar married basic.4y no yes no
## 3718 52 technician married high.school unknown no no
## 3719 37 blue-collar single unknown unknown no no
## 3720 42 technician married university.degree unknown no no
## 3721 36 services single high.school unknown no no
## 3722 57 management married basic.9y unknown yes no
## 3723 51 blue-collar married basic.9y no yes yes
## 3724 43 admin. married high.school no yes no
## 3725 55 admin. single university.degree no yes no
## 3726 41 blue-collar married basic.9y unknown yes yes
## 3727 37 blue-collar married basic.4y no no no
## 3728 40 admin. single high.school no yes no
## 3729 28 unknown single basic.9y unknown yes no
## 3730 31 management married basic.9y no no yes
## 3731 35 housemaid married high.school no no no
## 3732 36 technician divorced professional.course no yes no
## 3733 31 admin. married high.school no no no
## 3734 38 blue-collar married basic.9y unknown yes no
## 3735 46 blue-collar divorced basic.9y no no no
## 3736 39 self-employed married university.degree no no no
## 3737 44 technician divorced professional.course no no no
## 3738 33 admin. married university.degree no yes no
## 3739 33 technician married professional.course no yes no
## 3740 44 admin. married high.school no no no
## 3741 24 services single high.school no unknown unknown
## 3742 33 admin. married high.school no no no
## 3743 58 management married basic.9y no yes no
## 3744 42 blue-collar divorced basic.9y no yes no
## 3745 40 blue-collar married basic.9y unknown no no
## 3746 36 technician married university.degree no yes no
## 3747 29 blue-collar married basic.9y no no no
## 3748 46 entrepreneur married professional.course no yes no
## 3749 45 blue-collar married basic.9y unknown no no
## 3750 53 unknown married high.school unknown yes no
## 3751 57 technician married high.school no no no
## 3752 40 technician married professional.course unknown no no
## 3753 37 admin. divorced high.school unknown yes yes
## 3754 31 technician married professional.course no unknown unknown
## 3755 29 blue-collar married high.school no yes yes
## 3756 33 admin. married university.degree no yes no
## 3757 35 technician married professional.course no no no
## 3758 47 admin. married university.degree no yes no
## 3759 34 blue-collar married professional.course no yes no
## 3760 38 admin. married university.degree no no no
## 3761 46 admin. divorced university.degree no yes no
## 3762 26 blue-collar single basic.4y no yes yes
## 3763 30 blue-collar married high.school no yes no
## 3764 35 blue-collar married basic.9y unknown no no
## 3765 40 services divorced high.school no no no
## 3766 30 blue-collar married basic.9y no no no
## 3767 30 technician married professional.course no yes no
## 3768 35 technician married university.degree unknown no no
## 3769 36 blue-collar married basic.9y unknown yes no
## 3770 27 blue-collar single high.school no no no
## 3771 26 services divorced basic.6y no yes no
## 3772 30 management married university.degree no unknown unknown
## 3773 33 technician single university.degree no no no
## 3774 50 unemployed married high.school no no yes
## 3775 38 technician married professional.course no no no
## 3776 36 unknown single basic.6y unknown yes no
## 3777 35 technician married high.school no no no
## 3778 42 self-employed married university.degree no no no
## 3779 29 technician single university.degree no no no
## 3780 29 admin. single basic.9y unknown no no
## 3781 38 blue-collar married professional.course no yes no
## 3782 45 blue-collar divorced basic.9y no yes no
## 3783 58 admin. divorced university.degree no yes no
## 3784 51 entrepreneur married basic.4y unknown yes no
## 3785 39 technician divorced professional.course no no no
## 3786 44 unemployed divorced high.school unknown yes no
## 3787 30 management single university.degree no yes no
## 3788 46 admin. married high.school no yes no
## 3789 34 blue-collar married basic.6y unknown yes no
## 3790 57 management married basic.9y no no no
## 3791 47 blue-collar divorced basic.9y unknown no no
## 3792 36 technician married basic.9y no no no
## 3793 45 blue-collar divorced basic.9y no no no
## 3794 28 blue-collar single basic.6y no no no
## 3795 49 housemaid divorced basic.6y no yes no
## 3796 26 admin. married basic.9y no yes no
## 3797 38 technician married professional.course no no no
## 3798 58 technician married professional.course unknown no no
## 3799 29 admin. single basic.9y unknown yes no
## 3800 49 technician divorced university.degree unknown yes yes
## 3801 48 management married university.degree no unknown unknown
## 3802 30 technician married university.degree unknown yes no
## 3803 27 blue-collar married basic.9y unknown no no
## 3804 57 services divorced high.school no yes no
## 3805 38 technician single professional.course unknown no no
## 3806 52 services married high.school no no no
## 3807 55 admin. married university.degree unknown yes yes
## 3808 41 technician married professional.course no yes no
## 3809 38 admin. married high.school no no no
## 3810 45 services divorced high.school no no no
## 3811 57 services divorced high.school no yes no
## 3812 53 blue-collar married basic.4y unknown no no
## 3813 32 blue-collar divorced basic.9y no no no
## 3814 34 services married high.school unknown yes no
## 3815 43 management married university.degree no no no
## 3816 31 admin. married high.school no no no
## 3817 32 services married high.school unknown yes no
## 3818 40 blue-collar married basic.9y unknown yes no
## 3819 53 admin. single university.degree unknown yes no
## 3820 31 technician married high.school no yes no
## 3821 36 services single basic.6y unknown yes yes
## 3822 56 admin. married university.degree unknown no no
## 3823 42 blue-collar divorced basic.4y no yes no
## 3824 32 admin. single university.degree no yes no
## 3825 47 admin. married high.school no no no
## 3826 34 blue-collar married basic.6y unknown yes no
## 3827 56 technician married high.school no yes no
## 3828 28 admin. single high.school no yes no
## 3829 30 blue-collar single high.school unknown yes no
## 3830 38 admin. married high.school no unknown unknown
## 3831 39 technician married professional.course no unknown unknown
## 3832 31 blue-collar married basic.6y unknown unknown unknown
## 3833 29 admin. single university.degree no yes no
## 3834 31 self-employed married university.degree no no no
## 3835 25 self-employed single university.degree no yes no
## 3836 35 blue-collar single basic.9y unknown no no
## 3837 36 services married high.school no yes no
## 3838 43 services married high.school unknown unknown unknown
## 3839 49 management married university.degree no yes no
## 3840 29 blue-collar married high.school no no no
## 3841 38 unemployed divorced university.degree no yes no
## 3842 32 blue-collar married basic.6y no no yes
## 3843 35 self-employed married university.degree no yes no
## 3844 39 self-employed married basic.4y unknown no no
## 3845 54 admin. married high.school no no no
## 3846 35 admin. married university.degree unknown yes no
## 3847 32 technician married professional.course no no no
## 3848 55 technician married basic.6y unknown yes no
## 3849 50 blue-collar divorced basic.9y unknown no no
## 3850 25 blue-collar single basic.4y no no no
## 3851 52 management divorced university.degree no no no
## 3852 43 self-employed married basic.9y no no no
## 3853 38 blue-collar married basic.9y no yes no
## 3854 45 admin. married high.school no yes no
## 3855 33 admin. single university.degree no yes no
## 3856 34 services married basic.9y no yes yes
## 3857 33 services divorced high.school no yes yes
## 3858 48 services married high.school unknown yes no
## 3859 56 services divorced high.school unknown yes no
## 3860 37 management married university.degree no yes no
## 3861 50 blue-collar married basic.4y unknown unknown unknown
## 3862 38 entrepreneur married basic.6y no unknown unknown
## 3863 32 admin. single university.degree no no no
## 3864 35 admin. single high.school no yes no
## 3865 50 blue-collar married basic.4y no no no
## 3866 35 services married high.school no no no
## 3867 36 services single high.school no no no
## 3868 29 housemaid single high.school no yes no
## 3869 38 services single basic.9y unknown yes no
## 3870 36 services single high.school no no no
## 3871 46 entrepreneur married professional.course no no no
## 3872 26 admin. married university.degree no no no
## 3873 47 blue-collar married basic.6y unknown no no
## 3874 28 admin. single university.degree no no no
## 3875 54 technician married professional.course no yes no
## 3876 37 services married basic.6y no no no
## 3877 49 admin. divorced high.school no yes no
## 3878 33 services married high.school unknown no no
## 3879 40 admin. single unknown unknown yes no
## 3880 50 blue-collar divorced high.school no no no
## 3881 36 admin. married university.degree no yes yes
## 3882 35 admin. married high.school no no no
## 3883 39 self-employed married basic.4y unknown yes no
## 3884 44 blue-collar married high.school no no no
## 3885 30 technician married professional.course no no no
## 3886 40 blue-collar married basic.6y no no no
## 3887 29 entrepreneur married basic.6y no yes no
## 3888 34 blue-collar married basic.6y no no no
## 3889 47 blue-collar married unknown unknown yes no
## 3890 58 admin. divorced university.degree no yes yes
## 3891 43 blue-collar single basic.4y unknown no no
## 3892 34 admin. single university.degree no no yes
## 3893 36 technician married professional.course no no no
## 3894 48 blue-collar married basic.9y unknown yes no
## 3895 59 admin. single professional.course no no no
## 3896 28 services married high.school unknown yes no
## 3897 50 blue-collar married basic.4y no no no
## 3898 42 blue-collar married basic.4y unknown no no
## 3899 45 technician married high.school no yes no
## 3900 38 blue-collar married basic.4y unknown yes no
## 3901 37 blue-collar married basic.4y unknown no no
## 3902 57 blue-collar married basic.4y unknown yes no
## 3903 48 blue-collar married basic.9y no no no
## 3904 27 services married high.school unknown no no
## 3905 35 blue-collar married basic.9y no yes no
## 3906 46 technician single university.degree no yes no
## 3907 38 housemaid married basic.6y unknown yes no
## 3908 28 admin. married university.degree no yes no
## 3909 56 blue-collar married basic.4y unknown no no
## 3910 34 technician single professional.course no no no
## 3911 39 admin. married high.school no yes no
## 3912 45 blue-collar married basic.6y unknown yes no
## 3913 38 blue-collar married basic.6y no yes no
## 3914 35 admin. married high.school no yes no
## 3915 36 services married high.school no yes no
## 3916 39 technician divorced professional.course no yes no
## 3917 41 blue-collar divorced basic.6y no yes no
## 3918 41 blue-collar divorced basic.6y no yes no
## 3919 26 services single basic.9y no no yes
## 3920 41 blue-collar divorced basic.6y no no no
## 3921 45 management married unknown unknown yes yes
## 3922 33 services single high.school no unknown unknown
## 3923 42 management married university.degree no no no
## 3924 35 admin. single university.degree no yes yes
## 3925 41 blue-collar married basic.6y unknown yes no
## 3926 53 blue-collar divorced basic.4y unknown yes no
## 3927 38 admin. single university.degree unknown no no
## 3928 30 technician single professional.course no no no
## 3929 57 retired single high.school no yes no
## 3930 37 blue-collar single basic.9y no no no
## 3931 37 admin. married high.school no no yes
## 3932 54 blue-collar single basic.4y unknown yes no
## 3933 41 management married university.degree no no yes
## 3934 51 unemployed married basic.9y unknown no no
## 3935 53 admin. married basic.9y no no no
## 3936 36 blue-collar single high.school no no yes
## 3937 55 housemaid married basic.4y no no no
## 3938 47 admin. married high.school no no no
## 3939 25 services married high.school unknown no no
## 3940 47 blue-collar married basic.4y no yes no
## 3941 37 self-employed married professional.course no no yes
## 3942 36 services single basic.9y unknown no yes
## 3943 53 blue-collar married basic.9y no yes no
## 3944 42 blue-collar married basic.4y unknown yes no
## 3945 39 blue-collar married basic.4y no no yes
## 3946 46 entrepreneur married high.school no no yes
## 3947 32 services married high.school unknown yes no
## 3948 28 technician divorced university.degree no no no
## 3949 40 blue-collar married basic.9y no yes no
## 3950 26 blue-collar single basic.9y unknown no yes
## 3951 37 technician single basic.9y no no yes
## 3952 39 self-employed married university.degree no no no
## 3953 36 blue-collar divorced high.school no no yes
## 3954 29 admin. married high.school no no no
## 3955 49 blue-collar married basic.4y unknown yes no
## 3956 31 admin. single university.degree no no no
## 3957 49 blue-collar married basic.4y unknown yes no
## 3958 41 blue-collar married basic.4y unknown no no
## 3959 47 management married basic.4y unknown no no
## 3960 47 admin. single university.degree no yes yes
## 3961 38 admin. married university.degree no no no
## 3962 46 services married high.school no yes no
## 3963 33 blue-collar married basic.6y no no no
## 3964 27 blue-collar single basic.9y no yes no
## 3965 53 technician married professional.course unknown yes no
## 3966 30 management divorced university.degree no no yes
## 3967 47 blue-collar divorced basic.9y no no yes
## 3968 55 blue-collar married professional.course unknown yes no
## 3969 60 retired divorced basic.4y unknown no yes
## 3970 42 blue-collar divorced basic.4y no no yes
## 3971 48 technician married high.school no no no
## 3972 48 technician married high.school no no no
## 3973 42 blue-collar divorced basic.4y no no no
## 3974 46 admin. single university.degree no yes no
## 3975 36 services single basic.9y no no no
## 3976 50 blue-collar married high.school unknown yes no
## 3977 33 admin. married unknown no yes no
## 3978 42 technician married university.degree no yes no
## 3979 24 services single basic.9y no yes yes
## 3980 55 technician married university.degree no no no
## 3981 38 blue-collar married basic.9y no yes no
## 3982 51 admin. divorced unknown no unknown unknown
## 3983 48 technician married high.school no no no
## 3984 46 admin. married university.degree no yes no
## 3985 47 management divorced university.degree no no no
## 3986 39 admin. married high.school no yes yes
## 3987 47 management divorced university.degree no yes no
## 3988 37 blue-collar single basic.9y no yes no
## 3989 47 entrepreneur divorced university.degree no yes no
## 3990 29 services single university.degree no yes yes
## 3991 45 blue-collar married basic.4y unknown no no
## 3992 47 blue-collar divorced basic.4y no no no
## 3993 38 entrepreneur divorced university.degree unknown yes no
## 3994 25 housemaid married basic.9y no yes no
## 3995 55 housemaid married professional.course no yes yes
## 3996 56 retired married high.school unknown no no
## 3997 44 blue-collar married basic.4y no yes no
## 3998 36 technician single university.degree unknown no no
## 3999 40 blue-collar married basic.9y no yes no
## 4000 46 blue-collar married unknown unknown no no
## 4001 48 blue-collar divorced basic.9y no yes yes
## 4002 40 self-employed married high.school unknown yes no
## 4003 58 services divorced professional.course no yes no
## 4004 50 technician married professional.course no yes no
## 4005 55 blue-collar married basic.4y unknown yes no
## 4006 51 management married university.degree no yes no
## 4007 45 admin. married university.degree no no no
## 4008 39 technician married professional.course no no yes
## 4009 47 blue-collar divorced basic.4y no no yes
## 4010 55 admin. married high.school no yes no
## 4011 48 blue-collar married basic.6y no unknown unknown
## 4012 41 technician married university.degree no no no
## 4013 30 services single high.school unknown no no
## 4014 32 entrepreneur married high.school unknown yes no
## 4015 56 unemployed divorced university.degree unknown yes no
## 4016 53 technician married professional.course no no no
## 4017 39 admin. married university.degree no no no
## 4018 48 technician single high.school no yes yes
## 4019 36 blue-collar married basic.9y no yes yes
## 4020 35 technician married professional.course no yes yes
## 4021 34 admin. divorced basic.6y no no no
## 4022 44 self-employed married university.degree unknown unknown unknown
## 4023 48 services single high.school unknown yes yes
## 4024 50 blue-collar married basic.6y unknown no no
## 4025 44 housemaid single unknown unknown yes yes
## 4026 33 unemployed married basic.9y no yes yes
## 4027 45 services single basic.9y unknown yes no
## 4028 55 technician single university.degree unknown yes no
## 4029 32 services single professional.course no yes yes
## 4030 42 blue-collar married basic.9y unknown no no
## 4031 42 admin. divorced university.degree no no yes
## 4032 57 blue-collar divorced unknown unknown yes no
## 4033 57 admin. divorced high.school no no no
## 4034 42 admin. divorced university.degree no yes no
## 4035 38 blue-collar married basic.9y no yes no
## 4036 31 technician single university.degree no yes no
## 4037 44 admin. married high.school no no no
## 4038 28 blue-collar single basic.9y unknown no yes
## 4039 29 admin. single university.degree no no no
## 4040 56 retired married basic.4y no yes no
## 4041 47 management married university.degree no yes yes
## 4042 26 student single basic.9y unknown yes yes
## 4043 39 management married university.degree no yes yes
## 4044 51 services married unknown unknown no no
## 4045 54 technician single university.degree unknown no no
## 4046 42 unemployed married basic.9y no yes yes
## 4047 57 blue-collar married basic.4y unknown yes yes
## 4048 27 blue-collar married basic.9y no yes yes
## 4049 27 technician single professional.course no yes no
## 4050 47 blue-collar divorced basic.9y unknown yes no
## 4051 43 admin. married professional.course no no no
## 4052 36 blue-collar married basic.6y unknown no no
## 4053 47 management divorced basic.6y unknown yes yes
## 4054 38 blue-collar married basic.9y no no no
## 4055 38 entrepreneur married basic.9y no no no
## 4056 33 blue-collar married basic.9y no yes no
## 4057 43 entrepreneur married basic.9y unknown yes no
## 4058 41 technician single professional.course no no no
## 4059 33 services single high.school no yes no
## 4060 42 admin. divorced university.degree no no no
## 4061 23 services married basic.9y no yes no
## 4062 28 services married high.school no yes no
## 4063 39 blue-collar married basic.9y unknown no no
## 4064 36 admin. married high.school unknown yes no
## 4065 27 technician married university.degree no no no
## 4066 49 housemaid married basic.4y no no no
## 4067 55 blue-collar married basic.4y no no yes
## 4068 38 services married high.school no no yes
## 4069 29 services single university.degree no no no
## 4070 28 blue-collar single basic.6y unknown unknown unknown
## 4071 51 blue-collar single basic.4y unknown no no
## 4072 58 admin. married university.degree no no yes
## 4073 45 technician married university.degree no yes no
## 4074 27 blue-collar single basic.9y unknown yes no
## 4075 35 admin. married high.school unknown no no
## 4076 37 blue-collar single basic.9y unknown yes no
## 4077 43 blue-collar married basic.6y unknown yes no
## 4078 40 blue-collar married basic.9y no yes no
## 4079 37 admin. married university.degree no yes yes
## 4080 31 entrepreneur married basic.6y no yes no
## 4081 29 admin. married high.school no no no
## 4082 30 admin. married university.degree no no no
## 4083 35 admin. single high.school no yes no
## 4084 43 admin. divorced high.school no no no
## 4085 39 admin. married university.degree unknown no no
## 4086 57 management married university.degree no yes no
## 4087 53 retired married basic.9y no yes no
## 4088 37 management married university.degree no yes no
## 4089 41 technician married professional.course no no no
## 4090 29 technician married university.degree no yes no
## 4091 51 technician married basic.6y unknown yes yes
## 4092 38 admin. single university.degree no yes no
## 4093 58 management married university.degree unknown no no
## 4094 36 blue-collar married basic.6y no no no
## 4095 48 technician divorced professional.course no yes yes
## 4096 39 blue-collar married basic.6y no yes no
## 4097 35 blue-collar married basic.6y unknown no no
## 4098 32 blue-collar married basic.4y unknown yes no
## 4099 32 services divorced high.school no yes no
## 4100 38 admin. married university.degree no yes no
## 4101 27 services single high.school no no no
## 4102 57 blue-collar married basic.9y no yes no
## 4103 37 housemaid married high.school no no no
## 4104 54 blue-collar single basic.4y unknown unknown unknown
## 4105 43 blue-collar married basic.4y unknown yes no
## 4106 44 retired married basic.9y no yes no
## 4107 37 admin. single high.school no yes no
## 4108 37 blue-collar married basic.6y unknown no yes
## 4109 50 admin. divorced university.degree no no no
## 4110 32 blue-collar married basic.6y unknown yes no
## 4111 31 services single professional.course no no no
## 4112 40 management married university.degree no no no
## 4113 43 blue-collar married basic.4y no yes no
## 4114 41 management married university.degree no no no
## 4115 32 blue-collar married basic.6y no yes no
## 4116 49 services married high.school unknown yes yes
## 4117 31 blue-collar married basic.6y no yes no
## 4118 46 admin. married high.school no yes no
## 4119 38 technician married university.degree unknown no no
## 4120 47 services married professional.course no yes no
## 4121 37 blue-collar divorced basic.4y unknown yes yes
## 4122 49 admin. single university.degree no no no
## 4123 39 blue-collar married basic.9y no yes no
## 4124 35 blue-collar married basic.9y no yes no
## 4125 28 blue-collar married basic.9y no no yes
## 4126 40 blue-collar married basic.6y unknown yes yes
## 4127 40 blue-collar married basic.9y unknown yes no
## 4128 53 services single high.school unknown no yes
## 4129 49 blue-collar married basic.9y unknown yes no
## 4130 55 technician married professional.course no yes yes
## 4131 36 blue-collar single high.school no yes no
## 4132 45 blue-collar married basic.6y unknown no no
## 4133 36 blue-collar married basic.6y unknown yes no
## 4134 46 admin. married basic.9y unknown no no
## 4135 49 blue-collar married basic.4y unknown yes no
## 4136 48 housemaid divorced basic.4y unknown no yes
## 4137 49 blue-collar divorced basic.4y no yes no
## 4138 49 technician married unknown no yes no
## 4139 33 technician married professional.course no yes no
## 4140 37 admin. single high.school no yes yes
## 4141 38 entrepreneur married university.degree no yes no
## 4142 42 blue-collar married basic.6y unknown no yes
## 4143 51 blue-collar married basic.9y unknown no no
## 4144 35 housemaid married high.school no yes no
## 4145 51 blue-collar married basic.9y no yes no
## 4146 37 admin. single high.school no no no
## 4147 34 blue-collar married basic.9y no yes no
## 4148 44 admin. married university.degree unknown yes no
## 4149 40 admin. married professional.course unknown yes no
## 4150 40 management divorced university.degree unknown yes no
## 4151 32 technician single professional.course no no no
## 4152 58 blue-collar married basic.4y no yes no
## 4153 41 services divorced unknown no no no
## 4154 35 student single high.school no yes no
## 4155 47 admin. married university.degree no yes no
## 4156 33 self-employed single university.degree no no no
## 4157 34 management married university.degree no yes no
## 4158 38 admin. single university.degree no yes no
## 4159 40 entrepreneur married high.school no no yes
## 4160 26 services single high.school no no no
## 4161 42 self-employed married university.degree no no no
## 4162 35 student single university.degree unknown no yes
## 4163 59 technician married professional.course no yes no
## 4164 43 management married high.school no no no
## 4165 33 admin. married high.school no no no
## 4166 47 management divorced university.degree no yes no
## 4167 30 blue-collar single high.school no no no
## 4168 35 blue-collar married basic.4y no yes no
## 4169 31 admin. single university.degree no yes no
## 4170 33 management married university.degree no yes no
## 4171 60 retired married basic.4y unknown yes no
## 4172 46 entrepreneur married unknown unknown yes no
## 4173 31 blue-collar divorced basic.9y no yes no
## 4174 56 management married unknown no yes no
## 4175 28 services single high.school no yes yes
## 4176 29 blue-collar single unknown no no no
## 4177 35 entrepreneur married high.school no no no
## 4178 54 services single high.school unknown no no
## 4179 43 blue-collar married professional.course no no yes
## 4180 46 blue-collar married basic.9y unknown no no
## 4181 28 admin. married university.degree no no no
## 4182 30 housemaid married high.school unknown yes no
## 4183 36 services married high.school no no no
## 4184 50 blue-collar married basic.4y no yes no
## 4185 37 technician married university.degree unknown no no
## 4186 28 housemaid married basic.6y unknown no no
## 4187 52 blue-collar married basic.4y no no no
## 4188 37 blue-collar single unknown unknown no no
## 4189 27 services married high.school unknown no yes
## 4190 44 blue-collar married basic.9y unknown no no
## 4191 34 management married unknown no yes no
## 4192 56 retired divorced basic.4y no yes yes
## 4193 36 blue-collar married basic.6y no no no
## 4194 39 housemaid married high.school no yes no
## 4195 37 blue-collar married basic.6y no no yes
## 4196 48 retired divorced professional.course no no no
## 4197 55 admin. married high.school no no no
## 4198 33 admin. married university.degree no no no
## 4199 32 blue-collar married basic.9y no no no
## 4200 35 admin. married high.school unknown yes no
## 4201 39 technician married professional.course no yes no
## 4202 36 services married high.school no yes no
## 4203 51 blue-collar married basic.9y unknown no no
## 4204 42 blue-collar married unknown no no yes
## 4205 49 services divorced high.school unknown no yes
## 4206 32 management divorced basic.4y unknown yes no
## 4207 43 technician married professional.course no no yes
## 4208 31 admin. divorced high.school no no yes
## 4209 25 blue-collar married basic.9y no yes no
## 4210 49 technician married professional.course no no no
## 4211 53 blue-collar divorced basic.4y no yes no
## 4212 26 admin. single high.school no yes yes
## 4213 41 technician married professional.course no no yes
## 4214 39 blue-collar divorced basic.9y no no no
## 4215 33 admin. divorced university.degree no no no
## 4216 45 blue-collar married basic.9y unknown yes no
## 4217 56 admin. married university.degree unknown no no
## 4218 39 housemaid married basic.4y no no yes
## 4219 30 blue-collar single university.degree no no no
## 4220 28 unknown single basic.9y unknown yes no
## 4221 50 admin. married high.school unknown yes no
## 4222 44 management married university.degree no no yes
## 4223 55 blue-collar married basic.4y unknown yes no
## 4224 31 services single basic.6y no yes no
## 4225 44 services married high.school no unknown unknown
## 4226 27 technician married university.degree no no yes
## 4227 56 services married high.school unknown no yes
## 4228 35 admin. married high.school no yes yes
## 4229 47 management married university.degree no yes yes
## 4230 30 admin. divorced university.degree no no yes
## 4231 37 services married high.school no no no
## 4232 36 services single basic.6y unknown yes no
## 4233 33 services single basic.9y no no yes
## 4234 38 technician married professional.course no yes yes
## 4235 46 admin. single university.degree no no yes
## 4236 57 technician married professional.course no no no
## 4237 34 blue-collar married basic.9y no no no
## 4238 33 self-employed married basic.9y no no no
## 4239 49 management married university.degree unknown yes no
## 4240 32 management married university.degree no no no
## 4241 37 admin. single high.school unknown yes no
## 4242 42 housemaid married professional.course no yes no
## 4243 35 blue-collar married unknown no yes no
## 4244 59 admin. married university.degree unknown no yes
## 4245 30 self-employed married professional.course no no no
## 4246 35 blue-collar married high.school no yes no
## 4247 40 technician married professional.course no yes no
## 4248 42 admin. married university.degree no no no
## 4249 51 blue-collar married high.school no yes no
## 4250 49 admin. single high.school no no no
## 4251 48 admin. single university.degree no no no
## 4252 46 blue-collar married unknown no yes no
## 4253 29 services single high.school no no no
## 4254 44 technician married university.degree no no no
## 4255 41 self-employed married high.school no no no
## 4256 42 technician single high.school no no no
## 4257 38 blue-collar married unknown no yes no
## 4258 41 blue-collar divorced basic.4y unknown yes no
## 4259 57 retired single professional.course no yes no
## 4260 47 blue-collar married basic.4y unknown yes no
## 4261 47 admin. divorced university.degree no no no
## 4262 42 admin. married basic.4y no no no
## 4263 52 blue-collar married basic.9y unknown yes no
## 4264 33 admin. married basic.9y no no no
## 4265 35 admin. married university.degree no yes no
## 4266 39 entrepreneur married university.degree no yes no
## 4267 46 self-employed married basic.9y unknown yes yes
## 4268 48 self-employed married basic.9y unknown no no
## 4269 52 services divorced high.school no no no
## 4270 44 admin. single university.degree no yes no
## 4271 36 services single basic.9y no yes yes
## 4272 30 blue-collar married high.school no no no
## 4273 28 blue-collar married basic.6y no yes no
## 4274 41 technician married basic.9y no no no
## 4275 32 services single basic.9y no yes no
## 4276 42 entrepreneur married basic.6y no no no
## 4277 41 blue-collar married basic.9y unknown no no
## 4278 44 unemployed married university.degree unknown no yes
## 4279 32 blue-collar divorced basic.9y unknown yes no
## 4280 55 admin. married high.school no yes yes
## 4281 33 services married professional.course no no no
## 4282 42 unemployed married high.school unknown yes yes
## 4283 32 entrepreneur married high.school unknown yes no
## 4284 31 admin. married university.degree unknown yes no
## 4285 48 technician married professional.course no yes no
## 4286 41 blue-collar married basic.9y unknown yes no
## 4287 50 entrepreneur divorced university.degree no yes no
## 4288 42 services married unknown no no no
## 4289 42 admin. divorced university.degree no yes no
## 4290 34 blue-collar married basic.4y no yes no
## 4291 27 unemployed married high.school no yes yes
## 4292 44 blue-collar married basic.4y no no no
## 4293 44 services married high.school no yes yes
## 4294 56 technician married professional.course unknown no yes
## 4295 38 technician married professional.course unknown yes no
## 4296 28 admin. married high.school no unknown unknown
## 4297 39 entrepreneur married basic.6y unknown yes yes
## 4298 52 admin. married basic.6y no no no
## 4299 43 management married professional.course no no no
## 4300 41 admin. single high.school no no no
## 4301 41 admin. single high.school no no yes
## 4302 41 admin. single high.school no no no
## 4303 44 blue-collar married basic.9y unknown no no
## 4304 39 admin. married university.degree no yes no
## 4305 45 housemaid married professional.course unknown no no
## 4306 47 admin. divorced university.degree no yes no
## 4307 44 admin. married high.school no yes yes
## 4308 44 management divorced basic.9y unknown no no
## 4309 42 housemaid married basic.4y no yes no
## 4310 44 technician married professional.course no no no
## 4311 32 admin. single university.degree unknown yes no
## 4312 36 admin. married university.degree no no no
## 4313 42 blue-collar married basic.6y no no no
## 4314 49 technician married professional.course no yes no
## 4315 45 blue-collar married basic.4y no no no
## 4316 54 housemaid divorced unknown no no no
## 4317 46 management married university.degree no no no
## 4318 39 blue-collar single unknown unknown no no
## 4319 48 technician single unknown no unknown unknown
## 4320 35 technician single high.school no no no
## 4321 41 blue-collar married basic.9y unknown no no
## 4322 53 admin. married basic.9y unknown no no
## 4323 37 services married high.school no no no
## 4324 49 admin. married university.degree no yes no
## 4325 37 services married high.school no yes no
## 4326 40 services married high.school no yes no
## 4327 41 unknown single basic.9y no no yes
## 4328 38 technician married basic.9y no yes no
## 4329 43 admin. divorced high.school no no no
## 4330 51 blue-collar married basic.6y unknown unknown unknown
## 4331 37 admin. married high.school unknown no no
## 4332 33 admin. married university.degree no no no
## 4333 30 admin. single university.degree no yes no
## 4334 51 blue-collar married basic.6y unknown yes no
## 4335 24 admin. married high.school no no yes
## 4336 26 technician single high.school no yes no
## 4337 39 blue-collar married basic.9y unknown no no
## 4338 37 technician married university.degree unknown yes no
## 4339 32 services married basic.9y no yes no
## 4340 45 admin. married basic.9y no no no
## 4341 46 admin. divorced university.degree no yes no
## 4342 40 admin. married university.degree unknown no yes
## 4343 40 admin. married university.degree unknown yes no
## 4344 50 blue-collar married basic.4y unknown yes no
## 4345 44 blue-collar single basic.9y unknown no no
## 4346 40 admin. married university.degree unknown no no
## 4347 43 services married high.school no no no
## 4348 28 services single high.school no no yes
## 4349 30 services married high.school unknown yes no
## 4350 36 entrepreneur married university.degree unknown yes yes
## 4351 29 technician married university.degree no yes no
## 4352 44 services divorced high.school no no no
## 4353 30 admin. married high.school no no no
## 4354 26 services divorced basic.6y no no yes
## 4355 43 blue-collar single basic.4y unknown yes no
## 4356 29 technician married unknown no yes no
## 4357 39 technician single high.school no yes no
## 4358 32 admin. single professional.course no yes no
## 4359 36 blue-collar married basic.9y unknown yes no
## 4360 57 blue-collar married basic.4y unknown no no
## 4361 36 blue-collar single high.school unknown no no
## 4362 44 blue-collar married high.school no yes no
## 4363 36 housemaid married basic.4y no no no
## 4364 24 services married professional.course no yes no
## 4365 48 technician married basic.4y unknown yes yes
## 4366 44 technician single unknown unknown yes no
## 4367 35 student single high.school no yes yes
## 4368 47 unknown married unknown unknown yes no
## 4369 30 technician single unknown no yes no
## 4370 53 services married high.school unknown yes no
## 4371 26 admin. single high.school no yes no
## 4372 56 retired married high.school no yes no
## 4373 56 retired married high.school unknown yes yes
## 4374 38 technician married professional.course unknown no no
## 4375 56 blue-collar married basic.4y unknown no no
## 4376 35 self-employed married university.degree no no no
## 4377 34 services married high.school no no no
## 4378 35 retired single basic.9y unknown yes yes
## 4379 47 blue-collar married basic.4y unknown yes no
## 4380 42 blue-collar married basic.4y unknown yes yes
## 4381 54 retired married basic.9y no no yes
## 4382 43 management married professional.course no yes no
## 4383 28 admin. single university.degree no no no
## 4384 31 blue-collar married basic.6y unknown yes yes
## 4385 44 blue-collar single high.school no no yes
## 4386 59 retired married unknown unknown no no
## 4387 58 management married university.degree no no yes
## 4388 37 admin. married basic.6y no no no
## 4389 36 technician married professional.course no no no
## 4390 31 admin. single basic.9y no yes no
## 4391 30 blue-collar married basic.9y no yes no
## 4392 41 unknown married basic.6y unknown no no
## 4393 41 services married basic.6y unknown yes no
## 4394 26 admin. single high.school no yes no
## 4395 38 admin. single university.degree no no no
## 4396 28 blue-collar single basic.9y no yes no
## 4397 29 technician married university.degree no no no
## 4398 24 blue-collar single high.school no unknown unknown
## 4399 51 services single high.school unknown no no
## 4400 35 admin. married university.degree no yes yes
## 4401 50 entrepreneur married basic.9y no yes no
## 4402 33 technician divorced professional.course no yes no
## 4403 57 management divorced university.degree no no no
## 4404 28 blue-collar single basic.9y no no no
## 4405 50 blue-collar single basic.4y no yes no
## 4406 48 admin. divorced university.degree no yes no
## 4407 43 entrepreneur married high.school no no yes
## 4408 39 admin. single university.degree no no no
## 4409 39 admin. married high.school no no no
## 4410 33 services single basic.6y unknown no no
## 4411 31 blue-collar married basic.9y no yes yes
## 4412 43 blue-collar married basic.4y no yes no
## 4413 45 blue-collar married basic.9y no no no
## 4414 30 admin. married high.school no no no
## 4415 41 unemployed married university.degree unknown no no
## 4416 30 admin. married high.school no yes no
## 4417 43 entrepreneur divorced high.school unknown yes no
## 4418 49 technician married university.degree no no no
## 4419 38 technician single high.school no yes no
## 4420 58 admin. married high.school no yes no
## 4421 31 management single high.school no no no
## 4422 39 management married university.degree no yes no
## 4423 30 blue-collar married basic.6y no yes no
## 4424 58 retired married basic.6y unknown no no
## 4425 30 blue-collar single basic.9y unknown yes yes
## 4426 57 admin. married university.degree no no yes
## 4427 34 blue-collar married basic.6y no no yes
## 4428 30 technician single university.degree no no no
## 4429 40 technician married professional.course no yes no
## 4430 37 housemaid married high.school no yes no
## 4431 41 admin. single high.school unknown yes no
## 4432 40 blue-collar married high.school no no yes
## 4433 42 blue-collar married unknown no yes no
## 4434 44 management married university.degree unknown yes no
## 4435 31 management married university.degree no no no
## 4436 29 admin. single high.school no no yes
## 4437 33 technician married professional.course no no no
## 4438 37 blue-collar single basic.9y unknown yes no
## 4439 27 services single basic.9y no no no
## 4440 35 admin. single high.school no yes no
## 4441 31 admin. single university.degree no no yes
## 4442 37 admin. married university.degree no yes no
## 4443 37 admin. single high.school no yes no
## 4444 40 admin. married high.school no no no
## 4445 29 blue-collar married basic.4y no yes no
## 4446 47 services married high.school unknown yes no
## 4447 35 blue-collar married basic.4y no no no
## 4448 27 blue-collar married basic.9y unknown yes yes
## 4449 35 management married university.degree no no no
## 4450 35 admin. married high.school no no yes
## 4451 38 housemaid married basic.9y no yes no
## 4452 35 blue-collar married professional.course no no no
## 4453 41 self-employed married university.degree no yes no
## 4454 51 blue-collar married unknown unknown no yes
## 4455 47 admin. married basic.4y no no no
## 4456 35 blue-collar married basic.9y no no no
## 4457 34 admin. single high.school no no no
## 4458 25 self-employed single university.degree no no no
## 4459 33 technician single university.degree no no yes
## 4460 59 retired married professional.course unknown yes yes
## 4461 51 retired married basic.9y no unknown unknown
## 4462 27 blue-collar married basic.9y unknown no no
## 4463 33 blue-collar married high.school no no no
## 4464 38 blue-collar married basic.6y unknown no no
## 4465 50 blue-collar married basic.6y unknown no no
## 4466 36 blue-collar married basic.6y unknown no no
## 4467 52 unemployed married unknown no no no
## 4468 36 self-employed single professional.course no yes no
## 4469 33 services single basic.9y no no no
## 4470 27 blue-collar single basic.6y no no no
## 4471 41 admin. single high.school no yes no
## 4472 36 admin. married high.school no no no
## 4473 34 management married professional.course unknown no no
## 4474 55 services married high.school unknown yes yes
## 4475 30 blue-collar married basic.9y no no yes
## 4476 58 management married basic.6y no yes no
## 4477 31 unemployed married professional.course no yes yes
## 4478 30 technician single professional.course no yes no
## 4479 31 admin. single high.school no yes no
## 4480 30 admin. married university.degree no no no
## 4481 42 services married high.school no yes no
## 4482 31 services married high.school no no no
## 4483 46 self-employed married basic.9y unknown no yes
## 4484 43 services married high.school no no no
## 4485 58 management married basic.6y no yes no
## 4486 31 technician single university.degree no yes no
## 4487 28 services married high.school no yes yes
## 4488 35 admin. single high.school no yes no
## 4489 26 blue-collar married professional.course unknown yes no
## 4490 30 blue-collar single basic.9y no yes no
## 4491 52 technician married professional.course no no no
## 4492 47 technician married basic.9y no no no
## 4493 51 entrepreneur single unknown no yes no
## 4494 36 blue-collar married basic.9y no no no
## 4495 31 admin. single university.degree no yes no
## 4496 36 blue-collar married high.school no no no
## 4497 34 admin. married university.degree no no no
## 4498 32 blue-collar married basic.9y no no no
## 4499 42 blue-collar married basic.6y unknown yes no
## 4500 32 technician single university.degree no no no
## 4501 37 self-employed married basic.9y unknown no no
## 4502 45 blue-collar married basic.9y unknown yes no
## 4503 28 admin. single university.degree no yes no
## 4504 37 technician married professional.course unknown yes no
## 4505 43 entrepreneur married basic.9y unknown no no
## 4506 54 admin. divorced university.degree no yes yes
## 4507 59 admin. married professional.course no no no
## 4508 44 housemaid married basic.9y unknown yes no
## 4509 33 services single high.school no no no
## 4510 48 admin. married university.degree no no no
## 4511 50 technician divorced professional.course no no no
## 4512 29 self-employed married high.school no no no
## 4513 39 admin. married university.degree no no no
## 4514 36 admin. married university.degree no yes no
## 4515 52 management married unknown unknown yes no
## 4516 48 blue-collar married basic.4y unknown yes yes
## 4517 35 blue-collar married high.school no yes yes
## 4518 38 admin. married university.degree no no no
## 4519 34 blue-collar married basic.6y no no no
## 4520 45 blue-collar married basic.9y no yes no
## 4521 30 admin. married university.degree unknown yes no
## 4522 32 management married high.school no no no
## 4523 55 management married university.degree no yes yes
## 4524 28 blue-collar single high.school unknown yes no
## 4525 37 management divorced high.school no yes no
## 4526 44 blue-collar single professional.course unknown no no
## 4527 39 blue-collar married basic.9y no yes yes
## 4528 36 blue-collar married high.school unknown yes no
## 4529 34 admin. married university.degree no yes yes
## 4530 32 blue-collar married basic.9y no no no
## 4531 35 technician married professional.course no no no
## 4532 44 admin. married high.school no yes no
## 4533 37 services single high.school no no no
## 4534 39 entrepreneur married basic.6y unknown no no
## 4535 30 services single high.school no no no
## 4536 31 admin. single university.degree no yes yes
## 4537 45 blue-collar married basic.9y unknown no no
## 4538 37 blue-collar divorced basic.9y unknown no no
## 4539 29 services divorced high.school no no yes
## 4540 52 blue-collar married basic.4y no yes no
## 4541 53 housemaid married basic.4y unknown no no
## 4542 31 technician single professional.course unknown yes no
## 4543 32 technician single professional.course no no no
## 4544 47 blue-collar married basic.9y no yes no
## 4545 39 management married university.degree no no no
## 4546 30 blue-collar married basic.6y no no no
## 4547 32 blue-collar married basic.4y no no no
## 4548 43 unknown married high.school unknown yes yes
## 4549 59 unknown married unknown unknown no no
## 4550 46 entrepreneur married basic.9y no no no
## 4551 54 retired divorced high.school no yes no
## 4552 35 blue-collar married basic.9y no yes no
## 4553 33 management single university.degree no no no
## 4554 37 services divorced high.school no yes yes
## 4555 41 blue-collar single high.school no yes no
## 4556 44 technician married professional.course no yes no
## 4557 33 technician married professional.course no yes no
## 4558 49 admin. divorced basic.9y no yes yes
## 4559 38 technician married professional.course no yes no
## 4560 37 blue-collar married high.school no yes yes
## 4561 39 admin. married professional.course no yes no
## 4562 43 blue-collar married basic.4y no yes no
## 4563 55 housemaid divorced unknown unknown yes no
## 4564 40 blue-collar married high.school no no yes
## 4565 41 services married high.school no yes no
## 4566 50 blue-collar married basic.6y unknown yes yes
## 4567 41 blue-collar married basic.4y no no no
## 4568 52 technician divorced university.degree no no no
## 4569 31 blue-collar married high.school unknown yes no
## 4570 34 technician single professional.course no yes no
## 4571 56 entrepreneur married university.degree no yes no
## 4572 51 admin. single basic.6y no no no
## 4573 39 blue-collar married basic.9y no yes no
## 4574 36 entrepreneur married university.degree unknown no no
## 4575 28 admin. single university.degree no no no
## 4576 32 management married high.school no yes yes
## 4577 38 blue-collar single high.school no no no
## 4578 46 blue-collar married basic.9y no yes no
## 4579 42 management married unknown unknown no no
## 4580 37 blue-collar married professional.course no yes no
## 4581 31 admin. married high.school unknown no no
## 4582 30 services married high.school no yes no
## 4583 41 management married unknown no no no
## 4584 34 blue-collar married basic.4y no yes no
## 4585 46 blue-collar divorced basic.6y no no no
## 4586 24 blue-collar married basic.9y no no no
## 4587 36 admin. married high.school no yes no
## 4588 39 admin. single university.degree unknown no no
## 4589 36 technician single high.school no yes yes
## 4590 38 housemaid married basic.9y no no no
## 4591 37 blue-collar married basic.6y no yes no
## 4592 35 admin. married high.school unknown yes yes
## 4593 41 services married university.degree no yes no
## 4594 52 unknown married basic.4y no no no
## 4595 31 technician married professional.course no no no
## 4596 35 blue-collar married basic.6y no no no
## 4597 39 blue-collar married basic.9y no no no
## 4598 40 technician married basic.9y no yes no
## 4599 34 admin. single high.school no yes no
## 4600 27 student single university.degree no yes no
## 4601 33 blue-collar married basic.9y no no yes
## 4602 39 entrepreneur married basic.9y no no no
## 4603 39 housemaid married basic.4y no yes no
## 4604 43 entrepreneur married basic.4y no no no
## 4605 26 technician married professional.course no no no
## 4606 50 blue-collar married basic.4y no yes no
## 4607 46 self-employed single high.school no yes no
## 4608 57 retired married high.school unknown no no
## 4609 40 services single high.school no yes no
## 4610 28 services single high.school no yes no
## 4611 51 unemployed married professional.course no no no
## 4612 32 technician single high.school no yes no
## 4613 28 blue-collar married basic.6y unknown no no
## 4614 38 admin. single university.degree unknown yes no
## 4615 34 blue-collar single basic.9y no no no
## 4616 34 technician married university.degree no no no
## 4617 31 services single basic.9y no no no
## 4618 35 services single high.school unknown no yes
## 4619 41 blue-collar divorced basic.9y unknown no no
## 4620 29 services married high.school no yes no
## 4621 56 housemaid divorced basic.4y unknown no no
## 4622 27 admin. single university.degree no yes no
## 4623 42 blue-collar married basic.6y unknown no no
## 4624 49 technician married professional.course no yes no
## 4625 49 blue-collar married basic.4y no unknown unknown
## 4626 40 blue-collar married basic.6y unknown no no
## 4627 39 housemaid married university.degree no yes no
## 4628 31 admin. single high.school no no no
## 4629 46 blue-collar married basic.9y no no no
## 4630 33 blue-collar single basic.6y no no no
## 4631 35 technician married professional.course no yes yes
## 4632 38 unemployed single high.school no yes no
## 4633 33 services married high.school no yes yes
## 4634 41 blue-collar married basic.9y no yes no
## 4635 34 technician divorced professional.course no unknown unknown
## 4636 32 blue-collar married professional.course unknown yes no
## 4637 35 entrepreneur married high.school no no no
## 4638 34 technician married university.degree no no no
## 4639 26 admin. single university.degree no no no
## 4640 34 blue-collar married basic.6y unknown no no
## 4641 35 services married basic.9y unknown yes no
## 4642 51 blue-collar divorced basic.6y unknown no no
## 4643 50 housemaid married basic.4y no no no
## 4644 44 technician divorced basic.9y unknown no no
## 4645 27 technician single professional.course no no no
## 4646 44 technician divorced basic.9y unknown yes yes
## 4647 45 services married basic.9y no no no
## 4648 30 technician single professional.course no no no
## 4649 43 entrepreneur married basic.4y no yes no
## 4650 43 blue-collar married basic.9y unknown no no
## 4651 47 services divorced high.school no yes no
## 4652 45 blue-collar married basic.4y unknown yes no
## 4653 47 blue-collar married basic.4y no yes no
## 4654 37 technician single university.degree no yes no
## 4655 41 blue-collar married basic.9y no no no
## 4656 32 unknown married basic.6y unknown yes no
## 4657 48 blue-collar married basic.4y unknown no no
## 4658 36 services single high.school no yes yes
## 4659 46 housemaid married basic.4y no no no
## 4660 50 admin. divorced high.school no no no
## 4661 45 admin. married basic.6y no yes yes
## 4662 45 admin. married basic.6y no yes no
## 4663 37 blue-collar married basic.9y no unknown unknown
## 4664 57 self-employed married basic.9y unknown yes yes
## 4665 45 technician single professional.course no yes no
## 4666 39 blue-collar married basic.4y unknown no no
## 4667 46 blue-collar married basic.4y no no no
## 4668 42 admin. divorced university.degree no no no
## 4669 25 management single basic.4y no no no
## 4670 45 blue-collar single basic.9y no no no
## 4671 40 admin. single high.school no no no
## 4672 39 admin. married university.degree unknown no no
## 4673 49 blue-collar married basic.4y no no no
## 4674 51 self-employed single university.degree no yes no
## 4675 43 blue-collar single basic.4y unknown no no
## 4676 35 entrepreneur married high.school no no no
## 4677 46 blue-collar married basic.9y unknown no no
## 4678 30 blue-collar married basic.9y unknown no yes
## 4679 29 blue-collar single high.school no yes no
## 4680 24 blue-collar married basic.4y unknown yes no
## 4681 38 blue-collar married basic.6y unknown no yes
## 4682 27 services married high.school unknown yes no
## 4683 35 blue-collar married basic.9y no yes no
## 4684 31 blue-collar divorced basic.6y no no no
## 4685 27 blue-collar married basic.9y no no no
## 4686 37 technician married university.degree no no no
## 4687 44 blue-collar married basic.4y unknown yes yes
## 4688 29 admin. single basic.9y unknown no no
## 4689 60 unknown married university.degree no no no
## 4690 51 technician married university.degree no yes no
## 4691 34 services married high.school no no no
## 4692 30 technician divorced professional.course no yes no
## 4693 36 services married high.school no no no
## 4694 36 blue-collar single basic.9y unknown no no
## 4695 34 services married high.school no yes yes
## 4696 38 management single university.degree no no no
## 4697 55 services married high.school no yes no
## 4698 49 unknown married high.school unknown yes no
## 4699 31 admin. single university.degree no yes no
## 4700 56 retired married basic.4y no yes yes
## 4701 35 entrepreneur divorced university.degree no no no
## 4702 34 blue-collar married basic.9y unknown no no
## 4703 29 self-employed married university.degree unknown yes no
## 4704 57 blue-collar married basic.4y unknown no no
## 4705 48 technician married basic.6y no no yes
## 4706 53 self-employed married university.degree no no yes
## 4707 37 admin. married high.school no no no
## 4708 30 blue-collar married basic.4y no yes no
## 4709 47 blue-collar single basic.4y no no no
## 4710 26 technician married basic.6y no no yes
## 4711 33 self-employed married high.school no yes no
## 4712 43 blue-collar married high.school unknown yes no
## 4713 29 blue-collar single unknown no no no
## 4714 22 services single basic.9y no no no
## 4715 51 retired married university.degree no yes yes
## 4716 45 technician married basic.9y unknown no no
## 4717 29 admin. single university.degree no no no
## 4718 31 services married high.school no yes no
## 4719 48 unemployed married basic.4y no yes no
## 4720 50 blue-collar single basic.9y unknown yes no
## 4721 31 admin. married high.school no yes no
## 4722 27 admin. divorced high.school no no no
## 4723 39 blue-collar married basic.4y unknown no no
## 4724 28 management married high.school unknown no no
## 4725 34 entrepreneur single professional.course no no no
## 4726 38 blue-collar single basic.9y no yes no
## 4727 29 self-employed married basic.6y unknown yes no
## 4728 35 blue-collar divorced basic.9y unknown no no
## 4729 32 blue-collar divorced basic.4y no no no
## 4730 33 management married university.degree no yes no
## 4731 50 services single high.school unknown no no
## 4732 57 management divorced university.degree no no no
## 4733 42 technician divorced basic.9y no no no
## 4734 39 blue-collar married basic.4y unknown yes no
## 4735 52 management divorced university.degree no no no
## 4736 33 admin. single university.degree no no no
## 4737 60 admin. married university.degree unknown no no
## 4738 27 services married professional.course no no no
## 4739 35 blue-collar married basic.9y no yes no
## 4740 29 admin. single university.degree no no yes
## 4741 31 blue-collar single high.school no yes no
## 4742 53 blue-collar married basic.9y unknown no no
## 4743 26 technician married professional.course no no no
## 4744 38 admin. married high.school no unknown unknown
## 4745 49 blue-collar married basic.6y no no no
## 4746 55 retired divorced high.school unknown yes no
## 4747 44 unknown single basic.9y unknown yes no
## 4748 37 blue-collar married professional.course no no no
## 4749 39 unemployed single basic.9y unknown yes no
## 4750 34 admin. married high.school no yes no
## 4751 29 services married high.school no yes no
## 4752 44 blue-collar married basic.4y unknown no no
## 4753 55 management married university.degree unknown no no
## 4754 53 admin. single basic.6y no yes no
## 4755 32 management single university.degree no no no
## 4756 43 blue-collar married basic.4y unknown yes no
## 4757 52 management divorced university.degree no no yes
## 4758 48 blue-collar married basic.9y no yes no
## 4759 37 technician married professional.course unknown no no
## 4760 32 blue-collar married professional.course no no yes
## 4761 46 admin. divorced university.degree no yes no
## contact month day_of_week duration campaign pdays previous poutcome
## 1 telephone may mon 261 1 999 0 nonexistent
## 2 telephone may mon 149 1 999 0 nonexistent
## 3 telephone may mon 226 1 999 0 nonexistent
## 4 telephone may mon 151 1 999 0 nonexistent
## 5 telephone may mon 307 1 999 0 nonexistent
## 6 telephone may mon 198 1 999 0 nonexistent
## 7 telephone may mon 139 1 999 0 nonexistent
## 8 telephone may mon 217 1 999 0 nonexistent
## 9 telephone may mon 380 1 999 0 nonexistent
## 10 telephone may mon 50 1 999 0 nonexistent
## 11 telephone may mon 55 1 999 0 nonexistent
## 12 telephone may mon 222 1 999 0 nonexistent
## 13 telephone may mon 137 1 999 0 nonexistent
## 14 telephone may mon 174 1 999 0 nonexistent
## 15 telephone may mon 312 1 999 0 nonexistent
## 16 telephone may mon 440 1 999 0 nonexistent
## 17 telephone may mon 353 1 999 0 nonexistent
## 18 telephone may mon 195 1 999 0 nonexistent
## 19 telephone may mon 38 1 999 0 nonexistent
## 20 telephone may mon 262 1 999 0 nonexistent
## 21 telephone may mon 181 1 999 0 nonexistent
## 22 telephone may mon 99 1 999 0 nonexistent
## 23 telephone may mon 93 1 999 0 nonexistent
## 24 telephone may mon 233 1 999 0 nonexistent
## 25 telephone may mon 255 2 999 0 nonexistent
## 26 telephone may mon 362 1 999 0 nonexistent
## 27 telephone may mon 348 1 999 0 nonexistent
## 28 telephone may mon 386 1 999 0 nonexistent
## 29 telephone may mon 73 1 999 0 nonexistent
## 30 telephone may mon 230 1 999 0 nonexistent
## 31 telephone may mon 208 1 999 0 nonexistent
## 32 telephone may mon 336 1 999 0 nonexistent
## 33 telephone may mon 365 1 999 0 nonexistent
## 34 telephone may mon 1666 1 999 0 nonexistent
## 35 telephone may mon 577 1 999 0 nonexistent
## 36 telephone may mon 137 1 999 0 nonexistent
## 37 telephone may mon 366 1 999 0 nonexistent
## 38 telephone may mon 314 1 999 0 nonexistent
## 39 telephone may mon 160 1 999 0 nonexistent
## 40 telephone may mon 188 1 999 0 nonexistent
## 41 telephone may mon 22 1 999 0 nonexistent
## 42 telephone may mon 616 1 999 0 nonexistent
## 43 telephone may mon 178 1 999 0 nonexistent
## 44 telephone may mon 355 1 999 0 nonexistent
## 45 telephone may mon 225 2 999 0 nonexistent
## 46 telephone may mon 160 1 999 0 nonexistent
## 47 telephone may mon 266 1 999 0 nonexistent
## 48 telephone may mon 253 1 999 0 nonexistent
## 49 telephone may mon 179 1 999 0 nonexistent
## 50 telephone may mon 269 2 999 0 nonexistent
## 51 telephone may mon 135 1 999 0 nonexistent
## 52 telephone may mon 161 1 999 0 nonexistent
## 53 telephone may mon 787 1 999 0 nonexistent
## 54 telephone may mon 145 1 999 0 nonexistent
## 55 telephone may mon 174 1 999 0 nonexistent
## 56 telephone may mon 164 1 999 0 nonexistent
## 57 telephone may mon 366 1 999 0 nonexistent
## 58 telephone may mon 357 1 999 0 nonexistent
## 59 telephone may mon 232 1 999 0 nonexistent
## 60 telephone may mon 91 1 999 0 nonexistent
## 61 telephone may mon 158 2 999 0 nonexistent
## 62 telephone may mon 177 1 999 0 nonexistent
## 63 telephone may mon 200 1 999 0 nonexistent
## 64 telephone may mon 176 1 999 0 nonexistent
## 65 telephone may mon 211 1 999 0 nonexistent
## 66 telephone may mon 214 1 999 0 nonexistent
## 67 telephone may mon 349 1 999 0 nonexistent
## 68 telephone may mon 337 2 999 0 nonexistent
## 69 telephone may mon 272 1 999 0 nonexistent
## 70 telephone may mon 208 1 999 0 nonexistent
## 71 telephone may mon 212 1 999 0 nonexistent
## 72 telephone may mon 246 1 999 0 nonexistent
## 73 telephone may mon 529 2 999 0 nonexistent
## 74 telephone may mon 192 1 999 0 nonexistent
## 75 telephone may mon 188 2 999 0 nonexistent
## 76 telephone may mon 180 2 999 0 nonexistent
## 77 telephone may mon 48 1 999 0 nonexistent
## 78 telephone may mon 213 2 999 0 nonexistent
## 79 telephone may mon 545 1 999 0 nonexistent
## 80 telephone may mon 221 1 999 0 nonexistent
## 81 telephone may mon 426 1 999 0 nonexistent
## 82 telephone may mon 287 1 999 0 nonexistent
## 83 telephone may mon 197 1 999 0 nonexistent
## 84 telephone may mon 257 1 999 0 nonexistent
## 85 telephone may mon 229 1 999 0 nonexistent
## 86 telephone may mon 55 3 999 0 nonexistent
## 87 telephone may mon 400 1 999 0 nonexistent
## 88 telephone may mon 190 1 999 0 nonexistent
## 89 telephone may mon 21 1 999 0 nonexistent
## 90 telephone may mon 300 2 999 0 nonexistent
## 91 telephone may mon 293 1 999 0 nonexistent
## 92 telephone may mon 325 1 999 0 nonexistent
## 93 telephone may mon 514 1 999 0 nonexistent
## 94 telephone may mon 212 2 999 0 nonexistent
## 95 telephone may mon 337 2 999 0 nonexistent
## 96 telephone may mon 286 1 999 0 nonexistent
## 97 telephone may mon 247 2 999 0 nonexistent
## 98 telephone may mon 518 1 999 0 nonexistent
## 99 telephone may mon 178 1 999 0 nonexistent
## 100 telephone may mon 98 1 999 0 nonexistent
## 101 telephone may mon 439 1 999 0 nonexistent
## 102 telephone may mon 139 1 999 0 nonexistent
## 103 telephone may mon 175 1 999 0 nonexistent
## 104 telephone may mon 262 2 999 0 nonexistent
## 105 telephone may mon 61 1 999 0 nonexistent
## 106 telephone may mon 78 1 999 0 nonexistent
## 107 telephone may mon 102 2 999 0 nonexistent
## 108 telephone may mon 143 1 999 0 nonexistent
## 109 telephone may mon 677 1 999 0 nonexistent
## 110 telephone may mon 267 1 999 0 nonexistent
## 111 telephone may mon 345 1 999 0 nonexistent
## 112 telephone may mon 185 1 999 0 nonexistent
## 113 telephone may mon 207 1 999 0 nonexistent
## 114 telephone may mon 69 2 999 0 nonexistent
## 115 telephone may mon 100 2 999 0 nonexistent
## 116 telephone may mon 125 2 999 0 nonexistent
## 117 telephone may mon 240 1 999 0 nonexistent
## 118 telephone may mon 70 1 999 0 nonexistent
## 119 telephone may mon 136 1 999 0 nonexistent
## 120 telephone may mon 73 1 999 0 nonexistent
## 121 telephone may mon 528 1 999 0 nonexistent
## 122 telephone may mon 541 1 999 0 nonexistent
## 123 telephone may mon 338 1 999 0 nonexistent
## 124 telephone may mon 87 1 999 0 nonexistent
## 125 telephone may mon 301 1 999 0 nonexistent
## 126 telephone may mon 46 1 999 0 nonexistent
## 127 telephone may mon 204 1 999 0 nonexistent
## 128 telephone may mon 155 1 999 0 nonexistent
## 129 telephone may mon 71 1 999 0 nonexistent
## 130 telephone may mon 243 1 999 0 nonexistent
## 131 telephone may mon 186 2 999 0 nonexistent
## 132 telephone may mon 579 2 999 0 nonexistent
## 133 telephone may mon 165 2 999 0 nonexistent
## 134 telephone may mon 163 2 999 0 nonexistent
## 135 telephone may mon 2033 1 999 0 nonexistent
## 136 telephone may mon 85 1 999 0 nonexistent
## 137 telephone may mon 506 1 999 0 nonexistent
## 138 telephone may mon 114 2 999 0 nonexistent
## 139 telephone may mon 181 1 999 0 nonexistent
## 140 telephone may mon 427 1 999 0 nonexistent
## 141 telephone may mon 292 1 999 0 nonexistent
## 142 telephone may mon 192 1 999 0 nonexistent
## 143 telephone may mon 128 2 999 0 nonexistent
## 144 telephone may mon 107 1 999 0 nonexistent
## 145 telephone may mon 303 2 999 0 nonexistent
## 146 telephone may mon 81 1 999 0 nonexistent
## 147 telephone may mon 270 1 999 0 nonexistent
## 148 telephone may mon 240 1 999 0 nonexistent
## 149 telephone may mon 233 3 999 0 nonexistent
## 150 telephone may mon 102 1 999 0 nonexistent
## 151 telephone may mon 461 1 999 0 nonexistent
## 152 telephone may mon 250 1 999 0 nonexistent
## 153 telephone may mon 130 1 999 0 nonexistent
## 154 telephone may mon 138 1 999 0 nonexistent
## 155 telephone may mon 412 1 999 0 nonexistent
## 156 telephone may mon 179 2 999 0 nonexistent
## 157 telephone may mon 19 2 999 0 nonexistent
## 158 telephone may mon 228 2 999 0 nonexistent
## 159 telephone may mon 55 1 999 0 nonexistent
## 160 telephone may mon 717 1 999 0 nonexistent
## 161 telephone may mon 313 1 999 0 nonexistent
## 162 telephone may mon 289 1 999 0 nonexistent
## 163 telephone may mon 683 2 999 0 nonexistent
## 164 telephone may mon 1077 1 999 0 nonexistent
## 165 telephone may mon 146 2 999 0 nonexistent
## 166 telephone may mon 356 2 999 0 nonexistent
## 167 telephone may mon 172 1 999 0 nonexistent
## 168 telephone may mon 218 1 999 0 nonexistent
## 169 telephone may mon 67 1 999 0 nonexistent
## 170 telephone may mon 291 1 999 0 nonexistent
## 171 telephone may mon 248 1 999 0 nonexistent
## 172 telephone may mon 286 1 999 0 nonexistent
## 173 telephone may mon 471 1 999 0 nonexistent
## 174 telephone may mon 381 2 999 0 nonexistent
## 175 telephone may mon 287 1 999 0 nonexistent
## 176 telephone may mon 322 3 999 0 nonexistent
## 177 telephone may mon 216 2 999 0 nonexistent
## 178 telephone may mon 366 2 999 0 nonexistent
## 179 telephone may mon 288 1 999 0 nonexistent
## 180 telephone may mon 168 1 999 0 nonexistent
## 181 telephone may mon 132 1 999 0 nonexistent
## 182 telephone may mon 209 2 999 0 nonexistent
## 183 telephone may mon 580 2 999 0 nonexistent
## 184 telephone may mon 165 1 999 0 nonexistent
## 185 telephone may mon 127 2 999 0 nonexistent
## 186 telephone may mon 357 1 999 0 nonexistent
## 187 telephone may mon 175 1 999 0 nonexistent
## 188 telephone may mon 300 1 999 0 nonexistent
## 189 telephone may mon 136 1 999 0 nonexistent
## 190 telephone may mon 125 2 999 0 nonexistent
## 191 telephone may mon 189 2 999 0 nonexistent
## 192 telephone may mon 238 2 999 0 nonexistent
## 193 telephone may mon 124 1 999 0 nonexistent
## 194 telephone may mon 18 1 999 0 nonexistent
## 195 telephone may mon 730 2 999 0 nonexistent
## 196 telephone may mon 181 2 999 0 nonexistent
## 197 telephone may mon 79 1 999 0 nonexistent
## 198 telephone may mon 142 2 999 0 nonexistent
## 199 telephone may mon 702 1 999 0 nonexistent
## 200 telephone may mon 211 1 999 0 nonexistent
## 201 telephone may mon 117 1 999 0 nonexistent
## 202 telephone may mon 232 3 999 0 nonexistent
## 203 telephone may mon 408 2 999 0 nonexistent
## 204 telephone may mon 370 3 999 0 nonexistent
## 205 telephone may mon 179 2 999 0 nonexistent
## 206 telephone may mon 46 1 999 0 nonexistent
## 207 telephone may mon 200 1 999 0 nonexistent
## 208 telephone may mon 50 1 999 0 nonexistent
## 209 telephone may mon 181 1 999 0 nonexistent
## 210 telephone may mon 119 1 999 0 nonexistent
## 211 telephone may mon 361 1 999 0 nonexistent
## 212 telephone may mon 73 3 999 0 nonexistent
## 213 telephone may mon 67 2 999 0 nonexistent
## 214 telephone may mon 350 1 999 0 nonexistent
## 215 telephone may mon 332 2 999 0 nonexistent
## 216 telephone may mon 58 3 999 0 nonexistent
## 217 telephone may mon 151 1 999 0 nonexistent
## 218 telephone may mon 89 2 999 0 nonexistent
## 219 telephone may mon 152 1 999 0 nonexistent
## 220 telephone may mon 611 2 999 0 nonexistent
## 221 telephone may mon 110 2 999 0 nonexistent
## 222 telephone may mon 463 1 999 0 nonexistent
## 223 telephone may mon 962 1 999 0 nonexistent
## 224 telephone may mon 102 2 999 0 nonexistent
## 225 telephone may mon 10 4 999 0 nonexistent
## 226 telephone may mon 118 3 999 0 nonexistent
## 227 telephone may mon 92 2 999 0 nonexistent
## 228 telephone may mon 143 3 999 0 nonexistent
## 229 telephone may mon 189 3 999 0 nonexistent
## 230 telephone may mon 75 2 999 0 nonexistent
## 231 telephone may mon 189 2 999 0 nonexistent
## 232 telephone may mon 55 2 999 0 nonexistent
## 233 telephone may mon 56 2 999 0 nonexistent
## 234 telephone may mon 5 2 999 0 nonexistent
## 235 telephone may mon 286 2 999 0 nonexistent
## 236 telephone may mon 206 2 999 0 nonexistent
## 237 telephone may mon 164 2 999 0 nonexistent
## 238 telephone may mon 98 2 999 0 nonexistent
## 239 telephone may mon 446 2 999 0 nonexistent
## 240 telephone may mon 742 2 999 0 nonexistent
## 241 telephone may mon 122 3 999 0 nonexistent
## 242 telephone may mon 362 4 999 0 nonexistent
## 243 telephone may mon 357 2 999 0 nonexistent
## 244 telephone may mon 200 2 999 0 nonexistent
## 245 telephone may mon 107 2 999 0 nonexistent
## 246 telephone may mon 209 2 999 0 nonexistent
## 247 telephone may mon 205 2 999 0 nonexistent
## 248 telephone may mon 261 3 999 0 nonexistent
## 249 telephone may mon 83 2 999 0 nonexistent
## 250 telephone may mon 106 3 999 0 nonexistent
## 251 telephone may mon 106 2 999 0 nonexistent
## 252 telephone may mon 108 2 999 0 nonexistent
## 253 telephone may mon 214 2 999 0 nonexistent
## 254 telephone may mon 358 2 999 0 nonexistent
## 255 telephone may mon 453 2 999 0 nonexistent
## 256 telephone may mon 364 2 999 0 nonexistent
## 257 telephone may mon 136 2 999 0 nonexistent
## 258 telephone may mon 241 2 999 0 nonexistent
## 259 telephone may mon 224 3 999 0 nonexistent
## 260 telephone may mon 148 2 999 0 nonexistent
## 261 telephone may mon 230 2 999 0 nonexistent
## 262 telephone may mon 199 3 999 0 nonexistent
## 263 telephone may mon 196 2 999 0 nonexistent
## 264 telephone may mon 111 4 999 0 nonexistent
## 265 telephone may mon 231 3 999 0 nonexistent
## 266 telephone may mon 316 3 999 0 nonexistent
## 267 telephone may mon 240 2 999 0 nonexistent
## 268 telephone may mon 669 3 999 0 nonexistent
## 269 telephone may mon 425 2 999 0 nonexistent
## 270 telephone may mon 174 5 999 0 nonexistent
## 271 telephone may mon 313 3 999 0 nonexistent
## 272 telephone may mon 135 4 999 0 nonexistent
## 273 telephone may mon 152 2 999 0 nonexistent
## 274 telephone may mon 402 3 999 0 nonexistent
## 275 telephone may mon 221 2 999 0 nonexistent
## 276 telephone may mon 144 3 999 0 nonexistent
## 277 telephone may mon 158 3 999 0 nonexistent
## 278 telephone may mon 220 3 999 0 nonexistent
## 279 telephone may mon 254 2 999 0 nonexistent
## 280 telephone may mon 503 2 999 0 nonexistent
## 281 telephone may mon 421 4 999 0 nonexistent
## 282 telephone may mon 130 3 999 0 nonexistent
## 283 telephone may mon 164 2 999 0 nonexistent
## 284 telephone may mon 174 3 999 0 nonexistent
## 285 telephone may mon 113 2 999 0 nonexistent
## 286 telephone may mon 195 2 999 0 nonexistent
## 287 telephone may mon 347 3 999 0 nonexistent
## 288 telephone may mon 208 2 999 0 nonexistent
## 289 telephone may mon 404 4 999 0 nonexistent
## 290 telephone may mon 396 2 999 0 nonexistent
## 291 telephone may mon 98 2 999 0 nonexistent
## 292 telephone may mon 229 3 999 0 nonexistent
## 293 telephone may mon 350 2 999 0 nonexistent
## 294 telephone may tue 88 3 999 0 nonexistent
## 295 telephone may tue 168 3 999 0 nonexistent
## 296 telephone may tue 158 1 999 0 nonexistent
## 297 telephone may tue 210 1 999 0 nonexistent
## 298 telephone may tue 102 1 999 0 nonexistent
## 299 telephone may tue 64 1 999 0 nonexistent
## 300 telephone may tue 77 1 999 0 nonexistent
## 301 telephone may tue 344 1 999 0 nonexistent
## 302 telephone may tue 195 1 999 0 nonexistent
## 303 telephone may tue 202 1 999 0 nonexistent
## 304 telephone may tue 286 1 999 0 nonexistent
## 305 telephone may tue 278 1 999 0 nonexistent
## 306 telephone may tue 189 1 999 0 nonexistent
## 307 telephone may tue 18 1 999 0 nonexistent
## 308 telephone may tue 184 2 999 0 nonexistent
## 309 telephone may tue 235 1 999 0 nonexistent
## 310 telephone may tue 290 1 999 0 nonexistent
## 311 telephone may tue 133 1 999 0 nonexistent
## 312 telephone may tue 318 1 999 0 nonexistent
## 313 telephone may tue 437 1 999 0 nonexistent
## 314 telephone may tue 402 1 999 0 nonexistent
## 315 telephone may tue 253 1 999 0 nonexistent
## 316 telephone may tue 149 1 999 0 nonexistent
## 317 telephone may tue 144 1 999 0 nonexistent
## 318 telephone may tue 69 1 999 0 nonexistent
## 319 telephone may tue 243 1 999 0 nonexistent
## 320 telephone may tue 769 2 999 0 nonexistent
## 321 telephone may tue 135 3 999 0 nonexistent
## 322 telephone may tue 231 1 999 0 nonexistent
## 323 telephone may tue 442 2 999 0 nonexistent
## 324 telephone may tue 199 1 999 0 nonexistent
## 325 telephone may tue 455 1 999 0 nonexistent
## 326 telephone may tue 152 1 999 0 nonexistent
## 327 telephone may tue 124 1 999 0 nonexistent
## 328 telephone may tue 424 1 999 0 nonexistent
## 329 telephone may tue 43 1 999 0 nonexistent
## 330 telephone may tue 154 1 999 0 nonexistent
## 331 telephone may tue 203 2 999 0 nonexistent
## 332 telephone may tue 140 2 999 0 nonexistent
## 333 telephone may tue 326 1 999 0 nonexistent
## 334 telephone may tue 483 1 999 0 nonexistent
## 335 telephone may tue 259 1 999 0 nonexistent
## 336 telephone may tue 227 1 999 0 nonexistent
## 337 telephone may tue 673 1 999 0 nonexistent
## 338 telephone may tue 576 1 999 0 nonexistent
## 339 telephone may tue 180 2 999 0 nonexistent
## 340 telephone may tue 90 1 999 0 nonexistent
## 341 telephone may tue 245 1 999 0 nonexistent
## 342 telephone may tue 208 1 999 0 nonexistent
## 343 telephone may tue 623 1 999 0 nonexistent
## 344 telephone may tue 180 1 999 0 nonexistent
## 345 telephone may tue 496 3 999 0 nonexistent
## 346 telephone may tue 102 2 999 0 nonexistent
## 347 telephone may tue 225 1 999 0 nonexistent
## 348 telephone may tue 276 1 999 0 nonexistent
## 349 telephone may tue 87 1 999 0 nonexistent
## 350 telephone may tue 744 1 999 0 nonexistent
## 351 telephone may tue 262 1 999 0 nonexistent
## 352 telephone may tue 271 1 999 0 nonexistent
## 353 telephone may tue 198 2 999 0 nonexistent
## 354 telephone may tue 150 1 999 0 nonexistent
## 355 telephone may tue 241 1 999 0 nonexistent
## 356 telephone may tue 196 1 999 0 nonexistent
## 357 telephone may tue 149 1 999 0 nonexistent
## 358 telephone may tue 264 1 999 0 nonexistent
## 359 telephone may tue 246 1 999 0 nonexistent
## 360 telephone may tue 309 2 999 0 nonexistent
## 361 telephone may tue 140 1 999 0 nonexistent
## 362 telephone may tue 175 1 999 0 nonexistent
## 363 telephone may tue 50 1 999 0 nonexistent
## 364 telephone may tue 144 1 999 0 nonexistent
## 365 telephone may tue 238 1 999 0 nonexistent
## 366 telephone may tue 354 1 999 0 nonexistent
## 367 telephone may tue 451 2 999 0 nonexistent
## 368 telephone may tue 159 1 999 0 nonexistent
## 369 telephone may tue 170 1 999 0 nonexistent
## 370 telephone may tue 243 1 999 0 nonexistent
## 371 telephone may tue 112 1 999 0 nonexistent
## 372 telephone may tue 262 2 999 0 nonexistent
## 373 telephone may tue 53 1 999 0 nonexistent
## 374 telephone may tue 134 1 999 0 nonexistent
## 375 telephone may tue 204 4 999 0 nonexistent
## 376 telephone may tue 182 1 999 0 nonexistent
## 377 telephone may tue 162 1 999 0 nonexistent
## 378 telephone may tue 177 1 999 0 nonexistent
## 379 telephone may tue 358 1 999 0 nonexistent
## 380 telephone may tue 310 1 999 0 nonexistent
## 381 telephone may tue 47 1 999 0 nonexistent
## 382 telephone may tue 379 1 999 0 nonexistent
## 383 telephone may tue 30 2 999 0 nonexistent
## 384 telephone may tue 472 1 999 0 nonexistent
## 385 telephone may tue 116 1 999 0 nonexistent
## 386 telephone may tue 448 1 999 0 nonexistent
## 387 telephone may tue 264 1 999 0 nonexistent
## 388 telephone may tue 169 1 999 0 nonexistent
## 389 telephone may tue 288 1 999 0 nonexistent
## 390 telephone may tue 381 1 999 0 nonexistent
## 391 telephone may tue 176 2 999 0 nonexistent
## 392 telephone may tue 215 1 999 0 nonexistent
## 393 telephone may tue 278 1 999 0 nonexistent
## 394 telephone may tue 226 2 999 0 nonexistent
## 395 telephone may tue 111 2 999 0 nonexistent
## 396 telephone may tue 46 1 999 0 nonexistent
## 397 telephone may tue 49 1 999 0 nonexistent
## 398 telephone may tue 374 1 999 0 nonexistent
## 399 telephone may tue 349 1 999 0 nonexistent
## 400 telephone may tue 325 1 999 0 nonexistent
## 401 telephone may tue 233 2 999 0 nonexistent
## 402 telephone may tue 153 1 999 0 nonexistent
## 403 telephone may tue 80 1 999 0 nonexistent
## 404 telephone may tue 198 1 999 0 nonexistent
## 405 telephone may tue 568 1 999 0 nonexistent
## 406 telephone may tue 82 1 999 0 nonexistent
## 407 telephone may tue 211 1 999 0 nonexistent
## 408 telephone may tue 120 1 999 0 nonexistent
## 409 telephone may tue 211 1 999 0 nonexistent
## 410 telephone may tue 369 1 999 0 nonexistent
## 411 telephone may tue 91 1 999 0 nonexistent
## 412 telephone may tue 267 2 999 0 nonexistent
## 413 telephone may tue 371 2 999 0 nonexistent
## 414 telephone may tue 288 2 999 0 nonexistent
## 415 telephone may tue 221 1 999 0 nonexistent
## 416 telephone may tue 427 1 999 0 nonexistent
## 417 telephone may tue 310 1 999 0 nonexistent
## 418 telephone may tue 158 1 999 0 nonexistent
## 419 telephone may tue 198 1 999 0 nonexistent
## 420 telephone may tue 145 1 999 0 nonexistent
## 421 telephone may tue 247 1 999 0 nonexistent
## 422 telephone may tue 179 2 999 0 nonexistent
## 423 telephone may tue 73 1 999 0 nonexistent
## 424 telephone may tue 41 1 999 0 nonexistent
## 425 telephone may tue 13 1 999 0 nonexistent
## 426 telephone may tue 79 2 999 0 nonexistent
## 427 telephone may tue 358 1 999 0 nonexistent
## 428 telephone may tue 162 1 999 0 nonexistent
## 429 telephone may tue 150 1 999 0 nonexistent
## 430 telephone may tue 26 1 999 0 nonexistent
## 431 telephone may tue 250 1 999 0 nonexistent
## 432 telephone may tue 792 1 999 0 nonexistent
## 433 telephone may tue 146 1 999 0 nonexistent
## 434 telephone may tue 440 1 999 0 nonexistent
## 435 telephone may tue 242 2 999 0 nonexistent
## 436 telephone may tue 161 2 999 0 nonexistent
## 437 telephone may tue 268 2 999 0 nonexistent
## 438 telephone may tue 259 2 999 0 nonexistent
## 439 telephone may tue 153 1 999 0 nonexistent
## 440 telephone may tue 424 2 999 0 nonexistent
## 441 telephone may tue 375 1 999 0 nonexistent
## 442 telephone may tue 179 2 999 0 nonexistent
## 443 telephone may tue 440 1 999 0 nonexistent
## 444 telephone may tue 195 1 999 0 nonexistent
## 445 telephone may tue 217 1 999 0 nonexistent
## 446 telephone may tue 87 1 999 0 nonexistent
## 447 telephone may tue 189 1 999 0 nonexistent
## 448 telephone may tue 502 1 999 0 nonexistent
## 449 telephone may tue 260 1 999 0 nonexistent
## 450 telephone may tue 179 1 999 0 nonexistent
## 451 telephone may tue 179 1 999 0 nonexistent
## 452 telephone may tue 105 2 999 0 nonexistent
## 453 telephone may tue 266 3 999 0 nonexistent
## 454 telephone may tue 87 2 999 0 nonexistent
## 455 telephone may tue 524 2 999 0 nonexistent
## 456 telephone may tue 155 2 999 0 nonexistent
## 457 telephone may tue 162 2 999 0 nonexistent
## 458 telephone may tue 316 4 999 0 nonexistent
## 459 telephone may tue 695 3 999 0 nonexistent
## 460 telephone may tue 76 4 999 0 nonexistent
## 461 telephone may tue 535 2 999 0 nonexistent
## 462 telephone may tue 390 3 999 0 nonexistent
## 463 telephone may tue 369 1 999 0 nonexistent
## 464 telephone may tue 79 1 999 0 nonexistent
## 465 telephone may tue 140 2 999 0 nonexistent
## 466 telephone may tue 315 1 999 0 nonexistent
## 467 telephone may tue 262 2 999 0 nonexistent
## 468 telephone may tue 174 2 999 0 nonexistent
## 469 telephone may tue 424 2 999 0 nonexistent
## 470 telephone may tue 135 1 999 0 nonexistent
## 471 telephone may tue 36 5 999 0 nonexistent
## 472 telephone may tue 219 2 999 0 nonexistent
## 473 telephone may tue 135 1 999 0 nonexistent
## 474 telephone may tue 147 2 999 0 nonexistent
## 475 telephone may tue 407 2 999 0 nonexistent
## 476 telephone may tue 402 4 999 0 nonexistent
## 477 telephone may tue 209 1 999 0 nonexistent
## 478 telephone may tue 92 2 999 0 nonexistent
## 479 telephone may tue 208 1 999 0 nonexistent
## 480 telephone may tue 65 1 999 0 nonexistent
## 481 telephone may tue 284 2 999 0 nonexistent
## 482 telephone may tue 231 1 999 0 nonexistent
## 483 telephone may tue 389 1 999 0 nonexistent
## 484 telephone may tue 158 1 999 0 nonexistent
## 485 telephone may tue 258 5 999 0 nonexistent
## 486 telephone may tue 87 1 999 0 nonexistent
## 487 telephone may tue 147 2 999 0 nonexistent
## 488 telephone may tue 635 1 999 0 nonexistent
## 489 telephone may tue 289 1 999 0 nonexistent
## 490 telephone may tue 170 3 999 0 nonexistent
## 491 telephone may tue 802 1 999 0 nonexistent
## 492 telephone may tue 381 2 999 0 nonexistent
## 493 telephone may tue 218 4 999 0 nonexistent
## 494 telephone may tue 304 2 999 0 nonexistent
## 495 telephone may tue 241 3 999 0 nonexistent
## 496 telephone may tue 230 1 999 0 nonexistent
## 497 telephone may tue 79 4 999 0 nonexistent
## 498 telephone may tue 262 3 999 0 nonexistent
## 499 telephone may tue 392 2 999 0 nonexistent
## 500 telephone may tue 201 2 999 0 nonexistent
## 501 telephone may tue 145 1 999 0 nonexistent
## 502 telephone may tue 252 1 999 0 nonexistent
## 503 telephone may tue 329 1 999 0 nonexistent
## 504 telephone may tue 328 2 999 0 nonexistent
## 505 telephone may tue 191 2 999 0 nonexistent
## 506 telephone may tue 116 2 999 0 nonexistent
## 507 telephone may tue 246 1 999 0 nonexistent
## 508 telephone may tue 416 3 999 0 nonexistent
## 509 telephone may tue 37 2 999 0 nonexistent
## 510 telephone may tue 132 2 999 0 nonexistent
## 511 telephone may tue 530 2 999 0 nonexistent
## 512 telephone may tue 175 3 999 0 nonexistent
## 513 telephone may tue 90 5 999 0 nonexistent
## 514 telephone may tue 524 2 999 0 nonexistent
## 515 telephone may tue 311 2 999 0 nonexistent
## 516 telephone may tue 191 1 999 0 nonexistent
## 517 telephone may tue 284 2 999 0 nonexistent
## 518 telephone may tue 328 1 999 0 nonexistent
## 519 telephone may tue 100 1 999 0 nonexistent
## 520 telephone may tue 226 1 999 0 nonexistent
## 521 telephone may tue 507 1 999 0 nonexistent
## 522 telephone may tue 128 2 999 0 nonexistent
## 523 telephone may tue 322 2 999 0 nonexistent
## 524 telephone may tue 202 4 999 0 nonexistent
## 525 telephone may tue 205 2 999 0 nonexistent
## 526 telephone may tue 739 3 999 0 nonexistent
## 527 telephone may tue 273 2 999 0 nonexistent
## 528 telephone may tue 339 3 999 0 nonexistent
## 529 telephone may tue 308 3 999 0 nonexistent
## 530 telephone may tue 467 2 999 0 nonexistent
## 531 telephone may tue 245 2 999 0 nonexistent
## 532 telephone may tue 160 3 999 0 nonexistent
## 533 telephone may tue 189 2 999 0 nonexistent
## 534 telephone may tue 477 1 999 0 nonexistent
## 535 telephone may tue 65 3 999 0 nonexistent
## 536 telephone may tue 191 1 999 0 nonexistent
## 537 telephone may tue 196 2 999 0 nonexistent
## 538 telephone may tue 221 2 999 0 nonexistent
## 539 telephone may tue 197 2 999 0 nonexistent
## 540 telephone may tue 221 2 999 0 nonexistent
## 541 telephone may tue 64 2 999 0 nonexistent
## 542 telephone may tue 75 2 999 0 nonexistent
## 543 telephone may tue 378 3 999 0 nonexistent
## 544 telephone may tue 118 2 999 0 nonexistent
## 545 telephone may tue 346 2 999 0 nonexistent
## 546 telephone may tue 107 2 999 0 nonexistent
## 547 telephone may tue 60 3 999 0 nonexistent
## 548 telephone may tue 276 2 999 0 nonexistent
## 549 telephone may tue 176 2 999 0 nonexistent
## 550 telephone may tue 390 2 999 0 nonexistent
## 551 telephone may tue 251 3 999 0 nonexistent
## 552 telephone may tue 234 2 999 0 nonexistent
## 553 telephone may tue 79 2 999 0 nonexistent
## 554 telephone may tue 13 6 999 0 nonexistent
## 555 telephone may tue 296 3 999 0 nonexistent
## 556 telephone may tue 114 2 999 0 nonexistent
## 557 telephone may tue 109 2 999 0 nonexistent
## 558 telephone may tue 132 2 999 0 nonexistent
## 559 telephone may tue 95 3 999 0 nonexistent
## 560 telephone may tue 31 3 999 0 nonexistent
## 561 telephone may tue 112 3 999 0 nonexistent
## 562 telephone may tue 87 4 999 0 nonexistent
## 563 telephone may tue 593 2 999 0 nonexistent
## 564 telephone may tue 198 2 999 0 nonexistent
## 565 telephone may tue 190 3 999 0 nonexistent
## 566 telephone may tue 172 5 999 0 nonexistent
## 567 telephone may tue 174 2 999 0 nonexistent
## 568 telephone may tue 631 2 999 0 nonexistent
## 569 telephone may tue 152 3 999 0 nonexistent
## 570 telephone may tue 176 5 999 0 nonexistent
## 571 telephone may tue 32 3 999 0 nonexistent
## 572 telephone may tue 1529 2 999 0 nonexistent
## 573 telephone may tue 214 2 999 0 nonexistent
## 574 telephone may tue 147 3 999 0 nonexistent
## 575 telephone may tue 800 4 999 0 nonexistent
## 576 telephone may tue 106 2 999 0 nonexistent
## 577 telephone may tue 135 2 999 0 nonexistent
## 578 telephone may tue 314 3 999 0 nonexistent
## 579 telephone may tue 410 2 999 0 nonexistent
## 580 telephone may tue 207 3 999 0 nonexistent
## 581 telephone may tue 239 2 999 0 nonexistent
## 582 telephone may tue 42 3 999 0 nonexistent
## 583 telephone may tue 55 2 999 0 nonexistent
## 584 telephone may tue 157 2 999 0 nonexistent
## 585 telephone may tue 336 3 999 0 nonexistent
## 586 telephone may tue 211 2 999 0 nonexistent
## 587 telephone may tue 88 5 999 0 nonexistent
## 588 telephone may tue 329 3 999 0 nonexistent
## 589 telephone may tue 305 2 999 0 nonexistent
## 590 telephone may tue 128 2 999 0 nonexistent
## 591 telephone may tue 122 3 999 0 nonexistent
## 592 telephone may tue 126 2 999 0 nonexistent
## 593 telephone may tue 166 3 999 0 nonexistent
## 594 telephone may tue 190 3 999 0 nonexistent
## 595 telephone may tue 216 2 999 0 nonexistent
## 596 telephone may wed 51 3 999 0 nonexistent
## 597 telephone may wed 169 3 999 0 nonexistent
## 598 telephone may wed 148 3 999 0 nonexistent
## 599 telephone may wed 132 3 999 0 nonexistent
## 600 telephone may wed 117 3 999 0 nonexistent
## 601 telephone may wed 275 4 999 0 nonexistent
## 602 telephone may wed 124 2 999 0 nonexistent
## 603 telephone may wed 118 3 999 0 nonexistent
## 604 telephone may wed 479 2 999 0 nonexistent
## 605 telephone may wed 322 2 999 0 nonexistent
## 606 telephone may wed 202 2 999 0 nonexistent
## 607 telephone may wed 216 3 999 0 nonexistent
## 608 telephone may wed 195 2 999 0 nonexistent
## 609 telephone may wed 720 2 999 0 nonexistent
## 610 telephone may wed 92 2 999 0 nonexistent
## 611 telephone may wed 188 2 999 0 nonexistent
## 612 telephone may wed 141 3 999 0 nonexistent
## 613 telephone may wed 395 2 999 0 nonexistent
## 614 telephone may wed 629 2 999 0 nonexistent
## 615 telephone may wed 446 1 999 0 nonexistent
## 616 telephone may wed 131 3 999 0 nonexistent
## 617 telephone may wed 198 3 999 0 nonexistent
## 618 telephone may wed 312 1 999 0 nonexistent
## 619 telephone may wed 275 6 999 0 nonexistent
## 620 telephone may wed 120 2 999 0 nonexistent
## 621 telephone may wed 150 1 999 0 nonexistent
## 622 telephone may wed 91 1 999 0 nonexistent
## 623 telephone may wed 296 1 999 0 nonexistent
## 624 telephone may wed 326 1 999 0 nonexistent
## 625 telephone may wed 292 1 999 0 nonexistent
## 626 telephone may wed 215 1 999 0 nonexistent
## 627 telephone may wed 97 1 999 0 nonexistent
## 628 telephone may wed 32 1 999 0 nonexistent
## 629 telephone may wed 162 1 999 0 nonexistent
## 630 telephone may wed 421 1 999 0 nonexistent
## 631 telephone may wed 268 1 999 0 nonexistent
## 632 telephone may wed 232 1 999 0 nonexistent
## 633 telephone may wed 152 3 999 0 nonexistent
## 634 telephone may wed 104 2 999 0 nonexistent
## 635 telephone may wed 852 1 999 0 nonexistent
## 636 telephone may wed 159 2 999 0 nonexistent
## 637 telephone may wed 416 2 999 0 nonexistent
## 638 telephone may wed 174 1 999 0 nonexistent
## 639 telephone may wed 139 1 999 0 nonexistent
## 640 telephone may wed 193 1 999 0 nonexistent
## 641 telephone may wed 102 1 999 0 nonexistent
## 642 telephone may wed 124 1 999 0 nonexistent
## 643 telephone may wed 143 1 999 0 nonexistent
## 644 telephone may wed 231 1 999 0 nonexistent
## 645 telephone may wed 128 1 999 0 nonexistent
## 646 telephone may wed 74 1 999 0 nonexistent
## 647 telephone may wed 105 2 999 0 nonexistent
## 648 telephone may wed 168 1 999 0 nonexistent
## 649 telephone may wed 250 1 999 0 nonexistent
## 650 telephone may wed 254 1 999 0 nonexistent
## 651 telephone may wed 149 1 999 0 nonexistent
## 652 telephone may wed 133 2 999 0 nonexistent
## 653 telephone may wed 374 1 999 0 nonexistent
## 654 telephone may wed 425 6 999 0 nonexistent
## 655 telephone may wed 207 1 999 0 nonexistent
## 656 telephone may wed 464 1 999 0 nonexistent
## 657 telephone may wed 439 1 999 0 nonexistent
## 658 telephone may wed 83 3 999 0 nonexistent
## 659 telephone may wed 149 1 999 0 nonexistent
## 660 telephone may wed 142 1 999 0 nonexistent
## 661 telephone may wed 359 1 999 0 nonexistent
## 662 telephone may wed 112 1 999 0 nonexistent
## 663 telephone may wed 274 4 999 0 nonexistent
## 664 telephone may wed 325 2 999 0 nonexistent
## 665 telephone may wed 1521 1 999 0 nonexistent
## 666 telephone may wed 216 1 999 0 nonexistent
## 667 telephone may wed 122 2 999 0 nonexistent
## 668 telephone may wed 615 1 999 0 nonexistent
## 669 telephone may wed 111 1 999 0 nonexistent
## 670 telephone may wed 359 1 999 0 nonexistent
## 671 telephone may wed 327 3 999 0 nonexistent
## 672 telephone may wed 236 1 999 0 nonexistent
## 673 telephone may wed 109 1 999 0 nonexistent
## 674 telephone may wed 492 2 999 0 nonexistent
## 675 telephone may wed 83 2 999 0 nonexistent
## 676 telephone may wed 241 2 999 0 nonexistent
## 677 telephone may wed 131 1 999 0 nonexistent
## 678 telephone may wed 123 1 999 0 nonexistent
## 679 telephone may wed 125 1 999 0 nonexistent
## 680 telephone may wed 295 2 999 0 nonexistent
## 681 telephone may wed 287 1 999 0 nonexistent
## 682 telephone may wed 109 1 999 0 nonexistent
## 683 telephone may wed 140 2 999 0 nonexistent
## 684 telephone may wed 52 1 999 0 nonexistent
## 685 telephone may wed 233 1 999 0 nonexistent
## 686 telephone may wed 254 1 999 0 nonexistent
## 687 telephone may wed 255 1 999 0 nonexistent
## 688 telephone may wed 126 1 999 0 nonexistent
## 689 telephone may wed 184 2 999 0 nonexistent
## 690 telephone may wed 294 1 999 0 nonexistent
## 691 telephone may wed 173 1 999 0 nonexistent
## 692 telephone may wed 336 1 999 0 nonexistent
## 693 telephone may wed 344 1 999 0 nonexistent
## 694 telephone may wed 153 1 999 0 nonexistent
## 695 telephone may wed 99 2 999 0 nonexistent
## 696 telephone may wed 243 1 999 0 nonexistent
## 697 telephone may wed 260 1 999 0 nonexistent
## 698 telephone may wed 164 2 999 0 nonexistent
## 699 telephone may wed 255 2 999 0 nonexistent
## 700 telephone may wed 47 1 999 0 nonexistent
## 701 telephone may wed 110 2 999 0 nonexistent
## 702 telephone may wed 463 1 999 0 nonexistent
## 703 telephone may wed 192 1 999 0 nonexistent
## 704 telephone may wed 221 1 999 0 nonexistent
## 705 telephone may wed 25 1 999 0 nonexistent
## 706 telephone may wed 256 6 999 0 nonexistent
## 707 telephone may wed 283 2 999 0 nonexistent
## 708 telephone may wed 448 1 999 0 nonexistent
## 709 telephone may wed 127 1 999 0 nonexistent
## 710 telephone may wed 221 2 999 0 nonexistent
## 711 telephone may wed 150 1 999 0 nonexistent
## 712 telephone may wed 296 2 999 0 nonexistent
## 713 telephone may wed 161 1 999 0 nonexistent
## 714 telephone may wed 401 2 999 0 nonexistent
## 715 telephone may wed 388 1 999 0 nonexistent
## 716 telephone may wed 245 1 999 0 nonexistent
## 717 telephone may wed 143 1 999 0 nonexistent
## 718 telephone may wed 423 1 999 0 nonexistent
## 719 telephone may wed 231 1 999 0 nonexistent
## 720 telephone may wed 181 1 999 0 nonexistent
## 721 telephone may wed 107 1 999 0 nonexistent
## 722 telephone may wed 227 1 999 0 nonexistent
## 723 telephone may wed 69 1 999 0 nonexistent
## 724 telephone may wed 799 1 999 0 nonexistent
## 725 telephone may wed 109 1 999 0 nonexistent
## 726 telephone may wed 127 1 999 0 nonexistent
## 727 telephone may wed 45 1 999 0 nonexistent
## 728 telephone may wed 120 1 999 0 nonexistent
## 729 telephone may wed 68 3 999 0 nonexistent
## 730 telephone may wed 180 2 999 0 nonexistent
## 731 telephone may wed 112 3 999 0 nonexistent
## 732 telephone may wed 444 1 999 0 nonexistent
## 733 telephone may wed 246 2 999 0 nonexistent
## 734 telephone may wed 148 4 999 0 nonexistent
## 735 telephone may wed 223 3 999 0 nonexistent
## 736 telephone may wed 566 2 999 0 nonexistent
## 737 telephone may wed 274 2 999 0 nonexistent
## 738 telephone may wed 49 3 999 0 nonexistent
## 739 telephone may wed 97 2 999 0 nonexistent
## 740 telephone may wed 421 2 999 0 nonexistent
## 741 telephone may wed 511 2 999 0 nonexistent
## 742 telephone may wed 121 2 999 0 nonexistent
## 743 telephone may wed 157 2 999 0 nonexistent
## 744 telephone may wed 101 1 999 0 nonexistent
## 745 telephone may wed 328 2 999 0 nonexistent
## 746 telephone may wed 19 1 999 0 nonexistent
## 747 telephone may wed 866 2 999 0 nonexistent
## 748 telephone may wed 229 3 999 0 nonexistent
## 749 telephone may wed 154 2 999 0 nonexistent
## 750 telephone may wed 56 1 999 0 nonexistent
## 751 telephone may wed 199 1 999 0 nonexistent
## 752 telephone may wed 117 1 999 0 nonexistent
## 753 telephone may wed 1581 2 999 0 nonexistent
## 754 telephone may wed 185 1 999 0 nonexistent
## 755 telephone may wed 202 1 999 0 nonexistent
## 756 telephone may wed 279 1 999 0 nonexistent
## 757 telephone may wed 180 5 999 0 nonexistent
## 758 telephone may wed 530 2 999 0 nonexistent
## 759 telephone may wed 129 5 999 0 nonexistent
## 760 telephone may wed 60 1 999 0 nonexistent
## 761 telephone may wed 432 1 999 0 nonexistent
## 762 telephone may wed 516 1 999 0 nonexistent
## 763 telephone may wed 617 1 999 0 nonexistent
## 764 telephone may wed 179 2 999 0 nonexistent
## 765 telephone may wed 125 2 999 0 nonexistent
## 766 telephone may wed 262 2 999 0 nonexistent
## 767 telephone may wed 396 2 999 0 nonexistent
## 768 telephone may wed 294 2 999 0 nonexistent
## 769 telephone may wed 171 2 999 0 nonexistent
## 770 telephone may wed 614 2 999 0 nonexistent
## 771 telephone may wed 406 2 999 0 nonexistent
## 772 telephone may wed 287 1 999 0 nonexistent
## 773 telephone may wed 216 2 999 0 nonexistent
## 774 telephone may wed 37 2 999 0 nonexistent
## 775 telephone may wed 650 1 999 0 nonexistent
## 776 telephone may wed 590 3 999 0 nonexistent
## 777 telephone may wed 55 1 999 0 nonexistent
## 778 telephone may wed 166 1 999 0 nonexistent
## 779 telephone may wed 48 1 999 0 nonexistent
## 780 telephone may wed 72 1 999 0 nonexistent
## 781 telephone may wed 55 1 999 0 nonexistent
## 782 telephone may wed 92 1 999 0 nonexistent
## 783 telephone may wed 196 2 999 0 nonexistent
## 784 telephone may wed 96 1 999 0 nonexistent
## 785 telephone may wed 144 1 999 0 nonexistent
## 786 telephone may wed 474 1 999 0 nonexistent
## 787 telephone may wed 229 3 999 0 nonexistent
## 788 telephone may wed 236 2 999 0 nonexistent
## 789 telephone may wed 164 1 999 0 nonexistent
## 790 telephone may wed 93 1 999 0 nonexistent
## 791 telephone may wed 123 1 999 0 nonexistent
## 792 telephone may wed 912 2 999 0 nonexistent
## 793 telephone may wed 209 2 999 0 nonexistent
## 794 telephone may wed 485 1 999 0 nonexistent
## 795 telephone may wed 206 2 999 0 nonexistent
## 796 telephone may wed 239 2 999 0 nonexistent
## 797 telephone may wed 362 1 999 0 nonexistent
## 798 telephone may wed 345 1 999 0 nonexistent
## 799 telephone may wed 329 1 999 0 nonexistent
## 800 telephone may wed 143 3 999 0 nonexistent
## 801 telephone may wed 214 2 999 0 nonexistent
## 802 telephone may wed 1062 1 999 0 nonexistent
## 803 telephone may wed 258 3 999 0 nonexistent
## 804 telephone may wed 253 2 999 0 nonexistent
## 805 telephone may wed 106 1 999 0 nonexistent
## 806 telephone may wed 688 2 999 0 nonexistent
## 807 telephone may wed 103 3 999 0 nonexistent
## 808 telephone may wed 349 2 999 0 nonexistent
## 809 telephone may wed 78 5 999 0 nonexistent
## 810 telephone may wed 126 1 999 0 nonexistent
## 811 telephone may wed 98 1 999 0 nonexistent
## 812 telephone may wed 607 1 999 0 nonexistent
## 813 telephone may wed 803 1 999 0 nonexistent
## 814 telephone may wed 203 1 999 0 nonexistent
## 815 telephone may wed 96 3 999 0 nonexistent
## 816 telephone may wed 238 3 999 0 nonexistent
## 817 telephone may wed 153 3 999 0 nonexistent
## 818 telephone may wed 119 3 999 0 nonexistent
## 819 telephone may wed 152 2 999 0 nonexistent
## 820 telephone may wed 418 2 999 0 nonexistent
## 821 telephone may wed 421 2 999 0 nonexistent
## 822 telephone may wed 198 2 999 0 nonexistent
## 823 telephone may wed 175 1 999 0 nonexistent
## 824 telephone may wed 374 1 999 0 nonexistent
## 825 telephone may wed 51 1 999 0 nonexistent
## 826 telephone may wed 263 1 999 0 nonexistent
## 827 telephone may wed 257 1 999 0 nonexistent
## 828 telephone may wed 229 2 999 0 nonexistent
## 829 telephone may wed 278 6 999 0 nonexistent
## 830 telephone may wed 306 5 999 0 nonexistent
## 831 telephone may wed 114 2 999 0 nonexistent
## 832 telephone may wed 24 2 999 0 nonexistent
## 833 telephone may wed 79 8 999 0 nonexistent
## 834 telephone may wed 169 2 999 0 nonexistent
## 835 telephone may wed 332 2 999 0 nonexistent
## 836 telephone may wed 353 3 999 0 nonexistent
## 837 telephone may wed 108 6 999 0 nonexistent
## 838 telephone may wed 441 2 999 0 nonexistent
## 839 telephone may wed 46 3 999 0 nonexistent
## 840 telephone may wed 266 2 999 0 nonexistent
## 841 telephone may wed 105 2 999 0 nonexistent
## 842 telephone may wed 381 2 999 0 nonexistent
## 843 telephone may wed 228 3 999 0 nonexistent
## 844 telephone may wed 128 2 999 0 nonexistent
## 845 telephone may wed 550 3 999 0 nonexistent
## 846 telephone may wed 113 3 999 0 nonexistent
## 847 telephone may wed 396 4 999 0 nonexistent
## 848 telephone may wed 42 2 999 0 nonexistent
## 849 telephone may wed 234 4 999 0 nonexistent
## 850 telephone may wed 50 2 999 0 nonexistent
## 851 telephone may wed 110 2 999 0 nonexistent
## 852 telephone may wed 274 4 999 0 nonexistent
## 853 telephone may wed 191 4 999 0 nonexistent
## 854 telephone may wed 305 3 999 0 nonexistent
## 855 telephone may wed 134 2 999 0 nonexistent
## 856 telephone may wed 112 4 999 0 nonexistent
## 857 telephone may wed 217 2 999 0 nonexistent
## 858 telephone may wed 353 4 999 0 nonexistent
## 859 telephone may wed 212 2 999 0 nonexistent
## 860 telephone may wed 283 1 999 0 nonexistent
## 861 telephone may wed 139 3 999 0 nonexistent
## 862 telephone may wed 62 5 999 0 nonexistent
## 863 telephone may wed 256 3 999 0 nonexistent
## 864 telephone may wed 161 2 999 0 nonexistent
## 865 telephone may wed 245 3 999 0 nonexistent
## 866 telephone may wed 89 3 999 0 nonexistent
## 867 telephone may wed 591 3 999 0 nonexistent
## 868 telephone may wed 113 2 999 0 nonexistent
## 869 telephone may wed 517 3 999 0 nonexistent
## 870 telephone may wed 193 3 999 0 nonexistent
## 871 telephone may wed 348 3 999 0 nonexistent
## 872 telephone may wed 253 8 999 0 nonexistent
## 873 telephone may wed 164 5 999 0 nonexistent
## 874 telephone may wed 191 2 999 0 nonexistent
## 875 telephone may wed 114 3 999 0 nonexistent
## 876 telephone may wed 126 5 999 0 nonexistent
## 877 telephone may wed 161 3 999 0 nonexistent
## 878 telephone may wed 155 1 999 0 nonexistent
## 879 telephone may wed 152 3 999 0 nonexistent
## 880 telephone may wed 145 1 999 0 nonexistent
## 881 telephone may wed 66 3 999 0 nonexistent
## 882 telephone may wed 123 2 999 0 nonexistent
## 883 telephone may wed 74 1 999 0 nonexistent
## 884 telephone may wed 248 3 999 0 nonexistent
## 885 telephone may wed 275 2 999 0 nonexistent
## 886 telephone may wed 984 1 999 0 nonexistent
## 887 telephone may wed 84 2 999 0 nonexistent
## 888 telephone may wed 130 4 999 0 nonexistent
## 889 telephone may wed 489 2 999 0 nonexistent
## 890 telephone may wed 41 3 999 0 nonexistent
## 891 telephone may wed 159 3 999 0 nonexistent
## 892 telephone may wed 276 4 999 0 nonexistent
## 893 telephone may wed 196 2 999 0 nonexistent
## 894 telephone may wed 81 2 999 0 nonexistent
## 895 telephone may wed 865 2 999 0 nonexistent
## 896 telephone may wed 149 1 999 0 nonexistent
## 897 telephone may wed 281 2 999 0 nonexistent
## 898 telephone may wed 122 5 999 0 nonexistent
## 899 telephone may wed 361 2 999 0 nonexistent
## 900 telephone may wed 944 3 999 0 nonexistent
## 901 telephone may wed 319 3 999 0 nonexistent
## 902 telephone may wed 35 3 999 0 nonexistent
## 903 telephone may wed 143 2 999 0 nonexistent
## 904 telephone may wed 22 2 999 0 nonexistent
## 905 telephone may wed 90 2 999 0 nonexistent
## 906 telephone may wed 505 2 999 0 nonexistent
## 907 telephone may wed 17 2 999 0 nonexistent
## 908 telephone may wed 404 5 999 0 nonexistent
## 909 telephone may wed 238 2 999 0 nonexistent
## 910 telephone may wed 71 4 999 0 nonexistent
## 911 telephone may wed 408 3 999 0 nonexistent
## 912 telephone may wed 157 3 999 0 nonexistent
## 913 telephone may wed 280 3 999 0 nonexistent
## 914 telephone may thu 177 3 999 0 nonexistent
## 915 telephone may thu 77 2 999 0 nonexistent
## 916 telephone may thu 223 2 999 0 nonexistent
## 917 telephone may thu 239 2 999 0 nonexistent
## 918 telephone may thu 116 2 999 0 nonexistent
## 919 telephone may thu 308 3 999 0 nonexistent
## 920 telephone may thu 137 2 999 0 nonexistent
## 921 telephone may thu 134 1 999 0 nonexistent
## 922 telephone may thu 125 3 999 0 nonexistent
## 923 telephone may thu 211 3 999 0 nonexistent
## 924 telephone may thu 180 1 999 0 nonexistent
## 925 telephone may thu 67 1 999 0 nonexistent
## 926 telephone may thu 342 1 999 0 nonexistent
## 927 telephone may thu 156 1 999 0 nonexistent
## 928 telephone may thu 178 1 999 0 nonexistent
## 929 telephone may thu 142 1 999 0 nonexistent
## 930 telephone may thu 194 1 999 0 nonexistent
## 931 telephone may thu 132 1 999 0 nonexistent
## 932 telephone may thu 110 1 999 0 nonexistent
## 933 telephone may thu 109 1 999 0 nonexistent
## 934 telephone may thu 94 1 999 0 nonexistent
## 935 telephone may thu 31 1 999 0 nonexistent
## 936 telephone may thu 220 1 999 0 nonexistent
## 937 telephone may thu 489 1 999 0 nonexistent
## 938 telephone may thu 180 1 999 0 nonexistent
## 939 telephone may thu 314 1 999 0 nonexistent
## 940 telephone may thu 203 1 999 0 nonexistent
## 941 telephone may thu 328 2 999 0 nonexistent
## 942 telephone may thu 207 1 999 0 nonexistent
## 943 telephone may thu 193 1 999 0 nonexistent
## 944 telephone may thu 528 1 999 0 nonexistent
## 945 telephone may thu 183 1 999 0 nonexistent
## 946 telephone may thu 238 1 999 0 nonexistent
## 947 telephone may thu 61 1 999 0 nonexistent
## 948 telephone may thu 70 1 999 0 nonexistent
## 949 telephone may thu 41 1 999 0 nonexistent
## 950 telephone may thu 93 1 999 0 nonexistent
## 951 telephone may thu 149 1 999 0 nonexistent
## 952 telephone may thu 35 1 999 0 nonexistent
## 953 telephone may thu 262 1 999 0 nonexistent
## 954 telephone may thu 151 1 999 0 nonexistent
## 955 telephone may thu 221 1 999 0 nonexistent
## 956 telephone may thu 86 1 999 0 nonexistent
## 957 telephone may thu 65 1 999 0 nonexistent
## 958 telephone may thu 380 3 999 0 nonexistent
## 959 telephone may thu 11 1 999 0 nonexistent
## 960 telephone may thu 184 2 999 0 nonexistent
## 961 telephone may thu 405 1 999 0 nonexistent
## 962 telephone may thu 235 1 999 0 nonexistent
## 963 telephone may thu 75 1 999 0 nonexistent
## 964 telephone may thu 134 1 999 0 nonexistent
## 965 telephone may thu 255 1 999 0 nonexistent
## 966 telephone may thu 462 1 999 0 nonexistent
## 967 telephone may thu 56 1 999 0 nonexistent
## 968 telephone may thu 139 2 999 0 nonexistent
## 969 telephone may thu 96 2 999 0 nonexistent
## 970 telephone may thu 231 2 999 0 nonexistent
## 971 telephone may thu 66 2 999 0 nonexistent
## 972 telephone may thu 159 1 999 0 nonexistent
## 973 telephone may thu 129 2 999 0 nonexistent
## 974 telephone may thu 200 1 999 0 nonexistent
## 975 telephone may thu 187 3 999 0 nonexistent
## 976 telephone may thu 166 1 999 0 nonexistent
## 977 telephone may thu 144 1 999 0 nonexistent
## 978 telephone may thu 323 1 999 0 nonexistent
## 979 telephone may thu 194 1 999 0 nonexistent
## 980 telephone may thu 82 1 999 0 nonexistent
## 981 telephone may thu 521 7 999 0 nonexistent
## 982 telephone may thu 269 1 999 0 nonexistent
## 983 telephone may thu 285 1 999 0 nonexistent
## 984 telephone may thu 294 1 999 0 nonexistent
## 985 telephone may thu 106 1 999 0 nonexistent
## 986 telephone may thu 158 1 999 0 nonexistent
## 987 telephone may thu 152 1 999 0 nonexistent
## 988 telephone may thu 187 1 999 0 nonexistent
## 989 telephone may thu 268 1 999 0 nonexistent
## 990 telephone may thu 193 1 999 0 nonexistent
## 991 telephone may thu 95 1 999 0 nonexistent
## 992 telephone may thu 206 1 999 0 nonexistent
## 993 telephone may thu 155 1 999 0 nonexistent
## 994 telephone may thu 216 1 999 0 nonexistent
## 995 telephone may thu 103 3 999 0 nonexistent
## 996 telephone may thu 147 1 999 0 nonexistent
## 997 telephone may thu 190 1 999 0 nonexistent
## 998 telephone may thu 339 2 999 0 nonexistent
## 999 telephone may thu 198 1 999 0 nonexistent
## 1000 telephone may thu 141 1 999 0 nonexistent
## 1001 telephone may thu 255 1 999 0 nonexistent
## 1002 telephone may thu 226 1 999 0 nonexistent
## 1003 telephone may thu 215 1 999 0 nonexistent
## 1004 telephone may thu 249 1 999 0 nonexistent
## 1005 telephone may thu 143 1 999 0 nonexistent
## 1006 telephone may thu 81 1 999 0 nonexistent
## 1007 telephone may thu 124 1 999 0 nonexistent
## 1008 telephone may thu 33 4 999 0 nonexistent
## 1009 telephone may thu 393 1 999 0 nonexistent
## 1010 telephone may thu 784 1 999 0 nonexistent
## 1011 telephone may thu 108 2 999 0 nonexistent
## 1012 telephone may thu 207 1 999 0 nonexistent
## 1013 telephone may thu 278 2 999 0 nonexistent
## 1014 telephone may thu 196 1 999 0 nonexistent
## 1015 telephone may thu 154 1 999 0 nonexistent
## 1016 telephone may thu 287 2 999 0 nonexistent
## 1017 telephone may thu 229 1 999 0 nonexistent
## 1018 telephone may thu 21 1 999 0 nonexistent
## 1019 telephone may thu 191 1 999 0 nonexistent
## 1020 telephone may thu 665 1 999 0 nonexistent
## 1021 telephone may thu 131 1 999 0 nonexistent
## 1022 telephone may thu 160 1 999 0 nonexistent
## 1023 telephone may thu 97 2 999 0 nonexistent
## 1024 telephone may thu 82 1 999 0 nonexistent
## 1025 telephone may thu 475 1 999 0 nonexistent
## 1026 telephone may thu 111 1 999 0 nonexistent
## 1027 telephone may thu 110 1 999 0 nonexistent
## 1028 telephone may thu 64 1 999 0 nonexistent
## 1029 telephone may thu 149 1 999 0 nonexistent
## 1030 telephone may thu 156 1 999 0 nonexistent
## 1031 telephone may thu 63 3 999 0 nonexistent
## 1032 telephone may thu 362 1 999 0 nonexistent
## 1033 telephone may thu 712 1 999 0 nonexistent
## 1034 telephone may thu 338 2 999 0 nonexistent
## 1035 telephone may thu 102 2 999 0 nonexistent
## 1036 telephone may thu 446 1 999 0 nonexistent
## 1037 telephone may thu 249 2 999 0 nonexistent
## 1038 telephone may thu 176 1 999 0 nonexistent
## 1039 telephone may thu 1007 1 999 0 nonexistent
## 1040 telephone may thu 266 1 999 0 nonexistent
## 1041 telephone may thu 172 1 999 0 nonexistent
## 1042 telephone may thu 175 1 999 0 nonexistent
## 1043 telephone may thu 211 2 999 0 nonexistent
## 1044 telephone may thu 237 1 999 0 nonexistent
## 1045 telephone may thu 186 1 999 0 nonexistent
## 1046 telephone may thu 96 1 999 0 nonexistent
## 1047 telephone may thu 98 1 999 0 nonexistent
## 1048 telephone may thu 319 1 999 0 nonexistent
## 1049 telephone may thu 280 2 999 0 nonexistent
## 1050 telephone may thu 170 1 999 0 nonexistent
## 1051 telephone may thu 365 1 999 0 nonexistent
## 1052 telephone may thu 63 2 999 0 nonexistent
## 1053 telephone may thu 159 4 999 0 nonexistent
## 1054 telephone may thu 177 2 999 0 nonexistent
## 1055 telephone may thu 194 3 999 0 nonexistent
## 1056 telephone may thu 366 2 999 0 nonexistent
## 1057 telephone may thu 213 1 999 0 nonexistent
## 1058 telephone may thu 168 2 999 0 nonexistent
## 1059 telephone may thu 468 1 999 0 nonexistent
## 1060 telephone may thu 180 1 999 0 nonexistent
## 1061 telephone may thu 195 1 999 0 nonexistent
## 1062 telephone may thu 352 3 999 0 nonexistent
## 1063 telephone may thu 91 1 999 0 nonexistent
## 1064 telephone may thu 93 2 999 0 nonexistent
## 1065 telephone may thu 288 1 999 0 nonexistent
## 1066 telephone may thu 218 2 999 0 nonexistent
## 1067 telephone may thu 289 1 999 0 nonexistent
## 1068 telephone may thu 130 3 999 0 nonexistent
## 1069 telephone may thu 208 1 999 0 nonexistent
## 1070 telephone may thu 177 1 999 0 nonexistent
## 1071 telephone may thu 166 1 999 0 nonexistent
## 1072 telephone may thu 342 1 999 0 nonexistent
## 1073 telephone may thu 189 1 999 0 nonexistent
## 1074 telephone may thu 108 1 999 0 nonexistent
## 1075 telephone may thu 238 1 999 0 nonexistent
## 1076 telephone may thu 226 1 999 0 nonexistent
## 1077 telephone may thu 136 1 999 0 nonexistent
## 1078 telephone may thu 14 1 999 0 nonexistent
## 1079 telephone may thu 250 1 999 0 nonexistent
## 1080 telephone may thu 161 1 999 0 nonexistent
## 1081 telephone may thu 269 3 999 0 nonexistent
## 1082 telephone may thu 491 1 999 0 nonexistent
## 1083 telephone may thu 44 1 999 0 nonexistent
## 1084 telephone may thu 26 1 999 0 nonexistent
## 1085 telephone may thu 22 1 999 0 nonexistent
## 1086 telephone may thu 293 2 999 0 nonexistent
## 1087 telephone may thu 807 2 999 0 nonexistent
## 1088 telephone may thu 347 2 999 0 nonexistent
## 1089 telephone may thu 58 2 999 0 nonexistent
## 1090 telephone may thu 534 2 999 0 nonexistent
## 1091 telephone may thu 159 2 999 0 nonexistent
## 1092 telephone may thu 152 2 999 0 nonexistent
## 1093 telephone may thu 389 2 999 0 nonexistent
## 1094 telephone may thu 314 3 999 0 nonexistent
## 1095 telephone may thu 30 2 999 0 nonexistent
## 1096 telephone may thu 32 2 999 0 nonexistent
## 1097 telephone may thu 252 2 999 0 nonexistent
## 1098 telephone may thu 20 2 999 0 nonexistent
## 1099 telephone may thu 302 2 999 0 nonexistent
## 1100 telephone may thu 31 1 999 0 nonexistent
## 1101 telephone may thu 190 1 999 0 nonexistent
## 1102 telephone may thu 149 1 999 0 nonexistent
## 1103 telephone may thu 210 1 999 0 nonexistent
## 1104 telephone may thu 180 2 999 0 nonexistent
## 1105 telephone may thu 102 1 999 0 nonexistent
## 1106 telephone may thu 245 1 999 0 nonexistent
## 1107 telephone may thu 190 1 999 0 nonexistent
## 1108 telephone may thu 223 2 999 0 nonexistent
## 1109 telephone may thu 42 1 999 0 nonexistent
## 1110 telephone may thu 206 2 999 0 nonexistent
## 1111 telephone may thu 242 2 999 0 nonexistent
## 1112 telephone may thu 66 2 999 0 nonexistent
## 1113 telephone may thu 173 2 999 0 nonexistent
## 1114 telephone may thu 477 2 999 0 nonexistent
## 1115 telephone may thu 77 1 999 0 nonexistent
## 1116 telephone may thu 205 2 999 0 nonexistent
## 1117 telephone may thu 453 2 999 0 nonexistent
## 1118 telephone may thu 200 2 999 0 nonexistent
## 1119 telephone may thu 305 2 999 0 nonexistent
## 1120 telephone may thu 627 3 999 0 nonexistent
## 1121 telephone may thu 242 1 999 0 nonexistent
## 1122 telephone may thu 184 1 999 0 nonexistent
## 1123 telephone may thu 119 2 999 0 nonexistent
## 1124 telephone may thu 626 6 999 0 nonexistent
## 1125 telephone may thu 12 1 999 0 nonexistent
## 1126 telephone may thu 224 2 999 0 nonexistent
## 1127 telephone may thu 202 2 999 0 nonexistent
## 1128 telephone may thu 144 3 999 0 nonexistent
## 1129 telephone may thu 543 3 999 0 nonexistent
## 1130 telephone may thu 257 2 999 0 nonexistent
## 1131 telephone may thu 237 2 999 0 nonexistent
## 1132 telephone may thu 23 5 999 0 nonexistent
## 1133 telephone may thu 209 3 999 0 nonexistent
## 1134 telephone may thu 442 2 999 0 nonexistent
## 1135 telephone may thu 186 2 999 0 nonexistent
## 1136 telephone may thu 617 2 999 0 nonexistent
## 1137 telephone may thu 226 1 999 0 nonexistent
## 1138 telephone may thu 275 1 999 0 nonexistent
## 1139 telephone may thu 81 2 999 0 nonexistent
## 1140 telephone may thu 74 7 999 0 nonexistent
## 1141 telephone may thu 285 1 999 0 nonexistent
## 1142 telephone may thu 261 5 999 0 nonexistent
## 1143 telephone may thu 151 2 999 0 nonexistent
## 1144 telephone may thu 422 2 999 0 nonexistent
## 1145 telephone may thu 159 2 999 0 nonexistent
## 1146 telephone may thu 102 2 999 0 nonexistent
## 1147 telephone may thu 78 3 999 0 nonexistent
## 1148 telephone may thu 15 1 999 0 nonexistent
## 1149 telephone may thu 352 2 999 0 nonexistent
## 1150 telephone may thu 296 1 999 0 nonexistent
## 1151 telephone may thu 185 2 999 0 nonexistent
## 1152 telephone may thu 181 2 999 0 nonexistent
## 1153 telephone may thu 133 2 999 0 nonexistent
## 1154 telephone may thu 335 9 999 0 nonexistent
## 1155 telephone may thu 139 1 999 0 nonexistent
## 1156 telephone may thu 163 2 999 0 nonexistent
## 1157 telephone may thu 956 2 999 0 nonexistent
## 1158 telephone may thu 166 2 999 0 nonexistent
## 1159 telephone may thu 95 2 999 0 nonexistent
## 1160 telephone may thu 71 2 999 0 nonexistent
## 1161 telephone may thu 191 2 999 0 nonexistent
## 1162 telephone may thu 100 5 999 0 nonexistent
## 1163 telephone may thu 233 2 999 0 nonexistent
## 1164 telephone may thu 128 2 999 0 nonexistent
## 1165 telephone may thu 56 2 999 0 nonexistent
## 1166 telephone may thu 4 3 999 0 nonexistent
## 1167 telephone may thu 210 2 999 0 nonexistent
## 1168 telephone may thu 21 9 999 0 nonexistent
## 1169 telephone may thu 67 2 999 0 nonexistent
## 1170 telephone may thu 219 4 999 0 nonexistent
## 1171 telephone may thu 248 3 999 0 nonexistent
## 1172 telephone may thu 92 3 999 0 nonexistent
## 1173 telephone may thu 112 3 999 0 nonexistent
## 1174 telephone may thu 205 4 999 0 nonexistent
## 1175 telephone may thu 105 2 999 0 nonexistent
## 1176 telephone may thu 112 2 999 0 nonexistent
## 1177 telephone may thu 383 3 999 0 nonexistent
## 1178 telephone may thu 207 2 999 0 nonexistent
## 1179 telephone may thu 132 2 999 0 nonexistent
## 1180 telephone may thu 10 2 999 0 nonexistent
## 1181 telephone may thu 249 5 999 0 nonexistent
## 1182 telephone may thu 122 2 999 0 nonexistent
## 1183 telephone may thu 300 2 999 0 nonexistent
## 1184 telephone may thu 672 3 999 0 nonexistent
## 1185 telephone may thu 390 3 999 0 nonexistent
## 1186 telephone may thu 116 2 999 0 nonexistent
## 1187 telephone may thu 21 3 999 0 nonexistent
## 1188 telephone may thu 192 2 999 0 nonexistent
## 1189 telephone may thu 8 2 999 0 nonexistent
## 1190 telephone may thu 13 2 999 0 nonexistent
## 1191 telephone may thu 393 2 999 0 nonexistent
## 1192 telephone may thu 84 2 999 0 nonexistent
## 1193 telephone may thu 277 3 999 0 nonexistent
## 1194 telephone may thu 399 4 999 0 nonexistent
## 1195 telephone may thu 297 2 999 0 nonexistent
## 1196 telephone may thu 111 3 999 0 nonexistent
## 1197 telephone may thu 886 2 999 0 nonexistent
## 1198 telephone may thu 49 4 999 0 nonexistent
## 1199 telephone may thu 89 7 999 0 nonexistent
## 1200 telephone may thu 341 2 999 0 nonexistent
## 1201 telephone may thu 461 3 999 0 nonexistent
## 1202 telephone may thu 515 3 999 0 nonexistent
## 1203 telephone may thu 123 2 999 0 nonexistent
## 1204 telephone may thu 102 4 999 0 nonexistent
## 1205 telephone may thu 17 3 999 0 nonexistent
## 1206 telephone may thu 291 2 999 0 nonexistent
## 1207 telephone may thu 209 3 999 0 nonexistent
## 1208 telephone may thu 1187 2 999 0 nonexistent
## 1209 telephone may thu 89 5 999 0 nonexistent
## 1210 telephone may thu 123 2 999 0 nonexistent
## 1211 telephone may thu 200 2 999 0 nonexistent
## 1212 telephone may thu 104 3 999 0 nonexistent
## 1213 telephone may thu 117 3 999 0 nonexistent
## 1214 telephone may thu 37 3 999 0 nonexistent
## 1215 telephone may thu 51 3 999 0 nonexistent
## 1216 telephone may thu 466 2 999 0 nonexistent
## 1217 telephone may thu 101 2 999 0 nonexistent
## 1218 telephone may thu 303 3 999 0 nonexistent
## 1219 telephone may thu 826 3 999 0 nonexistent
## 1220 telephone may thu 598 3 999 0 nonexistent
## 1221 telephone may thu 220 2 999 0 nonexistent
## 1222 telephone may thu 423 2 999 0 nonexistent
## 1223 telephone may thu 99 3 999 0 nonexistent
## 1224 telephone may thu 27 3 999 0 nonexistent
## 1225 telephone may thu 201 2 999 0 nonexistent
## 1226 telephone may thu 166 3 999 0 nonexistent
## 1227 telephone may thu 182 1 999 0 nonexistent
## 1228 telephone may thu 271 5 999 0 nonexistent
## 1229 telephone may thu 379 4 999 0 nonexistent
## 1230 telephone may thu 126 3 999 0 nonexistent
## 1231 telephone may thu 172 4 999 0 nonexistent
## 1232 telephone may thu 191 2 999 0 nonexistent
## 1233 telephone may thu 117 2 999 0 nonexistent
## 1234 telephone may thu 64 1 999 0 nonexistent
## 1235 telephone may thu 260 5 999 0 nonexistent
## 1236 telephone may thu 207 3 999 0 nonexistent
## 1237 telephone may thu 128 3 999 0 nonexistent
## 1238 telephone may fri 144 2 999 0 nonexistent
## 1239 telephone may fri 110 4 999 0 nonexistent
## 1240 telephone may fri 203 4 999 0 nonexistent
## 1241 telephone may fri 85 2 999 0 nonexistent
## 1242 telephone may fri 94 2 999 0 nonexistent
## 1243 telephone may fri 122 4 999 0 nonexistent
## 1244 telephone may fri 175 5 999 0 nonexistent
## 1245 telephone may fri 130 2 999 0 nonexistent
## 1246 telephone may fri 208 2 999 0 nonexistent
## 1247 telephone may fri 205 1 999 0 nonexistent
## 1248 telephone may fri 62 1 999 0 nonexistent
## 1249 telephone may fri 93 5 999 0 nonexistent
## 1250 telephone may fri 85 2 999 0 nonexistent
## 1251 telephone may fri 97 1 999 0 nonexistent
## 1252 telephone may fri 252 4 999 0 nonexistent
## 1253 telephone may fri 286 1 999 0 nonexistent
## 1254 telephone may fri 283 1 999 0 nonexistent
## 1255 telephone may fri 380 1 999 0 nonexistent
## 1256 telephone may fri 584 1 999 0 nonexistent
## 1257 telephone may fri 371 1 999 0 nonexistent
## 1258 telephone may fri 274 1 999 0 nonexistent
## 1259 telephone may fri 71 3 999 0 nonexistent
## 1260 telephone may fri 357 1 999 0 nonexistent
## 1261 telephone may fri 215 1 999 0 nonexistent
## 1262 telephone may fri 131 1 999 0 nonexistent
## 1263 telephone may fri 188 1 999 0 nonexistent
## 1264 telephone may fri 383 3 999 0 nonexistent
## 1265 telephone may fri 847 1 999 0 nonexistent
## 1266 telephone may fri 57 2 999 0 nonexistent
## 1267 telephone may fri 306 1 999 0 nonexistent
## 1268 telephone may fri 147 1 999 0 nonexistent
## 1269 telephone may fri 244 1 999 0 nonexistent
## 1270 telephone may fri 59 1 999 0 nonexistent
## 1271 telephone may fri 24 1 999 0 nonexistent
## 1272 telephone may fri 85 2 999 0 nonexistent
## 1273 telephone may fri 21 1 999 0 nonexistent
## 1274 telephone may fri 659 2 999 0 nonexistent
## 1275 telephone may fri 327 2 999 0 nonexistent
## 1276 telephone may fri 267 1 999 0 nonexistent
## 1277 telephone may fri 296 3 999 0 nonexistent
## 1278 telephone may fri 307 1 999 0 nonexistent
## 1279 telephone may fri 120 1 999 0 nonexistent
## 1280 telephone may fri 390 2 999 0 nonexistent
## 1281 telephone may fri 83 2 999 0 nonexistent
## 1282 telephone may fri 198 1 999 0 nonexistent
## 1283 telephone may fri 100 1 999 0 nonexistent
## 1284 telephone may fri 21 3 999 0 nonexistent
## 1285 telephone may fri 254 1 999 0 nonexistent
## 1286 telephone may fri 166 1 999 0 nonexistent
## 1287 telephone may fri 217 2 999 0 nonexistent
## 1288 telephone may fri 375 2 999 0 nonexistent
## 1289 telephone may fri 352 1 999 0 nonexistent
## 1290 telephone may fri 45 1 999 0 nonexistent
## 1291 telephone may fri 93 1 999 0 nonexistent
## 1292 telephone may fri 165 1 999 0 nonexistent
## 1293 telephone may fri 266 1 999 0 nonexistent
## 1294 telephone may fri 237 1 999 0 nonexistent
## 1295 telephone may fri 410 1 999 0 nonexistent
## 1296 telephone may fri 157 1 999 0 nonexistent
## 1297 telephone may fri 171 1 999 0 nonexistent
## 1298 telephone may fri 70 3 999 0 nonexistent
## 1299 telephone may fri 131 3 999 0 nonexistent
## 1300 telephone may fri 498 1 999 0 nonexistent
## 1301 telephone may fri 514 1 999 0 nonexistent
## 1302 telephone may fri 127 1 999 0 nonexistent
## 1303 telephone may fri 162 1 999 0 nonexistent
## 1304 telephone may fri 198 1 999 0 nonexistent
## 1305 telephone may fri 705 1 999 0 nonexistent
## 1306 telephone may fri 117 1 999 0 nonexistent
## 1307 telephone may fri 155 1 999 0 nonexistent
## 1308 telephone may fri 18 1 999 0 nonexistent
## 1309 telephone may fri 386 1 999 0 nonexistent
## 1310 telephone may fri 138 1 999 0 nonexistent
## 1311 telephone may fri 341 1 999 0 nonexistent
## 1312 telephone may fri 339 2 999 0 nonexistent
## 1313 telephone may fri 232 1 999 0 nonexistent
## 1314 telephone may fri 208 1 999 0 nonexistent
## 1315 telephone may fri 44 1 999 0 nonexistent
## 1316 telephone may fri 75 1 999 0 nonexistent
## 1317 telephone may fri 485 1 999 0 nonexistent
## 1318 telephone may fri 576 1 999 0 nonexistent
## 1319 telephone may fri 280 1 999 0 nonexistent
## 1320 telephone may fri 480 2 999 0 nonexistent
## 1321 telephone may fri 86 2 999 0 nonexistent
## 1322 telephone may fri 121 4 999 0 nonexistent
## 1323 telephone may fri 93 2 999 0 nonexistent
## 1324 telephone may fri 238 2 999 0 nonexistent
## 1325 telephone may fri 399 3 999 0 nonexistent
## 1326 telephone may fri 93 2 999 0 nonexistent
## 1327 telephone may fri 123 1 999 0 nonexistent
## 1328 telephone may fri 2462 1 999 0 nonexistent
## 1329 telephone may fri 114 1 999 0 nonexistent
## 1330 telephone may fri 249 3 999 0 nonexistent
## 1331 telephone may fri 210 1 999 0 nonexistent
## 1332 telephone may fri 187 1 999 0 nonexistent
## 1333 telephone may fri 172 1 999 0 nonexistent
## 1334 telephone may fri 122 1 999 0 nonexistent
## 1335 telephone may fri 207 1 999 0 nonexistent
## 1336 telephone may fri 136 2 999 0 nonexistent
## 1337 telephone may fri 117 2 999 0 nonexistent
## 1338 telephone may fri 393 1 999 0 nonexistent
## 1339 telephone may fri 107 1 999 0 nonexistent
## 1340 telephone may fri 25 1 999 0 nonexistent
## 1341 telephone may fri 384 2 999 0 nonexistent
## 1342 telephone may fri 38 1 999 0 nonexistent
## 1343 telephone may fri 164 1 999 0 nonexistent
## 1344 telephone may fri 825 1 999 0 nonexistent
## 1345 telephone may fri 331 1 999 0 nonexistent
## 1346 telephone may fri 479 2 999 0 nonexistent
## 1347 telephone may fri 229 2 999 0 nonexistent
## 1348 telephone may fri 258 2 999 0 nonexistent
## 1349 telephone may fri 490 1 999 0 nonexistent
## 1350 telephone may fri 308 1 999 0 nonexistent
## 1351 telephone may fri 137 1 999 0 nonexistent
## 1352 telephone may fri 545 2 999 0 nonexistent
## 1353 telephone may fri 109 1 999 0 nonexistent
## 1354 telephone may fri 257 6 999 0 nonexistent
## 1355 telephone may fri 213 2 999 0 nonexistent
## 1356 telephone may fri 115 1 999 0 nonexistent
## 1357 telephone may fri 646 1 999 0 nonexistent
## 1358 telephone may fri 95 2 999 0 nonexistent
## 1359 telephone may fri 64 1 999 0 nonexistent
## 1360 telephone may fri 186 1 999 0 nonexistent
## 1361 telephone may fri 205 1 999 0 nonexistent
## 1362 telephone may fri 122 1 999 0 nonexistent
## 1363 telephone may fri 377 1 999 0 nonexistent
## 1364 telephone may fri 322 1 999 0 nonexistent
## 1365 telephone may fri 208 3 999 0 nonexistent
## 1366 telephone may fri 211 2 999 0 nonexistent
## 1367 telephone may fri 156 2 999 0 nonexistent
## 1368 telephone may fri 206 2 999 0 nonexistent
## 1369 telephone may fri 544 1 999 0 nonexistent
## 1370 telephone may fri 143 1 999 0 nonexistent
## 1371 telephone may fri 200 3 999 0 nonexistent
## 1372 telephone may fri 71 1 999 0 nonexistent
## 1373 telephone may fri 164 5 999 0 nonexistent
## 1374 telephone may fri 137 3 999 0 nonexistent
## 1375 telephone may fri 87 2 999 0 nonexistent
## 1376 telephone may fri 91 2 999 0 nonexistent
## 1377 telephone may fri 280 1 999 0 nonexistent
## 1378 telephone may fri 230 2 999 0 nonexistent
## 1379 telephone may fri 135 1 999 0 nonexistent
## 1380 telephone may fri 261 1 999 0 nonexistent
## 1381 telephone may fri 215 2 999 0 nonexistent
## 1382 telephone may fri 125 1 999 0 nonexistent
## 1383 telephone may fri 391 2 999 0 nonexistent
## 1384 telephone may fri 107 3 999 0 nonexistent
## 1385 telephone may fri 108 2 999 0 nonexistent
## 1386 telephone may fri 106 1 999 0 nonexistent
## 1387 telephone may fri 134 1 999 0 nonexistent
## 1388 telephone may fri 190 1 999 0 nonexistent
## 1389 telephone may fri 180 1 999 0 nonexistent
## 1390 telephone may fri 62 1 999 0 nonexistent
## 1391 telephone may fri 323 1 999 0 nonexistent
## 1392 telephone may fri 111 2 999 0 nonexistent
## 1393 telephone may fri 224 3 999 0 nonexistent
## 1394 telephone may fri 150 2 999 0 nonexistent
## 1395 telephone may fri 388 2 999 0 nonexistent
## 1396 telephone may fri 194 1 999 0 nonexistent
## 1397 telephone may fri 57 2 999 0 nonexistent
## 1398 telephone may fri 188 1 999 0 nonexistent
## 1399 telephone may fri 342 1 999 0 nonexistent
## 1400 telephone may fri 84 1 999 0 nonexistent
## 1401 telephone may fri 97 1 999 0 nonexistent
## 1402 telephone may fri 365 1 999 0 nonexistent
## 1403 telephone may fri 285 1 999 0 nonexistent
## 1404 telephone may fri 352 1 999 0 nonexistent
## 1405 telephone may fri 79 4 999 0 nonexistent
## 1406 telephone may fri 331 2 999 0 nonexistent
## 1407 telephone may fri 76 2 999 0 nonexistent
## 1408 telephone may fri 24 1 999 0 nonexistent
## 1409 telephone may fri 73 1 999 0 nonexistent
## 1410 telephone may fri 253 1 999 0 nonexistent
## 1411 telephone may fri 622 1 999 0 nonexistent
## 1412 telephone may fri 178 1 999 0 nonexistent
## 1413 telephone may fri 404 2 999 0 nonexistent
## 1414 telephone may fri 134 1 999 0 nonexistent
## 1415 telephone may fri 93 3 999 0 nonexistent
## 1416 telephone may fri 20 1 999 0 nonexistent
## 1417 telephone may fri 129 3 999 0 nonexistent
## 1418 telephone may fri 1054 2 999 0 nonexistent
## 1419 telephone may fri 279 2 999 0 nonexistent
## 1420 telephone may fri 251 2 999 0 nonexistent
## 1421 telephone may fri 113 4 999 0 nonexistent
## 1422 telephone may fri 282 2 999 0 nonexistent
## 1423 telephone may fri 344 2 999 0 nonexistent
## 1424 telephone may fri 67 3 999 0 nonexistent
## 1425 telephone may fri 167 4 999 0 nonexistent
## 1426 telephone may fri 395 1 999 0 nonexistent
## 1427 telephone may fri 137 2 999 0 nonexistent
## 1428 telephone may fri 118 1 999 0 nonexistent
## 1429 telephone may fri 231 2 999 0 nonexistent
## 1430 telephone may fri 128 1 999 0 nonexistent
## 1431 telephone may fri 174 1 999 0 nonexistent
## 1432 telephone may fri 195 1 999 0 nonexistent
## 1433 telephone may fri 412 1 999 0 nonexistent
## 1434 telephone may fri 127 1 999 0 nonexistent
## 1435 telephone may fri 13 1 999 0 nonexistent
## 1436 telephone may fri 61 1 999 0 nonexistent
## 1437 telephone may fri 286 5 999 0 nonexistent
## 1438 telephone may fri 409 3 999 0 nonexistent
## 1439 telephone may fri 325 1 999 0 nonexistent
## 1440 telephone may fri 144 2 999 0 nonexistent
## 1441 telephone may fri 1713 1 999 0 nonexistent
## 1442 telephone may fri 241 2 999 0 nonexistent
## 1443 telephone may fri 338 3 999 0 nonexistent
## 1444 telephone may fri 346 3 999 0 nonexistent
## 1445 telephone may fri 204 2 999 0 nonexistent
## 1446 telephone may fri 296 2 999 0 nonexistent
## 1447 telephone may fri 551 2 999 0 nonexistent
## 1448 telephone may fri 153 1 999 0 nonexistent
## 1449 telephone may fri 188 2 999 0 nonexistent
## 1450 telephone may fri 1080 5 999 0 nonexistent
## 1451 telephone may fri 1461 2 999 0 nonexistent
## 1452 telephone may fri 116 1 999 0 nonexistent
## 1453 telephone may fri 129 2 999 0 nonexistent
## 1454 telephone may fri 98 3 999 0 nonexistent
## 1455 telephone may fri 262 1 999 0 nonexistent
## 1456 telephone may fri 147 7 999 0 nonexistent
## 1457 telephone may fri 150 1 999 0 nonexistent
## 1458 telephone may fri 282 2 999 0 nonexistent
## 1459 telephone may fri 332 2 999 0 nonexistent
## 1460 telephone may fri 94 1 999 0 nonexistent
## 1461 telephone may fri 455 1 999 0 nonexistent
## 1462 telephone may fri 49 1 999 0 nonexistent
## 1463 telephone may fri 181 1 999 0 nonexistent
## 1464 telephone may fri 345 9 999 0 nonexistent
## 1465 telephone may fri 154 3 999 0 nonexistent
## 1466 telephone may fri 294 2 999 0 nonexistent
## 1467 telephone may fri 750 7 999 0 nonexistent
## 1468 telephone may fri 202 2 999 0 nonexistent
## 1469 telephone may fri 191 2 999 0 nonexistent
## 1470 telephone may fri 214 2 999 0 nonexistent
## 1471 telephone may fri 128 1 999 0 nonexistent
## 1472 telephone may fri 70 1 999 0 nonexistent
## 1473 telephone may fri 279 1 999 0 nonexistent
## 1474 telephone may fri 400 2 999 0 nonexistent
## 1475 telephone may fri 231 2 999 0 nonexistent
## 1476 telephone may fri 175 2 999 0 nonexistent
## 1477 telephone may fri 70 4 999 0 nonexistent
## 1478 telephone may fri 179 2 999 0 nonexistent
## 1479 telephone may fri 107 4 999 0 nonexistent
## 1480 telephone may fri 142 2 999 0 nonexistent
## 1481 telephone may fri 119 2 999 0 nonexistent
## 1482 telephone may fri 180 3 999 0 nonexistent
## 1483 telephone may fri 135 2 999 0 nonexistent
## 1484 telephone may fri 213 2 999 0 nonexistent
## 1485 telephone may fri 136 2 999 0 nonexistent
## 1486 telephone may fri 44 3 999 0 nonexistent
## 1487 telephone may fri 184 2 999 0 nonexistent
## 1488 telephone may fri 32 2 999 0 nonexistent
## 1489 telephone may fri 73 4 999 0 nonexistent
## 1490 telephone may fri 126 2 999 0 nonexistent
## 1491 telephone may fri 379 2 999 0 nonexistent
## 1492 telephone may fri 89 2 999 0 nonexistent
## 1493 telephone may fri 210 3 999 0 nonexistent
## 1494 telephone may fri 393 2 999 0 nonexistent
## 1495 telephone may fri 128 3 999 0 nonexistent
## 1496 telephone may fri 161 2 999 0 nonexistent
## 1497 telephone may fri 1178 4 999 0 nonexistent
## 1498 telephone may fri 182 7 999 0 nonexistent
## 1499 telephone may fri 177 2 999 0 nonexistent
## 1500 telephone may fri 191 2 999 0 nonexistent
## 1501 telephone may fri 245 4 999 0 nonexistent
## 1502 telephone may fri 488 2 999 0 nonexistent
## 1503 telephone may fri 211 2 999 0 nonexistent
## 1504 telephone may fri 226 2 999 0 nonexistent
## 1505 telephone may fri 460 2 999 0 nonexistent
## 1506 telephone may fri 136 3 999 0 nonexistent
## 1507 telephone may fri 176 2 999 0 nonexistent
## 1508 telephone may fri 237 3 999 0 nonexistent
## 1509 telephone may fri 134 3 999 0 nonexistent
## 1510 telephone may fri 44 2 999 0 nonexistent
## 1511 telephone may fri 47 5 999 0 nonexistent
## 1512 telephone may fri 483 1 999 0 nonexistent
## 1513 telephone may fri 116 3 999 0 nonexistent
## 1514 telephone may fri 182 3 999 0 nonexistent
## 1515 telephone may fri 122 2 999 0 nonexistent
## 1516 telephone may fri 232 2 999 0 nonexistent
## 1517 telephone may fri 51 3 999 0 nonexistent
## 1518 telephone may fri 260 4 999 0 nonexistent
## 1519 telephone may fri 214 2 999 0 nonexistent
## 1520 telephone may fri 407 4 999 0 nonexistent
## 1521 telephone may fri 389 2 999 0 nonexistent
## 1522 telephone may fri 31 3 999 0 nonexistent
## 1523 telephone may fri 145 3 999 0 nonexistent
## 1524 telephone may fri 115 2 999 0 nonexistent
## 1525 telephone may fri 878 3 999 0 nonexistent
## 1526 telephone may fri 268 2 999 0 nonexistent
## 1527 telephone may fri 101 6 999 0 nonexistent
## 1528 telephone may fri 119 2 999 0 nonexistent
## 1529 telephone may fri 185 2 999 0 nonexistent
## 1530 telephone may fri 162 2 999 0 nonexistent
## 1531 telephone may fri 18 7 999 0 nonexistent
## 1532 telephone may fri 317 2 999 0 nonexistent
## 1533 telephone may fri 71 3 999 0 nonexistent
## 1534 telephone may fri 43 2 999 0 nonexistent
## 1535 telephone may fri 298 2 999 0 nonexistent
## 1536 telephone may fri 255 2 999 0 nonexistent
## 1537 telephone may fri 83 3 999 0 nonexistent
## 1538 telephone may fri 194 3 999 0 nonexistent
## 1539 telephone may fri 268 3 999 0 nonexistent
## 1540 telephone may fri 97 1 999 0 nonexistent
## 1541 telephone may fri 263 5 999 0 nonexistent
## 1542 telephone may fri 338 4 999 0 nonexistent
## 1543 telephone may fri 180 2 999 0 nonexistent
## 1544 telephone may fri 322 5 999 0 nonexistent
## 1545 telephone may fri 64 4 999 0 nonexistent
## 1546 telephone may fri 71 4 999 0 nonexistent
## 1547 telephone may fri 210 3 999 0 nonexistent
## 1548 telephone may fri 160 3 999 0 nonexistent
## 1549 telephone may fri 77 2 999 0 nonexistent
## 1550 telephone may fri 164 8 999 0 nonexistent
## 1551 telephone may fri 154 2 999 0 nonexistent
## 1552 telephone may fri 155 3 999 0 nonexistent
## 1553 telephone may fri 111 2 999 0 nonexistent
## 1554 telephone may fri 213 4 999 0 nonexistent
## 1555 telephone may fri 315 4 999 0 nonexistent
## 1556 telephone may fri 102 3 999 0 nonexistent
## 1557 telephone may fri 834 9 999 0 nonexistent
## 1558 telephone may fri 244 5 999 0 nonexistent
## 1559 telephone may fri 143 3 999 0 nonexistent
## 1560 telephone may fri 1534 2 999 0 nonexistent
## 1561 telephone may fri 291 4 999 0 nonexistent
## 1562 telephone may mon 163 2 999 0 nonexistent
## 1563 telephone may mon 33 4 999 0 nonexistent
## 1564 telephone may mon 144 6 999 0 nonexistent
## 1565 telephone may mon 146 4 999 0 nonexistent
## 1566 telephone may mon 40 3 999 0 nonexistent
## 1567 telephone may mon 79 6 999 0 nonexistent
## 1568 telephone may mon 112 2 999 0 nonexistent
## 1569 telephone may mon 147 5 999 0 nonexistent
## 1570 telephone may mon 836 4 999 0 nonexistent
## 1571 telephone may mon 290 5 999 0 nonexistent
## 1572 telephone may mon 148 2 999 0 nonexistent
## 1573 telephone may mon 289 5 999 0 nonexistent
## 1574 telephone may mon 345 2 999 0 nonexistent
## 1575 telephone may mon 181 4 999 0 nonexistent
## 1576 telephone may mon 129 2 999 0 nonexistent
## 1577 telephone may mon 76 2 999 0 nonexistent
## 1578 telephone may mon 111 2 999 0 nonexistent
## 1579 telephone may mon 98 3 999 0 nonexistent
## 1580 telephone may mon 221 2 999 0 nonexistent
## 1581 telephone may mon 150 7 999 0 nonexistent
## 1582 telephone may mon 139 6 999 0 nonexistent
## 1583 telephone may mon 149 5 999 0 nonexistent
## 1584 telephone may mon 327 2 999 0 nonexistent
## 1585 telephone may mon 92 4 999 0 nonexistent
## 1586 telephone may mon 111 2 999 0 nonexistent
## 1587 telephone may mon 192 2 999 0 nonexistent
## 1588 telephone may mon 592 2 999 0 nonexistent
## 1589 telephone may mon 105 3 999 0 nonexistent
## 1590 telephone may mon 62 2 999 0 nonexistent
## 1591 telephone may mon 114 5 999 0 nonexistent
## 1592 telephone may mon 59 4 999 0 nonexistent
## 1593 telephone may mon 144 7 999 0 nonexistent
## 1594 telephone may mon 346 4 999 0 nonexistent
## 1595 telephone may mon 57 2 999 0 nonexistent
## 1596 telephone may mon 286 4 999 0 nonexistent
## 1597 telephone may mon 59 4 999 0 nonexistent
## 1598 telephone may mon 38 4 999 0 nonexistent
## 1599 telephone may mon 566 7 999 0 nonexistent
## 1600 telephone may mon 167 2 999 0 nonexistent
## 1601 telephone may mon 127 2 999 0 nonexistent
## 1602 telephone may mon 71 2 999 0 nonexistent
## 1603 telephone may mon 120 2 999 0 nonexistent
## 1604 telephone may mon 409 2 999 0 nonexistent
## 1605 telephone may mon 177 4 999 0 nonexistent
## 1606 telephone may mon 124 1 999 0 nonexistent
## 1607 telephone may mon 36 4 999 0 nonexistent
## 1608 telephone may mon 94 2 999 0 nonexistent
## 1609 telephone may mon 189 1 999 0 nonexistent
## 1610 telephone may mon 24 1 999 0 nonexistent
## 1611 telephone may mon 185 1 999 0 nonexistent
## 1612 telephone may mon 122 1 999 0 nonexistent
## 1613 telephone may mon 225 1 999 0 nonexistent
## 1614 telephone may mon 165 1 999 0 nonexistent
## 1615 telephone may mon 186 1 999 0 nonexistent
## 1616 telephone may mon 405 3 999 0 nonexistent
## 1617 telephone may mon 172 2 999 0 nonexistent
## 1618 telephone may mon 207 3 999 0 nonexistent
## 1619 telephone may mon 57 8 999 0 nonexistent
## 1620 telephone may mon 102 1 999 0 nonexistent
## 1621 telephone may mon 164 3 999 0 nonexistent
## 1622 telephone may mon 288 2 999 0 nonexistent
## 1623 telephone may mon 154 1 999 0 nonexistent
## 1624 telephone may mon 136 2 999 0 nonexistent
## 1625 telephone may mon 53 1 999 0 nonexistent
## 1626 telephone may mon 202 1 999 0 nonexistent
## 1627 telephone may mon 130 3 999 0 nonexistent
## 1628 telephone may mon 523 1 999 0 nonexistent
## 1629 telephone may mon 231 1 999 0 nonexistent
## 1630 telephone may mon 217 1 999 0 nonexistent
## 1631 telephone may mon 151 1 999 0 nonexistent
## 1632 telephone may mon 293 1 999 0 nonexistent
## 1633 telephone may mon 281 1 999 0 nonexistent
## 1634 telephone may mon 363 2 999 0 nonexistent
## 1635 telephone may mon 86 1 999 0 nonexistent
## 1636 telephone may mon 486 1 999 0 nonexistent
## 1637 telephone may mon 49 2 999 0 nonexistent
## 1638 telephone may mon 170 2 999 0 nonexistent
## 1639 telephone may mon 539 1 999 0 nonexistent
## 1640 telephone may mon 66 3 999 0 nonexistent
## 1641 telephone may mon 820 1 999 0 nonexistent
## 1642 telephone may mon 398 1 999 0 nonexistent
## 1643 telephone may mon 112 1 999 0 nonexistent
## 1644 telephone may mon 64 1 999 0 nonexistent
## 1645 telephone may mon 255 1 999 0 nonexistent
## 1646 telephone may mon 95 8 999 0 nonexistent
## 1647 telephone may mon 140 3 999 0 nonexistent
## 1648 telephone may mon 788 2 999 0 nonexistent
## 1649 telephone may mon 194 2 999 0 nonexistent
## 1650 telephone may mon 306 2 999 0 nonexistent
## 1651 telephone may mon 501 2 999 0 nonexistent
## 1652 telephone may mon 832 3 999 0 nonexistent
## 1653 telephone may mon 214 4 999 0 nonexistent
## 1654 telephone may mon 283 6 999 0 nonexistent
## 1655 telephone may mon 101 2 999 0 nonexistent
## 1656 telephone may mon 77 2 999 0 nonexistent
## 1657 telephone may mon 290 6 999 0 nonexistent
## 1658 telephone may mon 388 2 999 0 nonexistent
## 1659 telephone may mon 1495 4 999 0 nonexistent
## 1660 telephone may mon 480 1 999 0 nonexistent
## 1661 telephone may mon 393 1 999 0 nonexistent
## 1662 telephone may mon 744 2 999 0 nonexistent
## 1663 telephone may mon 215 1 999 0 nonexistent
## 1664 telephone may mon 315 1 999 0 nonexistent
## 1665 telephone may mon 162 1 999 0 nonexistent
## 1666 telephone may mon 493 1 999 0 nonexistent
## 1667 telephone may mon 225 1 999 0 nonexistent
## 1668 telephone may mon 208 1 999 0 nonexistent
## 1669 telephone may mon 80 4 999 0 nonexistent
## 1670 telephone may mon 39 3 999 0 nonexistent
## 1671 telephone may mon 132 1 999 0 nonexistent
## 1672 telephone may mon 101 1 999 0 nonexistent
## 1673 telephone may mon 188 1 999 0 nonexistent
## 1674 telephone may mon 386 2 999 0 nonexistent
## 1675 telephone may mon 457 4 999 0 nonexistent
## 1676 telephone may mon 891 1 999 0 nonexistent
## 1677 telephone may mon 53 1 999 0 nonexistent
## 1678 telephone may mon 1083 2 999 0 nonexistent
## 1679 telephone may mon 1266 1 999 0 nonexistent
## 1680 telephone may mon 171 6 999 0 nonexistent
## 1681 telephone may mon 160 4 999 0 nonexistent
## 1682 telephone may mon 178 2 999 0 nonexistent
## 1683 telephone may mon 156 3 999 0 nonexistent
## 1684 telephone may mon 154 2 999 0 nonexistent
## 1685 telephone may mon 470 1 999 0 nonexistent
## 1686 telephone may mon 268 4 999 0 nonexistent
## 1687 telephone may mon 793 5 999 0 nonexistent
## 1688 telephone may mon 219 4 999 0 nonexistent
## 1689 telephone may mon 246 1 999 0 nonexistent
## 1690 telephone may mon 194 3 999 0 nonexistent
## 1691 telephone may mon 88 2 999 0 nonexistent
## 1692 telephone may mon 146 1 999 0 nonexistent
## 1693 telephone may mon 596 1 999 0 nonexistent
## 1694 telephone may mon 139 1 999 0 nonexistent
## 1695 telephone may mon 177 3 999 0 nonexistent
## 1696 telephone may mon 335 1 999 0 nonexistent
## 1697 telephone may mon 262 2 999 0 nonexistent
## 1698 telephone may mon 115 1 999 0 nonexistent
## 1699 telephone may mon 136 4 999 0 nonexistent
## 1700 telephone may mon 289 3 999 0 nonexistent
## 1701 telephone may mon 529 2 999 0 nonexistent
## 1702 telephone may mon 247 2 999 0 nonexistent
## 1703 telephone may mon 166 2 999 0 nonexistent
## 1704 telephone may mon 320 3 999 0 nonexistent
## 1705 telephone may mon 307 4 999 0 nonexistent
## 1706 telephone may mon 220 3 999 0 nonexistent
## 1707 telephone may mon 241 3 999 0 nonexistent
## 1708 telephone may mon 241 1 999 0 nonexistent
## 1709 telephone may mon 198 3 999 0 nonexistent
## 1710 telephone may mon 98 2 999 0 nonexistent
## 1711 telephone may mon 391 2 999 0 nonexistent
## 1712 telephone may mon 126 2 999 0 nonexistent
## 1713 telephone may mon 55 2 999 0 nonexistent
## 1714 telephone may mon 166 2 999 0 nonexistent
## 1715 telephone may mon 66 4 999 0 nonexistent
## 1716 telephone may mon 311 3 999 0 nonexistent
## 1717 telephone may mon 92 3 999 0 nonexistent
## 1718 telephone may mon 253 2 999 0 nonexistent
## 1719 telephone may mon 65 1 999 0 nonexistent
## 1720 telephone may mon 41 1 999 0 nonexistent
## 1721 telephone may mon 163 2 999 0 nonexistent
## 1722 telephone may mon 10 11 999 0 nonexistent
## 1723 telephone may mon 221 1 999 0 nonexistent
## 1724 telephone may mon 484 3 999 0 nonexistent
## 1725 telephone may mon 467 5 999 0 nonexistent
## 1726 telephone may mon 241 3 999 0 nonexistent
## 1727 telephone may mon 248 2 999 0 nonexistent
## 1728 telephone may mon 198 3 999 0 nonexistent
## 1729 telephone may mon 212 2 999 0 nonexistent
## 1730 telephone may mon 115 4 999 0 nonexistent
## 1731 telephone may mon 58 7 999 0 nonexistent
## 1732 telephone may mon 145 4 999 0 nonexistent
## 1733 telephone may mon 300 3 999 0 nonexistent
## 1734 telephone may mon 264 2 999 0 nonexistent
## 1735 telephone may mon 65 5 999 0 nonexistent
## 1736 telephone may mon 299 5 999 0 nonexistent
## 1737 telephone may mon 22 5 999 0 nonexistent
## 1738 telephone may mon 170 8 999 0 nonexistent
## 1739 telephone may mon 89 3 999 0 nonexistent
## 1740 telephone may mon 166 4 999 0 nonexistent
## 1741 telephone may mon 128 3 999 0 nonexistent
## 1742 telephone may mon 197 3 999 0 nonexistent
## 1743 telephone may mon 395 3 999 0 nonexistent
## 1744 telephone may mon 220 2 999 0 nonexistent
## 1745 telephone may mon 298 2 999 0 nonexistent
## 1746 telephone may mon 123 7 999 0 nonexistent
## 1747 telephone may mon 334 7 999 0 nonexistent
## 1748 telephone may mon 73 3 999 0 nonexistent
## 1749 telephone may mon 186 6 999 0 nonexistent
## 1750 telephone may mon 13 5 999 0 nonexistent
## 1751 telephone may mon 51 9 999 0 nonexistent
## 1752 telephone may mon 159 3 999 0 nonexistent
## 1753 telephone may mon 103 8 999 0 nonexistent
## 1754 telephone may mon 46 3 999 0 nonexistent
## 1755 telephone may mon 344 3 999 0 nonexistent
## 1756 telephone may mon 157 5 999 0 nonexistent
## 1757 telephone may mon 249 4 999 0 nonexistent
## 1758 telephone may mon 24 12 999 0 nonexistent
## 1759 telephone may mon 195 2 999 0 nonexistent
## 1760 telephone may mon 143 4 999 0 nonexistent
## 1761 telephone may mon 68 2 999 0 nonexistent
## 1762 telephone may mon 274 6 999 0 nonexistent
## 1763 telephone may mon 152 5 999 0 nonexistent
## 1764 telephone may mon 325 4 999 0 nonexistent
## 1765 telephone may mon 111 4 999 0 nonexistent
## 1766 telephone may mon 81 4 999 0 nonexistent
## 1767 telephone may mon 181 4 999 0 nonexistent
## 1768 telephone may tue 92 2 999 0 nonexistent
## 1769 telephone may tue 85 2 999 0 nonexistent
## 1770 telephone may tue 141 6 999 0 nonexistent
## 1771 telephone may tue 182 6 999 0 nonexistent
## 1772 telephone may tue 134 2 999 0 nonexistent
## 1773 telephone may tue 514 5 999 0 nonexistent
## 1774 telephone may tue 181 5 999 0 nonexistent
## 1775 telephone may tue 160 3 999 0 nonexistent
## 1776 telephone may tue 267 3 999 0 nonexistent
## 1777 telephone may tue 907 2 999 0 nonexistent
## 1778 telephone may tue 200 1 999 0 nonexistent
## 1779 telephone may tue 139 1 999 0 nonexistent
## 1780 telephone may tue 153 1 999 0 nonexistent
## 1781 telephone may tue 109 1 999 0 nonexistent
## 1782 telephone may tue 97 2 999 0 nonexistent
## 1783 telephone may tue 164 1 999 0 nonexistent
## 1784 telephone may tue 70 1 999 0 nonexistent
## 1785 telephone may tue 723 1 999 0 nonexistent
## 1786 telephone may tue 518 1 999 0 nonexistent
## 1787 telephone may tue 147 1 999 0 nonexistent
## 1788 telephone may tue 101 1 999 0 nonexistent
## 1789 telephone may tue 142 1 999 0 nonexistent
## 1790 telephone may tue 520 1 999 0 nonexistent
## 1791 telephone may tue 611 2 999 0 nonexistent
## 1792 telephone may tue 135 3 999 0 nonexistent
## 1793 telephone may tue 276 2 999 0 nonexistent
## 1794 telephone may tue 449 1 999 0 nonexistent
## 1795 telephone may tue 98 1 999 0 nonexistent
## 1796 telephone may tue 105 1 999 0 nonexistent
## 1797 telephone may tue 382 2 999 0 nonexistent
## 1798 telephone may tue 213 1 999 0 nonexistent
## 1799 telephone may tue 116 1 999 0 nonexistent
## 1800 telephone may tue 249 3 999 0 nonexistent
## 1801 telephone may tue 50 1 999 0 nonexistent
## 1802 telephone may tue 138 1 999 0 nonexistent
## 1803 telephone may tue 49 1 999 0 nonexistent
## 1804 telephone may tue 169 1 999 0 nonexistent
## 1805 telephone may tue 155 1 999 0 nonexistent
## 1806 telephone may tue 120 1 999 0 nonexistent
## 1807 telephone may tue 203 1 999 0 nonexistent
## 1808 telephone may tue 244 1 999 0 nonexistent
## 1809 telephone may tue 428 1 999 0 nonexistent
## 1810 telephone may tue 53 1 999 0 nonexistent
## 1811 telephone may tue 360 1 999 0 nonexistent
## 1812 telephone may tue 215 1 999 0 nonexistent
## 1813 telephone may tue 500 2 999 0 nonexistent
## 1814 telephone may tue 207 1 999 0 nonexistent
## 1815 telephone may tue 270 1 999 0 nonexistent
## 1816 telephone may tue 272 1 999 0 nonexistent
## 1817 telephone may tue 108 1 999 0 nonexistent
## 1818 telephone may tue 383 1 999 0 nonexistent
## 1819 telephone may tue 3366 3 999 0 nonexistent
## 1820 telephone may tue 259 6 999 0 nonexistent
## 1821 telephone may tue 237 1 999 0 nonexistent
## 1822 telephone may tue 351 1 999 0 nonexistent
## 1823 telephone may tue 218 1 999 0 nonexistent
## 1824 telephone may tue 198 1 999 0 nonexistent
## 1825 telephone may tue 284 2 999 0 nonexistent
## 1826 telephone may tue 190 1 999 0 nonexistent
## 1827 telephone may tue 295 1 999 0 nonexistent
## 1828 telephone may tue 174 1 999 0 nonexistent
## 1829 telephone may tue 124 1 999 0 nonexistent
## 1830 telephone may tue 62 3 999 0 nonexistent
## 1831 telephone may tue 343 1 999 0 nonexistent
## 1832 telephone may tue 248 2 999 0 nonexistent
## 1833 telephone may tue 180 1 999 0 nonexistent
## 1834 telephone may tue 117 1 999 0 nonexistent
## 1835 telephone may tue 205 1 999 0 nonexistent
## 1836 telephone may tue 370 1 999 0 nonexistent
## 1837 telephone may tue 427 1 999 0 nonexistent
## 1838 telephone may tue 289 2 999 0 nonexistent
## 1839 telephone may tue 198 1 999 0 nonexistent
## 1840 telephone may tue 247 1 999 0 nonexistent
## 1841 telephone may tue 213 1 999 0 nonexistent
## 1842 telephone may tue 166 1 999 0 nonexistent
## 1843 telephone may tue 259 1 999 0 nonexistent
## 1844 telephone may tue 340 1 999 0 nonexistent
## 1845 telephone may tue 392 1 999 0 nonexistent
## 1846 telephone may tue 245 1 999 0 nonexistent
## 1847 telephone may tue 148 1 999 0 nonexistent
## 1848 telephone may tue 137 1 999 0 nonexistent
## 1849 telephone may tue 456 1 999 0 nonexistent
## 1850 telephone may tue 107 1 999 0 nonexistent
## 1851 telephone may tue 44 1 999 0 nonexistent
## 1852 telephone may tue 118 1 999 0 nonexistent
## 1853 telephone may tue 135 1 999 0 nonexistent
## 1854 telephone may tue 276 1 999 0 nonexistent
## 1855 telephone may tue 118 1 999 0 nonexistent
## 1856 telephone may tue 38 1 999 0 nonexistent
## 1857 telephone may tue 232 3 999 0 nonexistent
## 1858 telephone may tue 1167 1 999 0 nonexistent
## 1859 telephone may tue 39 2 999 0 nonexistent
## 1860 telephone may tue 311 1 999 0 nonexistent
## 1861 telephone may tue 147 1 999 0 nonexistent
## 1862 telephone may tue 125 1 999 0 nonexistent
## 1863 telephone may tue 98 1 999 0 nonexistent
## 1864 telephone may tue 83 1 999 0 nonexistent
## 1865 telephone may tue 67 1 999 0 nonexistent
## 1866 telephone may tue 77 1 999 0 nonexistent
## 1867 telephone may tue 191 1 999 0 nonexistent
## 1868 telephone may tue 144 1 999 0 nonexistent
## 1869 telephone may tue 20 1 999 0 nonexistent
## 1870 telephone may tue 27 1 999 0 nonexistent
## 1871 telephone may tue 174 4 999 0 nonexistent
## 1872 telephone may tue 260 3 999 0 nonexistent
## 1873 telephone may tue 609 2 999 0 nonexistent
## 1874 telephone may tue 262 1 999 0 nonexistent
## 1875 telephone may tue 302 1 999 0 nonexistent
## 1876 telephone may tue 121 2 999 0 nonexistent
## 1877 telephone may tue 202 3 999 0 nonexistent
## 1878 telephone may tue 31 1 999 0 nonexistent
## 1879 telephone may tue 21 1 999 0 nonexistent
## 1880 telephone may tue 334 2 999 0 nonexistent
## 1881 telephone may tue 156 1 999 0 nonexistent
## 1882 telephone may tue 92 1 999 0 nonexistent
## 1883 telephone may tue 766 1 999 0 nonexistent
## 1884 telephone may tue 162 1 999 0 nonexistent
## 1885 telephone may tue 255 5 999 0 nonexistent
## 1886 telephone may tue 137 1 999 0 nonexistent
## 1887 telephone may tue 189 1 999 0 nonexistent
## 1888 telephone may tue 110 1 999 0 nonexistent
## 1889 telephone may tue 135 1 999 0 nonexistent
## 1890 telephone may tue 102 4 999 0 nonexistent
## 1891 telephone may tue 705 1 999 0 nonexistent
## 1892 telephone may tue 192 1 999 0 nonexistent
## 1893 telephone may tue 139 1 999 0 nonexistent
## 1894 telephone may tue 65 1 999 0 nonexistent
## 1895 telephone may tue 266 2 999 0 nonexistent
## 1896 telephone may tue 76 1 999 0 nonexistent
## 1897 telephone may tue 122 1 999 0 nonexistent
## 1898 telephone may tue 111 3 999 0 nonexistent
## 1899 telephone may tue 100 1 999 0 nonexistent
## 1900 telephone may tue 149 1 999 0 nonexistent
## 1901 telephone may tue 127 2 999 0 nonexistent
## 1902 telephone may tue 320 1 999 0 nonexistent
## 1903 telephone may tue 145 1 999 0 nonexistent
## 1904 telephone may tue 129 1 999 0 nonexistent
## 1905 telephone may tue 730 1 999 0 nonexistent
## 1906 telephone may tue 36 1 999 0 nonexistent
## 1907 telephone may tue 521 1 999 0 nonexistent
## 1908 telephone may tue 95 3 999 0 nonexistent
## 1909 telephone may tue 120 1 999 0 nonexistent
## 1910 telephone may tue 349 1 999 0 nonexistent
## 1911 telephone may tue 768 1 999 0 nonexistent
## 1912 telephone may tue 277 1 999 0 nonexistent
## 1913 telephone may tue 289 1 999 0 nonexistent
## 1914 telephone may tue 473 1 999 0 nonexistent
## 1915 telephone may tue 133 1 999 0 nonexistent
## 1916 telephone may tue 386 2 999 0 nonexistent
## 1917 telephone may tue 76 1 999 0 nonexistent
## 1918 telephone may tue 214 1 999 0 nonexistent
## 1919 telephone may tue 355 1 999 0 nonexistent
## 1920 telephone may tue 173 1 999 0 nonexistent
## 1921 telephone may tue 113 2 999 0 nonexistent
## 1922 telephone may tue 109 2 999 0 nonexistent
## 1923 telephone may tue 853 1 999 0 nonexistent
## 1924 telephone may tue 518 1 999 0 nonexistent
## 1925 telephone may tue 452 2 999 0 nonexistent
## 1926 telephone may tue 203 2 999 0 nonexistent
## 1927 telephone may tue 81 1 999 0 nonexistent
## 1928 telephone may tue 93 1 999 0 nonexistent
## 1929 telephone may tue 119 1 999 0 nonexistent
## 1930 telephone may tue 295 3 999 0 nonexistent
## 1931 telephone may tue 296 1 999 0 nonexistent
## 1932 telephone may tue 916 2 999 0 nonexistent
## 1933 telephone may tue 60 2 999 0 nonexistent
## 1934 telephone may tue 262 2 999 0 nonexistent
## 1935 telephone may tue 431 2 999 0 nonexistent
## 1936 telephone may tue 358 2 999 0 nonexistent
## 1937 telephone may tue 565 2 999 0 nonexistent
## 1938 telephone may tue 103 3 999 0 nonexistent
## 1939 telephone may tue 708 2 999 0 nonexistent
## 1940 telephone may tue 265 1 999 0 nonexistent
## 1941 telephone may tue 255 2 999 0 nonexistent
## 1942 telephone may tue 434 2 999 0 nonexistent
## 1943 telephone may tue 59 1 999 0 nonexistent
## 1944 telephone may tue 305 1 999 0 nonexistent
## 1945 telephone may tue 155 2 999 0 nonexistent
## 1946 telephone may tue 805 2 999 0 nonexistent
## 1947 telephone may tue 242 1 999 0 nonexistent
## 1948 telephone may tue 93 6 999 0 nonexistent
## 1949 telephone may tue 31 2 999 0 nonexistent
## 1950 telephone may tue 213 5 999 0 nonexistent
## 1951 telephone may tue 104 2 999 0 nonexistent
## 1952 telephone may tue 342 3 999 0 nonexistent
## 1953 telephone may tue 160 3 999 0 nonexistent
## 1954 telephone may tue 535 2 999 0 nonexistent
## 1955 telephone may tue 514 5 999 0 nonexistent
## 1956 telephone may tue 276 1 999 0 nonexistent
## 1957 telephone may tue 176 3 999 0 nonexistent
## 1958 telephone may tue 20 1 999 0 nonexistent
## 1959 telephone may tue 161 1 999 0 nonexistent
## 1960 telephone may tue 144 1 999 0 nonexistent
## 1961 telephone may tue 93 2 999 0 nonexistent
## 1962 telephone may tue 188 3 999 0 nonexistent
## 1963 telephone may tue 332 1 999 0 nonexistent
## 1964 telephone may tue 178 2 999 0 nonexistent
## 1965 telephone may tue 94 1 999 0 nonexistent
## 1966 telephone may tue 139 2 999 0 nonexistent
## 1967 telephone may tue 152 1 999 0 nonexistent
## 1968 telephone may tue 188 1 999 0 nonexistent
## 1969 telephone may tue 94 2 999 0 nonexistent
## 1970 telephone may tue 54 3 999 0 nonexistent
## 1971 telephone may tue 29 1 999 0 nonexistent
## 1972 telephone may tue 95 1 999 0 nonexistent
## 1973 telephone may tue 227 1 999 0 nonexistent
## 1974 telephone may tue 190 1 999 0 nonexistent
## 1975 telephone may tue 60 1 999 0 nonexistent
## 1976 telephone may tue 296 1 999 0 nonexistent
## 1977 telephone may tue 125 1 999 0 nonexistent
## 1978 telephone may tue 78 3 999 0 nonexistent
## 1979 telephone may tue 67 2 999 0 nonexistent
## 1980 telephone may tue 93 1 999 0 nonexistent
## 1981 telephone may tue 119 2 999 0 nonexistent
## 1982 telephone may tue 3 1 999 0 nonexistent
## 1983 telephone may tue 297 3 999 0 nonexistent
## 1984 telephone may tue 179 1 999 0 nonexistent
## 1985 telephone may tue 420 1 999 0 nonexistent
## 1986 telephone may tue 354 2 999 0 nonexistent
## 1987 telephone may tue 190 1 999 0 nonexistent
## 1988 telephone may tue 367 1 999 0 nonexistent
## 1989 telephone may tue 394 1 999 0 nonexistent
## 1990 telephone may tue 91 2 999 0 nonexistent
## 1991 telephone may tue 768 2 999 0 nonexistent
## 1992 telephone may tue 184 1 999 0 nonexistent
## 1993 telephone may tue 43 2 999 0 nonexistent
## 1994 telephone may tue 108 2 999 0 nonexistent
## 1995 telephone may tue 195 2 999 0 nonexistent
## 1996 telephone may tue 109 1 999 0 nonexistent
## 1997 telephone may tue 299 3 999 0 nonexistent
## 1998 telephone may tue 192 1 999 0 nonexistent
## 1999 telephone may tue 87 1 999 0 nonexistent
## 2000 telephone may tue 169 2 999 0 nonexistent
## 2001 telephone may tue 119 10 999 0 nonexistent
## 2002 telephone may tue 101 13 999 0 nonexistent
## 2003 telephone may tue 210 1 999 0 nonexistent
## 2004 telephone may tue 129 4 999 0 nonexistent
## 2005 telephone may tue 481 3 999 0 nonexistent
## 2006 telephone may tue 215 1 999 0 nonexistent
## 2007 telephone may tue 411 2 999 0 nonexistent
## 2008 telephone may tue 93 1 999 0 nonexistent
## 2009 telephone may tue 65 1 999 0 nonexistent
## 2010 telephone may tue 34 4 999 0 nonexistent
## 2011 telephone may tue 431 1 999 0 nonexistent
## 2012 telephone may tue 851 4 999 0 nonexistent
## 2013 telephone may tue 315 3 999 0 nonexistent
## 2014 telephone may tue 214 1 999 0 nonexistent
## 2015 telephone may tue 92 4 999 0 nonexistent
## 2016 telephone may tue 181 3 999 0 nonexistent
## 2017 telephone may tue 159 2 999 0 nonexistent
## 2018 telephone may tue 58 2 999 0 nonexistent
## 2019 telephone may tue 165 2 999 0 nonexistent
## 2020 telephone may tue 309 2 999 0 nonexistent
## 2021 telephone may tue 210 3 999 0 nonexistent
## 2022 telephone may tue 165 3 999 0 nonexistent
## 2023 telephone may tue 331 2 999 0 nonexistent
## 2024 telephone may tue 230 3 999 0 nonexistent
## 2025 telephone may tue 584 2 999 0 nonexistent
## 2026 telephone may tue 86 4 999 0 nonexistent
## 2027 telephone may tue 151 4 999 0 nonexistent
## 2028 telephone may tue 69 11 999 0 nonexistent
## 2029 telephone may tue 15 11 999 0 nonexistent
## 2030 telephone may tue 437 2 999 0 nonexistent
## 2031 telephone may tue 267 2 999 0 nonexistent
## 2032 telephone may tue 259 5 999 0 nonexistent
## 2033 telephone may tue 165 2 999 0 nonexistent
## 2034 telephone may tue 175 2 999 0 nonexistent
## 2035 telephone may tue 198 2 999 0 nonexistent
## 2036 telephone may tue 168 2 999 0 nonexistent
## 2037 telephone may tue 247 3 999 0 nonexistent
## 2038 telephone may tue 291 2 999 0 nonexistent
## 2039 telephone may tue 322 2 999 0 nonexistent
## 2040 telephone may tue 194 2 999 0 nonexistent
## 2041 telephone may tue 379 2 999 0 nonexistent
## 2042 telephone may tue 151 2 999 0 nonexistent
## 2043 telephone may tue 166 4 999 0 nonexistent
## 2044 telephone may tue 64 2 999 0 nonexistent
## 2045 telephone may tue 232 4 999 0 nonexistent
## 2046 telephone may tue 647 7 999 0 nonexistent
## 2047 telephone may tue 322 3 999 0 nonexistent
## 2048 telephone may tue 337 6 999 0 nonexistent
## 2049 telephone may tue 133 12 999 0 nonexistent
## 2050 telephone may tue 50 3 999 0 nonexistent
## 2051 telephone may tue 87 2 999 0 nonexistent
## 2052 telephone may tue 771 2 999 0 nonexistent
## 2053 telephone may tue 205 3 999 0 nonexistent
## 2054 telephone may tue 76 2 999 0 nonexistent
## 2055 telephone may tue 304 2 999 0 nonexistent
## 2056 telephone may tue 209 2 999 0 nonexistent
## 2057 telephone may tue 271 2 999 0 nonexistent
## 2058 telephone may tue 1093 3 999 0 nonexistent
## 2059 telephone may tue 326 4 999 0 nonexistent
## 2060 telephone may tue 389 2 999 0 nonexistent
## 2061 telephone may tue 264 3 999 0 nonexistent
## 2062 telephone may tue 1106 4 999 0 nonexistent
## 2063 telephone may tue 195 5 999 0 nonexistent
## 2064 telephone may tue 214 2 999 0 nonexistent
## 2065 telephone may tue 87 9 999 0 nonexistent
## 2066 telephone may tue 122 7 999 0 nonexistent
## 2067 telephone may tue 288 2 999 0 nonexistent
## 2068 telephone may tue 50 3 999 0 nonexistent
## 2069 telephone may tue 816 3 999 0 nonexistent
## 2070 telephone may tue 284 2 999 0 nonexistent
## 2071 telephone may tue 116 4 999 0 nonexistent
## 2072 telephone may tue 232 2 999 0 nonexistent
## 2073 telephone may tue 262 2 999 0 nonexistent
## 2074 telephone may tue 190 5 999 0 nonexistent
## 2075 telephone may tue 166 2 999 0 nonexistent
## 2076 telephone may tue 104 2 999 0 nonexistent
## 2077 telephone may tue 163 3 999 0 nonexistent
## 2078 telephone may tue 492 2 999 0 nonexistent
## 2079 telephone may tue 152 3 999 0 nonexistent
## 2080 telephone may tue 109 4 999 0 nonexistent
## 2081 telephone may tue 384 1 999 0 nonexistent
## 2082 telephone may tue 1032 1 999 0 nonexistent
## 2083 telephone may wed 128 2 999 0 nonexistent
## 2084 telephone may wed 65 6 999 0 nonexistent
## 2085 telephone may wed 194 4 999 0 nonexistent
## 2086 telephone may wed 360 2 999 0 nonexistent
## 2087 telephone may wed 20 11 999 0 nonexistent
## 2088 telephone may wed 323 4 999 0 nonexistent
## 2089 telephone may wed 151 2 999 0 nonexistent
## 2090 telephone may wed 158 3 999 0 nonexistent
## 2091 telephone may wed 73 2 999 0 nonexistent
## 2092 telephone may wed 407 4 999 0 nonexistent
## 2093 telephone may wed 438 2 999 0 nonexistent
## 2094 telephone may wed 174 3 999 0 nonexistent
## 2095 telephone may wed 175 3 999 0 nonexistent
## 2096 telephone may wed 313 4 999 0 nonexistent
## 2097 telephone may wed 137 4 999 0 nonexistent
## 2098 telephone may wed 93 4 999 0 nonexistent
## 2099 telephone may wed 97 2 999 0 nonexistent
## 2100 telephone may wed 219 4 999 0 nonexistent
## 2101 telephone may wed 455 3 999 0 nonexistent
## 2102 telephone may wed 103 6 999 0 nonexistent
## 2103 telephone may wed 133 2 999 0 nonexistent
## 2104 telephone may wed 77 2 999 0 nonexistent
## 2105 telephone may wed 211 2 999 0 nonexistent
## 2106 telephone may wed 72 2 999 0 nonexistent
## 2107 telephone may wed 89 2 999 0 nonexistent
## 2108 telephone may wed 108 4 999 0 nonexistent
## 2109 telephone may wed 305 3 999 0 nonexistent
## 2110 telephone may wed 387 9 999 0 nonexistent
## 2111 telephone may wed 146 4 999 0 nonexistent
## 2112 telephone may wed 160 1 999 0 nonexistent
## 2113 telephone may wed 70 1 999 0 nonexistent
## 2114 telephone may wed 117 4 999 0 nonexistent
## 2115 telephone may wed 381 1 999 0 nonexistent
## 2116 telephone may wed 109 1 999 0 nonexistent
## 2117 telephone may wed 178 1 999 0 nonexistent
## 2118 telephone may wed 260 1 999 0 nonexistent
## 2119 telephone may wed 231 1 999 0 nonexistent
## 2120 telephone may wed 145 1 999 0 nonexistent
## 2121 telephone may wed 282 1 999 0 nonexistent
## 2122 telephone may wed 73 1 999 0 nonexistent
## 2123 telephone may wed 48 1 999 0 nonexistent
## 2124 telephone may wed 220 1 999 0 nonexistent
## 2125 telephone may wed 606 1 999 0 nonexistent
## 2126 telephone may wed 451 3 999 0 nonexistent
## 2127 telephone may wed 202 2 999 0 nonexistent
## 2128 telephone may wed 168 3 999 0 nonexistent
## 2129 telephone may wed 69 1 999 0 nonexistent
## 2130 telephone may wed 200 1 999 0 nonexistent
## 2131 telephone may wed 170 1 999 0 nonexistent
## 2132 telephone may wed 142 1 999 0 nonexistent
## 2133 telephone may wed 283 8 999 0 nonexistent
## 2134 telephone may wed 179 1 999 0 nonexistent
## 2135 telephone may wed 238 1 999 0 nonexistent
## 2136 telephone may wed 138 3 999 0 nonexistent
## 2137 telephone may wed 218 2 999 0 nonexistent
## 2138 telephone may wed 158 2 999 0 nonexistent
## 2139 telephone may wed 105 1 999 0 nonexistent
## 2140 telephone may wed 106 1 999 0 nonexistent
## 2141 telephone may wed 132 1 999 0 nonexistent
## 2142 telephone may wed 824 2 999 0 nonexistent
## 2143 telephone may wed 243 1 999 0 nonexistent
## 2144 telephone may wed 488 12 999 0 nonexistent
## 2145 telephone may wed 148 2 999 0 nonexistent
## 2146 telephone may wed 159 2 999 0 nonexistent
## 2147 telephone may wed 124 1 999 0 nonexistent
## 2148 telephone may wed 452 1 999 0 nonexistent
## 2149 telephone may wed 114 1 999 0 nonexistent
## 2150 telephone may wed 125 1 999 0 nonexistent
## 2151 telephone may wed 145 2 999 0 nonexistent
## 2152 telephone may wed 686 1 999 0 nonexistent
## 2153 telephone may wed 80 1 999 0 nonexistent
## 2154 telephone may wed 265 1 999 0 nonexistent
## 2155 telephone may wed 71 1 999 0 nonexistent
## 2156 telephone may wed 243 1 999 0 nonexistent
## 2157 telephone may wed 136 2 999 0 nonexistent
## 2158 telephone may wed 158 2 999 0 nonexistent
## 2159 telephone may wed 267 2 999 0 nonexistent
## 2160 telephone may wed 257 1 999 0 nonexistent
## 2161 telephone may wed 110 1 999 0 nonexistent
## 2162 telephone may wed 477 5 999 0 nonexistent
## 2163 telephone may wed 456 9 999 0 nonexistent
## 2164 telephone may wed 298 1 999 0 nonexistent
## 2165 telephone may wed 483 2 999 0 nonexistent
## 2166 telephone may wed 213 1 999 0 nonexistent
## 2167 telephone may wed 51 1 999 0 nonexistent
## 2168 telephone may wed 44 1 999 0 nonexistent
## 2169 telephone may wed 220 2 999 0 nonexistent
## 2170 telephone may wed 178 1 999 0 nonexistent
## 2171 telephone may wed 452 2 999 0 nonexistent
## 2172 telephone may wed 122 1 999 0 nonexistent
## 2173 telephone may wed 116 1 999 0 nonexistent
## 2174 telephone may wed 120 1 999 0 nonexistent
## 2175 telephone may wed 179 1 999 0 nonexistent
## 2176 telephone may wed 35 1 999 0 nonexistent
## 2177 telephone may wed 156 1 999 0 nonexistent
## 2178 telephone may wed 201 1 999 0 nonexistent
## 2179 telephone may wed 68 1 999 0 nonexistent
## 2180 telephone may wed 75 1 999 0 nonexistent
## 2181 telephone may wed 191 1 999 0 nonexistent
## 2182 telephone may wed 461 1 999 0 nonexistent
## 2183 telephone may wed 188 1 999 0 nonexistent
## 2184 telephone may wed 117 6 999 0 nonexistent
## 2185 telephone may wed 546 1 999 0 nonexistent
## 2186 telephone may wed 171 1 999 0 nonexistent
## 2187 telephone may wed 429 1 999 0 nonexistent
## 2188 telephone may wed 568 1 999 0 nonexistent
## 2189 telephone may wed 299 1 999 0 nonexistent
## 2190 telephone may wed 282 1 999 0 nonexistent
## 2191 telephone may wed 211 1 999 0 nonexistent
## 2192 telephone may wed 77 1 999 0 nonexistent
## 2193 telephone may wed 283 1 999 0 nonexistent
## 2194 telephone may wed 263 1 999 0 nonexistent
## 2195 telephone may wed 189 1 999 0 nonexistent
## 2196 telephone may wed 91 1 999 0 nonexistent
## 2197 telephone may wed 32 1 999 0 nonexistent
## 2198 telephone may wed 139 2 999 0 nonexistent
## 2199 telephone may wed 347 1 999 0 nonexistent
## 2200 telephone may wed 152 1 999 0 nonexistent
## 2201 telephone may wed 869 1 999 0 nonexistent
## 2202 telephone may wed 339 1 999 0 nonexistent
## 2203 telephone may wed 267 1 999 0 nonexistent
## 2204 telephone may wed 28 2 999 0 nonexistent
## 2205 telephone may wed 216 1 999 0 nonexistent
## 2206 telephone may wed 199 2 999 0 nonexistent
## 2207 telephone may wed 139 1 999 0 nonexistent
## 2208 telephone may wed 189 1 999 0 nonexistent
## 2209 telephone may wed 197 2 999 0 nonexistent
## 2210 telephone may wed 224 2 999 0 nonexistent
## 2211 telephone may wed 160 1 999 0 nonexistent
## 2212 telephone may wed 191 1 999 0 nonexistent
## 2213 telephone may wed 833 1 999 0 nonexistent
## 2214 telephone may wed 485 2 999 0 nonexistent
## 2215 telephone may wed 57 1 999 0 nonexistent
## 2216 telephone may wed 247 2 999 0 nonexistent
## 2217 telephone may wed 89 1 999 0 nonexistent
## 2218 telephone may wed 849 1 999 0 nonexistent
## 2219 telephone may wed 260 1 999 0 nonexistent
## 2220 telephone may wed 181 1 999 0 nonexistent
## 2221 telephone may wed 749 2 999 0 nonexistent
## 2222 telephone may wed 166 2 999 0 nonexistent
## 2223 telephone may wed 182 2 999 0 nonexistent
## 2224 telephone may wed 152 2 999 0 nonexistent
## 2225 telephone may wed 438 4 999 0 nonexistent
## 2226 telephone may wed 387 2 999 0 nonexistent
## 2227 telephone may wed 100 3 999 0 nonexistent
## 2228 telephone may wed 413 2 999 0 nonexistent
## 2229 telephone may wed 109 1 999 0 nonexistent
## 2230 telephone may wed 345 2 999 0 nonexistent
## 2231 telephone may wed 566 2 999 0 nonexistent
## 2232 telephone may wed 38 1 999 0 nonexistent
## 2233 telephone may wed 214 1 999 0 nonexistent
## 2234 telephone may wed 246 1 999 0 nonexistent
## 2235 telephone may wed 170 2 999 0 nonexistent
## 2236 telephone may wed 98 1 999 0 nonexistent
## 2237 telephone may wed 230 1 999 0 nonexistent
## 2238 telephone may wed 364 1 999 0 nonexistent
## 2239 telephone may wed 93 11 999 0 nonexistent
## 2240 telephone may wed 57 2 999 0 nonexistent
## 2241 telephone may wed 210 2 999 0 nonexistent
## 2242 telephone may wed 222 2 999 0 nonexistent
## 2243 telephone may wed 265 2 999 0 nonexistent
## 2244 telephone may wed 21 10 999 0 nonexistent
## 2245 telephone may wed 157 1 999 0 nonexistent
## 2246 telephone may wed 143 1 999 0 nonexistent
## 2247 telephone may wed 230 2 999 0 nonexistent
## 2248 telephone may wed 161 2 999 0 nonexistent
## 2249 telephone may wed 155 1 999 0 nonexistent
## 2250 telephone may wed 162 1 999 0 nonexistent
## 2251 telephone may wed 565 1 999 0 nonexistent
## 2252 telephone may wed 44 5 999 0 nonexistent
## 2253 telephone may wed 337 1 999 0 nonexistent
## 2254 telephone may wed 129 2 999 0 nonexistent
## 2255 telephone may wed 977 1 999 0 nonexistent
## 2256 telephone may wed 70 2 999 0 nonexistent
## 2257 telephone may wed 71 1 999 0 nonexistent
## 2258 telephone may wed 110 1 999 0 nonexistent
## 2259 telephone may wed 230 2 999 0 nonexistent
## 2260 telephone may wed 48 1 999 0 nonexistent
## 2261 telephone may wed 369 1 999 0 nonexistent
## 2262 telephone may wed 136 1 999 0 nonexistent
## 2263 telephone may wed 22 4 999 0 nonexistent
## 2264 telephone may wed 174 2 999 0 nonexistent
## 2265 telephone may wed 378 1 999 0 nonexistent
## 2266 telephone may wed 80 1 999 0 nonexistent
## 2267 telephone may wed 108 1 999 0 nonexistent
## 2268 telephone may wed 389 1 999 0 nonexistent
## 2269 telephone may wed 192 1 999 0 nonexistent
## 2270 telephone may wed 273 1 999 0 nonexistent
## 2271 telephone may wed 48 1 999 0 nonexistent
## 2272 telephone may wed 8 1 999 0 nonexistent
## 2273 telephone may wed 90 1 999 0 nonexistent
## 2274 telephone may wed 221 1 999 0 nonexistent
## 2275 telephone may wed 302 2 999 0 nonexistent
## 2276 telephone may wed 411 1 999 0 nonexistent
## 2277 telephone may wed 179 1 999 0 nonexistent
## 2278 telephone may wed 245 2 999 0 nonexistent
## 2279 telephone may wed 746 1 999 0 nonexistent
## 2280 telephone may wed 673 2 999 0 nonexistent
## 2281 telephone may wed 220 7 999 0 nonexistent
## 2282 telephone may wed 232 1 999 0 nonexistent
## 2283 telephone may wed 106 4 999 0 nonexistent
## 2284 telephone may wed 485 2 999 0 nonexistent
## 2285 telephone may wed 106 5 999 0 nonexistent
## 2286 telephone may wed 107 1 999 0 nonexistent
## 2287 telephone may wed 1044 2 999 0 nonexistent
## 2288 telephone may wed 354 1 999 0 nonexistent
## 2289 telephone may wed 55 1 999 0 nonexistent
## 2290 telephone may wed 180 4 999 0 nonexistent
## 2291 telephone may wed 95 1 999 0 nonexistent
## 2292 telephone may wed 331 2 999 0 nonexistent
## 2293 telephone may wed 123 1 999 0 nonexistent
## 2294 telephone may wed 148 3 999 0 nonexistent
## 2295 telephone may wed 74 3 999 0 nonexistent
## 2296 telephone may wed 267 7 999 0 nonexistent
## 2297 telephone may wed 374 2 999 0 nonexistent
## 2298 telephone may wed 295 2 999 0 nonexistent
## 2299 telephone may wed 77 4 999 0 nonexistent
## 2300 telephone may wed 149 2 999 0 nonexistent
## 2301 telephone may wed 668 1 999 0 nonexistent
## 2302 telephone may wed 95 6 999 0 nonexistent
## 2303 telephone may wed 229 2 999 0 nonexistent
## 2304 telephone may wed 286 9 999 0 nonexistent
## 2305 telephone may wed 242 5 999 0 nonexistent
## 2306 telephone may wed 335 1 999 0 nonexistent
## 2307 telephone may wed 140 1 999 0 nonexistent
## 2308 telephone may wed 159 3 999 0 nonexistent
## 2309 telephone may wed 343 1 999 0 nonexistent
## 2310 telephone may wed 85 4 999 0 nonexistent
## 2311 telephone may wed 295 1 999 0 nonexistent
## 2312 telephone may wed 360 1 999 0 nonexistent
## 2313 telephone may wed 183 4 999 0 nonexistent
## 2314 telephone may wed 726 2 999 0 nonexistent
## 2315 telephone may wed 158 1 999 0 nonexistent
## 2316 telephone may wed 514 2 999 0 nonexistent
## 2317 telephone may wed 382 10 999 0 nonexistent
## 2318 telephone may wed 301 3 999 0 nonexistent
## 2319 telephone may wed 153 3 999 0 nonexistent
## 2320 telephone may wed 264 2 999 0 nonexistent
## 2321 telephone may wed 161 2 999 0 nonexistent
## 2322 telephone may wed 150 1 999 0 nonexistent
## 2323 telephone may wed 49 1 999 0 nonexistent
## 2324 telephone may wed 326 3 999 0 nonexistent
## 2325 telephone may wed 339 1 999 0 nonexistent
## 2326 telephone may wed 125 1 999 0 nonexistent
## 2327 telephone may wed 232 2 999 0 nonexistent
## 2328 telephone may wed 312 5 999 0 nonexistent
## 2329 telephone may wed 423 2 999 0 nonexistent
## 2330 telephone may wed 248 1 999 0 nonexistent
## 2331 telephone may wed 146 1 999 0 nonexistent
## 2332 telephone may wed 125 2 999 0 nonexistent
## 2333 telephone may wed 234 1 999 0 nonexistent
## 2334 telephone may wed 162 4 999 0 nonexistent
## 2335 telephone may wed 436 1 999 0 nonexistent
## 2336 telephone may wed 302 2 999 0 nonexistent
## 2337 telephone may wed 349 5 999 0 nonexistent
## 2338 telephone may wed 174 2 999 0 nonexistent
## 2339 telephone may wed 180 1 999 0 nonexistent
## 2340 telephone may wed 902 5 999 0 nonexistent
## 2341 telephone may wed 137 2 999 0 nonexistent
## 2342 telephone may wed 282 1 999 0 nonexistent
## 2343 telephone may wed 126 3 999 0 nonexistent
## 2344 telephone may wed 554 1 999 0 nonexistent
## 2345 telephone may wed 427 1 999 0 nonexistent
## 2346 telephone may wed 97 5 999 0 nonexistent
## 2347 telephone may wed 252 2 999 0 nonexistent
## 2348 telephone may wed 852 2 999 0 nonexistent
## 2349 telephone may wed 241 2 999 0 nonexistent
## 2350 telephone may wed 133 4 999 0 nonexistent
## 2351 telephone may wed 98 2 999 0 nonexistent
## 2352 telephone may wed 574 2 999 0 nonexistent
## 2353 telephone may wed 274 2 999 0 nonexistent
## 2354 telephone may wed 122 4 999 0 nonexistent
## 2355 telephone may wed 166 4 999 0 nonexistent
## 2356 telephone may wed 167 3 999 0 nonexistent
## 2357 telephone may wed 91 7 999 0 nonexistent
## 2358 telephone may wed 133 4 999 0 nonexistent
## 2359 telephone may wed 86 2 999 0 nonexistent
## 2360 telephone may wed 302 10 999 0 nonexistent
## 2361 telephone may wed 303 4 999 0 nonexistent
## 2362 telephone may wed 483 3 999 0 nonexistent
## 2363 telephone may wed 234 2 999 0 nonexistent
## 2364 telephone may wed 211 3 999 0 nonexistent
## 2365 telephone may wed 738 2 999 0 nonexistent
## 2366 telephone may wed 482 2 999 0 nonexistent
## 2367 telephone may wed 238 2 999 0 nonexistent
## 2368 telephone may wed 76 2 999 0 nonexistent
## 2369 telephone may wed 225 2 999 0 nonexistent
## 2370 telephone may wed 256 2 999 0 nonexistent
## 2371 telephone may wed 567 3 999 0 nonexistent
## 2372 telephone may wed 147 3 999 0 nonexistent
## 2373 telephone may wed 135 2 999 0 nonexistent
## 2374 telephone may wed 582 2 999 0 nonexistent
## 2375 telephone may wed 270 2 999 0 nonexistent
## 2376 telephone may wed 52 4 999 0 nonexistent
## 2377 telephone may wed 260 2 999 0 nonexistent
## 2378 telephone may wed 1118 2 999 0 nonexistent
## 2379 telephone may wed 76 9 999 0 nonexistent
## 2380 telephone may wed 79 3 999 0 nonexistent
## 2381 telephone may wed 837 2 999 0 nonexistent
## 2382 telephone may wed 245 7 999 0 nonexistent
## 2383 telephone may wed 271 2 999 0 nonexistent
## 2384 telephone may wed 166 5 999 0 nonexistent
## 2385 telephone may wed 173 7 999 0 nonexistent
## 2386 telephone may wed 367 3 999 0 nonexistent
## 2387 telephone may wed 227 4 999 0 nonexistent
## 2388 telephone may wed 276 4 999 0 nonexistent
## 2389 telephone may wed 349 2 999 0 nonexistent
## 2390 telephone may wed 856 2 999 0 nonexistent
## 2391 telephone may wed 278 2 999 0 nonexistent
## 2392 telephone may wed 249 2 999 0 nonexistent
## 2393 telephone may wed 260 3 999 0 nonexistent
## 2394 telephone may wed 323 7 999 0 nonexistent
## 2395 telephone may wed 211 2 999 0 nonexistent
## 2396 telephone may wed 266 2 999 0 nonexistent
## 2397 telephone may wed 806 2 999 0 nonexistent
## 2398 telephone may wed 318 2 999 0 nonexistent
## 2399 telephone may wed 104 3 999 0 nonexistent
## 2400 telephone may wed 747 3 999 0 nonexistent
## 2401 telephone may thu 95 4 999 0 nonexistent
## 2402 telephone may thu 319 5 999 0 nonexistent
## 2403 telephone may thu 114 2 999 0 nonexistent
## 2404 telephone may thu 170 5 999 0 nonexistent
## 2405 telephone may thu 311 5 999 0 nonexistent
## 2406 telephone may thu 362 3 999 0 nonexistent
## 2407 telephone may thu 86 4 999 0 nonexistent
## 2408 telephone may thu 90 2 999 0 nonexistent
## 2409 telephone may thu 44 3 999 0 nonexistent
## 2410 telephone may thu 1013 3 999 0 nonexistent
## 2411 telephone may thu 76 7 999 0 nonexistent
## 2412 telephone may thu 155 6 999 0 nonexistent
## 2413 telephone may thu 468 5 999 0 nonexistent
## 2414 telephone may thu 226 2 999 0 nonexistent
## 2415 telephone may thu 349 2 999 0 nonexistent
## 2416 telephone may thu 148 3 999 0 nonexistent
## 2417 telephone may thu 517 3 999 0 nonexistent
## 2418 telephone may thu 204 1 999 0 nonexistent
## 2419 telephone may thu 236 4 999 0 nonexistent
## 2420 telephone may thu 112 1 999 0 nonexistent
## 2421 telephone may thu 360 1 999 0 nonexistent
## 2422 telephone may thu 366 1 999 0 nonexistent
## 2423 telephone may thu 230 1 999 0 nonexistent
## 2424 telephone may thu 12 3 999 0 nonexistent
## 2425 telephone may thu 65 1 999 0 nonexistent
## 2426 telephone may thu 420 1 999 0 nonexistent
## 2427 telephone may thu 192 1 999 0 nonexistent
## 2428 telephone may thu 260 1 999 0 nonexistent
## 2429 telephone may thu 71 1 999 0 nonexistent
## 2430 telephone may thu 735 1 999 0 nonexistent
## 2431 telephone may thu 183 5 999 0 nonexistent
## 2432 telephone may thu 75 1 999 0 nonexistent
## 2433 telephone may thu 87 1 999 0 nonexistent
## 2434 telephone may thu 244 1 999 0 nonexistent
## 2435 telephone may thu 183 1 999 0 nonexistent
## 2436 telephone may thu 552 11 999 0 nonexistent
## 2437 telephone may thu 121 1 999 0 nonexistent
## 2438 telephone may thu 27 1 999 0 nonexistent
## 2439 telephone may thu 157 1 999 0 nonexistent
## 2440 telephone may thu 203 1 999 0 nonexistent
## 2441 telephone may thu 104 1 999 0 nonexistent
## 2442 telephone may thu 153 1 999 0 nonexistent
## 2443 telephone may thu 182 2 999 0 nonexistent
## 2444 telephone may thu 644 2 999 0 nonexistent
## 2445 telephone may thu 305 1 999 0 nonexistent
## 2446 telephone may thu 140 1 999 0 nonexistent
## 2447 telephone may thu 180 2 999 0 nonexistent
## 2448 telephone may thu 374 1 999 0 nonexistent
## 2449 telephone may thu 240 1 999 0 nonexistent
## 2450 telephone may thu 219 1 999 0 nonexistent
## 2451 telephone may thu 436 1 999 0 nonexistent
## 2452 telephone may thu 463 1 999 0 nonexistent
## 2453 telephone may thu 265 1 999 0 nonexistent
## 2454 telephone may thu 234 1 999 0 nonexistent
## 2455 telephone may thu 200 1 999 0 nonexistent
## 2456 telephone may thu 158 1 999 0 nonexistent
## 2457 telephone may thu 34 1 999 0 nonexistent
## 2458 telephone may thu 160 1 999 0 nonexistent
## 2459 telephone may thu 36 1 999 0 nonexistent
## 2460 telephone may thu 139 2 999 0 nonexistent
## 2461 telephone may thu 90 1 999 0 nonexistent
## 2462 telephone may thu 134 1 999 0 nonexistent
## 2463 telephone may thu 257 1 999 0 nonexistent
## 2464 telephone may thu 94 1 999 0 nonexistent
## 2465 telephone may thu 171 10 999 0 nonexistent
## 2466 telephone may thu 285 2 999 0 nonexistent
## 2467 telephone may thu 326 4 999 0 nonexistent
## 2468 telephone may thu 451 2 999 0 nonexistent
## 2469 telephone may thu 347 1 999 0 nonexistent
## 2470 telephone may thu 116 1 999 0 nonexistent
## 2471 telephone may thu 191 1 999 0 nonexistent
## 2472 telephone may thu 77 1 999 0 nonexistent
## 2473 telephone may thu 1036 1 999 0 nonexistent
## 2474 telephone may thu 303 1 999 0 nonexistent
## 2475 telephone may thu 80 1 999 0 nonexistent
## 2476 telephone may thu 322 1 999 0 nonexistent
## 2477 telephone may thu 111 1 999 0 nonexistent
## 2478 telephone may thu 750 2 999 0 nonexistent
## 2479 telephone may thu 435 1 999 0 nonexistent
## 2480 telephone may thu 95 3 999 0 nonexistent
## 2481 telephone may thu 208 2 999 0 nonexistent
## 2482 telephone may thu 163 1 999 0 nonexistent
## 2483 telephone may thu 168 5 999 0 nonexistent
## 2484 telephone may thu 161 3 999 0 nonexistent
## 2485 telephone may thu 112 1 999 0 nonexistent
## 2486 telephone may thu 599 2 999 0 nonexistent
## 2487 telephone may thu 30 1 999 0 nonexistent
## 2488 telephone may thu 55 1 999 0 nonexistent
## 2489 telephone may thu 231 1 999 0 nonexistent
## 2490 telephone may thu 191 1 999 0 nonexistent
## 2491 telephone may thu 75 1 999 0 nonexistent
## 2492 telephone may thu 106 1 999 0 nonexistent
## 2493 telephone may thu 221 1 999 0 nonexistent
## 2494 telephone may thu 106 1 999 0 nonexistent
## 2495 telephone may thu 93 1 999 0 nonexistent
## 2496 telephone may thu 71 2 999 0 nonexistent
## 2497 telephone may thu 290 3 999 0 nonexistent
## 2498 telephone may thu 1165 1 999 0 nonexistent
## 2499 telephone may thu 164 1 999 0 nonexistent
## 2500 telephone may thu 295 2 999 0 nonexistent
## 2501 telephone may thu 187 1 999 0 nonexistent
## 2502 telephone may thu 106 1 999 0 nonexistent
## 2503 telephone may thu 219 1 999 0 nonexistent
## 2504 telephone may thu 236 1 999 0 nonexistent
## 2505 telephone may thu 124 1 999 0 nonexistent
## 2506 telephone may thu 145 4 999 0 nonexistent
## 2507 telephone may thu 291 2 999 0 nonexistent
## 2508 telephone may thu 101 1 999 0 nonexistent
## 2509 telephone may thu 417 3 999 0 nonexistent
## 2510 telephone may thu 191 4 999 0 nonexistent
## 2511 telephone may thu 131 1 999 0 nonexistent
## 2512 telephone may thu 97 1 999 0 nonexistent
## 2513 telephone may thu 221 2 999 0 nonexistent
## 2514 telephone may thu 104 1 999 0 nonexistent
## 2515 telephone may thu 122 1 999 0 nonexistent
## 2516 telephone may thu 72 1 999 0 nonexistent
## 2517 telephone may thu 186 1 999 0 nonexistent
## 2518 telephone may thu 23 1 999 0 nonexistent
## 2519 telephone may thu 402 1 999 0 nonexistent
## 2520 telephone may thu 37 1 999 0 nonexistent
## 2521 telephone may thu 68 5 999 0 nonexistent
## 2522 telephone may thu 587 1 999 0 nonexistent
## 2523 telephone may thu 348 1 999 0 nonexistent
## 2524 telephone may thu 51 2 999 0 nonexistent
## 2525 telephone may thu 144 2 999 0 nonexistent
## 2526 telephone may thu 203 2 999 0 nonexistent
## 2527 telephone may thu 57 2 999 0 nonexistent
## 2528 telephone may thu 217 2 999 0 nonexistent
## 2529 telephone may thu 74 1 999 0 nonexistent
## 2530 telephone may thu 464 2 999 0 nonexistent
## 2531 telephone may thu 738 7 999 0 nonexistent
## 2532 telephone may thu 126 1 999 0 nonexistent
## 2533 telephone may thu 452 2 999 0 nonexistent
## 2534 telephone may thu 203 4 999 0 nonexistent
## 2535 telephone may thu 230 7 999 0 nonexistent
## 2536 telephone may thu 187 4 999 0 nonexistent
## 2537 telephone may thu 136 1 999 0 nonexistent
## 2538 telephone may thu 1244 3 999 0 nonexistent
## 2539 telephone may thu 80 1 999 0 nonexistent
## 2540 telephone may thu 431 1 999 0 nonexistent
## 2541 telephone may thu 301 1 999 0 nonexistent
## 2542 telephone may thu 115 3 999 0 nonexistent
## 2543 telephone may thu 30 1 999 0 nonexistent
## 2544 telephone may thu 270 1 999 0 nonexistent
## 2545 telephone may thu 218 2 999 0 nonexistent
## 2546 telephone may thu 355 1 999 0 nonexistent
## 2547 telephone may thu 49 1 999 0 nonexistent
## 2548 telephone may thu 117 1 999 0 nonexistent
## 2549 telephone may thu 155 1 999 0 nonexistent
## 2550 telephone may thu 99 1 999 0 nonexistent
## 2551 telephone may thu 188 1 999 0 nonexistent
## 2552 telephone may thu 200 3 999 0 nonexistent
## 2553 telephone may thu 187 2 999 0 nonexistent
## 2554 telephone may thu 50 7 999 0 nonexistent
## 2555 telephone may thu 51 10 999 0 nonexistent
## 2556 telephone may thu 140 3 999 0 nonexistent
## 2557 telephone may thu 221 4 999 0 nonexistent
## 2558 telephone may thu 98 2 999 0 nonexistent
## 2559 telephone may thu 253 2 999 0 nonexistent
## 2560 telephone may thu 71 1 999 0 nonexistent
## 2561 telephone may thu 127 2 999 0 nonexistent
## 2562 telephone may thu 74 2 999 0 nonexistent
## 2563 telephone may thu 126 4 999 0 nonexistent
## 2564 telephone may thu 122 1 999 0 nonexistent
## 2565 telephone may thu 173 2 999 0 nonexistent
## 2566 telephone may thu 918 1 999 0 nonexistent
## 2567 telephone may thu 544 2 999 0 nonexistent
## 2568 telephone may thu 309 2 999 0 nonexistent
## 2569 telephone may thu 138 2 999 0 nonexistent
## 2570 telephone may thu 193 5 999 0 nonexistent
## 2571 telephone may thu 198 3 999 0 nonexistent
## 2572 telephone may thu 243 4 999 0 nonexistent
## 2573 telephone may thu 57 2 999 0 nonexistent
## 2574 telephone may thu 49 1 999 0 nonexistent
## 2575 telephone may thu 105 1 999 0 nonexistent
## 2576 telephone may thu 719 1 999 0 nonexistent
## 2577 telephone may thu 196 2 999 0 nonexistent
## 2578 telephone may thu 243 1 999 0 nonexistent
## 2579 telephone may thu 344 2 999 0 nonexistent
## 2580 telephone may thu 135 1 999 0 nonexistent
## 2581 telephone may thu 168 1 999 0 nonexistent
## 2582 telephone may thu 43 9 999 0 nonexistent
## 2583 telephone may thu 525 1 999 0 nonexistent
## 2584 telephone may thu 122 6 999 0 nonexistent
## 2585 telephone may thu 152 2 999 0 nonexistent
## 2586 telephone may thu 111 2 999 0 nonexistent
## 2587 telephone may thu 164 2 999 0 nonexistent
## 2588 telephone may thu 99 2 999 0 nonexistent
## 2589 telephone may thu 236 3 999 0 nonexistent
## 2590 telephone may thu 815 1 999 0 nonexistent
## 2591 telephone may thu 282 1 999 0 nonexistent
## 2592 telephone may thu 318 1 999 0 nonexistent
## 2593 telephone may thu 118 1 999 0 nonexistent
## 2594 telephone may thu 238 1 999 0 nonexistent
## 2595 telephone may thu 225 1 999 0 nonexistent
## 2596 telephone may thu 490 3 999 0 nonexistent
## 2597 telephone may thu 89 1 999 0 nonexistent
## 2598 telephone may thu 199 1 999 0 nonexistent
## 2599 telephone may thu 644 1 999 0 nonexistent
## 2600 telephone may thu 286 2 999 0 nonexistent
## 2601 telephone may thu 422 3 999 0 nonexistent
## 2602 telephone may thu 22 3 999 0 nonexistent
## 2603 telephone may thu 71 4 999 0 nonexistent
## 2604 telephone may thu 465 3 999 0 nonexistent
## 2605 telephone may thu 83 3 999 0 nonexistent
## 2606 telephone may thu 973 2 999 0 nonexistent
## 2607 telephone may thu 56 1 999 0 nonexistent
## 2608 telephone may thu 190 2 999 0 nonexistent
## 2609 telephone may thu 323 1 999 0 nonexistent
## 2610 telephone may thu 113 1 999 0 nonexistent
## 2611 telephone may thu 228 1 999 0 nonexistent
## 2612 telephone may thu 110 1 999 0 nonexistent
## 2613 telephone may thu 59 1 999 0 nonexistent
## 2614 telephone may thu 294 2 999 0 nonexistent
## 2615 telephone may thu 21 5 999 0 nonexistent
## 2616 telephone may thu 210 3 999 0 nonexistent
## 2617 telephone may thu 144 1 999 0 nonexistent
## 2618 telephone may thu 251 1 999 0 nonexistent
## 2619 telephone may thu 237 2 999 0 nonexistent
## 2620 telephone may thu 399 1 999 0 nonexistent
## 2621 telephone may thu 132 22 999 0 nonexistent
## 2622 telephone may thu 387 4 999 0 nonexistent
## 2623 telephone may thu 344 2 999 0 nonexistent
## 2624 telephone may thu 484 8 999 0 nonexistent
## 2625 telephone may thu 95 1 999 0 nonexistent
## 2626 telephone may thu 461 1 999 0 nonexistent
## 2627 telephone may thu 30 2 999 0 nonexistent
## 2628 telephone may thu 561 1 999 0 nonexistent
## 2629 telephone may thu 468 2 999 0 nonexistent
## 2630 telephone may thu 388 2 999 0 nonexistent
## 2631 telephone may thu 589 1 999 0 nonexistent
## 2632 telephone may thu 160 1 999 0 nonexistent
## 2633 telephone may thu 69 1 999 0 nonexistent
## 2634 telephone may thu 964 2 999 0 nonexistent
## 2635 telephone may thu 384 4 999 0 nonexistent
## 2636 telephone may thu 103 1 999 0 nonexistent
## 2637 telephone may thu 52 1 999 0 nonexistent
## 2638 telephone may thu 205 2 999 0 nonexistent
## 2639 telephone may thu 486 2 999 0 nonexistent
## 2640 telephone may thu 73 2 999 0 nonexistent
## 2641 telephone may thu 523 5 999 0 nonexistent
## 2642 telephone may thu 157 5 999 0 nonexistent
## 2643 telephone may thu 186 5 999 0 nonexistent
## 2644 telephone may thu 73 5 999 0 nonexistent
## 2645 telephone may thu 544 3 999 0 nonexistent
## 2646 telephone may thu 194 2 999 0 nonexistent
## 2647 telephone may thu 420 4 999 0 nonexistent
## 2648 telephone may thu 584 2 999 0 nonexistent
## 2649 telephone may thu 192 3 999 0 nonexistent
## 2650 telephone may thu 1231 2 999 0 nonexistent
## 2651 telephone may thu 298 3 999 0 nonexistent
## 2652 telephone may thu 21 6 999 0 nonexistent
## 2653 telephone may thu 404 7 999 0 nonexistent
## 2654 telephone may thu 241 23 999 0 nonexistent
## 2655 telephone may thu 302 1 999 0 nonexistent
## 2656 telephone may thu 440 2 999 0 nonexistent
## 2657 telephone may thu 172 2 999 0 nonexistent
## 2658 telephone may thu 319 7 999 0 nonexistent
## 2659 telephone may thu 1051 3 999 0 nonexistent
## 2660 telephone may thu 213 4 999 0 nonexistent
## 2661 telephone may thu 194 2 999 0 nonexistent
## 2662 telephone may thu 276 4 999 0 nonexistent
## 2663 telephone may thu 19 8 999 0 nonexistent
## 2664 telephone may thu 226 2 999 0 nonexistent
## 2665 telephone may thu 546 8 999 0 nonexistent
## 2666 telephone may thu 419 2 999 0 nonexistent
## 2667 telephone may thu 156 5 999 0 nonexistent
## 2668 telephone may thu 184 2 999 0 nonexistent
## 2669 telephone may thu 548 1 999 0 nonexistent
## 2670 telephone may thu 760 2 999 0 nonexistent
## 2671 telephone may thu 244 2 999 0 nonexistent
## 2672 telephone may thu 328 4 999 0 nonexistent
## 2673 telephone may thu 171 2 999 0 nonexistent
## 2674 telephone may thu 17 10 999 0 nonexistent
## 2675 telephone may thu 301 4 999 0 nonexistent
## 2676 telephone may thu 267 5 999 0 nonexistent
## 2677 telephone may thu 475 2 999 0 nonexistent
## 2678 telephone may thu 487 4 999 0 nonexistent
## 2679 telephone may thu 126 2 999 0 nonexistent
## 2680 telephone may thu 114 1 999 0 nonexistent
## 2681 telephone may thu 196 2 999 0 nonexistent
## 2682 telephone may thu 365 1 999 0 nonexistent
## 2683 telephone may thu 192 3 999 0 nonexistent
## 2684 telephone may thu 244 2 999 0 nonexistent
## 2685 telephone may thu 118 4 999 0 nonexistent
## 2686 telephone may thu 160 1 999 0 nonexistent
## 2687 telephone may thu 56 13 999 0 nonexistent
## 2688 telephone may thu 430 2 999 0 nonexistent
## 2689 telephone may thu 242 6 999 0 nonexistent
## 2690 telephone may thu 809 3 999 0 nonexistent
## 2691 telephone may thu 317 7 999 0 nonexistent
## 2692 telephone may thu 7 7 999 0 nonexistent
## 2693 telephone may thu 493 2 999 0 nonexistent
## 2694 telephone may thu 381 7 999 0 nonexistent
## 2695 telephone may thu 112 2 999 0 nonexistent
## 2696 telephone may thu 523 2 999 0 nonexistent
## 2697 telephone may thu 309 2 999 0 nonexistent
## 2698 telephone may thu 184 2 999 0 nonexistent
## 2699 telephone may thu 850 6 999 0 nonexistent
## 2700 telephone may thu 420 2 999 0 nonexistent
## 2701 telephone may thu 118 4 999 0 nonexistent
## 2702 telephone may thu 71 3 999 0 nonexistent
## 2703 telephone may thu 314 7 999 0 nonexistent
## 2704 telephone may thu 196 4 999 0 nonexistent
## 2705 telephone may thu 151 2 999 0 nonexistent
## 2706 telephone may thu 516 9 999 0 nonexistent
## 2707 telephone may thu 855 4 999 0 nonexistent
## 2708 telephone may thu 78 4 999 0 nonexistent
## 2709 telephone may thu 875 5 999 0 nonexistent
## 2710 telephone may thu 124 2 999 0 nonexistent
## 2711 telephone may thu 24 16 999 0 nonexistent
## 2712 telephone may thu 190 6 999 0 nonexistent
## 2713 telephone may thu 53 3 999 0 nonexistent
## 2714 telephone may thu 284 2 999 0 nonexistent
## 2715 telephone may thu 262 4 999 0 nonexistent
## 2716 telephone may thu 263 4 999 0 nonexistent
## 2717 telephone may thu 214 4 999 0 nonexistent
## 2718 telephone may thu 88 3 999 0 nonexistent
## 2719 telephone may thu 255 12 999 0 nonexistent
## 2720 telephone may thu 202 4 999 0 nonexistent
## 2721 telephone may thu 438 5 999 0 nonexistent
## 2722 telephone may thu 426 6 999 0 nonexistent
## 2723 telephone may thu 302 8 999 0 nonexistent
## 2724 telephone may thu 213 2 999 0 nonexistent
## 2725 telephone may thu 214 4 999 0 nonexistent
## 2726 telephone may thu 90 3 999 0 nonexistent
## 2727 telephone may thu 448 4 999 0 nonexistent
## 2728 telephone may thu 70 6 999 0 nonexistent
## 2729 telephone may thu 347 4 999 0 nonexistent
## 2730 telephone may thu 320 3 999 0 nonexistent
## 2731 telephone may thu 175 2 999 0 nonexistent
## 2732 telephone may thu 222 11 999 0 nonexistent
## 2733 telephone may thu 734 5 999 0 nonexistent
## 2734 telephone may thu 177 3 999 0 nonexistent
## 2735 telephone may thu 543 12 999 0 nonexistent
## 2736 telephone may thu 374 5 999 0 nonexistent
## 2737 telephone may thu 241 2 999 0 nonexistent
## 2738 telephone may thu 137 2 999 0 nonexistent
## 2739 telephone may thu 297 1 999 0 nonexistent
## 2740 telephone may thu 377 4 999 0 nonexistent
## 2741 telephone may fri 84 2 999 0 nonexistent
## 2742 telephone may fri 122 2 999 0 nonexistent
## 2743 telephone may fri 135 3 999 0 nonexistent
## 2744 telephone may fri 95 3 999 0 nonexistent
## 2745 telephone may fri 248 3 999 0 nonexistent
## 2746 telephone may fri 28 4 999 0 nonexistent
## 2747 telephone may fri 371 2 999 0 nonexistent
## 2748 telephone may fri 329 3 999 0 nonexistent
## 2749 telephone may fri 247 1 999 0 nonexistent
## 2750 telephone may fri 343 1 999 0 nonexistent
## 2751 telephone may fri 266 6 999 0 nonexistent
## 2752 telephone may fri 137 1 999 0 nonexistent
## 2753 telephone may fri 206 4 999 0 nonexistent
## 2754 telephone may fri 69 15 999 0 nonexistent
## 2755 telephone may fri 228 1 999 0 nonexistent
## 2756 telephone may fri 29 1 999 0 nonexistent
## 2757 telephone may fri 601 1 999 0 nonexistent
## 2758 telephone may fri 73 1 999 0 nonexistent
## 2759 telephone may fri 230 3 999 0 nonexistent
## 2760 telephone may fri 456 1 999 0 nonexistent
## 2761 telephone may fri 75 1 999 0 nonexistent
## 2762 telephone may fri 225 1 999 0 nonexistent
## 2763 telephone may fri 387 1 999 0 nonexistent
## 2764 telephone may fri 286 3 999 0 nonexistent
## 2765 telephone may fri 448 2 999 0 nonexistent
## 2766 telephone may fri 223 3 999 0 nonexistent
## 2767 telephone may fri 136 1 999 0 nonexistent
## 2768 telephone may fri 93 1 999 0 nonexistent
## 2769 telephone may fri 178 1 999 0 nonexistent
## 2770 telephone may fri 150 1 999 0 nonexistent
## 2771 telephone may fri 137 1 999 0 nonexistent
## 2772 telephone may fri 656 2 999 0 nonexistent
## 2773 telephone may fri 88 6 999 0 nonexistent
## 2774 telephone may fri 228 2 999 0 nonexistent
## 2775 telephone may fri 283 1 999 0 nonexistent
## 2776 telephone may fri 104 1 999 0 nonexistent
## 2777 telephone may fri 103 1 999 0 nonexistent
## 2778 telephone may fri 213 1 999 0 nonexistent
## 2779 telephone may fri 122 1 999 0 nonexistent
## 2780 telephone may fri 114 2 999 0 nonexistent
## 2781 telephone may fri 216 1 999 0 nonexistent
## 2782 telephone may fri 250 1 999 0 nonexistent
## 2783 telephone may fri 91 1 999 0 nonexistent
## 2784 telephone may fri 159 1 999 0 nonexistent
## 2785 telephone may fri 147 1 999 0 nonexistent
## 2786 telephone may fri 37 1 999 0 nonexistent
## 2787 telephone may fri 356 2 999 0 nonexistent
## 2788 telephone may fri 248 1 999 0 nonexistent
## 2789 telephone may fri 242 7 999 0 nonexistent
## 2790 telephone may fri 134 3 999 0 nonexistent
## 2791 telephone may fri 346 1 999 0 nonexistent
## 2792 telephone may fri 370 1 999 0 nonexistent
## 2793 telephone may fri 261 1 999 0 nonexistent
## 2794 telephone may fri 63 1 999 0 nonexistent
## 2795 telephone may fri 84 1 999 0 nonexistent
## 2796 telephone may fri 167 1 999 0 nonexistent
## 2797 telephone may fri 25 1 999 0 nonexistent
## 2798 telephone may fri 244 1 999 0 nonexistent
## 2799 telephone may fri 140 1 999 0 nonexistent
## 2800 telephone may fri 165 1 999 0 nonexistent
## 2801 telephone may fri 122 1 999 0 nonexistent
## 2802 telephone may fri 130 2 999 0 nonexistent
## 2803 telephone may fri 345 1 999 0 nonexistent
## 2804 telephone may fri 42 2 999 0 nonexistent
## 2805 telephone may fri 277 5 999 0 nonexistent
## 2806 telephone may fri 214 1 999 0 nonexistent
## 2807 telephone may fri 140 1 999 0 nonexistent
## 2808 telephone may fri 140 1 999 0 nonexistent
## 2809 telephone may fri 96 2 999 0 nonexistent
## 2810 telephone may fri 225 4 999 0 nonexistent
## 2811 telephone may fri 260 1 999 0 nonexistent
## 2812 telephone may fri 754 1 999 0 nonexistent
## 2813 telephone may fri 192 1 999 0 nonexistent
## 2814 telephone may fri 76 3 999 0 nonexistent
## 2815 telephone may fri 24 1 999 0 nonexistent
## 2816 telephone may fri 171 2 999 0 nonexistent
## 2817 telephone may fri 42 8 999 0 nonexistent
## 2818 telephone may fri 343 1 999 0 nonexistent
## 2819 telephone may fri 111 1 999 0 nonexistent
## 2820 telephone may fri 77 1 999 0 nonexistent
## 2821 telephone may fri 268 6 999 0 nonexistent
## 2822 telephone may fri 217 2 999 0 nonexistent
## 2823 telephone may fri 241 1 999 0 nonexistent
## 2824 telephone may fri 47 1 999 0 nonexistent
## 2825 telephone may fri 196 1 999 0 nonexistent
## 2826 telephone may fri 601 1 999 0 nonexistent
## 2827 telephone may fri 178 2 999 0 nonexistent
## 2828 telephone may fri 362 22 999 0 nonexistent
## 2829 telephone may fri 410 1 999 0 nonexistent
## 2830 telephone may fri 108 2 999 0 nonexistent
## 2831 telephone may fri 172 4 999 0 nonexistent
## 2832 telephone may fri 184 2 999 0 nonexistent
## 2833 telephone may fri 359 1 999 0 nonexistent
## 2834 telephone may fri 169 1 999 0 nonexistent
## 2835 telephone may fri 241 1 999 0 nonexistent
## 2836 telephone may fri 22 4 999 0 nonexistent
## 2837 telephone may fri 326 1 999 0 nonexistent
## 2838 telephone may fri 196 3 999 0 nonexistent
## 2839 telephone may fri 270 1 999 0 nonexistent
## 2840 telephone may fri 679 17 999 0 nonexistent
## 2841 telephone may fri 184 1 999 0 nonexistent
## 2842 telephone may fri 102 1 999 0 nonexistent
## 2843 telephone may fri 33 1 999 0 nonexistent
## 2844 telephone may fri 27 2 999 0 nonexistent
## 2845 telephone may fri 230 1 999 0 nonexistent
## 2846 telephone may fri 322 2 999 0 nonexistent
## 2847 telephone may fri 187 1 999 0 nonexistent
## 2848 telephone may fri 124 1 999 0 nonexistent
## 2849 telephone may fri 107 2 999 0 nonexistent
## 2850 telephone may fri 379 1 999 0 nonexistent
## 2851 telephone may fri 95 1 999 0 nonexistent
## 2852 telephone may fri 42 3 999 0 nonexistent
## 2853 telephone may fri 197 1 999 0 nonexistent
## 2854 telephone may fri 320 2 999 0 nonexistent
## 2855 telephone may fri 223 1 999 0 nonexistent
## 2856 telephone may fri 230 1 999 0 nonexistent
## 2857 telephone may fri 489 2 999 0 nonexistent
## 2858 telephone may fri 98 1 999 0 nonexistent
## 2859 telephone may fri 38 3 999 0 nonexistent
## 2860 telephone may fri 335 1 999 0 nonexistent
## 2861 telephone may fri 161 1 999 0 nonexistent
## 2862 telephone may fri 410 3 999 0 nonexistent
## 2863 telephone may fri 280 1 999 0 nonexistent
## 2864 telephone may fri 374 2 999 0 nonexistent
## 2865 telephone may fri 193 8 999 0 nonexistent
## 2866 telephone may fri 166 2 999 0 nonexistent
## 2867 telephone may fri 258 2 999 0 nonexistent
## 2868 telephone may fri 136 2 999 0 nonexistent
## 2869 telephone may fri 299 2 999 0 nonexistent
## 2870 telephone may fri 381 2 999 0 nonexistent
## 2871 telephone may fri 412 1 999 0 nonexistent
## 2872 telephone may fri 376 2 999 0 nonexistent
## 2873 telephone may fri 393 2 999 0 nonexistent
## 2874 telephone may fri 56 3 999 0 nonexistent
## 2875 telephone may fri 112 4 999 0 nonexistent
## 2876 telephone may fri 155 3 999 0 nonexistent
## 2877 telephone may fri 703 4 999 0 nonexistent
## 2878 telephone may fri 141 2 999 0 nonexistent
## 2879 telephone may fri 475 2 999 0 nonexistent
## 2880 telephone may fri 121 2 999 0 nonexistent
## 2881 telephone may fri 471 2 999 0 nonexistent
## 2882 telephone may fri 177 4 999 0 nonexistent
## 2883 telephone may fri 344 2 999 0 nonexistent
## 2884 telephone may fri 404 1 999 0 nonexistent
## 2885 telephone may fri 287 4 999 0 nonexistent
## 2886 telephone may fri 329 1 999 0 nonexistent
## 2887 telephone may fri 433 1 999 0 nonexistent
## 2888 telephone may fri 216 1 999 0 nonexistent
## 2889 telephone may fri 323 2 999 0 nonexistent
## 2890 telephone may fri 132 11 999 0 nonexistent
## 2891 telephone may fri 199 4 999 0 nonexistent
## 2892 telephone may fri 221 2 999 0 nonexistent
## 2893 telephone may fri 200 2 999 0 nonexistent
## 2894 telephone may fri 80 2 999 0 nonexistent
## 2895 telephone may fri 123 3 999 0 nonexistent
## 2896 telephone may fri 461 2 999 0 nonexistent
## 2897 telephone may fri 213 14 999 0 nonexistent
## 2898 telephone may fri 193 11 999 0 nonexistent
## 2899 telephone may fri 428 1 999 0 nonexistent
## 2900 telephone may fri 291 1 999 0 nonexistent
## 2901 telephone may fri 136 1 999 0 nonexistent
## 2902 telephone may fri 124 1 999 0 nonexistent
## 2903 telephone may fri 214 4 999 0 nonexistent
## 2904 telephone may fri 718 1 999 0 nonexistent
## 2905 telephone may fri 94 1 999 0 nonexistent
## 2906 telephone may fri 74 1 999 0 nonexistent
## 2907 telephone may fri 107 1 999 0 nonexistent
## 2908 telephone may fri 97 3 999 0 nonexistent
## 2909 telephone may fri 51 1 999 0 nonexistent
## 2910 telephone may fri 109 1 999 0 nonexistent
## 2911 telephone may fri 225 1 999 0 nonexistent
## 2912 telephone may fri 378 1 999 0 nonexistent
## 2913 telephone may fri 217 1 999 0 nonexistent
## 2914 telephone may fri 467 1 999 0 nonexistent
## 2915 telephone may fri 386 1 999 0 nonexistent
## 2916 telephone may fri 290 1 999 0 nonexistent
## 2917 telephone may fri 764 7 999 0 nonexistent
## 2918 telephone may fri 16 23 999 0 nonexistent
## 2919 telephone may fri 148 18 999 0 nonexistent
## 2920 telephone may fri 242 3 999 0 nonexistent
## 2921 telephone may fri 269 2 999 0 nonexistent
## 2922 telephone may fri 208 2 999 0 nonexistent
## 2923 telephone may fri 370 2 999 0 nonexistent
## 2924 telephone may fri 274 8 999 0 nonexistent
## 2925 telephone may fri 326 1 999 0 nonexistent
## 2926 telephone may fri 337 2 999 0 nonexistent
## 2927 telephone may fri 104 1 999 0 nonexistent
## 2928 telephone may fri 353 4 999 0 nonexistent
## 2929 telephone may fri 698 9 999 0 nonexistent
## 2930 telephone may fri 180 1 999 0 nonexistent
## 2931 telephone may fri 257 2 999 0 nonexistent
## 2932 telephone may fri 467 1 999 0 nonexistent
## 2933 telephone may fri 233 1 999 0 nonexistent
## 2934 telephone may fri 218 2 999 0 nonexistent
## 2935 telephone may fri 40 5 999 0 nonexistent
## 2936 telephone may fri 698 1 999 0 nonexistent
## 2937 telephone may fri 76 17 999 0 nonexistent
## 2938 telephone may fri 355 2 999 0 nonexistent
## 2939 telephone may fri 557 4 999 0 nonexistent
## 2940 telephone may fri 148 2 999 0 nonexistent
## 2941 telephone may fri 128 2 999 0 nonexistent
## 2942 telephone may fri 130 3 999 0 nonexistent
## 2943 telephone may fri 280 2 999 0 nonexistent
## 2944 telephone may fri 152 2 999 0 nonexistent
## 2945 telephone may fri 283 2 999 0 nonexistent
## 2946 telephone may fri 523 3 999 0 nonexistent
## 2947 telephone may fri 316 7 999 0 nonexistent
## 2948 telephone may fri 1128 3 999 0 nonexistent
## 2949 telephone may fri 171 4 999 0 nonexistent
## 2950 telephone may fri 174 15 999 0 nonexistent
## 2951 telephone may fri 71 11 999 0 nonexistent
## 2952 telephone may fri 221 2 999 0 nonexistent
## 2953 telephone may fri 234 2 999 0 nonexistent
## 2954 telephone may fri 138 2 999 0 nonexistent
## 2955 telephone may fri 339 5 999 0 nonexistent
## 2956 telephone may fri 509 2 999 0 nonexistent
## 2957 telephone may fri 254 16 999 0 nonexistent
## 2958 telephone may fri 344 4 999 0 nonexistent
## 2959 telephone may fri 251 4 999 0 nonexistent
## 2960 telephone may fri 312 3 999 0 nonexistent
## 2961 telephone may fri 292 8 999 0 nonexistent
## 2962 telephone may fri 279 2 999 0 nonexistent
## 2963 telephone may fri 293 3 999 0 nonexistent
## 2964 telephone may fri 198 5 999 0 nonexistent
## 2965 telephone may fri 1408 2 999 0 nonexistent
## 2966 telephone may fri 827 2 999 0 nonexistent
## 2967 telephone may fri 303 5 999 0 nonexistent
## 2968 telephone may fri 588 3 999 0 nonexistent
## 2969 telephone may fri 680 3 999 0 nonexistent
## 2970 telephone may fri 21 3 999 0 nonexistent
## 2971 telephone may fri 251 3 999 0 nonexistent
## 2972 telephone may fri 81 6 999 0 nonexistent
## 2973 telephone may fri 4 2 999 0 nonexistent
## 2974 telephone may fri 283 3 999 0 nonexistent
## 2975 telephone may fri 248 2 999 0 nonexistent
## 2976 telephone may fri 427 3 999 0 nonexistent
## 2977 telephone may fri 148 9 999 0 nonexistent
## 2978 telephone may fri 408 10 999 0 nonexistent
## 2979 telephone may fri 236 2 999 0 nonexistent
## 2980 telephone may fri 428 2 999 0 nonexistent
## 2981 telephone may fri 32 3 999 0 nonexistent
## 2982 telephone may fri 522 5 999 0 nonexistent
## 2983 telephone may fri 165 4 999 0 nonexistent
## 2984 telephone may fri 730 2 999 0 nonexistent
## 2985 telephone may fri 167 2 999 0 nonexistent
## 2986 telephone may fri 1023 4 999 0 nonexistent
## 2987 telephone may fri 469 2 999 0 nonexistent
## 2988 telephone may fri 385 7 999 0 nonexistent
## 2989 telephone may fri 169 3 999 0 nonexistent
## 2990 telephone may fri 409 3 999 0 nonexistent
## 2991 telephone may fri 165 6 999 0 nonexistent
## 2992 telephone may fri 437 2 999 0 nonexistent
## 2993 telephone may fri 89 2 999 0 nonexistent
## 2994 telephone may fri 261 6 999 0 nonexistent
## 2995 telephone may fri 294 4 999 0 nonexistent
## 2996 telephone may fri 230 2 999 0 nonexistent
## 2997 telephone may fri 192 20 999 0 nonexistent
## 2998 telephone may fri 65 3 999 0 nonexistent
## 2999 telephone may fri 239 2 999 0 nonexistent
## 3000 telephone may fri 196 6 999 0 nonexistent
## 3001 telephone may fri 243 2 999 0 nonexistent
## 3002 telephone may fri 393 2 999 0 nonexistent
## 3003 telephone may fri 512 6 999 0 nonexistent
## 3004 telephone may fri 218 3 999 0 nonexistent
## 3005 telephone may fri 215 3 999 0 nonexistent
## 3006 telephone may fri 186 5 999 0 nonexistent
## 3007 telephone may fri 299 4 999 0 nonexistent
## 3008 telephone may fri 103 7 999 0 nonexistent
## 3009 telephone may fri 297 4 999 0 nonexistent
## 3010 telephone may fri 90 7 999 0 nonexistent
## 3011 telephone may fri 59 5 999 0 nonexistent
## 3012 telephone may fri 102 4 999 0 nonexistent
## 3013 telephone may fri 1110 3 999 0 nonexistent
## 3014 telephone may fri 1187 4 999 0 nonexistent
## 3015 telephone may mon 93 4 999 0 nonexistent
## 3016 telephone may mon 119 2 999 0 nonexistent
## 3017 telephone may mon 65 3 999 0 nonexistent
## 3018 telephone may mon 79 19 999 0 nonexistent
## 3019 telephone may mon 145 4 999 0 nonexistent
## 3020 telephone may mon 39 6 999 0 nonexistent
## 3021 telephone may mon 311 2 999 0 nonexistent
## 3022 telephone may mon 179 4 999 0 nonexistent
## 3023 telephone may mon 62 2 999 0 nonexistent
## 3024 telephone may mon 115 2 999 0 nonexistent
## 3025 telephone may mon 134 2 999 0 nonexistent
## 3026 telephone may mon 594 2 999 0 nonexistent
## 3027 telephone may mon 92 2 999 0 nonexistent
## 3028 telephone may mon 19 5 999 0 nonexistent
## 3029 telephone may mon 501 3 999 0 nonexistent
## 3030 telephone may mon 114 2 999 0 nonexistent
## 3031 telephone may mon 221 2 999 0 nonexistent
## 3032 telephone may mon 219 2 999 0 nonexistent
## 3033 telephone may mon 221 4 999 0 nonexistent
## 3034 telephone may mon 374 6 999 0 nonexistent
## 3035 telephone may mon 123 1 999 0 nonexistent
## 3036 telephone may mon 166 1 999 0 nonexistent
## 3037 telephone may mon 37 1 999 0 nonexistent
## 3038 telephone may mon 35 1 999 0 nonexistent
## 3039 telephone may mon 88 5 999 0 nonexistent
## 3040 telephone may mon 77 2 999 0 nonexistent
## 3041 telephone may mon 312 1 999 0 nonexistent
## 3042 telephone may mon 134 3 999 0 nonexistent
## 3043 telephone may mon 61 4 999 0 nonexistent
## 3044 telephone may mon 258 1 999 0 nonexistent
## 3045 telephone may mon 153 1 999 0 nonexistent
## 3046 telephone may mon 131 1 999 0 nonexistent
## 3047 telephone may mon 219 1 999 0 nonexistent
## 3048 telephone may mon 468 1 999 0 nonexistent
## 3049 telephone may mon 326 2 999 0 nonexistent
## 3050 telephone may mon 412 1 999 0 nonexistent
## 3051 telephone may mon 579 1 999 0 nonexistent
## 3052 telephone may mon 277 3 999 0 nonexistent
## 3053 telephone may mon 316 2 999 0 nonexistent
## 3054 telephone may mon 380 1 999 0 nonexistent
## 3055 telephone may mon 169 1 999 0 nonexistent
## 3056 telephone may mon 122 6 999 0 nonexistent
## 3057 telephone may mon 83 4 999 0 nonexistent
## 3058 telephone may mon 318 1 999 0 nonexistent
## 3059 telephone may mon 29 3 999 0 nonexistent
## 3060 telephone may mon 218 1 999 0 nonexistent
## 3061 telephone may mon 130 2 999 0 nonexistent
## 3062 telephone may mon 429 1 999 0 nonexistent
## 3063 telephone may mon 27 1 999 0 nonexistent
## 3064 telephone may mon 343 2 999 0 nonexistent
## 3065 telephone may mon 167 3 999 0 nonexistent
## 3066 telephone may mon 89 1 999 0 nonexistent
## 3067 telephone may mon 289 1 999 0 nonexistent
## 3068 telephone may mon 156 1 999 0 nonexistent
## 3069 telephone may mon 351 1 999 0 nonexistent
## 3070 telephone may mon 198 1 999 0 nonexistent
## 3071 telephone may mon 165 1 999 0 nonexistent
## 3072 telephone may mon 25 1 999 0 nonexistent
## 3073 telephone may mon 134 2 999 0 nonexistent
## 3074 telephone may mon 298 1 999 0 nonexistent
## 3075 telephone may mon 188 2 999 0 nonexistent
## 3076 telephone may mon 201 1 999 0 nonexistent
## 3077 telephone may mon 206 1 999 0 nonexistent
## 3078 telephone may mon 68 1 999 0 nonexistent
## 3079 telephone may mon 82 3 999 0 nonexistent
## 3080 telephone may mon 94 2 999 0 nonexistent
## 3081 telephone may mon 97 2 999 0 nonexistent
## 3082 telephone may mon 138 1 999 0 nonexistent
## 3083 telephone may mon 285 2 999 0 nonexistent
## 3084 telephone may mon 267 1 999 0 nonexistent
## 3085 telephone may mon 382 2 999 0 nonexistent
## 3086 telephone may mon 55 2 999 0 nonexistent
## 3087 telephone may mon 18 1 999 0 nonexistent
## 3088 telephone may mon 234 1 999 0 nonexistent
## 3089 telephone may mon 792 4 999 0 nonexistent
## 3090 telephone may mon 95 1 999 0 nonexistent
## 3091 telephone may mon 798 1 999 0 nonexistent
## 3092 telephone may mon 84 12 999 0 nonexistent
## 3093 telephone may mon 100 3 999 0 nonexistent
## 3094 telephone may mon 143 1 999 0 nonexistent
## 3095 telephone may mon 23 1 999 0 nonexistent
## 3096 telephone may mon 73 1 999 0 nonexistent
## 3097 telephone may mon 31 1 999 0 nonexistent
## 3098 telephone may mon 182 2 999 0 nonexistent
## 3099 telephone may mon 190 1 999 0 nonexistent
## 3100 telephone may mon 351 1 999 0 nonexistent
## 3101 telephone may mon 237 1 999 0 nonexistent
## 3102 telephone may mon 529 3 999 0 nonexistent
## 3103 telephone may mon 36 1 999 0 nonexistent
## 3104 telephone may mon 122 2 999 0 nonexistent
## 3105 telephone may mon 198 1 999 0 nonexistent
## 3106 telephone may mon 67 1 999 0 nonexistent
## 3107 telephone may mon 496 3 999 0 nonexistent
## 3108 telephone may mon 114 2 999 0 nonexistent
## 3109 telephone may mon 156 5 999 0 nonexistent
## 3110 telephone may mon 211 2 999 0 nonexistent
## 3111 telephone may mon 265 1 999 0 nonexistent
## 3112 telephone may mon 287 1 999 0 nonexistent
## 3113 telephone may mon 68 2 999 0 nonexistent
## 3114 telephone may mon 167 4 999 0 nonexistent
## 3115 telephone may mon 336 1 999 0 nonexistent
## 3116 telephone may mon 202 1 999 0 nonexistent
## 3117 telephone may mon 228 1 999 0 nonexistent
## 3118 telephone may mon 192 1 999 0 nonexistent
## 3119 telephone may mon 260 1 999 0 nonexistent
## 3120 telephone may mon 387 1 999 0 nonexistent
## 3121 telephone may mon 70 1 999 0 nonexistent
## 3122 telephone may mon 272 1 999 0 nonexistent
## 3123 telephone may mon 35 3 999 0 nonexistent
## 3124 telephone may mon 257 1 999 0 nonexistent
## 3125 telephone may mon 36 2 999 0 nonexistent
## 3126 telephone may mon 105 2 999 0 nonexistent
## 3127 telephone may mon 260 9 999 0 nonexistent
## 3128 telephone may mon 197 4 999 0 nonexistent
## 3129 telephone may mon 174 2 999 0 nonexistent
## 3130 telephone may mon 144 2 999 0 nonexistent
## 3131 telephone may mon 136 2 999 0 nonexistent
## 3132 telephone may mon 546 12 999 0 nonexistent
## 3133 telephone may mon 49 2 999 0 nonexistent
## 3134 telephone may mon 335 4 999 0 nonexistent
## 3135 telephone may mon 105 1 999 0 nonexistent
## 3136 telephone may mon 1203 3 999 0 nonexistent
## 3137 telephone may mon 258 1 999 0 nonexistent
## 3138 telephone may mon 199 1 999 0 nonexistent
## 3139 telephone may mon 123 1 999 0 nonexistent
## 3140 telephone may mon 201 14 999 0 nonexistent
## 3141 telephone may mon 193 3 999 0 nonexistent
## 3142 telephone may mon 159 3 999 0 nonexistent
## 3143 telephone may mon 166 3 999 0 nonexistent
## 3144 telephone may mon 480 1 999 0 nonexistent
## 3145 telephone may mon 149 4 999 0 nonexistent
## 3146 telephone may mon 396 3 999 0 nonexistent
## 3147 telephone may mon 124 3 999 0 nonexistent
## 3148 telephone may mon 13 1 999 0 nonexistent
## 3149 telephone may mon 162 1 999 0 nonexistent
## 3150 telephone may mon 723 1 999 0 nonexistent
## 3151 telephone may mon 89 1 999 0 nonexistent
## 3152 telephone may mon 257 2 999 0 nonexistent
## 3153 telephone may mon 361 2 999 0 nonexistent
## 3154 telephone may mon 314 1 999 0 nonexistent
## 3155 telephone may mon 83 1 999 0 nonexistent
## 3156 telephone may mon 215 1 999 0 nonexistent
## 3157 telephone may mon 183 7 999 0 nonexistent
## 3158 telephone may mon 70 1 999 0 nonexistent
## 3159 telephone may mon 19 1 999 0 nonexistent
## 3160 telephone may mon 346 1 999 0 nonexistent
## 3161 telephone may mon 133 1 999 0 nonexistent
## 3162 telephone may mon 193 6 999 0 nonexistent
## 3163 telephone may mon 181 1 999 0 nonexistent
## 3164 telephone may mon 513 1 999 0 nonexistent
## 3165 telephone may mon 109 2 999 0 nonexistent
## 3166 telephone may mon 263 1 999 0 nonexistent
## 3167 telephone may mon 333 1 999 0 nonexistent
## 3168 telephone may mon 191 4 999 0 nonexistent
## 3169 telephone may mon 180 1 999 0 nonexistent
## 3170 telephone may mon 446 3 999 0 nonexistent
## 3171 telephone may mon 107 2 999 0 nonexistent
## 3172 telephone may mon 335 3 999 0 nonexistent
## 3173 telephone may mon 120 3 999 0 nonexistent
## 3174 telephone may mon 219 2 999 0 nonexistent
## 3175 telephone may mon 148 1 999 0 nonexistent
## 3176 telephone may mon 400 2 999 0 nonexistent
## 3177 telephone may mon 503 2 999 0 nonexistent
## 3178 telephone may mon 125 5 999 0 nonexistent
## 3179 telephone may mon 329 1 999 0 nonexistent
## 3180 telephone may mon 194 3 999 0 nonexistent
## 3181 telephone may mon 7 1 999 0 nonexistent
## 3182 telephone may mon 53 1 999 0 nonexistent
## 3183 telephone may mon 261 56 999 0 nonexistent
## 3184 telephone may mon 100 1 999 0 nonexistent
## 3185 telephone may mon 104 1 999 0 nonexistent
## 3186 telephone may mon 44 39 999 0 nonexistent
## 3187 telephone may mon 207 3 999 0 nonexistent
## 3188 telephone may mon 401 2 999 0 nonexistent
## 3189 telephone may mon 178 5 999 0 nonexistent
## 3190 telephone may mon 53 5 999 0 nonexistent
## 3191 telephone may mon 349 2 999 0 nonexistent
## 3192 telephone may mon 34 9 999 0 nonexistent
## 3193 telephone may mon 48 3 999 0 nonexistent
## 3194 telephone may mon 182 11 999 0 nonexistent
## 3195 telephone may mon 457 5 999 0 nonexistent
## 3196 telephone may mon 193 1 999 0 nonexistent
## 3197 telephone may mon 142 3 999 0 nonexistent
## 3198 telephone may mon 123 2 999 0 nonexistent
## 3199 telephone may mon 65 3 999 0 nonexistent
## 3200 telephone may mon 100 2 999 0 nonexistent
## 3201 telephone may mon 403 2 999 0 nonexistent
## 3202 telephone may mon 229 3 999 0 nonexistent
## 3203 telephone may mon 445 2 999 0 nonexistent
## 3204 telephone may mon 206 4 999 0 nonexistent
## 3205 telephone may mon 183 2 999 0 nonexistent
## 3206 telephone may mon 140 2 999 0 nonexistent
## 3207 telephone may mon 134 3 999 0 nonexistent
## 3208 telephone may mon 88 35 999 0 nonexistent
## 3209 telephone may mon 234 13 999 0 nonexistent
## 3210 telephone may mon 394 2 999 0 nonexistent
## 3211 telephone may mon 408 2 999 0 nonexistent
## 3212 telephone may mon 114 2 999 0 nonexistent
## 3213 telephone may mon 243 6 999 0 nonexistent
## 3214 telephone may mon 180 6 999 0 nonexistent
## 3215 telephone may mon 324 2 999 0 nonexistent
## 3216 telephone may mon 205 3 999 0 nonexistent
## 3217 telephone may mon 194 2 999 0 nonexistent
## 3218 telephone may mon 165 5 999 0 nonexistent
## 3219 telephone may mon 160 2 999 0 nonexistent
## 3220 telephone may mon 492 6 999 0 nonexistent
## 3221 telephone may mon 187 3 999 0 nonexistent
## 3222 telephone may mon 197 4 999 0 nonexistent
## 3223 telephone may mon 95 5 999 0 nonexistent
## 3224 telephone may mon 159 3 999 0 nonexistent
## 3225 telephone may mon 260 3 999 0 nonexistent
## 3226 telephone may mon 109 2 999 0 nonexistent
## 3227 telephone may mon 158 5 999 0 nonexistent
## 3228 telephone may mon 162 10 999 0 nonexistent
## 3229 telephone may mon 173 5 999 0 nonexistent
## 3230 telephone may mon 73 7 999 0 nonexistent
## 3231 telephone may mon 220 3 999 0 nonexistent
## 3232 telephone may mon 110 2 999 0 nonexistent
## 3233 telephone may mon 112 7 999 0 nonexistent
## 3234 telephone may mon 168 4 999 0 nonexistent
## 3235 telephone may mon 283 3 999 0 nonexistent
## 3236 telephone may mon 138 8 999 0 nonexistent
## 3237 telephone may mon 374 6 999 0 nonexistent
## 3238 telephone may mon 353 4 999 0 nonexistent
## 3239 telephone may mon 332 10 999 0 nonexistent
## 3240 telephone may mon 179 9 999 0 nonexistent
## 3241 telephone may mon 396 9 999 0 nonexistent
## 3242 telephone may mon 360 2 999 0 nonexistent
## 3243 telephone may mon 175 2 999 0 nonexistent
## 3244 telephone may mon 57 7 999 0 nonexistent
## 3245 telephone may mon 105 11 999 0 nonexistent
## 3246 telephone may mon 886 3 999 0 nonexistent
## 3247 telephone may mon 182 8 999 0 nonexistent
## 3248 telephone may mon 21 11 999 0 nonexistent
## 3249 telephone may mon 298 2 999 0 nonexistent
## 3250 telephone may mon 195 4 999 0 nonexistent
## 3251 telephone may mon 179 2 999 0 nonexistent
## 3252 telephone may mon 58 10 999 0 nonexistent
## 3253 telephone may mon 500 3 999 0 nonexistent
## 3254 telephone may mon 66 9 999 0 nonexistent
## 3255 telephone may mon 328 10 999 0 nonexistent
## 3256 telephone may mon 3078 4 999 0 nonexistent
## 3257 telephone may tue 21 7 999 0 nonexistent
## 3258 telephone may tue 150 1 999 0 nonexistent
## 3259 telephone may tue 148 5 999 0 nonexistent
## 3260 telephone may tue 102 1 999 0 nonexistent
## 3261 telephone may tue 91 1 999 0 nonexistent
## 3262 telephone may tue 201 1 999 0 nonexistent
## 3263 telephone may tue 70 1 999 0 nonexistent
## 3264 telephone may tue 19 15 999 0 nonexistent
## 3265 telephone may tue 82 9 999 0 nonexistent
## 3266 telephone may tue 59 1 999 0 nonexistent
## 3267 telephone may tue 365 4 999 0 nonexistent
## 3268 telephone may tue 257 1 999 0 nonexistent
## 3269 telephone may tue 280 1 999 0 nonexistent
## 3270 telephone may tue 249 1 999 0 nonexistent
## 3271 telephone may tue 140 1 999 0 nonexistent
## 3272 telephone may tue 20 12 999 0 nonexistent
## 3273 telephone may tue 686 1 999 0 nonexistent
## 3274 telephone may tue 107 2 999 0 nonexistent
## 3275 telephone may tue 172 1 999 0 nonexistent
## 3276 telephone may tue 19 1 999 0 nonexistent
## 3277 telephone may tue 125 4 999 0 nonexistent
## 3278 telephone may tue 216 1 999 0 nonexistent
## 3279 telephone may tue 109 1 999 0 nonexistent
## 3280 telephone may tue 81 1 999 0 nonexistent
## 3281 telephone may tue 146 1 999 0 nonexistent
## 3282 telephone may tue 83 1 999 0 nonexistent
## 3283 telephone may tue 191 1 999 0 nonexistent
## 3284 telephone may tue 171 1 999 0 nonexistent
## 3285 telephone may tue 133 1 999 0 nonexistent
## 3286 telephone may tue 656 1 999 0 nonexistent
## 3287 telephone may tue 202 6 999 0 nonexistent
## 3288 telephone may tue 196 1 999 0 nonexistent
## 3289 telephone may tue 186 4 999 0 nonexistent
## 3290 telephone may tue 532 1 999 0 nonexistent
## 3291 telephone may tue 97 2 999 0 nonexistent
## 3292 telephone may tue 216 1 999 0 nonexistent
## 3293 telephone may tue 243 1 999 0 nonexistent
## 3294 telephone may tue 98 1 999 0 nonexistent
## 3295 telephone may tue 81 1 999 0 nonexistent
## 3296 telephone may tue 190 1 999 0 nonexistent
## 3297 telephone may tue 142 3 999 0 nonexistent
## 3298 telephone may tue 775 1 999 0 nonexistent
## 3299 telephone may tue 335 1 999 0 nonexistent
## 3300 telephone may tue 168 1 999 0 nonexistent
## 3301 telephone may tue 68 2 999 0 nonexistent
## 3302 telephone may tue 217 1 999 0 nonexistent
## 3303 telephone may tue 68 1 999 0 nonexistent
## 3304 telephone may tue 119 1 999 0 nonexistent
## 3305 telephone may tue 160 1 999 0 nonexistent
## 3306 telephone may tue 294 10 999 0 nonexistent
## 3307 telephone may tue 57 1 999 0 nonexistent
## 3308 telephone may tue 297 2 999 0 nonexistent
## 3309 telephone may tue 90 1 999 0 nonexistent
## 3310 telephone may tue 600 1 999 0 nonexistent
## 3311 telephone may tue 38 1 999 0 nonexistent
## 3312 telephone may tue 217 1 999 0 nonexistent
## 3313 telephone may tue 142 1 999 0 nonexistent
## 3314 telephone may tue 26 1 999 0 nonexistent
## 3315 telephone may tue 369 1 999 0 nonexistent
## 3316 telephone may tue 29 1 999 0 nonexistent
## 3317 telephone may tue 24 1 999 0 nonexistent
## 3318 telephone may tue 793 2 999 0 nonexistent
## 3319 telephone may tue 203 1 999 0 nonexistent
## 3320 telephone may tue 166 1 999 0 nonexistent
## 3321 telephone may tue 167 1 999 0 nonexistent
## 3322 telephone may tue 37 1 999 0 nonexistent
## 3323 telephone may tue 154 1 999 0 nonexistent
## 3324 telephone may tue 127 1 999 0 nonexistent
## 3325 telephone may tue 264 1 999 0 nonexistent
## 3326 telephone may tue 231 1 999 0 nonexistent
## 3327 telephone may tue 320 1 999 0 nonexistent
## 3328 telephone may tue 618 1 999 0 nonexistent
## 3329 telephone may tue 101 1 999 0 nonexistent
## 3330 telephone may tue 121 3 999 0 nonexistent
## 3331 telephone may tue 85 1 999 0 nonexistent
## 3332 telephone may tue 171 1 999 0 nonexistent
## 3333 telephone may tue 224 1 999 0 nonexistent
## 3334 telephone may tue 171 1 999 0 nonexistent
## 3335 telephone may tue 67 1 999 0 nonexistent
## 3336 telephone may tue 186 1 999 0 nonexistent
## 3337 telephone may tue 269 1 999 0 nonexistent
## 3338 telephone may tue 115 1 999 0 nonexistent
## 3339 telephone may tue 273 1 999 0 nonexistent
## 3340 telephone may tue 65 1 999 0 nonexistent
## 3341 telephone may tue 434 1 999 0 nonexistent
## 3342 telephone may tue 148 1 999 0 nonexistent
## 3343 telephone may tue 507 1 999 0 nonexistent
## 3344 telephone may tue 253 1 999 0 nonexistent
## 3345 telephone may tue 27 1 999 0 nonexistent
## 3346 telephone may tue 116 1 999 0 nonexistent
## 3347 telephone may tue 124 1 999 0 nonexistent
## 3348 telephone may tue 233 2 999 0 nonexistent
## 3349 telephone may tue 380 1 999 0 nonexistent
## 3350 telephone may tue 90 1 999 0 nonexistent
## 3351 telephone may tue 258 1 999 0 nonexistent
## 3352 telephone may tue 92 2 999 0 nonexistent
## 3353 telephone may tue 423 1 999 0 nonexistent
## 3354 telephone may tue 215 2 999 0 nonexistent
## 3355 telephone may tue 209 1 999 0 nonexistent
## 3356 telephone may tue 181 1 999 0 nonexistent
## 3357 telephone may tue 201 1 999 0 nonexistent
## 3358 telephone may tue 360 6 999 0 nonexistent
## 3359 telephone may tue 155 1 999 0 nonexistent
## 3360 telephone may tue 447 1 999 0 nonexistent
## 3361 telephone may tue 184 1 999 0 nonexistent
## 3362 telephone may tue 121 1 999 0 nonexistent
## 3363 telephone may tue 138 4 999 0 nonexistent
## 3364 telephone may tue 207 6 999 0 nonexistent
## 3365 telephone may tue 309 1 999 0 nonexistent
## 3366 telephone may tue 134 1 999 0 nonexistent
## 3367 telephone may tue 70 2 999 0 nonexistent
## 3368 telephone may tue 774 1 999 0 nonexistent
## 3369 telephone may tue 62 1 999 0 nonexistent
## 3370 telephone may tue 247 2 999 0 nonexistent
## 3371 telephone may tue 277 2 999 0 nonexistent
## 3372 telephone may tue 126 3 999 0 nonexistent
## 3373 telephone may tue 378 1 999 0 nonexistent
## 3374 telephone may tue 83 1 999 0 nonexistent
## 3375 telephone may tue 71 3 999 0 nonexistent
## 3376 telephone may tue 208 2 999 0 nonexistent
## 3377 telephone may tue 199 4 999 0 nonexistent
## 3378 telephone may tue 47 1 999 0 nonexistent
## 3379 telephone may tue 244 1 999 0 nonexistent
## 3380 telephone may tue 311 1 999 0 nonexistent
## 3381 telephone may tue 177 1 999 0 nonexistent
## 3382 telephone may tue 217 2 999 0 nonexistent
## 3383 telephone may tue 189 1 999 0 nonexistent
## 3384 telephone may tue 152 1 999 0 nonexistent
## 3385 telephone may tue 151 1 999 0 nonexistent
## 3386 telephone may tue 212 1 999 0 nonexistent
## 3387 telephone may tue 184 1 999 0 nonexistent
## 3388 telephone may tue 473 2 999 0 nonexistent
## 3389 telephone may tue 485 1 999 0 nonexistent
## 3390 telephone may tue 172 1 999 0 nonexistent
## 3391 telephone may tue 77 2 999 0 nonexistent
## 3392 telephone may tue 396 1 999 0 nonexistent
## 3393 telephone may tue 88 2 999 0 nonexistent
## 3394 telephone may tue 129 2 999 0 nonexistent
## 3395 telephone may tue 346 2 999 0 nonexistent
## 3396 telephone may tue 474 2 999 0 nonexistent
## 3397 telephone may tue 268 2 999 0 nonexistent
## 3398 telephone may tue 222 2 999 0 nonexistent
## 3399 telephone may tue 1313 2 999 0 nonexistent
## 3400 telephone may tue 72 5 999 0 nonexistent
## 3401 telephone may tue 309 1 999 0 nonexistent
## 3402 telephone may tue 205 2 999 0 nonexistent
## 3403 telephone may tue 381 2 999 0 nonexistent
## 3404 telephone may tue 355 1 999 0 nonexistent
## 3405 telephone may tue 256 1 999 0 nonexistent
## 3406 telephone may tue 211 2 999 0 nonexistent
## 3407 telephone may tue 211 1 999 0 nonexistent
## 3408 telephone may tue 66 12 999 0 nonexistent
## 3409 telephone may tue 1452 10 999 0 nonexistent
## 3410 telephone may tue 487 2 999 0 nonexistent
## 3411 telephone may tue 120 1 999 0 nonexistent
## 3412 telephone may tue 464 2 999 0 nonexistent
## 3413 telephone may tue 547 7 999 0 nonexistent
## 3414 telephone may tue 152 2 999 0 nonexistent
## 3415 telephone may tue 522 1 999 0 nonexistent
## 3416 telephone may tue 227 9 999 0 nonexistent
## 3417 telephone may tue 129 2 999 0 nonexistent
## 3418 telephone may tue 1376 2 999 0 nonexistent
## 3419 telephone may tue 37 1 999 0 nonexistent
## 3420 telephone may tue 360 1 999 0 nonexistent
## 3421 telephone may tue 51 1 999 0 nonexistent
## 3422 telephone may tue 834 6 999 0 nonexistent
## 3423 telephone may tue 106 1 999 0 nonexistent
## 3424 telephone may tue 535 1 999 0 nonexistent
## 3425 telephone may tue 182 1 999 0 nonexistent
## 3426 telephone may tue 281 1 999 0 nonexistent
## 3427 telephone may tue 150 1 999 0 nonexistent
## 3428 telephone may tue 359 2 999 0 nonexistent
## 3429 telephone may tue 332 2 999 0 nonexistent
## 3430 telephone may tue 592 1 999 0 nonexistent
## 3431 telephone may tue 166 1 999 0 nonexistent
## 3432 telephone may tue 245 1 999 0 nonexistent
## 3433 telephone may tue 138 8 999 0 nonexistent
## 3434 telephone may tue 369 1 999 0 nonexistent
## 3435 telephone may tue 158 1 999 0 nonexistent
## 3436 telephone may tue 592 1 999 0 nonexistent
## 3437 telephone may tue 412 1 999 0 nonexistent
## 3438 telephone may tue 137 2 999 0 nonexistent
## 3439 telephone may tue 266 1 999 0 nonexistent
## 3440 telephone may tue 335 1 999 0 nonexistent
## 3441 telephone may tue 235 2 999 0 nonexistent
## 3442 telephone may tue 170 2 999 0 nonexistent
## 3443 telephone may tue 272 2 999 0 nonexistent
## 3444 telephone may tue 1042 17 999 0 nonexistent
## 3445 telephone may tue 271 1 999 0 nonexistent
## 3446 telephone may tue 107 1 999 0 nonexistent
## 3447 telephone may tue 78 2 999 0 nonexistent
## 3448 telephone may tue 383 1 999 0 nonexistent
## 3449 telephone may tue 185 1 999 0 nonexistent
## 3450 telephone may tue 254 1 999 0 nonexistent
## 3451 telephone may tue 107 1 999 0 nonexistent
## 3452 telephone may tue 157 1 999 0 nonexistent
## 3453 telephone may tue 85 2 999 0 nonexistent
## 3454 telephone may tue 249 3 999 0 nonexistent
## 3455 telephone may tue 163 2 999 0 nonexistent
## 3456 telephone may tue 112 2 999 0 nonexistent
## 3457 telephone may tue 148 1 999 0 nonexistent
## 3458 telephone may tue 145 2 999 0 nonexistent
## 3459 telephone may tue 415 2 999 0 nonexistent
## 3460 telephone may tue 742 2 999 0 nonexistent
## 3461 telephone may tue 129 1 999 0 nonexistent
## 3462 telephone may tue 37 9 999 0 nonexistent
## 3463 telephone may tue 120 1 999 0 nonexistent
## 3464 telephone may tue 185 2 999 0 nonexistent
## 3465 telephone may tue 204 1 999 0 nonexistent
## 3466 telephone may tue 74 2 999 0 nonexistent
## 3467 telephone may tue 190 2 999 0 nonexistent
## 3468 telephone may tue 325 3 999 0 nonexistent
## 3469 telephone may tue 148 2 999 0 nonexistent
## 3470 telephone may tue 38 8 999 0 nonexistent
## 3471 telephone may tue 625 2 999 0 nonexistent
## 3472 telephone may tue 175 3 999 0 nonexistent
## 3473 telephone may tue 97 8 999 0 nonexistent
## 3474 telephone may tue 282 2 999 0 nonexistent
## 3475 telephone may tue 304 2 999 0 nonexistent
## 3476 telephone may tue 438 2 999 0 nonexistent
## 3477 telephone may tue 999 3 999 0 nonexistent
## 3478 telephone may tue 127 2 999 0 nonexistent
## 3479 telephone may tue 446 2 999 0 nonexistent
## 3480 telephone may tue 289 3 999 0 nonexistent
## 3481 telephone may tue 217 4 999 0 nonexistent
## 3482 telephone may tue 169 1 999 0 nonexistent
## 3483 telephone may tue 247 3 999 0 nonexistent
## 3484 telephone may tue 140 1 999 0 nonexistent
## 3485 telephone may tue 128 6 999 0 nonexistent
## 3486 telephone may tue 215 3 999 0 nonexistent
## 3487 telephone may tue 64 1 999 0 nonexistent
## 3488 telephone may tue 52 10 999 0 nonexistent
## 3489 telephone may tue 216 2 999 0 nonexistent
## 3490 telephone may tue 292 1 999 0 nonexistent
## 3491 telephone may tue 129 7 999 0 nonexistent
## 3492 telephone may tue 210 2 999 0 nonexistent
## 3493 telephone may tue 114 1 999 0 nonexistent
## 3494 telephone may tue 657 1 999 0 nonexistent
## 3495 telephone may tue 443 1 999 0 nonexistent
## 3496 telephone may tue 73 1 999 0 nonexistent
## 3497 telephone may tue 127 8 999 0 nonexistent
## 3498 telephone may tue 446 2 999 0 nonexistent
## 3499 telephone may tue 252 2 999 0 nonexistent
## 3500 telephone may tue 80 2 999 0 nonexistent
## 3501 telephone may tue 1446 1 999 0 nonexistent
## 3502 telephone may tue 144 2 999 0 nonexistent
## 3503 telephone may tue 412 2 999 0 nonexistent
## 3504 telephone may tue 222 2 999 0 nonexistent
## 3505 telephone may tue 29 16 999 0 nonexistent
## 3506 telephone may tue 154 2 999 0 nonexistent
## 3507 telephone may tue 723 2 999 0 nonexistent
## 3508 telephone may tue 550 2 999 0 nonexistent
## 3509 telephone may tue 130 2 999 0 nonexistent
## 3510 telephone may tue 192 2 999 0 nonexistent
## 3511 telephone may tue 146 2 999 0 nonexistent
## 3512 telephone may tue 239 2 999 0 nonexistent
## 3513 telephone may tue 114 3 999 0 nonexistent
## 3514 telephone may tue 139 3 999 0 nonexistent
## 3515 telephone may tue 445 2 999 0 nonexistent
## 3516 telephone may tue 139 5 999 0 nonexistent
## 3517 telephone may tue 16 10 999 0 nonexistent
## 3518 telephone may tue 169 4 999 0 nonexistent
## 3519 telephone may tue 125 3 999 0 nonexistent
## 3520 telephone may tue 446 12 999 0 nonexistent
## 3521 telephone may tue 267 2 999 0 nonexistent
## 3522 telephone may tue 6 2 999 0 nonexistent
## 3523 telephone may tue 15 13 999 0 nonexistent
## 3524 telephone may tue 172 4 999 0 nonexistent
## 3525 telephone may tue 94 3 999 0 nonexistent
## 3526 telephone may tue 268 3 999 0 nonexistent
## 3527 telephone may tue 130 3 999 0 nonexistent
## 3528 telephone may tue 91 6 999 0 nonexistent
## 3529 telephone may tue 324 2 999 0 nonexistent
## 3530 telephone may tue 465 8 999 0 nonexistent
## 3531 telephone may tue 274 2 999 0 nonexistent
## 3532 telephone may tue 300 3 999 0 nonexistent
## 3533 telephone may tue 189 2 999 0 nonexistent
## 3534 telephone may tue 137 2 999 0 nonexistent
## 3535 telephone may tue 614 2 999 0 nonexistent
## 3536 telephone may tue 363 5 999 0 nonexistent
## 3537 telephone may tue 418 2 999 0 nonexistent
## 3538 telephone may tue 96 2 999 0 nonexistent
## 3539 telephone may tue 119 3 999 0 nonexistent
## 3540 telephone may tue 103 3 999 0 nonexistent
## 3541 telephone may tue 10 17 999 0 nonexistent
## 3542 telephone may tue 216 2 999 0 nonexistent
## 3543 telephone may tue 484 2 999 0 nonexistent
## 3544 telephone may tue 485 3 999 0 nonexistent
## 3545 telephone may tue 404 2 999 0 nonexistent
## 3546 telephone may tue 138 2 999 0 nonexistent
## 3547 telephone may tue 243 2 999 0 nonexistent
## 3548 telephone may tue 919 2 999 0 nonexistent
## 3549 telephone may tue 247 2 999 0 nonexistent
## 3550 telephone may tue 89 2 999 0 nonexistent
## 3551 telephone may tue 185 12 999 0 nonexistent
## 3552 telephone may tue 777 3 999 0 nonexistent
## 3553 telephone may tue 110 2 999 0 nonexistent
## 3554 telephone may tue 256 2 999 0 nonexistent
## 3555 telephone may tue 54 2 999 0 nonexistent
## 3556 telephone may tue 26 2 999 0 nonexistent
## 3557 telephone may tue 350 4 999 0 nonexistent
## 3558 telephone may tue 226 2 999 0 nonexistent
## 3559 telephone may tue 167 2 999 0 nonexistent
## 3560 telephone may tue 47 3 999 0 nonexistent
## 3561 telephone may tue 214 10 999 0 nonexistent
## 3562 telephone may tue 446 7 999 0 nonexistent
## 3563 telephone may tue 153 2 999 0 nonexistent
## 3564 telephone may tue 181 6 999 0 nonexistent
## 3565 telephone may tue 747 5 999 0 nonexistent
## 3566 telephone may tue 270 1 999 0 nonexistent
## 3567 telephone may tue 37 13 999 0 nonexistent
## 3568 telephone may tue 129 8 999 0 nonexistent
## 3569 telephone may tue 72 3 999 0 nonexistent
## 3570 telephone may tue 725 1 999 0 nonexistent
## 3571 telephone may tue 177 10 999 0 nonexistent
## 3572 telephone may tue 273 4 999 0 nonexistent
## 3573 telephone may tue 98 2 999 0 nonexistent
## 3574 telephone may tue 480 4 999 0 nonexistent
## 3575 telephone may tue 152 1 999 0 nonexistent
## 3576 telephone may tue 204 2 999 0 nonexistent
## 3577 telephone may tue 246 3 999 0 nonexistent
## 3578 telephone may tue 352 5 999 0 nonexistent
## 3579 telephone may tue 190 1 999 0 nonexistent
## 3580 telephone may tue 277 1 999 0 nonexistent
## 3581 telephone may tue 315 1 999 0 nonexistent
## 3582 telephone may wed 289 1 999 0 nonexistent
## 3583 telephone may wed 225 1 999 0 nonexistent
## 3584 telephone may wed 408 1 999 0 nonexistent
## 3585 telephone may wed 74 1 999 0 nonexistent
## 3586 telephone may wed 24 1 999 0 nonexistent
## 3587 telephone may wed 167 1 999 0 nonexistent
## 3588 telephone may wed 64 3 999 0 nonexistent
## 3589 telephone may wed 151 1 999 0 nonexistent
## 3590 telephone may wed 59 1 999 0 nonexistent
## 3591 telephone may wed 181 1 999 0 nonexistent
## 3592 telephone may wed 86 6 999 0 nonexistent
## 3593 telephone may wed 317 1 999 0 nonexistent
## 3594 telephone may wed 120 1 999 0 nonexistent
## 3595 telephone may wed 388 1 999 0 nonexistent
## 3596 telephone may wed 174 1 999 0 nonexistent
## 3597 telephone may wed 72 1 999 0 nonexistent
## 3598 telephone may wed 126 1 999 0 nonexistent
## 3599 telephone may wed 171 5 999 0 nonexistent
## 3600 telephone may wed 162 1 999 0 nonexistent
## 3601 telephone may wed 18 28 999 0 nonexistent
## 3602 telephone may wed 129 1 999 0 nonexistent
## 3603 telephone may wed 692 1 999 0 nonexistent
## 3604 telephone may wed 78 1 999 0 nonexistent
## 3605 telephone may wed 134 5 999 0 nonexistent
## 3606 telephone may wed 323 1 999 0 nonexistent
## 3607 telephone may wed 245 1 999 0 nonexistent
## 3608 telephone may wed 482 1 999 0 nonexistent
## 3609 telephone may wed 207 2 999 0 nonexistent
## 3610 telephone may wed 56 1 999 0 nonexistent
## 3611 telephone may wed 85 2 999 0 nonexistent
## 3612 telephone may wed 201 1 999 0 nonexistent
## 3613 telephone may wed 353 1 999 0 nonexistent
## 3614 telephone may wed 554 3 999 0 nonexistent
## 3615 telephone may wed 27 2 999 0 nonexistent
## 3616 telephone may wed 162 1 999 0 nonexistent
## 3617 telephone may wed 287 3 999 0 nonexistent
## 3618 telephone may wed 147 1 999 0 nonexistent
## 3619 telephone may wed 118 1 999 0 nonexistent
## 3620 telephone may wed 91 1 999 0 nonexistent
## 3621 telephone may wed 111 5 999 0 nonexistent
## 3622 telephone may wed 162 1 999 0 nonexistent
## 3623 telephone may wed 73 1 999 0 nonexistent
## 3624 telephone may wed 298 2 999 0 nonexistent
## 3625 telephone may wed 420 1 999 0 nonexistent
## 3626 telephone may wed 164 1 999 0 nonexistent
## 3627 telephone may wed 192 1 999 0 nonexistent
## 3628 telephone may wed 226 1 999 0 nonexistent
## 3629 telephone may wed 264 2 999 0 nonexistent
## 3630 telephone may wed 166 1 999 0 nonexistent
## 3631 telephone may wed 27 1 999 0 nonexistent
## 3632 telephone may wed 353 1 999 0 nonexistent
## 3633 telephone may wed 85 1 999 0 nonexistent
## 3634 telephone may wed 1106 1 999 0 nonexistent
## 3635 telephone may wed 419 1 999 0 nonexistent
## 3636 telephone may wed 603 5 999 0 nonexistent
## 3637 telephone may wed 415 1 999 0 nonexistent
## 3638 telephone may wed 179 1 999 0 nonexistent
## 3639 telephone may wed 872 5 999 0 nonexistent
## 3640 telephone may wed 52 1 999 0 nonexistent
## 3641 telephone may wed 490 1 999 0 nonexistent
## 3642 telephone may wed 63 1 999 0 nonexistent
## 3643 telephone may wed 27 10 999 0 nonexistent
## 3644 telephone may wed 425 1 999 0 nonexistent
## 3645 telephone may wed 12 11 999 0 nonexistent
## 3646 telephone may wed 103 1 999 0 nonexistent
## 3647 telephone may wed 210 1 999 0 nonexistent
## 3648 telephone may wed 115 2 999 0 nonexistent
## 3649 telephone may wed 370 1 999 0 nonexistent
## 3650 telephone may wed 103 2 999 0 nonexistent
## 3651 telephone may wed 628 1 999 0 nonexistent
## 3652 telephone may wed 232 1 999 0 nonexistent
## 3653 telephone may wed 68 1 999 0 nonexistent
## 3654 telephone may wed 192 1 999 0 nonexistent
## 3655 telephone may wed 494 3 999 0 nonexistent
## 3656 telephone may wed 166 7 999 0 nonexistent
## 3657 telephone may wed 204 1 999 0 nonexistent
## 3658 telephone may wed 180 1 999 0 nonexistent
## 3659 telephone may wed 494 2 999 0 nonexistent
## 3660 telephone may wed 530 2 999 0 nonexistent
## 3661 telephone may wed 85 1 999 0 nonexistent
## 3662 telephone may wed 345 1 999 0 nonexistent
## 3663 telephone may wed 16 1 999 0 nonexistent
## 3664 telephone may wed 32 1 999 0 nonexistent
## 3665 telephone may wed 648 1 999 0 nonexistent
## 3666 telephone may wed 29 1 999 0 nonexistent
## 3667 telephone may wed 220 1 999 0 nonexistent
## 3668 telephone may wed 151 1 999 0 nonexistent
## 3669 telephone may wed 634 2 999 0 nonexistent
## 3670 telephone may wed 717 3 999 0 nonexistent
## 3671 telephone may wed 249 1 999 0 nonexistent
## 3672 telephone may wed 228 1 999 0 nonexistent
## 3673 telephone may wed 122 1 999 0 nonexistent
## 3674 telephone may wed 544 1 999 0 nonexistent
## 3675 telephone may wed 951 2 999 0 nonexistent
## 3676 telephone may wed 211 1 999 0 nonexistent
## 3677 telephone may wed 97 1 999 0 nonexistent
## 3678 telephone may wed 192 1 999 0 nonexistent
## 3679 telephone may wed 160 1 999 0 nonexistent
## 3680 telephone may wed 97 1 999 0 nonexistent
## 3681 telephone may wed 244 1 999 0 nonexistent
## 3682 telephone may wed 578 2 999 0 nonexistent
## 3683 telephone may wed 359 1 999 0 nonexistent
## 3684 telephone may wed 190 2 999 0 nonexistent
## 3685 telephone may wed 111 1 999 0 nonexistent
## 3686 telephone may wed 487 5 999 0 nonexistent
## 3687 telephone may wed 396 1 999 0 nonexistent
## 3688 telephone may wed 59 8 999 0 nonexistent
## 3689 telephone may wed 111 3 999 0 nonexistent
## 3690 telephone may wed 202 6 999 0 nonexistent
## 3691 telephone may wed 135 1 999 0 nonexistent
## 3692 telephone may wed 29 1 999 0 nonexistent
## 3693 telephone may wed 408 1 999 0 nonexistent
## 3694 telephone may wed 136 1 999 0 nonexistent
## 3695 telephone may wed 141 2 999 0 nonexistent
## 3696 telephone may wed 171 1 999 0 nonexistent
## 3697 telephone may wed 93 1 999 0 nonexistent
## 3698 telephone may wed 35 1 999 0 nonexistent
## 3699 telephone may wed 7 12 999 0 nonexistent
## 3700 telephone may wed 51 2 999 0 nonexistent
## 3701 telephone may wed 17 7 999 0 nonexistent
## 3702 telephone may wed 504 1 999 0 nonexistent
## 3703 telephone may wed 542 1 999 0 nonexistent
## 3704 telephone may wed 257 2 999 0 nonexistent
## 3705 telephone may wed 112 1 999 0 nonexistent
## 3706 telephone may wed 294 2 999 0 nonexistent
## 3707 telephone may wed 303 3 999 0 nonexistent
## 3708 telephone may wed 343 1 999 0 nonexistent
## 3709 telephone may wed 206 1 999 0 nonexistent
## 3710 telephone may wed 786 2 999 0 nonexistent
## 3711 telephone may wed 178 1 999 0 nonexistent
## 3712 telephone may wed 509 1 999 0 nonexistent
## 3713 telephone may wed 161 4 999 0 nonexistent
## 3714 telephone may wed 125 3 999 0 nonexistent
## 3715 telephone may wed 159 1 999 0 nonexistent
## 3716 telephone may wed 221 1 999 0 nonexistent
## 3717 telephone may wed 211 1 999 0 nonexistent
## 3718 telephone may wed 68 1 999 0 nonexistent
## 3719 telephone may wed 293 1 999 0 nonexistent
## 3720 telephone may wed 389 1 999 0 nonexistent
## 3721 telephone may wed 145 1 999 0 nonexistent
## 3722 telephone may wed 59 2 999 0 nonexistent
## 3723 telephone may wed 39 2 999 0 nonexistent
## 3724 telephone may wed 140 2 999 0 nonexistent
## 3725 telephone may wed 53 3 999 0 nonexistent
## 3726 telephone may wed 44 3 999 0 nonexistent
## 3727 telephone may wed 45 13 999 0 nonexistent
## 3728 telephone may wed 738 3 999 0 nonexistent
## 3729 telephone may wed 102 3 999 0 nonexistent
## 3730 telephone may wed 161 2 999 0 nonexistent
## 3731 telephone may wed 122 2 999 0 nonexistent
## 3732 telephone may wed 137 2 999 0 nonexistent
## 3733 telephone may wed 189 2 999 0 nonexistent
## 3734 telephone may wed 88 2 999 0 nonexistent
## 3735 telephone may wed 418 2 999 0 nonexistent
## 3736 telephone may wed 17 2 999 0 nonexistent
## 3737 telephone may wed 445 1 999 0 nonexistent
## 3738 telephone may wed 623 1 999 0 nonexistent
## 3739 telephone may wed 316 1 999 0 nonexistent
## 3740 telephone may wed 650 2 999 0 nonexistent
## 3741 telephone may wed 1307 1 999 0 nonexistent
## 3742 telephone may wed 143 1 999 0 nonexistent
## 3743 telephone may wed 187 5 999 0 nonexistent
## 3744 telephone may wed 748 1 999 0 nonexistent
## 3745 telephone may wed 486 2 999 0 nonexistent
## 3746 telephone may wed 197 2 999 0 nonexistent
## 3747 telephone may wed 304 1 999 0 nonexistent
## 3748 telephone may wed 51 2 999 0 nonexistent
## 3749 telephone may wed 394 2 999 0 nonexistent
## 3750 telephone may wed 125 1 999 0 nonexistent
## 3751 telephone may wed 315 1 999 0 nonexistent
## 3752 telephone may wed 288 1 999 0 nonexistent
## 3753 telephone may wed 354 5 999 0 nonexistent
## 3754 telephone may wed 154 4 999 0 nonexistent
## 3755 telephone may wed 184 2 999 0 nonexistent
## 3756 telephone may wed 563 2 999 0 nonexistent
## 3757 telephone may wed 450 1 999 0 nonexistent
## 3758 telephone may wed 34 3 999 0 nonexistent
## 3759 telephone may wed 518 1 999 0 nonexistent
## 3760 telephone may wed 111 4 999 0 nonexistent
## 3761 telephone may wed 176 4 999 0 nonexistent
## 3762 telephone may wed 196 1 999 0 nonexistent
## 3763 telephone may wed 85 1 999 0 nonexistent
## 3764 telephone may wed 91 2 999 0 nonexistent
## 3765 telephone may wed 172 2 999 0 nonexistent
## 3766 telephone may wed 252 2 999 0 nonexistent
## 3767 telephone may wed 265 1 999 0 nonexistent
## 3768 telephone may wed 899 1 999 0 nonexistent
## 3769 telephone may wed 588 2 999 0 nonexistent
## 3770 telephone may wed 393 1 999 0 nonexistent
## 3771 telephone may wed 205 2 999 0 nonexistent
## 3772 telephone may wed 178 1 999 0 nonexistent
## 3773 telephone may wed 127 1 999 0 nonexistent
## 3774 telephone may wed 38 12 999 0 nonexistent
## 3775 telephone may wed 127 2 999 0 nonexistent
## 3776 telephone may wed 660 1 999 0 nonexistent
## 3777 telephone may wed 208 3 999 0 nonexistent
## 3778 telephone may wed 518 2 999 0 nonexistent
## 3779 telephone may wed 171 1 999 0 nonexistent
## 3780 telephone may wed 272 1 999 0 nonexistent
## 3781 telephone may wed 143 2 999 0 nonexistent
## 3782 telephone may wed 572 1 999 0 nonexistent
## 3783 telephone may wed 244 1 999 0 nonexistent
## 3784 telephone may wed 384 3 999 0 nonexistent
## 3785 telephone may wed 240 3 999 0 nonexistent
## 3786 telephone may wed 269 2 999 0 nonexistent
## 3787 telephone may wed 83 1 999 0 nonexistent
## 3788 telephone may wed 100 4 999 0 nonexistent
## 3789 telephone may wed 811 2 999 0 nonexistent
## 3790 telephone may wed 890 26 999 0 nonexistent
## 3791 telephone may wed 159 2 999 0 nonexistent
## 3792 telephone may wed 443 2 999 0 nonexistent
## 3793 telephone may wed 1162 2 999 0 nonexistent
## 3794 telephone may wed 244 2 999 0 nonexistent
## 3795 telephone may wed 295 1 999 0 nonexistent
## 3796 telephone may wed 86 2 999 0 nonexistent
## 3797 telephone may wed 154 2 999 0 nonexistent
## 3798 telephone may wed 113 2 999 0 nonexistent
## 3799 telephone may wed 83 2 999 0 nonexistent
## 3800 telephone may wed 297 8 999 0 nonexistent
## 3801 telephone may wed 291 2 999 0 nonexistent
## 3802 telephone may wed 72 3 999 0 nonexistent
## 3803 telephone may wed 151 2 999 0 nonexistent
## 3804 telephone may wed 312 2 999 0 nonexistent
## 3805 telephone may wed 474 2 999 0 nonexistent
## 3806 telephone may wed 91 3 999 0 nonexistent
## 3807 telephone may wed 232 2 999 0 nonexistent
## 3808 telephone may wed 446 2 999 0 nonexistent
## 3809 telephone may wed 153 4 999 0 nonexistent
## 3810 telephone may wed 111 5 999 0 nonexistent
## 3811 telephone may wed 72 3 999 0 nonexistent
## 3812 telephone may wed 559 2 999 0 nonexistent
## 3813 telephone may wed 205 2 999 0 nonexistent
## 3814 telephone may wed 189 7 999 0 nonexistent
## 3815 telephone may wed 237 2 999 0 nonexistent
## 3816 telephone may wed 230 2 999 0 nonexistent
## 3817 telephone may wed 127 2 999 0 nonexistent
## 3818 telephone may wed 239 2 999 0 nonexistent
## 3819 telephone may wed 222 5 999 0 nonexistent
## 3820 telephone may wed 69 4 999 0 nonexistent
## 3821 telephone may wed 501 2 999 0 nonexistent
## 3822 telephone may wed 192 1 999 0 nonexistent
## 3823 telephone may wed 273 1 999 0 nonexistent
## 3824 telephone may wed 175 2 999 0 nonexistent
## 3825 telephone may wed 465 11 999 0 nonexistent
## 3826 telephone may wed 175 2 999 0 nonexistent
## 3827 telephone may wed 87 14 999 0 nonexistent
## 3828 telephone may wed 292 2 999 0 nonexistent
## 3829 telephone may wed 198 1 999 0 nonexistent
## 3830 telephone may wed 23 16 999 0 nonexistent
## 3831 telephone may wed 575 2 999 0 nonexistent
## 3832 telephone may wed 67 5 999 0 nonexistent
## 3833 telephone may wed 248 3 999 0 nonexistent
## 3834 telephone may wed 108 2 999 0 nonexistent
## 3835 telephone may wed 373 3 999 0 nonexistent
## 3836 telephone may wed 395 2 999 0 nonexistent
## 3837 telephone may wed 229 2 999 0 nonexistent
## 3838 telephone may wed 54 4 999 0 nonexistent
## 3839 telephone may wed 135 2 999 0 nonexistent
## 3840 telephone may wed 357 2 999 0 nonexistent
## 3841 telephone may wed 152 3 999 0 nonexistent
## 3842 telephone may wed 36 2 999 0 nonexistent
## 3843 telephone may wed 206 3 999 0 nonexistent
## 3844 telephone may wed 389 2 999 0 nonexistent
## 3845 telephone may wed 66 2 999 0 nonexistent
## 3846 telephone may wed 86 2 999 0 nonexistent
## 3847 telephone may wed 489 2 999 0 nonexistent
## 3848 telephone may wed 85 4 999 0 nonexistent
## 3849 telephone may wed 832 2 999 0 nonexistent
## 3850 telephone may wed 149 3 999 0 nonexistent
## 3851 telephone may wed 634 2 999 0 nonexistent
## 3852 telephone may wed 173 2 999 0 nonexistent
## 3853 telephone may wed 151 1 999 0 nonexistent
## 3854 telephone may wed 987 3 999 0 nonexistent
## 3855 telephone may wed 66 13 999 0 nonexistent
## 3856 telephone may wed 369 2 999 0 nonexistent
## 3857 telephone may wed 88 3 999 0 nonexistent
## 3858 telephone may wed 397 9 999 0 nonexistent
## 3859 telephone may wed 935 1 999 0 nonexistent
## 3860 telephone may wed 189 2 999 0 nonexistent
## 3861 telephone may wed 21 3 999 0 nonexistent
## 3862 telephone may wed 234 2 999 0 nonexistent
## 3863 telephone may wed 81 2 999 0 nonexistent
## 3864 telephone may wed 59 2 999 0 nonexistent
## 3865 telephone may wed 233 3 999 0 nonexistent
## 3866 telephone may wed 265 2 999 0 nonexistent
## 3867 telephone may wed 173 3 999 0 nonexistent
## 3868 telephone may wed 178 3 999 0 nonexistent
## 3869 telephone may wed 203 2 999 0 nonexistent
## 3870 telephone may wed 45 9 999 0 nonexistent
## 3871 telephone may wed 86 2 999 0 nonexistent
## 3872 telephone may wed 239 4 999 0 nonexistent
## 3873 telephone may wed 207 3 999 0 nonexistent
## 3874 telephone may wed 165 2 999 0 nonexistent
## 3875 telephone may wed 150 3 999 0 nonexistent
## 3876 telephone may wed 155 4 999 0 nonexistent
## 3877 telephone may wed 202 3 999 0 nonexistent
## 3878 telephone may wed 227 3 999 0 nonexistent
## 3879 telephone may wed 30 12 999 0 nonexistent
## 3880 telephone may wed 206 6 999 0 nonexistent
## 3881 telephone may wed 362 5 999 0 nonexistent
## 3882 telephone may wed 15 19 999 0 nonexistent
## 3883 telephone may wed 315 3 999 0 nonexistent
## 3884 telephone may wed 250 4 999 0 nonexistent
## 3885 telephone may wed 700 3 999 0 nonexistent
## 3886 telephone may wed 154 5 999 0 nonexistent
## 3887 telephone may wed 190 5 999 0 nonexistent
## 3888 telephone may wed 20 8 999 0 nonexistent
## 3889 telephone may wed 191 6 999 0 nonexistent
## 3890 telephone may wed 363 6 999 0 nonexistent
## 3891 telephone may wed 339 3 999 0 nonexistent
## 3892 telephone may wed 110 4 999 0 nonexistent
## 3893 telephone may wed 142 10 999 0 nonexistent
## 3894 telephone may wed 173 6 999 0 nonexistent
## 3895 telephone may wed 291 4 999 0 nonexistent
## 3896 telephone may wed 322 2 999 0 nonexistent
## 3897 telephone may wed 304 2 999 0 nonexistent
## 3898 telephone may wed 526 8 999 0 nonexistent
## 3899 telephone may fri 78 9 999 0 nonexistent
## 3900 telephone may fri 72 5 999 0 nonexistent
## 3901 telephone may fri 72 3 999 0 nonexistent
## 3902 telephone may fri 42 3 999 0 nonexistent
## 3903 telephone may fri 407 14 999 0 nonexistent
## 3904 telephone may fri 136 2 999 0 nonexistent
## 3905 telephone may fri 405 5 999 0 nonexistent
## 3906 telephone may fri 417 6 999 0 nonexistent
## 3907 telephone may fri 201 2 999 0 nonexistent
## 3908 telephone may fri 101 3 999 0 nonexistent
## 3909 telephone may fri 214 3 999 0 nonexistent
## 3910 telephone may fri 350 5 999 0 nonexistent
## 3911 telephone may fri 433 3 999 0 nonexistent
## 3912 telephone may fri 329 2 999 0 nonexistent
## 3913 telephone may fri 110 3 999 0 nonexistent
## 3914 telephone may fri 259 9 999 0 nonexistent
## 3915 telephone may fri 260 3 999 0 nonexistent
## 3916 telephone may fri 363 2 999 0 nonexistent
## 3917 telephone may fri 149 1 999 0 nonexistent
## 3918 telephone may fri 174 1 999 0 nonexistent
## 3919 telephone may fri 83 4 999 0 nonexistent
## 3920 telephone may fri 245 1 999 0 nonexistent
## 3921 telephone may fri 260 1 999 0 nonexistent
## 3922 telephone may fri 271 1 999 0 nonexistent
## 3923 telephone may fri 206 1 999 0 nonexistent
## 3924 telephone may fri 218 1 999 0 nonexistent
## 3925 telephone may fri 621 1 999 0 nonexistent
## 3926 telephone may fri 385 1 999 0 nonexistent
## 3927 telephone may fri 70 5 999 0 nonexistent
## 3928 telephone may fri 509 1 999 0 nonexistent
## 3929 telephone may fri 128 1 999 0 nonexistent
## 3930 telephone may fri 136 1 999 0 nonexistent
## 3931 telephone may fri 3 3 999 0 nonexistent
## 3932 telephone may fri 1171 1 999 0 nonexistent
## 3933 telephone may fri 359 4 999 0 nonexistent
## 3934 telephone may fri 217 1 999 0 nonexistent
## 3935 telephone may fri 121 2 999 0 nonexistent
## 3936 telephone may fri 154 2 999 0 nonexistent
## 3937 telephone may fri 98 1 999 0 nonexistent
## 3938 telephone may fri 189 1 999 0 nonexistent
## 3939 telephone may fri 89 1 999 0 nonexistent
## 3940 telephone may fri 302 1 999 0 nonexistent
## 3941 telephone may fri 254 1 999 0 nonexistent
## 3942 telephone may fri 230 1 999 0 nonexistent
## 3943 telephone may fri 373 1 999 0 nonexistent
## 3944 telephone may fri 72 2 999 0 nonexistent
## 3945 telephone may fri 534 1 999 0 nonexistent
## 3946 telephone may fri 225 4 999 0 nonexistent
## 3947 telephone may fri 445 1 999 0 nonexistent
## 3948 telephone may fri 193 2 999 0 nonexistent
## 3949 telephone may fri 76 2 999 0 nonexistent
## 3950 telephone may fri 268 1 999 0 nonexistent
## 3951 telephone may fri 298 1 999 0 nonexistent
## 3952 telephone may fri 286 1 999 0 nonexistent
## 3953 telephone may fri 442 1 999 0 nonexistent
## 3954 telephone may fri 206 1 999 0 nonexistent
## 3955 telephone may fri 299 1 999 0 nonexistent
## 3956 telephone may fri 162 1 999 0 nonexistent
## 3957 telephone may fri 504 1 999 0 nonexistent
## 3958 telephone may fri 488 1 999 0 nonexistent
## 3959 telephone may fri 190 1 999 0 nonexistent
## 3960 telephone may fri 139 1 999 0 nonexistent
## 3961 telephone may fri 124 4 999 0 nonexistent
## 3962 telephone may fri 290 1 999 0 nonexistent
## 3963 telephone may fri 152 1 999 0 nonexistent
## 3964 telephone may fri 168 1 999 0 nonexistent
## 3965 telephone may fri 204 1 999 0 nonexistent
## 3966 telephone may fri 164 4 999 0 nonexistent
## 3967 telephone may fri 322 1 999 0 nonexistent
## 3968 telephone may fri 530 1 999 0 nonexistent
## 3969 telephone may fri 237 1 999 0 nonexistent
## 3970 telephone may fri 57 1 999 0 nonexistent
## 3971 telephone may fri 700 1 999 0 nonexistent
## 3972 telephone may fri 601 1 999 0 nonexistent
## 3973 telephone may fri 231 1 999 0 nonexistent
## 3974 telephone may fri 135 1 999 0 nonexistent
## 3975 telephone may fri 86 2 999 0 nonexistent
## 3976 telephone may fri 106 3 999 0 nonexistent
## 3977 telephone may fri 134 1 999 0 nonexistent
## 3978 telephone may fri 293 1 999 0 nonexistent
## 3979 telephone may fri 816 2 999 0 nonexistent
## 3980 telephone may fri 435 1 999 0 nonexistent
## 3981 telephone may fri 100 1 999 0 nonexistent
## 3982 telephone may fri 152 1 999 0 nonexistent
## 3983 telephone may fri 533 1 999 0 nonexistent
## 3984 telephone may fri 28 3 999 0 nonexistent
## 3985 telephone may fri 63 1 999 0 nonexistent
## 3986 telephone may fri 202 2 999 0 nonexistent
## 3987 telephone may fri 181 1 999 0 nonexistent
## 3988 telephone may fri 240 2 999 0 nonexistent
## 3989 telephone may fri 354 4 999 0 nonexistent
## 3990 telephone may fri 210 1 999 0 nonexistent
## 3991 telephone may fri 108 5 999 0 nonexistent
## 3992 telephone may fri 223 1 999 0 nonexistent
## 3993 telephone may fri 275 2 999 0 nonexistent
## 3994 telephone may fri 263 2 999 0 nonexistent
## 3995 telephone may fri 85 1 999 0 nonexistent
## 3996 telephone may fri 319 3 999 0 nonexistent
## 3997 telephone may fri 242 3 999 0 nonexistent
## 3998 telephone may fri 128 4 999 0 nonexistent
## 3999 telephone may fri 236 2 999 0 nonexistent
## 4000 telephone may fri 67 1 999 0 nonexistent
## 4001 telephone may fri 246 3 999 0 nonexistent
## 4002 telephone may fri 83 1 999 0 nonexistent
## 4003 telephone may fri 293 1 999 0 nonexistent
## 4004 telephone may fri 245 1 999 0 nonexistent
## 4005 telephone may fri 334 1 999 0 nonexistent
## 4006 telephone may fri 317 1 999 0 nonexistent
## 4007 telephone may fri 134 2 999 0 nonexistent
## 4008 telephone may fri 110 2 999 0 nonexistent
## 4009 telephone may fri 37 1 999 0 nonexistent
## 4010 telephone may fri 188 1 999 0 nonexistent
## 4011 telephone may fri 379 1 999 0 nonexistent
## 4012 telephone may fri 206 1 999 0 nonexistent
## 4013 telephone may fri 156 2 999 0 nonexistent
## 4014 telephone may fri 314 3 999 0 nonexistent
## 4015 telephone may fri 98 1 999 0 nonexistent
## 4016 telephone may fri 260 1 999 0 nonexistent
## 4017 telephone may fri 78 1 999 0 nonexistent
## 4018 telephone may fri 115 2 999 0 nonexistent
## 4019 telephone may fri 95 1 999 0 nonexistent
## 4020 telephone may fri 14 2 999 0 nonexistent
## 4021 telephone may fri 111 2 999 0 nonexistent
## 4022 telephone may fri 38 1 999 0 nonexistent
## 4023 telephone may fri 127 2 999 0 nonexistent
## 4024 telephone may fri 66 1 999 0 nonexistent
## 4025 telephone may fri 234 2 999 0 nonexistent
## 4026 telephone may fri 691 1 999 0 nonexistent
## 4027 telephone may fri 270 1 999 0 nonexistent
## 4028 telephone may fri 390 1 999 0 nonexistent
## 4029 telephone may fri 249 1 999 0 nonexistent
## 4030 telephone may fri 31 1 999 0 nonexistent
## 4031 telephone may fri 161 1 999 0 nonexistent
## 4032 telephone may fri 369 1 999 0 nonexistent
## 4033 telephone may fri 162 1 999 0 nonexistent
## 4034 telephone may fri 397 1 999 0 nonexistent
## 4035 telephone may fri 227 1 999 0 nonexistent
## 4036 telephone may fri 7 1 999 0 nonexistent
## 4037 telephone may fri 465 1 999 0 nonexistent
## 4038 telephone may fri 137 1 999 0 nonexistent
## 4039 telephone may fri 98 1 999 0 nonexistent
## 4040 telephone may fri 665 1 999 0 nonexistent
## 4041 telephone may fri 80 1 999 0 nonexistent
## 4042 telephone may fri 164 1 999 0 nonexistent
## 4043 telephone may fri 145 1 999 0 nonexistent
## 4044 telephone may fri 25 2 999 0 nonexistent
## 4045 telephone may fri 187 1 999 0 nonexistent
## 4046 telephone may fri 76 2 999 0 nonexistent
## 4047 telephone may fri 163 2 999 0 nonexistent
## 4048 telephone may fri 152 2 999 0 nonexistent
## 4049 telephone may fri 27 1 999 0 nonexistent
## 4050 telephone may fri 567 3 999 0 nonexistent
## 4051 telephone may fri 284 2 999 0 nonexistent
## 4052 telephone may fri 378 2 999 0 nonexistent
## 4053 telephone may fri 353 1 999 0 nonexistent
## 4054 telephone may fri 83 2 999 0 nonexistent
## 4055 telephone may fri 104 1 999 0 nonexistent
## 4056 telephone may fri 50 3 999 0 nonexistent
## 4057 telephone may fri 536 2 999 0 nonexistent
## 4058 telephone may fri 139 2 999 0 nonexistent
## 4059 telephone may fri 466 2 999 0 nonexistent
## 4060 telephone may fri 254 1 999 0 nonexistent
## 4061 telephone may fri 250 1 999 0 nonexistent
## 4062 telephone may fri 79 1 999 0 nonexistent
## 4063 telephone may fri 563 1 999 0 nonexistent
## 4064 telephone may fri 147 14 999 0 nonexistent
## 4065 telephone may fri 125 3 999 0 nonexistent
## 4066 telephone may fri 556 1 999 0 nonexistent
## 4067 telephone may fri 119 1 999 0 nonexistent
## 4068 telephone may fri 268 1 999 0 nonexistent
## 4069 telephone may fri 332 1 999 0 nonexistent
## 4070 telephone may fri 159 2 999 0 nonexistent
## 4071 telephone may fri 448 1 999 0 nonexistent
## 4072 telephone may fri 160 1 999 0 nonexistent
## 4073 telephone may fri 240 1 999 0 nonexistent
## 4074 telephone may fri 115 4 999 0 nonexistent
## 4075 telephone may fri 290 3 999 0 nonexistent
## 4076 telephone may fri 140 2 999 0 nonexistent
## 4077 telephone may fri 57 4 999 0 nonexistent
## 4078 telephone may fri 811 1 999 0 nonexistent
## 4079 telephone may fri 221 2 999 0 nonexistent
## 4080 telephone may fri 108 3 999 0 nonexistent
## 4081 telephone may fri 288 3 999 0 nonexistent
## 4082 telephone may fri 542 2 999 0 nonexistent
## 4083 telephone may fri 541 2 999 0 nonexistent
## 4084 telephone may fri 198 2 999 0 nonexistent
## 4085 telephone may fri 302 1 999 0 nonexistent
## 4086 telephone may fri 268 1 999 0 nonexistent
## 4087 telephone may fri 154 2 999 0 nonexistent
## 4088 telephone may fri 66 1 999 0 nonexistent
## 4089 telephone may fri 216 2 999 0 nonexistent
## 4090 telephone may fri 206 3 999 0 nonexistent
## 4091 telephone may fri 168 1 999 0 nonexistent
## 4092 telephone may fri 186 1 999 0 nonexistent
## 4093 telephone may fri 472 1 999 0 nonexistent
## 4094 telephone may fri 189 2 999 0 nonexistent
## 4095 telephone may fri 215 2 999 0 nonexistent
## 4096 telephone may fri 216 1 999 0 nonexistent
## 4097 telephone may fri 418 3 999 0 nonexistent
## 4098 telephone may fri 926 1 999 0 nonexistent
## 4099 telephone may fri 228 2 999 0 nonexistent
## 4100 telephone may fri 411 3 999 0 nonexistent
## 4101 telephone may fri 144 2 999 0 nonexistent
## 4102 telephone may fri 248 2 999 0 nonexistent
## 4103 telephone may fri 138 6 999 0 nonexistent
## 4104 telephone may fri 824 2 999 0 nonexistent
## 4105 telephone may fri 345 3 999 0 nonexistent
## 4106 telephone may fri 147 42 999 0 nonexistent
## 4107 telephone may fri 773 2 999 0 nonexistent
## 4108 telephone may fri 574 5 999 0 nonexistent
## 4109 telephone may fri 122 6 999 0 nonexistent
## 4110 telephone may fri 343 4 999 0 nonexistent
## 4111 telephone may fri 111 1 999 0 nonexistent
## 4112 telephone may fri 166 1 999 0 nonexistent
## 4113 telephone may fri 469 2 999 0 nonexistent
## 4114 telephone may fri 106 6 999 0 nonexistent
## 4115 telephone may fri 165 3 999 0 nonexistent
## 4116 telephone may fri 178 1 999 0 nonexistent
## 4117 telephone may fri 364 2 999 0 nonexistent
## 4118 telephone may fri 185 4 999 0 nonexistent
## 4119 telephone may fri 224 4 999 0 nonexistent
## 4120 telephone may fri 226 2 999 0 nonexistent
## 4121 telephone may fri 301 2 999 0 nonexistent
## 4122 telephone may fri 201 3 999 0 nonexistent
## 4123 telephone may fri 83 2 999 0 nonexistent
## 4124 telephone may fri 339 2 999 0 nonexistent
## 4125 telephone may fri 478 2 999 0 nonexistent
## 4126 telephone may fri 13 5 999 0 nonexistent
## 4127 telephone may fri 242 3 999 0 nonexistent
## 4128 telephone may fri 55 4 999 0 nonexistent
## 4129 telephone may fri 281 27 999 0 nonexistent
## 4130 telephone may fri 210 1 999 0 nonexistent
## 4131 telephone may fri 423 2 999 0 nonexistent
## 4132 telephone may fri 200 1 999 0 nonexistent
## 4133 telephone may fri 109 2 999 0 nonexistent
## 4134 telephone may fri 233 2 999 0 nonexistent
## 4135 telephone may fri 133 2 999 0 nonexistent
## 4136 telephone may fri 209 3 999 0 nonexistent
## 4137 telephone may fri 114 4 999 0 nonexistent
## 4138 telephone may fri 319 2 999 0 nonexistent
## 4139 telephone may fri 83 3 999 0 nonexistent
## 4140 telephone may fri 123 2 999 0 nonexistent
## 4141 telephone may fri 167 4 999 0 nonexistent
## 4142 telephone may fri 89 4 999 0 nonexistent
## 4143 telephone may fri 304 2 999 0 nonexistent
## 4144 telephone may fri 82 7 999 0 nonexistent
## 4145 telephone may fri 76 4 999 0 nonexistent
## 4146 telephone may fri 147 1 999 0 nonexistent
## 4147 telephone may fri 243 1 999 0 nonexistent
## 4148 telephone may fri 124 2 999 0 nonexistent
## 4149 telephone may fri 488 1 999 0 nonexistent
## 4150 telephone may fri 157 1 999 0 nonexistent
## 4151 telephone may fri 700 3 999 0 nonexistent
## 4152 telephone may fri 281 1 999 0 nonexistent
## 4153 telephone may fri 211 3 999 0 nonexistent
## 4154 telephone may fri 160 3 999 0 nonexistent
## 4155 telephone may fri 138 6 999 0 nonexistent
## 4156 telephone may fri 92 1 999 0 nonexistent
## 4157 telephone may fri 247 1 999 0 nonexistent
## 4158 telephone may fri 153 4 999 0 nonexistent
## 4159 telephone may fri 241 2 999 0 nonexistent
## 4160 telephone may fri 211 4 999 0 nonexistent
## 4161 telephone may fri 493 2 999 0 nonexistent
## 4162 telephone may fri 107 2 999 0 nonexistent
## 4163 telephone may fri 1438 2 999 0 nonexistent
## 4164 telephone may fri 172 3 999 0 nonexistent
## 4165 telephone may fri 159 3 999 0 nonexistent
## 4166 telephone may fri 29 3 999 0 nonexistent
## 4167 telephone may fri 76 2 999 0 nonexistent
## 4168 telephone may fri 185 4 999 0 nonexistent
## 4169 telephone may fri 569 3 999 0 nonexistent
## 4170 telephone may fri 95 4 999 0 nonexistent
## 4171 telephone may fri 557 2 999 0 nonexistent
## 4172 telephone may fri 160 3 999 0 nonexistent
## 4173 telephone may fri 209 3 999 0 nonexistent
## 4174 telephone may fri 335 3 999 0 nonexistent
## 4175 telephone may fri 372 3 999 0 nonexistent
## 4176 telephone may fri 92 3 999 0 nonexistent
## 4177 telephone may fri 178 2 999 0 nonexistent
## 4178 telephone may fri 85 2 999 0 nonexistent
## 4179 telephone may fri 95 12 999 0 nonexistent
## 4180 telephone may fri 134 10 999 0 nonexistent
## 4181 telephone may fri 63 2 999 0 nonexistent
## 4182 telephone may fri 67 13 999 0 nonexistent
## 4183 telephone may fri 77 3 999 0 nonexistent
## 4184 telephone may fri 292 2 999 0 nonexistent
## 4185 telephone may fri 57 5 999 0 nonexistent
## 4186 telephone may fri 38 11 999 0 nonexistent
## 4187 telephone may fri 151 9 999 0 nonexistent
## 4188 telephone may fri 331 3 999 0 nonexistent
## 4189 telephone may fri 100 4 999 0 nonexistent
## 4190 telephone may fri 358 2 999 0 nonexistent
## 4191 telephone may fri 181 16 999 0 nonexistent
## 4192 telephone may fri 188 6 999 0 nonexistent
## 4193 telephone may fri 203 5 999 0 nonexistent
## 4194 telephone may fri 61 2 999 0 nonexistent
## 4195 telephone may fri 297 2 999 0 nonexistent
## 4196 telephone may fri 219 2 999 0 nonexistent
## 4197 telephone may fri 129 6 999 0 nonexistent
## 4198 telephone may fri 266 2 999 0 nonexistent
## 4199 telephone may fri 559 3 999 0 nonexistent
## 4200 telephone may fri 162 3 999 0 nonexistent
## 4201 telephone may fri 75 3 999 0 nonexistent
## 4202 telephone may fri 352 2 999 0 nonexistent
## 4203 telephone may fri 204 4 999 0 nonexistent
## 4204 telephone may fri 248 4 999 0 nonexistent
## 4205 telephone may fri 82 2 999 0 nonexistent
## 4206 telephone may fri 259 2 999 0 nonexistent
## 4207 telephone may fri 703 2 999 0 nonexistent
## 4208 telephone may fri 100 4 999 0 nonexistent
## 4209 telephone may fri 348 2 999 0 nonexistent
## 4210 telephone may fri 146 6 999 0 nonexistent
## 4211 telephone may fri 34 2 999 0 nonexistent
## 4212 telephone may fri 297 3 999 0 nonexistent
## 4213 telephone may fri 22 2 999 0 nonexistent
## 4214 telephone may fri 106 3 999 0 nonexistent
## 4215 telephone may fri 465 4 999 0 nonexistent
## 4216 telephone may fri 104 5 999 0 nonexistent
## 4217 telephone may fri 213 4 999 0 nonexistent
## 4218 telephone may fri 74 4 999 0 nonexistent
## 4219 telephone may fri 245 4 999 0 nonexistent
## 4220 telephone may fri 252 5 999 0 nonexistent
## 4221 telephone may fri 317 4 999 0 nonexistent
## 4222 telephone may fri 93 8 999 0 nonexistent
## 4223 telephone may fri 116 5 999 0 nonexistent
## 4224 telephone may fri 386 2 999 0 nonexistent
## 4225 telephone may fri 146 4 999 0 nonexistent
## 4226 telephone may fri 215 4 999 0 nonexistent
## 4227 telephone may fri 90 3 999 0 nonexistent
## 4228 telephone may fri 260 3 999 0 nonexistent
## 4229 telephone may fri 107 3 999 0 nonexistent
## 4230 telephone may fri 164 3 999 0 nonexistent
## 4231 telephone may fri 427 2 999 0 nonexistent
## 4232 telephone may fri 1222 5 999 0 nonexistent
## 4233 telephone may fri 426 9 999 0 nonexistent
## 4234 telephone may fri 456 4 999 0 nonexistent
## 4235 telephone may fri 105 4 999 0 nonexistent
## 4236 telephone may fri 27 7 999 0 nonexistent
## 4237 telephone may fri 137 3 999 0 nonexistent
## 4238 telephone may fri 100 4 999 0 nonexistent
## 4239 telephone may fri 1034 9 999 0 nonexistent
## 4240 telephone may fri 159 3 999 0 nonexistent
## 4241 telephone may fri 159 5 999 0 nonexistent
## 4242 telephone may mon 117 2 999 0 nonexistent
## 4243 telephone may mon 85 2 999 0 nonexistent
## 4244 telephone may mon 49 1 999 0 nonexistent
## 4245 telephone may mon 260 5 999 0 nonexistent
## 4246 telephone may mon 193 1 999 0 nonexistent
## 4247 telephone may mon 373 2 999 0 nonexistent
## 4248 telephone may mon 336 1 999 0 nonexistent
## 4249 telephone may mon 200 2 999 0 nonexistent
## 4250 telephone may mon 501 2 999 0 nonexistent
## 4251 telephone may mon 80 1 999 0 nonexistent
## 4252 telephone may mon 299 1 999 0 nonexistent
## 4253 telephone may mon 207 1 999 0 nonexistent
## 4254 telephone may mon 125 1 999 0 nonexistent
## 4255 telephone may mon 237 1 999 0 nonexistent
## 4256 telephone may mon 224 1 999 0 nonexistent
## 4257 telephone may mon 183 1 999 0 nonexistent
## 4258 telephone may mon 63 1 999 0 nonexistent
## 4259 telephone may mon 188 1 999 0 nonexistent
## 4260 telephone may mon 897 5 999 0 nonexistent
## 4261 telephone may mon 168 1 999 0 nonexistent
## 4262 telephone may mon 322 1 999 0 nonexistent
## 4263 telephone may mon 317 1 999 0 nonexistent
## 4264 telephone may mon 511 1 999 0 nonexistent
## 4265 telephone may mon 155 1 999 0 nonexistent
## 4266 telephone may mon 247 1 999 0 nonexistent
## 4267 telephone may mon 88 1 999 0 nonexistent
## 4268 telephone may mon 31 1 999 0 nonexistent
## 4269 telephone may mon 142 3 999 0 nonexistent
## 4270 telephone may mon 158 7 999 0 nonexistent
## 4271 telephone may mon 129 3 999 0 nonexistent
## 4272 telephone may mon 122 4 999 0 nonexistent
## 4273 telephone may mon 120 2 999 0 nonexistent
## 4274 telephone may mon 180 2 999 0 nonexistent
## 4275 telephone may mon 329 1 999 0 nonexistent
## 4276 telephone may mon 204 1 999 0 nonexistent
## 4277 telephone may mon 120 1 999 0 nonexistent
## 4278 telephone may mon 19 17 999 0 nonexistent
## 4279 telephone may mon 460 1 999 0 nonexistent
## 4280 telephone may mon 437 1 999 0 nonexistent
## 4281 telephone may mon 76 2 999 0 nonexistent
## 4282 telephone may mon 226 1 999 0 nonexistent
## 4283 telephone may mon 109 1 999 0 nonexistent
## 4284 telephone may mon 219 1 999 0 nonexistent
## 4285 telephone may mon 41 2 999 0 nonexistent
## 4286 telephone may mon 581 1 999 0 nonexistent
## 4287 telephone may mon 131 2 999 0 nonexistent
## 4288 telephone may mon 50 2 999 0 nonexistent
## 4289 telephone may mon 130 1 999 0 nonexistent
## 4290 telephone may mon 80 1 999 0 nonexistent
## 4291 telephone may mon 470 1 999 0 nonexistent
## 4292 telephone may mon 281 1 999 0 nonexistent
## 4293 telephone may mon 391 1 999 0 nonexistent
## 4294 telephone may mon 24 1 999 0 nonexistent
## 4295 telephone may mon 210 1 999 0 nonexistent
## 4296 telephone may mon 367 4 999 0 nonexistent
## 4297 telephone may mon 107 2 999 0 nonexistent
## 4298 telephone may mon 228 1 999 0 nonexistent
## 4299 telephone may mon 153 1 999 0 nonexistent
## 4300 telephone may mon 76 1 999 0 nonexistent
## 4301 telephone may mon 111 1 999 0 nonexistent
## 4302 telephone may mon 168 1 999 0 nonexistent
## 4303 telephone may mon 219 1 999 0 nonexistent
## 4304 telephone may mon 14 32 999 0 nonexistent
## 4305 telephone may mon 166 2 999 0 nonexistent
## 4306 telephone may mon 208 2 999 0 nonexistent
## 4307 telephone may mon 483 1 999 0 nonexistent
## 4308 telephone may mon 129 1 999 0 nonexistent
## 4309 telephone may mon 130 1 999 0 nonexistent
## 4310 telephone may mon 754 1 999 0 nonexistent
## 4311 telephone may mon 258 1 999 0 nonexistent
## 4312 telephone may mon 227 1 999 0 nonexistent
## 4313 telephone may mon 266 3 999 0 nonexistent
## 4314 telephone may mon 232 1 999 0 nonexistent
## 4315 telephone may mon 164 1 999 0 nonexistent
## 4316 telephone may mon 167 1 999 0 nonexistent
## 4317 telephone may mon 103 1 999 0 nonexistent
## 4318 telephone may mon 168 1 999 0 nonexistent
## 4319 telephone may mon 317 1 999 0 nonexistent
## 4320 telephone may mon 388 1 999 0 nonexistent
## 4321 telephone may mon 62 1 999 0 nonexistent
## 4322 telephone may mon 142 1 999 0 nonexistent
## 4323 telephone may mon 63 1 999 0 nonexistent
## 4324 telephone may mon 212 1 999 0 nonexistent
## 4325 telephone may mon 149 1 999 0 nonexistent
## 4326 telephone may mon 161 3 999 0 nonexistent
## 4327 telephone may mon 369 1 999 0 nonexistent
## 4328 telephone may mon 170 2 999 0 nonexistent
## 4329 telephone may mon 974 1 999 0 nonexistent
## 4330 telephone may mon 167 1 999 0 nonexistent
## 4331 telephone may mon 74 1 999 0 nonexistent
## 4332 telephone may mon 96 1 999 0 nonexistent
## 4333 telephone may mon 140 2 999 0 nonexistent
## 4334 telephone may mon 396 1 999 0 nonexistent
## 4335 telephone may mon 61 1 999 0 nonexistent
## 4336 telephone may mon 252 1 999 0 nonexistent
## 4337 telephone may mon 374 1 999 0 nonexistent
## 4338 telephone may mon 351 1 999 0 nonexistent
## 4339 telephone may mon 262 2 999 0 nonexistent
## 4340 telephone may mon 367 2 999 0 nonexistent
## 4341 telephone may mon 115 1 999 0 nonexistent
## 4342 telephone may mon 61 1 999 0 nonexistent
## 4343 telephone may mon 142 1 999 0 nonexistent
## 4344 telephone may mon 133 1 999 0 nonexistent
## 4345 telephone may mon 52 1 999 0 nonexistent
## 4346 telephone may mon 377 1 999 0 nonexistent
## 4347 telephone may mon 77 1 999 0 nonexistent
## 4348 telephone may mon 200 1 999 0 nonexistent
## 4349 telephone may mon 144 1 999 0 nonexistent
## 4350 telephone may mon 473 5 999 0 nonexistent
## 4351 telephone may mon 90 4 999 0 nonexistent
## 4352 telephone may mon 470 1 999 0 nonexistent
## 4353 telephone may mon 302 1 999 0 nonexistent
## 4354 telephone may mon 81 8 999 0 nonexistent
## 4355 telephone may mon 225 1 999 0 nonexistent
## 4356 telephone may mon 252 2 999 0 nonexistent
## 4357 telephone may mon 247 1 999 0 nonexistent
## 4358 telephone may mon 16 11 999 0 nonexistent
## 4359 telephone may mon 131 4 999 0 nonexistent
## 4360 telephone may mon 80 2 999 0 nonexistent
## 4361 telephone may mon 90 2 999 0 nonexistent
## 4362 telephone may mon 592 4 999 0 nonexistent
## 4363 telephone may mon 85 1 999 0 nonexistent
## 4364 telephone may mon 153 3 999 0 nonexistent
## 4365 telephone may mon 207 2 999 0 nonexistent
## 4366 telephone may mon 440 1 999 0 nonexistent
## 4367 telephone may mon 127 1 999 0 nonexistent
## 4368 telephone may mon 269 1 999 0 nonexistent
## 4369 telephone may mon 144 3 999 0 nonexistent
## 4370 telephone may mon 107 1 999 0 nonexistent
## 4371 telephone may mon 130 1 999 0 nonexistent
## 4372 telephone may mon 167 3 999 0 nonexistent
## 4373 telephone may mon 77 1 999 0 nonexistent
## 4374 telephone may mon 407 2 999 0 nonexistent
## 4375 telephone may mon 136 1 999 0 nonexistent
## 4376 telephone may mon 293 1 999 0 nonexistent
## 4377 telephone may mon 97 3 999 0 nonexistent
## 4378 telephone may mon 145 1 999 0 nonexistent
## 4379 telephone may mon 162 2 999 0 nonexistent
## 4380 telephone may mon 105 1 999 0 nonexistent
## 4381 telephone may mon 596 1 999 0 nonexistent
## 4382 telephone may mon 134 1 999 0 nonexistent
## 4383 telephone may mon 108 1 999 0 nonexistent
## 4384 telephone may mon 161 1 999 0 nonexistent
## 4385 telephone may mon 65 1 999 0 nonexistent
## 4386 telephone may mon 188 1 999 0 nonexistent
## 4387 telephone may mon 312 1 999 0 nonexistent
## 4388 telephone may mon 130 1 999 0 nonexistent
## 4389 telephone may mon 175 2 999 0 nonexistent
## 4390 telephone may mon 87 2 999 0 nonexistent
## 4391 telephone may mon 123 14 999 0 nonexistent
## 4392 telephone may mon 204 2 999 0 nonexistent
## 4393 telephone may mon 150 2 999 0 nonexistent
## 4394 telephone may mon 109 7 999 0 nonexistent
## 4395 telephone may mon 243 6 999 0 nonexistent
## 4396 telephone may mon 120 1 999 0 nonexistent
## 4397 telephone may mon 182 5 999 0 nonexistent
## 4398 telephone may mon 70 3 999 0 nonexistent
## 4399 telephone may mon 45 4 999 0 nonexistent
## 4400 telephone may mon 280 3 999 0 nonexistent
## 4401 telephone may mon 215 2 999 0 nonexistent
## 4402 telephone may mon 147 3 999 0 nonexistent
## 4403 telephone may mon 222 2 999 0 nonexistent
## 4404 telephone may mon 404 1 999 0 nonexistent
## 4405 telephone may mon 306 3 999 0 nonexistent
## 4406 telephone may mon 252 2 999 0 nonexistent
## 4407 telephone may mon 127 2 999 0 nonexistent
## 4408 telephone may mon 140 2 999 0 nonexistent
## 4409 telephone may mon 200 2 999 0 nonexistent
## 4410 telephone may mon 916 2 999 0 nonexistent
## 4411 telephone may mon 629 2 999 0 nonexistent
## 4412 telephone may mon 155 6 999 0 nonexistent
## 4413 telephone may mon 159 3 999 0 nonexistent
## 4414 telephone may mon 111 1 999 0 nonexistent
## 4415 telephone may mon 729 2 999 0 nonexistent
## 4416 telephone may mon 434 4 999 0 nonexistent
## 4417 telephone may mon 250 3 999 0 nonexistent
## 4418 telephone may mon 107 3 999 0 nonexistent
## 4419 telephone may mon 272 6 999 0 nonexistent
## 4420 telephone may mon 574 3 999 0 nonexistent
## 4421 telephone may mon 114 3 999 0 nonexistent
## 4422 telephone may mon 175 3 999 0 nonexistent
## 4423 telephone may mon 257 3 999 0 nonexistent
## 4424 telephone may mon 268 3 999 0 nonexistent
## 4425 telephone may mon 225 1 999 0 nonexistent
## 4426 telephone may mon 327 1 999 0 nonexistent
## 4427 telephone may mon 99 3 999 0 nonexistent
## 4428 telephone may mon 293 4 999 0 nonexistent
## 4429 telephone may mon 68 3 999 0 nonexistent
## 4430 telephone may mon 124 2 999 0 nonexistent
## 4431 telephone may mon 519 2 999 0 nonexistent
## 4432 telephone may mon 150 1 999 0 nonexistent
## 4433 telephone may mon 175 1 999 0 nonexistent
## 4434 telephone may mon 289 1 999 0 nonexistent
## 4435 telephone may mon 100 8 999 0 nonexistent
## 4436 telephone may mon 321 1 999 0 nonexistent
## 4437 telephone may mon 614 2 999 0 nonexistent
## 4438 telephone may mon 248 2 999 0 nonexistent
## 4439 telephone may mon 93 2 999 0 nonexistent
## 4440 telephone may mon 355 2 999 0 nonexistent
## 4441 telephone may mon 177 1 999 0 nonexistent
## 4442 telephone may mon 245 3 999 0 nonexistent
## 4443 telephone may mon 192 6 999 0 nonexistent
## 4444 telephone may mon 160 3 999 0 nonexistent
## 4445 telephone may mon 249 2 999 0 nonexistent
## 4446 telephone may mon 147 1 999 0 nonexistent
## 4447 telephone may mon 131 1 999 0 nonexistent
## 4448 telephone may mon 115 2 999 0 nonexistent
## 4449 telephone may mon 349 2 999 0 nonexistent
## 4450 telephone may mon 114 2 999 0 nonexistent
## 4451 telephone may mon 445 2 999 0 nonexistent
## 4452 telephone may mon 341 12 999 0 nonexistent
## 4453 telephone may mon 796 1 999 0 nonexistent
## 4454 telephone may mon 76 3 999 0 nonexistent
## 4455 telephone may mon 126 2 999 0 nonexistent
## 4456 telephone may mon 91 2 999 0 nonexistent
## 4457 telephone may mon 52 3 999 0 nonexistent
## 4458 telephone may mon 78 2 999 0 nonexistent
## 4459 telephone may mon 471 1 999 0 nonexistent
## 4460 telephone may mon 724 1 999 0 nonexistent
## 4461 telephone may mon 99 1 999 0 nonexistent
## 4462 telephone may mon 293 1 999 0 nonexistent
## 4463 telephone may mon 333 1 999 0 nonexistent
## 4464 telephone may mon 523 2 999 0 nonexistent
## 4465 telephone may mon 151 3 999 0 nonexistent
## 4466 telephone may mon 135 2 999 0 nonexistent
## 4467 telephone may mon 472 3 999 0 nonexistent
## 4468 telephone may mon 113 4 999 0 nonexistent
## 4469 telephone may mon 372 14 999 0 nonexistent
## 4470 telephone may mon 603 1 999 0 nonexistent
## 4471 telephone may mon 85 2 999 0 nonexistent
## 4472 telephone may mon 76 2 999 0 nonexistent
## 4473 telephone may mon 402 2 999 0 nonexistent
## 4474 telephone may mon 129 3 999 0 nonexistent
## 4475 telephone may mon 535 6 999 0 nonexistent
## 4476 telephone may mon 48 2 999 0 nonexistent
## 4477 telephone may mon 169 4 999 0 nonexistent
## 4478 telephone may mon 116 4 999 0 nonexistent
## 4479 telephone may mon 100 2 999 0 nonexistent
## 4480 telephone may mon 212 2 999 0 nonexistent
## 4481 telephone may mon 304 4 999 0 nonexistent
## 4482 telephone may mon 102 2 999 0 nonexistent
## 4483 telephone may mon 291 2 999 0 nonexistent
## 4484 telephone may mon 207 2 999 0 nonexistent
## 4485 telephone may mon 197 2 999 0 nonexistent
## 4486 telephone may mon 125 6 999 0 nonexistent
## 4487 telephone may mon 114 2 999 0 nonexistent
## 4488 telephone may mon 319 4 999 0 nonexistent
## 4489 telephone may mon 346 2 999 0 nonexistent
## 4490 telephone may mon 157 3 999 0 nonexistent
## 4491 telephone may mon 160 11 999 0 nonexistent
## 4492 telephone may mon 83 3 999 0 nonexistent
## 4493 telephone may mon 97 3 999 0 nonexistent
## 4494 telephone may mon 98 4 999 0 nonexistent
## 4495 telephone may mon 451 2 999 0 nonexistent
## 4496 telephone may mon 34 3 999 0 nonexistent
## 4497 telephone may mon 79 5 999 0 nonexistent
## 4498 telephone may mon 109 2 999 0 nonexistent
## 4499 telephone may mon 454 3 999 0 nonexistent
## 4500 telephone may mon 251 3 999 0 nonexistent
## 4501 telephone may mon 166 2 999 0 nonexistent
## 4502 telephone may mon 816 2 999 0 nonexistent
## 4503 telephone may mon 87 2 999 0 nonexistent
## 4504 telephone may mon 81 6 999 0 nonexistent
## 4505 telephone may mon 109 5 999 0 nonexistent
## 4506 telephone may mon 375 2 999 0 nonexistent
## 4507 telephone may mon 51 2 999 0 nonexistent
## 4508 telephone may mon 118 4 999 0 nonexistent
## 4509 telephone may mon 178 5 999 0 nonexistent
## 4510 telephone may mon 155 2 999 0 nonexistent
## 4511 telephone may mon 173 3 999 0 nonexistent
## 4512 telephone may mon 304 4 999 0 nonexistent
## 4513 telephone may mon 583 6 999 0 nonexistent
## 4514 telephone may mon 138 2 999 0 nonexistent
## 4515 telephone may mon 250 2 999 0 nonexistent
## 4516 telephone may mon 14 11 999 0 nonexistent
## 4517 telephone may mon 83 1 999 0 nonexistent
## 4518 telephone may mon 543 4 999 0 nonexistent
## 4519 telephone may mon 158 4 999 0 nonexistent
## 4520 telephone may mon 365 3 999 0 nonexistent
## 4521 telephone may mon 304 3 999 0 nonexistent
## 4522 telephone may mon 232 3 999 0 nonexistent
## 4523 telephone may mon 411 3 999 0 nonexistent
## 4524 telephone may mon 149 7 999 0 nonexistent
## 4525 telephone may mon 63 3 999 0 nonexistent
## 4526 telephone may mon 29 2 999 0 nonexistent
## 4527 telephone may mon 162 4 999 0 nonexistent
## 4528 telephone may mon 23 10 999 0 nonexistent
## 4529 telephone may mon 147 6 999 0 nonexistent
## 4530 telephone may mon 90 5 999 0 nonexistent
## 4531 telephone may mon 409 2 999 0 nonexistent
## 4532 telephone may mon 175 5 999 0 nonexistent
## 4533 telephone may mon 96 5 999 0 nonexistent
## 4534 telephone may mon 66 3 999 0 nonexistent
## 4535 telephone may mon 113 5 999 0 nonexistent
## 4536 telephone may mon 232 5 999 0 nonexistent
## 4537 telephone may mon 129 3 999 0 nonexistent
## 4538 telephone may mon 405 4 999 0 nonexistent
## 4539 telephone may mon 251 11 999 0 nonexistent
## 4540 telephone may mon 253 2 999 0 nonexistent
## 4541 telephone may mon 245 3 999 0 nonexistent
## 4542 telephone may mon 188 7 999 0 nonexistent
## 4543 telephone may mon 118 2 999 0 nonexistent
## 4544 telephone may mon 140 2 999 0 nonexistent
## 4545 telephone may mon 102 22 999 0 nonexistent
## 4546 telephone may mon 97 4 999 0 nonexistent
## 4547 telephone may mon 41 2 999 0 nonexistent
## 4548 telephone may mon 329 2 999 0 nonexistent
## 4549 telephone may mon 130 3 999 0 nonexistent
## 4550 telephone may mon 241 2 999 0 nonexistent
## 4551 telephone may mon 308 4 999 0 nonexistent
## 4552 telephone may mon 118 2 999 0 nonexistent
## 4553 telephone may mon 14 16 999 0 nonexistent
## 4554 telephone may mon 125 4 999 0 nonexistent
## 4555 telephone may mon 193 5 999 0 nonexistent
## 4556 telephone may mon 200 3 999 0 nonexistent
## 4557 telephone may mon 349 4 999 0 nonexistent
## 4558 telephone may mon 282 3 999 0 nonexistent
## 4559 telephone may tue 114 3 999 0 nonexistent
## 4560 telephone may tue 172 7 999 0 nonexistent
## 4561 telephone may tue 292 7 999 0 nonexistent
## 4562 telephone may tue 269 3 999 0 nonexistent
## 4563 telephone may tue 376 3 999 0 nonexistent
## 4564 telephone may tue 121 2 999 0 nonexistent
## 4565 telephone may tue 59 4 999 0 nonexistent
## 4566 telephone may tue 67 3 999 0 nonexistent
## 4567 telephone may tue 163 2 999 0 nonexistent
## 4568 telephone may tue 99 3 999 0 nonexistent
## 4569 telephone may tue 27 2 999 0 nonexistent
## 4570 telephone may tue 119 2 999 0 nonexistent
## 4571 telephone may tue 148 4 999 0 nonexistent
## 4572 telephone may tue 222 4 999 0 nonexistent
## 4573 telephone may tue 214 2 999 0 nonexistent
## 4574 telephone may tue 152 2 999 0 nonexistent
## 4575 telephone may tue 75 2 999 0 nonexistent
## 4576 telephone may tue 62 4 999 0 nonexistent
## 4577 telephone may tue 112 3 999 0 nonexistent
## 4578 telephone may tue 220 6 999 0 nonexistent
## 4579 telephone may tue 204 3 999 0 nonexistent
## 4580 telephone may tue 160 6 999 0 nonexistent
## 4581 telephone may tue 233 1 999 0 nonexistent
## 4582 telephone may tue 129 1 999 0 nonexistent
## 4583 telephone may tue 172 1 999 0 nonexistent
## 4584 telephone may tue 578 2 999 0 nonexistent
## 4585 telephone may tue 183 9 999 0 nonexistent
## 4586 telephone may tue 154 1 999 0 nonexistent
## 4587 telephone may tue 111 1 999 0 nonexistent
## 4588 telephone may tue 125 3 999 0 nonexistent
## 4589 telephone may tue 193 5 999 0 nonexistent
## 4590 telephone may tue 287 4 999 0 nonexistent
## 4591 telephone may tue 130 2 999 0 nonexistent
## 4592 telephone may tue 236 1 999 0 nonexistent
## 4593 telephone may tue 336 2 999 0 nonexistent
## 4594 telephone may tue 150 1 999 0 nonexistent
## 4595 telephone may tue 159 1 999 0 nonexistent
## 4596 telephone may tue 197 1 999 0 nonexistent
## 4597 telephone may tue 218 1 999 0 nonexistent
## 4598 telephone may tue 34 3 999 0 nonexistent
## 4599 telephone may tue 386 11 999 0 nonexistent
## 4600 telephone may tue 154 1 999 0 nonexistent
## 4601 telephone may tue 159 2 999 0 nonexistent
## 4602 telephone may tue 157 2 999 0 nonexistent
## 4603 telephone may tue 227 3 999 0 nonexistent
## 4604 telephone may tue 116 1 999 0 nonexistent
## 4605 telephone may tue 205 3 999 0 nonexistent
## 4606 telephone may tue 229 2 999 0 nonexistent
## 4607 telephone may tue 147 1 999 0 nonexistent
## 4608 telephone may tue 147 1 999 0 nonexistent
## 4609 telephone may tue 179 1 999 0 nonexistent
## 4610 telephone may tue 185 1 999 0 nonexistent
## 4611 telephone may tue 171 3 999 0 nonexistent
## 4612 telephone may tue 237 1 999 0 nonexistent
## 4613 telephone may tue 228 1 999 0 nonexistent
## 4614 telephone may tue 269 1 999 0 nonexistent
## 4615 telephone may tue 156 2 999 0 nonexistent
## 4616 telephone may tue 162 1 999 0 nonexistent
## 4617 telephone may tue 674 1 999 0 nonexistent
## 4618 telephone may tue 234 1 999 0 nonexistent
## 4619 telephone may tue 123 1 999 0 nonexistent
## 4620 telephone may tue 275 1 999 0 nonexistent
## 4621 telephone may tue 115 1 999 0 nonexistent
## 4622 telephone may tue 142 1 999 0 nonexistent
## 4623 telephone may tue 99 1 999 0 nonexistent
## 4624 telephone may tue 340 1 999 0 nonexistent
## 4625 telephone may tue 47 1 999 0 nonexistent
## 4626 telephone may tue 182 2 999 0 nonexistent
## 4627 telephone may tue 260 1 999 0 nonexistent
## 4628 telephone may tue 35 1 999 0 nonexistent
## 4629 telephone may tue 121 1 999 0 nonexistent
## 4630 telephone may tue 472 1 999 0 nonexistent
## 4631 telephone may tue 207 2 999 0 nonexistent
## 4632 telephone may tue 597 3 999 0 nonexistent
## 4633 telephone may tue 274 1 999 0 nonexistent
## 4634 telephone may tue 420 1 999 0 nonexistent
## 4635 telephone may tue 532 2 999 0 nonexistent
## 4636 telephone may tue 128 1 999 0 nonexistent
## 4637 telephone may tue 62 4 999 0 nonexistent
## 4638 telephone may tue 111 10 999 0 nonexistent
## 4639 telephone may tue 90 2 999 0 nonexistent
## 4640 telephone may tue 299 1 999 0 nonexistent
## 4641 telephone may tue 181 1 999 0 nonexistent
## 4642 telephone may tue 518 2 999 0 nonexistent
## 4643 telephone may tue 243 2 999 0 nonexistent
## 4644 telephone may tue 472 1 999 0 nonexistent
## 4645 telephone may tue 148 1 999 0 nonexistent
## 4646 telephone may tue 388 2 999 0 nonexistent
## 4647 telephone may tue 255 1 999 0 nonexistent
## 4648 telephone may tue 70 3 999 0 nonexistent
## 4649 telephone may tue 296 2 999 0 nonexistent
## 4650 telephone may tue 550 1 999 0 nonexistent
## 4651 telephone may tue 313 1 999 0 nonexistent
## 4652 telephone may tue 243 2 999 0 nonexistent
## 4653 telephone may tue 77 1 999 0 nonexistent
## 4654 telephone may tue 114 1 999 0 nonexistent
## 4655 telephone may tue 73 2 999 0 nonexistent
## 4656 telephone may tue 290 1 999 0 nonexistent
## 4657 telephone may tue 86 1 999 0 nonexistent
## 4658 telephone may tue 188 1 999 0 nonexistent
## 4659 telephone may tue 106 2 999 0 nonexistent
## 4660 telephone may tue 45 1 999 0 nonexistent
## 4661 telephone may tue 25 1 999 0 nonexistent
## 4662 telephone may tue 114 1 999 0 nonexistent
## 4663 telephone may tue 322 2 999 0 nonexistent
## 4664 telephone may tue 122 1 999 0 nonexistent
## 4665 telephone may tue 121 4 999 0 nonexistent
## 4666 telephone may tue 70 2 999 0 nonexistent
## 4667 telephone may tue 115 1 999 0 nonexistent
## 4668 telephone may tue 305 1 999 0 nonexistent
## 4669 telephone may tue 19 1 999 0 nonexistent
## 4670 telephone may tue 643 2 999 0 nonexistent
## 4671 telephone may tue 371 2 999 0 nonexistent
## 4672 telephone may tue 363 3 999 0 nonexistent
## 4673 telephone may tue 384 1 999 0 nonexistent
## 4674 telephone may tue 492 2 999 0 nonexistent
## 4675 telephone may tue 222 2 999 0 nonexistent
## 4676 telephone may tue 144 1 999 0 nonexistent
## 4677 telephone may tue 426 2 999 0 nonexistent
## 4678 telephone may tue 39 7 999 0 nonexistent
## 4679 telephone may tue 174 1 999 0 nonexistent
## 4680 telephone may tue 151 1 999 0 nonexistent
## 4681 telephone may tue 132 1 999 0 nonexistent
## 4682 telephone may tue 129 1 999 0 nonexistent
## 4683 telephone may tue 106 1 999 0 nonexistent
## 4684 telephone may tue 255 1 999 0 nonexistent
## 4685 telephone may tue 189 1 999 0 nonexistent
## 4686 telephone may tue 173 3 999 0 nonexistent
## 4687 telephone may tue 72 1 999 0 nonexistent
## 4688 telephone may tue 62 4 999 0 nonexistent
## 4689 telephone may tue 310 1 999 0 nonexistent
## 4690 telephone may tue 470 2 999 0 nonexistent
## 4691 telephone may tue 139 1 999 0 nonexistent
## 4692 telephone may tue 169 1 999 0 nonexistent
## 4693 telephone may tue 223 1 999 0 nonexistent
## 4694 telephone may tue 201 2 999 0 nonexistent
## 4695 telephone may tue 596 1 999 0 nonexistent
## 4696 telephone may tue 600 2 999 0 nonexistent
## 4697 telephone may tue 133 1 999 0 nonexistent
## 4698 telephone may tue 43 1 999 0 nonexistent
## 4699 telephone may tue 659 4 999 0 nonexistent
## 4700 telephone may tue 112 1 999 0 nonexistent
## 4701 telephone may tue 124 1 999 0 nonexistent
## 4702 telephone may tue 59 1 999 0 nonexistent
## 4703 telephone may tue 121 1 999 0 nonexistent
## 4704 telephone may tue 98 1 999 0 nonexistent
## 4705 telephone may tue 175 1 999 0 nonexistent
## 4706 telephone may tue 202 1 999 0 nonexistent
## 4707 telephone may tue 185 1 999 0 nonexistent
## 4708 telephone may tue 170 1 999 0 nonexistent
## 4709 telephone may tue 184 1 999 0 nonexistent
## 4710 telephone may tue 261 1 999 0 nonexistent
## 4711 telephone may tue 103 1 999 0 nonexistent
## 4712 telephone may tue 190 1 999 0 nonexistent
## 4713 telephone may tue 198 1 999 0 nonexistent
## 4714 telephone may tue 170 1 999 0 nonexistent
## 4715 telephone may tue 235 5 999 0 nonexistent
## 4716 telephone may tue 166 2 999 0 nonexistent
## 4717 telephone may tue 169 2 999 0 nonexistent
## 4718 telephone may tue 125 1 999 0 nonexistent
## 4719 telephone may tue 265 2 999 0 nonexistent
## 4720 telephone may tue 307 2 999 0 nonexistent
## 4721 telephone may tue 246 1 999 0 nonexistent
## 4722 telephone may tue 290 4 999 0 nonexistent
## 4723 telephone may tue 56 2 999 0 nonexistent
## 4724 telephone may tue 375 1 999 0 nonexistent
## 4725 telephone may tue 290 1 999 0 nonexistent
## 4726 telephone may tue 174 1 999 0 nonexistent
## 4727 telephone may tue 32 1 999 0 nonexistent
## 4728 telephone may tue 521 1 999 0 nonexistent
## 4729 telephone may tue 537 9 999 0 nonexistent
## 4730 telephone may tue 316 1 999 0 nonexistent
## 4731 telephone may tue 332 1 999 0 nonexistent
## 4732 telephone may tue 35 1 999 0 nonexistent
## 4733 telephone may tue 474 1 999 0 nonexistent
## 4734 telephone may tue 395 2 999 0 nonexistent
## 4735 telephone may tue 313 1 999 0 nonexistent
## 4736 telephone may tue 147 1 999 0 nonexistent
## 4737 telephone may tue 123 2 999 0 nonexistent
## 4738 telephone may tue 395 2 999 0 nonexistent
## 4739 telephone may tue 93 10 999 0 nonexistent
## 4740 telephone may tue 166 9 999 0 nonexistent
## 4741 telephone may tue 410 1 999 0 nonexistent
## 4742 telephone may tue 755 1 999 0 nonexistent
## 4743 telephone may tue 139 2 999 0 nonexistent
## 4744 telephone may tue 145 2 999 0 nonexistent
## 4745 telephone may tue 95 1 999 0 nonexistent
## 4746 telephone may tue 193 1 999 0 nonexistent
## 4747 telephone may tue 88 1 999 0 nonexistent
## 4748 telephone may tue 318 1 999 0 nonexistent
## 4749 telephone may tue 405 1 999 0 nonexistent
## 4750 telephone may tue 207 1 999 0 nonexistent
## 4751 telephone may tue 95 4 999 0 nonexistent
## 4752 telephone may tue 272 2 999 0 nonexistent
## 4753 telephone may tue 142 2 999 0 nonexistent
## 4754 telephone may tue 27 1 999 0 nonexistent
## 4755 telephone may tue 237 2 999 0 nonexistent
## 4756 telephone may tue 193 1 999 0 nonexistent
## 4757 telephone may tue 116 3 999 0 nonexistent
## 4758 telephone may tue 99 1 999 0 nonexistent
## 4759 telephone may tue 345 1 999 0 nonexistent
## 4760 telephone may tue 151 1 999 0 nonexistent
## 4761 telephone may tue 376 2 999 0 nonexistent
## emp.var.rate cons.price.idx cons.conf.idx euribor3m nr.employed y
## 1 1.1 93.994 -36.4 4.857 5191 no
## 2 1.1 93.994 -36.4 4.857 5191 no
## 3 1.1 93.994 -36.4 4.857 5191 no
## 4 1.1 93.994 -36.4 4.857 5191 no
## 5 1.1 93.994 -36.4 4.857 5191 no
## 6 1.1 93.994 -36.4 4.857 5191 no
## 7 1.1 93.994 -36.4 4.857 5191 no
## 8 1.1 93.994 -36.4 4.857 5191 no
## 9 1.1 93.994 -36.4 4.857 5191 no
## 10 1.1 93.994 -36.4 4.857 5191 no
## 11 1.1 93.994 -36.4 4.857 5191 no
## 12 1.1 93.994 -36.4 4.857 5191 no
## 13 1.1 93.994 -36.4 4.857 5191 no
## 14 1.1 93.994 -36.4 4.857 5191 no
## 15 1.1 93.994 -36.4 4.857 5191 no
## 16 1.1 93.994 -36.4 4.857 5191 no
## 17 1.1 93.994 -36.4 4.857 5191 no
## 18 1.1 93.994 -36.4 4.857 5191 no
## 19 1.1 93.994 -36.4 4.857 5191 no
## 20 1.1 93.994 -36.4 4.857 5191 no
## 21 1.1 93.994 -36.4 4.857 5191 no
## 22 1.1 93.994 -36.4 4.857 5191 no
## 23 1.1 93.994 -36.4 4.857 5191 no
## 24 1.1 93.994 -36.4 4.857 5191 no
## 25 1.1 93.994 -36.4 4.857 5191 no
## 26 1.1 93.994 -36.4 4.857 5191 no
## 27 1.1 93.994 -36.4 4.857 5191 no
## 28 1.1 93.994 -36.4 4.857 5191 no
## 29 1.1 93.994 -36.4 4.857 5191 no
## 30 1.1 93.994 -36.4 4.857 5191 no
## 31 1.1 93.994 -36.4 4.857 5191 no
## 32 1.1 93.994 -36.4 4.857 5191 no
## 33 1.1 93.994 -36.4 4.857 5191 no
## 34 1.1 93.994 -36.4 4.857 5191 no
## 35 1.1 93.994 -36.4 4.857 5191 no
## 36 1.1 93.994 -36.4 4.857 5191 no
## 37 1.1 93.994 -36.4 4.857 5191 no
## 38 1.1 93.994 -36.4 4.857 5191 no
## 39 1.1 93.994 -36.4 4.857 5191 no
## 40 1.1 93.994 -36.4 4.857 5191 no
## 41 1.1 93.994 -36.4 4.857 5191 no
## 42 1.1 93.994 -36.4 4.857 5191 no
## 43 1.1 93.994 -36.4 4.857 5191 no
## 44 1.1 93.994 -36.4 4.857 5191 no
## 45 1.1 93.994 -36.4 4.857 5191 no
## 46 1.1 93.994 -36.4 4.857 5191 no
## 47 1.1 93.994 -36.4 4.857 5191 no
## 48 1.1 93.994 -36.4 4.857 5191 no
## 49 1.1 93.994 -36.4 4.857 5191 no
## 50 1.1 93.994 -36.4 4.857 5191 no
## 51 1.1 93.994 -36.4 4.857 5191 no
## 52 1.1 93.994 -36.4 4.857 5191 no
## 53 1.1 93.994 -36.4 4.857 5191 no
## 54 1.1 93.994 -36.4 4.857 5191 no
## 55 1.1 93.994 -36.4 4.857 5191 no
## 56 1.1 93.994 -36.4 4.857 5191 no
## 57 1.1 93.994 -36.4 4.857 5191 no
## 58 1.1 93.994 -36.4 4.857 5191 no
## 59 1.1 93.994 -36.4 4.857 5191 no
## 60 1.1 93.994 -36.4 4.857 5191 no
## 61 1.1 93.994 -36.4 4.857 5191 no
## 62 1.1 93.994 -36.4 4.857 5191 no
## 63 1.1 93.994 -36.4 4.857 5191 no
## 64 1.1 93.994 -36.4 4.857 5191 no
## 65 1.1 93.994 -36.4 4.857 5191 no
## 66 1.1 93.994 -36.4 4.857 5191 no
## 67 1.1 93.994 -36.4 4.857 5191 no
## 68 1.1 93.994 -36.4 4.857 5191 no
## 69 1.1 93.994 -36.4 4.857 5191 no
## 70 1.1 93.994 -36.4 4.857 5191 no
## 71 1.1 93.994 -36.4 4.857 5191 no
## 72 1.1 93.994 -36.4 4.857 5191 no
## 73 1.1 93.994 -36.4 4.857 5191 no
## 74 1.1 93.994 -36.4 4.857 5191 no
## 75 1.1 93.994 -36.4 4.857 5191 no
## 76 1.1 93.994 -36.4 4.857 5191 no
## 77 1.1 93.994 -36.4 4.857 5191 no
## 78 1.1 93.994 -36.4 4.857 5191 no
## 79 1.1 93.994 -36.4 4.857 5191 no
## 80 1.1 93.994 -36.4 4.857 5191 no
## 81 1.1 93.994 -36.4 4.857 5191 no
## 82 1.1 93.994 -36.4 4.857 5191 no
## 83 1.1 93.994 -36.4 4.857 5191 no
## 84 1.1 93.994 -36.4 4.857 5191 no
## 85 1.1 93.994 -36.4 4.857 5191 no
## 86 1.1 93.994 -36.4 4.857 5191 no
## 87 1.1 93.994 -36.4 4.857 5191 no
## 88 1.1 93.994 -36.4 4.857 5191 no
## 89 1.1 93.994 -36.4 4.857 5191 no
## 90 1.1 93.994 -36.4 4.857 5191 no
## 91 1.1 93.994 -36.4 4.857 5191 no
## 92 1.1 93.994 -36.4 4.857 5191 no
## 93 1.1 93.994 -36.4 4.857 5191 no
## 94 1.1 93.994 -36.4 4.857 5191 no
## 95 1.1 93.994 -36.4 4.857 5191 no
## 96 1.1 93.994 -36.4 4.857 5191 no
## 97 1.1 93.994 -36.4 4.857 5191 no
## 98 1.1 93.994 -36.4 4.857 5191 no
## 99 1.1 93.994 -36.4 4.857 5191 no
## 100 1.1 93.994 -36.4 4.857 5191 no
## 101 1.1 93.994 -36.4 4.857 5191 no
## 102 1.1 93.994 -36.4 4.857 5191 no
## 103 1.1 93.994 -36.4 4.857 5191 no
## 104 1.1 93.994 -36.4 4.857 5191 no
## 105 1.1 93.994 -36.4 4.857 5191 no
## 106 1.1 93.994 -36.4 4.857 5191 no
## 107 1.1 93.994 -36.4 4.857 5191 no
## 108 1.1 93.994 -36.4 4.857 5191 no
## 109 1.1 93.994 -36.4 4.857 5191 no
## 110 1.1 93.994 -36.4 4.857 5191 no
## 111 1.1 93.994 -36.4 4.857 5191 no
## 112 1.1 93.994 -36.4 4.857 5191 no
## 113 1.1 93.994 -36.4 4.857 5191 no
## 114 1.1 93.994 -36.4 4.857 5191 no
## 115 1.1 93.994 -36.4 4.857 5191 no
## 116 1.1 93.994 -36.4 4.857 5191 no
## 117 1.1 93.994 -36.4 4.857 5191 no
## 118 1.1 93.994 -36.4 4.857 5191 no
## 119 1.1 93.994 -36.4 4.857 5191 no
## 120 1.1 93.994 -36.4 4.857 5191 no
## 121 1.1 93.994 -36.4 4.857 5191 no
## 122 1.1 93.994 -36.4 4.857 5191 no
## 123 1.1 93.994 -36.4 4.857 5191 no
## 124 1.1 93.994 -36.4 4.857 5191 no
## 125 1.1 93.994 -36.4 4.857 5191 no
## 126 1.1 93.994 -36.4 4.857 5191 no
## 127 1.1 93.994 -36.4 4.857 5191 no
## 128 1.1 93.994 -36.4 4.857 5191 no
## 129 1.1 93.994 -36.4 4.857 5191 no
## 130 1.1 93.994 -36.4 4.857 5191 no
## 131 1.1 93.994 -36.4 4.857 5191 no
## 132 1.1 93.994 -36.4 4.857 5191 no
## 133 1.1 93.994 -36.4 4.857 5191 no
## 134 1.1 93.994 -36.4 4.857 5191 no
## 135 1.1 93.994 -36.4 4.857 5191 no
## 136 1.1 93.994 -36.4 4.857 5191 no
## 137 1.1 93.994 -36.4 4.857 5191 no
## 138 1.1 93.994 -36.4 4.857 5191 no
## 139 1.1 93.994 -36.4 4.857 5191 no
## 140 1.1 93.994 -36.4 4.857 5191 no
## 141 1.1 93.994 -36.4 4.857 5191 no
## 142 1.1 93.994 -36.4 4.857 5191 no
## 143 1.1 93.994 -36.4 4.857 5191 no
## 144 1.1 93.994 -36.4 4.857 5191 no
## 145 1.1 93.994 -36.4 4.857 5191 no
## 146 1.1 93.994 -36.4 4.857 5191 no
## 147 1.1 93.994 -36.4 4.857 5191 no
## 148 1.1 93.994 -36.4 4.857 5191 no
## 149 1.1 93.994 -36.4 4.857 5191 no
## 150 1.1 93.994 -36.4 4.857 5191 no
## 151 1.1 93.994 -36.4 4.857 5191 no
## 152 1.1 93.994 -36.4 4.857 5191 no
## 153 1.1 93.994 -36.4 4.857 5191 no
## 154 1.1 93.994 -36.4 4.857 5191 no
## 155 1.1 93.994 -36.4 4.857 5191 no
## 156 1.1 93.994 -36.4 4.857 5191 no
## 157 1.1 93.994 -36.4 4.857 5191 no
## 158 1.1 93.994 -36.4 4.857 5191 no
## 159 1.1 93.994 -36.4 4.857 5191 no
## 160 1.1 93.994 -36.4 4.857 5191 no
## 161 1.1 93.994 -36.4 4.857 5191 no
## 162 1.1 93.994 -36.4 4.857 5191 no
## 163 1.1 93.994 -36.4 4.857 5191 no
## 164 1.1 93.994 -36.4 4.857 5191 no
## 165 1.1 93.994 -36.4 4.857 5191 no
## 166 1.1 93.994 -36.4 4.857 5191 no
## 167 1.1 93.994 -36.4 4.857 5191 no
## 168 1.1 93.994 -36.4 4.857 5191 no
## 169 1.1 93.994 -36.4 4.857 5191 no
## 170 1.1 93.994 -36.4 4.857 5191 no
## 171 1.1 93.994 -36.4 4.857 5191 no
## 172 1.1 93.994 -36.4 4.857 5191 no
## 173 1.1 93.994 -36.4 4.857 5191 no
## 174 1.1 93.994 -36.4 4.857 5191 no
## 175 1.1 93.994 -36.4 4.857 5191 no
## 176 1.1 93.994 -36.4 4.857 5191 no
## 177 1.1 93.994 -36.4 4.857 5191 no
## 178 1.1 93.994 -36.4 4.857 5191 no
## 179 1.1 93.994 -36.4 4.857 5191 no
## 180 1.1 93.994 -36.4 4.857 5191 no
## 181 1.1 93.994 -36.4 4.857 5191 no
## 182 1.1 93.994 -36.4 4.857 5191 no
## 183 1.1 93.994 -36.4 4.857 5191 no
## 184 1.1 93.994 -36.4 4.857 5191 no
## 185 1.1 93.994 -36.4 4.857 5191 no
## 186 1.1 93.994 -36.4 4.857 5191 no
## 187 1.1 93.994 -36.4 4.857 5191 no
## 188 1.1 93.994 -36.4 4.857 5191 no
## 189 1.1 93.994 -36.4 4.857 5191 no
## 190 1.1 93.994 -36.4 4.857 5191 no
## 191 1.1 93.994 -36.4 4.857 5191 no
## 192 1.1 93.994 -36.4 4.857 5191 no
## 193 1.1 93.994 -36.4 4.857 5191 no
## 194 1.1 93.994 -36.4 4.857 5191 no
## 195 1.1 93.994 -36.4 4.857 5191 no
## 196 1.1 93.994 -36.4 4.857 5191 no
## 197 1.1 93.994 -36.4 4.857 5191 no
## 198 1.1 93.994 -36.4 4.857 5191 no
## 199 1.1 93.994 -36.4 4.857 5191 no
## 200 1.1 93.994 -36.4 4.857 5191 no
## 201 1.1 93.994 -36.4 4.857 5191 no
## 202 1.1 93.994 -36.4 4.857 5191 no
## 203 1.1 93.994 -36.4 4.857 5191 no
## 204 1.1 93.994 -36.4 4.857 5191 no
## 205 1.1 93.994 -36.4 4.857 5191 no
## 206 1.1 93.994 -36.4 4.857 5191 no
## 207 1.1 93.994 -36.4 4.857 5191 no
## 208 1.1 93.994 -36.4 4.857 5191 no
## 209 1.1 93.994 -36.4 4.857 5191 no
## 210 1.1 93.994 -36.4 4.857 5191 no
## 211 1.1 93.994 -36.4 4.857 5191 no
## 212 1.1 93.994 -36.4 4.857 5191 no
## 213 1.1 93.994 -36.4 4.857 5191 no
## 214 1.1 93.994 -36.4 4.857 5191 no
## 215 1.1 93.994 -36.4 4.857 5191 no
## 216 1.1 93.994 -36.4 4.857 5191 no
## 217 1.1 93.994 -36.4 4.857 5191 no
## 218 1.1 93.994 -36.4 4.857 5191 no
## 219 1.1 93.994 -36.4 4.857 5191 no
## 220 1.1 93.994 -36.4 4.857 5191 no
## 221 1.1 93.994 -36.4 4.857 5191 no
## 222 1.1 93.994 -36.4 4.857 5191 no
## 223 1.1 93.994 -36.4 4.857 5191 no
## 224 1.1 93.994 -36.4 4.857 5191 no
## 225 1.1 93.994 -36.4 4.857 5191 no
## 226 1.1 93.994 -36.4 4.857 5191 no
## 227 1.1 93.994 -36.4 4.857 5191 no
## 228 1.1 93.994 -36.4 4.857 5191 no
## 229 1.1 93.994 -36.4 4.857 5191 no
## 230 1.1 93.994 -36.4 4.857 5191 no
## 231 1.1 93.994 -36.4 4.857 5191 no
## 232 1.1 93.994 -36.4 4.857 5191 no
## 233 1.1 93.994 -36.4 4.857 5191 no
## 234 1.1 93.994 -36.4 4.857 5191 no
## 235 1.1 93.994 -36.4 4.857 5191 no
## 236 1.1 93.994 -36.4 4.857 5191 no
## 237 1.1 93.994 -36.4 4.857 5191 no
## 238 1.1 93.994 -36.4 4.857 5191 no
## 239 1.1 93.994 -36.4 4.857 5191 no
## 240 1.1 93.994 -36.4 4.857 5191 no
## 241 1.1 93.994 -36.4 4.857 5191 no
## 242 1.1 93.994 -36.4 4.857 5191 no
## 243 1.1 93.994 -36.4 4.857 5191 no
## 244 1.1 93.994 -36.4 4.857 5191 no
## 245 1.1 93.994 -36.4 4.857 5191 no
## 246 1.1 93.994 -36.4 4.857 5191 no
## 247 1.1 93.994 -36.4 4.857 5191 no
## 248 1.1 93.994 -36.4 4.857 5191 no
## 249 1.1 93.994 -36.4 4.857 5191 no
## 250 1.1 93.994 -36.4 4.857 5191 no
## 251 1.1 93.994 -36.4 4.857 5191 no
## 252 1.1 93.994 -36.4 4.857 5191 no
## 253 1.1 93.994 -36.4 4.857 5191 no
## 254 1.1 93.994 -36.4 4.857 5191 no
## 255 1.1 93.994 -36.4 4.857 5191 no
## 256 1.1 93.994 -36.4 4.857 5191 no
## 257 1.1 93.994 -36.4 4.857 5191 no
## 258 1.1 93.994 -36.4 4.857 5191 no
## 259 1.1 93.994 -36.4 4.857 5191 no
## 260 1.1 93.994 -36.4 4.857 5191 no
## 261 1.1 93.994 -36.4 4.857 5191 no
## 262 1.1 93.994 -36.4 4.857 5191 no
## 263 1.1 93.994 -36.4 4.857 5191 no
## 264 1.1 93.994 -36.4 4.857 5191 no
## 265 1.1 93.994 -36.4 4.857 5191 no
## 266 1.1 93.994 -36.4 4.857 5191 no
## 267 1.1 93.994 -36.4 4.857 5191 no
## 268 1.1 93.994 -36.4 4.857 5191 no
## 269 1.1 93.994 -36.4 4.857 5191 no
## 270 1.1 93.994 -36.4 4.857 5191 no
## 271 1.1 93.994 -36.4 4.857 5191 no
## 272 1.1 93.994 -36.4 4.857 5191 no
## 273 1.1 93.994 -36.4 4.857 5191 no
## 274 1.1 93.994 -36.4 4.857 5191 no
## 275 1.1 93.994 -36.4 4.857 5191 no
## 276 1.1 93.994 -36.4 4.857 5191 no
## 277 1.1 93.994 -36.4 4.857 5191 no
## 278 1.1 93.994 -36.4 4.857 5191 no
## 279 1.1 93.994 -36.4 4.857 5191 no
## 280 1.1 93.994 -36.4 4.857 5191 no
## 281 1.1 93.994 -36.4 4.857 5191 no
## 282 1.1 93.994 -36.4 4.857 5191 no
## 283 1.1 93.994 -36.4 4.857 5191 no
## 284 1.1 93.994 -36.4 4.857 5191 no
## 285 1.1 93.994 -36.4 4.857 5191 no
## 286 1.1 93.994 -36.4 4.857 5191 no
## 287 1.1 93.994 -36.4 4.857 5191 no
## 288 1.1 93.994 -36.4 4.857 5191 no
## 289 1.1 93.994 -36.4 4.857 5191 no
## 290 1.1 93.994 -36.4 4.857 5191 no
## 291 1.1 93.994 -36.4 4.857 5191 no
## 292 1.1 93.994 -36.4 4.857 5191 no
## 293 1.1 93.994 -36.4 4.857 5191 no
## 294 1.1 93.994 -36.4 4.857 5191 no
## 295 1.1 93.994 -36.4 4.857 5191 no
## 296 1.1 93.994 -36.4 4.857 5191 no
## 297 1.1 93.994 -36.4 4.857 5191 no
## 298 1.1 93.994 -36.4 4.857 5191 no
## 299 1.1 93.994 -36.4 4.857 5191 no
## 300 1.1 93.994 -36.4 4.857 5191 no
## 301 1.1 93.994 -36.4 4.857 5191 no
## 302 1.1 93.994 -36.4 4.857 5191 no
## 303 1.1 93.994 -36.4 4.857 5191 no
## 304 1.1 93.994 -36.4 4.857 5191 no
## 305 1.1 93.994 -36.4 4.857 5191 no
## 306 1.1 93.994 -36.4 4.857 5191 no
## 307 1.1 93.994 -36.4 4.857 5191 no
## 308 1.1 93.994 -36.4 4.857 5191 no
## 309 1.1 93.994 -36.4 4.857 5191 no
## 310 1.1 93.994 -36.4 4.857 5191 no
## 311 1.1 93.994 -36.4 4.857 5191 no
## 312 1.1 93.994 -36.4 4.857 5191 no
## 313 1.1 93.994 -36.4 4.857 5191 no
## 314 1.1 93.994 -36.4 4.857 5191 no
## 315 1.1 93.994 -36.4 4.857 5191 no
## 316 1.1 93.994 -36.4 4.857 5191 no
## 317 1.1 93.994 -36.4 4.857 5191 no
## 318 1.1 93.994 -36.4 4.857 5191 no
## 319 1.1 93.994 -36.4 4.857 5191 no
## 320 1.1 93.994 -36.4 4.857 5191 no
## 321 1.1 93.994 -36.4 4.857 5191 no
## 322 1.1 93.994 -36.4 4.857 5191 no
## 323 1.1 93.994 -36.4 4.857 5191 no
## 324 1.1 93.994 -36.4 4.857 5191 no
## 325 1.1 93.994 -36.4 4.857 5191 no
## 326 1.1 93.994 -36.4 4.857 5191 no
## 327 1.1 93.994 -36.4 4.857 5191 no
## 328 1.1 93.994 -36.4 4.857 5191 no
## 329 1.1 93.994 -36.4 4.857 5191 no
## 330 1.1 93.994 -36.4 4.857 5191 no
## 331 1.1 93.994 -36.4 4.857 5191 no
## 332 1.1 93.994 -36.4 4.857 5191 no
## 333 1.1 93.994 -36.4 4.857 5191 no
## 334 1.1 93.994 -36.4 4.857 5191 no
## 335 1.1 93.994 -36.4 4.857 5191 no
## 336 1.1 93.994 -36.4 4.857 5191 no
## 337 1.1 93.994 -36.4 4.857 5191 no
## 338 1.1 93.994 -36.4 4.857 5191 no
## 339 1.1 93.994 -36.4 4.857 5191 no
## 340 1.1 93.994 -36.4 4.857 5191 no
## 341 1.1 93.994 -36.4 4.857 5191 no
## 342 1.1 93.994 -36.4 4.857 5191 no
## 343 1.1 93.994 -36.4 4.857 5191 no
## 344 1.1 93.994 -36.4 4.857 5191 no
## 345 1.1 93.994 -36.4 4.857 5191 no
## 346 1.1 93.994 -36.4 4.857 5191 no
## 347 1.1 93.994 -36.4 4.857 5191 no
## 348 1.1 93.994 -36.4 4.857 5191 no
## 349 1.1 93.994 -36.4 4.857 5191 no
## 350 1.1 93.994 -36.4 4.857 5191 no
## 351 1.1 93.994 -36.4 4.857 5191 no
## 352 1.1 93.994 -36.4 4.857 5191 no
## 353 1.1 93.994 -36.4 4.857 5191 no
## 354 1.1 93.994 -36.4 4.857 5191 no
## 355 1.1 93.994 -36.4 4.857 5191 no
## 356 1.1 93.994 -36.4 4.857 5191 no
## 357 1.1 93.994 -36.4 4.857 5191 no
## 358 1.1 93.994 -36.4 4.857 5191 no
## 359 1.1 93.994 -36.4 4.857 5191 no
## 360 1.1 93.994 -36.4 4.857 5191 no
## 361 1.1 93.994 -36.4 4.857 5191 no
## 362 1.1 93.994 -36.4 4.857 5191 no
## 363 1.1 93.994 -36.4 4.857 5191 no
## 364 1.1 93.994 -36.4 4.857 5191 no
## 365 1.1 93.994 -36.4 4.857 5191 no
## 366 1.1 93.994 -36.4 4.857 5191 no
## 367 1.1 93.994 -36.4 4.857 5191 no
## 368 1.1 93.994 -36.4 4.857 5191 no
## 369 1.1 93.994 -36.4 4.857 5191 no
## 370 1.1 93.994 -36.4 4.857 5191 no
## 371 1.1 93.994 -36.4 4.857 5191 no
## 372 1.1 93.994 -36.4 4.857 5191 no
## 373 1.1 93.994 -36.4 4.857 5191 no
## 374 1.1 93.994 -36.4 4.857 5191 no
## 375 1.1 93.994 -36.4 4.857 5191 no
## 376 1.1 93.994 -36.4 4.857 5191 no
## 377 1.1 93.994 -36.4 4.857 5191 no
## 378 1.1 93.994 -36.4 4.857 5191 no
## 379 1.1 93.994 -36.4 4.857 5191 no
## 380 1.1 93.994 -36.4 4.857 5191 no
## 381 1.1 93.994 -36.4 4.857 5191 no
## 382 1.1 93.994 -36.4 4.857 5191 no
## 383 1.1 93.994 -36.4 4.857 5191 no
## 384 1.1 93.994 -36.4 4.857 5191 no
## 385 1.1 93.994 -36.4 4.857 5191 no
## 386 1.1 93.994 -36.4 4.857 5191 no
## 387 1.1 93.994 -36.4 4.857 5191 no
## 388 1.1 93.994 -36.4 4.857 5191 no
## 389 1.1 93.994 -36.4 4.857 5191 no
## 390 1.1 93.994 -36.4 4.857 5191 no
## 391 1.1 93.994 -36.4 4.857 5191 no
## 392 1.1 93.994 -36.4 4.857 5191 no
## 393 1.1 93.994 -36.4 4.857 5191 no
## 394 1.1 93.994 -36.4 4.857 5191 no
## 395 1.1 93.994 -36.4 4.857 5191 no
## 396 1.1 93.994 -36.4 4.857 5191 no
## 397 1.1 93.994 -36.4 4.857 5191 no
## 398 1.1 93.994 -36.4 4.857 5191 no
## 399 1.1 93.994 -36.4 4.857 5191 no
## 400 1.1 93.994 -36.4 4.857 5191 no
## 401 1.1 93.994 -36.4 4.857 5191 no
## 402 1.1 93.994 -36.4 4.857 5191 no
## 403 1.1 93.994 -36.4 4.857 5191 no
## 404 1.1 93.994 -36.4 4.857 5191 no
## 405 1.1 93.994 -36.4 4.857 5191 no
## 406 1.1 93.994 -36.4 4.857 5191 no
## 407 1.1 93.994 -36.4 4.857 5191 no
## 408 1.1 93.994 -36.4 4.857 5191 no
## 409 1.1 93.994 -36.4 4.857 5191 no
## 410 1.1 93.994 -36.4 4.857 5191 no
## 411 1.1 93.994 -36.4 4.857 5191 no
## 412 1.1 93.994 -36.4 4.857 5191 no
## 413 1.1 93.994 -36.4 4.857 5191 no
## 414 1.1 93.994 -36.4 4.857 5191 no
## 415 1.1 93.994 -36.4 4.857 5191 no
## 416 1.1 93.994 -36.4 4.857 5191 no
## 417 1.1 93.994 -36.4 4.857 5191 no
## 418 1.1 93.994 -36.4 4.857 5191 no
## 419 1.1 93.994 -36.4 4.857 5191 no
## 420 1.1 93.994 -36.4 4.857 5191 no
## 421 1.1 93.994 -36.4 4.857 5191 no
## 422 1.1 93.994 -36.4 4.857 5191 no
## 423 1.1 93.994 -36.4 4.857 5191 no
## 424 1.1 93.994 -36.4 4.857 5191 no
## 425 1.1 93.994 -36.4 4.857 5191 no
## 426 1.1 93.994 -36.4 4.857 5191 no
## 427 1.1 93.994 -36.4 4.857 5191 no
## 428 1.1 93.994 -36.4 4.857 5191 no
## 429 1.1 93.994 -36.4 4.857 5191 no
## 430 1.1 93.994 -36.4 4.857 5191 no
## 431 1.1 93.994 -36.4 4.857 5191 no
## 432 1.1 93.994 -36.4 4.857 5191 no
## 433 1.1 93.994 -36.4 4.857 5191 no
## 434 1.1 93.994 -36.4 4.857 5191 no
## 435 1.1 93.994 -36.4 4.857 5191 no
## 436 1.1 93.994 -36.4 4.857 5191 no
## 437 1.1 93.994 -36.4 4.857 5191 no
## 438 1.1 93.994 -36.4 4.857 5191 no
## 439 1.1 93.994 -36.4 4.857 5191 no
## 440 1.1 93.994 -36.4 4.857 5191 no
## 441 1.1 93.994 -36.4 4.857 5191 no
## 442 1.1 93.994 -36.4 4.857 5191 no
## 443 1.1 93.994 -36.4 4.857 5191 no
## 444 1.1 93.994 -36.4 4.857 5191 no
## 445 1.1 93.994 -36.4 4.857 5191 no
## 446 1.1 93.994 -36.4 4.857 5191 no
## 447 1.1 93.994 -36.4 4.857 5191 no
## 448 1.1 93.994 -36.4 4.857 5191 no
## 449 1.1 93.994 -36.4 4.857 5191 no
## 450 1.1 93.994 -36.4 4.857 5191 no
## 451 1.1 93.994 -36.4 4.857 5191 no
## 452 1.1 93.994 -36.4 4.857 5191 no
## 453 1.1 93.994 -36.4 4.857 5191 no
## 454 1.1 93.994 -36.4 4.857 5191 no
## 455 1.1 93.994 -36.4 4.857 5191 no
## 456 1.1 93.994 -36.4 4.857 5191 no
## 457 1.1 93.994 -36.4 4.857 5191 no
## 458 1.1 93.994 -36.4 4.857 5191 no
## 459 1.1 93.994 -36.4 4.857 5191 no
## 460 1.1 93.994 -36.4 4.857 5191 no
## 461 1.1 93.994 -36.4 4.857 5191 no
## 462 1.1 93.994 -36.4 4.857 5191 no
## 463 1.1 93.994 -36.4 4.857 5191 no
## 464 1.1 93.994 -36.4 4.857 5191 no
## 465 1.1 93.994 -36.4 4.857 5191 no
## 466 1.1 93.994 -36.4 4.857 5191 no
## 467 1.1 93.994 -36.4 4.857 5191 no
## 468 1.1 93.994 -36.4 4.857 5191 no
## 469 1.1 93.994 -36.4 4.857 5191 no
## 470 1.1 93.994 -36.4 4.857 5191 no
## 471 1.1 93.994 -36.4 4.857 5191 no
## 472 1.1 93.994 -36.4 4.857 5191 no
## 473 1.1 93.994 -36.4 4.857 5191 no
## 474 1.1 93.994 -36.4 4.857 5191 no
## 475 1.1 93.994 -36.4 4.857 5191 no
## 476 1.1 93.994 -36.4 4.857 5191 no
## 477 1.1 93.994 -36.4 4.857 5191 no
## 478 1.1 93.994 -36.4 4.857 5191 no
## 479 1.1 93.994 -36.4 4.857 5191 no
## 480 1.1 93.994 -36.4 4.857 5191 no
## 481 1.1 93.994 -36.4 4.857 5191 no
## 482 1.1 93.994 -36.4 4.857 5191 no
## 483 1.1 93.994 -36.4 4.857 5191 no
## 484 1.1 93.994 -36.4 4.857 5191 no
## 485 1.1 93.994 -36.4 4.857 5191 no
## 486 1.1 93.994 -36.4 4.857 5191 no
## 487 1.1 93.994 -36.4 4.857 5191 no
## 488 1.1 93.994 -36.4 4.857 5191 no
## 489 1.1 93.994 -36.4 4.857 5191 no
## 490 1.1 93.994 -36.4 4.857 5191 no
## 491 1.1 93.994 -36.4 4.857 5191 no
## 492 1.1 93.994 -36.4 4.857 5191 no
## 493 1.1 93.994 -36.4 4.857 5191 no
## 494 1.1 93.994 -36.4 4.857 5191 no
## 495 1.1 93.994 -36.4 4.857 5191 no
## 496 1.1 93.994 -36.4 4.857 5191 no
## 497 1.1 93.994 -36.4 4.857 5191 no
## 498 1.1 93.994 -36.4 4.857 5191 no
## 499 1.1 93.994 -36.4 4.857 5191 no
## 500 1.1 93.994 -36.4 4.857 5191 no
## 501 1.1 93.994 -36.4 4.857 5191 no
## 502 1.1 93.994 -36.4 4.857 5191 no
## 503 1.1 93.994 -36.4 4.857 5191 no
## 504 1.1 93.994 -36.4 4.857 5191 no
## 505 1.1 93.994 -36.4 4.857 5191 no
## 506 1.1 93.994 -36.4 4.857 5191 no
## 507 1.1 93.994 -36.4 4.857 5191 no
## 508 1.1 93.994 -36.4 4.857 5191 no
## 509 1.1 93.994 -36.4 4.857 5191 no
## 510 1.1 93.994 -36.4 4.857 5191 no
## 511 1.1 93.994 -36.4 4.857 5191 no
## 512 1.1 93.994 -36.4 4.857 5191 no
## 513 1.1 93.994 -36.4 4.857 5191 no
## 514 1.1 93.994 -36.4 4.857 5191 no
## 515 1.1 93.994 -36.4 4.857 5191 no
## 516 1.1 93.994 -36.4 4.857 5191 no
## 517 1.1 93.994 -36.4 4.857 5191 no
## 518 1.1 93.994 -36.4 4.857 5191 no
## 519 1.1 93.994 -36.4 4.857 5191 no
## 520 1.1 93.994 -36.4 4.857 5191 no
## 521 1.1 93.994 -36.4 4.857 5191 no
## 522 1.1 93.994 -36.4 4.857 5191 no
## 523 1.1 93.994 -36.4 4.857 5191 no
## 524 1.1 93.994 -36.4 4.857 5191 no
## 525 1.1 93.994 -36.4 4.857 5191 no
## 526 1.1 93.994 -36.4 4.857 5191 no
## 527 1.1 93.994 -36.4 4.857 5191 no
## 528 1.1 93.994 -36.4 4.857 5191 no
## 529 1.1 93.994 -36.4 4.857 5191 no
## 530 1.1 93.994 -36.4 4.857 5191 no
## 531 1.1 93.994 -36.4 4.857 5191 no
## 532 1.1 93.994 -36.4 4.857 5191 no
## 533 1.1 93.994 -36.4 4.857 5191 no
## 534 1.1 93.994 -36.4 4.857 5191 no
## 535 1.1 93.994 -36.4 4.857 5191 no
## 536 1.1 93.994 -36.4 4.857 5191 no
## 537 1.1 93.994 -36.4 4.857 5191 no
## 538 1.1 93.994 -36.4 4.857 5191 no
## 539 1.1 93.994 -36.4 4.857 5191 no
## 540 1.1 93.994 -36.4 4.857 5191 no
## 541 1.1 93.994 -36.4 4.857 5191 no
## 542 1.1 93.994 -36.4 4.857 5191 no
## 543 1.1 93.994 -36.4 4.857 5191 no
## 544 1.1 93.994 -36.4 4.857 5191 no
## 545 1.1 93.994 -36.4 4.857 5191 no
## 546 1.1 93.994 -36.4 4.857 5191 no
## 547 1.1 93.994 -36.4 4.857 5191 no
## 548 1.1 93.994 -36.4 4.857 5191 no
## 549 1.1 93.994 -36.4 4.857 5191 no
## 550 1.1 93.994 -36.4 4.857 5191 no
## 551 1.1 93.994 -36.4 4.857 5191 no
## 552 1.1 93.994 -36.4 4.857 5191 no
## 553 1.1 93.994 -36.4 4.857 5191 no
## 554 1.1 93.994 -36.4 4.857 5191 no
## 555 1.1 93.994 -36.4 4.857 5191 no
## 556 1.1 93.994 -36.4 4.857 5191 no
## 557 1.1 93.994 -36.4 4.857 5191 no
## 558 1.1 93.994 -36.4 4.857 5191 no
## 559 1.1 93.994 -36.4 4.857 5191 no
## 560 1.1 93.994 -36.4 4.857 5191 no
## 561 1.1 93.994 -36.4 4.857 5191 no
## 562 1.1 93.994 -36.4 4.857 5191 no
## 563 1.1 93.994 -36.4 4.857 5191 no
## 564 1.1 93.994 -36.4 4.857 5191 no
## 565 1.1 93.994 -36.4 4.857 5191 no
## 566 1.1 93.994 -36.4 4.857 5191 no
## 567 1.1 93.994 -36.4 4.857 5191 no
## 568 1.1 93.994 -36.4 4.857 5191 no
## 569 1.1 93.994 -36.4 4.857 5191 no
## 570 1.1 93.994 -36.4 4.857 5191 no
## 571 1.1 93.994 -36.4 4.857 5191 no
## 572 1.1 93.994 -36.4 4.857 5191 no
## 573 1.1 93.994 -36.4 4.857 5191 no
## 574 1.1 93.994 -36.4 4.857 5191 no
## 575 1.1 93.994 -36.4 4.857 5191 no
## 576 1.1 93.994 -36.4 4.857 5191 no
## 577 1.1 93.994 -36.4 4.857 5191 no
## 578 1.1 93.994 -36.4 4.857 5191 no
## 579 1.1 93.994 -36.4 4.857 5191 no
## 580 1.1 93.994 -36.4 4.857 5191 no
## 581 1.1 93.994 -36.4 4.857 5191 no
## 582 1.1 93.994 -36.4 4.857 5191 no
## 583 1.1 93.994 -36.4 4.857 5191 no
## 584 1.1 93.994 -36.4 4.857 5191 no
## 585 1.1 93.994 -36.4 4.857 5191 no
## 586 1.1 93.994 -36.4 4.857 5191 no
## 587 1.1 93.994 -36.4 4.857 5191 no
## 588 1.1 93.994 -36.4 4.857 5191 no
## 589 1.1 93.994 -36.4 4.857 5191 no
## 590 1.1 93.994 -36.4 4.857 5191 no
## 591 1.1 93.994 -36.4 4.857 5191 no
## 592 1.1 93.994 -36.4 4.857 5191 no
## 593 1.1 93.994 -36.4 4.857 5191 no
## 594 1.1 93.994 -36.4 4.857 5191 no
## 595 1.1 93.994 -36.4 4.857 5191 no
## 596 1.1 93.994 -36.4 4.856 5191 no
## 597 1.1 93.994 -36.4 4.856 5191 no
## 598 1.1 93.994 -36.4 4.856 5191 no
## 599 1.1 93.994 -36.4 4.856 5191 no
## 600 1.1 93.994 -36.4 4.856 5191 no
## 601 1.1 93.994 -36.4 4.856 5191 no
## 602 1.1 93.994 -36.4 4.856 5191 no
## 603 1.1 93.994 -36.4 4.856 5191 no
## 604 1.1 93.994 -36.4 4.856 5191 no
## 605 1.1 93.994 -36.4 4.856 5191 no
## 606 1.1 93.994 -36.4 4.856 5191 no
## 607 1.1 93.994 -36.4 4.856 5191 no
## 608 1.1 93.994 -36.4 4.856 5191 no
## 609 1.1 93.994 -36.4 4.856 5191 no
## 610 1.1 93.994 -36.4 4.856 5191 no
## 611 1.1 93.994 -36.4 4.856 5191 no
## 612 1.1 93.994 -36.4 4.856 5191 no
## 613 1.1 93.994 -36.4 4.856 5191 no
## 614 1.1 93.994 -36.4 4.856 5191 no
## 615 1.1 93.994 -36.4 4.856 5191 no
## 616 1.1 93.994 -36.4 4.856 5191 no
## 617 1.1 93.994 -36.4 4.856 5191 no
## 618 1.1 93.994 -36.4 4.856 5191 no
## 619 1.1 93.994 -36.4 4.856 5191 no
## 620 1.1 93.994 -36.4 4.856 5191 no
## 621 1.1 93.994 -36.4 4.856 5191 no
## 622 1.1 93.994 -36.4 4.856 5191 no
## 623 1.1 93.994 -36.4 4.856 5191 no
## 624 1.1 93.994 -36.4 4.856 5191 no
## 625 1.1 93.994 -36.4 4.856 5191 no
## 626 1.1 93.994 -36.4 4.856 5191 no
## 627 1.1 93.994 -36.4 4.856 5191 no
## 628 1.1 93.994 -36.4 4.856 5191 no
## 629 1.1 93.994 -36.4 4.856 5191 no
## 630 1.1 93.994 -36.4 4.856 5191 no
## 631 1.1 93.994 -36.4 4.856 5191 no
## 632 1.1 93.994 -36.4 4.856 5191 no
## 633 1.1 93.994 -36.4 4.856 5191 no
## 634 1.1 93.994 -36.4 4.856 5191 no
## 635 1.1 93.994 -36.4 4.856 5191 no
## 636 1.1 93.994 -36.4 4.856 5191 no
## 637 1.1 93.994 -36.4 4.856 5191 no
## 638 1.1 93.994 -36.4 4.856 5191 no
## 639 1.1 93.994 -36.4 4.856 5191 no
## 640 1.1 93.994 -36.4 4.856 5191 no
## 641 1.1 93.994 -36.4 4.856 5191 no
## 642 1.1 93.994 -36.4 4.856 5191 no
## 643 1.1 93.994 -36.4 4.856 5191 no
## 644 1.1 93.994 -36.4 4.856 5191 no
## 645 1.1 93.994 -36.4 4.856 5191 no
## 646 1.1 93.994 -36.4 4.856 5191 no
## 647 1.1 93.994 -36.4 4.856 5191 no
## 648 1.1 93.994 -36.4 4.856 5191 no
## 649 1.1 93.994 -36.4 4.856 5191 no
## 650 1.1 93.994 -36.4 4.856 5191 no
## 651 1.1 93.994 -36.4 4.856 5191 no
## 652 1.1 93.994 -36.4 4.856 5191 no
## 653 1.1 93.994 -36.4 4.856 5191 no
## 654 1.1 93.994 -36.4 4.856 5191 no
## 655 1.1 93.994 -36.4 4.856 5191 no
## 656 1.1 93.994 -36.4 4.856 5191 no
## 657 1.1 93.994 -36.4 4.856 5191 no
## 658 1.1 93.994 -36.4 4.856 5191 no
## 659 1.1 93.994 -36.4 4.856 5191 no
## 660 1.1 93.994 -36.4 4.856 5191 no
## 661 1.1 93.994 -36.4 4.856 5191 no
## 662 1.1 93.994 -36.4 4.856 5191 no
## 663 1.1 93.994 -36.4 4.856 5191 no
## 664 1.1 93.994 -36.4 4.856 5191 no
## 665 1.1 93.994 -36.4 4.856 5191 no
## 666 1.1 93.994 -36.4 4.856 5191 no
## 667 1.1 93.994 -36.4 4.856 5191 no
## 668 1.1 93.994 -36.4 4.856 5191 no
## 669 1.1 93.994 -36.4 4.856 5191 no
## 670 1.1 93.994 -36.4 4.856 5191 no
## 671 1.1 93.994 -36.4 4.856 5191 no
## 672 1.1 93.994 -36.4 4.856 5191 no
## 673 1.1 93.994 -36.4 4.856 5191 no
## 674 1.1 93.994 -36.4 4.856 5191 no
## 675 1.1 93.994 -36.4 4.856 5191 no
## 676 1.1 93.994 -36.4 4.856 5191 no
## 677 1.1 93.994 -36.4 4.856 5191 no
## 678 1.1 93.994 -36.4 4.856 5191 no
## 679 1.1 93.994 -36.4 4.856 5191 no
## 680 1.1 93.994 -36.4 4.856 5191 no
## 681 1.1 93.994 -36.4 4.856 5191 no
## 682 1.1 93.994 -36.4 4.856 5191 no
## 683 1.1 93.994 -36.4 4.856 5191 no
## 684 1.1 93.994 -36.4 4.856 5191 no
## 685 1.1 93.994 -36.4 4.856 5191 no
## 686 1.1 93.994 -36.4 4.856 5191 no
## 687 1.1 93.994 -36.4 4.856 5191 no
## 688 1.1 93.994 -36.4 4.856 5191 no
## 689 1.1 93.994 -36.4 4.856 5191 no
## 690 1.1 93.994 -36.4 4.856 5191 no
## 691 1.1 93.994 -36.4 4.856 5191 no
## 692 1.1 93.994 -36.4 4.856 5191 no
## 693 1.1 93.994 -36.4 4.856 5191 no
## 694 1.1 93.994 -36.4 4.856 5191 no
## 695 1.1 93.994 -36.4 4.856 5191 no
## 696 1.1 93.994 -36.4 4.856 5191 no
## 697 1.1 93.994 -36.4 4.856 5191 no
## 698 1.1 93.994 -36.4 4.856 5191 no
## 699 1.1 93.994 -36.4 4.856 5191 no
## 700 1.1 93.994 -36.4 4.856 5191 no
## 701 1.1 93.994 -36.4 4.856 5191 no
## 702 1.1 93.994 -36.4 4.856 5191 no
## 703 1.1 93.994 -36.4 4.856 5191 no
## 704 1.1 93.994 -36.4 4.856 5191 no
## 705 1.1 93.994 -36.4 4.856 5191 no
## 706 1.1 93.994 -36.4 4.856 5191 no
## 707 1.1 93.994 -36.4 4.856 5191 no
## 708 1.1 93.994 -36.4 4.856 5191 no
## 709 1.1 93.994 -36.4 4.856 5191 no
## 710 1.1 93.994 -36.4 4.856 5191 no
## 711 1.1 93.994 -36.4 4.856 5191 no
## 712 1.1 93.994 -36.4 4.856 5191 no
## 713 1.1 93.994 -36.4 4.856 5191 no
## 714 1.1 93.994 -36.4 4.856 5191 no
## 715 1.1 93.994 -36.4 4.856 5191 no
## 716 1.1 93.994 -36.4 4.856 5191 no
## 717 1.1 93.994 -36.4 4.856 5191 no
## 718 1.1 93.994 -36.4 4.856 5191 no
## 719 1.1 93.994 -36.4 4.856 5191 no
## 720 1.1 93.994 -36.4 4.856 5191 no
## 721 1.1 93.994 -36.4 4.856 5191 no
## 722 1.1 93.994 -36.4 4.856 5191 no
## 723 1.1 93.994 -36.4 4.856 5191 no
## 724 1.1 93.994 -36.4 4.856 5191 no
## 725 1.1 93.994 -36.4 4.856 5191 no
## 726 1.1 93.994 -36.4 4.856 5191 no
## 727 1.1 93.994 -36.4 4.856 5191 no
## 728 1.1 93.994 -36.4 4.856 5191 no
## 729 1.1 93.994 -36.4 4.856 5191 no
## 730 1.1 93.994 -36.4 4.856 5191 no
## 731 1.1 93.994 -36.4 4.856 5191 no
## 732 1.1 93.994 -36.4 4.856 5191 no
## 733 1.1 93.994 -36.4 4.856 5191 no
## 734 1.1 93.994 -36.4 4.856 5191 no
## 735 1.1 93.994 -36.4 4.856 5191 no
## 736 1.1 93.994 -36.4 4.856 5191 no
## 737 1.1 93.994 -36.4 4.856 5191 no
## 738 1.1 93.994 -36.4 4.856 5191 no
## 739 1.1 93.994 -36.4 4.856 5191 no
## 740 1.1 93.994 -36.4 4.856 5191 no
## 741 1.1 93.994 -36.4 4.856 5191 no
## 742 1.1 93.994 -36.4 4.856 5191 no
## 743 1.1 93.994 -36.4 4.856 5191 no
## 744 1.1 93.994 -36.4 4.856 5191 no
## 745 1.1 93.994 -36.4 4.856 5191 no
## 746 1.1 93.994 -36.4 4.856 5191 no
## 747 1.1 93.994 -36.4 4.856 5191 no
## 748 1.1 93.994 -36.4 4.856 5191 no
## 749 1.1 93.994 -36.4 4.856 5191 no
## 750 1.1 93.994 -36.4 4.856 5191 no
## 751 1.1 93.994 -36.4 4.856 5191 no
## 752 1.1 93.994 -36.4 4.856 5191 no
## 753 1.1 93.994 -36.4 4.856 5191 no
## 754 1.1 93.994 -36.4 4.856 5191 no
## 755 1.1 93.994 -36.4 4.856 5191 no
## 756 1.1 93.994 -36.4 4.856 5191 no
## 757 1.1 93.994 -36.4 4.856 5191 no
## 758 1.1 93.994 -36.4 4.856 5191 no
## 759 1.1 93.994 -36.4 4.856 5191 no
## 760 1.1 93.994 -36.4 4.856 5191 no
## 761 1.1 93.994 -36.4 4.856 5191 no
## 762 1.1 93.994 -36.4 4.856 5191 no
## 763 1.1 93.994 -36.4 4.856 5191 no
## 764 1.1 93.994 -36.4 4.856 5191 no
## 765 1.1 93.994 -36.4 4.856 5191 no
## 766 1.1 93.994 -36.4 4.856 5191 no
## 767 1.1 93.994 -36.4 4.856 5191 no
## 768 1.1 93.994 -36.4 4.856 5191 no
## 769 1.1 93.994 -36.4 4.856 5191 no
## 770 1.1 93.994 -36.4 4.856 5191 no
## 771 1.1 93.994 -36.4 4.856 5191 no
## 772 1.1 93.994 -36.4 4.856 5191 no
## 773 1.1 93.994 -36.4 4.856 5191 no
## 774 1.1 93.994 -36.4 4.856 5191 no
## 775 1.1 93.994 -36.4 4.856 5191 no
## 776 1.1 93.994 -36.4 4.856 5191 no
## 777 1.1 93.994 -36.4 4.856 5191 no
## 778 1.1 93.994 -36.4 4.856 5191 no
## 779 1.1 93.994 -36.4 4.856 5191 no
## 780 1.1 93.994 -36.4 4.856 5191 no
## 781 1.1 93.994 -36.4 4.856 5191 no
## 782 1.1 93.994 -36.4 4.856 5191 no
## 783 1.1 93.994 -36.4 4.856 5191 no
## 784 1.1 93.994 -36.4 4.856 5191 no
## 785 1.1 93.994 -36.4 4.856 5191 no
## 786 1.1 93.994 -36.4 4.856 5191 no
## 787 1.1 93.994 -36.4 4.856 5191 no
## 788 1.1 93.994 -36.4 4.856 5191 no
## 789 1.1 93.994 -36.4 4.856 5191 no
## 790 1.1 93.994 -36.4 4.856 5191 no
## 791 1.1 93.994 -36.4 4.856 5191 no
## 792 1.1 93.994 -36.4 4.856 5191 no
## 793 1.1 93.994 -36.4 4.856 5191 no
## 794 1.1 93.994 -36.4 4.856 5191 no
## 795 1.1 93.994 -36.4 4.856 5191 no
## 796 1.1 93.994 -36.4 4.856 5191 no
## 797 1.1 93.994 -36.4 4.856 5191 no
## 798 1.1 93.994 -36.4 4.856 5191 no
## 799 1.1 93.994 -36.4 4.856 5191 no
## 800 1.1 93.994 -36.4 4.856 5191 no
## 801 1.1 93.994 -36.4 4.856 5191 no
## 802 1.1 93.994 -36.4 4.856 5191 no
## 803 1.1 93.994 -36.4 4.856 5191 no
## 804 1.1 93.994 -36.4 4.856 5191 no
## 805 1.1 93.994 -36.4 4.856 5191 no
## 806 1.1 93.994 -36.4 4.856 5191 no
## 807 1.1 93.994 -36.4 4.856 5191 no
## 808 1.1 93.994 -36.4 4.856 5191 no
## 809 1.1 93.994 -36.4 4.856 5191 no
## 810 1.1 93.994 -36.4 4.856 5191 no
## 811 1.1 93.994 -36.4 4.856 5191 no
## 812 1.1 93.994 -36.4 4.856 5191 no
## 813 1.1 93.994 -36.4 4.856 5191 no
## 814 1.1 93.994 -36.4 4.856 5191 no
## 815 1.1 93.994 -36.4 4.856 5191 no
## 816 1.1 93.994 -36.4 4.856 5191 no
## 817 1.1 93.994 -36.4 4.856 5191 no
## 818 1.1 93.994 -36.4 4.856 5191 no
## 819 1.1 93.994 -36.4 4.856 5191 no
## 820 1.1 93.994 -36.4 4.856 5191 no
## 821 1.1 93.994 -36.4 4.856 5191 no
## 822 1.1 93.994 -36.4 4.856 5191 no
## 823 1.1 93.994 -36.4 4.856 5191 no
## 824 1.1 93.994 -36.4 4.856 5191 no
## 825 1.1 93.994 -36.4 4.856 5191 no
## 826 1.1 93.994 -36.4 4.856 5191 no
## 827 1.1 93.994 -36.4 4.856 5191 no
## 828 1.1 93.994 -36.4 4.856 5191 no
## 829 1.1 93.994 -36.4 4.856 5191 no
## 830 1.1 93.994 -36.4 4.856 5191 no
## 831 1.1 93.994 -36.4 4.856 5191 no
## 832 1.1 93.994 -36.4 4.856 5191 no
## 833 1.1 93.994 -36.4 4.856 5191 no
## 834 1.1 93.994 -36.4 4.856 5191 no
## 835 1.1 93.994 -36.4 4.856 5191 no
## 836 1.1 93.994 -36.4 4.856 5191 no
## 837 1.1 93.994 -36.4 4.856 5191 no
## 838 1.1 93.994 -36.4 4.856 5191 no
## 839 1.1 93.994 -36.4 4.856 5191 no
## 840 1.1 93.994 -36.4 4.856 5191 no
## 841 1.1 93.994 -36.4 4.856 5191 no
## 842 1.1 93.994 -36.4 4.856 5191 no
## 843 1.1 93.994 -36.4 4.856 5191 no
## 844 1.1 93.994 -36.4 4.856 5191 no
## 845 1.1 93.994 -36.4 4.856 5191 no
## 846 1.1 93.994 -36.4 4.856 5191 no
## 847 1.1 93.994 -36.4 4.856 5191 no
## 848 1.1 93.994 -36.4 4.856 5191 no
## 849 1.1 93.994 -36.4 4.856 5191 no
## 850 1.1 93.994 -36.4 4.856 5191 no
## 851 1.1 93.994 -36.4 4.856 5191 no
## 852 1.1 93.994 -36.4 4.856 5191 no
## 853 1.1 93.994 -36.4 4.856 5191 no
## 854 1.1 93.994 -36.4 4.856 5191 no
## 855 1.1 93.994 -36.4 4.856 5191 no
## 856 1.1 93.994 -36.4 4.856 5191 no
## 857 1.1 93.994 -36.4 4.856 5191 no
## 858 1.1 93.994 -36.4 4.856 5191 no
## 859 1.1 93.994 -36.4 4.856 5191 no
## 860 1.1 93.994 -36.4 4.856 5191 no
## 861 1.1 93.994 -36.4 4.856 5191 no
## 862 1.1 93.994 -36.4 4.856 5191 no
## 863 1.1 93.994 -36.4 4.856 5191 no
## 864 1.1 93.994 -36.4 4.856 5191 no
## 865 1.1 93.994 -36.4 4.856 5191 no
## 866 1.1 93.994 -36.4 4.856 5191 no
## 867 1.1 93.994 -36.4 4.856 5191 no
## 868 1.1 93.994 -36.4 4.856 5191 no
## 869 1.1 93.994 -36.4 4.856 5191 no
## 870 1.1 93.994 -36.4 4.856 5191 no
## 871 1.1 93.994 -36.4 4.856 5191 no
## 872 1.1 93.994 -36.4 4.856 5191 no
## 873 1.1 93.994 -36.4 4.856 5191 no
## 874 1.1 93.994 -36.4 4.856 5191 no
## 875 1.1 93.994 -36.4 4.856 5191 no
## 876 1.1 93.994 -36.4 4.856 5191 no
## 877 1.1 93.994 -36.4 4.856 5191 no
## 878 1.1 93.994 -36.4 4.856 5191 no
## 879 1.1 93.994 -36.4 4.856 5191 no
## 880 1.1 93.994 -36.4 4.856 5191 no
## 881 1.1 93.994 -36.4 4.856 5191 no
## 882 1.1 93.994 -36.4 4.856 5191 no
## 883 1.1 93.994 -36.4 4.856 5191 no
## 884 1.1 93.994 -36.4 4.856 5191 no
## 885 1.1 93.994 -36.4 4.856 5191 no
## 886 1.1 93.994 -36.4 4.856 5191 no
## 887 1.1 93.994 -36.4 4.856 5191 no
## 888 1.1 93.994 -36.4 4.856 5191 no
## 889 1.1 93.994 -36.4 4.856 5191 no
## 890 1.1 93.994 -36.4 4.856 5191 no
## 891 1.1 93.994 -36.4 4.856 5191 no
## 892 1.1 93.994 -36.4 4.856 5191 no
## 893 1.1 93.994 -36.4 4.856 5191 no
## 894 1.1 93.994 -36.4 4.856 5191 no
## 895 1.1 93.994 -36.4 4.856 5191 no
## 896 1.1 93.994 -36.4 4.856 5191 no
## 897 1.1 93.994 -36.4 4.856 5191 no
## 898 1.1 93.994 -36.4 4.856 5191 no
## 899 1.1 93.994 -36.4 4.856 5191 no
## 900 1.1 93.994 -36.4 4.856 5191 no
## 901 1.1 93.994 -36.4 4.856 5191 no
## 902 1.1 93.994 -36.4 4.856 5191 no
## 903 1.1 93.994 -36.4 4.856 5191 no
## 904 1.1 93.994 -36.4 4.856 5191 no
## 905 1.1 93.994 -36.4 4.856 5191 no
## 906 1.1 93.994 -36.4 4.856 5191 no
## 907 1.1 93.994 -36.4 4.856 5191 no
## 908 1.1 93.994 -36.4 4.856 5191 no
## 909 1.1 93.994 -36.4 4.856 5191 no
## 910 1.1 93.994 -36.4 4.856 5191 no
## 911 1.1 93.994 -36.4 4.856 5191 no
## 912 1.1 93.994 -36.4 4.856 5191 no
## 913 1.1 93.994 -36.4 4.856 5191 no
## 914 1.1 93.994 -36.4 4.855 5191 no
## 915 1.1 93.994 -36.4 4.855 5191 no
## 916 1.1 93.994 -36.4 4.855 5191 no
## 917 1.1 93.994 -36.4 4.855 5191 no
## 918 1.1 93.994 -36.4 4.855 5191 no
## 919 1.1 93.994 -36.4 4.855 5191 no
## 920 1.1 93.994 -36.4 4.855 5191 no
## 921 1.1 93.994 -36.4 4.855 5191 no
## 922 1.1 93.994 -36.4 4.855 5191 no
## 923 1.1 93.994 -36.4 4.855 5191 no
## 924 1.1 93.994 -36.4 4.855 5191 no
## 925 1.1 93.994 -36.4 4.855 5191 no
## 926 1.1 93.994 -36.4 4.855 5191 no
## 927 1.1 93.994 -36.4 4.855 5191 no
## 928 1.1 93.994 -36.4 4.855 5191 no
## 929 1.1 93.994 -36.4 4.855 5191 no
## 930 1.1 93.994 -36.4 4.855 5191 no
## 931 1.1 93.994 -36.4 4.855 5191 no
## 932 1.1 93.994 -36.4 4.855 5191 no
## 933 1.1 93.994 -36.4 4.855 5191 no
## 934 1.1 93.994 -36.4 4.855 5191 no
## 935 1.1 93.994 -36.4 4.855 5191 no
## 936 1.1 93.994 -36.4 4.855 5191 no
## 937 1.1 93.994 -36.4 4.855 5191 no
## 938 1.1 93.994 -36.4 4.855 5191 no
## 939 1.1 93.994 -36.4 4.855 5191 no
## 940 1.1 93.994 -36.4 4.855 5191 no
## 941 1.1 93.994 -36.4 4.855 5191 no
## 942 1.1 93.994 -36.4 4.855 5191 no
## 943 1.1 93.994 -36.4 4.855 5191 no
## 944 1.1 93.994 -36.4 4.855 5191 no
## 945 1.1 93.994 -36.4 4.855 5191 no
## 946 1.1 93.994 -36.4 4.855 5191 no
## 947 1.1 93.994 -36.4 4.855 5191 no
## 948 1.1 93.994 -36.4 4.855 5191 no
## 949 1.1 93.994 -36.4 4.855 5191 no
## 950 1.1 93.994 -36.4 4.855 5191 no
## 951 1.1 93.994 -36.4 4.855 5191 no
## 952 1.1 93.994 -36.4 4.855 5191 no
## 953 1.1 93.994 -36.4 4.855 5191 no
## 954 1.1 93.994 -36.4 4.855 5191 no
## 955 1.1 93.994 -36.4 4.855 5191 no
## 956 1.1 93.994 -36.4 4.855 5191 no
## 957 1.1 93.994 -36.4 4.855 5191 no
## 958 1.1 93.994 -36.4 4.855 5191 no
## 959 1.1 93.994 -36.4 4.855 5191 no
## 960 1.1 93.994 -36.4 4.855 5191 no
## 961 1.1 93.994 -36.4 4.855 5191 no
## 962 1.1 93.994 -36.4 4.855 5191 no
## 963 1.1 93.994 -36.4 4.855 5191 no
## 964 1.1 93.994 -36.4 4.855 5191 no
## 965 1.1 93.994 -36.4 4.855 5191 no
## 966 1.1 93.994 -36.4 4.855 5191 no
## 967 1.1 93.994 -36.4 4.855 5191 no
## 968 1.1 93.994 -36.4 4.855 5191 no
## 969 1.1 93.994 -36.4 4.855 5191 no
## 970 1.1 93.994 -36.4 4.855 5191 no
## 971 1.1 93.994 -36.4 4.855 5191 no
## 972 1.1 93.994 -36.4 4.855 5191 no
## 973 1.1 93.994 -36.4 4.855 5191 no
## 974 1.1 93.994 -36.4 4.855 5191 no
## 975 1.1 93.994 -36.4 4.855 5191 no
## 976 1.1 93.994 -36.4 4.855 5191 no
## 977 1.1 93.994 -36.4 4.855 5191 no
## 978 1.1 93.994 -36.4 4.855 5191 no
## 979 1.1 93.994 -36.4 4.855 5191 no
## 980 1.1 93.994 -36.4 4.855 5191 no
## 981 1.1 93.994 -36.4 4.855 5191 no
## 982 1.1 93.994 -36.4 4.855 5191 no
## 983 1.1 93.994 -36.4 4.855 5191 no
## 984 1.1 93.994 -36.4 4.855 5191 no
## 985 1.1 93.994 -36.4 4.855 5191 no
## 986 1.1 93.994 -36.4 4.855 5191 no
## 987 1.1 93.994 -36.4 4.855 5191 no
## 988 1.1 93.994 -36.4 4.855 5191 no
## 989 1.1 93.994 -36.4 4.855 5191 no
## 990 1.1 93.994 -36.4 4.855 5191 no
## 991 1.1 93.994 -36.4 4.855 5191 no
## 992 1.1 93.994 -36.4 4.855 5191 no
## 993 1.1 93.994 -36.4 4.855 5191 no
## 994 1.1 93.994 -36.4 4.855 5191 no
## 995 1.1 93.994 -36.4 4.855 5191 no
## 996 1.1 93.994 -36.4 4.855 5191 no
## 997 1.1 93.994 -36.4 4.855 5191 no
## 998 1.1 93.994 -36.4 4.855 5191 no
## 999 1.1 93.994 -36.4 4.855 5191 no
## 1000 1.1 93.994 -36.4 4.855 5191 no
## 1001 1.1 93.994 -36.4 4.855 5191 no
## 1002 1.1 93.994 -36.4 4.855 5191 no
## 1003 1.1 93.994 -36.4 4.855 5191 no
## 1004 1.1 93.994 -36.4 4.855 5191 no
## 1005 1.1 93.994 -36.4 4.855 5191 no
## 1006 1.1 93.994 -36.4 4.855 5191 no
## 1007 1.1 93.994 -36.4 4.855 5191 no
## 1008 1.1 93.994 -36.4 4.855 5191 no
## 1009 1.1 93.994 -36.4 4.855 5191 no
## 1010 1.1 93.994 -36.4 4.855 5191 no
## 1011 1.1 93.994 -36.4 4.855 5191 no
## 1012 1.1 93.994 -36.4 4.855 5191 no
## 1013 1.1 93.994 -36.4 4.855 5191 no
## 1014 1.1 93.994 -36.4 4.855 5191 no
## 1015 1.1 93.994 -36.4 4.855 5191 no
## 1016 1.1 93.994 -36.4 4.855 5191 no
## 1017 1.1 93.994 -36.4 4.855 5191 no
## 1018 1.1 93.994 -36.4 4.855 5191 no
## 1019 1.1 93.994 -36.4 4.855 5191 no
## 1020 1.1 93.994 -36.4 4.855 5191 no
## 1021 1.1 93.994 -36.4 4.855 5191 no
## 1022 1.1 93.994 -36.4 4.855 5191 no
## 1023 1.1 93.994 -36.4 4.855 5191 no
## 1024 1.1 93.994 -36.4 4.855 5191 no
## 1025 1.1 93.994 -36.4 4.855 5191 no
## 1026 1.1 93.994 -36.4 4.855 5191 no
## 1027 1.1 93.994 -36.4 4.855 5191 no
## 1028 1.1 93.994 -36.4 4.855 5191 no
## 1029 1.1 93.994 -36.4 4.855 5191 no
## 1030 1.1 93.994 -36.4 4.855 5191 no
## 1031 1.1 93.994 -36.4 4.855 5191 no
## 1032 1.1 93.994 -36.4 4.855 5191 no
## 1033 1.1 93.994 -36.4 4.855 5191 no
## 1034 1.1 93.994 -36.4 4.855 5191 no
## 1035 1.1 93.994 -36.4 4.855 5191 no
## 1036 1.1 93.994 -36.4 4.855 5191 no
## 1037 1.1 93.994 -36.4 4.855 5191 no
## 1038 1.1 93.994 -36.4 4.855 5191 no
## 1039 1.1 93.994 -36.4 4.855 5191 no
## 1040 1.1 93.994 -36.4 4.855 5191 no
## 1041 1.1 93.994 -36.4 4.855 5191 no
## 1042 1.1 93.994 -36.4 4.855 5191 no
## 1043 1.1 93.994 -36.4 4.855 5191 no
## 1044 1.1 93.994 -36.4 4.855 5191 no
## 1045 1.1 93.994 -36.4 4.855 5191 no
## 1046 1.1 93.994 -36.4 4.855 5191 no
## 1047 1.1 93.994 -36.4 4.855 5191 no
## 1048 1.1 93.994 -36.4 4.855 5191 no
## 1049 1.1 93.994 -36.4 4.855 5191 no
## 1050 1.1 93.994 -36.4 4.855 5191 no
## 1051 1.1 93.994 -36.4 4.855 5191 no
## 1052 1.1 93.994 -36.4 4.855 5191 no
## 1053 1.1 93.994 -36.4 4.855 5191 no
## 1054 1.1 93.994 -36.4 4.855 5191 no
## 1055 1.1 93.994 -36.4 4.855 5191 no
## 1056 1.1 93.994 -36.4 4.855 5191 no
## 1057 1.1 93.994 -36.4 4.855 5191 no
## 1058 1.1 93.994 -36.4 4.855 5191 no
## 1059 1.1 93.994 -36.4 4.855 5191 no
## 1060 1.1 93.994 -36.4 4.855 5191 no
## 1061 1.1 93.994 -36.4 4.855 5191 no
## 1062 1.1 93.994 -36.4 4.855 5191 no
## 1063 1.1 93.994 -36.4 4.855 5191 no
## 1064 1.1 93.994 -36.4 4.855 5191 no
## 1065 1.1 93.994 -36.4 4.855 5191 no
## 1066 1.1 93.994 -36.4 4.855 5191 no
## 1067 1.1 93.994 -36.4 4.855 5191 no
## 1068 1.1 93.994 -36.4 4.855 5191 no
## 1069 1.1 93.994 -36.4 4.855 5191 no
## 1070 1.1 93.994 -36.4 4.855 5191 no
## 1071 1.1 93.994 -36.4 4.855 5191 no
## 1072 1.1 93.994 -36.4 4.855 5191 no
## 1073 1.1 93.994 -36.4 4.855 5191 no
## 1074 1.1 93.994 -36.4 4.855 5191 no
## 1075 1.1 93.994 -36.4 4.855 5191 no
## 1076 1.1 93.994 -36.4 4.855 5191 no
## 1077 1.1 93.994 -36.4 4.855 5191 no
## 1078 1.1 93.994 -36.4 4.855 5191 no
## 1079 1.1 93.994 -36.4 4.855 5191 no
## 1080 1.1 93.994 -36.4 4.855 5191 no
## 1081 1.1 93.994 -36.4 4.855 5191 no
## 1082 1.1 93.994 -36.4 4.855 5191 no
## 1083 1.1 93.994 -36.4 4.855 5191 no
## 1084 1.1 93.994 -36.4 4.855 5191 no
## 1085 1.1 93.994 -36.4 4.855 5191 no
## 1086 1.1 93.994 -36.4 4.855 5191 no
## 1087 1.1 93.994 -36.4 4.855 5191 no
## 1088 1.1 93.994 -36.4 4.855 5191 no
## 1089 1.1 93.994 -36.4 4.855 5191 no
## 1090 1.1 93.994 -36.4 4.855 5191 no
## 1091 1.1 93.994 -36.4 4.855 5191 no
## 1092 1.1 93.994 -36.4 4.855 5191 no
## 1093 1.1 93.994 -36.4 4.855 5191 no
## 1094 1.1 93.994 -36.4 4.855 5191 no
## 1095 1.1 93.994 -36.4 4.855 5191 no
## 1096 1.1 93.994 -36.4 4.855 5191 no
## 1097 1.1 93.994 -36.4 4.855 5191 no
## 1098 1.1 93.994 -36.4 4.855 5191 no
## 1099 1.1 93.994 -36.4 4.855 5191 no
## 1100 1.1 93.994 -36.4 4.855 5191 no
## 1101 1.1 93.994 -36.4 4.855 5191 no
## 1102 1.1 93.994 -36.4 4.855 5191 no
## 1103 1.1 93.994 -36.4 4.855 5191 no
## 1104 1.1 93.994 -36.4 4.855 5191 no
## 1105 1.1 93.994 -36.4 4.855 5191 no
## 1106 1.1 93.994 -36.4 4.855 5191 no
## 1107 1.1 93.994 -36.4 4.855 5191 no
## 1108 1.1 93.994 -36.4 4.855 5191 no
## 1109 1.1 93.994 -36.4 4.855 5191 no
## 1110 1.1 93.994 -36.4 4.855 5191 no
## 1111 1.1 93.994 -36.4 4.855 5191 no
## 1112 1.1 93.994 -36.4 4.855 5191 no
## 1113 1.1 93.994 -36.4 4.855 5191 no
## 1114 1.1 93.994 -36.4 4.855 5191 no
## 1115 1.1 93.994 -36.4 4.855 5191 no
## 1116 1.1 93.994 -36.4 4.855 5191 no
## 1117 1.1 93.994 -36.4 4.855 5191 no
## 1118 1.1 93.994 -36.4 4.855 5191 no
## 1119 1.1 93.994 -36.4 4.855 5191 no
## 1120 1.1 93.994 -36.4 4.855 5191 no
## 1121 1.1 93.994 -36.4 4.855 5191 no
## 1122 1.1 93.994 -36.4 4.855 5191 no
## 1123 1.1 93.994 -36.4 4.855 5191 no
## 1124 1.1 93.994 -36.4 4.855 5191 no
## 1125 1.1 93.994 -36.4 4.855 5191 no
## 1126 1.1 93.994 -36.4 4.855 5191 no
## 1127 1.1 93.994 -36.4 4.855 5191 no
## 1128 1.1 93.994 -36.4 4.855 5191 no
## 1129 1.1 93.994 -36.4 4.855 5191 no
## 1130 1.1 93.994 -36.4 4.855 5191 no
## 1131 1.1 93.994 -36.4 4.855 5191 no
## 1132 1.1 93.994 -36.4 4.855 5191 no
## 1133 1.1 93.994 -36.4 4.855 5191 no
## 1134 1.1 93.994 -36.4 4.855 5191 no
## 1135 1.1 93.994 -36.4 4.855 5191 no
## 1136 1.1 93.994 -36.4 4.855 5191 no
## 1137 1.1 93.994 -36.4 4.855 5191 no
## 1138 1.1 93.994 -36.4 4.855 5191 no
## 1139 1.1 93.994 -36.4 4.855 5191 no
## 1140 1.1 93.994 -36.4 4.855 5191 no
## 1141 1.1 93.994 -36.4 4.855 5191 no
## 1142 1.1 93.994 -36.4 4.855 5191 no
## 1143 1.1 93.994 -36.4 4.855 5191 no
## 1144 1.1 93.994 -36.4 4.855 5191 no
## 1145 1.1 93.994 -36.4 4.855 5191 no
## 1146 1.1 93.994 -36.4 4.855 5191 no
## 1147 1.1 93.994 -36.4 4.855 5191 no
## 1148 1.1 93.994 -36.4 4.855 5191 no
## 1149 1.1 93.994 -36.4 4.855 5191 no
## 1150 1.1 93.994 -36.4 4.855 5191 no
## 1151 1.1 93.994 -36.4 4.855 5191 no
## 1152 1.1 93.994 -36.4 4.855 5191 no
## 1153 1.1 93.994 -36.4 4.855 5191 no
## 1154 1.1 93.994 -36.4 4.855 5191 no
## 1155 1.1 93.994 -36.4 4.855 5191 no
## 1156 1.1 93.994 -36.4 4.855 5191 no
## 1157 1.1 93.994 -36.4 4.855 5191 no
## 1158 1.1 93.994 -36.4 4.855 5191 no
## 1159 1.1 93.994 -36.4 4.855 5191 no
## 1160 1.1 93.994 -36.4 4.855 5191 no
## 1161 1.1 93.994 -36.4 4.855 5191 no
## 1162 1.1 93.994 -36.4 4.855 5191 no
## 1163 1.1 93.994 -36.4 4.855 5191 no
## 1164 1.1 93.994 -36.4 4.855 5191 no
## 1165 1.1 93.994 -36.4 4.855 5191 no
## 1166 1.1 93.994 -36.4 4.855 5191 no
## 1167 1.1 93.994 -36.4 4.855 5191 no
## 1168 1.1 93.994 -36.4 4.855 5191 no
## 1169 1.1 93.994 -36.4 4.855 5191 no
## 1170 1.1 93.994 -36.4 4.855 5191 no
## 1171 1.1 93.994 -36.4 4.855 5191 no
## 1172 1.1 93.994 -36.4 4.855 5191 no
## 1173 1.1 93.994 -36.4 4.855 5191 no
## 1174 1.1 93.994 -36.4 4.855 5191 no
## 1175 1.1 93.994 -36.4 4.855 5191 no
## 1176 1.1 93.994 -36.4 4.855 5191 no
## 1177 1.1 93.994 -36.4 4.855 5191 no
## 1178 1.1 93.994 -36.4 4.855 5191 no
## 1179 1.1 93.994 -36.4 4.855 5191 no
## 1180 1.1 93.994 -36.4 4.855 5191 no
## 1181 1.1 93.994 -36.4 4.855 5191 no
## 1182 1.1 93.994 -36.4 4.855 5191 no
## 1183 1.1 93.994 -36.4 4.855 5191 no
## 1184 1.1 93.994 -36.4 4.855 5191 no
## 1185 1.1 93.994 -36.4 4.855 5191 no
## 1186 1.1 93.994 -36.4 4.855 5191 no
## 1187 1.1 93.994 -36.4 4.855 5191 no
## 1188 1.1 93.994 -36.4 4.855 5191 no
## 1189 1.1 93.994 -36.4 4.855 5191 no
## 1190 1.1 93.994 -36.4 4.855 5191 no
## 1191 1.1 93.994 -36.4 4.855 5191 no
## 1192 1.1 93.994 -36.4 4.855 5191 no
## 1193 1.1 93.994 -36.4 4.855 5191 no
## 1194 1.1 93.994 -36.4 4.855 5191 no
## 1195 1.1 93.994 -36.4 4.855 5191 no
## 1196 1.1 93.994 -36.4 4.855 5191 no
## 1197 1.1 93.994 -36.4 4.855 5191 no
## 1198 1.1 93.994 -36.4 4.855 5191 no
## 1199 1.1 93.994 -36.4 4.855 5191 no
## 1200 1.1 93.994 -36.4 4.855 5191 no
## 1201 1.1 93.994 -36.4 4.855 5191 no
## 1202 1.1 93.994 -36.4 4.855 5191 no
## 1203 1.1 93.994 -36.4 4.855 5191 no
## 1204 1.1 93.994 -36.4 4.855 5191 no
## 1205 1.1 93.994 -36.4 4.855 5191 no
## 1206 1.1 93.994 -36.4 4.855 5191 no
## 1207 1.1 93.994 -36.4 4.855 5191 no
## 1208 1.1 93.994 -36.4 4.855 5191 no
## 1209 1.1 93.994 -36.4 4.855 5191 no
## 1210 1.1 93.994 -36.4 4.855 5191 no
## 1211 1.1 93.994 -36.4 4.855 5191 no
## 1212 1.1 93.994 -36.4 4.855 5191 no
## 1213 1.1 93.994 -36.4 4.855 5191 no
## 1214 1.1 93.994 -36.4 4.855 5191 no
## 1215 1.1 93.994 -36.4 4.855 5191 no
## 1216 1.1 93.994 -36.4 4.855 5191 no
## 1217 1.1 93.994 -36.4 4.855 5191 no
## 1218 1.1 93.994 -36.4 4.855 5191 no
## 1219 1.1 93.994 -36.4 4.855 5191 no
## 1220 1.1 93.994 -36.4 4.855 5191 no
## 1221 1.1 93.994 -36.4 4.855 5191 no
## 1222 1.1 93.994 -36.4 4.855 5191 no
## 1223 1.1 93.994 -36.4 4.855 5191 no
## 1224 1.1 93.994 -36.4 4.855 5191 no
## 1225 1.1 93.994 -36.4 4.855 5191 no
## 1226 1.1 93.994 -36.4 4.855 5191 no
## 1227 1.1 93.994 -36.4 4.855 5191 no
## 1228 1.1 93.994 -36.4 4.855 5191 no
## 1229 1.1 93.994 -36.4 4.855 5191 no
## 1230 1.1 93.994 -36.4 4.855 5191 no
## 1231 1.1 93.994 -36.4 4.855 5191 no
## 1232 1.1 93.994 -36.4 4.855 5191 no
## 1233 1.1 93.994 -36.4 4.855 5191 no
## 1234 1.1 93.994 -36.4 4.855 5191 no
## 1235 1.1 93.994 -36.4 4.855 5191 no
## 1236 1.1 93.994 -36.4 4.855 5191 no
## 1237 1.1 93.994 -36.4 4.855 5191 no
## 1238 1.1 93.994 -36.4 4.855 5191 no
## 1239 1.1 93.994 -36.4 4.855 5191 no
## 1240 1.1 93.994 -36.4 4.855 5191 no
## 1241 1.1 93.994 -36.4 4.855 5191 no
## 1242 1.1 93.994 -36.4 4.855 5191 no
## 1243 1.1 93.994 -36.4 4.855 5191 no
## 1244 1.1 93.994 -36.4 4.855 5191 no
## 1245 1.1 93.994 -36.4 4.855 5191 no
## 1246 1.1 93.994 -36.4 4.855 5191 no
## 1247 1.1 93.994 -36.4 4.855 5191 no
## 1248 1.1 93.994 -36.4 4.855 5191 no
## 1249 1.1 93.994 -36.4 4.855 5191 no
## 1250 1.1 93.994 -36.4 4.855 5191 no
## 1251 1.1 93.994 -36.4 4.855 5191 no
## 1252 1.1 93.994 -36.4 4.855 5191 no
## 1253 1.1 93.994 -36.4 4.855 5191 no
## 1254 1.1 93.994 -36.4 4.855 5191 no
## 1255 1.1 93.994 -36.4 4.855 5191 no
## 1256 1.1 93.994 -36.4 4.855 5191 no
## 1257 1.1 93.994 -36.4 4.855 5191 no
## 1258 1.1 93.994 -36.4 4.855 5191 no
## 1259 1.1 93.994 -36.4 4.855 5191 no
## 1260 1.1 93.994 -36.4 4.855 5191 no
## 1261 1.1 93.994 -36.4 4.855 5191 no
## 1262 1.1 93.994 -36.4 4.855 5191 no
## 1263 1.1 93.994 -36.4 4.855 5191 no
## 1264 1.1 93.994 -36.4 4.855 5191 no
## 1265 1.1 93.994 -36.4 4.855 5191 no
## 1266 1.1 93.994 -36.4 4.855 5191 no
## 1267 1.1 93.994 -36.4 4.855 5191 no
## 1268 1.1 93.994 -36.4 4.855 5191 no
## 1269 1.1 93.994 -36.4 4.855 5191 no
## 1270 1.1 93.994 -36.4 4.855 5191 no
## 1271 1.1 93.994 -36.4 4.855 5191 no
## 1272 1.1 93.994 -36.4 4.855 5191 no
## 1273 1.1 93.994 -36.4 4.855 5191 no
## 1274 1.1 93.994 -36.4 4.855 5191 no
## 1275 1.1 93.994 -36.4 4.855 5191 no
## 1276 1.1 93.994 -36.4 4.855 5191 no
## 1277 1.1 93.994 -36.4 4.855 5191 no
## 1278 1.1 93.994 -36.4 4.855 5191 no
## 1279 1.1 93.994 -36.4 4.855 5191 no
## 1280 1.1 93.994 -36.4 4.855 5191 no
## 1281 1.1 93.994 -36.4 4.855 5191 no
## 1282 1.1 93.994 -36.4 4.855 5191 no
## 1283 1.1 93.994 -36.4 4.855 5191 no
## 1284 1.1 93.994 -36.4 4.855 5191 no
## 1285 1.1 93.994 -36.4 4.855 5191 no
## 1286 1.1 93.994 -36.4 4.855 5191 no
## 1287 1.1 93.994 -36.4 4.855 5191 no
## 1288 1.1 93.994 -36.4 4.855 5191 no
## 1289 1.1 93.994 -36.4 4.855 5191 no
## 1290 1.1 93.994 -36.4 4.855 5191 no
## 1291 1.1 93.994 -36.4 4.855 5191 no
## 1292 1.1 93.994 -36.4 4.855 5191 no
## 1293 1.1 93.994 -36.4 4.855 5191 no
## 1294 1.1 93.994 -36.4 4.855 5191 no
## 1295 1.1 93.994 -36.4 4.855 5191 no
## 1296 1.1 93.994 -36.4 4.855 5191 no
## 1297 1.1 93.994 -36.4 4.855 5191 no
## 1298 1.1 93.994 -36.4 4.855 5191 no
## 1299 1.1 93.994 -36.4 4.855 5191 no
## 1300 1.1 93.994 -36.4 4.855 5191 no
## 1301 1.1 93.994 -36.4 4.855 5191 no
## 1302 1.1 93.994 -36.4 4.855 5191 no
## 1303 1.1 93.994 -36.4 4.855 5191 no
## 1304 1.1 93.994 -36.4 4.855 5191 no
## 1305 1.1 93.994 -36.4 4.855 5191 no
## 1306 1.1 93.994 -36.4 4.855 5191 no
## 1307 1.1 93.994 -36.4 4.855 5191 no
## 1308 1.1 93.994 -36.4 4.855 5191 no
## 1309 1.1 93.994 -36.4 4.855 5191 no
## 1310 1.1 93.994 -36.4 4.855 5191 no
## 1311 1.1 93.994 -36.4 4.855 5191 no
## 1312 1.1 93.994 -36.4 4.855 5191 no
## 1313 1.1 93.994 -36.4 4.855 5191 no
## 1314 1.1 93.994 -36.4 4.855 5191 no
## 1315 1.1 93.994 -36.4 4.855 5191 no
## 1316 1.1 93.994 -36.4 4.855 5191 no
## 1317 1.1 93.994 -36.4 4.855 5191 no
## 1318 1.1 93.994 -36.4 4.855 5191 no
## 1319 1.1 93.994 -36.4 4.855 5191 no
## 1320 1.1 93.994 -36.4 4.855 5191 no
## 1321 1.1 93.994 -36.4 4.855 5191 no
## 1322 1.1 93.994 -36.4 4.855 5191 no
## 1323 1.1 93.994 -36.4 4.855 5191 no
## 1324 1.1 93.994 -36.4 4.855 5191 no
## 1325 1.1 93.994 -36.4 4.855 5191 no
## 1326 1.1 93.994 -36.4 4.855 5191 no
## 1327 1.1 93.994 -36.4 4.855 5191 no
## 1328 1.1 93.994 -36.4 4.855 5191 no
## 1329 1.1 93.994 -36.4 4.855 5191 no
## 1330 1.1 93.994 -36.4 4.855 5191 no
## 1331 1.1 93.994 -36.4 4.855 5191 no
## 1332 1.1 93.994 -36.4 4.855 5191 no
## 1333 1.1 93.994 -36.4 4.855 5191 no
## 1334 1.1 93.994 -36.4 4.855 5191 no
## 1335 1.1 93.994 -36.4 4.855 5191 no
## 1336 1.1 93.994 -36.4 4.855 5191 no
## 1337 1.1 93.994 -36.4 4.855 5191 no
## 1338 1.1 93.994 -36.4 4.855 5191 no
## 1339 1.1 93.994 -36.4 4.855 5191 no
## 1340 1.1 93.994 -36.4 4.855 5191 no
## 1341 1.1 93.994 -36.4 4.855 5191 no
## 1342 1.1 93.994 -36.4 4.855 5191 no
## 1343 1.1 93.994 -36.4 4.855 5191 no
## 1344 1.1 93.994 -36.4 4.855 5191 no
## 1345 1.1 93.994 -36.4 4.855 5191 no
## 1346 1.1 93.994 -36.4 4.855 5191 no
## 1347 1.1 93.994 -36.4 4.855 5191 no
## 1348 1.1 93.994 -36.4 4.855 5191 no
## 1349 1.1 93.994 -36.4 4.855 5191 no
## 1350 1.1 93.994 -36.4 4.855 5191 no
## 1351 1.1 93.994 -36.4 4.855 5191 no
## 1352 1.1 93.994 -36.4 4.855 5191 no
## 1353 1.1 93.994 -36.4 4.855 5191 no
## 1354 1.1 93.994 -36.4 4.855 5191 no
## 1355 1.1 93.994 -36.4 4.855 5191 no
## 1356 1.1 93.994 -36.4 4.855 5191 no
## 1357 1.1 93.994 -36.4 4.855 5191 no
## 1358 1.1 93.994 -36.4 4.855 5191 no
## 1359 1.1 93.994 -36.4 4.855 5191 no
## 1360 1.1 93.994 -36.4 4.855 5191 no
## 1361 1.1 93.994 -36.4 4.855 5191 no
## 1362 1.1 93.994 -36.4 4.855 5191 no
## 1363 1.1 93.994 -36.4 4.855 5191 no
## 1364 1.1 93.994 -36.4 4.855 5191 no
## 1365 1.1 93.994 -36.4 4.855 5191 no
## 1366 1.1 93.994 -36.4 4.855 5191 no
## 1367 1.1 93.994 -36.4 4.855 5191 no
## 1368 1.1 93.994 -36.4 4.855 5191 no
## 1369 1.1 93.994 -36.4 4.855 5191 no
## 1370 1.1 93.994 -36.4 4.855 5191 no
## 1371 1.1 93.994 -36.4 4.855 5191 no
## 1372 1.1 93.994 -36.4 4.855 5191 no
## 1373 1.1 93.994 -36.4 4.855 5191 no
## 1374 1.1 93.994 -36.4 4.855 5191 no
## 1375 1.1 93.994 -36.4 4.855 5191 no
## 1376 1.1 93.994 -36.4 4.855 5191 no
## 1377 1.1 93.994 -36.4 4.855 5191 no
## 1378 1.1 93.994 -36.4 4.855 5191 no
## 1379 1.1 93.994 -36.4 4.855 5191 no
## 1380 1.1 93.994 -36.4 4.855 5191 no
## 1381 1.1 93.994 -36.4 4.855 5191 no
## 1382 1.1 93.994 -36.4 4.855 5191 no
## 1383 1.1 93.994 -36.4 4.855 5191 no
## 1384 1.1 93.994 -36.4 4.855 5191 no
## 1385 1.1 93.994 -36.4 4.855 5191 no
## 1386 1.1 93.994 -36.4 4.855 5191 no
## 1387 1.1 93.994 -36.4 4.855 5191 no
## 1388 1.1 93.994 -36.4 4.855 5191 no
## 1389 1.1 93.994 -36.4 4.855 5191 no
## 1390 1.1 93.994 -36.4 4.855 5191 no
## 1391 1.1 93.994 -36.4 4.855 5191 no
## 1392 1.1 93.994 -36.4 4.855 5191 no
## 1393 1.1 93.994 -36.4 4.855 5191 no
## 1394 1.1 93.994 -36.4 4.855 5191 no
## 1395 1.1 93.994 -36.4 4.855 5191 no
## 1396 1.1 93.994 -36.4 4.855 5191 no
## 1397 1.1 93.994 -36.4 4.855 5191 no
## 1398 1.1 93.994 -36.4 4.855 5191 no
## 1399 1.1 93.994 -36.4 4.855 5191 no
## 1400 1.1 93.994 -36.4 4.855 5191 no
## 1401 1.1 93.994 -36.4 4.855 5191 no
## 1402 1.1 93.994 -36.4 4.855 5191 no
## 1403 1.1 93.994 -36.4 4.855 5191 no
## 1404 1.1 93.994 -36.4 4.855 5191 no
## 1405 1.1 93.994 -36.4 4.855 5191 no
## 1406 1.1 93.994 -36.4 4.855 5191 no
## 1407 1.1 93.994 -36.4 4.855 5191 no
## 1408 1.1 93.994 -36.4 4.855 5191 no
## 1409 1.1 93.994 -36.4 4.855 5191 no
## 1410 1.1 93.994 -36.4 4.855 5191 no
## 1411 1.1 93.994 -36.4 4.855 5191 no
## 1412 1.1 93.994 -36.4 4.855 5191 no
## 1413 1.1 93.994 -36.4 4.855 5191 no
## 1414 1.1 93.994 -36.4 4.855 5191 no
## 1415 1.1 93.994 -36.4 4.855 5191 no
## 1416 1.1 93.994 -36.4 4.855 5191 no
## 1417 1.1 93.994 -36.4 4.855 5191 no
## 1418 1.1 93.994 -36.4 4.855 5191 no
## 1419 1.1 93.994 -36.4 4.855 5191 no
## 1420 1.1 93.994 -36.4 4.855 5191 no
## 1421 1.1 93.994 -36.4 4.855 5191 no
## 1422 1.1 93.994 -36.4 4.855 5191 no
## 1423 1.1 93.994 -36.4 4.855 5191 no
## 1424 1.1 93.994 -36.4 4.855 5191 no
## 1425 1.1 93.994 -36.4 4.855 5191 no
## 1426 1.1 93.994 -36.4 4.855 5191 no
## 1427 1.1 93.994 -36.4 4.855 5191 no
## 1428 1.1 93.994 -36.4 4.855 5191 no
## 1429 1.1 93.994 -36.4 4.855 5191 no
## 1430 1.1 93.994 -36.4 4.855 5191 no
## 1431 1.1 93.994 -36.4 4.855 5191 no
## 1432 1.1 93.994 -36.4 4.855 5191 no
## 1433 1.1 93.994 -36.4 4.855 5191 no
## 1434 1.1 93.994 -36.4 4.855 5191 no
## 1435 1.1 93.994 -36.4 4.855 5191 no
## 1436 1.1 93.994 -36.4 4.855 5191 no
## 1437 1.1 93.994 -36.4 4.855 5191 no
## 1438 1.1 93.994 -36.4 4.855 5191 no
## 1439 1.1 93.994 -36.4 4.855 5191 no
## 1440 1.1 93.994 -36.4 4.855 5191 no
## 1441 1.1 93.994 -36.4 4.855 5191 no
## 1442 1.1 93.994 -36.4 4.855 5191 no
## 1443 1.1 93.994 -36.4 4.855 5191 no
## 1444 1.1 93.994 -36.4 4.855 5191 no
## 1445 1.1 93.994 -36.4 4.855 5191 no
## 1446 1.1 93.994 -36.4 4.855 5191 no
## 1447 1.1 93.994 -36.4 4.855 5191 no
## 1448 1.1 93.994 -36.4 4.855 5191 no
## 1449 1.1 93.994 -36.4 4.855 5191 no
## 1450 1.1 93.994 -36.4 4.855 5191 no
## 1451 1.1 93.994 -36.4 4.855 5191 no
## 1452 1.1 93.994 -36.4 4.855 5191 no
## 1453 1.1 93.994 -36.4 4.855 5191 no
## 1454 1.1 93.994 -36.4 4.855 5191 no
## 1455 1.1 93.994 -36.4 4.855 5191 no
## 1456 1.1 93.994 -36.4 4.855 5191 no
## 1457 1.1 93.994 -36.4 4.855 5191 no
## 1458 1.1 93.994 -36.4 4.855 5191 no
## 1459 1.1 93.994 -36.4 4.855 5191 no
## 1460 1.1 93.994 -36.4 4.855 5191 no
## 1461 1.1 93.994 -36.4 4.855 5191 no
## 1462 1.1 93.994 -36.4 4.855 5191 no
## 1463 1.1 93.994 -36.4 4.855 5191 no
## 1464 1.1 93.994 -36.4 4.855 5191 no
## 1465 1.1 93.994 -36.4 4.855 5191 no
## 1466 1.1 93.994 -36.4 4.855 5191 no
## 1467 1.1 93.994 -36.4 4.855 5191 no
## 1468 1.1 93.994 -36.4 4.855 5191 no
## 1469 1.1 93.994 -36.4 4.855 5191 no
## 1470 1.1 93.994 -36.4 4.855 5191 no
## 1471 1.1 93.994 -36.4 4.855 5191 no
## 1472 1.1 93.994 -36.4 4.855 5191 no
## 1473 1.1 93.994 -36.4 4.855 5191 no
## 1474 1.1 93.994 -36.4 4.855 5191 no
## 1475 1.1 93.994 -36.4 4.855 5191 no
## 1476 1.1 93.994 -36.4 4.855 5191 no
## 1477 1.1 93.994 -36.4 4.855 5191 no
## 1478 1.1 93.994 -36.4 4.855 5191 no
## 1479 1.1 93.994 -36.4 4.855 5191 no
## 1480 1.1 93.994 -36.4 4.855 5191 no
## 1481 1.1 93.994 -36.4 4.855 5191 no
## 1482 1.1 93.994 -36.4 4.855 5191 no
## 1483 1.1 93.994 -36.4 4.855 5191 no
## 1484 1.1 93.994 -36.4 4.855 5191 no
## 1485 1.1 93.994 -36.4 4.855 5191 no
## 1486 1.1 93.994 -36.4 4.855 5191 no
## 1487 1.1 93.994 -36.4 4.855 5191 no
## 1488 1.1 93.994 -36.4 4.855 5191 no
## 1489 1.1 93.994 -36.4 4.855 5191 no
## 1490 1.1 93.994 -36.4 4.855 5191 no
## 1491 1.1 93.994 -36.4 4.855 5191 no
## 1492 1.1 93.994 -36.4 4.855 5191 no
## 1493 1.1 93.994 -36.4 4.855 5191 no
## 1494 1.1 93.994 -36.4 4.855 5191 no
## 1495 1.1 93.994 -36.4 4.855 5191 no
## 1496 1.1 93.994 -36.4 4.855 5191 no
## 1497 1.1 93.994 -36.4 4.855 5191 no
## 1498 1.1 93.994 -36.4 4.855 5191 no
## 1499 1.1 93.994 -36.4 4.855 5191 no
## 1500 1.1 93.994 -36.4 4.855 5191 no
## 1501 1.1 93.994 -36.4 4.855 5191 no
## 1502 1.1 93.994 -36.4 4.855 5191 no
## 1503 1.1 93.994 -36.4 4.855 5191 no
## 1504 1.1 93.994 -36.4 4.855 5191 no
## 1505 1.1 93.994 -36.4 4.855 5191 no
## 1506 1.1 93.994 -36.4 4.855 5191 no
## 1507 1.1 93.994 -36.4 4.855 5191 no
## 1508 1.1 93.994 -36.4 4.855 5191 no
## 1509 1.1 93.994 -36.4 4.855 5191 no
## 1510 1.1 93.994 -36.4 4.855 5191 no
## 1511 1.1 93.994 -36.4 4.855 5191 no
## 1512 1.1 93.994 -36.4 4.855 5191 no
## 1513 1.1 93.994 -36.4 4.855 5191 no
## 1514 1.1 93.994 -36.4 4.855 5191 no
## 1515 1.1 93.994 -36.4 4.855 5191 no
## 1516 1.1 93.994 -36.4 4.855 5191 no
## 1517 1.1 93.994 -36.4 4.855 5191 no
## 1518 1.1 93.994 -36.4 4.855 5191 no
## 1519 1.1 93.994 -36.4 4.855 5191 no
## 1520 1.1 93.994 -36.4 4.855 5191 no
## 1521 1.1 93.994 -36.4 4.855 5191 no
## 1522 1.1 93.994 -36.4 4.855 5191 no
## 1523 1.1 93.994 -36.4 4.855 5191 no
## 1524 1.1 93.994 -36.4 4.855 5191 no
## 1525 1.1 93.994 -36.4 4.855 5191 no
## 1526 1.1 93.994 -36.4 4.855 5191 no
## 1527 1.1 93.994 -36.4 4.855 5191 no
## 1528 1.1 93.994 -36.4 4.855 5191 no
## 1529 1.1 93.994 -36.4 4.855 5191 no
## 1530 1.1 93.994 -36.4 4.855 5191 no
## 1531 1.1 93.994 -36.4 4.855 5191 no
## 1532 1.1 93.994 -36.4 4.855 5191 no
## 1533 1.1 93.994 -36.4 4.855 5191 no
## 1534 1.1 93.994 -36.4 4.855 5191 no
## 1535 1.1 93.994 -36.4 4.855 5191 no
## 1536 1.1 93.994 -36.4 4.855 5191 no
## 1537 1.1 93.994 -36.4 4.855 5191 no
## 1538 1.1 93.994 -36.4 4.855 5191 no
## 1539 1.1 93.994 -36.4 4.855 5191 no
## 1540 1.1 93.994 -36.4 4.855 5191 no
## 1541 1.1 93.994 -36.4 4.855 5191 no
## 1542 1.1 93.994 -36.4 4.855 5191 no
## 1543 1.1 93.994 -36.4 4.855 5191 no
## 1544 1.1 93.994 -36.4 4.855 5191 no
## 1545 1.1 93.994 -36.4 4.855 5191 no
## 1546 1.1 93.994 -36.4 4.855 5191 no
## 1547 1.1 93.994 -36.4 4.855 5191 no
## 1548 1.1 93.994 -36.4 4.855 5191 no
## 1549 1.1 93.994 -36.4 4.855 5191 no
## 1550 1.1 93.994 -36.4 4.855 5191 no
## 1551 1.1 93.994 -36.4 4.855 5191 no
## 1552 1.1 93.994 -36.4 4.855 5191 no
## 1553 1.1 93.994 -36.4 4.855 5191 no
## 1554 1.1 93.994 -36.4 4.855 5191 no
## 1555 1.1 93.994 -36.4 4.855 5191 no
## 1556 1.1 93.994 -36.4 4.855 5191 no
## 1557 1.1 93.994 -36.4 4.855 5191 no
## 1558 1.1 93.994 -36.4 4.855 5191 no
## 1559 1.1 93.994 -36.4 4.855 5191 no
## 1560 1.1 93.994 -36.4 4.855 5191 no
## 1561 1.1 93.994 -36.4 4.855 5191 no
## 1562 1.1 93.994 -36.4 4.857 5191 no
## 1563 1.1 93.994 -36.4 4.857 5191 no
## 1564 1.1 93.994 -36.4 4.857 5191 no
## 1565 1.1 93.994 -36.4 4.857 5191 no
## 1566 1.1 93.994 -36.4 4.857 5191 no
## 1567 1.1 93.994 -36.4 4.857 5191 no
## 1568 1.1 93.994 -36.4 4.857 5191 no
## 1569 1.1 93.994 -36.4 4.857 5191 no
## 1570 1.1 93.994 -36.4 4.857 5191 no
## 1571 1.1 93.994 -36.4 4.857 5191 no
## 1572 1.1 93.994 -36.4 4.857 5191 no
## 1573 1.1 93.994 -36.4 4.857 5191 no
## 1574 1.1 93.994 -36.4 4.857 5191 no
## 1575 1.1 93.994 -36.4 4.857 5191 no
## 1576 1.1 93.994 -36.4 4.857 5191 no
## 1577 1.1 93.994 -36.4 4.857 5191 no
## 1578 1.1 93.994 -36.4 4.857 5191 no
## 1579 1.1 93.994 -36.4 4.857 5191 no
## 1580 1.1 93.994 -36.4 4.857 5191 no
## 1581 1.1 93.994 -36.4 4.857 5191 no
## 1582 1.1 93.994 -36.4 4.857 5191 no
## 1583 1.1 93.994 -36.4 4.857 5191 no
## 1584 1.1 93.994 -36.4 4.857 5191 no
## 1585 1.1 93.994 -36.4 4.857 5191 no
## 1586 1.1 93.994 -36.4 4.857 5191 no
## 1587 1.1 93.994 -36.4 4.857 5191 no
## 1588 1.1 93.994 -36.4 4.857 5191 no
## 1589 1.1 93.994 -36.4 4.857 5191 no
## 1590 1.1 93.994 -36.4 4.857 5191 no
## 1591 1.1 93.994 -36.4 4.857 5191 no
## 1592 1.1 93.994 -36.4 4.857 5191 no
## 1593 1.1 93.994 -36.4 4.857 5191 no
## 1594 1.1 93.994 -36.4 4.857 5191 no
## 1595 1.1 93.994 -36.4 4.857 5191 no
## 1596 1.1 93.994 -36.4 4.857 5191 no
## 1597 1.1 93.994 -36.4 4.857 5191 no
## 1598 1.1 93.994 -36.4 4.857 5191 no
## 1599 1.1 93.994 -36.4 4.857 5191 no
## 1600 1.1 93.994 -36.4 4.857 5191 no
## 1601 1.1 93.994 -36.4 4.857 5191 no
## 1602 1.1 93.994 -36.4 4.857 5191 no
## 1603 1.1 93.994 -36.4 4.857 5191 no
## 1604 1.1 93.994 -36.4 4.857 5191 no
## 1605 1.1 93.994 -36.4 4.857 5191 no
## 1606 1.1 93.994 -36.4 4.857 5191 no
## 1607 1.1 93.994 -36.4 4.857 5191 no
## 1608 1.1 93.994 -36.4 4.857 5191 no
## 1609 1.1 93.994 -36.4 4.857 5191 no
## 1610 1.1 93.994 -36.4 4.857 5191 no
## 1611 1.1 93.994 -36.4 4.857 5191 no
## 1612 1.1 93.994 -36.4 4.857 5191 no
## 1613 1.1 93.994 -36.4 4.857 5191 no
## 1614 1.1 93.994 -36.4 4.857 5191 no
## 1615 1.1 93.994 -36.4 4.857 5191 no
## 1616 1.1 93.994 -36.4 4.857 5191 no
## 1617 1.1 93.994 -36.4 4.857 5191 no
## 1618 1.1 93.994 -36.4 4.857 5191 no
## 1619 1.1 93.994 -36.4 4.857 5191 no
## 1620 1.1 93.994 -36.4 4.857 5191 no
## 1621 1.1 93.994 -36.4 4.857 5191 no
## 1622 1.1 93.994 -36.4 4.857 5191 no
## 1623 1.1 93.994 -36.4 4.857 5191 no
## 1624 1.1 93.994 -36.4 4.857 5191 no
## 1625 1.1 93.994 -36.4 4.857 5191 no
## 1626 1.1 93.994 -36.4 4.857 5191 no
## 1627 1.1 93.994 -36.4 4.857 5191 no
## 1628 1.1 93.994 -36.4 4.857 5191 no
## 1629 1.1 93.994 -36.4 4.857 5191 no
## 1630 1.1 93.994 -36.4 4.857 5191 no
## 1631 1.1 93.994 -36.4 4.857 5191 no
## 1632 1.1 93.994 -36.4 4.857 5191 no
## 1633 1.1 93.994 -36.4 4.857 5191 no
## 1634 1.1 93.994 -36.4 4.857 5191 no
## 1635 1.1 93.994 -36.4 4.857 5191 no
## 1636 1.1 93.994 -36.4 4.857 5191 no
## 1637 1.1 93.994 -36.4 4.857 5191 no
## 1638 1.1 93.994 -36.4 4.857 5191 no
## 1639 1.1 93.994 -36.4 4.857 5191 no
## 1640 1.1 93.994 -36.4 4.857 5191 no
## 1641 1.1 93.994 -36.4 4.857 5191 no
## 1642 1.1 93.994 -36.4 4.857 5191 no
## 1643 1.1 93.994 -36.4 4.857 5191 no
## 1644 1.1 93.994 -36.4 4.857 5191 no
## 1645 1.1 93.994 -36.4 4.857 5191 no
## 1646 1.1 93.994 -36.4 4.857 5191 no
## 1647 1.1 93.994 -36.4 4.857 5191 no
## 1648 1.1 93.994 -36.4 4.857 5191 no
## 1649 1.1 93.994 -36.4 4.857 5191 no
## 1650 1.1 93.994 -36.4 4.857 5191 no
## 1651 1.1 93.994 -36.4 4.857 5191 no
## 1652 1.1 93.994 -36.4 4.857 5191 no
## 1653 1.1 93.994 -36.4 4.857 5191 no
## 1654 1.1 93.994 -36.4 4.857 5191 no
## 1655 1.1 93.994 -36.4 4.857 5191 no
## 1656 1.1 93.994 -36.4 4.857 5191 no
## 1657 1.1 93.994 -36.4 4.857 5191 no
## 1658 1.1 93.994 -36.4 4.857 5191 no
## 1659 1.1 93.994 -36.4 4.857 5191 no
## 1660 1.1 93.994 -36.4 4.857 5191 no
## 1661 1.1 93.994 -36.4 4.857 5191 no
## 1662 1.1 93.994 -36.4 4.857 5191 no
## 1663 1.1 93.994 -36.4 4.857 5191 no
## 1664 1.1 93.994 -36.4 4.857 5191 no
## 1665 1.1 93.994 -36.4 4.857 5191 no
## 1666 1.1 93.994 -36.4 4.857 5191 no
## 1667 1.1 93.994 -36.4 4.857 5191 no
## 1668 1.1 93.994 -36.4 4.857 5191 no
## 1669 1.1 93.994 -36.4 4.857 5191 no
## 1670 1.1 93.994 -36.4 4.857 5191 no
## 1671 1.1 93.994 -36.4 4.857 5191 no
## 1672 1.1 93.994 -36.4 4.857 5191 no
## 1673 1.1 93.994 -36.4 4.857 5191 no
## 1674 1.1 93.994 -36.4 4.857 5191 no
## 1675 1.1 93.994 -36.4 4.857 5191 no
## 1676 1.1 93.994 -36.4 4.857 5191 no
## 1677 1.1 93.994 -36.4 4.857 5191 no
## 1678 1.1 93.994 -36.4 4.857 5191 no
## 1679 1.1 93.994 -36.4 4.857 5191 no
## 1680 1.1 93.994 -36.4 4.857 5191 no
## 1681 1.1 93.994 -36.4 4.857 5191 no
## 1682 1.1 93.994 -36.4 4.857 5191 no
## 1683 1.1 93.994 -36.4 4.857 5191 no
## 1684 1.1 93.994 -36.4 4.857 5191 no
## 1685 1.1 93.994 -36.4 4.857 5191 no
## 1686 1.1 93.994 -36.4 4.857 5191 no
## 1687 1.1 93.994 -36.4 4.857 5191 no
## 1688 1.1 93.994 -36.4 4.857 5191 no
## 1689 1.1 93.994 -36.4 4.857 5191 no
## 1690 1.1 93.994 -36.4 4.857 5191 no
## 1691 1.1 93.994 -36.4 4.857 5191 no
## 1692 1.1 93.994 -36.4 4.857 5191 no
## 1693 1.1 93.994 -36.4 4.857 5191 no
## 1694 1.1 93.994 -36.4 4.857 5191 no
## 1695 1.1 93.994 -36.4 4.857 5191 no
## 1696 1.1 93.994 -36.4 4.857 5191 no
## 1697 1.1 93.994 -36.4 4.857 5191 no
## 1698 1.1 93.994 -36.4 4.857 5191 no
## 1699 1.1 93.994 -36.4 4.857 5191 no
## 1700 1.1 93.994 -36.4 4.857 5191 no
## 1701 1.1 93.994 -36.4 4.857 5191 no
## 1702 1.1 93.994 -36.4 4.857 5191 no
## 1703 1.1 93.994 -36.4 4.857 5191 no
## 1704 1.1 93.994 -36.4 4.857 5191 no
## 1705 1.1 93.994 -36.4 4.857 5191 no
## 1706 1.1 93.994 -36.4 4.857 5191 no
## 1707 1.1 93.994 -36.4 4.857 5191 no
## 1708 1.1 93.994 -36.4 4.857 5191 no
## 1709 1.1 93.994 -36.4 4.857 5191 no
## 1710 1.1 93.994 -36.4 4.857 5191 no
## 1711 1.1 93.994 -36.4 4.857 5191 no
## 1712 1.1 93.994 -36.4 4.857 5191 no
## 1713 1.1 93.994 -36.4 4.857 5191 no
## 1714 1.1 93.994 -36.4 4.857 5191 no
## 1715 1.1 93.994 -36.4 4.857 5191 no
## 1716 1.1 93.994 -36.4 4.857 5191 no
## 1717 1.1 93.994 -36.4 4.857 5191 no
## 1718 1.1 93.994 -36.4 4.857 5191 no
## 1719 1.1 93.994 -36.4 4.857 5191 no
## 1720 1.1 93.994 -36.4 4.857 5191 no
## 1721 1.1 93.994 -36.4 4.857 5191 no
## 1722 1.1 93.994 -36.4 4.857 5191 no
## 1723 1.1 93.994 -36.4 4.857 5191 no
## 1724 1.1 93.994 -36.4 4.857 5191 no
## 1725 1.1 93.994 -36.4 4.857 5191 no
## 1726 1.1 93.994 -36.4 4.857 5191 no
## 1727 1.1 93.994 -36.4 4.857 5191 no
## 1728 1.1 93.994 -36.4 4.857 5191 no
## 1729 1.1 93.994 -36.4 4.857 5191 no
## 1730 1.1 93.994 -36.4 4.857 5191 no
## 1731 1.1 93.994 -36.4 4.857 5191 no
## 1732 1.1 93.994 -36.4 4.857 5191 no
## 1733 1.1 93.994 -36.4 4.857 5191 no
## 1734 1.1 93.994 -36.4 4.857 5191 no
## 1735 1.1 93.994 -36.4 4.857 5191 no
## 1736 1.1 93.994 -36.4 4.857 5191 no
## 1737 1.1 93.994 -36.4 4.857 5191 no
## 1738 1.1 93.994 -36.4 4.857 5191 no
## 1739 1.1 93.994 -36.4 4.857 5191 no
## 1740 1.1 93.994 -36.4 4.857 5191 no
## 1741 1.1 93.994 -36.4 4.857 5191 no
## 1742 1.1 93.994 -36.4 4.857 5191 no
## 1743 1.1 93.994 -36.4 4.857 5191 no
## 1744 1.1 93.994 -36.4 4.857 5191 no
## 1745 1.1 93.994 -36.4 4.857 5191 no
## 1746 1.1 93.994 -36.4 4.857 5191 no
## 1747 1.1 93.994 -36.4 4.857 5191 no
## 1748 1.1 93.994 -36.4 4.857 5191 no
## 1749 1.1 93.994 -36.4 4.857 5191 no
## 1750 1.1 93.994 -36.4 4.857 5191 no
## 1751 1.1 93.994 -36.4 4.857 5191 no
## 1752 1.1 93.994 -36.4 4.857 5191 no
## 1753 1.1 93.994 -36.4 4.857 5191 no
## 1754 1.1 93.994 -36.4 4.857 5191 no
## 1755 1.1 93.994 -36.4 4.857 5191 no
## 1756 1.1 93.994 -36.4 4.857 5191 no
## 1757 1.1 93.994 -36.4 4.857 5191 no
## 1758 1.1 93.994 -36.4 4.857 5191 no
## 1759 1.1 93.994 -36.4 4.857 5191 no
## 1760 1.1 93.994 -36.4 4.857 5191 no
## 1761 1.1 93.994 -36.4 4.857 5191 no
## 1762 1.1 93.994 -36.4 4.857 5191 no
## 1763 1.1 93.994 -36.4 4.857 5191 no
## 1764 1.1 93.994 -36.4 4.857 5191 no
## 1765 1.1 93.994 -36.4 4.857 5191 no
## 1766 1.1 93.994 -36.4 4.857 5191 no
## 1767 1.1 93.994 -36.4 4.857 5191 no
## 1768 1.1 93.994 -36.4 4.856 5191 no
## 1769 1.1 93.994 -36.4 4.856 5191 no
## 1770 1.1 93.994 -36.4 4.856 5191 no
## 1771 1.1 93.994 -36.4 4.856 5191 no
## 1772 1.1 93.994 -36.4 4.856 5191 no
## 1773 1.1 93.994 -36.4 4.856 5191 no
## 1774 1.1 93.994 -36.4 4.856 5191 no
## 1775 1.1 93.994 -36.4 4.856 5191 no
## 1776 1.1 93.994 -36.4 4.856 5191 no
## 1777 1.1 93.994 -36.4 4.856 5191 no
## 1778 1.1 93.994 -36.4 4.856 5191 no
## 1779 1.1 93.994 -36.4 4.856 5191 no
## 1780 1.1 93.994 -36.4 4.856 5191 no
## 1781 1.1 93.994 -36.4 4.856 5191 no
## 1782 1.1 93.994 -36.4 4.856 5191 no
## 1783 1.1 93.994 -36.4 4.856 5191 no
## 1784 1.1 93.994 -36.4 4.856 5191 no
## 1785 1.1 93.994 -36.4 4.856 5191 no
## 1786 1.1 93.994 -36.4 4.856 5191 no
## 1787 1.1 93.994 -36.4 4.856 5191 no
## 1788 1.1 93.994 -36.4 4.856 5191 no
## 1789 1.1 93.994 -36.4 4.856 5191 no
## 1790 1.1 93.994 -36.4 4.856 5191 no
## 1791 1.1 93.994 -36.4 4.856 5191 no
## 1792 1.1 93.994 -36.4 4.856 5191 no
## 1793 1.1 93.994 -36.4 4.856 5191 no
## 1794 1.1 93.994 -36.4 4.856 5191 no
## 1795 1.1 93.994 -36.4 4.856 5191 no
## 1796 1.1 93.994 -36.4 4.856 5191 no
## 1797 1.1 93.994 -36.4 4.856 5191 no
## 1798 1.1 93.994 -36.4 4.856 5191 no
## 1799 1.1 93.994 -36.4 4.856 5191 no
## 1800 1.1 93.994 -36.4 4.856 5191 no
## 1801 1.1 93.994 -36.4 4.856 5191 no
## 1802 1.1 93.994 -36.4 4.856 5191 no
## 1803 1.1 93.994 -36.4 4.856 5191 no
## 1804 1.1 93.994 -36.4 4.856 5191 no
## 1805 1.1 93.994 -36.4 4.856 5191 no
## 1806 1.1 93.994 -36.4 4.856 5191 no
## 1807 1.1 93.994 -36.4 4.856 5191 no
## 1808 1.1 93.994 -36.4 4.856 5191 no
## 1809 1.1 93.994 -36.4 4.856 5191 no
## 1810 1.1 93.994 -36.4 4.856 5191 no
## 1811 1.1 93.994 -36.4 4.856 5191 no
## 1812 1.1 93.994 -36.4 4.856 5191 no
## 1813 1.1 93.994 -36.4 4.856 5191 no
## 1814 1.1 93.994 -36.4 4.856 5191 no
## 1815 1.1 93.994 -36.4 4.856 5191 no
## 1816 1.1 93.994 -36.4 4.856 5191 no
## 1817 1.1 93.994 -36.4 4.856 5191 no
## 1818 1.1 93.994 -36.4 4.856 5191 no
## 1819 1.1 93.994 -36.4 4.856 5191 no
## 1820 1.1 93.994 -36.4 4.856 5191 no
## 1821 1.1 93.994 -36.4 4.856 5191 no
## 1822 1.1 93.994 -36.4 4.856 5191 no
## 1823 1.1 93.994 -36.4 4.856 5191 no
## 1824 1.1 93.994 -36.4 4.856 5191 no
## 1825 1.1 93.994 -36.4 4.856 5191 no
## 1826 1.1 93.994 -36.4 4.856 5191 no
## 1827 1.1 93.994 -36.4 4.856 5191 no
## 1828 1.1 93.994 -36.4 4.856 5191 no
## 1829 1.1 93.994 -36.4 4.856 5191 no
## 1830 1.1 93.994 -36.4 4.856 5191 no
## 1831 1.1 93.994 -36.4 4.856 5191 no
## 1832 1.1 93.994 -36.4 4.856 5191 no
## 1833 1.1 93.994 -36.4 4.856 5191 no
## 1834 1.1 93.994 -36.4 4.856 5191 no
## 1835 1.1 93.994 -36.4 4.856 5191 no
## 1836 1.1 93.994 -36.4 4.856 5191 no
## 1837 1.1 93.994 -36.4 4.856 5191 no
## 1838 1.1 93.994 -36.4 4.856 5191 no
## 1839 1.1 93.994 -36.4 4.856 5191 no
## 1840 1.1 93.994 -36.4 4.856 5191 no
## 1841 1.1 93.994 -36.4 4.856 5191 no
## 1842 1.1 93.994 -36.4 4.856 5191 no
## 1843 1.1 93.994 -36.4 4.856 5191 no
## 1844 1.1 93.994 -36.4 4.856 5191 no
## 1845 1.1 93.994 -36.4 4.856 5191 no
## 1846 1.1 93.994 -36.4 4.856 5191 no
## 1847 1.1 93.994 -36.4 4.856 5191 no
## 1848 1.1 93.994 -36.4 4.856 5191 no
## 1849 1.1 93.994 -36.4 4.856 5191 no
## 1850 1.1 93.994 -36.4 4.856 5191 no
## 1851 1.1 93.994 -36.4 4.856 5191 no
## 1852 1.1 93.994 -36.4 4.856 5191 no
## 1853 1.1 93.994 -36.4 4.856 5191 no
## 1854 1.1 93.994 -36.4 4.856 5191 no
## 1855 1.1 93.994 -36.4 4.856 5191 no
## 1856 1.1 93.994 -36.4 4.856 5191 no
## 1857 1.1 93.994 -36.4 4.856 5191 no
## 1858 1.1 93.994 -36.4 4.856 5191 no
## 1859 1.1 93.994 -36.4 4.856 5191 no
## 1860 1.1 93.994 -36.4 4.856 5191 no
## 1861 1.1 93.994 -36.4 4.856 5191 no
## 1862 1.1 93.994 -36.4 4.856 5191 no
## 1863 1.1 93.994 -36.4 4.856 5191 no
## 1864 1.1 93.994 -36.4 4.856 5191 no
## 1865 1.1 93.994 -36.4 4.856 5191 no
## 1866 1.1 93.994 -36.4 4.856 5191 no
## 1867 1.1 93.994 -36.4 4.856 5191 no
## 1868 1.1 93.994 -36.4 4.856 5191 no
## 1869 1.1 93.994 -36.4 4.856 5191 no
## 1870 1.1 93.994 -36.4 4.856 5191 no
## 1871 1.1 93.994 -36.4 4.856 5191 no
## 1872 1.1 93.994 -36.4 4.856 5191 no
## 1873 1.1 93.994 -36.4 4.856 5191 no
## 1874 1.1 93.994 -36.4 4.856 5191 no
## 1875 1.1 93.994 -36.4 4.856 5191 no
## 1876 1.1 93.994 -36.4 4.856 5191 no
## 1877 1.1 93.994 -36.4 4.856 5191 no
## 1878 1.1 93.994 -36.4 4.856 5191 no
## 1879 1.1 93.994 -36.4 4.856 5191 no
## 1880 1.1 93.994 -36.4 4.856 5191 no
## 1881 1.1 93.994 -36.4 4.856 5191 no
## 1882 1.1 93.994 -36.4 4.856 5191 no
## 1883 1.1 93.994 -36.4 4.856 5191 no
## 1884 1.1 93.994 -36.4 4.856 5191 no
## 1885 1.1 93.994 -36.4 4.856 5191 no
## 1886 1.1 93.994 -36.4 4.856 5191 no
## 1887 1.1 93.994 -36.4 4.856 5191 no
## 1888 1.1 93.994 -36.4 4.856 5191 no
## 1889 1.1 93.994 -36.4 4.856 5191 no
## 1890 1.1 93.994 -36.4 4.856 5191 no
## 1891 1.1 93.994 -36.4 4.856 5191 no
## 1892 1.1 93.994 -36.4 4.856 5191 no
## 1893 1.1 93.994 -36.4 4.856 5191 no
## 1894 1.1 93.994 -36.4 4.856 5191 no
## 1895 1.1 93.994 -36.4 4.856 5191 no
## 1896 1.1 93.994 -36.4 4.856 5191 no
## 1897 1.1 93.994 -36.4 4.856 5191 no
## 1898 1.1 93.994 -36.4 4.856 5191 no
## 1899 1.1 93.994 -36.4 4.856 5191 no
## 1900 1.1 93.994 -36.4 4.856 5191 no
## 1901 1.1 93.994 -36.4 4.856 5191 no
## 1902 1.1 93.994 -36.4 4.856 5191 no
## 1903 1.1 93.994 -36.4 4.856 5191 no
## 1904 1.1 93.994 -36.4 4.856 5191 no
## 1905 1.1 93.994 -36.4 4.856 5191 no
## 1906 1.1 93.994 -36.4 4.856 5191 no
## 1907 1.1 93.994 -36.4 4.856 5191 no
## 1908 1.1 93.994 -36.4 4.856 5191 no
## 1909 1.1 93.994 -36.4 4.856 5191 no
## 1910 1.1 93.994 -36.4 4.856 5191 no
## 1911 1.1 93.994 -36.4 4.856 5191 no
## 1912 1.1 93.994 -36.4 4.856 5191 no
## 1913 1.1 93.994 -36.4 4.856 5191 no
## 1914 1.1 93.994 -36.4 4.856 5191 no
## 1915 1.1 93.994 -36.4 4.856 5191 no
## 1916 1.1 93.994 -36.4 4.856 5191 no
## 1917 1.1 93.994 -36.4 4.856 5191 no
## 1918 1.1 93.994 -36.4 4.856 5191 no
## 1919 1.1 93.994 -36.4 4.856 5191 no
## 1920 1.1 93.994 -36.4 4.856 5191 no
## 1921 1.1 93.994 -36.4 4.856 5191 no
## 1922 1.1 93.994 -36.4 4.856 5191 no
## 1923 1.1 93.994 -36.4 4.856 5191 no
## 1924 1.1 93.994 -36.4 4.856 5191 no
## 1925 1.1 93.994 -36.4 4.856 5191 no
## 1926 1.1 93.994 -36.4 4.856 5191 no
## 1927 1.1 93.994 -36.4 4.856 5191 no
## 1928 1.1 93.994 -36.4 4.856 5191 no
## 1929 1.1 93.994 -36.4 4.856 5191 no
## 1930 1.1 93.994 -36.4 4.856 5191 no
## 1931 1.1 93.994 -36.4 4.856 5191 no
## 1932 1.1 93.994 -36.4 4.856 5191 no
## 1933 1.1 93.994 -36.4 4.856 5191 no
## 1934 1.1 93.994 -36.4 4.856 5191 no
## 1935 1.1 93.994 -36.4 4.856 5191 no
## 1936 1.1 93.994 -36.4 4.856 5191 no
## 1937 1.1 93.994 -36.4 4.856 5191 no
## 1938 1.1 93.994 -36.4 4.856 5191 no
## 1939 1.1 93.994 -36.4 4.856 5191 no
## 1940 1.1 93.994 -36.4 4.856 5191 no
## 1941 1.1 93.994 -36.4 4.856 5191 no
## 1942 1.1 93.994 -36.4 4.856 5191 no
## 1943 1.1 93.994 -36.4 4.856 5191 no
## 1944 1.1 93.994 -36.4 4.856 5191 no
## 1945 1.1 93.994 -36.4 4.856 5191 no
## 1946 1.1 93.994 -36.4 4.856 5191 no
## 1947 1.1 93.994 -36.4 4.856 5191 no
## 1948 1.1 93.994 -36.4 4.856 5191 no
## 1949 1.1 93.994 -36.4 4.856 5191 no
## 1950 1.1 93.994 -36.4 4.856 5191 no
## 1951 1.1 93.994 -36.4 4.856 5191 no
## 1952 1.1 93.994 -36.4 4.856 5191 no
## 1953 1.1 93.994 -36.4 4.856 5191 no
## 1954 1.1 93.994 -36.4 4.856 5191 no
## 1955 1.1 93.994 -36.4 4.856 5191 no
## 1956 1.1 93.994 -36.4 4.856 5191 no
## 1957 1.1 93.994 -36.4 4.856 5191 no
## 1958 1.1 93.994 -36.4 4.856 5191 no
## 1959 1.1 93.994 -36.4 4.856 5191 no
## 1960 1.1 93.994 -36.4 4.856 5191 no
## 1961 1.1 93.994 -36.4 4.856 5191 no
## 1962 1.1 93.994 -36.4 4.856 5191 no
## 1963 1.1 93.994 -36.4 4.856 5191 no
## 1964 1.1 93.994 -36.4 4.856 5191 no
## 1965 1.1 93.994 -36.4 4.856 5191 no
## 1966 1.1 93.994 -36.4 4.856 5191 no
## 1967 1.1 93.994 -36.4 4.856 5191 no
## 1968 1.1 93.994 -36.4 4.856 5191 no
## 1969 1.1 93.994 -36.4 4.856 5191 no
## 1970 1.1 93.994 -36.4 4.856 5191 no
## 1971 1.1 93.994 -36.4 4.856 5191 no
## 1972 1.1 93.994 -36.4 4.856 5191 no
## 1973 1.1 93.994 -36.4 4.856 5191 no
## 1974 1.1 93.994 -36.4 4.856 5191 no
## 1975 1.1 93.994 -36.4 4.856 5191 no
## 1976 1.1 93.994 -36.4 4.856 5191 no
## 1977 1.1 93.994 -36.4 4.856 5191 no
## 1978 1.1 93.994 -36.4 4.856 5191 no
## 1979 1.1 93.994 -36.4 4.856 5191 no
## 1980 1.1 93.994 -36.4 4.856 5191 no
## 1981 1.1 93.994 -36.4 4.856 5191 no
## 1982 1.1 93.994 -36.4 4.856 5191 no
## 1983 1.1 93.994 -36.4 4.856 5191 no
## 1984 1.1 93.994 -36.4 4.856 5191 no
## 1985 1.1 93.994 -36.4 4.856 5191 no
## 1986 1.1 93.994 -36.4 4.856 5191 no
## 1987 1.1 93.994 -36.4 4.856 5191 no
## 1988 1.1 93.994 -36.4 4.856 5191 no
## 1989 1.1 93.994 -36.4 4.856 5191 no
## 1990 1.1 93.994 -36.4 4.856 5191 no
## 1991 1.1 93.994 -36.4 4.856 5191 no
## 1992 1.1 93.994 -36.4 4.856 5191 no
## 1993 1.1 93.994 -36.4 4.856 5191 no
## 1994 1.1 93.994 -36.4 4.856 5191 no
## 1995 1.1 93.994 -36.4 4.856 5191 no
## 1996 1.1 93.994 -36.4 4.856 5191 no
## 1997 1.1 93.994 -36.4 4.856 5191 no
## 1998 1.1 93.994 -36.4 4.856 5191 no
## 1999 1.1 93.994 -36.4 4.856 5191 no
## 2000 1.1 93.994 -36.4 4.856 5191 no
## 2001 1.1 93.994 -36.4 4.856 5191 no
## 2002 1.1 93.994 -36.4 4.856 5191 no
## 2003 1.1 93.994 -36.4 4.856 5191 no
## 2004 1.1 93.994 -36.4 4.856 5191 no
## 2005 1.1 93.994 -36.4 4.856 5191 no
## 2006 1.1 93.994 -36.4 4.856 5191 no
## 2007 1.1 93.994 -36.4 4.856 5191 no
## 2008 1.1 93.994 -36.4 4.856 5191 no
## 2009 1.1 93.994 -36.4 4.856 5191 no
## 2010 1.1 93.994 -36.4 4.856 5191 no
## 2011 1.1 93.994 -36.4 4.856 5191 no
## 2012 1.1 93.994 -36.4 4.856 5191 no
## 2013 1.1 93.994 -36.4 4.856 5191 no
## 2014 1.1 93.994 -36.4 4.856 5191 no
## 2015 1.1 93.994 -36.4 4.856 5191 no
## 2016 1.1 93.994 -36.4 4.856 5191 no
## 2017 1.1 93.994 -36.4 4.856 5191 no
## 2018 1.1 93.994 -36.4 4.856 5191 no
## 2019 1.1 93.994 -36.4 4.856 5191 no
## 2020 1.1 93.994 -36.4 4.856 5191 no
## 2021 1.1 93.994 -36.4 4.856 5191 no
## 2022 1.1 93.994 -36.4 4.856 5191 no
## 2023 1.1 93.994 -36.4 4.856 5191 no
## 2024 1.1 93.994 -36.4 4.856 5191 no
## 2025 1.1 93.994 -36.4 4.856 5191 no
## 2026 1.1 93.994 -36.4 4.856 5191 no
## 2027 1.1 93.994 -36.4 4.856 5191 no
## 2028 1.1 93.994 -36.4 4.856 5191 no
## 2029 1.1 93.994 -36.4 4.856 5191 no
## 2030 1.1 93.994 -36.4 4.856 5191 no
## 2031 1.1 93.994 -36.4 4.856 5191 no
## 2032 1.1 93.994 -36.4 4.856 5191 no
## 2033 1.1 93.994 -36.4 4.856 5191 no
## 2034 1.1 93.994 -36.4 4.856 5191 no
## 2035 1.1 93.994 -36.4 4.856 5191 no
## 2036 1.1 93.994 -36.4 4.856 5191 no
## 2037 1.1 93.994 -36.4 4.856 5191 no
## 2038 1.1 93.994 -36.4 4.856 5191 no
## 2039 1.1 93.994 -36.4 4.856 5191 no
## 2040 1.1 93.994 -36.4 4.856 5191 no
## 2041 1.1 93.994 -36.4 4.856 5191 no
## 2042 1.1 93.994 -36.4 4.856 5191 no
## 2043 1.1 93.994 -36.4 4.856 5191 no
## 2044 1.1 93.994 -36.4 4.856 5191 no
## 2045 1.1 93.994 -36.4 4.856 5191 no
## 2046 1.1 93.994 -36.4 4.856 5191 no
## 2047 1.1 93.994 -36.4 4.856 5191 no
## 2048 1.1 93.994 -36.4 4.856 5191 no
## 2049 1.1 93.994 -36.4 4.856 5191 no
## 2050 1.1 93.994 -36.4 4.856 5191 no
## 2051 1.1 93.994 -36.4 4.856 5191 no
## 2052 1.1 93.994 -36.4 4.856 5191 no
## 2053 1.1 93.994 -36.4 4.856 5191 no
## 2054 1.1 93.994 -36.4 4.856 5191 no
## 2055 1.1 93.994 -36.4 4.856 5191 no
## 2056 1.1 93.994 -36.4 4.856 5191 no
## 2057 1.1 93.994 -36.4 4.856 5191 no
## 2058 1.1 93.994 -36.4 4.856 5191 no
## 2059 1.1 93.994 -36.4 4.856 5191 no
## 2060 1.1 93.994 -36.4 4.856 5191 no
## 2061 1.1 93.994 -36.4 4.856 5191 no
## 2062 1.1 93.994 -36.4 4.856 5191 no
## 2063 1.1 93.994 -36.4 4.856 5191 no
## 2064 1.1 93.994 -36.4 4.856 5191 no
## 2065 1.1 93.994 -36.4 4.856 5191 no
## 2066 1.1 93.994 -36.4 4.856 5191 no
## 2067 1.1 93.994 -36.4 4.856 5191 no
## 2068 1.1 93.994 -36.4 4.856 5191 no
## 2069 1.1 93.994 -36.4 4.856 5191 no
## 2070 1.1 93.994 -36.4 4.856 5191 no
## 2071 1.1 93.994 -36.4 4.856 5191 no
## 2072 1.1 93.994 -36.4 4.856 5191 no
## 2073 1.1 93.994 -36.4 4.856 5191 no
## 2074 1.1 93.994 -36.4 4.856 5191 no
## 2075 1.1 93.994 -36.4 4.856 5191 no
## 2076 1.1 93.994 -36.4 4.856 5191 no
## 2077 1.1 93.994 -36.4 4.856 5191 no
## 2078 1.1 93.994 -36.4 4.856 5191 no
## 2079 1.1 93.994 -36.4 4.856 5191 no
## 2080 1.1 93.994 -36.4 4.856 5191 no
## 2081 1.1 93.994 -36.4 4.856 5191 no
## 2082 1.1 93.994 -36.4 4.856 5191 no
## 2083 1.1 93.994 -36.4 4.859 5191 no
## 2084 1.1 93.994 -36.4 4.859 5191 no
## 2085 1.1 93.994 -36.4 4.859 5191 no
## 2086 1.1 93.994 -36.4 4.859 5191 no
## 2087 1.1 93.994 -36.4 4.859 5191 no
## 2088 1.1 93.994 -36.4 4.859 5191 no
## 2089 1.1 93.994 -36.4 4.859 5191 no
## 2090 1.1 93.994 -36.4 4.859 5191 no
## 2091 1.1 93.994 -36.4 4.859 5191 no
## 2092 1.1 93.994 -36.4 4.859 5191 no
## 2093 1.1 93.994 -36.4 4.859 5191 no
## 2094 1.1 93.994 -36.4 4.859 5191 no
## 2095 1.1 93.994 -36.4 4.859 5191 no
## 2096 1.1 93.994 -36.4 4.859 5191 no
## 2097 1.1 93.994 -36.4 4.859 5191 no
## 2098 1.1 93.994 -36.4 4.859 5191 no
## 2099 1.1 93.994 -36.4 4.859 5191 no
## 2100 1.1 93.994 -36.4 4.859 5191 no
## 2101 1.1 93.994 -36.4 4.859 5191 no
## 2102 1.1 93.994 -36.4 4.859 5191 no
## 2103 1.1 93.994 -36.4 4.859 5191 no
## 2104 1.1 93.994 -36.4 4.859 5191 no
## 2105 1.1 93.994 -36.4 4.859 5191 no
## 2106 1.1 93.994 -36.4 4.859 5191 no
## 2107 1.1 93.994 -36.4 4.859 5191 no
## 2108 1.1 93.994 -36.4 4.859 5191 no
## 2109 1.1 93.994 -36.4 4.859 5191 no
## 2110 1.1 93.994 -36.4 4.859 5191 no
## 2111 1.1 93.994 -36.4 4.859 5191 no
## 2112 1.1 93.994 -36.4 4.859 5191 no
## 2113 1.1 93.994 -36.4 4.859 5191 no
## 2114 1.1 93.994 -36.4 4.859 5191 no
## 2115 1.1 93.994 -36.4 4.859 5191 no
## 2116 1.1 93.994 -36.4 4.859 5191 no
## 2117 1.1 93.994 -36.4 4.859 5191 no
## 2118 1.1 93.994 -36.4 4.859 5191 no
## 2119 1.1 93.994 -36.4 4.859 5191 no
## 2120 1.1 93.994 -36.4 4.859 5191 no
## 2121 1.1 93.994 -36.4 4.859 5191 no
## 2122 1.1 93.994 -36.4 4.859 5191 no
## 2123 1.1 93.994 -36.4 4.859 5191 no
## 2124 1.1 93.994 -36.4 4.859 5191 no
## 2125 1.1 93.994 -36.4 4.859 5191 no
## 2126 1.1 93.994 -36.4 4.859 5191 no
## 2127 1.1 93.994 -36.4 4.859 5191 no
## 2128 1.1 93.994 -36.4 4.859 5191 no
## 2129 1.1 93.994 -36.4 4.859 5191 no
## 2130 1.1 93.994 -36.4 4.859 5191 no
## 2131 1.1 93.994 -36.4 4.859 5191 no
## 2132 1.1 93.994 -36.4 4.859 5191 no
## 2133 1.1 93.994 -36.4 4.859 5191 no
## 2134 1.1 93.994 -36.4 4.859 5191 no
## 2135 1.1 93.994 -36.4 4.859 5191 no
## 2136 1.1 93.994 -36.4 4.859 5191 no
## 2137 1.1 93.994 -36.4 4.859 5191 no
## 2138 1.1 93.994 -36.4 4.859 5191 no
## 2139 1.1 93.994 -36.4 4.859 5191 no
## 2140 1.1 93.994 -36.4 4.859 5191 no
## 2141 1.1 93.994 -36.4 4.859 5191 no
## 2142 1.1 93.994 -36.4 4.859 5191 no
## 2143 1.1 93.994 -36.4 4.859 5191 no
## 2144 1.1 93.994 -36.4 4.859 5191 no
## 2145 1.1 93.994 -36.4 4.859 5191 no
## 2146 1.1 93.994 -36.4 4.859 5191 no
## 2147 1.1 93.994 -36.4 4.859 5191 no
## 2148 1.1 93.994 -36.4 4.859 5191 no
## 2149 1.1 93.994 -36.4 4.859 5191 no
## 2150 1.1 93.994 -36.4 4.859 5191 no
## 2151 1.1 93.994 -36.4 4.859 5191 no
## 2152 1.1 93.994 -36.4 4.859 5191 no
## 2153 1.1 93.994 -36.4 4.859 5191 no
## 2154 1.1 93.994 -36.4 4.859 5191 no
## 2155 1.1 93.994 -36.4 4.859 5191 no
## 2156 1.1 93.994 -36.4 4.859 5191 no
## 2157 1.1 93.994 -36.4 4.859 5191 no
## 2158 1.1 93.994 -36.4 4.859 5191 no
## 2159 1.1 93.994 -36.4 4.859 5191 no
## 2160 1.1 93.994 -36.4 4.859 5191 no
## 2161 1.1 93.994 -36.4 4.859 5191 no
## 2162 1.1 93.994 -36.4 4.859 5191 no
## 2163 1.1 93.994 -36.4 4.859 5191 no
## 2164 1.1 93.994 -36.4 4.859 5191 no
## 2165 1.1 93.994 -36.4 4.859 5191 no
## 2166 1.1 93.994 -36.4 4.859 5191 no
## 2167 1.1 93.994 -36.4 4.859 5191 no
## 2168 1.1 93.994 -36.4 4.859 5191 no
## 2169 1.1 93.994 -36.4 4.859 5191 no
## 2170 1.1 93.994 -36.4 4.859 5191 no
## 2171 1.1 93.994 -36.4 4.859 5191 no
## 2172 1.1 93.994 -36.4 4.859 5191 no
## 2173 1.1 93.994 -36.4 4.859 5191 no
## 2174 1.1 93.994 -36.4 4.859 5191 no
## 2175 1.1 93.994 -36.4 4.859 5191 no
## 2176 1.1 93.994 -36.4 4.859 5191 no
## 2177 1.1 93.994 -36.4 4.859 5191 no
## 2178 1.1 93.994 -36.4 4.859 5191 no
## 2179 1.1 93.994 -36.4 4.859 5191 no
## 2180 1.1 93.994 -36.4 4.859 5191 no
## 2181 1.1 93.994 -36.4 4.859 5191 no
## 2182 1.1 93.994 -36.4 4.859 5191 no
## 2183 1.1 93.994 -36.4 4.859 5191 no
## 2184 1.1 93.994 -36.4 4.859 5191 no
## 2185 1.1 93.994 -36.4 4.859 5191 no
## 2186 1.1 93.994 -36.4 4.859 5191 no
## 2187 1.1 93.994 -36.4 4.859 5191 no
## 2188 1.1 93.994 -36.4 4.859 5191 no
## 2189 1.1 93.994 -36.4 4.859 5191 no
## 2190 1.1 93.994 -36.4 4.859 5191 no
## 2191 1.1 93.994 -36.4 4.859 5191 no
## 2192 1.1 93.994 -36.4 4.859 5191 no
## 2193 1.1 93.994 -36.4 4.859 5191 no
## 2194 1.1 93.994 -36.4 4.859 5191 no
## 2195 1.1 93.994 -36.4 4.859 5191 no
## 2196 1.1 93.994 -36.4 4.859 5191 no
## 2197 1.1 93.994 -36.4 4.859 5191 no
## 2198 1.1 93.994 -36.4 4.859 5191 no
## 2199 1.1 93.994 -36.4 4.859 5191 no
## 2200 1.1 93.994 -36.4 4.859 5191 no
## 2201 1.1 93.994 -36.4 4.859 5191 no
## 2202 1.1 93.994 -36.4 4.859 5191 no
## 2203 1.1 93.994 -36.4 4.859 5191 no
## 2204 1.1 93.994 -36.4 4.859 5191 no
## 2205 1.1 93.994 -36.4 4.859 5191 no
## 2206 1.1 93.994 -36.4 4.859 5191 no
## 2207 1.1 93.994 -36.4 4.859 5191 no
## 2208 1.1 93.994 -36.4 4.859 5191 no
## 2209 1.1 93.994 -36.4 4.859 5191 no
## 2210 1.1 93.994 -36.4 4.859 5191 no
## 2211 1.1 93.994 -36.4 4.859 5191 no
## 2212 1.1 93.994 -36.4 4.859 5191 no
## 2213 1.1 93.994 -36.4 4.859 5191 no
## 2214 1.1 93.994 -36.4 4.859 5191 no
## 2215 1.1 93.994 -36.4 4.859 5191 no
## 2216 1.1 93.994 -36.4 4.859 5191 no
## 2217 1.1 93.994 -36.4 4.859 5191 no
## 2218 1.1 93.994 -36.4 4.859 5191 no
## 2219 1.1 93.994 -36.4 4.859 5191 no
## 2220 1.1 93.994 -36.4 4.859 5191 no
## 2221 1.1 93.994 -36.4 4.859 5191 no
## 2222 1.1 93.994 -36.4 4.859 5191 no
## 2223 1.1 93.994 -36.4 4.859 5191 no
## 2224 1.1 93.994 -36.4 4.859 5191 no
## 2225 1.1 93.994 -36.4 4.859 5191 no
## 2226 1.1 93.994 -36.4 4.859 5191 no
## 2227 1.1 93.994 -36.4 4.859 5191 no
## 2228 1.1 93.994 -36.4 4.859 5191 no
## 2229 1.1 93.994 -36.4 4.859 5191 no
## 2230 1.1 93.994 -36.4 4.859 5191 no
## 2231 1.1 93.994 -36.4 4.859 5191 no
## 2232 1.1 93.994 -36.4 4.859 5191 no
## 2233 1.1 93.994 -36.4 4.859 5191 no
## 2234 1.1 93.994 -36.4 4.859 5191 no
## 2235 1.1 93.994 -36.4 4.859 5191 no
## 2236 1.1 93.994 -36.4 4.859 5191 no
## 2237 1.1 93.994 -36.4 4.859 5191 no
## 2238 1.1 93.994 -36.4 4.859 5191 no
## 2239 1.1 93.994 -36.4 4.859 5191 no
## 2240 1.1 93.994 -36.4 4.859 5191 no
## 2241 1.1 93.994 -36.4 4.859 5191 no
## 2242 1.1 93.994 -36.4 4.859 5191 no
## 2243 1.1 93.994 -36.4 4.859 5191 no
## 2244 1.1 93.994 -36.4 4.859 5191 no
## 2245 1.1 93.994 -36.4 4.859 5191 no
## 2246 1.1 93.994 -36.4 4.859 5191 no
## 2247 1.1 93.994 -36.4 4.859 5191 no
## 2248 1.1 93.994 -36.4 4.859 5191 no
## 2249 1.1 93.994 -36.4 4.859 5191 no
## 2250 1.1 93.994 -36.4 4.859 5191 no
## 2251 1.1 93.994 -36.4 4.859 5191 no
## 2252 1.1 93.994 -36.4 4.859 5191 no
## 2253 1.1 93.994 -36.4 4.859 5191 no
## 2254 1.1 93.994 -36.4 4.859 5191 no
## 2255 1.1 93.994 -36.4 4.859 5191 no
## 2256 1.1 93.994 -36.4 4.859 5191 no
## 2257 1.1 93.994 -36.4 4.859 5191 no
## 2258 1.1 93.994 -36.4 4.859 5191 no
## 2259 1.1 93.994 -36.4 4.859 5191 no
## 2260 1.1 93.994 -36.4 4.859 5191 no
## 2261 1.1 93.994 -36.4 4.859 5191 no
## 2262 1.1 93.994 -36.4 4.859 5191 no
## 2263 1.1 93.994 -36.4 4.859 5191 no
## 2264 1.1 93.994 -36.4 4.859 5191 no
## 2265 1.1 93.994 -36.4 4.859 5191 no
## 2266 1.1 93.994 -36.4 4.859 5191 no
## 2267 1.1 93.994 -36.4 4.859 5191 no
## 2268 1.1 93.994 -36.4 4.859 5191 no
## 2269 1.1 93.994 -36.4 4.859 5191 no
## 2270 1.1 93.994 -36.4 4.859 5191 no
## 2271 1.1 93.994 -36.4 4.859 5191 no
## 2272 1.1 93.994 -36.4 4.859 5191 no
## 2273 1.1 93.994 -36.4 4.859 5191 no
## 2274 1.1 93.994 -36.4 4.859 5191 no
## 2275 1.1 93.994 -36.4 4.859 5191 no
## 2276 1.1 93.994 -36.4 4.859 5191 no
## 2277 1.1 93.994 -36.4 4.859 5191 no
## 2278 1.1 93.994 -36.4 4.859 5191 no
## 2279 1.1 93.994 -36.4 4.859 5191 no
## 2280 1.1 93.994 -36.4 4.859 5191 no
## 2281 1.1 93.994 -36.4 4.859 5191 no
## 2282 1.1 93.994 -36.4 4.859 5191 no
## 2283 1.1 93.994 -36.4 4.859 5191 no
## 2284 1.1 93.994 -36.4 4.859 5191 no
## 2285 1.1 93.994 -36.4 4.859 5191 no
## 2286 1.1 93.994 -36.4 4.859 5191 no
## 2287 1.1 93.994 -36.4 4.859 5191 no
## 2288 1.1 93.994 -36.4 4.859 5191 no
## 2289 1.1 93.994 -36.4 4.859 5191 no
## 2290 1.1 93.994 -36.4 4.859 5191 no
## 2291 1.1 93.994 -36.4 4.859 5191 no
## 2292 1.1 93.994 -36.4 4.859 5191 no
## 2293 1.1 93.994 -36.4 4.859 5191 no
## 2294 1.1 93.994 -36.4 4.859 5191 no
## 2295 1.1 93.994 -36.4 4.859 5191 no
## 2296 1.1 93.994 -36.4 4.859 5191 no
## 2297 1.1 93.994 -36.4 4.859 5191 no
## 2298 1.1 93.994 -36.4 4.859 5191 no
## 2299 1.1 93.994 -36.4 4.859 5191 no
## 2300 1.1 93.994 -36.4 4.859 5191 no
## 2301 1.1 93.994 -36.4 4.859 5191 no
## 2302 1.1 93.994 -36.4 4.859 5191 no
## 2303 1.1 93.994 -36.4 4.859 5191 no
## 2304 1.1 93.994 -36.4 4.859 5191 no
## 2305 1.1 93.994 -36.4 4.859 5191 no
## 2306 1.1 93.994 -36.4 4.859 5191 no
## 2307 1.1 93.994 -36.4 4.859 5191 no
## 2308 1.1 93.994 -36.4 4.859 5191 no
## 2309 1.1 93.994 -36.4 4.859 5191 no
## 2310 1.1 93.994 -36.4 4.859 5191 no
## 2311 1.1 93.994 -36.4 4.859 5191 no
## 2312 1.1 93.994 -36.4 4.859 5191 no
## 2313 1.1 93.994 -36.4 4.859 5191 no
## 2314 1.1 93.994 -36.4 4.859 5191 no
## 2315 1.1 93.994 -36.4 4.859 5191 no
## 2316 1.1 93.994 -36.4 4.859 5191 no
## 2317 1.1 93.994 -36.4 4.859 5191 no
## 2318 1.1 93.994 -36.4 4.859 5191 no
## 2319 1.1 93.994 -36.4 4.859 5191 no
## 2320 1.1 93.994 -36.4 4.859 5191 no
## 2321 1.1 93.994 -36.4 4.859 5191 no
## 2322 1.1 93.994 -36.4 4.859 5191 no
## 2323 1.1 93.994 -36.4 4.859 5191 no
## 2324 1.1 93.994 -36.4 4.859 5191 no
## 2325 1.1 93.994 -36.4 4.859 5191 no
## 2326 1.1 93.994 -36.4 4.859 5191 no
## 2327 1.1 93.994 -36.4 4.859 5191 no
## 2328 1.1 93.994 -36.4 4.859 5191 no
## 2329 1.1 93.994 -36.4 4.859 5191 no
## 2330 1.1 93.994 -36.4 4.859 5191 no
## 2331 1.1 93.994 -36.4 4.859 5191 no
## 2332 1.1 93.994 -36.4 4.859 5191 no
## 2333 1.1 93.994 -36.4 4.859 5191 no
## 2334 1.1 93.994 -36.4 4.859 5191 no
## 2335 1.1 93.994 -36.4 4.859 5191 no
## 2336 1.1 93.994 -36.4 4.859 5191 no
## 2337 1.1 93.994 -36.4 4.859 5191 no
## 2338 1.1 93.994 -36.4 4.859 5191 no
## 2339 1.1 93.994 -36.4 4.859 5191 no
## 2340 1.1 93.994 -36.4 4.859 5191 no
## 2341 1.1 93.994 -36.4 4.859 5191 no
## 2342 1.1 93.994 -36.4 4.859 5191 no
## 2343 1.1 93.994 -36.4 4.859 5191 no
## 2344 1.1 93.994 -36.4 4.859 5191 no
## 2345 1.1 93.994 -36.4 4.859 5191 no
## 2346 1.1 93.994 -36.4 4.859 5191 no
## 2347 1.1 93.994 -36.4 4.859 5191 no
## 2348 1.1 93.994 -36.4 4.859 5191 no
## 2349 1.1 93.994 -36.4 4.859 5191 no
## 2350 1.1 93.994 -36.4 4.859 5191 no
## 2351 1.1 93.994 -36.4 4.859 5191 no
## 2352 1.1 93.994 -36.4 4.859 5191 no
## 2353 1.1 93.994 -36.4 4.859 5191 no
## 2354 1.1 93.994 -36.4 4.859 5191 no
## 2355 1.1 93.994 -36.4 4.859 5191 no
## 2356 1.1 93.994 -36.4 4.859 5191 no
## 2357 1.1 93.994 -36.4 4.859 5191 no
## 2358 1.1 93.994 -36.4 4.859 5191 no
## 2359 1.1 93.994 -36.4 4.859 5191 no
## 2360 1.1 93.994 -36.4 4.859 5191 no
## 2361 1.1 93.994 -36.4 4.859 5191 no
## 2362 1.1 93.994 -36.4 4.859 5191 no
## 2363 1.1 93.994 -36.4 4.859 5191 no
## 2364 1.1 93.994 -36.4 4.859 5191 no
## 2365 1.1 93.994 -36.4 4.859 5191 no
## 2366 1.1 93.994 -36.4 4.859 5191 no
## 2367 1.1 93.994 -36.4 4.859 5191 no
## 2368 1.1 93.994 -36.4 4.859 5191 no
## 2369 1.1 93.994 -36.4 4.859 5191 no
## 2370 1.1 93.994 -36.4 4.859 5191 no
## 2371 1.1 93.994 -36.4 4.859 5191 no
## 2372 1.1 93.994 -36.4 4.859 5191 no
## 2373 1.1 93.994 -36.4 4.859 5191 no
## 2374 1.1 93.994 -36.4 4.859 5191 no
## 2375 1.1 93.994 -36.4 4.859 5191 no
## 2376 1.1 93.994 -36.4 4.859 5191 no
## 2377 1.1 93.994 -36.4 4.859 5191 no
## 2378 1.1 93.994 -36.4 4.859 5191 no
## 2379 1.1 93.994 -36.4 4.859 5191 no
## 2380 1.1 93.994 -36.4 4.859 5191 no
## 2381 1.1 93.994 -36.4 4.859 5191 no
## 2382 1.1 93.994 -36.4 4.859 5191 no
## 2383 1.1 93.994 -36.4 4.859 5191 no
## 2384 1.1 93.994 -36.4 4.859 5191 no
## 2385 1.1 93.994 -36.4 4.859 5191 no
## 2386 1.1 93.994 -36.4 4.859 5191 no
## 2387 1.1 93.994 -36.4 4.859 5191 no
## 2388 1.1 93.994 -36.4 4.859 5191 no
## 2389 1.1 93.994 -36.4 4.859 5191 no
## 2390 1.1 93.994 -36.4 4.859 5191 no
## 2391 1.1 93.994 -36.4 4.859 5191 no
## 2392 1.1 93.994 -36.4 4.859 5191 no
## 2393 1.1 93.994 -36.4 4.859 5191 no
## 2394 1.1 93.994 -36.4 4.859 5191 no
## 2395 1.1 93.994 -36.4 4.859 5191 no
## 2396 1.1 93.994 -36.4 4.859 5191 no
## 2397 1.1 93.994 -36.4 4.859 5191 no
## 2398 1.1 93.994 -36.4 4.859 5191 no
## 2399 1.1 93.994 -36.4 4.859 5191 no
## 2400 1.1 93.994 -36.4 4.859 5191 no
## 2401 1.1 93.994 -36.4 4.860 5191 no
## 2402 1.1 93.994 -36.4 4.860 5191 no
## 2403 1.1 93.994 -36.4 4.860 5191 no
## 2404 1.1 93.994 -36.4 4.860 5191 no
## 2405 1.1 93.994 -36.4 4.860 5191 no
## 2406 1.1 93.994 -36.4 4.860 5191 no
## 2407 1.1 93.994 -36.4 4.860 5191 no
## 2408 1.1 93.994 -36.4 4.860 5191 no
## 2409 1.1 93.994 -36.4 4.860 5191 no
## 2410 1.1 93.994 -36.4 4.860 5191 no
## 2411 1.1 93.994 -36.4 4.860 5191 no
## 2412 1.1 93.994 -36.4 4.860 5191 no
## 2413 1.1 93.994 -36.4 4.860 5191 no
## 2414 1.1 93.994 -36.4 4.860 5191 no
## 2415 1.1 93.994 -36.4 4.860 5191 no
## 2416 1.1 93.994 -36.4 4.860 5191 no
## 2417 1.1 93.994 -36.4 4.860 5191 no
## 2418 1.1 93.994 -36.4 4.860 5191 no
## 2419 1.1 93.994 -36.4 4.860 5191 no
## 2420 1.1 93.994 -36.4 4.860 5191 no
## 2421 1.1 93.994 -36.4 4.860 5191 no
## 2422 1.1 93.994 -36.4 4.860 5191 no
## 2423 1.1 93.994 -36.4 4.860 5191 no
## 2424 1.1 93.994 -36.4 4.860 5191 no
## 2425 1.1 93.994 -36.4 4.860 5191 no
## 2426 1.1 93.994 -36.4 4.860 5191 no
## 2427 1.1 93.994 -36.4 4.860 5191 no
## 2428 1.1 93.994 -36.4 4.860 5191 no
## 2429 1.1 93.994 -36.4 4.860 5191 no
## 2430 1.1 93.994 -36.4 4.860 5191 no
## 2431 1.1 93.994 -36.4 4.860 5191 no
## 2432 1.1 93.994 -36.4 4.860 5191 no
## 2433 1.1 93.994 -36.4 4.860 5191 no
## 2434 1.1 93.994 -36.4 4.860 5191 no
## 2435 1.1 93.994 -36.4 4.860 5191 no
## 2436 1.1 93.994 -36.4 4.860 5191 no
## 2437 1.1 93.994 -36.4 4.860 5191 no
## 2438 1.1 93.994 -36.4 4.860 5191 no
## 2439 1.1 93.994 -36.4 4.860 5191 no
## 2440 1.1 93.994 -36.4 4.860 5191 no
## 2441 1.1 93.994 -36.4 4.860 5191 no
## 2442 1.1 93.994 -36.4 4.860 5191 no
## 2443 1.1 93.994 -36.4 4.860 5191 no
## 2444 1.1 93.994 -36.4 4.860 5191 no
## 2445 1.1 93.994 -36.4 4.860 5191 no
## 2446 1.1 93.994 -36.4 4.860 5191 no
## 2447 1.1 93.994 -36.4 4.860 5191 no
## 2448 1.1 93.994 -36.4 4.860 5191 no
## 2449 1.1 93.994 -36.4 4.860 5191 no
## 2450 1.1 93.994 -36.4 4.860 5191 no
## 2451 1.1 93.994 -36.4 4.860 5191 no
## 2452 1.1 93.994 -36.4 4.860 5191 no
## 2453 1.1 93.994 -36.4 4.860 5191 no
## 2454 1.1 93.994 -36.4 4.860 5191 no
## 2455 1.1 93.994 -36.4 4.860 5191 no
## 2456 1.1 93.994 -36.4 4.860 5191 no
## 2457 1.1 93.994 -36.4 4.860 5191 no
## 2458 1.1 93.994 -36.4 4.860 5191 no
## 2459 1.1 93.994 -36.4 4.860 5191 no
## 2460 1.1 93.994 -36.4 4.860 5191 no
## 2461 1.1 93.994 -36.4 4.860 5191 no
## 2462 1.1 93.994 -36.4 4.860 5191 no
## 2463 1.1 93.994 -36.4 4.860 5191 no
## 2464 1.1 93.994 -36.4 4.860 5191 no
## 2465 1.1 93.994 -36.4 4.860 5191 no
## 2466 1.1 93.994 -36.4 4.860 5191 no
## 2467 1.1 93.994 -36.4 4.860 5191 no
## 2468 1.1 93.994 -36.4 4.860 5191 no
## 2469 1.1 93.994 -36.4 4.860 5191 no
## 2470 1.1 93.994 -36.4 4.860 5191 no
## 2471 1.1 93.994 -36.4 4.860 5191 no
## 2472 1.1 93.994 -36.4 4.860 5191 no
## 2473 1.1 93.994 -36.4 4.860 5191 no
## 2474 1.1 93.994 -36.4 4.860 5191 no
## 2475 1.1 93.994 -36.4 4.860 5191 no
## 2476 1.1 93.994 -36.4 4.860 5191 no
## 2477 1.1 93.994 -36.4 4.860 5191 no
## 2478 1.1 93.994 -36.4 4.860 5191 no
## 2479 1.1 93.994 -36.4 4.860 5191 no
## 2480 1.1 93.994 -36.4 4.860 5191 no
## 2481 1.1 93.994 -36.4 4.860 5191 no
## 2482 1.1 93.994 -36.4 4.860 5191 no
## 2483 1.1 93.994 -36.4 4.860 5191 no
## 2484 1.1 93.994 -36.4 4.860 5191 no
## 2485 1.1 93.994 -36.4 4.860 5191 no
## 2486 1.1 93.994 -36.4 4.860 5191 no
## 2487 1.1 93.994 -36.4 4.860 5191 no
## 2488 1.1 93.994 -36.4 4.860 5191 no
## 2489 1.1 93.994 -36.4 4.860 5191 no
## 2490 1.1 93.994 -36.4 4.860 5191 no
## 2491 1.1 93.994 -36.4 4.860 5191 no
## 2492 1.1 93.994 -36.4 4.860 5191 no
## 2493 1.1 93.994 -36.4 4.860 5191 no
## 2494 1.1 93.994 -36.4 4.860 5191 no
## 2495 1.1 93.994 -36.4 4.860 5191 no
## 2496 1.1 93.994 -36.4 4.860 5191 no
## 2497 1.1 93.994 -36.4 4.860 5191 no
## 2498 1.1 93.994 -36.4 4.860 5191 no
## 2499 1.1 93.994 -36.4 4.860 5191 no
## 2500 1.1 93.994 -36.4 4.860 5191 no
## 2501 1.1 93.994 -36.4 4.860 5191 no
## 2502 1.1 93.994 -36.4 4.860 5191 no
## 2503 1.1 93.994 -36.4 4.860 5191 no
## 2504 1.1 93.994 -36.4 4.860 5191 no
## 2505 1.1 93.994 -36.4 4.860 5191 no
## 2506 1.1 93.994 -36.4 4.860 5191 no
## 2507 1.1 93.994 -36.4 4.860 5191 no
## 2508 1.1 93.994 -36.4 4.860 5191 no
## 2509 1.1 93.994 -36.4 4.860 5191 no
## 2510 1.1 93.994 -36.4 4.860 5191 no
## 2511 1.1 93.994 -36.4 4.860 5191 no
## 2512 1.1 93.994 -36.4 4.860 5191 no
## 2513 1.1 93.994 -36.4 4.860 5191 no
## 2514 1.1 93.994 -36.4 4.860 5191 no
## 2515 1.1 93.994 -36.4 4.860 5191 no
## 2516 1.1 93.994 -36.4 4.860 5191 no
## 2517 1.1 93.994 -36.4 4.860 5191 no
## 2518 1.1 93.994 -36.4 4.860 5191 no
## 2519 1.1 93.994 -36.4 4.860 5191 no
## 2520 1.1 93.994 -36.4 4.860 5191 no
## 2521 1.1 93.994 -36.4 4.860 5191 no
## 2522 1.1 93.994 -36.4 4.860 5191 no
## 2523 1.1 93.994 -36.4 4.860 5191 no
## 2524 1.1 93.994 -36.4 4.860 5191 no
## 2525 1.1 93.994 -36.4 4.860 5191 no
## 2526 1.1 93.994 -36.4 4.860 5191 no
## 2527 1.1 93.994 -36.4 4.860 5191 no
## 2528 1.1 93.994 -36.4 4.860 5191 no
## 2529 1.1 93.994 -36.4 4.860 5191 no
## 2530 1.1 93.994 -36.4 4.860 5191 no
## 2531 1.1 93.994 -36.4 4.860 5191 no
## 2532 1.1 93.994 -36.4 4.860 5191 no
## 2533 1.1 93.994 -36.4 4.860 5191 no
## 2534 1.1 93.994 -36.4 4.860 5191 no
## 2535 1.1 93.994 -36.4 4.860 5191 no
## 2536 1.1 93.994 -36.4 4.860 5191 no
## 2537 1.1 93.994 -36.4 4.860 5191 no
## 2538 1.1 93.994 -36.4 4.860 5191 no
## 2539 1.1 93.994 -36.4 4.860 5191 no
## 2540 1.1 93.994 -36.4 4.860 5191 no
## 2541 1.1 93.994 -36.4 4.860 5191 no
## 2542 1.1 93.994 -36.4 4.860 5191 no
## 2543 1.1 93.994 -36.4 4.860 5191 no
## 2544 1.1 93.994 -36.4 4.860 5191 no
## 2545 1.1 93.994 -36.4 4.860 5191 no
## 2546 1.1 93.994 -36.4 4.860 5191 no
## 2547 1.1 93.994 -36.4 4.860 5191 no
## 2548 1.1 93.994 -36.4 4.860 5191 no
## 2549 1.1 93.994 -36.4 4.860 5191 no
## 2550 1.1 93.994 -36.4 4.860 5191 no
## 2551 1.1 93.994 -36.4 4.860 5191 no
## 2552 1.1 93.994 -36.4 4.860 5191 no
## 2553 1.1 93.994 -36.4 4.860 5191 no
## 2554 1.1 93.994 -36.4 4.860 5191 no
## 2555 1.1 93.994 -36.4 4.860 5191 no
## 2556 1.1 93.994 -36.4 4.860 5191 no
## 2557 1.1 93.994 -36.4 4.860 5191 no
## 2558 1.1 93.994 -36.4 4.860 5191 no
## 2559 1.1 93.994 -36.4 4.860 5191 no
## 2560 1.1 93.994 -36.4 4.860 5191 no
## 2561 1.1 93.994 -36.4 4.860 5191 no
## 2562 1.1 93.994 -36.4 4.860 5191 no
## 2563 1.1 93.994 -36.4 4.860 5191 no
## 2564 1.1 93.994 -36.4 4.860 5191 no
## 2565 1.1 93.994 -36.4 4.860 5191 no
## 2566 1.1 93.994 -36.4 4.860 5191 no
## 2567 1.1 93.994 -36.4 4.860 5191 no
## 2568 1.1 93.994 -36.4 4.860 5191 no
## 2569 1.1 93.994 -36.4 4.860 5191 no
## 2570 1.1 93.994 -36.4 4.860 5191 no
## 2571 1.1 93.994 -36.4 4.860 5191 no
## 2572 1.1 93.994 -36.4 4.860 5191 no
## 2573 1.1 93.994 -36.4 4.860 5191 no
## 2574 1.1 93.994 -36.4 4.860 5191 no
## 2575 1.1 93.994 -36.4 4.860 5191 no
## 2576 1.1 93.994 -36.4 4.860 5191 no
## 2577 1.1 93.994 -36.4 4.860 5191 no
## 2578 1.1 93.994 -36.4 4.860 5191 no
## 2579 1.1 93.994 -36.4 4.860 5191 no
## 2580 1.1 93.994 -36.4 4.860 5191 no
## 2581 1.1 93.994 -36.4 4.860 5191 no
## 2582 1.1 93.994 -36.4 4.860 5191 no
## 2583 1.1 93.994 -36.4 4.860 5191 no
## 2584 1.1 93.994 -36.4 4.860 5191 no
## 2585 1.1 93.994 -36.4 4.860 5191 no
## 2586 1.1 93.994 -36.4 4.860 5191 no
## 2587 1.1 93.994 -36.4 4.860 5191 no
## 2588 1.1 93.994 -36.4 4.860 5191 no
## 2589 1.1 93.994 -36.4 4.860 5191 no
## 2590 1.1 93.994 -36.4 4.860 5191 no
## 2591 1.1 93.994 -36.4 4.860 5191 no
## 2592 1.1 93.994 -36.4 4.860 5191 no
## 2593 1.1 93.994 -36.4 4.860 5191 no
## 2594 1.1 93.994 -36.4 4.860 5191 no
## 2595 1.1 93.994 -36.4 4.860 5191 no
## 2596 1.1 93.994 -36.4 4.860 5191 no
## 2597 1.1 93.994 -36.4 4.860 5191 no
## 2598 1.1 93.994 -36.4 4.860 5191 no
## 2599 1.1 93.994 -36.4 4.860 5191 no
## 2600 1.1 93.994 -36.4 4.860 5191 no
## 2601 1.1 93.994 -36.4 4.860 5191 no
## 2602 1.1 93.994 -36.4 4.860 5191 no
## 2603 1.1 93.994 -36.4 4.860 5191 no
## 2604 1.1 93.994 -36.4 4.860 5191 no
## 2605 1.1 93.994 -36.4 4.860 5191 no
## 2606 1.1 93.994 -36.4 4.860 5191 no
## 2607 1.1 93.994 -36.4 4.860 5191 no
## 2608 1.1 93.994 -36.4 4.860 5191 no
## 2609 1.1 93.994 -36.4 4.860 5191 no
## 2610 1.1 93.994 -36.4 4.860 5191 no
## 2611 1.1 93.994 -36.4 4.860 5191 no
## 2612 1.1 93.994 -36.4 4.860 5191 no
## 2613 1.1 93.994 -36.4 4.860 5191 no
## 2614 1.1 93.994 -36.4 4.860 5191 no
## 2615 1.1 93.994 -36.4 4.860 5191 no
## 2616 1.1 93.994 -36.4 4.860 5191 no
## 2617 1.1 93.994 -36.4 4.860 5191 no
## 2618 1.1 93.994 -36.4 4.860 5191 no
## 2619 1.1 93.994 -36.4 4.860 5191 no
## 2620 1.1 93.994 -36.4 4.860 5191 no
## 2621 1.1 93.994 -36.4 4.860 5191 no
## 2622 1.1 93.994 -36.4 4.860 5191 no
## 2623 1.1 93.994 -36.4 4.860 5191 no
## 2624 1.1 93.994 -36.4 4.860 5191 no
## 2625 1.1 93.994 -36.4 4.860 5191 no
## 2626 1.1 93.994 -36.4 4.860 5191 no
## 2627 1.1 93.994 -36.4 4.860 5191 no
## 2628 1.1 93.994 -36.4 4.860 5191 no
## 2629 1.1 93.994 -36.4 4.860 5191 no
## 2630 1.1 93.994 -36.4 4.860 5191 no
## 2631 1.1 93.994 -36.4 4.860 5191 no
## 2632 1.1 93.994 -36.4 4.860 5191 no
## 2633 1.1 93.994 -36.4 4.860 5191 no
## 2634 1.1 93.994 -36.4 4.860 5191 no
## 2635 1.1 93.994 -36.4 4.860 5191 no
## 2636 1.1 93.994 -36.4 4.860 5191 no
## 2637 1.1 93.994 -36.4 4.860 5191 no
## 2638 1.1 93.994 -36.4 4.860 5191 no
## 2639 1.1 93.994 -36.4 4.860 5191 no
## 2640 1.1 93.994 -36.4 4.860 5191 no
## 2641 1.1 93.994 -36.4 4.860 5191 no
## 2642 1.1 93.994 -36.4 4.860 5191 no
## 2643 1.1 93.994 -36.4 4.860 5191 no
## 2644 1.1 93.994 -36.4 4.860 5191 no
## 2645 1.1 93.994 -36.4 4.860 5191 no
## 2646 1.1 93.994 -36.4 4.860 5191 no
## 2647 1.1 93.994 -36.4 4.860 5191 no
## 2648 1.1 93.994 -36.4 4.860 5191 no
## 2649 1.1 93.994 -36.4 4.860 5191 no
## 2650 1.1 93.994 -36.4 4.860 5191 no
## 2651 1.1 93.994 -36.4 4.860 5191 no
## 2652 1.1 93.994 -36.4 4.860 5191 no
## 2653 1.1 93.994 -36.4 4.860 5191 no
## 2654 1.1 93.994 -36.4 4.860 5191 no
## 2655 1.1 93.994 -36.4 4.860 5191 no
## 2656 1.1 93.994 -36.4 4.860 5191 no
## 2657 1.1 93.994 -36.4 4.860 5191 no
## 2658 1.1 93.994 -36.4 4.860 5191 no
## 2659 1.1 93.994 -36.4 4.860 5191 no
## 2660 1.1 93.994 -36.4 4.860 5191 no
## 2661 1.1 93.994 -36.4 4.860 5191 no
## 2662 1.1 93.994 -36.4 4.860 5191 no
## 2663 1.1 93.994 -36.4 4.860 5191 no
## 2664 1.1 93.994 -36.4 4.860 5191 no
## 2665 1.1 93.994 -36.4 4.860 5191 no
## 2666 1.1 93.994 -36.4 4.860 5191 no
## 2667 1.1 93.994 -36.4 4.860 5191 no
## 2668 1.1 93.994 -36.4 4.860 5191 no
## 2669 1.1 93.994 -36.4 4.860 5191 no
## 2670 1.1 93.994 -36.4 4.860 5191 no
## 2671 1.1 93.994 -36.4 4.860 5191 no
## 2672 1.1 93.994 -36.4 4.860 5191 no
## 2673 1.1 93.994 -36.4 4.860 5191 no
## 2674 1.1 93.994 -36.4 4.860 5191 no
## 2675 1.1 93.994 -36.4 4.860 5191 no
## 2676 1.1 93.994 -36.4 4.860 5191 no
## 2677 1.1 93.994 -36.4 4.860 5191 no
## 2678 1.1 93.994 -36.4 4.860 5191 no
## 2679 1.1 93.994 -36.4 4.860 5191 no
## 2680 1.1 93.994 -36.4 4.860 5191 no
## 2681 1.1 93.994 -36.4 4.860 5191 no
## 2682 1.1 93.994 -36.4 4.860 5191 no
## 2683 1.1 93.994 -36.4 4.860 5191 no
## 2684 1.1 93.994 -36.4 4.860 5191 no
## 2685 1.1 93.994 -36.4 4.860 5191 no
## 2686 1.1 93.994 -36.4 4.860 5191 no
## 2687 1.1 93.994 -36.4 4.860 5191 no
## 2688 1.1 93.994 -36.4 4.860 5191 no
## 2689 1.1 93.994 -36.4 4.860 5191 no
## 2690 1.1 93.994 -36.4 4.860 5191 no
## 2691 1.1 93.994 -36.4 4.860 5191 no
## 2692 1.1 93.994 -36.4 4.860 5191 no
## 2693 1.1 93.994 -36.4 4.860 5191 no
## 2694 1.1 93.994 -36.4 4.860 5191 no
## 2695 1.1 93.994 -36.4 4.860 5191 no
## 2696 1.1 93.994 -36.4 4.860 5191 no
## 2697 1.1 93.994 -36.4 4.860 5191 no
## 2698 1.1 93.994 -36.4 4.860 5191 no
## 2699 1.1 93.994 -36.4 4.860 5191 no
## 2700 1.1 93.994 -36.4 4.860 5191 no
## 2701 1.1 93.994 -36.4 4.860 5191 no
## 2702 1.1 93.994 -36.4 4.860 5191 no
## 2703 1.1 93.994 -36.4 4.860 5191 no
## 2704 1.1 93.994 -36.4 4.860 5191 no
## 2705 1.1 93.994 -36.4 4.860 5191 no
## 2706 1.1 93.994 -36.4 4.860 5191 no
## 2707 1.1 93.994 -36.4 4.860 5191 no
## 2708 1.1 93.994 -36.4 4.860 5191 no
## 2709 1.1 93.994 -36.4 4.860 5191 no
## 2710 1.1 93.994 -36.4 4.860 5191 no
## 2711 1.1 93.994 -36.4 4.860 5191 no
## 2712 1.1 93.994 -36.4 4.860 5191 no
## 2713 1.1 93.994 -36.4 4.860 5191 no
## 2714 1.1 93.994 -36.4 4.860 5191 no
## 2715 1.1 93.994 -36.4 4.860 5191 no
## 2716 1.1 93.994 -36.4 4.860 5191 no
## 2717 1.1 93.994 -36.4 4.860 5191 no
## 2718 1.1 93.994 -36.4 4.860 5191 no
## 2719 1.1 93.994 -36.4 4.860 5191 no
## 2720 1.1 93.994 -36.4 4.860 5191 no
## 2721 1.1 93.994 -36.4 4.860 5191 no
## 2722 1.1 93.994 -36.4 4.860 5191 no
## 2723 1.1 93.994 -36.4 4.860 5191 no
## 2724 1.1 93.994 -36.4 4.860 5191 no
## 2725 1.1 93.994 -36.4 4.860 5191 no
## 2726 1.1 93.994 -36.4 4.860 5191 no
## 2727 1.1 93.994 -36.4 4.860 5191 no
## 2728 1.1 93.994 -36.4 4.860 5191 no
## 2729 1.1 93.994 -36.4 4.860 5191 no
## 2730 1.1 93.994 -36.4 4.860 5191 no
## 2731 1.1 93.994 -36.4 4.860 5191 no
## 2732 1.1 93.994 -36.4 4.860 5191 no
## 2733 1.1 93.994 -36.4 4.860 5191 no
## 2734 1.1 93.994 -36.4 4.860 5191 no
## 2735 1.1 93.994 -36.4 4.860 5191 no
## 2736 1.1 93.994 -36.4 4.860 5191 no
## 2737 1.1 93.994 -36.4 4.860 5191 no
## 2738 1.1 93.994 -36.4 4.860 5191 no
## 2739 1.1 93.994 -36.4 4.860 5191 no
## 2740 1.1 93.994 -36.4 4.860 5191 no
## 2741 1.1 93.994 -36.4 4.859 5191 no
## 2742 1.1 93.994 -36.4 4.859 5191 no
## 2743 1.1 93.994 -36.4 4.859 5191 no
## 2744 1.1 93.994 -36.4 4.859 5191 no
## 2745 1.1 93.994 -36.4 4.859 5191 no
## 2746 1.1 93.994 -36.4 4.859 5191 no
## 2747 1.1 93.994 -36.4 4.859 5191 no
## 2748 1.1 93.994 -36.4 4.859 5191 no
## 2749 1.1 93.994 -36.4 4.859 5191 no
## 2750 1.1 93.994 -36.4 4.859 5191 no
## 2751 1.1 93.994 -36.4 4.859 5191 no
## 2752 1.1 93.994 -36.4 4.859 5191 no
## 2753 1.1 93.994 -36.4 4.859 5191 no
## 2754 1.1 93.994 -36.4 4.859 5191 no
## 2755 1.1 93.994 -36.4 4.859 5191 no
## 2756 1.1 93.994 -36.4 4.859 5191 no
## 2757 1.1 93.994 -36.4 4.859 5191 no
## 2758 1.1 93.994 -36.4 4.859 5191 no
## 2759 1.1 93.994 -36.4 4.859 5191 no
## 2760 1.1 93.994 -36.4 4.859 5191 no
## 2761 1.1 93.994 -36.4 4.859 5191 no
## 2762 1.1 93.994 -36.4 4.859 5191 no
## 2763 1.1 93.994 -36.4 4.859 5191 no
## 2764 1.1 93.994 -36.4 4.859 5191 no
## 2765 1.1 93.994 -36.4 4.859 5191 no
## 2766 1.1 93.994 -36.4 4.859 5191 no
## 2767 1.1 93.994 -36.4 4.859 5191 no
## 2768 1.1 93.994 -36.4 4.859 5191 no
## 2769 1.1 93.994 -36.4 4.859 5191 no
## 2770 1.1 93.994 -36.4 4.859 5191 no
## 2771 1.1 93.994 -36.4 4.859 5191 no
## 2772 1.1 93.994 -36.4 4.859 5191 no
## 2773 1.1 93.994 -36.4 4.859 5191 no
## 2774 1.1 93.994 -36.4 4.859 5191 no
## 2775 1.1 93.994 -36.4 4.859 5191 no
## 2776 1.1 93.994 -36.4 4.859 5191 no
## 2777 1.1 93.994 -36.4 4.859 5191 no
## 2778 1.1 93.994 -36.4 4.859 5191 no
## 2779 1.1 93.994 -36.4 4.859 5191 no
## 2780 1.1 93.994 -36.4 4.859 5191 no
## 2781 1.1 93.994 -36.4 4.859 5191 no
## 2782 1.1 93.994 -36.4 4.859 5191 no
## 2783 1.1 93.994 -36.4 4.859 5191 no
## 2784 1.1 93.994 -36.4 4.859 5191 no
## 2785 1.1 93.994 -36.4 4.859 5191 no
## 2786 1.1 93.994 -36.4 4.859 5191 no
## 2787 1.1 93.994 -36.4 4.859 5191 no
## 2788 1.1 93.994 -36.4 4.859 5191 no
## 2789 1.1 93.994 -36.4 4.859 5191 no
## 2790 1.1 93.994 -36.4 4.859 5191 no
## 2791 1.1 93.994 -36.4 4.859 5191 no
## 2792 1.1 93.994 -36.4 4.859 5191 no
## 2793 1.1 93.994 -36.4 4.859 5191 no
## 2794 1.1 93.994 -36.4 4.859 5191 no
## 2795 1.1 93.994 -36.4 4.859 5191 no
## 2796 1.1 93.994 -36.4 4.859 5191 no
## 2797 1.1 93.994 -36.4 4.859 5191 no
## 2798 1.1 93.994 -36.4 4.859 5191 no
## 2799 1.1 93.994 -36.4 4.859 5191 no
## 2800 1.1 93.994 -36.4 4.859 5191 no
## 2801 1.1 93.994 -36.4 4.859 5191 no
## 2802 1.1 93.994 -36.4 4.859 5191 no
## 2803 1.1 93.994 -36.4 4.859 5191 no
## 2804 1.1 93.994 -36.4 4.859 5191 no
## 2805 1.1 93.994 -36.4 4.859 5191 no
## 2806 1.1 93.994 -36.4 4.859 5191 no
## 2807 1.1 93.994 -36.4 4.859 5191 no
## 2808 1.1 93.994 -36.4 4.859 5191 no
## 2809 1.1 93.994 -36.4 4.859 5191 no
## 2810 1.1 93.994 -36.4 4.859 5191 no
## 2811 1.1 93.994 -36.4 4.859 5191 no
## 2812 1.1 93.994 -36.4 4.859 5191 no
## 2813 1.1 93.994 -36.4 4.859 5191 no
## 2814 1.1 93.994 -36.4 4.859 5191 no
## 2815 1.1 93.994 -36.4 4.859 5191 no
## 2816 1.1 93.994 -36.4 4.859 5191 no
## 2817 1.1 93.994 -36.4 4.859 5191 no
## 2818 1.1 93.994 -36.4 4.859 5191 no
## 2819 1.1 93.994 -36.4 4.859 5191 no
## 2820 1.1 93.994 -36.4 4.859 5191 no
## 2821 1.1 93.994 -36.4 4.859 5191 no
## 2822 1.1 93.994 -36.4 4.859 5191 no
## 2823 1.1 93.994 -36.4 4.859 5191 no
## 2824 1.1 93.994 -36.4 4.859 5191 no
## 2825 1.1 93.994 -36.4 4.859 5191 no
## 2826 1.1 93.994 -36.4 4.859 5191 no
## 2827 1.1 93.994 -36.4 4.859 5191 no
## 2828 1.1 93.994 -36.4 4.859 5191 no
## 2829 1.1 93.994 -36.4 4.859 5191 no
## 2830 1.1 93.994 -36.4 4.859 5191 no
## 2831 1.1 93.994 -36.4 4.859 5191 no
## 2832 1.1 93.994 -36.4 4.859 5191 no
## 2833 1.1 93.994 -36.4 4.859 5191 no
## 2834 1.1 93.994 -36.4 4.859 5191 no
## 2835 1.1 93.994 -36.4 4.859 5191 no
## 2836 1.1 93.994 -36.4 4.859 5191 no
## 2837 1.1 93.994 -36.4 4.859 5191 no
## 2838 1.1 93.994 -36.4 4.859 5191 no
## 2839 1.1 93.994 -36.4 4.859 5191 no
## 2840 1.1 93.994 -36.4 4.859 5191 no
## 2841 1.1 93.994 -36.4 4.859 5191 no
## 2842 1.1 93.994 -36.4 4.859 5191 no
## 2843 1.1 93.994 -36.4 4.859 5191 no
## 2844 1.1 93.994 -36.4 4.859 5191 no
## 2845 1.1 93.994 -36.4 4.859 5191 no
## 2846 1.1 93.994 -36.4 4.859 5191 no
## 2847 1.1 93.994 -36.4 4.859 5191 no
## 2848 1.1 93.994 -36.4 4.859 5191 no
## 2849 1.1 93.994 -36.4 4.859 5191 no
## 2850 1.1 93.994 -36.4 4.859 5191 no
## 2851 1.1 93.994 -36.4 4.859 5191 no
## 2852 1.1 93.994 -36.4 4.859 5191 no
## 2853 1.1 93.994 -36.4 4.859 5191 no
## 2854 1.1 93.994 -36.4 4.859 5191 no
## 2855 1.1 93.994 -36.4 4.859 5191 no
## 2856 1.1 93.994 -36.4 4.859 5191 no
## 2857 1.1 93.994 -36.4 4.859 5191 no
## 2858 1.1 93.994 -36.4 4.859 5191 no
## 2859 1.1 93.994 -36.4 4.859 5191 no
## 2860 1.1 93.994 -36.4 4.859 5191 no
## 2861 1.1 93.994 -36.4 4.859 5191 no
## 2862 1.1 93.994 -36.4 4.859 5191 no
## 2863 1.1 93.994 -36.4 4.859 5191 no
## 2864 1.1 93.994 -36.4 4.859 5191 no
## 2865 1.1 93.994 -36.4 4.859 5191 no
## 2866 1.1 93.994 -36.4 4.859 5191 no
## 2867 1.1 93.994 -36.4 4.859 5191 no
## 2868 1.1 93.994 -36.4 4.859 5191 no
## 2869 1.1 93.994 -36.4 4.859 5191 no
## 2870 1.1 93.994 -36.4 4.859 5191 no
## 2871 1.1 93.994 -36.4 4.859 5191 no
## 2872 1.1 93.994 -36.4 4.859 5191 no
## 2873 1.1 93.994 -36.4 4.859 5191 no
## 2874 1.1 93.994 -36.4 4.859 5191 no
## 2875 1.1 93.994 -36.4 4.859 5191 no
## 2876 1.1 93.994 -36.4 4.859 5191 no
## 2877 1.1 93.994 -36.4 4.859 5191 no
## 2878 1.1 93.994 -36.4 4.859 5191 no
## 2879 1.1 93.994 -36.4 4.859 5191 no
## 2880 1.1 93.994 -36.4 4.859 5191 no
## 2881 1.1 93.994 -36.4 4.859 5191 no
## 2882 1.1 93.994 -36.4 4.859 5191 no
## 2883 1.1 93.994 -36.4 4.859 5191 no
## 2884 1.1 93.994 -36.4 4.859 5191 no
## 2885 1.1 93.994 -36.4 4.859 5191 no
## 2886 1.1 93.994 -36.4 4.859 5191 no
## 2887 1.1 93.994 -36.4 4.859 5191 no
## 2888 1.1 93.994 -36.4 4.859 5191 no
## 2889 1.1 93.994 -36.4 4.859 5191 no
## 2890 1.1 93.994 -36.4 4.859 5191 no
## 2891 1.1 93.994 -36.4 4.859 5191 no
## 2892 1.1 93.994 -36.4 4.859 5191 no
## 2893 1.1 93.994 -36.4 4.859 5191 no
## 2894 1.1 93.994 -36.4 4.859 5191 no
## 2895 1.1 93.994 -36.4 4.859 5191 no
## 2896 1.1 93.994 -36.4 4.859 5191 no
## 2897 1.1 93.994 -36.4 4.859 5191 no
## 2898 1.1 93.994 -36.4 4.859 5191 no
## 2899 1.1 93.994 -36.4 4.859 5191 no
## 2900 1.1 93.994 -36.4 4.859 5191 no
## 2901 1.1 93.994 -36.4 4.859 5191 no
## 2902 1.1 93.994 -36.4 4.859 5191 no
## 2903 1.1 93.994 -36.4 4.859 5191 no
## 2904 1.1 93.994 -36.4 4.859 5191 no
## 2905 1.1 93.994 -36.4 4.859 5191 no
## 2906 1.1 93.994 -36.4 4.859 5191 no
## 2907 1.1 93.994 -36.4 4.859 5191 no
## 2908 1.1 93.994 -36.4 4.859 5191 no
## 2909 1.1 93.994 -36.4 4.859 5191 no
## 2910 1.1 93.994 -36.4 4.859 5191 no
## 2911 1.1 93.994 -36.4 4.859 5191 no
## 2912 1.1 93.994 -36.4 4.859 5191 no
## 2913 1.1 93.994 -36.4 4.859 5191 no
## 2914 1.1 93.994 -36.4 4.859 5191 no
## 2915 1.1 93.994 -36.4 4.859 5191 no
## 2916 1.1 93.994 -36.4 4.859 5191 no
## 2917 1.1 93.994 -36.4 4.859 5191 no
## 2918 1.1 93.994 -36.4 4.859 5191 no
## 2919 1.1 93.994 -36.4 4.859 5191 no
## 2920 1.1 93.994 -36.4 4.859 5191 no
## 2921 1.1 93.994 -36.4 4.859 5191 no
## 2922 1.1 93.994 -36.4 4.859 5191 no
## 2923 1.1 93.994 -36.4 4.859 5191 no
## 2924 1.1 93.994 -36.4 4.859 5191 no
## 2925 1.1 93.994 -36.4 4.859 5191 no
## 2926 1.1 93.994 -36.4 4.859 5191 no
## 2927 1.1 93.994 -36.4 4.859 5191 no
## 2928 1.1 93.994 -36.4 4.859 5191 no
## 2929 1.1 93.994 -36.4 4.859 5191 no
## 2930 1.1 93.994 -36.4 4.859 5191 no
## 2931 1.1 93.994 -36.4 4.859 5191 no
## 2932 1.1 93.994 -36.4 4.859 5191 no
## 2933 1.1 93.994 -36.4 4.859 5191 no
## 2934 1.1 93.994 -36.4 4.859 5191 no
## 2935 1.1 93.994 -36.4 4.859 5191 no
## 2936 1.1 93.994 -36.4 4.859 5191 no
## 2937 1.1 93.994 -36.4 4.859 5191 no
## 2938 1.1 93.994 -36.4 4.859 5191 no
## 2939 1.1 93.994 -36.4 4.859 5191 no
## 2940 1.1 93.994 -36.4 4.859 5191 no
## 2941 1.1 93.994 -36.4 4.859 5191 no
## 2942 1.1 93.994 -36.4 4.859 5191 no
## 2943 1.1 93.994 -36.4 4.859 5191 no
## 2944 1.1 93.994 -36.4 4.859 5191 no
## 2945 1.1 93.994 -36.4 4.859 5191 no
## 2946 1.1 93.994 -36.4 4.859 5191 no
## 2947 1.1 93.994 -36.4 4.859 5191 no
## 2948 1.1 93.994 -36.4 4.859 5191 no
## 2949 1.1 93.994 -36.4 4.859 5191 no
## 2950 1.1 93.994 -36.4 4.859 5191 no
## 2951 1.1 93.994 -36.4 4.859 5191 no
## 2952 1.1 93.994 -36.4 4.859 5191 no
## 2953 1.1 93.994 -36.4 4.859 5191 no
## 2954 1.1 93.994 -36.4 4.859 5191 no
## 2955 1.1 93.994 -36.4 4.859 5191 no
## 2956 1.1 93.994 -36.4 4.859 5191 no
## 2957 1.1 93.994 -36.4 4.859 5191 no
## 2958 1.1 93.994 -36.4 4.859 5191 no
## 2959 1.1 93.994 -36.4 4.859 5191 no
## 2960 1.1 93.994 -36.4 4.859 5191 no
## 2961 1.1 93.994 -36.4 4.859 5191 no
## 2962 1.1 93.994 -36.4 4.859 5191 no
## 2963 1.1 93.994 -36.4 4.859 5191 no
## 2964 1.1 93.994 -36.4 4.859 5191 no
## 2965 1.1 93.994 -36.4 4.859 5191 no
## 2966 1.1 93.994 -36.4 4.859 5191 no
## 2967 1.1 93.994 -36.4 4.859 5191 no
## 2968 1.1 93.994 -36.4 4.859 5191 no
## 2969 1.1 93.994 -36.4 4.859 5191 no
## 2970 1.1 93.994 -36.4 4.859 5191 no
## 2971 1.1 93.994 -36.4 4.859 5191 no
## 2972 1.1 93.994 -36.4 4.859 5191 no
## 2973 1.1 93.994 -36.4 4.859 5191 no
## 2974 1.1 93.994 -36.4 4.859 5191 no
## 2975 1.1 93.994 -36.4 4.859 5191 no
## 2976 1.1 93.994 -36.4 4.859 5191 no
## 2977 1.1 93.994 -36.4 4.859 5191 no
## 2978 1.1 93.994 -36.4 4.859 5191 no
## 2979 1.1 93.994 -36.4 4.859 5191 no
## 2980 1.1 93.994 -36.4 4.859 5191 no
## 2981 1.1 93.994 -36.4 4.859 5191 no
## 2982 1.1 93.994 -36.4 4.859 5191 no
## 2983 1.1 93.994 -36.4 4.859 5191 no
## 2984 1.1 93.994 -36.4 4.859 5191 no
## 2985 1.1 93.994 -36.4 4.859 5191 no
## 2986 1.1 93.994 -36.4 4.859 5191 no
## 2987 1.1 93.994 -36.4 4.859 5191 no
## 2988 1.1 93.994 -36.4 4.859 5191 no
## 2989 1.1 93.994 -36.4 4.859 5191 no
## 2990 1.1 93.994 -36.4 4.859 5191 no
## 2991 1.1 93.994 -36.4 4.859 5191 no
## 2992 1.1 93.994 -36.4 4.859 5191 no
## 2993 1.1 93.994 -36.4 4.859 5191 no
## 2994 1.1 93.994 -36.4 4.859 5191 no
## 2995 1.1 93.994 -36.4 4.859 5191 no
## 2996 1.1 93.994 -36.4 4.859 5191 no
## 2997 1.1 93.994 -36.4 4.859 5191 no
## 2998 1.1 93.994 -36.4 4.859 5191 no
## 2999 1.1 93.994 -36.4 4.859 5191 no
## 3000 1.1 93.994 -36.4 4.859 5191 no
## 3001 1.1 93.994 -36.4 4.859 5191 no
## 3002 1.1 93.994 -36.4 4.859 5191 no
## 3003 1.1 93.994 -36.4 4.859 5191 no
## 3004 1.1 93.994 -36.4 4.859 5191 no
## 3005 1.1 93.994 -36.4 4.859 5191 no
## 3006 1.1 93.994 -36.4 4.859 5191 no
## 3007 1.1 93.994 -36.4 4.859 5191 no
## 3008 1.1 93.994 -36.4 4.859 5191 no
## 3009 1.1 93.994 -36.4 4.859 5191 no
## 3010 1.1 93.994 -36.4 4.859 5191 no
## 3011 1.1 93.994 -36.4 4.859 5191 no
## 3012 1.1 93.994 -36.4 4.859 5191 no
## 3013 1.1 93.994 -36.4 4.859 5191 no
## 3014 1.1 93.994 -36.4 4.859 5191 no
## 3015 1.1 93.994 -36.4 4.858 5191 no
## 3016 1.1 93.994 -36.4 4.858 5191 no
## 3017 1.1 93.994 -36.4 4.858 5191 no
## 3018 1.1 93.994 -36.4 4.858 5191 no
## 3019 1.1 93.994 -36.4 4.858 5191 no
## 3020 1.1 93.994 -36.4 4.858 5191 no
## 3021 1.1 93.994 -36.4 4.858 5191 no
## 3022 1.1 93.994 -36.4 4.858 5191 no
## 3023 1.1 93.994 -36.4 4.858 5191 no
## 3024 1.1 93.994 -36.4 4.858 5191 no
## 3025 1.1 93.994 -36.4 4.858 5191 no
## 3026 1.1 93.994 -36.4 4.858 5191 no
## 3027 1.1 93.994 -36.4 4.858 5191 no
## 3028 1.1 93.994 -36.4 4.858 5191 no
## 3029 1.1 93.994 -36.4 4.858 5191 no
## 3030 1.1 93.994 -36.4 4.858 5191 no
## 3031 1.1 93.994 -36.4 4.858 5191 no
## 3032 1.1 93.994 -36.4 4.858 5191 no
## 3033 1.1 93.994 -36.4 4.858 5191 no
## 3034 1.1 93.994 -36.4 4.858 5191 no
## 3035 1.1 93.994 -36.4 4.858 5191 no
## 3036 1.1 93.994 -36.4 4.858 5191 no
## 3037 1.1 93.994 -36.4 4.858 5191 no
## 3038 1.1 93.994 -36.4 4.858 5191 no
## 3039 1.1 93.994 -36.4 4.858 5191 no
## 3040 1.1 93.994 -36.4 4.858 5191 no
## 3041 1.1 93.994 -36.4 4.858 5191 no
## 3042 1.1 93.994 -36.4 4.858 5191 no
## 3043 1.1 93.994 -36.4 4.858 5191 no
## 3044 1.1 93.994 -36.4 4.858 5191 no
## 3045 1.1 93.994 -36.4 4.858 5191 no
## 3046 1.1 93.994 -36.4 4.858 5191 no
## 3047 1.1 93.994 -36.4 4.858 5191 no
## 3048 1.1 93.994 -36.4 4.858 5191 no
## 3049 1.1 93.994 -36.4 4.858 5191 no
## 3050 1.1 93.994 -36.4 4.858 5191 no
## 3051 1.1 93.994 -36.4 4.858 5191 no
## 3052 1.1 93.994 -36.4 4.858 5191 no
## 3053 1.1 93.994 -36.4 4.858 5191 no
## 3054 1.1 93.994 -36.4 4.858 5191 no
## 3055 1.1 93.994 -36.4 4.858 5191 no
## 3056 1.1 93.994 -36.4 4.858 5191 no
## 3057 1.1 93.994 -36.4 4.858 5191 no
## 3058 1.1 93.994 -36.4 4.858 5191 no
## 3059 1.1 93.994 -36.4 4.858 5191 no
## 3060 1.1 93.994 -36.4 4.858 5191 no
## 3061 1.1 93.994 -36.4 4.858 5191 no
## 3062 1.1 93.994 -36.4 4.858 5191 no
## 3063 1.1 93.994 -36.4 4.858 5191 no
## 3064 1.1 93.994 -36.4 4.858 5191 no
## 3065 1.1 93.994 -36.4 4.858 5191 no
## 3066 1.1 93.994 -36.4 4.858 5191 no
## 3067 1.1 93.994 -36.4 4.858 5191 no
## 3068 1.1 93.994 -36.4 4.858 5191 no
## 3069 1.1 93.994 -36.4 4.858 5191 no
## 3070 1.1 93.994 -36.4 4.858 5191 no
## 3071 1.1 93.994 -36.4 4.858 5191 no
## 3072 1.1 93.994 -36.4 4.858 5191 no
## 3073 1.1 93.994 -36.4 4.858 5191 no
## 3074 1.1 93.994 -36.4 4.858 5191 no
## 3075 1.1 93.994 -36.4 4.858 5191 no
## 3076 1.1 93.994 -36.4 4.858 5191 no
## 3077 1.1 93.994 -36.4 4.858 5191 no
## 3078 1.1 93.994 -36.4 4.858 5191 no
## 3079 1.1 93.994 -36.4 4.858 5191 no
## 3080 1.1 93.994 -36.4 4.858 5191 no
## 3081 1.1 93.994 -36.4 4.858 5191 no
## 3082 1.1 93.994 -36.4 4.858 5191 no
## 3083 1.1 93.994 -36.4 4.858 5191 no
## 3084 1.1 93.994 -36.4 4.858 5191 no
## 3085 1.1 93.994 -36.4 4.858 5191 no
## 3086 1.1 93.994 -36.4 4.858 5191 no
## 3087 1.1 93.994 -36.4 4.858 5191 no
## 3088 1.1 93.994 -36.4 4.858 5191 no
## 3089 1.1 93.994 -36.4 4.858 5191 no
## 3090 1.1 93.994 -36.4 4.858 5191 no
## 3091 1.1 93.994 -36.4 4.858 5191 no
## 3092 1.1 93.994 -36.4 4.858 5191 no
## 3093 1.1 93.994 -36.4 4.858 5191 no
## 3094 1.1 93.994 -36.4 4.858 5191 no
## 3095 1.1 93.994 -36.4 4.858 5191 no
## 3096 1.1 93.994 -36.4 4.858 5191 no
## 3097 1.1 93.994 -36.4 4.858 5191 no
## 3098 1.1 93.994 -36.4 4.858 5191 no
## 3099 1.1 93.994 -36.4 4.858 5191 no
## 3100 1.1 93.994 -36.4 4.858 5191 no
## 3101 1.1 93.994 -36.4 4.858 5191 no
## 3102 1.1 93.994 -36.4 4.858 5191 no
## 3103 1.1 93.994 -36.4 4.858 5191 no
## 3104 1.1 93.994 -36.4 4.858 5191 no
## 3105 1.1 93.994 -36.4 4.858 5191 no
## 3106 1.1 93.994 -36.4 4.858 5191 no
## 3107 1.1 93.994 -36.4 4.858 5191 no
## 3108 1.1 93.994 -36.4 4.858 5191 no
## 3109 1.1 93.994 -36.4 4.858 5191 no
## 3110 1.1 93.994 -36.4 4.858 5191 no
## 3111 1.1 93.994 -36.4 4.858 5191 no
## 3112 1.1 93.994 -36.4 4.858 5191 no
## 3113 1.1 93.994 -36.4 4.858 5191 no
## 3114 1.1 93.994 -36.4 4.858 5191 no
## 3115 1.1 93.994 -36.4 4.858 5191 no
## 3116 1.1 93.994 -36.4 4.858 5191 no
## 3117 1.1 93.994 -36.4 4.858 5191 no
## 3118 1.1 93.994 -36.4 4.858 5191 no
## 3119 1.1 93.994 -36.4 4.858 5191 no
## 3120 1.1 93.994 -36.4 4.858 5191 no
## 3121 1.1 93.994 -36.4 4.858 5191 no
## 3122 1.1 93.994 -36.4 4.858 5191 no
## 3123 1.1 93.994 -36.4 4.858 5191 no
## 3124 1.1 93.994 -36.4 4.858 5191 no
## 3125 1.1 93.994 -36.4 4.858 5191 no
## 3126 1.1 93.994 -36.4 4.858 5191 no
## 3127 1.1 93.994 -36.4 4.858 5191 no
## 3128 1.1 93.994 -36.4 4.858 5191 no
## 3129 1.1 93.994 -36.4 4.858 5191 no
## 3130 1.1 93.994 -36.4 4.858 5191 no
## 3131 1.1 93.994 -36.4 4.858 5191 no
## 3132 1.1 93.994 -36.4 4.858 5191 no
## 3133 1.1 93.994 -36.4 4.858 5191 no
## 3134 1.1 93.994 -36.4 4.858 5191 no
## 3135 1.1 93.994 -36.4 4.858 5191 no
## 3136 1.1 93.994 -36.4 4.858 5191 no
## 3137 1.1 93.994 -36.4 4.858 5191 no
## 3138 1.1 93.994 -36.4 4.858 5191 no
## 3139 1.1 93.994 -36.4 4.858 5191 no
## 3140 1.1 93.994 -36.4 4.858 5191 no
## 3141 1.1 93.994 -36.4 4.858 5191 no
## 3142 1.1 93.994 -36.4 4.858 5191 no
## 3143 1.1 93.994 -36.4 4.858 5191 no
## 3144 1.1 93.994 -36.4 4.858 5191 no
## 3145 1.1 93.994 -36.4 4.858 5191 no
## 3146 1.1 93.994 -36.4 4.858 5191 no
## 3147 1.1 93.994 -36.4 4.858 5191 no
## 3148 1.1 93.994 -36.4 4.858 5191 no
## 3149 1.1 93.994 -36.4 4.858 5191 no
## 3150 1.1 93.994 -36.4 4.858 5191 no
## 3151 1.1 93.994 -36.4 4.858 5191 no
## 3152 1.1 93.994 -36.4 4.858 5191 no
## 3153 1.1 93.994 -36.4 4.858 5191 no
## 3154 1.1 93.994 -36.4 4.858 5191 no
## 3155 1.1 93.994 -36.4 4.858 5191 no
## 3156 1.1 93.994 -36.4 4.858 5191 no
## 3157 1.1 93.994 -36.4 4.858 5191 no
## 3158 1.1 93.994 -36.4 4.858 5191 no
## 3159 1.1 93.994 -36.4 4.858 5191 no
## 3160 1.1 93.994 -36.4 4.858 5191 no
## 3161 1.1 93.994 -36.4 4.858 5191 no
## 3162 1.1 93.994 -36.4 4.858 5191 no
## 3163 1.1 93.994 -36.4 4.858 5191 no
## 3164 1.1 93.994 -36.4 4.858 5191 no
## 3165 1.1 93.994 -36.4 4.858 5191 no
## 3166 1.1 93.994 -36.4 4.858 5191 no
## 3167 1.1 93.994 -36.4 4.858 5191 no
## 3168 1.1 93.994 -36.4 4.858 5191 no
## 3169 1.1 93.994 -36.4 4.858 5191 no
## 3170 1.1 93.994 -36.4 4.858 5191 no
## 3171 1.1 93.994 -36.4 4.858 5191 no
## 3172 1.1 93.994 -36.4 4.858 5191 no
## 3173 1.1 93.994 -36.4 4.858 5191 no
## 3174 1.1 93.994 -36.4 4.858 5191 no
## 3175 1.1 93.994 -36.4 4.858 5191 no
## 3176 1.1 93.994 -36.4 4.858 5191 no
## 3177 1.1 93.994 -36.4 4.858 5191 no
## 3178 1.1 93.994 -36.4 4.858 5191 no
## 3179 1.1 93.994 -36.4 4.858 5191 no
## 3180 1.1 93.994 -36.4 4.858 5191 no
## 3181 1.1 93.994 -36.4 4.858 5191 no
## 3182 1.1 93.994 -36.4 4.858 5191 no
## 3183 1.1 93.994 -36.4 4.858 5191 no
## 3184 1.1 93.994 -36.4 4.858 5191 no
## 3185 1.1 93.994 -36.4 4.858 5191 no
## 3186 1.1 93.994 -36.4 4.858 5191 no
## 3187 1.1 93.994 -36.4 4.858 5191 no
## 3188 1.1 93.994 -36.4 4.858 5191 no
## 3189 1.1 93.994 -36.4 4.858 5191 no
## 3190 1.1 93.994 -36.4 4.858 5191 no
## 3191 1.1 93.994 -36.4 4.858 5191 no
## 3192 1.1 93.994 -36.4 4.858 5191 no
## 3193 1.1 93.994 -36.4 4.858 5191 no
## 3194 1.1 93.994 -36.4 4.858 5191 no
## 3195 1.1 93.994 -36.4 4.858 5191 no
## 3196 1.1 93.994 -36.4 4.858 5191 no
## 3197 1.1 93.994 -36.4 4.858 5191 no
## 3198 1.1 93.994 -36.4 4.858 5191 no
## 3199 1.1 93.994 -36.4 4.858 5191 no
## 3200 1.1 93.994 -36.4 4.858 5191 no
## 3201 1.1 93.994 -36.4 4.858 5191 no
## 3202 1.1 93.994 -36.4 4.858 5191 no
## 3203 1.1 93.994 -36.4 4.858 5191 no
## 3204 1.1 93.994 -36.4 4.858 5191 no
## 3205 1.1 93.994 -36.4 4.858 5191 no
## 3206 1.1 93.994 -36.4 4.858 5191 no
## 3207 1.1 93.994 -36.4 4.858 5191 no
## 3208 1.1 93.994 -36.4 4.858 5191 no
## 3209 1.1 93.994 -36.4 4.858 5191 no
## 3210 1.1 93.994 -36.4 4.858 5191 no
## 3211 1.1 93.994 -36.4 4.858 5191 no
## 3212 1.1 93.994 -36.4 4.858 5191 no
## 3213 1.1 93.994 -36.4 4.858 5191 no
## 3214 1.1 93.994 -36.4 4.858 5191 no
## 3215 1.1 93.994 -36.4 4.858 5191 no
## 3216 1.1 93.994 -36.4 4.858 5191 no
## 3217 1.1 93.994 -36.4 4.858 5191 no
## 3218 1.1 93.994 -36.4 4.858 5191 no
## 3219 1.1 93.994 -36.4 4.858 5191 no
## 3220 1.1 93.994 -36.4 4.858 5191 no
## 3221 1.1 93.994 -36.4 4.858 5191 no
## 3222 1.1 93.994 -36.4 4.858 5191 no
## 3223 1.1 93.994 -36.4 4.858 5191 no
## 3224 1.1 93.994 -36.4 4.858 5191 no
## 3225 1.1 93.994 -36.4 4.858 5191 no
## 3226 1.1 93.994 -36.4 4.858 5191 no
## 3227 1.1 93.994 -36.4 4.858 5191 no
## 3228 1.1 93.994 -36.4 4.858 5191 no
## 3229 1.1 93.994 -36.4 4.858 5191 no
## 3230 1.1 93.994 -36.4 4.858 5191 no
## 3231 1.1 93.994 -36.4 4.858 5191 no
## 3232 1.1 93.994 -36.4 4.858 5191 no
## 3233 1.1 93.994 -36.4 4.858 5191 no
## 3234 1.1 93.994 -36.4 4.858 5191 no
## 3235 1.1 93.994 -36.4 4.858 5191 no
## 3236 1.1 93.994 -36.4 4.858 5191 no
## 3237 1.1 93.994 -36.4 4.858 5191 no
## 3238 1.1 93.994 -36.4 4.858 5191 no
## 3239 1.1 93.994 -36.4 4.858 5191 no
## 3240 1.1 93.994 -36.4 4.858 5191 no
## 3241 1.1 93.994 -36.4 4.858 5191 no
## 3242 1.1 93.994 -36.4 4.858 5191 no
## 3243 1.1 93.994 -36.4 4.858 5191 no
## 3244 1.1 93.994 -36.4 4.858 5191 no
## 3245 1.1 93.994 -36.4 4.858 5191 no
## 3246 1.1 93.994 -36.4 4.858 5191 no
## 3247 1.1 93.994 -36.4 4.858 5191 no
## 3248 1.1 93.994 -36.4 4.858 5191 no
## 3249 1.1 93.994 -36.4 4.858 5191 no
## 3250 1.1 93.994 -36.4 4.858 5191 no
## 3251 1.1 93.994 -36.4 4.858 5191 no
## 3252 1.1 93.994 -36.4 4.858 5191 no
## 3253 1.1 93.994 -36.4 4.858 5191 no
## 3254 1.1 93.994 -36.4 4.858 5191 no
## 3255 1.1 93.994 -36.4 4.858 5191 no
## 3256 1.1 93.994 -36.4 4.858 5191 no
## 3257 1.1 93.994 -36.4 4.856 5191 no
## 3258 1.1 93.994 -36.4 4.856 5191 no
## 3259 1.1 93.994 -36.4 4.856 5191 no
## 3260 1.1 93.994 -36.4 4.856 5191 no
## 3261 1.1 93.994 -36.4 4.856 5191 no
## 3262 1.1 93.994 -36.4 4.856 5191 no
## 3263 1.1 93.994 -36.4 4.856 5191 no
## 3264 1.1 93.994 -36.4 4.856 5191 no
## 3265 1.1 93.994 -36.4 4.856 5191 no
## 3266 1.1 93.994 -36.4 4.856 5191 no
## 3267 1.1 93.994 -36.4 4.856 5191 no
## 3268 1.1 93.994 -36.4 4.856 5191 no
## 3269 1.1 93.994 -36.4 4.856 5191 no
## 3270 1.1 93.994 -36.4 4.856 5191 no
## 3271 1.1 93.994 -36.4 4.856 5191 no
## 3272 1.1 93.994 -36.4 4.856 5191 no
## 3273 1.1 93.994 -36.4 4.856 5191 no
## 3274 1.1 93.994 -36.4 4.856 5191 no
## 3275 1.1 93.994 -36.4 4.856 5191 no
## 3276 1.1 93.994 -36.4 4.856 5191 no
## 3277 1.1 93.994 -36.4 4.856 5191 no
## 3278 1.1 93.994 -36.4 4.856 5191 no
## 3279 1.1 93.994 -36.4 4.856 5191 no
## 3280 1.1 93.994 -36.4 4.856 5191 no
## 3281 1.1 93.994 -36.4 4.856 5191 no
## 3282 1.1 93.994 -36.4 4.856 5191 no
## 3283 1.1 93.994 -36.4 4.856 5191 no
## 3284 1.1 93.994 -36.4 4.856 5191 no
## 3285 1.1 93.994 -36.4 4.856 5191 no
## 3286 1.1 93.994 -36.4 4.856 5191 no
## 3287 1.1 93.994 -36.4 4.856 5191 no
## 3288 1.1 93.994 -36.4 4.856 5191 no
## 3289 1.1 93.994 -36.4 4.856 5191 no
## 3290 1.1 93.994 -36.4 4.856 5191 no
## 3291 1.1 93.994 -36.4 4.856 5191 no
## 3292 1.1 93.994 -36.4 4.856 5191 no
## 3293 1.1 93.994 -36.4 4.856 5191 no
## 3294 1.1 93.994 -36.4 4.856 5191 no
## 3295 1.1 93.994 -36.4 4.856 5191 no
## 3296 1.1 93.994 -36.4 4.856 5191 no
## 3297 1.1 93.994 -36.4 4.856 5191 no
## 3298 1.1 93.994 -36.4 4.856 5191 no
## 3299 1.1 93.994 -36.4 4.856 5191 no
## 3300 1.1 93.994 -36.4 4.856 5191 no
## 3301 1.1 93.994 -36.4 4.856 5191 no
## 3302 1.1 93.994 -36.4 4.856 5191 no
## 3303 1.1 93.994 -36.4 4.856 5191 no
## 3304 1.1 93.994 -36.4 4.856 5191 no
## 3305 1.1 93.994 -36.4 4.856 5191 no
## 3306 1.1 93.994 -36.4 4.856 5191 no
## 3307 1.1 93.994 -36.4 4.856 5191 no
## 3308 1.1 93.994 -36.4 4.856 5191 no
## 3309 1.1 93.994 -36.4 4.856 5191 no
## 3310 1.1 93.994 -36.4 4.856 5191 no
## 3311 1.1 93.994 -36.4 4.856 5191 no
## 3312 1.1 93.994 -36.4 4.856 5191 no
## 3313 1.1 93.994 -36.4 4.856 5191 no
## 3314 1.1 93.994 -36.4 4.856 5191 no
## 3315 1.1 93.994 -36.4 4.856 5191 no
## 3316 1.1 93.994 -36.4 4.856 5191 no
## 3317 1.1 93.994 -36.4 4.856 5191 no
## 3318 1.1 93.994 -36.4 4.856 5191 no
## 3319 1.1 93.994 -36.4 4.856 5191 no
## 3320 1.1 93.994 -36.4 4.856 5191 no
## 3321 1.1 93.994 -36.4 4.856 5191 no
## 3322 1.1 93.994 -36.4 4.856 5191 no
## 3323 1.1 93.994 -36.4 4.856 5191 no
## 3324 1.1 93.994 -36.4 4.856 5191 no
## 3325 1.1 93.994 -36.4 4.856 5191 no
## 3326 1.1 93.994 -36.4 4.856 5191 no
## 3327 1.1 93.994 -36.4 4.856 5191 no
## 3328 1.1 93.994 -36.4 4.856 5191 no
## 3329 1.1 93.994 -36.4 4.856 5191 no
## 3330 1.1 93.994 -36.4 4.856 5191 no
## 3331 1.1 93.994 -36.4 4.856 5191 no
## 3332 1.1 93.994 -36.4 4.856 5191 no
## 3333 1.1 93.994 -36.4 4.856 5191 no
## 3334 1.1 93.994 -36.4 4.856 5191 no
## 3335 1.1 93.994 -36.4 4.856 5191 no
## 3336 1.1 93.994 -36.4 4.856 5191 no
## 3337 1.1 93.994 -36.4 4.856 5191 no
## 3338 1.1 93.994 -36.4 4.856 5191 no
## 3339 1.1 93.994 -36.4 4.856 5191 no
## 3340 1.1 93.994 -36.4 4.856 5191 no
## 3341 1.1 93.994 -36.4 4.856 5191 no
## 3342 1.1 93.994 -36.4 4.856 5191 no
## 3343 1.1 93.994 -36.4 4.856 5191 no
## 3344 1.1 93.994 -36.4 4.856 5191 no
## 3345 1.1 93.994 -36.4 4.856 5191 no
## 3346 1.1 93.994 -36.4 4.856 5191 no
## 3347 1.1 93.994 -36.4 4.856 5191 no
## 3348 1.1 93.994 -36.4 4.856 5191 no
## 3349 1.1 93.994 -36.4 4.856 5191 no
## 3350 1.1 93.994 -36.4 4.856 5191 no
## 3351 1.1 93.994 -36.4 4.856 5191 no
## 3352 1.1 93.994 -36.4 4.856 5191 no
## 3353 1.1 93.994 -36.4 4.856 5191 no
## 3354 1.1 93.994 -36.4 4.856 5191 no
## 3355 1.1 93.994 -36.4 4.856 5191 no
## 3356 1.1 93.994 -36.4 4.856 5191 no
## 3357 1.1 93.994 -36.4 4.856 5191 no
## 3358 1.1 93.994 -36.4 4.856 5191 no
## 3359 1.1 93.994 -36.4 4.856 5191 no
## 3360 1.1 93.994 -36.4 4.856 5191 no
## 3361 1.1 93.994 -36.4 4.856 5191 no
## 3362 1.1 93.994 -36.4 4.856 5191 no
## 3363 1.1 93.994 -36.4 4.856 5191 no
## 3364 1.1 93.994 -36.4 4.856 5191 no
## 3365 1.1 93.994 -36.4 4.856 5191 no
## 3366 1.1 93.994 -36.4 4.856 5191 no
## 3367 1.1 93.994 -36.4 4.856 5191 no
## 3368 1.1 93.994 -36.4 4.856 5191 no
## 3369 1.1 93.994 -36.4 4.856 5191 no
## 3370 1.1 93.994 -36.4 4.856 5191 no
## 3371 1.1 93.994 -36.4 4.856 5191 no
## 3372 1.1 93.994 -36.4 4.856 5191 no
## 3373 1.1 93.994 -36.4 4.856 5191 no
## 3374 1.1 93.994 -36.4 4.856 5191 no
## 3375 1.1 93.994 -36.4 4.856 5191 no
## 3376 1.1 93.994 -36.4 4.856 5191 no
## 3377 1.1 93.994 -36.4 4.856 5191 no
## 3378 1.1 93.994 -36.4 4.856 5191 no
## 3379 1.1 93.994 -36.4 4.856 5191 no
## 3380 1.1 93.994 -36.4 4.856 5191 no
## 3381 1.1 93.994 -36.4 4.856 5191 no
## 3382 1.1 93.994 -36.4 4.856 5191 no
## 3383 1.1 93.994 -36.4 4.856 5191 no
## 3384 1.1 93.994 -36.4 4.856 5191 no
## 3385 1.1 93.994 -36.4 4.856 5191 no
## 3386 1.1 93.994 -36.4 4.856 5191 no
## 3387 1.1 93.994 -36.4 4.856 5191 no
## 3388 1.1 93.994 -36.4 4.856 5191 no
## 3389 1.1 93.994 -36.4 4.856 5191 no
## 3390 1.1 93.994 -36.4 4.856 5191 no
## 3391 1.1 93.994 -36.4 4.856 5191 no
## 3392 1.1 93.994 -36.4 4.856 5191 no
## 3393 1.1 93.994 -36.4 4.856 5191 no
## 3394 1.1 93.994 -36.4 4.856 5191 no
## 3395 1.1 93.994 -36.4 4.856 5191 no
## 3396 1.1 93.994 -36.4 4.856 5191 no
## 3397 1.1 93.994 -36.4 4.856 5191 no
## 3398 1.1 93.994 -36.4 4.856 5191 no
## 3399 1.1 93.994 -36.4 4.856 5191 no
## 3400 1.1 93.994 -36.4 4.856 5191 no
## 3401 1.1 93.994 -36.4 4.856 5191 no
## 3402 1.1 93.994 -36.4 4.856 5191 no
## 3403 1.1 93.994 -36.4 4.856 5191 no
## 3404 1.1 93.994 -36.4 4.856 5191 no
## 3405 1.1 93.994 -36.4 4.856 5191 no
## 3406 1.1 93.994 -36.4 4.856 5191 no
## 3407 1.1 93.994 -36.4 4.856 5191 no
## 3408 1.1 93.994 -36.4 4.856 5191 no
## 3409 1.1 93.994 -36.4 4.856 5191 no
## 3410 1.1 93.994 -36.4 4.856 5191 no
## 3411 1.1 93.994 -36.4 4.856 5191 no
## 3412 1.1 93.994 -36.4 4.856 5191 no
## 3413 1.1 93.994 -36.4 4.856 5191 no
## 3414 1.1 93.994 -36.4 4.856 5191 no
## 3415 1.1 93.994 -36.4 4.856 5191 no
## 3416 1.1 93.994 -36.4 4.856 5191 no
## 3417 1.1 93.994 -36.4 4.856 5191 no
## 3418 1.1 93.994 -36.4 4.856 5191 no
## 3419 1.1 93.994 -36.4 4.856 5191 no
## 3420 1.1 93.994 -36.4 4.856 5191 no
## 3421 1.1 93.994 -36.4 4.856 5191 no
## 3422 1.1 93.994 -36.4 4.856 5191 no
## 3423 1.1 93.994 -36.4 4.856 5191 no
## 3424 1.1 93.994 -36.4 4.856 5191 no
## 3425 1.1 93.994 -36.4 4.856 5191 no
## 3426 1.1 93.994 -36.4 4.856 5191 no
## 3427 1.1 93.994 -36.4 4.856 5191 no
## 3428 1.1 93.994 -36.4 4.856 5191 no
## 3429 1.1 93.994 -36.4 4.856 5191 no
## 3430 1.1 93.994 -36.4 4.856 5191 no
## 3431 1.1 93.994 -36.4 4.856 5191 no
## 3432 1.1 93.994 -36.4 4.856 5191 no
## 3433 1.1 93.994 -36.4 4.856 5191 no
## 3434 1.1 93.994 -36.4 4.856 5191 no
## 3435 1.1 93.994 -36.4 4.856 5191 no
## 3436 1.1 93.994 -36.4 4.856 5191 no
## 3437 1.1 93.994 -36.4 4.856 5191 no
## 3438 1.1 93.994 -36.4 4.856 5191 no
## 3439 1.1 93.994 -36.4 4.856 5191 no
## 3440 1.1 93.994 -36.4 4.856 5191 no
## 3441 1.1 93.994 -36.4 4.856 5191 no
## 3442 1.1 93.994 -36.4 4.856 5191 no
## 3443 1.1 93.994 -36.4 4.856 5191 no
## 3444 1.1 93.994 -36.4 4.856 5191 no
## 3445 1.1 93.994 -36.4 4.856 5191 no
## 3446 1.1 93.994 -36.4 4.856 5191 no
## 3447 1.1 93.994 -36.4 4.856 5191 no
## 3448 1.1 93.994 -36.4 4.856 5191 no
## 3449 1.1 93.994 -36.4 4.856 5191 no
## 3450 1.1 93.994 -36.4 4.856 5191 no
## 3451 1.1 93.994 -36.4 4.856 5191 no
## 3452 1.1 93.994 -36.4 4.856 5191 no
## 3453 1.1 93.994 -36.4 4.856 5191 no
## 3454 1.1 93.994 -36.4 4.856 5191 no
## 3455 1.1 93.994 -36.4 4.856 5191 no
## 3456 1.1 93.994 -36.4 4.856 5191 no
## 3457 1.1 93.994 -36.4 4.856 5191 no
## 3458 1.1 93.994 -36.4 4.856 5191 no
## 3459 1.1 93.994 -36.4 4.856 5191 no
## 3460 1.1 93.994 -36.4 4.856 5191 no
## 3461 1.1 93.994 -36.4 4.856 5191 no
## 3462 1.1 93.994 -36.4 4.856 5191 no
## 3463 1.1 93.994 -36.4 4.856 5191 no
## 3464 1.1 93.994 -36.4 4.856 5191 no
## 3465 1.1 93.994 -36.4 4.856 5191 no
## 3466 1.1 93.994 -36.4 4.856 5191 no
## 3467 1.1 93.994 -36.4 4.856 5191 no
## 3468 1.1 93.994 -36.4 4.856 5191 no
## 3469 1.1 93.994 -36.4 4.856 5191 no
## 3470 1.1 93.994 -36.4 4.856 5191 no
## 3471 1.1 93.994 -36.4 4.856 5191 no
## 3472 1.1 93.994 -36.4 4.856 5191 no
## 3473 1.1 93.994 -36.4 4.856 5191 no
## 3474 1.1 93.994 -36.4 4.856 5191 no
## 3475 1.1 93.994 -36.4 4.856 5191 no
## 3476 1.1 93.994 -36.4 4.856 5191 no
## 3477 1.1 93.994 -36.4 4.856 5191 no
## 3478 1.1 93.994 -36.4 4.856 5191 no
## 3479 1.1 93.994 -36.4 4.856 5191 no
## 3480 1.1 93.994 -36.4 4.856 5191 no
## 3481 1.1 93.994 -36.4 4.856 5191 no
## 3482 1.1 93.994 -36.4 4.856 5191 no
## 3483 1.1 93.994 -36.4 4.856 5191 no
## 3484 1.1 93.994 -36.4 4.856 5191 no
## 3485 1.1 93.994 -36.4 4.856 5191 no
## 3486 1.1 93.994 -36.4 4.856 5191 no
## 3487 1.1 93.994 -36.4 4.856 5191 no
## 3488 1.1 93.994 -36.4 4.856 5191 no
## 3489 1.1 93.994 -36.4 4.856 5191 no
## 3490 1.1 93.994 -36.4 4.856 5191 no
## 3491 1.1 93.994 -36.4 4.856 5191 no
## 3492 1.1 93.994 -36.4 4.856 5191 no
## 3493 1.1 93.994 -36.4 4.856 5191 no
## 3494 1.1 93.994 -36.4 4.856 5191 no
## 3495 1.1 93.994 -36.4 4.856 5191 no
## 3496 1.1 93.994 -36.4 4.856 5191 no
## 3497 1.1 93.994 -36.4 4.856 5191 no
## 3498 1.1 93.994 -36.4 4.856 5191 no
## 3499 1.1 93.994 -36.4 4.856 5191 no
## 3500 1.1 93.994 -36.4 4.856 5191 no
## 3501 1.1 93.994 -36.4 4.856 5191 no
## 3502 1.1 93.994 -36.4 4.856 5191 no
## 3503 1.1 93.994 -36.4 4.856 5191 no
## 3504 1.1 93.994 -36.4 4.856 5191 no
## 3505 1.1 93.994 -36.4 4.856 5191 no
## 3506 1.1 93.994 -36.4 4.856 5191 no
## 3507 1.1 93.994 -36.4 4.856 5191 no
## 3508 1.1 93.994 -36.4 4.856 5191 no
## 3509 1.1 93.994 -36.4 4.856 5191 no
## 3510 1.1 93.994 -36.4 4.856 5191 no
## 3511 1.1 93.994 -36.4 4.856 5191 no
## 3512 1.1 93.994 -36.4 4.856 5191 no
## 3513 1.1 93.994 -36.4 4.856 5191 no
## 3514 1.1 93.994 -36.4 4.856 5191 no
## 3515 1.1 93.994 -36.4 4.856 5191 no
## 3516 1.1 93.994 -36.4 4.856 5191 no
## 3517 1.1 93.994 -36.4 4.856 5191 no
## 3518 1.1 93.994 -36.4 4.856 5191 no
## 3519 1.1 93.994 -36.4 4.856 5191 no
## 3520 1.1 93.994 -36.4 4.856 5191 no
## 3521 1.1 93.994 -36.4 4.856 5191 no
## 3522 1.1 93.994 -36.4 4.856 5191 no
## 3523 1.1 93.994 -36.4 4.856 5191 no
## 3524 1.1 93.994 -36.4 4.856 5191 no
## 3525 1.1 93.994 -36.4 4.856 5191 no
## 3526 1.1 93.994 -36.4 4.856 5191 no
## 3527 1.1 93.994 -36.4 4.856 5191 no
## 3528 1.1 93.994 -36.4 4.856 5191 no
## 3529 1.1 93.994 -36.4 4.856 5191 no
## 3530 1.1 93.994 -36.4 4.856 5191 no
## 3531 1.1 93.994 -36.4 4.856 5191 no
## 3532 1.1 93.994 -36.4 4.856 5191 no
## 3533 1.1 93.994 -36.4 4.856 5191 no
## 3534 1.1 93.994 -36.4 4.856 5191 no
## 3535 1.1 93.994 -36.4 4.856 5191 no
## 3536 1.1 93.994 -36.4 4.856 5191 no
## 3537 1.1 93.994 -36.4 4.856 5191 no
## 3538 1.1 93.994 -36.4 4.856 5191 no
## 3539 1.1 93.994 -36.4 4.856 5191 no
## 3540 1.1 93.994 -36.4 4.856 5191 no
## 3541 1.1 93.994 -36.4 4.856 5191 no
## 3542 1.1 93.994 -36.4 4.856 5191 no
## 3543 1.1 93.994 -36.4 4.856 5191 no
## 3544 1.1 93.994 -36.4 4.856 5191 no
## 3545 1.1 93.994 -36.4 4.856 5191 no
## 3546 1.1 93.994 -36.4 4.856 5191 no
## 3547 1.1 93.994 -36.4 4.856 5191 no
## 3548 1.1 93.994 -36.4 4.856 5191 no
## 3549 1.1 93.994 -36.4 4.856 5191 no
## 3550 1.1 93.994 -36.4 4.856 5191 no
## 3551 1.1 93.994 -36.4 4.856 5191 no
## 3552 1.1 93.994 -36.4 4.856 5191 no
## 3553 1.1 93.994 -36.4 4.856 5191 no
## 3554 1.1 93.994 -36.4 4.856 5191 no
## 3555 1.1 93.994 -36.4 4.856 5191 no
## 3556 1.1 93.994 -36.4 4.856 5191 no
## 3557 1.1 93.994 -36.4 4.856 5191 no
## 3558 1.1 93.994 -36.4 4.856 5191 no
## 3559 1.1 93.994 -36.4 4.856 5191 no
## 3560 1.1 93.994 -36.4 4.856 5191 no
## 3561 1.1 93.994 -36.4 4.856 5191 no
## 3562 1.1 93.994 -36.4 4.856 5191 no
## 3563 1.1 93.994 -36.4 4.856 5191 no
## 3564 1.1 93.994 -36.4 4.856 5191 no
## 3565 1.1 93.994 -36.4 4.856 5191 no
## 3566 1.1 93.994 -36.4 4.856 5191 no
## 3567 1.1 93.994 -36.4 4.856 5191 no
## 3568 1.1 93.994 -36.4 4.856 5191 no
## 3569 1.1 93.994 -36.4 4.856 5191 no
## 3570 1.1 93.994 -36.4 4.856 5191 no
## 3571 1.1 93.994 -36.4 4.856 5191 no
## 3572 1.1 93.994 -36.4 4.856 5191 no
## 3573 1.1 93.994 -36.4 4.856 5191 no
## 3574 1.1 93.994 -36.4 4.856 5191 no
## 3575 1.1 93.994 -36.4 4.856 5191 no
## 3576 1.1 93.994 -36.4 4.856 5191 no
## 3577 1.1 93.994 -36.4 4.856 5191 no
## 3578 1.1 93.994 -36.4 4.856 5191 no
## 3579 1.1 93.994 -36.4 4.856 5191 no
## 3580 1.1 93.994 -36.4 4.856 5191 no
## 3581 1.1 93.994 -36.4 4.856 5191 no
## 3582 1.1 93.994 -36.4 4.858 5191 no
## 3583 1.1 93.994 -36.4 4.858 5191 no
## 3584 1.1 93.994 -36.4 4.858 5191 no
## 3585 1.1 93.994 -36.4 4.858 5191 no
## 3586 1.1 93.994 -36.4 4.858 5191 no
## 3587 1.1 93.994 -36.4 4.858 5191 no
## 3588 1.1 93.994 -36.4 4.858 5191 no
## 3589 1.1 93.994 -36.4 4.858 5191 no
## 3590 1.1 93.994 -36.4 4.858 5191 no
## 3591 1.1 93.994 -36.4 4.858 5191 no
## 3592 1.1 93.994 -36.4 4.858 5191 no
## 3593 1.1 93.994 -36.4 4.858 5191 no
## 3594 1.1 93.994 -36.4 4.858 5191 no
## 3595 1.1 93.994 -36.4 4.858 5191 no
## 3596 1.1 93.994 -36.4 4.858 5191 no
## 3597 1.1 93.994 -36.4 4.858 5191 no
## 3598 1.1 93.994 -36.4 4.858 5191 no
## 3599 1.1 93.994 -36.4 4.858 5191 no
## 3600 1.1 93.994 -36.4 4.858 5191 no
## 3601 1.1 93.994 -36.4 4.858 5191 no
## 3602 1.1 93.994 -36.4 4.858 5191 no
## 3603 1.1 93.994 -36.4 4.858 5191 no
## 3604 1.1 93.994 -36.4 4.858 5191 no
## 3605 1.1 93.994 -36.4 4.858 5191 no
## 3606 1.1 93.994 -36.4 4.858 5191 no
## 3607 1.1 93.994 -36.4 4.858 5191 no
## 3608 1.1 93.994 -36.4 4.858 5191 no
## 3609 1.1 93.994 -36.4 4.858 5191 no
## 3610 1.1 93.994 -36.4 4.858 5191 no
## 3611 1.1 93.994 -36.4 4.858 5191 no
## 3612 1.1 93.994 -36.4 4.858 5191 no
## 3613 1.1 93.994 -36.4 4.858 5191 no
## 3614 1.1 93.994 -36.4 4.858 5191 no
## 3615 1.1 93.994 -36.4 4.858 5191 no
## 3616 1.1 93.994 -36.4 4.858 5191 no
## 3617 1.1 93.994 -36.4 4.858 5191 no
## 3618 1.1 93.994 -36.4 4.858 5191 no
## 3619 1.1 93.994 -36.4 4.858 5191 no
## 3620 1.1 93.994 -36.4 4.858 5191 no
## 3621 1.1 93.994 -36.4 4.858 5191 no
## 3622 1.1 93.994 -36.4 4.858 5191 no
## 3623 1.1 93.994 -36.4 4.858 5191 no
## 3624 1.1 93.994 -36.4 4.858 5191 no
## 3625 1.1 93.994 -36.4 4.858 5191 no
## 3626 1.1 93.994 -36.4 4.858 5191 no
## 3627 1.1 93.994 -36.4 4.858 5191 no
## 3628 1.1 93.994 -36.4 4.858 5191 no
## 3629 1.1 93.994 -36.4 4.858 5191 no
## 3630 1.1 93.994 -36.4 4.858 5191 no
## 3631 1.1 93.994 -36.4 4.858 5191 no
## 3632 1.1 93.994 -36.4 4.858 5191 no
## 3633 1.1 93.994 -36.4 4.858 5191 no
## 3634 1.1 93.994 -36.4 4.858 5191 no
## 3635 1.1 93.994 -36.4 4.858 5191 no
## 3636 1.1 93.994 -36.4 4.858 5191 no
## 3637 1.1 93.994 -36.4 4.858 5191 no
## 3638 1.1 93.994 -36.4 4.858 5191 no
## 3639 1.1 93.994 -36.4 4.858 5191 no
## 3640 1.1 93.994 -36.4 4.858 5191 no
## 3641 1.1 93.994 -36.4 4.858 5191 no
## 3642 1.1 93.994 -36.4 4.858 5191 no
## 3643 1.1 93.994 -36.4 4.858 5191 no
## 3644 1.1 93.994 -36.4 4.858 5191 no
## 3645 1.1 93.994 -36.4 4.858 5191 no
## 3646 1.1 93.994 -36.4 4.858 5191 no
## 3647 1.1 93.994 -36.4 4.858 5191 no
## 3648 1.1 93.994 -36.4 4.858 5191 no
## 3649 1.1 93.994 -36.4 4.858 5191 no
## 3650 1.1 93.994 -36.4 4.858 5191 no
## 3651 1.1 93.994 -36.4 4.858 5191 no
## 3652 1.1 93.994 -36.4 4.858 5191 no
## 3653 1.1 93.994 -36.4 4.858 5191 no
## 3654 1.1 93.994 -36.4 4.858 5191 no
## 3655 1.1 93.994 -36.4 4.858 5191 no
## 3656 1.1 93.994 -36.4 4.858 5191 no
## 3657 1.1 93.994 -36.4 4.858 5191 no
## 3658 1.1 93.994 -36.4 4.858 5191 no
## 3659 1.1 93.994 -36.4 4.858 5191 no
## 3660 1.1 93.994 -36.4 4.858 5191 no
## 3661 1.1 93.994 -36.4 4.858 5191 no
## 3662 1.1 93.994 -36.4 4.858 5191 no
## 3663 1.1 93.994 -36.4 4.858 5191 no
## 3664 1.1 93.994 -36.4 4.858 5191 no
## 3665 1.1 93.994 -36.4 4.858 5191 no
## 3666 1.1 93.994 -36.4 4.858 5191 no
## 3667 1.1 93.994 -36.4 4.858 5191 no
## 3668 1.1 93.994 -36.4 4.858 5191 no
## 3669 1.1 93.994 -36.4 4.858 5191 no
## 3670 1.1 93.994 -36.4 4.858 5191 no
## 3671 1.1 93.994 -36.4 4.858 5191 no
## 3672 1.1 93.994 -36.4 4.858 5191 no
## 3673 1.1 93.994 -36.4 4.858 5191 no
## 3674 1.1 93.994 -36.4 4.858 5191 no
## 3675 1.1 93.994 -36.4 4.858 5191 no
## 3676 1.1 93.994 -36.4 4.858 5191 no
## 3677 1.1 93.994 -36.4 4.858 5191 no
## 3678 1.1 93.994 -36.4 4.858 5191 no
## 3679 1.1 93.994 -36.4 4.858 5191 no
## 3680 1.1 93.994 -36.4 4.858 5191 no
## 3681 1.1 93.994 -36.4 4.858 5191 no
## 3682 1.1 93.994 -36.4 4.858 5191 no
## 3683 1.1 93.994 -36.4 4.858 5191 no
## 3684 1.1 93.994 -36.4 4.858 5191 no
## 3685 1.1 93.994 -36.4 4.858 5191 no
## 3686 1.1 93.994 -36.4 4.858 5191 no
## 3687 1.1 93.994 -36.4 4.858 5191 no
## 3688 1.1 93.994 -36.4 4.858 5191 no
## 3689 1.1 93.994 -36.4 4.858 5191 no
## 3690 1.1 93.994 -36.4 4.858 5191 no
## 3691 1.1 93.994 -36.4 4.858 5191 no
## 3692 1.1 93.994 -36.4 4.858 5191 no
## 3693 1.1 93.994 -36.4 4.858 5191 no
## 3694 1.1 93.994 -36.4 4.858 5191 no
## 3695 1.1 93.994 -36.4 4.858 5191 no
## 3696 1.1 93.994 -36.4 4.858 5191 no
## 3697 1.1 93.994 -36.4 4.858 5191 no
## 3698 1.1 93.994 -36.4 4.858 5191 no
## 3699 1.1 93.994 -36.4 4.858 5191 no
## 3700 1.1 93.994 -36.4 4.858 5191 no
## 3701 1.1 93.994 -36.4 4.858 5191 no
## 3702 1.1 93.994 -36.4 4.858 5191 no
## 3703 1.1 93.994 -36.4 4.858 5191 no
## 3704 1.1 93.994 -36.4 4.858 5191 no
## 3705 1.1 93.994 -36.4 4.858 5191 no
## 3706 1.1 93.994 -36.4 4.858 5191 no
## 3707 1.1 93.994 -36.4 4.858 5191 no
## 3708 1.1 93.994 -36.4 4.858 5191 no
## 3709 1.1 93.994 -36.4 4.858 5191 no
## 3710 1.1 93.994 -36.4 4.858 5191 no
## 3711 1.1 93.994 -36.4 4.858 5191 no
## 3712 1.1 93.994 -36.4 4.858 5191 no
## 3713 1.1 93.994 -36.4 4.858 5191 no
## 3714 1.1 93.994 -36.4 4.858 5191 no
## 3715 1.1 93.994 -36.4 4.858 5191 no
## 3716 1.1 93.994 -36.4 4.858 5191 no
## 3717 1.1 93.994 -36.4 4.858 5191 no
## 3718 1.1 93.994 -36.4 4.858 5191 no
## 3719 1.1 93.994 -36.4 4.858 5191 no
## 3720 1.1 93.994 -36.4 4.858 5191 no
## 3721 1.1 93.994 -36.4 4.858 5191 no
## 3722 1.1 93.994 -36.4 4.858 5191 no
## 3723 1.1 93.994 -36.4 4.858 5191 no
## 3724 1.1 93.994 -36.4 4.858 5191 no
## 3725 1.1 93.994 -36.4 4.858 5191 no
## 3726 1.1 93.994 -36.4 4.858 5191 no
## 3727 1.1 93.994 -36.4 4.858 5191 no
## 3728 1.1 93.994 -36.4 4.858 5191 no
## 3729 1.1 93.994 -36.4 4.858 5191 no
## 3730 1.1 93.994 -36.4 4.858 5191 no
## 3731 1.1 93.994 -36.4 4.858 5191 no
## 3732 1.1 93.994 -36.4 4.858 5191 no
## 3733 1.1 93.994 -36.4 4.858 5191 no
## 3734 1.1 93.994 -36.4 4.858 5191 no
## 3735 1.1 93.994 -36.4 4.858 5191 no
## 3736 1.1 93.994 -36.4 4.858 5191 no
## 3737 1.1 93.994 -36.4 4.858 5191 no
## 3738 1.1 93.994 -36.4 4.858 5191 no
## 3739 1.1 93.994 -36.4 4.858 5191 no
## 3740 1.1 93.994 -36.4 4.858 5191 no
## 3741 1.1 93.994 -36.4 4.858 5191 no
## 3742 1.1 93.994 -36.4 4.858 5191 no
## 3743 1.1 93.994 -36.4 4.858 5191 no
## 3744 1.1 93.994 -36.4 4.858 5191 no
## 3745 1.1 93.994 -36.4 4.858 5191 no
## 3746 1.1 93.994 -36.4 4.858 5191 no
## 3747 1.1 93.994 -36.4 4.858 5191 no
## 3748 1.1 93.994 -36.4 4.858 5191 no
## 3749 1.1 93.994 -36.4 4.858 5191 no
## 3750 1.1 93.994 -36.4 4.858 5191 no
## 3751 1.1 93.994 -36.4 4.858 5191 no
## 3752 1.1 93.994 -36.4 4.858 5191 no
## 3753 1.1 93.994 -36.4 4.858 5191 no
## 3754 1.1 93.994 -36.4 4.858 5191 no
## 3755 1.1 93.994 -36.4 4.858 5191 no
## 3756 1.1 93.994 -36.4 4.858 5191 no
## 3757 1.1 93.994 -36.4 4.858 5191 no
## 3758 1.1 93.994 -36.4 4.858 5191 no
## 3759 1.1 93.994 -36.4 4.858 5191 no
## 3760 1.1 93.994 -36.4 4.858 5191 no
## 3761 1.1 93.994 -36.4 4.858 5191 no
## 3762 1.1 93.994 -36.4 4.858 5191 no
## 3763 1.1 93.994 -36.4 4.858 5191 no
## 3764 1.1 93.994 -36.4 4.858 5191 no
## 3765 1.1 93.994 -36.4 4.858 5191 no
## 3766 1.1 93.994 -36.4 4.858 5191 no
## 3767 1.1 93.994 -36.4 4.858 5191 no
## 3768 1.1 93.994 -36.4 4.858 5191 no
## 3769 1.1 93.994 -36.4 4.858 5191 no
## 3770 1.1 93.994 -36.4 4.858 5191 no
## 3771 1.1 93.994 -36.4 4.858 5191 no
## 3772 1.1 93.994 -36.4 4.858 5191 no
## 3773 1.1 93.994 -36.4 4.858 5191 no
## 3774 1.1 93.994 -36.4 4.858 5191 no
## 3775 1.1 93.994 -36.4 4.858 5191 no
## 3776 1.1 93.994 -36.4 4.858 5191 no
## 3777 1.1 93.994 -36.4 4.858 5191 no
## 3778 1.1 93.994 -36.4 4.858 5191 no
## 3779 1.1 93.994 -36.4 4.858 5191 no
## 3780 1.1 93.994 -36.4 4.858 5191 no
## 3781 1.1 93.994 -36.4 4.858 5191 no
## 3782 1.1 93.994 -36.4 4.858 5191 no
## 3783 1.1 93.994 -36.4 4.858 5191 no
## 3784 1.1 93.994 -36.4 4.858 5191 no
## 3785 1.1 93.994 -36.4 4.858 5191 no
## 3786 1.1 93.994 -36.4 4.858 5191 no
## 3787 1.1 93.994 -36.4 4.858 5191 no
## 3788 1.1 93.994 -36.4 4.858 5191 no
## 3789 1.1 93.994 -36.4 4.858 5191 no
## 3790 1.1 93.994 -36.4 4.858 5191 no
## 3791 1.1 93.994 -36.4 4.858 5191 no
## 3792 1.1 93.994 -36.4 4.858 5191 no
## 3793 1.1 93.994 -36.4 4.858 5191 no
## 3794 1.1 93.994 -36.4 4.858 5191 no
## 3795 1.1 93.994 -36.4 4.858 5191 no
## 3796 1.1 93.994 -36.4 4.858 5191 no
## 3797 1.1 93.994 -36.4 4.858 5191 no
## 3798 1.1 93.994 -36.4 4.858 5191 no
## 3799 1.1 93.994 -36.4 4.858 5191 no
## 3800 1.1 93.994 -36.4 4.858 5191 no
## 3801 1.1 93.994 -36.4 4.858 5191 no
## 3802 1.1 93.994 -36.4 4.858 5191 no
## 3803 1.1 93.994 -36.4 4.858 5191 no
## 3804 1.1 93.994 -36.4 4.858 5191 no
## 3805 1.1 93.994 -36.4 4.858 5191 no
## 3806 1.1 93.994 -36.4 4.858 5191 no
## 3807 1.1 93.994 -36.4 4.858 5191 no
## 3808 1.1 93.994 -36.4 4.858 5191 no
## 3809 1.1 93.994 -36.4 4.858 5191 no
## 3810 1.1 93.994 -36.4 4.858 5191 no
## 3811 1.1 93.994 -36.4 4.858 5191 no
## 3812 1.1 93.994 -36.4 4.858 5191 no
## 3813 1.1 93.994 -36.4 4.858 5191 no
## 3814 1.1 93.994 -36.4 4.858 5191 no
## 3815 1.1 93.994 -36.4 4.858 5191 no
## 3816 1.1 93.994 -36.4 4.858 5191 no
## 3817 1.1 93.994 -36.4 4.858 5191 no
## 3818 1.1 93.994 -36.4 4.858 5191 no
## 3819 1.1 93.994 -36.4 4.858 5191 no
## 3820 1.1 93.994 -36.4 4.858 5191 no
## 3821 1.1 93.994 -36.4 4.858 5191 no
## 3822 1.1 93.994 -36.4 4.858 5191 no
## 3823 1.1 93.994 -36.4 4.858 5191 no
## 3824 1.1 93.994 -36.4 4.858 5191 no
## 3825 1.1 93.994 -36.4 4.858 5191 no
## 3826 1.1 93.994 -36.4 4.858 5191 no
## 3827 1.1 93.994 -36.4 4.858 5191 no
## 3828 1.1 93.994 -36.4 4.858 5191 no
## 3829 1.1 93.994 -36.4 4.858 5191 no
## 3830 1.1 93.994 -36.4 4.858 5191 no
## 3831 1.1 93.994 -36.4 4.858 5191 no
## 3832 1.1 93.994 -36.4 4.858 5191 no
## 3833 1.1 93.994 -36.4 4.858 5191 no
## 3834 1.1 93.994 -36.4 4.858 5191 no
## 3835 1.1 93.994 -36.4 4.858 5191 no
## 3836 1.1 93.994 -36.4 4.858 5191 no
## 3837 1.1 93.994 -36.4 4.858 5191 no
## 3838 1.1 93.994 -36.4 4.858 5191 no
## 3839 1.1 93.994 -36.4 4.858 5191 no
## 3840 1.1 93.994 -36.4 4.858 5191 no
## 3841 1.1 93.994 -36.4 4.858 5191 no
## 3842 1.1 93.994 -36.4 4.858 5191 no
## 3843 1.1 93.994 -36.4 4.858 5191 no
## 3844 1.1 93.994 -36.4 4.858 5191 no
## 3845 1.1 93.994 -36.4 4.858 5191 no
## 3846 1.1 93.994 -36.4 4.858 5191 no
## 3847 1.1 93.994 -36.4 4.858 5191 no
## 3848 1.1 93.994 -36.4 4.858 5191 no
## 3849 1.1 93.994 -36.4 4.858 5191 no
## 3850 1.1 93.994 -36.4 4.858 5191 no
## 3851 1.1 93.994 -36.4 4.858 5191 no
## 3852 1.1 93.994 -36.4 4.858 5191 no
## 3853 1.1 93.994 -36.4 4.858 5191 no
## 3854 1.1 93.994 -36.4 4.858 5191 no
## 3855 1.1 93.994 -36.4 4.858 5191 no
## 3856 1.1 93.994 -36.4 4.858 5191 no
## 3857 1.1 93.994 -36.4 4.858 5191 no
## 3858 1.1 93.994 -36.4 4.858 5191 no
## 3859 1.1 93.994 -36.4 4.858 5191 no
## 3860 1.1 93.994 -36.4 4.858 5191 no
## 3861 1.1 93.994 -36.4 4.858 5191 no
## 3862 1.1 93.994 -36.4 4.858 5191 no
## 3863 1.1 93.994 -36.4 4.858 5191 no
## 3864 1.1 93.994 -36.4 4.858 5191 no
## 3865 1.1 93.994 -36.4 4.858 5191 no
## 3866 1.1 93.994 -36.4 4.858 5191 no
## 3867 1.1 93.994 -36.4 4.858 5191 no
## 3868 1.1 93.994 -36.4 4.858 5191 no
## 3869 1.1 93.994 -36.4 4.858 5191 no
## 3870 1.1 93.994 -36.4 4.858 5191 no
## 3871 1.1 93.994 -36.4 4.858 5191 no
## 3872 1.1 93.994 -36.4 4.858 5191 no
## 3873 1.1 93.994 -36.4 4.858 5191 no
## 3874 1.1 93.994 -36.4 4.858 5191 no
## 3875 1.1 93.994 -36.4 4.858 5191 no
## 3876 1.1 93.994 -36.4 4.858 5191 no
## 3877 1.1 93.994 -36.4 4.858 5191 no
## 3878 1.1 93.994 -36.4 4.858 5191 no
## 3879 1.1 93.994 -36.4 4.858 5191 no
## 3880 1.1 93.994 -36.4 4.858 5191 no
## 3881 1.1 93.994 -36.4 4.858 5191 no
## 3882 1.1 93.994 -36.4 4.858 5191 no
## 3883 1.1 93.994 -36.4 4.858 5191 no
## 3884 1.1 93.994 -36.4 4.858 5191 no
## 3885 1.1 93.994 -36.4 4.858 5191 no
## 3886 1.1 93.994 -36.4 4.858 5191 no
## 3887 1.1 93.994 -36.4 4.858 5191 no
## 3888 1.1 93.994 -36.4 4.858 5191 no
## 3889 1.1 93.994 -36.4 4.858 5191 no
## 3890 1.1 93.994 -36.4 4.858 5191 no
## 3891 1.1 93.994 -36.4 4.858 5191 no
## 3892 1.1 93.994 -36.4 4.858 5191 no
## 3893 1.1 93.994 -36.4 4.858 5191 no
## 3894 1.1 93.994 -36.4 4.858 5191 no
## 3895 1.1 93.994 -36.4 4.858 5191 no
## 3896 1.1 93.994 -36.4 4.858 5191 no
## 3897 1.1 93.994 -36.4 4.858 5191 no
## 3898 1.1 93.994 -36.4 4.858 5191 no
## 3899 1.1 93.994 -36.4 4.857 5191 no
## 3900 1.1 93.994 -36.4 4.857 5191 no
## 3901 1.1 93.994 -36.4 4.857 5191 no
## 3902 1.1 93.994 -36.4 4.857 5191 no
## 3903 1.1 93.994 -36.4 4.857 5191 no
## 3904 1.1 93.994 -36.4 4.857 5191 no
## 3905 1.1 93.994 -36.4 4.857 5191 no
## 3906 1.1 93.994 -36.4 4.857 5191 no
## 3907 1.1 93.994 -36.4 4.857 5191 no
## 3908 1.1 93.994 -36.4 4.857 5191 no
## 3909 1.1 93.994 -36.4 4.857 5191 no
## 3910 1.1 93.994 -36.4 4.857 5191 no
## 3911 1.1 93.994 -36.4 4.857 5191 no
## 3912 1.1 93.994 -36.4 4.857 5191 no
## 3913 1.1 93.994 -36.4 4.857 5191 no
## 3914 1.1 93.994 -36.4 4.857 5191 no
## 3915 1.1 93.994 -36.4 4.857 5191 no
## 3916 1.1 93.994 -36.4 4.857 5191 no
## 3917 1.1 93.994 -36.4 4.857 5191 no
## 3918 1.1 93.994 -36.4 4.857 5191 no
## 3919 1.1 93.994 -36.4 4.857 5191 no
## 3920 1.1 93.994 -36.4 4.857 5191 no
## 3921 1.1 93.994 -36.4 4.857 5191 no
## 3922 1.1 93.994 -36.4 4.857 5191 no
## 3923 1.1 93.994 -36.4 4.857 5191 no
## 3924 1.1 93.994 -36.4 4.857 5191 no
## 3925 1.1 93.994 -36.4 4.857 5191 no
## 3926 1.1 93.994 -36.4 4.857 5191 no
## 3927 1.1 93.994 -36.4 4.857 5191 no
## 3928 1.1 93.994 -36.4 4.857 5191 no
## 3929 1.1 93.994 -36.4 4.857 5191 no
## 3930 1.1 93.994 -36.4 4.857 5191 no
## 3931 1.1 93.994 -36.4 4.857 5191 no
## 3932 1.1 93.994 -36.4 4.857 5191 no
## 3933 1.1 93.994 -36.4 4.857 5191 no
## 3934 1.1 93.994 -36.4 4.857 5191 no
## 3935 1.1 93.994 -36.4 4.857 5191 no
## 3936 1.1 93.994 -36.4 4.857 5191 no
## 3937 1.1 93.994 -36.4 4.857 5191 no
## 3938 1.1 93.994 -36.4 4.857 5191 no
## 3939 1.1 93.994 -36.4 4.857 5191 no
## 3940 1.1 93.994 -36.4 4.857 5191 no
## 3941 1.1 93.994 -36.4 4.857 5191 no
## 3942 1.1 93.994 -36.4 4.857 5191 no
## 3943 1.1 93.994 -36.4 4.857 5191 no
## 3944 1.1 93.994 -36.4 4.857 5191 no
## 3945 1.1 93.994 -36.4 4.857 5191 no
## 3946 1.1 93.994 -36.4 4.857 5191 no
## 3947 1.1 93.994 -36.4 4.857 5191 no
## 3948 1.1 93.994 -36.4 4.857 5191 no
## 3949 1.1 93.994 -36.4 4.857 5191 no
## 3950 1.1 93.994 -36.4 4.857 5191 no
## 3951 1.1 93.994 -36.4 4.857 5191 no
## 3952 1.1 93.994 -36.4 4.857 5191 no
## 3953 1.1 93.994 -36.4 4.857 5191 no
## 3954 1.1 93.994 -36.4 4.857 5191 no
## 3955 1.1 93.994 -36.4 4.857 5191 no
## 3956 1.1 93.994 -36.4 4.857 5191 no
## 3957 1.1 93.994 -36.4 4.857 5191 no
## 3958 1.1 93.994 -36.4 4.857 5191 no
## 3959 1.1 93.994 -36.4 4.857 5191 no
## 3960 1.1 93.994 -36.4 4.857 5191 no
## 3961 1.1 93.994 -36.4 4.857 5191 no
## 3962 1.1 93.994 -36.4 4.857 5191 no
## 3963 1.1 93.994 -36.4 4.857 5191 no
## 3964 1.1 93.994 -36.4 4.857 5191 no
## 3965 1.1 93.994 -36.4 4.857 5191 no
## 3966 1.1 93.994 -36.4 4.857 5191 no
## 3967 1.1 93.994 -36.4 4.857 5191 no
## 3968 1.1 93.994 -36.4 4.857 5191 no
## 3969 1.1 93.994 -36.4 4.857 5191 no
## 3970 1.1 93.994 -36.4 4.857 5191 no
## 3971 1.1 93.994 -36.4 4.857 5191 no
## 3972 1.1 93.994 -36.4 4.857 5191 no
## 3973 1.1 93.994 -36.4 4.857 5191 no
## 3974 1.1 93.994 -36.4 4.857 5191 no
## 3975 1.1 93.994 -36.4 4.857 5191 no
## 3976 1.1 93.994 -36.4 4.857 5191 no
## 3977 1.1 93.994 -36.4 4.857 5191 no
## 3978 1.1 93.994 -36.4 4.857 5191 no
## 3979 1.1 93.994 -36.4 4.857 5191 no
## 3980 1.1 93.994 -36.4 4.857 5191 no
## 3981 1.1 93.994 -36.4 4.857 5191 no
## 3982 1.1 93.994 -36.4 4.857 5191 no
## 3983 1.1 93.994 -36.4 4.857 5191 no
## 3984 1.1 93.994 -36.4 4.857 5191 no
## 3985 1.1 93.994 -36.4 4.857 5191 no
## 3986 1.1 93.994 -36.4 4.857 5191 no
## 3987 1.1 93.994 -36.4 4.857 5191 no
## 3988 1.1 93.994 -36.4 4.857 5191 no
## 3989 1.1 93.994 -36.4 4.857 5191 no
## 3990 1.1 93.994 -36.4 4.857 5191 no
## 3991 1.1 93.994 -36.4 4.857 5191 no
## 3992 1.1 93.994 -36.4 4.857 5191 no
## 3993 1.1 93.994 -36.4 4.857 5191 no
## 3994 1.1 93.994 -36.4 4.857 5191 no
## 3995 1.1 93.994 -36.4 4.857 5191 no
## 3996 1.1 93.994 -36.4 4.857 5191 no
## 3997 1.1 93.994 -36.4 4.857 5191 no
## 3998 1.1 93.994 -36.4 4.857 5191 no
## 3999 1.1 93.994 -36.4 4.857 5191 no
## 4000 1.1 93.994 -36.4 4.857 5191 no
## 4001 1.1 93.994 -36.4 4.857 5191 no
## 4002 1.1 93.994 -36.4 4.857 5191 no
## 4003 1.1 93.994 -36.4 4.857 5191 no
## 4004 1.1 93.994 -36.4 4.857 5191 no
## 4005 1.1 93.994 -36.4 4.857 5191 no
## 4006 1.1 93.994 -36.4 4.857 5191 no
## 4007 1.1 93.994 -36.4 4.857 5191 no
## 4008 1.1 93.994 -36.4 4.857 5191 no
## 4009 1.1 93.994 -36.4 4.857 5191 no
## 4010 1.1 93.994 -36.4 4.857 5191 no
## 4011 1.1 93.994 -36.4 4.857 5191 no
## 4012 1.1 93.994 -36.4 4.857 5191 no
## 4013 1.1 93.994 -36.4 4.857 5191 no
## 4014 1.1 93.994 -36.4 4.857 5191 no
## 4015 1.1 93.994 -36.4 4.857 5191 no
## 4016 1.1 93.994 -36.4 4.857 5191 no
## 4017 1.1 93.994 -36.4 4.857 5191 no
## 4018 1.1 93.994 -36.4 4.857 5191 no
## 4019 1.1 93.994 -36.4 4.857 5191 no
## 4020 1.1 93.994 -36.4 4.857 5191 no
## 4021 1.1 93.994 -36.4 4.857 5191 no
## 4022 1.1 93.994 -36.4 4.857 5191 no
## 4023 1.1 93.994 -36.4 4.857 5191 no
## 4024 1.1 93.994 -36.4 4.857 5191 no
## 4025 1.1 93.994 -36.4 4.857 5191 no
## 4026 1.1 93.994 -36.4 4.857 5191 no
## 4027 1.1 93.994 -36.4 4.857 5191 no
## 4028 1.1 93.994 -36.4 4.857 5191 no
## 4029 1.1 93.994 -36.4 4.857 5191 no
## 4030 1.1 93.994 -36.4 4.857 5191 no
## 4031 1.1 93.994 -36.4 4.857 5191 no
## 4032 1.1 93.994 -36.4 4.857 5191 no
## 4033 1.1 93.994 -36.4 4.857 5191 no
## 4034 1.1 93.994 -36.4 4.857 5191 no
## 4035 1.1 93.994 -36.4 4.857 5191 no
## 4036 1.1 93.994 -36.4 4.857 5191 no
## 4037 1.1 93.994 -36.4 4.857 5191 no
## 4038 1.1 93.994 -36.4 4.857 5191 no
## 4039 1.1 93.994 -36.4 4.857 5191 no
## 4040 1.1 93.994 -36.4 4.857 5191 no
## 4041 1.1 93.994 -36.4 4.857 5191 no
## 4042 1.1 93.994 -36.4 4.857 5191 no
## 4043 1.1 93.994 -36.4 4.857 5191 no
## 4044 1.1 93.994 -36.4 4.857 5191 no
## 4045 1.1 93.994 -36.4 4.857 5191 no
## 4046 1.1 93.994 -36.4 4.857 5191 no
## 4047 1.1 93.994 -36.4 4.857 5191 no
## 4048 1.1 93.994 -36.4 4.857 5191 no
## 4049 1.1 93.994 -36.4 4.857 5191 no
## 4050 1.1 93.994 -36.4 4.857 5191 no
## 4051 1.1 93.994 -36.4 4.857 5191 no
## 4052 1.1 93.994 -36.4 4.857 5191 no
## 4053 1.1 93.994 -36.4 4.857 5191 no
## 4054 1.1 93.994 -36.4 4.857 5191 no
## 4055 1.1 93.994 -36.4 4.857 5191 no
## 4056 1.1 93.994 -36.4 4.857 5191 no
## 4057 1.1 93.994 -36.4 4.857 5191 no
## 4058 1.1 93.994 -36.4 4.857 5191 no
## 4059 1.1 93.994 -36.4 4.857 5191 no
## 4060 1.1 93.994 -36.4 4.857 5191 no
## 4061 1.1 93.994 -36.4 4.857 5191 no
## 4062 1.1 93.994 -36.4 4.857 5191 no
## 4063 1.1 93.994 -36.4 4.857 5191 no
## 4064 1.1 93.994 -36.4 4.857 5191 no
## 4065 1.1 93.994 -36.4 4.857 5191 no
## 4066 1.1 93.994 -36.4 4.857 5191 no
## 4067 1.1 93.994 -36.4 4.857 5191 no
## 4068 1.1 93.994 -36.4 4.857 5191 no
## 4069 1.1 93.994 -36.4 4.857 5191 no
## 4070 1.1 93.994 -36.4 4.857 5191 no
## 4071 1.1 93.994 -36.4 4.857 5191 no
## 4072 1.1 93.994 -36.4 4.857 5191 no
## 4073 1.1 93.994 -36.4 4.857 5191 no
## 4074 1.1 93.994 -36.4 4.857 5191 no
## 4075 1.1 93.994 -36.4 4.857 5191 no
## 4076 1.1 93.994 -36.4 4.857 5191 no
## 4077 1.1 93.994 -36.4 4.857 5191 no
## 4078 1.1 93.994 -36.4 4.857 5191 no
## 4079 1.1 93.994 -36.4 4.857 5191 no
## 4080 1.1 93.994 -36.4 4.857 5191 no
## 4081 1.1 93.994 -36.4 4.857 5191 no
## 4082 1.1 93.994 -36.4 4.857 5191 no
## 4083 1.1 93.994 -36.4 4.857 5191 no
## 4084 1.1 93.994 -36.4 4.857 5191 no
## 4085 1.1 93.994 -36.4 4.857 5191 no
## 4086 1.1 93.994 -36.4 4.857 5191 no
## 4087 1.1 93.994 -36.4 4.857 5191 no
## 4088 1.1 93.994 -36.4 4.857 5191 no
## 4089 1.1 93.994 -36.4 4.857 5191 no
## 4090 1.1 93.994 -36.4 4.857 5191 no
## 4091 1.1 93.994 -36.4 4.857 5191 no
## 4092 1.1 93.994 -36.4 4.857 5191 no
## 4093 1.1 93.994 -36.4 4.857 5191 no
## 4094 1.1 93.994 -36.4 4.857 5191 no
## 4095 1.1 93.994 -36.4 4.857 5191 no
## 4096 1.1 93.994 -36.4 4.857 5191 no
## 4097 1.1 93.994 -36.4 4.857 5191 no
## 4098 1.1 93.994 -36.4 4.857 5191 no
## 4099 1.1 93.994 -36.4 4.857 5191 no
## 4100 1.1 93.994 -36.4 4.857 5191 no
## 4101 1.1 93.994 -36.4 4.857 5191 no
## 4102 1.1 93.994 -36.4 4.857 5191 no
## 4103 1.1 93.994 -36.4 4.857 5191 no
## 4104 1.1 93.994 -36.4 4.857 5191 no
## 4105 1.1 93.994 -36.4 4.857 5191 no
## 4106 1.1 93.994 -36.4 4.857 5191 no
## 4107 1.1 93.994 -36.4 4.857 5191 no
## 4108 1.1 93.994 -36.4 4.857 5191 no
## 4109 1.1 93.994 -36.4 4.857 5191 no
## 4110 1.1 93.994 -36.4 4.857 5191 no
## 4111 1.1 93.994 -36.4 4.857 5191 no
## 4112 1.1 93.994 -36.4 4.857 5191 no
## 4113 1.1 93.994 -36.4 4.857 5191 no
## 4114 1.1 93.994 -36.4 4.857 5191 no
## 4115 1.1 93.994 -36.4 4.857 5191 no
## 4116 1.1 93.994 -36.4 4.857 5191 no
## 4117 1.1 93.994 -36.4 4.857 5191 no
## 4118 1.1 93.994 -36.4 4.857 5191 no
## 4119 1.1 93.994 -36.4 4.857 5191 no
## 4120 1.1 93.994 -36.4 4.857 5191 no
## 4121 1.1 93.994 -36.4 4.857 5191 no
## 4122 1.1 93.994 -36.4 4.857 5191 no
## 4123 1.1 93.994 -36.4 4.857 5191 no
## 4124 1.1 93.994 -36.4 4.857 5191 no
## 4125 1.1 93.994 -36.4 4.857 5191 no
## 4126 1.1 93.994 -36.4 4.857 5191 no
## 4127 1.1 93.994 -36.4 4.857 5191 no
## 4128 1.1 93.994 -36.4 4.857 5191 no
## 4129 1.1 93.994 -36.4 4.857 5191 no
## 4130 1.1 93.994 -36.4 4.857 5191 no
## 4131 1.1 93.994 -36.4 4.857 5191 no
## 4132 1.1 93.994 -36.4 4.857 5191 no
## 4133 1.1 93.994 -36.4 4.857 5191 no
## 4134 1.1 93.994 -36.4 4.857 5191 no
## 4135 1.1 93.994 -36.4 4.857 5191 no
## 4136 1.1 93.994 -36.4 4.857 5191 no
## 4137 1.1 93.994 -36.4 4.857 5191 no
## 4138 1.1 93.994 -36.4 4.857 5191 no
## 4139 1.1 93.994 -36.4 4.857 5191 no
## 4140 1.1 93.994 -36.4 4.857 5191 no
## 4141 1.1 93.994 -36.4 4.857 5191 no
## 4142 1.1 93.994 -36.4 4.857 5191 no
## 4143 1.1 93.994 -36.4 4.857 5191 no
## 4144 1.1 93.994 -36.4 4.857 5191 no
## 4145 1.1 93.994 -36.4 4.857 5191 no
## 4146 1.1 93.994 -36.4 4.857 5191 no
## 4147 1.1 93.994 -36.4 4.857 5191 no
## 4148 1.1 93.994 -36.4 4.857 5191 no
## 4149 1.1 93.994 -36.4 4.857 5191 no
## 4150 1.1 93.994 -36.4 4.857 5191 no
## 4151 1.1 93.994 -36.4 4.857 5191 no
## 4152 1.1 93.994 -36.4 4.857 5191 no
## 4153 1.1 93.994 -36.4 4.857 5191 no
## 4154 1.1 93.994 -36.4 4.857 5191 no
## 4155 1.1 93.994 -36.4 4.857 5191 no
## 4156 1.1 93.994 -36.4 4.857 5191 no
## 4157 1.1 93.994 -36.4 4.857 5191 no
## 4158 1.1 93.994 -36.4 4.857 5191 no
## 4159 1.1 93.994 -36.4 4.857 5191 no
## 4160 1.1 93.994 -36.4 4.857 5191 no
## 4161 1.1 93.994 -36.4 4.857 5191 no
## 4162 1.1 93.994 -36.4 4.857 5191 no
## 4163 1.1 93.994 -36.4 4.857 5191 no
## 4164 1.1 93.994 -36.4 4.857 5191 no
## 4165 1.1 93.994 -36.4 4.857 5191 no
## 4166 1.1 93.994 -36.4 4.857 5191 no
## 4167 1.1 93.994 -36.4 4.857 5191 no
## 4168 1.1 93.994 -36.4 4.857 5191 no
## 4169 1.1 93.994 -36.4 4.857 5191 no
## 4170 1.1 93.994 -36.4 4.857 5191 no
## 4171 1.1 93.994 -36.4 4.857 5191 no
## 4172 1.1 93.994 -36.4 4.857 5191 no
## 4173 1.1 93.994 -36.4 4.857 5191 no
## 4174 1.1 93.994 -36.4 4.857 5191 no
## 4175 1.1 93.994 -36.4 4.857 5191 no
## 4176 1.1 93.994 -36.4 4.857 5191 no
## 4177 1.1 93.994 -36.4 4.857 5191 no
## 4178 1.1 93.994 -36.4 4.857 5191 no
## 4179 1.1 93.994 -36.4 4.857 5191 no
## 4180 1.1 93.994 -36.4 4.857 5191 no
## 4181 1.1 93.994 -36.4 4.857 5191 no
## 4182 1.1 93.994 -36.4 4.857 5191 no
## 4183 1.1 93.994 -36.4 4.857 5191 no
## 4184 1.1 93.994 -36.4 4.857 5191 no
## 4185 1.1 93.994 -36.4 4.857 5191 no
## 4186 1.1 93.994 -36.4 4.857 5191 no
## 4187 1.1 93.994 -36.4 4.857 5191 no
## 4188 1.1 93.994 -36.4 4.857 5191 no
## 4189 1.1 93.994 -36.4 4.857 5191 no
## 4190 1.1 93.994 -36.4 4.857 5191 no
## 4191 1.1 93.994 -36.4 4.857 5191 no
## 4192 1.1 93.994 -36.4 4.857 5191 no
## 4193 1.1 93.994 -36.4 4.857 5191 no
## 4194 1.1 93.994 -36.4 4.857 5191 no
## 4195 1.1 93.994 -36.4 4.857 5191 no
## 4196 1.1 93.994 -36.4 4.857 5191 no
## 4197 1.1 93.994 -36.4 4.857 5191 no
## 4198 1.1 93.994 -36.4 4.857 5191 no
## 4199 1.1 93.994 -36.4 4.857 5191 no
## 4200 1.1 93.994 -36.4 4.857 5191 no
## 4201 1.1 93.994 -36.4 4.857 5191 no
## 4202 1.1 93.994 -36.4 4.857 5191 no
## 4203 1.1 93.994 -36.4 4.857 5191 no
## 4204 1.1 93.994 -36.4 4.857 5191 no
## 4205 1.1 93.994 -36.4 4.857 5191 no
## 4206 1.1 93.994 -36.4 4.857 5191 no
## 4207 1.1 93.994 -36.4 4.857 5191 no
## 4208 1.1 93.994 -36.4 4.857 5191 no
## 4209 1.1 93.994 -36.4 4.857 5191 no
## 4210 1.1 93.994 -36.4 4.857 5191 no
## 4211 1.1 93.994 -36.4 4.857 5191 no
## 4212 1.1 93.994 -36.4 4.857 5191 no
## 4213 1.1 93.994 -36.4 4.857 5191 no
## 4214 1.1 93.994 -36.4 4.857 5191 no
## 4215 1.1 93.994 -36.4 4.857 5191 no
## 4216 1.1 93.994 -36.4 4.857 5191 no
## 4217 1.1 93.994 -36.4 4.857 5191 no
## 4218 1.1 93.994 -36.4 4.857 5191 no
## 4219 1.1 93.994 -36.4 4.857 5191 no
## 4220 1.1 93.994 -36.4 4.857 5191 no
## 4221 1.1 93.994 -36.4 4.857 5191 no
## 4222 1.1 93.994 -36.4 4.857 5191 no
## 4223 1.1 93.994 -36.4 4.857 5191 no
## 4224 1.1 93.994 -36.4 4.857 5191 no
## 4225 1.1 93.994 -36.4 4.857 5191 no
## 4226 1.1 93.994 -36.4 4.857 5191 no
## 4227 1.1 93.994 -36.4 4.857 5191 no
## 4228 1.1 93.994 -36.4 4.857 5191 no
## 4229 1.1 93.994 -36.4 4.857 5191 no
## 4230 1.1 93.994 -36.4 4.857 5191 no
## 4231 1.1 93.994 -36.4 4.857 5191 no
## 4232 1.1 93.994 -36.4 4.857 5191 no
## 4233 1.1 93.994 -36.4 4.857 5191 no
## 4234 1.1 93.994 -36.4 4.857 5191 no
## 4235 1.1 93.994 -36.4 4.857 5191 no
## 4236 1.1 93.994 -36.4 4.857 5191 no
## 4237 1.1 93.994 -36.4 4.857 5191 no
## 4238 1.1 93.994 -36.4 4.857 5191 no
## 4239 1.1 93.994 -36.4 4.857 5191 no
## 4240 1.1 93.994 -36.4 4.857 5191 no
## 4241 1.1 93.994 -36.4 4.857 5191 no
## 4242 1.1 93.994 -36.4 4.857 5191 no
## 4243 1.1 93.994 -36.4 4.857 5191 no
## 4244 1.1 93.994 -36.4 4.857 5191 no
## 4245 1.1 93.994 -36.4 4.857 5191 no
## 4246 1.1 93.994 -36.4 4.857 5191 no
## 4247 1.1 93.994 -36.4 4.857 5191 no
## 4248 1.1 93.994 -36.4 4.857 5191 no
## 4249 1.1 93.994 -36.4 4.857 5191 no
## 4250 1.1 93.994 -36.4 4.857 5191 no
## 4251 1.1 93.994 -36.4 4.857 5191 no
## 4252 1.1 93.994 -36.4 4.857 5191 no
## 4253 1.1 93.994 -36.4 4.857 5191 no
## 4254 1.1 93.994 -36.4 4.857 5191 no
## 4255 1.1 93.994 -36.4 4.857 5191 no
## 4256 1.1 93.994 -36.4 4.857 5191 no
## 4257 1.1 93.994 -36.4 4.857 5191 no
## 4258 1.1 93.994 -36.4 4.857 5191 no
## 4259 1.1 93.994 -36.4 4.857 5191 no
## 4260 1.1 93.994 -36.4 4.857 5191 no
## 4261 1.1 93.994 -36.4 4.857 5191 no
## 4262 1.1 93.994 -36.4 4.857 5191 no
## 4263 1.1 93.994 -36.4 4.857 5191 no
## 4264 1.1 93.994 -36.4 4.857 5191 no
## 4265 1.1 93.994 -36.4 4.857 5191 no
## 4266 1.1 93.994 -36.4 4.857 5191 no
## 4267 1.1 93.994 -36.4 4.857 5191 no
## 4268 1.1 93.994 -36.4 4.857 5191 no
## 4269 1.1 93.994 -36.4 4.857 5191 no
## 4270 1.1 93.994 -36.4 4.857 5191 no
## 4271 1.1 93.994 -36.4 4.857 5191 no
## 4272 1.1 93.994 -36.4 4.857 5191 no
## 4273 1.1 93.994 -36.4 4.857 5191 no
## 4274 1.1 93.994 -36.4 4.857 5191 no
## 4275 1.1 93.994 -36.4 4.857 5191 no
## 4276 1.1 93.994 -36.4 4.857 5191 no
## 4277 1.1 93.994 -36.4 4.857 5191 no
## 4278 1.1 93.994 -36.4 4.857 5191 no
## 4279 1.1 93.994 -36.4 4.857 5191 no
## 4280 1.1 93.994 -36.4 4.857 5191 no
## 4281 1.1 93.994 -36.4 4.857 5191 no
## 4282 1.1 93.994 -36.4 4.857 5191 no
## 4283 1.1 93.994 -36.4 4.857 5191 no
## 4284 1.1 93.994 -36.4 4.857 5191 no
## 4285 1.1 93.994 -36.4 4.857 5191 no
## 4286 1.1 93.994 -36.4 4.857 5191 no
## 4287 1.1 93.994 -36.4 4.857 5191 no
## 4288 1.1 93.994 -36.4 4.857 5191 no
## 4289 1.1 93.994 -36.4 4.857 5191 no
## 4290 1.1 93.994 -36.4 4.857 5191 no
## 4291 1.1 93.994 -36.4 4.857 5191 no
## 4292 1.1 93.994 -36.4 4.857 5191 no
## 4293 1.1 93.994 -36.4 4.857 5191 no
## 4294 1.1 93.994 -36.4 4.857 5191 no
## 4295 1.1 93.994 -36.4 4.857 5191 no
## 4296 1.1 93.994 -36.4 4.857 5191 no
## 4297 1.1 93.994 -36.4 4.857 5191 no
## 4298 1.1 93.994 -36.4 4.857 5191 no
## 4299 1.1 93.994 -36.4 4.857 5191 no
## 4300 1.1 93.994 -36.4 4.857 5191 no
## 4301 1.1 93.994 -36.4 4.857 5191 no
## 4302 1.1 93.994 -36.4 4.857 5191 no
## 4303 1.1 93.994 -36.4 4.857 5191 no
## 4304 1.1 93.994 -36.4 4.857 5191 no
## 4305 1.1 93.994 -36.4 4.857 5191 no
## 4306 1.1 93.994 -36.4 4.857 5191 no
## 4307 1.1 93.994 -36.4 4.857 5191 no
## 4308 1.1 93.994 -36.4 4.857 5191 no
## 4309 1.1 93.994 -36.4 4.857 5191 no
## 4310 1.1 93.994 -36.4 4.857 5191 no
## 4311 1.1 93.994 -36.4 4.857 5191 no
## 4312 1.1 93.994 -36.4 4.857 5191 no
## 4313 1.1 93.994 -36.4 4.857 5191 no
## 4314 1.1 93.994 -36.4 4.857 5191 no
## 4315 1.1 93.994 -36.4 4.857 5191 no
## 4316 1.1 93.994 -36.4 4.857 5191 no
## 4317 1.1 93.994 -36.4 4.857 5191 no
## 4318 1.1 93.994 -36.4 4.857 5191 no
## 4319 1.1 93.994 -36.4 4.857 5191 no
## 4320 1.1 93.994 -36.4 4.857 5191 no
## 4321 1.1 93.994 -36.4 4.857 5191 no
## 4322 1.1 93.994 -36.4 4.857 5191 no
## 4323 1.1 93.994 -36.4 4.857 5191 no
## 4324 1.1 93.994 -36.4 4.857 5191 no
## 4325 1.1 93.994 -36.4 4.857 5191 no
## 4326 1.1 93.994 -36.4 4.857 5191 no
## 4327 1.1 93.994 -36.4 4.857 5191 no
## 4328 1.1 93.994 -36.4 4.857 5191 no
## 4329 1.1 93.994 -36.4 4.857 5191 no
## 4330 1.1 93.994 -36.4 4.857 5191 no
## 4331 1.1 93.994 -36.4 4.857 5191 no
## 4332 1.1 93.994 -36.4 4.857 5191 no
## 4333 1.1 93.994 -36.4 4.857 5191 no
## 4334 1.1 93.994 -36.4 4.857 5191 no
## 4335 1.1 93.994 -36.4 4.857 5191 no
## 4336 1.1 93.994 -36.4 4.857 5191 no
## 4337 1.1 93.994 -36.4 4.857 5191 no
## 4338 1.1 93.994 -36.4 4.857 5191 no
## 4339 1.1 93.994 -36.4 4.857 5191 no
## 4340 1.1 93.994 -36.4 4.857 5191 no
## 4341 1.1 93.994 -36.4 4.857 5191 no
## 4342 1.1 93.994 -36.4 4.857 5191 no
## 4343 1.1 93.994 -36.4 4.857 5191 no
## 4344 1.1 93.994 -36.4 4.857 5191 no
## 4345 1.1 93.994 -36.4 4.857 5191 no
## 4346 1.1 93.994 -36.4 4.857 5191 no
## 4347 1.1 93.994 -36.4 4.857 5191 no
## 4348 1.1 93.994 -36.4 4.857 5191 no
## 4349 1.1 93.994 -36.4 4.857 5191 no
## 4350 1.1 93.994 -36.4 4.857 5191 no
## 4351 1.1 93.994 -36.4 4.857 5191 no
## 4352 1.1 93.994 -36.4 4.857 5191 no
## 4353 1.1 93.994 -36.4 4.857 5191 no
## 4354 1.1 93.994 -36.4 4.857 5191 no
## 4355 1.1 93.994 -36.4 4.857 5191 no
## 4356 1.1 93.994 -36.4 4.857 5191 no
## 4357 1.1 93.994 -36.4 4.857 5191 no
## 4358 1.1 93.994 -36.4 4.857 5191 no
## 4359 1.1 93.994 -36.4 4.857 5191 no
## 4360 1.1 93.994 -36.4 4.857 5191 no
## 4361 1.1 93.994 -36.4 4.857 5191 no
## 4362 1.1 93.994 -36.4 4.857 5191 no
## 4363 1.1 93.994 -36.4 4.857 5191 no
## 4364 1.1 93.994 -36.4 4.857 5191 no
## 4365 1.1 93.994 -36.4 4.857 5191 no
## 4366 1.1 93.994 -36.4 4.857 5191 no
## 4367 1.1 93.994 -36.4 4.857 5191 no
## 4368 1.1 93.994 -36.4 4.857 5191 no
## 4369 1.1 93.994 -36.4 4.857 5191 no
## 4370 1.1 93.994 -36.4 4.857 5191 no
## 4371 1.1 93.994 -36.4 4.857 5191 no
## 4372 1.1 93.994 -36.4 4.857 5191 no
## 4373 1.1 93.994 -36.4 4.857 5191 no
## 4374 1.1 93.994 -36.4 4.857 5191 no
## 4375 1.1 93.994 -36.4 4.857 5191 no
## 4376 1.1 93.994 -36.4 4.857 5191 no
## 4377 1.1 93.994 -36.4 4.857 5191 no
## 4378 1.1 93.994 -36.4 4.857 5191 no
## 4379 1.1 93.994 -36.4 4.857 5191 no
## 4380 1.1 93.994 -36.4 4.857 5191 no
## 4381 1.1 93.994 -36.4 4.857 5191 no
## 4382 1.1 93.994 -36.4 4.857 5191 no
## 4383 1.1 93.994 -36.4 4.857 5191 no
## 4384 1.1 93.994 -36.4 4.857 5191 no
## 4385 1.1 93.994 -36.4 4.857 5191 no
## 4386 1.1 93.994 -36.4 4.857 5191 no
## 4387 1.1 93.994 -36.4 4.857 5191 no
## 4388 1.1 93.994 -36.4 4.857 5191 no
## 4389 1.1 93.994 -36.4 4.857 5191 no
## 4390 1.1 93.994 -36.4 4.857 5191 no
## 4391 1.1 93.994 -36.4 4.857 5191 no
## 4392 1.1 93.994 -36.4 4.857 5191 no
## 4393 1.1 93.994 -36.4 4.857 5191 no
## 4394 1.1 93.994 -36.4 4.857 5191 no
## 4395 1.1 93.994 -36.4 4.857 5191 no
## 4396 1.1 93.994 -36.4 4.857 5191 no
## 4397 1.1 93.994 -36.4 4.857 5191 no
## 4398 1.1 93.994 -36.4 4.857 5191 no
## 4399 1.1 93.994 -36.4 4.857 5191 no
## 4400 1.1 93.994 -36.4 4.857 5191 no
## 4401 1.1 93.994 -36.4 4.857 5191 no
## 4402 1.1 93.994 -36.4 4.857 5191 no
## 4403 1.1 93.994 -36.4 4.857 5191 no
## 4404 1.1 93.994 -36.4 4.857 5191 no
## 4405 1.1 93.994 -36.4 4.857 5191 no
## 4406 1.1 93.994 -36.4 4.857 5191 no
## 4407 1.1 93.994 -36.4 4.857 5191 no
## 4408 1.1 93.994 -36.4 4.857 5191 no
## 4409 1.1 93.994 -36.4 4.857 5191 no
## 4410 1.1 93.994 -36.4 4.857 5191 no
## 4411 1.1 93.994 -36.4 4.857 5191 no
## 4412 1.1 93.994 -36.4 4.857 5191 no
## 4413 1.1 93.994 -36.4 4.857 5191 no
## 4414 1.1 93.994 -36.4 4.857 5191 no
## 4415 1.1 93.994 -36.4 4.857 5191 no
## 4416 1.1 93.994 -36.4 4.857 5191 no
## 4417 1.1 93.994 -36.4 4.857 5191 no
## 4418 1.1 93.994 -36.4 4.857 5191 no
## 4419 1.1 93.994 -36.4 4.857 5191 no
## 4420 1.1 93.994 -36.4 4.857 5191 no
## 4421 1.1 93.994 -36.4 4.857 5191 no
## 4422 1.1 93.994 -36.4 4.857 5191 no
## 4423 1.1 93.994 -36.4 4.857 5191 no
## 4424 1.1 93.994 -36.4 4.857 5191 no
## 4425 1.1 93.994 -36.4 4.857 5191 no
## 4426 1.1 93.994 -36.4 4.857 5191 no
## 4427 1.1 93.994 -36.4 4.857 5191 no
## 4428 1.1 93.994 -36.4 4.857 5191 no
## 4429 1.1 93.994 -36.4 4.857 5191 no
## 4430 1.1 93.994 -36.4 4.857 5191 no
## 4431 1.1 93.994 -36.4 4.857 5191 no
## 4432 1.1 93.994 -36.4 4.857 5191 no
## 4433 1.1 93.994 -36.4 4.857 5191 no
## 4434 1.1 93.994 -36.4 4.857 5191 no
## 4435 1.1 93.994 -36.4 4.857 5191 no
## 4436 1.1 93.994 -36.4 4.857 5191 no
## 4437 1.1 93.994 -36.4 4.857 5191 no
## 4438 1.1 93.994 -36.4 4.857 5191 no
## 4439 1.1 93.994 -36.4 4.857 5191 no
## 4440 1.1 93.994 -36.4 4.857 5191 no
## 4441 1.1 93.994 -36.4 4.857 5191 no
## 4442 1.1 93.994 -36.4 4.857 5191 no
## 4443 1.1 93.994 -36.4 4.857 5191 no
## 4444 1.1 93.994 -36.4 4.857 5191 no
## 4445 1.1 93.994 -36.4 4.857 5191 no
## 4446 1.1 93.994 -36.4 4.857 5191 no
## 4447 1.1 93.994 -36.4 4.857 5191 no
## 4448 1.1 93.994 -36.4 4.857 5191 no
## 4449 1.1 93.994 -36.4 4.857 5191 no
## 4450 1.1 93.994 -36.4 4.857 5191 no
## 4451 1.1 93.994 -36.4 4.857 5191 no
## 4452 1.1 93.994 -36.4 4.857 5191 no
## 4453 1.1 93.994 -36.4 4.857 5191 no
## 4454 1.1 93.994 -36.4 4.857 5191 no
## 4455 1.1 93.994 -36.4 4.857 5191 no
## 4456 1.1 93.994 -36.4 4.857 5191 no
## 4457 1.1 93.994 -36.4 4.857 5191 no
## 4458 1.1 93.994 -36.4 4.857 5191 no
## 4459 1.1 93.994 -36.4 4.857 5191 no
## 4460 1.1 93.994 -36.4 4.857 5191 no
## 4461 1.1 93.994 -36.4 4.857 5191 no
## 4462 1.1 93.994 -36.4 4.857 5191 no
## 4463 1.1 93.994 -36.4 4.857 5191 no
## 4464 1.1 93.994 -36.4 4.857 5191 no
## 4465 1.1 93.994 -36.4 4.857 5191 no
## 4466 1.1 93.994 -36.4 4.857 5191 no
## 4467 1.1 93.994 -36.4 4.857 5191 no
## 4468 1.1 93.994 -36.4 4.857 5191 no
## 4469 1.1 93.994 -36.4 4.857 5191 no
## 4470 1.1 93.994 -36.4 4.857 5191 no
## 4471 1.1 93.994 -36.4 4.857 5191 no
## 4472 1.1 93.994 -36.4 4.857 5191 no
## 4473 1.1 93.994 -36.4 4.857 5191 no
## 4474 1.1 93.994 -36.4 4.857 5191 no
## 4475 1.1 93.994 -36.4 4.857 5191 no
## 4476 1.1 93.994 -36.4 4.857 5191 no
## 4477 1.1 93.994 -36.4 4.857 5191 no
## 4478 1.1 93.994 -36.4 4.857 5191 no
## 4479 1.1 93.994 -36.4 4.857 5191 no
## 4480 1.1 93.994 -36.4 4.857 5191 no
## 4481 1.1 93.994 -36.4 4.857 5191 no
## 4482 1.1 93.994 -36.4 4.857 5191 no
## 4483 1.1 93.994 -36.4 4.857 5191 no
## 4484 1.1 93.994 -36.4 4.857 5191 no
## 4485 1.1 93.994 -36.4 4.857 5191 no
## 4486 1.1 93.994 -36.4 4.857 5191 no
## 4487 1.1 93.994 -36.4 4.857 5191 no
## 4488 1.1 93.994 -36.4 4.857 5191 no
## 4489 1.1 93.994 -36.4 4.857 5191 no
## 4490 1.1 93.994 -36.4 4.857 5191 no
## 4491 1.1 93.994 -36.4 4.857 5191 no
## 4492 1.1 93.994 -36.4 4.857 5191 no
## 4493 1.1 93.994 -36.4 4.857 5191 no
## 4494 1.1 93.994 -36.4 4.857 5191 no
## 4495 1.1 93.994 -36.4 4.857 5191 no
## 4496 1.1 93.994 -36.4 4.857 5191 no
## 4497 1.1 93.994 -36.4 4.857 5191 no
## 4498 1.1 93.994 -36.4 4.857 5191 no
## 4499 1.1 93.994 -36.4 4.857 5191 no
## 4500 1.1 93.994 -36.4 4.857 5191 no
## 4501 1.1 93.994 -36.4 4.857 5191 no
## 4502 1.1 93.994 -36.4 4.857 5191 no
## 4503 1.1 93.994 -36.4 4.857 5191 no
## 4504 1.1 93.994 -36.4 4.857 5191 no
## 4505 1.1 93.994 -36.4 4.857 5191 no
## 4506 1.1 93.994 -36.4 4.857 5191 no
## 4507 1.1 93.994 -36.4 4.857 5191 no
## 4508 1.1 93.994 -36.4 4.857 5191 no
## 4509 1.1 93.994 -36.4 4.857 5191 no
## 4510 1.1 93.994 -36.4 4.857 5191 no
## 4511 1.1 93.994 -36.4 4.857 5191 no
## 4512 1.1 93.994 -36.4 4.857 5191 no
## 4513 1.1 93.994 -36.4 4.857 5191 no
## 4514 1.1 93.994 -36.4 4.857 5191 no
## 4515 1.1 93.994 -36.4 4.857 5191 no
## 4516 1.1 93.994 -36.4 4.857 5191 no
## 4517 1.1 93.994 -36.4 4.857 5191 no
## 4518 1.1 93.994 -36.4 4.857 5191 no
## 4519 1.1 93.994 -36.4 4.857 5191 no
## 4520 1.1 93.994 -36.4 4.857 5191 no
## 4521 1.1 93.994 -36.4 4.857 5191 no
## 4522 1.1 93.994 -36.4 4.857 5191 no
## 4523 1.1 93.994 -36.4 4.857 5191 no
## 4524 1.1 93.994 -36.4 4.857 5191 no
## 4525 1.1 93.994 -36.4 4.857 5191 no
## 4526 1.1 93.994 -36.4 4.857 5191 no
## 4527 1.1 93.994 -36.4 4.857 5191 no
## 4528 1.1 93.994 -36.4 4.857 5191 no
## 4529 1.1 93.994 -36.4 4.857 5191 no
## 4530 1.1 93.994 -36.4 4.857 5191 no
## 4531 1.1 93.994 -36.4 4.857 5191 no
## 4532 1.1 93.994 -36.4 4.857 5191 no
## 4533 1.1 93.994 -36.4 4.857 5191 no
## 4534 1.1 93.994 -36.4 4.857 5191 no
## 4535 1.1 93.994 -36.4 4.857 5191 no
## 4536 1.1 93.994 -36.4 4.857 5191 no
## 4537 1.1 93.994 -36.4 4.857 5191 no
## 4538 1.1 93.994 -36.4 4.857 5191 no
## 4539 1.1 93.994 -36.4 4.857 5191 no
## 4540 1.1 93.994 -36.4 4.857 5191 no
## 4541 1.1 93.994 -36.4 4.857 5191 no
## 4542 1.1 93.994 -36.4 4.857 5191 no
## 4543 1.1 93.994 -36.4 4.857 5191 no
## 4544 1.1 93.994 -36.4 4.857 5191 no
## 4545 1.1 93.994 -36.4 4.857 5191 no
## 4546 1.1 93.994 -36.4 4.857 5191 no
## 4547 1.1 93.994 -36.4 4.857 5191 no
## 4548 1.1 93.994 -36.4 4.857 5191 no
## 4549 1.1 93.994 -36.4 4.857 5191 no
## 4550 1.1 93.994 -36.4 4.857 5191 no
## 4551 1.1 93.994 -36.4 4.857 5191 no
## 4552 1.1 93.994 -36.4 4.857 5191 no
## 4553 1.1 93.994 -36.4 4.857 5191 no
## 4554 1.1 93.994 -36.4 4.857 5191 no
## 4555 1.1 93.994 -36.4 4.857 5191 no
## 4556 1.1 93.994 -36.4 4.857 5191 no
## 4557 1.1 93.994 -36.4 4.857 5191 no
## 4558 1.1 93.994 -36.4 4.857 5191 no
## 4559 1.1 93.994 -36.4 4.857 5191 no
## 4560 1.1 93.994 -36.4 4.857 5191 no
## 4561 1.1 93.994 -36.4 4.857 5191 no
## 4562 1.1 93.994 -36.4 4.857 5191 no
## 4563 1.1 93.994 -36.4 4.857 5191 no
## 4564 1.1 93.994 -36.4 4.857 5191 no
## 4565 1.1 93.994 -36.4 4.857 5191 no
## 4566 1.1 93.994 -36.4 4.857 5191 no
## 4567 1.1 93.994 -36.4 4.857 5191 no
## 4568 1.1 93.994 -36.4 4.857 5191 no
## 4569 1.1 93.994 -36.4 4.857 5191 no
## 4570 1.1 93.994 -36.4 4.857 5191 no
## 4571 1.1 93.994 -36.4 4.857 5191 no
## 4572 1.1 93.994 -36.4 4.857 5191 no
## 4573 1.1 93.994 -36.4 4.857 5191 no
## 4574 1.1 93.994 -36.4 4.857 5191 no
## 4575 1.1 93.994 -36.4 4.857 5191 no
## 4576 1.1 93.994 -36.4 4.857 5191 no
## 4577 1.1 93.994 -36.4 4.857 5191 no
## 4578 1.1 93.994 -36.4 4.857 5191 no
## 4579 1.1 93.994 -36.4 4.857 5191 no
## 4580 1.1 93.994 -36.4 4.857 5191 no
## 4581 1.1 93.994 -36.4 4.857 5191 no
## 4582 1.1 93.994 -36.4 4.857 5191 no
## 4583 1.1 93.994 -36.4 4.857 5191 no
## 4584 1.1 93.994 -36.4 4.857 5191 no
## 4585 1.1 93.994 -36.4 4.857 5191 no
## 4586 1.1 93.994 -36.4 4.857 5191 no
## 4587 1.1 93.994 -36.4 4.857 5191 no
## 4588 1.1 93.994 -36.4 4.857 5191 no
## 4589 1.1 93.994 -36.4 4.857 5191 no
## 4590 1.1 93.994 -36.4 4.857 5191 no
## 4591 1.1 93.994 -36.4 4.857 5191 no
## 4592 1.1 93.994 -36.4 4.857 5191 no
## 4593 1.1 93.994 -36.4 4.857 5191 no
## 4594 1.1 93.994 -36.4 4.857 5191 no
## 4595 1.1 93.994 -36.4 4.857 5191 no
## 4596 1.1 93.994 -36.4 4.857 5191 no
## 4597 1.1 93.994 -36.4 4.857 5191 no
## 4598 1.1 93.994 -36.4 4.857 5191 no
## 4599 1.1 93.994 -36.4 4.857 5191 no
## 4600 1.1 93.994 -36.4 4.857 5191 no
## 4601 1.1 93.994 -36.4 4.857 5191 no
## 4602 1.1 93.994 -36.4 4.857 5191 no
## 4603 1.1 93.994 -36.4 4.857 5191 no
## 4604 1.1 93.994 -36.4 4.857 5191 no
## 4605 1.1 93.994 -36.4 4.857 5191 no
## 4606 1.1 93.994 -36.4 4.857 5191 no
## 4607 1.1 93.994 -36.4 4.857 5191 no
## 4608 1.1 93.994 -36.4 4.857 5191 no
## 4609 1.1 93.994 -36.4 4.857 5191 no
## 4610 1.1 93.994 -36.4 4.857 5191 no
## 4611 1.1 93.994 -36.4 4.857 5191 no
## 4612 1.1 93.994 -36.4 4.857 5191 no
## 4613 1.1 93.994 -36.4 4.857 5191 no
## 4614 1.1 93.994 -36.4 4.857 5191 no
## 4615 1.1 93.994 -36.4 4.857 5191 no
## 4616 1.1 93.994 -36.4 4.857 5191 no
## 4617 1.1 93.994 -36.4 4.857 5191 no
## 4618 1.1 93.994 -36.4 4.857 5191 no
## 4619 1.1 93.994 -36.4 4.857 5191 no
## 4620 1.1 93.994 -36.4 4.857 5191 no
## 4621 1.1 93.994 -36.4 4.857 5191 no
## 4622 1.1 93.994 -36.4 4.857 5191 no
## 4623 1.1 93.994 -36.4 4.857 5191 no
## 4624 1.1 93.994 -36.4 4.857 5191 no
## 4625 1.1 93.994 -36.4 4.857 5191 no
## 4626 1.1 93.994 -36.4 4.857 5191 no
## 4627 1.1 93.994 -36.4 4.857 5191 no
## 4628 1.1 93.994 -36.4 4.857 5191 no
## 4629 1.1 93.994 -36.4 4.857 5191 no
## 4630 1.1 93.994 -36.4 4.857 5191 no
## 4631 1.1 93.994 -36.4 4.857 5191 no
## 4632 1.1 93.994 -36.4 4.857 5191 no
## 4633 1.1 93.994 -36.4 4.857 5191 no
## 4634 1.1 93.994 -36.4 4.857 5191 no
## 4635 1.1 93.994 -36.4 4.857 5191 no
## 4636 1.1 93.994 -36.4 4.857 5191 no
## 4637 1.1 93.994 -36.4 4.857 5191 no
## 4638 1.1 93.994 -36.4 4.857 5191 no
## 4639 1.1 93.994 -36.4 4.857 5191 no
## 4640 1.1 93.994 -36.4 4.857 5191 no
## 4641 1.1 93.994 -36.4 4.857 5191 no
## 4642 1.1 93.994 -36.4 4.857 5191 no
## 4643 1.1 93.994 -36.4 4.857 5191 no
## 4644 1.1 93.994 -36.4 4.857 5191 no
## 4645 1.1 93.994 -36.4 4.857 5191 no
## 4646 1.1 93.994 -36.4 4.857 5191 no
## 4647 1.1 93.994 -36.4 4.857 5191 no
## 4648 1.1 93.994 -36.4 4.857 5191 no
## 4649 1.1 93.994 -36.4 4.857 5191 no
## 4650 1.1 93.994 -36.4 4.857 5191 no
## 4651 1.1 93.994 -36.4 4.857 5191 no
## 4652 1.1 93.994 -36.4 4.857 5191 no
## 4653 1.1 93.994 -36.4 4.857 5191 no
## 4654 1.1 93.994 -36.4 4.857 5191 no
## 4655 1.1 93.994 -36.4 4.857 5191 no
## 4656 1.1 93.994 -36.4 4.857 5191 no
## 4657 1.1 93.994 -36.4 4.857 5191 no
## 4658 1.1 93.994 -36.4 4.857 5191 no
## 4659 1.1 93.994 -36.4 4.857 5191 no
## 4660 1.1 93.994 -36.4 4.857 5191 no
## 4661 1.1 93.994 -36.4 4.857 5191 no
## 4662 1.1 93.994 -36.4 4.857 5191 no
## 4663 1.1 93.994 -36.4 4.857 5191 no
## 4664 1.1 93.994 -36.4 4.857 5191 no
## 4665 1.1 93.994 -36.4 4.857 5191 no
## 4666 1.1 93.994 -36.4 4.857 5191 no
## 4667 1.1 93.994 -36.4 4.857 5191 no
## 4668 1.1 93.994 -36.4 4.857 5191 no
## 4669 1.1 93.994 -36.4 4.857 5191 no
## 4670 1.1 93.994 -36.4 4.857 5191 no
## 4671 1.1 93.994 -36.4 4.857 5191 no
## 4672 1.1 93.994 -36.4 4.857 5191 no
## 4673 1.1 93.994 -36.4 4.857 5191 no
## 4674 1.1 93.994 -36.4 4.857 5191 no
## 4675 1.1 93.994 -36.4 4.857 5191 no
## 4676 1.1 93.994 -36.4 4.857 5191 no
## 4677 1.1 93.994 -36.4 4.857 5191 no
## 4678 1.1 93.994 -36.4 4.857 5191 no
## 4679 1.1 93.994 -36.4 4.857 5191 no
## 4680 1.1 93.994 -36.4 4.857 5191 no
## 4681 1.1 93.994 -36.4 4.857 5191 no
## 4682 1.1 93.994 -36.4 4.857 5191 no
## 4683 1.1 93.994 -36.4 4.857 5191 no
## 4684 1.1 93.994 -36.4 4.857 5191 no
## 4685 1.1 93.994 -36.4 4.857 5191 no
## 4686 1.1 93.994 -36.4 4.857 5191 no
## 4687 1.1 93.994 -36.4 4.857 5191 no
## 4688 1.1 93.994 -36.4 4.857 5191 no
## 4689 1.1 93.994 -36.4 4.857 5191 no
## 4690 1.1 93.994 -36.4 4.857 5191 no
## 4691 1.1 93.994 -36.4 4.857 5191 no
## 4692 1.1 93.994 -36.4 4.857 5191 no
## 4693 1.1 93.994 -36.4 4.857 5191 no
## 4694 1.1 93.994 -36.4 4.857 5191 no
## 4695 1.1 93.994 -36.4 4.857 5191 no
## 4696 1.1 93.994 -36.4 4.857 5191 no
## 4697 1.1 93.994 -36.4 4.857 5191 no
## 4698 1.1 93.994 -36.4 4.857 5191 no
## 4699 1.1 93.994 -36.4 4.857 5191 no
## 4700 1.1 93.994 -36.4 4.857 5191 no
## 4701 1.1 93.994 -36.4 4.857 5191 no
## 4702 1.1 93.994 -36.4 4.857 5191 no
## 4703 1.1 93.994 -36.4 4.857 5191 no
## 4704 1.1 93.994 -36.4 4.857 5191 no
## 4705 1.1 93.994 -36.4 4.857 5191 no
## 4706 1.1 93.994 -36.4 4.857 5191 no
## 4707 1.1 93.994 -36.4 4.857 5191 no
## 4708 1.1 93.994 -36.4 4.857 5191 no
## 4709 1.1 93.994 -36.4 4.857 5191 no
## 4710 1.1 93.994 -36.4 4.857 5191 no
## 4711 1.1 93.994 -36.4 4.857 5191 no
## 4712 1.1 93.994 -36.4 4.857 5191 no
## 4713 1.1 93.994 -36.4 4.857 5191 no
## 4714 1.1 93.994 -36.4 4.857 5191 no
## 4715 1.1 93.994 -36.4 4.857 5191 no
## 4716 1.1 93.994 -36.4 4.857 5191 no
## 4717 1.1 93.994 -36.4 4.857 5191 no
## 4718 1.1 93.994 -36.4 4.857 5191 no
## 4719 1.1 93.994 -36.4 4.857 5191 no
## 4720 1.1 93.994 -36.4 4.857 5191 no
## 4721 1.1 93.994 -36.4 4.857 5191 no
## 4722 1.1 93.994 -36.4 4.857 5191 no
## 4723 1.1 93.994 -36.4 4.857 5191 no
## 4724 1.1 93.994 -36.4 4.857 5191 no
## 4725 1.1 93.994 -36.4 4.857 5191 no
## 4726 1.1 93.994 -36.4 4.857 5191 no
## 4727 1.1 93.994 -36.4 4.857 5191 no
## 4728 1.1 93.994 -36.4 4.857 5191 no
## 4729 1.1 93.994 -36.4 4.857 5191 no
## 4730 1.1 93.994 -36.4 4.857 5191 no
## 4731 1.1 93.994 -36.4 4.857 5191 no
## 4732 1.1 93.994 -36.4 4.857 5191 no
## 4733 1.1 93.994 -36.4 4.857 5191 no
## 4734 1.1 93.994 -36.4 4.857 5191 no
## 4735 1.1 93.994 -36.4 4.857 5191 no
## 4736 1.1 93.994 -36.4 4.857 5191 no
## 4737 1.1 93.994 -36.4 4.857 5191 no
## 4738 1.1 93.994 -36.4 4.857 5191 no
## 4739 1.1 93.994 -36.4 4.857 5191 no
## 4740 1.1 93.994 -36.4 4.857 5191 no
## 4741 1.1 93.994 -36.4 4.857 5191 no
## 4742 1.1 93.994 -36.4 4.857 5191 no
## 4743 1.1 93.994 -36.4 4.857 5191 no
## 4744 1.1 93.994 -36.4 4.857 5191 no
## 4745 1.1 93.994 -36.4 4.857 5191 no
## 4746 1.1 93.994 -36.4 4.857 5191 no
## 4747 1.1 93.994 -36.4 4.857 5191 no
## 4748 1.1 93.994 -36.4 4.857 5191 no
## 4749 1.1 93.994 -36.4 4.857 5191 no
## 4750 1.1 93.994 -36.4 4.857 5191 no
## 4751 1.1 93.994 -36.4 4.857 5191 no
## 4752 1.1 93.994 -36.4 4.857 5191 no
## 4753 1.1 93.994 -36.4 4.857 5191 no
## 4754 1.1 93.994 -36.4 4.857 5191 no
## 4755 1.1 93.994 -36.4 4.857 5191 no
## 4756 1.1 93.994 -36.4 4.857 5191 no
## 4757 1.1 93.994 -36.4 4.857 5191 no
## 4758 1.1 93.994 -36.4 4.857 5191 no
## 4759 1.1 93.994 -36.4 4.857 5191 no
## 4760 1.1 93.994 -36.4 4.857 5191 no
## 4761 1.1 93.994 -36.4 4.857 5191 no
## [ reached 'max' / getOption("max.print") -- omitted 28190 rows ]
response_encode <- function(data, target) {
encoded_data <- data
for (col in names(data)) {
if (is.factor(data[[col]]) && col != target) {
mean_response <- aggregate(as.numeric(data[[target]]) - 1 ~ data[[col]], FUN = mean)
names(mean_response) <- c(col, paste0(col, "_encoded"))
encoded_data <- merge(encoded_data, mean_response, by.x = col, by.y = col, all.x = TRUE)
}
}
encoded_data <- encoded_data %>% select(-one_of(names(data %>% select_if(is.factor))))
return(encoded_data)
}
target_var <- "y"
train_encoded <- response_encode(train_data, target_var)
test_encoded <- response_encode(test_data, target_var)
train_encoded
## age duration campaign pdays previous emp.var.rate cons.price.idx
## 1 49 121 1 999 1 -1.8 92.893
## 2 43 108 1 999 1 -2.9 92.963
## 3 37 294 2 999 1 -1.8 92.893
## 4 44 217 1 999 1 -1.8 92.893
## 5 33 441 5 999 1 -3.4 92.431
## 6 57 100 3 999 1 -1.8 92.893
## 7 49 47 3 999 1 -1.8 92.893
## 8 34 166 5 999 1 -1.8 92.893
## 9 32 402 1 999 2 -1.8 92.893
## 10 48 64 4 999 1 -1.8 92.893
## 11 40 53 1 999 1 -1.8 93.075
## 12 29 55 1 999 1 -0.1 93.200
## 13 55 45 7 999 1 -1.8 93.075
## 14 48 111 2 999 1 -0.1 93.200
## 15 30 263 1 999 2 -1.7 94.055
## 16 37 489 1 999 1 -1.8 93.876
## 17 60 618 1 999 1 -1.1 94.199
## 18 42 290 2 999 1 -1.8 93.075
## 19 23 236 4 999 1 -1.8 92.893
## 20 35 69 3 999 1 -1.8 92.893
## 21 36 83 1 999 1 -0.1 93.200
## 22 63 79 1 6 2 -2.9 92.201
## 23 47 398 1 999 1 -1.8 92.893
## 24 31 81 2 999 1 -2.9 92.963
## 25 28 169 3 999 1 -1.8 93.369
## 26 37 218 1 999 1 -1.8 93.075
## 27 36 490 3 999 2 -1.8 93.075
## 28 30 159 1 999 1 -1.8 92.893
## 29 49 164 1 999 1 -1.8 92.893
## 30 46 11 5 999 1 -1.8 92.893
## 31 50 134 1 999 1 -0.1 93.200
## 32 37 290 1 999 1 -1.8 92.893
## 33 52 442 2 999 1 -0.1 93.200
## 34 47 201 2 999 1 -1.8 92.893
## 35 36 70 1 999 1 -0.1 93.200
## 36 54 121 1 999 1 -1.8 92.893
## 37 33 206 2 999 1 -0.1 93.200
## 38 51 841 2 999 2 -1.1 94.199
## 39 32 78 2 999 1 -1.8 92.843
## 40 37 96 2 999 1 -0.1 93.200
## 41 33 353 2 999 1 -0.1 93.200
## 42 33 441 5 999 1 -3.4 92.431
## 43 41 113 2 999 1 -1.8 92.893
## 44 27 267 1 999 1 -1.8 92.893
## 45 55 284 1 999 1 -3.0 92.713
## 46 51 1462 2 999 1 -1.8 92.893
## 47 40 85 1 999 2 -1.8 92.893
## 48 27 284 1 999 1 -1.8 93.075
## 49 46 294 1 999 1 -0.1 93.200
## 50 49 141 1 999 1 -1.8 92.893
## 51 48 313 1 999 2 -1.8 92.893
## 52 48 79 2 999 1 -1.8 92.893
## 53 31 119 2 999 1 -1.8 92.893
## 54 25 209 1 999 1 -1.8 92.893
## 55 50 116 2 999 1 -0.1 93.200
## 56 27 401 1 999 1 -1.8 93.075
## 57 44 353 1 999 1 -0.1 93.200
## 58 36 98 1 999 2 -1.8 92.893
## 59 30 95 2 999 1 -1.8 92.893
## 60 34 63 1 999 1 -1.8 92.893
## 61 36 153 2 999 1 -2.9 92.201
## 62 33 119 2 999 1 -1.8 92.893
## 63 30 69 1 999 1 -3.0 92.713
## 64 25 81 1 999 1 -2.9 92.201
## 65 32 630 3 999 1 -1.8 92.893
## 66 30 74 1 999 1 -1.8 92.893
## 67 42 94 1 999 1 -1.8 93.075
## 68 76 103 1 999 1 -3.0 92.713
## 69 31 41 1 999 1 -0.1 93.200
## 70 41 268 1 999 1 -1.8 93.075
## 71 30 149 1 999 1 -1.8 92.893
## 72 33 492 1 12 2 -1.8 92.893
## 73 56 520 1 999 1 -1.8 92.893
## 74 38 136 2 999 1 -0.1 93.200
## 75 38 654 2 999 1 -1.8 92.893
## 76 39 44 2 999 1 -0.1 93.200
## 77 36 179 1 999 1 -1.8 92.893
## 78 31 55 1 999 1 -1.8 93.075
## 79 36 191 1 999 1 -1.8 92.893
## 80 30 1357 4 999 1 -1.8 92.893
## 81 41 272 1 999 1 -1.8 93.075
## 82 31 146 2 12 3 -1.1 94.601
## 83 52 294 1 999 1 -1.8 93.369
## 84 68 130 4 999 2 -1.1 94.601
## 85 30 241 2 999 1 -1.8 92.893
## 86 41 174 1 4 3 -1.7 94.027
## 87 35 79 1 999 1 -1.8 93.075
## 88 23 136 1 999 3 -2.9 92.201
## 89 32 206 2 999 1 -1.8 92.893
## 90 48 17 5 999 1 -1.8 92.893
## 91 31 387 2 999 1 -1.8 92.893
## 92 39 195 1 999 1 -1.8 92.893
## 93 28 687 2 999 1 -1.8 92.893
## 94 36 219 7 999 1 -0.1 93.200
## 95 54 204 1 999 1 -2.9 92.201
## 96 28 126 2 999 1 -1.8 92.893
## 97 76 344 1 999 1 -2.9 92.201
## 98 33 214 2 999 1 -0.1 93.200
## 99 63 146 1 999 1 -2.9 92.469
## 100 47 795 3 999 1 -1.8 93.075
## 101 37 253 2 999 1 -1.8 92.893
## 102 79 464 1 999 1 -1.7 94.215
## 103 74 309 4 999 3 -1.8 93.876
## 104 45 370 3 999 1 -1.8 93.075
## 105 35 466 2 999 2 -1.8 93.075
## 106 39 484 1 999 2 -1.8 93.075
## 107 30 288 1 999 1 -1.8 92.893
## 108 31 264 2 999 1 -0.1 93.200
## 109 37 439 2 999 1 -1.8 93.075
## 110 29 116 2 999 1 -3.0 92.713
## 111 50 98 2 999 1 -2.9 92.469
## 112 31 163 1 999 1 -2.9 92.963
## 113 31 54 1 999 1 -1.1 94.601
## 114 51 295 1 999 1 -1.8 92.893
## 115 56 252 1 999 2 -2.9 92.963
## 116 39 207 2 999 1 -1.8 92.893
## 117 47 437 1 999 1 -1.1 94.601
## 118 42 58 1 999 1 -0.1 93.200
## 119 50 302 2 999 1 -0.1 93.200
## 120 29 567 3 13 2 -1.8 93.876
## 121 36 104 3 999 1 -1.8 92.893
## 122 29 135 2 999 2 -1.8 92.893
## 123 31 8 4 999 1 -1.8 92.893
## 124 51 125 1 999 1 -0.1 93.200
## 125 24 133 3 999 2 -1.1 94.601
## 126 30 361 2 999 1 -0.1 93.200
## 127 54 171 3 999 1 -1.7 94.027
## 128 32 293 2 999 1 -1.8 93.075
## 129 27 133 2 999 1 -2.9 92.963
## 130 32 181 2 999 1 -1.8 92.893
## 131 37 696 1 999 1 -1.8 92.893
## 132 54 254 2 999 1 -1.8 92.893
## 133 46 32 1 999 1 -0.1 93.200
## 134 36 1132 1 999 1 -0.1 93.200
## 135 36 283 1 999 1 -1.8 92.893
## 136 35 304 1 999 1 -1.8 92.893
## 137 38 31 5 999 1 -1.8 92.893
## 138 26 362 2 999 1 -1.8 93.075
## 139 34 136 1 999 2 -2.9 92.963
## 140 58 74 2 999 1 -1.8 92.893
## 141 27 193 1 999 1 -1.7 94.055
## 142 34 217 6 999 1 -1.8 92.893
## 143 58 158 3 999 1 -0.1 93.200
## 144 33 165 1 999 1 -1.8 92.893
## 145 51 118 2 999 1 -0.1 93.200
## 146 29 118 2 999 1 -0.1 93.200
## 147 46 183 3 999 1 -1.8 93.075
## 148 59 739 2 999 1 -1.8 92.893
## 149 32 214 3 999 1 -1.8 92.893
## 150 34 7 6 999 1 -1.8 92.893
## 151 61 228 2 999 1 -1.8 93.876
## 152 60 781 4 999 2 -1.8 92.893
## 153 27 142 2 999 1 -1.8 92.893
## 154 41 288 3 999 2 -1.8 92.893
## 155 46 81 2 999 1 -1.8 93.075
## 156 48 377 5 999 1 -3.0 92.713
## 157 30 311 3 999 1 -0.1 93.200
## 158 34 211 2 999 1 -1.8 92.893
## 159 31 706 1 999 1 -1.8 93.075
## 160 43 249 2 999 1 -1.8 92.893
## 161 71 217 1 6 2 -2.9 92.201
## 162 48 456 1 999 1 -0.1 93.200
## 163 50 399 2 999 1 -1.8 93.075
## 164 39 346 1 999 1 -1.8 92.893
## 165 50 186 1 999 1 -0.1 93.200
## 166 47 16 8 6 2 -1.8 92.893
## 167 43 93 4 999 2 -1.8 92.893
## 168 43 288 3 999 1 -1.8 92.893
## 169 32 402 2 999 1 -1.8 92.893
## 170 43 372 1 999 1 -1.8 93.075
## 171 50 319 2 999 1 -0.1 93.200
## 172 23 77 1 999 1 -1.8 92.893
## 173 41 64 1 999 1 -1.8 92.893
## 174 36 141 1 999 2 -3.4 92.431
## 175 71 182 1 999 1 -3.0 92.713
## 176 36 183 1 999 1 -0.1 93.200
## 177 41 466 5 999 1 -1.8 93.075
## 178 38 126 1 7 4 -3.4 92.649
## 179 50 92 3 999 1 -3.4 92.379
## 180 34 106 1 999 1 -1.8 92.893
## 181 36 99 1 999 1 -0.1 93.200
## 182 80 411 1 999 1 -1.1 94.601
## 183 41 189 2 999 1 -1.8 92.893
## 184 62 68 1 999 1 -2.9 92.201
## 185 32 72 1 999 2 -1.8 92.893
## 186 46 318 2 999 1 -1.8 92.893
## 187 31 429 1 999 3 -1.8 93.876
## 188 36 566 2 999 1 -1.8 92.893
## 189 57 46 6 999 1 -1.8 92.893
## 190 50 381 1 999 1 -0.1 93.200
## 191 29 366 3 999 1 -0.1 93.200
## 192 40 307 4 999 2 -1.8 92.893
## 193 33 827 1 999 1 -1.8 93.075
## 194 31 310 2 999 1 -2.9 92.201
## 195 53 101 1 999 1 -1.8 92.893
## 196 40 308 1 999 1 -1.8 92.893
## 197 24 47 1 999 1 -1.8 92.893
## 198 27 99 2 999 1 -1.8 92.893
## 199 35 51 1 999 1 -0.1 93.200
## 200 36 133 1 999 2 -3.4 92.649
## 201 53 115 2 999 1 -0.1 93.200
## 202 49 404 6 999 1 -1.8 93.075
## 203 40 67 1 999 1 -0.1 93.200
## 204 33 153 1 999 1 -0.1 93.200
## 205 47 45 1 999 1 -0.1 93.200
## 206 38 1081 1 999 1 -0.1 93.200
## 207 34 140 2 999 1 -0.1 93.200
## 208 58 248 1 999 1 -1.8 92.893
## 209 52 327 2 999 1 -1.8 93.075
## 210 34 322 1 999 1 -1.8 92.893
## 211 32 772 2 999 1 -1.8 93.075
## 212 27 279 1 999 1 -1.8 92.893
## 213 25 136 1 999 1 -1.8 92.893
## 214 43 255 2 999 1 -1.8 92.893
## 215 30 232 2 999 1 -1.8 92.893
## 216 65 183 1 999 2 -1.7 94.215
## 217 48 83 1 999 1 -0.1 93.200
## 218 32 430 1 999 1 -2.9 92.963
## 219 34 12 1 999 1 -1.7 94.215
## 220 59 158 1 999 1 -1.8 92.893
## 221 34 70 1 999 1 -1.8 92.893
## 222 40 43 3 999 1 -1.8 93.075
## 223 39 124 1 999 1 -1.8 92.893
## 224 41 103 1 999 1 -1.8 92.893
## 225 22 194 2 999 3 -1.1 94.199
## 226 53 109 1 999 1 -1.8 93.369
## 227 51 396 4 999 1 -1.7 94.215
## 228 35 88 1 999 1 -2.9 92.201
## 229 39 177 1 999 1 -1.8 92.893
## 230 25 80 1 999 1 -1.8 92.893
## 231 44 65 1 999 1 -1.8 93.075
## 232 38 415 1 999 2 -3.0 92.713
## 233 29 57 1 999 1 -1.8 92.893
## 234 33 74 3 999 1 -1.8 92.893
## 235 36 225 2 999 1 -1.8 92.893
## 236 53 136 1 999 1 -1.8 92.893
## 237 36 220 1 999 1 -1.8 92.893
## 238 41 183 1 999 1 -1.8 93.075
## 239 43 153 1 999 2 -1.8 92.893
## 240 33 16 9 999 1 -1.8 92.893
## 241 33 961 2 999 1 -1.8 93.075
## 242 29 62 4 999 1 -1.8 92.893
## 243 48 201 3 999 1 -0.1 93.200
## 244 25 104 1 999 1 -1.8 93.075
## 245 61 263 1 999 1 -3.0 92.713
## 246 28 226 1 999 1 -1.8 92.893
## 247 33 100 1 999 1 -0.1 93.200
## 248 44 652 2 999 2 -1.8 92.893
## 249 21 173 11 9 2 -1.7 94.215
## 250 32 156 2 999 1 -1.1 94.199
## 251 30 166 1 999 1 -1.8 92.893
## 252 34 179 5 999 1 -3.4 92.649
## 253 41 297 1 999 1 -0.1 93.200
## 254 32 78 1 999 1 -1.8 92.893
## 255 34 350 2 999 1 -1.8 92.893
## 256 31 122 4 999 3 -3.4 92.649
## 257 50 77 4 999 1 -1.8 92.893
## 258 37 140 1 999 1 -0.1 93.200
## 259 62 215 2 999 1 -1.8 93.749
## 260 27 176 2 999 1 -1.8 92.893
## 261 37 284 1 999 1 -1.8 93.075
## 262 32 112 4 999 1 -2.9 92.963
## 263 30 1357 4 999 1 -1.8 92.893
## 264 34 344 1 999 2 -1.7 94.215
## 265 34 83 2 999 1 -0.1 93.200
## 266 34 185 2 999 1 -1.8 92.893
## 267 31 60 5 999 1 -1.8 92.893
## 268 59 66 1 999 1 -1.8 93.075
## 269 33 63 1 999 1 -1.8 92.893
## 270 24 65 1 999 2 -2.9 92.201
## 271 24 124 1 999 1 -2.9 92.963
## 272 26 136 3 999 1 -1.8 92.893
## 273 43 57 2 999 2 -1.8 92.893
## 274 67 201 1 999 1 -2.9 92.201
## 275 23 131 6 999 1 -1.8 93.075
## 276 30 332 2 13 2 -2.9 92.469
## 277 48 27 1 999 2 -1.8 93.075
## 278 61 196 1 999 1 -1.8 93.749
## 279 25 106 1 999 2 -1.8 92.893
## 280 39 45 1 999 1 -1.8 92.893
## 281 62 329 1 999 2 -1.1 94.767
## 282 29 538 2 999 2 -1.8 93.876
## 283 45 146 2 999 1 -1.8 93.876
## 284 50 100 1 999 1 -0.1 93.200
## 285 61 301 1 9 3 -3.4 92.649
## 286 56 1551 1 999 2 -3.4 92.379
## 287 29 170 1 999 1 -1.8 92.893
## 288 41 150 2 999 1 -1.8 92.893
## 289 42 216 1 999 1 -1.8 93.075
## 290 66 139 5 999 1 -1.8 93.075
## 291 37 175 1 999 1 -1.8 93.075
## 292 38 355 1 13 2 -1.8 93.369
## 293 42 86 1 999 1 -0.1 93.200
## 294 46 53 1 999 1 -1.8 93.075
## 295 45 905 1 999 1 -1.8 93.075
## 296 54 778 5 999 1 -1.8 92.893
## 297 45 257 2 999 1 -1.8 93.075
## 298 37 63 2 999 1 -0.1 93.200
## 299 35 95 1 999 1 -1.8 92.893
## 300 33 201 1 999 1 -1.8 92.893
## 301 46 11 5 999 2 -1.8 93.075
## 302 48 97 3 999 2 -1.8 92.893
## 303 54 169 1 999 1 -1.8 92.893
## 304 38 207 1 999 1 -1.8 92.893
## 305 56 62 2 999 1 -0.1 93.200
## 306 39 97 1 999 1 -1.8 92.893
## 307 71 250 2 999 2 -3.4 92.431
## 308 47 327 1 999 1 -1.8 92.893
## 309 36 55 1 999 1 -1.8 92.893
## 310 51 142 1 999 1 -1.8 92.893
## 311 29 125 1 999 1 -0.1 93.200
## 312 36 38 1 999 1 -0.1 93.200
## 313 39 256 1 999 1 -1.8 92.893
## 314 41 161 1 999 1 -1.8 93.075
## 315 35 381 1 999 1 -1.8 93.075
## 316 49 105 1 999 1 -1.8 92.893
## 317 22 484 1 999 2 -1.7 94.215
## 318 38 285 1 999 1 -1.8 93.075
## 319 40 128 1 999 1 -0.1 93.200
## 320 42 124 2 999 1 -1.8 92.893
## 321 57 22 4 999 1 -0.1 93.200
## 322 23 349 2 999 4 -1.1 94.199
## 323 30 171 1 999 1 -0.1 93.200
## 324 22 245 2 999 2 -1.8 92.893
## 325 49 86 1 999 1 -1.8 92.893
## 326 39 357 1 999 2 -1.8 92.893
## 327 37 92 1 999 1 -1.8 93.075
## 328 28 282 1 999 1 -1.8 92.893
## 329 33 85 2 999 1 -1.8 92.893
## 330 46 159 1 999 1 -1.8 92.893
## 331 39 209 2 999 1 -1.8 92.893
## 332 34 223 1 999 1 -0.1 93.200
## 333 41 288 1 999 2 -1.8 93.075
## 334 48 122 1 999 1 -1.8 92.893
## 335 44 414 1 999 1 -1.8 92.893
## 336 51 271 1 999 1 -0.1 93.200
## 337 24 590 1 999 1 -1.8 92.893
## 338 41 12 8 999 1 -1.8 92.893
## 339 41 120 4 999 1 -0.1 93.200
## 340 34 271 1 999 1 -1.8 92.893
## 341 38 1624 1 999 2 -1.8 93.075
## 342 52 877 2 999 1 -1.8 92.893
## 343 35 313 4 999 2 -2.9 92.201
## 344 31 200 1 999 1 -1.8 92.893
## 345 50 93 1 999 1 -0.1 93.200
## 346 61 106 2 999 1 -3.4 92.431
## 347 36 970 1 999 1 -1.8 93.075
## 348 52 89 2 999 1 -0.1 93.200
## 349 28 68 2 999 1 -1.8 92.893
## 350 33 340 1 999 1 -1.8 92.893
## 351 33 143 2 999 1 -0.1 93.200
## 352 31 82 2 999 1 -2.9 92.469
## 353 51 398 2 999 1 -1.8 92.893
## 354 40 136 3 999 1 -1.8 92.893
## 355 34 261 2 999 1 -1.8 92.893
## 356 49 136 2 999 1 -0.1 93.200
## 357 23 226 2 999 1 -1.1 94.601
## 358 28 444 2 999 1 -1.8 92.893
## 359 40 67 1 999 1 -0.1 93.200
## 360 37 116 4 999 1 -3.4 92.649
## 361 24 1594 1 999 1 -1.8 93.075
## 362 33 687 2 999 1 -1.8 92.893
## 363 48 25 4 999 1 -1.8 92.893
## 364 43 96 3 999 1 -2.9 92.469
## 365 43 167 2 999 1 -1.8 92.893
## 366 50 95 7 999 1 -2.9 92.963
## 367 34 310 2 999 2 -1.8 92.893
## 368 24 44 1 999 1 -2.9 92.201
## 369 41 145 1 999 1 -1.8 93.075
## 370 25 551 4 999 1 -2.9 92.963
## 371 48 86 2 999 1 -1.8 92.893
## 372 58 165 5 999 2 -1.8 92.893
## 373 42 62 1 999 1 -0.1 93.200
## 374 35 154 3 999 1 -1.8 92.893
## 375 33 273 1 999 1 -0.1 93.200
## 376 50 1285 2 999 1 -1.8 93.075
## 377 45 129 1 999 1 -2.9 92.963
## 378 36 232 1 999 1 -1.8 92.893
## 379 42 51 1 999 1 -1.8 92.893
## 380 28 87 4 999 1 -1.8 92.893
## 381 30 180 1 999 1 -0.1 93.200
## 382 44 104 4 999 1 -0.1 93.200
## 383 33 375 1 999 1 -0.1 93.200
## 384 42 81 4 999 1 -0.1 93.200
## 385 41 772 2 999 1 -1.8 92.893
## 386 36 267 1 999 1 -1.8 92.893
## 387 42 151 3 999 1 -0.1 93.200
## 388 33 755 3 999 1 -1.8 92.893
## 389 37 63 3 999 1 -1.8 92.893
## 390 30 389 2 999 1 -1.8 93.075
## 391 66 147 2 999 1 -2.9 92.201
## 392 40 317 1 999 1 -1.8 92.893
## 393 35 179 1 999 1 -1.1 94.199
## 394 59 58 1 999 1 -1.8 92.893
## 395 27 230 4 999 1 -1.8 92.893
## 396 39 222 1 999 1 -1.8 93.075
## 397 27 193 1 999 1 -1.8 93.075
## 398 41 412 1 999 1 -1.8 93.075
## 399 39 206 7 999 1 -1.1 94.199
## 400 36 125 2 999 1 -1.8 92.893
## 401 33 807 3 999 1 -1.8 92.893
## 402 56 457 1 999 1 -0.1 93.200
## 403 53 165 1 999 1 -1.8 93.075
## 404 49 188 1 999 1 -1.8 93.876
## 405 47 526 1 999 1 -2.9 92.201
## 406 33 99 1 999 2 -2.9 92.201
## 407 27 21 4 999 1 -1.8 93.075
## 408 46 193 1 999 1 -1.8 92.893
## 409 43 75 1 999 1 -0.1 93.200
## 410 34 93 2 999 1 -1.8 92.893
## 411 41 168 3 999 1 -1.8 93.075
## 412 36 215 1 999 1 -2.9 92.201
## 413 31 292 2 999 1 -1.8 93.369
## 414 44 18 3 999 1 -1.8 93.075
## 415 33 731 3 999 1 -1.8 92.893
## 416 36 138 2 999 1 -2.9 92.201
## 417 36 503 2 999 1 -1.8 92.893
## 418 38 155 2 999 1 -1.8 92.893
## 419 38 455 2 999 1 -1.8 92.893
## 420 23 104 1 999 2 -1.7 94.215
## 421 41 178 3 999 1 -1.8 92.893
## 422 76 122 4 999 1 -1.8 93.749
## 423 37 114 1 999 1 -0.1 93.200
## 424 47 306 3 999 1 -1.8 92.893
## 425 36 122 1 999 1 -1.8 93.075
## 426 60 198 3 999 1 -1.8 93.075
## 427 57 644 1 999 1 -1.8 92.893
## 428 24 45 4 999 1 -1.8 92.893
## 429 37 317 1 999 1 -1.8 92.893
## 430 18 600 2 999 3 -1.1 94.767
## 431 45 15 9 999 1 -1.8 92.893
## 432 33 398 2 999 1 -1.7 94.215
## 433 42 216 1 999 1 -1.8 93.075
## 434 30 138 1 999 1 -1.8 93.075
## 435 50 229 1 999 1 -3.0 92.713
## 436 33 23 3 999 1 -1.8 92.893
## 437 30 331 1 999 1 -1.8 93.075
## 438 40 580 1 999 1 -1.8 92.893
## 439 34 137 7 999 1 -1.8 92.893
## 440 28 477 2 999 1 -1.8 93.075
## 441 49 68 5 999 1 -1.8 93.075
## 442 33 165 1 999 1 -1.8 92.893
## 443 41 301 1 999 1 -1.8 93.075
## 444 33 15 1 999 2 -1.7 94.055
## 445 45 223 1 999 1 -1.8 92.893
## 446 27 176 1 999 1 -1.8 93.749
## 447 59 147 3 999 1 -1.8 93.075
## 448 55 133 1 999 1 -2.9 92.963
## 449 42 160 1 999 1 -1.8 92.893
## 450 36 246 1 999 1 -0.1 93.200
## 451 57 122 2 999 1 -3.4 92.379
## 452 35 234 1 999 1 -1.8 92.893
## 453 54 81 1 999 1 -1.8 92.893
## 454 47 391 1 999 1 -1.8 92.893
## 455 52 80 3 999 1 -2.9 92.963
## 456 34 340 2 999 1 -1.8 92.893
## 457 32 74 2 999 1 -0.1 93.200
## 458 45 62 2 999 1 -1.8 93.075
## 459 36 56 1 999 1 -1.8 92.893
## 460 51 131 2 999 4 -1.8 93.876
## 461 50 228 3 999 1 -1.8 93.075
## 462 34 181 1 999 1 -1.8 93.075
## 463 45 1579 1 999 1 -1.8 93.075
## 464 34 239 5 999 1 -1.8 92.893
## 465 35 317 2 999 1 -1.8 93.075
## 466 49 168 3 999 1 -1.8 92.893
## 467 37 171 2 999 1 -0.1 93.200
## 468 43 166 3 999 1 -0.1 93.200
## 469 80 411 1 999 1 -1.1 94.601
## 470 49 110 1 999 1 -0.1 93.200
## 471 31 84 1 999 1 -1.8 92.893
## 472 24 176 2 12 2 -1.7 94.055
## 473 42 304 1 999 1 -1.8 92.893
## 474 43 741 4 999 2 -1.1 94.767
## 475 45 109 2 999 1 -1.8 93.075
## 476 30 155 1 999 1 -1.8 92.893
## 477 29 207 2 999 1 -1.8 93.369
## 478 34 493 2 999 1 -0.1 93.200
## 479 37 304 7 999 1 -1.8 93.075
## 480 34 543 2 999 1 -1.8 93.075
## 481 28 119 4 999 1 -1.8 92.893
## 482 28 140 1 999 1 -2.9 92.201
## 483 52 513 13 14 2 -3.4 92.379
## 484 54 132 1 999 1 -1.8 92.893
## 485 49 362 1 999 1 -1.8 92.893
## 486 30 226 4 999 1 -1.8 92.893
## 487 37 43 1 999 1 -1.8 92.893
## 488 31 109 1 999 1 -2.9 92.201
## 489 47 57 2 999 1 -0.1 93.200
## 490 31 257 2 999 1 -1.8 93.075
## 491 49 378 1 999 1 -0.1 93.200
## 492 42 152 1 999 1 -1.8 92.893
## 493 32 242 3 999 1 -1.8 92.893
## 494 40 105 5 999 1 -0.1 93.200
## 495 47 506 2 999 2 -1.8 92.893
## 496 34 172 1 999 1 -1.8 92.893
## 497 33 410 1 999 1 -3.4 92.431
## 498 53 103 1 999 1 -3.4 92.379
## 499 40 80 1 999 1 -0.1 93.200
## 500 39 895 5 999 1 -1.8 92.893
## 501 34 10 7 999 1 -1.8 92.893
## 502 46 61 1 999 1 -0.1 93.200
## 503 46 90 2 999 1 -0.1 93.200
## 504 28 224 1 999 1 -1.8 93.075
## 505 29 340 2 999 1 -1.8 92.893
## 506 35 195 2 999 1 -1.8 92.893
## 507 79 464 1 999 1 -1.7 94.215
## 508 28 178 1 999 2 -1.7 94.215
## 509 32 92 2 999 1 -3.4 92.649
## 510 40 88 1 999 1 -1.8 92.893
## 511 55 164 1 999 1 -1.8 93.075
## 512 36 592 4 999 1 -1.8 93.075
## 513 27 400 5 999 1 -1.8 93.075
## 514 52 64 1 999 1 -0.1 93.200
## 515 42 486 1 999 1 -1.8 93.075
## 516 70 1962 1 999 2 -3.4 92.379
## 517 45 666 3 999 1 -1.8 93.075
## 518 34 234 1 999 1 -1.8 93.075
## 519 62 250 1 999 1 -2.9 92.201
## 520 39 1254 3 999 1 -1.8 92.893
## 521 34 80 1 999 1 -1.8 92.893
## 522 52 75 1 999 1 -0.1 93.200
## 523 55 247 1 999 1 -1.8 93.075
## 524 49 106 2 999 1 -0.1 93.200
## 525 58 304 2 999 1 -1.8 92.893
## 526 37 201 1 999 1 -0.1 93.200
## 527 46 187 3 999 1 -1.8 92.893
## 528 20 52 1 999 1 -1.7 94.055
## 529 38 654 2 999 1 -1.8 92.893
## 530 44 144 6 999 1 -0.1 93.200
## 531 43 408 1 999 1 -3.4 92.431
## 532 26 588 3 999 2 -1.7 94.215
## 533 41 100 2 999 1 -1.8 92.893
## 534 53 93 1 999 1 -1.8 93.369
## 535 34 157 3 999 1 -1.8 92.893
## 536 36 313 1 999 1 -1.8 93.075
## 537 49 179 1 999 1 -1.8 92.893
## 538 54 58 3 999 2 -1.8 93.075
## 539 46 268 1 999 1 -1.8 93.075
## 540 66 369 2 999 1 -1.1 94.601
## 541 33 168 1 999 1 -1.8 92.893
## 542 43 147 3 999 1 -1.8 93.075
## 543 27 512 1 20 4 -1.1 94.601
## 544 33 398 2 999 1 -1.7 94.215
## 545 37 171 1 999 1 -1.8 93.075
## 546 58 487 1 999 2 -3.4 92.649
## 547 55 189 2 999 1 -0.1 93.200
## 548 45 164 1 999 1 -0.1 93.200
## 549 44 151 1 999 1 -1.8 92.893
## 550 39 73 1 999 1 -1.8 93.075
## 551 31 126 2 999 1 -1.8 92.893
## 552 53 186 2 999 1 -1.8 92.893
## 553 48 1203 1 999 1 -1.8 92.893
## 554 27 291 1 999 3 -1.8 93.369
## 555 27 670 4 999 1 -1.8 92.893
## 556 33 121 2 999 1 -1.8 93.369
## 557 71 192 1 999 2 -1.7 94.027
## 558 27 356 2 999 1 -1.8 92.893
## 559 26 598 4 12 3 -1.7 94.055
## 560 44 104 1 999 1 -1.8 93.075
## 561 76 326 1 999 1 -1.7 94.055
## 562 30 147 3 999 1 -2.9 92.963
## 563 24 467 3 6 3 -1.1 94.767
## 564 52 81 2 999 1 -1.8 92.893
## 565 71 519 2 9 3 -1.7 94.215
## 566 75 543 9 999 1 -1.1 94.199
## 567 37 963 1 999 1 -0.1 93.200
## 568 24 200 1 6 4 -2.9 92.201
## 569 57 371 1 999 1 -1.8 92.893
## 570 31 174 2 999 1 -1.8 92.843
## 571 29 325 1 999 1 -1.8 92.893
## 572 34 406 1 999 1 -1.8 93.075
## 573 53 17 13 999 1 -1.8 92.893
## 574 33 132 2 999 1 -1.7 94.027
## 575 31 552 2 999 1 -1.8 92.893
## 576 23 60 1 999 1 -1.8 92.893
## 577 30 85 1 999 1 -0.1 93.200
## 578 35 349 1 999 3 -2.9 92.201
## 579 33 245 5 999 1 -1.8 92.893
## 580 49 110 6 999 3 -1.1 94.199
## 581 29 23 2 999 1 -0.1 93.200
## 582 38 69 1 999 1 -1.8 92.893
## 583 56 284 1 999 1 -1.8 93.075
## 584 19 192 1 999 1 -1.7 94.027
## 585 52 209 2 999 1 -3.4 92.649
## 586 29 206 1 999 1 -1.8 92.893
## 587 32 328 1 999 1 -2.9 92.201
## 588 43 60 1 999 1 -1.8 93.075
## 589 32 24 1 999 2 -1.8 93.075
## 590 38 515 1 999 1 -1.8 92.893
## 591 28 263 1 999 1 -1.8 92.893
## 592 41 316 1 999 1 -1.8 93.075
## 593 50 51 1 999 1 -1.8 92.893
## 594 32 144 2 999 1 -1.8 92.893
## 595 46 6 1 999 1 -1.8 92.893
## 596 47 242 1 999 1 -1.8 92.893
## 597 27 347 2 999 1 -1.8 92.893
## 598 41 466 5 999 1 -1.8 93.075
## 599 41 234 1 999 2 -1.8 92.893
## 600 30 82 2 999 1 -1.8 92.893
## 601 32 259 2 999 1 -1.8 93.075
## 602 26 215 1 999 1 -2.9 92.201
## 603 54 192 1 999 1 -1.8 92.893
## 604 45 460 2 999 1 -1.8 93.075
## 605 34 51 4 999 1 -2.9 92.469
## 606 43 105 1 999 1 -1.8 93.075
## 607 38 425 2 999 1 -0.1 93.200
## 608 50 183 1 999 1 -0.1 93.200
## 609 30 15 11 999 1 -1.8 92.893
## 610 36 96 2 999 1 -1.8 93.369
## 611 38 302 2 999 1 -1.8 93.075
## 612 36 565 1 999 1 -0.1 93.200
## 613 28 884 3 999 1 -1.8 92.893
## 614 42 178 5 999 1 -1.8 93.075
## 615 31 1010 2 999 1 -1.8 92.893
## 616 35 43 1 999 2 -1.8 93.876
## 617 61 106 2 999 1 -3.4 92.431
## 618 52 406 1 999 1 -3.0 92.713
## 619 33 496 2 999 1 -1.8 92.893
## 620 53 592 3 999 1 -2.9 92.963
## 621 39 741 4 999 1 -0.1 93.200
## 622 36 27 1 999 1 -1.8 92.893
## 623 35 523 1 999 1 -1.8 92.893
## 624 44 173 8 999 1 -1.8 92.893
## 625 35 152 2 999 1 -1.8 92.893
## 626 29 37 1 999 1 -2.9 92.963
## 627 38 61 2 999 2 -1.8 93.075
## 628 35 62 3 999 1 -3.0 92.713
## 629 52 191 2 999 1 -1.8 92.893
## 630 33 111 1 999 1 -0.1 93.200
## 631 29 161 1 999 1 -1.8 92.893
## 632 41 112 1 999 1 -1.8 93.075
## 633 31 704 1 999 1 -1.8 92.893
## 634 51 153 4 999 2 -1.8 92.893
## 635 36 1132 1 999 1 -0.1 93.200
## 636 34 53 2 999 1 -3.4 92.649
## 637 40 96 1 999 1 -1.8 92.893
## 638 34 154 3 999 1 -0.1 93.200
## 639 53 205 2 999 1 -1.8 92.893
## 640 43 246 1 999 1 -1.8 93.075
## 641 31 111 2 999 1 -0.1 93.200
## 642 38 86 1 999 1 -1.8 92.893
## 643 23 64 1 999 1 -1.8 92.893
## 644 26 707 1 999 1 -1.8 93.075
## 645 27 101 1 999 1 -1.8 92.893
## 646 37 124 1 999 1 -1.8 92.893
## 647 48 62 1 999 1 -1.8 92.893
## 648 29 134 2 999 1 -1.8 92.893
## 649 59 165 4 999 1 -1.8 92.893
## 650 45 204 2 999 1 -3.4 92.431
## 651 29 14 5 999 1 -1.8 92.893
## 652 53 196 2 999 1 -1.8 92.893
## 653 34 562 3 999 1 -1.8 93.369
## 654 58 237 4 999 2 -1.8 92.893
## 655 43 135 6 999 1 -1.8 92.893
## 656 50 204 2 999 1 -1.8 92.893
## 657 41 466 5 999 1 -1.8 93.075
## 658 63 131 4 999 2 -3.4 92.649
## 659 55 90 1 999 1 -1.8 92.893
## 660 33 101 2 999 3 -1.8 93.876
## 661 32 146 3 999 1 -1.8 92.893
## 662 31 241 1 999 1 -1.7 94.027
## 663 25 112 1 999 1 -2.9 92.469
## 664 28 83 2 999 3 -3.4 92.431
## 665 36 722 3 999 1 -0.1 93.200
## 666 51 83 1 6 2 -2.9 92.201
## 667 25 280 6 999 1 -2.9 92.963
## 668 35 163 2 999 1 -1.8 92.893
## 669 34 344 1 999 2 -1.7 94.215
## 670 53 146 2 999 1 -0.1 93.200
## 671 52 69 1 999 1 -1.8 92.893
## 672 27 64 3 999 1 -1.8 92.893
## 673 64 421 1 999 1 -3.0 92.713
## 674 34 155 1 999 1 -0.1 93.200
## 675 45 374 1 999 1 -1.8 93.876
## 676 48 78 1 999 1 -1.8 92.893
## 677 36 291 4 999 1 -1.8 93.075
## 678 42 262 1 999 1 -1.1 94.767
## 679 59 112 4 999 1 -3.0 92.713
## 680 35 176 1 999 2 -1.7 94.027
## 681 33 255 2 999 1 -1.8 92.893
## 682 29 178 2 15 2 -1.7 94.215
## 683 45 119 2 999 1 -1.8 93.075
## 684 31 40 1 999 1 -1.8 92.893
## 685 29 85 2 999 1 -1.8 92.893
## 686 21 68 1 999 1 -1.8 92.893
## 687 34 360 1 999 1 -1.8 93.369
## 688 33 54 2 999 1 -1.8 92.893
## 689 25 795 6 999 1 -1.8 92.893
## 690 37 74 1 999 1 -0.1 93.200
## 691 38 470 1 6 2 -2.9 92.201
## 692 21 513 3 999 1 -1.8 92.893
## 693 25 78 1 999 1 -2.9 92.201
## 694 59 232 2 999 1 -1.8 92.893
## 695 31 82 1 999 1 -0.1 93.200
## 696 59 190 2 999 1 -1.8 92.893
## 697 61 109 3 999 1 -1.7 94.215
## 698 36 46 2 999 1 -0.1 93.200
## 699 35 500 2 999 1 -1.8 92.893
## 700 58 214 4 999 2 -1.7 94.215
## 701 36 122 1 999 1 -2.9 92.469
## 702 46 504 1 999 1 -0.1 93.200
## 703 29 138 2 999 1 -1.8 92.893
## 704 45 170 1 999 1 -1.8 93.075
## 705 33 18 6 999 1 -1.8 92.893
## 706 31 33 1 999 1 -1.8 92.893
## 707 31 238 1 999 1 -1.8 92.893
## 708 63 137 1 999 1 -3.0 92.713
## 709 42 355 1 999 1 -3.4 92.431
## 710 25 566 1 999 1 -1.8 92.893
## 711 39 95 1 999 1 -1.8 92.893
## 712 35 191 2 999 1 -0.1 93.200
## 713 37 171 1 999 2 -1.8 92.893
## 714 24 290 1 999 1 -1.8 92.893
## 715 31 322 1 999 1 -1.8 92.893
## 716 37 270 2 999 1 -1.8 93.075
## 717 30 29 8 999 1 -1.8 92.893
## 718 36 90 1 999 1 -1.8 93.075
## 719 38 180 2 999 1 -0.1 93.200
## 720 44 147 3 999 1 -1.8 92.893
## 721 57 82 1 999 1 -1.8 93.075
## 722 31 224 1 9 2 -1.7 94.027
## 723 48 10 4 999 1 -1.8 92.893
## 724 30 68 1 999 1 -1.8 92.893
## 725 33 78 5 999 1 -1.8 92.893
## 726 36 215 1 999 1 -2.9 92.201
## 727 56 169 1 999 1 -1.8 92.893
## 728 60 700 3 999 1 -1.7 94.055
## 729 44 201 2 999 1 -1.8 93.876
## 730 35 29 3 999 1 -1.8 93.075
## 731 26 297 1 999 1 -1.8 93.075
## 732 46 48 1 999 1 -0.1 93.200
## 733 41 381 1 999 1 -1.8 92.893
## 734 38 253 1 999 1 -0.1 93.200
## 735 32 216 2 999 1 -1.8 92.893
## 736 24 173 1 999 3 -1.8 93.876
## 737 66 82 3 999 3 -2.9 92.201
## 738 39 106 4 16 2 -3.4 92.379
## 739 34 207 1 999 1 -1.8 92.893
## 740 35 28 3 999 1 -0.1 93.200
## 741 37 63 2 999 2 -1.8 93.075
## 742 35 370 1 999 1 -0.1 93.200
## 743 38 25 5 999 1 -1.8 92.893
## 744 30 282 2 999 1 -0.1 93.200
## 745 36 294 1 999 1 -1.8 93.075
## 746 34 93 1 999 1 -3.4 92.649
## 747 59 13 6 999 1 -1.8 92.893
## 748 33 503 3 999 1 -1.8 92.893
## 749 38 78 1 999 1 -1.8 92.893
## 750 42 163 1 999 1 -1.8 92.893
## 751 35 83 2 999 1 -1.8 92.893
## 752 57 113 2 999 1 -1.8 93.075
## 753 32 61 2 999 1 -0.1 93.200
## 754 44 170 2 999 1 -0.1 93.200
## 755 25 238 6 999 2 -1.8 92.893
## 756 60 579 2 999 1 -1.8 93.075
## 757 55 140 3 999 1 -1.8 93.075
## 758 39 305 1 999 1 -1.8 92.893
## 759 37 598 1 999 1 -1.8 93.075
## 760 33 167 6 999 1 -1.8 92.893
## 761 53 414 2 999 1 -1.8 93.075
## 762 33 410 1 999 1 -3.4 92.431
## 763 53 358 1 999 1 -1.8 92.893
## 764 49 35 1 999 1 -0.1 93.200
## 765 34 44 2 999 1 -1.8 92.893
## 766 53 242 3 999 1 -0.1 93.200
## 767 49 47 1 999 1 -0.1 93.200
## 768 27 167 2 999 1 -1.8 92.893
## 769 25 844 5 999 2 -1.7 94.215
## 770 31 171 2 999 1 -0.1 93.200
## 771 34 239 1 999 1 -1.8 92.893
## 772 34 40 1 999 1 -1.8 92.893
## 773 59 268 1 999 1 -3.4 92.431
## 774 30 89 2 999 1 -0.1 93.200
## 775 36 127 1 999 2 -1.1 94.199
## 776 30 197 5 999 1 -0.1 93.200
## 777 36 163 1 999 1 -1.8 93.075
## 778 57 873 1 999 1 -1.8 92.893
## 779 33 167 3 999 1 -1.8 92.893
## 780 37 195 2 999 1 -1.8 92.893
## 781 44 75 2 999 1 -0.1 93.200
## 782 29 79 2 999 1 -1.8 92.893
## 783 29 332 2 999 1 -1.8 92.893
## 784 36 105 1 999 1 -1.8 92.893
## 785 45 204 2 999 1 -3.4 92.431
## 786 37 185 1 999 1 -1.8 92.893
## 787 23 314 1 999 1 -1.8 93.075
## 788 25 11 7 999 1 -1.8 92.893
## 789 51 295 1 999 1 -1.8 92.893
## 790 47 469 2 999 1 -1.8 92.893
## 791 40 103 2 999 1 -1.8 92.893
## 792 34 180 1 999 2 -1.1 94.767
## 793 51 302 1 999 1 -1.8 92.893
## 794 33 87 1 999 1 -1.8 92.893
## 795 27 97 1 999 1 -1.8 92.893
## 796 60 272 1 10 3 -1.1 94.601
## 797 29 747 2 999 1 -1.8 92.893
## 798 27 266 2 999 1 -1.7 94.055
## 799 35 209 1 999 2 -3.4 92.649
## 800 30 196 1 17 2 -1.1 94.601
## 801 40 883 1 999 1 -2.9 92.963
## 802 26 62 1 999 1 -1.8 92.893
## 803 33 246 9 999 2 -1.1 94.199
## 804 22 194 2 999 3 -1.1 94.199
## 805 31 242 2 999 2 -1.8 92.893
## 806 40 140 2 999 2 -1.8 93.075
## 807 26 410 3 999 1 -1.8 92.893
## 808 77 155 1 999 1 -1.8 93.075
## 809 33 53 1 999 1 -2.9 92.963
## 810 60 99 1 999 1 -1.8 92.893
## 811 31 45 1 999 1 -0.1 93.200
## 812 39 72 1 999 1 -1.8 93.075
## 813 38 278 2 999 1 -1.8 93.075
## 814 49 115 1 999 1 -1.8 92.893
## 815 36 267 1 999 1 -1.8 92.893
## 816 29 87 6 999 1 -1.8 92.893
## 817 33 496 2 999 1 -1.8 92.893
## 818 58 184 1 999 1 -1.8 92.893
## 819 43 42 2 999 1 -0.1 93.200
## 820 46 275 1 999 1 -1.8 92.893
## 821 81 621 1 999 2 -1.1 94.601
## 822 46 151 3 999 1 -2.9 92.201
## 823 56 154 1 999 1 -1.8 92.893
## 824 29 278 2 999 1 -1.8 92.893
## 825 48 146 2 999 2 -1.8 92.893
## 826 34 415 4 999 1 -1.8 92.893
## 827 40 269 1 999 1 -2.9 92.963
## 828 31 596 1 999 1 -1.8 93.075
## 829 38 48 4 999 1 -1.8 92.893
## 830 55 526 4 999 1 -1.8 92.893
## 831 48 219 1 999 1 -0.1 93.200
## 832 34 725 2 8 2 -3.4 92.649
## 833 29 431 2 999 2 -2.9 92.963
## 834 51 84 1 999 1 -1.8 93.075
## 835 47 62 2 999 1 -0.1 93.200
## 836 54 84 5 999 2 -1.7 94.215
## 837 74 188 2 999 1 -2.9 92.201
## 838 53 583 2 999 1 -1.8 93.075
## 839 54 154 1 999 1 -2.9 92.469
## 840 39 195 5 999 1 -1.8 92.893
## 841 44 271 2 999 1 -1.8 93.075
## 842 36 62 2 999 1 -1.8 92.893
## 843 57 93 1 999 1 -1.8 92.893
## 844 29 538 2 999 2 -1.8 93.876
## 845 42 120 2 999 1 -1.8 92.893
## 846 74 204 3 999 1 -2.9 92.201
## 847 34 70 1 999 1 -1.8 93.075
## 848 25 173 6 999 1 -1.8 92.893
## 849 34 56 1 999 1 -1.8 92.893
## 850 41 434 3 999 1 -1.8 92.893
## 851 79 61 1 999 1 -2.9 92.963
## 852 30 647 2 999 1 -1.8 93.075
## 853 32 79 1 999 1 -1.8 92.893
## 854 29 895 1 999 1 -0.1 93.200
## 855 28 225 1 999 2 -2.9 92.201
## 856 41 66 1 999 1 -1.8 92.893
## 857 59 542 3 999 1 -1.8 93.075
## 858 30 75 1 999 1 -3.4 92.379
## 859 26 112 1 999 1 -3.4 92.649
## 860 35 143 1 999 1 -1.8 92.893
## 861 34 115 2 999 1 -2.9 92.201
## 862 45 221 2 999 1 -0.1 93.200
## 863 40 45 4 999 1 -1.8 93.075
## 864 50 99 1 999 1 -1.8 93.075
## 865 47 57 1 9 2 -1.8 92.893
## 866 39 281 2 999 1 -0.1 93.200
## 867 34 250 1 10 2 -1.7 94.027
## 868 51 159 1 999 1 -1.8 92.893
## 869 39 135 2 999 2 -1.1 94.601
## 870 40 124 4 999 1 -0.1 93.200
## 871 36 1132 1 999 1 -0.1 93.200
## 872 42 590 2 999 1 -1.8 93.075
## 873 35 253 1 999 1 -1.8 93.075
## 874 43 1529 1 999 1 -2.9 92.201
## 875 48 99 1 999 1 -1.8 92.893
## 876 37 445 1 999 2 -1.8 93.075
## 877 38 332 2 999 1 -1.8 93.075
## 878 30 258 2 999 1 -0.1 93.200
## 879 35 339 4 999 1 -1.8 92.893
## 880 29 104 1 999 1 -0.1 93.200
## 881 40 181 1 999 1 -0.1 93.200
## 882 39 53 3 999 1 -1.8 92.893
## 883 55 182 1 999 1 -0.1 93.200
## 884 32 133 2 999 1 -1.8 92.893
## 885 64 89 1 999 1 -2.9 92.201
## 886 45 204 2 999 1 -3.4 92.431
## 887 29 58 1 999 1 -0.1 93.200
## 888 72 128 2 999 1 -1.7 94.215
## 889 41 380 4 999 1 -1.8 92.893
## 890 29 402 1 999 1 -0.1 93.200
## 891 35 282 1 999 1 -1.8 92.893
## 892 31 318 3 999 1 -1.8 92.893
## 893 37 395 1 999 1 -1.8 92.893
## 894 52 164 1 999 1 -1.1 94.767
## 895 29 401 1 999 1 -1.8 92.893
## 896 33 45 2 999 1 -0.1 93.200
## 897 60 700 3 999 1 -1.7 94.055
## 898 32 757 1 999 1 -1.8 92.893
## 899 53 583 2 999 1 -1.8 93.075
## 900 38 357 2 999 1 -1.8 93.075
## 901 43 121 2 999 1 -1.8 92.893
## 902 34 543 1 999 1 -2.9 92.201
## 903 34 144 3 999 1 -1.8 92.893
## 904 37 159 2 999 1 -1.8 92.893
## 905 46 89 3 999 1 -1.8 93.075
## 906 26 707 1 999 1 -1.8 93.075
## 907 28 76 2 999 1 -1.8 92.893
## 908 48 17 5 999 1 -1.8 92.893
## 909 42 124 1 999 1 -0.1 93.200
## 910 56 175 1 999 1 -1.8 93.369
## 911 27 139 6 999 1 -1.8 93.369
## 912 47 234 1 999 1 -1.8 93.075
## 913 32 67 1 999 1 -0.1 93.200
## 914 34 304 1 999 1 -1.8 92.893
## 915 54 127 1 999 1 -0.1 93.200
## 916 28 182 2 999 1 -1.8 92.893
## 917 54 158 1 999 1 -0.1 93.200
## 918 40 158 2 999 1 -1.8 93.075
## 919 51 181 2 999 1 -1.1 94.601
## 920 40 377 3 999 1 -1.8 93.075
## 921 66 369 2 999 1 -1.1 94.601
## 922 35 285 2 999 1 -1.8 92.893
## 923 25 682 3 999 1 -1.8 92.893
## 924 54 72 2 999 1 -2.9 92.469
## 925 43 997 1 999 1 -1.8 93.075
## 926 33 281 1 999 1 -1.8 92.893
## 927 36 157 2 999 1 -1.8 92.893
## 928 30 586 1 999 1 -1.8 92.893
## 929 64 130 1 999 1 -3.4 92.431
## 930 32 295 1 999 1 -0.1 93.200
## 931 26 707 1 999 1 -1.8 93.075
## 932 38 515 1 999 1 -1.8 92.893
## 933 26 54 1 999 1 -1.8 92.893
## 934 33 49 2 999 1 -1.8 92.893
## 935 62 517 2 999 1 -2.9 92.201
## 936 33 110 1 999 1 -1.8 92.893
## 937 35 185 3 999 1 -1.8 93.075
## 938 34 109 3 999 1 -1.1 94.199
## 939 54 397 1 999 1 -1.8 92.893
## 940 39 163 2 999 1 -0.1 93.200
## 941 33 266 2 999 1 -1.8 92.893
## 942 79 260 1 999 1 -1.8 93.876
## 943 36 180 2 999 2 -1.8 92.893
## 944 32 149 1 999 1 -1.8 92.893
## 945 22 699 2 999 1 -1.8 93.749
## 946 30 213 2 999 1 -1.8 92.893
## 947 27 775 2 8 2 -3.4 92.649
## 948 38 72 1 999 1 -1.8 93.075
## 949 30 59 2 999 1 -0.1 93.200
## 950 34 259 2 999 2 -1.8 93.075
## 951 50 129 1 999 1 -0.1 93.200
## 952 40 18 5 999 1 -1.8 92.893
## 953 39 739 2 999 1 -1.8 92.893
## 954 43 18 5 999 1 -1.8 93.075
## 955 31 472 1 999 1 -1.8 92.893
## 956 30 197 1 999 1 -1.8 92.893
## 957 28 73 1 999 1 -2.9 92.963
## 958 46 270 2 999 1 -1.8 93.075
## 959 28 254 2 999 1 -1.8 93.075
## 960 39 166 3 999 1 -1.8 92.893
## 961 45 133 3 999 1 -3.4 92.649
## 962 37 71 1 999 1 -1.8 92.893
## 963 28 157 2 999 1 -1.8 93.369
## 964 46 163 2 999 1 -0.1 93.200
## 965 28 99 4 999 1 -1.8 92.893
## 966 42 324 7 999 1 -0.1 93.200
## 967 34 250 1 10 2 -1.7 94.027
## 968 32 49 2 999 1 -2.9 92.963
## 969 61 228 2 999 1 -1.8 93.876
## 970 46 173 1 999 1 -1.1 94.767
## 971 30 102 1 999 1 -3.4 92.431
## 972 32 1233 1 999 1 -3.4 92.649
## 973 29 135 3 999 1 -1.8 92.893
## 974 32 363 1 999 1 -1.8 92.893
## 975 32 485 1 999 1 -0.1 93.200
## 976 21 145 1 999 1 -1.1 94.199
## 977 31 165 3 999 1 -1.8 92.893
## 978 51 526 2 999 1 -1.8 93.075
## 979 36 82 2 999 1 -0.1 93.200
## 980 70 91 1 999 1 -1.8 92.843
## 981 33 100 1 999 1 -0.1 93.200
## 982 43 184 1 999 2 -1.8 92.893
## 983 35 214 1 999 1 -1.8 93.075
## 984 24 147 1 999 1 -2.9 92.201
## 985 42 243 1 999 1 -1.8 93.075
## 986 38 110 1 999 1 -0.1 93.200
## 987 27 90 4 999 1 -1.8 92.893
## 988 46 98 2 999 1 -1.8 92.893
## 989 53 141 2 999 1 -1.7 94.027
## 990 42 157 1 999 1 -1.8 93.075
## 991 40 253 1 999 1 -1.8 92.893
## 992 34 121 2 999 1 -3.4 92.649
## 993 38 855 2 999 1 -1.8 92.893
## 994 25 959 3 999 1 -1.8 92.893
## 995 29 126 2 999 1 -1.8 92.893
## 996 70 422 3 999 1 -1.8 92.843
## 997 27 58 3 999 1 -1.8 92.893
## 998 55 336 1 999 1 -1.8 92.893
## 999 34 151 1 999 1 -2.9 92.963
## 1000 36 349 1 999 1 -1.8 92.893
## 1001 53 63 2 999 1 -1.8 92.893
## 1002 38 515 1 999 1 -1.8 92.893
## 1003 31 404 3 11 2 -2.9 92.963
## 1004 50 460 1 15 2 -2.9 92.201
## 1005 29 567 3 999 1 -1.8 92.893
## 1006 38 82 1 999 1 -3.4 92.431
## 1007 57 224 2 999 1 -0.1 93.200
## 1008 35 66 1 999 1 -1.8 93.075
## 1009 36 285 1 999 1 -1.8 92.893
## 1010 21 280 1 7 2 -3.4 92.649
## 1011 38 95 3 999 1 -1.8 93.075
## 1012 41 191 4 999 1 -1.8 93.075
## 1013 28 192 1 999 1 -1.8 92.893
## 1014 24 136 1 999 2 -2.9 92.201
## 1015 28 454 6 999 1 -3.0 92.713
## 1016 71 214 1 999 1 -1.8 93.075
## 1017 34 11 6 999 1 -1.8 92.893
## 1018 45 239 2 999 1 -0.1 93.200
## 1019 40 243 2 999 1 -0.1 93.200
## 1020 39 187 1 999 1 -1.8 93.075
## 1021 35 25 6 999 1 -1.8 92.893
## 1022 41 223 4 999 1 -1.8 92.893
## 1023 33 116 2 999 1 -1.8 92.893
## 1024 50 177 2 999 1 -1.8 93.075
## 1025 27 459 1 999 1 -2.9 92.963
## 1026 40 222 2 999 1 -1.8 92.893
## 1027 37 304 1 999 1 -1.8 93.075
## 1028 33 109 1 999 2 -1.7 94.027
## 1029 35 66 1 999 1 -1.8 92.893
## 1030 45 106 1 999 1 -3.4 92.649
## 1031 54 57 2 999 1 -1.8 92.893
## 1032 58 70 1 999 1 -0.1 93.200
## 1033 31 122 1 999 1 -1.8 92.893
## 1034 58 308 1 999 1 -0.1 93.200
## 1035 29 245 6 999 1 -1.8 92.893
## 1036 55 371 3 999 2 -1.8 93.075
## 1037 27 173 2 6 2 -3.4 92.379
## 1038 36 108 6 999 1 -1.8 93.075
## 1039 43 114 1 999 1 -1.8 92.893
## 1040 29 88 1 999 2 -1.7 94.215
## 1041 30 131 3 999 1 -0.1 93.200
## 1042 37 255 6 999 1 -1.8 92.893
## 1043 19 220 1 999 1 -1.8 93.876
## 1044 31 180 3 999 2 -1.8 92.893
## 1045 36 592 4 999 1 -1.8 93.075
## 1046 29 87 2 999 1 -3.4 92.431
## 1047 65 207 3 999 1 -3.0 92.713
## 1048 36 54 1 999 2 -1.8 92.893
## 1049 48 103 1 999 1 -0.1 93.200
## 1050 38 1361 1 999 1 -2.9 92.963
## 1051 45 55 6 999 1 -3.4 92.379
## 1052 35 745 1 999 1 -1.8 92.893
## 1053 38 134 1 999 1 -1.8 92.893
## 1054 40 110 1 999 1 -0.1 93.200
## 1055 38 611 1 999 1 -1.8 93.075
## 1056 32 1145 1 999 1 -1.8 92.893
## 1057 45 44 1 999 1 -1.8 92.893
## 1058 25 90 1 999 2 -2.9 92.201
## 1059 24 133 2 999 1 -1.1 94.601
## 1060 35 98 2 7 2 -3.4 92.649
## 1061 39 130 1 999 1 -0.1 93.200
## 1062 58 266 1 999 1 -1.8 93.075
## 1063 85 462 1 999 1 -1.8 93.749
## 1064 36 414 2 999 1 -1.8 92.893
## 1065 34 162 1 999 1 -1.8 92.893
## 1066 66 63 1 999 1 -1.8 93.075
## 1067 39 110 3 999 1 -3.0 92.713
## 1068 51 55 1 999 1 -1.8 92.893
## 1069 31 149 1 999 1 -0.1 93.200
## 1070 59 340 1 999 1 -2.9 92.963
## 1071 40 88 2 999 2 -3.4 92.649
## 1072 66 881 3 999 1 -1.8 93.369
## 1073 42 15 5 999 1 -1.8 92.893
## 1074 35 90 1 999 1 -1.8 92.893
## 1075 43 386 3 999 1 -1.7 94.215
## 1076 35 112 1 999 1 -1.8 92.893
## 1077 56 125 2 999 1 -1.8 92.893
## 1078 54 402 1 999 1 -1.8 93.075
## 1079 34 36 1 999 1 -1.8 92.893
## 1080 33 224 2 999 1 -1.1 94.199
## 1081 40 51 1 999 1 -0.1 93.200
## 1082 33 147 1 999 1 -1.8 92.893
## 1083 35 88 1 999 1 -1.8 92.893
## 1084 22 84 1 999 1 -1.8 93.369
## 1085 55 895 2 999 1 -1.8 92.893
## 1086 30 111 2 999 1 -2.9 92.963
## 1087 44 120 2 999 1 -0.1 93.200
## 1088 29 153 1 999 1 -0.1 93.200
## 1089 48 576 1 999 1 -1.8 93.075
## 1090 22 163 4 999 1 -2.9 92.963
## 1091 38 106 1 999 1 -2.9 92.201
## 1092 32 205 2 999 1 -1.8 93.075
## 1093 30 252 1 999 1 -1.8 92.893
## 1094 31 104 1 999 1 -1.8 93.075
## 1095 30 370 2 999 1 -1.7 94.027
## 1096 31 243 2 999 1 -1.8 93.876
## 1097 50 161 1 999 1 -0.1 93.200
## 1098 27 113 2 999 2 -1.7 94.215
## 1099 45 184 2 999 1 -1.8 93.075
## 1100 32 6 6 999 1 -1.8 93.075
## 1101 33 83 3 999 1 -0.1 93.200
## 1102 24 748 6 999 1 -1.8 92.893
## 1103 47 208 4 999 1 -1.8 92.893
## 1104 50 258 1 999 1 -3.4 92.431
## 1105 36 156 1 999 1 -2.9 92.963
## 1106 28 111 1 999 1 -1.8 92.893
## 1107 42 355 1 999 1 -3.4 92.431
## 1108 24 65 3 999 1 -2.9 92.963
## 1109 33 377 1 999 1 -1.8 92.893
## 1110 35 446 1 999 1 -1.8 92.893
## 1111 24 151 7 999 1 -2.9 92.963
## 1112 32 542 3 999 1 -1.8 92.893
## 1113 30 167 1 999 1 -0.1 93.200
## 1114 32 103 1 999 1 -2.9 92.963
## 1115 64 146 1 999 1 -2.9 92.201
## 1116 58 142 2 999 1 -0.1 93.200
## 1117 50 202 1 999 1 -0.1 93.200
## 1118 24 125 2 999 1 -1.8 93.749
## 1119 50 340 2 999 1 -0.1 93.200
## 1120 32 78 1 999 1 -0.1 93.200
## 1121 35 137 1 999 1 -1.8 93.075
## 1122 51 31 1 999 1 -1.8 92.893
## 1123 38 515 1 999 1 -1.8 92.893
## 1124 37 489 1 999 1 -1.8 93.876
## 1125 46 171 1 999 1 -0.1 93.200
## 1126 32 137 2 999 1 -1.8 92.893
## 1127 36 191 2 999 1 -1.8 92.893
## 1128 41 181 1 999 1 -1.8 92.893
## 1129 54 94 3 999 1 -1.8 93.075
## 1130 41 18 4 999 1 -1.8 92.893
## 1131 33 71 1 999 1 -1.8 93.075
## 1132 26 140 9 999 1 -1.8 92.893
## 1133 26 96 1 999 1 -2.9 92.963
## 1134 42 458 3 9 2 -1.8 92.893
## 1135 31 138 4 999 1 -1.8 92.893
## 1136 39 31 2 999 1 -1.8 92.893
## 1137 59 140 2 999 1 -0.1 93.200
## 1138 53 350 5 999 1 -1.8 92.893
## 1139 39 552 3 999 1 -0.1 93.200
## 1140 47 245 1 999 1 -1.8 93.075
## 1141 76 336 1 999 1 -3.4 92.379
## 1142 32 240 1 999 1 -1.8 92.893
## 1143 43 661 4 999 1 -0.1 93.200
## 1144 34 49 1 999 1 -1.8 92.893
## 1145 54 1745 3 999 1 -3.4 92.431
## 1146 25 595 3 999 1 -2.9 92.963
## 1147 25 108 3 999 1 -1.8 93.075
## 1148 64 171 3 999 1 -2.9 92.201
## 1149 59 193 1 999 1 -3.0 92.713
## 1150 41 155 4 999 1 -1.8 92.893
## 1151 35 91 1 999 1 -0.1 93.200
## 1152 48 715 1 999 1 -1.8 93.075
## 1153 33 333 1 999 1 -1.8 92.893
## 1154 23 720 1 999 1 -1.8 92.893
## 1155 58 49 1 999 2 -3.4 92.431
## 1156 38 218 1 999 1 -1.8 92.893
## 1157 49 163 1 999 1 -0.1 93.200
## 1158 42 334 1 999 1 -1.8 92.893
## 1159 32 352 2 999 2 -2.9 92.201
## 1160 37 170 1 999 2 -1.8 92.893
## 1161 58 292 6 999 1 -2.9 92.469
## 1162 34 303 1 999 1 -0.1 93.200
## 1163 35 178 1 999 1 -0.1 93.200
## 1164 21 220 7 999 1 -1.7 94.215
## 1165 31 289 3 999 1 -1.8 93.075
## 1166 36 36 2 999 1 -1.8 93.075
## 1167 57 429 4 999 1 -1.8 92.893
## 1168 45 1405 1 6 2 -1.1 94.199
## 1169 35 200 4 999 1 -1.8 92.893
## 1170 33 40 6 999 1 -1.8 92.893
## 1171 32 18 8 999 1 -1.8 92.893
## 1172 35 209 1 999 2 -3.4 92.649
## 1173 38 262 2 999 1 -2.9 92.963
## 1174 43 623 2 999 2 -1.8 93.075
## 1175 65 197 2 999 1 -2.9 92.201
## 1176 44 239 1 999 2 -1.8 93.075
## 1177 31 1156 1 999 1 -1.8 93.075
## 1178 40 121 1 999 1 -2.9 92.201
## 1179 29 69 1 999 1 -2.9 92.201
## 1180 28 296 1 999 1 -1.8 92.893
## 1181 27 227 1 999 1 -1.8 93.075
## 1182 29 155 1 999 1 -2.9 92.963
## 1183 40 217 1 999 1 -1.8 92.893
## 1184 24 220 1 999 1 -1.8 92.893
## 1185 33 135 1 999 1 -1.8 93.075
## 1186 33 253 3 999 2 -1.8 93.075
## 1187 52 204 1 999 1 -1.8 93.075
## 1188 27 224 2 999 1 -1.8 92.893
## 1189 40 324 1 999 1 -1.8 93.075
## 1190 34 162 2 999 2 -1.1 94.767
## 1191 30 165 1 999 1 -1.8 93.876
## 1192 34 247 1 999 1 -1.8 92.893
## 1193 73 127 2 999 3 -3.4 92.431
## 1194 39 365 6 999 1 -1.8 92.893
## 1195 36 951 3 999 1 -1.8 92.893
## 1196 46 1166 3 999 1 -1.1 94.767
## 1197 28 154 2 999 1 -1.8 92.893
## 1198 45 78 1 999 1 -1.8 92.893
## 1199 54 87 1 999 1 -1.8 92.893
## 1200 32 206 1 999 1 -1.7 94.215
## 1201 49 165 1 999 1 -3.4 92.431
## 1202 29 443 7 999 1 -1.8 92.893
## 1203 29 328 4 999 1 -0.1 93.200
## 1204 36 59 1 999 1 -0.1 93.200
## 1205 40 176 1 999 1 -1.8 93.075
## 1206 36 339 1 999 1 -3.4 92.379
## 1207 44 308 1 999 1 -1.8 93.075
## 1208 53 202 3 999 1 -1.8 92.893
## 1209 32 266 1 999 1 -0.1 93.200
## 1210 31 126 2 999 2 -1.8 93.075
## 1211 51 130 2 999 2 -1.1 94.601
## 1212 31 183 1 999 1 -1.8 92.893
## 1213 65 207 3 999 1 -3.0 92.713
## 1214 38 62 3 999 1 -0.1 93.200
## 1215 30 195 1 999 1 -0.1 93.200
## 1216 52 115 1 999 1 -0.1 93.200
## 1217 46 428 2 999 3 -1.7 94.027
## 1218 33 78 2 999 1 -1.8 93.369
## 1219 26 76 2 999 1 -1.8 92.893
## 1220 37 26 1 999 1 -1.8 92.893
## 1221 46 609 1 999 1 -1.8 93.075
## 1222 29 118 1 999 1 -1.8 92.893
## 1223 40 401 1 999 1 -0.1 93.200
## 1224 34 541 3 999 1 -1.8 92.893
## 1225 39 74 1 999 1 -0.1 93.200
## 1226 48 228 1 999 1 -1.8 93.075
## 1227 37 148 1 999 2 -2.9 92.201
## 1228 28 453 1 999 1 -1.7 94.027
## 1229 49 364 1 999 1 -1.8 92.893
## 1230 30 88 1 999 1 -0.1 93.200
## 1231 33 275 1 999 1 -1.8 92.893
## 1232 36 1095 1 999 1 -1.8 93.075
## 1233 26 598 4 12 3 -1.7 94.055
## 1234 24 191 2 999 3 -1.1 94.199
## 1235 34 248 1 999 1 -1.8 92.893
## 1236 32 38 7 999 1 -1.8 92.893
## 1237 35 148 1 999 1 -1.8 92.893
## 1238 52 157 1 999 1 -1.8 93.075
## 1239 25 682 3 999 1 -1.8 92.893
## 1240 55 114 1 999 1 -1.8 92.893
## 1241 41 491 1 999 2 -1.8 92.893
## 1242 43 139 2 999 1 -0.1 93.200
## 1243 70 268 2 999 1 -1.8 93.749
## 1244 28 115 2 999 1 -1.8 93.075
## 1245 25 131 2 999 1 -1.8 93.749
## 1246 32 116 1 999 1 -1.8 93.075
## 1247 37 147 2 999 1 -1.8 92.893
## 1248 36 19 8 999 1 -1.8 92.893
## 1249 37 221 2 999 1 -1.8 92.893
## 1250 52 160 3 999 1 -0.1 93.200
## 1251 34 72 2 999 1 -0.1 93.200
## 1252 20 1472 1 999 3 -1.8 93.749
## 1253 33 414 1 9 3 -1.1 94.199
## 1254 49 118 1 999 1 -0.1 93.200
## 1255 32 375 2 999 2 -1.1 94.601
## 1256 49 324 2 999 1 -1.8 92.893
## 1257 33 118 2 999 1 -1.8 92.893
## 1258 28 66 1 999 1 -2.9 92.963
## 1259 37 71 3 999 1 -1.8 92.893
## 1260 30 73 1 999 1 -0.1 93.200
## 1261 52 54 2 999 1 -1.8 92.893
## 1262 41 800 2 999 1 -3.4 92.379
## 1263 53 168 2 999 1 -3.4 92.379
## 1264 61 196 1 999 1 -1.8 93.749
## 1265 29 86 2 999 1 -2.9 92.469
## 1266 26 215 1 999 1 -2.9 92.201
## 1267 39 99 2 999 2 -1.8 92.893
## 1268 45 158 1 999 1 -3.4 92.649
## 1269 33 105 4 999 1 -1.8 92.893
## 1270 30 64 2 999 1 -0.1 93.200
## 1271 40 224 1 999 1 -3.4 92.379
## 1272 52 161 1 999 1 -0.1 93.200
## 1273 36 217 1 999 1 -1.8 92.893
## 1274 35 25 1 999 1 -1.8 92.893
## 1275 38 190 5 999 1 -0.1 93.200
## 1276 62 105 3 999 1 -3.4 92.379
## 1277 51 79 1 999 1 -2.9 92.963
## 1278 38 351 2 999 1 -1.8 92.893
## 1279 29 226 3 999 1 -1.8 92.893
## 1280 56 163 2 999 1 -0.1 93.200
## 1281 27 244 1 999 1 -1.8 92.893
## 1282 47 129 3 999 2 -1.7 94.215
## 1283 29 98 2 999 1 -1.8 92.893
## 1284 43 47 1 999 1 -1.8 92.893
## 1285 26 707 1 999 1 -1.8 93.075
## 1286 53 100 1 999 1 -2.9 92.201
## 1287 45 362 1 999 2 -1.8 93.075
## 1288 33 492 1 12 2 -1.8 92.893
## 1289 34 182 2 999 1 -1.8 93.075
## 1290 34 281 1 999 2 -3.4 92.431
## 1291 52 551 1 999 3 -3.4 92.649
## 1292 49 204 1 999 1 -1.8 92.893
## 1293 23 268 5 999 1 -1.7 94.215
## 1294 45 165 3 999 1 -0.1 93.200
## 1295 59 8 6 999 1 -1.8 92.893
## 1296 44 223 1 999 1 -2.9 92.963
## 1297 70 1962 1 999 2 -3.4 92.379
## 1298 36 592 4 999 1 -1.8 93.075
## 1299 86 186 2 999 2 -1.8 93.369
## 1300 36 246 1 999 1 -1.8 92.893
## 1301 27 162 2 999 1 -1.8 92.893
## 1302 46 144 2 999 1 -3.4 92.379
## 1303 29 41 2 999 1 -1.8 92.893
## 1304 33 257 1 999 1 -2.9 92.201
## 1305 67 177 2 999 1 -2.9 92.963
## 1306 34 183 1 999 1 -1.8 93.075
## 1307 47 177 1 999 1 -1.8 92.893
## 1308 36 317 1 999 1 -1.8 92.893
## 1309 47 903 2 999 1 -1.8 93.075
## 1310 27 300 1 999 1 -1.8 92.893
## 1311 34 346 1 999 1 -1.7 94.215
## 1312 22 108 2 999 1 -1.8 93.075
## 1313 34 145 1 999 2 -1.8 93.876
## 1314 47 183 3 999 1 -0.1 93.200
## 1315 29 231 1 999 1 -1.8 92.843
## 1316 36 87 4 999 1 -1.8 92.893
## 1317 37 372 1 999 1 -0.1 93.200
## 1318 33 89 1 999 1 -2.9 92.963
## 1319 50 600 3 999 1 -0.1 93.200
## 1320 54 984 1 999 1 -1.8 92.893
## 1321 46 385 2 999 1 -1.8 93.075
## 1322 48 24 7 999 1 -1.8 92.893
## 1323 46 91 1 999 1 -1.8 93.075
## 1324 26 161 1 999 1 -1.8 92.893
## 1325 35 745 1 999 1 -1.8 92.893
## 1326 44 92 3 999 1 -1.8 93.075
## 1327 36 105 2 999 1 -0.1 93.200
## 1328 45 126 2 999 1 -0.1 93.200
## 1329 49 128 3 999 1 -1.8 92.893
## 1330 58 198 1 999 1 -1.1 94.199
## 1331 49 214 3 999 1 -1.8 92.893
## 1332 26 95 3 999 3 -1.7 94.027
## 1333 56 382 1 999 1 -1.8 93.369
## 1334 31 92 1 999 1 -1.8 93.075
## 1335 70 73 3 999 1 -2.9 92.201
## 1336 36 67 2 999 1 -0.1 93.200
## 1337 57 208 3 999 1 -0.1 93.200
## 1338 28 121 1 999 1 -1.8 93.075
## 1339 32 96 3 999 1 -3.4 92.649
## 1340 35 92 3 999 4 -1.1 94.767
## 1341 36 68 1 999 1 -0.1 93.200
## 1342 54 9 3 999 1 -0.1 93.200
## 1343 33 309 3 999 1 -0.1 93.200
## 1344 42 551 1 999 1 -1.8 92.893
## 1345 37 249 2 999 1 -3.4 92.431
## 1346 49 89 1 999 1 -1.8 92.893
## 1347 41 696 2 7 3 -3.4 92.649
## 1348 52 143 5 999 1 -3.4 92.649
## 1349 25 383 2 999 2 -1.7 94.055
## 1350 32 151 4 999 1 -1.8 93.075
## 1351 51 87 2 999 1 -0.1 93.200
## 1352 44 569 1 999 1 -1.8 92.893
## 1353 48 319 2 999 1 -0.1 93.200
## 1354 59 600 2 999 1 -1.8 92.893
## 1355 44 149 1 999 1 -0.1 93.200
## 1356 39 370 1 999 1 -1.8 93.075
## 1357 38 254 1 9 3 -1.1 94.601
## 1358 35 60 2 999 2 -1.8 92.893
## 1359 26 133 2 999 1 -3.4 92.431
## 1360 38 189 3 999 1 -1.8 93.075
## 1361 59 111 3 999 1 -1.8 93.075
## 1362 26 76 2 999 1 -2.9 92.963
## 1363 52 127 4 999 1 -0.1 93.200
## 1364 62 170 1 999 1 -3.4 92.379
## 1365 21 24 1 999 1 -1.8 92.893
## 1366 36 82 1 999 1 -0.1 93.200
## 1367 28 178 2 999 1 -1.8 92.893
## 1368 34 283 3 999 1 -1.8 92.893
## 1369 47 40 1 999 1 -1.8 93.075
## 1370 57 758 1 999 1 -1.8 92.893
## 1371 33 112 2 999 1 -1.8 92.893
## 1372 29 444 2 999 1 -1.8 92.893
## 1373 51 228 1 999 2 -1.1 94.199
## 1374 36 1434 2 999 1 -1.8 92.893
## 1375 41 319 2 999 1 -1.8 93.075
## 1376 41 426 1 999 1 -1.8 92.893
## 1377 31 41 1 999 1 -1.8 92.893
## 1378 52 147 1 999 1 -0.1 93.200
## 1379 32 172 1 999 1 -2.9 92.963
## 1380 27 238 1 999 2 -1.7 94.055
## 1381 51 122 1 999 1 -1.8 92.893
## 1382 50 460 1 15 2 -2.9 92.201
## 1383 45 66 1 999 1 -0.1 93.200
## 1384 43 393 1 999 1 -1.8 92.893
## 1385 31 50 2 999 1 -1.8 92.893
## 1386 39 149 1 999 1 -0.1 93.200
## 1387 31 128 1 999 1 -1.8 92.893
## 1388 31 39 2 999 1 -0.1 93.200
## 1389 33 191 1 999 2 -1.8 93.075
## 1390 31 22 7 999 1 -1.8 92.893
## 1391 32 327 1 999 1 -0.1 93.200
## 1392 66 810 3 999 2 -2.9 92.201
## 1393 40 388 2 999 1 -1.8 92.893
## 1394 49 172 2 9 2 -1.8 92.893
## 1395 38 541 1 999 1 -1.8 92.893
## 1396 30 34 1 999 1 -0.1 93.200
## 1397 27 80 1 999 1 -1.8 92.893
## 1398 30 79 4 999 1 -1.8 92.893
## 1399 53 169 1 999 1 -0.1 93.200
## 1400 29 135 3 999 1 -1.8 93.749
## 1401 31 172 2 999 1 -1.8 92.893
## 1402 23 267 1 999 2 -1.7 94.215
## 1403 35 129 1 999 1 -1.8 93.075
## 1404 32 103 3 999 1 -1.8 92.893
## 1405 33 1024 3 999 1 -1.8 92.893
## 1406 30 106 2 999 1 -0.1 93.200
## 1407 33 367 2 999 1 -1.8 92.893
## 1408 49 80 5 999 1 -0.1 93.200
## 1409 43 818 2 999 1 -1.8 93.075
## 1410 43 415 2 8 2 -3.0 92.713
## 1411 34 154 2 999 1 -1.8 92.893
## 1412 38 284 1 999 1 -1.8 93.075
## 1413 48 122 1 999 1 -0.1 93.200
## 1414 27 102 1 999 1 -1.8 92.893
## 1415 36 427 2 999 1 -1.8 93.075
## 1416 56 212 1 999 1 -0.1 93.200
## 1417 34 281 2 999 1 -1.8 92.893
## 1418 25 294 1 999 1 -3.4 92.431
## 1419 34 234 1 999 1 -1.8 92.893
## 1420 41 903 3 999 1 -0.1 93.200
## 1421 21 97 2 999 1 -1.8 92.893
## 1422 42 174 2 999 2 -1.8 93.075
## 1423 39 171 1 999 1 -1.8 92.893
## 1424 32 389 4 999 1 -1.8 93.876
## 1425 38 126 1 7 4 -3.4 92.649
## 1426 27 217 1 999 2 -3.4 92.649
## 1427 28 72 3 999 1 -1.8 92.893
## 1428 27 537 2 999 1 -2.9 92.469
## 1429 30 132 1 999 1 -1.8 92.893
## 1430 27 775 2 8 2 -3.4 92.649
## 1431 39 301 1 999 1 -1.8 92.893
## 1432 34 72 4 999 1 -1.8 92.893
## 1433 41 333 2 999 1 -1.8 92.893
## 1434 46 166 5 999 4 -1.8 93.749
## 1435 34 85 1 999 1 -1.8 93.075
## 1436 35 508 3 999 2 -1.8 92.893
## 1437 55 376 2 999 1 -1.8 93.075
## 1438 23 116 5 9 2 -3.4 92.649
## 1439 34 6 6 999 1 -1.8 92.893
## 1440 29 199 2 999 1 -1.8 92.893
## 1441 49 289 1 999 1 -1.8 93.075
## 1442 32 444 1 999 1 -3.4 92.379
## 1443 33 468 2 999 1 -1.8 92.893
## 1444 27 64 2 999 1 -1.8 92.893
## 1445 33 96 6 999 1 -1.8 92.893
## 1446 43 286 1 999 1 -1.8 92.893
## 1447 34 707 1 999 2 -1.8 93.075
## 1448 30 16 8 999 1 -1.8 92.893
## 1449 39 459 1 999 1 -2.9 92.963
## 1450 34 311 3 999 1 -1.8 92.893
## 1451 36 1347 2 999 1 -1.8 92.893
## 1452 49 805 2 999 1 -1.8 93.075
## 1453 42 80 1 999 1 -1.8 92.893
## 1454 19 205 1 999 1 -1.8 93.075
## 1455 28 133 4 999 1 -1.1 94.199
## 1456 48 224 3 999 2 -1.8 93.075
## 1457 36 592 2 999 1 -1.8 92.893
## 1458 23 92 1 999 1 -2.9 92.963
## 1459 44 318 1 999 1 -1.8 92.893
## 1460 55 284 1 999 1 -3.0 92.713
## 1461 37 188 4 999 1 -1.8 92.893
## 1462 32 322 2 999 1 -1.8 93.075
## 1463 51 280 2 999 1 -2.9 92.963
## 1464 31 213 1 999 1 -1.8 92.893
## 1465 35 130 3 999 1 -1.8 92.893
## 1466 35 311 1 999 1 -1.8 93.075
## 1467 29 106 1 999 1 -1.8 92.893
## 1468 55 131 2 999 1 -0.1 93.200
## 1469 25 92 1 999 2 -3.4 92.379
## 1470 31 117 2 999 1 -1.8 92.893
## 1471 23 270 3 999 1 -1.1 94.199
## 1472 50 146 1 999 1 -1.8 92.893
## 1473 40 247 2 999 1 -1.8 92.893
## 1474 40 169 1 999 1 -1.8 93.075
## 1475 37 93 1 999 1 -1.8 92.893
## 1476 39 120 1 999 1 -1.8 93.075
## 1477 30 275 1 999 5 -1.1 94.199
## 1478 58 128 1 999 1 -1.8 92.893
## 1479 57 203 2 999 1 -1.8 93.075
## 1480 30 169 2 999 1 -1.8 92.893
## 1481 31 270 1 999 1 -1.8 93.075
## 1482 40 524 3 999 1 -3.4 92.431
## 1483 38 426 2 999 1 -0.1 93.200
## 1484 40 124 3 999 1 -0.1 93.200
## 1485 57 259 1 999 1 -1.8 92.893
## 1486 26 191 1 999 1 -1.8 92.893
## 1487 27 314 2 999 1 -1.8 93.075
## 1488 52 285 2 999 1 -0.1 93.200
## 1489 24 252 1 999 1 -1.8 93.749
## 1490 80 720 5 999 1 -3.0 92.713
## 1491 41 371 2 999 1 -1.1 94.767
## 1492 20 532 1 999 1 -2.9 92.201
## 1493 66 369 2 999 1 -1.1 94.601
## 1494 37 262 2 999 1 -1.8 92.893
## 1495 70 167 2 999 1 -1.8 93.075
## 1496 35 371 1 999 1 -3.4 92.431
## 1497 40 957 1 999 1 -0.1 93.200
## 1498 33 637 4 999 1 -1.8 92.893
## 1499 24 109 1 999 1 -1.8 92.893
## 1500 41 121 1 999 1 -0.1 93.200
## 1501 32 84 2 999 1 -1.8 92.893
## 1502 31 427 1 999 1 -1.8 93.075
## 1503 28 824 1 999 2 -1.8 93.075
## 1504 37 1087 2 999 1 -1.8 93.075
## 1505 29 342 1 999 1 -1.8 92.893
## 1506 36 163 2 999 1 -0.1 93.200
## 1507 33 41 2 999 1 -0.1 93.200
## 1508 32 13 1 999 1 -1.7 94.055
## 1509 82 63 1 999 1 -3.4 92.431
## 1510 51 81 1 999 1 -1.8 93.075
## 1511 80 78 1 999 1 -3.4 92.431
## 1512 35 106 1 999 1 -1.8 92.893
## 1513 46 107 4 999 1 -1.8 92.893
## 1514 42 300 5 999 1 -1.8 92.893
## 1515 48 796 1 999 1 -1.8 92.893
## 1516 41 116 4 999 1 -1.8 92.893
## 1517 34 98 1 999 1 -0.1 93.200
## 1518 28 77 1 999 1 -1.8 92.893
## 1519 37 294 1 999 1 -1.7 94.215
## 1520 42 295 2 999 1 -0.1 93.200
## 1521 52 652 2 999 1 -0.1 93.200
## 1522 40 250 1 999 1 -1.8 93.075
## 1523 38 159 1 999 1 -1.8 92.893
## 1524 34 164 1 999 1 -0.1 93.200
## 1525 40 155 3 999 1 -1.8 93.075
## 1526 63 268 1 999 1 -3.4 92.379
## 1527 35 211 1 999 1 -1.8 92.893
## 1528 45 445 2 999 1 -1.8 92.893
## 1529 68 220 2 999 1 -1.7 94.055
## 1530 52 167 1 10 4 -2.9 92.201
## 1531 36 159 1 999 1 -1.8 92.893
## 1532 36 249 4 999 1 -1.8 92.893
## 1533 56 150 1 999 1 -3.4 92.649
## 1534 31 269 2 999 1 -3.4 92.431
## 1535 30 61 3 999 1 -0.1 93.200
## 1536 48 301 1 999 1 -0.1 93.200
## 1537 25 121 1 15 2 -2.9 92.201
## 1538 68 76 1 999 1 -3.4 92.431
## 1539 48 276 2 999 1 -1.8 92.893
## 1540 55 108 4 999 1 -0.1 93.200
## 1541 42 65 2 999 1 -0.1 93.200
## 1542 46 175 2 999 1 -1.8 92.893
## 1543 46 127 1 999 1 -1.8 92.893
## 1544 53 81 1 999 2 -2.9 92.201
## 1545 31 148 6 999 1 -0.1 93.200
## 1546 33 222 2 999 2 -2.9 92.201
## 1547 51 93 1 999 1 -0.1 93.200
## 1548 54 264 1 999 1 -1.8 92.893
## 1549 22 382 3 999 1 -1.8 92.893
## 1550 57 10 5 999 1 -1.8 92.893
## 1551 43 216 2 999 1 -1.8 93.075
## 1552 29 528 1 999 1 -1.8 92.893
## 1553 29 178 2 15 2 -1.7 94.215
## 1554 29 123 2 12 2 -1.1 94.601
## 1555 32 376 1 999 2 -3.4 92.431
## 1556 40 55 1 999 1 -0.1 93.200
## 1557 60 700 3 999 1 -1.7 94.055
## 1558 35 220 1 999 1 -1.8 92.893
## 1559 34 437 2 999 1 -1.8 92.893
## 1560 38 715 2 999 1 -1.8 93.075
## 1561 25 57 2 999 1 -2.9 92.963
## 1562 34 159 1 999 1 -1.8 92.893
## 1563 33 88 2 999 1 -0.1 93.200
## 1564 29 329 2 999 1 -1.8 93.075
## 1565 36 85 2 999 1 -1.8 92.893
## 1566 37 343 2 999 1 -1.8 93.075
## 1567 30 59 1 999 1 -3.4 92.431
## 1568 38 39 1 999 1 -0.1 93.798
## 1569 30 228 1 999 1 -0.1 93.200
## 1570 38 1624 1 999 2 -1.8 93.075
## 1571 32 177 1 999 1 -1.8 92.893
## 1572 60 174 2 25 2 -1.7 94.215
## 1573 50 408 1 999 1 -0.1 93.200
## 1574 37 608 2 12 2 -1.1 94.601
## 1575 55 77 1 999 1 -1.8 92.893
## 1576 23 380 2 999 1 -1.8 92.893
## 1577 26 119 1 999 1 -1.8 92.893
## 1578 36 490 3 999 2 -1.8 93.075
## 1579 23 370 1 999 1 -2.9 92.469
## 1580 39 206 1 999 1 -2.9 92.963
## 1581 32 188 1 999 1 -1.8 93.075
## 1582 33 337 1 999 1 -1.8 92.893
## 1583 20 625 1 999 1 -2.9 92.469
## 1584 37 31 7 999 1 -1.8 92.893
## 1585 74 369 1 999 1 -1.7 94.055
## 1586 36 159 2 999 1 -1.8 92.893
## 1587 40 72 1 999 1 -1.8 93.075
## 1588 55 197 3 999 1 -1.8 92.893
## 1589 35 16 6 999 1 -1.8 92.893
## 1590 53 251 4 999 1 -1.8 92.893
## 1591 26 135 4 999 1 -1.8 92.893
## 1592 24 91 1 999 1 -1.8 92.893
## 1593 39 82 2 999 1 -1.8 92.893
## 1594 64 102 1 999 1 -2.9 92.201
## 1595 51 214 2 999 1 -1.8 92.893
## 1596 21 968 1 13 2 -1.7 94.215
## 1597 40 58 1 999 1 -0.1 93.200
## 1598 40 274 1 999 1 -1.8 93.075
## 1599 50 587 2 999 1 -2.9 92.201
## 1600 46 226 1 999 1 -0.1 93.200
## 1601 39 168 1 999 1 -1.7 94.055
## 1602 42 456 2 999 1 -1.8 92.893
## 1603 51 841 2 999 2 -1.1 94.199
## 1604 36 220 2 999 1 -2.9 92.201
## 1605 33 339 1 999 1 -1.8 92.893
## 1606 31 88 1 999 1 -0.1 93.200
## 1607 40 131 2 999 1 -1.8 92.893
## 1608 34 362 1 999 1 -1.8 92.893
## 1609 35 280 1 999 1 -1.8 93.075
## 1610 39 198 2 999 1 -1.8 93.075
## 1611 38 24 1 999 1 -0.1 93.200
## 1612 60 186 3 999 1 -2.9 92.201
## 1613 51 314 1 999 1 -1.8 93.075
## 1614 48 111 2 999 1 -1.8 93.075
## 1615 32 104 1 999 1 -1.8 92.893
## 1616 34 132 2 999 1 -1.8 93.075
## 1617 46 207 2 999 1 -0.1 93.200
## 1618 42 185 1 7 3 -1.8 93.369
## 1619 32 247 1 6 3 -3.4 92.649
## 1620 36 141 1 999 1 -1.8 92.843
## 1621 29 268 1 999 1 -1.8 93.075
## 1622 53 348 6 999 2 -1.7 94.055
## 1623 36 197 1 999 1 -1.8 92.893
## 1624 58 145 1 999 2 -1.1 94.199
## 1625 28 244 1 999 1 -1.8 92.893
## 1626 48 288 1 999 1 -1.7 94.215
## 1627 53 730 1 999 1 -3.4 92.379
## 1628 43 108 6 999 1 -1.8 92.893
## 1629 47 639 3 999 1 -3.4 92.379
## 1630 40 1122 2 999 1 -0.1 93.200
## 1631 33 435 2 999 1 -1.8 92.893
## 1632 30 97 1 999 1 -1.8 92.893
## 1633 40 294 1 999 1 -1.8 93.075
## 1634 34 200 3 999 1 -1.8 92.893
## 1635 45 77 1 999 1 -1.8 92.893
## 1636 41 369 1 999 1 -0.1 93.200
## 1637 44 874 2 999 1 -1.7 94.055
## 1638 58 164 2 999 1 -0.1 93.200
## 1639 32 1233 1 999 1 -3.4 92.649
## 1640 35 60 1 999 1 -1.8 92.893
## 1641 41 203 1 999 1 -1.8 93.075
## 1642 34 542 4 999 1 -1.8 92.893
## 1643 49 17 8 999 1 -1.8 92.893
## 1644 33 318 1 999 1 -1.8 92.893
## 1645 41 102 2 999 1 -0.1 93.200
## 1646 34 123 1 999 1 -1.8 92.893
## 1647 50 247 1 999 1 -1.8 92.893
## 1648 40 326 1 999 1 -1.8 93.075
## 1649 40 171 1 999 1 -1.8 92.893
## 1650 28 189 1 999 1 -1.8 92.893
## 1651 42 190 2 999 1 -1.8 93.075
## 1652 59 383 4 999 1 -0.1 93.200
## 1653 59 97 2 999 1 -1.8 92.893
## 1654 28 48 3 999 1 -1.8 92.893
## 1655 42 122 1 999 1 -2.9 92.963
## 1656 47 142 4 999 1 -1.8 92.893
## 1657 57 486 2 999 1 -0.1 93.200
## 1658 38 222 2 999 1 -1.8 92.893
## 1659 78 173 2 999 1 -1.7 94.215
## 1660 36 65 1 999 1 -1.8 92.893
## 1661 37 64 3 999 1 -1.8 93.075
## 1662 33 332 4 999 1 -1.8 92.893
## 1663 39 301 1 999 1 -1.8 92.893
## 1664 34 265 1 999 1 -2.9 92.201
## 1665 33 383 3 999 1 -1.8 93.075
## 1666 39 222 2 999 1 -1.8 92.893
## 1667 30 175 1 999 1 -0.1 93.200
## 1668 33 295 1 999 1 -0.1 93.200
## 1669 47 103 1 999 1 -0.1 93.200
## 1670 30 585 4 999 1 -0.1 93.200
## 1671 32 157 4 999 1 -1.8 92.893
## 1672 38 170 2 999 1 -1.8 92.893
## 1673 27 88 1 999 1 -1.8 92.893
## 1674 36 101 1 999 1 -1.8 93.075
## 1675 33 442 2 999 3 -1.7 94.055
## 1676 26 371 2 999 2 -3.4 92.649
## 1677 30 77 1 999 1 -1.8 92.893
## 1678 49 169 1 999 1 -3.4 92.379
## 1679 51 67 6 6 3 -3.4 92.431
## 1680 74 239 3 999 1 -1.1 94.767
## 1681 29 315 2 999 1 -1.8 92.893
## 1682 45 329 1 999 1 -1.8 93.075
## 1683 43 611 1 999 1 -1.8 93.075
## 1684 59 86 1 999 2 -3.4 92.431
## 1685 54 461 2 999 1 -1.8 93.075
## 1686 68 1248 2 999 1 -3.4 92.649
## 1687 41 152 1 999 1 -1.8 92.893
## 1688 29 346 4 999 1 -0.1 93.200
## 1689 44 69 1 999 1 -1.8 92.893
## 1690 63 235 1 6 2 -2.9 92.201
## 1691 34 103 3 999 1 -0.1 93.200
## 1692 72 207 8 999 1 -2.9 92.201
## 1693 46 184 2 999 1 -0.1 93.200
## 1694 33 144 1 999 1 -2.9 92.963
## 1695 42 130 1 999 1 -1.8 93.075
## 1696 49 668 1 999 1 -1.8 92.893
## 1697 35 304 1 999 2 -1.7 94.215
## 1698 35 109 1 999 1 -1.8 92.893
## 1699 27 207 1 999 1 -1.8 92.893
## 1700 38 186 1 999 1 -1.8 92.893
## 1701 37 148 1 999 2 -2.9 92.201
## 1702 49 288 1 999 1 -0.1 93.200
## 1703 41 296 1 999 1 -1.8 92.893
## 1704 76 61 1 999 1 -2.9 92.201
## 1705 68 110 1 999 2 -2.9 92.201
## 1706 28 119 1 999 1 -2.9 92.201
## 1707 51 231 1 999 1 -1.8 92.893
## 1708 46 163 2 999 1 -1.8 93.075
## 1709 38 106 1 999 2 -1.7 94.055
## 1710 31 44 1 999 1 -0.1 93.200
## 1711 34 49 5 999 1 -1.8 93.075
## 1712 55 628 1 999 1 -1.8 93.075
## 1713 46 182 1 999 1 -1.8 92.893
## 1714 39 60 2 999 1 -0.1 93.200
## 1715 58 127 1 999 1 -1.8 92.893
## 1716 36 68 3 999 2 -1.8 93.075
## 1717 40 213 1 999 1 -1.8 92.893
## 1718 51 526 2 999 1 -1.8 93.075
## 1719 50 446 6 999 1 -1.8 92.893
## 1720 31 157 1 999 1 -1.8 92.893
## 1721 32 93 2 999 1 -1.8 92.843
## 1722 55 461 2 999 1 -1.8 93.075
## 1723 55 250 1 999 2 -3.4 92.431
## 1724 45 71 1 999 1 -0.1 93.200
## 1725 80 105 6 999 3 -1.8 93.075
## 1726 85 462 1 999 1 -1.8 93.749
## 1727 42 37 2 999 1 -1.8 92.893
## 1728 45 220 4 999 1 -0.1 93.200
## 1729 44 76 1 999 1 -0.1 93.200
## 1730 32 97 1 999 1 -1.8 92.893
## 1731 40 67 1 999 1 -1.8 92.893
## 1732 34 182 2 999 1 -0.1 93.200
## 1733 48 141 2 999 1 -0.1 93.200
## 1734 46 7 7 999 1 -1.8 92.893
## 1735 35 301 1 999 1 -1.8 92.893
## 1736 33 119 2 999 3 -1.8 93.369
## 1737 36 145 1 999 2 -1.8 92.893
## 1738 51 97 1 999 1 -2.9 92.469
## 1739 46 358 1 999 1 -0.1 93.200
## 1740 48 627 2 5 3 -1.8 93.075
## 1741 34 215 2 999 2 -1.8 92.893
## 1742 34 180 2 999 1 -1.8 93.075
## 1743 48 57 2 999 1 -1.8 92.893
## 1744 31 374 2 999 1 -1.8 92.893
## 1745 35 516 1 999 1 -1.8 92.893
## 1746 39 598 2 999 2 -1.8 93.075
## 1747 33 124 1 999 1 -1.8 92.893
## 1748 47 155 1 999 1 -3.0 92.713
## 1749 22 162 2 999 1 -2.9 92.201
## 1750 29 257 2 999 1 -3.4 92.649
## 1751 39 21 8 999 1 -1.8 92.893
## 1752 53 705 1 999 1 -2.9 92.963
## 1753 24 696 1 999 2 -2.9 92.963
## 1754 31 325 1 999 1 -1.8 92.893
## 1755 52 259 1 999 1 -3.4 92.649
## 1756 30 60 1 999 1 -1.8 92.893
## 1757 46 984 1 999 1 -1.8 92.893
## 1758 52 9 1 999 1 -1.7 94.215
## 1759 28 223 3 999 2 -1.1 94.767
## 1760 31 130 2 999 2 -1.8 92.893
## 1761 47 104 1 999 1 -0.1 93.200
## 1762 30 131 1 999 1 -1.7 94.055
## 1763 42 406 3 999 1 -1.8 93.075
## 1764 38 161 1 999 1 -1.8 92.893
## 1765 34 30 1 999 1 -1.8 92.893
## 1766 50 135 4 999 1 -1.7 94.055
## 1767 35 65 4 999 1 -1.8 92.893
## 1768 44 240 1 999 2 -1.8 93.075
## 1769 22 355 1 999 2 -1.7 94.055
## 1770 42 81 6 999 1 -0.1 93.200
## 1771 31 104 3 999 1 -1.8 92.893
## 1772 34 65 2 999 1 -1.8 92.893
## 1773 33 52 1 999 1 -1.8 92.893
## 1774 30 55 2 999 1 -1.8 92.893
## 1775 23 158 1 999 1 -1.8 92.893
## 1776 32 123 1 999 1 -2.9 92.963
## 1777 43 997 1 999 1 -1.8 93.075
## 1778 28 190 3 999 1 -2.9 92.201
## 1779 76 184 6 999 1 -3.0 92.713
## 1780 49 55 2 999 2 -1.8 92.893
## 1781 50 402 4 999 1 -0.1 93.200
## 1782 39 197 2 999 1 -1.8 92.893
## 1783 33 153 1 999 1 -1.8 93.075
## 1784 79 163 1 999 1 -2.9 92.963
## 1785 68 97 1 999 2 -3.0 92.713
## 1786 40 132 5 999 1 -1.8 92.893
## 1787 54 200 2 10 4 -1.1 94.767
## 1788 33 148 3 999 1 -0.1 93.200
## 1789 52 154 2 999 1 -1.8 92.893
## 1790 44 173 2 999 1 -1.8 92.893
## 1791 46 1210 4 999 1 -2.9 92.963
## 1792 32 223 1 999 1 -0.1 93.200
## 1793 50 241 2 999 1 -0.1 93.200
## 1794 39 159 1 999 1 -0.1 93.200
## 1795 51 51 2 999 1 -0.1 93.200
## 1796 47 151 2 999 1 -1.8 93.075
## 1797 39 381 1 999 1 -1.8 93.075
## 1798 41 135 1 999 1 -1.8 93.075
## 1799 28 185 1 999 1 -1.8 92.893
## 1800 45 111 2 999 1 -1.7 94.027
## 1801 47 258 1 999 1 -0.1 93.200
## 1802 25 312 2 999 2 -1.7 94.215
## 1803 40 414 2 999 3 -1.1 94.767
## 1804 34 137 1 999 1 -1.8 92.893
## 1805 36 109 1 999 1 -1.8 93.876
## 1806 37 295 1 999 1 -0.1 93.200
## 1807 30 144 1 999 1 -1.8 93.876
## 1808 32 250 2 999 1 -0.1 93.200
## 1809 22 221 1 999 1 -2.9 92.963
## 1810 34 58 2 999 1 -1.8 93.075
## 1811 59 1397 3 999 1 -1.8 93.749
## 1812 43 1011 1 999 1 -0.1 93.200
## 1813 33 162 1 999 1 -1.8 92.893
## 1814 24 113 2 999 2 -1.8 93.876
## 1815 33 410 1 999 1 -3.4 92.431
## 1816 58 154 1 999 1 -3.0 92.713
## 1817 36 419 2 999 1 -1.8 93.075
## 1818 46 692 4 999 1 -1.8 92.893
## 1819 41 373 2 999 1 -1.8 92.893
## 1820 50 91 2 999 1 -1.8 93.075
## 1821 35 96 2 999 1 -1.8 92.893
## 1822 33 254 1 999 2 -2.9 92.963
## 1823 43 175 1 999 1 -0.1 93.200
## 1824 31 66 1 999 1 -1.8 92.893
## 1825 34 122 1 999 1 -1.8 93.075
## 1826 52 437 1 999 1 -1.8 93.075
## 1827 32 292 2 999 1 -0.1 93.200
## 1828 48 96 3 999 1 -0.1 93.200
## 1829 32 88 1 999 1 -2.9 92.201
## 1830 39 85 1 999 1 -0.1 93.200
## 1831 45 269 3 999 1 -1.8 93.075
## 1832 57 149 5 999 1 -1.8 92.893
## 1833 35 327 2 999 1 -1.8 93.075
## 1834 29 229 2 999 1 -1.8 92.893
## 1835 46 191 2 999 1 -0.1 93.200
## 1836 34 111 1 999 1 -1.8 92.893
## 1837 51 201 3 999 1 -1.8 93.369
## 1838 41 273 1 999 1 -3.0 92.713
## 1839 35 339 1 999 1 -1.8 92.893
## 1840 39 148 1 999 1 -1.1 94.767
## 1841 42 361 1 999 1 -1.8 92.893
## 1842 32 546 3 999 1 -1.8 92.893
## 1843 34 58 2 999 1 -1.8 92.893
## 1844 39 11 1 999 1 -0.2 92.756
## 1845 37 114 4 999 2 -1.7 94.215
## 1846 49 277 4 999 1 -1.8 93.369
## 1847 35 156 1 999 2 -1.7 94.215
## 1848 52 437 4 999 1 -1.8 92.893
## 1849 36 273 2 999 1 -1.8 93.075
## 1850 54 206 6 999 1 -1.8 92.893
## 1851 37 679 1 999 1 -1.8 92.893
## 1852 32 279 1 999 1 -1.8 92.893
## 1853 47 399 2 999 1 -1.8 93.075
## 1854 31 53 3 999 1 -3.4 92.649
## 1855 37 56 2 999 1 -1.8 92.893
## 1856 32 184 1 9 3 -1.7 94.215
## 1857 23 145 2 999 1 -1.8 92.893
## 1858 33 1008 1 999 1 -1.8 92.893
## 1859 79 464 1 999 1 -1.7 94.215
## 1860 41 88 1 999 1 -1.8 92.893
## 1861 35 470 2 999 1 -0.1 93.200
## 1862 25 381 1 999 1 -3.4 92.649
## 1863 41 338 3 999 1 -1.8 93.876
## 1864 31 188 1 999 1 -1.8 92.893
## 1865 32 210 2 999 1 -2.9 92.963
## 1866 53 92 2 999 1 -1.8 92.893
## 1867 24 145 4 999 1 -1.8 92.893
## 1868 48 334 2 999 1 -1.8 92.893
## 1869 49 366 2 999 1 -3.4 92.649
## 1870 41 175 2 999 1 -1.8 92.893
## 1871 35 330 1 999 1 -1.8 92.893
## 1872 49 75 1 999 1 -2.9 92.201
## 1873 25 251 1 999 1 -1.1 94.601
## 1874 27 308 1 999 1 -1.8 92.893
## 1875 29 232 1 999 1 -0.1 93.200
## 1876 44 712 1 6 3 -1.7 94.055
## 1877 55 179 1 999 1 -0.1 93.200
## 1878 49 361 2 999 1 -1.8 93.369
## 1879 29 607 1 999 1 -1.8 92.893
## 1880 35 203 2 999 1 -1.8 92.893
## 1881 35 153 1 999 1 -1.8 92.893
## 1882 56 121 2 999 1 -1.8 93.075
## 1883 56 158 1 999 1 -1.8 93.749
## 1884 34 306 2 999 1 -1.8 92.893
## 1885 66 211 1 999 1 -1.7 94.215
## 1886 36 231 2 999 4 -1.8 93.369
## 1887 32 2184 2 999 1 -3.4 92.649
## 1888 65 253 2 999 1 -3.4 92.431
## 1889 37 291 8 999 1 -1.8 92.893
## 1890 50 139 1 999 1 -0.1 93.200
## 1891 34 121 2 999 1 -3.4 92.649
## 1892 43 448 2 999 1 -1.8 93.075
## 1893 39 174 1 999 1 -1.8 92.893
## 1894 37 322 1 999 1 -1.8 92.893
## 1895 39 47 1 999 1 -1.8 92.893
## 1896 48 152 4 999 1 -1.8 92.893
## 1897 37 66 1 999 1 -2.9 92.201
## 1898 65 161 2 999 1 -2.9 92.201
## 1899 38 74 2 999 1 -1.8 93.075
## 1900 51 89 1 999 1 -1.8 92.893
## 1901 45 171 2 999 1 -1.7 94.215
## 1902 26 22 8 999 1 -1.8 92.893
## 1903 32 303 2 999 1 -1.8 92.893
## 1904 32 651 1 999 1 -1.1 94.767
## 1905 39 22 8 999 1 -1.8 92.893
## 1906 35 352 2 999 1 -1.8 92.893
## 1907 35 113 1 999 1 -1.8 93.075
## 1908 32 313 2 999 1 -2.9 92.201
## 1909 32 293 5 999 1 -2.9 92.963
## 1910 37 12 5 999 1 -1.8 93.075
## 1911 33 146 1 999 1 -1.1 94.601
## 1912 35 130 3 999 1 -1.8 92.893
## 1913 44 217 3 999 1 -1.8 92.893
## 1914 42 114 7 999 1 -1.8 92.893
## 1915 28 71 2 999 1 -1.8 93.075
## 1916 42 428 3 999 1 -1.8 92.893
## 1917 31 60 1 999 1 -0.1 93.200
## 1918 27 309 2 999 1 -1.1 94.601
## 1919 55 88 1 999 1 -1.8 93.075
## 1920 36 951 3 999 1 -1.8 92.893
## 1921 46 329 2 9 4 -1.7 94.027
## 1922 27 775 2 8 2 -3.4 92.649
## 1923 52 44 2 999 2 -1.8 93.075
## 1924 38 17 7 999 1 -1.8 92.893
## 1925 37 202 2 999 1 -0.1 93.200
## 1926 27 670 4 999 1 -1.8 92.893
## 1927 29 350 1 999 1 -1.8 93.075
## 1928 40 53 1 999 1 -0.1 93.200
## 1929 54 112 1 999 2 -1.1 94.199
## 1930 38 180 2 999 1 -3.4 92.431
## 1931 32 157 2 999 1 -1.8 92.893
## 1932 31 207 5 999 1 -0.1 93.200
## 1933 38 139 2 999 3 -1.1 94.601
## 1934 35 60 1 999 1 -0.1 93.200
## 1935 35 334 2 999 1 -1.8 93.075
## 1936 26 115 2 999 1 -1.8 93.749
## 1937 37 617 1 999 1 -1.8 93.075
## 1938 34 86 3 999 1 -1.7 94.215
## 1939 42 132 6 999 1 -1.8 92.893
## 1940 46 116 2 999 1 -0.1 93.200
## 1941 50 93 3 999 1 -0.1 93.200
## 1942 27 59 1 999 1 -2.9 92.963
## 1943 34 369 2 999 1 -1.8 92.893
## 1944 31 66 2 999 1 -1.8 92.893
## 1945 39 195 3 999 1 -0.1 93.200
## 1946 38 172 2 999 1 -1.8 93.075
## 1947 48 82 1 999 1 -0.1 93.200
## 1948 26 9 7 999 1 -1.8 92.893
## 1949 32 83 1 999 1 -1.8 92.893
## 1950 33 79 1 999 1 -2.9 92.201
## 1951 43 305 1 999 1 -1.8 92.893
## 1952 31 451 1 999 1 -1.8 92.893
## 1953 31 588 2 999 1 -0.1 93.200
## 1954 27 340 1 999 1 -1.8 92.893
## 1955 38 112 1 999 1 -0.1 93.200
## 1956 41 79 1 999 1 -3.4 92.431
## 1957 29 1223 3 999 1 -1.8 92.893
## 1958 75 676 2 999 4 -1.7 94.027
## 1959 30 423 2 999 1 -0.1 93.200
## 1960 32 302 1 999 1 -0.1 93.200
## 1961 48 420 7 999 1 -1.8 92.893
## 1962 30 92 4 999 1 -1.8 92.893
## 1963 27 125 2 999 1 -1.8 92.893
## 1964 34 31 4 999 1 -1.8 93.075
## 1965 35 54 2 999 1 -1.8 92.893
## 1966 23 68 2 999 1 -1.8 92.893
## 1967 29 154 2 999 1 -1.8 93.369
## 1968 33 104 3 999 1 -0.1 93.200
## 1969 28 92 4 17 3 -1.1 94.601
## 1970 35 192 2 999 1 -3.4 92.649
## 1971 38 64 1 999 1 -0.1 93.200
## 1972 30 706 1 999 1 -0.1 93.200
## 1973 26 199 1 999 1 -1.8 92.893
## 1974 81 263 1 999 1 -3.4 92.649
## 1975 29 85 1 999 2 -1.8 93.876
## 1976 30 167 2 999 1 -1.8 92.893
## 1977 33 227 1 999 1 -1.8 92.893
## 1978 35 87 1 999 1 -1.8 92.893
## 1979 23 314 1 999 1 -1.8 93.075
## 1980 28 240 1 999 1 -1.8 92.893
## 1981 33 289 1 999 2 -2.9 92.201
## 1982 37 259 1 999 1 -1.8 92.893
## 1983 56 146 1 999 1 -2.9 92.963
## 1984 52 206 1 999 1 -2.9 92.201
## 1985 38 151 2 999 1 -1.8 92.893
## 1986 33 196 3 999 1 -1.8 93.369
## 1987 29 61 1 999 1 -1.8 92.893
## 1988 55 168 2 999 1 -1.8 92.893
## 1989 40 139 1 999 1 -1.8 93.075
## 1990 28 69 1 999 1 -2.9 92.963
## 1991 38 113 1 999 1 -1.8 92.843
## 1992 72 220 16 999 1 -1.7 94.027
## 1993 37 258 2 999 1 -3.4 92.649
## 1994 31 294 1 999 1 -1.8 92.893
## 1995 41 588 1 18 2 -1.8 93.876
## 1996 26 6 1 999 3 -1.7 94.027
## 1997 42 103 2 999 1 -1.8 92.893
## 1998 42 251 2 15 2 -2.9 92.201
## 1999 31 259 1 999 1 -0.1 93.200
## 2000 63 156 2 999 2 -3.4 92.379
## 2001 57 164 2 999 1 -1.8 92.893
## 2002 41 128 1 999 1 -1.8 92.893
## 2003 31 302 1 999 1 -1.8 92.893
## 2004 49 52 1 999 1 -0.1 93.200
## 2005 37 286 2 999 1 -1.8 92.893
## 2006 35 190 3 7 3 -3.4 92.649
## 2007 36 85 1 999 1 -0.1 93.200
## 2008 34 344 1 999 1 -1.8 93.075
## 2009 28 217 4 999 1 -1.8 92.893
## 2010 30 55 1 999 1 -1.8 92.893
## 2011 56 109 1 999 1 -0.1 93.200
## 2012 37 336 2 999 1 -1.8 92.893
## 2013 30 228 1 999 1 -1.8 92.893
## 2014 32 82 1 999 1 -1.8 93.075
## 2015 39 355 3 999 2 -1.8 93.075
## 2016 42 73 1 999 1 -1.8 93.075
## 2017 64 130 1 999 1 -3.4 92.431
## 2018 45 98 2 999 1 -1.8 92.893
## 2019 47 233 1 999 1 -0.1 93.200
## 2020 50 185 2 999 1 -0.1 93.200
## 2021 50 102 1 999 1 -2.9 92.963
## 2022 42 100 2 999 1 -0.1 93.200
## 2023 45 623 1 999 1 -0.1 93.200
## 2024 49 48 1 999 1 -1.8 93.075
## 2025 30 482 3 999 1 -0.1 93.200
## 2026 27 250 3 999 5 -1.7 94.027
## 2027 31 397 2 999 1 -1.7 94.027
## 2028 28 92 1 999 1 -1.8 92.893
## 2029 36 20 1 999 1 -0.1 93.200
## 2030 39 9 4 999 1 -1.8 92.893
## 2031 54 194 2 999 1 -1.8 92.893
## 2032 56 74 2 999 1 -0.1 93.200
## 2033 46 349 2 999 1 -1.8 92.893
## 2034 31 187 2 999 1 -1.8 92.893
## 2035 31 443 1 999 1 -1.8 92.893
## 2036 38 263 2 999 1 -1.8 93.075
## 2037 32 276 1 999 1 -0.1 93.200
## 2038 28 137 3 999 1 -1.8 92.893
## 2039 27 255 2 999 1 -2.9 92.201
## 2040 68 1248 2 999 1 -3.4 92.649
## 2041 45 204 2 999 1 -3.4 92.431
## 2042 30 331 1 999 1 -1.8 93.075
## 2043 54 104 1 999 1 -1.8 93.075
## 2044 37 425 1 999 1 -1.8 92.893
## 2045 29 207 2 999 1 -1.8 93.369
## 2046 32 78 1 999 1 -0.1 93.200
## 2047 57 609 2 999 1 -0.1 93.200
## 2048 62 123 1 999 1 -3.4 92.649
## 2049 45 102 1 999 1 -1.8 92.893
## 2050 31 315 1 999 1 -1.8 92.893
## 2051 25 137 1 999 1 -1.8 93.075
## 2052 32 6 1 999 1 -1.1 94.199
## 2053 38 118 2 999 1 -1.8 93.075
## 2054 33 272 5 999 1 -1.8 92.893
## 2055 54 408 1 999 1 -1.8 93.075
## 2056 24 135 1 999 1 -1.8 93.749
## 2057 30 83 1 999 2 -2.9 92.201
## 2058 53 262 1 999 2 -1.8 93.369
## 2059 25 655 3 999 1 -1.8 92.893
## 2060 47 101 1 999 1 -1.8 92.893
## 2061 38 154 3 17 3 -1.8 93.369
## 2062 31 150 1 999 1 -1.8 92.893
## 2063 25 110 1 999 1 -3.4 92.649
## 2064 41 202 2 999 1 -1.8 92.893
## 2065 27 217 1 999 2 -3.4 92.649
## 2066 37 107 1 999 1 -1.8 92.893
## 2067 30 151 2 999 1 -1.8 92.893
## 2068 45 335 2 999 1 -1.8 92.893
## 2069 41 593 2 999 1 -1.8 92.893
## 2070 44 217 1 999 1 -1.8 92.893
## 2071 36 92 2 999 1 -2.9 92.201
## 2072 44 263 1 999 1 -1.8 92.893
## 2073 41 256 3 999 1 -1.8 93.075
## 2074 47 53 4 999 1 -1.8 92.893
## 2075 50 151 2 6 2 -3.4 92.431
## 2076 32 151 2 999 1 -1.8 92.893
## 2077 29 64 3 999 1 -1.8 92.893
## 2078 40 8 2 999 1 -1.8 93.075
## 2079 59 247 2 999 1 -1.8 93.749
## 2080 49 86 1 999 1 -1.8 92.893
## 2081 34 241 1 999 1 -1.8 92.893
## 2082 39 325 1 999 2 -1.8 93.749
## 2083 85 462 1 999 1 -1.8 93.749
## 2084 47 281 2 999 1 -1.1 94.199
## 2085 30 158 1 999 1 -1.8 92.893
## 2086 57 69 3 999 1 -1.8 92.893
## 2087 24 202 1 999 3 -1.1 94.199
## 2088 32 166 3 12 2 -1.8 92.893
## 2089 29 62 3 999 1 -1.8 92.893
## 2090 52 26 5 999 1 -0.1 93.200
## 2091 31 158 1 999 1 -1.8 92.893
## 2092 33 89 2 999 1 -1.8 92.893
## 2093 41 251 1 999 1 -1.8 93.075
## 2094 39 44 1 999 1 -0.1 93.200
## 2095 32 102 4 999 2 -2.9 92.963
## 2096 43 43 1 999 1 -0.1 93.200
## 2097 35 316 1 999 1 -0.1 93.200
## 2098 30 164 2 999 1 -1.8 92.893
## 2099 52 97 3 999 1 -0.1 93.200
## 2100 49 23 6 999 1 -1.8 92.893
## 2101 33 175 1 999 1 -1.8 92.893
## 2102 38 194 2 999 1 -0.1 93.200
## 2103 31 182 2 999 2 -1.8 92.893
## 2104 51 43 2 999 1 -1.8 92.893
## 2105 44 635 3 999 1 -0.1 93.200
## 2106 57 497 2 999 1 -2.9 92.201
## 2107 28 73 1 999 1 -1.8 93.075
## 2108 33 637 4 999 1 -1.8 92.893
## 2109 50 801 1 999 1 -1.8 93.876
## 2110 26 298 2 999 2 -1.8 92.893
## 2111 33 134 1 999 1 -1.8 92.893
## 2112 43 997 1 999 1 -1.8 93.075
## 2113 38 391 3 999 1 -2.9 92.201
## 2114 33 147 1 999 1 -2.9 92.201
## 2115 32 205 4 999 1 -3.0 92.713
## 2116 37 78 1 999 1 -3.4 92.379
## 2117 44 241 1 999 1 -1.8 92.893
## 2118 53 431 1 999 1 -1.8 93.369
## 2119 52 211 7 999 1 -0.1 93.200
## 2120 32 262 2 999 1 -1.8 92.893
## 2121 64 130 1 999 1 -3.4 92.431
## 2122 23 60 1 999 1 -2.9 92.963
## 2123 34 101 4 999 1 -1.8 92.893
## 2124 46 211 2 999 1 -1.8 93.075
## 2125 65 161 2 999 1 -2.9 92.201
## 2126 53 70 1 999 1 -2.9 92.963
## 2127 31 829 1 999 1 -1.8 92.893
## 2128 46 245 2 999 1 -1.8 92.893
## 2129 44 75 1 999 1 -1.8 93.075
## 2130 26 38 1 999 1 -1.8 92.893
## 2131 49 97 3 999 1 -1.8 92.893
## 2132 76 284 1 999 1 -2.9 92.201
## 2133 35 147 4 999 1 -1.8 92.893
## 2134 65 208 3 999 1 -3.4 92.431
## 2135 38 136 1 999 1 -3.4 92.649
## 2136 48 263 2 999 1 -1.8 92.893
## 2137 37 323 2 999 1 -1.8 92.893
## 2138 46 39 1 999 1 -1.8 92.893
## 2139 33 110 1 999 1 -1.1 94.199
## 2140 36 210 1 999 1 -1.8 92.893
## 2141 31 170 1 999 1 -1.8 93.075
## 2142 58 549 5 999 2 -1.8 93.369
## 2143 35 222 2 999 1 -1.8 92.893
## 2144 24 524 1 999 1 -1.8 92.893
## 2145 31 238 1 999 1 -1.8 93.075
## 2146 41 103 2 999 1 -1.8 92.893
## 2147 32 158 2 999 1 -1.8 92.893
## 2148 34 191 1 999 1 -0.1 93.200
## 2149 31 50 2 999 1 -1.8 92.893
## 2150 62 515 2 999 2 -1.8 93.369
## 2151 23 314 1 999 1 -1.8 93.075
## 2152 39 75 1 999 1 -1.8 92.893
## 2153 37 247 1 999 1 -1.8 93.075
## 2154 34 126 2 999 2 -3.4 92.649
## 2155 32 26 1 999 1 -0.1 93.200
## 2156 41 192 1 999 1 -0.1 93.200
## 2157 31 400 1 999 1 -1.8 92.893
## 2158 44 536 2 999 1 -1.8 92.893
## 2159 75 229 1 999 2 -1.7 94.215
## 2160 30 285 3 999 1 -1.8 92.893
## 2161 37 93 3 999 1 -1.8 93.075
## 2162 57 429 4 999 1 -1.8 92.893
## 2163 21 258 4 999 1 -1.8 93.075
## 2164 51 46 4 999 1 -0.1 93.200
## 2165 40 246 4 999 1 -1.8 92.893
## 2166 35 101 2 999 1 -0.1 93.200
## 2167 32 196 3 999 1 -0.1 93.200
## 2168 36 402 2 999 1 -1.8 92.893
## 2169 21 136 1 999 1 -1.8 92.893
## 2170 66 810 3 999 2 -2.9 92.201
## 2171 58 98 4 999 2 -1.8 93.749
## 2172 39 640 1 999 1 -0.1 93.200
## 2173 51 254 2 999 1 -1.8 92.893
## 2174 31 246 1 999 1 -1.8 93.075
## 2175 41 17 3 999 2 -1.8 92.893
## 2176 44 383 1 999 1 -1.8 92.893
## 2177 17 182 2 999 2 -2.9 92.201
## 2178 32 237 2 999 1 -1.7 94.215
## 2179 38 161 1 999 1 -1.8 93.075
## 2180 28 35 3 999 1 -1.8 92.893
## 2181 46 335 3 999 2 -1.7 94.215
## 2182 46 354 2 999 1 -0.1 93.200
## 2183 18 110 1 999 2 -1.8 93.876
## 2184 54 79 2 999 1 -0.1 93.200
## 2185 34 156 2 999 1 -1.8 92.893
## 2186 39 186 4 999 1 -1.8 92.893
## 2187 50 209 1 8 3 -3.4 92.431
## 2188 38 391 3 999 1 -2.9 92.201
## 2189 72 119 9 999 1 -1.7 94.215
## 2190 53 122 3 999 1 -0.1 93.200
## 2191 44 15 4 999 2 -1.8 92.893
## 2192 36 111 3 999 1 -0.1 93.200
## 2193 44 37 1 999 1 -0.1 93.200
## 2194 42 251 1 999 1 -1.8 92.893
## 2195 38 279 3 999 1 -1.8 93.075
## 2196 43 137 3 999 1 -3.4 92.649
## 2197 39 128 2 999 1 -1.8 92.893
## 2198 45 614 1 999 1 -1.8 93.075
## 2199 57 283 1 999 1 -0.1 93.200
## 2200 33 96 2 999 1 -1.8 92.893
## 2201 32 98 1 999 1 -1.8 92.893
## 2202 35 257 1 999 1 -1.8 92.893
## 2203 23 119 1 999 1 -1.8 92.893
## 2204 40 687 1 999 1 -1.8 93.075
## 2205 27 147 2 999 1 -1.8 93.749
## 2206 33 1075 1 999 1 -1.8 92.893
## 2207 31 14 6 999 1 -1.8 92.893
## 2208 43 25 5 999 1 -1.8 92.893
## 2209 56 222 1 999 1 -1.8 93.075
## 2210 35 126 1 999 1 -2.9 92.963
## 2211 46 18 1 999 1 -1.1 94.767
## 2212 34 301 2 999 1 -1.8 92.893
## 2213 43 159 1 999 1 -3.4 92.379
## 2214 39 312 1 999 1 -1.8 92.893
## 2215 42 29 1 999 1 -1.8 92.893
## 2216 28 97 1 999 1 -1.8 93.749
## 2217 31 68 2 999 1 -0.1 93.200
## 2218 36 450 1 999 1 -1.8 93.075
## 2219 29 179 1 999 1 -0.1 93.200
## 2220 36 883 1 999 1 -1.7 94.055
## 2221 26 67 5 999 1 -2.9 92.469
## 2222 32 197 2 999 1 -2.9 92.963
## 2223 34 101 2 999 1 -1.8 92.893
## 2224 22 438 1 999 1 -3.4 92.431
## 2225 40 55 1 999 2 -2.9 92.201
## 2226 55 130 1 999 1 -1.8 92.893
## 2227 56 131 5 999 1 -2.9 92.201
## 2228 25 79 1 999 2 -1.1 94.601
## 2229 33 426 5 999 1 -1.8 93.075
## 2230 39 202 1 999 1 -1.7 94.215
## 2231 33 143 1 999 1 -0.1 93.200
## 2232 33 236 1 999 1 -1.8 93.075
## 2233 39 272 1 999 1 -1.8 92.893
## 2234 28 561 4 999 1 -1.8 92.893
## 2235 36 31 1 999 1 -1.8 92.893
## 2236 39 141 1 7 2 -3.4 92.431
## 2237 24 180 2 999 1 -3.4 92.649
## 2238 33 408 2 999 1 -1.8 92.893
## 2239 29 23 1 999 1 -1.8 92.893
## 2240 38 6 5 999 1 -1.8 92.893
## 2241 51 211 1 999 1 -1.8 92.893
## 2242 39 161 1 999 1 -1.8 93.075
## 2243 29 200 1 999 1 -1.8 92.893
## 2244 27 206 1 999 1 -1.8 92.893
## 2245 31 110 1 999 1 -0.1 93.200
## 2246 66 82 2 999 1 -1.8 92.893
## 2247 30 88 2 999 1 -0.1 93.200
## 2248 45 254 1 999 1 -1.8 93.876
## 2249 28 573 7 999 1 -1.8 92.893
## 2250 36 78 1 999 1 -3.4 92.431
## 2251 35 220 1 999 1 -0.1 93.200
## 2252 33 161 1 999 1 -1.1 94.199
## 2253 36 284 2 999 1 -1.8 92.893
## 2254 35 209 1 999 2 -3.4 92.649
## 2255 39 98 1 999 1 -1.8 92.893
## 2256 35 437 3 999 1 -1.8 92.893
## 2257 29 77 3 999 1 -3.0 92.713
## 2258 32 47 1 999 1 -0.1 93.200
## 2259 35 447 1 999 2 -1.1 94.199
## 2260 41 143 3 999 1 -0.1 93.200
## 2261 55 56 1 999 1 -1.8 92.893
## 2262 54 552 1 999 2 -1.8 92.893
## 2263 30 67 1 999 1 -1.8 92.893
## 2264 54 265 4 999 1 -1.8 92.893
## 2265 31 498 1 999 1 -3.4 92.649
## 2266 45 537 5 999 1 -1.8 92.893
## 2267 66 147 2 999 1 -2.9 92.201
## 2268 48 349 1 999 1 -1.8 92.893
## 2269 44 251 4 999 1 -1.8 93.075
## 2270 42 106 1 999 1 -1.8 92.893
## 2271 39 265 1 999 1 -1.8 92.843
## 2272 31 152 1 999 1 -1.8 92.893
## 2273 51 175 3 999 1 -0.1 93.200
## 2274 37 241 1 999 1 -1.8 93.075
## 2275 26 33 3 999 1 -1.8 92.893
## 2276 53 376 2 999 1 -1.8 92.893
## 2277 33 74 1 999 1 -1.8 92.893
## 2278 35 124 2 999 1 -1.8 92.893
## 2279 34 361 5 999 1 -1.8 92.893
## 2280 38 103 2 999 1 -0.1 93.200
## 2281 35 317 1 999 2 -1.1 94.199
## 2282 30 129 2 999 1 -1.8 92.893
## 2283 34 201 3 999 1 -0.1 93.200
## 2284 57 129 2 999 1 -1.8 92.893
## 2285 30 200 1 999 1 -0.1 93.200
## 2286 24 118 4 999 1 -1.8 92.893
## 2287 31 172 2 999 1 -1.8 92.893
## 2288 31 251 1 999 1 -0.1 93.200
## 2289 36 331 1 6 4 -1.1 94.199
## 2290 35 147 2 14 2 -2.9 92.469
## 2291 28 257 4 999 2 -1.8 93.369
## 2292 53 26 1 999 1 -1.8 93.075
## 2293 48 148 1 999 1 -0.1 93.200
## 2294 32 211 2 999 1 -1.8 92.893
## 2295 33 339 1 999 2 -1.8 93.749
## 2296 29 13 9 999 1 -1.8 92.893
## 2297 23 159 1 999 1 -2.9 92.963
## 2298 58 318 4 999 1 -2.9 92.469
## 2299 25 300 3 999 2 -1.8 92.893
## 2300 37 65 2 999 1 -1.8 92.893
## 2301 32 137 1 999 1 -0.1 93.200
## 2302 36 240 3 999 1 -0.1 93.200
## 2303 73 209 2 999 1 -1.8 93.369
## 2304 30 156 1 999 2 -2.9 92.201
## 2305 34 161 1 18 2 -1.1 94.199
## 2306 30 418 2 999 1 -1.8 92.893
## 2307 31 369 2 999 1 -1.8 92.893
## 2308 46 142 12 999 1 -1.8 93.075
## 2309 31 50 3 999 1 -1.8 92.893
## 2310 34 350 8 999 1 -1.8 92.893
## 2311 35 146 1 999 1 -1.8 92.893
## 2312 23 268 5 999 1 -1.7 94.215
## 2313 62 181 2 999 1 -1.8 92.893
## 2314 29 110 2 999 1 -1.7 94.215
## 2315 36 23 1 999 1 -1.8 92.893
## 2316 46 247 2 999 1 -1.8 92.893
## 2317 36 141 1 999 1 -1.8 92.893
## 2318 48 235 2 999 1 -1.8 93.075
## 2319 46 215 1 999 1 -2.9 92.963
## 2320 28 43 1 999 1 -1.8 92.893
## 2321 55 148 2 999 1 -1.8 93.749
## 2322 41 131 2 999 1 -3.4 92.649
## 2323 38 926 1 999 1 -1.8 93.075
## 2324 38 158 1 999 1 -1.8 92.893
## 2325 61 102 2 999 1 -1.8 93.369
## 2326 78 238 1 999 2 -1.1 94.199
## 2327 37 463 1 999 1 -1.8 93.075
## 2328 28 442 1 999 1 -1.8 92.893
## 2329 25 262 1 999 1 -1.8 92.893
## 2330 41 228 1 999 1 -1.1 94.199
## 2331 34 344 1 999 1 -1.8 93.075
## 2332 20 131 1 999 1 -2.9 92.201
## 2333 34 250 1 10 2 -1.7 94.027
## 2334 32 603 2 7 2 -1.8 92.893
## 2335 28 135 2 999 1 -1.8 92.893
## 2336 35 63 1 999 1 -1.8 92.893
## 2337 31 303 3 999 1 -1.8 92.893
## 2338 37 658 3 999 1 -0.1 93.200
## 2339 30 249 1 999 1 -1.8 92.893
## 2340 45 166 2 999 1 -1.8 92.893
## 2341 32 125 1 999 1 -1.8 92.893
## 2342 33 843 1 999 1 -1.8 92.893
## 2343 27 73 1 999 1 -1.8 92.893
## 2344 53 583 2 999 1 -1.8 93.075
## 2345 29 747 2 999 1 -1.8 92.893
## 2346 28 134 3 999 1 -1.8 92.893
## 2347 33 113 3 999 1 -1.8 93.749
## 2348 32 500 2 999 1 -0.1 93.200
## 2349 27 550 2 999 1 -1.8 92.893
## 2350 29 424 1 999 1 -3.4 92.431
## 2351 46 69 2 999 1 -2.9 92.963
## 2352 52 152 2 999 1 -1.8 93.075
## 2353 42 264 1 999 1 -1.8 93.075
## 2354 26 140 3 999 1 -1.8 92.893
## 2355 36 449 1 999 1 -0.1 93.200
## 2356 49 57 1 999 1 -1.8 92.893
## 2357 56 119 1 999 1 -0.1 93.200
## 2358 27 371 1 999 2 -1.8 93.369
## 2359 27 86 1 999 1 -1.8 92.893
## 2360 27 98 1 999 1 -1.8 93.075
## 2361 39 434 2 999 1 -1.7 94.055
## 2362 59 340 1 999 1 -2.9 92.963
## 2363 35 272 4 999 1 -1.8 92.893
## 2364 43 66 1 999 1 -1.8 92.893
## 2365 42 355 1 999 1 -3.4 92.431
## 2366 58 92 1 999 1 -3.4 92.431
## 2367 37 12 5 999 1 -0.1 93.200
## 2368 40 208 6 999 1 -1.8 92.893
## 2369 51 281 2 999 1 -0.1 93.200
## 2370 39 71 1 999 1 -0.1 93.200
## 2371 51 286 6 999 1 -0.1 93.200
## 2372 50 120 1 999 1 -0.1 93.200
## 2373 35 107 2 999 1 -1.8 92.893
## 2374 54 267 1 999 1 -1.8 93.075
## 2375 40 262 2 999 1 -2.9 92.201
## 2376 58 101 1 999 1 -1.8 92.893
## 2377 32 215 6 999 1 -0.1 93.200
## 2378 35 371 1 999 1 -3.4 92.431
## 2379 34 240 1 999 1 -1.8 93.075
## 2380 40 210 1 999 1 -1.8 93.075
## 2381 34 89 3 999 1 -0.1 93.200
## 2382 35 429 2 999 1 -1.8 92.893
## 2383 30 496 1 999 1 -1.8 92.893
## 2384 31 250 1 999 1 -0.1 93.200
## 2385 52 652 2 999 1 -0.1 93.200
## 2386 37 232 2 999 1 -1.8 92.893
## 2387 24 467 3 6 3 -1.1 94.767
## 2388 42 200 1 999 1 -0.1 93.200
## 2389 32 105 1 999 1 -0.1 93.200
## 2390 50 333 1 999 2 -1.8 93.876
## 2391 35 91 1 999 1 -1.8 92.893
## 2392 29 307 2 999 1 -3.4 92.379
## 2393 49 135 1 999 2 -1.8 92.893
## 2394 29 94 1 999 2 -3.4 92.431
## 2395 28 48 4 999 1 -1.8 93.075
## 2396 62 248 1 999 2 -1.7 94.215
## 2397 45 84 1 999 1 -1.8 92.893
## 2398 43 141 1 999 1 -1.8 92.893
## 2399 42 13 2 999 1 -1.8 92.893
## 2400 31 174 2 999 1 -1.8 92.843
## 2401 24 51 1 999 1 -1.8 92.893
## 2402 37 26 6 999 1 -1.8 92.893
## 2403 32 361 1 999 1 -1.8 93.075
## 2404 35 376 2 999 1 -1.8 92.893
## 2405 48 1203 1 999 1 -1.8 92.893
## 2406 44 921 2 999 1 -1.8 93.075
## 2407 37 459 2 999 2 -3.4 92.649
## 2408 44 288 1 999 1 -1.8 92.893
## 2409 34 303 1 999 1 -1.8 93.075
## 2410 40 264 2 999 1 -1.8 93.075
## 2411 32 164 1 999 3 -1.1 94.601
## 2412 38 123 1 999 1 -1.8 93.075
## 2413 41 256 2 999 1 -1.8 92.893
## 2414 49 37 1 999 1 -0.1 93.200
## 2415 40 397 2 999 1 -2.9 92.201
## 2416 70 61 6 999 1 -1.8 92.843
## 2417 29 281 4 999 1 -1.8 92.893
## 2418 32 208 1 999 1 -1.8 93.075
## 2419 39 44 1 999 1 -1.8 92.893
## 2420 23 370 1 999 1 -2.9 92.469
## 2421 27 217 1 999 1 -1.8 92.893
## 2422 27 347 2 999 1 -1.8 92.893
## 2423 44 712 1 6 3 -1.7 94.055
## 2424 50 36 3 999 1 -1.8 92.893
## 2425 51 154 3 999 1 -1.8 92.893
## 2426 30 68 2 999 1 -1.8 92.893
## 2427 37 196 2 999 1 -1.8 93.075
## 2428 53 184 1 999 1 -0.1 93.200
## 2429 32 18 1 999 1 -1.8 92.893
## 2430 46 130 2 999 1 -0.1 93.200
## 2431 61 106 2 999 1 -3.4 92.431
## 2432 44 659 1 999 1 -1.8 92.893
## 2433 39 894 2 999 1 -1.8 92.893
## 2434 31 465 1 999 1 -1.8 92.893
## 2435 55 72 1 999 1 -2.9 92.201
## 2436 56 225 2 999 1 -1.8 92.893
## 2437 35 212 1 999 2 -1.1 94.767
## 2438 29 150 2 999 1 -1.8 92.893
## 2439 34 456 2 999 1 -1.8 92.893
## 2440 51 314 4 999 1 -1.8 92.893
## 2441 26 200 2 999 1 -1.8 92.893
## 2442 38 240 1 999 1 -0.1 93.200
## 2443 30 221 1 999 1 -3.4 92.379
## 2444 34 89 4 999 1 -1.8 92.893
## 2445 51 626 1 999 1 -3.4 92.431
## 2446 46 984 1 999 1 -1.8 92.893
## 2447 29 81 3 999 1 -1.8 92.893
## 2448 70 837 2 999 1 -3.4 92.431
## 2449 33 9 3 999 1 -1.8 92.893
## 2450 49 277 4 999 1 -1.8 93.369
## 2451 25 959 3 999 1 -1.8 92.893
## 2452 29 158 1 13 3 -1.8 93.876
## 2453 29 96 2 999 1 -1.8 93.075
## 2454 55 548 1 999 1 -1.8 93.075
## 2455 40 69 2 999 2 -2.9 92.201
## 2456 44 127 1 999 1 -1.8 92.893
## 2457 28 718 1 999 1 -1.8 92.893
## 2458 31 84 1 999 1 -2.9 92.963
## 2459 24 292 1 999 1 -1.7 94.055
## 2460 35 69 2 999 1 -1.8 92.893
## 2461 35 184 1 999 1 -1.8 92.893
## 2462 49 128 1 999 1 -2.9 92.963
## 2463 81 161 1 999 1 -3.4 92.649
## 2464 35 76 1 999 1 -0.1 93.200
## 2465 26 217 2 999 1 -1.8 92.893
## 2466 37 135 1 999 2 -1.7 94.055
## 2467 31 12 10 999 1 -1.8 92.893
## 2468 33 95 4 999 1 -1.8 92.893
## 2469 28 75 1 999 1 -2.9 92.201
## 2470 40 99 1 999 1 -0.1 93.200
## 2471 52 165 1 999 1 -0.1 93.200
## 2472 34 411 3 999 1 -0.1 93.200
## 2473 31 148 2 999 1 -1.8 92.893
## 2474 42 615 1 999 1 -1.8 93.075
## 2475 41 239 2 999 1 -1.8 93.075
## 2476 29 462 1 999 1 -1.8 93.075
## 2477 37 208 1 999 1 -1.8 92.893
## 2478 37 170 3 999 1 -1.8 92.893
## 2479 36 127 2 999 1 -1.8 92.893
## 2480 37 17 6 999 1 -1.8 93.075
## 2481 36 293 3 999 1 -1.8 92.893
## 2482 34 483 1 999 1 -1.8 92.893
## 2483 31 157 4 999 1 -3.4 92.431
## 2484 51 35 1 999 1 -1.8 93.075
## 2485 38 141 2 999 2 -1.8 93.075
## 2486 28 190 3 999 1 -2.9 92.201
## 2487 45 61 2 999 1 -0.1 93.200
## 2488 41 75 1 999 1 -2.9 92.201
## 2489 34 122 2 999 1 -1.8 92.893
## 2490 70 185 3 999 1 -2.9 92.201
## 2491 85 462 1 999 1 -1.8 93.749
## 2492 24 1426 2 999 1 -1.8 93.075
## 2493 40 71 2 999 1 -0.1 93.200
## 2494 30 195 1 999 3 -1.1 94.601
## 2495 36 187 1 999 1 -1.8 92.893
## 2496 31 367 2 999 1 -3.0 92.713
## 2497 69 103 1 999 1 -3.4 92.431
## 2498 29 215 3 999 1 -1.8 92.893
## 2499 19 182 1 999 1 -1.1 94.767
## 2500 31 611 1 999 1 -1.8 92.893
## 2501 33 69 1 999 1 -0.1 93.200
## 2502 25 105 4 999 1 -2.9 92.963
## 2503 33 328 2 999 1 -1.8 92.893
## 2504 24 222 1 17 4 -1.1 94.199
## 2505 41 1135 3 999 1 -1.8 92.893
## 2506 33 349 2 999 1 -1.8 92.893
## 2507 29 113 1 999 1 -2.9 92.963
## 2508 56 39 4 999 1 -0.1 93.200
## 2509 47 258 1 999 1 -0.1 93.200
## 2510 45 427 4 999 1 -1.8 93.075
## 2511 45 19 1 999 1 -1.8 92.893
## 2512 31 105 4 999 1 -0.1 93.200
## 2513 42 544 3 999 1 -1.8 93.075
## 2514 34 319 2 999 1 -1.8 92.893
## 2515 31 207 1 999 1 -1.8 92.893
## 2516 28 118 1 999 2 -1.8 92.893
## 2517 56 230 2 999 1 -1.7 94.215
## 2518 24 104 1 999 1 -1.8 93.075
## 2519 26 551 1 999 1 -1.8 92.893
## 2520 29 178 1 999 1 -0.1 93.200
## 2521 45 236 1 999 1 -1.8 92.893
## 2522 58 173 1 999 2 -1.1 94.767
## 2523 30 592 3 999 1 -1.7 94.027
## 2524 40 317 1 999 1 -1.8 92.893
## 2525 56 44 1 999 1 -0.1 93.200
## 2526 44 115 1 999 1 -0.1 93.200
## 2527 34 76 2 999 1 -1.8 92.893
## 2528 38 5 1 999 1 -1.7 94.215
## 2529 43 274 3 999 1 -1.8 92.893
## 2530 35 67 2 999 1 -2.9 92.963
## 2531 42 361 1 999 1 -2.9 92.469
## 2532 33 101 2 999 1 -0.1 93.200
## 2533 77 144 8 999 2 -1.7 94.027
## 2534 37 214 8 999 1 -1.8 92.893
## 2535 35 181 2 999 1 -1.8 92.893
## 2536 35 67 1 999 1 -1.8 92.893
## 2537 35 337 1 999 2 -1.8 93.749
## 2538 19 203 1 999 3 -1.8 93.876
## 2539 63 317 1 999 1 -2.9 92.469
## 2540 54 229 5 999 1 -1.8 92.893
## 2541 32 183 2 999 1 -2.9 92.963
## 2542 60 170 2 999 1 -1.1 94.601
## 2543 33 143 2 999 1 -1.8 93.749
## 2544 47 333 1 999 1 -1.1 94.601
## 2545 38 532 1 999 1 -1.8 92.893
## 2546 54 172 5 999 1 -1.8 93.876
## 2547 38 42 1 999 1 -1.8 92.893
## 2548 41 252 1 999 1 -1.7 94.027
## 2549 55 217 3 999 1 -1.8 92.893
## 2550 37 447 2 999 1 -1.8 92.893
## 2551 31 239 3 999 1 -1.8 92.893
## 2552 35 52 1 999 1 -0.1 93.200
## 2553 33 519 2 999 2 -1.8 92.893
## 2554 37 608 2 12 2 -1.1 94.601
## 2555 34 146 1 999 1 -1.8 93.075
## 2556 36 450 1 999 1 -2.9 92.963
## 2557 57 22 2 999 1 -0.1 93.200
## 2558 34 69 1 999 1 -0.1 93.200
## 2559 75 109 1 999 1 -1.8 93.075
## 2560 29 396 1 999 1 -1.8 92.893
## 2561 32 254 4 999 1 -1.8 92.893
## 2562 34 344 1 999 1 -1.8 93.075
## 2563 31 17 5 999 1 -0.1 93.200
## 2564 32 691 2 14 4 -1.1 94.601
## 2565 40 699 2 999 1 -2.9 92.201
## 2566 63 279 1 999 1 -2.9 92.201
## 2567 59 91 1 999 1 -2.9 92.201
## 2568 34 62 2 999 1 -0.1 93.200
## 2569 26 75 2 999 1 -3.4 92.431
## 2570 57 79 1 999 1 -0.1 93.200
## 2571 52 241 4 999 3 -1.7 94.055
## 2572 41 1203 2 999 1 -1.8 93.075
## 2573 37 151 2 999 1 -0.1 93.200
## 2574 41 826 1 999 1 -2.9 92.469
## 2575 48 1203 1 999 1 -1.8 92.893
## 2576 54 252 2 999 1 -0.1 93.200
## 2577 31 163 2 999 1 -1.8 92.893
## 2578 53 124 1 999 1 -1.8 92.893
## 2579 31 298 1 999 1 -0.1 93.200
## 2580 28 106 1 999 1 -1.8 92.893
## 2581 47 816 1 999 1 -1.8 92.893
## 2582 54 300 5 999 1 -0.1 93.200
## 2583 42 158 3 999 1 -1.8 92.893
## 2584 46 50 1 999 1 -0.1 93.200
## 2585 30 104 1 999 2 -1.1 94.199
## 2586 33 114 1 999 1 -1.8 93.075
## 2587 34 323 3 999 1 -1.8 92.893
## 2588 37 90 2 999 2 -3.4 92.649
## 2589 27 282 1 999 1 -1.8 92.893
## 2590 45 67 3 999 1 -2.9 92.201
## 2591 38 415 1 999 2 -3.0 92.713
## 2592 33 293 5 999 1 -0.1 93.200
## 2593 32 85 2 999 1 -0.1 93.200
## 2594 40 368 6 999 1 -1.8 93.075
## 2595 29 86 1 999 1 -0.1 93.200
## 2596 51 53 5 999 1 -1.8 92.893
## 2597 50 189 2 999 1 -0.1 93.200
## 2598 34 97 1 999 1 -1.8 92.893
## 2599 45 58 1 999 1 -0.1 93.200
## 2600 33 92 2 999 1 -1.8 92.893
## 2601 38 126 1 7 4 -3.4 92.649
## 2602 39 189 1 999 1 -1.8 92.893
## 2603 37 119 1 999 3 -1.1 94.767
## 2604 34 186 1 999 1 -1.8 92.893
## 2605 38 131 1 999 1 -0.1 93.200
## 2606 51 120 2 999 1 -0.1 93.200
## 2607 37 175 5 999 1 -1.8 92.893
## 2608 36 55 1 999 1 -1.8 92.893
## 2609 28 69 1 999 1 -2.9 92.963
## 2610 32 92 1 999 1 -0.1 93.200
## 2611 33 113 2 999 1 -1.8 93.075
## 2612 27 152 1 999 1 -1.8 92.893
## 2613 34 113 2 999 2 -1.8 93.075
## 2614 40 236 1 999 1 -1.8 93.075
## 2615 37 42 1 999 1 -1.8 92.893
## 2616 27 665 3 999 1 -1.8 92.893
## 2617 33 472 1 999 1 -1.7 94.055
## 2618 53 280 2 999 1 -1.8 93.075
## 2619 39 222 3 999 1 -0.1 93.200
## 2620 60 443 2 999 2 -1.7 94.027
## 2621 59 85 1 999 1 -2.9 92.201
## 2622 34 406 4 999 1 -1.8 92.893
## 2623 31 45 1 999 1 -1.8 92.893
## 2624 33 496 2 999 1 -1.8 92.893
## 2625 55 543 3 999 1 -1.8 92.893
## 2626 41 588 1 18 2 -1.8 93.876
## 2627 37 516 2 999 1 -3.4 92.649
## 2628 43 121 1 999 1 -1.8 93.075
## 2629 28 111 1 999 1 -2.9 92.201
## 2630 26 175 1 999 1 -2.9 92.963
## 2631 29 1435 3 999 1 -0.1 93.200
## 2632 35 86 2 999 1 -0.1 93.200
## 2633 29 128 2 999 1 -0.1 93.200
## 2634 42 206 2 999 1 -1.8 92.893
## 2635 53 188 1 999 1 -1.8 92.893
## 2636 75 109 1 999 1 -1.8 93.075
## 2637 27 339 2 999 1 -1.8 92.893
## 2638 29 264 2 999 1 -1.8 92.893
## 2639 45 174 1 999 1 -1.8 92.893
## 2640 48 124 1 999 1 -1.8 93.075
## 2641 41 74 2 999 1 -1.8 93.075
## 2642 47 173 1 999 1 -1.8 92.893
## 2643 75 109 1 999 1 -1.8 93.075
## 2644 32 505 1 999 1 -0.1 93.200
## 2645 32 396 1 999 1 -1.8 92.893
## 2646 58 205 1 999 1 -1.8 92.893
## 2647 53 167 1 999 1 -1.8 92.893
## 2648 36 5 3 999 1 -1.8 93.075
## 2649 31 308 1 999 2 -1.7 94.027
## 2650 31 102 1 999 1 -1.8 93.075
## 2651 38 266 2 999 1 -1.8 92.893
## 2652 39 861 6 999 1 -1.8 93.075
## 2653 25 142 2 999 1 -2.9 92.201
## 2654 32 178 2 999 1 -3.4 92.649
## 2655 47 63 5 999 1 -2.9 92.963
## 2656 36 208 1 999 1 -1.8 92.893
## 2657 41 57 8 999 1 -0.1 93.200
## 2658 39 328 2 999 1 -0.1 93.200
## 2659 32 235 2 999 1 -1.8 92.893
## 2660 47 93 1 999 1 -0.1 93.200
## 2661 46 169 1 999 1 -1.8 93.075
## 2662 73 179 1 999 1 -1.8 92.843
## 2663 57 81 1 999 1 -1.8 93.075
## 2664 38 202 5 999 1 -1.8 93.075
## 2665 38 136 2 999 1 -1.8 92.893
## 2666 37 171 1 999 1 -0.1 93.200
## 2667 52 126 1 999 2 -1.8 93.075
## 2668 30 170 2 999 1 -1.8 93.075
## 2669 49 34 1 999 1 -0.1 93.200
## 2670 72 582 2 999 1 -1.7 94.215
## 2671 39 149 1 999 1 -1.8 92.893
## 2672 40 293 2 999 4 -1.1 94.767
## 2673 60 143 2 15 2 -1.7 94.027
## 2674 37 62 1 999 1 -1.8 93.075
## 2675 31 829 1 999 1 -1.8 92.893
## 2676 36 199 1 999 1 -1.8 92.893
## 2677 51 316 2 999 1 -1.8 92.893
## 2678 37 729 1 999 1 -1.1 94.199
## 2679 54 268 1 999 1 -1.1 94.601
## 2680 29 146 3 999 1 -0.1 93.200
## 2681 32 134 1 999 1 -1.8 92.893
## 2682 30 155 1 999 1 -1.8 92.893
## 2683 36 323 2 999 1 -1.8 93.075
## 2684 39 427 2 999 1 -1.8 92.893
## 2685 50 58 1 999 1 -0.1 93.200
## 2686 37 156 1 999 1 -1.8 93.075
## 2687 39 143 1 999 1 -1.8 92.893
## 2688 61 228 2 999 1 -1.8 93.876
## 2689 58 180 1 999 1 -0.1 93.200
## 2690 54 150 2 999 1 -0.1 93.200
## 2691 34 256 2 999 1 -1.1 94.601
## 2692 59 210 2 999 1 -2.9 92.201
## 2693 43 180 1 6 2 -2.9 92.201
## 2694 31 304 2 999 1 -1.8 92.893
## 2695 54 397 1 999 1 -1.8 92.893
## 2696 33 165 1 999 1 -1.8 92.893
## 2697 47 88 1 999 1 -0.1 93.200
## 2698 42 878 3 999 1 -1.8 92.893
## 2699 30 14 6 999 1 -1.8 92.893
## 2700 37 106 1 999 2 -1.8 93.876
## 2701 37 149 1 999 1 -1.8 92.893
## 2702 51 359 2 999 1 -0.1 93.200
## 2703 46 270 1 999 1 -1.8 92.893
## 2704 39 57 4 999 1 -0.1 93.200
## 2705 44 131 1 999 1 -1.8 92.893
## 2706 36 211 3 999 1 -1.8 92.893
## 2707 33 519 2 999 2 -1.8 92.893
## 2708 41 261 1 999 1 -1.8 92.893
## 2709 41 163 5 999 1 -1.8 92.893
## 2710 37 199 1 999 1 -1.8 92.893
## 2711 33 243 2 999 1 -1.8 93.075
## 2712 28 261 1 999 1 -1.7 94.027
## 2713 49 56 1 999 2 -3.4 92.431
## 2714 24 200 3 999 1 -1.8 93.075
## 2715 53 888 2 999 1 -0.1 93.200
## 2716 37 259 1 999 1 -0.1 93.200
## 2717 29 567 3 13 2 -1.8 93.876
## 2718 42 146 1 999 1 -1.8 92.893
## 2719 43 177 1 999 1 -3.4 92.649
## 2720 53 247 5 999 2 -1.8 93.369
## 2721 42 77 2 999 1 -1.8 92.893
## 2722 29 142 1 999 1 -0.1 93.200
## 2723 33 296 5 999 1 -1.8 92.893
## 2724 34 347 1 999 1 -1.8 92.893
## 2725 32 114 1 999 1 -1.8 93.075
## 2726 54 265 2 999 1 -1.8 92.893
## 2727 30 75 1 999 1 -1.8 92.893
## 2728 50 549 1 999 1 -1.8 92.893
## 2729 50 160 1 999 1 -2.9 92.963
## 2730 51 194 1 999 1 -1.8 92.893
## 2731 30 119 3 999 1 -1.8 92.893
## 2732 37 188 2 999 1 -0.1 93.200
## 2733 27 130 2 999 1 -2.9 92.201
## 2734 34 183 2 999 1 -0.1 93.200
## 2735 41 181 1 999 1 -2.9 92.469
## 2736 37 570 1 999 1 -3.4 92.431
## 2737 35 536 1 999 1 -1.8 92.893
## 2738 34 113 1 999 1 -0.1 93.200
## 2739 43 135 3 999 1 -1.8 92.893
## 2740 34 253 2 999 1 -1.8 92.843
## 2741 50 95 7 999 1 -2.9 92.963
## 2742 47 21 3 999 1 -0.1 93.200
## 2743 29 364 2 999 1 -1.8 92.893
## 2744 31 829 1 999 1 -1.8 92.893
## 2745 32 2184 2 999 1 -3.4 92.649
## 2746 80 242 1 999 2 -3.4 92.431
## 2747 35 229 1 999 1 -1.8 93.075
## 2748 72 207 8 999 1 -2.9 92.201
## 2749 78 234 1 999 1 -3.4 92.379
## 2750 47 222 1 999 1 -1.8 93.075
## 2751 34 149 2 999 1 -0.1 93.200
## 2752 44 58 1 999 1 -1.8 92.893
## 2753 36 184 2 999 1 -1.8 92.893
## 2754 34 159 1 999 1 -1.8 92.893
## 2755 57 265 5 999 1 -1.8 92.893
## 2756 31 97 2 999 1 -0.1 93.200
## 2757 39 199 1 999 1 -1.8 92.893
## 2758 34 82 1 999 1 -0.1 93.200
## 2759 29 76 1 999 2 -1.8 92.893
## 2760 37 68 1 999 1 -0.1 93.200
## 2761 26 215 1 999 1 -2.9 92.201
## 2762 57 199 2 999 1 -1.8 93.075
## 2763 36 146 1 999 1 -3.4 92.431
## 2764 24 352 2 999 1 -2.9 92.963
## 2765 36 253 3 999 1 -1.8 92.893
## 2766 29 90 1 999 1 -1.8 92.893
## 2767 37 104 2 999 1 -1.8 92.893
## 2768 78 234 1 999 1 -3.4 92.379
## 2769 85 462 1 999 1 -1.8 93.749
## 2770 40 54 1 999 1 -2.9 92.201
## 2771 50 67 1 999 1 -1.8 92.893
## 2772 40 202 3 999 1 -1.8 93.075
## 2773 30 1038 1 999 1 -1.8 92.893
## 2774 57 71 1 5 2 -2.9 92.201
## 2775 49 79 2 999 1 -0.1 93.200
## 2776 38 220 1 999 1 -1.8 93.075
## 2777 43 126 2 999 1 -1.8 92.893
## 2778 43 377 1 999 1 -1.7 94.215
## 2779 39 182 1 999 1 -1.8 93.075
## 2780 36 156 1 999 1 -1.8 92.893
## 2781 43 87 2 999 1 -1.8 93.075
## 2782 35 58 1 999 1 -1.8 93.075
## 2783 36 67 1 999 1 -1.8 92.893
## 2784 29 258 4 999 1 -1.8 92.893
## 2785 27 472 6 999 1 -1.8 92.893
## 2786 59 416 1 999 1 -1.8 93.075
## 2787 32 326 3 999 1 -1.8 92.893
## 2788 26 215 1 999 1 -2.9 92.201
## 2789 41 105 2 999 1 -0.1 93.200
## 2790 49 188 1 999 1 -0.1 93.200
## 2791 38 350 2 999 2 -1.8 92.843
## 2792 32 100 1 999 1 -0.1 93.200
## 2793 29 54 1 999 1 -1.8 92.893
## 2794 42 551 1 999 1 -1.8 92.893
## 2795 33 143 3 999 1 -1.8 92.893
## 2796 46 231 1 999 1 -1.8 92.893
## 2797 33 174 1 999 1 -0.1 93.200
## 2798 29 29 2 999 1 -1.8 92.893
## 2799 29 152 1 999 1 -1.8 92.893
## 2800 30 142 3 999 1 -1.8 92.893
## 2801 31 165 2 999 1 -0.1 93.200
## 2802 25 67 1 999 1 -2.9 92.963
## 2803 42 185 1 7 3 -1.8 93.369
## 2804 58 109 1 999 1 -1.8 92.893
## 2805 76 136 1 999 2 -1.1 94.199
## 2806 45 207 1 999 1 -1.8 92.893
## 2807 25 304 3 12 2 -1.8 92.893
## 2808 24 332 1 999 1 -1.8 93.075
## 2809 36 332 1 999 1 -3.4 92.431
## 2810 38 37 3 999 1 -1.8 92.893
## 2811 29 240 3 999 1 -1.8 92.893
## 2812 27 680 1 999 1 -1.8 92.893
## 2813 44 1210 2 999 1 -0.1 93.200
## 2814 35 345 2 999 1 -1.8 92.893
## 2815 27 282 4 999 1 -1.8 92.893
## 2816 39 120 1 999 1 -1.8 93.075
## 2817 83 257 1 999 3 -1.7 94.215
## 2818 31 215 1 999 1 -0.1 93.200
## 2819 32 209 2 999 1 -1.8 92.893
## 2820 53 61 2 999 1 -0.1 93.200
## 2821 43 1011 1 999 1 -0.1 93.200
## 2822 36 490 3 999 2 -1.8 93.075
## 2823 56 1573 2 999 1 -3.4 92.431
## 2824 30 155 2 999 1 -1.8 92.893
## 2825 40 77 1 999 1 -1.8 93.075
## 2826 48 61 7 999 1 -0.1 93.200
## 2827 37 80 1 999 1 -2.9 92.963
## 2828 33 358 2 999 1 -1.8 92.893
## 2829 34 121 1 999 1 -1.8 93.075
## 2830 38 26 1 999 2 -1.8 92.893
## 2831 31 84 1 999 1 -1.8 93.075
## 2832 43 73 2 999 1 -0.1 93.200
## 2833 34 205 3 999 1 -0.1 93.200
## 2834 36 50 1 999 1 -1.8 92.893
## 2835 44 144 2 999 1 -1.8 92.893
## 2836 54 335 1 999 1 -1.8 92.893
## 2837 79 464 1 999 1 -1.7 94.215
## 2838 58 154 1 999 1 -3.0 92.713
## 2839 50 146 1 999 1 -0.1 93.200
## 2840 35 444 1 999 1 -2.9 92.963
## 2841 37 326 5 999 2 -1.8 92.893
## 2842 57 674 2 999 1 -1.8 92.893
## 2843 68 1248 2 999 1 -3.4 92.649
## 2844 32 100 4 999 1 -1.8 92.893
## 2845 56 50 1 999 1 -1.8 92.893
## 2846 37 82 2 999 1 -1.8 92.893
## 2847 28 216 1 999 1 -1.8 92.893
## 2848 40 74 8 999 1 -1.8 92.893
## 2849 44 82 2 999 1 -1.8 92.893
## 2850 36 297 2 999 1 -1.8 92.893
## 2851 46 179 5 999 2 -1.8 93.075
## 2852 58 451 2 999 1 -1.8 92.893
## 2853 32 62 6 999 1 -1.8 92.893
## 2854 44 200 1 999 1 -0.1 93.200
## 2855 47 903 2 999 1 -1.8 93.075
## 2856 23 16 5 999 1 -1.8 92.893
## 2857 27 117 1 999 1 -1.8 92.893
## 2858 58 74 2 999 2 -1.8 92.893
## 2859 27 670 4 999 1 -1.8 92.893
## 2860 48 50 1 999 1 -0.1 93.200
## 2861 76 168 1 999 1 -1.8 93.876
## 2862 45 160 1 999 1 -1.8 92.893
## 2863 30 405 1 999 2 -1.8 92.893
## 2864 26 541 1 999 2 -1.1 94.601
## 2865 35 51 1 999 1 -0.1 93.200
## 2866 43 87 2 999 1 -1.8 93.075
## 2867 38 456 1 999 1 -1.8 93.075
## 2868 45 132 1 999 1 -1.8 92.893
## 2869 49 132 1 999 1 -1.8 92.893
## 2870 35 159 2 999 1 -0.1 93.200
## 2871 58 266 1 999 1 -1.8 93.075
## 2872 34 321 4 999 3 -1.8 93.876
## 2873 47 267 2 999 1 -1.8 93.075
## 2874 35 137 1 999 1 -1.8 92.893
## 2875 19 110 2 999 3 -3.0 92.713
## 2876 46 187 1 999 1 -0.1 93.200
## 2877 35 178 2 999 1 -1.8 92.893
## 2878 38 309 1 999 1 -1.8 92.893
## 2879 54 119 1 999 1 -0.1 93.200
## 2880 39 313 1 999 1 -1.8 92.893
## 2881 49 340 2 999 1 -0.1 93.200
## 2882 37 180 3 999 1 -1.8 92.893
## 2883 26 191 2 999 1 -1.8 92.893
## 2884 35 185 2 999 1 -0.1 93.200
## 2885 23 7 5 999 1 -1.8 92.893
## 2886 55 87 2 999 1 -1.8 93.075
## 2887 58 164 1 999 1 -3.4 92.431
## 2888 35 334 1 999 1 -1.8 92.893
## 2889 41 105 5 999 1 -0.1 93.200
## 2890 37 242 2 999 1 -0.1 93.200
## 2891 29 32 2 999 1 -1.8 93.075
## 2892 31 408 1 999 1 -0.1 93.200
## 2893 58 321 3 999 1 -0.1 93.200
## 2894 43 1388 7 999 1 -1.8 92.893
## 2895 41 163 1 999 1 -0.1 93.200
## 2896 34 41 1 999 1 -1.8 92.893
## 2897 59 324 2 999 1 -1.8 92.893
## 2898 29 34 1 999 1 -1.8 92.893
## 2899 33 637 4 999 1 -1.8 92.893
## 2900 35 414 2 999 1 -1.8 92.893
## 2901 35 209 1 999 2 -3.4 92.649
## 2902 33 5 1 999 1 -1.1 94.199
## 2903 70 90 3 999 1 -2.9 92.201
## 2904 28 62 2 999 1 -1.1 94.199
## 2905 31 7 11 999 1 -1.8 92.893
## 2906 50 126 2 999 1 -1.8 92.893
## 2907 52 423 1 999 1 -1.8 92.893
## 2908 45 384 1 999 1 -0.1 93.200
## 2909 38 13 4 999 1 -1.8 93.075
## 2910 43 107 3 999 1 -1.8 92.893
## 2911 47 113 2 999 1 -1.7 94.027
## 2912 58 144 2 999 1 -1.8 93.369
## 2913 58 487 1 999 2 -3.4 92.649
## 2914 24 467 3 6 3 -1.1 94.767
## 2915 55 129 2 999 1 -1.7 94.215
## 2916 35 280 2 999 1 -1.8 92.893
## 2917 74 184 2 14 2 -1.8 93.749
## 2918 32 693 5 999 1 -1.8 92.893
## 2919 36 133 1 999 1 -3.4 92.431
## 2920 35 523 2 999 1 -1.8 92.893
## 2921 34 17 4 999 1 -1.8 92.893
## 2922 32 101 2 999 1 -1.8 92.893
## 2923 32 813 2 999 1 -1.8 92.893
## 2924 44 113 1 999 1 -1.8 93.876
## 2925 27 124 2 999 1 -1.8 92.893
## 2926 47 225 4 999 1 -1.8 93.075
## 2927 29 43 4 999 1 -0.1 93.200
## 2928 34 163 1 999 1 -1.8 92.893
## 2929 53 166 1 999 1 -0.1 93.200
## 2930 51 841 2 999 2 -1.1 94.199
## 2931 38 697 2 999 1 -0.1 93.200
## 2932 45 116 2 999 1 -1.8 93.075
## 2933 64 427 1 999 1 -3.4 92.431
## 2934 31 208 1 999 1 -1.8 93.075
## 2935 27 313 1 999 1 -1.8 92.893
## 2936 22 162 2 999 1 -2.9 92.201
## 2937 35 173 1 999 1 -1.8 92.893
## 2938 27 99 6 999 1 -2.9 92.469
## 2939 46 159 2 999 1 -1.8 92.893
## 2940 66 881 3 999 1 -1.8 93.369
## 2941 57 334 2 999 1 -1.8 92.893
## 2942 40 234 5 999 1 -0.1 93.200
## 2943 34 905 1 999 1 -0.1 93.200
## 2944 53 705 1 999 1 -2.9 92.963
## 2945 29 302 1 999 1 -1.8 92.893
## 2946 49 145 1 999 1 -1.8 92.893
## 2947 38 515 1 999 1 -1.8 92.893
## 2948 50 475 6 999 1 -1.8 93.075
## 2949 34 346 1 999 1 -1.7 94.215
## 2950 29 54 1 999 1 -1.8 93.075
## 2951 52 211 1 999 1 -3.4 92.379
## 2952 39 483 1 999 1 -0.1 93.200
## 2953 52 6 1 999 1 -1.1 94.601
## 2954 42 55 1 999 1 -0.1 93.200
## 2955 56 80 3 999 1 -1.8 92.893
## 2956 58 164 5 999 1 -1.8 93.369
## 2957 33 289 1 999 1 -1.7 94.215
## 2958 33 194 1 999 1 -1.8 92.893
## 2959 47 74 6 999 2 -1.8 92.893
## 2960 28 65 3 999 1 -1.8 92.893
## 2961 59 240 3 999 1 -2.9 92.201
## 2962 21 259 1 999 1 -2.9 92.201
## 2963 45 29 6 999 1 -1.8 92.893
## 2964 33 205 1 999 1 -1.8 92.893
## 2965 41 364 1 999 1 -1.8 92.893
## 2966 29 232 1 999 1 -1.8 93.876
## 2967 35 92 2 999 1 -2.9 92.963
## 2968 40 317 1 999 1 -1.8 92.893
## 2969 44 283 1 999 2 -3.4 92.431
## 2970 55 123 2 999 1 -0.1 93.200
## 2971 36 300 1 999 1 -1.8 92.893
## 2972 81 170 2 999 1 -1.8 92.893
## 2973 32 56 1 999 1 -1.8 92.893
## 2974 67 68 4 999 1 -3.4 92.649
## 2975 48 95 1 999 1 -1.8 93.075
## 2976 30 1038 1 999 1 -1.8 92.893
## 2977 40 239 1 999 1 -1.8 92.893
## 2978 45 71 2 999 1 -0.1 93.200
## 2979 39 165 2 999 1 -1.7 94.055
## 2980 29 281 4 999 1 -1.8 92.893
## 2981 29 2129 1 999 1 -1.8 93.075
## 2982 34 111 2 999 1 -0.1 93.200
## 2983 66 147 2 999 1 -2.9 92.201
## 2984 57 187 1 999 1 -2.9 92.201
## 2985 54 39 1 999 1 -1.8 92.893
## 2986 58 398 2 999 1 -2.9 92.201
## 2987 57 114 2 999 1 -1.1 94.199
## 2988 42 103 2 999 1 -0.1 93.200
## 2989 36 85 1 999 1 -1.8 92.893
## 2990 30 62 4 999 1 -1.8 92.893
## 2991 35 404 1 999 1 -1.8 92.893
## 2992 26 235 1 999 1 -1.7 94.215
## 2993 52 38 2 999 1 -1.8 92.893
## 2994 39 124 3 999 2 -1.8 92.893
## 2995 38 508 1 999 1 -0.1 93.200
## 2996 40 825 6 999 1 -0.1 93.200
## 2997 27 127 3 999 1 -1.8 93.749
## 2998 30 268 5 10 2 -1.8 92.843
## 2999 44 130 1 999 1 -0.1 93.200
## 3000 36 104 1 999 2 -3.4 92.431
## 3001 36 267 1 999 1 -1.8 92.893
## 3002 47 583 2 999 1 -1.8 93.075
## 3003 30 316 1 999 1 -1.8 93.075
## 3004 32 61 4 999 1 -1.8 92.893
## 3005 31 39 1 999 1 -1.8 93.075
## 3006 45 96 2 999 1 -1.8 92.893
## 3007 34 138 1 999 1 -3.4 92.431
## 3008 49 277 4 999 1 -1.8 93.369
## 3009 47 234 2 999 1 -1.8 92.893
## 3010 33 37 2 999 1 -0.1 93.200
## 3011 41 155 1 999 1 -0.1 93.200
## 3012 42 42 2 999 1 -1.8 92.893
## 3013 32 68 10 999 1 -1.8 92.893
## 3014 52 10 7 999 1 -0.1 93.200
## 3015 32 74 2 999 1 -0.1 93.200
## 3016 46 248 1 999 1 -0.1 93.200
## 3017 81 263 1 999 1 -3.4 92.649
## 3018 46 199 2 999 2 -1.1 94.767
## 3019 28 101 2 999 2 -1.7 94.215
## 3020 27 217 1 999 2 -3.4 92.649
## 3021 43 69 1 999 1 -1.8 92.893
## 3022 39 171 2 999 1 -3.4 92.379
## 3023 38 31 3 999 1 -1.8 93.075
## 3024 36 191 1 999 1 -1.8 92.893
## 3025 46 125 1 999 1 -0.1 93.200
## 3026 30 218 1 999 1 -1.8 93.075
## 3027 36 187 1 999 1 -0.1 93.200
## 3028 29 101 5 999 1 -1.8 92.893
## 3029 39 239 1 999 1 -1.8 92.893
## 3030 29 479 1 999 1 -1.8 93.075
## 3031 29 241 2 999 1 -1.8 92.893
## 3032 44 223 2 999 1 -1.8 92.893
## 3033 33 48 2 999 1 -1.8 92.893
## 3034 33 787 10 999 1 -1.8 92.893
## 3035 51 254 1 999 1 -1.8 92.893
## 3036 37 300 1 999 2 -1.7 94.055
## 3037 35 262 3 999 1 -1.8 93.749
## 3038 34 155 4 999 1 -1.1 94.199
## 3039 31 87 3 999 1 -1.8 92.893
## 3040 35 425 2 999 1 -2.9 92.201
## 3041 30 210 1 999 1 -1.1 94.199
## 3042 52 20 5 999 1 -1.8 93.075
## 3043 32 135 3 999 1 -3.0 92.713
## 3044 35 90 2 999 1 -0.1 93.200
## 3045 28 442 1 999 1 -1.8 92.893
## 3046 60 133 6 999 2 -3.4 92.431
## 3047 48 99 3 999 1 -3.4 92.379
## 3048 34 104 2 999 1 -1.8 92.893
## 3049 60 599 1 999 1 -3.4 92.431
## 3050 31 78 1 999 1 -1.8 92.893
## 3051 35 986 1 7 3 -3.4 92.649
## 3052 29 419 1 999 1 -1.8 92.893
## 3053 27 94 2 999 1 -1.8 92.893
## 3054 37 49 3 999 1 -1.8 92.893
## 3055 36 38 1 999 2 -1.8 92.893
## 3056 56 104 1 999 1 -0.1 93.200
## 3057 20 190 2 999 1 -2.9 92.201
## 3058 33 731 3 999 1 -1.8 92.893
## 3059 29 122 1 999 2 -1.8 93.876
## 3060 31 43 1 999 1 -1.8 92.893
## 3061 37 180 2 999 1 -1.8 93.075
## 3062 42 104 3 999 1 -3.4 92.649
## 3063 52 139 2 999 1 -0.1 93.200
## 3064 24 362 1 999 1 -1.8 92.893
## 3065 31 156 1 999 1 -1.8 92.893
## 3066 31 239 1 999 1 -1.8 93.075
## 3067 49 74 1 999 1 -1.8 93.075
## 3068 31 424 2 999 2 -1.8 93.075
## 3069 32 65 1 999 1 -1.8 93.075
## 3070 54 639 2 999 1 -0.1 93.200
## 3071 48 121 4 999 1 -1.8 93.876
## 3072 31 187 1 999 1 -1.8 92.893
## 3073 36 96 1 999 1 -2.9 92.201
## 3074 52 130 2 999 1 -0.1 93.200
## 3075 47 138 1 999 1 -0.1 93.200
## 3076 38 149 2 999 1 -1.1 94.199
## 3077 51 97 6 6 4 -1.1 94.199
## 3078 49 85 4 999 1 -1.8 92.893
## 3079 35 104 4 999 1 -1.8 92.893
## 3080 36 320 1 999 2 -3.4 92.649
## 3081 35 82 5 999 1 -1.8 92.893
## 3082 43 48 2 999 1 -1.8 93.075
## 3083 32 132 1 999 1 -1.8 92.893
## 3084 36 291 1 999 1 -1.8 93.075
## 3085 34 340 2 999 1 -1.8 92.893
## 3086 48 214 1 999 1 -1.8 92.893
## 3087 61 238 2 999 2 -1.1 94.601
## 3088 38 518 2 999 1 -1.8 93.075
## 3089 46 403 1 999 1 -1.8 92.893
## 3090 39 187 1 999 1 -0.1 93.200
## 3091 30 242 4 999 1 -1.8 93.749
## 3092 38 52 2 999 1 -1.8 92.893
## 3093 48 56 1 999 1 -1.8 92.893
## 3094 38 174 3 999 1 -1.8 92.893
## 3095 33 392 1 999 1 -1.8 92.893
## 3096 49 48 1 999 1 -0.1 93.200
## 3097 32 128 3 999 2 -1.1 94.199
## 3098 46 174 1 999 1 -0.1 93.200
## 3099 55 687 1 999 2 -1.7 94.215
## 3100 30 332 1 999 1 -0.1 93.200
## 3101 43 79 1 999 1 -1.8 92.893
## 3102 30 340 3 999 1 -1.8 92.893
## 3103 26 81 1 999 1 -3.4 92.379
## 3104 37 17 1 999 1 -0.1 93.200
## 3105 40 151 4 999 1 -1.8 92.893
## 3106 62 220 3 999 1 -1.7 94.215
## 3107 37 435 2 999 1 -1.8 93.075
## 3108 32 161 2 999 1 -1.8 93.075
## 3109 43 157 7 999 1 -1.8 92.893
## 3110 34 64 1 999 1 -0.1 93.200
## 3111 35 371 1 999 1 -3.4 92.431
## 3112 31 299 2 999 1 -1.8 92.893
## 3113 40 43 1 999 1 -1.8 92.893
## 3114 25 159 2 10 4 -1.7 94.027
## 3115 34 54 1 999 1 -0.1 93.200
## 3116 51 228 2 999 1 -1.8 92.893
## 3117 35 82 2 999 1 -1.8 92.893
## 3118 32 162 4 999 1 -1.8 92.893
## 3119 20 250 1 999 1 -1.1 94.601
## 3120 25 261 1 999 1 -1.8 92.893
## 3121 31 131 1 999 1 -0.1 93.200
## 3122 39 172 2 999 1 -1.8 92.893
## 3123 48 151 1 999 1 -1.8 93.369
## 3124 44 55 1 999 2 -1.8 92.893
## 3125 33 519 2 999 2 -1.8 92.893
## 3126 36 342 1 999 2 -3.4 92.431
## 3127 37 89 1 999 1 -3.4 92.431
## 3128 31 611 1 999 1 -1.8 92.893
## 3129 35 263 1 999 1 -1.8 92.893
## 3130 26 61 4 999 1 -1.8 92.893
## 3131 36 1064 3 999 1 -1.8 93.075
## 3132 32 218 1 999 1 -1.8 93.075
## 3133 51 135 2 999 1 -2.9 92.469
## 3134 33 510 1 999 1 -1.1 94.767
## 3135 56 240 2 999 1 -1.8 92.893
## 3136 54 90 1 999 1 -2.9 92.201
## 3137 39 243 1 999 1 -1.8 92.893
## 3138 33 164 2 999 1 -1.8 92.893
## 3139 36 168 5 999 1 -1.8 92.893
## 3140 44 79 3 999 1 -1.8 92.893
## 3141 24 319 1 999 1 -2.9 92.201
## 3142 32 234 1 999 1 -0.1 93.200
## 3143 40 162 1 999 1 -2.9 92.201
## 3144 29 396 2 999 1 -1.8 92.893
## 3145 28 589 3 999 1 -3.4 92.379
## 3146 41 309 1 999 1 -1.8 92.893
## 3147 41 50 2 999 1 -1.8 93.075
## 3148 37 163 1 999 1 -3.4 92.649
## 3149 43 1084 1 999 1 -0.1 93.200
## 3150 39 68 1 999 1 -1.8 92.893
## 3151 35 169 1 999 1 -1.8 92.893
## 3152 45 150 3 999 1 -2.9 92.201
## 3153 42 455 2 999 1 -1.8 92.893
## 3154 31 160 2 999 1 -1.8 92.893
## 3155 32 343 6 999 1 -1.8 92.893
## 3156 52 9 5 999 1 -1.8 93.075
## 3157 41 1203 2 999 1 -1.8 93.075
## 3158 24 115 1 999 1 -2.9 92.469
## 3159 39 400 2 999 1 -1.8 92.893
## 3160 33 498 1 999 1 -1.8 92.893
## 3161 39 459 1 999 1 -2.9 92.963
## 3162 35 110 2 18 2 -1.1 94.199
## 3163 31 611 1 999 1 -1.8 92.893
## 3164 58 64 1 999 1 -0.1 93.200
## 3165 30 162 2 9 2 -1.1 94.199
## 3166 46 96 2 999 1 -1.8 92.893
## 3167 24 367 1 999 2 -1.1 94.199
## 3168 45 136 1 999 1 -0.1 93.200
## 3169 32 205 4 999 1 -3.0 92.713
## 3170 27 116 1 4 2 -3.4 92.649
## 3171 30 354 1 999 1 -1.8 92.893
## 3172 78 234 1 999 1 -3.4 92.379
## 3173 30 405 1 999 3 -1.1 94.199
## 3174 59 94 2 999 1 -1.8 92.893
## 3175 56 361 1 12 4 -1.7 94.027
## 3176 32 196 2 999 1 -1.8 92.893
## 3177 25 232 3 999 1 -1.8 93.749
## 3178 41 884 1 999 1 -1.8 93.075
## 3179 38 305 1 999 1 -0.1 93.200
## 3180 33 211 2 999 1 -1.8 93.075
## 3181 56 124 1 999 1 -0.1 93.200
## 3182 39 286 2 999 1 -1.8 93.075
## 3183 33 787 10 999 1 -1.8 92.893
## 3184 41 135 1 999 1 -0.1 93.200
## 3185 36 27 6 999 1 -1.8 92.893
## 3186 29 138 1 999 1 -0.1 93.200
## 3187 36 243 1 999 1 -2.9 92.469
## 3188 44 56 1 999 1 -1.8 93.075
## 3189 59 1397 3 999 1 -1.8 93.749
## 3190 28 155 1 999 1 -1.8 92.893
## 3191 25 72 2 999 1 -1.8 92.893
## 3192 39 273 4 999 1 -1.8 92.893
## 3193 38 311 1 999 1 -1.8 93.075
## 3194 44 804 2 999 1 -1.8 93.075
## 3195 39 83 1 999 1 -1.8 92.893
## 3196 30 105 1 999 1 -1.8 93.369
## 3197 43 36 5 999 1 -1.8 92.893
## 3198 33 557 1 999 1 -1.8 92.893
## 3199 46 382 1 999 1 -1.7 94.027
## 3200 49 49 1 999 1 -1.8 92.893
## 3201 31 829 1 999 1 -1.8 92.893
## 3202 64 79 4 999 2 -3.4 92.649
## 3203 47 253 1 999 1 -0.1 93.200
## 3204 26 716 3 999 1 -1.8 92.893
## 3205 39 91 1 999 1 -1.8 93.075
## 3206 27 411 6 999 1 -1.8 92.893
## 3207 43 303 1 999 1 -1.8 93.075
## 3208 35 172 2 999 1 -0.1 93.200
## 3209 39 445 2 999 1 -1.8 92.893
## 3210 45 182 2 999 1 -1.8 92.893
## 3211 34 291 1 999 1 -1.8 92.893
## 3212 44 133 2 999 1 -1.8 92.893
## 3213 28 267 1 999 1 -1.8 92.893
## 3214 29 144 1 999 1 -1.8 92.893
## 3215 48 166 1 999 1 -1.7 94.027
## 3216 27 253 1 999 1 -1.8 92.893
## 3217 32 309 3 999 1 -1.8 92.893
## 3218 35 266 1 999 1 -2.9 92.963
## 3219 67 218 1 999 1 -1.1 94.601
## 3220 38 270 4 999 1 -1.8 92.893
## 3221 60 481 1 999 1 -1.1 94.199
## 3222 36 331 1 6 4 -1.1 94.199
## 3223 44 159 2 999 1 -1.1 94.601
## 3224 28 217 1 999 1 -1.8 93.369
## 3225 48 355 5 999 1 -1.8 92.893
## 3226 58 315 3 999 1 -1.8 92.893
## 3227 51 502 1 999 2 -1.8 92.893
## 3228 26 75 10 999 2 -1.8 92.893
## 3229 33 105 1 999 1 -0.1 93.200
## 3230 36 87 1 999 2 -2.9 92.201
## 3231 27 129 4 999 1 -1.8 93.369
## 3232 50 278 6 999 1 -0.1 93.200
## 3233 30 1038 1 999 1 -1.8 92.893
## 3234 40 131 2 999 1 -0.1 93.200
## 3235 58 88 3 999 2 -1.8 93.369
## 3236 32 211 1 999 1 -1.8 92.893
## 3237 44 84 1 999 1 -1.8 92.893
## 3238 33 1075 1 999 1 -1.8 92.893
## 3239 50 63 3 999 1 -1.8 92.893
## 3240 45 319 1 999 3 -1.1 94.767
## 3241 38 306 1 999 1 -0.1 93.200
## 3242 31 204 2 999 1 -1.8 92.893
## 3243 28 257 4 999 2 -1.8 93.369
## 3244 47 58 1 999 1 -1.8 92.893
## 3245 34 195 2 999 1 -1.8 92.893
## 3246 38 172 1 999 1 -1.8 92.893
## 3247 34 121 2 999 1 -3.4 92.649
## 3248 27 384 1 9 2 -1.8 93.369
## 3249 50 136 2 999 1 -0.1 93.200
## 3250 34 442 2 999 1 -1.8 92.893
## 3251 27 184 1 999 1 -1.1 94.601
## 3252 23 70 3 999 1 -1.8 92.893
## 3253 32 134 1 999 1 -1.8 92.893
## 3254 26 176 2 999 1 -2.9 92.201
## 3255 41 102 2 999 1 -1.8 92.893
## 3256 46 490 3 999 4 -1.1 94.199
## 3257 29 88 1 999 2 -2.9 92.201
## 3258 69 93 1 999 1 -2.9 92.201
## 3259 30 124 2 999 1 -1.8 92.893
## 3260 81 161 1 999 1 -3.4 92.649
## 3261 33 157 2 15 3 -1.8 93.876
## 3262 34 407 3 8 3 -1.8 93.876
## 3263 26 176 2 999 1 -2.9 92.201
## 3264 49 135 2 999 1 -1.8 92.893
## 3265 36 193 2 999 1 -0.1 93.200
## 3266 30 399 2 999 1 -0.1 93.200
## 3267 38 559 1 999 1 -0.1 93.200
## 3268 19 207 2 999 1 -3.4 92.379
## 3269 48 301 1 999 2 -1.1 94.767
## 3270 41 69 1 999 1 -1.8 93.075
## 3271 36 327 3 999 1 -1.8 92.893
## 3272 80 411 1 999 1 -1.1 94.601
## 3273 40 96 2 999 1 -1.8 93.075
## 3274 58 159 1 999 1 -1.8 92.893
## 3275 46 221 2 999 1 -1.8 93.075
## 3276 42 237 2 999 1 -1.8 93.075
## 3277 33 306 4 999 1 -1.8 92.893
## 3278 53 228 1 999 1 -1.8 93.369
## 3279 29 133 1 999 1 -0.1 93.200
## 3280 35 520 3 999 2 -3.0 92.713
## 3281 41 150 2 999 1 -1.8 93.075
## 3282 35 134 1 999 1 -1.8 92.893
## 3283 33 109 1 999 1 -1.8 92.893
## 3284 52 632 1 999 1 -3.4 92.649
## 3285 33 410 2 999 1 -1.8 92.893
## 3286 37 322 2 999 1 -1.8 92.893
## 3287 29 366 3 999 1 -1.8 92.893
## 3288 33 397 1 999 2 -1.1 94.199
## 3289 29 168 4 999 1 -1.8 92.893
## 3290 32 73 2 999 1 -1.8 93.075
## 3291 30 232 2 999 1 -0.1 93.200
## 3292 33 273 2 999 1 -1.8 93.075
## 3293 35 73 1 999 1 -2.9 92.201
## 3294 71 232 1 999 2 -1.1 94.199
## 3295 49 187 5 999 1 -0.1 93.200
## 3296 49 300 3 999 1 -1.8 93.075
## 3297 33 61 2 6 2 -3.4 92.431
## 3298 82 79 2 999 2 -2.9 92.201
## 3299 44 120 1 999 1 -2.9 92.201
## 3300 72 238 2 999 1 -2.9 92.201
## 3301 31 396 1 999 1 -0.1 93.200
## 3302 35 66 1 13 2 -1.7 94.055
## 3303 33 87 2 999 2 -1.8 93.075
## 3304 61 228 2 999 1 -1.8 93.876
## 3305 58 198 2 999 2 -1.8 93.369
## 3306 41 108 2 999 1 -1.8 92.893
## 3307 31 273 2 999 1 -1.8 93.075
## 3308 44 428 2 999 1 -1.8 92.893
## 3309 26 440 5 999 2 -1.7 94.027
## 3310 25 124 1 999 1 -2.9 92.963
## 3311 43 152 3 999 1 -1.8 92.893
## 3312 35 608 1 9 2 -1.1 94.601
## 3313 60 357 2 999 1 -1.1 94.601
## 3314 50 587 2 999 1 -2.9 92.201
## 3315 54 72 4 999 1 -1.1 94.601
## 3316 56 181 2 9 2 -1.8 93.369
## 3317 34 248 1 999 1 -1.8 92.893
## 3318 48 89 1 999 1 -0.1 93.200
## 3319 29 720 1 6 2 -1.8 93.876
## 3320 47 178 3 999 1 -1.8 92.893
## 3321 34 409 1 999 1 -1.1 94.199
## 3322 49 237 1 999 2 -3.4 92.431
## 3323 53 145 2 999 1 -1.8 92.893
## 3324 24 303 1 999 1 -1.1 94.199
## 3325 37 155 1 999 1 -1.1 94.199
## 3326 34 71 1 999 1 -1.8 93.075
## 3327 34 11 1 999 1 -1.1 94.199
## 3328 40 130 1 7 2 -3.4 92.649
## 3329 28 148 1 999 2 -2.9 92.201
## 3330 32 142 1 999 1 -1.8 92.893
## 3331 23 143 2 999 1 -1.8 92.893
## 3332 37 125 1 999 1 -1.8 92.893
## 3333 49 668 1 999 1 -1.8 92.893
## 3334 29 116 2 999 1 -2.9 92.963
## 3335 26 535 1 999 1 -1.8 92.893
## 3336 63 134 3 999 1 -3.4 92.379
## 3337 30 34 2 999 1 -1.8 92.893
## 3338 33 61 2 999 1 -1.8 92.893
## 3339 78 203 1 999 1 -1.7 94.215
## 3340 35 100 1 999 1 -1.8 92.893
## 3341 34 96 3 999 1 -1.8 92.893
## 3342 30 186 4 999 1 -1.8 92.893
## 3343 31 91 1 999 1 -3.4 92.431
## 3344 75 1020 3 999 3 -1.1 94.601
## 3345 50 166 2 999 1 -1.8 92.893
## 3346 46 335 3 999 2 -1.7 94.215
## 3347 27 304 1 999 1 -1.8 92.893
## 3348 91 837 1 999 2 -3.4 92.379
## 3349 32 96 1 999 1 -3.4 92.431
## 3350 71 122 2 999 1 -1.8 92.893
## 3351 35 212 2 999 1 -1.8 92.893
## 3352 49 165 1 999 1 -1.8 92.893
## 3353 45 224 2 999 1 -1.8 92.893
## 3354 26 78 2 999 1 -2.9 92.963
## 3355 34 139 2 999 1 -1.8 92.893
## 3356 32 590 1 999 2 -2.9 92.469
## 3357 34 293 2 999 1 -1.8 92.893
## 3358 34 88 3 999 1 -1.8 92.893
## 3359 27 74 1 999 1 -1.8 92.893
## 3360 60 63 1 999 2 -3.4 92.379
## 3361 46 836 1 999 1 -0.1 93.200
## 3362 47 113 2 999 1 -1.7 94.027
## 3363 37 481 2 999 4 -1.7 94.027
## 3364 35 136 1 999 1 -1.8 92.893
## 3365 44 13 6 999 1 -1.8 92.893
## 3366 35 433 1 999 1 -0.1 93.200
## 3367 50 178 5 999 1 -1.8 92.893
## 3368 32 107 2 999 1 -2.9 92.201
## 3369 26 359 1 999 1 -1.8 93.369
## 3370 53 81 2 999 1 -0.1 93.200
## 3371 33 172 2 999 1 -1.8 92.893
## 3372 30 104 1 999 1 -3.4 92.649
## 3373 48 279 1 999 2 -1.8 93.369
## 3374 41 392 1 999 1 -0.1 93.200
## 3375 42 211 2 999 1 -1.8 93.075
## 3376 31 80 1 999 1 -1.8 92.893
## 3377 26 598 4 12 3 -1.7 94.055
## 3378 32 66 3 999 1 -1.8 92.893
## 3379 46 110 1 999 1 -0.1 93.200
## 3380 42 126 2 999 1 -0.1 93.200
## 3381 55 73 1 999 1 -0.1 93.200
## 3382 33 335 1 999 1 -1.8 93.075
## 3383 39 49 1 999 1 -1.8 92.893
## 3384 34 8 2 999 1 -1.8 92.893
## 3385 37 158 1 999 1 -1.8 93.369
## 3386 30 160 4 999 1 -1.8 92.893
## 3387 45 64 1 999 2 -3.4 92.379
## 3388 37 272 2 999 1 -1.8 92.893
## 3389 46 388 2 999 1 -1.8 92.893
## 3390 31 116 2 999 2 -1.8 92.893
## 3391 35 140 2 999 1 -0.1 93.200
## 3392 39 2219 1 999 1 -2.9 92.963
## 3393 28 466 2 999 1 -1.8 92.893
## 3394 37 148 1 999 2 -2.9 92.201
## 3395 26 277 2 999 1 -1.8 92.893
## 3396 40 632 1 999 1 -1.8 92.893
## 3397 33 49 2 999 1 -1.8 92.893
## 3398 30 94 1 999 2 -3.4 92.649
## 3399 33 33 7 999 1 -1.8 92.893
## 3400 53 59 1 999 1 -1.8 92.893
## 3401 44 1091 1 999 1 -1.8 93.075
## 3402 32 110 1 999 1 -1.8 92.893
## 3403 57 56 2 999 1 -0.1 93.200
## 3404 71 71 2 999 1 -3.4 92.649
## 3405 31 113 2 999 1 -0.1 93.200
## 3406 23 502 1 999 1 -1.1 94.199
## 3407 82 143 2 999 1 -1.1 94.199
## 3408 39 52 1 999 1 -1.7 94.055
## 3409 33 347 2 999 1 -1.8 92.893
## 3410 30 808 1 12 2 -1.1 94.199
## 3411 43 124 1 999 1 -1.8 92.893
## 3412 39 180 1 999 1 -0.1 93.200
## 3413 43 50 1 999 1 -1.8 92.893
## 3414 54 198 1 999 1 -1.8 92.893
## 3415 36 414 2 999 1 -1.8 92.893
## 3416 59 61 1 999 1 -1.8 92.893
## 3417 78 173 2 999 1 -1.7 94.215
## 3418 24 84 1 9 3 -3.4 92.649
## 3419 42 211 1 999 1 -1.1 94.199
## 3420 39 343 3 999 1 -1.8 92.893
## 3421 30 104 1 999 1 -1.8 92.893
## 3422 39 110 2 999 1 -1.8 92.893
## 3423 60 99 2 999 2 -3.4 92.379
## 3424 42 419 3 999 1 -1.1 94.767
## 3425 24 102 6 999 1 -1.8 93.075
## 3426 28 83 9 999 1 -1.8 92.893
## 3427 36 236 1 999 1 -1.8 92.893
## 3428 32 132 3 999 1 -1.7 94.055
## 3429 30 155 1 999 2 -1.8 92.893
## 3430 31 197 1 999 1 -1.8 92.893
## 3431 29 154 3 999 1 -0.1 93.200
## 3432 46 796 5 999 1 -0.1 93.200
## 3433 75 229 1 999 2 -1.7 94.215
## 3434 35 165 1 999 1 -1.7 94.215
## 3435 29 93 1 999 1 -0.1 93.200
## 3436 29 131 1 999 1 -1.8 92.893
## 3437 34 230 1 999 1 -1.1 94.767
## 3438 43 239 1 999 1 -1.8 93.075
## 3439 39 72 2 999 1 -1.8 93.075
## 3440 37 78 1 999 1 -1.8 92.893
## 3441 35 305 3 999 1 -2.9 92.201
## 3442 23 413 1 999 1 -1.8 92.893
## 3443 40 156 5 999 1 -1.8 92.893
## 3444 24 68 4 999 1 -1.8 92.893
## 3445 32 261 1 999 1 -1.8 92.893
## 3446 44 127 1 999 2 -1.1 94.199
## 3447 33 519 2 999 2 -1.8 92.893
## 3448 50 429 1 999 1 -1.8 92.893
## 3449 33 843 1 999 1 -1.8 92.893
## 3450 38 173 1 999 3 -1.1 94.199
## 3451 53 583 2 999 1 -1.8 93.075
## 3452 60 270 4 6 4 -1.7 94.027
## 3453 55 213 1 999 1 -1.8 93.075
## 3454 60 176 1 999 1 -1.7 94.027
## 3455 32 128 2 999 1 -1.1 94.767
## 3456 36 108 1 999 1 -1.8 92.893
## 3457 32 143 1 999 2 -1.1 94.601
## 3458 23 198 2 999 1 -1.8 92.893
## 3459 28 472 2 999 1 -1.8 92.893
## 3460 28 201 1 999 1 -1.8 92.893
## 3461 40 524 3 999 1 -3.4 92.431
## 3462 43 57 1 999 1 -0.1 93.200
## 3463 37 161 1 999 1 -1.8 93.749
## 3464 48 279 1 999 2 -1.8 93.369
## 3465 35 199 2 999 1 -1.8 93.075
## 3466 54 138 1 7 2 -3.4 92.649
## 3467 57 534 3 999 1 -1.8 93.075
## 3468 32 52 8 999 0 1.4 93.444
## 3469 54 455 3 999 0 -2.9 92.963
## 3470 68 177 1 999 0 -1.8 93.749
## 3471 46 9 13 999 0 1.4 94.465
## 3472 33 191 3 999 0 1.4 93.444
## 3473 44 274 1 999 0 -1.8 93.075
## 3474 41 376 2 999 0 -1.8 93.369
## 3475 29 277 1 999 0 1.4 93.918
## 3476 45 763 1 999 0 -1.8 92.893
## 3477 26 455 4 999 0 1.4 93.918
## 3478 33 95 3 999 0 -1.8 93.075
## 3479 36 71 3 999 0 1.4 93.444
## 3480 59 1330 3 999 0 1.4 93.918
## 3481 54 117 1 999 0 -1.8 93.075
## 3482 50 74 1 999 0 1.1 93.994
## 3483 49 59 2 999 0 1.4 93.918
## 3484 43 1534 2 999 0 1.1 93.994
## 3485 34 453 2 999 0 1.4 94.465
## 3486 52 137 11 999 0 1.4 93.918
## 3487 30 1161 26 999 0 1.4 93.918
## 3488 51 358 3 999 0 -0.1 93.200
## 3489 42 58 3 999 0 -1.8 92.893
## 3490 41 370 1 999 0 -1.8 93.075
## 3491 69 420 4 999 0 -2.9 92.201
## 3492 81 210 1 999 0 -3.4 92.379
## 3493 28 276 2 999 0 -2.9 92.201
## 3494 25 35 6 999 0 1.4 94.465
## 3495 25 78 16 999 0 1.4 93.918
## 3496 30 67 13 999 0 1.1 93.994
## 3497 32 24 1 999 0 1.4 94.465
## 3498 38 172 7 999 0 1.4 93.444
## 3499 35 93 4 999 0 1.4 93.444
## 3500 30 186 3 999 0 1.4 93.444
## 3501 36 71 1 999 0 1.1 93.994
## 3502 41 471 1 999 0 -1.8 93.075
## 3503 47 223 1 999 0 1.1 93.994
## 3504 36 239 2 999 0 -1.8 93.075
## 3505 55 659 2 999 0 1.4 93.918
## 3506 35 162 1 999 0 1.1 93.994
## 3507 41 38 2 999 0 -0.1 93.200
## 3508 37 314 2 999 0 1.4 93.918
## 3509 39 127 1 999 0 1.1 93.994
## 3510 49 194 2 999 0 1.4 93.444
## 3511 28 434 1 999 0 -1.8 92.893
## 3512 38 240 1 999 0 -1.8 92.893
## 3513 41 211 1 999 0 -1.8 92.893
## 3514 60 59 1 999 0 -3.4 92.431
## 3515 33 373 1 999 0 -1.8 93.369
## 3516 32 169 2 999 0 -2.9 92.201
## 3517 48 214 2 999 0 1.4 93.918
## 3518 33 105 3 999 0 1.4 93.918
## 3519 49 29 9 999 0 -0.1 93.200
## 3520 42 588 3 999 0 1.1 93.994
## 3521 25 174 1 999 0 1.1 93.994
## 3522 32 71 4 999 0 1.1 93.994
## 3523 32 215 1 999 0 1.4 94.465
## 3524 30 300 3 999 0 -1.8 93.876
## 3525 33 285 2 999 0 1.4 93.918
## 3526 31 219 1 999 0 1.1 93.994
## 3527 47 138 4 999 0 1.4 93.918
## 3528 41 194 2 999 0 -1.8 93.075
## 3529 36 470 2 999 0 1.4 93.918
## 3530 33 67 1 999 0 1.4 93.444
## 3531 55 334 1 999 0 1.1 93.994
## 3532 29 151 2 999 0 1.4 93.918
## 3533 47 237 1 999 0 1.1 93.994
## 3534 40 91 1 999 0 -3.4 92.379
## 3535 45 13 5 999 0 1.4 94.465
## 3536 52 393 1 999 0 1.1 93.994
## 3537 44 248 2 999 0 1.1 93.994
## 3538 50 133 1 999 0 1.1 93.994
## 3539 34 48 5 999 0 1.4 93.444
## 3540 42 243 1 999 0 -1.8 92.893
## 3541 22 156 2 999 0 -1.8 93.075
## 3542 39 55 2 999 0 1.4 93.444
## 3543 25 92 6 999 0 1.4 94.465
## 3544 41 307 9 999 0 1.4 93.444
## 3545 53 118 3 999 0 1.4 93.918
## 3546 32 267 1 999 0 -3.4 92.431
## 3547 28 148 2 999 0 1.1 93.994
## 3548 33 103 2 999 0 1.4 93.918
## 3549 51 64 1 999 0 1.4 93.918
## 3550 35 84 1 999 0 -1.8 93.075
## 3551 36 106 1 999 0 1.4 93.444
## 3552 43 88 6 999 0 1.1 93.994
## 3553 55 269 2 999 0 1.1 93.994
## 3554 50 93 1 999 0 -1.8 93.075
## 3555 39 49 1 999 0 1.4 93.444
## 3556 40 78 1 999 0 -1.8 93.075
## 3557 44 309 1 999 0 -1.8 92.893
## 3558 46 8 6 999 0 1.4 94.465
## 3559 25 601 1 999 0 1.1 93.994
## 3560 41 295 1 999 0 -1.8 92.893
## 3561 47 53 1 999 0 -1.8 93.075
## 3562 50 43 2 999 0 1.1 93.994
## 3563 31 297 1 999 0 -0.1 93.200
## 3564 36 66 4 999 0 1.4 93.444
## 3565 32 61 4 999 0 -1.8 92.893
## 3566 57 65 1 999 0 -0.1 93.200
## 3567 41 475 2 999 0 1.1 93.994
## 3568 49 58 1 999 0 -1.8 93.075
## 3569 32 82 1 999 0 1.4 94.465
## 3570 38 757 2 999 0 1.4 94.465
## 3571 54 149 1 999 0 1.4 93.918
## 3572 33 9 17 999 0 1.4 93.918
## 3573 59 142 1 999 0 1.4 93.918
## 3574 39 306 3 999 0 1.4 93.444
## 3575 31 168 2 999 0 1.4 93.918
## 3576 33 64 1 999 0 1.4 93.444
## 3577 36 171 11 999 0 1.4 93.444
## 3578 39 299 4 999 0 1.1 93.994
## 3579 56 149 4 999 0 -0.1 93.200
## 3580 50 742 1 999 0 -1.1 94.767
## 3581 36 214 2 999 0 -1.8 93.075
## 3582 41 313 4 999 0 1.4 93.444
## 3583 29 44 2 999 0 1.1 93.994
## 3584 38 219 1 999 0 1.1 93.994
## 3585 34 336 1 999 0 1.4 93.444
## 3586 48 211 2 999 0 1.1 93.994
## 3587 55 319 1 999 0 1.1 93.994
## 3588 45 117 2 999 0 1.4 93.918
## 3589 42 377 2 999 0 -1.8 93.075
## 3590 35 547 6 999 0 1.4 93.444
## 3591 39 363 2 999 0 1.1 93.994
## 3592 33 326 3 999 0 -1.8 93.075
## 3593 34 87 3 999 0 1.4 93.444
## 3594 45 124 1 999 0 1.4 94.465
## 3595 42 46 3 999 0 1.1 93.994
## 3596 32 84 2 999 0 -0.1 93.200
## 3597 50 166 2 999 0 -1.8 92.843
## 3598 41 359 1 999 0 -1.8 93.075
## 3599 33 42 7 999 0 1.4 94.465
## 3600 43 150 1 999 0 -1.8 93.075
## 3601 30 73 2 999 0 1.4 93.444
## 3602 39 97 2 999 0 1.4 94.465
## 3603 38 174 3 999 0 1.4 94.465
## 3604 29 151 2 999 0 1.4 93.918
## 3605 33 576 1 999 0 1.4 93.444
## 3606 40 198 1 999 0 1.4 93.918
## 3607 27 156 2 999 0 -1.8 93.075
## 3608 43 198 2 999 0 1.1 93.994
## 3609 37 128 1 999 0 -3.4 92.649
## 3610 58 186 1 999 0 -2.9 92.201
## 3611 56 185 2 999 0 1.1 93.994
## 3612 42 29 4 999 0 1.4 94.465
## 3613 36 17 4 999 0 -1.8 93.075
## 3614 39 124 1 999 0 -1.8 92.893
## 3615 29 94 1 999 0 1.4 93.444
## 3616 34 178 3 999 0 1.4 93.444
## 3617 31 87 2 999 0 1.1 93.994
## 3618 36 232 3 999 0 1.1 93.994
## 3619 56 319 3 999 0 1.1 93.994
## 3620 28 78 2 999 0 -1.8 92.893
## 3621 33 218 4 999 0 -1.8 92.893
## 3622 52 136 2 999 0 1.1 93.994
## 3623 35 130 2 999 0 -1.8 92.893
## 3624 56 39 8 999 0 1.4 94.465
## 3625 32 88 2 999 0 -0.1 93.200
## 3626 54 77 2 999 0 1.1 93.994
## 3627 61 176 2 999 0 -2.9 92.201
## 3628 34 1094 3 999 0 -1.8 92.893
## 3629 73 158 2 999 0 -3.4 92.379
## 3630 50 41 2 999 0 1.4 93.918
## 3631 29 166 1 999 0 1.4 93.918
## 3632 51 202 1 999 0 1.4 94.465
## 3633 23 104 2 999 0 -2.9 92.469
## 3634 30 252 2 999 0 1.4 93.918
## 3635 27 110 1 999 0 1.4 93.918
## 3636 45 202 2 999 0 1.1 93.994
## 3637 48 634 4 999 0 -0.1 93.200
## 3638 45 61 2 999 0 -1.8 92.893
## 3639 55 1303 1 999 0 -0.1 93.200
## 3640 50 206 1 999 0 -1.8 93.075
## 3641 39 48 10 999 0 1.4 94.465
## 3642 50 113 2 999 0 1.4 93.444
## 3643 33 137 1 999 0 1.1 93.994
## 3644 54 345 9 999 0 1.1 93.994
## 3645 47 177 3 999 0 1.4 94.465
## 3646 28 69 1 999 0 -1.8 93.075
## 3647 29 678 1 999 0 -1.8 93.075
## 3648 28 36 2 999 0 -2.9 92.201
## 3649 38 213 2 999 0 -0.1 93.200
## 3650 57 379 3 999 0 1.4 93.444
## 3651 56 283 1 999 0 -1.8 92.843
## 3652 48 154 2 999 0 1.4 93.918
## 3653 50 219 1 999 0 1.4 94.465
## 3654 31 253 2 999 0 1.1 93.994
## 3655 47 279 2 999 0 1.1 93.994
## 3656 52 2015 1 999 0 1.4 93.918
## 3657 36 19 11 999 0 1.4 94.465
## 3658 49 79 2 999 0 1.4 94.465
## 3659 53 121 2 999 0 1.1 93.994
## 3660 31 465 3 999 0 1.1 93.994
## 3661 58 74 5 999 0 1.4 94.465
## 3662 48 344 2 999 0 1.1 93.994
## 3663 52 347 2 999 0 1.4 93.918
## 3664 52 139 1 999 0 -0.1 93.200
## 3665 52 80 3 999 0 1.1 93.994
## 3666 42 321 1 999 0 1.4 93.444
## 3667 46 64 1 999 0 1.4 93.918
## 3668 29 667 3 999 0 -1.8 92.893
## 3669 33 15 1 999 0 -1.8 92.893
## 3670 30 637 1 999 0 -1.8 92.893
## 3671 54 107 1 999 0 1.4 93.444
## 3672 39 177 1 999 0 -1.8 93.075
## 3673 49 119 3 999 0 -1.8 93.075
## 3674 32 19 1 999 0 1.4 94.465
## 3675 38 119 4 999 0 1.4 93.444
## 3676 26 13 1 999 0 1.1 93.994
## 3677 52 227 1 999 0 1.4 93.918
## 3678 36 56 1 999 0 1.4 93.444
## 3679 37 126 14 999 0 1.4 94.465
## 3680 50 313 1 999 0 1.4 94.465
## 3681 35 123 3 999 0 1.4 93.444
## 3682 33 420 2 999 0 1.4 94.465
## 3683 48 90 3 999 0 1.4 93.444
## 3684 29 298 1 999 0 -1.8 92.893
## 3685 37 226 1 999 0 1.4 94.465
## 3686 39 45 1 999 0 -1.8 92.893
## 3687 55 315 1 999 0 1.4 94.465
## 3688 36 260 1 999 0 -2.9 92.201
## 3689 29 139 2 999 0 1.4 93.918
## 3690 34 649 1 999 0 -1.8 93.075
## 3691 35 119 1 999 0 -1.8 93.075
## 3692 37 216 2 999 0 1.4 93.918
## 3693 29 33 4 999 0 1.4 93.444
## 3694 47 362 1 999 0 1.4 93.444
## 3695 40 381 1 999 0 1.4 93.918
## 3696 39 433 3 999 0 1.1 93.994
## 3697 44 324 1 999 0 1.4 93.444
## 3698 45 222 9 999 0 1.1 93.994
## 3699 42 88 1 999 0 -1.8 93.075
## 3700 75 714 1 999 0 -2.9 92.201
## 3701 40 231 1 999 0 1.4 94.465
## 3702 37 283 3 999 0 1.4 94.465
## 3703 34 36 1 999 0 1.4 93.444
## 3704 38 151 1 999 0 -1.8 93.075
## 3705 38 50 3 999 0 1.4 94.465
## 3706 41 46 8 999 0 1.4 93.918
## 3707 32 583 2 999 0 -1.8 92.893
## 3708 50 20 2 999 0 1.4 94.465
## 3709 38 905 3 999 0 1.4 93.918
## 3710 75 95 4 999 0 -1.8 93.075
## 3711 31 73 1 999 0 1.4 93.444
## 3712 48 1850 1 999 0 1.4 93.918
## 3713 31 8 3 999 0 1.4 94.465
## 3714 29 484 1 999 0 -0.1 93.200
## 3715 43 67 2 999 0 1.4 94.465
## 3716 43 197 3 999 0 1.1 93.994
## 3717 38 104 1 999 0 1.1 93.994
## 3718 48 119 2 999 0 1.4 94.465
## 3719 33 53 1 999 0 1.1 93.994
## 3720 44 483 1 999 0 1.1 93.994
## 3721 46 119 1 999 0 1.4 93.444
## 3722 27 174 3 999 0 1.4 93.918
## 3723 47 63 1 999 0 1.1 93.994
## 3724 48 9 5 999 0 1.4 94.465
## 3725 55 103 1 999 0 1.4 93.444
## 3726 29 139 1 999 0 1.4 94.465
## 3727 27 102 1 999 0 1.1 93.994
## 3728 34 238 2 999 0 -1.8 93.075
## 3729 32 19 6 999 0 -1.8 92.893
## 3730 36 122 1 999 0 1.1 93.994
## 3731 46 277 1 999 0 1.4 93.918
## 3732 59 87 1 999 0 1.4 93.918
## 3733 28 227 1 999 0 1.4 94.465
## 3734 59 128 3 999 0 -1.8 93.075
## 3735 25 109 5 999 0 -1.8 92.893
## 3736 33 170 2 999 0 1.4 93.444
## 3737 54 18 1 999 0 -0.1 93.200
## 3738 41 591 6 999 0 1.4 94.465
## 3739 50 119 3 999 0 1.4 93.444
## 3740 35 61 2 999 0 1.4 93.444
## 3741 47 528 1 999 0 1.4 93.444
## 3742 53 195 6 999 0 -1.7 94.055
## 3743 57 471 2 999 0 1.4 94.465
## 3744 60 93 3 999 0 1.4 93.444
## 3745 51 375 2 999 0 1.4 94.465
## 3746 56 86 4 999 0 1.4 93.918
## 3747 34 176 2 999 0 1.1 93.994
## 3748 53 221 4 999 0 -1.8 92.893
## 3749 42 643 3 999 0 1.4 93.918
## 3750 44 378 2 999 0 1.4 93.444
## 3751 29 210 3 999 0 1.1 93.994
## 3752 51 80 1 999 0 1.4 93.444
## 3753 34 263 5 999 0 1.4 93.444
## 3754 39 254 1 999 0 1.1 93.994
## 3755 30 221 1 999 0 -0.1 93.200
## 3756 39 155 6 999 0 -1.8 92.893
## 3757 22 106 5 999 0 -1.8 92.893
## 3758 52 208 1 999 0 1.4 93.444
## 3759 37 132 2 999 0 1.4 93.444
## 3760 27 655 1 999 0 1.4 93.918
## 3761 41 351 1 999 0 -1.8 93.075
## 3762 34 429 1 999 0 -0.1 93.200
## 3763 41 476 1 999 0 -1.8 93.075
## 3764 45 19 2 999 0 1.1 93.994
## 3765 39 15 3 999 0 1.4 94.465
## 3766 50 215 3 999 0 1.4 93.444
## 3767 42 81 7 999 0 -0.1 93.200
## 3768 45 191 1 999 0 1.4 93.444
## 3769 34 69 5 999 0 -1.8 92.893
## 3770 24 61 2 999 0 1.4 93.918
## 3771 30 275 1 999 0 -2.9 92.963
## 3772 69 324 8 999 0 -3.4 92.379
## 3773 50 144 15 999 0 1.4 94.465
## 3774 58 239 1 999 0 1.4 93.444
## 3775 31 110 3 999 0 1.4 94.465
## 3776 40 117 2 999 0 1.4 93.444
## 3777 36 166 2 999 0 1.1 93.994
## 3778 43 463 1 999 0 1.4 93.918
## 3779 34 280 1 999 0 1.4 94.465
## 3780 40 18 1 999 0 1.4 94.465
## 3781 59 167 2 999 0 1.1 93.994
## 3782 31 978 1 999 0 1.4 93.918
## 3783 38 856 2 999 0 1.4 94.465
## 3784 37 364 2 999 0 -1.8 92.893
## 3785 33 230 1 999 0 1.1 93.994
## 3786 37 198 1 999 0 -1.7 94.055
## 3787 66 210 1 999 0 -1.8 92.893
## 3788 53 260 1 999 0 1.1 93.994
## 3789 41 93 1 999 0 1.4 93.444
## 3790 38 247 1 999 0 1.4 93.444
## 3791 58 570 2 999 0 1.4 94.465
## 3792 41 43 2 999 0 1.1 93.994
## 3793 54 129 5 999 0 1.4 93.444
## 3794 29 548 1 999 0 -1.8 92.893
## 3795 27 25 26 999 0 1.4 94.465
## 3796 48 601 1 999 0 1.1 93.994
## 3797 33 264 2 999 0 -1.8 92.893
## 3798 26 329 1 999 0 1.1 93.994
## 3799 47 145 1 999 0 -0.1 93.200
## 3800 31 73 1 999 0 -1.8 92.893
## 3801 40 353 2 999 0 1.4 93.918
## 3802 39 150 4 999 0 -0.1 93.200
## 3803 33 16 2 999 0 1.4 93.918
## 3804 40 2926 2 999 0 -1.8 93.075
## 3805 50 343 2 999 0 1.4 94.465
## 3806 46 28 3 999 0 1.1 93.994
## 3807 36 501 2 999 0 -1.8 92.893
## 3808 56 483 5 999 0 -1.8 93.876
## 3809 29 1143 4 999 0 -1.8 92.893
## 3810 43 231 3 999 0 -2.9 92.201
## 3811 31 7 1 999 0 1.1 93.994
## 3812 42 276 2 999 0 1.4 94.465
## 3813 52 163 2 999 0 1.4 93.918
## 3814 58 834 1 999 0 -1.8 93.075
## 3815 51 288 1 999 0 -0.1 93.200
## 3816 31 21 5 999 0 -1.8 93.075
## 3817 48 132 1 999 0 1.4 93.444
## 3818 52 109 1 999 0 1.4 93.444
## 3819 58 605 1 999 0 1.4 93.918
## 3820 56 11 5 999 0 -0.1 93.200
## 3821 38 572 1 999 0 1.4 93.444
## 3822 46 75 1 999 0 -0.1 93.200
## 3823 34 175 2 999 0 -1.8 92.893
## 3824 35 441 12 999 0 1.4 93.918
## 3825 40 87 3 999 0 1.4 94.465
## 3826 37 124 2 999 0 -0.1 93.200
## 3827 44 198 1 999 0 -1.8 92.893
## 3828 54 558 1 999 0 -0.1 93.200
## 3829 45 973 2 999 0 1.4 94.465
## 3830 43 129 3 999 0 1.1 93.994
## 3831 47 98 4 999 0 1.4 94.465
## 3832 47 165 3 999 0 1.4 93.918
## 3833 48 669 6 999 0 1.4 93.444
## 3834 37 92 2 999 0 1.4 93.918
## 3835 34 377 1 999 0 -1.8 93.075
## 3836 39 247 1 999 0 -1.8 92.893
## 3837 32 906 5 999 0 -1.8 92.893
## 3838 45 294 2 999 0 1.4 94.465
## 3839 38 101 3 999 0 1.4 93.918
## 3840 29 320 2 999 0 1.4 93.918
## 3841 50 49 9 999 0 1.4 93.444
## 3842 34 154 3 999 0 1.1 93.994
## 3843 31 40 1 999 0 1.4 94.465
## 3844 29 109 3 999 0 1.4 93.444
## 3845 33 72 1 999 0 1.4 93.918
## 3846 40 54 1 999 0 1.4 94.465
## 3847 24 595 2 999 0 1.4 93.918
## 3848 56 342 1 999 0 1.1 93.994
## 3849 54 268 6 999 0 1.4 93.918
## 3850 31 420 4 999 0 1.4 93.444
## 3851 24 241 1 999 0 1.1 93.994
## 3852 45 789 1 999 0 -0.1 93.200
## 3853 45 250 1 999 0 -1.8 92.893
## 3854 33 57 1 999 0 1.4 93.444
## 3855 42 59 3 999 0 1.4 94.465
## 3856 43 745 12 999 0 1.1 93.994
## 3857 34 659 1 999 0 1.1 93.994
## 3858 63 164 1 999 0 -1.8 93.749
## 3859 29 65 1 999 0 1.4 93.444
## 3860 55 155 1 999 0 -1.8 93.075
## 3861 45 61 4 999 0 1.4 94.465
## 3862 42 181 4 999 0 1.1 93.994
## 3863 43 70 3 999 0 1.4 94.465
## 3864 38 113 1 999 0 1.4 93.444
## 3865 24 111 3 999 0 1.4 94.465
## 3866 41 210 1 999 0 1.4 93.444
## 3867 84 106 4 999 0 -1.1 94.601
## 3868 38 345 1 999 0 1.4 93.444
## 3869 42 14 6 999 0 1.4 94.465
## 3870 37 129 2 999 0 1.1 93.994
## 3871 40 13 5 999 0 1.1 93.994
## 3872 33 148 2 999 0 -1.8 93.075
## 3873 31 15 4 999 0 1.4 94.465
## 3874 39 635 3 999 0 1.4 93.918
## 3875 38 1055 1 999 0 -0.1 93.200
## 3876 40 386 1 999 0 1.4 94.465
## 3877 29 323 1 999 0 -1.8 92.893
## 3878 57 205 8 999 0 1.1 93.994
## 3879 33 466 2 999 0 1.1 93.994
## 3880 32 13 4 999 0 1.4 94.465
## 3881 37 24 1 999 0 1.1 93.994
## 3882 36 248 1 999 0 1.4 93.444
## 3883 37 1134 5 999 0 1.4 93.918
## 3884 34 913 4 999 0 1.4 93.918
## 3885 41 146 2 999 0 1.4 93.918
## 3886 45 582 2 999 0 -1.8 93.075
## 3887 43 469 2 999 0 1.1 93.994
## 3888 32 57 4 999 0 1.4 93.918
## 3889 37 1010 3 999 0 -1.8 93.075
## 3890 35 98 1 999 0 -1.8 93.075
## 3891 38 213 5 999 0 -1.8 92.893
## 3892 52 11 12 999 0 1.4 94.465
## 3893 53 34 2 999 0 1.1 93.994
## 3894 47 215 1 999 0 1.4 93.444
## 3895 32 28 1 999 0 -1.8 92.893
## 3896 50 213 4 999 0 -1.8 92.893
## 3897 31 122 1 999 0 -2.9 92.201
## 3898 28 46 3 999 0 1.4 93.918
## 3899 37 103 2 999 0 -0.1 93.200
## 3900 56 197 3 999 0 1.1 93.994
## 3901 46 142 10 999 0 1.4 93.918
## 3902 44 453 3 999 0 1.4 93.444
## 3903 50 282 9 999 0 1.4 93.918
## 3904 32 197 1 999 0 1.1 93.994
## 3905 45 368 2 999 0 -2.9 92.201
## 3906 38 306 3 999 0 1.4 93.444
## 3907 23 104 2 999 0 -2.9 92.469
## 3908 26 394 2 999 0 1.1 93.994
## 3909 34 231 1 999 0 -1.1 94.199
## 3910 29 317 1 999 0 -1.8 92.893
## 3911 48 218 1 999 0 -0.1 93.200
## 3912 31 455 2 999 0 1.4 93.918
## 3913 33 58 1 999 0 1.4 93.444
## 3914 33 710 1 999 0 -0.1 93.200
## 3915 34 178 2 999 0 1.4 94.465
## 3916 34 179 3 999 0 -1.8 92.893
## 3917 48 18 7 999 0 1.4 93.918
## 3918 51 657 1 999 0 -2.9 92.963
## 3919 28 159 2 999 0 1.1 93.994
## 3920 31 58 3 999 0 1.4 93.444
## 3921 39 90 2 999 0 -1.7 94.215
## 3922 48 246 3 999 0 1.1 93.994
## 3923 34 479 3 999 0 1.4 94.465
## 3924 31 156 4 999 0 -1.8 92.893
## 3925 40 8 7 999 0 1.4 94.465
## 3926 27 3785 1 999 0 -1.7 94.027
## 3927 29 198 1 999 0 1.4 93.444
## 3928 55 94 1 999 0 1.4 93.444
## 3929 36 117 1 999 0 -1.8 93.075
## 3930 43 233 4 999 0 -1.8 92.893
## 3931 30 110 4 999 0 1.1 93.994
## 3932 36 303 3 999 0 1.4 93.918
## 3933 32 176 6 999 0 1.4 94.465
## 3934 38 11 3 999 0 1.4 94.465
## 3935 39 159 4 999 0 1.1 93.994
## 3936 31 61 2 999 0 1.4 93.918
## 3937 51 207 1 999 0 1.4 93.444
## 3938 34 20 1 999 0 1.1 93.994
## 3939 37 292 2 999 0 -1.8 93.075
## 3940 27 109 3 999 0 -1.8 92.893
## 3941 30 72 2 999 0 1.4 93.918
## 3942 33 134 1 999 0 1.1 93.994
## 3943 29 137 2 999 0 1.4 93.444
## 3944 58 412 1 999 0 -1.7 94.027
## 3945 33 24 10 999 0 1.4 93.444
## 3946 46 160 3 999 0 1.1 93.994
## 3947 45 800 2 999 0 1.4 93.918
## 3948 34 103 5 999 0 1.1 93.994
## 3949 29 130 1 999 0 -2.9 92.201
## 3950 19 121 5 999 0 -1.8 92.893
## 3951 57 294 2 999 0 -0.1 93.200
## 3952 29 83 4 999 0 -0.1 93.200
## 3953 41 519 1 999 0 1.4 93.444
## 3954 59 92 2 999 0 1.4 93.444
## 3955 48 700 1 999 0 1.1 93.994
## 3956 34 37 3 999 0 1.4 94.465
## 3957 48 237 5 999 0 1.4 93.918
## 3958 50 121 1 999 0 -1.8 93.075
## 3959 51 133 5 999 0 1.4 94.465
## 3960 58 203 2 999 0 1.4 94.465
## 3961 54 298 2 999 0 -0.1 93.200
## 3962 37 10 23 999 0 1.4 94.465
## 3963 56 196 2 999 0 1.4 93.918
## 3964 42 59 3 999 0 1.4 93.444
## 3965 53 579 1 999 0 1.1 93.994
## 3966 29 130 1 999 0 -2.9 92.201
## 3967 45 276 3 999 0 -1.8 92.893
## 3968 65 288 3 999 0 -1.8 93.369
## 3969 34 152 1 999 0 1.4 94.465
## 3970 35 30 4 999 0 1.4 93.444
## 3971 53 268 3 999 0 -0.1 93.200
## 3972 33 57 1 999 0 1.4 93.444
## 3973 50 28 8 999 0 1.4 94.465
## 3974 35 93 2 999 0 1.1 93.994
## 3975 37 282 1 999 0 -1.8 93.075
## 3976 51 228 2 999 0 1.1 93.994
## 3977 38 514 2 999 0 1.4 94.465
## 3978 43 304 2 999 0 1.4 94.465
## 3979 38 197 3 999 0 1.4 94.465
## 3980 30 171 4 999 0 1.4 93.918
## 3981 42 124 2 999 0 1.4 93.444
## 3982 33 152 1 999 0 -0.1 93.200
## 3983 47 426 1 999 0 1.4 93.918
## 3984 57 515 1 999 0 -1.8 93.075
## 3985 28 163 3 999 0 1.1 93.994
## 3986 41 216 2 999 0 1.1 93.994
## 3987 60 179 1 999 0 1.4 93.918
## 3988 33 330 1 999 0 1.4 94.465
## 3989 44 135 1 999 0 -1.8 92.893
## 3990 29 101 2 999 0 1.4 93.444
## 3991 39 474 3 999 0 -2.9 92.963
## 3992 58 75 7 999 0 1.4 93.444
## 3993 25 131 1 999 0 -1.1 94.199
## 3994 58 165 2 999 0 1.4 94.465
## 3995 33 73 2 999 0 -1.8 93.075
## 3996 33 84 2 999 0 1.1 93.994
## 3997 45 249 4 999 0 1.1 93.994
## 3998 36 314 2 999 0 1.4 93.444
## 3999 46 70 1 999 0 -1.8 92.893
## 4000 56 189 2 999 0 -1.1 94.767
## 4001 37 360 1 999 0 -1.8 93.075
## 4002 80 95 1 999 0 -1.8 92.843
## 4003 42 143 2 999 0 1.4 93.918
## 4004 57 958 2 999 0 1.4 93.444
## 4005 47 47 3 999 0 -1.8 92.893
## 4006 34 93 1 999 0 -1.8 92.843
## 4007 37 1311 2 999 0 -1.8 93.075
## 4008 45 301 1 999 0 -1.8 93.075
## 4009 36 89 2 999 0 1.1 93.994
## 4010 45 119 2 999 0 -1.8 93.075
## 4011 22 100 4 999 0 1.4 93.918
## 4012 71 188 3 999 0 -1.8 93.075
## 4013 39 11 8 999 0 -1.8 92.893
## 4014 41 211 3 999 0 1.1 93.994
## 4015 31 1573 5 999 0 1.4 94.465
## 4016 54 207 1 999 0 1.4 93.444
## 4017 41 244 1 999 0 1.4 94.465
## 4018 47 142 1 999 0 -1.8 92.893
## 4019 51 145 2 999 0 1.4 94.465
## 4020 32 891 4 999 0 1.1 93.994
## 4021 33 415 2 999 0 1.4 93.918
## 4022 40 85 3 999 0 1.4 94.465
## 4023 47 150 5 999 0 1.1 93.994
## 4024 41 8 31 999 0 1.4 94.465
## 4025 29 206 1 999 0 1.1 93.994
## 4026 35 34 2 999 0 1.4 94.465
## 4027 27 54 5 999 0 -1.8 92.893
## 4028 30 24 1 999 0 1.4 94.465
## 4029 35 179 1 999 0 -1.8 93.075
## 4030 37 116 3 999 0 -1.8 93.075
## 4031 22 64 2 999 0 1.4 93.918
## 4032 43 231 2 999 0 1.4 93.918
## 4033 43 246 1 999 0 1.1 93.994
## 4034 41 706 9 999 0 1.4 93.918
## 4035 32 155 4 999 0 1.4 93.918
## 4036 48 362 1 999 0 -0.1 93.200
## 4037 36 84 1 999 0 1.1 93.994
## 4038 49 105 2 999 0 -1.8 92.893
## 4039 31 350 2 999 0 -1.7 94.215
## 4040 27 231 2 999 0 1.1 93.994
## 4041 42 164 8 999 0 1.1 93.994
## 4042 27 784 1 999 0 1.4 93.918
## 4043 31 73 1 999 0 1.4 93.444
## 4044 40 63 6 999 0 1.4 93.918
## 4045 48 118 1 999 0 -0.1 93.200
## 4046 35 81 2 999 0 1.4 94.465
## 4047 34 115 1 999 0 -1.8 93.369
## 4048 22 382 1 999 0 -1.8 92.893
## 4049 31 122 4 999 0 1.4 93.444
## 4050 74 607 2 999 0 -1.8 93.369
## 4051 48 384 2 999 0 1.4 94.465
## 4052 39 397 1 999 0 -1.8 93.075
## 4053 35 358 1 999 0 1.4 94.465
## 4054 40 48 2 999 0 1.4 94.465
## 4055 30 187 11 999 0 -1.8 92.893
## 4056 46 105 4 999 0 1.1 93.994
## 4057 34 467 1 999 0 -0.1 93.200
## 4058 24 266 1 999 0 1.4 94.465
## 4059 58 153 4 999 0 1.4 94.465
## 4060 29 837 8 999 0 1.4 93.918
## 4061 29 359 1 999 0 1.4 94.465
## 4062 33 124 2 999 0 -1.8 93.075
## 4063 58 169 4 999 0 1.4 94.465
## 4064 38 198 1 999 0 1.1 93.994
## 4065 53 136 1 999 0 1.4 93.444
## 4066 28 134 3 999 0 -1.8 93.075
## 4067 27 141 1 999 0 1.4 94.465
## 4068 29 580 3 999 0 1.4 93.444
## 4069 55 142 1 999 0 -0.1 93.200
## 4070 34 643 1 999 0 1.4 93.444
## 4071 36 108 1 999 0 -1.8 92.893
## 4072 33 58 1 999 0 1.4 93.444
## 4073 42 163 1 999 0 1.4 93.918
## 4074 45 345 1 999 0 -1.8 93.075
## 4075 50 5 1 999 0 1.4 93.918
## 4076 29 139 2 999 0 1.4 94.465
## 4077 32 271 2 999 0 -1.8 92.843
## 4078 46 193 7 999 0 1.4 94.465
## 4079 57 74 1 999 0 -1.8 92.893
## 4080 55 180 1 999 0 -1.8 92.893
## 4081 29 433 4 999 0 1.4 94.465
## 4082 34 312 1 999 0 -3.4 92.649
## 4083 40 158 1 999 0 -0.1 93.200
## 4084 39 214 1 999 0 1.4 93.918
## 4085 52 346 3 999 0 1.1 93.994
## 4086 29 6 1 999 0 -1.7 94.027
## 4087 35 308 2 999 0 1.4 93.918
## 4088 56 41 1 999 0 1.4 93.918
## 4089 33 95 4 999 0 1.1 93.994
## 4090 53 1330 3 999 0 1.4 94.465
## 4091 33 685 5 999 0 1.4 94.465
## 4092 49 190 2 999 0 1.4 94.465
## 4093 35 1243 2 999 0 -1.8 92.893
## 4094 27 48 5 999 0 1.4 94.465
## 4095 31 172 5 999 0 1.4 93.444
## 4096 32 93 5 999 0 1.1 93.994
## 4097 37 68 1 999 0 -0.1 93.200
## 4098 37 222 6 999 0 -0.1 93.200
## 4099 56 129 3 999 0 1.4 94.465
## 4100 40 80 7 999 0 1.4 93.444
## 4101 42 1106 2 999 0 -3.4 92.431
## 4102 39 601 5 999 0 1.4 94.465
## 4103 43 266 1 999 0 1.1 93.994
## 4104 53 59 3 999 0 1.4 93.444
## 4105 36 468 4 999 0 1.4 93.918
## 4106 35 95 2 999 0 1.1 93.994
## 4107 58 152 3 999 0 1.4 94.465
## 4108 51 108 7 999 0 -0.1 93.200
## 4109 45 139 1 999 0 1.4 93.444
## 4110 31 75 1 999 0 -0.1 93.200
## 4111 29 121 4 999 0 1.4 94.465
## 4112 45 1210 1 999 0 1.4 94.465
## 4113 29 171 2 999 0 -0.1 93.200
## 4114 29 123 1 999 0 1.1 93.994
## 4115 73 179 1 999 0 -1.8 92.843
## 4116 26 107 2 999 0 1.1 93.994
## 4117 30 154 2 999 0 1.4 93.918
## 4118 59 362 8 999 0 1.4 93.918
## 4119 46 38 5 999 0 1.1 93.994
## 4120 35 226 1 999 0 -0.1 93.200
## 4121 42 57 1 999 0 -1.8 93.075
## 4122 35 772 1 999 0 1.4 93.918
## 4123 49 802 1 999 0 1.4 93.918
## 4124 37 523 3 999 0 1.1 93.994
## 4125 45 45 8 999 0 1.4 93.444
## 4126 29 190 2 999 0 -1.8 93.075
## 4127 31 101 4 999 0 1.4 93.444
## 4128 50 64 1 999 0 1.4 94.465
## 4129 30 282 2 999 0 1.1 93.994
## 4130 46 147 1 999 0 1.4 93.444
## 4131 37 316 2 999 0 1.4 94.465
## 4132 31 293 2 999 0 -1.8 92.893
## 4133 29 334 3 999 0 1.4 94.465
## 4134 37 159 3 999 0 -1.8 92.843
## 4135 42 235 1 999 0 1.4 93.444
## 4136 32 342 3 999 0 -1.8 93.075
## 4137 33 217 3 999 0 -1.7 94.215
## 4138 57 166 2 999 0 -2.9 92.963
## 4139 30 193 8 999 0 1.1 93.994
## 4140 34 553 3 999 0 1.1 93.994
## 4141 36 54 10 999 0 1.4 93.918
## 4142 32 50 1 999 0 -0.1 93.200
## 4143 27 146 4 999 0 -1.8 92.893
## 4144 30 197 1 999 0 1.4 93.444
## 4145 45 260 1 999 0 1.1 93.994
## 4146 35 1080 5 999 0 1.1 93.994
## 4147 41 1642 2 999 0 -1.8 92.893
## 4148 35 24 1 999 0 -0.1 93.200
## 4149 28 803 1 999 0 1.4 93.918
## 4150 45 78 9 999 0 1.1 93.994
## 4151 33 99 1 999 0 -1.8 92.893
## 4152 29 326 3 999 0 -2.9 92.469
## 4153 55 149 2 999 0 1.4 93.918
## 4154 34 108 1 999 0 1.4 93.918
## 4155 31 56 3 999 0 1.4 93.444
## 4156 38 103 1 999 0 1.4 93.444
## 4157 40 138 3 999 0 1.4 93.918
## 4158 19 72 4 999 0 -1.8 93.075
## 4159 41 167 1 999 0 1.4 93.444
## 4160 37 159 5 999 0 1.1 93.994
## 4161 31 91 2 999 0 1.4 93.444
## 4162 57 150 2 999 0 -0.1 93.200
## 4163 38 116 1 999 0 -2.9 92.201
## 4164 45 205 1 999 0 1.4 94.465
## 4165 39 104 1 999 0 1.4 93.918
## 4166 38 239 2 999 0 1.4 93.444
## 4167 40 90 4 999 0 1.4 93.444
## 4168 31 258 2 999 0 1.1 93.994
## 4169 58 18 2 999 0 1.4 94.465
## 4170 35 245 1 999 0 1.4 93.444
## 4171 53 121 2 999 0 1.4 93.918
## 4172 38 375 5 999 0 1.4 94.465
## 4173 49 147 1 999 0 1.1 93.994
## 4174 38 383 3 999 0 1.1 93.994
## 4175 55 518 3 999 0 -1.8 93.075
## 4176 35 431 3 999 0 1.4 93.918
## 4177 52 362 2 999 0 1.4 93.444
## 4178 49 235 1 999 0 1.4 93.918
## 4179 25 214 2 999 0 1.4 94.465
## 4180 47 329 3 999 0 1.1 93.994
## 4181 48 209 3 999 0 1.1 93.994
## 4182 36 140 1 999 0 -1.8 93.075
## 4183 51 81 1 999 0 -0.1 93.200
## 4184 33 164 5 999 0 1.1 93.994
## 4185 41 348 2 999 0 1.4 93.918
## 4186 30 70 1 999 0 1.4 93.918
## 4187 52 79 2 999 0 1.4 93.444
## 4188 41 643 3 999 0 -0.1 93.200
## 4189 38 516 6 999 0 -1.8 93.369
## 4190 57 168 4 999 0 -1.8 92.893
## 4191 82 125 2 999 0 -1.8 93.749
## 4192 30 153 5 999 0 1.4 93.444
## 4193 49 242 4 999 0 1.4 94.465
## 4194 33 11 6 999 0 1.4 94.465
## 4195 57 195 3 999 0 1.4 93.444
## 4196 50 634 1 999 0 -1.8 93.749
## 4197 55 93 2 999 0 -3.4 92.379
## 4198 54 320 1 999 0 1.4 93.918
## 4199 40 139 3 999 0 -0.1 93.200
## 4200 36 90 2 999 0 -0.1 93.200
## 4201 30 337 1 999 0 -0.1 93.200
## 4202 49 383 1 999 0 -1.8 93.075
## 4203 56 523 1 999 0 1.4 93.918
## 4204 33 38 3 999 0 1.4 93.444
## 4205 42 109 2 999 0 -0.1 93.200
## 4206 43 298 2 999 0 -0.1 93.200
## 4207 37 279 1 999 0 -1.8 92.893
## 4208 31 108 3 999 0 1.1 93.994
## 4209 42 361 2 999 0 1.4 93.444
## 4210 46 417 6 999 0 1.1 93.994
## 4211 56 87 4 999 0 1.4 93.918
## 4212 55 530 1 999 0 1.1 93.994
## 4213 27 70 1 999 0 1.1 93.994
## 4214 38 292 2 999 0 -1.8 93.369
## 4215 37 148 2 999 0 -2.9 92.201
## 4216 24 57 1 999 0 1.4 93.918
## 4217 40 356 4 999 0 -1.8 92.893
## 4218 51 99 1 999 0 1.4 93.444
## 4219 49 281 27 999 0 1.1 93.994
## 4220 39 43 8 999 0 1.4 94.465
## 4221 29 14 5 999 0 1.4 93.444
## 4222 53 531 3 999 0 -2.9 92.469
## 4223 30 100 3 999 0 1.1 93.994
## 4224 42 38 8 999 0 1.4 94.465
## 4225 41 134 2 999 0 1.4 93.918
## 4226 24 160 1 999 0 -3.4 92.431
## 4227 31 94 1 999 0 1.1 93.994
## 4228 40 42 2 999 0 1.4 94.465
## 4229 45 168 1 999 0 1.4 93.918
## 4230 36 157 3 999 0 -1.1 94.199
## 4231 33 203 1 999 0 -0.1 93.200
## 4232 38 257 3 999 0 1.4 93.444
## 4233 55 207 3 999 0 1.1 93.994
## 4234 36 659 1 999 0 -1.8 92.893
## 4235 57 194 24 999 0 1.4 93.918
## 4236 55 95 1 999 0 -1.8 92.893
## 4237 48 88 1 999 0 1.4 93.444
## 4238 55 1031 8 999 0 1.4 93.918
## 4239 26 140 3 999 0 1.4 93.918
## 4240 41 252 4 999 0 -1.1 94.767
## 4241 72 134 1 999 0 -2.9 92.963
## 4242 37 26 3 999 0 1.4 94.465
## 4243 31 173 1 999 0 1.4 93.444
## 4244 62 116 1 999 0 -2.9 92.201
## 4245 37 26 6 999 0 1.4 94.465
## 4246 30 122 1 999 0 1.4 93.444
## 4247 44 618 4 999 0 1.4 94.465
## 4248 38 195 1 999 0 -1.8 92.843
## 4249 34 229 1 999 0 -1.8 92.843
## 4250 31 72 6 999 0 1.4 94.465
## 4251 35 494 1 999 0 1.4 93.444
## 4252 49 150 2 999 0 1.4 93.918
## 4253 28 300 1 999 0 -1.8 92.843
## 4254 32 135 1 999 0 -1.8 93.075
## 4255 32 72 2 999 0 1.4 93.444
## 4256 40 8 3 999 0 -0.1 93.200
## 4257 49 11 10 999 0 -1.8 92.893
## 4258 36 9 2 999 0 1.4 94.465
## 4259 50 830 5 999 0 1.4 93.918
## 4260 30 483 1 999 0 1.4 93.918
## 4261 29 95 2 999 0 -2.9 92.963
## 4262 36 201 1 999 0 1.4 93.444
## 4263 37 22 6 999 0 -1.8 92.893
## 4264 37 181 3 999 0 -1.8 92.893
## 4265 46 306 1 999 0 1.4 93.444
## 4266 30 274 1 999 0 1.1 93.994
## 4267 56 236 8 999 0 1.4 93.918
## 4268 35 154 3 999 0 1.4 93.918
## 4269 32 211 3 999 0 -1.8 93.075
## 4270 46 86 1 999 0 1.4 94.465
## 4271 41 51 6 999 0 -1.8 93.075
## 4272 40 33 1 999 0 1.1 93.994
## 4273 39 138 1 999 0 -1.8 92.893
## 4274 40 316 2 999 0 -1.8 93.075
## 4275 57 92 9 999 0 1.4 93.444
## 4276 29 886 3 999 0 1.1 93.994
## 4277 44 83 6 999 0 1.4 93.444
## 4278 56 71 3 999 0 -0.1 93.200
## 4279 57 189 3 999 0 1.4 93.444
## 4280 38 168 3 999 0 -1.8 92.893
## 4281 55 160 3 999 0 -1.7 94.215
## 4282 46 218 2 999 0 1.1 93.994
## 4283 30 128 1 999 0 1.1 93.994
## 4284 37 132 1 999 0 -0.1 93.200
## 4285 54 263 1 999 0 -1.8 93.075
## 4286 33 16 18 999 0 1.4 94.465
## 4287 38 80 1 999 0 1.4 93.444
## 4288 30 51 1 999 0 1.4 94.465
## 4289 37 240 2 999 0 1.1 93.994
## 4290 36 114 3 999 0 1.4 93.444
## 4291 53 111 2 999 0 -1.8 93.075
## 4292 35 218 1 999 0 1.1 93.994
## 4293 44 115 2 999 0 1.1 93.994
## 4294 30 40 1 999 0 -1.8 93.075
## 4295 27 281 1 999 0 -1.8 93.369
## 4296 56 147 2 999 0 -0.1 93.200
## 4297 41 208 2 999 0 1.1 93.994
## 4298 26 712 4 999 0 -1.8 92.843
## 4299 34 160 3 999 0 1.4 94.465
## 4300 25 197 3 999 0 1.4 93.918
## 4301 34 107 1 999 0 1.4 93.444
## 4302 39 241 3 999 0 1.1 93.994
## 4303 35 90 1 999 0 1.4 93.918
## 4304 57 161 1 999 0 1.4 93.444
## 4305 44 41 1 999 0 1.4 93.444
## 4306 38 848 1 999 0 1.4 93.444
## 4307 32 144 1 999 0 1.4 93.918
## 4308 47 60 6 999 0 1.4 94.465
## 4309 60 576 1 999 0 1.1 93.994
## 4310 33 576 1 999 0 1.4 93.444
## 4311 21 153 1 999 0 -2.9 92.963
## 4312 34 232 2 999 0 1.4 94.465
## 4313 37 584 1 999 0 1.1 93.994
## 4314 32 314 3 999 0 1.1 93.994
## 4315 59 19 1 999 0 1.4 94.465
## 4316 40 156 3 999 0 1.4 94.465
## 4317 30 42 7 999 0 1.4 94.465
## 4318 36 572 2 999 0 -1.8 93.749
## 4319 58 176 1 999 0 -1.8 92.893
## 4320 53 204 1 999 0 1.1 93.994
## 4321 37 1081 2 999 0 1.4 93.918
## 4322 30 128 2 999 0 1.4 93.918
## 4323 31 138 1 999 0 1.4 93.444
## 4324 39 116 2 999 0 1.4 93.444
## 4325 42 295 1 999 0 1.4 93.918
## 4326 35 16 9 999 0 1.4 93.444
## 4327 25 214 2 999 0 1.1 93.994
## 4328 34 548 2 999 0 -2.9 92.963
## 4329 29 89 2 999 0 -2.9 92.963
## 4330 35 79 4 999 0 1.4 94.465
## 4331 32 482 2 999 0 -1.8 93.075
## 4332 38 214 2 999 0 1.1 93.994
## 4333 33 128 1 999 0 1.4 93.444
## 4334 58 1242 3 999 0 1.4 93.444
## 4335 36 118 3 999 0 1.4 93.918
## 4336 37 318 2 999 0 -1.8 93.075
## 4337 55 110 2 999 0 -0.1 93.200
## 4338 51 59 2 999 0 1.4 93.444
## 4339 34 143 3 999 0 -0.1 93.200
## 4340 60 120 3 999 0 1.4 93.918
## 4341 43 165 1 999 0 1.1 93.994
## 4342 55 80 2 999 0 1.4 93.444
## 4343 43 53 5 999 0 1.1 93.994
## 4344 34 147 1 999 0 1.4 93.444
## 4345 51 312 1 999 0 -0.1 93.200
## 4346 44 241 4 999 0 1.4 94.465
## 4347 35 166 5 999 0 1.4 93.444
## 4348 33 80 2 999 0 1.4 93.918
## 4349 48 237 1 999 0 -1.8 93.075
## 4350 52 10 3 999 0 1.4 94.465
## 4351 33 227 1 999 0 1.4 93.444
## 4352 37 72 3 999 0 1.1 93.994
## 4353 33 613 2 999 0 1.1 93.994
## 4354 31 149 5 999 0 -0.1 93.200
## 4355 32 123 3 999 0 1.4 94.465
## 4356 33 261 1 999 0 1.1 93.994
## 4357 30 235 1 999 0 1.4 93.444
## 4358 31 1081 2 999 0 1.4 93.918
## 4359 32 230 1 999 0 -2.9 92.201
## 4360 37 834 9 999 0 1.1 93.994
## 4361 52 264 3 999 0 1.4 93.918
## 4362 49 606 1 999 0 1.4 94.465
## 4363 38 286 1 999 0 1.4 93.918
## 4364 35 10 3 999 0 1.4 94.465
## 4365 31 385 7 999 0 1.1 93.994
## 4366 32 101 3 999 0 -0.1 93.200
## 4367 42 241 2 999 0 1.4 93.918
## 4368 32 110 1 999 0 1.4 93.918
## 4369 30 117 1 999 0 1.1 93.994
## 4370 37 309 4 999 0 -1.8 93.075
## 4371 25 11 7 999 0 1.4 94.465
## 4372 38 166 3 999 0 -1.8 92.843
## 4373 43 83 2 999 0 1.4 93.918
## 4374 30 85 2 999 0 1.4 93.918
## 4375 32 261 1 999 0 -0.1 93.200
## 4376 47 320 2 999 0 -2.9 92.469
## 4377 41 1044 3 999 0 1.4 93.918
## 4378 40 168 1 999 0 1.4 93.444
## 4379 37 432 1 999 0 -1.8 92.843
## 4380 40 95 1 999 0 1.4 93.444
## 4381 34 266 1 999 0 -1.8 92.843
## 4382 24 582 2 999 0 -1.8 92.893
## 4383 30 55 3 999 0 1.4 93.444
## 4384 30 103 1 999 0 -1.8 93.075
## 4385 45 117 2 999 0 1.4 93.444
## 4386 60 246 3 999 0 -1.8 93.075
## 4387 30 151 3 999 0 1.4 94.465
## 4388 58 422 1 999 0 1.1 93.994
## 4389 28 67 2 999 0 -2.9 92.469
## 4390 46 485 3 999 0 1.4 94.465
## 4391 35 873 5 999 0 1.4 93.444
## 4392 55 385 6 999 0 1.4 93.444
## 4393 56 113 3 999 0 1.4 93.918
## 4394 37 99 1 999 0 -2.9 92.963
## 4395 32 68 1 999 0 1.4 93.918
## 4396 30 242 3 999 0 1.1 93.994
## 4397 40 236 2 999 0 1.1 93.994
## 4398 42 504 1 999 0 1.4 93.918
## 4399 35 152 1 999 0 -0.1 93.200
## 4400 43 297 2 999 0 1.4 93.918
## 4401 31 161 5 999 0 -0.1 93.200
## 4402 46 193 1 999 0 -1.8 93.075
## 4403 34 186 2 999 0 1.4 94.465
## 4404 28 98 1 999 0 -1.8 93.075
## 4405 37 54 2 999 0 -1.8 93.075
## 4406 40 77 2 999 0 1.4 93.918
## 4407 58 121 2 999 0 -2.9 92.201
## 4408 40 322 3 999 0 1.4 94.465
## 4409 36 1027 2 999 0 -1.8 92.893
## 4410 53 258 18 999 0 1.4 94.465
## 4411 36 91 1 999 0 -1.8 93.075
## 4412 24 326 3 999 0 -1.8 93.075
## 4413 54 377 1 999 0 -0.1 93.200
## 4414 38 76 4 999 0 1.4 93.918
## 4415 32 73 6 999 0 1.4 93.444
## 4416 38 22 3 999 0 -1.8 92.893
## 4417 36 125 5 999 0 1.1 93.994
## 4418 43 110 1 999 0 1.4 93.918
## 4419 32 1181 9 999 0 -1.8 92.893
## 4420 25 89 1 999 0 1.1 93.994
## 4421 51 22 12 999 0 1.4 94.465
## 4422 41 68 3 999 0 -1.8 93.075
## 4423 44 93 8 999 0 1.4 93.444
## 4424 33 63 2 999 0 1.4 93.918
## 4425 55 9 6 999 0 1.4 94.465
## 4426 29 165 1 999 0 1.1 93.994
## 4427 55 171 2 999 0 -1.8 93.075
## 4428 47 97 2 999 0 1.4 93.444
## 4429 36 124 1 999 0 1.4 93.444
## 4430 36 72 1 999 0 -0.1 93.200
## 4431 54 840 3 999 0 -1.8 93.075
## 4432 53 9 4 999 0 1.4 94.465
## 4433 39 291 1 999 0 1.1 93.994
## 4434 30 183 1 999 0 1.4 93.444
## 4435 52 135 2 999 0 1.1 93.994
## 4436 41 234 2 999 0 1.1 93.994
## 4437 30 459 1 999 0 1.4 93.444
## 4438 33 119 1 999 0 -1.8 93.075
## 4439 35 141 2 999 0 -1.8 92.893
## 4440 29 97 2 999 0 1.4 93.444
## 4441 36 212 3 999 0 1.1 93.994
## 4442 34 655 2 999 0 -1.8 92.893
## 4443 81 166 3 999 0 -3.0 92.713
## 4444 30 1294 2 999 0 1.4 93.918
## 4445 31 295 3 999 0 1.4 93.444
## 4446 41 519 1 999 0 1.4 93.444
## 4447 21 551 1 999 0 -1.8 93.749
## 4448 37 97 1 999 0 1.1 93.994
## 4449 27 258 3 999 0 -2.9 92.469
## 4450 40 150 2 999 0 1.4 93.444
## 4451 37 186 3 999 0 -1.8 93.075
## 4452 39 77 5 999 0 1.4 94.465
## 4453 34 64 4 999 0 -1.8 92.893
## 4454 29 148 2 999 0 1.4 93.918
## 4455 38 52 2 999 0 -1.8 93.075
## 4456 34 85 4 999 0 1.4 94.465
## 4457 45 283 4 999 0 1.4 93.918
## 4458 46 1946 4 999 0 1.4 93.918
## 4459 41 193 1 999 0 1.4 93.444
## 4460 44 629 2 999 0 1.4 93.444
## 4461 57 179 2 999 0 1.4 93.918
## 4462 59 127 1 999 0 1.4 94.465
## 4463 29 232 2 999 0 -0.1 93.200
## 4464 57 40 1 999 0 -0.1 93.200
## 4465 50 442 2 999 0 1.4 94.465
## 4466 32 321 2 999 0 1.4 93.918
## 4467 30 322 1 999 0 1.1 93.994
## 4468 38 210 2 999 0 1.4 93.918
## 4469 59 135 9 999 0 1.1 93.994
## 4470 37 124 2 999 0 1.4 94.465
## 4471 31 202 2 999 0 1.4 94.465
## 4472 38 280 3 999 0 1.1 93.994
## 4473 44 442 1 999 0 -1.1 94.767
## 4474 56 136 1 999 0 1.1 93.994
## 4475 58 235 2 999 0 -1.8 92.893
## 4476 51 51 1 999 0 1.4 93.444
## 4477 32 219 2 999 0 -0.1 93.200
## 4478 36 47 1 999 0 1.1 93.994
## 4479 26 688 1 999 0 1.1 93.994
## 4480 34 110 1 999 0 -1.8 93.075
## 4481 35 212 2 999 0 -1.8 93.075
## 4482 45 26 11 999 0 1.4 94.465
## 4483 55 77 7 999 0 1.4 93.444
## 4484 45 194 2 999 0 1.4 93.918
## 4485 49 151 1 999 0 1.4 94.465
## 4486 39 192 2 999 0 1.4 93.444
## 4487 34 136 1 999 0 -1.8 92.843
## 4488 32 160 1 999 0 1.4 93.444
## 4489 21 528 3 999 0 1.4 93.918
## 4490 29 203 3 999 0 1.4 93.444
## 4491 40 501 3 999 0 -1.8 93.075
## 4492 44 70 2 999 0 1.1 93.994
## 4493 34 125 2 999 0 -1.8 92.893
## 4494 45 270 1 999 0 1.1 93.994
## 4495 44 85 6 999 0 1.4 93.444
## 4496 30 765 3 999 0 1.4 93.444
## 4497 33 35 3 999 0 1.4 93.444
## 4498 53 899 2 999 0 1.4 93.444
## 4499 34 108 1 999 0 -1.8 93.075
## 4500 42 491 1 999 0 1.4 94.465
## 4501 35 207 1 999 0 -0.1 93.200
## 4502 42 77 3 999 0 1.4 93.918
## 4503 37 97 2 999 0 1.1 93.994
## 4504 49 889 2 999 0 1.4 93.444
## 4505 51 228 4 999 0 -2.9 92.201
## 4506 47 216 1 999 0 1.4 93.444
## 4507 33 315 1 999 0 1.1 93.994
## 4508 41 57 2 999 0 -1.8 93.075
## 4509 58 44 2 999 0 -1.8 92.893
## 4510 29 97 1 999 0 1.4 93.444
## 4511 46 98 5 999 0 -0.1 93.200
## 4512 31 52 3 999 0 1.4 93.444
## 4513 39 31 1 999 0 1.4 93.444
## 4514 51 74 1 999 0 1.4 94.465
## 4515 37 76 2 999 0 -1.8 92.893
## 4516 28 184 2 999 0 1.1 93.994
## 4517 52 221 2 999 0 1.4 93.918
## 4518 37 132 1 999 0 -1.8 92.893
## 4519 39 156 7 999 0 -1.8 92.893
## 4520 29 365 3 999 0 -2.9 92.963
## 4521 38 102 1 999 0 1.4 94.465
## 4522 39 108 1 999 0 1.4 93.444
## 4523 39 239 2 999 0 -1.8 93.075
## 4524 42 20 5 999 0 1.4 94.465
## 4525 46 365 3 999 0 1.4 94.465
## 4526 29 156 1 999 0 1.4 93.444
## 4527 26 151 2 999 0 1.4 93.918
## 4528 51 436 3 999 0 1.1 93.994
## 4529 35 226 5 999 0 -1.8 92.893
## 4530 25 358 7 999 0 -1.8 92.893
## 4531 35 330 2 999 0 1.4 93.918
## 4532 25 147 10 999 0 1.4 93.918
## 4533 36 34 4 999 0 1.4 94.465
## 4534 45 98 5 999 0 1.4 93.444
## 4535 48 34 2 999 0 1.1 93.994
## 4536 51 41 28 999 0 1.4 94.465
## 4537 43 703 2 999 0 1.1 93.994
## 4538 41 22 2 999 0 1.1 93.994
## 4539 25 78 2 999 0 -3.0 92.713
## 4540 48 85 4 999 0 1.4 93.444
## 4541 36 109 2 999 0 1.1 93.994
## 4542 28 286 5 999 0 1.1 93.994
## 4543 41 211 2 999 0 1.4 93.918
## 4544 54 152 4 999 0 1.4 94.465
## 4545 37 204 1 999 0 1.4 93.444
## 4546 53 122 3 999 0 1.4 94.465
## 4547 32 107 2 999 0 1.4 93.918
## 4548 53 209 1 999 0 1.4 93.918
## 4549 35 14 9 999 0 1.4 94.465
## 4550 53 421 6 999 0 1.4 94.465
## 4551 47 897 5 999 0 1.1 93.994
## 4552 44 9 8 999 0 1.4 94.465
## 4553 59 79 1 999 0 1.4 93.444
## 4554 60 316 2 999 0 1.4 94.465
## 4555 57 160 1 999 0 1.4 93.444
## 4556 53 73 3 999 0 1.4 94.465
## 4557 32 63 5 999 0 -1.8 92.893
## 4558 56 188 9 999 0 1.4 93.918
## 4559 30 390 2 999 0 -2.9 92.201
## 4560 28 200 3 999 0 1.4 93.918
## 4561 36 214 2 999 0 1.4 93.918
## 4562 41 87 1 999 0 1.4 94.465
## 4563 29 69 2 999 0 -0.1 93.200
## 4564 30 154 6 999 0 1.4 94.465
## 4565 34 333 2 999 0 -1.8 93.075
## 4566 35 192 1 999 0 1.4 93.444
## 4567 37 658 2 999 0 1.4 93.918
## 4568 41 77 2 999 0 -1.8 92.893
## 4569 41 103 1 999 0 1.1 93.994
## 4570 48 71 8 999 0 1.4 93.444
## 4571 28 353 1 999 0 -2.9 92.963
## 4572 48 695 3 999 0 -0.1 93.200
## 4573 73 96 2 999 0 -3.4 92.379
## 4574 55 27 7 999 0 1.4 94.465
## 4575 51 507 1 999 0 1.4 93.918
## 4576 35 116 1 999 0 1.4 93.918
## 4577 42 400 6 999 0 1.4 93.918
## 4578 35 188 2 999 0 1.1 93.994
## 4579 32 224 1 999 0 -1.8 93.075
## 4580 48 425 2 999 0 1.4 93.918
## 4581 34 266 3 999 0 -1.8 92.893
## 4582 29 164 1 999 0 1.4 93.444
## 4583 51 141 3 999 0 1.4 93.918
## 4584 30 360 1 999 0 1.4 93.444
## 4585 60 11 5 999 0 1.4 94.465
## 4586 35 230 2 999 0 1.4 94.465
## 4587 45 334 4 999 0 1.4 93.444
## 4588 24 225 2 999 0 1.4 93.918
## 4589 51 527 2 999 0 1.4 94.465
## 4590 35 60 2 999 0 1.4 93.918
## 4591 34 346 5 999 0 1.4 93.444
## 4592 36 75 3 999 0 1.4 94.465
## 4593 38 321 1 999 0 -0.1 93.200
## 4594 30 147 2 999 0 1.4 93.444
## 4595 45 191 1 999 0 -1.8 93.075
## 4596 56 197 1 999 0 1.1 93.994
## 4597 41 91 13 999 0 1.4 93.918
## 4598 34 122 16 999 0 1.4 94.465
## 4599 60 144 1 999 0 1.4 93.918
## 4600 53 16 28 999 0 1.4 94.465
## 4601 46 245 1 999 0 1.4 94.465
## 4602 36 1093 1 999 0 1.4 94.465
## 4603 19 156 1 999 0 -1.8 93.075
## 4604 46 258 1 999 0 -2.9 92.201
## 4605 32 469 2 999 0 1.1 93.994
## 4606 35 473 2 999 0 -1.8 92.893
## 4607 32 213 2 999 0 1.1 93.994
## 4608 29 238 6 999 0 1.4 94.465
## 4609 31 50 1 999 0 -0.1 93.200
## 4610 41 206 1 999 0 1.1 93.994
## 4611 42 168 1 999 0 1.4 93.444
## 4612 25 178 7 999 0 1.4 94.465
## 4613 26 194 3 999 0 1.1 93.994
## 4614 34 26 1 999 0 -1.8 92.893
## 4615 55 48 1 999 0 -0.1 93.200
## 4616 45 243 1 999 0 1.4 93.444
## 4617 36 299 1 999 0 -1.8 93.075
## 4618 44 230 1 999 0 -1.8 93.075
## 4619 36 231 2 999 0 -1.8 93.075
## 4620 29 334 3 999 0 1.4 93.918
## 4621 36 140 1 999 0 -1.8 93.075
## 4622 32 462 1 999 0 -1.8 93.075
## 4623 31 114 1 999 0 1.1 93.994
## 4624 26 115 1 999 0 1.4 93.918
## 4625 44 143 1 999 0 1.4 94.465
## 4626 48 131 1 999 0 1.4 93.444
## 4627 54 208 1 999 0 1.1 93.994
## 4628 42 147 1 999 0 1.4 93.918
## 4629 51 289 3 999 0 -0.1 93.200
## 4630 35 203 1 999 0 -1.8 93.075
## 4631 45 93 1 999 0 1.4 93.444
## 4632 46 70 1 999 0 1.4 93.444
## 4633 52 173 2 999 0 -0.1 93.200
## 4634 32 240 1 999 0 1.4 93.918
## 4635 27 112 5 999 0 1.4 94.465
## 4636 53 100 1 999 0 -1.8 93.075
## 4637 29 14 4 999 0 -1.8 92.893
## 4638 38 59 3 999 0 1.4 94.465
## 4639 31 103 2 999 0 1.4 93.918
## 4640 44 93 8 999 0 1.1 93.994
## 4641 41 58 2 999 0 1.4 93.444
## 4642 34 70 2 999 0 -0.1 93.200
## 4643 34 15 3 999 0 -1.8 92.893
## 4644 29 288 3 999 0 1.1 93.994
## 4645 34 717 2 999 0 1.4 93.918
## 4646 35 274 8 999 0 1.1 93.994
## 4647 47 502 1 999 0 1.4 93.444
## 4648 53 367 1 999 0 -1.8 92.893
## 4649 41 114 3 999 0 -1.8 93.075
## 4650 56 665 1 999 0 1.1 93.994
## 4651 33 176 1 999 0 -1.8 92.893
## 4652 32 159 3 999 0 1.1 93.994
## 4653 40 28 3 999 0 1.1 93.994
## 4654 36 659 1 999 0 -1.8 92.893
## 4655 33 53 7 999 0 1.1 93.994
## 4656 35 134 2 999 0 -1.8 92.893
## 4657 26 173 1 999 0 -2.9 92.201
## 4658 43 250 2 999 0 1.4 93.918
## 4659 31 85 1 999 0 -1.8 93.075
## 4660 28 386 1 999 0 -1.8 92.893
## 4661 50 102 1 999 0 -0.1 93.200
## 4662 34 398 2 999 0 -1.8 92.893
## 4663 57 185 1 999 0 -1.8 93.075
## 4664 33 414 6 999 0 1.4 93.918
## 4665 35 38 1 999 0 -0.1 93.200
## 4666 42 8 2 999 0 1.4 94.465
## 4667 28 63 2 999 0 1.1 93.994
## 4668 42 85 1 999 0 -1.8 92.893
## 4669 37 416 2 999 0 -3.4 92.431
## 4670 34 253 1 999 0 -0.1 93.200
## 4671 43 21 1 999 0 1.1 93.994
## 4672 50 133 1 999 0 1.4 93.444
## 4673 38 111 1 999 0 1.4 93.444
## 4674 42 195 1 999 0 -0.1 93.200
## 4675 31 312 7 999 0 1.1 93.994
## 4676 30 129 2 999 0 1.4 93.444
## 4677 32 67 1 999 0 -1.8 92.893
## 4678 38 103 5 999 0 1.1 93.994
## 4679 37 43 1 999 0 -1.8 93.075
## 4680 32 124 1 999 0 1.4 93.444
## 4681 29 968 1 999 0 1.4 93.918
## 4682 27 494 1 999 0 1.4 93.918
## 4683 31 43 1 999 0 1.4 93.444
## 4684 45 462 4 999 0 -1.8 92.893
## 4685 56 508 1 999 0 1.4 93.918
## 4686 18 368 2 999 0 -3.4 92.431
## 4687 50 513 3 999 0 1.4 94.465
## 4688 44 1041 13 999 0 1.4 94.465
## 4689 28 144 2 999 0 -1.8 92.843
## 4690 37 179 2 999 0 1.1 93.994
## 4691 43 231 3 999 0 -2.9 92.201
## 4692 39 30 24 999 0 1.4 94.465
## 4693 56 83 1 999 0 1.4 93.444
## 4694 31 258 3 999 0 1.4 93.444
## 4695 29 286 3 999 0 1.4 93.918
## 4696 46 56 3 999 0 1.1 93.994
## 4697 39 127 1 999 0 1.1 93.994
## 4698 53 195 2 999 0 1.4 93.444
## 4699 34 196 2 999 0 1.4 93.918
## 4700 42 127 1 999 0 -0.1 93.200
## 4701 54 56 1 999 0 -0.1 93.200
## 4702 49 427 2 999 0 -1.8 92.893
## 4703 40 590 4 999 0 1.4 94.465
## 4704 82 506 2 999 0 -1.8 93.369
## 4705 54 271 2 999 0 1.4 93.918
## 4706 30 192 5 999 0 1.4 93.444
## 4707 56 84 3 999 0 1.4 93.918
## 4708 33 415 2 999 0 1.4 93.918
## 4709 57 698 1 999 0 -1.8 93.369
## 4710 42 322 1 999 0 1.4 94.465
## 4711 32 255 1 999 0 -2.9 92.963
## 4712 39 230 3 999 0 1.1 93.994
## 4713 40 716 2 999 0 1.4 94.465
## 4714 32 165 2 999 0 1.4 93.918
## 4715 46 473 2 999 0 1.4 94.465
## 4716 35 107 1 999 0 -1.8 93.075
## 4717 33 326 1 999 0 1.1 93.994
## 4718 33 59 2 999 0 1.4 93.444
## 4719 42 174 1 999 0 1.4 94.465
## 4720 69 346 3 999 0 -3.4 92.379
## 4721 39 208 2 999 0 1.1 93.994
## 4722 32 233 1 999 0 1.4 93.444
## 4723 51 197 6 999 0 1.4 94.465
## 4724 24 515 1 999 0 -1.8 93.075
## 4725 30 217 4 999 0 1.4 93.444
## 4726 56 390 2 999 0 1.1 93.994
## 4727 47 39 1 999 0 1.4 93.444
## 4728 36 329 2 999 0 -1.8 93.075
## 4729 48 345 2 999 0 -1.8 93.075
## 4730 31 207 1 999 0 -2.9 92.963
## 4731 43 512 6 999 0 1.1 93.994
## 4732 46 57 4 999 0 -1.8 93.075
## 4733 24 109 1 999 0 -2.9 92.963
## 4734 50 66 1 999 0 1.1 93.994
## 4735 45 298 1 999 0 1.1 93.994
## 4736 29 215 2 999 0 1.1 93.994
## 4737 30 118 1 999 0 1.4 93.444
## 4738 39 113 6 999 0 1.4 93.918
## 4739 30 393 2 999 0 1.1 93.994
## 4740 33 88 1 999 0 -1.8 92.893
## 4741 32 316 2 999 0 -1.8 92.893
## 4742 51 263 2 999 0 -2.9 92.963
## 4743 49 333 1 999 0 1.4 93.918
## 4744 29 88 4 999 0 1.4 93.444
## 4745 33 120 1 999 0 1.4 93.444
## 4746 42 148 1 999 0 1.1 93.994
## 4747 31 157 1 999 0 1.1 93.994
## 4748 34 198 2 999 0 -1.8 92.893
## 4749 29 104 10 999 0 -1.8 92.893
## 4750 35 25 1 999 0 1.1 93.994
## 4751 38 96 2 999 0 1.4 93.918
## 4752 53 244 2 999 0 -0.1 93.200
## 4753 47 135 3 999 0 1.1 93.994
## 4754 28 103 2 999 0 1.4 93.918
## 4755 26 72 3 999 0 1.4 94.465
## 4756 73 195 1 999 0 -1.7 94.027
## 4757 42 8 2 999 0 -0.1 93.200
## 4758 35 130 1 999 0 1.4 94.465
## 4759 25 29 1 999 0 -2.9 92.963
## 4760 37 127 3 999 0 1.4 93.918
## 4761 43 74 1 999 0 -0.1 93.200
## 4762 55 327 2 999 0 1.1 93.994
## 4763 56 217 1 999 0 -1.8 92.893
## 4764 39 638 9 999 0 1.4 94.465
## 4765 56 214 10 999 0 1.1 93.994
## 4766 32 123 16 999 0 1.4 93.918
## 4767 58 198 4 999 0 1.4 93.918
## 4768 31 961 2 999 0 1.4 93.444
## 4769 40 144 1 999 0 1.4 93.444
## 4770 39 513 2 999 0 1.4 94.465
## 4771 37 167 3 999 0 -1.8 92.893
## 4772 81 166 3 999 0 -3.0 92.713
## 4773 47 354 4 999 0 1.1 93.994
## 4774 53 91 10 999 0 1.4 93.918
## 4775 39 99 5 999 0 1.4 93.918
## 4776 29 104 1 999 0 1.4 93.444
## 4777 58 505 7 999 0 -0.1 93.200
## 4778 39 332 1 999 0 1.4 94.465
## 4779 41 145 24 999 0 1.4 94.465
## 4780 55 96 2 999 0 1.4 93.444
## 4781 35 319 2 999 0 1.4 94.465
## 4782 36 1222 5 999 0 1.1 93.994
## 4783 38 17 3 999 0 1.4 94.465
## 4784 35 85 2 999 0 1.1 93.994
## 4785 55 113 2 999 0 -2.9 92.963
## 4786 35 424 4 999 0 1.4 93.444
## 4787 57 208 1 999 0 -1.8 92.893
## 4788 41 262 2 999 0 1.4 94.465
## 4789 32 262 1 999 0 -0.1 93.200
## 4790 40 97 1 999 0 1.4 94.465
## 4791 58 281 1 999 0 1.1 93.994
## 4792 36 98 1 999 0 1.4 94.465
## 4793 20 232 2 999 0 -1.8 92.893
## 4794 33 315 2 999 0 1.4 93.444
## 4795 42 91 1 999 0 1.1 93.994
## 4796 63 273 1 999 0 -1.7 94.215
## 4797 36 112 3 999 0 1.4 94.465
## 4798 52 100 1 999 0 1.4 93.444
## 4799 53 236 1 999 0 1.4 93.444
## 4800 45 264 1 999 0 1.4 94.465
## 4801 37 181 2 999 0 -1.8 93.075
## 4802 32 171 1 999 0 1.1 93.994
## 4803 42 308 3 999 0 -1.8 92.893
## 4804 39 66 1 999 0 -0.1 93.200
## 4805 55 435 1 999 0 1.1 93.994
## 4806 25 216 2 999 0 1.4 93.918
## 4807 30 169 2 999 0 1.4 94.465
## 4808 37 177 1 999 0 1.4 93.444
## 4809 28 142 2 999 0 1.1 93.994
## 4810 36 104 1 999 0 -0.1 93.200
## 4811 30 79 4 999 0 1.1 93.994
## 4812 35 86 1 999 0 -1.8 93.075
## 4813 44 235 2 999 0 -0.1 93.200
## 4814 39 177 3 999 0 -1.8 93.075
## 4815 55 412 1 999 0 1.1 93.994
## 4816 40 253 2 999 0 1.4 94.465
## 4817 31 364 5 999 0 -1.8 92.893
## 4818 28 124 1 999 0 -1.8 92.843
## 4819 28 137 1 999 0 1.1 93.994
## 4820 57 127 3 999 0 -0.1 93.200
## 4821 45 398 1 999 0 1.4 94.465
## 4822 38 232 2 999 0 -1.8 93.075
## 4823 41 464 1 999 0 -1.8 93.075
## 4824 37 89 2 999 0 1.4 93.444
## 4825 30 83 5 999 0 1.4 94.465
## 4826 32 122 8 999 0 -1.8 92.893
## 4827 41 172 4 999 0 1.1 93.994
## 4828 55 7 3 999 0 1.4 94.465
## 4829 32 182 1 999 0 1.4 93.444
## 4830 46 111 1 999 0 1.1 93.994
## 4831 47 112 1 999 0 -1.8 93.075
## 4832 37 317 1 999 0 -1.8 93.075
## 4833 46 286 2 999 0 1.4 94.465
## 4834 46 81 1 999 0 -0.1 93.200
## 4835 36 75 1 999 0 1.4 93.444
## 4836 34 703 1 999 0 1.4 94.465
## 4837 25 48 4 999 0 1.1 93.994
## 4838 64 245 3 999 0 -1.7 94.027
## 4839 31 106 4 999 0 1.4 93.918
## 4840 41 45 1 999 0 1.1 93.994
## 4841 24 447 1 999 0 1.1 93.994
## 4842 37 612 3 999 0 -1.8 92.893
## 4843 47 181 1 999 0 -1.8 92.893
## 4844 52 467 5 999 0 1.1 93.994
## 4845 38 195 1 999 0 1.4 93.918
## 4846 30 255 2 999 0 -1.8 92.893
## 4847 60 65 2 999 0 -1.8 92.893
## 4848 33 220 6 999 0 -1.8 93.075
## 4849 37 51 1 999 0 1.1 93.994
## 4850 44 34 1 999 0 1.4 93.444
## 4851 32 515 3 999 0 1.4 93.444
## 4852 37 218 1 999 0 1.4 94.465
## 4853 29 83 3 999 0 1.4 94.465
## 4854 28 117 2 999 0 1.4 93.918
## 4855 32 168 1 999 0 -1.8 92.893
## 4856 29 666 1 999 0 -1.8 92.893
## 4857 43 23 23 999 0 1.4 94.465
## 4858 55 92 1 999 0 1.4 94.465
## 4859 32 1080 1 999 0 -1.8 93.075
## 4860 33 113 1 999 0 -2.9 92.963
## 4861 41 173 3 999 0 1.4 93.444
## 4862 24 109 11 999 0 -1.8 92.893
## 4863 33 71 2 999 0 -1.8 93.075
## 4864 29 8 7 999 0 -1.8 92.893
## 4865 35 94 4 999 0 1.4 94.465
## 4866 31 115 1 999 0 -0.1 93.200
## 4867 31 166 2 999 0 1.4 93.918
## 4868 26 49 3 999 0 -1.8 92.893
## 4869 46 622 1 999 0 -0.1 93.200
## 4870 32 261 13 999 0 1.4 93.918
## 4871 42 698 1 999 0 1.1 93.994
## 4872 32 1973 2 999 0 1.4 93.918
## 4873 51 204 4 999 0 1.1 93.994
## 4874 35 594 2 999 0 1.4 93.444
## 4875 27 238 1 999 0 1.4 93.918
## 4876 33 634 2 999 0 1.4 94.465
## 4877 44 592 4 999 0 1.1 93.994
## 4878 33 396 2 999 0 -1.8 92.893
## 4879 44 8 9 999 0 1.4 94.465
## 4880 53 39 1 999 0 1.4 93.444
## 4881 57 181 1 999 0 -0.1 93.200
## 4882 29 79 3 999 0 1.4 93.444
## 4883 30 509 2 999 0 1.1 93.994
## 4884 40 183 1 999 0 -1.7 94.027
## 4885 39 407 2 999 0 -1.8 93.075
## 4886 53 196 2 999 0 -1.7 94.027
## 4887 37 12 1 999 0 -0.2 92.756
## 4888 40 77 1 999 0 -1.8 92.893
## 4889 33 147 1 999 0 1.4 93.444
## 4890 31 106 1 999 0 -1.7 94.215
## 4891 49 198 1 999 0 -0.1 93.200
## 4892 37 52 1 999 0 -0.1 93.200
## 4893 27 279 1 999 0 -1.8 93.075
## 4894 31 222 7 999 0 1.4 93.918
## 4895 37 71 3 999 0 1.1 93.994
## 4896 52 239 2 999 0 1.4 93.444
## 4897 43 1422 10 999 0 1.4 94.465
## 4898 56 188 6 999 0 1.1 93.994
## 4899 39 135 1 999 0 1.1 93.994
## 4900 42 77 1 999 0 1.4 93.444
## 4901 34 59 7 999 0 -2.9 92.469
## 4902 59 1438 2 999 0 1.1 93.994
## 4903 29 397 1 999 0 -2.9 92.963
## 4904 48 246 2 999 0 1.4 93.918
## 4905 36 197 1 999 0 1.4 93.444
## 4906 42 148 3 999 0 1.4 93.444
## 4907 31 73 1 999 0 1.4 93.918
## 4908 75 83 3 999 0 -1.8 92.893
## 4909 48 94 3 999 0 -1.8 92.893
## 4910 40 811 1 999 0 1.1 93.994
## 4911 33 205 1 999 0 1.1 93.994
## 4912 35 178 1 999 0 1.4 93.918
## 4913 44 460 2 999 0 1.1 93.994
## 4914 31 76 4 999 0 1.4 93.444
## 4915 52 140 2 999 0 1.1 93.994
## 4916 53 291 1 999 0 -1.8 92.893
## 4917 31 298 2 999 0 1.4 94.465
## 4918 77 381 1 999 0 -3.4 92.649
## 4919 29 410 3 999 0 1.1 93.994
## 4920 44 215 1 999 0 1.4 94.465
## 4921 51 236 3 999 0 1.4 94.465
## 4922 29 48 2 999 0 -1.8 93.075
## 4923 56 168 4 999 0 1.4 94.465
## 4924 34 63 2 999 0 1.4 93.444
## 4925 57 19 4 999 0 1.4 94.465
## 4926 36 154 2 999 0 1.1 93.994
## 4927 53 164 1 999 0 -1.8 92.893
## 4928 34 1156 3 999 0 -1.8 93.075
## 4929 25 208 3 999 0 1.4 93.918
## 4930 50 329 1 999 0 -1.8 93.075
## 4931 57 199 4 999 0 1.4 93.444
## 4932 29 214 4 999 0 1.4 93.444
## 4933 35 189 1 999 0 1.4 93.444
## 4934 40 62 1 999 0 1.1 93.994
## 4935 38 64 2 999 0 1.4 93.444
## 4936 34 285 5 999 0 -1.8 92.893
## 4937 39 112 1 999 0 1.4 93.444
## 4938 35 461 1 999 0 1.1 93.994
## 4939 35 117 3 999 0 1.4 93.918
## 4940 37 3 3 999 0 1.1 93.994
## 4941 41 623 3 999 0 1.4 93.918
## 4942 33 241 3 999 0 1.4 94.465
## 4943 54 43 3 999 0 1.4 93.444
## 4944 30 245 4 999 0 1.1 93.994
## 4945 36 16 3 999 0 -1.8 92.893
## 4946 48 50 1 999 0 -1.8 93.075
## 4947 27 125 3 999 0 1.1 93.994
## 4948 46 966 1 999 0 -1.8 92.893
## 4949 54 113 2 999 0 -1.8 93.075
## 4950 30 355 2 999 0 1.1 93.994
## 4951 44 418 1 999 0 -1.8 93.075
## 4952 29 296 1 999 0 1.4 93.444
## 4953 50 121 2 999 0 1.1 93.994
## 4954 51 8 6 999 0 1.4 93.444
## 4955 35 212 1 999 0 -1.8 93.075
## 4956 34 126 4 999 0 1.4 93.918
## 4957 48 69 2 999 0 1.4 93.444
## 4958 41 101 1 999 0 1.4 93.918
## 4959 27 73 3 999 0 1.4 94.465
## 4960 36 89 1 999 0 -1.8 92.893
## 4961 37 355 2 999 0 1.1 93.994
## 4962 48 224 4 999 0 1.1 93.994
## 4963 48 16 10 999 0 1.4 93.444
## 4964 46 121 1 999 0 1.4 93.444
## 4965 35 107 3 999 0 1.1 93.994
## 4966 32 133 4 999 0 -1.8 92.893
## 4967 43 95 12 999 0 1.1 93.994
## 4968 22 51 4 999 0 -1.8 92.893
## 4969 45 59 1 999 0 -0.1 93.200
## 4970 34 198 2 999 0 1.4 94.465
## 4971 40 876 2 999 0 1.4 93.444
## 4972 48 248 1 999 0 1.1 93.994
## 4973 27 255 1 999 0 1.4 93.918
## 4974 58 269 1 999 0 1.4 94.465
## 4975 37 138 6 999 0 1.1 93.994
## 4976 30 141 1 999 0 1.4 93.444
## 4977 36 522 1 999 0 1.1 93.994
## 4978 70 70 3 999 0 -2.9 92.201
## 4979 42 175 3 999 0 1.4 94.465
## 4980 50 1195 2 999 0 -0.1 93.200
## 4981 30 26 6 999 0 -1.8 92.893
## 4982 24 107 1 999 0 -0.1 93.200
## 4983 51 17 3 999 0 1.4 94.465
## 4984 37 18 1 999 0 1.1 93.994
## 4985 50 213 1 999 0 1.4 93.444
## 4986 31 71 16 999 0 1.4 93.444
## 4987 32 121 4 999 0 1.4 94.465
## 4988 36 203 5 999 0 1.1 93.994
## 4989 39 380 1 999 0 1.1 93.994
## 4990 32 340 2 999 0 -1.8 93.075
## 4991 54 85 2 999 0 1.1 93.994
## 4992 36 777 2 999 0 -1.8 93.075
## 4993 40 235 1 999 0 1.4 94.465
## 4994 36 612 1 999 0 -1.8 92.893
## 4995 58 186 1 999 0 -2.9 92.201
## 4996 35 171 1 999 0 1.4 93.444
## 4997 58 68 3 999 0 1.4 93.444
## 4998 56 160 3 999 0 1.4 93.444
## 4999 39 175 1 999 0 -1.8 92.893
## cons.conf.idx euribor3m nr.employed job_encoded marital_encoded
## 1 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2 -40.8 1.260 5076.2 0.13296860 0.1006557
## 3 -46.2 1.270 5099.1 0.09310345 0.1088732
## 4 -46.2 1.250 5099.1 0.11473272 0.1006557
## 5 -26.9 0.740 5017.5 0.13296860 0.1400736
## 6 -46.2 1.266 5099.1 0.27285817 0.1006557
## 7 -46.2 1.244 5099.1 0.27285817 0.1006557
## 8 -46.2 1.291 5099.1 0.13296860 0.1006557
## 9 -46.2 1.313 5099.1 0.13296860 0.1006557
## 10 -46.2 1.291 5099.1 0.06836679 0.1006557
## 11 -47.1 1.405 5099.1 0.10609689 0.1400736
## 12 -42.0 4.153 5195.8 0.10609689 0.1088732
## 13 -47.1 1.405 5099.1 0.06776441 0.1006557
## 14 -42.0 4.076 5195.8 0.13296860 0.1006557
## 15 -39.8 0.767 4991.6 0.10609689 0.1400736
## 16 -40.0 0.699 5008.7 0.31059507 0.1088732
## 17 -37.5 0.879 4963.6 0.27285817 0.1006557
## 18 -47.1 1.435 5099.1 0.10875332 0.1006557
## 19 -46.2 1.250 5099.1 0.13296860 0.1400736
## 20 -46.2 1.250 5099.1 0.06836679 0.1006557
## 21 -42.0 4.120 5195.8 0.06836679 0.1006557
## 22 -31.4 0.821 5076.2 0.27285817 0.1006557
## 23 -46.2 1.244 5099.1 0.06776441 0.1006557
## 24 -40.8 1.260 5076.2 0.13296860 0.1006557
## 25 -34.8 0.649 5008.7 0.06776441 0.1400736
## 26 -47.1 1.410 5099.1 0.06836679 0.1006557
## 27 -47.1 1.435 5099.1 0.06836679 0.1006557
## 28 -46.2 1.327 5099.1 0.06836679 0.1400736
## 29 -46.2 1.313 5099.1 0.13296860 0.1088732
## 30 -46.2 1.244 5099.1 0.13296860 0.1400736
## 31 -42.0 4.191 5195.8 0.09310345 0.1006557
## 32 -46.2 1.327 5099.1 0.13296860 0.1006557
## 33 -42.0 4.120 5195.8 0.06836679 0.1006557
## 34 -46.2 1.266 5099.1 0.06776441 0.1006557
## 35 -42.0 4.076 5195.8 0.10609689 0.1006557
## 36 -46.2 1.327 5099.1 0.10609689 0.1400736
## 37 -42.0 4.076 5195.8 0.13296860 0.1400736
## 38 -37.5 0.882 4963.6 0.10609689 0.1006557
## 39 -50.0 1.703 5099.1 0.11473272 0.1400736
## 40 -42.0 4.153 5195.8 0.11473272 0.1006557
## 41 -42.0 4.021 5195.8 0.31059507 0.1400736
## 42 -26.9 0.740 5017.5 0.13296860 0.1400736
## 43 -46.2 1.244 5099.1 0.13296860 0.1006557
## 44 -46.2 1.266 5099.1 0.13296860 0.1006557
## 45 -33.0 0.720 5023.5 0.10609689 0.1006557
## 46 -46.2 1.266 5099.1 0.10609689 0.1006557
## 47 -46.2 1.313 5099.1 0.06776441 0.1006557
## 48 -47.1 1.410 5099.1 0.13296860 0.1400736
## 49 -42.0 4.021 5195.8 0.13296860 0.1400736
## 50 -46.2 1.266 5099.1 0.11473272 0.1400736
## 51 -46.2 1.327 5099.1 0.06836679 0.1006557
## 52 -46.2 1.334 5099.1 0.06836679 0.1006557
## 53 -46.2 1.281 5099.1 0.06836679 0.1006557
## 54 -46.2 1.334 5099.1 0.13296860 0.1400736
## 55 -42.0 4.191 5195.8 0.06836679 0.1006557
## 56 -47.1 1.405 5099.1 0.13296860 0.1400736
## 57 -42.0 4.191 5195.8 0.13296860 0.1006557
## 58 -46.2 1.327 5099.1 0.06836679 0.1006557
## 59 -46.2 1.354 5099.1 0.06776441 0.1400736
## 60 -46.2 1.313 5099.1 0.06836679 0.1006557
## 61 -31.4 0.884 5076.2 0.06836679 0.1006557
## 62 -46.2 1.266 5099.1 0.06836679 0.1006557
## 63 -33.0 0.717 5023.5 0.31059507 0.1400736
## 64 -31.4 0.825 5076.2 0.31059507 0.1400736
## 65 -46.2 1.281 5099.1 0.06836679 0.1006557
## 66 -46.2 1.266 5099.1 0.06776441 0.1400736
## 67 -47.1 1.365 5099.1 0.10609689 0.1006557
## 68 -33.0 0.712 5023.5 0.27285817 0.1006557
## 69 -42.0 4.153 5195.8 0.11473272 0.1006557
## 70 -47.1 1.435 5099.1 0.06836679 0.1006557
## 71 -46.2 1.327 5099.1 0.09310345 0.1088732
## 72 -46.2 1.266 5099.1 0.13296860 0.1400736
## 73 -46.2 1.250 5099.1 0.06836679 0.1006557
## 74 -42.0 4.191 5195.8 0.11473272 0.1088732
## 75 -46.2 1.281 5099.1 0.06836679 0.1400736
## 76 -42.0 4.076 5195.8 0.13296860 0.1400736
## 77 -46.2 1.344 5099.1 0.09310345 0.1006557
## 78 -47.1 1.405 5099.1 0.13510101 0.1400736
## 79 -46.2 1.327 5099.1 0.10609689 0.1006557
## 80 -46.2 1.250 5099.1 0.06836679 0.1006557
## 81 -47.1 1.435 5099.1 0.10609689 0.1006557
## 82 -49.5 0.982 4963.6 0.10609689 0.1006557
## 83 -34.8 0.646 5008.7 0.13296860 0.1006557
## 84 -49.5 1.000 4963.6 0.27285817 0.1088732
## 85 -46.2 1.266 5099.1 0.13296860 0.1400736
## 86 -38.3 0.905 4991.6 0.13296860 0.1088732
## 87 -47.1 1.405 5099.1 0.13296860 0.1400736
## 88 -31.4 0.881 5076.2 0.31059507 0.1400736
## 89 -46.2 1.291 5099.1 0.13296860 0.1400736
## 90 -46.2 1.244 5099.1 0.13296860 0.1088732
## 91 -46.2 1.344 5099.1 0.13296860 0.1006557
## 92 -46.2 1.327 5099.1 0.06836679 0.1006557
## 93 -46.2 1.334 5099.1 0.10609689 0.1400736
## 94 -42.0 4.076 5195.8 0.06836679 0.1400736
## 95 -31.4 0.849 5076.2 0.13296860 0.1006557
## 96 -46.2 1.250 5099.1 0.06776441 0.1400736
## 97 -31.4 0.873 5076.2 0.27285817 0.1006557
## 98 -42.0 4.076 5195.8 0.13296860 0.1088732
## 99 -33.6 1.072 5076.2 0.27285817 0.1088732
## 100 -47.1 1.405 5099.1 0.13296860 0.1006557
## 101 -46.2 1.327 5099.1 0.06836679 0.1006557
## 102 -40.3 0.822 4991.6 0.27285817 0.1006557
## 103 -40.0 0.699 5008.7 0.27285817 0.1006557
## 104 -47.1 1.410 5099.1 0.10609689 0.1400736
## 105 -47.1 1.435 5099.1 0.06776441 0.1006557
## 106 -47.1 1.479 5099.1 0.09310345 0.1006557
## 107 -46.2 1.299 5099.1 0.06776441 0.1400736
## 108 -42.0 4.021 5195.8 0.13296860 0.1400736
## 109 -47.1 1.479 5099.1 0.13296860 0.1006557
## 110 -33.0 0.709 5023.5 0.13296860 0.1006557
## 111 -33.6 1.044 5076.2 0.13296860 0.1006557
## 112 -40.8 1.262 5076.2 0.10609689 0.1400736
## 113 -49.5 0.982 4963.6 0.10609689 0.1400736
## 114 -46.2 1.299 5099.1 0.09310345 0.1006557
## 115 -40.8 1.260 5076.2 0.27285817 0.1006557
## 116 -46.2 1.327 5099.1 0.06836679 0.1006557
## 117 -49.5 0.972 4963.6 0.13296860 0.1006557
## 118 -42.0 4.021 5195.8 0.09310345 0.1006557
## 119 -42.0 4.021 5195.8 0.10609689 0.1006557
## 120 -40.0 0.684 5008.7 0.13296860 0.1006557
## 121 -46.2 1.291 5099.1 0.13296860 0.1400736
## 122 -46.2 1.299 5099.1 0.06836679 0.1006557
## 123 -46.2 1.266 5099.1 0.11473272 0.1400736
## 124 -42.0 4.153 5195.8 0.09310345 0.1006557
## 125 -49.5 1.008 4963.6 0.31059507 0.1400736
## 126 -42.0 4.076 5195.8 0.13296860 0.1006557
## 127 -38.3 0.894 4991.6 0.11473272 0.1006557
## 128 -47.1 1.483 5099.1 0.10609689 0.1400736
## 129 -40.8 1.235 5076.2 0.09310345 0.1400736
## 130 -46.2 1.291 5099.1 0.10609689 0.1400736
## 131 -46.2 1.344 5099.1 0.06836679 0.1006557
## 132 -46.2 1.299 5099.1 0.11473272 0.1006557
## 133 -42.0 4.153 5195.8 0.10875332 0.1006557
## 134 -42.0 4.153 5195.8 0.10609689 0.1400736
## 135 -46.2 1.344 5099.1 0.09310345 0.1006557
## 136 -46.2 1.327 5099.1 0.11473272 0.1006557
## 137 -46.2 1.250 5099.1 0.06836679 0.1088732
## 138 -47.1 1.405 5099.1 0.10609689 0.1400736
## 139 -40.8 1.262 5076.2 0.06776441 0.1006557
## 140 -46.2 1.313 5099.1 0.06836679 0.1006557
## 141 -39.8 0.739 4991.6 0.13296860 0.1400736
## 142 -46.2 1.250 5099.1 0.13296860 0.1400736
## 143 -42.0 4.021 5195.8 0.27285817 0.1006557
## 144 -46.2 1.291 5099.1 0.10609689 0.1400736
## 145 -42.0 4.153 5195.8 0.13296860 0.1006557
## 146 -42.0 4.021 5195.8 0.13296860 0.1400736
## 147 -47.1 1.405 5099.1 0.11473272 0.1006557
## 148 -46.2 1.250 5099.1 0.10609689 0.1006557
## 149 -46.2 1.299 5099.1 0.10609689 0.1400736
## 150 -46.2 1.250 5099.1 0.10609689 0.1088732
## 151 -40.0 0.682 5008.7 0.11473272 0.1006557
## 152 -46.2 1.250 5099.1 0.27285817 0.1088732
## 153 -46.2 1.291 5099.1 0.06776441 0.1006557
## 154 -46.2 1.313 5099.1 0.13296860 0.1006557
## 155 -47.1 1.405 5099.1 0.06776441 0.1088732
## 156 -33.0 0.718 5023.5 0.11473272 0.1006557
## 157 -42.0 4.076 5195.8 0.10875332 0.1400736
## 158 -46.2 1.344 5099.1 0.06836679 0.1006557
## 159 -47.1 1.365 5099.1 0.13296860 0.1400736
## 160 -46.2 1.281 5099.1 0.06836679 0.1006557
## 161 -31.4 0.851 5076.2 0.27285817 0.1400736
## 162 -42.0 4.021 5195.8 0.06836679 0.1088732
## 163 -47.1 1.483 5099.1 0.10875332 0.1400736
## 164 -46.2 1.313 5099.1 0.10609689 0.1006557
## 165 -42.0 4.191 5195.8 0.06836679 0.1006557
## 166 -46.2 1.266 5099.1 0.06836679 0.1088732
## 167 -46.2 1.327 5099.1 0.06836679 0.1006557
## 168 -46.2 1.313 5099.1 0.06836679 0.1006557
## 169 -46.2 1.281 5099.1 0.06776441 0.1400736
## 170 -47.1 1.405 5099.1 0.06836679 0.1006557
## 171 -42.0 4.153 5195.8 0.10609689 0.1006557
## 172 -46.2 1.270 5099.1 0.31059507 0.1400736
## 173 -46.2 1.334 5099.1 0.13296860 0.1006557
## 174 -26.9 0.739 5017.5 0.06776441 0.1006557
## 175 -33.0 0.714 5023.5 0.27285817 0.1006557
## 176 -42.0 4.021 5195.8 0.13296860 0.1006557
## 177 -47.1 1.423 5099.1 0.10609689 0.1006557
## 178 -30.1 0.714 5017.5 0.13296860 0.1006557
## 179 -29.8 0.768 5017.5 0.06836679 0.1006557
## 180 -46.2 1.250 5099.1 0.09484778 0.1006557
## 181 -42.0 4.153 5195.8 0.06836679 0.1006557
## 182 -49.5 1.025 4963.6 0.27285817 0.1006557
## 183 -46.2 1.334 5099.1 0.06836679 0.1006557
## 184 -31.4 0.851 5076.2 0.13296860 0.1006557
## 185 -46.2 1.344 5099.1 0.06836679 0.1006557
## 186 -46.2 1.313 5099.1 0.13296860 0.1006557
## 187 -40.0 0.695 5008.7 0.06776441 0.1400736
## 188 -46.2 1.244 5099.1 0.06776441 0.1400736
## 189 -46.2 1.244 5099.1 0.27285817 0.1088732
## 190 -42.0 4.021 5195.8 0.11473272 0.1006557
## 191 -42.0 4.153 5195.8 0.13510101 0.1088732
## 192 -46.2 1.344 5099.1 0.06836679 0.1006557
## 193 -47.1 1.410 5099.1 0.06836679 0.1006557
## 194 -31.4 0.883 5076.2 0.10609689 0.1088732
## 195 -46.2 1.250 5099.1 0.06776441 0.1006557
## 196 -46.2 1.313 5099.1 0.06776441 0.1006557
## 197 -46.2 1.266 5099.1 0.06776441 0.1400736
## 198 -46.2 1.281 5099.1 0.10609689 0.1400736
## 199 -42.0 4.153 5195.8 0.13510101 0.1400736
## 200 -30.1 0.715 5017.5 0.10875332 0.1088732
## 201 -42.0 4.076 5195.8 0.13296860 0.1088732
## 202 -47.1 1.405 5099.1 0.13296860 0.1006557
## 203 -42.0 4.153 5195.8 0.09310345 0.1006557
## 204 -42.0 4.076 5195.8 0.13510101 0.1400736
## 205 -42.0 4.021 5195.8 0.13296860 0.1006557
## 206 -42.0 4.191 5195.8 0.13296860 0.1400736
## 207 -42.0 4.153 5195.8 0.13296860 0.1006557
## 208 -46.2 1.244 5099.1 0.11473272 0.1006557
## 209 -47.1 1.435 5099.1 0.13296860 0.1006557
## 210 -46.2 1.313 5099.1 0.06836679 0.1006557
## 211 -47.1 1.410 5099.1 0.06836679 0.1006557
## 212 -46.2 1.327 5099.1 0.13296860 0.1006557
## 213 -46.2 1.266 5099.1 0.10609689 0.1006557
## 214 -46.2 1.281 5099.1 0.06836679 0.1006557
## 215 -46.2 1.299 5099.1 0.13296860 0.1400736
## 216 -40.3 0.889 4991.6 0.11473272 0.1006557
## 217 -42.0 4.153 5195.8 0.10609689 0.1088732
## 218 -40.8 1.262 5076.2 0.10609689 0.1400736
## 219 -40.3 0.782 4991.6 0.13296860 0.1006557
## 220 -46.2 1.291 5099.1 0.06776441 0.1088732
## 221 -46.2 1.327 5099.1 0.06776441 0.1006557
## 222 -47.1 1.453 5099.1 0.06836679 0.1006557
## 223 -46.2 1.250 5099.1 0.06836679 0.1006557
## 224 -46.2 1.313 5099.1 0.06776441 0.1400736
## 225 -37.5 0.882 4963.6 0.13296860 0.1400736
## 226 -34.8 0.646 5008.7 0.10609689 0.1006557
## 227 -40.3 0.899 4991.6 0.13296860 0.1006557
## 228 -31.4 0.883 5076.2 0.10875332 0.1006557
## 229 -46.2 1.334 5099.1 0.06836679 0.1006557
## 230 -46.2 1.266 5099.1 0.13296860 0.1400736
## 231 -47.1 1.405 5099.1 0.11473272 0.1006557
## 232 -33.0 0.721 5023.5 0.10609689 0.1006557
## 233 -46.2 1.291 5099.1 0.13296860 0.1006557
## 234 -46.2 1.281 5099.1 0.11473272 0.1006557
## 235 -46.2 1.281 5099.1 0.10609689 0.1400736
## 236 -46.2 1.250 5099.1 0.06776441 0.1006557
## 237 -46.2 1.344 5099.1 0.13296860 0.1400736
## 238 -47.1 1.453 5099.1 0.13296860 0.1006557
## 239 -46.2 1.334 5099.1 0.06836679 0.1006557
## 240 -46.2 1.250 5099.1 0.13296860 0.1400736
## 241 -47.1 1.372 5099.1 0.13296860 0.1400736
## 242 -46.2 1.266 5099.1 0.10609689 0.1400736
## 243 -42.0 4.120 5195.8 0.10609689 0.1006557
## 244 -47.1 1.365 5099.1 0.10609689 0.1400736
## 245 -33.0 0.715 5023.5 0.13296860 0.1006557
## 246 -46.2 1.266 5099.1 0.06836679 0.1400736
## 247 -42.0 4.120 5195.8 0.06776441 0.1088732
## 248 -46.2 1.327 5099.1 0.10875332 0.1088732
## 249 -40.3 0.810 4991.6 0.31059507 0.1400736
## 250 -37.5 0.879 4963.6 0.13296860 0.1006557
## 251 -46.2 1.281 5099.1 0.13296860 0.1006557
## 252 -30.1 0.722 5017.5 0.10609689 0.1006557
## 253 -42.0 4.191 5195.8 0.13296860 0.1006557
## 254 -46.2 1.266 5099.1 0.06776441 0.1400736
## 255 -46.2 1.334 5099.1 0.13296860 0.1006557
## 256 -30.1 0.714 5017.5 0.13296860 0.1400736
## 257 -46.2 1.291 5099.1 0.08955224 0.1006557
## 258 -42.0 4.120 5195.8 0.11473272 0.1006557
## 259 -34.6 0.645 5008.7 0.10609689 0.1006557
## 260 -46.2 1.291 5099.1 0.06836679 0.1400736
## 261 -47.1 1.410 5099.1 0.09310345 0.1006557
## 262 -40.8 1.224 5076.2 0.10609689 0.1006557
## 263 -46.2 1.250 5099.1 0.06836679 0.1006557
## 264 -40.3 0.810 4991.6 0.13296860 0.1006557
## 265 -42.0 4.153 5195.8 0.10609689 0.1088732
## 266 -46.2 1.344 5099.1 0.10609689 0.1006557
## 267 -46.2 1.266 5099.1 0.06836679 0.1400736
## 268 -47.1 1.410 5099.1 0.06836679 0.1006557
## 269 -46.2 1.327 5099.1 0.06776441 0.1006557
## 270 -31.4 0.825 5076.2 0.31059507 0.1400736
## 271 -40.8 1.206 5076.2 0.31059507 0.1400736
## 272 -46.2 1.250 5099.1 0.06836679 0.1006557
## 273 -46.2 1.327 5099.1 0.06776441 0.1006557
## 274 -31.4 0.883 5076.2 0.27285817 0.1006557
## 275 -47.1 1.405 5099.1 0.31059507 0.1400736
## 276 -33.6 0.908 5076.2 0.31059507 0.1400736
## 277 -47.1 1.365 5099.1 0.09310345 0.1006557
## 278 -34.6 0.638 5008.7 0.13296860 0.1006557
## 279 -46.2 1.354 5099.1 0.10609689 0.1006557
## 280 -46.2 1.327 5099.1 0.06776441 0.1006557
## 281 -50.8 1.031 4963.6 0.27285817 0.1006557
## 282 -40.0 0.699 5008.7 0.10609689 0.1006557
## 283 -40.0 0.697 5008.7 0.10609689 0.1400736
## 284 -42.0 4.153 5195.8 0.09310345 0.1006557
## 285 -30.1 0.714 5017.5 0.27285817 0.1006557
## 286 -29.8 0.762 5017.5 0.13510101 0.1006557
## 287 -46.2 1.299 5099.1 0.10609689 0.1400736
## 288 -46.2 1.344 5099.1 0.06836679 0.1006557
## 289 -47.1 1.423 5099.1 0.10875332 0.1006557
## 290 -47.1 1.415 5099.1 0.27285817 0.1006557
## 291 -47.1 1.405 5099.1 0.06776441 0.1006557
## 292 -34.8 0.655 5008.7 0.06836679 0.1400736
## 293 -42.0 4.191 5195.8 0.13296860 0.1400736
## 294 -47.1 1.405 5099.1 0.06776441 0.1006557
## 295 -47.1 1.479 5099.1 0.06836679 0.1006557
## 296 -46.2 1.250 5099.1 0.27285817 0.1088732
## 297 -47.1 1.410 5099.1 0.06836679 0.1006557
## 298 -42.0 4.076 5195.8 0.10609689 0.1006557
## 299 -46.2 1.281 5099.1 0.11473272 0.1006557
## 300 -46.2 1.266 5099.1 0.06776441 0.1400736
## 301 -47.1 1.405 5099.1 0.13296860 0.1006557
## 302 -46.2 1.264 5099.1 0.06776441 0.1006557
## 303 -46.2 1.250 5099.1 0.11473272 0.1006557
## 304 -46.2 1.334 5099.1 0.06836679 0.1400736
## 305 -42.0 4.021 5195.8 0.11473272 0.1006557
## 306 -46.2 1.244 5099.1 0.13296860 0.1400736
## 307 -26.9 0.754 5017.5 0.27285817 0.1006557
## 308 -46.2 1.334 5099.1 0.06836679 0.1006557
## 309 -46.2 1.266 5099.1 0.13296860 0.1006557
## 310 -46.2 1.344 5099.1 0.13296860 0.1006557
## 311 -42.0 4.076 5195.8 0.13296860 0.1166667
## 312 -42.0 4.191 5195.8 0.10609689 0.1006557
## 313 -46.2 1.291 5099.1 0.10609689 0.1400736
## 314 -47.1 1.453 5099.1 0.06836679 0.1006557
## 315 -47.1 1.453 5099.1 0.06836679 0.1006557
## 316 -46.2 1.327 5099.1 0.06836679 0.1006557
## 317 -40.3 0.870 4991.6 0.13296860 0.1400736
## 318 -47.1 1.405 5099.1 0.13296860 0.1400736
## 319 -42.0 4.191 5195.8 0.06836679 0.1006557
## 320 -46.2 1.299 5099.1 0.06836679 0.1006557
## 321 -42.0 4.021 5195.8 0.13296860 0.1088732
## 322 -37.5 0.879 4963.6 0.31059507 0.1400736
## 323 -42.0 4.076 5195.8 0.13296860 0.1400736
## 324 -46.2 1.266 5099.1 0.31059507 0.1400736
## 325 -46.2 1.299 5099.1 0.06776441 0.1006557
## 326 -46.2 1.291 5099.1 0.06836679 0.1400736
## 327 -47.1 1.405 5099.1 0.06776441 0.1088732
## 328 -46.2 1.266 5099.1 0.06836679 0.1400736
## 329 -46.2 1.281 5099.1 0.13296860 0.1006557
## 330 -46.2 1.334 5099.1 0.13296860 0.1006557
## 331 -46.2 1.344 5099.1 0.27285817 0.1088732
## 332 -42.0 4.076 5195.8 0.06836679 0.1006557
## 333 -47.1 1.483 5099.1 0.06836679 0.1006557
## 334 -46.2 1.281 5099.1 0.06836679 0.1006557
## 335 -46.2 1.266 5099.1 0.13296860 0.1006557
## 336 -42.0 4.153 5195.8 0.13296860 0.1006557
## 337 -46.2 1.299 5099.1 0.06776441 0.1400736
## 338 -46.2 1.299 5099.1 0.06836679 0.1006557
## 339 -42.0 4.076 5195.8 0.06836679 0.1400736
## 340 -46.2 1.291 5099.1 0.13296860 0.1400736
## 341 -47.1 1.405 5099.1 0.10609689 0.1006557
## 342 -46.2 1.266 5099.1 0.13296860 0.1006557
## 343 -31.4 0.869 5076.2 0.11473272 0.1006557
## 344 -46.2 1.354 5099.1 0.13296860 0.1088732
## 345 -42.0 4.191 5195.8 0.10609689 0.1006557
## 346 -26.9 0.722 5017.5 0.10609689 0.1006557
## 347 -47.1 1.365 5099.1 0.13296860 0.1006557
## 348 -42.0 4.191 5195.8 0.11473272 0.1088732
## 349 -46.2 1.299 5099.1 0.06836679 0.1006557
## 350 -46.2 1.299 5099.1 0.10609689 0.1400736
## 351 -42.0 4.153 5195.8 0.09310345 0.1006557
## 352 -33.6 1.044 5076.2 0.06776441 0.1400736
## 353 -46.2 1.344 5099.1 0.06776441 0.1088732
## 354 -46.2 1.334 5099.1 0.09484778 0.1088732
## 355 -46.2 1.313 5099.1 0.11473272 0.1400736
## 356 -42.0 4.021 5195.8 0.13510101 0.1400736
## 357 -49.5 1.032 4963.6 0.31059507 0.1400736
## 358 -46.2 1.266 5099.1 0.06836679 0.1006557
## 359 -42.0 4.153 5195.8 0.06836679 0.1088732
## 360 -30.1 0.719 5017.5 0.09310345 0.1088732
## 361 -47.1 1.423 5099.1 0.06776441 0.1400736
## 362 -46.2 1.244 5099.1 0.10609689 0.1400736
## 363 -46.2 1.281 5099.1 0.06836679 0.1006557
## 364 -33.6 1.048 5076.2 0.09310345 0.1400736
## 365 -46.2 1.344 5099.1 0.11473272 0.1006557
## 366 -40.8 1.268 5076.2 0.13296860 0.1006557
## 367 -46.2 1.313 5099.1 0.13296860 0.1006557
## 368 -31.4 0.849 5076.2 0.31059507 0.1400736
## 369 -47.1 1.405 5099.1 0.06836679 0.1006557
## 370 -40.8 1.252 5076.2 0.10609689 0.1006557
## 371 -46.2 1.266 5099.1 0.11473272 0.1088732
## 372 -46.2 1.266 5099.1 0.09310345 0.1088732
## 373 -42.0 4.191 5195.8 0.13296860 0.1006557
## 374 -46.2 1.313 5099.1 0.11473272 0.1006557
## 375 -42.0 4.153 5195.8 0.13296860 0.1006557
## 376 -47.1 1.410 5099.1 0.06836679 0.1006557
## 377 -40.8 1.266 5076.2 0.13510101 0.1006557
## 378 -46.2 1.313 5099.1 0.06836679 0.1006557
## 379 -46.2 1.334 5099.1 0.06836679 0.1006557
## 380 -46.2 1.344 5099.1 0.06776441 0.1400736
## 381 -42.0 4.076 5195.8 0.10609689 0.1006557
## 382 -42.0 4.076 5195.8 0.10875332 0.1006557
## 383 -42.0 4.120 5195.8 0.10609689 0.1400736
## 384 -42.0 4.191 5195.8 0.10875332 0.1006557
## 385 -46.2 1.299 5099.1 0.06776441 0.1400736
## 386 -46.2 1.354 5099.1 0.11473272 0.1006557
## 387 -42.0 4.191 5195.8 0.06836679 0.1088732
## 388 -46.2 1.327 5099.1 0.10609689 0.1006557
## 389 -46.2 1.250 5099.1 0.06836679 0.1006557
## 390 -47.1 1.415 5099.1 0.13296860 0.1006557
## 391 -31.4 0.879 5076.2 0.27285817 0.1006557
## 392 -46.2 1.259 5099.1 0.10609689 0.1400736
## 393 -37.5 0.881 4963.6 0.10875332 0.1400736
## 394 -46.2 1.250 5099.1 0.13296860 0.1088732
## 395 -46.2 1.266 5099.1 0.13296860 0.1400736
## 396 -47.1 1.405 5099.1 0.13296860 0.1006557
## 397 -47.1 1.365 5099.1 0.13296860 0.1400736
## 398 -47.1 1.405 5099.1 0.06836679 0.1006557
## 399 -37.5 0.884 4963.6 0.11473272 0.1006557
## 400 -46.2 1.334 5099.1 0.13296860 0.1400736
## 401 -46.2 1.291 5099.1 0.06836679 0.1400736
## 402 -42.0 4.120 5195.8 0.06776441 0.1088732
## 403 -47.1 1.405 5099.1 0.11473272 0.1088732
## 404 -40.0 0.699 5008.7 0.10609689 0.1006557
## 405 -31.4 0.883 5076.2 0.13296860 0.1006557
## 406 -31.4 0.881 5076.2 0.06836679 0.1006557
## 407 -47.1 1.405 5099.1 0.11473272 0.1400736
## 408 -46.2 1.344 5099.1 0.10609689 0.1006557
## 409 -42.0 4.191 5195.8 0.06776441 0.1006557
## 410 -46.2 1.266 5099.1 0.06836679 0.1400736
## 411 -47.1 1.405 5099.1 0.10609689 0.1006557
## 412 -31.4 0.881 5076.2 0.06776441 0.1006557
## 413 -34.8 0.655 5008.7 0.13296860 0.1088732
## 414 -47.1 1.410 5099.1 0.10609689 0.1088732
## 415 -46.2 1.291 5099.1 0.06836679 0.1400736
## 416 -31.4 0.873 5076.2 0.13296860 0.1006557
## 417 -46.2 1.334 5099.1 0.11473272 0.1006557
## 418 -46.2 1.281 5099.1 0.10875332 0.1006557
## 419 -46.2 1.313 5099.1 0.06836679 0.1400736
## 420 -40.3 0.881 4991.6 0.13296860 0.1400736
## 421 -46.2 1.291 5099.1 0.06836679 0.1006557
## 422 -34.6 0.638 5008.7 0.27285817 0.1006557
## 423 -42.0 4.153 5195.8 0.27285817 0.1088732
## 424 -46.2 1.250 5099.1 0.10609689 0.1088732
## 425 -47.1 1.405 5099.1 0.13296860 0.1400736
## 426 -47.1 1.405 5099.1 0.06836679 0.1006557
## 427 -46.2 1.334 5099.1 0.13296860 0.1006557
## 428 -46.2 1.270 5099.1 0.11473272 0.1400736
## 429 -46.2 1.334 5099.1 0.06776441 0.1006557
## 430 -50.8 1.049 4963.6 0.31059507 0.1400736
## 431 -46.2 1.244 5099.1 0.06776441 0.1088732
## 432 -40.3 0.802 4991.6 0.13296860 0.1006557
## 433 -47.1 1.423 5099.1 0.10875332 0.1006557
## 434 -47.1 1.405 5099.1 0.10875332 0.1006557
## 435 -33.0 0.717 5023.5 0.10609689 0.1006557
## 436 -46.2 1.250 5099.1 0.06836679 0.1400736
## 437 -47.1 1.435 5099.1 0.10875332 0.1400736
## 438 -46.2 1.266 5099.1 0.10609689 0.1006557
## 439 -46.2 1.250 5099.1 0.06836679 0.1400736
## 440 -47.1 1.483 5099.1 0.10609689 0.1400736
## 441 -47.1 1.405 5099.1 0.13510101 0.1006557
## 442 -46.2 1.266 5099.1 0.13296860 0.1006557
## 443 -47.1 1.415 5099.1 0.06776441 0.1006557
## 444 -39.8 0.727 4991.6 0.06836679 0.1006557
## 445 -46.2 1.281 5099.1 0.06836679 0.1400736
## 446 -34.6 0.635 5008.7 0.31059507 0.1400736
## 447 -47.1 1.365 5099.1 0.13296860 0.1006557
## 448 -40.8 1.268 5076.2 0.09484778 0.1006557
## 449 -46.2 1.250 5099.1 0.10875332 0.1006557
## 450 -42.0 4.153 5195.8 0.06836679 0.1006557
## 451 -29.8 0.773 5017.5 0.11473272 0.1006557
## 452 -46.2 1.327 5099.1 0.06836679 0.1006557
## 453 -46.2 1.266 5099.1 0.13296860 0.1088732
## 454 -46.2 1.266 5099.1 0.06836679 0.1006557
## 455 -40.8 1.262 5076.2 0.06776441 0.1088732
## 456 -46.2 1.250 5099.1 0.13296860 0.1006557
## 457 -42.0 4.153 5195.8 0.06776441 0.1088732
## 458 -47.1 1.435 5099.1 0.13296860 0.1400736
## 459 -46.2 1.327 5099.1 0.06836679 0.1006557
## 460 -40.0 0.697 5008.7 0.11473272 0.1006557
## 461 -47.1 1.405 5099.1 0.11473272 0.1006557
## 462 -47.1 1.405 5099.1 0.13510101 0.1006557
## 463 -47.1 1.410 5099.1 0.06776441 0.1088732
## 464 -46.2 1.299 5099.1 0.06836679 0.1006557
## 465 -47.1 1.405 5099.1 0.06836679 0.1006557
## 466 -46.2 1.327 5099.1 0.13296860 0.1088732
## 467 -42.0 4.076 5195.8 0.11473272 0.1006557
## 468 -42.0 4.153 5195.8 0.10609689 0.1006557
## 469 -49.5 1.025 4963.6 0.27285817 0.1006557
## 470 -42.0 4.021 5195.8 0.10875332 0.1006557
## 471 -46.2 1.334 5099.1 0.10609689 0.1400736
## 472 -39.8 0.729 4991.6 0.31059507 0.1400736
## 473 -46.2 1.327 5099.1 0.13296860 0.1088732
## 474 -50.8 1.040 4963.6 0.13296860 0.1088732
## 475 -47.1 1.435 5099.1 0.13296860 0.1006557
## 476 -46.2 1.327 5099.1 0.06836679 0.1006557
## 477 -34.8 0.652 5008.7 0.06836679 0.1400736
## 478 -42.0 4.076 5195.8 0.13296860 0.1088732
## 479 -47.1 1.405 5099.1 0.13296860 0.1006557
## 480 -47.1 1.445 5099.1 0.06776441 0.1006557
## 481 -46.2 1.250 5099.1 0.13296860 0.1400736
## 482 -31.4 0.881 5076.2 0.13296860 0.1006557
## 483 -29.8 0.819 5017.5 0.13296860 0.1006557
## 484 -46.2 1.334 5099.1 0.10609689 0.1088732
## 485 -46.2 1.266 5099.1 0.13296860 0.1400736
## 486 -46.2 1.281 5099.1 0.10609689 0.1006557
## 487 -46.2 1.291 5099.1 0.13296860 0.1006557
## 488 -31.4 0.861 5076.2 0.10609689 0.1006557
## 489 -42.0 4.021 5195.8 0.10609689 0.1006557
## 490 -47.1 1.410 5099.1 0.06836679 0.1006557
## 491 -42.0 4.021 5195.8 0.10609689 0.1006557
## 492 -46.2 1.250 5099.1 0.06776441 0.1006557
## 493 -46.2 1.327 5099.1 0.13296860 0.1006557
## 494 -42.0 4.021 5195.8 0.11473272 0.1006557
## 495 -46.2 1.313 5099.1 0.06776441 0.1006557
## 496 -46.2 1.327 5099.1 0.13296860 0.1400736
## 497 -26.9 0.722 5017.5 0.13296860 0.1400736
## 498 -29.8 0.770 5017.5 0.10609689 0.1006557
## 499 -42.0 4.191 5195.8 0.06836679 0.1006557
## 500 -46.2 1.250 5099.1 0.13296860 0.1006557
## 501 -46.2 1.250 5099.1 0.10875332 0.1400736
## 502 -42.0 4.191 5195.8 0.10609689 0.1006557
## 503 -42.0 4.191 5195.8 0.13510101 0.1006557
## 504 -47.1 1.405 5099.1 0.31059507 0.1006557
## 505 -46.2 1.313 5099.1 0.06836679 0.1400736
## 506 -46.2 1.327 5099.1 0.06776441 0.1400736
## 507 -40.3 0.822 4991.6 0.27285817 0.1006557
## 508 -40.3 0.846 4991.6 0.10875332 0.1400736
## 509 -30.1 0.718 5017.5 0.11473272 0.1400736
## 510 -46.2 1.334 5099.1 0.06836679 0.1006557
## 511 -47.1 1.483 5099.1 0.06836679 0.1088732
## 512 -47.1 1.435 5099.1 0.13296860 0.1400736
## 513 -47.1 1.405 5099.1 0.10609689 0.1400736
## 514 -42.0 4.021 5195.8 0.10609689 0.1006557
## 515 -47.1 1.405 5099.1 0.06836679 0.1006557
## 516 -29.8 0.770 5017.5 0.13296860 0.1006557
## 517 -47.1 1.405 5099.1 0.06836679 0.1006557
## 518 -47.1 1.410 5099.1 0.06836679 0.1006557
## 519 -31.4 0.854 5076.2 0.13510101 0.1006557
## 520 -46.2 1.327 5099.1 0.10609689 0.1006557
## 521 -46.2 1.313 5099.1 0.13296860 0.1400736
## 522 -42.0 4.153 5195.8 0.11473272 0.1006557
## 523 -47.1 1.405 5099.1 0.13296860 0.1006557
## 524 -42.0 4.076 5195.8 0.06776441 0.1006557
## 525 -46.2 1.344 5099.1 0.06836679 0.1400736
## 526 -42.0 4.153 5195.8 0.27285817 0.1088732
## 527 -46.2 1.313 5099.1 0.06776441 0.1006557
## 528 -39.8 0.702 4991.6 0.10609689 0.1400736
## 529 -46.2 1.281 5099.1 0.06836679 0.1400736
## 530 -42.0 4.021 5195.8 0.09484778 0.1006557
## 531 -26.9 0.744 5017.5 0.11473272 0.1400736
## 532 -40.3 0.899 4991.6 0.10609689 0.1400736
## 533 -46.2 1.334 5099.1 0.10875332 0.1006557
## 534 -34.8 0.643 5008.7 0.10609689 0.1006557
## 535 -46.2 1.334 5099.1 0.06836679 0.1006557
## 536 -47.1 1.405 5099.1 0.10875332 0.1006557
## 537 -46.2 1.291 5099.1 0.27285817 0.1006557
## 538 -47.1 1.405 5099.1 0.10609689 0.1006557
## 539 -47.1 1.405 5099.1 0.11473272 0.1006557
## 540 -49.5 0.972 4963.6 0.27285817 0.1006557
## 541 -46.2 1.344 5099.1 0.13296860 0.1006557
## 542 -47.1 1.405 5099.1 0.06836679 0.1006557
## 543 -49.5 0.972 4963.6 0.31059507 0.1400736
## 544 -40.3 0.802 4991.6 0.13296860 0.1006557
## 545 -47.1 1.405 5099.1 0.13296860 0.1006557
## 546 -30.1 0.716 5017.5 0.27285817 0.1006557
## 547 -42.0 4.021 5195.8 0.11473272 0.1006557
## 548 -42.0 4.021 5195.8 0.13296860 0.1088732
## 549 -46.2 1.250 5099.1 0.10875332 0.1006557
## 550 -47.1 1.483 5099.1 0.06836679 0.1006557
## 551 -46.2 1.244 5099.1 0.06836679 0.1400736
## 552 -46.2 1.299 5099.1 0.13296860 0.1006557
## 553 -46.2 1.291 5099.1 0.06836679 0.1400736
## 554 -34.8 0.639 5008.7 0.13296860 0.1400736
## 555 -46.2 1.250 5099.1 0.13296860 0.1006557
## 556 -34.8 0.649 5008.7 0.13296860 0.1006557
## 557 -38.3 0.899 4991.6 0.13296860 0.1006557
## 558 -46.2 1.327 5099.1 0.06776441 0.1400736
## 559 -39.8 0.767 4991.6 0.13296860 0.1006557
## 560 -47.1 1.466 5099.1 0.10609689 0.1006557
## 561 -39.8 0.702 4991.6 0.09484778 0.1006557
## 562 -40.8 1.262 5076.2 0.10875332 0.1400736
## 563 -50.8 1.049 4963.6 0.10609689 0.1400736
## 564 -46.2 1.313 5099.1 0.13296860 0.1006557
## 565 -40.3 0.899 4991.6 0.27285817 0.1006557
## 566 -37.5 0.883 4963.6 0.27285817 0.1006557
## 567 -42.0 4.153 5195.8 0.06836679 0.1088732
## 568 -31.4 0.849 5076.2 0.31059507 0.1400736
## 569 -46.2 1.299 5099.1 0.10609689 0.1006557
## 570 -50.0 1.560 5099.1 0.13296860 0.1088732
## 571 -46.2 1.313 5099.1 0.06836679 0.1400736
## 572 -47.1 1.405 5099.1 0.06836679 0.1088732
## 573 -46.2 1.281 5099.1 0.11473272 0.1006557
## 574 -38.3 0.898 4991.6 0.06776441 0.1400736
## 575 -46.2 1.299 5099.1 0.10609689 0.1400736
## 576 -46.2 1.281 5099.1 0.06836679 0.1400736
## 577 -42.0 4.076 5195.8 0.13296860 0.1400736
## 578 -31.4 0.883 5076.2 0.13296860 0.1006557
## 579 -46.2 1.327 5099.1 0.13296860 0.1006557
## 580 -37.5 0.883 4963.6 0.13296860 0.1006557
## 581 -42.0 4.076 5195.8 0.13296860 0.1400736
## 582 -46.2 1.291 5099.1 0.13296860 0.1006557
## 583 -47.1 1.365 5099.1 0.09310345 0.1006557
## 584 -38.3 0.904 4991.6 0.31059507 0.1400736
## 585 -30.1 0.722 5017.5 0.11473272 0.1006557
## 586 -46.2 1.344 5099.1 0.13296860 0.1400736
## 587 -31.4 0.854 5076.2 0.13296860 0.1006557
## 588 -47.1 1.410 5099.1 0.06776441 0.1006557
## 589 -47.1 1.405 5099.1 0.13296860 0.1006557
## 590 -46.2 1.291 5099.1 0.06776441 0.1400736
## 591 -46.2 1.327 5099.1 0.10609689 0.1400736
## 592 -47.1 1.410 5099.1 0.06836679 0.1006557
## 593 -46.2 1.327 5099.1 0.06836679 0.1006557
## 594 -46.2 1.313 5099.1 0.06836679 0.1006557
## 595 -46.2 1.250 5099.1 0.06776441 0.1006557
## 596 -46.2 1.344 5099.1 0.11473272 0.1006557
## 597 -46.2 1.327 5099.1 0.10609689 0.1006557
## 598 -47.1 1.423 5099.1 0.10609689 0.1006557
## 599 -46.2 1.344 5099.1 0.06836679 0.1006557
## 600 -46.2 1.334 5099.1 0.13296860 0.1400736
## 601 -47.1 1.435 5099.1 0.06836679 0.1006557
## 602 -31.4 0.859 5076.2 0.13296860 0.1400736
## 603 -46.2 1.250 5099.1 0.06836679 0.1006557
## 604 -47.1 1.405 5099.1 0.09484778 0.1006557
## 605 -33.6 0.908 5076.2 0.13296860 0.1006557
## 606 -47.1 1.435 5099.1 0.13296860 0.1088732
## 607 -42.0 4.153 5195.8 0.10609689 0.1400736
## 608 -42.0 4.021 5195.8 0.11473272 0.1088732
## 609 -46.2 1.266 5099.1 0.06836679 0.1006557
## 610 -34.8 0.639 5008.7 0.06836679 0.1088732
## 611 -47.1 1.410 5099.1 0.13296860 0.1006557
## 612 -42.0 4.120 5195.8 0.13296860 0.1400736
## 613 -46.2 1.266 5099.1 0.06836679 0.1400736
## 614 -47.1 1.405 5099.1 0.06836679 0.1006557
## 615 -46.2 1.244 5099.1 0.06836679 0.1400736
## 616 -40.0 0.699 5008.7 0.13510101 0.1006557
## 617 -26.9 0.722 5017.5 0.10609689 0.1006557
## 618 -33.0 0.710 5023.5 0.10609689 0.1006557
## 619 -46.2 1.281 5099.1 0.06836679 0.1006557
## 620 -40.8 1.260 5076.2 0.06836679 0.1006557
## 621 -42.0 4.153 5195.8 0.06836679 0.1006557
## 622 -46.2 1.327 5099.1 0.13296860 0.1400736
## 623 -46.2 1.344 5099.1 0.06836679 0.1088732
## 624 -46.2 1.291 5099.1 0.13296860 0.1088732
## 625 -46.2 1.313 5099.1 0.09310345 0.1006557
## 626 -40.8 1.260 5076.2 0.13296860 0.1006557
## 627 -47.1 1.405 5099.1 0.06836679 0.1006557
## 628 -33.0 0.707 5023.5 0.13510101 0.1006557
## 629 -46.2 1.281 5099.1 0.10609689 0.1088732
## 630 -42.0 4.153 5195.8 0.06836679 0.1006557
## 631 -46.2 1.266 5099.1 0.06776441 0.1006557
## 632 -47.1 1.405 5099.1 0.10875332 0.1006557
## 633 -46.2 1.313 5099.1 0.10875332 0.1006557
## 634 -46.2 1.313 5099.1 0.06836679 0.1006557
## 635 -42.0 4.153 5195.8 0.10609689 0.1400736
## 636 -30.1 0.722 5017.5 0.10609689 0.1006557
## 637 -46.2 1.266 5099.1 0.06776441 0.1088732
## 638 -42.0 4.076 5195.8 0.11473272 0.1006557
## 639 -46.2 1.291 5099.1 0.13510101 0.1006557
## 640 -47.1 1.405 5099.1 0.11473272 0.1006557
## 641 -42.0 4.153 5195.8 0.13510101 0.1006557
## 642 -46.2 1.327 5099.1 0.10609689 0.1006557
## 643 -46.2 1.266 5099.1 0.06776441 0.1400736
## 644 -47.1 1.479 5099.1 0.09310345 0.1400736
## 645 -46.2 1.327 5099.1 0.31059507 0.1400736
## 646 -46.2 1.291 5099.1 0.06776441 0.1006557
## 647 -46.2 1.291 5099.1 0.10609689 0.1088732
## 648 -46.2 1.299 5099.1 0.06836679 0.1400736
## 649 -46.2 1.266 5099.1 0.11473272 0.1006557
## 650 -26.9 0.742 5017.5 0.06836679 0.1400736
## 651 -46.2 1.313 5099.1 0.10609689 0.1088732
## 652 -46.2 1.291 5099.1 0.10609689 0.1400736
## 653 -34.8 0.654 5008.7 0.13296860 0.1006557
## 654 -46.2 1.344 5099.1 0.06776441 0.1088732
## 655 -46.2 1.281 5099.1 0.06836679 0.1006557
## 656 -46.2 1.299 5099.1 0.06776441 0.1006557
## 657 -47.1 1.423 5099.1 0.10609689 0.1006557
## 658 -30.1 0.715 5017.5 0.11473272 0.1006557
## 659 -46.2 1.299 5099.1 0.11473272 0.1006557
## 660 -40.0 0.699 5008.7 0.13296860 0.1006557
## 661 -46.2 1.291 5099.1 0.06776441 0.1006557
## 662 -38.3 0.886 4991.6 0.13296860 0.1400736
## 663 -33.6 1.044 5076.2 0.31059507 0.1400736
## 664 -26.9 0.728 5017.5 0.13296860 0.1400736
## 665 -42.0 4.153 5195.8 0.13296860 0.1006557
## 666 -31.4 0.838 5076.2 0.13296860 0.1088732
## 667 -40.8 1.235 5076.2 0.31059507 0.1400736
## 668 -46.2 1.281 5099.1 0.13296860 0.1006557
## 669 -40.3 0.810 4991.6 0.13296860 0.1006557
## 670 -42.0 4.153 5195.8 0.09310345 0.1006557
## 671 -46.2 1.327 5099.1 0.09310345 0.1006557
## 672 -46.2 1.266 5099.1 0.10609689 0.1400736
## 673 -33.0 0.720 5023.5 0.11473272 0.1088732
## 674 -42.0 4.120 5195.8 0.06776441 0.1400736
## 675 -40.0 0.695 5008.7 0.10875332 0.1006557
## 676 -46.2 1.334 5099.1 0.06836679 0.1006557
## 677 -47.1 1.405 5099.1 0.06776441 0.1006557
## 678 -50.8 1.046 4963.6 0.06776441 0.1088732
## 679 -33.0 0.700 5023.5 0.11473272 0.1006557
## 680 -38.3 0.899 4991.6 0.13296860 0.1006557
## 681 -46.2 1.266 5099.1 0.13296860 0.1400736
## 682 -40.3 0.876 4991.6 0.10609689 0.1400736
## 683 -47.1 1.423 5099.1 0.13296860 0.1400736
## 684 -46.2 1.244 5099.1 0.10609689 0.1088732
## 685 -46.2 1.313 5099.1 0.06836679 0.1400736
## 686 -46.2 1.291 5099.1 0.06776441 0.1400736
## 687 -34.8 0.636 5008.7 0.06836679 0.1400736
## 688 -46.2 1.291 5099.1 0.06836679 0.1006557
## 689 -46.2 1.313 5099.1 0.13296860 0.1400736
## 690 -42.0 4.191 5195.8 0.11473272 0.1088732
## 691 -31.4 0.821 5076.2 0.13296860 0.1006557
## 692 -46.2 1.281 5099.1 0.31059507 0.1400736
## 693 -31.4 0.869 5076.2 0.31059507 0.1400736
## 694 -46.2 1.334 5099.1 0.13296860 0.1006557
## 695 -42.0 4.120 5195.8 0.06776441 0.1006557
## 696 -46.2 1.327 5099.1 0.06836679 0.1006557
## 697 -40.3 0.889 4991.6 0.13296860 0.1006557
## 698 -42.0 4.076 5195.8 0.13510101 0.1006557
## 699 -46.2 1.250 5099.1 0.13296860 0.1006557
## 700 -40.3 0.810 4991.6 0.13296860 0.1006557
## 701 -33.6 1.059 5076.2 0.13296860 0.1006557
## 702 -42.0 4.191 5195.8 0.13296860 0.1006557
## 703 -46.2 1.250 5099.1 0.13296860 0.1400736
## 704 -47.1 1.405 5099.1 0.06836679 0.1006557
## 705 -46.2 1.266 5099.1 0.06836679 0.1088732
## 706 -46.2 1.250 5099.1 0.13296860 0.1400736
## 707 -46.2 1.313 5099.1 0.11473272 0.1006557
## 708 -33.0 0.706 5023.5 0.27285817 0.1006557
## 709 -26.9 0.731 5017.5 0.11473272 0.1006557
## 710 -46.2 1.266 5099.1 0.06776441 0.1400736
## 711 -46.2 1.334 5099.1 0.06836679 0.1088732
## 712 -42.0 4.076 5195.8 0.13296860 0.1400736
## 713 -46.2 1.313 5099.1 0.06836679 0.1006557
## 714 -46.2 1.281 5099.1 0.31059507 0.1400736
## 715 -46.2 1.334 5099.1 0.06776441 0.1006557
## 716 -47.1 1.365 5099.1 0.10875332 0.1400736
## 717 -46.2 1.266 5099.1 0.13296860 0.1400736
## 718 -47.1 1.410 5099.1 0.06836679 0.1006557
## 719 -42.0 4.153 5195.8 0.06836679 0.1006557
## 720 -46.2 1.299 5099.1 0.10609689 0.1006557
## 721 -47.1 1.415 5099.1 0.10609689 0.1006557
## 722 -38.3 0.899 4991.6 0.31059507 0.1400736
## 723 -46.2 1.354 5099.1 0.13510101 0.1006557
## 724 -46.2 1.313 5099.1 0.10609689 0.1400736
## 725 -46.2 1.291 5099.1 0.06836679 0.1400736
## 726 -31.4 0.881 5076.2 0.06776441 0.1006557
## 727 -46.2 1.250 5099.1 0.06776441 0.1006557
## 728 -39.8 0.723 4991.6 0.09484778 0.1006557
## 729 -40.0 0.682 5008.7 0.10609689 0.1006557
## 730 -47.1 1.405 5099.1 0.06836679 0.1006557
## 731 -47.1 1.479 5099.1 0.09310345 0.1400736
## 732 -42.0 4.191 5195.8 0.10875332 0.1006557
## 733 -46.2 1.344 5099.1 0.11473272 0.1400736
## 734 -42.0 4.191 5195.8 0.10609689 0.1400736
## 735 -46.2 1.313 5099.1 0.10609689 0.1400736
## 736 -40.0 0.672 5008.7 0.31059507 0.1400736
## 737 -31.4 0.854 5076.2 0.27285817 0.1006557
## 738 -29.8 0.819 5017.5 0.09310345 0.1006557
## 739 -46.2 1.334 5099.1 0.13296860 0.1088732
## 740 -42.0 4.021 5195.8 0.13296860 0.1088732
## 741 -47.1 1.410 5099.1 0.10609689 0.1400736
## 742 -42.0 4.076 5195.8 0.06836679 0.1400736
## 743 -46.2 1.327 5099.1 0.11473272 0.1006557
## 744 -42.0 4.076 5195.8 0.06776441 0.1006557
## 745 -47.1 1.405 5099.1 0.06776441 0.1006557
## 746 -30.1 0.714 5017.5 0.10609689 0.1006557
## 747 -46.2 1.354 5099.1 0.27285817 0.1006557
## 748 -46.2 1.299 5099.1 0.06776441 0.1400736
## 749 -46.2 1.250 5099.1 0.06776441 0.1088732
## 750 -46.2 1.313 5099.1 0.11473272 0.1088732
## 751 -46.2 1.299 5099.1 0.06836679 0.1400736
## 752 -47.1 1.405 5099.1 0.06776441 0.1006557
## 753 -42.0 4.153 5195.8 0.06836679 0.1006557
## 754 -42.0 4.153 5195.8 0.11473272 0.1006557
## 755 -46.2 1.313 5099.1 0.13296860 0.1400736
## 756 -47.1 1.405 5099.1 0.27285817 0.1006557
## 757 -47.1 1.415 5099.1 0.13296860 0.1006557
## 758 -46.2 1.334 5099.1 0.06776441 0.1400736
## 759 -47.1 1.405 5099.1 0.13296860 0.1006557
## 760 -46.2 1.266 5099.1 0.10609689 0.1400736
## 761 -47.1 1.405 5099.1 0.11473272 0.1088732
## 762 -26.9 0.722 5017.5 0.13296860 0.1400736
## 763 -46.2 1.250 5099.1 0.13296860 0.1006557
## 764 -42.0 4.021 5195.8 0.06836679 0.1006557
## 765 -46.2 1.313 5099.1 0.06836679 0.1006557
## 766 -42.0 4.191 5195.8 0.06836679 0.1006557
## 767 -42.0 4.120 5195.8 0.13296860 0.1088732
## 768 -46.2 1.250 5099.1 0.06836679 0.1400736
## 769 -40.3 0.896 4991.6 0.10875332 0.1400736
## 770 -42.0 4.153 5195.8 0.10609689 0.1400736
## 771 -46.2 1.281 5099.1 0.13296860 0.1400736
## 772 -46.2 1.299 5099.1 0.10609689 0.1006557
## 773 -26.9 0.743 5017.5 0.10609689 0.1006557
## 774 -42.0 4.153 5195.8 0.11473272 0.1006557
## 775 -37.5 0.881 4963.6 0.13296860 0.1006557
## 776 -42.0 4.076 5195.8 0.11473272 0.1400736
## 777 -47.1 1.405 5099.1 0.11473272 0.1006557
## 778 -46.2 1.327 5099.1 0.27285817 0.1006557
## 779 -46.2 1.334 5099.1 0.10609689 0.1006557
## 780 -46.2 1.299 5099.1 0.09310345 0.1006557
## 781 -42.0 4.120 5195.8 0.06776441 0.1400736
## 782 -46.2 1.250 5099.1 0.06776441 0.1400736
## 783 -46.2 1.266 5099.1 0.06776441 0.1400736
## 784 -46.2 1.299 5099.1 0.06776441 0.1006557
## 785 -26.9 0.742 5017.5 0.06836679 0.1400736
## 786 -46.2 1.244 5099.1 0.06836679 0.1006557
## 787 -47.1 1.405 5099.1 0.13296860 0.1400736
## 788 -46.2 1.250 5099.1 0.13296860 0.1400736
## 789 -46.2 1.327 5099.1 0.06776441 0.1088732
## 790 -46.2 1.344 5099.1 0.11473272 0.1006557
## 791 -46.2 1.291 5099.1 0.06836679 0.1006557
## 792 -50.8 1.031 4963.6 0.31059507 0.1400736
## 793 -46.2 1.266 5099.1 0.27285817 0.1006557
## 794 -46.2 1.266 5099.1 0.10609689 0.1006557
## 795 -46.2 1.266 5099.1 0.13296860 0.1400736
## 796 -49.5 0.972 4963.6 0.27285817 0.1006557
## 797 -46.2 1.281 5099.1 0.06776441 0.1006557
## 798 -39.8 0.748 4991.6 0.13296860 0.1400736
## 799 -30.1 0.715 5017.5 0.11473272 0.1006557
## 800 -49.5 1.037 4963.6 0.31059507 0.1400736
## 801 -40.8 1.215 5076.2 0.06836679 0.1006557
## 802 -46.2 1.250 5099.1 0.10609689 0.1400736
## 803 -37.5 0.879 4963.6 0.10609689 0.1400736
## 804 -37.5 0.882 4963.6 0.13296860 0.1400736
## 805 -46.2 1.334 5099.1 0.06836679 0.1006557
## 806 -47.1 1.435 5099.1 0.06776441 0.1006557
## 807 -46.2 1.244 5099.1 0.13296860 0.1400736
## 808 -47.1 1.365 5099.1 0.27285817 0.1088732
## 809 -40.8 1.262 5076.2 0.13296860 0.1400736
## 810 -46.2 1.250 5099.1 0.13296860 0.1088732
## 811 -42.0 4.076 5195.8 0.06776441 0.1400736
## 812 -47.1 1.405 5099.1 0.13296860 0.1400736
## 813 -47.1 1.466 5099.1 0.09310345 0.1006557
## 814 -46.2 1.334 5099.1 0.13296860 0.1006557
## 815 -46.2 1.354 5099.1 0.11473272 0.1006557
## 816 -46.2 1.244 5099.1 0.06776441 0.1006557
## 817 -46.2 1.281 5099.1 0.06836679 0.1006557
## 818 -46.2 1.281 5099.1 0.11473272 0.1006557
## 819 -42.0 4.191 5195.8 0.06836679 0.1400736
## 820 -46.2 1.313 5099.1 0.13296860 0.1088732
## 821 -49.5 1.016 4963.6 0.27285817 0.1006557
## 822 -31.4 0.884 5076.2 0.06836679 0.1006557
## 823 -46.2 1.281 5099.1 0.06836679 0.1088732
## 824 -46.2 1.291 5099.1 0.13296860 0.1006557
## 825 -46.2 1.327 5099.1 0.06836679 0.1006557
## 826 -46.2 1.250 5099.1 0.06836679 0.1400736
## 827 -40.8 1.262 5076.2 0.13296860 0.1006557
## 828 -47.1 1.479 5099.1 0.10609689 0.1400736
## 829 -46.2 1.250 5099.1 0.06836679 0.1006557
## 830 -46.2 1.281 5099.1 0.27285817 0.1088732
## 831 -42.0 4.191 5195.8 0.06836679 0.1088732
## 832 -30.1 0.722 5017.5 0.13296860 0.1400736
## 833 -40.8 1.260 5076.2 0.06776441 0.1400736
## 834 -47.1 1.479 5099.1 0.10609689 0.1088732
## 835 -42.0 4.153 5195.8 0.09310345 0.1088732
## 836 -40.3 0.861 4991.6 0.13296860 0.1006557
## 837 -31.4 0.851 5076.2 0.27285817 0.1006557
## 838 -47.1 1.466 5099.1 0.06836679 0.1006557
## 839 -33.6 1.072 5076.2 0.11473272 0.1006557
## 840 -46.2 1.299 5099.1 0.13296860 0.1006557
## 841 -47.1 1.466 5099.1 0.06836679 0.1006557
## 842 -46.2 1.327 5099.1 0.06776441 0.1006557
## 843 -46.2 1.327 5099.1 0.27285817 0.1006557
## 844 -40.0 0.699 5008.7 0.10609689 0.1006557
## 845 -46.2 1.299 5099.1 0.09310345 0.1006557
## 846 -31.4 0.873 5076.2 0.27285817 0.1006557
## 847 -47.1 1.405 5099.1 0.06836679 0.1006557
## 848 -46.2 1.266 5099.1 0.13296860 0.1400736
## 849 -46.2 1.299 5099.1 0.13296860 0.1166667
## 850 -46.2 1.327 5099.1 0.06836679 0.1006557
## 851 -40.8 1.262 5076.2 0.27285817 0.1006557
## 852 -47.1 1.410 5099.1 0.06776441 0.1006557
## 853 -46.2 1.291 5099.1 0.06776441 0.1400736
## 854 -42.0 4.076 5195.8 0.10609689 0.1400736
## 855 -31.4 0.883 5076.2 0.13296860 0.1400736
## 856 -46.2 1.281 5099.1 0.10609689 0.1006557
## 857 -47.1 1.453 5099.1 0.06776441 0.1006557
## 858 -29.8 0.750 5017.5 0.13510101 0.1400736
## 859 -30.1 0.719 5017.5 0.13296860 0.1006557
## 860 -46.2 1.327 5099.1 0.06836679 0.1006557
## 861 -31.4 0.879 5076.2 0.06836679 0.1006557
## 862 -42.0 4.120 5195.8 0.10609689 0.1006557
## 863 -47.1 1.405 5099.1 0.06836679 0.1006557
## 864 -47.1 1.410 5099.1 0.06836679 0.1006557
## 865 -46.2 1.244 5099.1 0.11473272 0.1006557
## 866 -42.0 4.076 5195.8 0.06836679 0.1006557
## 867 -38.3 0.900 4991.6 0.13296860 0.1006557
## 868 -46.2 1.266 5099.1 0.06836679 0.1006557
## 869 -49.5 0.972 4963.6 0.09484778 0.1006557
## 870 -42.0 4.021 5195.8 0.10609689 0.1400736
## 871 -42.0 4.153 5195.8 0.10609689 0.1400736
## 872 -47.1 1.466 5099.1 0.11473272 0.1006557
## 873 -47.1 1.453 5099.1 0.13510101 0.1088732
## 874 -31.4 0.884 5076.2 0.10875332 0.1088732
## 875 -46.2 1.291 5099.1 0.06836679 0.1006557
## 876 -47.1 1.479 5099.1 0.11473272 0.1006557
## 877 -47.1 1.466 5099.1 0.13296860 0.1400736
## 878 -42.0 4.021 5195.8 0.13296860 0.1400736
## 879 -46.2 1.291 5099.1 0.13296860 0.1400736
## 880 -42.0 4.021 5195.8 0.06776441 0.1400736
## 881 -42.0 4.153 5195.8 0.06836679 0.1006557
## 882 -46.2 1.281 5099.1 0.06836679 0.1400736
## 883 -42.0 4.021 5195.8 0.10609689 0.1006557
## 884 -46.2 1.244 5099.1 0.10875332 0.1006557
## 885 -31.4 0.849 5076.2 0.27285817 0.1006557
## 886 -26.9 0.742 5017.5 0.06836679 0.1400736
## 887 -42.0 4.191 5195.8 0.13296860 0.1006557
## 888 -40.3 0.870 4991.6 0.27285817 0.1006557
## 889 -46.2 1.313 5099.1 0.06776441 0.1088732
## 890 -42.0 4.120 5195.8 0.06776441 0.1400736
## 891 -46.2 1.327 5099.1 0.06836679 0.1006557
## 892 -46.2 1.281 5099.1 0.09310345 0.1400736
## 893 -46.2 1.313 5099.1 0.10875332 0.1006557
## 894 -50.8 1.048 4963.6 0.10609689 0.1006557
## 895 -46.2 1.334 5099.1 0.13296860 0.1400736
## 896 -42.0 4.153 5195.8 0.10609689 0.1006557
## 897 -39.8 0.723 4991.6 0.09484778 0.1006557
## 898 -46.2 1.250 5099.1 0.06836679 0.1006557
## 899 -47.1 1.466 5099.1 0.06836679 0.1006557
## 900 -47.1 1.466 5099.1 0.06836679 0.1006557
## 901 -46.2 1.281 5099.1 0.13296860 0.1006557
## 902 -31.4 0.859 5076.2 0.13296860 0.1400736
## 903 -46.2 1.266 5099.1 0.06836679 0.1006557
## 904 -46.2 1.327 5099.1 0.06836679 0.1400736
## 905 -47.1 1.405 5099.1 0.09310345 0.1400736
## 906 -47.1 1.479 5099.1 0.09310345 0.1400736
## 907 -46.2 1.291 5099.1 0.10609689 0.1400736
## 908 -46.2 1.344 5099.1 0.06776441 0.1006557
## 909 -42.0 4.191 5195.8 0.13296860 0.1400736
## 910 -34.8 0.634 5008.7 0.13296860 0.1400736
## 911 -34.8 0.652 5008.7 0.06776441 0.1400736
## 912 -47.1 1.405 5099.1 0.11473272 0.1006557
## 913 -42.0 4.076 5195.8 0.09310345 0.1400736
## 914 -46.2 1.299 5099.1 0.13296860 0.1166667
## 915 -42.0 4.153 5195.8 0.13510101 0.1006557
## 916 -46.2 1.313 5099.1 0.06836679 0.1006557
## 917 -42.0 4.191 5195.8 0.09484778 0.1400736
## 918 -47.1 1.415 5099.1 0.06836679 0.1400736
## 919 -49.5 0.987 4963.6 0.13296860 0.1006557
## 920 -47.1 1.466 5099.1 0.06776441 0.1006557
## 921 -49.5 0.972 4963.6 0.27285817 0.1006557
## 922 -46.2 1.299 5099.1 0.06836679 0.1006557
## 923 -46.2 1.313 5099.1 0.13296860 0.1400736
## 924 -33.6 0.908 5076.2 0.13296860 0.1006557
## 925 -47.1 1.405 5099.1 0.06836679 0.1006557
## 926 -46.2 1.281 5099.1 0.06776441 0.1400736
## 927 -46.2 1.266 5099.1 0.06836679 0.1006557
## 928 -46.2 1.266 5099.1 0.13296860 0.1006557
## 929 -26.9 0.730 5017.5 0.13296860 0.1006557
## 930 -42.0 4.120 5195.8 0.10609689 0.1400736
## 931 -47.1 1.479 5099.1 0.09310345 0.1400736
## 932 -46.2 1.291 5099.1 0.06776441 0.1400736
## 933 -46.2 1.327 5099.1 0.06836679 0.1400736
## 934 -46.2 1.327 5099.1 0.13296860 0.1400736
## 935 -31.4 0.825 5076.2 0.27285817 0.1006557
## 936 -46.2 1.266 5099.1 0.13296860 0.1006557
## 937 -47.1 1.405 5099.1 0.10609689 0.1006557
## 938 -37.5 0.882 4963.6 0.13510101 0.1006557
## 939 -46.2 1.264 5099.1 0.11473272 0.1006557
## 940 -42.0 4.021 5195.8 0.11473272 0.1006557
## 941 -46.2 1.291 5099.1 0.06836679 0.1400736
## 942 -40.0 0.697 5008.7 0.27285817 0.1006557
## 943 -46.2 1.281 5099.1 0.06836679 0.1006557
## 944 -46.2 1.266 5099.1 0.13296860 0.1400736
## 945 -34.6 0.644 5008.7 0.06776441 0.1400736
## 946 -46.2 1.299 5099.1 0.06776441 0.1400736
## 947 -30.1 0.715 5017.5 0.06836679 0.1400736
## 948 -47.1 1.405 5099.1 0.11473272 0.1088732
## 949 -42.0 4.120 5195.8 0.13296860 0.1088732
## 950 -47.1 1.423 5099.1 0.06836679 0.1400736
## 951 -42.0 4.153 5195.8 0.06776441 0.1006557
## 952 -46.2 1.244 5099.1 0.13296860 0.1400736
## 953 -46.2 1.327 5099.1 0.06776441 0.1006557
## 954 -47.1 1.405 5099.1 0.10609689 0.1088732
## 955 -46.2 1.299 5099.1 0.13296860 0.1088732
## 956 -46.2 1.250 5099.1 0.13296860 0.1400736
## 957 -40.8 1.260 5076.2 0.13296860 0.1006557
## 958 -47.1 1.405 5099.1 0.06776441 0.1006557
## 959 -47.1 1.483 5099.1 0.06836679 0.1400736
## 960 -46.2 1.327 5099.1 0.06836679 0.1006557
## 961 -30.1 0.715 5017.5 0.13296860 0.1400736
## 962 -46.2 1.266 5099.1 0.06836679 0.1006557
## 963 -34.8 0.636 5008.7 0.13296860 0.1400736
## 964 -42.0 4.153 5195.8 0.10609689 0.1006557
## 965 -46.2 1.266 5099.1 0.06776441 0.1400736
## 966 -42.0 4.076 5195.8 0.06776441 0.1006557
## 967 -38.3 0.900 4991.6 0.13296860 0.1006557
## 968 -40.8 1.244 5076.2 0.13296860 0.1400736
## 969 -40.0 0.682 5008.7 0.11473272 0.1006557
## 970 -50.8 1.046 4963.6 0.13296860 0.1400736
## 971 -26.9 0.733 5017.5 0.13296860 0.1400736
## 972 -30.1 0.720 5017.5 0.13296860 0.1400736
## 973 -46.2 1.250 5099.1 0.13296860 0.1400736
## 974 -46.2 1.281 5099.1 0.06776441 0.1400736
## 975 -42.0 4.076 5195.8 0.10609689 0.1400736
## 976 -37.5 0.878 4963.6 0.31059507 0.1400736
## 977 -46.2 1.250 5099.1 0.13296860 0.1400736
## 978 -47.1 1.365 5099.1 0.10609689 0.1006557
## 979 -42.0 4.153 5195.8 0.06836679 0.1400736
## 980 -50.0 1.538 5099.1 0.09484778 0.1006557
## 981 -42.0 4.153 5195.8 0.13296860 0.1400736
## 982 -46.2 1.344 5099.1 0.06836679 0.1006557
## 983 -47.1 1.405 5099.1 0.13296860 0.1088732
## 984 -31.4 0.851 5076.2 0.13296860 0.1400736
## 985 -47.1 1.410 5099.1 0.06776441 0.1006557
## 986 -42.0 4.120 5195.8 0.10609689 0.1088732
## 987 -46.2 1.354 5099.1 0.10609689 0.1400736
## 988 -46.2 1.244 5099.1 0.06836679 0.1006557
## 989 -38.3 0.898 4991.6 0.06776441 0.1006557
## 990 -47.1 1.453 5099.1 0.10609689 0.1088732
## 991 -46.2 1.259 5099.1 0.11473272 0.1006557
## 992 -30.1 0.722 5017.5 0.13296860 0.1400736
## 993 -46.2 1.327 5099.1 0.10609689 0.1400736
## 994 -46.2 1.266 5099.1 0.31059507 0.1400736
## 995 -46.2 1.281 5099.1 0.13296860 0.1006557
## 996 -50.0 1.629 5099.1 0.27285817 0.1006557
## 997 -46.2 1.291 5099.1 0.06776441 0.1006557
## 998 -46.2 1.244 5099.1 0.06776441 0.1006557
## 999 -40.8 1.266 5076.2 0.13296860 0.1400736
## 1000 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1001 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1002 -46.2 1.291 5099.1 0.06776441 0.1400736
## 1003 -40.8 1.252 5076.2 0.10609689 0.1006557
## 1004 -31.4 0.829 5076.2 0.13296860 0.1006557
## 1005 -46.2 1.299 5099.1 0.09310345 0.1006557
## 1006 -26.9 0.754 5017.5 0.13296860 0.1006557
## 1007 -42.0 4.076 5195.8 0.11473272 0.1006557
## 1008 -47.1 1.453 5099.1 0.13510101 0.1088732
## 1009 -46.2 1.313 5099.1 0.10609689 0.1006557
## 1010 -30.1 0.715 5017.5 0.31059507 0.1400736
## 1011 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1012 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1013 -46.2 1.244 5099.1 0.13296860 0.1400736
## 1014 -31.4 0.873 5076.2 0.31059507 0.1400736
## 1015 -33.0 0.710 5023.5 0.13296860 0.1400736
## 1016 -47.1 1.365 5099.1 0.27285817 0.1088732
## 1017 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1018 -42.0 4.021 5195.8 0.13296860 0.1088732
## 1019 -42.0 4.120 5195.8 0.10609689 0.1088732
## 1020 -47.1 1.479 5099.1 0.13296860 0.1088732
## 1021 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1022 -46.2 1.291 5099.1 0.09484778 0.1006557
## 1023 -46.2 1.334 5099.1 0.06836679 0.1400736
## 1024 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1025 -40.8 1.266 5076.2 0.13296860 0.1006557
## 1026 -46.2 1.299 5099.1 0.13296860 0.1400736
## 1027 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1028 -38.3 0.898 4991.6 0.13296860 0.1400736
## 1029 -46.2 1.327 5099.1 0.06776441 0.1400736
## 1030 -30.1 0.715 5017.5 0.13296860 0.1006557
## 1031 -46.2 1.334 5099.1 0.10609689 0.1088732
## 1032 -42.0 4.021 5195.8 0.13296860 0.1006557
## 1033 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1034 -42.0 4.120 5195.8 0.11473272 0.1088732
## 1035 -46.2 1.344 5099.1 0.13296860 0.1400736
## 1036 -47.1 1.466 5099.1 0.10609689 0.1006557
## 1037 -29.8 0.770 5017.5 0.13296860 0.1006557
## 1038 -47.1 1.423 5099.1 0.13296860 0.1006557
## 1039 -46.2 1.259 5099.1 0.09310345 0.1006557
## 1040 -40.3 0.835 4991.6 0.13296860 0.1006557
## 1041 -42.0 4.120 5195.8 0.06776441 0.1006557
## 1042 -46.2 1.327 5099.1 0.13296860 0.1400736
## 1043 -40.0 0.677 5008.7 0.31059507 0.1400736
## 1044 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1045 -47.1 1.435 5099.1 0.13296860 0.1400736
## 1046 -26.9 0.731 5017.5 0.13296860 0.1400736
## 1047 -33.0 0.715 5023.5 0.11473272 0.1006557
## 1048 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1049 -42.0 4.021 5195.8 0.06836679 0.1006557
## 1050 -40.8 1.260 5076.2 0.13296860 0.1088732
## 1051 -29.8 0.819 5017.5 0.13296860 0.1006557
## 1052 -46.2 1.266 5099.1 0.10609689 0.1400736
## 1053 -46.2 1.281 5099.1 0.13296860 0.1006557
## 1054 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1055 -47.1 1.405 5099.1 0.11473272 0.1088732
## 1056 -46.2 1.327 5099.1 0.13296860 0.1400736
## 1057 -46.2 1.270 5099.1 0.13296860 0.1088732
## 1058 -31.4 0.825 5076.2 0.31059507 0.1400736
## 1059 -49.5 0.972 4963.6 0.13296860 0.1400736
## 1060 -30.1 0.715 5017.5 0.13296860 0.1400736
## 1061 -42.0 4.191 5195.8 0.09484778 0.1006557
## 1062 -47.1 1.365 5099.1 0.27285817 0.1006557
## 1063 -34.6 0.642 5008.7 0.09484778 0.1006557
## 1064 -46.2 1.264 5099.1 0.10875332 0.1006557
## 1065 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1066 -47.1 1.405 5099.1 0.27285817 0.1006557
## 1067 -33.0 0.700 5023.5 0.13296860 0.1006557
## 1068 -46.2 1.250 5099.1 0.13296860 0.1006557
## 1069 -42.0 4.076 5195.8 0.10609689 0.1006557
## 1070 -40.8 1.260 5076.2 0.06836679 0.1006557
## 1071 -30.1 0.720 5017.5 0.13296860 0.1088732
## 1072 -34.8 0.646 5008.7 0.27285817 0.1006557
## 1073 -46.2 1.281 5099.1 0.13296860 0.1088732
## 1074 -46.2 1.299 5099.1 0.10609689 0.1006557
## 1075 -40.3 0.797 4991.6 0.10875332 0.1006557
## 1076 -46.2 1.266 5099.1 0.06836679 0.1006557
## 1077 -46.2 1.299 5099.1 0.06776441 0.1088732
## 1078 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1079 -46.2 1.334 5099.1 0.13296860 0.1400736
## 1080 -37.5 0.879 4963.6 0.13510101 0.1400736
## 1081 -42.0 4.153 5195.8 0.06776441 0.1006557
## 1082 -46.2 1.327 5099.1 0.13296860 0.1006557
## 1083 -46.2 1.244 5099.1 0.13296860 0.1088732
## 1084 -34.8 0.653 5008.7 0.31059507 0.1400736
## 1085 -46.2 1.327 5099.1 0.10609689 0.1006557
## 1086 -40.8 1.260 5076.2 0.13296860 0.1006557
## 1087 -42.0 4.153 5195.8 0.11473272 0.1400736
## 1088 -42.0 4.021 5195.8 0.10609689 0.1400736
## 1089 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1090 -40.8 1.268 5076.2 0.10609689 0.1400736
## 1091 -31.4 0.821 5076.2 0.13296860 0.1006557
## 1092 -47.1 1.479 5099.1 0.06836679 0.1006557
## 1093 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1094 -47.1 1.410 5099.1 0.06836679 0.1006557
## 1095 -38.3 0.904 4991.6 0.10875332 0.1400736
## 1096 -40.0 0.677 5008.7 0.31059507 0.1400736
## 1097 -42.0 4.076 5195.8 0.10609689 0.1006557
## 1098 -40.3 0.782 4991.6 0.13296860 0.1400736
## 1099 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1100 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1101 -42.0 4.076 5195.8 0.06776441 0.1006557
## 1102 -46.2 1.291 5099.1 0.13296860 0.1400736
## 1103 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1104 -26.9 0.754 5017.5 0.11473272 0.1006557
## 1105 -40.8 1.260 5076.2 0.11473272 0.1006557
## 1106 -46.2 1.266 5099.1 0.06836679 0.1400736
## 1107 -26.9 0.731 5017.5 0.11473272 0.1006557
## 1108 -40.8 1.244 5076.2 0.13296860 0.1400736
## 1109 -46.2 1.291 5099.1 0.10609689 0.1400736
## 1110 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1111 -40.8 1.244 5076.2 0.13296860 0.1400736
## 1112 -46.2 1.291 5099.1 0.10609689 0.1400736
## 1113 -42.0 4.076 5195.8 0.13296860 0.1006557
## 1114 -40.8 1.266 5076.2 0.13296860 0.1006557
## 1115 -31.4 0.849 5076.2 0.27285817 0.1006557
## 1116 -42.0 4.076 5195.8 0.11473272 0.1006557
## 1117 -42.0 4.021 5195.8 0.11473272 0.1088732
## 1118 -34.6 0.645 5008.7 0.06836679 0.1400736
## 1119 -42.0 4.076 5195.8 0.13296860 0.1400736
## 1120 -42.0 4.021 5195.8 0.13296860 0.1006557
## 1121 -47.1 1.410 5099.1 0.06776441 0.1006557
## 1122 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1123 -46.2 1.291 5099.1 0.06776441 0.1400736
## 1124 -40.0 0.699 5008.7 0.31059507 0.1088732
## 1125 -42.0 4.191 5195.8 0.10609689 0.1006557
## 1126 -46.2 1.250 5099.1 0.10609689 0.1400736
## 1127 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1128 -46.2 1.344 5099.1 0.13296860 0.1006557
## 1129 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1130 -46.2 1.244 5099.1 0.13296860 0.1400736
## 1131 -47.1 1.435 5099.1 0.10609689 0.1400736
## 1132 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1133 -40.8 1.260 5076.2 0.31059507 0.1400736
## 1134 -46.2 1.354 5099.1 0.13296860 0.1006557
## 1135 -46.2 1.250 5099.1 0.13296860 0.1400736
## 1136 -46.2 1.327 5099.1 0.10609689 0.1006557
## 1137 -42.0 4.021 5195.8 0.13296860 0.1006557
## 1138 -46.2 1.291 5099.1 0.10609689 0.1006557
## 1139 -42.0 4.021 5195.8 0.06776441 0.1006557
## 1140 -47.1 1.405 5099.1 0.11473272 0.1006557
## 1141 -29.8 0.773 5017.5 0.27285817 0.1006557
## 1142 -46.2 1.281 5099.1 0.10609689 0.1400736
## 1143 -42.0 4.076 5195.8 0.11473272 0.1006557
## 1144 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1145 -26.9 0.739 5017.5 0.09484778 0.1006557
## 1146 -40.8 1.260 5076.2 0.10609689 0.1006557
## 1147 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1148 -31.4 0.849 5076.2 0.27285817 0.1006557
## 1149 -33.0 0.706 5023.5 0.10875332 0.1006557
## 1150 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1151 -42.0 4.153 5195.8 0.10875332 0.1006557
## 1152 -47.1 1.405 5099.1 0.06776441 0.1088732
## 1153 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1154 -46.2 1.266 5099.1 0.06836679 0.1006557
## 1155 -26.9 0.742 5017.5 0.13510101 0.1006557
## 1156 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1157 -42.0 4.153 5195.8 0.13296860 0.1006557
## 1158 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1159 -31.4 0.884 5076.2 0.09310345 0.1006557
## 1160 -46.2 1.244 5099.1 0.06836679 0.1006557
## 1161 -33.6 0.903 5076.2 0.11473272 0.1006557
## 1162 -42.0 4.191 5195.8 0.13296860 0.1400736
## 1163 -42.0 4.120 5195.8 0.10609689 0.1400736
## 1164 -40.3 0.810 4991.6 0.31059507 0.1400736
## 1165 -47.1 1.405 5099.1 0.06776441 0.1400736
## 1166 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1167 -46.2 1.354 5099.1 0.09310345 0.1006557
## 1168 -37.5 0.879 4963.6 0.13510101 0.1006557
## 1169 -46.2 1.291 5099.1 0.13296860 0.1400736
## 1170 -46.2 1.313 5099.1 0.10609689 0.1006557
## 1171 -46.2 1.250 5099.1 0.13296860 0.1400736
## 1172 -30.1 0.715 5017.5 0.11473272 0.1006557
## 1173 -40.8 1.262 5076.2 0.09310345 0.1006557
## 1174 -47.1 1.415 5099.1 0.06836679 0.1006557
## 1175 -31.4 0.859 5076.2 0.27285817 0.1006557
## 1176 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1177 -47.1 1.410 5099.1 0.31059507 0.1400736
## 1178 -31.4 0.884 5076.2 0.11473272 0.1006557
## 1179 -31.4 0.851 5076.2 0.13296860 0.1006557
## 1180 -46.2 1.299 5099.1 0.10609689 0.1400736
## 1181 -47.1 1.400 5099.1 0.31059507 0.1400736
## 1182 -40.8 1.260 5076.2 0.13296860 0.1006557
## 1183 -46.2 1.313 5099.1 0.11473272 0.1400736
## 1184 -46.2 1.244 5099.1 0.13296860 0.1400736
## 1185 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1186 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1187 -47.1 1.410 5099.1 0.27285817 0.1006557
## 1188 -46.2 1.313 5099.1 0.10609689 0.1006557
## 1189 -47.1 1.410 5099.1 0.06836679 0.1006557
## 1190 -50.8 1.046 4963.6 0.10609689 0.1006557
## 1191 -40.0 0.668 5008.7 0.06836679 0.1400736
## 1192 -46.2 1.313 5099.1 0.13296860 0.1006557
## 1193 -26.9 0.731 5017.5 0.27285817 0.1088732
## 1194 -46.2 1.266 5099.1 0.11473272 0.1400736
## 1195 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1196 -50.8 1.046 4963.6 0.13296860 0.1400736
## 1197 -46.2 1.266 5099.1 0.10609689 0.1006557
## 1198 -46.2 1.259 5099.1 0.13296860 0.1006557
## 1199 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1200 -40.3 0.893 4991.6 0.13296860 0.1400736
## 1201 -26.9 0.739 5017.5 0.13296860 0.1400736
## 1202 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1203 -42.0 4.021 5195.8 0.10875332 0.1400736
## 1204 -42.0 4.153 5195.8 0.09484778 0.1088732
## 1205 -47.1 1.410 5099.1 0.09310345 0.1006557
## 1206 -29.8 0.773 5017.5 0.13296860 0.1400736
## 1207 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1208 -46.2 1.299 5099.1 0.13296860 0.1006557
## 1209 -42.0 4.153 5195.8 0.13296860 0.1006557
## 1210 -47.1 1.410 5099.1 0.06836679 0.1006557
## 1211 -49.5 0.982 4963.6 0.09484778 0.1006557
## 1212 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1213 -33.0 0.715 5023.5 0.11473272 0.1006557
## 1214 -42.0 4.120 5195.8 0.10609689 0.1006557
## 1215 -42.0 4.076 5195.8 0.06836679 0.1006557
## 1216 -42.0 4.021 5195.8 0.13510101 0.1006557
## 1217 -38.3 0.898 4991.6 0.13296860 0.1006557
## 1218 -34.8 0.650 5008.7 0.13296860 0.1006557
## 1219 -46.2 1.299 5099.1 0.13296860 0.1400736
## 1220 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1221 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1222 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1223 -42.0 4.021 5195.8 0.11473272 0.1006557
## 1224 -46.2 1.327 5099.1 0.06776441 0.1400736
## 1225 -42.0 4.191 5195.8 0.13510101 0.1006557
## 1226 -47.1 1.365 5099.1 0.13510101 0.1400736
## 1227 -31.4 0.859 5076.2 0.13296860 0.1006557
## 1228 -38.3 0.900 4991.6 0.31059507 0.1400736
## 1229 -46.2 1.313 5099.1 0.10609689 0.1006557
## 1230 -42.0 4.076 5195.8 0.10875332 0.1400736
## 1231 -46.2 1.281 5099.1 0.06836679 0.1400736
## 1232 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1233 -39.8 0.767 4991.6 0.13296860 0.1006557
## 1234 -37.5 0.886 4963.6 0.31059507 0.1400736
## 1235 -46.2 1.313 5099.1 0.13296860 0.1006557
## 1236 -46.2 1.250 5099.1 0.13296860 0.1400736
## 1237 -46.2 1.299 5099.1 0.10609689 0.1006557
## 1238 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1239 -46.2 1.313 5099.1 0.13296860 0.1400736
## 1240 -46.2 1.299 5099.1 0.27285817 0.1006557
## 1241 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1242 -42.0 4.191 5195.8 0.13296860 0.1006557
## 1243 -34.6 0.642 5008.7 0.27285817 0.1006557
## 1244 -47.1 1.365 5099.1 0.13296860 0.1006557
## 1245 -34.6 0.643 5008.7 0.10875332 0.1400736
## 1246 -47.1 1.365 5099.1 0.13296860 0.1006557
## 1247 -46.2 1.344 5099.1 0.11473272 0.1088732
## 1248 -46.2 1.266 5099.1 0.13296860 0.1400736
## 1249 -46.2 1.344 5099.1 0.11473272 0.1088732
## 1250 -42.0 4.021 5195.8 0.06776441 0.1006557
## 1251 -42.0 4.076 5195.8 0.13510101 0.1006557
## 1252 -34.6 0.645 5008.7 0.31059507 0.1400736
## 1253 -37.5 0.879 4963.6 0.10609689 0.1006557
## 1254 -42.0 4.021 5195.8 0.06836679 0.1006557
## 1255 -49.5 0.972 4963.6 0.06776441 0.1400736
## 1256 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1257 -46.2 1.344 5099.1 0.13296860 0.1006557
## 1258 -40.8 1.260 5076.2 0.11473272 0.1400736
## 1259 -46.2 1.250 5099.1 0.13296860 0.1400736
## 1260 -42.0 4.076 5195.8 0.06776441 0.1006557
## 1261 -46.2 1.244 5099.1 0.13296860 0.1088732
## 1262 -29.8 0.797 5017.5 0.13296860 0.1006557
## 1263 -29.8 0.741 5017.5 0.13296860 0.1088732
## 1264 -34.6 0.638 5008.7 0.13296860 0.1006557
## 1265 -33.6 1.072 5076.2 0.10609689 0.1006557
## 1266 -31.4 0.859 5076.2 0.13296860 0.1400736
## 1267 -46.2 1.354 5099.1 0.13296860 0.1006557
## 1268 -30.1 0.715 5017.5 0.13296860 0.1006557
## 1269 -46.2 1.334 5099.1 0.13296860 0.1006557
## 1270 -42.0 4.021 5195.8 0.13296860 0.1400736
## 1271 -29.8 0.809 5017.5 0.08955224 0.1400736
## 1272 -42.0 4.191 5195.8 0.13296860 0.1006557
## 1273 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1274 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1275 -42.0 4.076 5195.8 0.06836679 0.1006557
## 1276 -29.8 0.781 5017.5 0.27285817 0.1006557
## 1277 -40.8 1.260 5076.2 0.13510101 0.1006557
## 1278 -46.2 1.344 5099.1 0.10609689 0.1088732
## 1279 -46.2 1.299 5099.1 0.13296860 0.1088732
## 1280 -42.0 4.021 5195.8 0.27285817 0.1006557
## 1281 -46.2 1.266 5099.1 0.13296860 0.1006557
## 1282 -40.3 0.896 4991.6 0.13296860 0.1006557
## 1283 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1284 -46.2 1.299 5099.1 0.13296860 0.1088732
## 1285 -47.1 1.479 5099.1 0.09310345 0.1400736
## 1286 -31.4 0.883 5076.2 0.10609689 0.1006557
## 1287 -47.1 1.405 5099.1 0.11473272 0.1006557
## 1288 -46.2 1.266 5099.1 0.13296860 0.1400736
## 1289 -47.1 1.405 5099.1 0.09484778 0.1088732
## 1290 -26.9 0.730 5017.5 0.13296860 0.1006557
## 1291 -30.1 0.720 5017.5 0.13296860 0.1088732
## 1292 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1293 -40.3 0.846 4991.6 0.06836679 0.1400736
## 1294 -42.0 4.076 5195.8 0.11473272 0.1400736
## 1295 -46.2 1.266 5099.1 0.13296860 0.1088732
## 1296 -40.8 1.266 5076.2 0.09484778 0.1006557
## 1297 -29.8 0.770 5017.5 0.13296860 0.1006557
## 1298 -47.1 1.435 5099.1 0.13296860 0.1400736
## 1299 -34.8 0.635 5008.7 0.27285817 0.1006557
## 1300 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1301 -46.2 1.266 5099.1 0.13296860 0.1006557
## 1302 -29.8 0.809 5017.5 0.10609689 0.1006557
## 1303 -46.2 1.299 5099.1 0.13296860 0.1400736
## 1304 -31.4 0.869 5076.2 0.06836679 0.1400736
## 1305 -40.8 1.262 5076.2 0.13296860 0.1006557
## 1306 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1307 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1308 -46.2 1.334 5099.1 0.10609689 0.1400736
## 1309 -47.1 1.415 5099.1 0.13296860 0.1006557
## 1310 -46.2 1.291 5099.1 0.06836679 0.1400736
## 1311 -40.3 0.802 4991.6 0.13296860 0.1400736
## 1312 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1313 -40.0 0.695 5008.7 0.13296860 0.1006557
## 1314 -42.0 4.021 5195.8 0.10609689 0.1006557
## 1315 -50.0 1.663 5099.1 0.10875332 0.1006557
## 1316 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1317 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1318 -40.8 1.266 5076.2 0.13510101 0.1400736
## 1319 -42.0 4.076 5195.8 0.06836679 0.1006557
## 1320 -46.2 1.250 5099.1 0.06776441 0.1400736
## 1321 -47.1 1.435 5099.1 0.10609689 0.1400736
## 1322 -46.2 1.266 5099.1 0.06776441 0.1400736
## 1323 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1324 -46.2 1.266 5099.1 0.11473272 0.1400736
## 1325 -46.2 1.266 5099.1 0.10609689 0.1400736
## 1326 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1327 -42.0 4.076 5195.8 0.13296860 0.1400736
## 1328 -42.0 4.021 5195.8 0.06836679 0.1006557
## 1329 -46.2 1.299 5099.1 0.13296860 0.1088732
## 1330 -37.5 0.882 4963.6 0.09310345 0.1006557
## 1331 -46.2 1.344 5099.1 0.09310345 0.1006557
## 1332 -38.3 0.894 4991.6 0.31059507 0.1400736
## 1333 -34.8 0.634 5008.7 0.13296860 0.1400736
## 1334 -47.1 1.405 5099.1 0.11473272 0.1400736
## 1335 -31.4 0.843 5076.2 0.27285817 0.1006557
## 1336 -42.0 4.153 5195.8 0.06836679 0.1400736
## 1337 -42.0 4.021 5195.8 0.10875332 0.1006557
## 1338 -47.1 1.365 5099.1 0.31059507 0.1400736
## 1339 -30.1 0.716 5017.5 0.06836679 0.1006557
## 1340 -50.8 1.040 4963.6 0.13296860 0.1400736
## 1341 -42.0 4.191 5195.8 0.13510101 0.1088732
## 1342 -42.0 4.021 5195.8 0.10875332 0.1006557
## 1343 -42.0 4.191 5195.8 0.06836679 0.1006557
## 1344 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1345 -26.9 0.733 5017.5 0.13510101 0.1006557
## 1346 -46.2 1.334 5099.1 0.10609689 0.1006557
## 1347 -30.1 0.715 5017.5 0.11473272 0.1006557
## 1348 -30.1 0.715 5017.5 0.13296860 0.1088732
## 1349 -39.8 0.702 4991.6 0.06776441 0.1400736
## 1350 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1351 -42.0 4.120 5195.8 0.09310345 0.1006557
## 1352 -46.2 1.327 5099.1 0.10609689 0.1088732
## 1353 -42.0 4.153 5195.8 0.13296860 0.1006557
## 1354 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1355 -42.0 4.120 5195.8 0.13296860 0.1400736
## 1356 -47.1 1.410 5099.1 0.11473272 0.1400736
## 1357 -49.5 1.032 4963.6 0.10609689 0.1400736
## 1358 -46.2 1.270 5099.1 0.13296860 0.1006557
## 1359 -26.9 0.730 5017.5 0.13296860 0.1400736
## 1360 -47.1 1.365 5099.1 0.27285817 0.1088732
## 1361 -47.1 1.423 5099.1 0.06836679 0.1006557
## 1362 -40.8 1.268 5076.2 0.13296860 0.1400736
## 1363 -42.0 4.191 5195.8 0.11473272 0.1006557
## 1364 -29.8 0.770 5017.5 0.09310345 0.1006557
## 1365 -46.2 1.266 5099.1 0.31059507 0.1400736
## 1366 -42.0 4.153 5195.8 0.13296860 0.1400736
## 1367 -46.2 1.266 5099.1 0.10609689 0.1400736
## 1368 -46.2 1.313 5099.1 0.11473272 0.1006557
## 1369 -47.1 1.405 5099.1 0.13296860 0.1088732
## 1370 -46.2 1.299 5099.1 0.10609689 0.1006557
## 1371 -46.2 1.266 5099.1 0.11473272 0.1400736
## 1372 -46.2 1.281 5099.1 0.06836679 0.1088732
## 1373 -37.5 0.883 4963.6 0.13510101 0.1006557
## 1374 -46.2 1.244 5099.1 0.13296860 0.1006557
## 1375 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1376 -46.2 1.281 5099.1 0.06836679 0.1400736
## 1377 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1378 -42.0 4.191 5195.8 0.09310345 0.1006557
## 1379 -40.8 1.262 5076.2 0.06776441 0.1006557
## 1380 -39.8 0.761 4991.6 0.13510101 0.1400736
## 1381 -46.2 1.327 5099.1 0.06776441 0.1088732
## 1382 -31.4 0.829 5076.2 0.13296860 0.1006557
## 1383 -42.0 4.021 5195.8 0.06836679 0.1006557
## 1384 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1385 -46.2 1.327 5099.1 0.06776441 0.1400736
## 1386 -42.0 4.153 5195.8 0.13510101 0.1006557
## 1387 -46.2 1.270 5099.1 0.06836679 0.1006557
## 1388 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1389 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1390 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1391 -42.0 4.021 5195.8 0.10609689 0.1400736
## 1392 -31.4 0.879 5076.2 0.27285817 0.1166667
## 1393 -46.2 1.327 5099.1 0.06776441 0.1006557
## 1394 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1395 -46.2 1.281 5099.1 0.13296860 0.1006557
## 1396 -42.0 4.076 5195.8 0.13296860 0.1400736
## 1397 -46.2 1.299 5099.1 0.13296860 0.1400736
## 1398 -46.2 1.354 5099.1 0.10609689 0.1400736
## 1399 -42.0 4.191 5195.8 0.10875332 0.1006557
## 1400 -34.6 0.645 5008.7 0.10609689 0.1006557
## 1401 -46.2 1.266 5099.1 0.13296860 0.1006557
## 1402 -40.3 0.893 4991.6 0.31059507 0.1400736
## 1403 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1404 -46.2 1.334 5099.1 0.10609689 0.1088732
## 1405 -46.2 1.313 5099.1 0.13296860 0.1400736
## 1406 -42.0 4.076 5195.8 0.13296860 0.1400736
## 1407 -46.2 1.266 5099.1 0.06776441 0.1400736
## 1408 -42.0 4.076 5195.8 0.13296860 0.1088732
## 1409 -47.1 1.405 5099.1 0.11473272 0.1006557
## 1410 -33.0 0.717 5023.5 0.13296860 0.1006557
## 1411 -46.2 1.281 5099.1 0.06776441 0.1006557
## 1412 -47.1 1.445 5099.1 0.13296860 0.1006557
## 1413 -42.0 4.153 5195.8 0.13296860 0.1006557
## 1414 -46.2 1.266 5099.1 0.13296860 0.1006557
## 1415 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1416 -42.0 4.076 5195.8 0.09484778 0.1088732
## 1417 -46.2 1.299 5099.1 0.06836679 0.1400736
## 1418 -26.9 0.720 5017.5 0.31059507 0.1400736
## 1419 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1420 -42.0 4.021 5195.8 0.10609689 0.1400736
## 1421 -46.2 1.244 5099.1 0.31059507 0.1400736
## 1422 -47.1 1.410 5099.1 0.06836679 0.1006557
## 1423 -46.2 1.250 5099.1 0.10609689 0.1006557
## 1424 -40.0 0.684 5008.7 0.13296860 0.1006557
## 1425 -30.1 0.714 5017.5 0.13296860 0.1006557
## 1426 -30.1 0.720 5017.5 0.06836679 0.1400736
## 1427 -46.2 1.291 5099.1 0.13296860 0.1006557
## 1428 -33.6 1.029 5076.2 0.31059507 0.1400736
## 1429 -46.2 1.244 5099.1 0.06776441 0.1006557
## 1430 -30.1 0.715 5017.5 0.06836679 0.1400736
## 1431 -46.2 1.250 5099.1 0.13296860 0.1006557
## 1432 -46.2 1.281 5099.1 0.13296860 0.1006557
## 1433 -46.2 1.250 5099.1 0.13296860 0.1400736
## 1434 -34.6 0.645 5008.7 0.13296860 0.1006557
## 1435 -47.1 1.405 5099.1 0.09310345 0.1006557
## 1436 -46.2 1.299 5099.1 0.09310345 0.1006557
## 1437 -47.1 1.466 5099.1 0.10609689 0.1006557
## 1438 -30.1 0.714 5017.5 0.10609689 0.1400736
## 1439 -46.2 1.266 5099.1 0.06836679 0.1088732
## 1440 -46.2 1.250 5099.1 0.06836679 0.1088732
## 1441 -47.1 1.410 5099.1 0.11473272 0.1006557
## 1442 -29.8 0.809 5017.5 0.13296860 0.1006557
## 1443 -46.2 1.327 5099.1 0.06836679 0.1400736
## 1444 -46.2 1.354 5099.1 0.31059507 0.1400736
## 1445 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1446 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1447 -47.1 1.405 5099.1 0.06776441 0.1400736
## 1448 -46.2 1.250 5099.1 0.27285817 0.1400736
## 1449 -40.8 1.215 5076.2 0.13296860 0.1006557
## 1450 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1451 -46.2 1.334 5099.1 0.06836679 0.1400736
## 1452 -47.1 1.498 5099.1 0.13296860 0.1006557
## 1453 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1454 -47.1 1.405 5099.1 0.31059507 0.1400736
## 1455 -37.5 0.879 4963.6 0.11473272 0.1400736
## 1456 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1457 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1458 -40.8 1.260 5076.2 0.13296860 0.1400736
## 1459 -46.2 1.313 5099.1 0.06776441 0.1400736
## 1460 -33.0 0.720 5023.5 0.10609689 0.1006557
## 1461 -46.2 1.291 5099.1 0.13296860 0.1006557
## 1462 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1463 -40.8 1.260 5076.2 0.13510101 0.1006557
## 1464 -46.2 1.244 5099.1 0.13296860 0.1006557
## 1465 -46.2 1.281 5099.1 0.06836679 0.1400736
## 1466 -47.1 1.435 5099.1 0.09310345 0.1006557
## 1467 -46.2 1.299 5099.1 0.13296860 0.1006557
## 1468 -42.0 4.076 5195.8 0.11473272 0.1088732
## 1469 -29.8 0.797 5017.5 0.06836679 0.1400736
## 1470 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1471 -37.5 0.879 4963.6 0.13296860 0.1400736
## 1472 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1473 -46.2 1.344 5099.1 0.11473272 0.1006557
## 1474 -47.1 1.445 5099.1 0.09484778 0.1006557
## 1475 -46.2 1.281 5099.1 0.06776441 0.1400736
## 1476 -47.1 1.445 5099.1 0.06836679 0.1006557
## 1477 -37.5 0.877 4963.6 0.10609689 0.1400736
## 1478 -46.2 1.299 5099.1 0.10609689 0.1088732
## 1479 -47.1 1.405 5099.1 0.27285817 0.1006557
## 1480 -46.2 1.250 5099.1 0.06836679 0.1400736
## 1481 -47.1 1.410 5099.1 0.10609689 0.1400736
## 1482 -26.9 0.724 5017.5 0.13296860 0.1006557
## 1483 -42.0 4.120 5195.8 0.06776441 0.1006557
## 1484 -42.0 4.021 5195.8 0.10609689 0.1006557
## 1485 -46.2 1.259 5099.1 0.13296860 0.1006557
## 1486 -46.2 1.291 5099.1 0.06776441 0.1400736
## 1487 -47.1 1.410 5099.1 0.13296860 0.1400736
## 1488 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1489 -34.6 0.646 5008.7 0.31059507 0.1400736
## 1490 -33.0 0.718 5023.5 0.27285817 0.1088732
## 1491 -50.8 1.039 4963.6 0.06836679 0.1006557
## 1492 -31.4 0.859 5076.2 0.31059507 0.1400736
## 1493 -49.5 0.972 4963.6 0.27285817 0.1006557
## 1494 -46.2 1.250 5099.1 0.11473272 0.1006557
## 1495 -47.1 1.415 5099.1 0.27285817 0.1006557
## 1496 -26.9 0.740 5017.5 0.13296860 0.1006557
## 1497 -42.0 4.021 5195.8 0.11473272 0.1006557
## 1498 -46.2 1.244 5099.1 0.09310345 0.1400736
## 1499 -46.2 1.266 5099.1 0.06836679 0.1400736
## 1500 -42.0 4.191 5195.8 0.06836679 0.1006557
## 1501 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1502 -47.1 1.410 5099.1 0.31059507 0.1400736
## 1503 -47.1 1.483 5099.1 0.10609689 0.1400736
## 1504 -47.1 1.410 5099.1 0.13296860 0.1006557
## 1505 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1506 -42.0 4.153 5195.8 0.09484778 0.1088732
## 1507 -42.0 4.021 5195.8 0.10609689 0.1400736
## 1508 -39.8 0.761 4991.6 0.06836679 0.1006557
## 1509 -26.9 0.744 5017.5 0.27285817 0.1006557
## 1510 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1511 -26.9 0.742 5017.5 0.27285817 0.1006557
## 1512 -46.2 1.327 5099.1 0.13296860 0.1400736
## 1513 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1514 -46.2 1.281 5099.1 0.06836679 0.1088732
## 1515 -46.2 1.259 5099.1 0.09310345 0.1006557
## 1516 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1517 -42.0 4.120 5195.8 0.13510101 0.1006557
## 1518 -46.2 1.299 5099.1 0.10609689 0.1400736
## 1519 -40.3 0.810 4991.6 0.13296860 0.1006557
## 1520 -42.0 4.191 5195.8 0.13296860 0.1088732
## 1521 -42.0 4.191 5195.8 0.06776441 0.1088732
## 1522 -47.1 1.405 5099.1 0.10609689 0.1400736
## 1523 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1524 -42.0 4.153 5195.8 0.06836679 0.1006557
## 1525 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1526 -29.8 0.809 5017.5 0.08955224 0.1006557
## 1527 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1528 -46.2 1.313 5099.1 0.10609689 0.1400736
## 1529 -39.8 0.742 4991.6 0.27285817 0.1006557
## 1530 -31.4 0.883 5076.2 0.11473272 0.1006557
## 1531 -46.2 1.313 5099.1 0.13296860 0.1006557
## 1532 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1533 -30.1 0.714 5017.5 0.06836679 0.1088732
## 1534 -26.9 0.722 5017.5 0.13296860 0.1006557
## 1535 -42.0 4.021 5195.8 0.09310345 0.1088732
## 1536 -42.0 4.076 5195.8 0.13296860 0.1006557
## 1537 -31.4 0.825 5076.2 0.31059507 0.1400736
## 1538 -26.9 0.740 5017.5 0.27285817 0.1006557
## 1539 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1540 -42.0 4.120 5195.8 0.11473272 0.1006557
## 1541 -42.0 4.191 5195.8 0.13296860 0.1006557
## 1542 -46.2 1.313 5099.1 0.13296860 0.1006557
## 1543 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1544 -31.4 0.821 5076.2 0.13296860 0.1006557
## 1545 -42.0 4.076 5195.8 0.06836679 0.1400736
## 1546 -31.4 0.879 5076.2 0.13296860 0.1400736
## 1547 -42.0 4.153 5195.8 0.06776441 0.1006557
## 1548 -46.2 1.250 5099.1 0.09310345 0.1006557
## 1549 -46.2 1.266 5099.1 0.31059507 0.1400736
## 1550 -46.2 1.250 5099.1 0.11473272 0.1006557
## 1551 -47.1 1.453 5099.1 0.13296860 0.1400736
## 1552 -46.2 1.281 5099.1 0.06836679 0.1400736
## 1553 -40.3 0.876 4991.6 0.10609689 0.1400736
## 1554 -49.5 0.977 4963.6 0.13296860 0.1400736
## 1555 -26.9 0.728 5017.5 0.13296860 0.1400736
## 1556 -42.0 4.153 5195.8 0.10875332 0.1006557
## 1557 -39.8 0.723 4991.6 0.09484778 0.1006557
## 1558 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1559 -46.2 1.299 5099.1 0.06776441 0.1006557
## 1560 -47.1 1.405 5099.1 0.13510101 0.1088732
## 1561 -40.8 1.268 5076.2 0.10875332 0.1006557
## 1562 -46.2 1.313 5099.1 0.13296860 0.1006557
## 1563 -42.0 4.076 5195.8 0.11473272 0.1400736
## 1564 -47.1 1.365 5099.1 0.11473272 0.1400736
## 1565 -46.2 1.291 5099.1 0.06836679 0.1400736
## 1566 -47.1 1.415 5099.1 0.10875332 0.1088732
## 1567 -26.9 0.737 5017.5 0.10609689 0.1006557
## 1568 -40.4 4.968 5195.8 0.06836679 0.1400736
## 1569 -42.0 4.153 5195.8 0.06836679 0.1400736
## 1570 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1571 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1572 -40.3 0.884 4991.6 0.13296860 0.1006557
## 1573 -42.0 4.191 5195.8 0.09310345 0.1006557
## 1574 -49.5 1.029 4963.6 0.06776441 0.1006557
## 1575 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1576 -46.2 1.244 5099.1 0.06836679 0.1400736
## 1577 -46.2 1.266 5099.1 0.11473272 0.1400736
## 1578 -47.1 1.435 5099.1 0.06836679 0.1006557
## 1579 -33.6 1.044 5076.2 0.31059507 0.1400736
## 1580 -40.8 1.266 5076.2 0.13296860 0.1006557
## 1581 -47.1 1.410 5099.1 0.06836679 0.1006557
## 1582 -46.2 1.291 5099.1 0.10875332 0.1400736
## 1583 -33.6 1.029 5076.2 0.31059507 0.1400736
## 1584 -46.2 1.281 5099.1 0.13296860 0.1088732
## 1585 -39.8 0.742 4991.6 0.27285817 0.1088732
## 1586 -46.2 1.264 5099.1 0.10875332 0.1006557
## 1587 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1588 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1589 -46.2 1.266 5099.1 0.10609689 0.1006557
## 1590 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1591 -46.2 1.266 5099.1 0.13296860 0.1400736
## 1592 -46.2 1.266 5099.1 0.06776441 0.1400736
## 1593 -46.2 1.334 5099.1 0.06836679 0.1400736
## 1594 -31.4 0.849 5076.2 0.27285817 0.1006557
## 1595 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1596 -40.3 0.810 4991.6 0.31059507 0.1400736
## 1597 -42.0 4.021 5195.8 0.06836679 0.1088732
## 1598 -47.1 1.498 5099.1 0.06836679 0.1400736
## 1599 -31.4 0.859 5076.2 0.13296860 0.1006557
## 1600 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1601 -39.8 0.720 4991.6 0.11473272 0.1006557
## 1602 -46.2 1.291 5099.1 0.06776441 0.1400736
## 1603 -37.5 0.882 4963.6 0.10609689 0.1006557
## 1604 -31.4 0.873 5076.2 0.13296860 0.1006557
## 1605 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1606 -42.0 4.120 5195.8 0.06776441 0.1400736
## 1607 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1608 -46.2 1.266 5099.1 0.13296860 0.1006557
## 1609 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1610 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1611 -42.0 4.076 5195.8 0.10875332 0.1006557
## 1612 -31.4 0.838 5076.2 0.09484778 0.1088732
## 1613 -47.1 1.479 5099.1 0.10609689 0.1088732
## 1614 -47.1 1.405 5099.1 0.06776441 0.1088732
## 1615 -46.2 1.327 5099.1 0.13296860 0.1006557
## 1616 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1617 -42.0 4.120 5195.8 0.13296860 0.1400736
## 1618 -34.8 0.652 5008.7 0.06836679 0.1006557
## 1619 -30.1 0.714 5017.5 0.10875332 0.1006557
## 1620 -50.0 1.538 5099.1 0.11473272 0.1006557
## 1621 -47.1 1.405 5099.1 0.09310345 0.1400736
## 1622 -39.8 0.754 4991.6 0.11473272 0.1088732
## 1623 -46.2 1.334 5099.1 0.06836679 0.1088732
## 1624 -37.5 0.882 4963.6 0.09310345 0.1006557
## 1625 -46.2 1.334 5099.1 0.10609689 0.1400736
## 1626 -40.3 0.876 4991.6 0.10609689 0.1006557
## 1627 -29.8 0.803 5017.5 0.10609689 0.1006557
## 1628 -46.2 1.299 5099.1 0.06776441 0.1088732
## 1629 -29.8 0.803 5017.5 0.13296860 0.1006557
## 1630 -42.0 4.153 5195.8 0.11473272 0.1006557
## 1631 -46.2 1.313 5099.1 0.06836679 0.1400736
## 1632 -46.2 1.244 5099.1 0.13296860 0.1006557
## 1633 -47.1 1.466 5099.1 0.06776441 0.1006557
## 1634 -46.2 1.250 5099.1 0.11473272 0.1088732
## 1635 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1636 -42.0 4.120 5195.8 0.13296860 0.1400736
## 1637 -39.8 0.715 4991.6 0.10609689 0.1006557
## 1638 -42.0 4.153 5195.8 0.09310345 0.1006557
## 1639 -30.1 0.720 5017.5 0.13296860 0.1400736
## 1640 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1641 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1642 -46.2 1.344 5099.1 0.06776441 0.1006557
## 1643 -46.2 1.244 5099.1 0.06836679 0.1088732
## 1644 -46.2 1.334 5099.1 0.10609689 0.1006557
## 1645 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1646 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1647 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1648 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1649 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1650 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1651 -47.1 1.405 5099.1 0.13296860 0.1088732
## 1652 -42.0 4.021 5195.8 0.10875332 0.1006557
## 1653 -46.2 1.327 5099.1 0.27285817 0.1088732
## 1654 -46.2 1.291 5099.1 0.06776441 0.1400736
## 1655 -40.8 1.099 5076.2 0.06776441 0.1006557
## 1656 -46.2 1.264 5099.1 0.13296860 0.1088732
## 1657 -42.0 4.153 5195.8 0.27285817 0.1006557
## 1658 -46.2 1.281 5099.1 0.06836679 0.1400736
## 1659 -40.3 0.870 4991.6 0.27285817 0.1006557
## 1660 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1661 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1662 -46.2 1.327 5099.1 0.13296860 0.1400736
## 1663 -46.2 1.250 5099.1 0.13296860 0.1088732
## 1664 -31.4 0.883 5076.2 0.13296860 0.1400736
## 1665 -47.1 1.410 5099.1 0.10609689 0.1006557
## 1666 -46.2 1.334 5099.1 0.13510101 0.1006557
## 1667 -42.0 4.120 5195.8 0.06836679 0.1006557
## 1668 -42.0 4.153 5195.8 0.09310345 0.1400736
## 1669 -42.0 4.153 5195.8 0.06776441 0.1006557
## 1670 -42.0 4.021 5195.8 0.31059507 0.1400736
## 1671 -46.2 1.264 5099.1 0.13296860 0.1400736
## 1672 -46.2 1.244 5099.1 0.10609689 0.1400736
## 1673 -46.2 1.266 5099.1 0.06776441 0.1400736
## 1674 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1675 -39.8 0.739 4991.6 0.11473272 0.1400736
## 1676 -30.1 0.715 5017.5 0.13296860 0.1400736
## 1677 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1678 -29.8 0.768 5017.5 0.13510101 0.1006557
## 1679 -26.9 0.754 5017.5 0.10609689 0.1006557
## 1680 -50.8 1.028 4963.6 0.27285817 0.1006557
## 1681 -46.2 1.291 5099.1 0.13296860 0.1006557
## 1682 -47.1 1.453 5099.1 0.06776441 0.1006557
## 1683 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1684 -26.9 0.754 5017.5 0.10609689 0.1400736
## 1685 -47.1 1.410 5099.1 0.09310345 0.1088732
## 1686 -30.1 0.714 5017.5 0.27285817 0.1006557
## 1687 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1688 -42.0 4.021 5195.8 0.13296860 0.1400736
## 1689 -46.2 1.313 5099.1 0.11473272 0.1006557
## 1690 -31.4 0.884 5076.2 0.09484778 0.1006557
## 1691 -42.0 4.120 5195.8 0.10875332 0.1006557
## 1692 -31.4 0.825 5076.2 0.08955224 0.1006557
## 1693 -42.0 4.120 5195.8 0.13296860 0.1088732
## 1694 -40.8 1.266 5076.2 0.06776441 0.1400736
## 1695 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1696 -46.2 1.344 5099.1 0.13296860 0.1006557
## 1697 -40.3 0.896 4991.6 0.13296860 0.1006557
## 1698 -46.2 1.281 5099.1 0.10875332 0.1400736
## 1699 -46.2 1.299 5099.1 0.09310345 0.1006557
## 1700 -46.2 1.313 5099.1 0.10609689 0.1006557
## 1701 -31.4 0.859 5076.2 0.13296860 0.1006557
## 1702 -42.0 4.021 5195.8 0.13296860 0.1006557
## 1703 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1704 -31.4 0.849 5076.2 0.27285817 0.1006557
## 1705 -31.4 0.861 5076.2 0.27285817 0.1006557
## 1706 -31.4 0.881 5076.2 0.13296860 0.1400736
## 1707 -46.2 1.299 5099.1 0.09310345 0.1088732
## 1708 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1709 -39.8 0.707 4991.6 0.06836679 0.1006557
## 1710 -42.0 4.191 5195.8 0.10609689 0.1400736
## 1711 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1712 -47.1 1.445 5099.1 0.13296860 0.1088732
## 1713 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1714 -42.0 4.191 5195.8 0.13296860 0.1006557
## 1715 -46.2 1.344 5099.1 0.27285817 0.1006557
## 1716 -47.1 1.435 5099.1 0.13296860 0.1400736
## 1717 -46.2 1.244 5099.1 0.13296860 0.1400736
## 1718 -47.1 1.365 5099.1 0.10609689 0.1006557
## 1719 -46.2 1.327 5099.1 0.13296860 0.1006557
## 1720 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1721 -50.0 1.703 5099.1 0.11473272 0.1400736
## 1722 -47.1 1.423 5099.1 0.13296860 0.1400736
## 1723 -26.9 0.722 5017.5 0.27285817 0.1006557
## 1724 -42.0 4.076 5195.8 0.06836679 0.1400736
## 1725 -47.1 1.400 5099.1 0.06836679 0.1006557
## 1726 -34.6 0.642 5008.7 0.09484778 0.1006557
## 1727 -46.2 1.327 5099.1 0.13296860 0.1088732
## 1728 -42.0 4.191 5195.8 0.06836679 0.1088732
## 1729 -42.0 4.021 5195.8 0.06776441 0.1006557
## 1730 -46.2 1.266 5099.1 0.06776441 0.1088732
## 1731 -46.2 1.327 5099.1 0.06776441 0.1006557
## 1732 -42.0 4.120 5195.8 0.06836679 0.1006557
## 1733 -42.0 4.153 5195.8 0.10875332 0.1006557
## 1734 -46.2 1.244 5099.1 0.13296860 0.1088732
## 1735 -46.2 1.344 5099.1 0.10609689 0.1088732
## 1736 -34.8 0.649 5008.7 0.13296860 0.1006557
## 1737 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1738 -33.6 1.072 5076.2 0.09484778 0.1006557
## 1739 -42.0 4.076 5195.8 0.13296860 0.1006557
## 1740 -47.1 1.435 5099.1 0.06836679 0.1006557
## 1741 -46.2 1.334 5099.1 0.06776441 0.1006557
## 1742 -47.1 1.405 5099.1 0.10609689 0.1088732
## 1743 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1744 -46.2 1.291 5099.1 0.13296860 0.1400736
## 1745 -46.2 1.291 5099.1 0.06776441 0.1166667
## 1746 -47.1 1.483 5099.1 0.06776441 0.1006557
## 1747 -46.2 1.299 5099.1 0.13296860 0.1006557
## 1748 -33.0 0.712 5023.5 0.09484778 0.1006557
## 1749 -31.4 0.861 5076.2 0.31059507 0.1400736
## 1750 -30.1 0.719 5017.5 0.10609689 0.1400736
## 1751 -46.2 1.250 5099.1 0.10609689 0.1088732
## 1752 -40.8 1.260 5076.2 0.10609689 0.1088732
## 1753 -40.8 1.262 5076.2 0.08955224 0.1400736
## 1754 -46.2 1.266 5099.1 0.13296860 0.1400736
## 1755 -30.1 0.714 5017.5 0.10609689 0.1006557
## 1756 -46.2 1.334 5099.1 0.13296860 0.1400736
## 1757 -46.2 1.334 5099.1 0.06776441 0.1006557
## 1758 -40.3 0.793 4991.6 0.13296860 0.1400736
## 1759 -50.8 1.048 4963.6 0.06776441 0.1006557
## 1760 -46.2 1.327 5099.1 0.11473272 0.1006557
## 1761 -42.0 4.191 5195.8 0.13296860 0.1088732
## 1762 -39.8 0.748 4991.6 0.10609689 0.1006557
## 1763 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1764 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1765 -46.2 1.266 5099.1 0.10609689 0.1006557
## 1766 -39.8 0.761 4991.6 0.06836679 0.1006557
## 1767 -46.2 1.281 5099.1 0.13296860 0.1006557
## 1768 -47.1 1.479 5099.1 0.06776441 0.1006557
## 1769 -39.8 0.739 4991.6 0.31059507 0.1400736
## 1770 -42.0 4.021 5195.8 0.11473272 0.1006557
## 1771 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1772 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1773 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1774 -46.2 1.313 5099.1 0.06776441 0.1400736
## 1775 -46.2 1.244 5099.1 0.06836679 0.1400736
## 1776 -40.8 1.260 5076.2 0.10609689 0.1006557
## 1777 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1778 -31.4 0.869 5076.2 0.13510101 0.1006557
## 1779 -33.0 0.712 5023.5 0.27285817 0.1006557
## 1780 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1781 -42.0 4.021 5195.8 0.10609689 0.1006557
## 1782 -46.2 1.291 5099.1 0.13296860 0.1400736
## 1783 -47.1 1.405 5099.1 0.10609689 0.1088732
## 1784 -40.8 1.262 5076.2 0.27285817 0.1006557
## 1785 -33.0 0.712 5023.5 0.11473272 0.1006557
## 1786 -46.2 1.250 5099.1 0.09310345 0.1006557
## 1787 -50.8 1.041 4963.6 0.13510101 0.1006557
## 1788 -42.0 4.021 5195.8 0.13296860 0.1006557
## 1789 -46.2 1.313 5099.1 0.27285817 0.1088732
## 1790 -46.2 1.291 5099.1 0.13296860 0.1088732
## 1791 -40.8 1.262 5076.2 0.13510101 0.1006557
## 1792 -42.0 4.191 5195.8 0.10875332 0.1400736
## 1793 -42.0 4.153 5195.8 0.09310345 0.1006557
## 1794 -42.0 4.120 5195.8 0.10875332 0.1006557
## 1795 -42.0 4.021 5195.8 0.10609689 0.1006557
## 1796 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1797 -47.1 1.365 5099.1 0.10609689 0.1006557
## 1798 -47.1 1.405 5099.1 0.13510101 0.1006557
## 1799 -46.2 1.281 5099.1 0.10609689 0.1400736
## 1800 -38.3 0.896 4991.6 0.10609689 0.1006557
## 1801 -42.0 4.021 5195.8 0.10875332 0.1006557
## 1802 -40.3 0.810 4991.6 0.06776441 0.1400736
## 1803 -50.8 1.048 4963.6 0.10609689 0.1006557
## 1804 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1805 -40.0 0.677 5008.7 0.10609689 0.1006557
## 1806 -42.0 4.120 5195.8 0.11473272 0.1088732
## 1807 -40.0 0.682 5008.7 0.13296860 0.1400736
## 1808 -42.0 4.076 5195.8 0.13296860 0.1400736
## 1809 -40.8 1.260 5076.2 0.31059507 0.1400736
## 1810 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1811 -34.6 0.642 5008.7 0.06836679 0.1006557
## 1812 -42.0 4.120 5195.8 0.13296860 0.1400736
## 1813 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1814 -40.0 0.682 5008.7 0.31059507 0.1400736
## 1815 -26.9 0.722 5017.5 0.13296860 0.1400736
## 1816 -33.0 0.720 5023.5 0.08955224 0.1006557
## 1817 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1818 -46.2 1.291 5099.1 0.11473272 0.1006557
## 1819 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1820 -47.1 1.405 5099.1 0.10609689 0.1088732
## 1821 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1822 -40.8 1.260 5076.2 0.13296860 0.1400736
## 1823 -42.0 4.153 5195.8 0.06836679 0.1400736
## 1824 -46.2 1.281 5099.1 0.06776441 0.1400736
## 1825 -47.1 1.405 5099.1 0.10609689 0.1088732
## 1826 -47.1 1.415 5099.1 0.06836679 0.1006557
## 1827 -42.0 4.076 5195.8 0.06836679 0.1006557
## 1828 -42.0 4.021 5195.8 0.13296860 0.1088732
## 1829 -31.4 0.881 5076.2 0.13510101 0.1400736
## 1830 -42.0 4.191 5195.8 0.10875332 0.1006557
## 1831 -47.1 1.423 5099.1 0.06836679 0.1006557
## 1832 -46.2 1.291 5099.1 0.27285817 0.1088732
## 1833 -47.1 1.453 5099.1 0.13296860 0.1006557
## 1834 -46.2 1.244 5099.1 0.06776441 0.1400736
## 1835 -42.0 4.120 5195.8 0.11473272 0.1088732
## 1836 -46.2 1.266 5099.1 0.13296860 0.1006557
## 1837 -34.8 0.636 5008.7 0.13296860 0.1006557
## 1838 -33.0 0.707 5023.5 0.13296860 0.1400736
## 1839 -46.2 1.334 5099.1 0.10609689 0.1006557
## 1840 -50.8 1.050 4963.6 0.13296860 0.1006557
## 1841 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1842 -46.2 1.313 5099.1 0.13296860 0.1006557
## 1843 -46.2 1.291 5099.1 0.13296860 0.1006557
## 1844 -45.9 3.743 5176.3 0.09484778 0.1006557
## 1845 -40.3 0.782 4991.6 0.13296860 0.1400736
## 1846 -34.8 0.652 5008.7 0.06836679 0.1006557
## 1847 -40.3 0.802 4991.6 0.09310345 0.1400736
## 1848 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1849 -47.1 1.405 5099.1 0.09310345 0.1006557
## 1850 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1851 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1852 -46.2 1.299 5099.1 0.09484778 0.1400736
## 1853 -47.1 1.410 5099.1 0.13296860 0.1006557
## 1854 -30.1 0.714 5017.5 0.13296860 0.1400736
## 1855 -46.2 1.266 5099.1 0.10609689 0.1400736
## 1856 -40.3 0.861 4991.6 0.13296860 0.1400736
## 1857 -46.2 1.313 5099.1 0.31059507 0.1400736
## 1858 -46.2 1.244 5099.1 0.13510101 0.1006557
## 1859 -40.3 0.822 4991.6 0.27285817 0.1006557
## 1860 -46.2 1.313 5099.1 0.06836679 0.1088732
## 1861 -42.0 4.120 5195.8 0.10609689 0.1006557
## 1862 -30.1 0.714 5017.5 0.13296860 0.1400736
## 1863 -40.0 0.684 5008.7 0.13296860 0.1006557
## 1864 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1865 -40.8 1.266 5076.2 0.10609689 0.1006557
## 1866 -46.2 1.281 5099.1 0.11473272 0.1006557
## 1867 -46.2 1.250 5099.1 0.06776441 0.1400736
## 1868 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1869 -30.1 0.714 5017.5 0.13510101 0.1006557
## 1870 -46.2 1.291 5099.1 0.10609689 0.1400736
## 1871 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1872 -31.4 0.883 5076.2 0.10609689 0.1006557
## 1873 -49.5 0.977 4963.6 0.06776441 0.1400736
## 1874 -46.2 1.327 5099.1 0.06836679 0.1400736
## 1875 -42.0 4.153 5195.8 0.11473272 0.1400736
## 1876 -39.8 0.715 4991.6 0.10609689 0.1006557
## 1877 -42.0 4.191 5195.8 0.13296860 0.1088732
## 1878 -34.8 0.635 5008.7 0.10609689 0.1088732
## 1879 -46.2 1.250 5099.1 0.06836679 0.1400736
## 1880 -46.2 1.334 5099.1 0.06836679 0.1088732
## 1881 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1882 -47.1 1.498 5099.1 0.09310345 0.1088732
## 1883 -34.6 0.635 5008.7 0.13296860 0.1400736
## 1884 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1885 -40.3 0.896 4991.6 0.27285817 0.1088732
## 1886 -34.8 0.635 5008.7 0.13296860 0.1400736
## 1887 -30.1 0.714 5017.5 0.13296860 0.1400736
## 1888 -26.9 0.728 5017.5 0.09484778 0.1006557
## 1889 -46.2 1.281 5099.1 0.13296860 0.1088732
## 1890 -42.0 4.120 5195.8 0.06836679 0.1006557
## 1891 -30.1 0.722 5017.5 0.13296860 0.1400736
## 1892 -47.1 1.435 5099.1 0.13296860 0.1088732
## 1893 -46.2 1.334 5099.1 0.10609689 0.1400736
## 1894 -46.2 1.291 5099.1 0.10609689 0.1400736
## 1895 -46.2 1.334 5099.1 0.06836679 0.1400736
## 1896 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1897 -31.4 0.859 5076.2 0.13296860 0.1006557
## 1898 -31.4 0.884 5076.2 0.27285817 0.1006557
## 1899 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1900 -46.2 1.334 5099.1 0.09310345 0.1400736
## 1901 -40.3 0.884 4991.6 0.11473272 0.1006557
## 1902 -46.2 1.250 5099.1 0.10609689 0.1400736
## 1903 -46.2 1.250 5099.1 0.10609689 0.1400736
## 1904 -50.8 1.030 4963.6 0.13296860 0.1006557
## 1905 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1906 -46.2 1.291 5099.1 0.13296860 0.1400736
## 1907 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1908 -31.4 0.879 5076.2 0.10609689 0.1400736
## 1909 -40.8 1.224 5076.2 0.10609689 0.1006557
## 1910 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1911 -49.5 0.972 4963.6 0.06836679 0.1400736
## 1912 -46.2 1.354 5099.1 0.06776441 0.1006557
## 1913 -46.2 1.334 5099.1 0.13296860 0.1006557
## 1914 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1915 -47.1 1.410 5099.1 0.10609689 0.1400736
## 1916 -46.2 1.266 5099.1 0.06836679 0.1006557
## 1917 -42.0 4.191 5195.8 0.10875332 0.1006557
## 1918 -49.5 0.972 4963.6 0.31059507 0.1400736
## 1919 -47.1 1.392 5099.1 0.06776441 0.1088732
## 1920 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1921 -38.3 0.904 4991.6 0.13296860 0.1400736
## 1922 -30.1 0.715 5017.5 0.06836679 0.1400736
## 1923 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1924 -46.2 1.244 5099.1 0.10609689 0.1400736
## 1925 -42.0 4.120 5195.8 0.09310345 0.1006557
## 1926 -46.2 1.250 5099.1 0.13296860 0.1006557
## 1927 -47.1 1.410 5099.1 0.06836679 0.1400736
## 1928 -42.0 4.153 5195.8 0.10875332 0.1006557
## 1929 -37.5 0.878 4963.6 0.13296860 0.1088732
## 1930 -26.9 0.740 5017.5 0.13296860 0.1006557
## 1931 -46.2 1.250 5099.1 0.10609689 0.1400736
## 1932 -42.0 4.076 5195.8 0.10609689 0.1400736
## 1933 -49.5 1.016 4963.6 0.13296860 0.1088732
## 1934 -42.0 4.120 5195.8 0.09484778 0.1088732
## 1935 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1936 -34.6 0.659 5008.7 0.13296860 0.1400736
## 1937 -47.1 1.410 5099.1 0.13296860 0.1400736
## 1938 -40.3 0.840 4991.6 0.06776441 0.1006557
## 1939 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1940 -42.0 4.021 5195.8 0.13296860 0.1400736
## 1941 -42.0 4.120 5195.8 0.13296860 0.1006557
## 1942 -40.8 1.262 5076.2 0.31059507 0.1006557
## 1943 -46.2 1.344 5099.1 0.06776441 0.1166667
## 1944 -46.2 1.266 5099.1 0.13296860 0.1088732
## 1945 -42.0 4.076 5195.8 0.09310345 0.1006557
## 1946 -47.1 1.453 5099.1 0.13296860 0.1088732
## 1947 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1948 -46.2 1.299 5099.1 0.13296860 0.1400736
## 1949 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1950 -31.4 0.881 5076.2 0.06836679 0.1006557
## 1951 -46.2 1.291 5099.1 0.13296860 0.1400736
## 1952 -46.2 1.266 5099.1 0.06836679 0.1400736
## 1953 -42.0 4.021 5195.8 0.06836679 0.1006557
## 1954 -46.2 1.313 5099.1 0.13296860 0.1400736
## 1955 -42.0 4.120 5195.8 0.06836679 0.1006557
## 1956 -26.9 0.739 5017.5 0.06836679 0.1006557
## 1957 -46.2 1.250 5099.1 0.06836679 0.1088732
## 1958 -38.3 0.899 4991.6 0.27285817 0.1006557
## 1959 -42.0 4.021 5195.8 0.06836679 0.1006557
## 1960 -42.0 4.191 5195.8 0.08955224 0.1400736
## 1961 -46.2 1.244 5099.1 0.06836679 0.1006557
## 1962 -46.2 1.250 5099.1 0.06836679 0.1400736
## 1963 -46.2 1.281 5099.1 0.06836679 0.1400736
## 1964 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1965 -46.2 1.334 5099.1 0.10609689 0.1006557
## 1966 -46.2 1.250 5099.1 0.06836679 0.1400736
## 1967 -34.8 0.652 5008.7 0.11473272 0.1400736
## 1968 -42.0 4.076 5195.8 0.10609689 0.1088732
## 1969 -49.5 1.032 4963.6 0.13296860 0.1400736
## 1970 -30.1 0.714 5017.5 0.10609689 0.1400736
## 1971 -42.0 4.120 5195.8 0.11473272 0.1006557
## 1972 -42.0 4.120 5195.8 0.09310345 0.1006557
## 1973 -46.2 1.259 5099.1 0.10609689 0.1400736
## 1974 -30.1 0.715 5017.5 0.08955224 0.1088732
## 1975 -40.0 0.668 5008.7 0.13296860 0.1400736
## 1976 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1977 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1978 -46.2 1.334 5099.1 0.06776441 0.1400736
## 1979 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1980 -46.2 1.291 5099.1 0.10609689 0.1088732
## 1981 -31.4 0.884 5076.2 0.10609689 0.1400736
## 1982 -46.2 1.281 5099.1 0.13296860 0.1088732
## 1983 -40.8 1.268 5076.2 0.13296860 0.1006557
## 1984 -31.4 0.884 5076.2 0.11473272 0.1006557
## 1985 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1986 -34.8 0.635 5008.7 0.13296860 0.1400736
## 1987 -46.2 1.250 5099.1 0.06836679 0.1400736
## 1988 -46.2 1.266 5099.1 0.13296860 0.1088732
## 1989 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1990 -40.8 1.266 5076.2 0.13296860 0.1400736
## 1991 -50.0 1.687 5099.1 0.10609689 0.1006557
## 1992 -38.3 0.891 4991.6 0.27285817 0.1088732
## 1993 -30.1 0.719 5017.5 0.09310345 0.1088732
## 1994 -46.2 1.281 5099.1 0.11473272 0.1400736
## 1995 -40.0 0.695 5008.7 0.11473272 0.1006557
## 1996 -38.3 0.904 4991.6 0.06776441 0.1400736
## 1997 -46.2 1.327 5099.1 0.06776441 0.1006557
## 1998 -31.4 0.879 5076.2 0.11473272 0.1088732
## 1999 -42.0 4.153 5195.8 0.10609689 0.1400736
## 2000 -29.8 0.803 5017.5 0.11473272 0.1006557
## 2001 -46.2 1.281 5099.1 0.13296860 0.1006557
## 2002 -46.2 1.291 5099.1 0.09484778 0.1006557
## 2003 -46.2 1.313 5099.1 0.10875332 0.1400736
## 2004 -42.0 4.120 5195.8 0.06836679 0.1006557
## 2005 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2006 -30.1 0.716 5017.5 0.11473272 0.1006557
## 2007 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2008 -47.1 1.423 5099.1 0.13296860 0.1400736
## 2009 -46.2 1.244 5099.1 0.06776441 0.1088732
## 2010 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2011 -42.0 4.021 5195.8 0.13510101 0.1088732
## 2012 -46.2 1.266 5099.1 0.10609689 0.1400736
## 2013 -46.2 1.344 5099.1 0.11473272 0.1400736
## 2014 -47.1 1.405 5099.1 0.11473272 0.1400736
## 2015 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2016 -47.1 1.405 5099.1 0.06776441 0.1006557
## 2017 -26.9 0.730 5017.5 0.13296860 0.1006557
## 2018 -46.2 1.244 5099.1 0.06836679 0.1400736
## 2019 -42.0 4.153 5195.8 0.10609689 0.1006557
## 2020 -42.0 4.120 5195.8 0.09310345 0.1006557
## 2021 -40.8 1.252 5076.2 0.10875332 0.1006557
## 2022 -42.0 4.153 5195.8 0.10875332 0.1400736
## 2023 -42.0 4.191 5195.8 0.09310345 0.1006557
## 2024 -47.1 1.405 5099.1 0.09310345 0.1006557
## 2025 -42.0 4.120 5195.8 0.06776441 0.1006557
## 2026 -38.3 0.904 4991.6 0.10609689 0.1400736
## 2027 -38.3 0.898 4991.6 0.31059507 0.1400736
## 2028 -46.2 1.266 5099.1 0.06836679 0.1006557
## 2029 -42.0 4.120 5195.8 0.11473272 0.1006557
## 2030 -46.2 1.244 5099.1 0.13296860 0.1400736
## 2031 -46.2 1.299 5099.1 0.11473272 0.1006557
## 2032 -42.0 4.191 5195.8 0.11473272 0.1006557
## 2033 -46.2 1.291 5099.1 0.13296860 0.1006557
## 2034 -46.2 1.313 5099.1 0.10875332 0.1400736
## 2035 -46.2 1.299 5099.1 0.13296860 0.1006557
## 2036 -47.1 1.453 5099.1 0.06776441 0.1088732
## 2037 -42.0 4.076 5195.8 0.06836679 0.1400736
## 2038 -46.2 1.313 5099.1 0.06836679 0.1400736
## 2039 -31.4 0.873 5076.2 0.13296860 0.1400736
## 2040 -30.1 0.714 5017.5 0.27285817 0.1006557
## 2041 -26.9 0.742 5017.5 0.06836679 0.1400736
## 2042 -47.1 1.435 5099.1 0.10875332 0.1400736
## 2043 -47.1 1.410 5099.1 0.06836679 0.1006557
## 2044 -46.2 1.327 5099.1 0.13510101 0.1006557
## 2045 -34.8 0.652 5008.7 0.06836679 0.1400736
## 2046 -42.0 4.153 5195.8 0.10609689 0.1088732
## 2047 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2048 -30.1 0.719 5017.5 0.06836679 0.1006557
## 2049 -46.2 1.250 5099.1 0.27285817 0.1006557
## 2050 -46.2 1.281 5099.1 0.10875332 0.1006557
## 2051 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2052 -37.5 0.877 4963.6 0.13510101 0.1006557
## 2053 -47.1 1.410 5099.1 0.13296860 0.1006557
## 2054 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2055 -47.1 1.405 5099.1 0.06776441 0.1006557
## 2056 -34.6 0.645 5008.7 0.06836679 0.1400736
## 2057 -31.4 0.881 5076.2 0.13296860 0.1400736
## 2058 -34.8 0.654 5008.7 0.13296860 0.1088732
## 2059 -46.2 1.250 5099.1 0.06836679 0.1400736
## 2060 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2061 -34.8 0.653 5008.7 0.10609689 0.1400736
## 2062 -46.2 1.266 5099.1 0.13296860 0.1400736
## 2063 -30.1 0.714 5017.5 0.13296860 0.1006557
## 2064 -46.2 1.327 5099.1 0.13296860 0.1400736
## 2065 -30.1 0.720 5017.5 0.06836679 0.1400736
## 2066 -46.2 1.344 5099.1 0.11473272 0.1400736
## 2067 -46.2 1.266 5099.1 0.06836679 0.1400736
## 2068 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2069 -46.2 1.334 5099.1 0.13296860 0.1400736
## 2070 -46.2 1.244 5099.1 0.13296860 0.1006557
## 2071 -31.4 0.873 5076.2 0.10609689 0.1006557
## 2072 -46.2 1.313 5099.1 0.06776441 0.1006557
## 2073 -47.1 1.410 5099.1 0.06836679 0.1088732
## 2074 -46.2 1.244 5099.1 0.13296860 0.1400736
## 2075 -26.9 0.731 5017.5 0.11473272 0.1006557
## 2076 -46.2 1.281 5099.1 0.06776441 0.1400736
## 2077 -46.2 1.250 5099.1 0.13296860 0.1400736
## 2078 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2079 -34.6 0.644 5008.7 0.27285817 0.1088732
## 2080 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2081 -46.2 1.250 5099.1 0.06836679 0.1006557
## 2082 -34.6 0.646 5008.7 0.11473272 0.1006557
## 2083 -34.6 0.642 5008.7 0.09484778 0.1006557
## 2084 -37.5 0.884 4963.6 0.11473272 0.1006557
## 2085 -46.2 1.259 5099.1 0.13296860 0.1006557
## 2086 -46.2 1.291 5099.1 0.27285817 0.1088732
## 2087 -37.5 0.882 4963.6 0.06836679 0.1400736
## 2088 -46.2 1.264 5099.1 0.13296860 0.1006557
## 2089 -46.2 1.299 5099.1 0.06836679 0.1400736
## 2090 -42.0 4.076 5195.8 0.10875332 0.1088732
## 2091 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2092 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2093 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2094 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2095 -40.8 1.262 5076.2 0.13296860 0.1006557
## 2096 -42.0 4.021 5195.8 0.10609689 0.1006557
## 2097 -42.0 4.120 5195.8 0.09484778 0.1400736
## 2098 -46.2 1.266 5099.1 0.06836679 0.1006557
## 2099 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2100 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2101 -46.2 1.291 5099.1 0.10609689 0.1088732
## 2102 -42.0 4.120 5195.8 0.10609689 0.1006557
## 2103 -46.2 1.313 5099.1 0.06776441 0.1400736
## 2104 -46.2 1.327 5099.1 0.10875332 0.1006557
## 2105 -42.0 4.120 5195.8 0.06776441 0.1006557
## 2106 -31.4 0.843 5076.2 0.27285817 0.1006557
## 2107 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2108 -46.2 1.244 5099.1 0.09310345 0.1400736
## 2109 -40.0 0.682 5008.7 0.13296860 0.1006557
## 2110 -46.2 1.299 5099.1 0.06776441 0.1400736
## 2111 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2112 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2113 -31.4 0.869 5076.2 0.10875332 0.1088732
## 2114 -31.4 0.859 5076.2 0.13296860 0.1006557
## 2115 -33.0 0.706 5023.5 0.10875332 0.1400736
## 2116 -29.8 0.753 5017.5 0.08955224 0.1400736
## 2117 -46.2 1.344 5099.1 0.09310345 0.1006557
## 2118 -34.8 0.654 5008.7 0.13296860 0.1088732
## 2119 -42.0 4.021 5195.8 0.13510101 0.1006557
## 2120 -46.2 1.299 5099.1 0.13296860 0.1006557
## 2121 -26.9 0.730 5017.5 0.13296860 0.1006557
## 2122 -40.8 1.260 5076.2 0.13296860 0.1400736
## 2123 -46.2 1.250 5099.1 0.13296860 0.1400736
## 2124 -47.1 1.466 5099.1 0.06776441 0.1088732
## 2125 -31.4 0.884 5076.2 0.27285817 0.1006557
## 2126 -40.8 1.266 5076.2 0.13296860 0.1088732
## 2127 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2128 -46.2 1.327 5099.1 0.06836679 0.1400736
## 2129 -47.1 1.415 5099.1 0.10609689 0.1400736
## 2130 -46.2 1.281 5099.1 0.13296860 0.1400736
## 2131 -46.2 1.291 5099.1 0.13296860 0.1006557
## 2132 -31.4 0.873 5076.2 0.27285817 0.1006557
## 2133 -46.2 1.291 5099.1 0.13296860 0.1400736
## 2134 -26.9 0.739 5017.5 0.27285817 0.1006557
## 2135 -30.1 0.714 5017.5 0.13296860 0.1006557
## 2136 -46.2 1.299 5099.1 0.13296860 0.1088732
## 2137 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2138 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2139 -37.5 0.876 4963.6 0.10609689 0.1006557
## 2140 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2141 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2142 -34.8 0.646 5008.7 0.13296860 0.1006557
## 2143 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2144 -46.2 1.266 5099.1 0.06776441 0.1400736
## 2145 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2146 -46.2 1.313 5099.1 0.06836679 0.1400736
## 2147 -46.2 1.313 5099.1 0.10609689 0.1006557
## 2148 -42.0 4.120 5195.8 0.09310345 0.1400736
## 2149 -46.2 1.266 5099.1 0.09310345 0.1400736
## 2150 -34.8 0.635 5008.7 0.06836679 0.1006557
## 2151 -47.1 1.405 5099.1 0.13296860 0.1400736
## 2152 -46.2 1.299 5099.1 0.06836679 0.1400736
## 2153 -47.1 1.466 5099.1 0.10609689 0.1088732
## 2154 -30.1 0.716 5017.5 0.10609689 0.1006557
## 2155 -42.0 4.076 5195.8 0.10609689 0.1400736
## 2156 -42.0 4.120 5195.8 0.11473272 0.1006557
## 2157 -46.2 1.299 5099.1 0.06776441 0.1006557
## 2158 -46.2 1.244 5099.1 0.06836679 0.1400736
## 2159 -40.3 0.810 4991.6 0.27285817 0.1006557
## 2160 -46.2 1.291 5099.1 0.13296860 0.1006557
## 2161 -47.1 1.405 5099.1 0.06776441 0.1400736
## 2162 -46.2 1.354 5099.1 0.09310345 0.1006557
## 2163 -47.1 1.405 5099.1 0.31059507 0.1400736
## 2164 -42.0 4.021 5195.8 0.10875332 0.1006557
## 2165 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2166 -42.0 4.191 5195.8 0.06836679 0.1006557
## 2167 -42.0 4.120 5195.8 0.10609689 0.1006557
## 2168 -46.2 1.334 5099.1 0.13296860 0.1400736
## 2169 -46.2 1.266 5099.1 0.06776441 0.1400736
## 2170 -31.4 0.879 5076.2 0.27285817 0.1166667
## 2171 -34.6 0.644 5008.7 0.13296860 0.1006557
## 2172 -42.0 4.120 5195.8 0.13510101 0.1006557
## 2173 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2174 -47.1 1.410 5099.1 0.31059507 0.1400736
## 2175 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2176 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2177 -31.4 0.869 5076.2 0.31059507 0.1400736
## 2178 -40.3 0.861 4991.6 0.11473272 0.1400736
## 2179 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2180 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2181 -40.3 0.797 4991.6 0.13296860 0.1006557
## 2182 -42.0 4.153 5195.8 0.10875332 0.1006557
## 2183 -40.0 0.672 5008.7 0.31059507 0.1400736
## 2184 -42.0 4.153 5195.8 0.13296860 0.1088732
## 2185 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2186 -46.2 1.313 5099.1 0.06776441 0.1006557
## 2187 -26.9 0.740 5017.5 0.08955224 0.1006557
## 2188 -31.4 0.869 5076.2 0.10875332 0.1088732
## 2189 -40.3 0.822 4991.6 0.27285817 0.1006557
## 2190 -42.0 4.021 5195.8 0.06836679 0.1006557
## 2191 -46.2 1.354 5099.1 0.10875332 0.1006557
## 2192 -42.0 4.076 5195.8 0.06776441 0.1006557
## 2193 -42.0 4.120 5195.8 0.06776441 0.1006557
## 2194 -46.2 1.266 5099.1 0.13296860 0.1006557
## 2195 -47.1 1.410 5099.1 0.10609689 0.1088732
## 2196 -30.1 0.714 5017.5 0.10875332 0.1006557
## 2197 -46.2 1.250 5099.1 0.10609689 0.1088732
## 2198 -47.1 1.410 5099.1 0.06836679 0.1006557
## 2199 -42.0 4.021 5195.8 0.11473272 0.1006557
## 2200 -46.2 1.334 5099.1 0.13296860 0.1400736
## 2201 -46.2 1.250 5099.1 0.13296860 0.1400736
## 2202 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2203 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2204 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2205 -34.6 0.646 5008.7 0.31059507 0.1400736
## 2206 -46.2 1.266 5099.1 0.06836679 0.1400736
## 2207 -46.2 1.250 5099.1 0.10609689 0.1400736
## 2208 -46.2 1.250 5099.1 0.06836679 0.1088732
## 2209 -47.1 1.405 5099.1 0.10875332 0.1006557
## 2210 -40.8 1.262 5076.2 0.06776441 0.1006557
## 2211 -50.8 1.047 4963.6 0.13296860 0.1006557
## 2212 -46.2 1.299 5099.1 0.13296860 0.1006557
## 2213 -29.8 0.750 5017.5 0.06776441 0.1006557
## 2214 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2215 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2216 -34.6 0.663 5008.7 0.10609689 0.1400736
## 2217 -42.0 4.191 5195.8 0.06776441 0.1400736
## 2218 -47.1 1.405 5099.1 0.11473272 0.1006557
## 2219 -42.0 4.076 5195.8 0.10609689 0.1006557
## 2220 -39.8 0.739 4991.6 0.13296860 0.1400736
## 2221 -33.6 0.908 5076.2 0.10609689 0.1400736
## 2222 -40.8 1.281 5076.2 0.31059507 0.1400736
## 2223 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2224 -26.9 0.730 5017.5 0.31059507 0.1400736
## 2225 -31.4 0.843 5076.2 0.13296860 0.1006557
## 2226 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2227 -31.4 0.884 5076.2 0.09310345 0.1006557
## 2228 -49.5 0.977 4963.6 0.06776441 0.1400736
## 2229 -47.1 1.405 5099.1 0.13296860 0.1400736
## 2230 -40.3 0.810 4991.6 0.10609689 0.1006557
## 2231 -42.0 4.120 5195.8 0.11473272 0.1006557
## 2232 -47.1 1.435 5099.1 0.06776441 0.1006557
## 2233 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2234 -46.2 1.291 5099.1 0.06776441 0.1400736
## 2235 -46.2 1.327 5099.1 0.06836679 0.1006557
## 2236 -26.9 0.739 5017.5 0.10609689 0.1006557
## 2237 -30.1 0.722 5017.5 0.31059507 0.1400736
## 2238 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2239 -46.2 1.266 5099.1 0.06776441 0.1006557
## 2240 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2241 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2242 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2243 -46.2 1.291 5099.1 0.13296860 0.1400736
## 2244 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2245 -42.0 4.153 5195.8 0.10609689 0.1400736
## 2246 -46.2 1.270 5099.1 0.08955224 0.1088732
## 2247 -42.0 4.120 5195.8 0.06836679 0.1400736
## 2248 -40.0 0.692 5008.7 0.08955224 0.1006557
## 2249 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2250 -26.9 0.743 5017.5 0.13296860 0.1006557
## 2251 -42.0 4.153 5195.8 0.13296860 0.1088732
## 2252 -37.5 0.876 4963.6 0.10609689 0.1006557
## 2253 -46.2 1.244 5099.1 0.13296860 0.1006557
## 2254 -30.1 0.715 5017.5 0.11473272 0.1006557
## 2255 -46.2 1.244 5099.1 0.09310345 0.1006557
## 2256 -46.2 1.327 5099.1 0.11473272 0.1006557
## 2257 -33.0 0.709 5023.5 0.13296860 0.1006557
## 2258 -42.0 4.076 5195.8 0.10609689 0.1400736
## 2259 -37.5 0.878 4963.6 0.10609689 0.1006557
## 2260 -42.0 4.153 5195.8 0.13296860 0.1400736
## 2261 -46.2 1.313 5099.1 0.09310345 0.1088732
## 2262 -46.2 1.344 5099.1 0.11473272 0.1006557
## 2263 -46.2 1.250 5099.1 0.11473272 0.1006557
## 2264 -46.2 1.313 5099.1 0.10609689 0.1006557
## 2265 -30.1 0.714 5017.5 0.10609689 0.1006557
## 2266 -46.2 1.281 5099.1 0.13296860 0.1400736
## 2267 -31.4 0.879 5076.2 0.27285817 0.1006557
## 2268 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2269 -47.1 1.498 5099.1 0.13296860 0.1006557
## 2270 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2271 -50.0 1.510 5099.1 0.13296860 0.1006557
## 2272 -46.2 1.281 5099.1 0.06776441 0.1400736
## 2273 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2274 -47.1 1.435 5099.1 0.10609689 0.1088732
## 2275 -46.2 1.327 5099.1 0.13296860 0.1400736
## 2276 -46.2 1.327 5099.1 0.06836679 0.1006557
## 2277 -46.2 1.264 5099.1 0.13510101 0.1006557
## 2278 -46.2 1.281 5099.1 0.10609689 0.1006557
## 2279 -46.2 1.334 5099.1 0.09484778 0.1006557
## 2280 -42.0 4.076 5195.8 0.06836679 0.1006557
## 2281 -37.5 0.878 4963.6 0.10609689 0.1006557
## 2282 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2283 -42.0 4.153 5195.8 0.13296860 0.1006557
## 2284 -46.2 1.313 5099.1 0.11473272 0.1006557
## 2285 -42.0 4.153 5195.8 0.06776441 0.1006557
## 2286 -46.2 1.266 5099.1 0.13296860 0.1006557
## 2287 -46.2 1.266 5099.1 0.10609689 0.1006557
## 2288 -42.0 4.120 5195.8 0.06836679 0.1400736
## 2289 -37.5 0.876 4963.6 0.11473272 0.1006557
## 2290 -33.6 1.059 5076.2 0.13296860 0.1400736
## 2291 -34.8 0.650 5008.7 0.13296860 0.1400736
## 2292 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2293 -42.0 4.153 5195.8 0.13296860 0.1400736
## 2294 -46.2 1.291 5099.1 0.10609689 0.1400736
## 2295 -34.6 0.642 5008.7 0.13296860 0.1400736
## 2296 -46.2 1.250 5099.1 0.06836679 0.1400736
## 2297 -40.8 1.262 5076.2 0.06836679 0.1400736
## 2298 -33.6 1.059 5076.2 0.13296860 0.1006557
## 2299 -46.2 1.299 5099.1 0.06836679 0.1400736
## 2300 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2301 -42.0 4.191 5195.8 0.13296860 0.1400736
## 2302 -42.0 4.153 5195.8 0.11473272 0.1400736
## 2303 -34.8 0.646 5008.7 0.27285817 0.1006557
## 2304 -31.4 0.883 5076.2 0.13296860 0.1400736
## 2305 -37.5 0.886 4963.6 0.13296860 0.1006557
## 2306 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2307 -46.2 1.299 5099.1 0.06776441 0.1400736
## 2308 -47.1 1.405 5099.1 0.09310345 0.1400736
## 2309 -46.2 1.299 5099.1 0.10609689 0.1006557
## 2310 -46.2 1.250 5099.1 0.06836679 0.1088732
## 2311 -46.2 1.327 5099.1 0.06776441 0.1400736
## 2312 -40.3 0.846 4991.6 0.06836679 0.1400736
## 2313 -46.2 1.259 5099.1 0.10609689 0.1006557
## 2314 -40.3 0.889 4991.6 0.13296860 0.1400736
## 2315 -46.2 1.291 5099.1 0.13296860 0.1088732
## 2316 -46.2 1.327 5099.1 0.11473272 0.1006557
## 2317 -46.2 1.344 5099.1 0.06836679 0.1400736
## 2318 -47.1 1.410 5099.1 0.06776441 0.1088732
## 2319 -40.8 1.268 5076.2 0.10609689 0.1006557
## 2320 -46.2 1.281 5099.1 0.10609689 0.1400736
## 2321 -34.6 0.644 5008.7 0.10609689 0.1006557
## 2322 -30.1 0.722 5017.5 0.13296860 0.1400736
## 2323 -47.1 1.483 5099.1 0.13296860 0.1088732
## 2324 -46.2 1.327 5099.1 0.06836679 0.1088732
## 2325 -34.8 0.649 5008.7 0.10875332 0.1088732
## 2326 -37.5 0.884 4963.6 0.27285817 0.1088732
## 2327 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2328 -46.2 1.244 5099.1 0.13296860 0.1400736
## 2329 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2330 -37.5 0.879 4963.6 0.13296860 0.1006557
## 2331 -47.1 1.423 5099.1 0.13296860 0.1400736
## 2332 -31.4 0.879 5076.2 0.31059507 0.1400736
## 2333 -38.3 0.900 4991.6 0.13296860 0.1006557
## 2334 -46.2 1.327 5099.1 0.13296860 0.1400736
## 2335 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2336 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2337 -46.2 1.266 5099.1 0.06836679 0.1006557
## 2338 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2339 -46.2 1.299 5099.1 0.11473272 0.1006557
## 2340 -46.2 1.244 5099.1 0.06776441 0.1006557
## 2341 -46.2 1.266 5099.1 0.11473272 0.1006557
## 2342 -46.2 1.244 5099.1 0.13296860 0.1400736
## 2343 -46.2 1.266 5099.1 0.10875332 0.1400736
## 2344 -47.1 1.466 5099.1 0.06836679 0.1006557
## 2345 -46.2 1.281 5099.1 0.06776441 0.1006557
## 2346 -46.2 1.354 5099.1 0.10609689 0.1400736
## 2347 -34.6 0.644 5008.7 0.11473272 0.1400736
## 2348 -42.0 4.076 5195.8 0.11473272 0.1400736
## 2349 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2350 -26.9 0.728 5017.5 0.06776441 0.1006557
## 2351 -40.8 1.262 5076.2 0.09310345 0.1006557
## 2352 -47.1 1.435 5099.1 0.13296860 0.1006557
## 2353 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2354 -46.2 1.250 5099.1 0.09484778 0.1400736
## 2355 -42.0 4.663 5195.8 0.13296860 0.1006557
## 2356 -46.2 1.344 5099.1 0.13296860 0.1006557
## 2357 -42.0 4.021 5195.8 0.06776441 0.1006557
## 2358 -34.8 0.635 5008.7 0.13296860 0.1400736
## 2359 -46.2 1.264 5099.1 0.13296860 0.1006557
## 2360 -47.1 1.445 5099.1 0.13296860 0.1400736
## 2361 -39.8 0.702 4991.6 0.10609689 0.1006557
## 2362 -40.8 1.260 5076.2 0.06836679 0.1006557
## 2363 -46.2 1.281 5099.1 0.09310345 0.1006557
## 2364 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2365 -26.9 0.731 5017.5 0.11473272 0.1006557
## 2366 -26.9 0.737 5017.5 0.06836679 0.1006557
## 2367 -42.0 4.021 5195.8 0.09310345 0.1006557
## 2368 -46.2 1.291 5099.1 0.06776441 0.1400736
## 2369 -42.0 4.021 5195.8 0.10609689 0.1006557
## 2370 -42.0 4.191 5195.8 0.11473272 0.1006557
## 2371 -42.0 4.076 5195.8 0.13510101 0.1088732
## 2372 -42.0 4.191 5195.8 0.06836679 0.1006557
## 2373 -46.2 1.291 5099.1 0.13296860 0.1400736
## 2374 -47.1 1.365 5099.1 0.09484778 0.1006557
## 2375 -31.4 0.851 5076.2 0.13296860 0.1088732
## 2376 -46.2 1.327 5099.1 0.10609689 0.1088732
## 2377 -42.0 4.076 5195.8 0.06836679 0.1088732
## 2378 -26.9 0.740 5017.5 0.13296860 0.1006557
## 2379 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2380 -47.1 1.453 5099.1 0.10875332 0.1006557
## 2381 -42.0 4.120 5195.8 0.06776441 0.1006557
## 2382 -46.2 1.327 5099.1 0.06836679 0.1006557
## 2383 -46.2 1.344 5099.1 0.11473272 0.1400736
## 2384 -42.0 4.076 5195.8 0.13510101 0.1400736
## 2385 -42.0 4.191 5195.8 0.06776441 0.1088732
## 2386 -46.2 1.334 5099.1 0.13296860 0.1006557
## 2387 -50.8 1.049 4963.6 0.10609689 0.1400736
## 2388 -42.0 4.191 5195.8 0.10609689 0.1088732
## 2389 -42.0 4.153 5195.8 0.06776441 0.1006557
## 2390 -40.0 0.682 5008.7 0.13296860 0.1006557
## 2391 -46.2 1.327 5099.1 0.06836679 0.1006557
## 2392 -29.8 0.781 5017.5 0.13296860 0.1400736
## 2393 -46.2 1.266 5099.1 0.06836679 0.1006557
## 2394 -26.9 0.739 5017.5 0.11473272 0.1400736
## 2395 -47.1 1.410 5099.1 0.10609689 0.1400736
## 2396 -40.3 0.827 4991.6 0.10609689 0.1006557
## 2397 -46.2 1.313 5099.1 0.10609689 0.1088732
## 2398 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2399 -46.2 1.313 5099.1 0.11473272 0.1088732
## 2400 -50.0 1.560 5099.1 0.13296860 0.1088732
## 2401 -46.2 1.266 5099.1 0.06836679 0.1400736
## 2402 -46.2 1.250 5099.1 0.13296860 0.1400736
## 2403 -47.1 1.410 5099.1 0.13296860 0.1006557
## 2404 -46.2 1.334 5099.1 0.13296860 0.1006557
## 2405 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2406 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2407 -30.1 0.715 5017.5 0.06776441 0.1006557
## 2408 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2409 -47.1 1.445 5099.1 0.06776441 0.1088732
## 2410 -47.1 1.365 5099.1 0.06776441 0.1006557
## 2411 -49.5 0.942 4963.6 0.13296860 0.1400736
## 2412 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2413 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2414 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2415 -31.4 0.884 5076.2 0.13296860 0.1006557
## 2416 -50.0 1.629 5099.1 0.27285817 0.1006557
## 2417 -46.2 1.270 5099.1 0.11473272 0.1006557
## 2418 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2419 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2420 -33.6 1.044 5076.2 0.31059507 0.1400736
## 2421 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2422 -46.2 1.327 5099.1 0.10609689 0.1006557
## 2423 -39.8 0.715 4991.6 0.10609689 0.1006557
## 2424 -46.2 1.291 5099.1 0.10609689 0.1006557
## 2425 -46.2 1.327 5099.1 0.11473272 0.1088732
## 2426 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2427 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2428 -42.0 4.076 5195.8 0.11473272 0.1006557
## 2429 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2430 -42.0 4.191 5195.8 0.06836679 0.1006557
## 2431 -26.9 0.722 5017.5 0.10609689 0.1006557
## 2432 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2433 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2434 -46.2 1.334 5099.1 0.06836679 0.1400736
## 2435 -31.4 0.849 5076.2 0.11473272 0.1006557
## 2436 -46.2 1.327 5099.1 0.13296860 0.1006557
## 2437 -50.8 1.050 4963.6 0.06836679 0.1006557
## 2438 -46.2 1.299 5099.1 0.06776441 0.1088732
## 2439 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2440 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2441 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2442 -42.0 4.191 5195.8 0.10609689 0.1006557
## 2443 -29.8 0.797 5017.5 0.11473272 0.1006557
## 2444 -46.2 1.270 5099.1 0.13296860 0.1006557
## 2445 -26.9 0.737 5017.5 0.09310345 0.1006557
## 2446 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2447 -46.2 1.299 5099.1 0.13296860 0.1088732
## 2448 -26.9 0.743 5017.5 0.27285817 0.1006557
## 2449 -46.2 1.244 5099.1 0.09310345 0.1400736
## 2450 -34.8 0.652 5008.7 0.06836679 0.1006557
## 2451 -46.2 1.266 5099.1 0.31059507 0.1400736
## 2452 -40.0 0.701 5008.7 0.10609689 0.1400736
## 2453 -47.1 1.405 5099.1 0.31059507 0.1400736
## 2454 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2455 -31.4 0.821 5076.2 0.10609689 0.1006557
## 2456 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2457 -46.2 1.344 5099.1 0.06836679 0.1400736
## 2458 -40.8 1.266 5076.2 0.10609689 0.1006557
## 2459 -39.8 0.737 4991.6 0.31059507 0.1400736
## 2460 -46.2 1.299 5099.1 0.06776441 0.1006557
## 2461 -46.2 1.327 5099.1 0.06776441 0.1400736
## 2462 -40.8 1.266 5076.2 0.11473272 0.1006557
## 2463 -30.1 0.715 5017.5 0.08955224 0.1088732
## 2464 -42.0 4.076 5195.8 0.09310345 0.1006557
## 2465 -46.2 1.327 5099.1 0.13510101 0.1006557
## 2466 -39.8 0.719 4991.6 0.13296860 0.1006557
## 2467 -46.2 1.250 5099.1 0.10875332 0.1088732
## 2468 -46.2 1.291 5099.1 0.06776441 0.1006557
## 2469 -31.4 0.834 5076.2 0.13296860 0.1006557
## 2470 -42.0 4.191 5195.8 0.10609689 0.1400736
## 2471 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2472 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2473 -46.2 1.327 5099.1 0.13296860 0.1006557
## 2474 -47.1 1.453 5099.1 0.10609689 0.1088732
## 2475 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2476 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2477 -46.2 1.334 5099.1 0.13296860 0.1006557
## 2478 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2479 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2480 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2481 -46.2 1.313 5099.1 0.06776441 0.1400736
## 2482 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2483 -26.9 0.722 5017.5 0.09310345 0.1166667
## 2484 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2485 -47.1 1.415 5099.1 0.10609689 0.1088732
## 2486 -31.4 0.869 5076.2 0.13510101 0.1006557
## 2487 -42.0 4.191 5195.8 0.06836679 0.1400736
## 2488 -31.4 0.873 5076.2 0.06836679 0.1006557
## 2489 -46.2 1.344 5099.1 0.13296860 0.1006557
## 2490 -31.4 0.869 5076.2 0.27285817 0.1006557
## 2491 -34.6 0.642 5008.7 0.09484778 0.1006557
## 2492 -47.1 1.405 5099.1 0.06776441 0.1400736
## 2493 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2494 -49.5 0.977 4963.6 0.10609689 0.1400736
## 2495 -46.2 1.334 5099.1 0.09310345 0.1006557
## 2496 -33.0 0.709 5023.5 0.13296860 0.1006557
## 2497 -26.9 0.722 5017.5 0.27285817 0.1006557
## 2498 -46.2 1.334 5099.1 0.13296860 0.1400736
## 2499 -50.8 1.048 4963.6 0.31059507 0.1400736
## 2500 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2501 -42.0 4.120 5195.8 0.06776441 0.1006557
## 2502 -40.8 1.268 5076.2 0.10875332 0.1400736
## 2503 -46.2 1.313 5099.1 0.06836679 0.1400736
## 2504 -37.5 0.886 4963.6 0.31059507 0.1400736
## 2505 -46.2 1.327 5099.1 0.10875332 0.1006557
## 2506 -46.2 1.334 5099.1 0.09310345 0.1006557
## 2507 -40.8 1.260 5076.2 0.13296860 0.1006557
## 2508 -42.0 4.021 5195.8 0.06776441 0.1006557
## 2509 -42.0 4.120 5195.8 0.10609689 0.1006557
## 2510 -47.1 1.423 5099.1 0.06836679 0.1006557
## 2511 -46.2 1.327 5099.1 0.13296860 0.1400736
## 2512 -42.0 4.021 5195.8 0.10609689 0.1006557
## 2513 -47.1 1.405 5099.1 0.06776441 0.1400736
## 2514 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2515 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2516 -46.2 1.266 5099.1 0.13296860 0.1400736
## 2517 -40.3 0.870 4991.6 0.10609689 0.1006557
## 2518 -47.1 1.423 5099.1 0.06776441 0.1400736
## 2519 -46.2 1.327 5099.1 0.06776441 0.1400736
## 2520 -42.0 4.120 5195.8 0.06776441 0.1400736
## 2521 -46.2 1.334 5099.1 0.09484778 0.1006557
## 2522 -50.8 1.046 4963.6 0.13296860 0.1006557
## 2523 -38.3 0.899 4991.6 0.31059507 0.1400736
## 2524 -46.2 1.266 5099.1 0.06836679 0.1006557
## 2525 -42.0 4.153 5195.8 0.10609689 0.1006557
## 2526 -42.0 4.191 5195.8 0.27285817 0.1400736
## 2527 -46.2 1.313 5099.1 0.10875332 0.1400736
## 2528 -40.3 0.876 4991.6 0.13296860 0.1006557
## 2529 -46.2 1.327 5099.1 0.11473272 0.1400736
## 2530 -40.8 1.286 5076.2 0.06776441 0.1400736
## 2531 -33.6 1.029 5076.2 0.10609689 0.1006557
## 2532 -42.0 4.120 5195.8 0.13296860 0.1400736
## 2533 -38.3 0.903 4991.6 0.27285817 0.1006557
## 2534 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2535 -46.2 1.327 5099.1 0.10609689 0.1400736
## 2536 -46.2 1.281 5099.1 0.10609689 0.1006557
## 2537 -34.6 0.642 5008.7 0.13296860 0.1006557
## 2538 -40.0 0.668 5008.7 0.31059507 0.1400736
## 2539 -33.6 1.072 5076.2 0.27285817 0.1088732
## 2540 -46.2 1.299 5099.1 0.11473272 0.1006557
## 2541 -40.8 1.286 5076.2 0.09310345 0.1006557
## 2542 -49.5 1.043 4963.6 0.27285817 0.1006557
## 2543 -34.6 0.642 5008.7 0.13296860 0.1400736
## 2544 -49.5 1.000 4963.6 0.13296860 0.1400736
## 2545 -46.2 1.266 5099.1 0.06776441 0.1006557
## 2546 -40.0 0.682 5008.7 0.10609689 0.1006557
## 2547 -46.2 1.334 5099.1 0.06836679 0.1400736
## 2548 -38.3 0.905 4991.6 0.10609689 0.1088732
## 2549 -46.2 1.299 5099.1 0.10875332 0.1006557
## 2550 -46.2 1.327 5099.1 0.06776441 0.1006557
## 2551 -46.2 1.299 5099.1 0.13296860 0.1088732
## 2552 -42.0 4.153 5195.8 0.11473272 0.1400736
## 2553 -46.2 1.334 5099.1 0.10609689 0.1400736
## 2554 -49.5 1.029 4963.6 0.06776441 0.1006557
## 2555 -47.1 1.405 5099.1 0.10609689 0.1006557
## 2556 -40.8 1.266 5076.2 0.13510101 0.1006557
## 2557 -42.0 4.021 5195.8 0.11473272 0.1006557
## 2558 -42.0 4.076 5195.8 0.09310345 0.1006557
## 2559 -47.1 1.405 5099.1 0.27285817 0.1006557
## 2560 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2561 -46.2 1.291 5099.1 0.10609689 0.1400736
## 2562 -47.1 1.423 5099.1 0.13296860 0.1400736
## 2563 -42.0 4.120 5195.8 0.10609689 0.1006557
## 2564 -49.5 0.959 4963.6 0.10609689 0.1006557
## 2565 -31.4 0.879 5076.2 0.11473272 0.1006557
## 2566 -31.4 0.838 5076.2 0.10609689 0.1006557
## 2567 -31.4 0.883 5076.2 0.13296860 0.1088732
## 2568 -42.0 4.191 5195.8 0.06776441 0.1400736
## 2569 -26.9 0.742 5017.5 0.31059507 0.1400736
## 2570 -42.0 4.021 5195.8 0.13510101 0.1006557
## 2571 -39.8 0.767 4991.6 0.13296860 0.1006557
## 2572 -47.1 1.479 5099.1 0.13296860 0.1006557
## 2573 -42.0 4.191 5195.8 0.09310345 0.1006557
## 2574 -33.6 1.044 5076.2 0.13296860 0.1006557
## 2575 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2576 -42.0 4.120 5195.8 0.06836679 0.1006557
## 2577 -46.2 1.291 5099.1 0.10609689 0.1400736
## 2578 -46.2 1.334 5099.1 0.13296860 0.1006557
## 2579 -42.0 4.120 5195.8 0.10609689 0.1006557
## 2580 -46.2 1.266 5099.1 0.11473272 0.1400736
## 2581 -46.2 1.291 5099.1 0.13296860 0.1088732
## 2582 -42.0 4.120 5195.8 0.06836679 0.1006557
## 2583 -46.2 1.313 5099.1 0.09310345 0.1006557
## 2584 -42.0 4.153 5195.8 0.06836679 0.1006557
## 2585 -37.5 0.880 4963.6 0.31059507 0.1400736
## 2586 -47.1 1.405 5099.1 0.09484778 0.1400736
## 2587 -46.2 1.281 5099.1 0.11473272 0.1006557
## 2588 -30.1 0.719 5017.5 0.09310345 0.1088732
## 2589 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2590 -31.4 0.825 5076.2 0.06776441 0.1006557
## 2591 -33.0 0.721 5023.5 0.10609689 0.1006557
## 2592 -42.0 4.191 5195.8 0.10609689 0.1400736
## 2593 -42.0 4.021 5195.8 0.13296860 0.1400736
## 2594 -47.1 1.405 5099.1 0.06776441 0.1006557
## 2595 -42.0 4.245 5195.8 0.10875332 0.1006557
## 2596 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2597 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2598 -46.2 1.266 5099.1 0.09310345 0.1006557
## 2599 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2600 -46.2 1.334 5099.1 0.09310345 0.1006557
## 2601 -30.1 0.714 5017.5 0.13296860 0.1006557
## 2602 -46.2 1.291 5099.1 0.10609689 0.1400736
## 2603 -50.8 1.050 4963.6 0.10609689 0.1006557
## 2604 -46.2 1.264 5099.1 0.13296860 0.1006557
## 2605 -42.0 4.153 5195.8 0.10609689 0.1400736
## 2606 -42.0 4.120 5195.8 0.13510101 0.1088732
## 2607 -46.2 1.291 5099.1 0.06776441 0.1088732
## 2608 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2609 -40.8 1.266 5076.2 0.13296860 0.1400736
## 2610 -42.0 4.191 5195.8 0.13296860 0.1400736
## 2611 -47.1 1.365 5099.1 0.13296860 0.1006557
## 2612 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2613 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2614 -47.1 1.435 5099.1 0.10875332 0.1006557
## 2615 -46.2 1.344 5099.1 0.11473272 0.1400736
## 2616 -46.2 1.244 5099.1 0.06776441 0.1400736
## 2617 -39.8 0.720 4991.6 0.06776441 0.1006557
## 2618 -47.1 1.410 5099.1 0.11473272 0.1006557
## 2619 -42.0 4.120 5195.8 0.06776441 0.1088732
## 2620 -38.3 0.886 4991.6 0.27285817 0.1006557
## 2621 -31.4 0.883 5076.2 0.27285817 0.1006557
## 2622 -46.2 1.250 5099.1 0.06836679 0.1006557
## 2623 -46.2 1.327 5099.1 0.06776441 0.1088732
## 2624 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2625 -46.2 1.250 5099.1 0.10609689 0.1006557
## 2626 -40.0 0.695 5008.7 0.11473272 0.1006557
## 2627 -30.1 0.715 5017.5 0.06776441 0.1006557
## 2628 -47.1 1.415 5099.1 0.11473272 0.1006557
## 2629 -31.4 0.883 5076.2 0.31059507 0.1400736
## 2630 -40.8 1.260 5076.2 0.10609689 0.1400736
## 2631 -42.0 4.120 5195.8 0.13296860 0.1088732
## 2632 -42.0 4.153 5195.8 0.06836679 0.1006557
## 2633 -42.0 4.076 5195.8 0.10609689 0.1400736
## 2634 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2635 -46.2 1.250 5099.1 0.10609689 0.1088732
## 2636 -47.1 1.405 5099.1 0.27285817 0.1006557
## 2637 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2638 -46.2 1.259 5099.1 0.13296860 0.1166667
## 2639 -46.2 1.327 5099.1 0.10609689 0.1088732
## 2640 -47.1 1.405 5099.1 0.06776441 0.1088732
## 2641 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2642 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2643 -47.1 1.405 5099.1 0.27285817 0.1006557
## 2644 -42.0 4.076 5195.8 0.13296860 0.1088732
## 2645 -46.2 1.266 5099.1 0.11473272 0.1006557
## 2646 -46.2 1.281 5099.1 0.27285817 0.1006557
## 2647 -46.2 1.334 5099.1 0.10609689 0.1088732
## 2648 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2649 -38.3 0.898 4991.6 0.10609689 0.1400736
## 2650 -47.1 1.410 5099.1 0.31059507 0.1400736
## 2651 -46.2 1.327 5099.1 0.13296860 0.1400736
## 2652 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2653 -31.4 0.869 5076.2 0.10609689 0.1400736
## 2654 -30.1 0.715 5017.5 0.13296860 0.1006557
## 2655 -40.8 1.224 5076.2 0.10609689 0.1006557
## 2656 -46.2 1.327 5099.1 0.10609689 0.1400736
## 2657 -42.0 4.021 5195.8 0.11473272 0.1088732
## 2658 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2659 -46.2 1.250 5099.1 0.13296860 0.1400736
## 2660 -42.0 4.120 5195.8 0.13296860 0.1006557
## 2661 -47.1 1.445 5099.1 0.06836679 0.1088732
## 2662 -50.0 1.687 5099.1 0.27285817 0.1006557
## 2663 -47.1 1.365 5099.1 0.27285817 0.1006557
## 2664 -47.1 1.400 5099.1 0.10609689 0.1400736
## 2665 -46.2 1.266 5099.1 0.09310345 0.1006557
## 2666 -42.0 4.120 5195.8 0.11473272 0.1400736
## 2667 -47.1 1.415 5099.1 0.09310345 0.1006557
## 2668 -47.1 1.405 5099.1 0.31059507 0.1400736
## 2669 -42.0 4.153 5195.8 0.06836679 0.1006557
## 2670 -40.3 0.822 4991.6 0.27285817 0.1006557
## 2671 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2672 -50.8 1.030 4963.6 0.11473272 0.1088732
## 2673 -38.3 0.896 4991.6 0.27285817 0.1006557
## 2674 -47.1 1.410 5099.1 0.10609689 0.1088732
## 2675 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2676 -46.2 1.334 5099.1 0.10609689 0.1400736
## 2677 -46.2 1.334 5099.1 0.13296860 0.1088732
## 2678 -37.5 0.886 4963.6 0.13296860 0.1006557
## 2679 -49.5 1.016 4963.6 0.06776441 0.1088732
## 2680 -42.0 4.120 5195.8 0.06776441 0.1400736
## 2681 -46.2 1.313 5099.1 0.10609689 0.1006557
## 2682 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2683 -47.1 1.405 5099.1 0.13296860 0.1088732
## 2684 -46.2 1.266 5099.1 0.11473272 0.1006557
## 2685 -42.0 4.021 5195.8 0.13510101 0.1006557
## 2686 -47.1 1.405 5099.1 0.13296860 0.1088732
## 2687 -46.2 1.281 5099.1 0.10609689 0.1400736
## 2688 -40.0 0.682 5008.7 0.11473272 0.1006557
## 2689 -42.0 4.153 5195.8 0.06836679 0.1006557
## 2690 -42.0 4.153 5195.8 0.09310345 0.1006557
## 2691 -49.5 1.025 4963.6 0.13296860 0.1088732
## 2692 -31.4 0.859 5076.2 0.11473272 0.1006557
## 2693 -31.4 0.869 5076.2 0.11473272 0.1006557
## 2694 -46.2 1.266 5099.1 0.06836679 0.1400736
## 2695 -46.2 1.264 5099.1 0.11473272 0.1006557
## 2696 -46.2 1.266 5099.1 0.13296860 0.1006557
## 2697 -42.0 4.120 5195.8 0.06836679 0.1006557
## 2698 -46.2 1.327 5099.1 0.13296860 0.1006557
## 2699 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2700 -40.0 0.668 5008.7 0.13296860 0.1006557
## 2701 -46.2 1.327 5099.1 0.31059507 0.1400736
## 2702 -42.0 4.120 5195.8 0.06836679 0.1006557
## 2703 -46.2 1.299 5099.1 0.13296860 0.1006557
## 2704 -42.0 4.191 5195.8 0.06836679 0.1006557
## 2705 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2706 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2707 -46.2 1.334 5099.1 0.10609689 0.1400736
## 2708 -46.2 1.313 5099.1 0.06836679 0.1400736
## 2709 -46.2 1.250 5099.1 0.11473272 0.1006557
## 2710 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2711 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2712 -38.3 0.899 4991.6 0.13510101 0.1400736
## 2713 -26.9 0.754 5017.5 0.10609689 0.1088732
## 2714 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2715 -42.0 4.076 5195.8 0.11473272 0.1006557
## 2716 -42.0 4.120 5195.8 0.11473272 0.1088732
## 2717 -40.0 0.684 5008.7 0.13296860 0.1006557
## 2718 -46.2 1.266 5099.1 0.11473272 0.1088732
## 2719 -30.1 0.714 5017.5 0.11473272 0.1006557
## 2720 -34.8 0.646 5008.7 0.10609689 0.1006557
## 2721 -46.2 1.281 5099.1 0.06776441 0.1006557
## 2722 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2723 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2724 -46.2 1.299 5099.1 0.10609689 0.1006557
## 2725 -47.1 1.410 5099.1 0.06836679 0.1006557
## 2726 -46.2 1.334 5099.1 0.11473272 0.1088732
## 2727 -46.2 1.299 5099.1 0.06776441 0.1400736
## 2728 -46.2 1.291 5099.1 0.09310345 0.1006557
## 2729 -40.8 1.260 5076.2 0.10609689 0.1400736
## 2730 -46.2 1.334 5099.1 0.13296860 0.1088732
## 2731 -46.2 1.281 5099.1 0.10609689 0.1400736
## 2732 -42.0 4.191 5195.8 0.11473272 0.1006557
## 2733 -31.4 0.861 5076.2 0.10875332 0.1400736
## 2734 -42.0 4.076 5195.8 0.10609689 0.1006557
## 2735 -33.6 1.029 5076.2 0.13296860 0.1006557
## 2736 -26.9 0.740 5017.5 0.11473272 0.1400736
## 2737 -46.2 1.291 5099.1 0.13296860 0.1400736
## 2738 -42.0 4.076 5195.8 0.10875332 0.1006557
## 2739 -46.2 1.266 5099.1 0.06836679 0.1006557
## 2740 -50.0 1.520 5099.1 0.10609689 0.1400736
## 2741 -40.8 1.268 5076.2 0.13296860 0.1006557
## 2742 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2743 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2744 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2745 -30.1 0.714 5017.5 0.13296860 0.1400736
## 2746 -26.9 0.742 5017.5 0.27285817 0.1006557
## 2747 -47.1 1.445 5099.1 0.10609689 0.1088732
## 2748 -31.4 0.825 5076.2 0.08955224 0.1006557
## 2749 -29.8 0.781 5017.5 0.08955224 0.1006557
## 2750 -47.1 1.405 5099.1 0.10609689 0.1006557
## 2751 -42.0 4.120 5195.8 0.06776441 0.1400736
## 2752 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2753 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2754 -46.2 1.264 5099.1 0.13296860 0.1006557
## 2755 -46.2 1.327 5099.1 0.27285817 0.1088732
## 2756 -42.0 4.153 5195.8 0.13296860 0.1006557
## 2757 -46.2 1.327 5099.1 0.06776441 0.1400736
## 2758 -42.0 4.153 5195.8 0.10609689 0.1400736
## 2759 -46.2 1.344 5099.1 0.13296860 0.1400736
## 2760 -42.0 4.076 5195.8 0.09310345 0.1006557
## 2761 -31.4 0.859 5076.2 0.13296860 0.1400736
## 2762 -47.1 1.410 5099.1 0.27285817 0.1006557
## 2763 -26.9 0.742 5017.5 0.13296860 0.1400736
## 2764 -40.8 1.260 5076.2 0.13296860 0.1400736
## 2765 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2766 -46.2 1.344 5099.1 0.13296860 0.1400736
## 2767 -46.2 1.313 5099.1 0.13296860 0.1400736
## 2768 -29.8 0.781 5017.5 0.08955224 0.1006557
## 2769 -34.6 0.642 5008.7 0.09484778 0.1006557
## 2770 -31.4 0.884 5076.2 0.06836679 0.1088732
## 2771 -46.2 1.250 5099.1 0.06836679 0.1006557
## 2772 -47.1 1.405 5099.1 0.13296860 0.1400736
## 2773 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2774 -31.4 0.883 5076.2 0.11473272 0.1006557
## 2775 -42.0 4.191 5195.8 0.11473272 0.1006557
## 2776 -47.1 1.435 5099.1 0.06776441 0.1006557
## 2777 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2778 -40.3 0.861 4991.6 0.10609689 0.1088732
## 2779 -47.1 1.445 5099.1 0.06836679 0.1006557
## 2780 -46.2 1.244 5099.1 0.06836679 0.1006557
## 2781 -47.1 1.405 5099.1 0.11473272 0.1006557
## 2782 -47.1 1.365 5099.1 0.13296860 0.1400736
## 2783 -46.2 1.344 5099.1 0.10609689 0.1006557
## 2784 -46.2 1.299 5099.1 0.13296860 0.1400736
## 2785 -46.2 1.250 5099.1 0.06776441 0.1400736
## 2786 -47.1 1.405 5099.1 0.13296860 0.1088732
## 2787 -46.2 1.291 5099.1 0.11473272 0.1400736
## 2788 -31.4 0.859 5076.2 0.13296860 0.1400736
## 2789 -42.0 4.120 5195.8 0.09484778 0.1088732
## 2790 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2791 -50.0 1.687 5099.1 0.10609689 0.1006557
## 2792 -42.0 4.120 5195.8 0.09310345 0.1006557
## 2793 -46.2 1.281 5099.1 0.13296860 0.1006557
## 2794 -46.2 1.250 5099.1 0.06776441 0.1006557
## 2795 -46.2 1.299 5099.1 0.06836679 0.1400736
## 2796 -46.2 1.299 5099.1 0.10609689 0.1006557
## 2797 -42.0 4.120 5195.8 0.10875332 0.1400736
## 2798 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2799 -46.2 1.281 5099.1 0.13296860 0.1400736
## 2800 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2801 -42.0 4.153 5195.8 0.10609689 0.1400736
## 2802 -40.8 1.266 5076.2 0.10609689 0.1006557
## 2803 -34.8 0.652 5008.7 0.06836679 0.1006557
## 2804 -46.2 1.281 5099.1 0.27285817 0.1006557
## 2805 -37.5 0.882 4963.6 0.27285817 0.1006557
## 2806 -46.2 1.291 5099.1 0.06776441 0.1006557
## 2807 -46.2 1.299 5099.1 0.10609689 0.1400736
## 2808 -47.1 1.405 5099.1 0.10609689 0.1088732
## 2809 -26.9 0.737 5017.5 0.11473272 0.1006557
## 2810 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2811 -46.2 1.281 5099.1 0.06776441 0.1400736
## 2812 -46.2 1.259 5099.1 0.13296860 0.1400736
## 2813 -42.0 4.191 5195.8 0.09310345 0.1006557
## 2814 -46.2 1.313 5099.1 0.11473272 0.1400736
## 2815 -46.2 1.250 5099.1 0.10609689 0.1400736
## 2816 -47.1 1.445 5099.1 0.06836679 0.1006557
## 2817 -40.3 0.797 4991.6 0.09484778 0.1088732
## 2818 -42.0 4.120 5195.8 0.10609689 0.1400736
## 2819 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2820 -42.0 4.076 5195.8 0.10875332 0.1400736
## 2821 -42.0 4.120 5195.8 0.13296860 0.1400736
## 2822 -47.1 1.435 5099.1 0.06836679 0.1006557
## 2823 -26.9 0.742 5017.5 0.13296860 0.1006557
## 2824 -46.2 1.299 5099.1 0.13296860 0.1400736
## 2825 -47.1 1.410 5099.1 0.11473272 0.1006557
## 2826 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2827 -40.8 1.262 5076.2 0.13296860 0.1006557
## 2828 -46.2 1.281 5099.1 0.13296860 0.1400736
## 2829 -47.1 1.483 5099.1 0.10609689 0.1400736
## 2830 -46.2 1.281 5099.1 0.10875332 0.1006557
## 2831 -47.1 1.453 5099.1 0.06836679 0.1006557
## 2832 -42.0 4.120 5195.8 0.11473272 0.1006557
## 2833 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2834 -46.2 1.334 5099.1 0.11473272 0.1006557
## 2835 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2836 -46.2 1.344 5099.1 0.06776441 0.1088732
## 2837 -40.3 0.822 4991.6 0.27285817 0.1006557
## 2838 -33.0 0.720 5023.5 0.08955224 0.1006557
## 2839 -42.0 4.076 5195.8 0.11473272 0.1006557
## 2840 -40.8 1.262 5076.2 0.13296860 0.1006557
## 2841 -46.2 1.250 5099.1 0.13296860 0.1400736
## 2842 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2843 -30.1 0.714 5017.5 0.27285817 0.1006557
## 2844 -46.2 1.327 5099.1 0.13296860 0.1006557
## 2845 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2846 -46.2 1.313 5099.1 0.10875332 0.1400736
## 2847 -46.2 1.291 5099.1 0.13510101 0.1006557
## 2848 -46.2 1.344 5099.1 0.06776441 0.1006557
## 2849 -46.2 1.250 5099.1 0.06836679 0.1006557
## 2850 -46.2 1.344 5099.1 0.10609689 0.1006557
## 2851 -47.1 1.445 5099.1 0.06836679 0.1088732
## 2852 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2853 -46.2 1.327 5099.1 0.13296860 0.1006557
## 2854 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2855 -47.1 1.415 5099.1 0.13296860 0.1006557
## 2856 -46.2 1.250 5099.1 0.10609689 0.1400736
## 2857 -46.2 1.299 5099.1 0.09310345 0.1006557
## 2858 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2859 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2860 -42.0 4.191 5195.8 0.09310345 0.1006557
## 2861 -40.0 0.697 5008.7 0.27285817 0.1088732
## 2862 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2863 -46.2 1.299 5099.1 0.06776441 0.1400736
## 2864 -49.5 0.959 4963.6 0.13296860 0.1400736
## 2865 -42.0 4.120 5195.8 0.06836679 0.1400736
## 2866 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2867 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2868 -46.2 1.313 5099.1 0.13296860 0.1088732
## 2869 -46.2 1.266 5099.1 0.13296860 0.1400736
## 2870 -42.0 4.191 5195.8 0.06836679 0.1088732
## 2871 -47.1 1.365 5099.1 0.27285817 0.1006557
## 2872 -40.0 0.692 5008.7 0.13296860 0.1006557
## 2873 -47.1 1.405 5099.1 0.10609689 0.1006557
## 2874 -46.2 1.334 5099.1 0.10609689 0.1006557
## 2875 -33.0 0.712 5023.5 0.31059507 0.1400736
## 2876 -42.0 4.120 5195.8 0.06836679 0.1006557
## 2877 -46.2 1.344 5099.1 0.06776441 0.1006557
## 2878 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2879 -42.0 4.153 5195.8 0.13296860 0.1400736
## 2880 -46.2 1.299 5099.1 0.06836679 0.1400736
## 2881 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2882 -46.2 1.244 5099.1 0.10875332 0.1400736
## 2883 -46.2 1.313 5099.1 0.06836679 0.1400736
## 2884 -42.0 4.120 5195.8 0.13296860 0.1006557
## 2885 -46.2 1.266 5099.1 0.13296860 0.1006557
## 2886 -47.1 1.405 5099.1 0.27285817 0.1006557
## 2887 -26.9 0.737 5017.5 0.06836679 0.1006557
## 2888 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2889 -42.0 4.153 5195.8 0.13296860 0.1400736
## 2890 -42.0 4.153 5195.8 0.11473272 0.1400736
## 2891 -47.1 1.405 5099.1 0.13296860 0.1400736
## 2892 -42.0 4.120 5195.8 0.13296860 0.1006557
## 2893 -42.0 4.021 5195.8 0.27285817 0.1088732
## 2894 -46.2 1.291 5099.1 0.10609689 0.1006557
## 2895 -42.0 4.191 5195.8 0.09310345 0.1006557
## 2896 -46.2 1.327 5099.1 0.06836679 0.1006557
## 2897 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2898 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2899 -46.2 1.244 5099.1 0.09310345 0.1400736
## 2900 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2901 -30.1 0.715 5017.5 0.11473272 0.1006557
## 2902 -37.5 0.879 4963.6 0.06776441 0.1006557
## 2903 -31.4 0.883 5076.2 0.09484778 0.1088732
## 2904 -37.5 0.878 4963.6 0.06836679 0.1400736
## 2905 -46.2 1.334 5099.1 0.13296860 0.1006557
## 2906 -46.2 1.244 5099.1 0.09484778 0.1006557
## 2907 -46.2 1.281 5099.1 0.13296860 0.1006557
## 2908 -42.0 4.120 5195.8 0.06836679 0.1088732
## 2909 -47.1 1.405 5099.1 0.09310345 0.1006557
## 2910 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2911 -38.3 0.899 4991.6 0.06776441 0.1088732
## 2912 -34.8 0.646 5008.7 0.27285817 0.1006557
## 2913 -30.1 0.716 5017.5 0.27285817 0.1006557
## 2914 -50.8 1.049 4963.6 0.10609689 0.1400736
## 2915 -40.3 0.790 4991.6 0.13296860 0.1006557
## 2916 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2917 -34.6 0.643 5008.7 0.27285817 0.1088732
## 2918 -46.2 1.250 5099.1 0.10609689 0.1400736
## 2919 -26.9 0.740 5017.5 0.13296860 0.1006557
## 2920 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2921 -46.2 1.334 5099.1 0.09484778 0.1006557
## 2922 -46.2 1.299 5099.1 0.09310345 0.1006557
## 2923 -46.2 1.344 5099.1 0.06836679 0.1400736
## 2924 -40.0 0.682 5008.7 0.10609689 0.1006557
## 2925 -46.2 1.334 5099.1 0.06776441 0.1400736
## 2926 -47.1 1.423 5099.1 0.06836679 0.1006557
## 2927 -42.0 4.076 5195.8 0.13296860 0.1400736
## 2928 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2929 -42.0 4.191 5195.8 0.06776441 0.1006557
## 2930 -37.5 0.882 4963.6 0.10609689 0.1006557
## 2931 -42.0 4.120 5195.8 0.13296860 0.1088732
## 2932 -47.1 1.405 5099.1 0.10609689 0.1006557
## 2933 -26.9 0.730 5017.5 0.13296860 0.1006557
## 2934 -47.1 1.453 5099.1 0.06836679 0.1006557
## 2935 -46.2 1.299 5099.1 0.13296860 0.1400736
## 2936 -31.4 0.861 5076.2 0.31059507 0.1400736
## 2937 -46.2 1.344 5099.1 0.06836679 0.1400736
## 2938 -33.6 0.908 5076.2 0.13296860 0.1006557
## 2939 -46.2 1.344 5099.1 0.11473272 0.1088732
## 2940 -34.8 0.646 5008.7 0.27285817 0.1006557
## 2941 -46.2 1.354 5099.1 0.10609689 0.1006557
## 2942 -42.0 4.021 5195.8 0.11473272 0.1006557
## 2943 -42.0 4.120 5195.8 0.10875332 0.1006557
## 2944 -40.8 1.260 5076.2 0.10609689 0.1088732
## 2945 -46.2 1.327 5099.1 0.06776441 0.1006557
## 2946 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2947 -46.2 1.291 5099.1 0.06776441 0.1400736
## 2948 -47.1 1.466 5099.1 0.11473272 0.1088732
## 2949 -40.3 0.802 4991.6 0.13296860 0.1400736
## 2950 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2951 -29.8 0.797 5017.5 0.10609689 0.1006557
## 2952 -42.0 4.191 5195.8 0.13510101 0.1006557
## 2953 -49.5 0.985 4963.6 0.10609689 0.1006557
## 2954 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2955 -46.2 1.244 5099.1 0.10609689 0.1400736
## 2956 -34.8 0.635 5008.7 0.06776441 0.1006557
## 2957 -40.3 0.827 4991.6 0.13296860 0.1400736
## 2958 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2959 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2960 -46.2 1.327 5099.1 0.06776441 0.1006557
## 2961 -31.4 0.834 5076.2 0.10609689 0.1006557
## 2962 -31.4 0.884 5076.2 0.31059507 0.1400736
## 2963 -46.2 1.244 5099.1 0.06836679 0.1400736
## 2964 -46.2 1.334 5099.1 0.09310345 0.1006557
## 2965 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2966 -40.0 0.672 5008.7 0.13296860 0.1400736
## 2967 -40.8 1.260 5076.2 0.09310345 0.1088732
## 2968 -46.2 1.259 5099.1 0.10609689 0.1400736
## 2969 -26.9 0.739 5017.5 0.06836679 0.1006557
## 2970 -42.0 4.120 5195.8 0.13296860 0.1006557
## 2971 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2972 -46.2 1.354 5099.1 0.27285817 0.1006557
## 2973 -46.2 1.327 5099.1 0.06776441 0.1006557
## 2974 -30.1 0.720 5017.5 0.10875332 0.1006557
## 2975 -47.1 1.445 5099.1 0.10609689 0.1006557
## 2976 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2977 -46.2 1.313 5099.1 0.06776441 0.1400736
## 2978 -42.0 4.076 5195.8 0.06776441 0.1088732
## 2979 -39.8 0.702 4991.6 0.13296860 0.1006557
## 2980 -46.2 1.270 5099.1 0.11473272 0.1006557
## 2981 -47.1 1.445 5099.1 0.06836679 0.1400736
## 2982 -42.0 4.120 5195.8 0.11473272 0.1400736
## 2983 -31.4 0.879 5076.2 0.27285817 0.1006557
## 2984 -31.4 0.834 5076.2 0.27285817 0.1006557
## 2985 -46.2 1.334 5099.1 0.11473272 0.1088732
## 2986 -31.4 0.829 5076.2 0.27285817 0.1088732
## 2987 -37.5 0.884 4963.6 0.13296860 0.1006557
## 2988 -42.0 4.191 5195.8 0.10609689 0.1006557
## 2989 -46.2 1.299 5099.1 0.13296860 0.1400736
## 2990 -46.2 1.334 5099.1 0.13296860 0.1088732
## 2991 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2992 -40.3 0.893 4991.6 0.31059507 0.1400736
## 2993 -46.2 1.281 5099.1 0.13296860 0.1006557
## 2994 -46.2 1.354 5099.1 0.06836679 0.1006557
## 2995 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2996 -42.0 4.076 5195.8 0.09310345 0.1166667
## 2997 -34.6 0.638 5008.7 0.10609689 0.1400736
## 2998 -50.0 1.640 5099.1 0.31059507 0.1400736
## 2999 -42.0 4.191 5195.8 0.11473272 0.1006557
## 3000 -26.9 0.742 5017.5 0.13296860 0.1006557
## 3001 -46.2 1.354 5099.1 0.11473272 0.1006557
## 3002 -47.1 1.479 5099.1 0.06836679 0.1006557
## 3003 -47.1 1.365 5099.1 0.13296860 0.1006557
## 3004 -46.2 1.244 5099.1 0.11473272 0.1400736
## 3005 -47.1 1.410 5099.1 0.06836679 0.1006557
## 3006 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3007 -26.9 0.740 5017.5 0.10609689 0.1400736
## 3008 -34.8 0.652 5008.7 0.06836679 0.1006557
## 3009 -46.2 1.291 5099.1 0.06836679 0.1006557
## 3010 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3011 -42.0 4.191 5195.8 0.11473272 0.1006557
## 3012 -46.2 1.250 5099.1 0.06776441 0.1006557
## 3013 -46.2 1.291 5099.1 0.11473272 0.1400736
## 3014 -42.0 4.021 5195.8 0.10609689 0.1006557
## 3015 -42.0 4.076 5195.8 0.09310345 0.1400736
## 3016 -42.0 4.120 5195.8 0.11473272 0.1006557
## 3017 -30.1 0.715 5017.5 0.08955224 0.1088732
## 3018 -50.8 1.048 4963.6 0.13296860 0.1400736
## 3019 -40.3 0.827 4991.6 0.06836679 0.1400736
## 3020 -30.1 0.720 5017.5 0.06836679 0.1400736
## 3021 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3022 -29.8 0.803 5017.5 0.10609689 0.1006557
## 3023 -47.1 1.405 5099.1 0.10609689 0.1400736
## 3024 -46.2 1.281 5099.1 0.13296860 0.1088732
## 3025 -42.0 4.076 5195.8 0.10875332 0.1088732
## 3026 -47.1 1.405 5099.1 0.10609689 0.1400736
## 3027 -42.0 4.120 5195.8 0.10609689 0.1006557
## 3028 -46.2 1.281 5099.1 0.13296860 0.1006557
## 3029 -46.2 1.266 5099.1 0.10609689 0.1006557
## 3030 -47.1 1.498 5099.1 0.13296860 0.1400736
## 3031 -46.2 1.266 5099.1 0.13296860 0.1088732
## 3032 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3033 -46.2 1.334 5099.1 0.13296860 0.1006557
## 3034 -46.2 1.291 5099.1 0.06836679 0.1006557
## 3035 -46.2 1.334 5099.1 0.06836679 0.1006557
## 3036 -39.8 0.748 4991.6 0.10609689 0.1400736
## 3037 -34.6 0.663 5008.7 0.13296860 0.1006557
## 3038 -37.5 0.879 4963.6 0.10609689 0.1400736
## 3039 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3040 -31.4 0.883 5076.2 0.10609689 0.1006557
## 3041 -37.5 0.880 4963.6 0.11473272 0.1006557
## 3042 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3043 -33.0 0.715 5023.5 0.31059507 0.1006557
## 3044 -42.0 4.153 5195.8 0.10609689 0.1006557
## 3045 -46.2 1.244 5099.1 0.13296860 0.1400736
## 3046 -26.9 0.722 5017.5 0.10609689 0.1006557
## 3047 -29.8 0.819 5017.5 0.10609689 0.1006557
## 3048 -46.2 1.334 5099.1 0.09484778 0.1006557
## 3049 -26.9 0.739 5017.5 0.27285817 0.1006557
## 3050 -46.2 1.266 5099.1 0.11473272 0.1006557
## 3051 -30.1 0.714 5017.5 0.11473272 0.1006557
## 3052 -46.2 1.266 5099.1 0.06836679 0.1006557
## 3053 -46.2 1.281 5099.1 0.10609689 0.1400736
## 3054 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3055 -46.2 1.334 5099.1 0.11473272 0.1400736
## 3056 -42.0 4.120 5195.8 0.11473272 0.1006557
## 3057 -31.4 0.869 5076.2 0.31059507 0.1400736
## 3058 -46.2 1.291 5099.1 0.06836679 0.1400736
## 3059 -40.0 0.695 5008.7 0.06776441 0.1400736
## 3060 -46.2 1.291 5099.1 0.13296860 0.1400736
## 3061 -47.1 1.445 5099.1 0.06836679 0.1006557
## 3062 -30.1 0.714 5017.5 0.11473272 0.1006557
## 3063 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3064 -46.2 1.327 5099.1 0.31059507 0.1400736
## 3065 -46.2 1.281 5099.1 0.06836679 0.1088732
## 3066 -47.1 1.405 5099.1 0.13296860 0.1400736
## 3067 -47.1 1.479 5099.1 0.10875332 0.1088732
## 3068 -47.1 1.423 5099.1 0.06836679 0.1400736
## 3069 -47.1 1.479 5099.1 0.06776441 0.1006557
## 3070 -42.0 4.021 5195.8 0.13296860 0.1088732
## 3071 -40.0 0.672 5008.7 0.13296860 0.1400736
## 3072 -46.2 1.299 5099.1 0.10609689 0.1400736
## 3073 -31.4 0.849 5076.2 0.13296860 0.1006557
## 3074 -42.0 4.120 5195.8 0.13296860 0.1006557
## 3075 -42.0 4.191 5195.8 0.13296860 0.1006557
## 3076 -37.5 0.880 4963.6 0.11473272 0.1006557
## 3077 -37.5 0.884 4963.6 0.10609689 0.1006557
## 3078 -46.2 1.291 5099.1 0.06836679 0.1006557
## 3079 -46.2 1.313 5099.1 0.06776441 0.1006557
## 3080 -30.1 0.715 5017.5 0.06836679 0.1006557
## 3081 -46.2 1.281 5099.1 0.13296860 0.1400736
## 3082 -47.1 1.405 5099.1 0.11473272 0.1006557
## 3083 -46.2 1.327 5099.1 0.13296860 0.1006557
## 3084 -47.1 1.445 5099.1 0.09484778 0.1006557
## 3085 -46.2 1.281 5099.1 0.10875332 0.1400736
## 3086 -46.2 1.266 5099.1 0.06836679 0.1006557
## 3087 -49.5 1.016 4963.6 0.09484778 0.1006557
## 3088 -47.1 1.445 5099.1 0.13296860 0.1006557
## 3089 -46.2 1.334 5099.1 0.06776441 0.1088732
## 3090 -42.0 4.191 5195.8 0.13510101 0.1006557
## 3091 -34.6 0.663 5008.7 0.11473272 0.1006557
## 3092 -46.2 1.250 5099.1 0.06776441 0.1088732
## 3093 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3094 -46.2 1.327 5099.1 0.10609689 0.1006557
## 3095 -46.2 1.313 5099.1 0.06836679 0.1400736
## 3096 -42.0 4.153 5195.8 0.06776441 0.1006557
## 3097 -37.5 0.884 4963.6 0.06776441 0.1400736
## 3098 -42.0 4.191 5195.8 0.13296860 0.1006557
## 3099 -40.3 0.790 4991.6 0.13296860 0.1006557
## 3100 -42.0 4.120 5195.8 0.06836679 0.1006557
## 3101 -46.2 1.281 5099.1 0.10875332 0.1400736
## 3102 -46.2 1.266 5099.1 0.06836679 0.1400736
## 3103 -29.8 0.809 5017.5 0.31059507 0.1400736
## 3104 -42.0 4.191 5195.8 0.09310345 0.1006557
## 3105 -46.2 1.313 5099.1 0.06776441 0.1006557
## 3106 -40.3 0.827 4991.6 0.10609689 0.1006557
## 3107 -47.1 1.435 5099.1 0.06836679 0.1088732
## 3108 -47.1 1.498 5099.1 0.06836679 0.1006557
## 3109 -46.2 1.344 5099.1 0.06836679 0.1088732
## 3110 -42.0 4.153 5195.8 0.06836679 0.1006557
## 3111 -26.9 0.740 5017.5 0.13296860 0.1006557
## 3112 -46.2 1.281 5099.1 0.13296860 0.1400736
## 3113 -46.2 1.344 5099.1 0.13296860 0.1400736
## 3114 -38.3 0.898 4991.6 0.31059507 0.1400736
## 3115 -42.0 4.153 5195.8 0.06836679 0.1006557
## 3116 -46.2 1.299 5099.1 0.13296860 0.1006557
## 3117 -46.2 1.299 5099.1 0.13296860 0.1088732
## 3118 -46.2 1.266 5099.1 0.11473272 0.1400736
## 3119 -49.5 0.982 4963.6 0.31059507 0.1400736
## 3120 -46.2 1.299 5099.1 0.13296860 0.1006557
## 3121 -42.0 4.120 5195.8 0.10609689 0.1400736
## 3122 -46.2 1.250 5099.1 0.06836679 0.1088732
## 3123 -34.8 0.646 5008.7 0.13510101 0.1006557
## 3124 -46.2 1.299 5099.1 0.13296860 0.1006557
## 3125 -46.2 1.334 5099.1 0.10609689 0.1400736
## 3126 -26.9 0.739 5017.5 0.13296860 0.1006557
## 3127 -26.9 0.744 5017.5 0.09484778 0.1400736
## 3128 -46.2 1.334 5099.1 0.06776441 0.1006557
## 3129 -46.2 1.266 5099.1 0.06836679 0.1006557
## 3130 -46.2 1.281 5099.1 0.31059507 0.1400736
## 3131 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3132 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3133 -33.6 1.072 5076.2 0.10609689 0.1006557
## 3134 -50.8 1.035 4963.6 0.13296860 0.1006557
## 3135 -46.2 1.299 5099.1 0.11473272 0.1006557
## 3136 -31.4 0.849 5076.2 0.10609689 0.1088732
## 3137 -46.2 1.291 5099.1 0.06836679 0.1400736
## 3138 -46.2 1.354 5099.1 0.06836679 0.1006557
## 3139 -46.2 1.291 5099.1 0.13296860 0.1400736
## 3140 -46.2 1.244 5099.1 0.11473272 0.1088732
## 3141 -31.4 0.869 5076.2 0.31059507 0.1400736
## 3142 -42.0 4.120 5195.8 0.10609689 0.1006557
## 3143 -31.4 0.884 5076.2 0.11473272 0.1006557
## 3144 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3145 -29.8 0.797 5017.5 0.13296860 0.1006557
## 3146 -46.2 1.334 5099.1 0.06836679 0.1006557
## 3147 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3148 -30.1 0.714 5017.5 0.09310345 0.1006557
## 3149 -42.0 4.120 5195.8 0.11473272 0.1006557
## 3150 -46.2 1.334 5099.1 0.13296860 0.1400736
## 3151 -46.2 1.259 5099.1 0.10609689 0.1088732
## 3152 -31.4 0.873 5076.2 0.13296860 0.1088732
## 3153 -46.2 1.291 5099.1 0.10875332 0.1088732
## 3154 -46.2 1.344 5099.1 0.06836679 0.1088732
## 3155 -46.2 1.291 5099.1 0.06836679 0.1400736
## 3156 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3157 -47.1 1.479 5099.1 0.13296860 0.1006557
## 3158 -33.6 1.029 5076.2 0.31059507 0.1400736
## 3159 -46.2 1.299 5099.1 0.06836679 0.1006557
## 3160 -46.2 1.313 5099.1 0.13296860 0.1400736
## 3161 -40.8 1.215 5076.2 0.13296860 0.1006557
## 3162 -37.5 0.886 4963.6 0.13296860 0.1006557
## 3163 -46.2 1.334 5099.1 0.06776441 0.1006557
## 3164 -42.0 4.153 5195.8 0.06836679 0.1006557
## 3165 -37.5 0.879 4963.6 0.31059507 0.1400736
## 3166 -46.2 1.334 5099.1 0.06776441 0.1088732
## 3167 -37.5 0.886 4963.6 0.31059507 0.1400736
## 3168 -42.0 4.120 5195.8 0.10609689 0.1088732
## 3169 -33.0 0.706 5023.5 0.10875332 0.1400736
## 3170 -30.1 0.714 5017.5 0.13296860 0.1006557
## 3171 -46.2 1.281 5099.1 0.06776441 0.1006557
## 3172 -29.8 0.781 5017.5 0.08955224 0.1006557
## 3173 -37.5 0.878 4963.6 0.06776441 0.1400736
## 3174 -46.2 1.266 5099.1 0.10875332 0.1006557
## 3175 -38.3 0.904 4991.6 0.06836679 0.1088732
## 3176 -46.2 1.327 5099.1 0.06836679 0.1006557
## 3177 -34.6 0.643 5008.7 0.10875332 0.1400736
## 3178 -47.1 1.410 5099.1 0.10875332 0.1006557
## 3179 -42.0 4.120 5195.8 0.13296860 0.1400736
## 3180 -47.1 1.405 5099.1 0.10609689 0.1006557
## 3181 -42.0 4.153 5195.8 0.13296860 0.1006557
## 3182 -47.1 1.405 5099.1 0.06776441 0.1088732
## 3183 -46.2 1.291 5099.1 0.06836679 0.1006557
## 3184 -42.0 4.021 5195.8 0.10609689 0.1006557
## 3185 -46.2 1.291 5099.1 0.06776441 0.1400736
## 3186 -42.0 4.120 5195.8 0.11473272 0.1006557
## 3187 -33.6 1.029 5076.2 0.10609689 0.1400736
## 3188 -47.1 1.415 5099.1 0.10609689 0.1006557
## 3189 -34.6 0.642 5008.7 0.06836679 0.1006557
## 3190 -46.2 1.281 5099.1 0.06836679 0.1400736
## 3191 -46.2 1.250 5099.1 0.06836679 0.1400736
## 3192 -46.2 1.313 5099.1 0.13296860 0.1400736
## 3193 -47.1 1.453 5099.1 0.06776441 0.1088732
## 3194 -47.1 1.410 5099.1 0.13296860 0.1400736
## 3195 -46.2 1.291 5099.1 0.10609689 0.1400736
## 3196 -34.8 0.655 5008.7 0.10609689 0.1006557
## 3197 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3198 -46.2 1.313 5099.1 0.06776441 0.1400736
## 3199 -38.3 0.904 4991.6 0.10609689 0.1006557
## 3200 -46.2 1.313 5099.1 0.06836679 0.1400736
## 3201 -46.2 1.281 5099.1 0.06836679 0.1088732
## 3202 -30.1 0.714 5017.5 0.27285817 0.1006557
## 3203 -42.0 4.153 5195.8 0.09484778 0.1088732
## 3204 -46.2 1.354 5099.1 0.31059507 0.1400736
## 3205 -47.1 1.453 5099.1 0.06836679 0.1006557
## 3206 -46.2 1.250 5099.1 0.10609689 0.1400736
## 3207 -47.1 1.483 5099.1 0.06776441 0.1088732
## 3208 -42.0 4.153 5195.8 0.06836679 0.1006557
## 3209 -46.2 1.334 5099.1 0.10609689 0.1088732
## 3210 -46.2 1.327 5099.1 0.13296860 0.1006557
## 3211 -46.2 1.313 5099.1 0.13296860 0.1400736
## 3212 -46.2 1.266 5099.1 0.06836679 0.1006557
## 3213 -46.2 1.299 5099.1 0.06836679 0.1006557
## 3214 -46.2 1.250 5099.1 0.06836679 0.1088732
## 3215 -38.3 0.898 4991.6 0.10875332 0.1088732
## 3216 -46.2 1.334 5099.1 0.31059507 0.1400736
## 3217 -46.2 1.334 5099.1 0.06776441 0.1006557
## 3218 -40.8 1.260 5076.2 0.13296860 0.1400736
## 3219 -49.5 1.008 4963.6 0.27285817 0.1088732
## 3220 -46.2 1.334 5099.1 0.10875332 0.1006557
## 3221 -37.5 0.886 4963.6 0.13296860 0.1088732
## 3222 -37.5 0.876 4963.6 0.11473272 0.1006557
## 3223 -49.5 1.000 4963.6 0.10609689 0.1006557
## 3224 -34.8 0.651 5008.7 0.10875332 0.1400736
## 3225 -46.2 1.291 5099.1 0.13296860 0.1088732
## 3226 -46.2 1.250 5099.1 0.13296860 0.1088732
## 3227 -46.2 1.327 5099.1 0.06776441 0.1088732
## 3228 -46.2 1.250 5099.1 0.09310345 0.1006557
## 3229 -42.0 4.153 5195.8 0.06776441 0.1400736
## 3230 -31.4 0.879 5076.2 0.13296860 0.1400736
## 3231 -34.8 0.650 5008.7 0.10609689 0.1400736
## 3232 -42.0 4.076 5195.8 0.13510101 0.1166667
## 3233 -46.2 1.299 5099.1 0.06836679 0.1006557
## 3234 -42.0 4.153 5195.8 0.11473272 0.1006557
## 3235 -34.8 0.635 5008.7 0.06776441 0.1006557
## 3236 -46.2 1.313 5099.1 0.06836679 0.1400736
## 3237 -46.2 1.344 5099.1 0.09310345 0.1006557
## 3238 -46.2 1.266 5099.1 0.06836679 0.1400736
## 3239 -46.2 1.291 5099.1 0.11473272 0.1088732
## 3240 -50.8 1.049 4963.6 0.13296860 0.1006557
## 3241 -42.0 4.021 5195.8 0.06776441 0.1006557
## 3242 -46.2 1.266 5099.1 0.06836679 0.1006557
## 3243 -34.8 0.650 5008.7 0.13296860 0.1400736
## 3244 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3245 -46.2 1.281 5099.1 0.13296860 0.1400736
## 3246 -46.2 1.281 5099.1 0.10609689 0.1006557
## 3247 -30.1 0.722 5017.5 0.13296860 0.1400736
## 3248 -34.8 0.646 5008.7 0.06776441 0.1400736
## 3249 -42.0 4.120 5195.8 0.09484778 0.1088732
## 3250 -46.2 1.344 5099.1 0.13296860 0.1006557
## 3251 -49.5 1.043 4963.6 0.10609689 0.1400736
## 3252 -46.2 1.266 5099.1 0.13296860 0.1400736
## 3253 -46.2 1.281 5099.1 0.06836679 0.1400736
## 3254 -31.4 0.883 5076.2 0.31059507 0.1400736
## 3255 -46.2 1.250 5099.1 0.06836679 0.1400736
## 3256 -37.5 0.883 4963.6 0.13296860 0.1006557
## 3257 -31.4 0.881 5076.2 0.13296860 0.1400736
## 3258 -31.4 0.883 5076.2 0.09310345 0.1006557
## 3259 -46.2 1.250 5099.1 0.10609689 0.1400736
## 3260 -30.1 0.715 5017.5 0.08955224 0.1088732
## 3261 -40.0 0.685 5008.7 0.13296860 0.1006557
## 3262 -40.0 0.695 5008.7 0.13296860 0.1006557
## 3263 -31.4 0.883 5076.2 0.31059507 0.1400736
## 3264 -46.2 1.334 5099.1 0.13296860 0.1400736
## 3265 -42.0 4.191 5195.8 0.06776441 0.1006557
## 3266 -42.0 4.076 5195.8 0.10609689 0.1400736
## 3267 -42.0 4.120 5195.8 0.06836679 0.1006557
## 3268 -29.8 0.813 5017.5 0.31059507 0.1400736
## 3269 -50.8 1.049 4963.6 0.13296860 0.1006557
## 3270 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3271 -46.2 1.250 5099.1 0.10609689 0.1088732
## 3272 -49.5 1.025 4963.6 0.27285817 0.1006557
## 3273 -47.1 1.405 5099.1 0.11473272 0.1006557
## 3274 -46.2 1.344 5099.1 0.27285817 0.1006557
## 3275 -47.1 1.435 5099.1 0.10609689 0.1400736
## 3276 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3277 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3278 -34.8 0.650 5008.7 0.13296860 0.1088732
## 3279 -42.0 4.120 5195.8 0.06836679 0.1006557
## 3280 -33.0 0.707 5023.5 0.06836679 0.1006557
## 3281 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3282 -46.2 1.327 5099.1 0.06836679 0.1006557
## 3283 -46.2 1.299 5099.1 0.13296860 0.1006557
## 3284 -30.1 0.714 5017.5 0.10609689 0.1006557
## 3285 -46.2 1.299 5099.1 0.06836679 0.1400736
## 3286 -46.2 1.334 5099.1 0.09484778 0.1006557
## 3287 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3288 -37.5 0.879 4963.6 0.13296860 0.1006557
## 3289 -46.2 1.281 5099.1 0.06836679 0.1088732
## 3290 -47.1 1.365 5099.1 0.06836679 0.1006557
## 3291 -42.0 4.076 5195.8 0.06836679 0.1400736
## 3292 -47.1 1.479 5099.1 0.09310345 0.1006557
## 3293 -31.4 0.873 5076.2 0.13296860 0.1400736
## 3294 -37.5 0.886 4963.6 0.27285817 0.1006557
## 3295 -42.0 4.120 5195.8 0.11473272 0.1088732
## 3296 -47.1 1.405 5099.1 0.06776441 0.1088732
## 3297 -26.9 0.731 5017.5 0.13296860 0.1400736
## 3298 -31.4 0.881 5076.2 0.27285817 0.1006557
## 3299 -31.4 0.879 5076.2 0.13296860 0.1006557
## 3300 -31.4 0.873 5076.2 0.27285817 0.1088732
## 3301 -42.0 4.191 5195.8 0.10609689 0.1400736
## 3302 -39.8 0.739 4991.6 0.10609689 0.1088732
## 3303 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3304 -40.0 0.682 5008.7 0.11473272 0.1006557
## 3305 -34.8 0.635 5008.7 0.06776441 0.1006557
## 3306 -46.2 1.244 5099.1 0.10609689 0.1400736
## 3307 -47.1 1.405 5099.1 0.09310345 0.1006557
## 3308 -46.2 1.327 5099.1 0.06776441 0.1006557
## 3309 -38.3 0.904 4991.6 0.13296860 0.1400736
## 3310 -40.8 1.260 5076.2 0.10609689 0.1400736
## 3311 -46.2 1.291 5099.1 0.13296860 0.1006557
## 3312 -49.5 0.959 4963.6 0.10609689 0.1006557
## 3313 -49.5 0.985 4963.6 0.27285817 0.1006557
## 3314 -31.4 0.859 5076.2 0.13296860 0.1006557
## 3315 -49.5 0.987 4963.6 0.10875332 0.1006557
## 3316 -34.8 0.644 5008.7 0.27285817 0.1006557
## 3317 -46.2 1.299 5099.1 0.06836679 0.1006557
## 3318 -42.0 4.076 5195.8 0.10609689 0.1088732
## 3319 -40.0 0.672 5008.7 0.13296860 0.1400736
## 3320 -46.2 1.291 5099.1 0.06836679 0.1088732
## 3321 -37.5 0.877 4963.6 0.13296860 0.1006557
## 3322 -26.9 0.754 5017.5 0.10609689 0.1088732
## 3323 -46.2 1.299 5099.1 0.10875332 0.1006557
## 3324 -37.5 0.879 4963.6 0.13296860 0.1400736
## 3325 -37.5 0.878 4963.6 0.13296860 0.1006557
## 3326 -47.1 1.405 5099.1 0.13510101 0.1006557
## 3327 -37.5 0.882 4963.6 0.06776441 0.1088732
## 3328 -30.1 0.714 5017.5 0.10609689 0.1400736
## 3329 -31.4 0.861 5076.2 0.13296860 0.1400736
## 3330 -46.2 1.327 5099.1 0.13296860 0.1006557
## 3331 -46.2 1.266 5099.1 0.31059507 0.1400736
## 3332 -46.2 1.327 5099.1 0.06836679 0.1006557
## 3333 -46.2 1.344 5099.1 0.13296860 0.1006557
## 3334 -40.8 1.260 5076.2 0.06776441 0.1400736
## 3335 -46.2 1.266 5099.1 0.06836679 0.1400736
## 3336 -29.8 0.768 5017.5 0.27285817 0.1006557
## 3337 -46.2 1.291 5099.1 0.10875332 0.1006557
## 3338 -46.2 1.291 5099.1 0.09484778 0.1006557
## 3339 -40.3 0.840 4991.6 0.27285817 0.1006557
## 3340 -46.2 1.291 5099.1 0.06836679 0.1006557
## 3341 -46.2 1.327 5099.1 0.06836679 0.1006557
## 3342 -46.2 1.313 5099.1 0.06776441 0.1088732
## 3343 -26.9 0.730 5017.5 0.10875332 0.1400736
## 3344 -49.5 0.959 4963.6 0.27285817 0.1006557
## 3345 -46.2 1.344 5099.1 0.06836679 0.1006557
## 3346 -40.3 0.797 4991.6 0.13296860 0.1006557
## 3347 -46.2 1.299 5099.1 0.06776441 0.1006557
## 3348 -29.8 0.781 5017.5 0.27285817 0.1006557
## 3349 -26.9 0.728 5017.5 0.10609689 0.1400736
## 3350 -46.2 1.259 5099.1 0.09484778 0.1006557
## 3351 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3352 -46.2 1.299 5099.1 0.06776441 0.1006557
## 3353 -46.2 1.291 5099.1 0.06836679 0.1006557
## 3354 -40.8 1.260 5076.2 0.31059507 0.1400736
## 3355 -46.2 1.334 5099.1 0.13296860 0.1166667
## 3356 -33.6 1.072 5076.2 0.10875332 0.1400736
## 3357 -46.2 1.266 5099.1 0.13296860 0.1006557
## 3358 -46.2 1.344 5099.1 0.13296860 0.1006557
## 3359 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3360 -29.8 0.743 5017.5 0.27285817 0.1088732
## 3361 -42.0 4.191 5195.8 0.10875332 0.1006557
## 3362 -38.3 0.899 4991.6 0.06776441 0.1088732
## 3363 -38.3 0.899 4991.6 0.10609689 0.1400736
## 3364 -46.2 1.354 5099.1 0.06776441 0.1006557
## 3365 -46.2 1.299 5099.1 0.10609689 0.1006557
## 3366 -42.0 4.120 5195.8 0.10609689 0.1400736
## 3367 -46.2 1.334 5099.1 0.06776441 0.1088732
## 3368 -31.4 0.881 5076.2 0.10609689 0.1400736
## 3369 -34.8 0.643 5008.7 0.13296860 0.1006557
## 3370 -42.0 4.076 5195.8 0.10609689 0.1006557
## 3371 -46.2 1.266 5099.1 0.06836679 0.1006557
## 3372 -30.1 0.714 5017.5 0.13296860 0.1006557
## 3373 -34.8 0.646 5008.7 0.13510101 0.1006557
## 3374 -42.0 4.120 5195.8 0.13296860 0.1006557
## 3375 -47.1 1.405 5099.1 0.06776441 0.1088732
## 3376 -46.2 1.281 5099.1 0.13296860 0.1400736
## 3377 -39.8 0.767 4991.6 0.13296860 0.1006557
## 3378 -46.2 1.299 5099.1 0.10875332 0.1400736
## 3379 -42.0 4.191 5195.8 0.10609689 0.1006557
## 3380 -42.0 4.191 5195.8 0.10609689 0.1006557
## 3381 -42.0 4.191 5195.8 0.13296860 0.1006557
## 3382 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3383 -46.2 1.299 5099.1 0.06776441 0.1006557
## 3384 -46.2 1.250 5099.1 0.10609689 0.1400736
## 3385 -34.8 0.637 5008.7 0.06836679 0.1006557
## 3386 -46.2 1.354 5099.1 0.13296860 0.1400736
## 3387 -29.8 0.741 5017.5 0.13296860 0.1006557
## 3388 -46.2 1.344 5099.1 0.13296860 0.1006557
## 3389 -46.2 1.281 5099.1 0.09484778 0.1400736
## 3390 -46.2 1.334 5099.1 0.06836679 0.1400736
## 3391 -42.0 4.153 5195.8 0.13296860 0.1006557
## 3392 -40.8 1.260 5076.2 0.13296860 0.1006557
## 3393 -46.2 1.344 5099.1 0.06776441 0.1400736
## 3394 -31.4 0.859 5076.2 0.13296860 0.1006557
## 3395 -46.2 1.281 5099.1 0.31059507 0.1400736
## 3396 -46.2 1.266 5099.1 0.06776441 0.1088732
## 3397 -46.2 1.334 5099.1 0.13296860 0.1006557
## 3398 -30.1 0.714 5017.5 0.06836679 0.1400736
## 3399 -46.2 1.266 5099.1 0.06836679 0.1400736
## 3400 -46.2 1.334 5099.1 0.13296860 0.1006557
## 3401 -47.1 1.479 5099.1 0.11473272 0.1088732
## 3402 -46.2 1.244 5099.1 0.13296860 0.1006557
## 3403 -42.0 4.021 5195.8 0.06776441 0.1006557
## 3404 -30.1 0.715 5017.5 0.27285817 0.1006557
## 3405 -42.0 4.191 5195.8 0.10875332 0.1400736
## 3406 -37.5 0.879 4963.6 0.31059507 0.1400736
## 3407 -37.5 0.879 4963.6 0.27285817 0.1088732
## 3408 -39.8 0.742 4991.6 0.13296860 0.1006557
## 3409 -46.2 1.354 5099.1 0.06776441 0.1006557
## 3410 -37.5 0.877 4963.6 0.10609689 0.1400736
## 3411 -46.2 1.334 5099.1 0.11473272 0.1006557
## 3412 -42.0 4.120 5195.8 0.10609689 0.1400736
## 3413 -46.2 1.327 5099.1 0.06836679 0.1006557
## 3414 -46.2 1.344 5099.1 0.11473272 0.1006557
## 3415 -46.2 1.264 5099.1 0.10875332 0.1006557
## 3416 -46.2 1.266 5099.1 0.10875332 0.1006557
## 3417 -40.3 0.870 4991.6 0.27285817 0.1006557
## 3418 -30.1 0.716 5017.5 0.13296860 0.1400736
## 3419 -37.5 0.886 4963.6 0.13296860 0.1088732
## 3420 -46.2 1.334 5099.1 0.06836679 0.1006557
## 3421 -46.2 1.327 5099.1 0.13296860 0.1400736
## 3422 -46.2 1.334 5099.1 0.06836679 0.1006557
## 3423 -29.8 0.768 5017.5 0.27285817 0.1088732
## 3424 -50.8 1.041 4963.6 0.13296860 0.1006557
## 3425 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3426 -46.2 1.344 5099.1 0.06776441 0.1400736
## 3427 -46.2 1.344 5099.1 0.13296860 0.1088732
## 3428 -39.8 0.754 4991.6 0.10609689 0.1006557
## 3429 -46.2 1.266 5099.1 0.31059507 0.1166667
## 3430 -46.2 1.313 5099.1 0.06836679 0.1400736
## 3431 -42.0 4.153 5195.8 0.10609689 0.1006557
## 3432 -42.0 4.021 5195.8 0.10609689 0.1088732
## 3433 -40.3 0.810 4991.6 0.27285817 0.1006557
## 3434 -40.3 0.782 4991.6 0.11473272 0.1006557
## 3435 -42.0 4.076 5195.8 0.10609689 0.1400736
## 3436 -46.2 1.281 5099.1 0.13296860 0.1400736
## 3437 -50.8 1.050 4963.6 0.13296860 0.1006557
## 3438 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3439 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3440 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3441 -31.4 0.879 5076.2 0.06836679 0.1400736
## 3442 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3443 -46.2 1.281 5099.1 0.10609689 0.1006557
## 3444 -46.2 1.250 5099.1 0.06776441 0.1400736
## 3445 -46.2 1.299 5099.1 0.06836679 0.1006557
## 3446 -37.5 0.880 4963.6 0.11473272 0.1006557
## 3447 -46.2 1.334 5099.1 0.10609689 0.1400736
## 3448 -46.2 1.327 5099.1 0.06776441 0.1088732
## 3449 -46.2 1.244 5099.1 0.13296860 0.1400736
## 3450 -37.5 0.884 4963.6 0.10609689 0.1006557
## 3451 -47.1 1.466 5099.1 0.06836679 0.1006557
## 3452 -38.3 0.905 4991.6 0.09484778 0.1006557
## 3453 -47.1 1.479 5099.1 0.27285817 0.1006557
## 3454 -38.3 0.899 4991.6 0.06836679 0.1006557
## 3455 -50.8 1.048 4963.6 0.13296860 0.1400736
## 3456 -46.2 1.344 5099.1 0.06836679 0.1400736
## 3457 -49.5 0.942 4963.6 0.13296860 0.1400736
## 3458 -46.2 1.266 5099.1 0.10609689 0.1400736
## 3459 -46.2 1.291 5099.1 0.10609689 0.1006557
## 3460 -46.2 1.281 5099.1 0.13296860 0.1006557
## 3461 -26.9 0.724 5017.5 0.13296860 0.1006557
## 3462 -42.0 4.120 5195.8 0.11473272 0.1006557
## 3463 -34.6 0.642 5008.7 0.11473272 0.1400736
## 3464 -34.8 0.646 5008.7 0.13510101 0.1006557
## 3465 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3466 -30.1 0.719 5017.5 0.06836679 0.1006557
## 3467 -47.1 1.405 5099.1 0.10875332 0.1006557
## 3468 -36.1 4.966 5228.1 0.13296860 0.1006557
## 3469 -40.8 1.268 5076.2 0.13296860 0.1006557
## 3470 -34.6 0.644 5008.7 0.27285817 0.1006557
## 3471 -41.8 4.959 5228.1 0.06836679 0.1088732
## 3472 -36.1 4.965 5228.1 0.11473272 0.1006557
## 3473 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3474 -34.8 0.653 5008.7 0.13296860 0.1088732
## 3475 -42.7 4.957 5228.1 0.13296860 0.1400736
## 3476 -46.2 1.313 5099.1 0.10609689 0.1400736
## 3477 -42.7 4.960 5228.1 0.13296860 0.1006557
## 3478 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3479 -36.1 4.964 5228.1 0.13296860 0.1400736
## 3480 -42.7 4.962 5228.1 0.27285817 0.1006557
## 3481 -47.1 1.479 5099.1 0.09484778 0.1006557
## 3482 -36.4 4.859 5191.0 0.06836679 0.1006557
## 3483 -42.7 4.963 5228.1 0.13296860 0.1006557
## 3484 -36.4 4.855 5191.0 0.06836679 0.1006557
## 3485 -41.8 4.967 5228.1 0.06776441 0.1006557
## 3486 -42.7 4.962 5228.1 0.06836679 0.1400736
## 3487 -42.7 4.962 5228.1 0.10609689 0.1006557
## 3488 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3489 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3490 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3491 -31.4 0.843 5076.2 0.09484778 0.1006557
## 3492 -29.8 0.741 5017.5 0.27285817 0.1006557
## 3493 -31.4 0.869 5076.2 0.13510101 0.1006557
## 3494 -41.8 4.960 5228.1 0.10609689 0.1400736
## 3495 -42.7 4.960 5228.1 0.06836679 0.1006557
## 3496 -36.4 4.857 5191.0 0.09484778 0.1006557
## 3497 -41.8 4.967 5228.1 0.06836679 0.1006557
## 3498 -36.1 4.966 5228.1 0.13296860 0.1006557
## 3499 -36.1 4.963 5228.1 0.11473272 0.1006557
## 3500 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3501 -36.4 4.855 5191.0 0.10875332 0.1006557
## 3502 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3503 -36.4 4.857 5191.0 0.06836679 0.1088732
## 3504 -47.1 1.405 5099.1 0.10609689 0.1006557
## 3505 -42.7 4.963 5228.1 0.27285817 0.1006557
## 3506 -36.4 4.864 5191.0 0.13296860 0.1400736
## 3507 -42.0 4.021 5195.8 0.10609689 0.1006557
## 3508 -42.7 4.963 5228.1 0.10609689 0.1006557
## 3509 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3510 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3511 -46.2 1.244 5099.1 0.13510101 0.1400736
## 3512 -46.2 1.313 5099.1 0.13296860 0.1006557
## 3513 -46.2 1.313 5099.1 0.06836679 0.1400736
## 3514 -26.9 0.720 5017.5 0.27285817 0.1006557
## 3515 -34.8 0.653 5008.7 0.09310345 0.1400736
## 3516 -31.4 0.881 5076.2 0.10609689 0.1400736
## 3517 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3518 -42.7 4.962 5228.1 0.10875332 0.1006557
## 3519 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3520 -36.4 4.859 5191.0 0.06836679 0.1006557
## 3521 -36.4 4.857 5191.0 0.10609689 0.1400736
## 3522 -36.4 4.855 5191.0 0.13510101 0.1006557
## 3523 -41.8 4.865 5228.1 0.13296860 0.1400736
## 3524 -40.0 0.682 5008.7 0.31059507 0.1400736
## 3525 -42.7 4.962 5228.1 0.09310345 0.1006557
## 3526 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3527 -42.7 4.962 5228.1 0.06836679 0.1006557
## 3528 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3529 -42.7 4.963 5228.1 0.06836679 0.1400736
## 3530 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3531 -36.4 4.857 5191.0 0.06836679 0.1006557
## 3532 -42.7 4.963 5228.1 0.13296860 0.1400736
## 3533 -36.4 4.855 5191.0 0.13510101 0.1006557
## 3534 -29.8 0.773 5017.5 0.13510101 0.1006557
## 3535 -41.8 4.967 5228.1 0.09310345 0.1006557
## 3536 -36.4 4.855 5191.0 0.11473272 0.1006557
## 3537 -36.4 4.859 5191.0 0.10875332 0.1400736
## 3538 -36.4 4.857 5191.0 0.06836679 0.1006557
## 3539 -36.1 4.963 5228.1 0.10609689 0.1006557
## 3540 -46.2 1.313 5099.1 0.13296860 0.1088732
## 3541 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3542 -36.1 4.964 5228.1 0.10609689 0.1006557
## 3543 -41.8 4.961 5228.1 0.10609689 0.1400736
## 3544 -36.1 4.963 5228.1 0.10609689 0.1006557
## 3545 -42.7 4.962 5228.1 0.10609689 0.1006557
## 3546 -26.9 0.730 5017.5 0.08955224 0.1400736
## 3547 -36.4 4.859 5191.0 0.06776441 0.1400736
## 3548 -42.7 4.963 5228.1 0.06836679 0.1400736
## 3549 -42.7 4.959 5228.1 0.27285817 0.1006557
## 3550 -47.1 1.405 5099.1 0.06776441 0.1006557
## 3551 -36.1 4.963 5228.1 0.13296860 0.1400736
## 3552 -36.4 4.859 5191.0 0.13296860 0.1088732
## 3553 -36.4 4.857 5191.0 0.06836679 0.1006557
## 3554 -47.1 1.405 5099.1 0.10609689 0.1006557
## 3555 -36.1 4.966 5228.1 0.10609689 0.1006557
## 3556 -47.1 1.405 5099.1 0.06776441 0.1006557
## 3557 -46.2 1.299 5099.1 0.06836679 0.1006557
## 3558 -41.8 4.959 5228.1 0.09310345 0.1006557
## 3559 -36.4 4.859 5191.0 0.06776441 0.1088732
## 3560 -46.2 1.244 5099.1 0.06836679 0.1006557
## 3561 -47.1 1.405 5099.1 0.10609689 0.1088732
## 3562 -36.4 4.864 5191.0 0.06836679 0.1006557
## 3563 -42.0 4.021 5195.8 0.31059507 0.1006557
## 3564 -36.1 4.964 5228.1 0.10609689 0.1400736
## 3565 -46.2 1.250 5099.1 0.13296860 0.1400736
## 3566 -42.0 4.021 5195.8 0.13296860 0.1088732
## 3567 -36.4 4.859 5191.0 0.06836679 0.1006557
## 3568 -47.1 1.405 5099.1 0.11473272 0.1006557
## 3569 -41.8 4.967 5228.1 0.10609689 0.1006557
## 3570 -41.8 4.960 5228.1 0.13296860 0.1006557
## 3571 -42.7 4.962 5228.1 0.10609689 0.1006557
## 3572 -42.7 4.960 5228.1 0.10609689 0.1006557
## 3573 -42.7 4.957 5228.1 0.11473272 0.1006557
## 3574 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3575 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3576 -36.1 4.964 5228.1 0.13296860 0.1400736
## 3577 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3578 -36.4 4.859 5191.0 0.13296860 0.1006557
## 3579 -42.0 4.021 5195.8 0.13296860 0.1088732
## 3580 -50.8 1.050 4963.6 0.06836679 0.1088732
## 3581 -47.1 1.405 5099.1 0.10875332 0.1006557
## 3582 -36.1 4.964 5228.1 0.10875332 0.1006557
## 3583 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3584 -36.4 4.864 5191.0 0.06836679 0.1400736
## 3585 -36.1 4.964 5228.1 0.10609689 0.1088732
## 3586 -36.4 4.855 5191.0 0.06836679 0.1006557
## 3587 -36.4 4.864 5191.0 0.08955224 0.1006557
## 3588 -42.7 4.957 5228.1 0.09484778 0.1006557
## 3589 -47.1 1.405 5099.1 0.13296860 0.1400736
## 3590 -36.1 4.963 5228.1 0.13296860 0.1400736
## 3591 -36.4 4.857 5191.0 0.10609689 0.1088732
## 3592 -47.1 1.405 5099.1 0.13296860 0.1400736
## 3593 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3594 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3595 -36.4 4.864 5191.0 0.10609689 0.1088732
## 3596 -42.0 4.021 5195.8 0.09310345 0.1400736
## 3597 -50.0 1.640 5099.1 0.13510101 0.1166667
## 3598 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3599 -41.8 4.959 5228.1 0.11473272 0.1006557
## 3600 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3601 -36.1 4.964 5228.1 0.10609689 0.1400736
## 3602 -41.8 4.947 5228.1 0.06776441 0.1006557
## 3603 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3604 -42.7 4.962 5228.1 0.06776441 0.1006557
## 3605 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3606 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3607 -47.1 1.405 5099.1 0.13296860 0.1400736
## 3608 -36.4 4.857 5191.0 0.13296860 0.1088732
## 3609 -30.1 0.722 5017.5 0.06836679 0.1400736
## 3610 -31.4 0.869 5076.2 0.06836679 0.1088732
## 3611 -36.4 4.855 5191.0 0.06776441 0.1088732
## 3612 -41.8 4.967 5228.1 0.10609689 0.1400736
## 3613 -47.1 1.405 5099.1 0.10609689 0.1006557
## 3614 -46.2 1.250 5099.1 0.09310345 0.1400736
## 3615 -36.1 4.966 5228.1 0.10609689 0.1006557
## 3616 -36.1 4.966 5228.1 0.13296860 0.1088732
## 3617 -36.4 4.857 5191.0 0.13296860 0.1400736
## 3618 -36.4 4.857 5191.0 0.10609689 0.1006557
## 3619 -36.4 4.857 5191.0 0.27285817 0.1006557
## 3620 -46.2 1.250 5099.1 0.09310345 0.1006557
## 3621 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3622 -36.4 4.859 5191.0 0.06836679 0.1006557
## 3623 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3624 -41.8 4.959 5228.1 0.10609689 0.1088732
## 3625 -42.0 4.076 5195.8 0.13296860 0.1006557
## 3626 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3627 -31.4 0.869 5076.2 0.27285817 0.1006557
## 3628 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3629 -29.8 0.773 5017.5 0.27285817 0.1006557
## 3630 -42.7 4.963 5228.1 0.10609689 0.1088732
## 3631 -42.7 4.963 5228.1 0.10609689 0.1006557
## 3632 -41.8 4.958 5228.1 0.13296860 0.1400736
## 3633 -33.6 1.007 5076.2 0.06836679 0.1400736
## 3634 -42.7 4.963 5228.1 0.06776441 0.1400736
## 3635 -42.7 4.957 5228.1 0.06776441 0.1006557
## 3636 -36.4 4.855 5191.0 0.06836679 0.1006557
## 3637 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3638 -46.2 1.250 5099.1 0.09310345 0.1088732
## 3639 -42.0 4.191 5195.8 0.06836679 0.1006557
## 3640 -47.1 1.405 5099.1 0.11473272 0.1006557
## 3641 -41.8 4.959 5228.1 0.06776441 0.1400736
## 3642 -36.1 4.963 5228.1 0.06776441 0.1006557
## 3643 -36.4 4.864 5191.0 0.13296860 0.1006557
## 3644 -36.4 4.855 5191.0 0.11473272 0.1006557
## 3645 -41.8 4.959 5228.1 0.06776441 0.1006557
## 3646 -47.1 1.405 5099.1 0.13296860 0.1400736
## 3647 -47.1 1.405 5099.1 0.13296860 0.1400736
## 3648 -31.4 0.825 5076.2 0.31059507 0.1400736
## 3649 -42.0 4.021 5195.8 0.06836679 0.1006557
## 3650 -36.1 4.964 5228.1 0.06836679 0.1006557
## 3651 -50.0 1.531 5099.1 0.06836679 0.1006557
## 3652 -42.7 4.963 5228.1 0.13296860 0.1006557
## 3653 -41.8 4.967 5228.1 0.13296860 0.1006557
## 3654 -36.4 4.860 5191.0 0.06776441 0.1006557
## 3655 -36.4 4.859 5191.0 0.13296860 0.1006557
## 3656 -42.7 4.962 5228.1 0.06836679 0.1006557
## 3657 -41.8 4.959 5228.1 0.09484778 0.1006557
## 3658 -41.8 4.967 5228.1 0.10609689 0.1006557
## 3659 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3660 -36.4 4.864 5191.0 0.13296860 0.1006557
## 3661 -41.8 4.959 5228.1 0.27285817 0.1006557
## 3662 -36.4 4.859 5191.0 0.08955224 0.1006557
## 3663 -42.7 4.963 5228.1 0.09484778 0.1006557
## 3664 -42.0 4.076 5195.8 0.10875332 0.1400736
## 3665 -36.4 4.864 5191.0 0.06836679 0.1400736
## 3666 -36.1 4.966 5228.1 0.10609689 0.1006557
## 3667 -42.7 4.959 5228.1 0.06776441 0.1006557
## 3668 -46.2 1.250 5099.1 0.06836679 0.1088732
## 3669 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3670 -46.2 1.250 5099.1 0.11473272 0.1400736
## 3671 -36.1 4.966 5228.1 0.13296860 0.1006557
## 3672 -47.1 1.405 5099.1 0.11473272 0.1006557
## 3673 -47.1 1.405 5099.1 0.10609689 0.1006557
## 3674 -41.8 4.967 5228.1 0.13510101 0.1088732
## 3675 -36.1 4.964 5228.1 0.13296860 0.1088732
## 3676 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3677 -42.7 4.962 5228.1 0.06836679 0.1006557
## 3678 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3679 -41.8 4.959 5228.1 0.13296860 0.1006557
## 3680 -41.8 4.967 5228.1 0.10875332 0.1006557
## 3681 -36.1 4.965 5228.1 0.11473272 0.1088732
## 3682 -41.8 4.967 5228.1 0.06836679 0.1006557
## 3683 -36.1 4.964 5228.1 0.10875332 0.1006557
## 3684 -46.2 1.250 5099.1 0.13510101 0.1006557
## 3685 -41.8 4.961 5228.1 0.10609689 0.1006557
## 3686 -46.2 1.250 5099.1 0.13296860 0.1006557
## 3687 -41.8 4.967 5228.1 0.06776441 0.1006557
## 3688 -31.4 0.869 5076.2 0.13510101 0.1400736
## 3689 -42.7 4.963 5228.1 0.13296860 0.1400736
## 3690 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3691 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3692 -42.7 4.963 5228.1 0.06836679 0.1006557
## 3693 -36.1 4.964 5228.1 0.13296860 0.1400736
## 3694 -36.1 4.964 5228.1 0.06776441 0.1006557
## 3695 -42.7 4.960 5228.1 0.13296860 0.1400736
## 3696 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3697 -36.1 4.966 5228.1 0.06776441 0.1006557
## 3698 -36.4 4.864 5191.0 0.06836679 0.1006557
## 3699 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3700 -31.4 0.881 5076.2 0.27285817 0.1006557
## 3701 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3702 -41.8 4.959 5228.1 0.06776441 0.1006557
## 3703 -36.1 4.963 5228.1 0.10609689 0.1006557
## 3704 -47.1 1.405 5099.1 0.06776441 0.1006557
## 3705 -41.8 4.959 5228.1 0.13296860 0.1088732
## 3706 -42.7 4.957 5228.1 0.10875332 0.1006557
## 3707 -46.2 1.313 5099.1 0.06776441 0.1400736
## 3708 -41.8 4.959 5228.1 0.09310345 0.1006557
## 3709 -42.7 4.957 5228.1 0.06776441 0.1006557
## 3710 -47.1 1.405 5099.1 0.09484778 0.1088732
## 3711 -36.1 4.964 5228.1 0.10609689 0.1400736
## 3712 -42.7 4.962 5228.1 0.13510101 0.1006557
## 3713 -41.8 4.959 5228.1 0.09310345 0.1400736
## 3714 -42.0 4.021 5195.8 0.10609689 0.1400736
## 3715 -41.8 4.959 5228.1 0.10609689 0.1006557
## 3716 -36.4 4.864 5191.0 0.13296860 0.1006557
## 3717 -36.4 4.857 5191.0 0.09310345 0.1006557
## 3718 -41.8 4.960 5228.1 0.13510101 0.1088732
## 3719 -36.4 4.857 5191.0 0.06836679 0.1006557
## 3720 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3721 -36.1 4.964 5228.1 0.06836679 0.1006557
## 3722 -42.7 4.962 5228.1 0.11473272 0.1006557
## 3723 -36.4 4.857 5191.0 0.11473272 0.1088732
## 3724 -41.8 4.959 5228.1 0.27285817 0.1006557
## 3725 -36.1 4.963 5228.1 0.08955224 0.1006557
## 3726 -41.8 4.959 5228.1 0.06836679 0.1400736
## 3727 -36.4 4.859 5191.0 0.06776441 0.1006557
## 3728 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3729 -46.2 1.250 5099.1 0.06836679 0.1400736
## 3730 -36.4 4.855 5191.0 0.13510101 0.1400736
## 3731 -42.7 4.957 5228.1 0.06836679 0.1006557
## 3732 -42.7 4.962 5228.1 0.27285817 0.1088732
## 3733 -41.8 4.967 5228.1 0.13296860 0.1400736
## 3734 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3735 -46.2 1.250 5099.1 0.06836679 0.1400736
## 3736 -36.1 4.970 5228.1 0.10609689 0.1088732
## 3737 -42.0 4.021 5195.8 0.27285817 0.1006557
## 3738 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3739 -36.1 4.966 5228.1 0.06836679 0.1006557
## 3740 -36.1 4.963 5228.1 0.10609689 0.1006557
## 3741 -36.1 4.964 5228.1 0.06776441 0.1006557
## 3742 -39.8 0.748 4991.6 0.09484778 0.1006557
## 3743 -41.8 4.959 5228.1 0.27285817 0.1006557
## 3744 -36.1 4.965 5228.1 0.06836679 0.1006557
## 3745 -41.8 4.959 5228.1 0.13510101 0.1006557
## 3746 -42.7 4.962 5228.1 0.10609689 0.1006557
## 3747 -36.4 4.855 5191.0 0.13296860 0.1400736
## 3748 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3749 -42.7 4.960 5228.1 0.10875332 0.1088732
## 3750 -36.1 4.970 5228.1 0.06836679 0.1006557
## 3751 -36.4 4.855 5191.0 0.13296860 0.1400736
## 3752 -36.1 4.963 5228.1 0.13296860 0.1088732
## 3753 -36.1 4.966 5228.1 0.13296860 0.1088732
## 3754 -36.4 4.855 5191.0 0.13510101 0.1400736
## 3755 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3756 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3757 -46.2 1.244 5099.1 0.10609689 0.1400736
## 3758 -36.1 4.964 5228.1 0.09484778 0.1006557
## 3759 -36.1 4.964 5228.1 0.11473272 0.1006557
## 3760 -42.7 4.958 5228.1 0.06836679 0.1006557
## 3761 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3762 -42.0 4.021 5195.8 0.09310345 0.1006557
## 3763 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3764 -36.4 4.857 5191.0 0.11473272 0.1088732
## 3765 -41.8 4.959 5228.1 0.06836679 0.1400736
## 3766 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3767 -42.0 4.021 5195.8 0.10609689 0.1006557
## 3768 -36.1 4.966 5228.1 0.06836679 0.1006557
## 3769 -46.2 1.250 5099.1 0.13296860 0.1400736
## 3770 -42.7 4.962 5228.1 0.10875332 0.1400736
## 3771 -40.8 1.268 5076.2 0.13296860 0.1400736
## 3772 -29.8 0.773 5017.5 0.27285817 0.1006557
## 3773 -41.8 4.967 5228.1 0.06836679 0.1006557
## 3774 -36.1 4.964 5228.1 0.27285817 0.1006557
## 3775 -41.8 4.959 5228.1 0.06836679 0.1400736
## 3776 -36.1 4.966 5228.1 0.10609689 0.1400736
## 3777 -36.4 4.859 5191.0 0.06776441 0.1006557
## 3778 -42.7 4.962 5228.1 0.06776441 0.1006557
## 3779 -41.8 4.959 5228.1 0.11473272 0.1006557
## 3780 -41.8 4.967 5228.1 0.10609689 0.1006557
## 3781 -36.4 4.864 5191.0 0.06836679 0.1088732
## 3782 -42.7 4.957 5228.1 0.13296860 0.1400736
## 3783 -41.8 4.947 5228.1 0.06836679 0.1400736
## 3784 -46.2 1.313 5099.1 0.13296860 0.1006557
## 3785 -36.4 4.859 5191.0 0.13296860 0.1006557
## 3786 -39.8 0.754 4991.6 0.13510101 0.1006557
## 3787 -46.2 1.259 5099.1 0.09484778 0.1006557
## 3788 -36.4 4.857 5191.0 0.10609689 0.1006557
## 3789 -36.1 4.966 5228.1 0.10609689 0.1088732
## 3790 -36.1 4.963 5228.1 0.11473272 0.1088732
## 3791 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3792 -36.4 4.855 5191.0 0.06836679 0.1006557
## 3793 -36.1 4.966 5228.1 0.06836679 0.1006557
## 3794 -46.2 1.313 5099.1 0.06776441 0.1088732
## 3795 -41.8 4.959 5228.1 0.06776441 0.1400736
## 3796 -36.4 4.857 5191.0 0.10609689 0.1006557
## 3797 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3798 -36.4 4.859 5191.0 0.13296860 0.1400736
## 3799 -42.0 4.406 5195.8 0.31059507 0.1400736
## 3800 -46.2 1.250 5099.1 0.06836679 0.1400736
## 3801 -42.7 4.960 5228.1 0.10875332 0.1006557
## 3802 -42.0 4.021 5195.8 0.09484778 0.1006557
## 3803 -42.7 4.963 5228.1 0.13296860 0.1006557
## 3804 -47.1 1.405 5099.1 0.09484778 0.1006557
## 3805 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3806 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3807 -46.2 1.313 5099.1 0.06776441 0.1400736
## 3808 -40.0 0.682 5008.7 0.10609689 0.1006557
## 3809 -46.2 1.299 5099.1 0.31059507 0.1400736
## 3810 -31.4 0.881 5076.2 0.13296860 0.1400736
## 3811 -36.4 4.857 5191.0 0.10609689 0.1400736
## 3812 -41.8 4.865 5228.1 0.06776441 0.1006557
## 3813 -42.7 4.963 5228.1 0.10609689 0.1006557
## 3814 -47.1 1.405 5099.1 0.13510101 0.1006557
## 3815 -42.0 4.021 5195.8 0.11473272 0.1006557
## 3816 -47.1 1.405 5099.1 0.10609689 0.1400736
## 3817 -36.1 4.965 5228.1 0.09484778 0.1006557
## 3818 -36.1 4.966 5228.1 0.06836679 0.1006557
## 3819 -42.7 4.962 5228.1 0.27285817 0.1006557
## 3820 -42.0 4.021 5195.8 0.13296860 0.1088732
## 3821 -36.1 4.964 5228.1 0.10609689 0.1400736
## 3822 -42.0 4.021 5195.8 0.10609689 0.1088732
## 3823 -46.2 1.313 5099.1 0.11473272 0.1400736
## 3824 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3825 -41.8 4.959 5228.1 0.10609689 0.1400736
## 3826 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3827 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3828 -42.0 4.021 5195.8 0.13296860 0.1088732
## 3829 -41.8 4.959 5228.1 0.13296860 0.1006557
## 3830 -36.4 4.864 5191.0 0.13296860 0.1006557
## 3831 -41.8 4.865 5228.1 0.06836679 0.1006557
## 3832 -42.7 4.957 5228.1 0.10609689 0.1006557
## 3833 -36.1 4.963 5228.1 0.06836679 0.1006557
## 3834 -42.7 4.957 5228.1 0.09310345 0.1400736
## 3835 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3836 -46.2 1.313 5099.1 0.06836679 0.1088732
## 3837 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3838 -41.8 4.959 5228.1 0.11473272 0.1400736
## 3839 -42.7 4.962 5228.1 0.13296860 0.1088732
## 3840 -42.7 4.957 5228.1 0.06776441 0.1400736
## 3841 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3842 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3843 -41.8 4.959 5228.1 0.09484778 0.1006557
## 3844 -36.1 4.965 5228.1 0.13296860 0.1400736
## 3845 -42.7 4.957 5228.1 0.11473272 0.1400736
## 3846 -41.8 4.959 5228.1 0.09310345 0.1088732
## 3847 -42.7 4.960 5228.1 0.13296860 0.1400736
## 3848 -36.4 4.855 5191.0 0.06836679 0.1006557
## 3849 -42.7 4.961 5228.1 0.09310345 0.1088732
## 3850 -36.1 4.966 5228.1 0.13510101 0.1006557
## 3851 -36.4 4.859 5191.0 0.06776441 0.1006557
## 3852 -42.0 4.191 5195.8 0.11473272 0.1006557
## 3853 -46.2 1.250 5099.1 0.06776441 0.1006557
## 3854 -36.1 4.963 5228.1 0.10609689 0.1400736
## 3855 -41.8 4.967 5228.1 0.10875332 0.1006557
## 3856 -36.4 4.864 5191.0 0.06836679 0.1006557
## 3857 -36.4 4.864 5191.0 0.06776441 0.1006557
## 3858 -34.6 0.645 5008.7 0.09484778 0.1006557
## 3859 -36.1 4.964 5228.1 0.13296860 0.1400736
## 3860 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3861 -41.8 4.959 5228.1 0.08955224 0.1006557
## 3862 -36.4 4.864 5191.0 0.06836679 0.1088732
## 3863 -41.8 4.865 5228.1 0.10609689 0.1400736
## 3864 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3865 -41.8 4.947 5228.1 0.10609689 0.1400736
## 3866 -36.1 4.963 5228.1 0.10609689 0.1006557
## 3867 -49.5 0.993 4963.6 0.27285817 0.1088732
## 3868 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3869 -41.8 4.959 5228.1 0.13296860 0.1088732
## 3870 -36.4 4.855 5191.0 0.09310345 0.1400736
## 3871 -36.4 4.857 5191.0 0.06836679 0.1006557
## 3872 -47.1 1.405 5099.1 0.10609689 0.1400736
## 3873 -41.8 4.959 5228.1 0.11473272 0.1400736
## 3874 -42.7 4.957 5228.1 0.06836679 0.1006557
## 3875 -42.0 4.021 5195.8 0.06836679 0.1006557
## 3876 -41.8 4.967 5228.1 0.06776441 0.1088732
## 3877 -46.2 1.313 5099.1 0.06776441 0.1088732
## 3878 -36.4 4.857 5191.0 0.27285817 0.1006557
## 3879 -36.4 4.857 5191.0 0.06776441 0.1400736
## 3880 -41.8 4.959 5228.1 0.06776441 0.1400736
## 3881 -36.4 4.855 5191.0 0.10875332 0.1006557
## 3882 -36.1 4.966 5228.1 0.10609689 0.1006557
## 3883 -42.7 4.960 5228.1 0.10609689 0.1088732
## 3884 -42.7 4.957 5228.1 0.06836679 0.1006557
## 3885 -42.7 4.963 5228.1 0.06776441 0.1006557
## 3886 -47.1 1.479 5099.1 0.06836679 0.1006557
## 3887 -36.4 4.857 5191.0 0.06836679 0.1006557
## 3888 -42.7 4.962 5228.1 0.09310345 0.1088732
## 3889 -47.1 1.405 5099.1 0.06776441 0.1006557
## 3890 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3891 -46.2 1.313 5099.1 0.13296860 0.1006557
## 3892 -41.8 4.959 5228.1 0.27285817 0.1006557
## 3893 -36.4 4.857 5191.0 0.06836679 0.1088732
## 3894 -36.1 4.964 5228.1 0.10609689 0.1006557
## 3895 -46.2 1.299 5099.1 0.10609689 0.1400736
## 3896 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3897 -31.4 0.861 5076.2 0.13296860 0.1400736
## 3898 -42.7 4.959 5228.1 0.13296860 0.1400736
## 3899 -42.0 4.021 5195.8 0.13296860 0.1400736
## 3900 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3901 -42.7 4.957 5228.1 0.13296860 0.1400736
## 3902 -36.1 4.966 5228.1 0.13296860 0.1006557
## 3903 -42.7 4.962 5228.1 0.06836679 0.1006557
## 3904 -36.4 4.864 5191.0 0.06836679 0.1006557
## 3905 -31.4 0.825 5076.2 0.10609689 0.1006557
## 3906 -36.1 4.966 5228.1 0.10609689 0.1006557
## 3907 -33.6 1.007 5076.2 0.06836679 0.1400736
## 3908 -36.4 4.858 5191.0 0.06776441 0.1006557
## 3909 -37.5 0.879 4963.6 0.10609689 0.1400736
## 3910 -46.2 1.250 5099.1 0.13510101 0.1006557
## 3911 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3912 -42.7 4.963 5228.1 0.06776441 0.1400736
## 3913 -36.1 4.966 5228.1 0.13296860 0.1006557
## 3914 -42.0 4.021 5195.8 0.10609689 0.1400736
## 3915 -41.8 4.967 5228.1 0.13296860 0.1006557
## 3916 -46.2 1.291 5099.1 0.13296860 0.1006557
## 3917 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3918 -40.8 1.268 5076.2 0.10609689 0.1400736
## 3919 -36.4 4.857 5191.0 0.06836679 0.1400736
## 3920 -36.1 4.964 5228.1 0.11473272 0.1006557
## 3921 -40.3 0.896 4991.6 0.13510101 0.1400736
## 3922 -36.4 4.857 5191.0 0.06836679 0.1088732
## 3923 -41.8 4.865 5228.1 0.06836679 0.1006557
## 3924 -46.2 1.250 5099.1 0.13296860 0.1400736
## 3925 -41.8 4.959 5228.1 0.06836679 0.1400736
## 3926 -38.3 0.888 4991.6 0.13296860 0.1400736
## 3927 -36.1 4.964 5228.1 0.10609689 0.1400736
## 3928 -36.1 4.963 5228.1 0.06836679 0.1006557
## 3929 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3930 -46.2 1.250 5099.1 0.09310345 0.1006557
## 3931 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3932 -42.7 4.962 5228.1 0.06776441 0.1006557
## 3933 -41.8 4.961 5228.1 0.13296860 0.1400736
## 3934 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3935 -36.4 4.864 5191.0 0.06836679 0.1006557
## 3936 -42.7 4.963 5228.1 0.13296860 0.1400736
## 3937 -36.1 4.966 5228.1 0.06836679 0.1006557
## 3938 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3939 -47.1 1.405 5099.1 0.10609689 0.1006557
## 3940 -46.2 1.250 5099.1 0.13296860 0.1006557
## 3941 -42.7 4.963 5228.1 0.13296860 0.1400736
## 3942 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3943 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3944 -38.3 0.904 4991.6 0.11473272 0.1006557
## 3945 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3946 -36.4 4.857 5191.0 0.09310345 0.1006557
## 3947 -42.7 4.962 5228.1 0.13296860 0.1088732
## 3948 -36.4 4.864 5191.0 0.06776441 0.1006557
## 3949 -31.4 0.881 5076.2 0.13296860 0.1400736
## 3950 -46.2 1.354 5099.1 0.31059507 0.1400736
## 3951 -42.0 4.021 5195.8 0.10609689 0.1006557
## 3952 -42.0 4.021 5195.8 0.11473272 0.1006557
## 3953 -36.1 4.966 5228.1 0.10609689 0.1088732
## 3954 -36.1 4.964 5228.1 0.27285817 0.1006557
## 3955 -36.4 4.857 5191.0 0.10609689 0.1006557
## 3956 -41.8 4.959 5228.1 0.11473272 0.1006557
## 3957 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3958 -47.1 1.479 5099.1 0.13296860 0.1006557
## 3959 -41.8 4.947 5228.1 0.06776441 0.1006557
## 3960 -41.8 4.961 5228.1 0.13296860 0.1400736
## 3961 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3962 -41.8 4.959 5228.1 0.11473272 0.1006557
## 3963 -42.7 4.963 5228.1 0.10609689 0.1006557
## 3964 -36.1 4.966 5228.1 0.10875332 0.1006557
## 3965 -36.4 4.858 5191.0 0.10609689 0.1006557
## 3966 -31.4 0.881 5076.2 0.13296860 0.1400736
## 3967 -46.2 1.299 5099.1 0.13296860 0.1400736
## 3968 -34.8 0.636 5008.7 0.09484778 0.1088732
## 3969 -41.8 4.967 5228.1 0.13510101 0.1006557
## 3970 -36.1 4.964 5228.1 0.10609689 0.1400736
## 3971 -42.0 4.021 5195.8 0.27285817 0.1006557
## 3972 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3973 -41.8 4.959 5228.1 0.11473272 0.1006557
## 3974 -36.4 4.855 5191.0 0.10609689 0.1088732
## 3975 -47.1 1.405 5099.1 0.06836679 0.1400736
## 3976 -36.4 4.859 5191.0 0.06836679 0.1006557
## 3977 -41.8 4.967 5228.1 0.13296860 0.1006557
## 3978 -41.8 4.967 5228.1 0.11473272 0.1006557
## 3979 -41.8 4.967 5228.1 0.11473272 0.1006557
## 3980 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3981 -36.1 4.966 5228.1 0.10609689 0.1006557
## 3982 -42.0 4.021 5195.8 0.13296860 0.1400736
## 3983 -42.7 4.962 5228.1 0.13296860 0.1006557
## 3984 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3985 -36.4 4.864 5191.0 0.13296860 0.1400736
## 3986 -36.4 4.857 5191.0 0.10609689 0.1006557
## 3987 -42.7 4.957 5228.1 0.13296860 0.1088732
## 3988 -41.8 4.967 5228.1 0.10875332 0.1006557
## 3989 -46.2 1.259 5099.1 0.10609689 0.1006557
## 3990 -36.1 4.964 5228.1 0.13296860 0.1400736
## 3991 -40.8 1.224 5076.2 0.31059507 0.1400736
## 3992 -36.1 4.964 5228.1 0.10609689 0.1088732
## 3993 -37.5 0.882 4963.6 0.31059507 0.1400736
## 3994 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3995 -47.1 1.405 5099.1 0.06776441 0.1400736
## 3996 -36.4 4.859 5191.0 0.06836679 0.1400736
## 3997 -36.4 4.857 5191.0 0.09310345 0.1006557
## 3998 -36.1 4.964 5228.1 0.10609689 0.1006557
## 3999 -46.2 1.264 5099.1 0.13296860 0.1400736
## 4000 -50.8 1.028 4963.6 0.27285817 0.1006557
## 4001 -47.1 1.405 5099.1 0.06836679 0.1400736
## 4002 -50.0 1.520 5099.1 0.27285817 0.1006557
## 4003 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4004 -36.1 4.970 5228.1 0.13296860 0.1006557
## 4005 -46.2 1.250 5099.1 0.06776441 0.1088732
## 4006 -50.0 1.629 5099.1 0.10609689 0.1006557
## 4007 -47.1 1.405 5099.1 0.13296860 0.1088732
## 4008 -47.1 1.405 5099.1 0.06776441 0.1400736
## 4009 -36.4 4.859 5191.0 0.13296860 0.1006557
## 4010 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4011 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4012 -47.1 1.405 5099.1 0.27285817 0.1400736
## 4013 -46.2 1.244 5099.1 0.10875332 0.1006557
## 4014 -36.4 4.857 5191.0 0.06776441 0.1088732
## 4015 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4016 -36.1 4.964 5228.1 0.06836679 0.1006557
## 4017 -41.8 4.947 5228.1 0.06836679 0.1006557
## 4018 -46.2 1.250 5099.1 0.06776441 0.1006557
## 4019 -41.8 4.967 5228.1 0.10875332 0.1006557
## 4020 -36.4 4.864 5191.0 0.13296860 0.1400736
## 4021 -42.7 4.957 5228.1 0.11473272 0.1400736
## 4022 -41.8 4.967 5228.1 0.13296860 0.1006557
## 4023 -36.4 4.864 5191.0 0.10609689 0.1006557
## 4024 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4025 -36.4 4.857 5191.0 0.13296860 0.1006557
## 4026 -41.8 4.967 5228.1 0.10609689 0.1006557
## 4027 -46.2 1.250 5099.1 0.06776441 0.1400736
## 4028 -41.8 4.967 5228.1 0.06776441 0.1006557
## 4029 -47.1 1.405 5099.1 0.06776441 0.1400736
## 4030 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4031 -42.7 4.957 5228.1 0.13296860 0.1400736
## 4032 -42.7 4.962 5228.1 0.13296860 0.1006557
## 4033 -36.4 4.864 5191.0 0.09484778 0.1006557
## 4034 -42.7 4.957 5228.1 0.13296860 0.1400736
## 4035 -42.7 4.962 5228.1 0.09310345 0.1088732
## 4036 -42.0 4.021 5195.8 0.10609689 0.1006557
## 4037 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4038 -46.2 1.259 5099.1 0.13296860 0.1006557
## 4039 -40.3 0.885 4991.6 0.31059507 0.1400736
## 4040 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4041 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4042 -42.7 4.962 5228.1 0.10609689 0.1400736
## 4043 -36.1 4.963 5228.1 0.10875332 0.1006557
## 4044 -42.7 4.960 5228.1 0.06836679 0.1006557
## 4045 -42.0 4.021 5195.8 0.11473272 0.1006557
## 4046 -41.8 4.967 5228.1 0.06836679 0.1088732
## 4047 -34.8 0.653 5008.7 0.06836679 0.1006557
## 4048 -46.2 1.250 5099.1 0.10609689 0.1400736
## 4049 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4050 -34.8 0.653 5008.7 0.27285817 0.1006557
## 4051 -41.8 4.967 5228.1 0.11473272 0.1006557
## 4052 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4053 -41.8 4.967 5228.1 0.13296860 0.1400736
## 4054 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4055 -46.2 1.250 5099.1 0.06776441 0.1400736
## 4056 -36.4 4.857 5191.0 0.13296860 0.1400736
## 4057 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4058 -41.8 4.960 5228.1 0.13510101 0.1006557
## 4059 -41.8 4.967 5228.1 0.09484778 0.1006557
## 4060 -42.7 4.957 5228.1 0.13296860 0.1400736
## 4061 -41.8 4.960 5228.1 0.13296860 0.1400736
## 4062 -47.1 1.405 5099.1 0.10609689 0.1400736
## 4063 -41.8 4.959 5228.1 0.27285817 0.1088732
## 4064 -36.4 4.864 5191.0 0.13296860 0.1400736
## 4065 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4066 -47.1 1.405 5099.1 0.06776441 0.1006557
## 4067 -41.8 4.947 5228.1 0.13296860 0.1400736
## 4068 -36.1 4.966 5228.1 0.10609689 0.1400736
## 4069 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4070 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4071 -46.2 1.313 5099.1 0.06776441 0.1006557
## 4072 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4073 -42.7 4.962 5228.1 0.13296860 0.1400736
## 4074 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4075 -42.7 4.959 5228.1 0.06836679 0.1006557
## 4076 -41.8 4.947 5228.1 0.06836679 0.1006557
## 4077 -50.0 1.531 5099.1 0.13296860 0.1400736
## 4078 -41.8 4.967 5228.1 0.13296860 0.1006557
## 4079 -46.2 1.299 5099.1 0.10609689 0.1006557
## 4080 -46.2 1.354 5099.1 0.10609689 0.1006557
## 4081 -41.8 4.947 5228.1 0.13296860 0.1400736
## 4082 -30.1 0.716 5017.5 0.10609689 0.1006557
## 4083 -42.0 4.191 5195.8 0.13296860 0.1400736
## 4084 -42.7 4.962 5228.1 0.13296860 0.1006557
## 4085 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4086 -38.3 0.890 4991.6 0.06776441 0.1400736
## 4087 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4088 -42.7 4.957 5228.1 0.13296860 0.1006557
## 4089 -36.4 4.857 5191.0 0.11473272 0.1006557
## 4090 -41.8 4.967 5228.1 0.13296860 0.1088732
## 4091 -41.8 4.865 5228.1 0.06836679 0.1006557
## 4092 -41.8 4.967 5228.1 0.09484778 0.1006557
## 4093 -46.2 1.313 5099.1 0.10875332 0.1400736
## 4094 -41.8 4.959 5228.1 0.09310345 0.1400736
## 4095 -36.1 4.966 5228.1 0.09484778 0.1006557
## 4096 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4097 -42.0 4.021 5195.8 0.06836679 0.1006557
## 4098 -42.0 4.021 5195.8 0.10609689 0.1006557
## 4099 -41.8 4.959 5228.1 0.10875332 0.1006557
## 4100 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4101 -26.9 0.743 5017.5 0.11473272 0.1400736
## 4102 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4103 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4104 -36.1 4.963 5228.1 0.10875332 0.1006557
## 4105 -42.7 4.962 5228.1 0.06776441 0.1006557
## 4106 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4107 -41.8 4.959 5228.1 0.27285817 0.1088732
## 4108 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4109 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4110 -42.0 4.021 5195.8 0.13296860 0.1400736
## 4111 -41.8 4.947 5228.1 0.06776441 0.1006557
## 4112 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4113 -42.0 4.021 5195.8 0.06776441 0.1400736
## 4114 -36.4 4.855 5191.0 0.11473272 0.1400736
## 4115 -50.0 1.531 5099.1 0.27285817 0.1006557
## 4116 -36.4 4.858 5191.0 0.13510101 0.1006557
## 4117 -42.7 4.963 5228.1 0.13510101 0.1006557
## 4118 -42.7 4.962 5228.1 0.27285817 0.1088732
## 4119 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4120 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4121 -47.1 1.405 5099.1 0.13296860 0.1088732
## 4122 -42.7 4.963 5228.1 0.11473272 0.1006557
## 4123 -42.7 4.963 5228.1 0.27285817 0.1400736
## 4124 -36.4 4.859 5191.0 0.06776441 0.1006557
## 4125 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4126 -47.1 1.405 5099.1 0.11473272 0.1400736
## 4127 -36.1 4.964 5228.1 0.10609689 0.1088732
## 4128 -41.8 4.967 5228.1 0.10609689 0.1006557
## 4129 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4130 -36.1 4.964 5228.1 0.06776441 0.1006557
## 4131 -41.8 4.967 5228.1 0.09310345 0.1006557
## 4132 -46.2 1.259 5099.1 0.06776441 0.1400736
## 4133 -41.8 4.967 5228.1 0.06776441 0.1400736
## 4134 -50.0 1.687 5099.1 0.13296860 0.1006557
## 4135 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4136 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4137 -40.3 0.790 4991.6 0.13296860 0.1006557
## 4138 -40.8 1.266 5076.2 0.27285817 0.1006557
## 4139 -36.4 4.859 5191.0 0.10609689 0.1006557
## 4140 -36.4 4.864 5191.0 0.09484778 0.1088732
## 4141 -42.7 4.960 5228.1 0.06836679 0.1400736
## 4142 -42.0 4.021 5195.8 0.10609689 0.1088732
## 4143 -46.2 1.250 5099.1 0.06836679 0.1400736
## 4144 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4145 -36.4 4.857 5191.0 0.11473272 0.1006557
## 4146 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4147 -46.2 1.313 5099.1 0.06776441 0.1400736
## 4148 -42.0 4.223 5195.8 0.11473272 0.1006557
## 4149 -42.7 4.962 5228.1 0.06836679 0.1400736
## 4150 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4151 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4152 -33.6 0.996 5076.2 0.10609689 0.1400736
## 4153 -42.7 4.963 5228.1 0.09310345 0.1006557
## 4154 -42.7 4.957 5228.1 0.13296860 0.1400736
## 4155 -36.1 4.963 5228.1 0.10609689 0.1088732
## 4156 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4157 -42.7 4.959 5228.1 0.06836679 0.1088732
## 4158 -47.1 1.405 5099.1 0.31059507 0.1400736
## 4159 -36.1 4.966 5228.1 0.10609689 0.1088732
## 4160 -36.4 4.857 5191.0 0.13296860 0.1400736
## 4161 -36.1 4.963 5228.1 0.10609689 0.1400736
## 4162 -42.0 4.021 5195.8 0.06836679 0.1006557
## 4163 -31.4 0.881 5076.2 0.13296860 0.1400736
## 4164 -41.8 4.961 5228.1 0.13296860 0.1088732
## 4165 -42.7 4.959 5228.1 0.13296860 0.1006557
## 4166 -36.1 4.963 5228.1 0.10609689 0.1400736
## 4167 -36.1 4.963 5228.1 0.13296860 0.1088732
## 4168 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4169 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4170 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4171 -42.7 4.957 5228.1 0.06776441 0.1088732
## 4172 -41.8 4.959 5228.1 0.10875332 0.1400736
## 4173 -36.4 4.859 5191.0 0.06836679 0.1006557
## 4174 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4175 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4176 -42.7 4.963 5228.1 0.13296860 0.1400736
## 4177 -36.1 4.966 5228.1 0.06836679 0.1006557
## 4178 -42.7 4.959 5228.1 0.06836679 0.1006557
## 4179 -41.8 4.865 5228.1 0.10609689 0.1088732
## 4180 -36.4 4.859 5191.0 0.09310345 0.1006557
## 4181 -36.4 4.857 5191.0 0.09484778 0.1088732
## 4182 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4183 -42.0 4.191 5195.8 0.10609689 0.1088732
## 4184 -36.4 4.855 5191.0 0.06836679 0.1400736
## 4185 -42.7 4.963 5228.1 0.06776441 0.1006557
## 4186 -42.7 4.957 5228.1 0.13296860 0.1006557
## 4187 -36.1 4.964 5228.1 0.06776441 0.1006557
## 4188 -42.0 4.021 5195.8 0.06836679 0.1400736
## 4189 -34.8 0.639 5008.7 0.31059507 0.1400736
## 4190 -46.2 1.291 5099.1 0.06836679 0.1006557
## 4191 -34.6 0.643 5008.7 0.27285817 0.1088732
## 4192 -36.1 4.966 5228.1 0.10609689 0.1400736
## 4193 -41.8 4.961 5228.1 0.06836679 0.1006557
## 4194 -41.8 4.959 5228.1 0.13510101 0.1006557
## 4195 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4196 -34.6 0.644 5008.7 0.10609689 0.1400736
## 4197 -29.8 0.803 5017.5 0.13296860 0.1400736
## 4198 -42.7 4.960 5228.1 0.27285817 0.1006557
## 4199 -42.0 4.021 5195.8 0.11473272 0.1400736
## 4200 -42.0 4.021 5195.8 0.13296860 0.1400736
## 4201 -42.0 4.021 5195.8 0.13296860 0.1400736
## 4202 -47.1 1.479 5099.1 0.06776441 0.1006557
## 4203 -42.7 4.959 5228.1 0.10875332 0.1006557
## 4204 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4205 -42.0 4.191 5195.8 0.06836679 0.1006557
## 4206 -42.0 4.021 5195.8 0.06776441 0.1400736
## 4207 -46.2 1.313 5099.1 0.06776441 0.1400736
## 4208 -36.4 4.857 5191.0 0.09310345 0.1006557
## 4209 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4210 -36.4 4.857 5191.0 0.10609689 0.1400736
## 4211 -42.7 4.962 5228.1 0.06776441 0.1006557
## 4212 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4213 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4214 -34.8 0.653 5008.7 0.10609689 0.1400736
## 4215 -31.4 0.869 5076.2 0.09310345 0.1006557
## 4216 -42.7 4.963 5228.1 0.31059507 0.1400736
## 4217 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4218 -36.1 4.964 5228.1 0.06836679 0.1006557
## 4219 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4220 -41.8 4.959 5228.1 0.09310345 0.1006557
## 4221 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4222 -33.6 1.059 5076.2 0.10609689 0.1006557
## 4223 -36.4 4.864 5191.0 0.13296860 0.1400736
## 4224 -41.8 4.959 5228.1 0.09484778 0.1006557
## 4225 -42.7 4.963 5228.1 0.10875332 0.1006557
## 4226 -26.9 0.720 5017.5 0.06836679 0.1006557
## 4227 -36.4 4.859 5191.0 0.10609689 0.1006557
## 4228 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4229 -42.7 4.957 5228.1 0.06836679 0.1088732
## 4230 -37.5 0.879 4963.6 0.13296860 0.1088732
## 4231 -42.0 4.021 5195.8 0.10875332 0.1400736
## 4232 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4233 -36.4 4.858 5191.0 0.06776441 0.1088732
## 4234 -46.2 1.250 5099.1 0.10609689 0.1006557
## 4235 -42.7 4.962 5228.1 0.13296860 0.1006557
## 4236 -46.2 1.250 5099.1 0.06776441 0.1006557
## 4237 -36.1 4.963 5228.1 0.06776441 0.1006557
## 4238 -42.7 4.962 5228.1 0.27285817 0.1006557
## 4239 -42.7 4.957 5228.1 0.13296860 0.1400736
## 4240 -50.8 1.040 4963.6 0.13296860 0.1006557
## 4241 -40.8 1.266 5076.2 0.13296860 0.1006557
## 4242 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4243 -36.1 4.964 5228.1 0.10609689 0.1088732
## 4244 -31.4 0.849 5076.2 0.13296860 0.1006557
## 4245 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4246 -36.1 4.964 5228.1 0.11473272 0.1006557
## 4247 -41.8 4.959 5228.1 0.06776441 0.1006557
## 4248 -50.0 1.726 5099.1 0.10609689 0.1006557
## 4249 -50.0 1.726 5099.1 0.10609689 0.1400736
## 4250 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4251 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4252 -42.7 4.962 5228.1 0.11473272 0.1006557
## 4253 -50.0 1.531 5099.1 0.13296860 0.1400736
## 4254 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4255 -36.1 4.964 5228.1 0.10609689 0.1088732
## 4256 -42.0 4.021 5195.8 0.06776441 0.1400736
## 4257 -46.2 1.244 5099.1 0.06836679 0.1088732
## 4258 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4259 -42.7 4.960 5228.1 0.10609689 0.1006557
## 4260 -42.7 4.957 5228.1 0.13296860 0.1006557
## 4261 -40.8 1.268 5076.2 0.31059507 0.1400736
## 4262 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4263 -46.2 1.250 5099.1 0.13296860 0.1006557
## 4264 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4265 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4266 -36.4 4.864 5191.0 0.06776441 0.1006557
## 4267 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4268 -42.7 4.962 5228.1 0.10609689 0.1400736
## 4269 -47.1 1.405 5099.1 0.10875332 0.1006557
## 4270 -41.8 4.967 5228.1 0.09310345 0.1006557
## 4271 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4272 -36.4 4.859 5191.0 0.06836679 0.1006557
## 4273 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4274 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4275 -36.1 4.964 5228.1 0.27285817 0.1006557
## 4276 -36.4 4.864 5191.0 0.10609689 0.1006557
## 4277 -36.1 4.964 5228.1 0.06776441 0.1006557
## 4278 -42.0 4.021 5195.8 0.10609689 0.1006557
## 4279 -36.1 4.966 5228.1 0.27285817 0.1006557
## 4280 -46.2 1.299 5099.1 0.06836679 0.1088732
## 4281 -40.3 0.896 4991.6 0.06776441 0.1088732
## 4282 -36.4 4.859 5191.0 0.06836679 0.1006557
## 4283 -36.4 4.855 5191.0 0.06836679 0.1400736
## 4284 -42.0 4.223 5195.8 0.13296860 0.1088732
## 4285 -47.1 1.405 5099.1 0.27285817 0.1006557
## 4286 -41.8 4.959 5228.1 0.06836679 0.1400736
## 4287 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4288 -41.8 4.967 5228.1 0.06776441 0.1006557
## 4289 -36.4 4.857 5191.0 0.06836679 0.1400736
## 4290 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4291 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4292 -36.4 4.857 5191.0 0.13296860 0.1400736
## 4293 -36.4 4.855 5191.0 0.06776441 0.1088732
## 4294 -47.1 1.405 5099.1 0.06776441 0.1400736
## 4295 -34.8 0.636 5008.7 0.10875332 0.1400736
## 4296 -42.0 4.153 5195.8 0.13296860 0.1006557
## 4297 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4298 -50.0 1.811 5099.1 0.31059507 0.1400736
## 4299 -41.8 4.959 5228.1 0.06776441 0.1006557
## 4300 -42.7 4.957 5228.1 0.10609689 0.1006557
## 4301 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4302 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4303 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4304 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4305 -36.1 4.966 5228.1 0.11473272 0.1006557
## 4306 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4307 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4308 -41.8 4.959 5228.1 0.06776441 0.1088732
## 4309 -36.4 4.855 5191.0 0.27285817 0.1006557
## 4310 -36.1 4.964 5228.1 0.13296860 0.1006557
## 4311 -40.8 1.268 5076.2 0.06836679 0.1400736
## 4312 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4313 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4314 -36.4 4.857 5191.0 0.09310345 0.1006557
## 4315 -41.8 4.959 5228.1 0.09310345 0.1006557
## 4316 -41.8 4.959 5228.1 0.09310345 0.1006557
## 4317 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4318 -34.6 0.663 5008.7 0.06836679 0.1006557
## 4319 -46.2 1.244 5099.1 0.06836679 0.1006557
## 4320 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4321 -42.7 4.963 5228.1 0.06836679 0.1400736
## 4322 -42.7 4.963 5228.1 0.13296860 0.1006557
## 4323 -36.1 4.966 5228.1 0.09310345 0.1006557
## 4324 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4325 -42.7 4.962 5228.1 0.13296860 0.1400736
## 4326 -36.1 4.964 5228.1 0.10875332 0.1006557
## 4327 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4328 -40.8 1.268 5076.2 0.13296860 0.1400736
## 4329 -40.8 1.268 5076.2 0.06776441 0.1006557
## 4330 -41.8 4.959 5228.1 0.09310345 0.1006557
## 4331 -47.1 1.479 5099.1 0.06836679 0.1006557
## 4332 -36.4 4.855 5191.0 0.10609689 0.1400736
## 4333 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4334 -36.1 4.966 5228.1 0.10875332 0.1006557
## 4335 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4336 -47.1 1.405 5099.1 0.10609689 0.1088732
## 4337 -42.0 4.021 5195.8 0.09310345 0.1088732
## 4338 -36.1 4.963 5228.1 0.13296860 0.1088732
## 4339 -42.0 4.021 5195.8 0.06776441 0.1400736
## 4340 -42.7 4.960 5228.1 0.27285817 0.1006557
## 4341 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4342 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4343 -36.4 4.864 5191.0 0.10609689 0.1006557
## 4344 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4345 -42.0 4.021 5195.8 0.06836679 0.1006557
## 4346 -41.8 4.959 5228.1 0.09310345 0.1006557
## 4347 -36.1 4.964 5228.1 0.13296860 0.1006557
## 4348 -42.7 4.963 5228.1 0.13296860 0.1006557
## 4349 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4350 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4351 -36.1 4.964 5228.1 0.13296860 0.1006557
## 4352 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4353 -36.4 4.864 5191.0 0.10609689 0.1400736
## 4354 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4355 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4356 -36.4 4.855 5191.0 0.11473272 0.1400736
## 4357 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4358 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4359 -31.4 0.869 5076.2 0.06836679 0.1006557
## 4360 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4361 -42.7 4.963 5228.1 0.06776441 0.1006557
## 4362 -41.8 4.959 5228.1 0.13296860 0.1088732
## 4363 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4364 -41.8 4.959 5228.1 0.31059507 0.1400736
## 4365 -36.4 4.859 5191.0 0.11473272 0.1006557
## 4366 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4367 -42.7 4.963 5228.1 0.10609689 0.1088732
## 4368 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4369 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4370 -47.1 1.479 5099.1 0.13296860 0.1006557
## 4371 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4372 -50.0 1.726 5099.1 0.10609689 0.1006557
## 4373 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4374 -42.7 4.963 5228.1 0.13296860 0.1006557
## 4375 -42.0 4.021 5195.8 0.31059507 0.1400736
## 4376 -33.6 1.059 5076.2 0.10609689 0.1006557
## 4377 -42.7 4.959 5228.1 0.11473272 0.1006557
## 4378 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4379 -50.0 1.640 5099.1 0.13510101 0.1400736
## 4380 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4381 -50.0 1.726 5099.1 0.10609689 0.1400736
## 4382 -46.2 1.250 5099.1 0.10609689 0.1400736
## 4383 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4384 -47.1 1.479 5099.1 0.10609689 0.1006557
## 4385 -36.1 4.964 5228.1 0.06776441 0.1006557
## 4386 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4387 -41.8 4.865 5228.1 0.06776441 0.1006557
## 4388 -36.4 4.864 5191.0 0.06836679 0.1006557
## 4389 -33.6 1.059 5076.2 0.13296860 0.1400736
## 4390 -41.8 4.959 5228.1 0.09310345 0.1088732
## 4391 -36.1 4.964 5228.1 0.11473272 0.1006557
## 4392 -36.1 4.964 5228.1 0.06836679 0.1006557
## 4393 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4394 -40.8 1.268 5076.2 0.31059507 0.1400736
## 4395 -42.7 4.959 5228.1 0.09484778 0.1006557
## 4396 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4397 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4398 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4399 -42.0 4.021 5195.8 0.11473272 0.1006557
## 4400 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4401 -42.0 4.021 5195.8 0.10609689 0.1006557
## 4402 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4403 -41.8 4.967 5228.1 0.13296860 0.1006557
## 4404 -47.1 1.405 5099.1 0.31059507 0.1006557
## 4405 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4406 -42.7 4.960 5228.1 0.11473272 0.1006557
## 4407 -31.4 0.881 5076.2 0.13296860 0.1006557
## 4408 -41.8 4.947 5228.1 0.06836679 0.1006557
## 4409 -46.2 1.244 5099.1 0.06836679 0.1006557
## 4410 -41.8 4.959 5228.1 0.08955224 0.1006557
## 4411 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4412 -47.1 1.479 5099.1 0.10609689 0.1400736
## 4413 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4414 -42.7 4.962 5228.1 0.31059507 0.1400736
## 4415 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4416 -46.2 1.244 5099.1 0.13296860 0.1400736
## 4417 -36.4 4.858 5191.0 0.06836679 0.1400736
## 4418 -42.7 4.962 5228.1 0.13296860 0.1400736
## 4419 -46.2 1.250 5099.1 0.13296860 0.1400736
## 4420 -36.4 4.857 5191.0 0.06776441 0.1006557
## 4421 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4422 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4423 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4424 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4425 -41.8 4.959 5228.1 0.13510101 0.1088732
## 4426 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4427 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4428 -36.1 4.966 5228.1 0.10875332 0.1006557
## 4429 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4430 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4431 -47.1 1.405 5099.1 0.27285817 0.1006557
## 4432 -41.8 4.959 5228.1 0.06776441 0.1006557
## 4433 -36.4 4.859 5191.0 0.10875332 0.1006557
## 4434 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4435 -36.4 4.864 5191.0 0.10875332 0.1006557
## 4436 -36.4 4.859 5191.0 0.06836679 0.1088732
## 4437 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4438 -47.1 1.479 5099.1 0.06776441 0.1088732
## 4439 -46.2 1.313 5099.1 0.13296860 0.1006557
## 4440 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4441 -36.4 4.864 5191.0 0.10875332 0.1088732
## 4442 -46.2 1.250 5099.1 0.13296860 0.1400736
## 4443 -33.0 0.714 5023.5 0.27285817 0.1088732
## 4444 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4445 -36.1 4.964 5228.1 0.06836679 0.1006557
## 4446 -36.1 4.966 5228.1 0.10609689 0.1088732
## 4447 -34.6 0.663 5008.7 0.31059507 0.1400736
## 4448 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4449 -33.6 0.944 5076.2 0.10609689 0.1400736
## 4450 -36.1 4.966 5228.1 0.10609689 0.1400736
## 4451 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4452 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4453 -46.2 1.250 5099.1 0.10609689 0.1088732
## 4454 -42.7 4.960 5228.1 0.13510101 0.1088732
## 4455 -47.1 1.405 5099.1 0.06776441 0.1006557
## 4456 -41.8 4.967 5228.1 0.09310345 0.1400736
## 4457 -42.7 4.962 5228.1 0.13296860 0.1006557
## 4458 -42.7 4.962 5228.1 0.10609689 0.1088732
## 4459 -36.1 4.963 5228.1 0.11473272 0.1006557
## 4460 -36.1 4.966 5228.1 0.06776441 0.1006557
## 4461 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4462 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4463 -42.0 4.021 5195.8 0.31059507 0.1400736
## 4464 -42.0 4.191 5195.8 0.27285817 0.1006557
## 4465 -41.8 4.967 5228.1 0.11473272 0.1006557
## 4466 -42.7 4.963 5228.1 0.10609689 0.1006557
## 4467 -36.4 4.855 5191.0 0.06836679 0.1400736
## 4468 -42.7 4.963 5228.1 0.10609689 0.1400736
## 4469 -36.4 4.864 5191.0 0.10609689 0.1006557
## 4470 -41.8 4.947 5228.1 0.06836679 0.1006557
## 4471 -41.8 4.959 5228.1 0.06776441 0.1400736
## 4472 -36.4 4.857 5191.0 0.06836679 0.1400736
## 4473 -50.8 1.028 4963.6 0.10609689 0.1006557
## 4474 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4475 -46.2 1.259 5099.1 0.27285817 0.1006557
## 4476 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4477 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4478 -36.4 4.859 5191.0 0.06776441 0.1006557
## 4479 -36.4 4.859 5191.0 0.06836679 0.1400736
## 4480 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4481 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4482 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4483 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4484 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4485 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4486 -36.1 4.964 5228.1 0.09484778 0.1006557
## 4487 -50.0 1.726 5099.1 0.10609689 0.1400736
## 4488 -36.1 4.964 5228.1 0.11473272 0.1006557
## 4489 -42.7 4.957 5228.1 0.13296860 0.1006557
## 4490 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4491 -47.1 1.405 5099.1 0.06776441 0.1088732
## 4492 -36.4 4.864 5191.0 0.11473272 0.1088732
## 4493 -46.2 1.313 5099.1 0.06776441 0.1006557
## 4494 -36.4 4.857 5191.0 0.06776441 0.1400736
## 4495 -36.1 4.966 5228.1 0.13296860 0.1088732
## 4496 -36.1 4.966 5228.1 0.06836679 0.1006557
## 4497 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4498 -36.1 4.966 5228.1 0.09310345 0.1006557
## 4499 -47.1 1.405 5099.1 0.09310345 0.1006557
## 4500 -41.8 4.967 5228.1 0.09310345 0.1400736
## 4501 -42.0 4.021 5195.8 0.11473272 0.1006557
## 4502 -42.7 4.962 5228.1 0.10609689 0.1006557
## 4503 -36.4 4.864 5191.0 0.11473272 0.1006557
## 4504 -36.1 4.966 5228.1 0.06776441 0.1006557
## 4505 -31.4 0.849 5076.2 0.11473272 0.1006557
## 4506 -36.1 4.970 5228.1 0.09310345 0.1006557
## 4507 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4508 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4509 -46.2 1.250 5099.1 0.06776441 0.1006557
## 4510 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4511 -42.0 4.021 5195.8 0.10609689 0.1006557
## 4512 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4513 -36.1 4.966 5228.1 0.11473272 0.1006557
## 4514 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4515 -46.2 1.250 5099.1 0.06836679 0.1400736
## 4516 -36.4 4.864 5191.0 0.10609689 0.1400736
## 4517 -42.7 4.963 5228.1 0.10609689 0.1006557
## 4518 -46.2 1.313 5099.1 0.10609689 0.1006557
## 4519 -46.2 1.299 5099.1 0.13296860 0.1006557
## 4520 -40.8 1.268 5076.2 0.10609689 0.1006557
## 4521 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4522 -36.1 4.966 5228.1 0.11473272 0.1006557
## 4523 -47.1 1.479 5099.1 0.06836679 0.1006557
## 4524 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4525 -41.8 4.959 5228.1 0.10609689 0.1088732
## 4526 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4527 -42.7 4.960 5228.1 0.06836679 0.1400736
## 4528 -36.4 4.864 5191.0 0.06836679 0.1006557
## 4529 -46.2 1.313 5099.1 0.10609689 0.1006557
## 4530 -46.2 1.250 5099.1 0.06836679 0.1400736
## 4531 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4532 -42.7 4.963 5228.1 0.13510101 0.1006557
## 4533 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4534 -36.1 4.964 5228.1 0.13510101 0.1006557
## 4535 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4536 -41.8 4.959 5228.1 0.06776441 0.1006557
## 4537 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4538 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4539 -33.0 0.718 5023.5 0.13296860 0.1400736
## 4540 -36.1 4.963 5228.1 0.06836679 0.1006557
## 4541 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4542 -36.4 4.855 5191.0 0.13296860 0.1400736
## 4543 -42.7 4.963 5228.1 0.06776441 0.1006557
## 4544 -41.8 4.961 5228.1 0.09484778 0.1006557
## 4545 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4546 -41.8 4.967 5228.1 0.13296860 0.1006557
## 4547 -42.7 4.963 5228.1 0.10609689 0.1006557
## 4548 -42.7 4.962 5228.1 0.10609689 0.1006557
## 4549 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4550 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4551 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4552 -41.8 4.959 5228.1 0.13510101 0.1006557
## 4553 -36.1 4.964 5228.1 0.27285817 0.1006557
## 4554 -41.8 4.961 5228.1 0.11473272 0.1006557
## 4555 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4556 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4557 -46.2 1.291 5099.1 0.13296860 0.1400736
## 4558 -42.7 4.962 5228.1 0.13296860 0.1006557
## 4559 -31.4 0.881 5076.2 0.10875332 0.1006557
## 4560 -42.7 4.962 5228.1 0.06776441 0.1006557
## 4561 -42.7 4.960 5228.1 0.06836679 0.1006557
## 4562 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4563 -42.0 4.021 5195.8 0.06836679 0.1400736
## 4564 -41.8 4.947 5228.1 0.10609689 0.1006557
## 4565 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4566 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4567 -42.7 4.957 5228.1 0.09310345 0.1006557
## 4568 -46.2 1.313 5099.1 0.06776441 0.1400736
## 4569 -36.4 4.859 5191.0 0.10609689 0.1400736
## 4570 -36.1 4.966 5228.1 0.09484778 0.1006557
## 4571 -40.8 1.266 5076.2 0.13296860 0.1400736
## 4572 -42.0 4.021 5195.8 0.10609689 0.1006557
## 4573 -29.8 0.773 5017.5 0.27285817 0.1006557
## 4574 -41.8 4.959 5228.1 0.08955224 0.1006557
## 4575 -42.7 4.962 5228.1 0.06776441 0.1006557
## 4576 -42.7 4.963 5228.1 0.06776441 0.1400736
## 4577 -42.7 4.957 5228.1 0.09310345 0.1006557
## 4578 -36.4 4.864 5191.0 0.06836679 0.1006557
## 4579 -47.1 1.479 5099.1 0.06836679 0.1006557
## 4580 -42.7 4.959 5228.1 0.06836679 0.1006557
## 4581 -46.2 1.250 5099.1 0.13296860 0.1400736
## 4582 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4583 -42.7 4.962 5228.1 0.09310345 0.1006557
## 4584 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4585 -41.8 4.959 5228.1 0.10875332 0.1400736
## 4586 -41.8 4.967 5228.1 0.13296860 0.1006557
## 4587 -36.1 4.966 5228.1 0.11473272 0.1006557
## 4588 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4589 -41.8 4.967 5228.1 0.10609689 0.1006557
## 4590 -42.7 4.963 5228.1 0.13296860 0.1400736
## 4591 -36.1 4.964 5228.1 0.10609689 0.1088732
## 4592 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4593 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4594 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4595 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4596 -36.4 4.859 5191.0 0.06836679 0.1006557
## 4597 -42.7 4.962 5228.1 0.08955224 0.1166667
## 4598 -41.8 4.967 5228.1 0.13296860 0.1400736
## 4599 -42.7 4.957 5228.1 0.13296860 0.1088732
## 4600 -41.8 4.959 5228.1 0.10609689 0.1088732
## 4601 -41.8 4.865 5228.1 0.09310345 0.1006557
## 4602 -41.8 4.960 5228.1 0.10609689 0.1006557
## 4603 -47.1 1.405 5099.1 0.31059507 0.1400736
## 4604 -31.4 0.881 5076.2 0.09484778 0.1006557
## 4605 -36.4 4.859 5191.0 0.06836679 0.1006557
## 4606 -46.2 1.313 5099.1 0.06776441 0.1400736
## 4607 -36.4 4.855 5191.0 0.06776441 0.1006557
## 4608 -41.8 4.961 5228.1 0.10875332 0.1006557
## 4609 -42.0 4.021 5195.8 0.13296860 0.1400736
## 4610 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4611 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4612 -41.8 4.960 5228.1 0.10875332 0.1400736
## 4613 -36.4 4.855 5191.0 0.09310345 0.1006557
## 4614 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4615 -42.0 4.021 5195.8 0.09310345 0.1088732
## 4616 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4617 -47.1 1.405 5099.1 0.09310345 0.1006557
## 4618 -47.1 1.479 5099.1 0.11473272 0.1088732
## 4619 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4620 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4621 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4622 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4623 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4624 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4625 -41.8 4.864 5228.1 0.13296860 0.1400736
## 4626 -36.1 4.963 5228.1 0.06776441 0.1006557
## 4627 -36.4 4.857 5191.0 0.06836679 0.1088732
## 4628 -42.7 4.957 5228.1 0.13296860 0.1006557
## 4629 -42.0 4.021 5195.8 0.11473272 0.1006557
## 4630 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4631 -36.1 4.964 5228.1 0.09484778 0.1006557
## 4632 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4633 -42.0 4.191 5195.8 0.11473272 0.1006557
## 4634 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4635 -41.8 4.967 5228.1 0.10609689 0.1400736
## 4636 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4637 -46.2 1.250 5099.1 0.06836679 0.1006557
## 4638 -41.8 4.967 5228.1 0.10609689 0.1400736
## 4639 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4640 -36.4 4.857 5191.0 0.11473272 0.1006557
## 4641 -36.1 4.970 5228.1 0.10609689 0.1006557
## 4642 -42.0 4.021 5195.8 0.13296860 0.1400736
## 4643 -46.2 1.250 5099.1 0.06776441 0.1006557
## 4644 -36.4 4.857 5191.0 0.13296860 0.1006557
## 4645 -42.7 4.963 5228.1 0.06776441 0.1400736
## 4646 -36.4 4.859 5191.0 0.10609689 0.1006557
## 4647 -36.1 4.966 5228.1 0.06776441 0.1006557
## 4648 -46.2 1.354 5099.1 0.13296860 0.1088732
## 4649 -47.1 1.405 5099.1 0.13296860 0.1088732
## 4650 -36.4 4.857 5191.0 0.27285817 0.1006557
## 4651 -46.2 1.313 5099.1 0.13296860 0.1006557
## 4652 -36.4 4.857 5191.0 0.11473272 0.1006557
## 4653 -36.4 4.864 5191.0 0.13296860 0.1400736
## 4654 -46.2 1.250 5099.1 0.10609689 0.1006557
## 4655 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4656 -46.2 1.250 5099.1 0.06836679 0.1400736
## 4657 -31.4 0.825 5076.2 0.31059507 0.1400736
## 4658 -42.7 4.960 5228.1 0.13296860 0.1006557
## 4659 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4660 -46.2 1.250 5099.1 0.10875332 0.1400736
## 4661 -42.0 4.021 5195.8 0.06836679 0.1088732
## 4662 -46.2 1.313 5099.1 0.13296860 0.1400736
## 4663 -47.1 1.405 5099.1 0.06776441 0.1006557
## 4664 -42.7 4.957 5228.1 0.10609689 0.1006557
## 4665 -42.0 4.191 5195.8 0.13296860 0.1088732
## 4666 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4667 -36.4 4.857 5191.0 0.13296860 0.1006557
## 4668 -46.2 1.264 5099.1 0.10609689 0.1006557
## 4669 -26.9 0.720 5017.5 0.13296860 0.1400736
## 4670 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4671 -36.4 4.857 5191.0 0.06776441 0.1400736
## 4672 -36.1 4.966 5228.1 0.13510101 0.1006557
## 4673 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4674 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4675 -36.4 4.864 5191.0 0.06836679 0.1400736
## 4676 -36.1 4.966 5228.1 0.13296860 0.1088732
## 4677 -46.2 1.344 5099.1 0.10609689 0.1006557
## 4678 -36.4 4.864 5191.0 0.10875332 0.1006557
## 4679 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4680 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4681 -42.7 4.957 5228.1 0.11473272 0.1400736
## 4682 -42.7 4.957 5228.1 0.13296860 0.1006557
## 4683 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4684 -46.2 1.250 5099.1 0.09310345 0.1088732
## 4685 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4686 -26.9 0.720 5017.5 0.31059507 0.1400736
## 4687 -41.8 4.947 5228.1 0.13296860 0.1006557
## 4688 -41.8 4.967 5228.1 0.10875332 0.1088732
## 4689 -50.0 1.531 5099.1 0.13296860 0.1400736
## 4690 -36.4 4.855 5191.0 0.10875332 0.1400736
## 4691 -31.4 0.881 5076.2 0.13296860 0.1400736
## 4692 -41.8 4.967 5228.1 0.11473272 0.1006557
## 4693 -36.1 4.964 5228.1 0.27285817 0.1006557
## 4694 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4695 -42.7 4.959 5228.1 0.09310345 0.1006557
## 4696 -36.4 4.859 5191.0 0.06776441 0.1088732
## 4697 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4698 -36.1 4.963 5228.1 0.06836679 0.1006557
## 4699 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4700 -42.0 4.191 5195.8 0.09310345 0.1006557
## 4701 -42.0 4.191 5195.8 0.06776441 0.1006557
## 4702 -46.2 1.250 5099.1 0.09310345 0.1088732
## 4703 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4704 -34.8 0.646 5008.7 0.27285817 0.1006557
## 4705 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4706 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4707 -42.7 4.962 5228.1 0.10609689 0.1006557
## 4708 -42.7 4.957 5228.1 0.11473272 0.1400736
## 4709 -34.8 0.636 5008.7 0.06836679 0.1006557
## 4710 -41.8 4.967 5228.1 0.09484778 0.1400736
## 4711 -40.8 1.268 5076.2 0.13296860 0.1400736
## 4712 -36.4 4.859 5191.0 0.13296860 0.1006557
## 4713 -41.8 4.959 5228.1 0.10875332 0.1006557
## 4714 -42.7 4.959 5228.1 0.06836679 0.1400736
## 4715 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4716 -47.1 1.405 5099.1 0.06776441 0.1088732
## 4717 -36.4 4.859 5191.0 0.06776441 0.1400736
## 4718 -36.1 4.963 5228.1 0.13510101 0.1006557
## 4719 -41.8 4.967 5228.1 0.06776441 0.1006557
## 4720 -29.8 0.773 5017.5 0.27285817 0.1006557
## 4721 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4722 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4723 -41.8 4.959 5228.1 0.06836679 0.1088732
## 4724 -47.1 1.405 5099.1 0.06776441 0.1400736
## 4725 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4726 -36.4 4.855 5191.0 0.09484778 0.1088732
## 4727 -36.1 4.965 5228.1 0.13296860 0.1006557
## 4728 -47.1 1.479 5099.1 0.06836679 0.1006557
## 4729 -47.1 1.479 5099.1 0.13296860 0.1006557
## 4730 -40.8 1.268 5076.2 0.10875332 0.1006557
## 4731 -36.4 4.859 5191.0 0.06836679 0.1006557
## 4732 -47.1 1.479 5099.1 0.11473272 0.1006557
## 4733 -40.8 1.268 5076.2 0.31059507 0.1400736
## 4734 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4735 -36.4 4.858 5191.0 0.06776441 0.1006557
## 4736 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4737 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4738 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4739 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4740 -46.2 1.313 5099.1 0.06776441 0.1006557
## 4741 -46.2 1.313 5099.1 0.11473272 0.1006557
## 4742 -40.8 1.268 5076.2 0.13296860 0.1400736
## 4743 -42.7 4.959 5228.1 0.06836679 0.1006557
## 4744 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4745 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4746 -36.4 4.858 5191.0 0.09310345 0.1006557
## 4747 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4748 -46.2 1.313 5099.1 0.13296860 0.1006557
## 4749 -46.2 1.250 5099.1 0.13296860 0.1400736
## 4750 -36.4 4.859 5191.0 0.09484778 0.1006557
## 4751 -42.7 4.959 5228.1 0.06776441 0.1400736
## 4752 -42.0 4.153 5195.8 0.11473272 0.1006557
## 4753 -36.4 4.864 5191.0 0.10609689 0.1006557
## 4754 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4755 -41.8 4.865 5228.1 0.11473272 0.1400736
## 4756 -38.3 0.904 4991.6 0.27285817 0.1088732
## 4757 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4758 -41.8 4.865 5228.1 0.06836679 0.1088732
## 4759 -40.8 1.260 5076.2 0.10609689 0.1400736
## 4760 -42.7 4.957 5228.1 0.10609689 0.1006557
## 4761 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4762 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4763 -46.2 1.250 5099.1 0.06776441 0.1006557
## 4764 -41.8 4.959 5228.1 0.13510101 0.1088732
## 4765 -36.4 4.856 5191.0 0.06836679 0.1006557
## 4766 -42.7 4.962 5228.1 0.09310345 0.1088732
## 4767 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4768 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4769 -36.1 4.965 5228.1 0.13296860 0.1088732
## 4770 -41.8 4.959 5228.1 0.09310345 0.1006557
## 4771 -46.2 1.250 5099.1 0.06776441 0.1088732
## 4772 -33.0 0.714 5023.5 0.27285817 0.1088732
## 4773 -36.4 4.857 5191.0 0.09310345 0.1088732
## 4774 -42.7 4.957 5228.1 0.11473272 0.1006557
## 4775 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4776 -36.1 4.966 5228.1 0.10609689 0.1400736
## 4777 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4778 -41.8 4.961 5228.1 0.06776441 0.1400736
## 4779 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4780 -36.1 4.963 5228.1 0.27285817 0.1006557
## 4781 -41.8 4.967 5228.1 0.06836679 0.1400736
## 4782 -36.4 4.857 5191.0 0.06776441 0.1400736
## 4783 -41.8 4.959 5228.1 0.06776441 0.1006557
## 4784 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4785 -40.8 1.266 5076.2 0.27285817 0.1088732
## 4786 -36.1 4.966 5228.1 0.10609689 0.1088732
## 4787 -46.2 1.313 5099.1 0.27285817 0.1400736
## 4788 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4789 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4790 -41.8 4.967 5228.1 0.13296860 0.1400736
## 4791 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4792 -41.8 4.961 5228.1 0.13296860 0.1400736
## 4793 -46.2 1.250 5099.1 0.10609689 0.1400736
## 4794 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4795 -36.4 4.859 5191.0 0.13296860 0.1400736
## 4796 -40.3 0.896 4991.6 0.27285817 0.1006557
## 4797 -41.8 4.959 5228.1 0.13296860 0.1088732
## 4798 -36.1 4.966 5228.1 0.06836679 0.1006557
## 4799 -36.1 4.966 5228.1 0.06776441 0.1006557
## 4800 -41.8 4.967 5228.1 0.13510101 0.1006557
## 4801 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4802 -36.4 4.864 5191.0 0.06836679 0.1400736
## 4803 -46.2 1.313 5099.1 0.13296860 0.1088732
## 4804 -42.0 4.191 5195.8 0.13296860 0.1006557
## 4805 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4806 -42.7 4.957 5228.1 0.10609689 0.1400736
## 4807 -41.8 4.947 5228.1 0.06836679 0.1400736
## 4808 -36.1 4.964 5228.1 0.10875332 0.1006557
## 4809 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4810 -42.0 4.191 5195.8 0.09310345 0.1006557
## 4811 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4812 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4813 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4814 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4815 -36.4 4.855 5191.0 0.13296860 0.1088732
## 4816 -41.8 4.959 5228.1 0.09484778 0.1400736
## 4817 -46.2 1.313 5099.1 0.13296860 0.1006557
## 4818 -50.0 1.531 5099.1 0.10875332 0.1400736
## 4819 -36.4 4.857 5191.0 0.06836679 0.1400736
## 4820 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4821 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4822 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4823 -47.1 1.405 5099.1 0.06776441 0.1006557
## 4824 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4825 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4826 -46.2 1.250 5099.1 0.06836679 0.1006557
## 4827 -36.4 4.859 5191.0 0.11473272 0.1006557
## 4828 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4829 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4830 -36.4 4.859 5191.0 0.06776441 0.1006557
## 4831 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4832 -47.1 1.405 5099.1 0.06776441 0.1006557
## 4833 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4834 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4835 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4836 -41.8 4.960 5228.1 0.13296860 0.1006557
## 4837 -36.4 4.864 5191.0 0.13296860 0.1400736
## 4838 -38.3 0.905 4991.6 0.27285817 0.1006557
## 4839 -42.7 4.962 5228.1 0.11473272 0.1006557
## 4840 -36.4 4.855 5191.0 0.13296860 0.1400736
## 4841 -36.4 4.864 5191.0 0.10609689 0.1400736
## 4842 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4843 -46.2 1.250 5099.1 0.06836679 0.1006557
## 4844 -36.4 4.857 5191.0 0.11473272 0.1006557
## 4845 -42.7 4.961 5228.1 0.13510101 0.1006557
## 4846 -46.2 1.250 5099.1 0.06776441 0.1400736
## 4847 -46.2 1.313 5099.1 0.11473272 0.1006557
## 4848 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4849 -36.4 4.859 5191.0 0.13296860 0.1006557
## 4850 -36.1 4.966 5228.1 0.06776441 0.1006557
## 4851 -36.1 4.966 5228.1 0.10609689 0.1088732
## 4852 -41.8 4.961 5228.1 0.10609689 0.1006557
## 4853 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4854 -42.7 4.963 5228.1 0.06776441 0.1006557
## 4855 -46.2 1.313 5099.1 0.10609689 0.1088732
## 4856 -46.2 1.299 5099.1 0.06836679 0.1006557
## 4857 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4858 -41.8 4.967 5228.1 0.13296860 0.1006557
## 4859 -47.1 1.405 5099.1 0.06836679 0.1400736
## 4860 -40.8 1.268 5076.2 0.13296860 0.1400736
## 4861 -36.1 4.964 5228.1 0.10875332 0.1006557
## 4862 -46.2 1.250 5099.1 0.10609689 0.1400736
## 4863 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4864 -46.2 1.250 5099.1 0.06836679 0.1006557
## 4865 -41.8 4.961 5228.1 0.10609689 0.1400736
## 4866 -42.0 4.021 5195.8 0.13510101 0.1400736
## 4867 -42.7 4.957 5228.1 0.10609689 0.1006557
## 4868 -46.2 1.250 5099.1 0.06836679 0.1400736
## 4869 -42.0 4.191 5195.8 0.13296860 0.1006557
## 4870 -42.7 4.963 5228.1 0.06836679 0.1088732
## 4871 -36.4 4.859 5191.0 0.27285817 0.1006557
## 4872 -42.7 4.963 5228.1 0.10609689 0.1006557
## 4873 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4874 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4875 -42.7 4.962 5228.1 0.10609689 0.1400736
## 4876 -41.8 4.947 5228.1 0.10609689 0.1400736
## 4877 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4878 -46.2 1.313 5099.1 0.13296860 0.1006557
## 4879 -41.8 4.959 5228.1 0.10609689 0.1400736
## 4880 -36.1 4.963 5228.1 0.10875332 0.1006557
## 4881 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4882 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4883 -36.4 4.859 5191.0 0.10875332 0.1006557
## 4884 -38.3 0.898 4991.6 0.11473272 0.1088732
## 4885 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4886 -38.3 0.898 4991.6 0.06776441 0.1006557
## 4887 -45.9 3.563 5176.3 0.13296860 0.1006557
## 4888 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4889 -36.1 4.966 5228.1 0.09484778 0.1006557
## 4890 -40.3 0.861 4991.6 0.13296860 0.1006557
## 4891 -42.0 4.021 5195.8 0.10875332 0.1006557
## 4892 -42.0 4.191 5195.8 0.13296860 0.1006557
## 4893 -47.1 1.405 5099.1 0.13510101 0.1400736
## 4894 -42.7 4.963 5228.1 0.09310345 0.1088732
## 4895 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4896 -36.1 4.964 5228.1 0.09484778 0.1006557
## 4897 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4898 -36.4 4.857 5191.0 0.27285817 0.1088732
## 4899 -36.4 4.855 5191.0 0.10609689 0.1088732
## 4900 -36.1 4.963 5228.1 0.13296860 0.1088732
## 4901 -33.6 1.059 5076.2 0.13296860 0.1006557
## 4902 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4903 -40.8 1.268 5076.2 0.10609689 0.1006557
## 4904 -42.7 4.962 5228.1 0.13296860 0.1088732
## 4905 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4906 -36.1 4.966 5228.1 0.10875332 0.1006557
## 4907 -42.7 4.957 5228.1 0.06776441 0.1088732
## 4908 -46.2 1.259 5099.1 0.27285817 0.1088732
## 4909 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4910 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4911 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4912 -42.7 4.959 5228.1 0.06836679 0.1006557
## 4913 -36.4 4.855 5191.0 0.06776441 0.1006557
## 4914 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4915 -36.4 4.864 5191.0 0.10875332 0.1400736
## 4916 -46.2 1.313 5099.1 0.13296860 0.1006557
## 4917 -41.8 4.967 5228.1 0.13510101 0.1006557
## 4918 -30.1 0.714 5017.5 0.27285817 0.1006557
## 4919 -36.4 4.859 5191.0 0.10609689 0.1006557
## 4920 -41.8 4.967 5228.1 0.11473272 0.1400736
## 4921 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4922 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4923 -41.8 4.967 5228.1 0.10609689 0.1006557
## 4924 -36.1 4.966 5228.1 0.13296860 0.1088732
## 4925 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4926 -36.4 4.857 5191.0 0.06836679 0.1400736
## 4927 -46.2 1.250 5099.1 0.13296860 0.1088732
## 4928 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4929 -42.7 4.960 5228.1 0.06776441 0.1400736
## 4930 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4931 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4932 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4933 -36.1 4.966 5228.1 0.09484778 0.1006557
## 4934 -36.4 4.855 5191.0 0.09484778 0.1006557
## 4935 -36.1 4.963 5228.1 0.10609689 0.1088732
## 4936 -46.2 1.250 5099.1 0.06836679 0.1006557
## 4937 -36.1 4.970 5228.1 0.10609689 0.1400736
## 4938 -36.4 4.864 5191.0 0.06836679 0.1088732
## 4939 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4940 -36.4 4.857 5191.0 0.13296860 0.1006557
## 4941 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4942 -41.8 4.959 5228.1 0.10609689 0.1400736
## 4943 -36.1 4.965 5228.1 0.06836679 0.1006557
## 4944 -36.4 4.857 5191.0 0.06836679 0.1400736
## 4945 -46.2 1.250 5099.1 0.11473272 0.1006557
## 4946 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4947 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4948 -46.2 1.299 5099.1 0.11473272 0.1006557
## 4949 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4950 -36.4 4.859 5191.0 0.13296860 0.1006557
## 4951 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4952 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4953 -36.4 4.859 5191.0 0.10609689 0.1006557
## 4954 -36.1 4.963 5228.1 0.10875332 0.1006557
## 4955 -47.1 1.405 5099.1 0.06836679 0.1088732
## 4956 -42.7 4.959 5228.1 0.13296860 0.1006557
## 4957 -36.1 4.970 5228.1 0.06836679 0.1006557
## 4958 -42.7 4.959 5228.1 0.09310345 0.1006557
## 4959 -41.8 4.959 5228.1 0.06776441 0.1006557
## 4960 -46.2 1.259 5099.1 0.13296860 0.1006557
## 4961 -36.4 4.864 5191.0 0.13296860 0.1400736
## 4962 -36.4 4.864 5191.0 0.13296860 0.1088732
## 4963 -36.1 4.963 5228.1 0.06836679 0.1006557
## 4964 -36.1 4.970 5228.1 0.09484778 0.1006557
## 4965 -36.4 4.864 5191.0 0.10609689 0.1006557
## 4966 -46.2 1.250 5099.1 0.06776441 0.1088732
## 4967 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4968 -46.2 1.250 5099.1 0.06776441 0.1400736
## 4969 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4970 -41.8 4.947 5228.1 0.13296860 0.1006557
## 4971 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4972 -36.4 4.859 5191.0 0.10609689 0.1006557
## 4973 -42.7 4.961 5228.1 0.13296860 0.1400736
## 4974 -41.8 4.947 5228.1 0.10609689 0.1006557
## 4975 -36.4 4.857 5191.0 0.09484778 0.1006557
## 4976 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4977 -36.4 4.864 5191.0 0.06836679 0.1400736
## 4978 -31.4 0.869 5076.2 0.27285817 0.1006557
## 4979 -41.8 4.961 5228.1 0.06836679 0.1006557
## 4980 -42.0 4.021 5195.8 0.06776441 0.1400736
## 4981 -46.2 1.250 5099.1 0.10609689 0.1400736
## 4982 -42.0 4.406 5195.8 0.11473272 0.1400736
## 4983 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4984 -36.4 4.855 5191.0 0.13296860 0.1088732
## 4985 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4986 -36.1 4.963 5228.1 0.10609689 0.1400736
## 4987 -41.8 4.967 5228.1 0.13296860 0.1400736
## 4988 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4989 -36.4 4.855 5191.0 0.13510101 0.1006557
## 4990 -47.1 1.405 5099.1 0.06776441 0.1006557
## 4991 -36.4 4.857 5191.0 0.06776441 0.1400736
## 4992 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4993 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4994 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4995 -31.4 0.869 5076.2 0.06836679 0.1088732
## 4996 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4997 -36.1 4.963 5228.1 0.27285817 0.1006557
## 4998 -36.1 4.965 5228.1 0.06836679 0.1006557
## 4999 -46.2 1.250 5099.1 0.13296860 0.1006557
## education_encoded default_encoded housing_encoded loan_encoded
## 1 0.11364176 0.12859229 0.1168756 0.1054972
## 2 0.13781392 0.12859229 0.1082367 0.1142069
## 3 0.13781392 0.12859229 0.1168756 0.1142069
## 4 0.13781392 0.12859229 0.1168756 0.1142069
## 5 0.13781392 0.12859229 0.1082367 0.1142069
## 6 0.07666667 0.12859229 0.1082367 0.1142069
## 7 0.10650888 0.12859229 0.1082367 0.1142069
## 8 0.10650888 0.12859229 0.1082367 0.1142069
## 9 0.13781392 0.12859229 0.1082367 0.1142069
## 10 0.07843137 0.12859229 0.1168756 0.1054972
## 11 0.11364176 0.12859229 0.1168756 0.1142069
## 12 0.11364176 0.12859229 0.1082367 0.1142069
## 13 0.10650888 0.05274566 0.1168756 0.1142069
## 14 0.13781392 0.12859229 0.1168756 0.1142069
## 15 0.13781392 0.12859229 0.1168756 0.1142069
## 16 0.13781392 0.12859229 0.1168756 0.1142069
## 17 0.11364176 0.12859229 0.1082367 0.1142069
## 18 0.13781392 0.12859229 0.1168756 0.1142069
## 19 0.10650888 0.12859229 0.1168756 0.1142069
## 20 0.07666667 0.12859229 0.1082367 0.1142069
## 21 0.07666667 0.05274566 0.1082367 0.1142069
## 22 0.13781392 0.12859229 0.1168756 0.1142069
## 23 0.10650888 0.12859229 0.1168756 0.1054972
## 24 0.13781392 0.12859229 0.1082367 0.1142069
## 25 0.11364176 0.12859229 0.1168756 0.1142069
## 26 0.07843137 0.12859229 0.1168756 0.1142069
## 27 0.07843137 0.12859229 0.1168756 0.1142069
## 28 0.07666667 0.12859229 0.1082367 0.1142069
## 29 0.13781392 0.12859229 0.1168756 0.1142069
## 30 0.13781392 0.12859229 0.1168756 0.1054972
## 31 0.13781392 0.12859229 0.1082367 0.1142069
## 32 0.10650888 0.12859229 0.1168756 0.1142069
## 33 0.11364176 0.05274566 0.1168756 0.1142069
## 34 0.07666667 0.12859229 0.1168756 0.1142069
## 35 0.11364176 0.12859229 0.1082367 0.1142069
## 36 0.13781392 0.12859229 0.1168756 0.1054972
## 37 0.13781392 0.12859229 0.1082367 0.1142069
## 38 0.11364176 0.12859229 0.1168756 0.1142069
## 39 0.13781392 0.12859229 0.1168756 0.1142069
## 40 0.13781392 0.12859229 0.1082367 0.1142069
## 41 0.13958482 0.12859229 0.1168756 0.1142069
## 42 0.13781392 0.12859229 0.1082367 0.1142069
## 43 0.13781392 0.05274566 0.1082367 0.1142069
## 44 0.11364176 0.12859229 0.1168756 0.1142069
## 45 0.10650888 0.12859229 0.1168756 0.1142069
## 46 0.11364176 0.12859229 0.1040100 0.1040100
## 47 0.10978875 0.05274566 0.1168756 0.1142069
## 48 0.10650888 0.12859229 0.1082367 0.1142069
## 49 0.10650888 0.12859229 0.1168756 0.1142069
## 50 0.13781392 0.12859229 0.1168756 0.1054972
## 51 0.10978875 0.12859229 0.1040100 0.1040100
## 52 0.10978875 0.12859229 0.1082367 0.1142069
## 53 0.07843137 0.05274566 0.1168756 0.1054972
## 54 0.13781392 0.12859229 0.1168756 0.1142069
## 55 0.07666667 0.12859229 0.1168756 0.1142069
## 56 0.13781392 0.12859229 0.1168756 0.1142069
## 57 0.11364176 0.12859229 0.1082367 0.1142069
## 58 0.07843137 0.12859229 0.1168756 0.1142069
## 59 0.10650888 0.12859229 0.1168756 0.1054972
## 60 0.07843137 0.12859229 0.1082367 0.1142069
## 61 0.07843137 0.12859229 0.1082367 0.1142069
## 62 0.11364176 0.12859229 0.1082367 0.1142069
## 63 0.13958482 0.12859229 0.1082367 0.1142069
## 64 0.13958482 0.05274566 0.1168756 0.1142069
## 65 0.07666667 0.05274566 0.1082367 0.1142069
## 66 0.10650888 0.12859229 0.1168756 0.1142069
## 67 0.11364176 0.12859229 0.1082367 0.1142069
## 68 0.13781392 0.12859229 0.1082367 0.1142069
## 69 0.13781392 0.12859229 0.1168756 0.1054972
## 70 0.07843137 0.12859229 0.1040100 0.1040100
## 71 0.07666667 0.12859229 0.1082367 0.1054972
## 72 0.10650888 0.12859229 0.1082367 0.1142069
## 73 0.07843137 0.05274566 0.1168756 0.1142069
## 74 0.13781392 0.12859229 0.1082367 0.1142069
## 75 0.07843137 0.12859229 0.1082367 0.1142069
## 76 0.10650888 0.12859229 0.1168756 0.1054972
## 77 0.10650888 0.12859229 0.1082367 0.1142069
## 78 0.07843137 0.12859229 0.1168756 0.1142069
## 79 0.11364176 0.12859229 0.1168756 0.1142069
## 80 0.11364176 0.12859229 0.1082367 0.1142069
## 81 0.13781392 0.05274566 0.1082367 0.1054972
## 82 0.13781392 0.12859229 0.1082367 0.1142069
## 83 0.13781392 0.12859229 0.1168756 0.1142069
## 84 0.10650888 0.12859229 0.1168756 0.1142069
## 85 0.13781392 0.12859229 0.1168756 0.1142069
## 86 0.10650888 0.12859229 0.1168756 0.1142069
## 87 0.07843137 0.12859229 0.1168756 0.1142069
## 88 0.10650888 0.12859229 0.1168756 0.1142069
## 89 0.13781392 0.12859229 0.1168756 0.1142069
## 90 0.13781392 0.12859229 0.1082367 0.1142069
## 91 0.10650888 0.12859229 0.1168756 0.1142069
## 92 0.07666667 0.12859229 0.1168756 0.1054972
## 93 0.11364176 0.12859229 0.1082367 0.1142069
## 94 0.07666667 0.12859229 0.1082367 0.1142069
## 95 0.13781392 0.12859229 0.1168756 0.1054972
## 96 0.07843137 0.12859229 0.1082367 0.1054972
## 97 0.13781392 0.12859229 0.1168756 0.1142069
## 98 0.13781392 0.12859229 0.1168756 0.1142069
## 99 0.13781392 0.12859229 0.1168756 0.1054972
## 100 0.07843137 0.12859229 0.1168756 0.1054972
## 101 0.07666667 0.12859229 0.1082367 0.1142069
## 102 0.10978875 0.12859229 0.1082367 0.1054972
## 103 0.11364176 0.12859229 0.1082367 0.1142069
## 104 0.11364176 0.12859229 0.1082367 0.1142069
## 105 0.10650888 0.12859229 0.1168756 0.1142069
## 106 0.10650888 0.12859229 0.1082367 0.1142069
## 107 0.10650888 0.12859229 0.1168756 0.1142069
## 108 0.13781392 0.12859229 0.1082367 0.1142069
## 109 0.10650888 0.12859229 0.1168756 0.1142069
## 110 0.13781392 0.12859229 0.1168756 0.1142069
## 111 0.10650888 0.12859229 0.1168756 0.1142069
## 112 0.11364176 0.12859229 0.1082367 0.1142069
## 113 0.11364176 0.12859229 0.1168756 0.1142069
## 114 0.11364176 0.05274566 0.1082367 0.1142069
## 115 0.13781392 0.12859229 0.1168756 0.1142069
## 116 0.10650888 0.05274566 0.1082367 0.1142069
## 117 0.10650888 0.12859229 0.1168756 0.1142069
## 118 0.13781392 0.12859229 0.1168756 0.1142069
## 119 0.13781392 0.12859229 0.1082367 0.1142069
## 120 0.13781392 0.12859229 0.1168756 0.1054972
## 121 0.13781392 0.12859229 0.1168756 0.1142069
## 122 0.07843137 0.12859229 0.1168756 0.1142069
## 123 0.13781392 0.12859229 0.1168756 0.1142069
## 124 0.07843137 0.12859229 0.1082367 0.1142069
## 125 0.11364176 0.12859229 0.1082367 0.1054972
## 126 0.10650888 0.12859229 0.1082367 0.1142069
## 127 0.10650888 0.12859229 0.1082367 0.1142069
## 128 0.13781392 0.12859229 0.1168756 0.1142069
## 129 0.13781392 0.12859229 0.1082367 0.1142069
## 130 0.13781392 0.12859229 0.1168756 0.1054972
## 131 0.13958482 0.12859229 0.1168756 0.1142069
## 132 0.10650888 0.05274566 0.1168756 0.1142069
## 133 0.07666667 0.05274566 0.1168756 0.1142069
## 134 0.11364176 0.12859229 0.1168756 0.1142069
## 135 0.10650888 0.12859229 0.1168756 0.1142069
## 136 0.13781392 0.12859229 0.1082367 0.1142069
## 137 0.10978875 0.05274566 0.1082367 0.1142069
## 138 0.11364176 0.12859229 0.1168756 0.1142069
## 139 0.10650888 0.12859229 0.1168756 0.1142069
## 140 0.07843137 0.12859229 0.1082367 0.1142069
## 141 0.10650888 0.12859229 0.1168756 0.1142069
## 142 0.10650888 0.12859229 0.1168756 0.1142069
## 143 0.11364176 0.05274566 0.1082367 0.1142069
## 144 0.13781392 0.12859229 0.1168756 0.1142069
## 145 0.10650888 0.12859229 0.1082367 0.1054972
## 146 0.13781392 0.12859229 0.1168756 0.1142069
## 147 0.13781392 0.05274566 0.1082367 0.1142069
## 148 0.13958482 0.05274566 0.1082367 0.1142069
## 149 0.11364176 0.12859229 0.1168756 0.1054972
## 150 0.11364176 0.12859229 0.1168756 0.1142069
## 151 0.13781392 0.12859229 0.1082367 0.1142069
## 152 0.10650888 0.05274566 0.1082367 0.1142069
## 153 0.07666667 0.12859229 0.1082367 0.1142069
## 154 0.13781392 0.05274566 0.1168756 0.1142069
## 155 0.10650888 0.05274566 0.1168756 0.1142069
## 156 0.13781392 0.12859229 0.1168756 0.1142069
## 157 0.13781392 0.12859229 0.1168756 0.1142069
## 158 0.10978875 0.12859229 0.1082367 0.1142069
## 159 0.10650888 0.12859229 0.1082367 0.1142069
## 160 0.10978875 0.05274566 0.1082367 0.1142069
## 161 0.13781392 0.12859229 0.1168756 0.1142069
## 162 0.10978875 0.12859229 0.1168756 0.1142069
## 163 0.07843137 0.12859229 0.1082367 0.1142069
## 164 0.11364176 0.12859229 0.1168756 0.1142069
## 165 0.07843137 0.12859229 0.1168756 0.1054972
## 166 0.07843137 0.12859229 0.1082367 0.1142069
## 167 0.07843137 0.12859229 0.1168756 0.1142069
## 168 0.07843137 0.05274566 0.1168756 0.1142069
## 169 0.10650888 0.12859229 0.1082367 0.1142069
## 170 0.07666667 0.12859229 0.1168756 0.1142069
## 171 0.11364176 0.12859229 0.1040100 0.1040100
## 172 0.10650888 0.12859229 0.1168756 0.1142069
## 173 0.10650888 0.12859229 0.1082367 0.1142069
## 174 0.10650888 0.12859229 0.1082367 0.1142069
## 175 0.13958482 0.12859229 0.1168756 0.1054972
## 176 0.07666667 0.12859229 0.1168756 0.1054972
## 177 0.11364176 0.12859229 0.1168756 0.1142069
## 178 0.13781392 0.12859229 0.1082367 0.1142069
## 179 0.07666667 0.12859229 0.1168756 0.1142069
## 180 0.10650888 0.05274566 0.1168756 0.1142069
## 181 0.07843137 0.12859229 0.1168756 0.1142069
## 182 0.11364176 0.12859229 0.1168756 0.1142069
## 183 0.07666667 0.12859229 0.1168756 0.1142069
## 184 0.13781392 0.12859229 0.1082367 0.1142069
## 185 0.07843137 0.12859229 0.1168756 0.1142069
## 186 0.10650888 0.12859229 0.1082367 0.1142069
## 187 0.07843137 0.12859229 0.1040100 0.1040100
## 188 0.10650888 0.12859229 0.1168756 0.1142069
## 189 0.13781392 0.12859229 0.1082367 0.1142069
## 190 0.11364176 0.12859229 0.1168756 0.1142069
## 191 0.13781392 0.12859229 0.1168756 0.1142069
## 192 0.07843137 0.05274566 0.1082367 0.1142069
## 193 0.07843137 0.12859229 0.1168756 0.1142069
## 194 0.11364176 0.12859229 0.1168756 0.1142069
## 195 0.07666667 0.12859229 0.1082367 0.1142069
## 196 0.10978875 0.05274566 0.1082367 0.1142069
## 197 0.10650888 0.12859229 0.1082367 0.1142069
## 198 0.11364176 0.12859229 0.1082367 0.1142069
## 199 0.07666667 0.05274566 0.1168756 0.1142069
## 200 0.07843137 0.12859229 0.1082367 0.1142069
## 201 0.10650888 0.12859229 0.1168756 0.1142069
## 202 0.13781392 0.12859229 0.1168756 0.1142069
## 203 0.07843137 0.12859229 0.1168756 0.1142069
## 204 0.13781392 0.12859229 0.1082367 0.1142069
## 205 0.13781392 0.12859229 0.1168756 0.1142069
## 206 0.07843137 0.12859229 0.1168756 0.1142069
## 207 0.13781392 0.12859229 0.1082367 0.1142069
## 208 0.13781392 0.12859229 0.1082367 0.1142069
## 209 0.13781392 0.12859229 0.1168756 0.1142069
## 210 0.07843137 0.12859229 0.1082367 0.1142069
## 211 0.10978875 0.12859229 0.1082367 0.1142069
## 212 0.10650888 0.12859229 0.1082367 0.1054972
## 213 0.13781392 0.12859229 0.1082367 0.1054972
## 214 0.10978875 0.12859229 0.1168756 0.1142069
## 215 0.13781392 0.12859229 0.1168756 0.1142069
## 216 0.13781392 0.12859229 0.1168756 0.1142069
## 217 0.11364176 0.12859229 0.1040100 0.1040100
## 218 0.10650888 0.12859229 0.1082367 0.1142069
## 219 0.10650888 0.12859229 0.1168756 0.1142069
## 220 0.07666667 0.12859229 0.1168756 0.1142069
## 221 0.13781392 0.12859229 0.1082367 0.1142069
## 222 0.10650888 0.12859229 0.1082367 0.1142069
## 223 0.07666667 0.05274566 0.1082367 0.1142069
## 224 0.10650888 0.12859229 0.1082367 0.1142069
## 225 0.13781392 0.12859229 0.1168756 0.1142069
## 226 0.11364176 0.12859229 0.1168756 0.1054972
## 227 0.13781392 0.12859229 0.1082367 0.1142069
## 228 0.13781392 0.12859229 0.1168756 0.1142069
## 229 0.11364176 0.12859229 0.1168756 0.1142069
## 230 0.13781392 0.12859229 0.1082367 0.1142069
## 231 0.11364176 0.12859229 0.1082367 0.1142069
## 232 0.13781392 0.12859229 0.1082367 0.1142069
## 233 0.10650888 0.12859229 0.1168756 0.1142069
## 234 0.13781392 0.12859229 0.1168756 0.1054972
## 235 0.11364176 0.12859229 0.1168756 0.1142069
## 236 0.13781392 0.12859229 0.1082367 0.1142069
## 237 0.10650888 0.12859229 0.1168756 0.1142069
## 238 0.13781392 0.12859229 0.1168756 0.1142069
## 239 0.10978875 0.05274566 0.1082367 0.1054972
## 240 0.10650888 0.12859229 0.1082367 0.1142069
## 241 0.10650888 0.12859229 0.1168756 0.1142069
## 242 0.10650888 0.12859229 0.1082367 0.1142069
## 243 0.11364176 0.12859229 0.1082367 0.1142069
## 244 0.11364176 0.12859229 0.1168756 0.1054972
## 245 0.13781392 0.12859229 0.1082367 0.1142069
## 246 0.07843137 0.12859229 0.1168756 0.1142069
## 247 0.10650888 0.12859229 0.1168756 0.1142069
## 248 0.11364176 0.12859229 0.1168756 0.1142069
## 249 0.13958482 0.12859229 0.1168756 0.1054972
## 250 0.10650888 0.12859229 0.1168756 0.1142069
## 251 0.10650888 0.12859229 0.1082367 0.1142069
## 252 0.11364176 0.12859229 0.1168756 0.1142069
## 253 0.10650888 0.12859229 0.1082367 0.1142069
## 254 0.07843137 0.12859229 0.1168756 0.1142069
## 255 0.10650888 0.12859229 0.1082367 0.1142069
## 256 0.10650888 0.12859229 0.1082367 0.1142069
## 257 0.10978875 0.05274566 0.1082367 0.1054972
## 258 0.13781392 0.12859229 0.1168756 0.1142069
## 259 0.13958482 0.12859229 0.1168756 0.1142069
## 260 0.10978875 0.12859229 0.1082367 0.1142069
## 261 0.11364176 0.12859229 0.1082367 0.1142069
## 262 0.10650888 0.12859229 0.1082367 0.1054972
## 263 0.11364176 0.12859229 0.1082367 0.1142069
## 264 0.13781392 0.12859229 0.1168756 0.1142069
## 265 0.11364176 0.12859229 0.1168756 0.1142069
## 266 0.11364176 0.12859229 0.1168756 0.1142069
## 267 0.11364176 0.12859229 0.1168756 0.1142069
## 268 0.07843137 0.12859229 0.1168756 0.1142069
## 269 0.10650888 0.12859229 0.1082367 0.1142069
## 270 0.10650888 0.12859229 0.1082367 0.1142069
## 271 0.13958482 0.12859229 0.1168756 0.1054972
## 272 0.07843137 0.12859229 0.1082367 0.1142069
## 273 0.10650888 0.12859229 0.1082367 0.1142069
## 274 0.13781392 0.12859229 0.1082367 0.1142069
## 275 0.13781392 0.12859229 0.1040100 0.1040100
## 276 0.13781392 0.12859229 0.1082367 0.1142069
## 277 0.13781392 0.12859229 0.1082367 0.1142069
## 278 0.10650888 0.12859229 0.1168756 0.1142069
## 279 0.13781392 0.12859229 0.1082367 0.1142069
## 280 0.10650888 0.12859229 0.1168756 0.1142069
## 281 0.13781392 0.12859229 0.1168756 0.1142069
## 282 0.11364176 0.12859229 0.1082367 0.1142069
## 283 0.13781392 0.12859229 0.1082367 0.1142069
## 284 0.07843137 0.12859229 0.1168756 0.1142069
## 285 0.10978875 0.12859229 0.1168756 0.1142069
## 286 0.11364176 0.12859229 0.1082367 0.1142069
## 287 0.07843137 0.12859229 0.1168756 0.1142069
## 288 0.07666667 0.12859229 0.1168756 0.1142069
## 289 0.13781392 0.12859229 0.1168756 0.1142069
## 290 0.10978875 0.12859229 0.1082367 0.1054972
## 291 0.10650888 0.12859229 0.1082367 0.1054972
## 292 0.10650888 0.12859229 0.1168756 0.1142069
## 293 0.10650888 0.12859229 0.1168756 0.1142069
## 294 0.10650888 0.12859229 0.1082367 0.1142069
## 295 0.10978875 0.05274566 0.1168756 0.1142069
## 296 0.13781392 0.12859229 0.1168756 0.1142069
## 297 0.10978875 0.12859229 0.1082367 0.1142069
## 298 0.11364176 0.12859229 0.1168756 0.1142069
## 299 0.10650888 0.12859229 0.1168756 0.1142069
## 300 0.10650888 0.12859229 0.1168756 0.1142069
## 301 0.10650888 0.05274566 0.1082367 0.1142069
## 302 0.10650888 0.12859229 0.1082367 0.1142069
## 303 0.13781392 0.12859229 0.1082367 0.1142069
## 304 0.10978875 0.12859229 0.1082367 0.1142069
## 305 0.07843137 0.12859229 0.1168756 0.1054972
## 306 0.11364176 0.12859229 0.1168756 0.1142069
## 307 0.10978875 0.12859229 0.1082367 0.1142069
## 308 0.10650888 0.12859229 0.1082367 0.1142069
## 309 0.11364176 0.12859229 0.1082367 0.1142069
## 310 0.10978875 0.05274566 0.1082367 0.1142069
## 311 0.11364176 0.12859229 0.1168756 0.1142069
## 312 0.10650888 0.12859229 0.1168756 0.1142069
## 313 0.11364176 0.12859229 0.1168756 0.1142069
## 314 0.07843137 0.12859229 0.1082367 0.1142069
## 315 0.07843137 0.12859229 0.1082367 0.1142069
## 316 0.07843137 0.12859229 0.1168756 0.1142069
## 317 0.13781392 0.12859229 0.1168756 0.1142069
## 318 0.13781392 0.12859229 0.1168756 0.1142069
## 319 0.07666667 0.12859229 0.1082367 0.1142069
## 320 0.10978875 0.12859229 0.1082367 0.1142069
## 321 0.13781392 0.05274566 0.1082367 0.1142069
## 322 0.13781392 0.12859229 0.1168756 0.1142069
## 323 0.13781392 0.12859229 0.1168756 0.1142069
## 324 0.10650888 0.12859229 0.1082367 0.1142069
## 325 0.10650888 0.12859229 0.1082367 0.1142069
## 326 0.07666667 0.12859229 0.1168756 0.1142069
## 327 0.10650888 0.05274566 0.1168756 0.1054972
## 328 0.10978875 0.12859229 0.1082367 0.1142069
## 329 0.10650888 0.12859229 0.1168756 0.1054972
## 330 0.10650888 0.12859229 0.1082367 0.1142069
## 331 0.10978875 0.12859229 0.1168756 0.1054972
## 332 0.10978875 0.12859229 0.1082367 0.1142069
## 333 0.10978875 0.05274566 0.1168756 0.1054972
## 334 0.07666667 0.12859229 0.1168756 0.1142069
## 335 0.07843137 0.05274566 0.1168756 0.1054972
## 336 0.10650888 0.12859229 0.1082367 0.1054972
## 337 0.10650888 0.12859229 0.1168756 0.1054972
## 338 0.07666667 0.05274566 0.1168756 0.1142069
## 339 0.07843137 0.12859229 0.1082367 0.1142069
## 340 0.13781392 0.12859229 0.1082367 0.1142069
## 341 0.11364176 0.05274566 0.1082367 0.1142069
## 342 0.13781392 0.05274566 0.1082367 0.1142069
## 343 0.10650888 0.12859229 0.1168756 0.1054972
## 344 0.13781392 0.12859229 0.1082367 0.1142069
## 345 0.10650888 0.12859229 0.1082367 0.1142069
## 346 0.11364176 0.12859229 0.1082367 0.1142069
## 347 0.13781392 0.12859229 0.1168756 0.1142069
## 348 0.13781392 0.12859229 0.1168756 0.1142069
## 349 0.07666667 0.05274566 0.1082367 0.1142069
## 350 0.13781392 0.12859229 0.1168756 0.1142069
## 351 0.10650888 0.12859229 0.1082367 0.1142069
## 352 0.13781392 0.12859229 0.1082367 0.1142069
## 353 0.10650888 0.05274566 0.1082367 0.1142069
## 354 0.10650888 0.12859229 0.1168756 0.1142069
## 355 0.13781392 0.12859229 0.1082367 0.1142069
## 356 0.10650888 0.12859229 0.1168756 0.1142069
## 357 0.10650888 0.12859229 0.1168756 0.1142069
## 358 0.07843137 0.05274566 0.1168756 0.1142069
## 359 0.07843137 0.12859229 0.1168756 0.1142069
## 360 0.10650888 0.12859229 0.1082367 0.1142069
## 361 0.10650888 0.12859229 0.1168756 0.1142069
## 362 0.11364176 0.12859229 0.1082367 0.1142069
## 363 0.07666667 0.12859229 0.1082367 0.1142069
## 364 0.13958482 0.12859229 0.1082367 0.1142069
## 365 0.13781392 0.05274566 0.1082367 0.1142069
## 366 0.13781392 0.12859229 0.1168756 0.1142069
## 367 0.10650888 0.05274566 0.1168756 0.1142069
## 368 0.10650888 0.12859229 0.1168756 0.1054972
## 369 0.10978875 0.05274566 0.1168756 0.1142069
## 370 0.11364176 0.12859229 0.1168756 0.1142069
## 371 0.13781392 0.05274566 0.1082367 0.1142069
## 372 0.11364176 0.12859229 0.1168756 0.1142069
## 373 0.13781392 0.12859229 0.1082367 0.1142069
## 374 0.11364176 0.12859229 0.1040100 0.1040100
## 375 0.10650888 0.12859229 0.1168756 0.1142069
## 376 0.07843137 0.05274566 0.1168756 0.1142069
## 377 0.07843137 0.12859229 0.1168756 0.1142069
## 378 0.10650888 0.12859229 0.1168756 0.1142069
## 379 0.07843137 0.12859229 0.1082367 0.1142069
## 380 0.13958482 0.12859229 0.1168756 0.1142069
## 381 0.13781392 0.12859229 0.1082367 0.1054972
## 382 0.07843137 0.12859229 0.1168756 0.1142069
## 383 0.10650888 0.12859229 0.1168756 0.1142069
## 384 0.13781392 0.05274566 0.1082367 0.1142069
## 385 0.10650888 0.05274566 0.1040100 0.1040100
## 386 0.13781392 0.12859229 0.1168756 0.1142069
## 387 0.07843137 0.12859229 0.1168756 0.1054972
## 388 0.13781392 0.12859229 0.1168756 0.1142069
## 389 0.07666667 0.12859229 0.1082367 0.1142069
## 390 0.13781392 0.12859229 0.1082367 0.1054972
## 391 0.13958482 0.12859229 0.1082367 0.1142069
## 392 0.11364176 0.12859229 0.1168756 0.1142069
## 393 0.13781392 0.12859229 0.1168756 0.1054972
## 394 0.13781392 0.12859229 0.1082367 0.1142069
## 395 0.07843137 0.12859229 0.1168756 0.1142069
## 396 0.10650888 0.05274566 0.1168756 0.1142069
## 397 0.13781392 0.12859229 0.1168756 0.1142069
## 398 0.07666667 0.12859229 0.1082367 0.1142069
## 399 0.13781392 0.12859229 0.1168756 0.1054972
## 400 0.07666667 0.12859229 0.1168756 0.1142069
## 401 0.10978875 0.12859229 0.1082367 0.1054972
## 402 0.10650888 0.05274566 0.1168756 0.1054972
## 403 0.13781392 0.05274566 0.1168756 0.1142069
## 404 0.13781392 0.12859229 0.1082367 0.1142069
## 405 0.13781392 0.12859229 0.1168756 0.1142069
## 406 0.07843137 0.12859229 0.1082367 0.1142069
## 407 0.13781392 0.12859229 0.1168756 0.1054972
## 408 0.11364176 0.12859229 0.1168756 0.1142069
## 409 0.10978875 0.12859229 0.1082367 0.1142069
## 410 0.10978875 0.05274566 0.1168756 0.1142069
## 411 0.11364176 0.12859229 0.1168756 0.1054972
## 412 0.07843137 0.12859229 0.1168756 0.1142069
## 413 0.11364176 0.12859229 0.1168756 0.1142069
## 414 0.11364176 0.05274566 0.1168756 0.1142069
## 415 0.07666667 0.12859229 0.1168756 0.1142069
## 416 0.13781392 0.12859229 0.1082367 0.1142069
## 417 0.07843137 0.12859229 0.1168756 0.1142069
## 418 0.07843137 0.12859229 0.1168756 0.1142069
## 419 0.10650888 0.12859229 0.1082367 0.1142069
## 420 0.13781392 0.12859229 0.1168756 0.1142069
## 421 0.07666667 0.05274566 0.1082367 0.1054972
## 422 0.10978875 0.12859229 0.1082367 0.1142069
## 423 0.07843137 0.05274566 0.1082367 0.1142069
## 424 0.13781392 0.12859229 0.1082367 0.1142069
## 425 0.11364176 0.12859229 0.1082367 0.1142069
## 426 0.10978875 0.05274566 0.1082367 0.1142069
## 427 0.10650888 0.12859229 0.1082367 0.1142069
## 428 0.13781392 0.12859229 0.1168756 0.1142069
## 429 0.10650888 0.12859229 0.1082367 0.1142069
## 430 0.13958482 0.12859229 0.1168756 0.1142069
## 431 0.10650888 0.12859229 0.1082367 0.1142069
## 432 0.10650888 0.12859229 0.1168756 0.1054972
## 433 0.13781392 0.12859229 0.1168756 0.1142069
## 434 0.13781392 0.12859229 0.1082367 0.1054972
## 435 0.10650888 0.12859229 0.1168756 0.1142069
## 436 0.10978875 0.12859229 0.1168756 0.1142069
## 437 0.13781392 0.12859229 0.1168756 0.1142069
## 438 0.11364176 0.12859229 0.1168756 0.1142069
## 439 0.07843137 0.12859229 0.1082367 0.1142069
## 440 0.11364176 0.12859229 0.1168756 0.1142069
## 441 0.07666667 0.05274566 0.1082367 0.1142069
## 442 0.13781392 0.12859229 0.1168756 0.1142069
## 443 0.10650888 0.12859229 0.1168756 0.1054972
## 444 0.07843137 0.12859229 0.1168756 0.1142069
## 445 0.10978875 0.12859229 0.1082367 0.1142069
## 446 0.13958482 0.12859229 0.1168756 0.1142069
## 447 0.10650888 0.12859229 0.1168756 0.1142069
## 448 0.13958482 0.12859229 0.1082367 0.1142069
## 449 0.11364176 0.05274566 0.1082367 0.1142069
## 450 0.07666667 0.12859229 0.1082367 0.1142069
## 451 0.10978875 0.12859229 0.1168756 0.1142069
## 452 0.07843137 0.05274566 0.1082367 0.1142069
## 453 0.11364176 0.12859229 0.1168756 0.1142069
## 454 0.10978875 0.05274566 0.1082367 0.1142069
## 455 0.10978875 0.12859229 0.1168756 0.1142069
## 456 0.10650888 0.12859229 0.1168756 0.1142069
## 457 0.10650888 0.12859229 0.1168756 0.1142069
## 458 0.13958482 0.12859229 0.1168756 0.1142069
## 459 0.07843137 0.12859229 0.1082367 0.1142069
## 460 0.13781392 0.12859229 0.1168756 0.1142069
## 461 0.13781392 0.12859229 0.1168756 0.1054972
## 462 0.07843137 0.05274566 0.1082367 0.1142069
## 463 0.10978875 0.12859229 0.1082367 0.1054972
## 464 0.07843137 0.12859229 0.1082367 0.1142069
## 465 0.11364176 0.12859229 0.1082367 0.1142069
## 466 0.10650888 0.12859229 0.1168756 0.1142069
## 467 0.13958482 0.12859229 0.1082367 0.1142069
## 468 0.11364176 0.12859229 0.1168756 0.1142069
## 469 0.11364176 0.12859229 0.1168756 0.1142069
## 470 0.13781392 0.05274566 0.1168756 0.1142069
## 471 0.13958482 0.12859229 0.1168756 0.1142069
## 472 0.10650888 0.12859229 0.1082367 0.1054972
## 473 0.10650888 0.12859229 0.1168756 0.1142069
## 474 0.13781392 0.12859229 0.1168756 0.1142069
## 475 0.10650888 0.12859229 0.1082367 0.1054972
## 476 0.07843137 0.12859229 0.1040100 0.1040100
## 477 0.11364176 0.12859229 0.1082367 0.1054972
## 478 0.13781392 0.12859229 0.1082367 0.1142069
## 479 0.07843137 0.12859229 0.1168756 0.1142069
## 480 0.10650888 0.12859229 0.1082367 0.1142069
## 481 0.13781392 0.12859229 0.1168756 0.1142069
## 482 0.13781392 0.12859229 0.1168756 0.1142069
## 483 0.13958482 0.12859229 0.1082367 0.1142069
## 484 0.13781392 0.12859229 0.1168756 0.1142069
## 485 0.13781392 0.12859229 0.1082367 0.1142069
## 486 0.07843137 0.12859229 0.1082367 0.1142069
## 487 0.13781392 0.12859229 0.1168756 0.1054972
## 488 0.13781392 0.12859229 0.1082367 0.1142069
## 489 0.13958482 0.05274566 0.1168756 0.1142069
## 490 0.07843137 0.12859229 0.1168756 0.1142069
## 491 0.10978875 0.12859229 0.1082367 0.1142069
## 492 0.07843137 0.12859229 0.1168756 0.1142069
## 493 0.13781392 0.12859229 0.1168756 0.1142069
## 494 0.10650888 0.12859229 0.1082367 0.1054972
## 495 0.10650888 0.12859229 0.1082367 0.1054972
## 496 0.13958482 0.12859229 0.1168756 0.1142069
## 497 0.13781392 0.12859229 0.1082367 0.1142069
## 498 0.11364176 0.12859229 0.1082367 0.1142069
## 499 0.11364176 0.12859229 0.1082367 0.1054972
## 500 0.13781392 0.12859229 0.1082367 0.1142069
## 501 0.11364176 0.12859229 0.1168756 0.1142069
## 502 0.11364176 0.12859229 0.1168756 0.1142069
## 503 0.13781392 0.12859229 0.1082367 0.1142069
## 504 0.13781392 0.05274566 0.1082367 0.1142069
## 505 0.10978875 0.05274566 0.1168756 0.1142069
## 506 0.10650888 0.12859229 0.1082367 0.1054972
## 507 0.10978875 0.12859229 0.1082367 0.1054972
## 508 0.13781392 0.12859229 0.1082367 0.1142069
## 509 0.13781392 0.12859229 0.1168756 0.1054972
## 510 0.13958482 0.12859229 0.1168756 0.1142069
## 511 0.10978875 0.05274566 0.1168756 0.1142069
## 512 0.13781392 0.12859229 0.1168756 0.1142069
## 513 0.13781392 0.12859229 0.1082367 0.1054972
## 514 0.11364176 0.12859229 0.1168756 0.1142069
## 515 0.10978875 0.12859229 0.1168756 0.1142069
## 516 0.10978875 0.12859229 0.1082367 0.1142069
## 517 0.13958482 0.12859229 0.1168756 0.1142069
## 518 0.07843137 0.12859229 0.1082367 0.1142069
## 519 0.10650888 0.12859229 0.1168756 0.1142069
## 520 0.11364176 0.12859229 0.1168756 0.1142069
## 521 0.10650888 0.12859229 0.1168756 0.1142069
## 522 0.10650888 0.12859229 0.1168756 0.1142069
## 523 0.13781392 0.12859229 0.1168756 0.1142069
## 524 0.10978875 0.12859229 0.1082367 0.1142069
## 525 0.10978875 0.05274566 0.1082367 0.1142069
## 526 0.07843137 0.05274566 0.1168756 0.1142069
## 527 0.10978875 0.12859229 0.1168756 0.1142069
## 528 0.11364176 0.12859229 0.1168756 0.1142069
## 529 0.07843137 0.12859229 0.1082367 0.1142069
## 530 0.10650888 0.12859229 0.1082367 0.1142069
## 531 0.13781392 0.12859229 0.1082367 0.1142069
## 532 0.11364176 0.12859229 0.1082367 0.1142069
## 533 0.13958482 0.05274566 0.1082367 0.1142069
## 534 0.13958482 0.12859229 0.1082367 0.1142069
## 535 0.07843137 0.12859229 0.1168756 0.1142069
## 536 0.07843137 0.12859229 0.1168756 0.1142069
## 537 0.10978875 0.05274566 0.1082367 0.1142069
## 538 0.10650888 0.12859229 0.1082367 0.1142069
## 539 0.13781392 0.05274566 0.1168756 0.1142069
## 540 0.10978875 0.12859229 0.1168756 0.1142069
## 541 0.10650888 0.05274566 0.1082367 0.1142069
## 542 0.07843137 0.12859229 0.1082367 0.1054972
## 543 0.13958482 0.12859229 0.1168756 0.1142069
## 544 0.10650888 0.12859229 0.1168756 0.1054972
## 545 0.10650888 0.12859229 0.1168756 0.1054972
## 546 0.10978875 0.12859229 0.1168756 0.1142069
## 547 0.07843137 0.12859229 0.1082367 0.1142069
## 548 0.13781392 0.12859229 0.1168756 0.1142069
## 549 0.13781392 0.12859229 0.1168756 0.1142069
## 550 0.07843137 0.12859229 0.1082367 0.1142069
## 551 0.10650888 0.12859229 0.1168756 0.1142069
## 552 0.10650888 0.12859229 0.1168756 0.1054972
## 553 0.10978875 0.12859229 0.1168756 0.1142069
## 554 0.13958482 0.12859229 0.1082367 0.1142069
## 555 0.13781392 0.12859229 0.1168756 0.1142069
## 556 0.13781392 0.12859229 0.1082367 0.1142069
## 557 0.10978875 0.12859229 0.1168756 0.1142069
## 558 0.10650888 0.12859229 0.1168756 0.1054972
## 559 0.10650888 0.12859229 0.1082367 0.1142069
## 560 0.13958482 0.12859229 0.1168756 0.1142069
## 561 0.10978875 0.12859229 0.1168756 0.1142069
## 562 0.13781392 0.12859229 0.1082367 0.1142069
## 563 0.13781392 0.12859229 0.1168756 0.1054972
## 564 0.10650888 0.12859229 0.1168756 0.1054972
## 565 0.10978875 0.12859229 0.1168756 0.1142069
## 566 0.07843137 0.12859229 0.1082367 0.1142069
## 567 0.07666667 0.12859229 0.1168756 0.1054972
## 568 0.10650888 0.12859229 0.1168756 0.1142069
## 569 0.10650888 0.12859229 0.1082367 0.1054972
## 570 0.13781392 0.12859229 0.1168756 0.1054972
## 571 0.10978875 0.05274566 0.1168756 0.1142069
## 572 0.10978875 0.12859229 0.1168756 0.1142069
## 573 0.13781392 0.12859229 0.1168756 0.1142069
## 574 0.10650888 0.12859229 0.1168756 0.1142069
## 575 0.10650888 0.12859229 0.1082367 0.1142069
## 576 0.07843137 0.12859229 0.1168756 0.1142069
## 577 0.13781392 0.12859229 0.1082367 0.1142069
## 578 0.13781392 0.12859229 0.1082367 0.1054972
## 579 0.13781392 0.12859229 0.1082367 0.1142069
## 580 0.13781392 0.12859229 0.1082367 0.1142069
## 581 0.10650888 0.12859229 0.1168756 0.1142069
## 582 0.07843137 0.12859229 0.1168756 0.1142069
## 583 0.13781392 0.12859229 0.1082367 0.1142069
## 584 0.13958482 0.12859229 0.1082367 0.1142069
## 585 0.07666667 0.12859229 0.1082367 0.1142069
## 586 0.13781392 0.12859229 0.1082367 0.1142069
## 587 0.13781392 0.12859229 0.1168756 0.1142069
## 588 0.10650888 0.12859229 0.1082367 0.1142069
## 589 0.10650888 0.12859229 0.1168756 0.1054972
## 590 0.07843137 0.12859229 0.1082367 0.1054972
## 591 0.07843137 0.12859229 0.1168756 0.1142069
## 592 0.10978875 0.12859229 0.1082367 0.1142069
## 593 0.11364176 0.05274566 0.1168756 0.1142069
## 594 0.07843137 0.12859229 0.1168756 0.1142069
## 595 0.10650888 0.05274566 0.1168756 0.1142069
## 596 0.13781392 0.12859229 0.1082367 0.1142069
## 597 0.11364176 0.12859229 0.1082367 0.1142069
## 598 0.11364176 0.12859229 0.1168756 0.1142069
## 599 0.10978875 0.12859229 0.1168756 0.1142069
## 600 0.13781392 0.12859229 0.1082367 0.1142069
## 601 0.10650888 0.12859229 0.1168756 0.1142069
## 602 0.13781392 0.12859229 0.1168756 0.1142069
## 603 0.10978875 0.12859229 0.1168756 0.1054972
## 604 0.13781392 0.12859229 0.1168756 0.1142069
## 605 0.13781392 0.12859229 0.1082367 0.1054972
## 606 0.10650888 0.12859229 0.1040100 0.1040100
## 607 0.07843137 0.12859229 0.1168756 0.1142069
## 608 0.13781392 0.12859229 0.1168756 0.1142069
## 609 0.07843137 0.12859229 0.1168756 0.1142069
## 610 0.10650888 0.12859229 0.1082367 0.1142069
## 611 0.10650888 0.12859229 0.1168756 0.1142069
## 612 0.13781392 0.12859229 0.1168756 0.1142069
## 613 0.07843137 0.05274566 0.1082367 0.1142069
## 614 0.10650888 0.12859229 0.1082367 0.1054972
## 615 0.07843137 0.12859229 0.1168756 0.1142069
## 616 0.10650888 0.12859229 0.1168756 0.1142069
## 617 0.11364176 0.12859229 0.1082367 0.1142069
## 618 0.10650888 0.12859229 0.1082367 0.1142069
## 619 0.10978875 0.12859229 0.1082367 0.1054972
## 620 0.07666667 0.12859229 0.1082367 0.1142069
## 621 0.07843137 0.12859229 0.1168756 0.1142069
## 622 0.10650888 0.12859229 0.1168756 0.1142069
## 623 0.07843137 0.12859229 0.1168756 0.1142069
## 624 0.10650888 0.12859229 0.1168756 0.1142069
## 625 0.13781392 0.12859229 0.1168756 0.1054972
## 626 0.10650888 0.12859229 0.1168756 0.1142069
## 627 0.07843137 0.05274566 0.1082367 0.1054972
## 628 0.11364176 0.12859229 0.1168756 0.1054972
## 629 0.10650888 0.12859229 0.1082367 0.1054972
## 630 0.07843137 0.12859229 0.1040100 0.1040100
## 631 0.10650888 0.05274566 0.1168756 0.1142069
## 632 0.07843137 0.12859229 0.1082367 0.1142069
## 633 0.13781392 0.12859229 0.1082367 0.1142069
## 634 0.13781392 0.12859229 0.1082367 0.1142069
## 635 0.11364176 0.12859229 0.1168756 0.1142069
## 636 0.11364176 0.12859229 0.1168756 0.1142069
## 637 0.10650888 0.12859229 0.1082367 0.1142069
## 638 0.13781392 0.12859229 0.1082367 0.1142069
## 639 0.07843137 0.05274566 0.1082367 0.1142069
## 640 0.13781392 0.12859229 0.1082367 0.1142069
## 641 0.10650888 0.00000000 0.1082367 0.1142069
## 642 0.13781392 0.12859229 0.1040100 0.1040100
## 643 0.07843137 0.12859229 0.1168756 0.1142069
## 644 0.10650888 0.12859229 0.1168756 0.1142069
## 645 0.10650888 0.12859229 0.1168756 0.1142069
## 646 0.10650888 0.12859229 0.1082367 0.1142069
## 647 0.07843137 0.05274566 0.1168756 0.1142069
## 648 0.10650888 0.12859229 0.1168756 0.1142069
## 649 0.10978875 0.05274566 0.1040100 0.1040100
## 650 0.07843137 0.12859229 0.1082367 0.1054972
## 651 0.11364176 0.05274566 0.1168756 0.1142069
## 652 0.11364176 0.05274566 0.1082367 0.1142069
## 653 0.11364176 0.12859229 0.1168756 0.1142069
## 654 0.10650888 0.05274566 0.1168756 0.1142069
## 655 0.10978875 0.12859229 0.1168756 0.1054972
## 656 0.10650888 0.05274566 0.1082367 0.1142069
## 657 0.11364176 0.12859229 0.1168756 0.1142069
## 658 0.10978875 0.05274566 0.1168756 0.1142069
## 659 0.13781392 0.12859229 0.1168756 0.1142069
## 660 0.13781392 0.12859229 0.1168756 0.1142069
## 661 0.11364176 0.12859229 0.1168756 0.1142069
## 662 0.10650888 0.12859229 0.1082367 0.1142069
## 663 0.10650888 0.12859229 0.1168756 0.1142069
## 664 0.10650888 0.12859229 0.1168756 0.1142069
## 665 0.10650888 0.12859229 0.1168756 0.1142069
## 666 0.10650888 0.12859229 0.1082367 0.1142069
## 667 0.13781392 0.12859229 0.1082367 0.1054972
## 668 0.10650888 0.12859229 0.1168756 0.1142069
## 669 0.13781392 0.12859229 0.1168756 0.1142069
## 670 0.07843137 0.12859229 0.1168756 0.1142069
## 671 0.10650888 0.12859229 0.1168756 0.1142069
## 672 0.10650888 0.12859229 0.1082367 0.1142069
## 673 0.13781392 0.12859229 0.1082367 0.1054972
## 674 0.10650888 0.12859229 0.1082367 0.1142069
## 675 0.10650888 0.12859229 0.1082367 0.1142069
## 676 0.10978875 0.05274566 0.1082367 0.1142069
## 677 0.10650888 0.12859229 0.1082367 0.1142069
## 678 0.13781392 0.12859229 0.1040100 0.1040100
## 679 0.13781392 0.12859229 0.1082367 0.1142069
## 680 0.13781392 0.12859229 0.1168756 0.1054972
## 681 0.13781392 0.12859229 0.1168756 0.1054972
## 682 0.11364176 0.12859229 0.1082367 0.1054972
## 683 0.07843137 0.12859229 0.1168756 0.1054972
## 684 0.10650888 0.12859229 0.1082367 0.1142069
## 685 0.07843137 0.05274566 0.1082367 0.1142069
## 686 0.10650888 0.12859229 0.1082367 0.1142069
## 687 0.13958482 0.12859229 0.1168756 0.1142069
## 688 0.07843137 0.05274566 0.1082367 0.1054972
## 689 0.10650888 0.12859229 0.1168756 0.1054972
## 690 0.13958482 0.12859229 0.1082367 0.1054972
## 691 0.10650888 0.12859229 0.1168756 0.1142069
## 692 0.10650888 0.12859229 0.1082367 0.1142069
## 693 0.10650888 0.12859229 0.1168756 0.1142069
## 694 0.10650888 0.12859229 0.1082367 0.1142069
## 695 0.10650888 0.05274566 0.1168756 0.1142069
## 696 0.10978875 0.12859229 0.1082367 0.1142069
## 697 0.13958482 0.12859229 0.1168756 0.1054972
## 698 0.07666667 0.12859229 0.1168756 0.1142069
## 699 0.10650888 0.05274566 0.1168756 0.1142069
## 700 0.10650888 0.12859229 0.1168756 0.1142069
## 701 0.10650888 0.12859229 0.1168756 0.1142069
## 702 0.10650888 0.12859229 0.1082367 0.1142069
## 703 0.10650888 0.12859229 0.1082367 0.1142069
## 704 0.07666667 0.12859229 0.1168756 0.1142069
## 705 0.07843137 0.12859229 0.1082367 0.1054972
## 706 0.13781392 0.12859229 0.1168756 0.1142069
## 707 0.13781392 0.12859229 0.1082367 0.1142069
## 708 0.11364176 0.12859229 0.1082367 0.1142069
## 709 0.13781392 0.12859229 0.1168756 0.1142069
## 710 0.10650888 0.12859229 0.1082367 0.1142069
## 711 0.07843137 0.05274566 0.1082367 0.1142069
## 712 0.13781392 0.12859229 0.1168756 0.1142069
## 713 0.10650888 0.12859229 0.1082367 0.1142069
## 714 0.10650888 0.05274566 0.1168756 0.1142069
## 715 0.10650888 0.12859229 0.1168756 0.1142069
## 716 0.13781392 0.12859229 0.1168756 0.1142069
## 717 0.10650888 0.12859229 0.1168756 0.1142069
## 718 0.13958482 0.12859229 0.1168756 0.1054972
## 719 0.07843137 0.12859229 0.1082367 0.1142069
## 720 0.11364176 0.12859229 0.1168756 0.1142069
## 721 0.10650888 0.12859229 0.1168756 0.1142069
## 722 0.13781392 0.12859229 0.1082367 0.1142069
## 723 0.11364176 0.12859229 0.1168756 0.1054972
## 724 0.11364176 0.12859229 0.1168756 0.1142069
## 725 0.07666667 0.12859229 0.1168756 0.1142069
## 726 0.07843137 0.12859229 0.1168756 0.1142069
## 727 0.10650888 0.05274566 0.1168756 0.1142069
## 728 0.10978875 0.12859229 0.1168756 0.1142069
## 729 0.13781392 0.12859229 0.1082367 0.1054972
## 730 0.10650888 0.05274566 0.1082367 0.1142069
## 731 0.10650888 0.12859229 0.1082367 0.1054972
## 732 0.07843137 0.05274566 0.1082367 0.1142069
## 733 0.07843137 0.12859229 0.1082367 0.1142069
## 734 0.11364176 0.12859229 0.1168756 0.1142069
## 735 0.13781392 0.12859229 0.1082367 0.1142069
## 736 0.10650888 0.12859229 0.1168756 0.1142069
## 737 0.10978875 0.12859229 0.1168756 0.1054972
## 738 0.07666667 0.12859229 0.1082367 0.1142069
## 739 0.13781392 0.12859229 0.1082367 0.1142069
## 740 0.13781392 0.12859229 0.1168756 0.1142069
## 741 0.10650888 0.12859229 0.1168756 0.1142069
## 742 0.07666667 0.12859229 0.1082367 0.1142069
## 743 0.13958482 0.12859229 0.1082367 0.1142069
## 744 0.10650888 0.12859229 0.1168756 0.1054972
## 745 0.10650888 0.05274566 0.1168756 0.1054972
## 746 0.11364176 0.12859229 0.1168756 0.1142069
## 747 0.10978875 0.12859229 0.1082367 0.1142069
## 748 0.10650888 0.12859229 0.1082367 0.1142069
## 749 0.10650888 0.12859229 0.1082367 0.1142069
## 750 0.10650888 0.12859229 0.1168756 0.1142069
## 751 0.07843137 0.05274566 0.1168756 0.1142069
## 752 0.10650888 0.12859229 0.1168756 0.1142069
## 753 0.07843137 0.12859229 0.1168756 0.1142069
## 754 0.13781392 0.12859229 0.1168756 0.1142069
## 755 0.10650888 0.12859229 0.1168756 0.1142069
## 756 0.07666667 0.12859229 0.1168756 0.1142069
## 757 0.10650888 0.12859229 0.1168756 0.1142069
## 758 0.10650888 0.12859229 0.1168756 0.1142069
## 759 0.10650888 0.12859229 0.1168756 0.1142069
## 760 0.07843137 0.12859229 0.1082367 0.1142069
## 761 0.13781392 0.05274566 0.1082367 0.1142069
## 762 0.13781392 0.12859229 0.1082367 0.1142069
## 763 0.10650888 0.12859229 0.1168756 0.1142069
## 764 0.07843137 0.12859229 0.1168756 0.1142069
## 765 0.13781392 0.12859229 0.1168756 0.1142069
## 766 0.11364176 0.12859229 0.1168756 0.1142069
## 767 0.10650888 0.12859229 0.1168756 0.1142069
## 768 0.07843137 0.12859229 0.1082367 0.1142069
## 769 0.13958482 0.12859229 0.1040100 0.1040100
## 770 0.13781392 0.12859229 0.1082367 0.1142069
## 771 0.10650888 0.12859229 0.1168756 0.1142069
## 772 0.10650888 0.12859229 0.1082367 0.1142069
## 773 0.13781392 0.12859229 0.1082367 0.1142069
## 774 0.13781392 0.12859229 0.1082367 0.1054972
## 775 0.13781392 0.12859229 0.1168756 0.1142069
## 776 0.13781392 0.12859229 0.1082367 0.1142069
## 777 0.13781392 0.12859229 0.1168756 0.1054972
## 778 0.07666667 0.12859229 0.1082367 0.1142069
## 779 0.11364176 0.05274566 0.1082367 0.1142069
## 780 0.07843137 0.12859229 0.1168756 0.1142069
## 781 0.10650888 0.12859229 0.1082367 0.1142069
## 782 0.07843137 0.12859229 0.1168756 0.1142069
## 783 0.10650888 0.12859229 0.1168756 0.1142069
## 784 0.13781392 0.12859229 0.1168756 0.1142069
## 785 0.07843137 0.12859229 0.1082367 0.1054972
## 786 0.11364176 0.12859229 0.1168756 0.1142069
## 787 0.13781392 0.12859229 0.1082367 0.1142069
## 788 0.13781392 0.12859229 0.1168756 0.1142069
## 789 0.10650888 0.05274566 0.1168756 0.1142069
## 790 0.13781392 0.12859229 0.1168756 0.1142069
## 791 0.10978875 0.12859229 0.1168756 0.1054972
## 792 0.13958482 0.12859229 0.1168756 0.1142069
## 793 0.10650888 0.12859229 0.1168756 0.1142069
## 794 0.13781392 0.12859229 0.1082367 0.1142069
## 795 0.13781392 0.12859229 0.1168756 0.1142069
## 796 0.10978875 0.12859229 0.1040100 0.1040100
## 797 0.10650888 0.12859229 0.1082367 0.1054972
## 798 0.13781392 0.12859229 0.1168756 0.1142069
## 799 0.13781392 0.12859229 0.1168756 0.1142069
## 800 0.10650888 0.12859229 0.1168756 0.1142069
## 801 0.11364176 0.12859229 0.1082367 0.1142069
## 802 0.07843137 0.12859229 0.1082367 0.1142069
## 803 0.11364176 0.12859229 0.1168756 0.1142069
## 804 0.13781392 0.12859229 0.1168756 0.1142069
## 805 0.07843137 0.05274566 0.1082367 0.1142069
## 806 0.07666667 0.05274566 0.1082367 0.1142069
## 807 0.13781392 0.12859229 0.1168756 0.1142069
## 808 0.10978875 0.12859229 0.1082367 0.1142069
## 809 0.10650888 0.12859229 0.1082367 0.1142069
## 810 0.10650888 0.05274566 0.1168756 0.1142069
## 811 0.10650888 0.12859229 0.1168756 0.1142069
## 812 0.13781392 0.12859229 0.1168756 0.1142069
## 813 0.11364176 0.12859229 0.1168756 0.1054972
## 814 0.10650888 0.12859229 0.1168756 0.1142069
## 815 0.13781392 0.12859229 0.1168756 0.1142069
## 816 0.10650888 0.12859229 0.1168756 0.1142069
## 817 0.10978875 0.12859229 0.1082367 0.1054972
## 818 0.10978875 0.12859229 0.1168756 0.1054972
## 819 0.10978875 0.12859229 0.1168756 0.1142069
## 820 0.07843137 0.12859229 0.1168756 0.1142069
## 821 0.10978875 0.12859229 0.1168756 0.1142069
## 822 0.11364176 0.12859229 0.1082367 0.1142069
## 823 0.07666667 0.05274566 0.1082367 0.1142069
## 824 0.10650888 0.12859229 0.1082367 0.1142069
## 825 0.11364176 0.12859229 0.1082367 0.1142069
## 826 0.07666667 0.05274566 0.1168756 0.1142069
## 827 0.13781392 0.12859229 0.1082367 0.1142069
## 828 0.10650888 0.12859229 0.1168756 0.1142069
## 829 0.10978875 0.05274566 0.1168756 0.1142069
## 830 0.10978875 0.05274566 0.1082367 0.1142069
## 831 0.11364176 0.12859229 0.1168756 0.1142069
## 832 0.10650888 0.12859229 0.1168756 0.1142069
## 833 0.10650888 0.12859229 0.1168756 0.1054972
## 834 0.11364176 0.12859229 0.1168756 0.1054972
## 835 0.13781392 0.12859229 0.1082367 0.1142069
## 836 0.13781392 0.12859229 0.1082367 0.1054972
## 837 0.07843137 0.12859229 0.1082367 0.1142069
## 838 0.10978875 0.05274566 0.1168756 0.1142069
## 839 0.13958482 0.12859229 0.1168756 0.1142069
## 840 0.13781392 0.12859229 0.1082367 0.1142069
## 841 0.10650888 0.12859229 0.1082367 0.1142069
## 842 0.10650888 0.12859229 0.1082367 0.1142069
## 843 0.07666667 0.12859229 0.1082367 0.1054972
## 844 0.11364176 0.12859229 0.1082367 0.1142069
## 845 0.10978875 0.05274566 0.1082367 0.1142069
## 846 0.11364176 0.12859229 0.1168756 0.1142069
## 847 0.07843137 0.12859229 0.1168756 0.1142069
## 848 0.10650888 0.12859229 0.1168756 0.1142069
## 849 0.13781392 0.12859229 0.1168756 0.1054972
## 850 0.07843137 0.12859229 0.1168756 0.1142069
## 851 0.10650888 0.12859229 0.1040100 0.1040100
## 852 0.10650888 0.12859229 0.1082367 0.1142069
## 853 0.13781392 0.12859229 0.1168756 0.1142069
## 854 0.11364176 0.05274566 0.1168756 0.1054972
## 855 0.13781392 0.12859229 0.1082367 0.1142069
## 856 0.07843137 0.12859229 0.1168756 0.1142069
## 857 0.10650888 0.12859229 0.1168756 0.1142069
## 858 0.10650888 0.12859229 0.1168756 0.1142069
## 859 0.10650888 0.12859229 0.1082367 0.1054972
## 860 0.07666667 0.05274566 0.1168756 0.1142069
## 861 0.10650888 0.12859229 0.1168756 0.1142069
## 862 0.13781392 0.12859229 0.1082367 0.1142069
## 863 0.10978875 0.12859229 0.1168756 0.1054972
## 864 0.07843137 0.05274566 0.1168756 0.1142069
## 865 0.10650888 0.12859229 0.1082367 0.1142069
## 866 0.07843137 0.12859229 0.1082367 0.1142069
## 867 0.13781392 0.12859229 0.1168756 0.1142069
## 868 0.10978875 0.12859229 0.1082367 0.1142069
## 869 0.10978875 0.12859229 0.1168756 0.1142069
## 870 0.13781392 0.12859229 0.1082367 0.1142069
## 871 0.11364176 0.12859229 0.1168756 0.1142069
## 872 0.13958482 0.12859229 0.1168756 0.1142069
## 873 0.13781392 0.12859229 0.1082367 0.1142069
## 874 0.13781392 0.12859229 0.1082367 0.1142069
## 875 0.07843137 0.12859229 0.1168756 0.1054972
## 876 0.10650888 0.12859229 0.1168756 0.1142069
## 877 0.10650888 0.12859229 0.1168756 0.1142069
## 878 0.13781392 0.12859229 0.1082367 0.1142069
## 879 0.10650888 0.12859229 0.1082367 0.1142069
## 880 0.10650888 0.12859229 0.1168756 0.1142069
## 881 0.10978875 0.12859229 0.1082367 0.1142069
## 882 0.13781392 0.12859229 0.1168756 0.1142069
## 883 0.11364176 0.12859229 0.1082367 0.1142069
## 884 0.13781392 0.12859229 0.1082367 0.1054972
## 885 0.13958482 0.12859229 0.1168756 0.1054972
## 886 0.07843137 0.12859229 0.1082367 0.1054972
## 887 0.10650888 0.12859229 0.1168756 0.1054972
## 888 0.10978875 0.12859229 0.1168756 0.1142069
## 889 0.10650888 0.12859229 0.1168756 0.1142069
## 890 0.10650888 0.12859229 0.1168756 0.1142069
## 891 0.07843137 0.05274566 0.1168756 0.1142069
## 892 0.13781392 0.12859229 0.1168756 0.1142069
## 893 0.13781392 0.12859229 0.1082367 0.1142069
## 894 0.13781392 0.12859229 0.1082367 0.1142069
## 895 0.13781392 0.12859229 0.1082367 0.1142069
## 896 0.11364176 0.12859229 0.1082367 0.1142069
## 897 0.10978875 0.12859229 0.1168756 0.1142069
## 898 0.11364176 0.12859229 0.1168756 0.1142069
## 899 0.10978875 0.05274566 0.1168756 0.1142069
## 900 0.07843137 0.12859229 0.1082367 0.1142069
## 901 0.10650888 0.12859229 0.1168756 0.1142069
## 902 0.13781392 0.12859229 0.1082367 0.1054972
## 903 0.10650888 0.12859229 0.1082367 0.1142069
## 904 0.13781392 0.05274566 0.1082367 0.1142069
## 905 0.13781392 0.12859229 0.1082367 0.1142069
## 906 0.10650888 0.12859229 0.1168756 0.1142069
## 907 0.07843137 0.12859229 0.1168756 0.1142069
## 908 0.10978875 0.12859229 0.1082367 0.1142069
## 909 0.10650888 0.12859229 0.1168756 0.1142069
## 910 0.13781392 0.12859229 0.1168756 0.1142069
## 911 0.13781392 0.12859229 0.1082367 0.1142069
## 912 0.10650888 0.12859229 0.1040100 0.1040100
## 913 0.13781392 0.12859229 0.1082367 0.1054972
## 914 0.13781392 0.12859229 0.1168756 0.1142069
## 915 0.07843137 0.12859229 0.1168756 0.1142069
## 916 0.07843137 0.05274566 0.1082367 0.1142069
## 917 0.07843137 0.05274566 0.1082367 0.1142069
## 918 0.10978875 0.05274566 0.1082367 0.1142069
## 919 0.10650888 0.12859229 0.1082367 0.1054972
## 920 0.10650888 0.12859229 0.1082367 0.1142069
## 921 0.10978875 0.12859229 0.1168756 0.1142069
## 922 0.10978875 0.12859229 0.1082367 0.1054972
## 923 0.10650888 0.12859229 0.1082367 0.1142069
## 924 0.13781392 0.12859229 0.1168756 0.1142069
## 925 0.10650888 0.12859229 0.1082367 0.1142069
## 926 0.10650888 0.12859229 0.1168756 0.1142069
## 927 0.07666667 0.12859229 0.1168756 0.1054972
## 928 0.07666667 0.12859229 0.1082367 0.1142069
## 929 0.10650888 0.12859229 0.1168756 0.1142069
## 930 0.11364176 0.12859229 0.1082367 0.1142069
## 931 0.10650888 0.12859229 0.1168756 0.1142069
## 932 0.07843137 0.12859229 0.1082367 0.1054972
## 933 0.10978875 0.12859229 0.1082367 0.1054972
## 934 0.13781392 0.12859229 0.1082367 0.1054972
## 935 0.11364176 0.12859229 0.1168756 0.1054972
## 936 0.11364176 0.12859229 0.1040100 0.1040100
## 937 0.13781392 0.12859229 0.1168756 0.1142069
## 938 0.13781392 0.12859229 0.1082367 0.1142069
## 939 0.13781392 0.12859229 0.1082367 0.1142069
## 940 0.10650888 0.12859229 0.1082367 0.1142069
## 941 0.10978875 0.12859229 0.1168756 0.1142069
## 942 0.07843137 0.12859229 0.1168756 0.1054972
## 943 0.07843137 0.12859229 0.1168756 0.1142069
## 944 0.10650888 0.12859229 0.1168756 0.1142069
## 945 0.10650888 0.12859229 0.1082367 0.1142069
## 946 0.10650888 0.12859229 0.1168756 0.1142069
## 947 0.10650888 0.12859229 0.1082367 0.1142069
## 948 0.13781392 0.12859229 0.1082367 0.1054972
## 949 0.10650888 0.12859229 0.1082367 0.1142069
## 950 0.10650888 0.12859229 0.1082367 0.1142069
## 951 0.10650888 0.12859229 0.1168756 0.1142069
## 952 0.10650888 0.12859229 0.1082367 0.1142069
## 953 0.10650888 0.12859229 0.1168756 0.1142069
## 954 0.11364176 0.05274566 0.1168756 0.1142069
## 955 0.10650888 0.12859229 0.1168756 0.1142069
## 956 0.13781392 0.12859229 0.1082367 0.1142069
## 957 0.13781392 0.12859229 0.1168756 0.1142069
## 958 0.10650888 0.05274566 0.1082367 0.1142069
## 959 0.10650888 0.12859229 0.1168756 0.1142069
## 960 0.10978875 0.12859229 0.1082367 0.1142069
## 961 0.13781392 0.12859229 0.1040100 0.1040100
## 962 0.10650888 0.05274566 0.1168756 0.1142069
## 963 0.13781392 0.12859229 0.1082367 0.1142069
## 964 0.11364176 0.12859229 0.1168756 0.1142069
## 965 0.10650888 0.12859229 0.1082367 0.1142069
## 966 0.07666667 0.12859229 0.1082367 0.1142069
## 967 0.13781392 0.12859229 0.1168756 0.1142069
## 968 0.13781392 0.12859229 0.1168756 0.1054972
## 969 0.13781392 0.12859229 0.1082367 0.1142069
## 970 0.13781392 0.12859229 0.1082367 0.1054972
## 971 0.13781392 0.12859229 0.1082367 0.1054972
## 972 0.10650888 0.12859229 0.1082367 0.1142069
## 973 0.07666667 0.12859229 0.1168756 0.1142069
## 974 0.10650888 0.12859229 0.1040100 0.1040100
## 975 0.13781392 0.12859229 0.1082367 0.1142069
## 976 0.13958482 0.12859229 0.1082367 0.1142069
## 977 0.13781392 0.12859229 0.1168756 0.1142069
## 978 0.13781392 0.12859229 0.1168756 0.1142069
## 979 0.07843137 0.12859229 0.1168756 0.1142069
## 980 0.10978875 0.12859229 0.1082367 0.1142069
## 981 0.13781392 0.12859229 0.1082367 0.1142069
## 982 0.10978875 0.12859229 0.1082367 0.1142069
## 983 0.10650888 0.12859229 0.1040100 0.1040100
## 984 0.13781392 0.12859229 0.1082367 0.1142069
## 985 0.10650888 0.05274566 0.1168756 0.1054972
## 986 0.10650888 0.12859229 0.1168756 0.1142069
## 987 0.13781392 0.12859229 0.1168756 0.1142069
## 988 0.07843137 0.12859229 0.1168756 0.1142069
## 989 0.07843137 0.12859229 0.1168756 0.1142069
## 990 0.11364176 0.12859229 0.1168756 0.1142069
## 991 0.10650888 0.12859229 0.1082367 0.1142069
## 992 0.10650888 0.12859229 0.1168756 0.1142069
## 993 0.11364176 0.12859229 0.1168756 0.1142069
## 994 0.10650888 0.12859229 0.1168756 0.1142069
## 995 0.13781392 0.12859229 0.1168756 0.1142069
## 996 0.10978875 0.12859229 0.1082367 0.1142069
## 997 0.10650888 0.12859229 0.1168756 0.1142069
## 998 0.10650888 0.12859229 0.1082367 0.1142069
## 999 0.13781392 0.12859229 0.1082367 0.1142069
## 1000 0.13958482 0.12859229 0.1168756 0.1142069
## 1001 0.10978875 0.05274566 0.1040100 0.1040100
## 1002 0.07843137 0.12859229 0.1082367 0.1054972
## 1003 0.11364176 0.12859229 0.1168756 0.1142069
## 1004 0.13781392 0.12859229 0.1082367 0.1054972
## 1005 0.10978875 0.05274566 0.1082367 0.1142069
## 1006 0.10650888 0.12859229 0.1168756 0.1142069
## 1007 0.11364176 0.05274566 0.1168756 0.1142069
## 1008 0.13781392 0.12859229 0.1168756 0.1054972
## 1009 0.13781392 0.12859229 0.1168756 0.1142069
## 1010 0.10650888 0.12859229 0.1082367 0.1142069
## 1011 0.10650888 0.12859229 0.1082367 0.1142069
## 1012 0.10978875 0.12859229 0.1082367 0.1142069
## 1013 0.13781392 0.12859229 0.1082367 0.1142069
## 1014 0.10650888 0.12859229 0.1082367 0.1142069
## 1015 0.13781392 0.12859229 0.1168756 0.1054972
## 1016 0.10978875 0.12859229 0.1082367 0.1054972
## 1017 0.10978875 0.05274566 0.1082367 0.1142069
## 1018 0.11364176 0.12859229 0.1168756 0.1142069
## 1019 0.10650888 0.12859229 0.1168756 0.1054972
## 1020 0.13781392 0.12859229 0.1082367 0.1142069
## 1021 0.07843137 0.12859229 0.1082367 0.1142069
## 1022 0.07666667 0.12859229 0.1168756 0.1142069
## 1023 0.07843137 0.12859229 0.1168756 0.1142069
## 1024 0.10650888 0.12859229 0.1082367 0.1142069
## 1025 0.13781392 0.12859229 0.1040100 0.1040100
## 1026 0.10650888 0.05274566 0.1168756 0.1142069
## 1027 0.11364176 0.12859229 0.1168756 0.1142069
## 1028 0.13781392 0.12859229 0.1168756 0.1054972
## 1029 0.10650888 0.12859229 0.1168756 0.1142069
## 1030 0.13781392 0.12859229 0.1082367 0.1054972
## 1031 0.13781392 0.12859229 0.1168756 0.1142069
## 1032 0.13781392 0.12859229 0.1082367 0.1142069
## 1033 0.07843137 0.12859229 0.1168756 0.1142069
## 1034 0.10650888 0.12859229 0.1168756 0.1142069
## 1035 0.13781392 0.12859229 0.1082367 0.1142069
## 1036 0.11364176 0.12859229 0.1168756 0.1142069
## 1037 0.13781392 0.12859229 0.1168756 0.1142069
## 1038 0.13781392 0.12859229 0.1082367 0.1142069
## 1039 0.11364176 0.12859229 0.1168756 0.1054972
## 1040 0.13781392 0.12859229 0.1168756 0.1142069
## 1041 0.10650888 0.12859229 0.1082367 0.1142069
## 1042 0.13781392 0.12859229 0.1168756 0.1142069
## 1043 0.10978875 0.12859229 0.1168756 0.1142069
## 1044 0.07843137 0.12859229 0.1168756 0.1142069
## 1045 0.13781392 0.12859229 0.1168756 0.1142069
## 1046 0.13781392 0.12859229 0.1082367 0.1142069
## 1047 0.13958482 0.12859229 0.1168756 0.1142069
## 1048 0.07666667 0.05274566 0.1082367 0.1142069
## 1049 0.10978875 0.05274566 0.1082367 0.1054972
## 1050 0.10650888 0.12859229 0.1168756 0.1142069
## 1051 0.13781392 0.12859229 0.1040100 0.1040100
## 1052 0.13958482 0.12859229 0.1082367 0.1142069
## 1053 0.13781392 0.12859229 0.1168756 0.1054972
## 1054 0.11364176 0.12859229 0.1168756 0.1142069
## 1055 0.13781392 0.12859229 0.1082367 0.1142069
## 1056 0.11364176 0.12859229 0.1082367 0.1142069
## 1057 0.11364176 0.12859229 0.1168756 0.1054972
## 1058 0.13958482 0.05274566 0.1168756 0.1142069
## 1059 0.10650888 0.12859229 0.1168756 0.1142069
## 1060 0.10650888 0.12859229 0.1082367 0.1054972
## 1061 0.07843137 0.12859229 0.1168756 0.1142069
## 1062 0.10978875 0.12859229 0.1082367 0.1142069
## 1063 0.10978875 0.05274566 0.1168756 0.1142069
## 1064 0.13781392 0.12859229 0.1168756 0.1142069
## 1065 0.07666667 0.12859229 0.1168756 0.1142069
## 1066 0.10978875 0.12859229 0.1168756 0.1142069
## 1067 0.10650888 0.12859229 0.1168756 0.1142069
## 1068 0.10650888 0.12859229 0.1082367 0.1054972
## 1069 0.10650888 0.12859229 0.1082367 0.1142069
## 1070 0.10978875 0.05274566 0.1082367 0.1142069
## 1071 0.13781392 0.12859229 0.1082367 0.1142069
## 1072 0.10650888 0.12859229 0.1040100 0.1040100
## 1073 0.10650888 0.12859229 0.1168756 0.1142069
## 1074 0.11364176 0.12859229 0.1168756 0.1142069
## 1075 0.13781392 0.12859229 0.1082367 0.1142069
## 1076 0.07666667 0.12859229 0.1082367 0.1142069
## 1077 0.10650888 0.05274566 0.1168756 0.1142069
## 1078 0.10650888 0.05274566 0.1082367 0.1142069
## 1079 0.13781392 0.12859229 0.1168756 0.1142069
## 1080 0.13958482 0.12859229 0.1168756 0.1142069
## 1081 0.10650888 0.12859229 0.1082367 0.1142069
## 1082 0.10650888 0.12859229 0.1082367 0.1054972
## 1083 0.10650888 0.12859229 0.1168756 0.1142069
## 1084 0.07843137 0.12859229 0.1082367 0.1142069
## 1085 0.13781392 0.12859229 0.1168756 0.1054972
## 1086 0.07843137 0.12859229 0.1168756 0.1142069
## 1087 0.13781392 0.12859229 0.1168756 0.1142069
## 1088 0.13781392 0.12859229 0.1168756 0.1142069
## 1089 0.07666667 0.05274566 0.1082367 0.1142069
## 1090 0.13781392 0.12859229 0.1168756 0.1142069
## 1091 0.10650888 0.12859229 0.1168756 0.1142069
## 1092 0.07666667 0.12859229 0.1168756 0.1054972
## 1093 0.10978875 0.12859229 0.1082367 0.1142069
## 1094 0.07843137 0.12859229 0.1082367 0.1142069
## 1095 0.13781392 0.12859229 0.1082367 0.1142069
## 1096 0.13958482 0.12859229 0.1082367 0.1142069
## 1097 0.11364176 0.12859229 0.1168756 0.1142069
## 1098 0.10650888 0.12859229 0.1082367 0.1142069
## 1099 0.10650888 0.05274566 0.1168756 0.1142069
## 1100 0.10650888 0.12859229 0.1168756 0.1054972
## 1101 0.10650888 0.05274566 0.1168756 0.1142069
## 1102 0.10650888 0.05274566 0.1082367 0.1142069
## 1103 0.07666667 0.05274566 0.1168756 0.1142069
## 1104 0.13781392 0.12859229 0.1168756 0.1142069
## 1105 0.13781392 0.12859229 0.1168756 0.1142069
## 1106 0.07843137 0.12859229 0.1082367 0.1142069
## 1107 0.13781392 0.12859229 0.1168756 0.1142069
## 1108 0.13781392 0.12859229 0.1168756 0.1142069
## 1109 0.11364176 0.12859229 0.1168756 0.1142069
## 1110 0.13958482 0.12859229 0.1082367 0.1142069
## 1111 0.13781392 0.12859229 0.1168756 0.1142069
## 1112 0.13781392 0.12859229 0.1082367 0.1054972
## 1113 0.10650888 0.12859229 0.1168756 0.1142069
## 1114 0.13781392 0.12859229 0.1168756 0.1142069
## 1115 0.13781392 0.12859229 0.1168756 0.1054972
## 1116 0.13958482 0.12859229 0.1082367 0.1142069
## 1117 0.13781392 0.12859229 0.1082367 0.1142069
## 1118 0.10650888 0.12859229 0.1082367 0.1142069
## 1119 0.13781392 0.12859229 0.1168756 0.1054972
## 1120 0.13781392 0.12859229 0.1168756 0.1142069
## 1121 0.10650888 0.12859229 0.1168756 0.1142069
## 1122 0.07843137 0.05274566 0.1168756 0.1142069
## 1123 0.07843137 0.12859229 0.1082367 0.1054972
## 1124 0.13781392 0.12859229 0.1168756 0.1142069
## 1125 0.10650888 0.12859229 0.1168756 0.1142069
## 1126 0.13781392 0.12859229 0.1082367 0.1054972
## 1127 0.07843137 0.12859229 0.1082367 0.1142069
## 1128 0.10650888 0.12859229 0.1168756 0.1142069
## 1129 0.10650888 0.12859229 0.1168756 0.1142069
## 1130 0.10650888 0.12859229 0.1082367 0.1142069
## 1131 0.13781392 0.12859229 0.1168756 0.1142069
## 1132 0.10650888 0.12859229 0.1168756 0.1142069
## 1133 0.11364176 0.12859229 0.1168756 0.1142069
## 1134 0.11364176 0.12859229 0.1168756 0.1142069
## 1135 0.13781392 0.12859229 0.1168756 0.1054972
## 1136 0.11364176 0.12859229 0.1082367 0.1142069
## 1137 0.13781392 0.05274566 0.1082367 0.1142069
## 1138 0.11364176 0.12859229 0.1082367 0.1142069
## 1139 0.10650888 0.12859229 0.1168756 0.1142069
## 1140 0.10650888 0.12859229 0.1082367 0.1054972
## 1141 0.13781392 0.12859229 0.1168756 0.1142069
## 1142 0.10650888 0.12859229 0.1168756 0.1142069
## 1143 0.13781392 0.12859229 0.1168756 0.1142069
## 1144 0.10650888 0.12859229 0.1168756 0.1142069
## 1145 0.11364176 0.12859229 0.1082367 0.1142069
## 1146 0.11364176 0.12859229 0.1082367 0.1142069
## 1147 0.10650888 0.12859229 0.1168756 0.1142069
## 1148 0.13958482 0.12859229 0.1168756 0.1142069
## 1149 0.13781392 0.12859229 0.1082367 0.1142069
## 1150 0.07843137 0.12859229 0.1168756 0.1142069
## 1151 0.11364176 0.12859229 0.1168756 0.1142069
## 1152 0.10650888 0.12859229 0.1082367 0.1142069
## 1153 0.10650888 0.12859229 0.1040100 0.1040100
## 1154 0.10978875 0.12859229 0.1082367 0.1142069
## 1155 0.07843137 0.12859229 0.1082367 0.1054972
## 1156 0.11364176 0.12859229 0.1082367 0.1142069
## 1157 0.13781392 0.12859229 0.1082367 0.1142069
## 1158 0.07843137 0.12859229 0.1082367 0.1142069
## 1159 0.13958482 0.12859229 0.1082367 0.1142069
## 1160 0.10978875 0.05274566 0.1168756 0.1142069
## 1161 0.13781392 0.12859229 0.1082367 0.1142069
## 1162 0.10650888 0.12859229 0.1082367 0.1142069
## 1163 0.07843137 0.12859229 0.1082367 0.1142069
## 1164 0.13958482 0.12859229 0.1082367 0.1142069
## 1165 0.10650888 0.12859229 0.1168756 0.1054972
## 1166 0.11364176 0.05274566 0.1082367 0.1142069
## 1167 0.07843137 0.12859229 0.1168756 0.1142069
## 1168 0.11364176 0.05274566 0.1082367 0.1142069
## 1169 0.10650888 0.12859229 0.1168756 0.1054972
## 1170 0.11364176 0.12859229 0.1082367 0.1054972
## 1171 0.13781392 0.12859229 0.1168756 0.1142069
## 1172 0.13781392 0.12859229 0.1168756 0.1142069
## 1173 0.11364176 0.12859229 0.1168756 0.1054972
## 1174 0.07666667 0.12859229 0.1082367 0.1142069
## 1175 0.10978875 0.12859229 0.1168756 0.1142069
## 1176 0.07666667 0.12859229 0.1082367 0.1142069
## 1177 0.13958482 0.05274566 0.1168756 0.1142069
## 1178 0.13781392 0.12859229 0.1082367 0.1054972
## 1179 0.13781392 0.12859229 0.1168756 0.1142069
## 1180 0.11364176 0.12859229 0.1168756 0.1142069
## 1181 0.13781392 0.12859229 0.1082367 0.1142069
## 1182 0.10650888 0.12859229 0.1082367 0.1142069
## 1183 0.13781392 0.12859229 0.1082367 0.1054972
## 1184 0.13781392 0.05274566 0.1082367 0.1142069
## 1185 0.07843137 0.12859229 0.1168756 0.1142069
## 1186 0.07843137 0.12859229 0.1168756 0.1142069
## 1187 0.10978875 0.05274566 0.1082367 0.1142069
## 1188 0.11364176 0.12859229 0.1082367 0.1054972
## 1189 0.07843137 0.05274566 0.1168756 0.1142069
## 1190 0.13958482 0.12859229 0.1168756 0.1142069
## 1191 0.11364176 0.12859229 0.1082367 0.1142069
## 1192 0.13781392 0.12859229 0.1082367 0.1142069
## 1193 0.10978875 0.12859229 0.1168756 0.1142069
## 1194 0.10650888 0.12859229 0.1082367 0.1054972
## 1195 0.07843137 0.05274566 0.1082367 0.1142069
## 1196 0.13781392 0.12859229 0.1168756 0.1142069
## 1197 0.13781392 0.12859229 0.1082367 0.1142069
## 1198 0.13958482 0.12859229 0.1082367 0.1142069
## 1199 0.10978875 0.05274566 0.1082367 0.1142069
## 1200 0.13781392 0.12859229 0.1168756 0.1142069
## 1201 0.10650888 0.12859229 0.1082367 0.1142069
## 1202 0.10650888 0.12859229 0.1168756 0.1142069
## 1203 0.13781392 0.12859229 0.1168756 0.1142069
## 1204 0.07843137 0.12859229 0.1168756 0.1142069
## 1205 0.11364176 0.05274566 0.1168756 0.1142069
## 1206 0.13781392 0.12859229 0.1168756 0.1142069
## 1207 0.10978875 0.12859229 0.1040100 0.1040100
## 1208 0.13781392 0.12859229 0.1168756 0.1142069
## 1209 0.13781392 0.12859229 0.1168756 0.1142069
## 1210 0.07843137 0.12859229 0.1168756 0.1054972
## 1211 0.10978875 0.12859229 0.1082367 0.1142069
## 1212 0.07843137 0.12859229 0.1082367 0.1054972
## 1213 0.13958482 0.12859229 0.1168756 0.1142069
## 1214 0.11364176 0.12859229 0.1082367 0.1142069
## 1215 0.07666667 0.12859229 0.1168756 0.1054972
## 1216 0.13781392 0.12859229 0.1082367 0.1142069
## 1217 0.10650888 0.12859229 0.1082367 0.1142069
## 1218 0.13781392 0.12859229 0.1082367 0.1054972
## 1219 0.13781392 0.12859229 0.1168756 0.1142069
## 1220 0.10650888 0.12859229 0.1168756 0.1142069
## 1221 0.11364176 0.12859229 0.1082367 0.1142069
## 1222 0.07843137 0.12859229 0.1082367 0.1054972
## 1223 0.13781392 0.12859229 0.1168756 0.1142069
## 1224 0.10650888 0.12859229 0.1168756 0.1142069
## 1225 0.13781392 0.05274566 0.1168756 0.1142069
## 1226 0.07843137 0.12859229 0.1168756 0.1142069
## 1227 0.13781392 0.12859229 0.1168756 0.1142069
## 1228 0.13958482 0.05274566 0.1168756 0.1142069
## 1229 0.11364176 0.12859229 0.1168756 0.1142069
## 1230 0.13781392 0.12859229 0.1168756 0.1142069
## 1231 0.13781392 0.05274566 0.1082367 0.1142069
## 1232 0.11364176 0.12859229 0.1168756 0.1142069
## 1233 0.10650888 0.12859229 0.1082367 0.1142069
## 1234 0.13958482 0.12859229 0.1168756 0.1142069
## 1235 0.07843137 0.12859229 0.1040100 0.1040100
## 1236 0.13958482 0.12859229 0.1168756 0.1054972
## 1237 0.11364176 0.12859229 0.1168756 0.1142069
## 1238 0.07666667 0.12859229 0.1082367 0.1142069
## 1239 0.10650888 0.12859229 0.1082367 0.1142069
## 1240 0.07843137 0.05274566 0.1082367 0.1142069
## 1241 0.07843137 0.12859229 0.1082367 0.1142069
## 1242 0.13781392 0.12859229 0.1168756 0.1142069
## 1243 0.10978875 0.12859229 0.1168756 0.1142069
## 1244 0.13781392 0.12859229 0.1082367 0.1142069
## 1245 0.13958482 0.12859229 0.1082367 0.1142069
## 1246 0.13781392 0.12859229 0.1168756 0.1142069
## 1247 0.13958482 0.12859229 0.1168756 0.1142069
## 1248 0.13781392 0.12859229 0.1168756 0.1142069
## 1249 0.13958482 0.12859229 0.1168756 0.1142069
## 1250 0.07843137 0.05274566 0.1168756 0.1142069
## 1251 0.10650888 0.12859229 0.1040100 0.1040100
## 1252 0.10650888 0.12859229 0.1082367 0.1142069
## 1253 0.13958482 0.12859229 0.1168756 0.1054972
## 1254 0.07666667 0.12859229 0.1168756 0.1142069
## 1255 0.13781392 0.12859229 0.1168756 0.1142069
## 1256 0.07843137 0.12859229 0.1082367 0.1142069
## 1257 0.07843137 0.12859229 0.1168756 0.1142069
## 1258 0.13781392 0.12859229 0.1168756 0.1142069
## 1259 0.10650888 0.12859229 0.1082367 0.1054972
## 1260 0.10650888 0.05274566 0.1168756 0.1142069
## 1261 0.10650888 0.12859229 0.1168756 0.1142069
## 1262 0.13781392 0.12859229 0.1082367 0.1142069
## 1263 0.13781392 0.12859229 0.1168756 0.1054972
## 1264 0.10650888 0.12859229 0.1168756 0.1142069
## 1265 0.11364176 0.12859229 0.1082367 0.1142069
## 1266 0.13781392 0.12859229 0.1168756 0.1142069
## 1267 0.10650888 0.12859229 0.1040100 0.1040100
## 1268 0.13781392 0.12859229 0.1082367 0.1054972
## 1269 0.10650888 0.12859229 0.1082367 0.1142069
## 1270 0.10650888 0.12859229 0.1082367 0.1054972
## 1271 0.13958482 0.12859229 0.1082367 0.1142069
## 1272 0.13781392 0.12859229 0.1168756 0.1054972
## 1273 0.07666667 0.12859229 0.1168756 0.1142069
## 1274 0.10650888 0.12859229 0.1168756 0.1142069
## 1275 0.10978875 0.12859229 0.1082367 0.1142069
## 1276 0.13781392 0.12859229 0.1168756 0.1142069
## 1277 0.07666667 0.12859229 0.1168756 0.1142069
## 1278 0.11364176 0.12859229 0.1168756 0.1054972
## 1279 0.07843137 0.12859229 0.1168756 0.1142069
## 1280 0.10978875 0.12859229 0.1082367 0.1142069
## 1281 0.10650888 0.12859229 0.1082367 0.1142069
## 1282 0.13781392 0.12859229 0.1168756 0.1054972
## 1283 0.07843137 0.12859229 0.1168756 0.1054972
## 1284 0.07843137 0.12859229 0.1168756 0.1142069
## 1285 0.10650888 0.12859229 0.1168756 0.1142069
## 1286 0.11364176 0.12859229 0.1168756 0.1142069
## 1287 0.13781392 0.12859229 0.1168756 0.1054972
## 1288 0.10650888 0.12859229 0.1082367 0.1142069
## 1289 0.13781392 0.12859229 0.1040100 0.1040100
## 1290 0.13781392 0.12859229 0.1082367 0.1142069
## 1291 0.13781392 0.12859229 0.1168756 0.1142069
## 1292 0.07843137 0.05274566 0.1082367 0.1054972
## 1293 0.07843137 0.12859229 0.1168756 0.1142069
## 1294 0.07843137 0.12859229 0.1168756 0.1142069
## 1295 0.07843137 0.12859229 0.1168756 0.1142069
## 1296 0.13781392 0.12859229 0.1082367 0.1142069
## 1297 0.10978875 0.12859229 0.1082367 0.1142069
## 1298 0.13781392 0.12859229 0.1168756 0.1142069
## 1299 0.10978875 0.05274566 0.1168756 0.1142069
## 1300 0.10978875 0.05274566 0.1082367 0.1142069
## 1301 0.11364176 0.12859229 0.1168756 0.1054972
## 1302 0.11364176 0.12859229 0.1168756 0.1054972
## 1303 0.10650888 0.12859229 0.1168756 0.1142069
## 1304 0.07843137 0.12859229 0.1082367 0.1142069
## 1305 0.10978875 0.05274566 0.1168756 0.1142069
## 1306 0.10650888 0.12859229 0.1168756 0.1142069
## 1307 0.10978875 0.12859229 0.1168756 0.1142069
## 1308 0.13781392 0.12859229 0.1168756 0.1142069
## 1309 0.10650888 0.12859229 0.1168756 0.1142069
## 1310 0.10978875 0.12859229 0.1082367 0.1142069
## 1311 0.10650888 0.12859229 0.1082367 0.1142069
## 1312 0.10650888 0.12859229 0.1082367 0.1054972
## 1313 0.13781392 0.12859229 0.1082367 0.1142069
## 1314 0.10650888 0.05274566 0.1168756 0.1142069
## 1315 0.13781392 0.12859229 0.1168756 0.1054972
## 1316 0.10650888 0.12859229 0.1082367 0.1142069
## 1317 0.11364176 0.12859229 0.1082367 0.1142069
## 1318 0.13781392 0.12859229 0.1082367 0.1142069
## 1319 0.11364176 0.12859229 0.1082367 0.1142069
## 1320 0.07666667 0.05274566 0.1082367 0.1142069
## 1321 0.07843137 0.12859229 0.1082367 0.1142069
## 1322 0.10978875 0.05274566 0.1168756 0.1142069
## 1323 0.10650888 0.12859229 0.1082367 0.1142069
## 1324 0.13781392 0.12859229 0.1168756 0.1054972
## 1325 0.13958482 0.12859229 0.1082367 0.1142069
## 1326 0.10978875 0.12859229 0.1082367 0.1142069
## 1327 0.13781392 0.12859229 0.1082367 0.1142069
## 1328 0.07843137 0.12859229 0.1082367 0.1142069
## 1329 0.10650888 0.12859229 0.1082367 0.1142069
## 1330 0.10650888 0.12859229 0.1168756 0.1142069
## 1331 0.10650888 0.12859229 0.1168756 0.1054972
## 1332 0.10650888 0.12859229 0.1082367 0.1142069
## 1333 0.13781392 0.12859229 0.1168756 0.1142069
## 1334 0.13781392 0.12859229 0.1168756 0.1142069
## 1335 0.13781392 0.12859229 0.1168756 0.1142069
## 1336 0.07843137 0.12859229 0.1168756 0.1142069
## 1337 0.13781392 0.12859229 0.1168756 0.1142069
## 1338 0.10650888 0.12859229 0.1168756 0.1142069
## 1339 0.10978875 0.12859229 0.1082367 0.1142069
## 1340 0.11364176 0.12859229 0.1168756 0.1142069
## 1341 0.10650888 0.12859229 0.1168756 0.1054972
## 1342 0.13781392 0.05274566 0.1082367 0.1142069
## 1343 0.07843137 0.12859229 0.1168756 0.1142069
## 1344 0.10650888 0.12859229 0.1082367 0.1142069
## 1345 0.13781392 0.12859229 0.1168756 0.1142069
## 1346 0.13781392 0.12859229 0.1168756 0.1142069
## 1347 0.13781392 0.12859229 0.1082367 0.1142069
## 1348 0.13781392 0.12859229 0.1040100 0.1040100
## 1349 0.13958482 0.12859229 0.1168756 0.1142069
## 1350 0.10650888 0.12859229 0.1082367 0.1142069
## 1351 0.13781392 0.12859229 0.1082367 0.1142069
## 1352 0.11364176 0.12859229 0.1082367 0.1142069
## 1353 0.13958482 0.05274566 0.1082367 0.1142069
## 1354 0.07843137 0.12859229 0.1082367 0.1142069
## 1355 0.10650888 0.12859229 0.1168756 0.1142069
## 1356 0.13781392 0.05274566 0.1082367 0.1142069
## 1357 0.13781392 0.12859229 0.1168756 0.1142069
## 1358 0.10650888 0.12859229 0.1168756 0.1142069
## 1359 0.13781392 0.12859229 0.1082367 0.1142069
## 1360 0.07843137 0.05274566 0.1168756 0.1142069
## 1361 0.07843137 0.12859229 0.1082367 0.1142069
## 1362 0.10650888 0.12859229 0.1082367 0.1142069
## 1363 0.13781392 0.12859229 0.1082367 0.1142069
## 1364 0.13781392 0.12859229 0.1082367 0.1142069
## 1365 0.10650888 0.12859229 0.1082367 0.1142069
## 1366 0.13781392 0.12859229 0.1168756 0.1142069
## 1367 0.13781392 0.12859229 0.1168756 0.1054972
## 1368 0.13781392 0.12859229 0.1168756 0.1142069
## 1369 0.13781392 0.12859229 0.1168756 0.1142069
## 1370 0.10650888 0.12859229 0.1168756 0.1142069
## 1371 0.13781392 0.12859229 0.1168756 0.1142069
## 1372 0.07843137 0.12859229 0.1168756 0.1054972
## 1373 0.10650888 0.12859229 0.1040100 0.1040100
## 1374 0.10650888 0.05274566 0.1168756 0.1142069
## 1375 0.10650888 0.12859229 0.1082367 0.1142069
## 1376 0.10978875 0.05274566 0.1168756 0.1142069
## 1377 0.07666667 0.05274566 0.1082367 0.1142069
## 1378 0.07843137 0.12859229 0.1040100 0.1040100
## 1379 0.10650888 0.12859229 0.1040100 0.1040100
## 1380 0.10978875 0.12859229 0.1082367 0.1142069
## 1381 0.07666667 0.12859229 0.1082367 0.1054972
## 1382 0.13781392 0.12859229 0.1082367 0.1054972
## 1383 0.07843137 0.12859229 0.1168756 0.1142069
## 1384 0.07666667 0.12859229 0.1168756 0.1142069
## 1385 0.10650888 0.12859229 0.1082367 0.1054972
## 1386 0.07843137 0.05274566 0.1082367 0.1142069
## 1387 0.10978875 0.12859229 0.1082367 0.1142069
## 1388 0.13781392 0.12859229 0.1168756 0.1142069
## 1389 0.10650888 0.12859229 0.1168756 0.1142069
## 1390 0.07843137 0.12859229 0.1168756 0.1142069
## 1391 0.13781392 0.12859229 0.1168756 0.1142069
## 1392 0.07843137 0.12859229 0.1168756 0.1142069
## 1393 0.10650888 0.05274566 0.1082367 0.1142069
## 1394 0.07843137 0.12859229 0.1082367 0.1142069
## 1395 0.13781392 0.12859229 0.1168756 0.1142069
## 1396 0.13781392 0.12859229 0.1168756 0.1142069
## 1397 0.13781392 0.12859229 0.1168756 0.1054972
## 1398 0.11364176 0.12859229 0.1082367 0.1142069
## 1399 0.07843137 0.12859229 0.1168756 0.1142069
## 1400 0.13781392 0.12859229 0.1082367 0.1142069
## 1401 0.10650888 0.12859229 0.1082367 0.1142069
## 1402 0.13958482 0.12859229 0.1082367 0.1142069
## 1403 0.13781392 0.12859229 0.1168756 0.1142069
## 1404 0.07843137 0.12859229 0.1168756 0.1054972
## 1405 0.13781392 0.12859229 0.1168756 0.1054972
## 1406 0.07843137 0.12859229 0.1082367 0.1142069
## 1407 0.10650888 0.12859229 0.1168756 0.1142069
## 1408 0.11364176 0.12859229 0.1082367 0.1142069
## 1409 0.13781392 0.12859229 0.1168756 0.1142069
## 1410 0.10650888 0.12859229 0.1082367 0.1054972
## 1411 0.13781392 0.12859229 0.1168756 0.1142069
## 1412 0.10650888 0.12859229 0.1082367 0.1054972
## 1413 0.13781392 0.12859229 0.1168756 0.1054972
## 1414 0.11364176 0.12859229 0.1168756 0.1142069
## 1415 0.07666667 0.12859229 0.1082367 0.1142069
## 1416 0.10978875 0.12859229 0.1168756 0.1142069
## 1417 0.07843137 0.12859229 0.1082367 0.1142069
## 1418 0.10650888 0.12859229 0.1082367 0.1142069
## 1419 0.13781392 0.12859229 0.1168756 0.1142069
## 1420 0.13781392 0.12859229 0.1082367 0.1142069
## 1421 0.10650888 0.12859229 0.1082367 0.1142069
## 1422 0.10978875 0.12859229 0.1168756 0.1142069
## 1423 0.13958482 0.12859229 0.1168756 0.1054972
## 1424 0.13781392 0.12859229 0.1082367 0.1142069
## 1425 0.13781392 0.12859229 0.1082367 0.1142069
## 1426 0.07843137 0.12859229 0.1082367 0.1142069
## 1427 0.13781392 0.12859229 0.1082367 0.1142069
## 1428 0.10650888 0.12859229 0.1082367 0.1054972
## 1429 0.13781392 0.12859229 0.1040100 0.1040100
## 1430 0.10650888 0.12859229 0.1082367 0.1142069
## 1431 0.13781392 0.12859229 0.1082367 0.1142069
## 1432 0.13781392 0.12859229 0.1082367 0.1054972
## 1433 0.10650888 0.12859229 0.1168756 0.1142069
## 1434 0.10650888 0.12859229 0.1168756 0.1142069
## 1435 0.13781392 0.12859229 0.1082367 0.1142069
## 1436 0.10650888 0.12859229 0.1168756 0.1142069
## 1437 0.11364176 0.12859229 0.1082367 0.1142069
## 1438 0.11364176 0.12859229 0.1168756 0.1142069
## 1439 0.07843137 0.05274566 0.1168756 0.1142069
## 1440 0.10650888 0.12859229 0.1082367 0.1142069
## 1441 0.13781392 0.12859229 0.1082367 0.1142069
## 1442 0.13781392 0.12859229 0.1082367 0.1142069
## 1443 0.07843137 0.12859229 0.1168756 0.1054972
## 1444 0.10650888 0.12859229 0.1082367 0.1142069
## 1445 0.13781392 0.12859229 0.1168756 0.1054972
## 1446 0.07666667 0.12859229 0.1168756 0.1142069
## 1447 0.10650888 0.12859229 0.1082367 0.1142069
## 1448 0.07843137 0.12859229 0.1082367 0.1142069
## 1449 0.13781392 0.12859229 0.1082367 0.1142069
## 1450 0.07843137 0.12859229 0.1168756 0.1142069
## 1451 0.10650888 0.12859229 0.1082367 0.1054972
## 1452 0.07666667 0.12859229 0.1168756 0.1142069
## 1453 0.07843137 0.12859229 0.1082367 0.1142069
## 1454 0.13958482 0.12859229 0.1168756 0.1142069
## 1455 0.13781392 0.12859229 0.1082367 0.1142069
## 1456 0.10978875 0.12859229 0.1168756 0.1142069
## 1457 0.07666667 0.12859229 0.1082367 0.1142069
## 1458 0.10650888 0.12859229 0.1082367 0.1142069
## 1459 0.10650888 0.12859229 0.1082367 0.1142069
## 1460 0.10650888 0.12859229 0.1168756 0.1142069
## 1461 0.10650888 0.12859229 0.1168756 0.1142069
## 1462 0.11364176 0.12859229 0.1082367 0.1142069
## 1463 0.07666667 0.12859229 0.1082367 0.1142069
## 1464 0.13781392 0.12859229 0.1082367 0.1142069
## 1465 0.10978875 0.05274566 0.1168756 0.1142069
## 1466 0.13781392 0.05274566 0.1168756 0.1142069
## 1467 0.10650888 0.12859229 0.1168756 0.1142069
## 1468 0.13781392 0.12859229 0.1082367 0.1142069
## 1469 0.07843137 0.12859229 0.1082367 0.1142069
## 1470 0.07843137 0.12859229 0.1168756 0.1142069
## 1471 0.13781392 0.12859229 0.1082367 0.1142069
## 1472 0.10978875 0.12859229 0.1168756 0.1142069
## 1473 0.11364176 0.12859229 0.1040100 0.1040100
## 1474 0.07843137 0.12859229 0.1168756 0.1054972
## 1475 0.07666667 0.12859229 0.1168756 0.1142069
## 1476 0.07843137 0.05274566 0.1168756 0.1054972
## 1477 0.11364176 0.12859229 0.1082367 0.1142069
## 1478 0.07843137 0.12859229 0.1082367 0.1142069
## 1479 0.07666667 0.05274566 0.1082367 0.1142069
## 1480 0.07843137 0.12859229 0.1168756 0.1142069
## 1481 0.11364176 0.12859229 0.1168756 0.1142069
## 1482 0.10650888 0.12859229 0.1082367 0.1142069
## 1483 0.10650888 0.12859229 0.1082367 0.1142069
## 1484 0.13781392 0.12859229 0.1168756 0.1142069
## 1485 0.07666667 0.12859229 0.1082367 0.1142069
## 1486 0.07843137 0.05274566 0.1168756 0.1142069
## 1487 0.10650888 0.12859229 0.1082367 0.1142069
## 1488 0.11364176 0.12859229 0.1168756 0.1054972
## 1489 0.07843137 0.12859229 0.1168756 0.1142069
## 1490 0.10978875 0.12859229 0.1082367 0.1054972
## 1491 0.07843137 0.12859229 0.1168756 0.1142069
## 1492 0.10650888 0.12859229 0.1168756 0.1142069
## 1493 0.10978875 0.12859229 0.1168756 0.1142069
## 1494 0.13781392 0.12859229 0.1082367 0.1142069
## 1495 0.10978875 0.12859229 0.1082367 0.1142069
## 1496 0.13781392 0.12859229 0.1082367 0.1142069
## 1497 0.13781392 0.12859229 0.1168756 0.1054972
## 1498 0.13781392 0.12859229 0.1082367 0.1142069
## 1499 0.10978875 0.12859229 0.1168756 0.1054972
## 1500 0.10650888 0.05274566 0.1168756 0.1142069
## 1501 0.13781392 0.12859229 0.1168756 0.1054972
## 1502 0.13958482 0.05274566 0.1168756 0.1142069
## 1503 0.11364176 0.12859229 0.1168756 0.1142069
## 1504 0.11364176 0.12859229 0.1168756 0.1142069
## 1505 0.07666667 0.12859229 0.1082367 0.1142069
## 1506 0.10978875 0.12859229 0.1168756 0.1142069
## 1507 0.10650888 0.12859229 0.1168756 0.1142069
## 1508 0.10978875 0.12859229 0.1168756 0.1142069
## 1509 0.13781392 0.12859229 0.1168756 0.1054972
## 1510 0.07843137 0.05274566 0.1168756 0.1142069
## 1511 0.10978875 0.12859229 0.1168756 0.1054972
## 1512 0.10650888 0.12859229 0.1168756 0.1054972
## 1513 0.10650888 0.12859229 0.1082367 0.1142069
## 1514 0.07843137 0.12859229 0.1082367 0.1054972
## 1515 0.13781392 0.12859229 0.1168756 0.1142069
## 1516 0.10650888 0.12859229 0.1082367 0.1142069
## 1517 0.10978875 0.05274566 0.1168756 0.1142069
## 1518 0.11364176 0.12859229 0.1168756 0.1142069
## 1519 0.10650888 0.12859229 0.1040100 0.1040100
## 1520 0.10650888 0.12859229 0.1040100 0.1040100
## 1521 0.10650888 0.05274566 0.1168756 0.1054972
## 1522 0.11364176 0.12859229 0.1168756 0.1142069
## 1523 0.07843137 0.12859229 0.1082367 0.1054972
## 1524 0.11364176 0.12859229 0.1082367 0.1142069
## 1525 0.07666667 0.05274566 0.1168756 0.1142069
## 1526 0.13958482 0.12859229 0.1168756 0.1142069
## 1527 0.07843137 0.12859229 0.1082367 0.1142069
## 1528 0.13781392 0.12859229 0.1082367 0.1142069
## 1529 0.10978875 0.12859229 0.1168756 0.1142069
## 1530 0.10650888 0.12859229 0.1168756 0.1054972
## 1531 0.07843137 0.12859229 0.1082367 0.1142069
## 1532 0.13958482 0.12859229 0.1082367 0.1142069
## 1533 0.10978875 0.12859229 0.1082367 0.1142069
## 1534 0.10650888 0.12859229 0.1168756 0.1142069
## 1535 0.10650888 0.12859229 0.1082367 0.1142069
## 1536 0.13781392 0.12859229 0.1082367 0.1142069
## 1537 0.13958482 0.05274566 0.1168756 0.1142069
## 1538 0.11364176 0.12859229 0.1082367 0.1142069
## 1539 0.07843137 0.12859229 0.1082367 0.1054972
## 1540 0.13781392 0.12859229 0.1082367 0.1142069
## 1541 0.13781392 0.12859229 0.1168756 0.1142069
## 1542 0.07843137 0.05274566 0.1082367 0.1142069
## 1543 0.10978875 0.12859229 0.1168756 0.1142069
## 1544 0.13781392 0.12859229 0.1168756 0.1142069
## 1545 0.10978875 0.12859229 0.1082367 0.1142069
## 1546 0.13781392 0.12859229 0.1168756 0.1142069
## 1547 0.07843137 0.12859229 0.1082367 0.1142069
## 1548 0.10650888 0.12859229 0.1168756 0.1142069
## 1549 0.10650888 0.12859229 0.1168756 0.1054972
## 1550 0.10978875 0.05274566 0.1168756 0.1142069
## 1551 0.10650888 0.12859229 0.1082367 0.1142069
## 1552 0.07843137 0.12859229 0.1168756 0.1142069
## 1553 0.11364176 0.12859229 0.1082367 0.1054972
## 1554 0.13781392 0.12859229 0.1082367 0.1142069
## 1555 0.13781392 0.12859229 0.1168756 0.1142069
## 1556 0.07843137 0.12859229 0.1082367 0.1142069
## 1557 0.10978875 0.12859229 0.1168756 0.1142069
## 1558 0.10978875 0.12859229 0.1168756 0.1142069
## 1559 0.07843137 0.12859229 0.1168756 0.1054972
## 1560 0.10650888 0.12859229 0.1168756 0.1054972
## 1561 0.13781392 0.12859229 0.1168756 0.1142069
## 1562 0.13781392 0.12859229 0.1168756 0.1142069
## 1563 0.13781392 0.12859229 0.1168756 0.1142069
## 1564 0.10650888 0.12859229 0.1168756 0.1142069
## 1565 0.13781392 0.12859229 0.1168756 0.1142069
## 1566 0.07843137 0.12859229 0.1168756 0.1142069
## 1567 0.11364176 0.12859229 0.1168756 0.1142069
## 1568 0.13958482 0.12859229 0.1168756 0.1142069
## 1569 0.10650888 0.12859229 0.1168756 0.1054972
## 1570 0.11364176 0.05274566 0.1082367 0.1142069
## 1571 0.07843137 0.12859229 0.1082367 0.1142069
## 1572 0.07843137 0.12859229 0.1082367 0.1142069
## 1573 0.13781392 0.12859229 0.1082367 0.1142069
## 1574 0.10650888 0.12859229 0.1168756 0.1054972
## 1575 0.11364176 0.12859229 0.1168756 0.1142069
## 1576 0.10650888 0.12859229 0.1082367 0.1142069
## 1577 0.13781392 0.12859229 0.1168756 0.1142069
## 1578 0.07843137 0.12859229 0.1168756 0.1142069
## 1579 0.10650888 0.12859229 0.1082367 0.1142069
## 1580 0.13781392 0.12859229 0.1168756 0.1142069
## 1581 0.07843137 0.12859229 0.1168756 0.1142069
## 1582 0.10650888 0.12859229 0.1168756 0.1142069
## 1583 0.10650888 0.12859229 0.1082367 0.1142069
## 1584 0.13781392 0.05274566 0.1168756 0.1142069
## 1585 0.10978875 0.12859229 0.1082367 0.1142069
## 1586 0.13781392 0.12859229 0.1082367 0.1054972
## 1587 0.10650888 0.12859229 0.1168756 0.1142069
## 1588 0.11364176 0.12859229 0.1168756 0.1054972
## 1589 0.11364176 0.12859229 0.1168756 0.1142069
## 1590 0.11364176 0.05274566 0.1168756 0.1142069
## 1591 0.13781392 0.12859229 0.1082367 0.1142069
## 1592 0.10650888 0.12859229 0.1082367 0.1054972
## 1593 0.07843137 0.05274566 0.1168756 0.1142069
## 1594 0.13781392 0.12859229 0.1082367 0.1142069
## 1595 0.10978875 0.05274566 0.1082367 0.1142069
## 1596 0.13958482 0.12859229 0.1168756 0.1142069
## 1597 0.10978875 0.12859229 0.1168756 0.1142069
## 1598 0.07843137 0.12859229 0.1082367 0.1142069
## 1599 0.13781392 0.12859229 0.1082367 0.1142069
## 1600 0.07843137 0.12859229 0.1168756 0.1142069
## 1601 0.13781392 0.12859229 0.1082367 0.1142069
## 1602 0.10650888 0.12859229 0.1168756 0.1142069
## 1603 0.11364176 0.12859229 0.1168756 0.1142069
## 1604 0.13781392 0.12859229 0.1168756 0.1054972
## 1605 0.07843137 0.12859229 0.1082367 0.1142069
## 1606 0.10650888 0.12859229 0.1168756 0.1142069
## 1607 0.07843137 0.05274566 0.1168756 0.1054972
## 1608 0.10650888 0.12859229 0.1082367 0.1142069
## 1609 0.10650888 0.12859229 0.1082367 0.1142069
## 1610 0.13781392 0.12859229 0.1040100 0.1040100
## 1611 0.11364176 0.12859229 0.1082367 0.1142069
## 1612 0.11364176 0.12859229 0.1168756 0.1142069
## 1613 0.11364176 0.12859229 0.1168756 0.1142069
## 1614 0.10650888 0.12859229 0.1168756 0.1054972
## 1615 0.10650888 0.12859229 0.1082367 0.1142069
## 1616 0.11364176 0.12859229 0.1082367 0.1142069
## 1617 0.10650888 0.12859229 0.1168756 0.1142069
## 1618 0.07666667 0.12859229 0.1168756 0.1054972
## 1619 0.13781392 0.12859229 0.1168756 0.1142069
## 1620 0.13781392 0.12859229 0.1168756 0.1142069
## 1621 0.13781392 0.12859229 0.1168756 0.1054972
## 1622 0.13781392 0.12859229 0.1168756 0.1142069
## 1623 0.07666667 0.12859229 0.1168756 0.1142069
## 1624 0.10650888 0.12859229 0.1082367 0.1142069
## 1625 0.11364176 0.12859229 0.1168756 0.1142069
## 1626 0.11364176 0.12859229 0.1082367 0.1142069
## 1627 0.11364176 0.12859229 0.1168756 0.1054972
## 1628 0.11364176 0.12859229 0.1082367 0.1142069
## 1629 0.13781392 0.12859229 0.1082367 0.1142069
## 1630 0.13781392 0.12859229 0.1082367 0.1142069
## 1631 0.10650888 0.12859229 0.1168756 0.1142069
## 1632 0.07843137 0.12859229 0.1168756 0.1054972
## 1633 0.13958482 0.05274566 0.1082367 0.1142069
## 1634 0.13958482 0.12859229 0.1168756 0.1142069
## 1635 0.10978875 0.12859229 0.1082367 0.1142069
## 1636 0.13781392 0.12859229 0.1168756 0.1142069
## 1637 0.13781392 0.12859229 0.1082367 0.1142069
## 1638 0.10978875 0.12859229 0.1082367 0.1054972
## 1639 0.10650888 0.12859229 0.1082367 0.1142069
## 1640 0.13781392 0.05274566 0.1082367 0.1142069
## 1641 0.13958482 0.05274566 0.1082367 0.1142069
## 1642 0.10650888 0.12859229 0.1082367 0.1142069
## 1643 0.11364176 0.12859229 0.1082367 0.1142069
## 1644 0.11364176 0.12859229 0.1168756 0.1142069
## 1645 0.07843137 0.12859229 0.1168756 0.1142069
## 1646 0.13958482 0.12859229 0.1168756 0.1142069
## 1647 0.11364176 0.12859229 0.1168756 0.1142069
## 1648 0.10650888 0.12859229 0.1168756 0.1142069
## 1649 0.07666667 0.05274566 0.1082367 0.1142069
## 1650 0.10650888 0.12859229 0.1168756 0.1054972
## 1651 0.10650888 0.12859229 0.1082367 0.1142069
## 1652 0.11364176 0.05274566 0.1082367 0.1142069
## 1653 0.10650888 0.05274566 0.1082367 0.1142069
## 1654 0.10650888 0.12859229 0.1040100 0.1040100
## 1655 0.13781392 0.12859229 0.1040100 0.1040100
## 1656 0.10650888 0.12859229 0.1168756 0.1142069
## 1657 0.10650888 0.12859229 0.1082367 0.1142069
## 1658 0.07843137 0.12859229 0.1082367 0.1054972
## 1659 0.10978875 0.12859229 0.1168756 0.1142069
## 1660 0.07843137 0.12859229 0.1168756 0.1142069
## 1661 0.10978875 0.05274566 0.1082367 0.1054972
## 1662 0.13781392 0.12859229 0.1168756 0.1142069
## 1663 0.10650888 0.12859229 0.1082367 0.1054972
## 1664 0.13781392 0.12859229 0.1168756 0.1054972
## 1665 0.11364176 0.12859229 0.1082367 0.1054972
## 1666 0.07843137 0.12859229 0.1168756 0.1142069
## 1667 0.07843137 0.12859229 0.1168756 0.1142069
## 1668 0.13781392 0.12859229 0.1168756 0.1142069
## 1669 0.10650888 0.12859229 0.1168756 0.1142069
## 1670 0.13781392 0.12859229 0.1082367 0.1142069
## 1671 0.13781392 0.05274566 0.1168756 0.1142069
## 1672 0.11364176 0.12859229 0.1082367 0.1142069
## 1673 0.10650888 0.12859229 0.1168756 0.1142069
## 1674 0.10650888 0.12859229 0.1168756 0.1142069
## 1675 0.13781392 0.12859229 0.1168756 0.1142069
## 1676 0.10650888 0.12859229 0.1082367 0.1142069
## 1677 0.07666667 0.12859229 0.1168756 0.1142069
## 1678 0.10650888 0.12859229 0.1082367 0.1142069
## 1679 0.11364176 0.12859229 0.1168756 0.1142069
## 1680 0.11364176 0.12859229 0.1168756 0.1142069
## 1681 0.10650888 0.12859229 0.1082367 0.1142069
## 1682 0.11364176 0.12859229 0.1082367 0.1142069
## 1683 0.07666667 0.12859229 0.1168756 0.1142069
## 1684 0.07666667 0.12859229 0.1082367 0.1142069
## 1685 0.13958482 0.12859229 0.1082367 0.1054972
## 1686 0.10650888 0.12859229 0.1082367 0.1142069
## 1687 0.07843137 0.12859229 0.1168756 0.1142069
## 1688 0.11364176 0.12859229 0.1082367 0.1142069
## 1689 0.13781392 0.12859229 0.1168756 0.1142069
## 1690 0.10978875 0.12859229 0.1168756 0.1142069
## 1691 0.11364176 0.12859229 0.1168756 0.1142069
## 1692 0.13958482 0.12859229 0.1168756 0.1054972
## 1693 0.13781392 0.12859229 0.1168756 0.1054972
## 1694 0.10650888 0.12859229 0.1082367 0.1142069
## 1695 0.13958482 0.12859229 0.1168756 0.1142069
## 1696 0.10650888 0.12859229 0.1168756 0.1142069
## 1697 0.13781392 0.12859229 0.1168756 0.1142069
## 1698 0.10650888 0.12859229 0.1168756 0.1142069
## 1699 0.13781392 0.12859229 0.1168756 0.1142069
## 1700 0.13781392 0.12859229 0.1082367 0.1142069
## 1701 0.13781392 0.12859229 0.1168756 0.1142069
## 1702 0.13958482 0.12859229 0.1082367 0.1142069
## 1703 0.10978875 0.05274566 0.1082367 0.1142069
## 1704 0.10978875 0.12859229 0.1082367 0.1142069
## 1705 0.10978875 0.12859229 0.1082367 0.1142069
## 1706 0.13781392 0.12859229 0.1168756 0.1142069
## 1707 0.13781392 0.12859229 0.1168756 0.1142069
## 1708 0.10978875 0.12859229 0.1040100 0.1040100
## 1709 0.07666667 0.12859229 0.1168756 0.1142069
## 1710 0.10650888 0.12859229 0.1082367 0.1142069
## 1711 0.07843137 0.05274566 0.1082367 0.1054972
## 1712 0.13781392 0.12859229 0.1168756 0.1142069
## 1713 0.10650888 0.12859229 0.1168756 0.1142069
## 1714 0.13958482 0.12859229 0.1168756 0.1054972
## 1715 0.10650888 0.05274566 0.1082367 0.1142069
## 1716 0.13781392 0.12859229 0.1168756 0.1142069
## 1717 0.10650888 0.12859229 0.1168756 0.1142069
## 1718 0.13781392 0.12859229 0.1168756 0.1142069
## 1719 0.07843137 0.12859229 0.1040100 0.1040100
## 1720 0.13781392 0.12859229 0.1168756 0.1142069
## 1721 0.13781392 0.12859229 0.1082367 0.1142069
## 1722 0.10650888 0.12859229 0.1168756 0.1142069
## 1723 0.10978875 0.12859229 0.1082367 0.1142069
## 1724 0.10650888 0.12859229 0.1082367 0.1142069
## 1725 0.10650888 0.12859229 0.1082367 0.1142069
## 1726 0.10978875 0.05274566 0.1168756 0.1142069
## 1727 0.11364176 0.12859229 0.1082367 0.1142069
## 1728 0.07843137 0.05274566 0.1082367 0.1142069
## 1729 0.10650888 0.05274566 0.1168756 0.1142069
## 1730 0.10650888 0.12859229 0.1082367 0.1142069
## 1731 0.10650888 0.05274566 0.1082367 0.1142069
## 1732 0.07666667 0.05274566 0.1168756 0.1054972
## 1733 0.13781392 0.12859229 0.1168756 0.1142069
## 1734 0.07666667 0.12859229 0.1082367 0.1142069
## 1735 0.11364176 0.12859229 0.1082367 0.1142069
## 1736 0.13781392 0.12859229 0.1082367 0.1142069
## 1737 0.10650888 0.12859229 0.1168756 0.1142069
## 1738 0.10978875 0.12859229 0.1168756 0.1054972
## 1739 0.13781392 0.12859229 0.1082367 0.1142069
## 1740 0.10978875 0.05274566 0.1168756 0.1142069
## 1741 0.10650888 0.12859229 0.1082367 0.1142069
## 1742 0.11364176 0.12859229 0.1168756 0.1054972
## 1743 0.07843137 0.12859229 0.1168756 0.1142069
## 1744 0.13781392 0.12859229 0.1168756 0.1142069
## 1745 0.10650888 0.12859229 0.1082367 0.1142069
## 1746 0.10650888 0.12859229 0.1082367 0.1142069
## 1747 0.10650888 0.12859229 0.1168756 0.1054972
## 1748 0.07843137 0.12859229 0.1168756 0.1142069
## 1749 0.11364176 0.12859229 0.1168756 0.1142069
## 1750 0.11364176 0.12859229 0.1040100 0.1040100
## 1751 0.10650888 0.12859229 0.1168756 0.1142069
## 1752 0.13781392 0.12859229 0.1082367 0.1142069
## 1753 0.13781392 0.12859229 0.1168756 0.1054972
## 1754 0.10650888 0.12859229 0.1082367 0.1142069
## 1755 0.11364176 0.12859229 0.1168756 0.1142069
## 1756 0.13781392 0.12859229 0.1168756 0.1142069
## 1757 0.07843137 0.12859229 0.1082367 0.1142069
## 1758 0.10650888 0.12859229 0.1082367 0.1142069
## 1759 0.10650888 0.12859229 0.1168756 0.1142069
## 1760 0.13781392 0.12859229 0.1082367 0.1054972
## 1761 0.11364176 0.12859229 0.1082367 0.1142069
## 1762 0.13781392 0.12859229 0.1082367 0.1054972
## 1763 0.07843137 0.12859229 0.1082367 0.1142069
## 1764 0.10978875 0.12859229 0.1082367 0.1142069
## 1765 0.11364176 0.12859229 0.1168756 0.1142069
## 1766 0.10978875 0.12859229 0.1082367 0.1142069
## 1767 0.13781392 0.12859229 0.1082367 0.1054972
## 1768 0.10650888 0.12859229 0.1168756 0.1142069
## 1769 0.10650888 0.12859229 0.1168756 0.1142069
## 1770 0.07666667 0.12859229 0.1168756 0.1054972
## 1771 0.07666667 0.12859229 0.1082367 0.1142069
## 1772 0.11364176 0.05274566 0.1082367 0.1142069
## 1773 0.07843137 0.12859229 0.1082367 0.1142069
## 1774 0.10650888 0.05274566 0.1168756 0.1142069
## 1775 0.10650888 0.12859229 0.1168756 0.1142069
## 1776 0.13781392 0.12859229 0.1168756 0.1142069
## 1777 0.10650888 0.12859229 0.1082367 0.1142069
## 1778 0.11364176 0.12859229 0.1168756 0.1142069
## 1779 0.13781392 0.12859229 0.1040100 0.1040100
## 1780 0.07843137 0.05274566 0.1082367 0.1142069
## 1781 0.11364176 0.12859229 0.1082367 0.1142069
## 1782 0.10650888 0.12859229 0.1082367 0.1142069
## 1783 0.11364176 0.12859229 0.1168756 0.1142069
## 1784 0.10650888 0.12859229 0.1168756 0.1054972
## 1785 0.07843137 0.12859229 0.1168756 0.1142069
## 1786 0.10650888 0.12859229 0.1082367 0.1142069
## 1787 0.11364176 0.12859229 0.1168756 0.1142069
## 1788 0.13781392 0.12859229 0.1168756 0.1142069
## 1789 0.07666667 0.12859229 0.1082367 0.1142069
## 1790 0.10650888 0.12859229 0.1168756 0.1142069
## 1791 0.07843137 0.12859229 0.1168756 0.1054972
## 1792 0.10650888 0.12859229 0.1168756 0.1142069
## 1793 0.07843137 0.12859229 0.1168756 0.1142069
## 1794 0.10978875 0.05274566 0.1082367 0.1142069
## 1795 0.11364176 0.12859229 0.1168756 0.1142069
## 1796 0.07843137 0.12859229 0.1168756 0.1142069
## 1797 0.11364176 0.12859229 0.1168756 0.1142069
## 1798 0.07843137 0.05274566 0.1082367 0.1142069
## 1799 0.11364176 0.12859229 0.1168756 0.1142069
## 1800 0.13781392 0.12859229 0.1082367 0.1142069
## 1801 0.07843137 0.05274566 0.1168756 0.1142069
## 1802 0.10650888 0.12859229 0.1168756 0.1142069
## 1803 0.07843137 0.12859229 0.1168756 0.1142069
## 1804 0.07666667 0.12859229 0.1082367 0.1054972
## 1805 0.11364176 0.12859229 0.1168756 0.1142069
## 1806 0.13781392 0.12859229 0.1082367 0.1142069
## 1807 0.10650888 0.12859229 0.1168756 0.1142069
## 1808 0.13781392 0.12859229 0.1082367 0.1054972
## 1809 0.10650888 0.12859229 0.1168756 0.1054972
## 1810 0.13781392 0.12859229 0.1168756 0.1142069
## 1811 0.10978875 0.12859229 0.1082367 0.1142069
## 1812 0.10650888 0.12859229 0.1082367 0.1142069
## 1813 0.10650888 0.12859229 0.1168756 0.1142069
## 1814 0.10650888 0.12859229 0.1168756 0.1142069
## 1815 0.13781392 0.12859229 0.1082367 0.1142069
## 1816 0.07843137 0.12859229 0.1168756 0.1142069
## 1817 0.07843137 0.12859229 0.1168756 0.1142069
## 1818 0.10650888 0.05274566 0.1082367 0.1142069
## 1819 0.13958482 0.12859229 0.1082367 0.1054972
## 1820 0.07843137 0.12859229 0.1168756 0.1142069
## 1821 0.07666667 0.12859229 0.1082367 0.1142069
## 1822 0.13781392 0.12859229 0.1082367 0.1142069
## 1823 0.10978875 0.12859229 0.1168756 0.1142069
## 1824 0.10650888 0.12859229 0.1168756 0.1142069
## 1825 0.11364176 0.12859229 0.1168756 0.1142069
## 1826 0.10978875 0.12859229 0.1168756 0.1142069
## 1827 0.10978875 0.05274566 0.1168756 0.1142069
## 1828 0.13781392 0.12859229 0.1168756 0.1142069
## 1829 0.13781392 0.12859229 0.1168756 0.1142069
## 1830 0.13781392 0.12859229 0.1082367 0.1142069
## 1831 0.07843137 0.05274566 0.1168756 0.1142069
## 1832 0.07843137 0.12859229 0.1168756 0.1142069
## 1833 0.10650888 0.12859229 0.1082367 0.1142069
## 1834 0.10650888 0.12859229 0.1168756 0.1142069
## 1835 0.10650888 0.12859229 0.1168756 0.1142069
## 1836 0.13781392 0.12859229 0.1082367 0.1142069
## 1837 0.13781392 0.12859229 0.1168756 0.1054972
## 1838 0.13781392 0.12859229 0.1168756 0.1054972
## 1839 0.11364176 0.12859229 0.1082367 0.1142069
## 1840 0.10650888 0.12859229 0.1082367 0.1142069
## 1841 0.10978875 0.12859229 0.1168756 0.1142069
## 1842 0.13781392 0.12859229 0.1082367 0.1142069
## 1843 0.10650888 0.12859229 0.1168756 0.1142069
## 1844 0.10978875 0.12859229 0.1168756 0.1142069
## 1845 0.10650888 0.12859229 0.1168756 0.1054972
## 1846 0.07843137 0.05274566 0.1168756 0.1142069
## 1847 0.13781392 0.12859229 0.1168756 0.1142069
## 1848 0.10978875 0.12859229 0.1082367 0.1142069
## 1849 0.07843137 0.12859229 0.1168756 0.1142069
## 1850 0.10978875 0.12859229 0.1082367 0.1142069
## 1851 0.07666667 0.05274566 0.1168756 0.1142069
## 1852 0.07843137 0.12859229 0.1168756 0.1142069
## 1853 0.07666667 0.05274566 0.1168756 0.1142069
## 1854 0.10650888 0.12859229 0.1082367 0.1142069
## 1855 0.11364176 0.12859229 0.1168756 0.1142069
## 1856 0.13781392 0.12859229 0.1082367 0.1142069
## 1857 0.07843137 0.12859229 0.1082367 0.1142069
## 1858 0.10978875 0.12859229 0.1082367 0.1142069
## 1859 0.10978875 0.12859229 0.1082367 0.1054972
## 1860 0.07843137 0.12859229 0.1168756 0.1142069
## 1861 0.10650888 0.12859229 0.1082367 0.1054972
## 1862 0.13958482 0.12859229 0.1168756 0.1142069
## 1863 0.13781392 0.12859229 0.1168756 0.1142069
## 1864 0.07666667 0.05274566 0.1082367 0.1142069
## 1865 0.11364176 0.12859229 0.1040100 0.1040100
## 1866 0.13781392 0.12859229 0.1168756 0.1142069
## 1867 0.10650888 0.12859229 0.1082367 0.1142069
## 1868 0.07666667 0.05274566 0.1168756 0.1142069
## 1869 0.11364176 0.12859229 0.1168756 0.1054972
## 1870 0.11364176 0.12859229 0.1168756 0.1142069
## 1871 0.10978875 0.05274566 0.1168756 0.1142069
## 1872 0.11364176 0.12859229 0.1168756 0.1142069
## 1873 0.10650888 0.12859229 0.1082367 0.1142069
## 1874 0.10650888 0.12859229 0.1082367 0.1054972
## 1875 0.13781392 0.12859229 0.1082367 0.1142069
## 1876 0.13781392 0.12859229 0.1168756 0.1142069
## 1877 0.10650888 0.12859229 0.1168756 0.1142069
## 1878 0.11364176 0.12859229 0.1168756 0.1142069
## 1879 0.07843137 0.12859229 0.1168756 0.1142069
## 1880 0.07843137 0.12859229 0.1168756 0.1142069
## 1881 0.07843137 0.05274566 0.1168756 0.1054972
## 1882 0.13781392 0.12859229 0.1040100 0.1040100
## 1883 0.13781392 0.12859229 0.1082367 0.1054972
## 1884 0.07666667 0.05274566 0.1168756 0.1142069
## 1885 0.10650888 0.12859229 0.1082367 0.1142069
## 1886 0.13781392 0.12859229 0.1168756 0.1142069
## 1887 0.13781392 0.12859229 0.1168756 0.1142069
## 1888 0.10978875 0.12859229 0.1168756 0.1142069
## 1889 0.13781392 0.05274566 0.1168756 0.1142069
## 1890 0.10978875 0.12859229 0.1168756 0.1142069
## 1891 0.10650888 0.12859229 0.1168756 0.1142069
## 1892 0.10650888 0.12859229 0.1168756 0.1142069
## 1893 0.11364176 0.12859229 0.1082367 0.1142069
## 1894 0.13781392 0.12859229 0.1168756 0.1142069
## 1895 0.07666667 0.05274566 0.1082367 0.1142069
## 1896 0.07666667 0.05274566 0.1082367 0.1054972
## 1897 0.13781392 0.12859229 0.1082367 0.1054972
## 1898 0.07666667 0.12859229 0.1082367 0.1142069
## 1899 0.10650888 0.12859229 0.1168756 0.1142069
## 1900 0.07843137 0.12859229 0.1082367 0.1054972
## 1901 0.13781392 0.12859229 0.1082367 0.1054972
## 1902 0.11364176 0.12859229 0.1082367 0.1142069
## 1903 0.11364176 0.12859229 0.1082367 0.1142069
## 1904 0.13781392 0.12859229 0.1082367 0.1142069
## 1905 0.10650888 0.12859229 0.1168756 0.1142069
## 1906 0.10650888 0.12859229 0.1168756 0.1054972
## 1907 0.07666667 0.12859229 0.1168756 0.1142069
## 1908 0.11364176 0.12859229 0.1082367 0.1142069
## 1909 0.10650888 0.12859229 0.1168756 0.1142069
## 1910 0.11364176 0.12859229 0.1168756 0.1142069
## 1911 0.10978875 0.12859229 0.1168756 0.1142069
## 1912 0.10650888 0.12859229 0.1082367 0.1142069
## 1913 0.07843137 0.05274566 0.1082367 0.1142069
## 1914 0.07843137 0.12859229 0.1168756 0.1142069
## 1915 0.11364176 0.12859229 0.1040100 0.1040100
## 1916 0.13958482 0.05274566 0.1082367 0.1054972
## 1917 0.13781392 0.12859229 0.1168756 0.1054972
## 1918 0.13958482 0.12859229 0.1168756 0.1142069
## 1919 0.11364176 0.12859229 0.1082367 0.1142069
## 1920 0.07843137 0.05274566 0.1082367 0.1142069
## 1921 0.10650888 0.12859229 0.1082367 0.1142069
## 1922 0.10650888 0.12859229 0.1082367 0.1142069
## 1923 0.07666667 0.12859229 0.1082367 0.1054972
## 1924 0.11364176 0.12859229 0.1168756 0.1142069
## 1925 0.13781392 0.12859229 0.1082367 0.1142069
## 1926 0.13781392 0.12859229 0.1168756 0.1142069
## 1927 0.07843137 0.12859229 0.1040100 0.1040100
## 1928 0.07843137 0.05274566 0.1082367 0.1142069
## 1929 0.13781392 0.12859229 0.1168756 0.1142069
## 1930 0.13781392 0.12859229 0.1082367 0.1142069
## 1931 0.13958482 0.12859229 0.1168756 0.1054972
## 1932 0.11364176 0.12859229 0.1168756 0.1142069
## 1933 0.07843137 0.12859229 0.1082367 0.1142069
## 1934 0.07843137 0.12859229 0.1082367 0.1142069
## 1935 0.13781392 0.12859229 0.1168756 0.1142069
## 1936 0.13781392 0.12859229 0.1168756 0.1142069
## 1937 0.10650888 0.12859229 0.1082367 0.1142069
## 1938 0.07843137 0.12859229 0.1168756 0.1054972
## 1939 0.10650888 0.12859229 0.1168756 0.1142069
## 1940 0.10650888 0.12859229 0.1168756 0.1054972
## 1941 0.10650888 0.12859229 0.1082367 0.1142069
## 1942 0.13781392 0.12859229 0.1082367 0.1142069
## 1943 0.10650888 0.12859229 0.1168756 0.1054972
## 1944 0.10650888 0.12859229 0.1168756 0.1142069
## 1945 0.11364176 0.12859229 0.1168756 0.1142069
## 1946 0.10650888 0.12859229 0.1082367 0.1142069
## 1947 0.13781392 0.12859229 0.1168756 0.1142069
## 1948 0.13781392 0.12859229 0.1168756 0.1054972
## 1949 0.07843137 0.05274566 0.1168756 0.1142069
## 1950 0.07843137 0.12859229 0.1082367 0.1142069
## 1951 0.13781392 0.12859229 0.1168756 0.1142069
## 1952 0.10650888 0.12859229 0.1082367 0.1142069
## 1953 0.07666667 0.12859229 0.1082367 0.1142069
## 1954 0.10650888 0.12859229 0.1168756 0.1142069
## 1955 0.07843137 0.12859229 0.1168756 0.1142069
## 1956 0.07843137 0.12859229 0.1082367 0.1142069
## 1957 0.10978875 0.12859229 0.1168756 0.1142069
## 1958 0.13958482 0.12859229 0.1082367 0.1142069
## 1959 0.07843137 0.12859229 0.1168756 0.1142069
## 1960 0.07843137 0.12859229 0.1168756 0.1142069
## 1961 0.10978875 0.12859229 0.1082367 0.1142069
## 1962 0.07666667 0.12859229 0.1082367 0.1142069
## 1963 0.13958482 0.12859229 0.1168756 0.1142069
## 1964 0.07843137 0.12859229 0.1082367 0.1142069
## 1965 0.11364176 0.12859229 0.1168756 0.1142069
## 1966 0.13958482 0.12859229 0.1082367 0.1142069
## 1967 0.13781392 0.12859229 0.1168756 0.1142069
## 1968 0.11364176 0.12859229 0.1168756 0.1142069
## 1969 0.13781392 0.12859229 0.1168756 0.1142069
## 1970 0.11364176 0.12859229 0.1168756 0.1142069
## 1971 0.13781392 0.12859229 0.1168756 0.1142069
## 1972 0.10650888 0.12859229 0.1082367 0.1142069
## 1973 0.13781392 0.12859229 0.1082367 0.1142069
## 1974 0.13958482 0.05274566 0.1168756 0.1142069
## 1975 0.13781392 0.12859229 0.1082367 0.1142069
## 1976 0.07843137 0.12859229 0.1168756 0.1142069
## 1977 0.10650888 0.12859229 0.1168756 0.1142069
## 1978 0.10650888 0.12859229 0.1168756 0.1142069
## 1979 0.13781392 0.12859229 0.1082367 0.1142069
## 1980 0.11364176 0.12859229 0.1082367 0.1142069
## 1981 0.07843137 0.12859229 0.1168756 0.1054972
## 1982 0.13781392 0.05274566 0.1168756 0.1142069
## 1983 0.07843137 0.12859229 0.1168756 0.1142069
## 1984 0.13781392 0.12859229 0.1082367 0.1142069
## 1985 0.10650888 0.05274566 0.1168756 0.1142069
## 1986 0.13958482 0.12859229 0.1082367 0.1142069
## 1987 0.13958482 0.12859229 0.1168756 0.1142069
## 1988 0.13781392 0.05274566 0.1082367 0.1142069
## 1989 0.07666667 0.05274566 0.1082367 0.1142069
## 1990 0.13781392 0.12859229 0.1082367 0.1142069
## 1991 0.13781392 0.12859229 0.1168756 0.1054972
## 1992 0.13781392 0.12859229 0.1082367 0.1142069
## 1993 0.10650888 0.12859229 0.1168756 0.1054972
## 1994 0.13781392 0.12859229 0.1168756 0.1142069
## 1995 0.13958482 0.12859229 0.1168756 0.1142069
## 1996 0.10650888 0.12859229 0.1082367 0.1142069
## 1997 0.11364176 0.12859229 0.1168756 0.1142069
## 1998 0.13958482 0.12859229 0.1082367 0.1142069
## 1999 0.13781392 0.12859229 0.1082367 0.1142069
## 2000 0.13958482 0.12859229 0.1168756 0.1142069
## 2001 0.10978875 0.05274566 0.1168756 0.1142069
## 2002 0.10978875 0.12859229 0.1168756 0.1142069
## 2003 0.13781392 0.12859229 0.1082367 0.1142069
## 2004 0.07843137 0.05274566 0.1168756 0.1142069
## 2005 0.13781392 0.12859229 0.1168756 0.1142069
## 2006 0.13781392 0.12859229 0.1082367 0.1142069
## 2007 0.13781392 0.12859229 0.1168756 0.1142069
## 2008 0.13781392 0.12859229 0.1082367 0.1142069
## 2009 0.10650888 0.12859229 0.1168756 0.1142069
## 2010 0.07843137 0.12859229 0.1168756 0.1142069
## 2011 0.10650888 0.05274566 0.1168756 0.1142069
## 2012 0.13781392 0.12859229 0.1082367 0.1142069
## 2013 0.13781392 0.12859229 0.1168756 0.1054972
## 2014 0.13781392 0.12859229 0.1082367 0.1142069
## 2015 0.13781392 0.12859229 0.1082367 0.1142069
## 2016 0.10650888 0.12859229 0.1168756 0.1054972
## 2017 0.10650888 0.12859229 0.1168756 0.1142069
## 2018 0.10650888 0.05274566 0.1168756 0.1142069
## 2019 0.11364176 0.12859229 0.1082367 0.1142069
## 2020 0.13781392 0.12859229 0.1168756 0.1142069
## 2021 0.11364176 0.12859229 0.1168756 0.1142069
## 2022 0.10978875 0.12859229 0.1168756 0.1142069
## 2023 0.10650888 0.12859229 0.1082367 0.1142069
## 2024 0.13781392 0.12859229 0.1168756 0.1142069
## 2025 0.11364176 0.12859229 0.1168756 0.1142069
## 2026 0.13781392 0.12859229 0.1168756 0.1142069
## 2027 0.13958482 0.12859229 0.1082367 0.1142069
## 2028 0.07843137 0.05274566 0.1082367 0.1142069
## 2029 0.13781392 0.12859229 0.1168756 0.1142069
## 2030 0.13781392 0.12859229 0.1168756 0.1054972
## 2031 0.10650888 0.05274566 0.1082367 0.1142069
## 2032 0.11364176 0.12859229 0.1082367 0.1142069
## 2033 0.07843137 0.05274566 0.1082367 0.1142069
## 2034 0.10650888 0.12859229 0.1168756 0.1142069
## 2035 0.13781392 0.12859229 0.1168756 0.1142069
## 2036 0.10650888 0.05274566 0.1168756 0.1142069
## 2037 0.07843137 0.12859229 0.1168756 0.1142069
## 2038 0.07843137 0.12859229 0.1082367 0.1142069
## 2039 0.10650888 0.12859229 0.1082367 0.1054972
## 2040 0.10650888 0.12859229 0.1082367 0.1142069
## 2041 0.07843137 0.12859229 0.1082367 0.1054972
## 2042 0.13781392 0.12859229 0.1168756 0.1142069
## 2043 0.10978875 0.12859229 0.1082367 0.1142069
## 2044 0.07666667 0.12859229 0.1168756 0.1142069
## 2045 0.11364176 0.12859229 0.1082367 0.1054972
## 2046 0.11364176 0.12859229 0.1168756 0.1142069
## 2047 0.13781392 0.12859229 0.1168756 0.1054972
## 2048 0.10978875 0.12859229 0.1082367 0.1142069
## 2049 0.07666667 0.05274566 0.1082367 0.1054972
## 2050 0.07843137 0.12859229 0.1082367 0.1142069
## 2051 0.13781392 0.12859229 0.1168756 0.1142069
## 2052 0.10650888 0.12859229 0.1082367 0.1142069
## 2053 0.10650888 0.12859229 0.1168756 0.1142069
## 2054 0.10650888 0.05274566 0.1082367 0.1142069
## 2055 0.10650888 0.05274566 0.1082367 0.1142069
## 2056 0.10650888 0.12859229 0.1168756 0.1142069
## 2057 0.13781392 0.12859229 0.1168756 0.1142069
## 2058 0.13781392 0.12859229 0.1168756 0.1142069
## 2059 0.07843137 0.12859229 0.1168756 0.1142069
## 2060 0.10978875 0.05274566 0.1168756 0.1142069
## 2061 0.10650888 0.12859229 0.1082367 0.1142069
## 2062 0.10650888 0.12859229 0.1168756 0.1142069
## 2063 0.13958482 0.12859229 0.1082367 0.1142069
## 2064 0.10650888 0.12859229 0.1082367 0.1142069
## 2065 0.07843137 0.12859229 0.1082367 0.1142069
## 2066 0.13781392 0.12859229 0.1082367 0.1142069
## 2067 0.07843137 0.12859229 0.1082367 0.1142069
## 2068 0.10978875 0.05274566 0.1168756 0.1142069
## 2069 0.13781392 0.12859229 0.1082367 0.1054972
## 2070 0.07666667 0.12859229 0.1082367 0.1142069
## 2071 0.11364176 0.12859229 0.1168756 0.1142069
## 2072 0.10650888 0.12859229 0.1082367 0.1142069
## 2073 0.10978875 0.12859229 0.1168756 0.1142069
## 2074 0.13781392 0.12859229 0.1082367 0.1142069
## 2075 0.07843137 0.12859229 0.1082367 0.1142069
## 2076 0.10650888 0.12859229 0.1082367 0.1142069
## 2077 0.10650888 0.12859229 0.1082367 0.1142069
## 2078 0.11364176 0.12859229 0.1168756 0.1142069
## 2079 0.10650888 0.12859229 0.1168756 0.1142069
## 2080 0.07843137 0.12859229 0.1168756 0.1142069
## 2081 0.07843137 0.12859229 0.1082367 0.1142069
## 2082 0.13781392 0.12859229 0.1082367 0.1142069
## 2083 0.10978875 0.05274566 0.1168756 0.1142069
## 2084 0.13781392 0.12859229 0.1168756 0.1142069
## 2085 0.13781392 0.12859229 0.1168756 0.1142069
## 2086 0.07843137 0.12859229 0.1168756 0.1142069
## 2087 0.10650888 0.12859229 0.1168756 0.1142069
## 2088 0.13781392 0.12859229 0.1082367 0.1142069
## 2089 0.10650888 0.12859229 0.1168756 0.1142069
## 2090 0.07843137 0.12859229 0.1168756 0.1142069
## 2091 0.10978875 0.12859229 0.1168756 0.1142069
## 2092 0.10650888 0.12859229 0.1168756 0.1142069
## 2093 0.07843137 0.05274566 0.1082367 0.1054972
## 2094 0.13781392 0.12859229 0.1168756 0.1142069
## 2095 0.13781392 0.12859229 0.1168756 0.1054972
## 2096 0.13781392 0.12859229 0.1082367 0.1054972
## 2097 0.10978875 0.05274566 0.1040100 0.1040100
## 2098 0.07666667 0.12859229 0.1082367 0.1142069
## 2099 0.07666667 0.12859229 0.1168756 0.1142069
## 2100 0.07843137 0.05274566 0.1168756 0.1142069
## 2101 0.10650888 0.12859229 0.1168756 0.1142069
## 2102 0.11364176 0.12859229 0.1082367 0.1142069
## 2103 0.10650888 0.05274566 0.1082367 0.1142069
## 2104 0.10650888 0.12859229 0.1168756 0.1142069
## 2105 0.10650888 0.12859229 0.1082367 0.1142069
## 2106 0.13781392 0.12859229 0.1082367 0.1142069
## 2107 0.13781392 0.12859229 0.1168756 0.1142069
## 2108 0.13781392 0.12859229 0.1082367 0.1142069
## 2109 0.13781392 0.12859229 0.1040100 0.1040100
## 2110 0.10650888 0.12859229 0.1082367 0.1142069
## 2111 0.07666667 0.12859229 0.1168756 0.1142069
## 2112 0.10650888 0.12859229 0.1082367 0.1142069
## 2113 0.10650888 0.12859229 0.1082367 0.1142069
## 2114 0.10650888 0.12859229 0.1082367 0.1142069
## 2115 0.13781392 0.12859229 0.1168756 0.1142069
## 2116 0.13781392 0.12859229 0.1168756 0.1054972
## 2117 0.10978875 0.12859229 0.1040100 0.1040100
## 2118 0.13781392 0.12859229 0.1168756 0.1054972
## 2119 0.13781392 0.12859229 0.1168756 0.1142069
## 2120 0.07666667 0.12859229 0.1168756 0.1142069
## 2121 0.10650888 0.12859229 0.1168756 0.1142069
## 2122 0.13781392 0.12859229 0.1082367 0.1142069
## 2123 0.13781392 0.12859229 0.1082367 0.1142069
## 2124 0.10650888 0.12859229 0.1082367 0.1142069
## 2125 0.07666667 0.12859229 0.1082367 0.1142069
## 2126 0.10650888 0.12859229 0.1168756 0.1142069
## 2127 0.10650888 0.12859229 0.1168756 0.1142069
## 2128 0.07666667 0.05274566 0.1082367 0.1054972
## 2129 0.11364176 0.12859229 0.1168756 0.1142069
## 2130 0.10650888 0.12859229 0.1168756 0.1142069
## 2131 0.10650888 0.12859229 0.1082367 0.1142069
## 2132 0.07666667 0.12859229 0.1082367 0.1054972
## 2133 0.10650888 0.12859229 0.1082367 0.1142069
## 2134 0.13958482 0.12859229 0.1040100 0.1040100
## 2135 0.10650888 0.12859229 0.1168756 0.1142069
## 2136 0.10650888 0.05274566 0.1082367 0.1142069
## 2137 0.10650888 0.05274566 0.1082367 0.1142069
## 2138 0.10650888 0.12859229 0.1168756 0.1142069
## 2139 0.13781392 0.12859229 0.1168756 0.1142069
## 2140 0.07843137 0.05274566 0.1168756 0.1142069
## 2141 0.11364176 0.12859229 0.1168756 0.1142069
## 2142 0.13781392 0.12859229 0.1168756 0.1142069
## 2143 0.07843137 0.12859229 0.1168756 0.1142069
## 2144 0.10650888 0.12859229 0.1082367 0.1142069
## 2145 0.10650888 0.12859229 0.1082367 0.1142069
## 2146 0.07666667 0.05274566 0.1082367 0.1142069
## 2147 0.11364176 0.12859229 0.1082367 0.1142069
## 2148 0.07843137 0.12859229 0.1082367 0.1142069
## 2149 0.13781392 0.12859229 0.1082367 0.1142069
## 2150 0.13958482 0.12859229 0.1082367 0.1142069
## 2151 0.13781392 0.12859229 0.1082367 0.1142069
## 2152 0.07843137 0.12859229 0.1168756 0.1054972
## 2153 0.07843137 0.12859229 0.1168756 0.1142069
## 2154 0.07843137 0.12859229 0.1168756 0.1142069
## 2155 0.13781392 0.12859229 0.1040100 0.1040100
## 2156 0.13781392 0.12859229 0.1082367 0.1142069
## 2157 0.07843137 0.12859229 0.1082367 0.1142069
## 2158 0.07843137 0.12859229 0.1168756 0.1142069
## 2159 0.13781392 0.12859229 0.1168756 0.1142069
## 2160 0.13781392 0.12859229 0.1082367 0.1142069
## 2161 0.11364176 0.12859229 0.1168756 0.1142069
## 2162 0.07843137 0.12859229 0.1168756 0.1142069
## 2163 0.10650888 0.12859229 0.1082367 0.1142069
## 2164 0.13781392 0.05274566 0.1082367 0.1142069
## 2165 0.10650888 0.12859229 0.1082367 0.1142069
## 2166 0.07843137 0.12859229 0.1168756 0.1142069
## 2167 0.11364176 0.12859229 0.1168756 0.1054972
## 2168 0.07666667 0.12859229 0.1168756 0.1142069
## 2169 0.10650888 0.12859229 0.1168756 0.1142069
## 2170 0.07843137 0.12859229 0.1168756 0.1142069
## 2171 0.11364176 0.12859229 0.1168756 0.1142069
## 2172 0.07843137 0.12859229 0.1168756 0.1142069
## 2173 0.10978875 0.12859229 0.1082367 0.1142069
## 2174 0.13958482 0.05274566 0.1082367 0.1054972
## 2175 0.10978875 0.05274566 0.1082367 0.1054972
## 2176 0.07843137 0.12859229 0.1168756 0.1142069
## 2177 0.07843137 0.12859229 0.1168756 0.1142069
## 2178 0.13781392 0.12859229 0.1082367 0.1142069
## 2179 0.10650888 0.12859229 0.1082367 0.1142069
## 2180 0.10650888 0.12859229 0.1082367 0.1142069
## 2181 0.10650888 0.12859229 0.1168756 0.1142069
## 2182 0.10978875 0.12859229 0.1082367 0.1142069
## 2183 0.13958482 0.12859229 0.1082367 0.1142069
## 2184 0.13781392 0.12859229 0.1168756 0.1142069
## 2185 0.07843137 0.12859229 0.1082367 0.1142069
## 2186 0.10650888 0.05274566 0.1168756 0.1054972
## 2187 0.13958482 0.12859229 0.1082367 0.1142069
## 2188 0.10650888 0.12859229 0.1082367 0.1142069
## 2189 0.10978875 0.12859229 0.1168756 0.1142069
## 2190 0.10978875 0.12859229 0.1082367 0.1142069
## 2191 0.10650888 0.12859229 0.1082367 0.1054972
## 2192 0.10650888 0.12859229 0.1168756 0.1142069
## 2193 0.10650888 0.12859229 0.1082367 0.1142069
## 2194 0.13781392 0.12859229 0.1168756 0.1142069
## 2195 0.10650888 0.12859229 0.1168756 0.1054972
## 2196 0.10650888 0.12859229 0.1082367 0.1142069
## 2197 0.11364176 0.12859229 0.1168756 0.1142069
## 2198 0.13958482 0.12859229 0.1168756 0.1054972
## 2199 0.13781392 0.12859229 0.1168756 0.1054972
## 2200 0.13781392 0.12859229 0.1168756 0.1142069
## 2201 0.13781392 0.12859229 0.1168756 0.1142069
## 2202 0.10650888 0.05274566 0.1082367 0.1142069
## 2203 0.07843137 0.12859229 0.1168756 0.1142069
## 2204 0.10978875 0.12859229 0.1082367 0.1142069
## 2205 0.13781392 0.12859229 0.1168756 0.1054972
## 2206 0.07843137 0.05274566 0.1082367 0.1142069
## 2207 0.13781392 0.12859229 0.1168756 0.1142069
## 2208 0.07843137 0.05274566 0.1168756 0.1054972
## 2209 0.13781392 0.12859229 0.1168756 0.1142069
## 2210 0.10650888 0.12859229 0.1168756 0.1054972
## 2211 0.07843137 0.12859229 0.1168756 0.1142069
## 2212 0.13781392 0.12859229 0.1168756 0.1142069
## 2213 0.07666667 0.12859229 0.1082367 0.1142069
## 2214 0.10650888 0.12859229 0.1168756 0.1054972
## 2215 0.07666667 0.05274566 0.1082367 0.1054972
## 2216 0.13781392 0.12859229 0.1082367 0.1054972
## 2217 0.10650888 0.05274566 0.1082367 0.1142069
## 2218 0.13781392 0.12859229 0.1082367 0.1142069
## 2219 0.11364176 0.12859229 0.1082367 0.1142069
## 2220 0.13781392 0.12859229 0.1168756 0.1142069
## 2221 0.13781392 0.12859229 0.1082367 0.1054972
## 2222 0.13781392 0.12859229 0.1168756 0.1142069
## 2223 0.10978875 0.12859229 0.1082367 0.1054972
## 2224 0.07843137 0.12859229 0.1082367 0.1142069
## 2225 0.13781392 0.12859229 0.1168756 0.1142069
## 2226 0.10978875 0.05274566 0.1082367 0.1142069
## 2227 0.10650888 0.12859229 0.1168756 0.1142069
## 2228 0.10650888 0.12859229 0.1082367 0.1142069
## 2229 0.13781392 0.12859229 0.1082367 0.1142069
## 2230 0.11364176 0.12859229 0.1168756 0.1142069
## 2231 0.13781392 0.12859229 0.1082367 0.1142069
## 2232 0.10650888 0.12859229 0.1168756 0.1142069
## 2233 0.10978875 0.12859229 0.1082367 0.1142069
## 2234 0.10650888 0.12859229 0.1082367 0.1142069
## 2235 0.07843137 0.12859229 0.1168756 0.1142069
## 2236 0.13781392 0.12859229 0.1168756 0.1142069
## 2237 0.11364176 0.12859229 0.1082367 0.1142069
## 2238 0.07843137 0.05274566 0.1168756 0.1142069
## 2239 0.10650888 0.05274566 0.1168756 0.1142069
## 2240 0.10650888 0.12859229 0.1168756 0.1142069
## 2241 0.07666667 0.05274566 0.1168756 0.1142069
## 2242 0.13781392 0.12859229 0.1168756 0.1142069
## 2243 0.11364176 0.12859229 0.1168756 0.1142069
## 2244 0.10978875 0.12859229 0.1168756 0.1142069
## 2245 0.13781392 0.12859229 0.1082367 0.1142069
## 2246 0.13958482 0.05274566 0.1168756 0.1142069
## 2247 0.07843137 0.12859229 0.1082367 0.1142069
## 2248 0.13781392 0.12859229 0.1168756 0.1142069
## 2249 0.11364176 0.05274566 0.1168756 0.1142069
## 2250 0.13781392 0.12859229 0.1168756 0.1054972
## 2251 0.13781392 0.12859229 0.1168756 0.1142069
## 2252 0.13781392 0.12859229 0.1168756 0.1142069
## 2253 0.10650888 0.05274566 0.1168756 0.1142069
## 2254 0.13781392 0.12859229 0.1168756 0.1142069
## 2255 0.13781392 0.05274566 0.1168756 0.1142069
## 2256 0.13781392 0.12859229 0.1082367 0.1142069
## 2257 0.13781392 0.12859229 0.1082367 0.1142069
## 2258 0.13781392 0.12859229 0.1168756 0.1142069
## 2259 0.11364176 0.12859229 0.1168756 0.1142069
## 2260 0.10650888 0.12859229 0.1082367 0.1142069
## 2261 0.13781392 0.05274566 0.1082367 0.1142069
## 2262 0.13781392 0.12859229 0.1168756 0.1054972
## 2263 0.13781392 0.12859229 0.1082367 0.1142069
## 2264 0.13781392 0.05274566 0.1168756 0.1142069
## 2265 0.13958482 0.12859229 0.1082367 0.1142069
## 2266 0.10650888 0.05274566 0.1082367 0.1142069
## 2267 0.13958482 0.12859229 0.1082367 0.1142069
## 2268 0.07666667 0.12859229 0.1082367 0.1142069
## 2269 0.13958482 0.12859229 0.1082367 0.1142069
## 2270 0.10650888 0.12859229 0.1168756 0.1142069
## 2271 0.10650888 0.05274566 0.1168756 0.1142069
## 2272 0.10650888 0.12859229 0.1168756 0.1142069
## 2273 0.13781392 0.12859229 0.1168756 0.1054972
## 2274 0.11364176 0.12859229 0.1168756 0.1142069
## 2275 0.07843137 0.05274566 0.1168756 0.1142069
## 2276 0.07843137 0.12859229 0.1082367 0.1142069
## 2277 0.10650888 0.12859229 0.1168756 0.1142069
## 2278 0.11364176 0.12859229 0.1082367 0.1142069
## 2279 0.10650888 0.05274566 0.1082367 0.1142069
## 2280 0.10978875 0.12859229 0.1168756 0.1142069
## 2281 0.11364176 0.12859229 0.1168756 0.1142069
## 2282 0.13781392 0.12859229 0.1168756 0.1142069
## 2283 0.10650888 0.12859229 0.1082367 0.1142069
## 2284 0.10650888 0.12859229 0.1168756 0.1142069
## 2285 0.10650888 0.12859229 0.1082367 0.1142069
## 2286 0.10650888 0.12859229 0.1168756 0.1142069
## 2287 0.13781392 0.12859229 0.1168756 0.1054972
## 2288 0.10650888 0.12859229 0.1168756 0.1142069
## 2289 0.13781392 0.12859229 0.1040100 0.1040100
## 2290 0.10650888 0.12859229 0.1168756 0.1142069
## 2291 0.13781392 0.12859229 0.1168756 0.1142069
## 2292 0.07843137 0.12859229 0.1082367 0.1054972
## 2293 0.13781392 0.12859229 0.1082367 0.1142069
## 2294 0.13781392 0.12859229 0.1168756 0.1142069
## 2295 0.13781392 0.12859229 0.1082367 0.1142069
## 2296 0.10978875 0.12859229 0.1168756 0.1142069
## 2297 0.07843137 0.12859229 0.1082367 0.1142069
## 2298 0.10650888 0.12859229 0.1168756 0.1142069
## 2299 0.10650888 0.05274566 0.1168756 0.1142069
## 2300 0.07843137 0.12859229 0.1082367 0.1142069
## 2301 0.13781392 0.12859229 0.1082367 0.1142069
## 2302 0.13781392 0.12859229 0.1168756 0.1142069
## 2303 0.10978875 0.12859229 0.1168756 0.1142069
## 2304 0.13781392 0.12859229 0.1082367 0.1142069
## 2305 0.13781392 0.12859229 0.1168756 0.1142069
## 2306 0.13781392 0.12859229 0.1082367 0.1142069
## 2307 0.10650888 0.12859229 0.1082367 0.1054972
## 2308 0.13781392 0.12859229 0.1168756 0.1054972
## 2309 0.13781392 0.12859229 0.1168756 0.1142069
## 2310 0.07843137 0.12859229 0.1168756 0.1142069
## 2311 0.10650888 0.12859229 0.1082367 0.1142069
## 2312 0.07843137 0.12859229 0.1168756 0.1142069
## 2313 0.11364176 0.12859229 0.1168756 0.1142069
## 2314 0.13781392 0.12859229 0.1168756 0.1142069
## 2315 0.10650888 0.12859229 0.1082367 0.1142069
## 2316 0.13781392 0.12859229 0.1168756 0.1142069
## 2317 0.07666667 0.05274566 0.1082367 0.1142069
## 2318 0.10650888 0.05274566 0.1082367 0.1142069
## 2319 0.11364176 0.12859229 0.1082367 0.1142069
## 2320 0.11364176 0.12859229 0.1168756 0.1054972
## 2321 0.11364176 0.12859229 0.1168756 0.1142069
## 2322 0.10650888 0.12859229 0.1082367 0.1142069
## 2323 0.07666667 0.05274566 0.1168756 0.1142069
## 2324 0.10650888 0.12859229 0.1168756 0.1142069
## 2325 0.13781392 0.12859229 0.1082367 0.1142069
## 2326 0.10650888 0.12859229 0.1082367 0.1142069
## 2327 0.10650888 0.12859229 0.1082367 0.1054972
## 2328 0.13781392 0.12859229 0.1168756 0.1142069
## 2329 0.10650888 0.12859229 0.1168756 0.1142069
## 2330 0.13958482 0.12859229 0.1168756 0.1142069
## 2331 0.13781392 0.12859229 0.1082367 0.1142069
## 2332 0.10978875 0.12859229 0.1168756 0.1142069
## 2333 0.13781392 0.12859229 0.1168756 0.1142069
## 2334 0.11364176 0.12859229 0.1168756 0.1142069
## 2335 0.10978875 0.12859229 0.1082367 0.1054972
## 2336 0.07843137 0.12859229 0.1168756 0.1142069
## 2337 0.11364176 0.12859229 0.1168756 0.1142069
## 2338 0.13781392 0.12859229 0.1082367 0.1142069
## 2339 0.13781392 0.12859229 0.1168756 0.1142069
## 2340 0.10650888 0.12859229 0.1082367 0.1142069
## 2341 0.11364176 0.12859229 0.1082367 0.1142069
## 2342 0.11364176 0.12859229 0.1082367 0.1142069
## 2343 0.13781392 0.12859229 0.1168756 0.1054972
## 2344 0.10978875 0.05274566 0.1168756 0.1142069
## 2345 0.10650888 0.12859229 0.1082367 0.1054972
## 2346 0.10650888 0.12859229 0.1168756 0.1142069
## 2347 0.13781392 0.12859229 0.1082367 0.1142069
## 2348 0.13781392 0.12859229 0.1082367 0.1142069
## 2349 0.07666667 0.12859229 0.1082367 0.1142069
## 2350 0.10650888 0.12859229 0.1082367 0.1142069
## 2351 0.10650888 0.12859229 0.1082367 0.1142069
## 2352 0.10650888 0.12859229 0.1168756 0.1142069
## 2353 0.10978875 0.05274566 0.1082367 0.1142069
## 2354 0.13958482 0.12859229 0.1168756 0.1054972
## 2355 0.13781392 0.12859229 0.1168756 0.1142069
## 2356 0.10650888 0.12859229 0.1082367 0.1142069
## 2357 0.10978875 0.05274566 0.1168756 0.1054972
## 2358 0.13781392 0.12859229 0.1168756 0.1142069
## 2359 0.13781392 0.12859229 0.1082367 0.1054972
## 2360 0.13781392 0.12859229 0.1168756 0.1054972
## 2361 0.13781392 0.12859229 0.1082367 0.1054972
## 2362 0.10978875 0.05274566 0.1082367 0.1142069
## 2363 0.13781392 0.12859229 0.1168756 0.1142069
## 2364 0.07843137 0.12859229 0.1168756 0.1142069
## 2365 0.13781392 0.12859229 0.1168756 0.1142069
## 2366 0.07843137 0.12859229 0.1168756 0.1142069
## 2367 0.13781392 0.12859229 0.1168756 0.1142069
## 2368 0.10650888 0.12859229 0.1168756 0.1142069
## 2369 0.11364176 0.05274566 0.1082367 0.1142069
## 2370 0.13781392 0.12859229 0.1082367 0.1142069
## 2371 0.13781392 0.12859229 0.1082367 0.1142069
## 2372 0.07666667 0.05274566 0.1082367 0.1054972
## 2373 0.10650888 0.12859229 0.1082367 0.1142069
## 2374 0.10650888 0.12859229 0.1168756 0.1054972
## 2375 0.10650888 0.12859229 0.1168756 0.1142069
## 2376 0.13781392 0.12859229 0.1082367 0.1142069
## 2377 0.07843137 0.12859229 0.1168756 0.1054972
## 2378 0.13781392 0.12859229 0.1082367 0.1142069
## 2379 0.07843137 0.12859229 0.1168756 0.1142069
## 2380 0.11364176 0.05274566 0.1082367 0.1142069
## 2381 0.10650888 0.12859229 0.1082367 0.1142069
## 2382 0.07666667 0.12859229 0.1168756 0.1142069
## 2383 0.13781392 0.12859229 0.1082367 0.1054972
## 2384 0.11364176 0.12859229 0.1082367 0.1142069
## 2385 0.10650888 0.05274566 0.1168756 0.1054972
## 2386 0.13781392 0.12859229 0.1082367 0.1142069
## 2387 0.13781392 0.12859229 0.1168756 0.1054972
## 2388 0.11364176 0.12859229 0.1082367 0.1142069
## 2389 0.10650888 0.12859229 0.1168756 0.1142069
## 2390 0.10650888 0.12859229 0.1168756 0.1142069
## 2391 0.07843137 0.05274566 0.1082367 0.1142069
## 2392 0.13781392 0.12859229 0.1168756 0.1142069
## 2393 0.07843137 0.12859229 0.1082367 0.1142069
## 2394 0.13781392 0.12859229 0.1082367 0.1142069
## 2395 0.10650888 0.12859229 0.1168756 0.1054972
## 2396 0.13958482 0.12859229 0.1168756 0.1142069
## 2397 0.13781392 0.05274566 0.1168756 0.1142069
## 2398 0.10650888 0.12859229 0.1168756 0.1142069
## 2399 0.10650888 0.12859229 0.1082367 0.1142069
## 2400 0.13781392 0.12859229 0.1168756 0.1054972
## 2401 0.07843137 0.12859229 0.1082367 0.1054972
## 2402 0.10650888 0.12859229 0.1168756 0.1142069
## 2403 0.13781392 0.12859229 0.1168756 0.1142069
## 2404 0.13781392 0.12859229 0.1168756 0.1142069
## 2405 0.10978875 0.12859229 0.1168756 0.1142069
## 2406 0.10650888 0.12859229 0.1168756 0.1142069
## 2407 0.10650888 0.12859229 0.1082367 0.1142069
## 2408 0.07666667 0.12859229 0.1082367 0.1142069
## 2409 0.10650888 0.12859229 0.1168756 0.1054972
## 2410 0.07843137 0.12859229 0.1168756 0.1142069
## 2411 0.13781392 0.12859229 0.1168756 0.1142069
## 2412 0.11364176 0.12859229 0.1082367 0.1054972
## 2413 0.07843137 0.05274566 0.1168756 0.1142069
## 2414 0.13781392 0.12859229 0.1168756 0.1142069
## 2415 0.13781392 0.12859229 0.1082367 0.1142069
## 2416 0.10978875 0.12859229 0.1168756 0.1142069
## 2417 0.13781392 0.12859229 0.1168756 0.1142069
## 2418 0.07843137 0.12859229 0.1082367 0.1142069
## 2419 0.10978875 0.12859229 0.1082367 0.1142069
## 2420 0.10650888 0.12859229 0.1082367 0.1142069
## 2421 0.07843137 0.12859229 0.1168756 0.1142069
## 2422 0.11364176 0.12859229 0.1082367 0.1142069
## 2423 0.13781392 0.12859229 0.1168756 0.1142069
## 2424 0.07666667 0.05274566 0.1082367 0.1142069
## 2425 0.13781392 0.12859229 0.1168756 0.1142069
## 2426 0.07843137 0.12859229 0.1168756 0.1142069
## 2427 0.10650888 0.12859229 0.1168756 0.1142069
## 2428 0.10650888 0.12859229 0.1082367 0.1142069
## 2429 0.07843137 0.12859229 0.1082367 0.1142069
## 2430 0.07843137 0.12859229 0.1168756 0.1142069
## 2431 0.11364176 0.12859229 0.1082367 0.1142069
## 2432 0.10978875 0.05274566 0.1082367 0.1142069
## 2433 0.13781392 0.12859229 0.1168756 0.1142069
## 2434 0.10650888 0.12859229 0.1082367 0.1142069
## 2435 0.13781392 0.12859229 0.1082367 0.1142069
## 2436 0.07843137 0.12859229 0.1082367 0.1054972
## 2437 0.07843137 0.12859229 0.1168756 0.1142069
## 2438 0.10650888 0.12859229 0.1082367 0.1142069
## 2439 0.13781392 0.12859229 0.1168756 0.1142069
## 2440 0.07843137 0.12859229 0.1168756 0.1142069
## 2441 0.07843137 0.12859229 0.1168756 0.1142069
## 2442 0.11364176 0.12859229 0.1168756 0.1142069
## 2443 0.13781392 0.12859229 0.1168756 0.1142069
## 2444 0.13781392 0.12859229 0.1082367 0.1142069
## 2445 0.10978875 0.12859229 0.1082367 0.1142069
## 2446 0.07843137 0.12859229 0.1082367 0.1142069
## 2447 0.07843137 0.12859229 0.1082367 0.1142069
## 2448 0.13781392 0.12859229 0.1168756 0.1142069
## 2449 0.13781392 0.12859229 0.1168756 0.1142069
## 2450 0.07843137 0.05274566 0.1168756 0.1142069
## 2451 0.10650888 0.12859229 0.1168756 0.1142069
## 2452 0.10650888 0.12859229 0.1082367 0.1142069
## 2453 0.11364176 0.12859229 0.1168756 0.1142069
## 2454 0.10978875 0.12859229 0.1168756 0.1142069
## 2455 0.10650888 0.12859229 0.1168756 0.1142069
## 2456 0.10650888 0.12859229 0.1082367 0.1142069
## 2457 0.07843137 0.05274566 0.1082367 0.1142069
## 2458 0.13958482 0.12859229 0.1168756 0.1142069
## 2459 0.10650888 0.12859229 0.1082367 0.1142069
## 2460 0.07843137 0.05274566 0.1082367 0.1142069
## 2461 0.10650888 0.12859229 0.1082367 0.1054972
## 2462 0.13781392 0.12859229 0.1168756 0.1142069
## 2463 0.13958482 0.05274566 0.1168756 0.1142069
## 2464 0.13781392 0.05274566 0.1168756 0.1142069
## 2465 0.07843137 0.12859229 0.1168756 0.1054972
## 2466 0.13781392 0.12859229 0.1168756 0.1142069
## 2467 0.07843137 0.12859229 0.1168756 0.1142069
## 2468 0.07666667 0.12859229 0.1168756 0.1054972
## 2469 0.13781392 0.12859229 0.1168756 0.1142069
## 2470 0.07843137 0.05274566 0.1168756 0.1054972
## 2471 0.10650888 0.12859229 0.1082367 0.1142069
## 2472 0.13781392 0.12859229 0.1168756 0.1054972
## 2473 0.13781392 0.12859229 0.1168756 0.1054972
## 2474 0.11364176 0.12859229 0.1082367 0.1142069
## 2475 0.10650888 0.12859229 0.1082367 0.1054972
## 2476 0.13781392 0.12859229 0.1040100 0.1040100
## 2477 0.13781392 0.12859229 0.1082367 0.1142069
## 2478 0.07843137 0.05274566 0.1040100 0.1040100
## 2479 0.07666667 0.12859229 0.1168756 0.1142069
## 2480 0.10978875 0.05274566 0.1168756 0.1054972
## 2481 0.07843137 0.12859229 0.1168756 0.1142069
## 2482 0.07843137 0.12859229 0.1168756 0.1142069
## 2483 0.13781392 0.12859229 0.1168756 0.1142069
## 2484 0.07843137 0.05274566 0.1168756 0.1142069
## 2485 0.13781392 0.12859229 0.1082367 0.1142069
## 2486 0.11364176 0.12859229 0.1168756 0.1142069
## 2487 0.07843137 0.12859229 0.1168756 0.1054972
## 2488 0.07843137 0.12859229 0.1082367 0.1142069
## 2489 0.13781392 0.12859229 0.1168756 0.1142069
## 2490 0.11364176 0.12859229 0.1082367 0.1142069
## 2491 0.10978875 0.05274566 0.1168756 0.1142069
## 2492 0.10650888 0.12859229 0.1082367 0.1054972
## 2493 0.13781392 0.12859229 0.1082367 0.1142069
## 2494 0.13958482 0.12859229 0.1168756 0.1054972
## 2495 0.13781392 0.12859229 0.1168756 0.1142069
## 2496 0.11364176 0.12859229 0.1082367 0.1054972
## 2497 0.11364176 0.12859229 0.1082367 0.1054972
## 2498 0.13781392 0.12859229 0.1168756 0.1142069
## 2499 0.07843137 0.12859229 0.1168756 0.1142069
## 2500 0.10650888 0.12859229 0.1168756 0.1142069
## 2501 0.10650888 0.12859229 0.1168756 0.1054972
## 2502 0.13781392 0.12859229 0.1082367 0.1142069
## 2503 0.10978875 0.12859229 0.1082367 0.1054972
## 2504 0.13958482 0.12859229 0.1168756 0.1142069
## 2505 0.07843137 0.12859229 0.1168756 0.1142069
## 2506 0.07843137 0.12859229 0.1082367 0.1142069
## 2507 0.13781392 0.12859229 0.1040100 0.1040100
## 2508 0.10978875 0.05274566 0.1168756 0.1142069
## 2509 0.13781392 0.12859229 0.1082367 0.1142069
## 2510 0.07843137 0.05274566 0.1168756 0.1142069
## 2511 0.10650888 0.12859229 0.1168756 0.1142069
## 2512 0.13781392 0.12859229 0.1168756 0.1142069
## 2513 0.10650888 0.12859229 0.1082367 0.1142069
## 2514 0.07666667 0.12859229 0.1082367 0.1142069
## 2515 0.10650888 0.12859229 0.1168756 0.1142069
## 2516 0.13781392 0.12859229 0.1082367 0.1142069
## 2517 0.11364176 0.12859229 0.1082367 0.1142069
## 2518 0.10650888 0.12859229 0.1168756 0.1142069
## 2519 0.13781392 0.12859229 0.1168756 0.1142069
## 2520 0.10650888 0.12859229 0.1168756 0.1142069
## 2521 0.07666667 0.12859229 0.1168756 0.1142069
## 2522 0.10650888 0.12859229 0.1168756 0.1142069
## 2523 0.10650888 0.12859229 0.1082367 0.1142069
## 2524 0.07843137 0.12859229 0.1168756 0.1142069
## 2525 0.11364176 0.05274566 0.1040100 0.1040100
## 2526 0.07843137 0.12859229 0.1082367 0.1142069
## 2527 0.11364176 0.12859229 0.1168756 0.1142069
## 2528 0.10650888 0.12859229 0.1082367 0.1142069
## 2529 0.13781392 0.12859229 0.1040100 0.1040100
## 2530 0.13781392 0.12859229 0.1040100 0.1040100
## 2531 0.13781392 0.12859229 0.1082367 0.1142069
## 2532 0.13781392 0.12859229 0.1168756 0.1142069
## 2533 0.13958482 0.12859229 0.1082367 0.1142069
## 2534 0.07843137 0.12859229 0.1082367 0.1142069
## 2535 0.11364176 0.12859229 0.1082367 0.1054972
## 2536 0.11364176 0.12859229 0.1168756 0.1142069
## 2537 0.13781392 0.12859229 0.1168756 0.1142069
## 2538 0.07843137 0.12859229 0.1168756 0.1142069
## 2539 0.13781392 0.12859229 0.1082367 0.1054972
## 2540 0.10650888 0.05274566 0.1082367 0.1142069
## 2541 0.10978875 0.12859229 0.1168756 0.1142069
## 2542 0.11364176 0.12859229 0.1082367 0.1054972
## 2543 0.13781392 0.12859229 0.1168756 0.1142069
## 2544 0.13781392 0.12859229 0.1168756 0.1142069
## 2545 0.10650888 0.12859229 0.1168756 0.1142069
## 2546 0.13781392 0.12859229 0.1168756 0.1142069
## 2547 0.07666667 0.05274566 0.1082367 0.1054972
## 2548 0.13781392 0.12859229 0.1168756 0.1142069
## 2549 0.13781392 0.05274566 0.1082367 0.1142069
## 2550 0.07843137 0.12859229 0.1082367 0.1054972
## 2551 0.13781392 0.12859229 0.1082367 0.1142069
## 2552 0.10650888 0.12859229 0.1168756 0.1142069
## 2553 0.11364176 0.12859229 0.1168756 0.1142069
## 2554 0.10650888 0.12859229 0.1168756 0.1054972
## 2555 0.13781392 0.12859229 0.1082367 0.1142069
## 2556 0.13781392 0.05274566 0.1168756 0.1142069
## 2557 0.13781392 0.05274566 0.1168756 0.1054972
## 2558 0.13781392 0.12859229 0.1168756 0.1142069
## 2559 0.10978875 0.12859229 0.1082367 0.1142069
## 2560 0.07843137 0.12859229 0.1168756 0.1142069
## 2561 0.13781392 0.05274566 0.1168756 0.1142069
## 2562 0.13781392 0.12859229 0.1082367 0.1142069
## 2563 0.07843137 0.12859229 0.1168756 0.1142069
## 2564 0.11364176 0.12859229 0.1082367 0.1142069
## 2565 0.13781392 0.12859229 0.1040100 0.1040100
## 2566 0.13958482 0.12859229 0.1168756 0.1142069
## 2567 0.11364176 0.12859229 0.1168756 0.1142069
## 2568 0.10650888 0.12859229 0.1082367 0.1142069
## 2569 0.07843137 0.12859229 0.1168756 0.1142069
## 2570 0.13781392 0.12859229 0.1168756 0.1054972
## 2571 0.13781392 0.12859229 0.1168756 0.1054972
## 2572 0.07666667 0.12859229 0.1082367 0.1142069
## 2573 0.13781392 0.05274566 0.1168756 0.1142069
## 2574 0.13781392 0.12859229 0.1168756 0.1142069
## 2575 0.10978875 0.12859229 0.1168756 0.1142069
## 2576 0.10978875 0.12859229 0.1168756 0.1142069
## 2577 0.11364176 0.12859229 0.1082367 0.1142069
## 2578 0.13781392 0.05274566 0.1168756 0.1142069
## 2579 0.13781392 0.12859229 0.1082367 0.1142069
## 2580 0.07843137 0.12859229 0.1168756 0.1142069
## 2581 0.10650888 0.12859229 0.1168756 0.1142069
## 2582 0.07666667 0.05274566 0.1082367 0.1142069
## 2583 0.07666667 0.12859229 0.1168756 0.1054972
## 2584 0.07843137 0.12859229 0.1168756 0.1142069
## 2585 0.11364176 0.12859229 0.1082367 0.1142069
## 2586 0.10650888 0.05274566 0.1168756 0.1054972
## 2587 0.13781392 0.12859229 0.1082367 0.1142069
## 2588 0.10650888 0.12859229 0.1082367 0.1142069
## 2589 0.07843137 0.12859229 0.1168756 0.1142069
## 2590 0.10650888 0.12859229 0.1168756 0.1142069
## 2591 0.13781392 0.12859229 0.1082367 0.1142069
## 2592 0.13781392 0.12859229 0.1082367 0.1142069
## 2593 0.13781392 0.12859229 0.1082367 0.1142069
## 2594 0.10650888 0.12859229 0.1082367 0.1142069
## 2595 0.13781392 0.12859229 0.1168756 0.1142069
## 2596 0.07843137 0.12859229 0.1082367 0.1142069
## 2597 0.13781392 0.12859229 0.1168756 0.1054972
## 2598 0.10650888 0.12859229 0.1168756 0.1054972
## 2599 0.10650888 0.12859229 0.1168756 0.1142069
## 2600 0.13781392 0.05274566 0.1168756 0.1142069
## 2601 0.13781392 0.12859229 0.1082367 0.1142069
## 2602 0.11364176 0.12859229 0.1082367 0.1142069
## 2603 0.13781392 0.12859229 0.1082367 0.1142069
## 2604 0.13781392 0.12859229 0.1168756 0.1142069
## 2605 0.13781392 0.12859229 0.1082367 0.1142069
## 2606 0.13781392 0.05274566 0.1168756 0.1142069
## 2607 0.07666667 0.12859229 0.1082367 0.1142069
## 2608 0.07843137 0.12859229 0.1168756 0.1054972
## 2609 0.13781392 0.12859229 0.1082367 0.1142069
## 2610 0.10650888 0.12859229 0.1168756 0.1142069
## 2611 0.10650888 0.12859229 0.1082367 0.1142069
## 2612 0.10650888 0.12859229 0.1168756 0.1142069
## 2613 0.10650888 0.12859229 0.1168756 0.1142069
## 2614 0.13781392 0.12859229 0.1168756 0.1142069
## 2615 0.13781392 0.12859229 0.1168756 0.1142069
## 2616 0.10650888 0.12859229 0.1168756 0.1054972
## 2617 0.10650888 0.12859229 0.1082367 0.1142069
## 2618 0.10650888 0.12859229 0.1168756 0.1142069
## 2619 0.10650888 0.12859229 0.1168756 0.1142069
## 2620 0.10650888 0.12859229 0.1168756 0.1142069
## 2621 0.10650888 0.12859229 0.1168756 0.1142069
## 2622 0.11364176 0.12859229 0.1168756 0.1142069
## 2623 0.10650888 0.05274566 0.1082367 0.1142069
## 2624 0.10978875 0.12859229 0.1082367 0.1054972
## 2625 0.11364176 0.12859229 0.1082367 0.1054972
## 2626 0.13958482 0.12859229 0.1168756 0.1142069
## 2627 0.10650888 0.12859229 0.1082367 0.1142069
## 2628 0.07666667 0.12859229 0.1082367 0.1142069
## 2629 0.13958482 0.12859229 0.1168756 0.1142069
## 2630 0.11364176 0.12859229 0.1082367 0.1142069
## 2631 0.11364176 0.12859229 0.1082367 0.1054972
## 2632 0.07666667 0.12859229 0.1082367 0.1142069
## 2633 0.11364176 0.05274566 0.1082367 0.1142069
## 2634 0.10978875 0.12859229 0.1082367 0.1142069
## 2635 0.11364176 0.12859229 0.1168756 0.1142069
## 2636 0.10978875 0.12859229 0.1082367 0.1142069
## 2637 0.07843137 0.12859229 0.1168756 0.1142069
## 2638 0.13781392 0.12859229 0.1082367 0.1142069
## 2639 0.10650888 0.12859229 0.1168756 0.1142069
## 2640 0.10650888 0.12859229 0.1040100 0.1040100
## 2641 0.11364176 0.05274566 0.1168756 0.1142069
## 2642 0.10978875 0.05274566 0.1168756 0.1142069
## 2643 0.10978875 0.12859229 0.1082367 0.1142069
## 2644 0.13781392 0.12859229 0.1168756 0.1142069
## 2645 0.10650888 0.12859229 0.1040100 0.1040100
## 2646 0.10978875 0.05274566 0.1168756 0.1142069
## 2647 0.13781392 0.12859229 0.1168756 0.1142069
## 2648 0.13781392 0.12859229 0.1168756 0.1142069
## 2649 0.13958482 0.12859229 0.1082367 0.1142069
## 2650 0.13958482 0.05274566 0.1082367 0.1142069
## 2651 0.13781392 0.12859229 0.1082367 0.1054972
## 2652 0.13781392 0.12859229 0.1168756 0.1054972
## 2653 0.13781392 0.12859229 0.1168756 0.1142069
## 2654 0.13781392 0.12859229 0.1082367 0.1142069
## 2655 0.11364176 0.12859229 0.1168756 0.1142069
## 2656 0.10650888 0.12859229 0.1168756 0.1142069
## 2657 0.13781392 0.12859229 0.1082367 0.1142069
## 2658 0.10650888 0.12859229 0.1082367 0.1142069
## 2659 0.13958482 0.12859229 0.1168756 0.1142069
## 2660 0.13781392 0.12859229 0.1168756 0.1142069
## 2661 0.07843137 0.12859229 0.1082367 0.1142069
## 2662 0.13781392 0.12859229 0.1168756 0.1142069
## 2663 0.13781392 0.12859229 0.1082367 0.1142069
## 2664 0.13781392 0.12859229 0.1082367 0.1142069
## 2665 0.13781392 0.12859229 0.1082367 0.1142069
## 2666 0.13781392 0.12859229 0.1168756 0.1142069
## 2667 0.13781392 0.12859229 0.1168756 0.1142069
## 2668 0.11364176 0.12859229 0.1082367 0.1054972
## 2669 0.10978875 0.12859229 0.1082367 0.1142069
## 2670 0.10978875 0.12859229 0.1168756 0.1142069
## 2671 0.11364176 0.12859229 0.1082367 0.1142069
## 2672 0.13781392 0.12859229 0.1168756 0.1142069
## 2673 0.10978875 0.12859229 0.1082367 0.1142069
## 2674 0.11364176 0.12859229 0.1168756 0.1142069
## 2675 0.10650888 0.12859229 0.1168756 0.1142069
## 2676 0.11364176 0.12859229 0.1082367 0.1142069
## 2677 0.10650888 0.12859229 0.1168756 0.1054972
## 2678 0.13781392 0.12859229 0.1168756 0.1142069
## 2679 0.10650888 0.12859229 0.1082367 0.1142069
## 2680 0.10650888 0.12859229 0.1168756 0.1142069
## 2681 0.10650888 0.12859229 0.1082367 0.1142069
## 2682 0.07843137 0.05274566 0.1082367 0.1142069
## 2683 0.10650888 0.12859229 0.1168756 0.1142069
## 2684 0.10978875 0.05274566 0.1168756 0.1142069
## 2685 0.11364176 0.12859229 0.1168756 0.1142069
## 2686 0.10650888 0.12859229 0.1082367 0.1142069
## 2687 0.11364176 0.12859229 0.1082367 0.1142069
## 2688 0.13781392 0.12859229 0.1082367 0.1142069
## 2689 0.07843137 0.12859229 0.1168756 0.1142069
## 2690 0.10978875 0.12859229 0.1168756 0.1142069
## 2691 0.13781392 0.12859229 0.1040100 0.1040100
## 2692 0.13781392 0.12859229 0.1168756 0.1142069
## 2693 0.07843137 0.12859229 0.1168756 0.1142069
## 2694 0.07843137 0.12859229 0.1082367 0.1142069
## 2695 0.13781392 0.12859229 0.1082367 0.1142069
## 2696 0.13781392 0.12859229 0.1168756 0.1142069
## 2697 0.07843137 0.12859229 0.1168756 0.1142069
## 2698 0.10650888 0.12859229 0.1040100 0.1040100
## 2699 0.07843137 0.12859229 0.1168756 0.1142069
## 2700 0.13781392 0.12859229 0.1082367 0.1142069
## 2701 0.13781392 0.05274566 0.1082367 0.1142069
## 2702 0.07843137 0.12859229 0.1168756 0.1142069
## 2703 0.07666667 0.05274566 0.1082367 0.1054972
## 2704 0.07843137 0.12859229 0.1168756 0.1142069
## 2705 0.10650888 0.12859229 0.1082367 0.1142069
## 2706 0.07843137 0.05274566 0.1082367 0.1142069
## 2707 0.11364176 0.12859229 0.1168756 0.1142069
## 2708 0.07666667 0.05274566 0.1168756 0.1142069
## 2709 0.13958482 0.12859229 0.1168756 0.1142069
## 2710 0.10978875 0.12859229 0.1082367 0.1054972
## 2711 0.07843137 0.05274566 0.1082367 0.1054972
## 2712 0.07843137 0.12859229 0.1082367 0.1054972
## 2713 0.13958482 0.12859229 0.1082367 0.1142069
## 2714 0.11364176 0.12859229 0.1168756 0.1142069
## 2715 0.13781392 0.12859229 0.1168756 0.1142069
## 2716 0.13781392 0.12859229 0.1168756 0.1142069
## 2717 0.13781392 0.12859229 0.1168756 0.1054972
## 2718 0.13781392 0.12859229 0.1168756 0.1142069
## 2719 0.10650888 0.12859229 0.1168756 0.1142069
## 2720 0.11364176 0.12859229 0.1168756 0.1142069
## 2721 0.10650888 0.12859229 0.1168756 0.1054972
## 2722 0.13781392 0.12859229 0.1082367 0.1142069
## 2723 0.10650888 0.05274566 0.1082367 0.1054972
## 2724 0.10650888 0.12859229 0.1082367 0.1142069
## 2725 0.07843137 0.12859229 0.1168756 0.1142069
## 2726 0.13781392 0.12859229 0.1168756 0.1054972
## 2727 0.10650888 0.12859229 0.1082367 0.1142069
## 2728 0.13781392 0.12859229 0.1082367 0.1142069
## 2729 0.11364176 0.12859229 0.1168756 0.1054972
## 2730 0.11364176 0.12859229 0.1082367 0.1142069
## 2731 0.13781392 0.12859229 0.1168756 0.1142069
## 2732 0.10650888 0.12859229 0.1168756 0.1142069
## 2733 0.13781392 0.12859229 0.1040100 0.1040100
## 2734 0.13781392 0.12859229 0.1082367 0.1142069
## 2735 0.13781392 0.12859229 0.1168756 0.1142069
## 2736 0.13781392 0.12859229 0.1082367 0.1142069
## 2737 0.13781392 0.12859229 0.1168756 0.1142069
## 2738 0.16666667 0.12859229 0.1168756 0.1142069
## 2739 0.10978875 0.12859229 0.1168756 0.1142069
## 2740 0.13781392 0.12859229 0.1168756 0.1142069
## 2741 0.13781392 0.12859229 0.1168756 0.1142069
## 2742 0.10650888 0.12859229 0.1082367 0.1142069
## 2743 0.07843137 0.12859229 0.1082367 0.1142069
## 2744 0.10650888 0.12859229 0.1168756 0.1142069
## 2745 0.13781392 0.12859229 0.1168756 0.1142069
## 2746 0.10978875 0.12859229 0.1082367 0.1142069
## 2747 0.11364176 0.12859229 0.1168756 0.1142069
## 2748 0.13958482 0.12859229 0.1168756 0.1054972
## 2749 0.13958482 0.12859229 0.1168756 0.1142069
## 2750 0.10650888 0.05274566 0.1082367 0.1142069
## 2751 0.10650888 0.12859229 0.1168756 0.1142069
## 2752 0.07843137 0.12859229 0.1168756 0.1142069
## 2753 0.07843137 0.12859229 0.1168756 0.1142069
## 2754 0.13781392 0.12859229 0.1168756 0.1142069
## 2755 0.10650888 0.12859229 0.1168756 0.1054972
## 2756 0.10650888 0.12859229 0.1168756 0.1142069
## 2757 0.11364176 0.05274566 0.1168756 0.1142069
## 2758 0.13781392 0.12859229 0.1168756 0.1142069
## 2759 0.13781392 0.12859229 0.1168756 0.1054972
## 2760 0.10650888 0.05274566 0.1082367 0.1142069
## 2761 0.13781392 0.12859229 0.1168756 0.1142069
## 2762 0.10978875 0.12859229 0.1082367 0.1142069
## 2763 0.13781392 0.12859229 0.1082367 0.1142069
## 2764 0.10650888 0.12859229 0.1082367 0.1142069
## 2765 0.07843137 0.12859229 0.1082367 0.1142069
## 2766 0.13781392 0.12859229 0.1168756 0.1142069
## 2767 0.13781392 0.12859229 0.1082367 0.1142069
## 2768 0.13958482 0.12859229 0.1168756 0.1142069
## 2769 0.10978875 0.05274566 0.1168756 0.1142069
## 2770 0.07843137 0.12859229 0.1082367 0.1142069
## 2771 0.10978875 0.12859229 0.1082367 0.1142069
## 2772 0.10650888 0.12859229 0.1168756 0.1142069
## 2773 0.07843137 0.12859229 0.1168756 0.1142069
## 2774 0.13781392 0.12859229 0.1168756 0.1142069
## 2775 0.10650888 0.05274566 0.1168756 0.1142069
## 2776 0.07843137 0.12859229 0.1168756 0.1142069
## 2777 0.10650888 0.12859229 0.1168756 0.1142069
## 2778 0.13958482 0.12859229 0.1082367 0.1142069
## 2779 0.07843137 0.12859229 0.1168756 0.1142069
## 2780 0.07843137 0.12859229 0.1168756 0.1142069
## 2781 0.13781392 0.12859229 0.1168756 0.1142069
## 2782 0.13781392 0.12859229 0.1168756 0.1054972
## 2783 0.07843137 0.12859229 0.1168756 0.1054972
## 2784 0.07843137 0.12859229 0.1168756 0.1142069
## 2785 0.10650888 0.12859229 0.1082367 0.1142069
## 2786 0.13781392 0.12859229 0.1168756 0.1142069
## 2787 0.13781392 0.05274566 0.1168756 0.1054972
## 2788 0.13781392 0.12859229 0.1168756 0.1142069
## 2789 0.13781392 0.12859229 0.1082367 0.1142069
## 2790 0.13781392 0.12859229 0.1082367 0.1142069
## 2791 0.13781392 0.12859229 0.1082367 0.1142069
## 2792 0.10650888 0.12859229 0.1168756 0.1142069
## 2793 0.10650888 0.12859229 0.1082367 0.1142069
## 2794 0.10650888 0.12859229 0.1082367 0.1142069
## 2795 0.07843137 0.05274566 0.1168756 0.1054972
## 2796 0.13781392 0.12859229 0.1168756 0.1142069
## 2797 0.10978875 0.12859229 0.1082367 0.1142069
## 2798 0.07843137 0.12859229 0.1168756 0.1142069
## 2799 0.13781392 0.12859229 0.1168756 0.1142069
## 2800 0.10978875 0.05274566 0.1082367 0.1142069
## 2801 0.11364176 0.12859229 0.1082367 0.1142069
## 2802 0.13781392 0.12859229 0.1082367 0.1142069
## 2803 0.07666667 0.12859229 0.1168756 0.1054972
## 2804 0.13781392 0.12859229 0.1082367 0.1142069
## 2805 0.10978875 0.12859229 0.1168756 0.1142069
## 2806 0.07666667 0.12859229 0.1082367 0.1142069
## 2807 0.13781392 0.12859229 0.1082367 0.1054972
## 2808 0.11364176 0.12859229 0.1082367 0.1142069
## 2809 0.07666667 0.12859229 0.1168756 0.1142069
## 2810 0.11364176 0.12859229 0.1168756 0.1142069
## 2811 0.10650888 0.12859229 0.1168756 0.1142069
## 2812 0.13781392 0.12859229 0.1168756 0.1142069
## 2813 0.13781392 0.12859229 0.1168756 0.1142069
## 2814 0.10650888 0.12859229 0.1168756 0.1142069
## 2815 0.11364176 0.12859229 0.1168756 0.1142069
## 2816 0.07843137 0.12859229 0.1168756 0.1142069
## 2817 0.10978875 0.12859229 0.1168756 0.1054972
## 2818 0.11364176 0.12859229 0.1082367 0.1142069
## 2819 0.13781392 0.12859229 0.1082367 0.1142069
## 2820 0.13781392 0.12859229 0.1082367 0.1054972
## 2821 0.10650888 0.12859229 0.1082367 0.1142069
## 2822 0.07843137 0.12859229 0.1168756 0.1142069
## 2823 0.07843137 0.12859229 0.1168756 0.1142069
## 2824 0.13781392 0.12859229 0.1082367 0.1142069
## 2825 0.07666667 0.12859229 0.1168756 0.1142069
## 2826 0.13781392 0.12859229 0.1082367 0.1142069
## 2827 0.13781392 0.12859229 0.1168756 0.1142069
## 2828 0.13781392 0.12859229 0.1168756 0.1142069
## 2829 0.11364176 0.12859229 0.1082367 0.1142069
## 2830 0.07843137 0.12859229 0.1168756 0.1142069
## 2831 0.07843137 0.12859229 0.1082367 0.1142069
## 2832 0.13781392 0.12859229 0.1082367 0.1054972
## 2833 0.13781392 0.12859229 0.1082367 0.1142069
## 2834 0.07843137 0.12859229 0.1082367 0.1142069
## 2835 0.07843137 0.05274566 0.1168756 0.1142069
## 2836 0.13781392 0.12859229 0.1168756 0.1142069
## 2837 0.10978875 0.12859229 0.1082367 0.1054972
## 2838 0.07843137 0.12859229 0.1168756 0.1142069
## 2839 0.13781392 0.12859229 0.1082367 0.1142069
## 2840 0.10650888 0.12859229 0.1168756 0.1054972
## 2841 0.10650888 0.12859229 0.1168756 0.1142069
## 2842 0.10978875 0.12859229 0.1082367 0.1142069
## 2843 0.10650888 0.12859229 0.1082367 0.1142069
## 2844 0.13781392 0.12859229 0.1168756 0.1142069
## 2845 0.07843137 0.12859229 0.1082367 0.1142069
## 2846 0.07843137 0.12859229 0.1168756 0.1142069
## 2847 0.10650888 0.05274566 0.1082367 0.1142069
## 2848 0.10650888 0.12859229 0.1082367 0.1142069
## 2849 0.10978875 0.12859229 0.1082367 0.1142069
## 2850 0.07843137 0.12859229 0.1168756 0.1142069
## 2851 0.07666667 0.05274566 0.1082367 0.1142069
## 2852 0.10978875 0.05274566 0.1168756 0.1142069
## 2853 0.13781392 0.12859229 0.1168756 0.1142069
## 2854 0.11364176 0.12859229 0.1082367 0.1142069
## 2855 0.10650888 0.12859229 0.1168756 0.1142069
## 2856 0.10650888 0.12859229 0.1168756 0.1142069
## 2857 0.13781392 0.12859229 0.1082367 0.1054972
## 2858 0.10978875 0.05274566 0.1168756 0.1054972
## 2859 0.13781392 0.12859229 0.1168756 0.1142069
## 2860 0.13781392 0.05274566 0.1168756 0.1142069
## 2861 0.10978875 0.12859229 0.1168756 0.1142069
## 2862 0.13781392 0.12859229 0.1168756 0.1142069
## 2863 0.10650888 0.12859229 0.1168756 0.1054972
## 2864 0.13781392 0.12859229 0.1082367 0.1142069
## 2865 0.11364176 0.12859229 0.1168756 0.1054972
## 2866 0.07666667 0.12859229 0.1082367 0.1142069
## 2867 0.13781392 0.12859229 0.1168756 0.1142069
## 2868 0.11364176 0.12859229 0.1082367 0.1054972
## 2869 0.13781392 0.12859229 0.1082367 0.1142069
## 2870 0.10650888 0.12859229 0.1082367 0.1054972
## 2871 0.10978875 0.12859229 0.1082367 0.1142069
## 2872 0.10650888 0.12859229 0.1168756 0.1142069
## 2873 0.10650888 0.05274566 0.1082367 0.1142069
## 2874 0.11364176 0.12859229 0.1168756 0.1054972
## 2875 0.10650888 0.12859229 0.1168756 0.1142069
## 2876 0.07843137 0.12859229 0.1168756 0.1142069
## 2877 0.07666667 0.05274566 0.1082367 0.1142069
## 2878 0.07666667 0.12859229 0.1168756 0.1054972
## 2879 0.13781392 0.12859229 0.1168756 0.1142069
## 2880 0.07843137 0.12859229 0.1168756 0.1142069
## 2881 0.13781392 0.12859229 0.1168756 0.1054972
## 2882 0.10978875 0.12859229 0.1168756 0.1142069
## 2883 0.07666667 0.12859229 0.1168756 0.1054972
## 2884 0.13781392 0.12859229 0.1168756 0.1142069
## 2885 0.10650888 0.12859229 0.1082367 0.1054972
## 2886 0.10650888 0.05274566 0.1168756 0.1142069
## 2887 0.07843137 0.12859229 0.1168756 0.1142069
## 2888 0.07843137 0.12859229 0.1082367 0.1142069
## 2889 0.13781392 0.12859229 0.1168756 0.1142069
## 2890 0.13781392 0.12859229 0.1168756 0.1142069
## 2891 0.10650888 0.12859229 0.1168756 0.1142069
## 2892 0.13781392 0.12859229 0.1168756 0.1054972
## 2893 0.11364176 0.12859229 0.1168756 0.1142069
## 2894 0.10978875 0.12859229 0.1168756 0.1142069
## 2895 0.13781392 0.12859229 0.1168756 0.1142069
## 2896 0.07843137 0.05274566 0.1168756 0.1142069
## 2897 0.13781392 0.12859229 0.1168756 0.1142069
## 2898 0.07843137 0.12859229 0.1168756 0.1054972
## 2899 0.13781392 0.12859229 0.1082367 0.1142069
## 2900 0.07843137 0.05274566 0.1082367 0.1142069
## 2901 0.13781392 0.12859229 0.1168756 0.1142069
## 2902 0.11364176 0.12859229 0.1082367 0.1142069
## 2903 0.10978875 0.12859229 0.1082367 0.1142069
## 2904 0.13781392 0.12859229 0.1168756 0.1142069
## 2905 0.13958482 0.12859229 0.1168756 0.1142069
## 2906 0.07843137 0.12859229 0.1168756 0.1142069
## 2907 0.07843137 0.12859229 0.1082367 0.1142069
## 2908 0.07843137 0.12859229 0.1168756 0.1142069
## 2909 0.07843137 0.12859229 0.1168756 0.1142069
## 2910 0.10650888 0.05274566 0.1168756 0.1142069
## 2911 0.13958482 0.12859229 0.1168756 0.1142069
## 2912 0.13781392 0.12859229 0.1168756 0.1142069
## 2913 0.10978875 0.12859229 0.1168756 0.1142069
## 2914 0.13781392 0.12859229 0.1168756 0.1054972
## 2915 0.13781392 0.12859229 0.1168756 0.1054972
## 2916 0.07843137 0.12859229 0.1082367 0.1142069
## 2917 0.10978875 0.12859229 0.1082367 0.1054972
## 2918 0.13781392 0.12859229 0.1168756 0.1054972
## 2919 0.13781392 0.12859229 0.1168756 0.1142069
## 2920 0.07843137 0.12859229 0.1168756 0.1142069
## 2921 0.10650888 0.05274566 0.1168756 0.1054972
## 2922 0.10650888 0.12859229 0.1168756 0.1142069
## 2923 0.10978875 0.12859229 0.1168756 0.1142069
## 2924 0.13781392 0.12859229 0.1082367 0.1142069
## 2925 0.10650888 0.05274566 0.1168756 0.1142069
## 2926 0.11364176 0.12859229 0.1168756 0.1142069
## 2927 0.13781392 0.12859229 0.1168756 0.1054972
## 2928 0.13958482 0.12859229 0.1168756 0.1142069
## 2929 0.10650888 0.12859229 0.1082367 0.1142069
## 2930 0.11364176 0.12859229 0.1168756 0.1142069
## 2931 0.13781392 0.05274566 0.1168756 0.1142069
## 2932 0.10650888 0.12859229 0.1168756 0.1142069
## 2933 0.10650888 0.12859229 0.1168756 0.1142069
## 2934 0.07843137 0.05274566 0.1168756 0.1142069
## 2935 0.10650888 0.12859229 0.1168756 0.1142069
## 2936 0.11364176 0.12859229 0.1168756 0.1142069
## 2937 0.10650888 0.12859229 0.1168756 0.1142069
## 2938 0.13781392 0.12859229 0.1082367 0.1054972
## 2939 0.11364176 0.12859229 0.1082367 0.1142069
## 2940 0.10650888 0.12859229 0.1040100 0.1040100
## 2941 0.13781392 0.12859229 0.1168756 0.1142069
## 2942 0.13781392 0.12859229 0.1082367 0.1142069
## 2943 0.13781392 0.12859229 0.1168756 0.1142069
## 2944 0.13781392 0.12859229 0.1082367 0.1142069
## 2945 0.07843137 0.12859229 0.1168756 0.1142069
## 2946 0.11364176 0.12859229 0.1168756 0.1054972
## 2947 0.07843137 0.12859229 0.1082367 0.1054972
## 2948 0.13781392 0.05274566 0.1082367 0.1142069
## 2949 0.10650888 0.12859229 0.1082367 0.1142069
## 2950 0.07843137 0.05274566 0.1082367 0.1142069
## 2951 0.11364176 0.12859229 0.1168756 0.1054972
## 2952 0.11364176 0.12859229 0.1168756 0.1142069
## 2953 0.13781392 0.12859229 0.1168756 0.1142069
## 2954 0.13958482 0.12859229 0.1082367 0.1142069
## 2955 0.11364176 0.12859229 0.1168756 0.1142069
## 2956 0.10650888 0.12859229 0.1168756 0.1142069
## 2957 0.13781392 0.12859229 0.1168756 0.1142069
## 2958 0.07843137 0.12859229 0.1168756 0.1142069
## 2959 0.07843137 0.12859229 0.1168756 0.1054972
## 2960 0.07843137 0.05274566 0.1168756 0.1054972
## 2961 0.11364176 0.12859229 0.1168756 0.1142069
## 2962 0.10650888 0.12859229 0.1082367 0.1142069
## 2963 0.10650888 0.05274566 0.1168756 0.1142069
## 2964 0.13781392 0.05274566 0.1082367 0.1142069
## 2965 0.07843137 0.12859229 0.1168756 0.1142069
## 2966 0.13781392 0.12859229 0.1168756 0.1142069
## 2967 0.13781392 0.12859229 0.1168756 0.1142069
## 2968 0.11364176 0.12859229 0.1168756 0.1142069
## 2969 0.11364176 0.12859229 0.1082367 0.1142069
## 2970 0.13781392 0.12859229 0.1082367 0.1142069
## 2971 0.10978875 0.05274566 0.1168756 0.1142069
## 2972 0.07843137 0.12859229 0.1082367 0.1142069
## 2973 0.10650888 0.05274566 0.1082367 0.1142069
## 2974 0.13781392 0.12859229 0.1168756 0.1142069
## 2975 0.11364176 0.12859229 0.1082367 0.1142069
## 2976 0.07843137 0.12859229 0.1168756 0.1142069
## 2977 0.10650888 0.05274566 0.1082367 0.1142069
## 2978 0.10650888 0.12859229 0.1082367 0.1142069
## 2979 0.10650888 0.12859229 0.1168756 0.1142069
## 2980 0.13781392 0.12859229 0.1168756 0.1142069
## 2981 0.10650888 0.12859229 0.1168756 0.1054972
## 2982 0.13781392 0.12859229 0.1168756 0.1142069
## 2983 0.13958482 0.12859229 0.1082367 0.1142069
## 2984 0.13781392 0.12859229 0.1168756 0.1142069
## 2985 0.13781392 0.12859229 0.1168756 0.1054972
## 2986 0.10650888 0.12859229 0.1082367 0.1142069
## 2987 0.07843137 0.12859229 0.1082367 0.1142069
## 2988 0.10650888 0.12859229 0.1082367 0.1142069
## 2989 0.13781392 0.12859229 0.1168756 0.1142069
## 2990 0.10650888 0.12859229 0.1168756 0.1142069
## 2991 0.10650888 0.05274566 0.1168756 0.1142069
## 2992 0.10650888 0.12859229 0.1082367 0.1142069
## 2993 0.07843137 0.12859229 0.1168756 0.1142069
## 2994 0.07843137 0.12859229 0.1082367 0.1054972
## 2995 0.07843137 0.05274566 0.1168756 0.1142069
## 2996 0.10650888 0.12859229 0.1168756 0.1054972
## 2997 0.11364176 0.12859229 0.1082367 0.1142069
## 2998 0.10650888 0.12859229 0.1082367 0.1142069
## 2999 0.13781392 0.12859229 0.1168756 0.1142069
## 3000 0.13781392 0.12859229 0.1168756 0.1142069
## 3001 0.13781392 0.12859229 0.1168756 0.1142069
## 3002 0.07843137 0.12859229 0.1082367 0.1054972
## 3003 0.13781392 0.12859229 0.1168756 0.1142069
## 3004 0.13781392 0.05274566 0.1168756 0.1142069
## 3005 0.10978875 0.12859229 0.1168756 0.1142069
## 3006 0.07843137 0.12859229 0.1082367 0.1142069
## 3007 0.11364176 0.12859229 0.1082367 0.1142069
## 3008 0.07843137 0.05274566 0.1168756 0.1142069
## 3009 0.07843137 0.12859229 0.1082367 0.1142069
## 3010 0.13781392 0.12859229 0.1168756 0.1142069
## 3011 0.13781392 0.12859229 0.1168756 0.1142069
## 3012 0.07843137 0.12859229 0.1082367 0.1142069
## 3013 0.11364176 0.12859229 0.1168756 0.1142069
## 3014 0.07843137 0.12859229 0.1082367 0.1142069
## 3015 0.13781392 0.12859229 0.1168756 0.1054972
## 3016 0.13958482 0.12859229 0.1168756 0.1142069
## 3017 0.13958482 0.05274566 0.1168756 0.1142069
## 3018 0.10650888 0.12859229 0.1168756 0.1142069
## 3019 0.10650888 0.12859229 0.1082367 0.1054972
## 3020 0.07843137 0.12859229 0.1082367 0.1142069
## 3021 0.10978875 0.12859229 0.1082367 0.1054972
## 3022 0.07843137 0.12859229 0.1082367 0.1142069
## 3023 0.13781392 0.12859229 0.1168756 0.1142069
## 3024 0.10650888 0.12859229 0.1168756 0.1142069
## 3025 0.07843137 0.05274566 0.1040100 0.1040100
## 3026 0.10650888 0.12859229 0.1168756 0.1142069
## 3027 0.10650888 0.12859229 0.1082367 0.1142069
## 3028 0.13781392 0.12859229 0.1082367 0.1142069
## 3029 0.11364176 0.12859229 0.1082367 0.1142069
## 3030 0.13781392 0.12859229 0.1082367 0.1142069
## 3031 0.13781392 0.12859229 0.1168756 0.1142069
## 3032 0.10650888 0.12859229 0.1168756 0.1142069
## 3033 0.10650888 0.12859229 0.1168756 0.1142069
## 3034 0.10650888 0.12859229 0.1168756 0.1142069
## 3035 0.07843137 0.05274566 0.1168756 0.1142069
## 3036 0.13781392 0.12859229 0.1168756 0.1142069
## 3037 0.13781392 0.12859229 0.1082367 0.1054972
## 3038 0.13781392 0.12859229 0.1082367 0.1142069
## 3039 0.07843137 0.05274566 0.1168756 0.1054972
## 3040 0.13781392 0.12859229 0.1168756 0.1142069
## 3041 0.13781392 0.12859229 0.1040100 0.1040100
## 3042 0.07843137 0.12859229 0.1168756 0.1054972
## 3043 0.10650888 0.12859229 0.1168756 0.1142069
## 3044 0.13781392 0.12859229 0.1082367 0.1142069
## 3045 0.13781392 0.12859229 0.1168756 0.1142069
## 3046 0.10978875 0.12859229 0.1168756 0.1142069
## 3047 0.07843137 0.12859229 0.1082367 0.1142069
## 3048 0.10650888 0.05274566 0.1082367 0.1142069
## 3049 0.10978875 0.12859229 0.1082367 0.1142069
## 3050 0.10650888 0.12859229 0.1168756 0.1142069
## 3051 0.13781392 0.12859229 0.1082367 0.1142069
## 3052 0.07843137 0.12859229 0.1168756 0.1054972
## 3053 0.11364176 0.12859229 0.1168756 0.1054972
## 3054 0.07843137 0.12859229 0.1082367 0.1142069
## 3055 0.13781392 0.12859229 0.1168756 0.1142069
## 3056 0.13781392 0.12859229 0.1168756 0.1054972
## 3057 0.10650888 0.12859229 0.1082367 0.1142069
## 3058 0.07666667 0.12859229 0.1168756 0.1142069
## 3059 0.10650888 0.12859229 0.1168756 0.1142069
## 3060 0.13781392 0.12859229 0.1082367 0.1142069
## 3061 0.10978875 0.12859229 0.1082367 0.1142069
## 3062 0.13781392 0.12859229 0.1168756 0.1142069
## 3063 0.10650888 0.12859229 0.1168756 0.1142069
## 3064 0.13781392 0.12859229 0.1168756 0.1142069
## 3065 0.10650888 0.12859229 0.1082367 0.1142069
## 3066 0.13781392 0.12859229 0.1168756 0.1142069
## 3067 0.13958482 0.05274566 0.1168756 0.1142069
## 3068 0.13958482 0.12859229 0.1082367 0.1142069
## 3069 0.10650888 0.12859229 0.1082367 0.1142069
## 3070 0.10650888 0.12859229 0.1082367 0.1142069
## 3071 0.13781392 0.12859229 0.1168756 0.1142069
## 3072 0.11364176 0.12859229 0.1168756 0.1054972
## 3073 0.13781392 0.12859229 0.1168756 0.1054972
## 3074 0.10650888 0.12859229 0.1168756 0.1142069
## 3075 0.13781392 0.12859229 0.1168756 0.1142069
## 3076 0.13781392 0.12859229 0.1082367 0.1142069
## 3077 0.13781392 0.12859229 0.1168756 0.1142069
## 3078 0.07666667 0.05274566 0.1168756 0.1142069
## 3079 0.10650888 0.12859229 0.1168756 0.1142069
## 3080 0.07843137 0.12859229 0.1168756 0.1142069
## 3081 0.10650888 0.12859229 0.1168756 0.1142069
## 3082 0.13781392 0.12859229 0.1082367 0.1142069
## 3083 0.10650888 0.12859229 0.1168756 0.1142069
## 3084 0.07843137 0.12859229 0.1168756 0.1142069
## 3085 0.13781392 0.12859229 0.1082367 0.1142069
## 3086 0.07843137 0.12859229 0.1082367 0.1142069
## 3087 0.10978875 0.12859229 0.1168756 0.1142069
## 3088 0.10650888 0.12859229 0.1082367 0.1142069
## 3089 0.07843137 0.12859229 0.1168756 0.1142069
## 3090 0.11364176 0.12859229 0.1168756 0.1142069
## 3091 0.13781392 0.12859229 0.1168756 0.1142069
## 3092 0.10650888 0.12859229 0.1168756 0.1142069
## 3093 0.07843137 0.12859229 0.1082367 0.1054972
## 3094 0.13781392 0.12859229 0.1168756 0.1142069
## 3095 0.07843137 0.12859229 0.1168756 0.1142069
## 3096 0.10650888 0.12859229 0.1082367 0.1142069
## 3097 0.13781392 0.12859229 0.1082367 0.1142069
## 3098 0.13781392 0.05274566 0.1082367 0.1142069
## 3099 0.13781392 0.12859229 0.1168756 0.1142069
## 3100 0.11364176 0.12859229 0.1082367 0.1142069
## 3101 0.10650888 0.05274566 0.1082367 0.1142069
## 3102 0.07843137 0.12859229 0.1168756 0.1142069
## 3103 0.13958482 0.12859229 0.1082367 0.1142069
## 3104 0.13781392 0.05274566 0.1168756 0.1142069
## 3105 0.10650888 0.12859229 0.1168756 0.1142069
## 3106 0.13958482 0.12859229 0.1040100 0.1040100
## 3107 0.07843137 0.05274566 0.1168756 0.1142069
## 3108 0.07843137 0.12859229 0.1082367 0.1142069
## 3109 0.10978875 0.12859229 0.1040100 0.1040100
## 3110 0.11364176 0.12859229 0.1168756 0.1054972
## 3111 0.13781392 0.12859229 0.1082367 0.1142069
## 3112 0.10650888 0.12859229 0.1082367 0.1142069
## 3113 0.11364176 0.12859229 0.1168756 0.1142069
## 3114 0.10650888 0.12859229 0.1082367 0.1142069
## 3115 0.07843137 0.12859229 0.1082367 0.1142069
## 3116 0.07666667 0.12859229 0.1082367 0.1054972
## 3117 0.10650888 0.12859229 0.1168756 0.1054972
## 3118 0.13781392 0.12859229 0.1082367 0.1142069
## 3119 0.13958482 0.12859229 0.1082367 0.1142069
## 3120 0.10650888 0.12859229 0.1082367 0.1142069
## 3121 0.07843137 0.05274566 0.1168756 0.1054972
## 3122 0.10650888 0.05274566 0.1082367 0.1054972
## 3123 0.13781392 0.12859229 0.1082367 0.1054972
## 3124 0.07843137 0.12859229 0.1168756 0.1142069
## 3125 0.11364176 0.12859229 0.1168756 0.1142069
## 3126 0.13781392 0.12859229 0.1082367 0.1142069
## 3127 0.13781392 0.12859229 0.1168756 0.1142069
## 3128 0.10650888 0.12859229 0.1168756 0.1142069
## 3129 0.07666667 0.05274566 0.1168756 0.1054972
## 3130 0.10650888 0.12859229 0.1168756 0.1054972
## 3131 0.07843137 0.12859229 0.1168756 0.1142069
## 3132 0.10650888 0.12859229 0.1168756 0.1054972
## 3133 0.11364176 0.12859229 0.1168756 0.1142069
## 3134 0.13781392 0.12859229 0.1168756 0.1142069
## 3135 0.11364176 0.12859229 0.1168756 0.1142069
## 3136 0.13781392 0.12859229 0.1082367 0.1142069
## 3137 0.10978875 0.12859229 0.1168756 0.1142069
## 3138 0.10650888 0.05274566 0.1168756 0.1054972
## 3139 0.13781392 0.12859229 0.1082367 0.1142069
## 3140 0.13781392 0.12859229 0.1082367 0.1142069
## 3141 0.10650888 0.05274566 0.1168756 0.1142069
## 3142 0.13781392 0.12859229 0.1082367 0.1054972
## 3143 0.13781392 0.12859229 0.1082367 0.1142069
## 3144 0.07843137 0.12859229 0.1168756 0.1054972
## 3145 0.13781392 0.12859229 0.1168756 0.1054972
## 3146 0.07843137 0.12859229 0.1082367 0.1142069
## 3147 0.13958482 0.05274566 0.1168756 0.1142069
## 3148 0.13781392 0.12859229 0.1168756 0.1142069
## 3149 0.13781392 0.12859229 0.1168756 0.1054972
## 3150 0.13781392 0.12859229 0.1082367 0.1142069
## 3151 0.11364176 0.12859229 0.1082367 0.1142069
## 3152 0.13781392 0.12859229 0.1168756 0.1142069
## 3153 0.10650888 0.12859229 0.1168756 0.1142069
## 3154 0.07843137 0.12859229 0.1168756 0.1142069
## 3155 0.11364176 0.12859229 0.1082367 0.1142069
## 3156 0.07843137 0.12859229 0.1168756 0.1054972
## 3157 0.07666667 0.12859229 0.1082367 0.1142069
## 3158 0.10650888 0.12859229 0.1082367 0.1142069
## 3159 0.07843137 0.05274566 0.1168756 0.1142069
## 3160 0.13781392 0.12859229 0.1040100 0.1040100
## 3161 0.13781392 0.12859229 0.1082367 0.1142069
## 3162 0.13781392 0.12859229 0.1168756 0.1142069
## 3163 0.10650888 0.12859229 0.1168756 0.1142069
## 3164 0.07843137 0.12859229 0.1082367 0.1142069
## 3165 0.11364176 0.12859229 0.1082367 0.1142069
## 3166 0.07843137 0.12859229 0.1082367 0.1142069
## 3167 0.13958482 0.12859229 0.1168756 0.1142069
## 3168 0.11364176 0.05274566 0.1168756 0.1054972
## 3169 0.13781392 0.12859229 0.1168756 0.1142069
## 3170 0.10650888 0.12859229 0.1082367 0.1142069
## 3171 0.10650888 0.12859229 0.1082367 0.1142069
## 3172 0.13958482 0.12859229 0.1168756 0.1142069
## 3173 0.10650888 0.12859229 0.1168756 0.1142069
## 3174 0.13781392 0.12859229 0.1082367 0.1142069
## 3175 0.10978875 0.12859229 0.1168756 0.1142069
## 3176 0.11364176 0.05274566 0.1168756 0.1142069
## 3177 0.13958482 0.12859229 0.1082367 0.1142069
## 3178 0.13781392 0.12859229 0.1168756 0.1142069
## 3179 0.13781392 0.12859229 0.1168756 0.1142069
## 3180 0.10650888 0.12859229 0.1082367 0.1142069
## 3181 0.11364176 0.12859229 0.1168756 0.1142069
## 3182 0.07666667 0.12859229 0.1082367 0.1142069
## 3183 0.10650888 0.12859229 0.1168756 0.1142069
## 3184 0.13781392 0.12859229 0.1168756 0.1054972
## 3185 0.10650888 0.05274566 0.1168756 0.1142069
## 3186 0.13781392 0.12859229 0.1082367 0.1142069
## 3187 0.10650888 0.12859229 0.1168756 0.1142069
## 3188 0.11364176 0.12859229 0.1168756 0.1142069
## 3189 0.10978875 0.12859229 0.1082367 0.1142069
## 3190 0.07843137 0.12859229 0.1082367 0.1142069
## 3191 0.07843137 0.12859229 0.1082367 0.1142069
## 3192 0.13781392 0.12859229 0.1168756 0.1142069
## 3193 0.10650888 0.05274566 0.1082367 0.1142069
## 3194 0.10650888 0.12859229 0.1168756 0.1142069
## 3195 0.11364176 0.12859229 0.1168756 0.1142069
## 3196 0.11364176 0.12859229 0.1168756 0.1142069
## 3197 0.07666667 0.12859229 0.1082367 0.1142069
## 3198 0.10650888 0.12859229 0.1168756 0.1142069
## 3199 0.11364176 0.12859229 0.1082367 0.1142069
## 3200 0.13958482 0.05274566 0.1168756 0.1142069
## 3201 0.10650888 0.12859229 0.1168756 0.1142069
## 3202 0.10650888 0.12859229 0.1168756 0.1142069
## 3203 0.11364176 0.12859229 0.1082367 0.1054972
## 3204 0.10650888 0.12859229 0.1082367 0.1142069
## 3205 0.10978875 0.12859229 0.1082367 0.1142069
## 3206 0.11364176 0.12859229 0.1082367 0.1142069
## 3207 0.10650888 0.05274566 0.1168756 0.1142069
## 3208 0.11364176 0.12859229 0.1168756 0.1142069
## 3209 0.11364176 0.12859229 0.1082367 0.1054972
## 3210 0.10650888 0.12859229 0.1168756 0.1142069
## 3211 0.10650888 0.12859229 0.1168756 0.1142069
## 3212 0.11364176 0.12859229 0.1168756 0.1054972
## 3213 0.07843137 0.05274566 0.1040100 0.1040100
## 3214 0.10650888 0.12859229 0.1168756 0.1142069
## 3215 0.13781392 0.12859229 0.1082367 0.1142069
## 3216 0.13781392 0.12859229 0.1082367 0.1142069
## 3217 0.10650888 0.12859229 0.1168756 0.1142069
## 3218 0.13781392 0.12859229 0.1168756 0.1142069
## 3219 0.10978875 0.12859229 0.1168756 0.1142069
## 3220 0.07843137 0.12859229 0.1082367 0.1142069
## 3221 0.11364176 0.12859229 0.1168756 0.1142069
## 3222 0.13781392 0.12859229 0.1040100 0.1040100
## 3223 0.10650888 0.12859229 0.1168756 0.1054972
## 3224 0.13781392 0.12859229 0.1168756 0.1054972
## 3225 0.13781392 0.12859229 0.1082367 0.1142069
## 3226 0.10650888 0.05274566 0.1082367 0.1142069
## 3227 0.10650888 0.12859229 0.1082367 0.1142069
## 3228 0.11364176 0.12859229 0.1082367 0.1142069
## 3229 0.10650888 0.12859229 0.1082367 0.1142069
## 3230 0.13781392 0.12859229 0.1168756 0.1142069
## 3231 0.13781392 0.12859229 0.1168756 0.1142069
## 3232 0.07843137 0.12859229 0.1082367 0.1142069
## 3233 0.07843137 0.12859229 0.1168756 0.1142069
## 3234 0.13781392 0.12859229 0.1082367 0.1142069
## 3235 0.10650888 0.12859229 0.1168756 0.1142069
## 3236 0.07666667 0.12859229 0.1168756 0.1142069
## 3237 0.10978875 0.12859229 0.1040100 0.1040100
## 3238 0.07843137 0.05274566 0.1082367 0.1142069
## 3239 0.13781392 0.12859229 0.1082367 0.1142069
## 3240 0.13781392 0.12859229 0.1082367 0.1142069
## 3241 0.10650888 0.12859229 0.1168756 0.1142069
## 3242 0.10978875 0.12859229 0.1082367 0.1054972
## 3243 0.13781392 0.12859229 0.1168756 0.1142069
## 3244 0.10650888 0.12859229 0.1168756 0.1142069
## 3245 0.10650888 0.12859229 0.1168756 0.1142069
## 3246 0.13781392 0.12859229 0.1168756 0.1142069
## 3247 0.10650888 0.12859229 0.1168756 0.1142069
## 3248 0.10650888 0.12859229 0.1168756 0.1054972
## 3249 0.10650888 0.12859229 0.1082367 0.1142069
## 3250 0.13781392 0.12859229 0.1168756 0.1142069
## 3251 0.13781392 0.12859229 0.1168756 0.1142069
## 3252 0.10650888 0.12859229 0.1168756 0.1142069
## 3253 0.07843137 0.05274566 0.1168756 0.1142069
## 3254 0.11364176 0.12859229 0.1168756 0.1142069
## 3255 0.07843137 0.12859229 0.1082367 0.1142069
## 3256 0.07843137 0.12859229 0.1040100 0.1040100
## 3257 0.10650888 0.12859229 0.1082367 0.1142069
## 3258 0.13781392 0.12859229 0.1168756 0.1142069
## 3259 0.10650888 0.12859229 0.1168756 0.1054972
## 3260 0.13958482 0.05274566 0.1168756 0.1142069
## 3261 0.13781392 0.12859229 0.1082367 0.1142069
## 3262 0.13781392 0.12859229 0.1168756 0.1142069
## 3263 0.11364176 0.12859229 0.1168756 0.1142069
## 3264 0.07666667 0.05274566 0.1082367 0.1142069
## 3265 0.10650888 0.12859229 0.1168756 0.1142069
## 3266 0.13781392 0.12859229 0.1082367 0.1054972
## 3267 0.07843137 0.12859229 0.1082367 0.1142069
## 3268 0.07843137 0.12859229 0.1168756 0.1142069
## 3269 0.10650888 0.12859229 0.1082367 0.1142069
## 3270 0.07843137 0.12859229 0.1168756 0.1142069
## 3271 0.11364176 0.12859229 0.1040100 0.1040100
## 3272 0.11364176 0.12859229 0.1168756 0.1142069
## 3273 0.13781392 0.12859229 0.1168756 0.1142069
## 3274 0.10650888 0.05274566 0.1168756 0.1142069
## 3275 0.07843137 0.12859229 0.1082367 0.1142069
## 3276 0.13781392 0.12859229 0.1168756 0.1142069
## 3277 0.07666667 0.05274566 0.1168756 0.1054972
## 3278 0.13781392 0.12859229 0.1168756 0.1142069
## 3279 0.07843137 0.12859229 0.1168756 0.1054972
## 3280 0.07843137 0.12859229 0.1082367 0.1054972
## 3281 0.10978875 0.05274566 0.1168756 0.1142069
## 3282 0.07843137 0.12859229 0.1082367 0.1142069
## 3283 0.10650888 0.12859229 0.1168756 0.1054972
## 3284 0.11364176 0.12859229 0.1168756 0.1142069
## 3285 0.07843137 0.12859229 0.1082367 0.1142069
## 3286 0.07666667 0.05274566 0.1082367 0.1142069
## 3287 0.07843137 0.12859229 0.1082367 0.1142069
## 3288 0.13781392 0.12859229 0.1082367 0.1054972
## 3289 0.07843137 0.12859229 0.1168756 0.1142069
## 3290 0.11364176 0.05274566 0.1168756 0.1142069
## 3291 0.10650888 0.12859229 0.1082367 0.1142069
## 3292 0.10650888 0.12859229 0.1168756 0.1142069
## 3293 0.10650888 0.12859229 0.1082367 0.1054972
## 3294 0.10650888 0.12859229 0.1168756 0.1142069
## 3295 0.13781392 0.12859229 0.1082367 0.1054972
## 3296 0.10650888 0.12859229 0.1082367 0.1142069
## 3297 0.10650888 0.12859229 0.1168756 0.1142069
## 3298 0.13781392 0.12859229 0.1082367 0.1142069
## 3299 0.13781392 0.12859229 0.1082367 0.1142069
## 3300 0.10978875 0.12859229 0.1168756 0.1054972
## 3301 0.13781392 0.12859229 0.1168756 0.1142069
## 3302 0.11364176 0.12859229 0.1082367 0.1142069
## 3303 0.10650888 0.12859229 0.1082367 0.1142069
## 3304 0.13781392 0.12859229 0.1082367 0.1142069
## 3305 0.10650888 0.12859229 0.1082367 0.1142069
## 3306 0.10650888 0.12859229 0.1168756 0.1142069
## 3307 0.13781392 0.05274566 0.1168756 0.1142069
## 3308 0.11364176 0.05274566 0.1168756 0.1142069
## 3309 0.13781392 0.12859229 0.1082367 0.1142069
## 3310 0.13781392 0.12859229 0.1168756 0.1054972
## 3311 0.10650888 0.12859229 0.1168756 0.1142069
## 3312 0.11364176 0.12859229 0.1168756 0.1054972
## 3313 0.10978875 0.12859229 0.1168756 0.1142069
## 3314 0.13781392 0.12859229 0.1082367 0.1142069
## 3315 0.13781392 0.12859229 0.1168756 0.1142069
## 3316 0.10978875 0.12859229 0.1082367 0.1142069
## 3317 0.07843137 0.12859229 0.1082367 0.1142069
## 3318 0.11364176 0.12859229 0.1168756 0.1142069
## 3319 0.13781392 0.12859229 0.1082367 0.1142069
## 3320 0.10978875 0.05274566 0.1082367 0.1142069
## 3321 0.11364176 0.12859229 0.1168756 0.1054972
## 3322 0.13958482 0.12859229 0.1082367 0.1142069
## 3323 0.10978875 0.05274566 0.1168756 0.1142069
## 3324 0.13781392 0.12859229 0.1082367 0.1142069
## 3325 0.10650888 0.12859229 0.1168756 0.1142069
## 3326 0.07843137 0.05274566 0.1168756 0.1142069
## 3327 0.10650888 0.12859229 0.1168756 0.1142069
## 3328 0.13781392 0.12859229 0.1082367 0.1142069
## 3329 0.13781392 0.12859229 0.1040100 0.1040100
## 3330 0.10650888 0.12859229 0.1082367 0.1054972
## 3331 0.10650888 0.12859229 0.1168756 0.1142069
## 3332 0.10978875 0.12859229 0.1168756 0.1142069
## 3333 0.10650888 0.12859229 0.1168756 0.1142069
## 3334 0.10650888 0.12859229 0.1082367 0.1142069
## 3335 0.07843137 0.12859229 0.1168756 0.1142069
## 3336 0.11364176 0.12859229 0.1082367 0.1142069
## 3337 0.11364176 0.12859229 0.1082367 0.1142069
## 3338 0.07843137 0.12859229 0.1168756 0.1142069
## 3339 0.13958482 0.12859229 0.1168756 0.1142069
## 3340 0.07843137 0.12859229 0.1168756 0.1054972
## 3341 0.07843137 0.12859229 0.1168756 0.1054972
## 3342 0.10650888 0.12859229 0.1040100 0.1040100
## 3343 0.13781392 0.12859229 0.1168756 0.1142069
## 3344 0.10978875 0.12859229 0.1168756 0.1142069
## 3345 0.10978875 0.12859229 0.1082367 0.1142069
## 3346 0.10650888 0.12859229 0.1168756 0.1142069
## 3347 0.07843137 0.12859229 0.1168756 0.1054972
## 3348 0.13781392 0.12859229 0.1168756 0.1054972
## 3349 0.13781392 0.12859229 0.1082367 0.1142069
## 3350 0.13958482 0.12859229 0.1168756 0.1142069
## 3351 0.07666667 0.12859229 0.1082367 0.1142069
## 3352 0.10650888 0.12859229 0.1168756 0.1142069
## 3353 0.10978875 0.12859229 0.1168756 0.1142069
## 3354 0.13781392 0.05274566 0.1082367 0.1142069
## 3355 0.13781392 0.12859229 0.1082367 0.1142069
## 3356 0.13781392 0.12859229 0.1082367 0.1142069
## 3357 0.13781392 0.12859229 0.1168756 0.1142069
## 3358 0.13781392 0.12859229 0.1168756 0.1142069
## 3359 0.10650888 0.12859229 0.1040100 0.1040100
## 3360 0.11364176 0.12859229 0.1168756 0.1142069
## 3361 0.07843137 0.05274566 0.1082367 0.1054972
## 3362 0.13958482 0.12859229 0.1168756 0.1142069
## 3363 0.13781392 0.12859229 0.1168756 0.1142069
## 3364 0.07666667 0.12859229 0.1168756 0.1142069
## 3365 0.11364176 0.12859229 0.1082367 0.1142069
## 3366 0.07843137 0.12859229 0.1082367 0.1142069
## 3367 0.10650888 0.12859229 0.1082367 0.1054972
## 3368 0.11364176 0.12859229 0.1168756 0.1142069
## 3369 0.13958482 0.12859229 0.1082367 0.1142069
## 3370 0.11364176 0.12859229 0.1082367 0.1142069
## 3371 0.07666667 0.12859229 0.1168756 0.1054972
## 3372 0.10650888 0.12859229 0.1040100 0.1040100
## 3373 0.13781392 0.12859229 0.1168756 0.1142069
## 3374 0.13781392 0.12859229 0.1082367 0.1142069
## 3375 0.13958482 0.12859229 0.1082367 0.1142069
## 3376 0.07843137 0.12859229 0.1082367 0.1142069
## 3377 0.10650888 0.12859229 0.1082367 0.1142069
## 3378 0.13781392 0.12859229 0.1168756 0.1142069
## 3379 0.11364176 0.12859229 0.1168756 0.1142069
## 3380 0.11364176 0.12859229 0.1168756 0.1054972
## 3381 0.10650888 0.05274566 0.1082367 0.1142069
## 3382 0.07843137 0.05274566 0.1168756 0.1142069
## 3383 0.10650888 0.12859229 0.1168756 0.1142069
## 3384 0.11364176 0.12859229 0.1168756 0.1142069
## 3385 0.07843137 0.12859229 0.1168756 0.1142069
## 3386 0.13781392 0.12859229 0.1168756 0.1142069
## 3387 0.13781392 0.12859229 0.1168756 0.1142069
## 3388 0.07843137 0.12859229 0.1168756 0.1142069
## 3389 0.07843137 0.05274566 0.1082367 0.1142069
## 3390 0.10650888 0.12859229 0.1168756 0.1142069
## 3391 0.10650888 0.12859229 0.1082367 0.1054972
## 3392 0.13781392 0.12859229 0.1082367 0.1142069
## 3393 0.13958482 0.12859229 0.1082367 0.1142069
## 3394 0.13781392 0.12859229 0.1168756 0.1142069
## 3395 0.10650888 0.12859229 0.1168756 0.1142069
## 3396 0.10650888 0.12859229 0.1082367 0.1054972
## 3397 0.10650888 0.12859229 0.1168756 0.1142069
## 3398 0.10650888 0.12859229 0.1082367 0.1142069
## 3399 0.10650888 0.12859229 0.1168756 0.1054972
## 3400 0.13781392 0.05274566 0.1168756 0.1142069
## 3401 0.13781392 0.12859229 0.1082367 0.1142069
## 3402 0.13781392 0.12859229 0.1168756 0.1054972
## 3403 0.13958482 0.12859229 0.1168756 0.1142069
## 3404 0.10978875 0.12859229 0.1082367 0.1142069
## 3405 0.13781392 0.12859229 0.1168756 0.1142069
## 3406 0.07843137 0.12859229 0.1168756 0.1142069
## 3407 0.10978875 0.12859229 0.1168756 0.1142069
## 3408 0.13781392 0.12859229 0.1168756 0.1142069
## 3409 0.10650888 0.12859229 0.1082367 0.1054972
## 3410 0.11364176 0.12859229 0.1040100 0.1040100
## 3411 0.13781392 0.12859229 0.1168756 0.1142069
## 3412 0.11364176 0.12859229 0.1168756 0.1142069
## 3413 0.10978875 0.05274566 0.1082367 0.1054972
## 3414 0.13781392 0.12859229 0.1168756 0.1054972
## 3415 0.13781392 0.12859229 0.1168756 0.1142069
## 3416 0.13781392 0.12859229 0.1168756 0.1142069
## 3417 0.10978875 0.12859229 0.1168756 0.1142069
## 3418 0.13781392 0.12859229 0.1168756 0.1142069
## 3419 0.13781392 0.12859229 0.1168756 0.1142069
## 3420 0.07843137 0.05274566 0.1082367 0.1054972
## 3421 0.11364176 0.12859229 0.1168756 0.1054972
## 3422 0.07666667 0.12859229 0.1082367 0.1142069
## 3423 0.10650888 0.12859229 0.1082367 0.1142069
## 3424 0.13781392 0.12859229 0.1168756 0.1142069
## 3425 0.11364176 0.12859229 0.1168756 0.1142069
## 3426 0.13958482 0.12859229 0.1168756 0.1142069
## 3427 0.10650888 0.12859229 0.1168756 0.1142069
## 3428 0.13781392 0.12859229 0.1082367 0.1142069
## 3429 0.07843137 0.12859229 0.1082367 0.1142069
## 3430 0.10650888 0.12859229 0.1168756 0.1142069
## 3431 0.11364176 0.12859229 0.1082367 0.1142069
## 3432 0.13781392 0.12859229 0.1168756 0.1142069
## 3433 0.13781392 0.12859229 0.1168756 0.1142069
## 3434 0.13781392 0.12859229 0.1168756 0.1054972
## 3435 0.13781392 0.12859229 0.1168756 0.1142069
## 3436 0.10650888 0.12859229 0.1082367 0.1142069
## 3437 0.13781392 0.12859229 0.1082367 0.1142069
## 3438 0.10650888 0.05274566 0.1040100 0.1040100
## 3439 0.13781392 0.12859229 0.1082367 0.1054972
## 3440 0.07666667 0.12859229 0.1082367 0.1142069
## 3441 0.07843137 0.12859229 0.1082367 0.1142069
## 3442 0.07843137 0.12859229 0.1168756 0.1142069
## 3443 0.07666667 0.12859229 0.1168756 0.1142069
## 3444 0.07843137 0.12859229 0.1168756 0.1054972
## 3445 0.07666667 0.12859229 0.1168756 0.1054972
## 3446 0.13781392 0.12859229 0.1082367 0.1054972
## 3447 0.11364176 0.12859229 0.1168756 0.1142069
## 3448 0.07843137 0.12859229 0.1168756 0.1142069
## 3449 0.11364176 0.12859229 0.1082367 0.1142069
## 3450 0.13781392 0.12859229 0.1168756 0.1142069
## 3451 0.10978875 0.05274566 0.1168756 0.1142069
## 3452 0.10978875 0.12859229 0.1082367 0.1142069
## 3453 0.10650888 0.12859229 0.1168756 0.1142069
## 3454 0.10978875 0.12859229 0.1168756 0.1142069
## 3455 0.10650888 0.12859229 0.1168756 0.1142069
## 3456 0.07666667 0.05274566 0.1168756 0.1142069
## 3457 0.13781392 0.12859229 0.1082367 0.1142069
## 3458 0.10650888 0.12859229 0.1082367 0.1142069
## 3459 0.07843137 0.12859229 0.1082367 0.1142069
## 3460 0.10650888 0.12859229 0.1168756 0.1142069
## 3461 0.10650888 0.12859229 0.1082367 0.1142069
## 3462 0.13781392 0.12859229 0.1168756 0.1142069
## 3463 0.13781392 0.12859229 0.1082367 0.1142069
## 3464 0.13781392 0.12859229 0.1168756 0.1142069
## 3465 0.10978875 0.12859229 0.1168756 0.1142069
## 3466 0.07843137 0.12859229 0.1082367 0.1142069
## 3467 0.10978875 0.12859229 0.1168756 0.1142069
## 3468 0.10650888 0.12859229 0.1082367 0.1142069
## 3469 0.10650888 0.12859229 0.1082367 0.1142069
## 3470 0.10978875 0.12859229 0.1168756 0.1142069
## 3471 0.07666667 0.12859229 0.1168756 0.1054972
## 3472 0.13781392 0.12859229 0.1082367 0.1142069
## 3473 0.13781392 0.12859229 0.1168756 0.1054972
## 3474 0.13781392 0.12859229 0.1168756 0.1142069
## 3475 0.13781392 0.12859229 0.1082367 0.1142069
## 3476 0.13781392 0.12859229 0.1082367 0.1142069
## 3477 0.10650888 0.12859229 0.1082367 0.1142069
## 3478 0.10978875 0.12859229 0.1082367 0.1142069
## 3479 0.13781392 0.12859229 0.1082367 0.1142069
## 3480 0.07843137 0.05274566 0.1082367 0.1142069
## 3481 0.13958482 0.12859229 0.1168756 0.1142069
## 3482 0.10978875 0.05274566 0.1168756 0.1142069
## 3483 0.10650888 0.12859229 0.1168756 0.1142069
## 3484 0.10978875 0.12859229 0.1168756 0.1142069
## 3485 0.10650888 0.05274566 0.1082367 0.1142069
## 3486 0.13958482 0.05274566 0.1082367 0.1054972
## 3487 0.10650888 0.12859229 0.1082367 0.1142069
## 3488 0.13781392 0.12859229 0.1168756 0.1142069
## 3489 0.10978875 0.12859229 0.1168756 0.1142069
## 3490 0.11364176 0.05274566 0.1082367 0.1142069
## 3491 0.10978875 0.12859229 0.1082367 0.1142069
## 3492 0.10978875 0.12859229 0.1168756 0.1142069
## 3493 0.11364176 0.12859229 0.1082367 0.1142069
## 3494 0.13781392 0.12859229 0.1168756 0.1054972
## 3495 0.07843137 0.12859229 0.1168756 0.1142069
## 3496 0.10650888 0.05274566 0.1168756 0.1142069
## 3497 0.11364176 0.12859229 0.1082367 0.1142069
## 3498 0.13781392 0.12859229 0.1168756 0.1142069
## 3499 0.13781392 0.12859229 0.1168756 0.1142069
## 3500 0.13781392 0.12859229 0.1082367 0.1142069
## 3501 0.13781392 0.12859229 0.1082367 0.1142069
## 3502 0.10650888 0.12859229 0.1082367 0.1142069
## 3503 0.10978875 0.12859229 0.1082367 0.1142069
## 3504 0.11364176 0.12859229 0.1082367 0.1054972
## 3505 0.13781392 0.12859229 0.1082367 0.1142069
## 3506 0.10650888 0.12859229 0.1082367 0.1142069
## 3507 0.13781392 0.12859229 0.1168756 0.1054972
## 3508 0.11364176 0.12859229 0.1168756 0.1142069
## 3509 0.13781392 0.12859229 0.1168756 0.1142069
## 3510 0.10650888 0.12859229 0.1168756 0.1142069
## 3511 0.13781392 0.12859229 0.1168756 0.1142069
## 3512 0.10650888 0.12859229 0.1082367 0.1142069
## 3513 0.07666667 0.05274566 0.1082367 0.1142069
## 3514 0.10978875 0.05274566 0.1168756 0.1142069
## 3515 0.11364176 0.12859229 0.1168756 0.1142069
## 3516 0.11364176 0.12859229 0.1082367 0.1142069
## 3517 0.10650888 0.12859229 0.1168756 0.1054972
## 3518 0.13781392 0.12859229 0.1168756 0.1142069
## 3519 0.13958482 0.12859229 0.1168756 0.1142069
## 3520 0.10978875 0.05274566 0.1168756 0.1054972
## 3521 0.13781392 0.12859229 0.1168756 0.1142069
## 3522 0.07843137 0.12859229 0.1082367 0.1142069
## 3523 0.13781392 0.12859229 0.1040100 0.1040100
## 3524 0.10650888 0.12859229 0.1082367 0.1142069
## 3525 0.13781392 0.12859229 0.1168756 0.1054972
## 3526 0.13781392 0.05274566 0.1168756 0.1142069
## 3527 0.07666667 0.05274566 0.1168756 0.1054972
## 3528 0.10978875 0.05274566 0.1168756 0.1142069
## 3529 0.10650888 0.12859229 0.1082367 0.1142069
## 3530 0.13781392 0.12859229 0.1082367 0.1142069
## 3531 0.10978875 0.05274566 0.1168756 0.1142069
## 3532 0.10650888 0.12859229 0.1168756 0.1142069
## 3533 0.10650888 0.05274566 0.1168756 0.1142069
## 3534 0.11364176 0.12859229 0.1082367 0.1054972
## 3535 0.13781392 0.05274566 0.1082367 0.1142069
## 3536 0.11364176 0.12859229 0.1082367 0.1142069
## 3537 0.07666667 0.05274566 0.1168756 0.1142069
## 3538 0.10978875 0.05274566 0.1168756 0.1142069
## 3539 0.10650888 0.05274566 0.1168756 0.1142069
## 3540 0.13781392 0.12859229 0.1168756 0.1142069
## 3541 0.10650888 0.12859229 0.1168756 0.1054972
## 3542 0.11364176 0.12859229 0.1082367 0.1054972
## 3543 0.13781392 0.12859229 0.1082367 0.1142069
## 3544 0.11364176 0.12859229 0.1168756 0.1142069
## 3545 0.11364176 0.05274566 0.1082367 0.1054972
## 3546 0.10650888 0.12859229 0.1168756 0.1142069
## 3547 0.07843137 0.12859229 0.1168756 0.1142069
## 3548 0.07666667 0.05274566 0.1168756 0.1054972
## 3549 0.07843137 0.05274566 0.1082367 0.1142069
## 3550 0.10650888 0.12859229 0.1168756 0.1142069
## 3551 0.13781392 0.12859229 0.1168756 0.1142069
## 3552 0.10650888 0.12859229 0.1168756 0.1142069
## 3553 0.10978875 0.05274566 0.1082367 0.1142069
## 3554 0.11364176 0.12859229 0.1082367 0.1142069
## 3555 0.11364176 0.05274566 0.1082367 0.1142069
## 3556 0.10650888 0.05274566 0.1168756 0.1142069
## 3557 0.07843137 0.12859229 0.1168756 0.1142069
## 3558 0.13781392 0.05274566 0.1082367 0.1142069
## 3559 0.10978875 0.12859229 0.1168756 0.1142069
## 3560 0.07843137 0.12859229 0.1168756 0.1142069
## 3561 0.13781392 0.12859229 0.1082367 0.1142069
## 3562 0.07843137 0.12859229 0.1082367 0.1142069
## 3563 0.10650888 0.12859229 0.1082367 0.1142069
## 3564 0.11364176 0.12859229 0.1082367 0.1054972
## 3565 0.13781392 0.12859229 0.1082367 0.1142069
## 3566 0.13781392 0.05274566 0.1168756 0.1054972
## 3567 0.07843137 0.05274566 0.1082367 0.1142069
## 3568 0.13781392 0.12859229 0.1168756 0.1142069
## 3569 0.07843137 0.12859229 0.1082367 0.1142069
## 3570 0.13781392 0.12859229 0.1082367 0.1142069
## 3571 0.11364176 0.12859229 0.1168756 0.1142069
## 3572 0.11364176 0.12859229 0.1168756 0.1142069
## 3573 0.07843137 0.05274566 0.1168756 0.1142069
## 3574 0.11364176 0.12859229 0.1082367 0.1142069
## 3575 0.10650888 0.12859229 0.1082367 0.1142069
## 3576 0.13781392 0.12859229 0.1168756 0.1054972
## 3577 0.10650888 0.12859229 0.1168756 0.1142069
## 3578 0.11364176 0.12859229 0.1082367 0.1142069
## 3579 0.13781392 0.12859229 0.1082367 0.1142069
## 3580 0.11364176 0.12859229 0.1168756 0.1142069
## 3581 0.07843137 0.12859229 0.1082367 0.1142069
## 3582 0.07843137 0.12859229 0.1168756 0.1142069
## 3583 0.10650888 0.12859229 0.1168756 0.1142069
## 3584 0.07843137 0.12859229 0.1168756 0.1142069
## 3585 0.11364176 0.12859229 0.1082367 0.1142069
## 3586 0.07666667 0.12859229 0.1168756 0.1142069
## 3587 0.13958482 0.05274566 0.1082367 0.1142069
## 3588 0.13781392 0.05274566 0.1168756 0.1142069
## 3589 0.10650888 0.12859229 0.1082367 0.1142069
## 3590 0.13781392 0.12859229 0.1168756 0.1142069
## 3591 0.11364176 0.12859229 0.1168756 0.1142069
## 3592 0.13781392 0.12859229 0.1082367 0.1142069
## 3593 0.13781392 0.12859229 0.1168756 0.1054972
## 3594 0.07843137 0.12859229 0.1082367 0.1054972
## 3595 0.13781392 0.12859229 0.1168756 0.1142069
## 3596 0.07843137 0.12859229 0.1082367 0.1142069
## 3597 0.13781392 0.12859229 0.1082367 0.1142069
## 3598 0.10978875 0.05274566 0.1168756 0.1142069
## 3599 0.13781392 0.12859229 0.1082367 0.1054972
## 3600 0.07666667 0.12859229 0.1082367 0.1054972
## 3601 0.11364176 0.12859229 0.1082367 0.1142069
## 3602 0.07843137 0.05274566 0.1082367 0.1142069
## 3603 0.10978875 0.05274566 0.1082367 0.1142069
## 3604 0.10650888 0.12859229 0.1168756 0.1054972
## 3605 0.13781392 0.12859229 0.1168756 0.1142069
## 3606 0.13781392 0.12859229 0.1168756 0.1142069
## 3607 0.13781392 0.12859229 0.1168756 0.1142069
## 3608 0.10650888 0.12859229 0.1082367 0.1142069
## 3609 0.10650888 0.12859229 0.1168756 0.1142069
## 3610 0.10978875 0.12859229 0.1082367 0.1142069
## 3611 0.10650888 0.05274566 0.1082367 0.1142069
## 3612 0.11364176 0.05274566 0.1082367 0.1142069
## 3613 0.11364176 0.12859229 0.1168756 0.1142069
## 3614 0.13781392 0.12859229 0.1082367 0.1142069
## 3615 0.11364176 0.12859229 0.1168756 0.1142069
## 3616 0.10650888 0.12859229 0.1082367 0.1142069
## 3617 0.07843137 0.12859229 0.1168756 0.1142069
## 3618 0.11364176 0.12859229 0.1168756 0.1142069
## 3619 0.10650888 0.05274566 0.1082367 0.1142069
## 3620 0.07843137 0.05274566 0.1168756 0.1142069
## 3621 0.07666667 0.12859229 0.1082367 0.1142069
## 3622 0.10978875 0.12859229 0.1082367 0.1142069
## 3623 0.10650888 0.12859229 0.1168756 0.1142069
## 3624 0.07843137 0.12859229 0.1168756 0.1142069
## 3625 0.11364176 0.12859229 0.1168756 0.1142069
## 3626 0.10978875 0.05274566 0.1082367 0.1142069
## 3627 0.07843137 0.12859229 0.1168756 0.1142069
## 3628 0.10978875 0.05274566 0.1168756 0.1142069
## 3629 0.10978875 0.12859229 0.1168756 0.1142069
## 3630 0.11364176 0.12859229 0.1168756 0.1142069
## 3631 0.13958482 0.12859229 0.1168756 0.1142069
## 3632 0.07666667 0.12859229 0.1082367 0.1142069
## 3633 0.10650888 0.12859229 0.1082367 0.1142069
## 3634 0.10650888 0.12859229 0.1168756 0.1142069
## 3635 0.10650888 0.12859229 0.1168756 0.1142069
## 3636 0.07843137 0.12859229 0.1168756 0.1142069
## 3637 0.13781392 0.12859229 0.1082367 0.1142069
## 3638 0.13781392 0.12859229 0.1040100 0.1040100
## 3639 0.07843137 0.12859229 0.1082367 0.1142069
## 3640 0.13781392 0.12859229 0.1168756 0.1054972
## 3641 0.10650888 0.12859229 0.1082367 0.1142069
## 3642 0.07843137 0.05274566 0.1168756 0.1142069
## 3643 0.13958482 0.12859229 0.1040100 0.1040100
## 3644 0.10978875 0.05274566 0.1082367 0.1142069
## 3645 0.10650888 0.05274566 0.1168756 0.1142069
## 3646 0.13781392 0.12859229 0.1082367 0.1142069
## 3647 0.13781392 0.12859229 0.1082367 0.1142069
## 3648 0.11364176 0.12859229 0.1082367 0.1142069
## 3649 0.07666667 0.05274566 0.1168756 0.1054972
## 3650 0.10978875 0.05274566 0.1082367 0.1142069
## 3651 0.10978875 0.12859229 0.1168756 0.1142069
## 3652 0.13781392 0.12859229 0.1168756 0.1054972
## 3653 0.10650888 0.12859229 0.1082367 0.1054972
## 3654 0.10650888 0.12859229 0.1082367 0.1142069
## 3655 0.10650888 0.12859229 0.1082367 0.1142069
## 3656 0.10978875 0.05274566 0.1168756 0.1142069
## 3657 0.10650888 0.12859229 0.1168756 0.1142069
## 3658 0.11364176 0.12859229 0.1168756 0.1142069
## 3659 0.07843137 0.12859229 0.1082367 0.1142069
## 3660 0.07843137 0.12859229 0.1168756 0.1142069
## 3661 0.11364176 0.05274566 0.1082367 0.1142069
## 3662 0.10978875 0.05274566 0.1082367 0.1142069
## 3663 0.10978875 0.12859229 0.1082367 0.1142069
## 3664 0.11364176 0.12859229 0.1082367 0.1054972
## 3665 0.13958482 0.05274566 0.1082367 0.1142069
## 3666 0.13781392 0.12859229 0.1082367 0.1142069
## 3667 0.10650888 0.12859229 0.1168756 0.1142069
## 3668 0.10978875 0.12859229 0.1082367 0.1142069
## 3669 0.11364176 0.12859229 0.1168756 0.1142069
## 3670 0.13781392 0.12859229 0.1168756 0.1142069
## 3671 0.10650888 0.12859229 0.1168756 0.1142069
## 3672 0.07666667 0.12859229 0.1168756 0.1142069
## 3673 0.13958482 0.12859229 0.1082367 0.1142069
## 3674 0.10978875 0.12859229 0.1082367 0.1054972
## 3675 0.13781392 0.12859229 0.1168756 0.1142069
## 3676 0.13781392 0.12859229 0.1168756 0.1054972
## 3677 0.13958482 0.05274566 0.1082367 0.1142069
## 3678 0.11364176 0.12859229 0.1168756 0.1142069
## 3679 0.07666667 0.12859229 0.1082367 0.1142069
## 3680 0.10978875 0.05274566 0.1168756 0.1142069
## 3681 0.13781392 0.12859229 0.1040100 0.1040100
## 3682 0.10978875 0.05274566 0.1082367 0.1142069
## 3683 0.10650888 0.12859229 0.1082367 0.1142069
## 3684 0.13781392 0.12859229 0.1168756 0.1054972
## 3685 0.07843137 0.12859229 0.1082367 0.1142069
## 3686 0.13781392 0.12859229 0.1168756 0.1142069
## 3687 0.10650888 0.05274566 0.1168756 0.1142069
## 3688 0.13781392 0.12859229 0.1082367 0.1142069
## 3689 0.10650888 0.05274566 0.1168756 0.1142069
## 3690 0.13781392 0.12859229 0.1168756 0.1142069
## 3691 0.10978875 0.12859229 0.1168756 0.1142069
## 3692 0.07843137 0.05274566 0.1168756 0.1142069
## 3693 0.13781392 0.12859229 0.1168756 0.1054972
## 3694 0.10650888 0.05274566 0.1082367 0.1142069
## 3695 0.07843137 0.12859229 0.1168756 0.1142069
## 3696 0.10650888 0.12859229 0.1168756 0.1142069
## 3697 0.10650888 0.05274566 0.1168756 0.1054972
## 3698 0.07843137 0.05274566 0.1082367 0.1142069
## 3699 0.10650888 0.12859229 0.1168756 0.1142069
## 3700 0.10978875 0.12859229 0.1082367 0.1054972
## 3701 0.07843137 0.12859229 0.1082367 0.1142069
## 3702 0.10650888 0.12859229 0.1040100 0.1040100
## 3703 0.11364176 0.12859229 0.1168756 0.1142069
## 3704 0.10650888 0.12859229 0.1082367 0.1142069
## 3705 0.13781392 0.12859229 0.1082367 0.1142069
## 3706 0.07843137 0.05274566 0.1082367 0.1142069
## 3707 0.10650888 0.12859229 0.1168756 0.1142069
## 3708 0.10978875 0.12859229 0.1082367 0.1142069
## 3709 0.10650888 0.12859229 0.1082367 0.1142069
## 3710 0.10978875 0.12859229 0.1082367 0.1142069
## 3711 0.11364176 0.12859229 0.1168756 0.1054972
## 3712 0.07666667 0.12859229 0.1082367 0.1142069
## 3713 0.07666667 0.05274566 0.1168756 0.1054972
## 3714 0.10650888 0.12859229 0.1168756 0.1054972
## 3715 0.07843137 0.12859229 0.1082367 0.1142069
## 3716 0.13781392 0.12859229 0.1082367 0.1142069
## 3717 0.07843137 0.12859229 0.1082367 0.1142069
## 3718 0.10978875 0.12859229 0.1082367 0.1054972
## 3719 0.11364176 0.12859229 0.1082367 0.1142069
## 3720 0.10650888 0.12859229 0.1168756 0.1054972
## 3721 0.07666667 0.12859229 0.1168756 0.1142069
## 3722 0.07843137 0.12859229 0.1082367 0.1054972
## 3723 0.13781392 0.12859229 0.1082367 0.1142069
## 3724 0.13958482 0.05274566 0.1168756 0.1142069
## 3725 0.13958482 0.05274566 0.1168756 0.1142069
## 3726 0.07843137 0.12859229 0.1082367 0.1142069
## 3727 0.10650888 0.12859229 0.1168756 0.1142069
## 3728 0.10650888 0.12859229 0.1168756 0.1054972
## 3729 0.07666667 0.05274566 0.1082367 0.1142069
## 3730 0.10978875 0.05274566 0.1082367 0.1142069
## 3731 0.10978875 0.05274566 0.1168756 0.1142069
## 3732 0.13781392 0.12859229 0.1082367 0.1142069
## 3733 0.13781392 0.12859229 0.1082367 0.1142069
## 3734 0.13781392 0.12859229 0.1168756 0.1142069
## 3735 0.07666667 0.05274566 0.1168756 0.1142069
## 3736 0.11364176 0.12859229 0.1168756 0.1142069
## 3737 0.10978875 0.12859229 0.1082367 0.1142069
## 3738 0.11364176 0.12859229 0.1168756 0.1142069
## 3739 0.10978875 0.05274566 0.1168756 0.1142069
## 3740 0.10650888 0.12859229 0.1040100 0.1040100
## 3741 0.10650888 0.05274566 0.1168756 0.1142069
## 3742 0.10650888 0.12859229 0.1168756 0.1142069
## 3743 0.10650888 0.12859229 0.1168756 0.1054972
## 3744 0.13958482 0.12859229 0.1082367 0.1142069
## 3745 0.07843137 0.05274566 0.1082367 0.1142069
## 3746 0.13958482 0.05274566 0.1168756 0.1142069
## 3747 0.10650888 0.12859229 0.1082367 0.1142069
## 3748 0.11364176 0.12859229 0.1168756 0.1142069
## 3749 0.13781392 0.05274566 0.1168756 0.1142069
## 3750 0.07843137 0.12859229 0.1168756 0.1142069
## 3751 0.07843137 0.05274566 0.1082367 0.1142069
## 3752 0.13781392 0.05274566 0.1082367 0.1142069
## 3753 0.10650888 0.12859229 0.1168756 0.1142069
## 3754 0.07843137 0.05274566 0.1168756 0.1142069
## 3755 0.13781392 0.12859229 0.1082367 0.1142069
## 3756 0.10978875 0.12859229 0.1040100 0.1040100
## 3757 0.13958482 0.12859229 0.1168756 0.1142069
## 3758 0.07666667 0.12859229 0.1168756 0.1142069
## 3759 0.10650888 0.12859229 0.1082367 0.1142069
## 3760 0.07843137 0.12859229 0.1082367 0.1054972
## 3761 0.07843137 0.12859229 0.1082367 0.1054972
## 3762 0.10650888 0.12859229 0.1082367 0.1054972
## 3763 0.13781392 0.12859229 0.1082367 0.1142069
## 3764 0.13781392 0.12859229 0.1082367 0.1142069
## 3765 0.10978875 0.05274566 0.1082367 0.1142069
## 3766 0.07843137 0.12859229 0.1082367 0.1142069
## 3767 0.13781392 0.12859229 0.1168756 0.1142069
## 3768 0.10978875 0.05274566 0.1082367 0.1142069
## 3769 0.13781392 0.12859229 0.1168756 0.1142069
## 3770 0.11364176 0.12859229 0.1168756 0.1142069
## 3771 0.13781392 0.12859229 0.1082367 0.1142069
## 3772 0.13781392 0.12859229 0.1168756 0.1142069
## 3773 0.10978875 0.05274566 0.1168756 0.1054972
## 3774 0.10978875 0.12859229 0.1168756 0.1142069
## 3775 0.10978875 0.12859229 0.1082367 0.1142069
## 3776 0.13781392 0.12859229 0.1168756 0.1142069
## 3777 0.07843137 0.05274566 0.1082367 0.1142069
## 3778 0.07666667 0.05274566 0.1082367 0.1142069
## 3779 0.13781392 0.12859229 0.1168756 0.1142069
## 3780 0.11364176 0.12859229 0.1082367 0.1142069
## 3781 0.10978875 0.12859229 0.1082367 0.1142069
## 3782 0.07843137 0.12859229 0.1082367 0.1142069
## 3783 0.10650888 0.05274566 0.1168756 0.1142069
## 3784 0.13781392 0.12859229 0.1168756 0.1054972
## 3785 0.10650888 0.12859229 0.1168756 0.1054972
## 3786 0.13781392 0.05274566 0.1082367 0.1142069
## 3787 0.10650888 0.12859229 0.1168756 0.1142069
## 3788 0.11364176 0.12859229 0.1082367 0.1142069
## 3789 0.13781392 0.12859229 0.1168756 0.1142069
## 3790 0.13781392 0.12859229 0.1082367 0.1142069
## 3791 0.10978875 0.05274566 0.1168756 0.1142069
## 3792 0.10978875 0.12859229 0.1082367 0.1142069
## 3793 0.07843137 0.12859229 0.1168756 0.1142069
## 3794 0.10650888 0.12859229 0.1168756 0.1142069
## 3795 0.10650888 0.05274566 0.1168756 0.1054972
## 3796 0.10650888 0.12859229 0.1082367 0.1142069
## 3797 0.07843137 0.12859229 0.1168756 0.1142069
## 3798 0.13781392 0.05274566 0.1082367 0.1142069
## 3799 0.13958482 0.12859229 0.1040100 0.1040100
## 3800 0.10978875 0.05274566 0.1168756 0.1142069
## 3801 0.10650888 0.12859229 0.1082367 0.1142069
## 3802 0.07843137 0.12859229 0.1168756 0.1142069
## 3803 0.10650888 0.12859229 0.1082367 0.1142069
## 3804 0.07666667 0.05274566 0.1040100 0.1040100
## 3805 0.07843137 0.05274566 0.1168756 0.1142069
## 3806 0.13781392 0.12859229 0.1168756 0.1142069
## 3807 0.07843137 0.12859229 0.1168756 0.1142069
## 3808 0.11364176 0.12859229 0.1168756 0.1142069
## 3809 0.13958482 0.12859229 0.1082367 0.1142069
## 3810 0.10650888 0.12859229 0.1168756 0.1142069
## 3811 0.13781392 0.12859229 0.1168756 0.1142069
## 3812 0.10650888 0.12859229 0.1082367 0.1142069
## 3813 0.11364176 0.12859229 0.1082367 0.1054972
## 3814 0.07843137 0.05274566 0.1082367 0.1142069
## 3815 0.13781392 0.12859229 0.1168756 0.1142069
## 3816 0.11364176 0.12859229 0.1168756 0.1142069
## 3817 0.10978875 0.12859229 0.1168756 0.1142069
## 3818 0.10978875 0.12859229 0.1082367 0.1142069
## 3819 0.11364176 0.12859229 0.1168756 0.1054972
## 3820 0.13781392 0.12859229 0.1168756 0.1142069
## 3821 0.13781392 0.12859229 0.1168756 0.1054972
## 3822 0.13781392 0.12859229 0.1168756 0.1142069
## 3823 0.13781392 0.12859229 0.1168756 0.1142069
## 3824 0.10650888 0.12859229 0.1082367 0.1142069
## 3825 0.11364176 0.12859229 0.1168756 0.1142069
## 3826 0.13781392 0.12859229 0.1168756 0.1142069
## 3827 0.10650888 0.12859229 0.1168756 0.1142069
## 3828 0.13781392 0.05274566 0.1082367 0.1142069
## 3829 0.07843137 0.05274566 0.1082367 0.1142069
## 3830 0.13781392 0.12859229 0.1082367 0.1142069
## 3831 0.13958482 0.05274566 0.1168756 0.1142069
## 3832 0.11364176 0.12859229 0.1168756 0.1142069
## 3833 0.10978875 0.12859229 0.1168756 0.1142069
## 3834 0.11364176 0.12859229 0.1168756 0.1142069
## 3835 0.11364176 0.12859229 0.1168756 0.1142069
## 3836 0.07843137 0.12859229 0.1168756 0.1142069
## 3837 0.10978875 0.12859229 0.1168756 0.1142069
## 3838 0.07843137 0.12859229 0.1168756 0.1142069
## 3839 0.13781392 0.12859229 0.1082367 0.1142069
## 3840 0.10650888 0.12859229 0.1082367 0.1142069
## 3841 0.07843137 0.12859229 0.1040100 0.1040100
## 3842 0.13781392 0.12859229 0.1168756 0.1142069
## 3843 0.10978875 0.05274566 0.1040100 0.1040100
## 3844 0.13781392 0.12859229 0.1168756 0.1142069
## 3845 0.13781392 0.12859229 0.1168756 0.1142069
## 3846 0.13781392 0.12859229 0.1168756 0.1054972
## 3847 0.10650888 0.12859229 0.1168756 0.1142069
## 3848 0.07666667 0.05274566 0.1082367 0.1142069
## 3849 0.10650888 0.05274566 0.1082367 0.1054972
## 3850 0.13781392 0.12859229 0.1168756 0.1142069
## 3851 0.10650888 0.12859229 0.1082367 0.1054972
## 3852 0.13781392 0.12859229 0.1168756 0.1054972
## 3853 0.10650888 0.05274566 0.1168756 0.1142069
## 3854 0.13781392 0.12859229 0.1082367 0.1142069
## 3855 0.13781392 0.12859229 0.1168756 0.1142069
## 3856 0.10978875 0.05274566 0.1082367 0.1142069
## 3857 0.10650888 0.12859229 0.1082367 0.1054972
## 3858 0.07843137 0.12859229 0.1168756 0.1142069
## 3859 0.13781392 0.12859229 0.1168756 0.1142069
## 3860 0.10978875 0.12859229 0.1082367 0.1142069
## 3861 0.13958482 0.12859229 0.1082367 0.1142069
## 3862 0.10978875 0.12859229 0.1082367 0.1142069
## 3863 0.11364176 0.12859229 0.1168756 0.1142069
## 3864 0.13781392 0.12859229 0.1168756 0.1142069
## 3865 0.07843137 0.12859229 0.1082367 0.1142069
## 3866 0.10650888 0.12859229 0.1082367 0.1054972
## 3867 0.10978875 0.05274566 0.1168756 0.1142069
## 3868 0.13781392 0.12859229 0.1168756 0.1142069
## 3869 0.13781392 0.12859229 0.1168756 0.1142069
## 3870 0.13781392 0.12859229 0.1082367 0.1142069
## 3871 0.07666667 0.05274566 0.1168756 0.1054972
## 3872 0.11364176 0.12859229 0.1082367 0.1142069
## 3873 0.13781392 0.05274566 0.1168756 0.1142069
## 3874 0.07843137 0.12859229 0.1168756 0.1142069
## 3875 0.07666667 0.05274566 0.1168756 0.1142069
## 3876 0.07666667 0.12859229 0.1082367 0.1054972
## 3877 0.10650888 0.12859229 0.1168756 0.1142069
## 3878 0.13958482 0.05274566 0.1082367 0.1142069
## 3879 0.10650888 0.12859229 0.1168756 0.1142069
## 3880 0.10650888 0.12859229 0.1082367 0.1142069
## 3881 0.07843137 0.12859229 0.1168756 0.1054972
## 3882 0.13781392 0.12859229 0.1040100 0.1040100
## 3883 0.11364176 0.05274566 0.1168756 0.1142069
## 3884 0.07843137 0.05274566 0.1168756 0.1142069
## 3885 0.11364176 0.12859229 0.1082367 0.1054972
## 3886 0.07843137 0.05274566 0.1168756 0.1142069
## 3887 0.10978875 0.12859229 0.1168756 0.1142069
## 3888 0.13781392 0.12859229 0.1168756 0.1054972
## 3889 0.10650888 0.12859229 0.1082367 0.1142069
## 3890 0.10978875 0.12859229 0.1168756 0.1142069
## 3891 0.10650888 0.12859229 0.1168756 0.1142069
## 3892 0.13781392 0.12859229 0.1168756 0.1142069
## 3893 0.10978875 0.12859229 0.1168756 0.1142069
## 3894 0.13781392 0.05274566 0.1082367 0.1142069
## 3895 0.10650888 0.12859229 0.1082367 0.1142069
## 3896 0.10978875 0.12859229 0.1168756 0.1142069
## 3897 0.13781392 0.12859229 0.1082367 0.1142069
## 3898 0.13781392 0.12859229 0.1082367 0.1142069
## 3899 0.10650888 0.12859229 0.1168756 0.1142069
## 3900 0.10650888 0.12859229 0.1168756 0.1054972
## 3901 0.13781392 0.12859229 0.1082367 0.1142069
## 3902 0.10650888 0.05274566 0.1168756 0.1142069
## 3903 0.07843137 0.05274566 0.1168756 0.1142069
## 3904 0.07843137 0.12859229 0.1082367 0.1142069
## 3905 0.10650888 0.12859229 0.1168756 0.1142069
## 3906 0.13781392 0.12859229 0.1168756 0.1142069
## 3907 0.10650888 0.12859229 0.1082367 0.1142069
## 3908 0.10650888 0.12859229 0.1082367 0.1142069
## 3909 0.13781392 0.12859229 0.1082367 0.1054972
## 3910 0.13781392 0.12859229 0.1168756 0.1142069
## 3911 0.13781392 0.12859229 0.1082367 0.1142069
## 3912 0.10650888 0.12859229 0.1168756 0.1142069
## 3913 0.13781392 0.12859229 0.1082367 0.1142069
## 3914 0.13781392 0.12859229 0.1168756 0.1054972
## 3915 0.13781392 0.12859229 0.1082367 0.1142069
## 3916 0.10650888 0.12859229 0.1168756 0.1054972
## 3917 0.10650888 0.12859229 0.1082367 0.1054972
## 3918 0.13781392 0.12859229 0.1082367 0.1142069
## 3919 0.07666667 0.05274566 0.1040100 0.1040100
## 3920 0.13781392 0.12859229 0.1082367 0.1142069
## 3921 0.10650888 0.12859229 0.1168756 0.1142069
## 3922 0.07843137 0.12859229 0.1168756 0.1054972
## 3923 0.07666667 0.05274566 0.1082367 0.1142069
## 3924 0.07843137 0.12859229 0.1168756 0.1054972
## 3925 0.13958482 0.05274566 0.1168756 0.1142069
## 3926 0.10650888 0.12859229 0.1082367 0.1142069
## 3927 0.11364176 0.12859229 0.1082367 0.1142069
## 3928 0.10978875 0.12859229 0.1082367 0.1142069
## 3929 0.10650888 0.12859229 0.1168756 0.1142069
## 3930 0.11364176 0.12859229 0.1082367 0.1142069
## 3931 0.10650888 0.12859229 0.1168756 0.1142069
## 3932 0.10650888 0.12859229 0.1168756 0.1142069
## 3933 0.13781392 0.12859229 0.1168756 0.1054972
## 3934 0.10978875 0.12859229 0.1168756 0.1054972
## 3935 0.10978875 0.12859229 0.1168756 0.1142069
## 3936 0.10650888 0.05274566 0.1082367 0.1142069
## 3937 0.10978875 0.05274566 0.1168756 0.1142069
## 3938 0.10650888 0.12859229 0.1168756 0.1054972
## 3939 0.11364176 0.12859229 0.1082367 0.1142069
## 3940 0.11364176 0.12859229 0.1168756 0.1142069
## 3941 0.10650888 0.12859229 0.1168756 0.1142069
## 3942 0.13958482 0.12859229 0.1168756 0.1142069
## 3943 0.13781392 0.12859229 0.1168756 0.1142069
## 3944 0.13781392 0.12859229 0.1082367 0.1142069
## 3945 0.13781392 0.12859229 0.1168756 0.1142069
## 3946 0.13958482 0.05274566 0.1168756 0.1142069
## 3947 0.10650888 0.12859229 0.1168756 0.1142069
## 3948 0.10650888 0.12859229 0.1082367 0.1142069
## 3949 0.10650888 0.12859229 0.1082367 0.1142069
## 3950 0.13958482 0.12859229 0.1168756 0.1142069
## 3951 0.11364176 0.12859229 0.1168756 0.1142069
## 3952 0.13781392 0.12859229 0.1082367 0.1142069
## 3953 0.13781392 0.12859229 0.1082367 0.1142069
## 3954 0.10978875 0.05274566 0.1168756 0.1142069
## 3955 0.10650888 0.12859229 0.1082367 0.1142069
## 3956 0.13781392 0.12859229 0.1168756 0.1142069
## 3957 0.10650888 0.12859229 0.1168756 0.1142069
## 3958 0.13958482 0.12859229 0.1168756 0.1142069
## 3959 0.10650888 0.12859229 0.1040100 0.1040100
## 3960 0.11364176 0.05274566 0.1082367 0.1142069
## 3961 0.13781392 0.05274566 0.1082367 0.1142069
## 3962 0.13781392 0.05274566 0.1082367 0.1142069
## 3963 0.11364176 0.12859229 0.1082367 0.1142069
## 3964 0.13781392 0.12859229 0.1168756 0.1142069
## 3965 0.11364176 0.05274566 0.1168756 0.1054972
## 3966 0.10650888 0.12859229 0.1082367 0.1142069
## 3967 0.10650888 0.12859229 0.1168756 0.1142069
## 3968 0.10978875 0.05274566 0.1082367 0.1142069
## 3969 0.07666667 0.05274566 0.1082367 0.1054972
## 3970 0.11364176 0.12859229 0.1082367 0.1054972
## 3971 0.10650888 0.12859229 0.1082367 0.1142069
## 3972 0.13781392 0.12859229 0.1040100 0.1040100
## 3973 0.10650888 0.05274566 0.1082367 0.1142069
## 3974 0.10650888 0.12859229 0.1082367 0.1142069
## 3975 0.07843137 0.12859229 0.1082367 0.1142069
## 3976 0.07843137 0.05274566 0.1082367 0.1142069
## 3977 0.07843137 0.05274566 0.1168756 0.1142069
## 3978 0.10650888 0.12859229 0.1168756 0.1054972
## 3979 0.13781392 0.12859229 0.1082367 0.1142069
## 3980 0.13781392 0.12859229 0.1082367 0.1142069
## 3981 0.13781392 0.12859229 0.1082367 0.1054972
## 3982 0.13781392 0.12859229 0.1168756 0.1142069
## 3983 0.07666667 0.12859229 0.1168756 0.1142069
## 3984 0.07843137 0.12859229 0.1082367 0.1142069
## 3985 0.13781392 0.12859229 0.1168756 0.1054972
## 3986 0.11364176 0.12859229 0.1082367 0.1142069
## 3987 0.10650888 0.12859229 0.1168756 0.1142069
## 3988 0.07843137 0.12859229 0.1082367 0.1142069
## 3989 0.11364176 0.12859229 0.1168756 0.1142069
## 3990 0.13781392 0.12859229 0.1168756 0.1142069
## 3991 0.13958482 0.12859229 0.1168756 0.1142069
## 3992 0.11364176 0.12859229 0.1082367 0.1142069
## 3993 0.13781392 0.12859229 0.1168756 0.1054972
## 3994 0.10978875 0.12859229 0.1168756 0.1142069
## 3995 0.10650888 0.12859229 0.1168756 0.1142069
## 3996 0.07843137 0.05274566 0.1168756 0.1054972
## 3997 0.07843137 0.12859229 0.1082367 0.1142069
## 3998 0.11364176 0.05274566 0.1168756 0.1142069
## 3999 0.13781392 0.12859229 0.1082367 0.1142069
## 4000 0.13781392 0.12859229 0.1168756 0.1142069
## 4001 0.11364176 0.12859229 0.1082367 0.1142069
## 4002 0.10978875 0.05274566 0.1082367 0.1142069
## 4003 0.07843137 0.12859229 0.1082367 0.1142069
## 4004 0.10650888 0.12859229 0.1082367 0.1142069
## 4005 0.10650888 0.12859229 0.1168756 0.1142069
## 4006 0.11364176 0.12859229 0.1168756 0.1142069
## 4007 0.10650888 0.12859229 0.1168756 0.1142069
## 4008 0.13958482 0.12859229 0.1082367 0.1142069
## 4009 0.07843137 0.12859229 0.1082367 0.1142069
## 4010 0.13958482 0.12859229 0.1082367 0.1142069
## 4011 0.07666667 0.12859229 0.1082367 0.1142069
## 4012 0.13958482 0.12859229 0.1168756 0.1142069
## 4013 0.10650888 0.12859229 0.1082367 0.1142069
## 4014 0.13958482 0.12859229 0.1082367 0.1142069
## 4015 0.07666667 0.12859229 0.1082367 0.1142069
## 4016 0.07843137 0.05274566 0.1082367 0.1142069
## 4017 0.11364176 0.05274566 0.1082367 0.1054972
## 4018 0.10650888 0.12859229 0.1168756 0.1142069
## 4019 0.13781392 0.05274566 0.1082367 0.1142069
## 4020 0.10650888 0.12859229 0.1168756 0.1142069
## 4021 0.13781392 0.12859229 0.1168756 0.1142069
## 4022 0.10650888 0.05274566 0.1168756 0.1142069
## 4023 0.07843137 0.12859229 0.1082367 0.1142069
## 4024 0.07843137 0.05274566 0.1082367 0.1142069
## 4025 0.10650888 0.12859229 0.1082367 0.1142069
## 4026 0.11364176 0.05274566 0.1168756 0.1142069
## 4027 0.10650888 0.05274566 0.1082367 0.1142069
## 4028 0.10650888 0.05274566 0.1082367 0.1142069
## 4029 0.10650888 0.12859229 0.1168756 0.1142069
## 4030 0.07843137 0.12859229 0.1082367 0.1054972
## 4031 0.10650888 0.12859229 0.1168756 0.1142069
## 4032 0.10650888 0.12859229 0.1168756 0.1142069
## 4033 0.10978875 0.05274566 0.1082367 0.1142069
## 4034 0.13781392 0.12859229 0.1168756 0.1142069
## 4035 0.13781392 0.12859229 0.1082367 0.1142069
## 4036 0.10978875 0.05274566 0.1082367 0.1142069
## 4037 0.11364176 0.12859229 0.1168756 0.1142069
## 4038 0.13781392 0.12859229 0.1168756 0.1142069
## 4039 0.13781392 0.12859229 0.1168756 0.1054972
## 4040 0.07843137 0.12859229 0.1168756 0.1142069
## 4041 0.07843137 0.12859229 0.1168756 0.1142069
## 4042 0.10650888 0.12859229 0.1168756 0.1142069
## 4043 0.13781392 0.12859229 0.1168756 0.1142069
## 4044 0.07666667 0.12859229 0.1082367 0.1142069
## 4045 0.13781392 0.12859229 0.1168756 0.1142069
## 4046 0.07666667 0.05274566 0.1082367 0.1142069
## 4047 0.10650888 0.12859229 0.1168756 0.1142069
## 4048 0.13781392 0.12859229 0.1082367 0.1142069
## 4049 0.11364176 0.12859229 0.1168756 0.1142069
## 4050 0.13958482 0.12859229 0.1082367 0.1054972
## 4051 0.07843137 0.12859229 0.1168756 0.1142069
## 4052 0.13781392 0.12859229 0.1040100 0.1040100
## 4053 0.13781392 0.12859229 0.1168756 0.1142069
## 4054 0.10978875 0.05274566 0.1082367 0.1142069
## 4055 0.10650888 0.12859229 0.1168756 0.1142069
## 4056 0.13781392 0.12859229 0.1082367 0.1054972
## 4057 0.13781392 0.12859229 0.1082367 0.1142069
## 4058 0.13781392 0.12859229 0.1168756 0.1142069
## 4059 0.10650888 0.05274566 0.1040100 0.1040100
## 4060 0.13781392 0.05274566 0.1168756 0.1142069
## 4061 0.13781392 0.12859229 0.1168756 0.1142069
## 4062 0.10650888 0.12859229 0.1082367 0.1142069
## 4063 0.11364176 0.05274566 0.1168756 0.1142069
## 4064 0.13781392 0.12859229 0.1168756 0.1142069
## 4065 0.11364176 0.12859229 0.1082367 0.1142069
## 4066 0.10650888 0.12859229 0.1082367 0.1142069
## 4067 0.11364176 0.12859229 0.1168756 0.1054972
## 4068 0.10650888 0.12859229 0.1168756 0.1142069
## 4069 0.13958482 0.05274566 0.1082367 0.1142069
## 4070 0.13781392 0.12859229 0.1168756 0.1142069
## 4071 0.10650888 0.05274566 0.1168756 0.1054972
## 4072 0.11364176 0.12859229 0.1168756 0.1142069
## 4073 0.10650888 0.12859229 0.1082367 0.1142069
## 4074 0.13781392 0.12859229 0.1168756 0.1142069
## 4075 0.10978875 0.05274566 0.1082367 0.1054972
## 4076 0.13958482 0.05274566 0.1082367 0.1142069
## 4077 0.13781392 0.12859229 0.1168756 0.1142069
## 4078 0.13781392 0.12859229 0.1168756 0.1142069
## 4079 0.10650888 0.12859229 0.1168756 0.1142069
## 4080 0.07843137 0.05274566 0.1082367 0.1142069
## 4081 0.10650888 0.12859229 0.1082367 0.1142069
## 4082 0.13781392 0.12859229 0.1168756 0.1142069
## 4083 0.10650888 0.05274566 0.1168756 0.1142069
## 4084 0.10650888 0.12859229 0.1168756 0.1142069
## 4085 0.07843137 0.05274566 0.1168756 0.1142069
## 4086 0.13781392 0.12859229 0.1168756 0.1142069
## 4087 0.10978875 0.12859229 0.1082367 0.1142069
## 4088 0.13781392 0.12859229 0.1040100 0.1040100
## 4089 0.13781392 0.12859229 0.1168756 0.1142069
## 4090 0.13781392 0.12859229 0.1082367 0.1142069
## 4091 0.07666667 0.12859229 0.1168756 0.1142069
## 4092 0.10978875 0.05274566 0.1168756 0.1142069
## 4093 0.13781392 0.12859229 0.1082367 0.1142069
## 4094 0.13781392 0.12859229 0.1082367 0.1142069
## 4095 0.10978875 0.12859229 0.1082367 0.1142069
## 4096 0.13781392 0.12859229 0.1168756 0.1142069
## 4097 0.07666667 0.12859229 0.1082367 0.1142069
## 4098 0.11364176 0.05274566 0.1168756 0.1142069
## 4099 0.13781392 0.12859229 0.1082367 0.1142069
## 4100 0.11364176 0.12859229 0.1082367 0.1142069
## 4101 0.13781392 0.12859229 0.1082367 0.1142069
## 4102 0.13781392 0.12859229 0.1082367 0.1142069
## 4103 0.13781392 0.05274566 0.1082367 0.1142069
## 4104 0.13781392 0.12859229 0.1082367 0.1142069
## 4105 0.10650888 0.12859229 0.1082367 0.1142069
## 4106 0.11364176 0.12859229 0.1168756 0.1054972
## 4107 0.13781392 0.12859229 0.1168756 0.1142069
## 4108 0.10650888 0.12859229 0.1168756 0.1142069
## 4109 0.11364176 0.12859229 0.1168756 0.1142069
## 4110 0.13781392 0.12859229 0.1168756 0.1054972
## 4111 0.10650888 0.12859229 0.1168756 0.1054972
## 4112 0.07843137 0.05274566 0.1082367 0.1054972
## 4113 0.10650888 0.12859229 0.1168756 0.1142069
## 4114 0.13781392 0.12859229 0.1168756 0.1142069
## 4115 0.13781392 0.12859229 0.1168756 0.1142069
## 4116 0.10650888 0.12859229 0.1168756 0.1142069
## 4117 0.07843137 0.12859229 0.1082367 0.1142069
## 4118 0.07843137 0.05274566 0.1168756 0.1142069
## 4119 0.13781392 0.05274566 0.1082367 0.1142069
## 4120 0.13781392 0.12859229 0.1168756 0.1142069
## 4121 0.10650888 0.12859229 0.1168756 0.1054972
## 4122 0.13781392 0.12859229 0.1168756 0.1054972
## 4123 0.10978875 0.05274566 0.1082367 0.1142069
## 4124 0.10650888 0.12859229 0.1082367 0.1142069
## 4125 0.10650888 0.12859229 0.1168756 0.1142069
## 4126 0.13781392 0.12859229 0.1082367 0.1142069
## 4127 0.10650888 0.12859229 0.1082367 0.1142069
## 4128 0.11364176 0.12859229 0.1082367 0.1054972
## 4129 0.13781392 0.12859229 0.1082367 0.1142069
## 4130 0.13958482 0.12859229 0.1168756 0.1054972
## 4131 0.13781392 0.12859229 0.1168756 0.1142069
## 4132 0.10650888 0.12859229 0.1082367 0.1142069
## 4133 0.10650888 0.05274566 0.1168756 0.1142069
## 4134 0.13781392 0.12859229 0.1168756 0.1054972
## 4135 0.13781392 0.12859229 0.1040100 0.1040100
## 4136 0.07843137 0.12859229 0.1082367 0.1142069
## 4137 0.13781392 0.12859229 0.1168756 0.1054972
## 4138 0.11364176 0.12859229 0.1168756 0.1142069
## 4139 0.13781392 0.12859229 0.1168756 0.1142069
## 4140 0.10650888 0.12859229 0.1082367 0.1142069
## 4141 0.07843137 0.05274566 0.1082367 0.1142069
## 4142 0.10650888 0.12859229 0.1082367 0.1142069
## 4143 0.07666667 0.12859229 0.1082367 0.1054972
## 4144 0.13781392 0.12859229 0.1082367 0.1054972
## 4145 0.13958482 0.05274566 0.1168756 0.1054972
## 4146 0.10650888 0.12859229 0.1168756 0.1142069
## 4147 0.10650888 0.12859229 0.1082367 0.1142069
## 4148 0.13781392 0.12859229 0.1168756 0.1142069
## 4149 0.07843137 0.12859229 0.1082367 0.1142069
## 4150 0.10650888 0.12859229 0.1168756 0.1142069
## 4151 0.07843137 0.12859229 0.1168756 0.1054972
## 4152 0.13958482 0.12859229 0.1168756 0.1054972
## 4153 0.11364176 0.05274566 0.1082367 0.1142069
## 4154 0.10650888 0.12859229 0.1168756 0.1142069
## 4155 0.13781392 0.12859229 0.1168756 0.1142069
## 4156 0.13781392 0.12859229 0.1082367 0.1142069
## 4157 0.07666667 0.05274566 0.1040100 0.1040100
## 4158 0.13958482 0.12859229 0.1168756 0.1054972
## 4159 0.13781392 0.12859229 0.1168756 0.1142069
## 4160 0.10650888 0.05274566 0.1168756 0.1142069
## 4161 0.11364176 0.12859229 0.1168756 0.1142069
## 4162 0.07843137 0.05274566 0.1082367 0.1054972
## 4163 0.13781392 0.12859229 0.1168756 0.1142069
## 4164 0.13781392 0.05274566 0.1168756 0.1142069
## 4165 0.13781392 0.12859229 0.1082367 0.1142069
## 4166 0.13781392 0.05274566 0.1168756 0.1142069
## 4167 0.11364176 0.12859229 0.1168756 0.1054972
## 4168 0.11364176 0.12859229 0.1082367 0.1142069
## 4169 0.11364176 0.05274566 0.1082367 0.1142069
## 4170 0.13781392 0.12859229 0.1082367 0.1142069
## 4171 0.07843137 0.12859229 0.1168756 0.1142069
## 4172 0.07843137 0.05274566 0.1168756 0.1054972
## 4173 0.10978875 0.05274566 0.1168756 0.1142069
## 4174 0.10978875 0.05274566 0.1168756 0.1054972
## 4175 0.10650888 0.12859229 0.1082367 0.1142069
## 4176 0.07843137 0.12859229 0.1168756 0.1142069
## 4177 0.10978875 0.12859229 0.1168756 0.1142069
## 4178 0.07843137 0.12859229 0.1082367 0.1142069
## 4179 0.13781392 0.12859229 0.1168756 0.1142069
## 4180 0.13781392 0.12859229 0.1168756 0.1142069
## 4181 0.10978875 0.05274566 0.1082367 0.1054972
## 4182 0.10650888 0.12859229 0.1082367 0.1142069
## 4183 0.10650888 0.12859229 0.1168756 0.1142069
## 4184 0.10650888 0.12859229 0.1082367 0.1142069
## 4185 0.11364176 0.12859229 0.1168756 0.1054972
## 4186 0.13781392 0.12859229 0.1082367 0.1142069
## 4187 0.10650888 0.05274566 0.1168756 0.1142069
## 4188 0.07843137 0.05274566 0.1082367 0.1142069
## 4189 0.13958482 0.12859229 0.1082367 0.1142069
## 4190 0.07666667 0.05274566 0.1168756 0.1142069
## 4191 0.10978875 0.12859229 0.1168756 0.1054972
## 4192 0.11364176 0.12859229 0.1082367 0.1142069
## 4193 0.07843137 0.12859229 0.1040100 0.1040100
## 4194 0.07843137 0.12859229 0.1082367 0.1142069
## 4195 0.11364176 0.05274566 0.1168756 0.1142069
## 4196 0.13781392 0.12859229 0.1168756 0.1142069
## 4197 0.13781392 0.12859229 0.1168756 0.1142069
## 4198 0.10978875 0.05274566 0.1168756 0.1054972
## 4199 0.13781392 0.12859229 0.1082367 0.1142069
## 4200 0.10650888 0.12859229 0.1168756 0.1142069
## 4201 0.10650888 0.12859229 0.1168756 0.1142069
## 4202 0.07666667 0.12859229 0.1082367 0.1054972
## 4203 0.07843137 0.05274566 0.1082367 0.1142069
## 4204 0.13781392 0.12859229 0.1082367 0.1142069
## 4205 0.10978875 0.05274566 0.1168756 0.1142069
## 4206 0.10650888 0.05274566 0.1082367 0.1142069
## 4207 0.11364176 0.12859229 0.1168756 0.1142069
## 4208 0.07666667 0.12859229 0.1168756 0.1142069
## 4209 0.13781392 0.12859229 0.1082367 0.1142069
## 4210 0.13781392 0.12859229 0.1168756 0.1142069
## 4211 0.10650888 0.12859229 0.1082367 0.1054972
## 4212 0.11364176 0.05274566 0.1168756 0.1142069
## 4213 0.13781392 0.12859229 0.1168756 0.1142069
## 4214 0.10650888 0.12859229 0.1168756 0.1142069
## 4215 0.07666667 0.12859229 0.1168756 0.1142069
## 4216 0.10978875 0.12859229 0.1168756 0.1054972
## 4217 0.07666667 0.05274566 0.1168756 0.1142069
## 4218 0.10978875 0.05274566 0.1082367 0.1142069
## 4219 0.07843137 0.05274566 0.1168756 0.1142069
## 4220 0.11364176 0.12859229 0.1168756 0.1142069
## 4221 0.13781392 0.12859229 0.1082367 0.1054972
## 4222 0.10650888 0.12859229 0.1168756 0.1142069
## 4223 0.10650888 0.12859229 0.1168756 0.1142069
## 4224 0.10978875 0.05274566 0.1168756 0.1142069
## 4225 0.07843137 0.12859229 0.1082367 0.1142069
## 4226 0.07843137 0.12859229 0.1168756 0.1142069
## 4227 0.13781392 0.12859229 0.1082367 0.1142069
## 4228 0.10650888 0.12859229 0.1082367 0.1142069
## 4229 0.10978875 0.05274566 0.1168756 0.1142069
## 4230 0.13781392 0.12859229 0.1168756 0.1054972
## 4231 0.13781392 0.12859229 0.1168756 0.1054972
## 4232 0.13781392 0.05274566 0.1082367 0.1142069
## 4233 0.10650888 0.12859229 0.1082367 0.1054972
## 4234 0.10650888 0.12859229 0.1168756 0.1054972
## 4235 0.13781392 0.05274566 0.1168756 0.1142069
## 4236 0.10650888 0.12859229 0.1082367 0.1142069
## 4237 0.10650888 0.05274566 0.1082367 0.1142069
## 4238 0.11364176 0.12859229 0.1168756 0.1142069
## 4239 0.10650888 0.12859229 0.1082367 0.1142069
## 4240 0.13781392 0.12859229 0.1168756 0.1142069
## 4241 0.13781392 0.12859229 0.1168756 0.1142069
## 4242 0.10978875 0.12859229 0.1082367 0.1142069
## 4243 0.11364176 0.12859229 0.1168756 0.1142069
## 4244 0.13781392 0.12859229 0.1168756 0.1142069
## 4245 0.11364176 0.12859229 0.1082367 0.1142069
## 4246 0.13781392 0.12859229 0.1082367 0.1142069
## 4247 0.10650888 0.12859229 0.1168756 0.1142069
## 4248 0.11364176 0.12859229 0.1082367 0.1054972
## 4249 0.11364176 0.12859229 0.1082367 0.1142069
## 4250 0.10978875 0.12859229 0.1082367 0.1142069
## 4251 0.13781392 0.12859229 0.1168756 0.1142069
## 4252 0.13781392 0.12859229 0.1168756 0.1142069
## 4253 0.10650888 0.12859229 0.1168756 0.1142069
## 4254 0.07843137 0.12859229 0.1082367 0.1142069
## 4255 0.10650888 0.12859229 0.1082367 0.1142069
## 4256 0.10650888 0.05274566 0.1082367 0.1142069
## 4257 0.11364176 0.12859229 0.1168756 0.1142069
## 4258 0.11364176 0.05274566 0.1168756 0.1142069
## 4259 0.11364176 0.12859229 0.1082367 0.1142069
## 4260 0.13781392 0.12859229 0.1082367 0.1142069
## 4261 0.11364176 0.12859229 0.1082367 0.1142069
## 4262 0.11364176 0.05274566 0.1082367 0.1142069
## 4263 0.10650888 0.12859229 0.1168756 0.1142069
## 4264 0.10650888 0.05274566 0.1168756 0.1142069
## 4265 0.10650888 0.12859229 0.1168756 0.1142069
## 4266 0.10650888 0.12859229 0.1082367 0.1142069
## 4267 0.07843137 0.05274566 0.1082367 0.1142069
## 4268 0.11364176 0.12859229 0.1168756 0.1142069
## 4269 0.07666667 0.12859229 0.1082367 0.1142069
## 4270 0.13958482 0.05274566 0.1168756 0.1142069
## 4271 0.11364176 0.12859229 0.1168756 0.1142069
## 4272 0.07666667 0.05274566 0.1082367 0.1142069
## 4273 0.07666667 0.12859229 0.1082367 0.1142069
## 4274 0.11364176 0.12859229 0.1082367 0.1142069
## 4275 0.10650888 0.12859229 0.1082367 0.1142069
## 4276 0.11364176 0.12859229 0.1082367 0.1142069
## 4277 0.07843137 0.12859229 0.1168756 0.1054972
## 4278 0.11364176 0.12859229 0.1168756 0.1142069
## 4279 0.07843137 0.05274566 0.1168756 0.1142069
## 4280 0.10978875 0.05274566 0.1082367 0.1142069
## 4281 0.10650888 0.12859229 0.1168756 0.1142069
## 4282 0.10978875 0.12859229 0.1168756 0.1142069
## 4283 0.07843137 0.12859229 0.1168756 0.1142069
## 4284 0.13781392 0.12859229 0.1082367 0.1054972
## 4285 0.10978875 0.12859229 0.1168756 0.1142069
## 4286 0.07843137 0.12859229 0.1082367 0.1142069
## 4287 0.13781392 0.12859229 0.1168756 0.1142069
## 4288 0.10650888 0.12859229 0.1168756 0.1142069
## 4289 0.07843137 0.12859229 0.1168756 0.1142069
## 4290 0.13781392 0.12859229 0.1040100 0.1040100
## 4291 0.13781392 0.12859229 0.1168756 0.1142069
## 4292 0.13781392 0.12859229 0.1168756 0.1054972
## 4293 0.10650888 0.05274566 0.1168756 0.1142069
## 4294 0.10650888 0.05274566 0.1168756 0.1142069
## 4295 0.13781392 0.12859229 0.1082367 0.1142069
## 4296 0.13781392 0.12859229 0.1168756 0.1054972
## 4297 0.07843137 0.05274566 0.1168756 0.1142069
## 4298 0.07843137 0.12859229 0.1168756 0.1142069
## 4299 0.10650888 0.12859229 0.1082367 0.1142069
## 4300 0.11364176 0.12859229 0.1082367 0.1142069
## 4301 0.10650888 0.12859229 0.1168756 0.1142069
## 4302 0.13781392 0.12859229 0.1168756 0.1142069
## 4303 0.07843137 0.05274566 0.1082367 0.1142069
## 4304 0.13781392 0.05274566 0.1168756 0.1142069
## 4305 0.10650888 0.05274566 0.1168756 0.1142069
## 4306 0.11364176 0.12859229 0.1168756 0.1142069
## 4307 0.07843137 0.05274566 0.1168756 0.1142069
## 4308 0.10978875 0.12859229 0.1168756 0.1142069
## 4309 0.13781392 0.05274566 0.1168756 0.1142069
## 4310 0.13781392 0.12859229 0.1168756 0.1142069
## 4311 0.10978875 0.12859229 0.1082367 0.1142069
## 4312 0.07843137 0.12859229 0.1168756 0.1142069
## 4313 0.10650888 0.12859229 0.1168756 0.1142069
## 4314 0.10650888 0.05274566 0.1168756 0.1142069
## 4315 0.13781392 0.05274566 0.1082367 0.1142069
## 4316 0.07843137 0.12859229 0.1168756 0.1142069
## 4317 0.13781392 0.12859229 0.1168756 0.1054972
## 4318 0.13958482 0.12859229 0.1168756 0.1142069
## 4319 0.10650888 0.05274566 0.1082367 0.1142069
## 4320 0.11364176 0.05274566 0.1168756 0.1142069
## 4321 0.07843137 0.05274566 0.1082367 0.1142069
## 4322 0.13781392 0.12859229 0.1082367 0.1142069
## 4323 0.13781392 0.12859229 0.1168756 0.1142069
## 4324 0.13781392 0.05274566 0.1040100 0.1040100
## 4325 0.10650888 0.12859229 0.1082367 0.1054972
## 4326 0.07843137 0.12859229 0.1082367 0.1142069
## 4327 0.07843137 0.12859229 0.1168756 0.1142069
## 4328 0.10650888 0.12859229 0.1082367 0.1142069
## 4329 0.13781392 0.12859229 0.1082367 0.1054972
## 4330 0.13781392 0.12859229 0.1082367 0.1142069
## 4331 0.07843137 0.12859229 0.1168756 0.1054972
## 4332 0.11364176 0.12859229 0.1082367 0.1142069
## 4333 0.13781392 0.05274566 0.1168756 0.1054972
## 4334 0.13781392 0.12859229 0.1082367 0.1142069
## 4335 0.07843137 0.12859229 0.1082367 0.1054972
## 4336 0.10650888 0.12859229 0.1082367 0.1054972
## 4337 0.13781392 0.12859229 0.1082367 0.1142069
## 4338 0.13781392 0.05274566 0.1082367 0.1142069
## 4339 0.07843137 0.12859229 0.1168756 0.1142069
## 4340 0.13781392 0.12859229 0.1168756 0.1142069
## 4341 0.13781392 0.05274566 0.1168756 0.1142069
## 4342 0.13781392 0.05274566 0.1082367 0.1054972
## 4343 0.11364176 0.05274566 0.1168756 0.1142069
## 4344 0.13781392 0.12859229 0.1082367 0.1142069
## 4345 0.07843137 0.05274566 0.1168756 0.1142069
## 4346 0.07843137 0.12859229 0.1082367 0.1142069
## 4347 0.13781392 0.12859229 0.1082367 0.1142069
## 4348 0.10650888 0.12859229 0.1168756 0.1142069
## 4349 0.13781392 0.12859229 0.1168756 0.1142069
## 4350 0.13781392 0.05274566 0.1082367 0.1142069
## 4351 0.13781392 0.12859229 0.1040100 0.1040100
## 4352 0.10978875 0.05274566 0.1082367 0.1142069
## 4353 0.11364176 0.05274566 0.1168756 0.1142069
## 4354 0.13781392 0.12859229 0.1168756 0.1142069
## 4355 0.07843137 0.12859229 0.1168756 0.1142069
## 4356 0.13781392 0.12859229 0.1082367 0.1142069
## 4357 0.13781392 0.12859229 0.1082367 0.1142069
## 4358 0.07843137 0.12859229 0.1168756 0.1054972
## 4359 0.07843137 0.12859229 0.1168756 0.1054972
## 4360 0.11364176 0.12859229 0.1168756 0.1142069
## 4361 0.10978875 0.12859229 0.1168756 0.1142069
## 4362 0.13781392 0.12859229 0.1168756 0.1142069
## 4363 0.07843137 0.12859229 0.1082367 0.1142069
## 4364 0.13781392 0.05274566 0.1082367 0.1142069
## 4365 0.10650888 0.12859229 0.1082367 0.1142069
## 4366 0.13781392 0.12859229 0.1168756 0.1142069
## 4367 0.13781392 0.12859229 0.1082367 0.1054972
## 4368 0.10978875 0.12859229 0.1082367 0.1142069
## 4369 0.07843137 0.12859229 0.1168756 0.1054972
## 4370 0.13781392 0.12859229 0.1168756 0.1142069
## 4371 0.07843137 0.05274566 0.1082367 0.1142069
## 4372 0.11364176 0.12859229 0.1168756 0.1142069
## 4373 0.07843137 0.12859229 0.1168756 0.1142069
## 4374 0.13781392 0.12859229 0.1168756 0.1054972
## 4375 0.11364176 0.12859229 0.1168756 0.1054972
## 4376 0.11364176 0.12859229 0.1082367 0.1142069
## 4377 0.13781392 0.12859229 0.1168756 0.1142069
## 4378 0.11364176 0.12859229 0.1082367 0.1142069
## 4379 0.13781392 0.12859229 0.1168756 0.1142069
## 4380 0.11364176 0.05274566 0.1168756 0.1142069
## 4381 0.11364176 0.12859229 0.1168756 0.1142069
## 4382 0.11364176 0.12859229 0.1082367 0.1142069
## 4383 0.13781392 0.12859229 0.1168756 0.1142069
## 4384 0.13781392 0.12859229 0.1168756 0.1142069
## 4385 0.10978875 0.05274566 0.1082367 0.1142069
## 4386 0.13781392 0.12859229 0.1082367 0.1142069
## 4387 0.10650888 0.12859229 0.1082367 0.1142069
## 4388 0.10978875 0.05274566 0.1168756 0.1054972
## 4389 0.13781392 0.12859229 0.1168756 0.1142069
## 4390 0.10650888 0.12859229 0.1082367 0.1142069
## 4391 0.13781392 0.12859229 0.1082367 0.1054972
## 4392 0.07843137 0.05274566 0.1082367 0.1142069
## 4393 0.07843137 0.05274566 0.1168756 0.1142069
## 4394 0.13958482 0.12859229 0.1082367 0.1142069
## 4395 0.07666667 0.12859229 0.1082367 0.1142069
## 4396 0.13781392 0.12859229 0.1168756 0.1142069
## 4397 0.07843137 0.12859229 0.1168756 0.1142069
## 4398 0.10978875 0.12859229 0.1082367 0.1142069
## 4399 0.13781392 0.12859229 0.1168756 0.1142069
## 4400 0.10650888 0.12859229 0.1082367 0.1142069
## 4401 0.11364176 0.12859229 0.1082367 0.1054972
## 4402 0.13958482 0.12859229 0.1082367 0.1142069
## 4403 0.13781392 0.12859229 0.1168756 0.1142069
## 4404 0.13781392 0.05274566 0.1168756 0.1142069
## 4405 0.11364176 0.12859229 0.1082367 0.1142069
## 4406 0.13781392 0.12859229 0.1082367 0.1142069
## 4407 0.13781392 0.12859229 0.1082367 0.1142069
## 4408 0.10978875 0.12859229 0.1168756 0.1054972
## 4409 0.10978875 0.05274566 0.1168756 0.1142069
## 4410 0.13958482 0.12859229 0.1082367 0.1142069
## 4411 0.07666667 0.12859229 0.1168756 0.1054972
## 4412 0.13781392 0.12859229 0.1168756 0.1142069
## 4413 0.10650888 0.12859229 0.1082367 0.1054972
## 4414 0.13958482 0.05274566 0.1168756 0.1054972
## 4415 0.10650888 0.05274566 0.1168756 0.1142069
## 4416 0.10650888 0.12859229 0.1082367 0.1142069
## 4417 0.07843137 0.05274566 0.1082367 0.1142069
## 4418 0.10650888 0.12859229 0.1168756 0.1142069
## 4419 0.10650888 0.12859229 0.1082367 0.1142069
## 4420 0.10650888 0.05274566 0.1082367 0.1142069
## 4421 0.10650888 0.12859229 0.1082367 0.1142069
## 4422 0.10650888 0.12859229 0.1082367 0.1142069
## 4423 0.10650888 0.05274566 0.1082367 0.1142069
## 4424 0.07666667 0.05274566 0.1168756 0.1142069
## 4425 0.07843137 0.12859229 0.1082367 0.1142069
## 4426 0.13781392 0.12859229 0.1082367 0.1142069
## 4427 0.13781392 0.12859229 0.1082367 0.1142069
## 4428 0.07843137 0.12859229 0.1168756 0.1142069
## 4429 0.13781392 0.12859229 0.1168756 0.1142069
## 4430 0.07666667 0.12859229 0.1168756 0.1142069
## 4431 0.10978875 0.12859229 0.1168756 0.1142069
## 4432 0.07843137 0.05274566 0.1168756 0.1142069
## 4433 0.10650888 0.12859229 0.1168756 0.1142069
## 4434 0.13781392 0.12859229 0.1168756 0.1142069
## 4435 0.13781392 0.12859229 0.1168756 0.1142069
## 4436 0.07666667 0.12859229 0.1040100 0.1040100
## 4437 0.13781392 0.12859229 0.1082367 0.1142069
## 4438 0.10650888 0.12859229 0.1082367 0.1054972
## 4439 0.10650888 0.12859229 0.1168756 0.1142069
## 4440 0.13781392 0.05274566 0.1082367 0.1142069
## 4441 0.10978875 0.12859229 0.1082367 0.1142069
## 4442 0.10650888 0.12859229 0.1168756 0.1142069
## 4443 0.10978875 0.12859229 0.1168756 0.1142069
## 4444 0.07843137 0.12859229 0.1168756 0.1142069
## 4445 0.10978875 0.12859229 0.1168756 0.1142069
## 4446 0.13781392 0.12859229 0.1082367 0.1142069
## 4447 0.10650888 0.12859229 0.1168756 0.1142069
## 4448 0.10650888 0.12859229 0.1040100 0.1040100
## 4449 0.13781392 0.12859229 0.1168756 0.1142069
## 4450 0.13781392 0.12859229 0.1168756 0.1054972
## 4451 0.07843137 0.12859229 0.1168756 0.1142069
## 4452 0.10650888 0.12859229 0.1168756 0.1142069
## 4453 0.11364176 0.12859229 0.1082367 0.1142069
## 4454 0.13781392 0.12859229 0.1168756 0.1142069
## 4455 0.10650888 0.12859229 0.1082367 0.1142069
## 4456 0.11364176 0.12859229 0.1082367 0.1054972
## 4457 0.10650888 0.12859229 0.1168756 0.1054972
## 4458 0.13781392 0.05274566 0.1168756 0.1142069
## 4459 0.13781392 0.12859229 0.1168756 0.1142069
## 4460 0.10650888 0.05274566 0.1168756 0.1142069
## 4461 0.10978875 0.05274566 0.1082367 0.1142069
## 4462 0.07666667 0.12859229 0.1168756 0.1142069
## 4463 0.11364176 0.12859229 0.1082367 0.1142069
## 4464 0.10978875 0.05274566 0.1082367 0.1142069
## 4465 0.13781392 0.05274566 0.1082367 0.1142069
## 4466 0.07843137 0.12859229 0.1168756 0.1142069
## 4467 0.07843137 0.12859229 0.1168756 0.1142069
## 4468 0.13781392 0.12859229 0.1168756 0.1142069
## 4469 0.07843137 0.12859229 0.1082367 0.1142069
## 4470 0.10978875 0.05274566 0.1082367 0.1142069
## 4471 0.11364176 0.12859229 0.1168756 0.1142069
## 4472 0.10650888 0.12859229 0.1082367 0.1142069
## 4473 0.11364176 0.12859229 0.1082367 0.1142069
## 4474 0.10978875 0.05274566 0.1082367 0.1142069
## 4475 0.07843137 0.12859229 0.1082367 0.1054972
## 4476 0.13781392 0.12859229 0.1168756 0.1142069
## 4477 0.10650888 0.12859229 0.1082367 0.1142069
## 4478 0.10650888 0.05274566 0.1168756 0.1142069
## 4479 0.07843137 0.12859229 0.1082367 0.1142069
## 4480 0.07843137 0.12859229 0.1082367 0.1142069
## 4481 0.10978875 0.05274566 0.1082367 0.1142069
## 4482 0.07666667 0.05274566 0.1168756 0.1142069
## 4483 0.11364176 0.12859229 0.1168756 0.1142069
## 4484 0.10978875 0.12859229 0.1082367 0.1142069
## 4485 0.10978875 0.05274566 0.1082367 0.1142069
## 4486 0.11364176 0.12859229 0.1168756 0.1142069
## 4487 0.11364176 0.12859229 0.1168756 0.1054972
## 4488 0.10650888 0.12859229 0.1082367 0.1142069
## 4489 0.13958482 0.12859229 0.1168756 0.1142069
## 4490 0.13781392 0.12859229 0.1168756 0.1054972
## 4491 0.10650888 0.12859229 0.1168756 0.1142069
## 4492 0.07843137 0.05274566 0.1082367 0.1142069
## 4493 0.10650888 0.12859229 0.1082367 0.1142069
## 4494 0.07843137 0.05274566 0.1168756 0.1142069
## 4495 0.13781392 0.12859229 0.1082367 0.1142069
## 4496 0.10650888 0.12859229 0.1168756 0.1142069
## 4497 0.13781392 0.12859229 0.1082367 0.1142069
## 4498 0.13781392 0.12859229 0.1168756 0.1142069
## 4499 0.13781392 0.12859229 0.1168756 0.1054972
## 4500 0.13781392 0.12859229 0.1168756 0.1142069
## 4501 0.13781392 0.12859229 0.1082367 0.1142069
## 4502 0.11364176 0.05274566 0.1168756 0.1142069
## 4503 0.13781392 0.12859229 0.1168756 0.1142069
## 4504 0.10650888 0.05274566 0.1168756 0.1142069
## 4505 0.10650888 0.12859229 0.1168756 0.1054972
## 4506 0.13781392 0.12859229 0.1168756 0.1054972
## 4507 0.07843137 0.12859229 0.1168756 0.1142069
## 4508 0.10650888 0.12859229 0.1082367 0.1054972
## 4509 0.07666667 0.12859229 0.1168756 0.1142069
## 4510 0.13781392 0.12859229 0.1082367 0.1142069
## 4511 0.11364176 0.12859229 0.1082367 0.1054972
## 4512 0.13781392 0.12859229 0.1082367 0.1142069
## 4513 0.13781392 0.12859229 0.1082367 0.1142069
## 4514 0.13781392 0.12859229 0.1168756 0.1142069
## 4515 0.07666667 0.12859229 0.1168756 0.1142069
## 4516 0.10650888 0.12859229 0.1082367 0.1142069
## 4517 0.11364176 0.12859229 0.1082367 0.1142069
## 4518 0.11364176 0.12859229 0.1168756 0.1054972
## 4519 0.13781392 0.12859229 0.1168756 0.1142069
## 4520 0.10650888 0.12859229 0.1168756 0.1142069
## 4521 0.10650888 0.05274566 0.1040100 0.1040100
## 4522 0.13781392 0.12859229 0.1082367 0.1142069
## 4523 0.07666667 0.12859229 0.1082367 0.1142069
## 4524 0.10650888 0.12859229 0.1082367 0.1142069
## 4525 0.11364176 0.05274566 0.1168756 0.1142069
## 4526 0.13781392 0.05274566 0.1168756 0.1142069
## 4527 0.07843137 0.12859229 0.1168756 0.1054972
## 4528 0.13958482 0.05274566 0.1168756 0.1142069
## 4529 0.11364176 0.12859229 0.1168756 0.1142069
## 4530 0.07666667 0.12859229 0.1168756 0.1142069
## 4531 0.07843137 0.12859229 0.1168756 0.1142069
## 4532 0.10650888 0.05274566 0.1040100 0.1040100
## 4533 0.07843137 0.12859229 0.1168756 0.1054972
## 4534 0.11364176 0.12859229 0.1168756 0.1054972
## 4535 0.11364176 0.05274566 0.1168756 0.1142069
## 4536 0.10650888 0.05274566 0.1168756 0.1142069
## 4537 0.11364176 0.12859229 0.1082367 0.1054972
## 4538 0.11364176 0.12859229 0.1082367 0.1054972
## 4539 0.13781392 0.12859229 0.1082367 0.1142069
## 4540 0.07666667 0.12859229 0.1082367 0.1142069
## 4541 0.07666667 0.05274566 0.1168756 0.1142069
## 4542 0.13781392 0.12859229 0.1168756 0.1142069
## 4543 0.11364176 0.12859229 0.1168756 0.1142069
## 4544 0.11364176 0.12859229 0.1168756 0.1142069
## 4545 0.10650888 0.05274566 0.1082367 0.1142069
## 4546 0.07843137 0.12859229 0.1082367 0.1142069
## 4547 0.13958482 0.12859229 0.1168756 0.1142069
## 4548 0.11364176 0.05274566 0.1082367 0.1142069
## 4549 0.10650888 0.12859229 0.1168756 0.1054972
## 4550 0.11364176 0.05274566 0.1082367 0.1142069
## 4551 0.10978875 0.05274566 0.1168756 0.1142069
## 4552 0.07843137 0.12859229 0.1082367 0.1142069
## 4553 0.13958482 0.12859229 0.1168756 0.1054972
## 4554 0.13781392 0.12859229 0.1082367 0.1142069
## 4555 0.11364176 0.12859229 0.1168756 0.1142069
## 4556 0.13781392 0.12859229 0.1168756 0.1142069
## 4557 0.13781392 0.12859229 0.1082367 0.1142069
## 4558 0.13781392 0.12859229 0.1082367 0.1054972
## 4559 0.13781392 0.12859229 0.1168756 0.1054972
## 4560 0.10650888 0.12859229 0.1082367 0.1054972
## 4561 0.07666667 0.05274566 0.1168756 0.1142069
## 4562 0.13781392 0.12859229 0.1168756 0.1054972
## 4563 0.07666667 0.12859229 0.1082367 0.1142069
## 4564 0.10650888 0.12859229 0.1082367 0.1142069
## 4565 0.07843137 0.12859229 0.1168756 0.1142069
## 4566 0.11364176 0.12859229 0.1082367 0.1142069
## 4567 0.07843137 0.05274566 0.1168756 0.1142069
## 4568 0.10650888 0.05274566 0.1168756 0.1142069
## 4569 0.11364176 0.12859229 0.1168756 0.1142069
## 4570 0.07666667 0.05274566 0.1082367 0.1142069
## 4571 0.13781392 0.12859229 0.1168756 0.1142069
## 4572 0.11364176 0.12859229 0.1168756 0.1054972
## 4573 0.10978875 0.12859229 0.1168756 0.1142069
## 4574 0.10978875 0.05274566 0.1082367 0.1142069
## 4575 0.10650888 0.05274566 0.1168756 0.1142069
## 4576 0.10650888 0.12859229 0.1168756 0.1142069
## 4577 0.13781392 0.05274566 0.1082367 0.1142069
## 4578 0.07843137 0.12859229 0.1168756 0.1142069
## 4579 0.07843137 0.12859229 0.1168756 0.1142069
## 4580 0.10978875 0.12859229 0.1082367 0.1054972
## 4581 0.13781392 0.12859229 0.1168756 0.1142069
## 4582 0.13781392 0.12859229 0.1082367 0.1054972
## 4583 0.07666667 0.05274566 0.1082367 0.1142069
## 4584 0.13781392 0.12859229 0.1082367 0.1142069
## 4585 0.07843137 0.05274566 0.1168756 0.1142069
## 4586 0.13781392 0.12859229 0.1082367 0.1142069
## 4587 0.13781392 0.12859229 0.1168756 0.1142069
## 4588 0.07843137 0.12859229 0.1082367 0.1142069
## 4589 0.07666667 0.05274566 0.1082367 0.1142069
## 4590 0.13781392 0.12859229 0.1082367 0.1142069
## 4591 0.11364176 0.12859229 0.1168756 0.1142069
## 4592 0.07843137 0.12859229 0.1082367 0.1054972
## 4593 0.10650888 0.12859229 0.1168756 0.1142069
## 4594 0.13781392 0.12859229 0.1082367 0.1142069
## 4595 0.10650888 0.12859229 0.1082367 0.1142069
## 4596 0.10978875 0.05274566 0.1168756 0.1142069
## 4597 0.13958482 0.12859229 0.1168756 0.1142069
## 4598 0.10650888 0.12859229 0.1168756 0.1142069
## 4599 0.10650888 0.12859229 0.1168756 0.1142069
## 4600 0.13781392 0.12859229 0.1168756 0.1142069
## 4601 0.07843137 0.12859229 0.1082367 0.1142069
## 4602 0.13781392 0.12859229 0.1082367 0.1142069
## 4603 0.13958482 0.12859229 0.1168756 0.1142069
## 4604 0.10650888 0.12859229 0.1168756 0.1142069
## 4605 0.10978875 0.05274566 0.1168756 0.1142069
## 4606 0.10650888 0.12859229 0.1168756 0.1142069
## 4607 0.10650888 0.12859229 0.1082367 0.1142069
## 4608 0.10650888 0.12859229 0.1082367 0.1142069
## 4609 0.10650888 0.12859229 0.1168756 0.1054972
## 4610 0.13781392 0.12859229 0.1082367 0.1142069
## 4611 0.13781392 0.12859229 0.1168756 0.1142069
## 4612 0.13781392 0.12859229 0.1082367 0.1142069
## 4613 0.13958482 0.12859229 0.1082367 0.1142069
## 4614 0.07843137 0.12859229 0.1168756 0.1142069
## 4615 0.13781392 0.12859229 0.1082367 0.1142069
## 4616 0.10650888 0.12859229 0.1168756 0.1054972
## 4617 0.07843137 0.12859229 0.1082367 0.1142069
## 4618 0.13781392 0.12859229 0.1168756 0.1142069
## 4619 0.13958482 0.12859229 0.1082367 0.1142069
## 4620 0.07843137 0.12859229 0.1082367 0.1142069
## 4621 0.10650888 0.12859229 0.1168756 0.1142069
## 4622 0.07843137 0.12859229 0.1082367 0.1142069
## 4623 0.11364176 0.12859229 0.1082367 0.1142069
## 4624 0.10650888 0.12859229 0.1168756 0.1142069
## 4625 0.13781392 0.12859229 0.1082367 0.1054972
## 4626 0.07666667 0.05274566 0.1168756 0.1142069
## 4627 0.10978875 0.12859229 0.1082367 0.1142069
## 4628 0.13781392 0.12859229 0.1082367 0.1142069
## 4629 0.13781392 0.12859229 0.1168756 0.1142069
## 4630 0.13781392 0.12859229 0.1082367 0.1142069
## 4631 0.13958482 0.05274566 0.1168756 0.1054972
## 4632 0.13958482 0.12859229 0.1168756 0.1142069
## 4633 0.13781392 0.12859229 0.1168756 0.1054972
## 4634 0.07843137 0.05274566 0.1040100 0.1040100
## 4635 0.11364176 0.12859229 0.1082367 0.1142069
## 4636 0.07666667 0.12859229 0.1168756 0.1142069
## 4637 0.07843137 0.12859229 0.1168756 0.1142069
## 4638 0.11364176 0.12859229 0.1040100 0.1040100
## 4639 0.07666667 0.12859229 0.1082367 0.1142069
## 4640 0.13781392 0.12859229 0.1082367 0.1054972
## 4641 0.13781392 0.12859229 0.1168756 0.1054972
## 4642 0.13781392 0.12859229 0.1082367 0.1142069
## 4643 0.10650888 0.12859229 0.1168756 0.1142069
## 4644 0.10650888 0.12859229 0.1082367 0.1142069
## 4645 0.10650888 0.05274566 0.1082367 0.1142069
## 4646 0.11364176 0.12859229 0.1082367 0.1142069
## 4647 0.10650888 0.12859229 0.1168756 0.1054972
## 4648 0.13781392 0.12859229 0.1168756 0.1142069
## 4649 0.10650888 0.12859229 0.1168756 0.1142069
## 4650 0.10978875 0.12859229 0.1168756 0.1142069
## 4651 0.10650888 0.12859229 0.1168756 0.1142069
## 4652 0.13781392 0.12859229 0.1082367 0.1142069
## 4653 0.13781392 0.12859229 0.1168756 0.1142069
## 4654 0.10650888 0.12859229 0.1168756 0.1054972
## 4655 0.10650888 0.12859229 0.1168756 0.1142069
## 4656 0.07843137 0.12859229 0.1168756 0.1142069
## 4657 0.13781392 0.12859229 0.1082367 0.1054972
## 4658 0.10650888 0.12859229 0.1168756 0.1142069
## 4659 0.13781392 0.12859229 0.1082367 0.1054972
## 4660 0.13781392 0.12859229 0.1082367 0.1142069
## 4661 0.11364176 0.12859229 0.1168756 0.1142069
## 4662 0.13781392 0.12859229 0.1082367 0.1054972
## 4663 0.07843137 0.05274566 0.1168756 0.1142069
## 4664 0.11364176 0.12859229 0.1082367 0.1054972
## 4665 0.10650888 0.12859229 0.1168756 0.1142069
## 4666 0.07666667 0.05274566 0.1082367 0.1142069
## 4667 0.13781392 0.12859229 0.1082367 0.1142069
## 4668 0.11364176 0.12859229 0.1082367 0.1142069
## 4669 0.13781392 0.12859229 0.1082367 0.1142069
## 4670 0.13781392 0.12859229 0.1040100 0.1040100
## 4671 0.10650888 0.05274566 0.1082367 0.1142069
## 4672 0.11364176 0.05274566 0.1168756 0.1142069
## 4673 0.13781392 0.12859229 0.1082367 0.1142069
## 4674 0.13781392 0.12859229 0.1168756 0.1142069
## 4675 0.07843137 0.05274566 0.1082367 0.1142069
## 4676 0.13781392 0.12859229 0.1082367 0.1142069
## 4677 0.10650888 0.12859229 0.1168756 0.1142069
## 4678 0.07843137 0.12859229 0.1168756 0.1142069
## 4679 0.07843137 0.12859229 0.1168756 0.1054972
## 4680 0.13781392 0.12859229 0.1168756 0.1142069
## 4681 0.07843137 0.12859229 0.1082367 0.1054972
## 4682 0.13781392 0.12859229 0.1168756 0.1142069
## 4683 0.13781392 0.12859229 0.1168756 0.1142069
## 4684 0.13781392 0.12859229 0.1082367 0.1142069
## 4685 0.10978875 0.05274566 0.1168756 0.1142069
## 4686 0.07666667 0.12859229 0.1082367 0.1054972
## 4687 0.10650888 0.12859229 0.1082367 0.1142069
## 4688 0.10650888 0.12859229 0.1168756 0.1142069
## 4689 0.10650888 0.12859229 0.1082367 0.1142069
## 4690 0.13781392 0.05274566 0.1168756 0.1142069
## 4691 0.10650888 0.12859229 0.1168756 0.1142069
## 4692 0.13781392 0.12859229 0.1168756 0.1142069
## 4693 0.13958482 0.12859229 0.1082367 0.1142069
## 4694 0.13781392 0.12859229 0.1168756 0.1142069
## 4695 0.07666667 0.12859229 0.1168756 0.1054972
## 4696 0.10650888 0.12859229 0.1082367 0.1142069
## 4697 0.07843137 0.12859229 0.1082367 0.1142069
## 4698 0.07843137 0.12859229 0.1168756 0.1142069
## 4699 0.07843137 0.05274566 0.1082367 0.1054972
## 4700 0.10978875 0.12859229 0.1168756 0.1142069
## 4701 0.10650888 0.12859229 0.1168756 0.1142069
## 4702 0.07843137 0.12859229 0.1168756 0.1142069
## 4703 0.10650888 0.12859229 0.1082367 0.1142069
## 4704 0.11364176 0.12859229 0.1168756 0.1142069
## 4705 0.10978875 0.12859229 0.1082367 0.1142069
## 4706 0.13781392 0.12859229 0.1082367 0.1142069
## 4707 0.13958482 0.05274566 0.1168756 0.1054972
## 4708 0.13781392 0.12859229 0.1168756 0.1142069
## 4709 0.07843137 0.12859229 0.1082367 0.1142069
## 4710 0.10978875 0.12859229 0.1082367 0.1142069
## 4711 0.13781392 0.12859229 0.1082367 0.1142069
## 4712 0.13781392 0.12859229 0.1082367 0.1142069
## 4713 0.11364176 0.12859229 0.1168756 0.1054972
## 4714 0.10650888 0.12859229 0.1082367 0.1142069
## 4715 0.10978875 0.12859229 0.1082367 0.1142069
## 4716 0.10650888 0.12859229 0.1168756 0.1054972
## 4717 0.10650888 0.12859229 0.1082367 0.1142069
## 4718 0.13781392 0.12859229 0.1168756 0.1142069
## 4719 0.10650888 0.12859229 0.1168756 0.1142069
## 4720 0.10650888 0.12859229 0.1082367 0.1142069
## 4721 0.13781392 0.12859229 0.1082367 0.1142069
## 4722 0.13781392 0.12859229 0.1168756 0.1142069
## 4723 0.13958482 0.05274566 0.1082367 0.1142069
## 4724 0.10650888 0.12859229 0.1168756 0.1142069
## 4725 0.13781392 0.12859229 0.1168756 0.1142069
## 4726 0.10650888 0.12859229 0.1082367 0.1142069
## 4727 0.13781392 0.05274566 0.1168756 0.1142069
## 4728 0.07843137 0.12859229 0.1040100 0.1040100
## 4729 0.10650888 0.12859229 0.1082367 0.1142069
## 4730 0.13781392 0.12859229 0.1168756 0.1142069
## 4731 0.13958482 0.05274566 0.1082367 0.1142069
## 4732 0.10650888 0.05274566 0.1168756 0.1142069
## 4733 0.10650888 0.12859229 0.1168756 0.1142069
## 4734 0.07666667 0.05274566 0.1082367 0.1142069
## 4735 0.07843137 0.12859229 0.1082367 0.1054972
## 4736 0.10650888 0.12859229 0.1082367 0.1142069
## 4737 0.13781392 0.12859229 0.1168756 0.1142069
## 4738 0.07843137 0.12859229 0.1168756 0.1142069
## 4739 0.11364176 0.12859229 0.1082367 0.1054972
## 4740 0.10650888 0.12859229 0.1168756 0.1142069
## 4741 0.13781392 0.12859229 0.1082367 0.1142069
## 4742 0.13781392 0.12859229 0.1168756 0.1054972
## 4743 0.07843137 0.12859229 0.1168756 0.1142069
## 4744 0.13781392 0.12859229 0.1168756 0.1142069
## 4745 0.13781392 0.12859229 0.1082367 0.1142069
## 4746 0.13781392 0.12859229 0.1082367 0.1142069
## 4747 0.10978875 0.12859229 0.1082367 0.1142069
## 4748 0.13781392 0.12859229 0.1168756 0.1142069
## 4749 0.13781392 0.05274566 0.1168756 0.1142069
## 4750 0.10978875 0.12859229 0.1082367 0.1142069
## 4751 0.10650888 0.12859229 0.1082367 0.1142069
## 4752 0.13781392 0.12859229 0.1168756 0.1142069
## 4753 0.11364176 0.12859229 0.1082367 0.1142069
## 4754 0.07843137 0.12859229 0.1168756 0.1142069
## 4755 0.13781392 0.12859229 0.1082367 0.1142069
## 4756 0.10978875 0.05274566 0.1168756 0.1142069
## 4757 0.10650888 0.12859229 0.1168756 0.1142069
## 4758 0.10978875 0.05274566 0.1168756 0.1142069
## 4759 0.11364176 0.12859229 0.1168756 0.1142069
## 4760 0.11364176 0.12859229 0.1082367 0.1142069
## 4761 0.10650888 0.12859229 0.1082367 0.1054972
## 4762 0.07843137 0.05274566 0.1168756 0.1142069
## 4763 0.10650888 0.05274566 0.1082367 0.1142069
## 4764 0.07843137 0.05274566 0.1082367 0.1142069
## 4765 0.10978875 0.05274566 0.1168756 0.1142069
## 4766 0.13781392 0.12859229 0.1082367 0.1142069
## 4767 0.10978875 0.05274566 0.1168756 0.1142069
## 4768 0.13781392 0.12859229 0.1168756 0.1142069
## 4769 0.13781392 0.12859229 0.1082367 0.1142069
## 4770 0.13781392 0.12859229 0.1168756 0.1142069
## 4771 0.10978875 0.12859229 0.1082367 0.1142069
## 4772 0.10978875 0.12859229 0.1168756 0.1142069
## 4773 0.13781392 0.12859229 0.1168756 0.1142069
## 4774 0.10650888 0.12859229 0.1082367 0.1142069
## 4775 0.07843137 0.12859229 0.1168756 0.1054972
## 4776 0.10650888 0.12859229 0.1082367 0.1142069
## 4777 0.10978875 0.12859229 0.1082367 0.1142069
## 4778 0.10650888 0.05274566 0.1168756 0.1142069
## 4779 0.10650888 0.12859229 0.1168756 0.1142069
## 4780 0.07843137 0.12859229 0.1168756 0.1142069
## 4781 0.07666667 0.12859229 0.1082367 0.1142069
## 4782 0.07666667 0.05274566 0.1168756 0.1142069
## 4783 0.07843137 0.12859229 0.1040100 0.1040100
## 4784 0.13958482 0.12859229 0.1168756 0.1142069
## 4785 0.13781392 0.12859229 0.1168756 0.1142069
## 4786 0.11364176 0.12859229 0.1082367 0.1142069
## 4787 0.13781392 0.12859229 0.1082367 0.1142069
## 4788 0.10978875 0.12859229 0.1168756 0.1142069
## 4789 0.13781392 0.12859229 0.1168756 0.1142069
## 4790 0.10650888 0.12859229 0.1082367 0.1142069
## 4791 0.10978875 0.12859229 0.1168756 0.1142069
## 4792 0.10650888 0.12859229 0.1082367 0.1142069
## 4793 0.11364176 0.05274566 0.1082367 0.1142069
## 4794 0.13781392 0.12859229 0.1168756 0.1142069
## 4795 0.13781392 0.12859229 0.1168756 0.1142069
## 4796 0.10978875 0.12859229 0.1082367 0.1142069
## 4797 0.13781392 0.12859229 0.1168756 0.1142069
## 4798 0.07666667 0.12859229 0.1168756 0.1142069
## 4799 0.10650888 0.12859229 0.1168756 0.1142069
## 4800 0.10978875 0.12859229 0.1168756 0.1054972
## 4801 0.11364176 0.12859229 0.1082367 0.1142069
## 4802 0.07843137 0.12859229 0.1082367 0.1142069
## 4803 0.13781392 0.12859229 0.1082367 0.1142069
## 4804 0.13958482 0.12859229 0.1082367 0.1142069
## 4805 0.13781392 0.12859229 0.1082367 0.1142069
## 4806 0.13781392 0.12859229 0.1082367 0.1142069
## 4807 0.07666667 0.05274566 0.1168756 0.1142069
## 4808 0.13781392 0.12859229 0.1168756 0.1142069
## 4809 0.07666667 0.05274566 0.1082367 0.1142069
## 4810 0.10650888 0.12859229 0.1168756 0.1142069
## 4811 0.07843137 0.12859229 0.1168756 0.1142069
## 4812 0.11364176 0.12859229 0.1168756 0.1142069
## 4813 0.13781392 0.12859229 0.1168756 0.1142069
## 4814 0.13781392 0.12859229 0.1082367 0.1054972
## 4815 0.13781392 0.12859229 0.1168756 0.1142069
## 4816 0.13781392 0.12859229 0.1168756 0.1142069
## 4817 0.10650888 0.12859229 0.1168756 0.1142069
## 4818 0.13781392 0.12859229 0.1168756 0.1142069
## 4819 0.07843137 0.05274566 0.1082367 0.1054972
## 4820 0.13781392 0.12859229 0.1082367 0.1142069
## 4821 0.13781392 0.12859229 0.1168756 0.1142069
## 4822 0.11364176 0.05274566 0.1082367 0.1142069
## 4823 0.10650888 0.12859229 0.1082367 0.1142069
## 4824 0.13781392 0.12859229 0.1082367 0.1142069
## 4825 0.10978875 0.05274566 0.1168756 0.1142069
## 4826 0.07843137 0.12859229 0.1082367 0.1142069
## 4827 0.13781392 0.12859229 0.1082367 0.1142069
## 4828 0.10650888 0.12859229 0.1168756 0.1142069
## 4829 0.13781392 0.12859229 0.1082367 0.1142069
## 4830 0.10650888 0.05274566 0.1168756 0.1142069
## 4831 0.07843137 0.12859229 0.1082367 0.1142069
## 4832 0.10650888 0.12859229 0.1168756 0.1142069
## 4833 0.11364176 0.12859229 0.1082367 0.1142069
## 4834 0.13781392 0.12859229 0.1168756 0.1142069
## 4835 0.11364176 0.12859229 0.1082367 0.1142069
## 4836 0.13781392 0.12859229 0.1082367 0.1142069
## 4837 0.13958482 0.12859229 0.1082367 0.1142069
## 4838 0.10978875 0.12859229 0.1040100 0.1040100
## 4839 0.13781392 0.12859229 0.1168756 0.1142069
## 4840 0.13781392 0.12859229 0.1082367 0.1142069
## 4841 0.11364176 0.05274566 0.1168756 0.1054972
## 4842 0.07843137 0.12859229 0.1082367 0.1142069
## 4843 0.10650888 0.12859229 0.1168756 0.1142069
## 4844 0.13781392 0.05274566 0.1082367 0.1142069
## 4845 0.10978875 0.05274566 0.1082367 0.1142069
## 4846 0.10650888 0.12859229 0.1168756 0.1054972
## 4847 0.10978875 0.05274566 0.1082367 0.1142069
## 4848 0.10650888 0.05274566 0.1082367 0.1142069
## 4849 0.13781392 0.12859229 0.1082367 0.1142069
## 4850 0.10650888 0.05274566 0.1168756 0.1054972
## 4851 0.13781392 0.12859229 0.1168756 0.1054972
## 4852 0.11364176 0.05274566 0.1168756 0.1142069
## 4853 0.13958482 0.12859229 0.1040100 0.1040100
## 4854 0.10650888 0.12859229 0.1082367 0.1142069
## 4855 0.11364176 0.12859229 0.1082367 0.1054972
## 4856 0.07843137 0.12859229 0.1168756 0.1142069
## 4857 0.07843137 0.05274566 0.1082367 0.1142069
## 4858 0.10650888 0.12859229 0.1040100 0.1040100
## 4859 0.10650888 0.12859229 0.1168756 0.1142069
## 4860 0.13781392 0.12859229 0.1082367 0.1142069
## 4861 0.07843137 0.12859229 0.1082367 0.1054972
## 4862 0.07843137 0.12859229 0.1168756 0.1142069
## 4863 0.07843137 0.12859229 0.1082367 0.1054972
## 4864 0.07666667 0.12859229 0.1040100 0.1040100
## 4865 0.10650888 0.12859229 0.1082367 0.1142069
## 4866 0.10978875 0.12859229 0.1168756 0.1054972
## 4867 0.13781392 0.12859229 0.1168756 0.1142069
## 4868 0.10650888 0.12859229 0.1082367 0.1142069
## 4869 0.10650888 0.12859229 0.1168756 0.1142069
## 4870 0.11364176 0.12859229 0.1082367 0.1142069
## 4871 0.07843137 0.05274566 0.1082367 0.1142069
## 4872 0.13958482 0.12859229 0.1168756 0.1054972
## 4873 0.07843137 0.05274566 0.1082367 0.1142069
## 4874 0.11364176 0.12859229 0.1082367 0.1142069
## 4875 0.13958482 0.12859229 0.1168756 0.1142069
## 4876 0.11364176 0.12859229 0.1082367 0.1142069
## 4877 0.10650888 0.12859229 0.1168756 0.1142069
## 4878 0.10650888 0.12859229 0.1082367 0.1142069
## 4879 0.07666667 0.05274566 0.1082367 0.1142069
## 4880 0.13781392 0.12859229 0.1082367 0.1142069
## 4881 0.13781392 0.12859229 0.1168756 0.1142069
## 4882 0.13781392 0.12859229 0.1168756 0.1142069
## 4883 0.07843137 0.12859229 0.1168756 0.1142069
## 4884 0.13781392 0.12859229 0.1082367 0.1142069
## 4885 0.07843137 0.12859229 0.1082367 0.1142069
## 4886 0.07843137 0.12859229 0.1168756 0.1142069
## 4887 0.10650888 0.12859229 0.1168756 0.1142069
## 4888 0.10978875 0.12859229 0.1082367 0.1142069
## 4889 0.07843137 0.12859229 0.1168756 0.1142069
## 4890 0.13781392 0.12859229 0.1082367 0.1142069
## 4891 0.13781392 0.05274566 0.1168756 0.1054972
## 4892 0.13781392 0.12859229 0.1082367 0.1142069
## 4893 0.07843137 0.12859229 0.1168756 0.1142069
## 4894 0.13781392 0.12859229 0.1082367 0.1142069
## 4895 0.07843137 0.12859229 0.1082367 0.1142069
## 4896 0.13958482 0.12859229 0.1168756 0.1142069
## 4897 0.10650888 0.12859229 0.1082367 0.1142069
## 4898 0.10978875 0.12859229 0.1168756 0.1054972
## 4899 0.11364176 0.12859229 0.1168756 0.1142069
## 4900 0.13781392 0.12859229 0.1168756 0.1142069
## 4901 0.10650888 0.12859229 0.1082367 0.1142069
## 4902 0.11364176 0.12859229 0.1168756 0.1142069
## 4903 0.10650888 0.12859229 0.1082367 0.1142069
## 4904 0.13781392 0.05274566 0.1168756 0.1142069
## 4905 0.11364176 0.12859229 0.1168756 0.1142069
## 4906 0.13781392 0.12859229 0.1082367 0.1142069
## 4907 0.10650888 0.05274566 0.1168756 0.1142069
## 4908 0.10978875 0.12859229 0.1168756 0.1054972
## 4909 0.10978875 0.12859229 0.1082367 0.1142069
## 4910 0.07843137 0.12859229 0.1168756 0.1142069
## 4911 0.11364176 0.12859229 0.1082367 0.1142069
## 4912 0.10978875 0.12859229 0.1168756 0.1142069
## 4913 0.10650888 0.12859229 0.1082367 0.1142069
## 4914 0.13781392 0.12859229 0.1168756 0.1142069
## 4915 0.13781392 0.05274566 0.1168756 0.1054972
## 4916 0.10650888 0.12859229 0.1168756 0.1142069
## 4917 0.13781392 0.12859229 0.1082367 0.1142069
## 4918 0.13958482 0.12859229 0.1168756 0.1142069
## 4919 0.13781392 0.12859229 0.1082367 0.1142069
## 4920 0.13781392 0.05274566 0.1082367 0.1142069
## 4921 0.13781392 0.12859229 0.1168756 0.1142069
## 4922 0.13781392 0.12859229 0.1082367 0.1142069
## 4923 0.11364176 0.05274566 0.1082367 0.1054972
## 4924 0.10650888 0.12859229 0.1168756 0.1054972
## 4925 0.10978875 0.12859229 0.1082367 0.1142069
## 4926 0.10650888 0.12859229 0.1082367 0.1054972
## 4927 0.07843137 0.12859229 0.1082367 0.1054972
## 4928 0.11364176 0.12859229 0.1082367 0.1142069
## 4929 0.10650888 0.12859229 0.1168756 0.1054972
## 4930 0.07843137 0.12859229 0.1168756 0.1142069
## 4931 0.11364176 0.05274566 0.1082367 0.1142069
## 4932 0.13781392 0.12859229 0.1168756 0.1142069
## 4933 0.13781392 0.05274566 0.1082367 0.1054972
## 4934 0.10978875 0.12859229 0.1168756 0.1054972
## 4935 0.11364176 0.12859229 0.1168756 0.1142069
## 4936 0.10978875 0.05274566 0.1168756 0.1142069
## 4937 0.13781392 0.12859229 0.1168756 0.1142069
## 4938 0.07843137 0.12859229 0.1168756 0.1142069
## 4939 0.07843137 0.05274566 0.1082367 0.1142069
## 4940 0.10650888 0.12859229 0.1082367 0.1054972
## 4941 0.10978875 0.12859229 0.1082367 0.1142069
## 4942 0.11364176 0.12859229 0.1082367 0.1054972
## 4943 0.10978875 0.12859229 0.1168756 0.1142069
## 4944 0.13781392 0.12859229 0.1082367 0.1142069
## 4945 0.13781392 0.12859229 0.1168756 0.1054972
## 4946 0.07843137 0.12859229 0.1082367 0.1142069
## 4947 0.13781392 0.12859229 0.1082367 0.1142069
## 4948 0.07666667 0.12859229 0.1082367 0.1142069
## 4949 0.13958482 0.05274566 0.1168756 0.1142069
## 4950 0.13781392 0.12859229 0.1168756 0.1142069
## 4951 0.07843137 0.05274566 0.1168756 0.1054972
## 4952 0.13781392 0.12859229 0.1168756 0.1142069
## 4953 0.11364176 0.12859229 0.1082367 0.1142069
## 4954 0.10650888 0.12859229 0.1168756 0.1142069
## 4955 0.07666667 0.12859229 0.1168756 0.1142069
## 4956 0.13781392 0.12859229 0.1168756 0.1142069
## 4957 0.10978875 0.05274566 0.1168756 0.1142069
## 4958 0.10978875 0.12859229 0.1082367 0.1142069
## 4959 0.10650888 0.05274566 0.1082367 0.1142069
## 4960 0.11364176 0.12859229 0.1168756 0.1054972
## 4961 0.13781392 0.12859229 0.1168756 0.1142069
## 4962 0.13781392 0.12859229 0.1168756 0.1142069
## 4963 0.13958482 0.12859229 0.1168756 0.1142069
## 4964 0.10650888 0.12859229 0.1168756 0.1142069
## 4965 0.07666667 0.12859229 0.1082367 0.1142069
## 4966 0.10650888 0.05274566 0.1168756 0.1142069
## 4967 0.11364176 0.12859229 0.1082367 0.1054972
## 4968 0.10650888 0.12859229 0.1082367 0.1142069
## 4969 0.13781392 0.12859229 0.1082367 0.1054972
## 4970 0.13781392 0.12859229 0.1082367 0.1142069
## 4971 0.13781392 0.05274566 0.1168756 0.1142069
## 4972 0.11364176 0.05274566 0.1168756 0.1142069
## 4973 0.13781392 0.05274566 0.1168756 0.1054972
## 4974 0.10978875 0.05274566 0.1168756 0.1054972
## 4975 0.10650888 0.12859229 0.1082367 0.1142069
## 4976 0.13781392 0.12859229 0.1168756 0.1142069
## 4977 0.07843137 0.12859229 0.1082367 0.1142069
## 4978 0.11364176 0.12859229 0.1082367 0.1142069
## 4979 0.07843137 0.05274566 0.1168756 0.1142069
## 4980 0.10650888 0.12859229 0.1168756 0.1142069
## 4981 0.11364176 0.12859229 0.1168756 0.1142069
## 4982 0.13781392 0.12859229 0.1082367 0.1054972
## 4983 0.13958482 0.12859229 0.1168756 0.1142069
## 4984 0.13781392 0.12859229 0.1082367 0.1142069
## 4985 0.13781392 0.05274566 0.1168756 0.1142069
## 4986 0.11364176 0.12859229 0.1082367 0.1142069
## 4987 0.13781392 0.12859229 0.1040100 0.1040100
## 4988 0.07666667 0.12859229 0.1082367 0.1142069
## 4989 0.10650888 0.12859229 0.1168756 0.1142069
## 4990 0.10650888 0.12859229 0.1082367 0.1054972
## 4991 0.10650888 0.05274566 0.1082367 0.1142069
## 4992 0.10650888 0.12859229 0.1168756 0.1142069
## 4993 0.07843137 0.12859229 0.1168756 0.1142069
## 4994 0.10978875 0.05274566 0.1082367 0.1142069
## 4995 0.10978875 0.12859229 0.1082367 0.1142069
## 4996 0.10650888 0.12859229 0.1040100 0.1040100
## 4997 0.10978875 0.12859229 0.1168756 0.1142069
## 4998 0.13958482 0.12859229 0.1082367 0.1142069
## 4999 0.13781392 0.12859229 0.1168756 0.1142069
## contact_encoded month_encoded day_of_week_encoded poutcome_encoded
## 1 0.14806335 0.06243174 0.11410336 0.14969714
## 2 0.14806335 0.09967090 0.09814869 0.14969714
## 3 0.14806335 0.06243174 0.12152375 0.14969714
## 4 0.14806335 0.06243174 0.10667727 0.14969714
## 5 0.14806335 0.45296167 0.12152375 0.14969714
## 6 0.14806335 0.06243174 0.12152375 0.14969714
## 7 0.14806335 0.06243174 0.09814869 0.14969714
## 8 0.14806335 0.06243174 0.11410336 0.14969714
## 9 0.14806335 0.06243174 0.10667727 0.14969714
## 10 0.14806335 0.06243174 0.11410336 0.14969714
## 11 0.14806335 0.21582397 0.10667727 0.14969714
## 12 0.14806335 0.09932349 0.11410336 0.14969714
## 13 0.14806335 0.21582397 0.10667727 0.14969714
## 14 0.14806335 0.09932349 0.12152375 0.14969714
## 15 0.05072162 0.09967090 0.12272101 0.14969714
## 16 0.14806335 0.06243174 0.12152375 0.14969714
## 17 0.05072162 0.43750000 0.10667727 0.14969714
## 18 0.14806335 0.21582397 0.12152375 0.14969714
## 19 0.14806335 0.06243174 0.10667727 0.14969714
## 20 0.14806335 0.06243174 0.10667727 0.14969714
## 21 0.14806335 0.09932349 0.12272101 0.14969714
## 22 0.14806335 0.10363527 0.09814869 0.14969714
## 23 0.14806335 0.06243174 0.09814869 0.14969714
## 24 0.14806335 0.09967090 0.12152375 0.14969714
## 25 0.14806335 0.51535088 0.10667727 0.14969714
## 26 0.14806335 0.21582397 0.12152375 0.14969714
## 27 0.14806335 0.21582397 0.12152375 0.14969714
## 28 0.14806335 0.06243174 0.12152375 0.14969714
## 29 0.14806335 0.06243174 0.10667727 0.14969714
## 30 0.14806335 0.06243174 0.09814869 0.14969714
## 31 0.14806335 0.09932349 0.09814869 0.14969714
## 32 0.14806335 0.06243174 0.12152375 0.14969714
## 33 0.14806335 0.09932349 0.12272101 0.14969714
## 34 0.14806335 0.06243174 0.12152375 0.14969714
## 35 0.14806335 0.09932349 0.12152375 0.14969714
## 36 0.14806335 0.06243174 0.12152375 0.14969714
## 37 0.14806335 0.09932349 0.12152375 0.14969714
## 38 0.14806335 0.43750000 0.09814869 0.14969714
## 39 0.14806335 0.51535088 0.09814869 0.14969714
## 40 0.14806335 0.09932349 0.11410336 0.14969714
## 41 0.14806335 0.09932349 0.10667727 0.14969714
## 42 0.14806335 0.45296167 0.12152375 0.14969714
## 43 0.14806335 0.06243174 0.09814869 0.14969714
## 44 0.14806335 0.06243174 0.12152375 0.14969714
## 45 0.14806335 0.48076923 0.12152375 0.14969714
## 46 0.14806335 0.06243174 0.12152375 0.14969714
## 47 0.14806335 0.06243174 0.10667727 0.14969714
## 48 0.14806335 0.21582397 0.12152375 0.14969714
## 49 0.14806335 0.09932349 0.10667727 0.14969714
## 50 0.14806335 0.06243174 0.11410336 0.14969714
## 51 0.14806335 0.06243174 0.12152375 0.14969714
## 52 0.14806335 0.06243174 0.12272101 0.14969714
## 53 0.14806335 0.06243174 0.12272101 0.14969714
## 54 0.14806335 0.06243174 0.12272101 0.14969714
## 55 0.14806335 0.09932349 0.09814869 0.14969714
## 56 0.14806335 0.21582397 0.10667727 0.14969714
## 57 0.14806335 0.09932349 0.09814869 0.14969714
## 58 0.14806335 0.06243174 0.12152375 0.14969714
## 59 0.14806335 0.06243174 0.09814869 0.14969714
## 60 0.14806335 0.06243174 0.10667727 0.14969714
## 61 0.14806335 0.10363527 0.09814869 0.14969714
## 62 0.14806335 0.06243174 0.12152375 0.14969714
## 63 0.14806335 0.48076923 0.09814869 0.14969714
## 64 0.14806335 0.10363527 0.10667727 0.14969714
## 65 0.05072162 0.06243174 0.12272101 0.14969714
## 66 0.14806335 0.06243174 0.12152375 0.14969714
## 67 0.14806335 0.21582397 0.12152375 0.14969714
## 68 0.14806335 0.48076923 0.12152375 0.14969714
## 69 0.14806335 0.09932349 0.11410336 0.14969714
## 70 0.14806335 0.21582397 0.12152375 0.14969714
## 71 0.14806335 0.06243174 0.12152375 0.14969714
## 72 0.14806335 0.06243174 0.12152375 0.14969714
## 73 0.14806335 0.06243174 0.10667727 0.14969714
## 74 0.14806335 0.09932349 0.09814869 0.14969714
## 75 0.14806335 0.06243174 0.12272101 0.14969714
## 76 0.14806335 0.09932349 0.12152375 0.14969714
## 77 0.14806335 0.06243174 0.11410336 0.14969714
## 78 0.14806335 0.21582397 0.10667727 0.14969714
## 79 0.14806335 0.06243174 0.12152375 0.14969714
## 80 0.14806335 0.06243174 0.10667727 0.14969714
## 81 0.14806335 0.21582397 0.12152375 0.14969714
## 82 0.14806335 0.45296167 0.11410336 0.14969714
## 83 0.05072162 0.51535088 0.11410336 0.14969714
## 84 0.14806335 0.45296167 0.09814869 0.14969714
## 85 0.14806335 0.06243174 0.12152375 0.14969714
## 86 0.14806335 0.10363527 0.10667727 0.14969714
## 87 0.14806335 0.21582397 0.09814869 0.14969714
## 88 0.14806335 0.10363527 0.10667727 0.14969714
## 89 0.14806335 0.06243174 0.11410336 0.14969714
## 90 0.14806335 0.06243174 0.09814869 0.14969714
## 91 0.14806335 0.06243174 0.11410336 0.14969714
## 92 0.14806335 0.06243174 0.12152375 0.14969714
## 93 0.14806335 0.06243174 0.12272101 0.14969714
## 94 0.14806335 0.09932349 0.12152375 0.14969714
## 95 0.14806335 0.10363527 0.10667727 0.14969714
## 96 0.14806335 0.06243174 0.10667727 0.14969714
## 97 0.14806335 0.10363527 0.12152375 0.14969714
## 98 0.14806335 0.09932349 0.12152375 0.14969714
## 99 0.14806335 0.09293746 0.12152375 0.14969714
## 100 0.14806335 0.21582397 0.10667727 0.14969714
## 101 0.14806335 0.06243174 0.12152375 0.14969714
## 102 0.14806335 0.09293746 0.10667727 0.14969714
## 103 0.14806335 0.06243174 0.10667727 0.14969714
## 104 0.14806335 0.21582397 0.12152375 0.14969714
## 105 0.14806335 0.21582397 0.12152375 0.14969714
## 106 0.14806335 0.21582397 0.10667727 0.14969714
## 107 0.14806335 0.06243174 0.09814869 0.14969714
## 108 0.14806335 0.09932349 0.10667727 0.14969714
## 109 0.14806335 0.21582397 0.10667727 0.14969714
## 110 0.14806335 0.48076923 0.09814869 0.14969714
## 111 0.14806335 0.09293746 0.11410336 0.14969714
## 112 0.14806335 0.09967090 0.11410336 0.14969714
## 113 0.05072162 0.45296167 0.11410336 0.14969714
## 114 0.14806335 0.06243174 0.09814869 0.14969714
## 115 0.14806335 0.09967090 0.12272101 0.14969714
## 116 0.14806335 0.06243174 0.12152375 0.14969714
## 117 0.14806335 0.45296167 0.10667727 0.14969714
## 118 0.14806335 0.09932349 0.10667727 0.14969714
## 119 0.14806335 0.09932349 0.10667727 0.14969714
## 120 0.14806335 0.06243174 0.10667727 0.14969714
## 121 0.14806335 0.06243174 0.11410336 0.14969714
## 122 0.14806335 0.06243174 0.09814869 0.14969714
## 123 0.14806335 0.06243174 0.12152375 0.14969714
## 124 0.14806335 0.09932349 0.11410336 0.14969714
## 125 0.14806335 0.45296167 0.11410336 0.14969714
## 126 0.14806335 0.09932349 0.12152375 0.14969714
## 127 0.14806335 0.10363527 0.12272101 0.14969714
## 128 0.14806335 0.21582397 0.12152375 0.14969714
## 129 0.14806335 0.09967090 0.12152375 0.14969714
## 130 0.14806335 0.06243174 0.11410336 0.14969714
## 131 0.14806335 0.06243174 0.11410336 0.14969714
## 132 0.14806335 0.06243174 0.09814869 0.14969714
## 133 0.14806335 0.09932349 0.11410336 0.14969714
## 134 0.14806335 0.09932349 0.11410336 0.14969714
## 135 0.14806335 0.06243174 0.11410336 0.14969714
## 136 0.14806335 0.06243174 0.12152375 0.14969714
## 137 0.14806335 0.06243174 0.10667727 0.14969714
## 138 0.14806335 0.21582397 0.10667727 0.14969714
## 139 0.14806335 0.09967090 0.11410336 0.14969714
## 140 0.14806335 0.06243174 0.10667727 0.14969714
## 141 0.05072162 0.09967090 0.12272101 0.14969714
## 142 0.14806335 0.06243174 0.10667727 0.14969714
## 143 0.14806335 0.09932349 0.10667727 0.14969714
## 144 0.14806335 0.06243174 0.11410336 0.14969714
## 145 0.14806335 0.09932349 0.11410336 0.14969714
## 146 0.14806335 0.09932349 0.10667727 0.14969714
## 147 0.14806335 0.21582397 0.10667727 0.14969714
## 148 0.14806335 0.06243174 0.10667727 0.14969714
## 149 0.14806335 0.06243174 0.09814869 0.14969714
## 150 0.14806335 0.06243174 0.10667727 0.14969714
## 151 0.14806335 0.06243174 0.12272101 0.14969714
## 152 0.14806335 0.06243174 0.10667727 0.14969714
## 153 0.14806335 0.06243174 0.11410336 0.14969714
## 154 0.05072162 0.06243174 0.10667727 0.14969714
## 155 0.14806335 0.21582397 0.09814869 0.14969714
## 156 0.14806335 0.48076923 0.10667727 0.14969714
## 157 0.14806335 0.09932349 0.12152375 0.14969714
## 158 0.14806335 0.06243174 0.11410336 0.14969714
## 159 0.14806335 0.21582397 0.12152375 0.14969714
## 160 0.14806335 0.06243174 0.12272101 0.14969714
## 161 0.14806335 0.10363527 0.12152375 0.14969714
## 162 0.14806335 0.09932349 0.10667727 0.14969714
## 163 0.14806335 0.21582397 0.12152375 0.14969714
## 164 0.14806335 0.06243174 0.10667727 0.14969714
## 165 0.14806335 0.09932349 0.09814869 0.14969714
## 166 0.14806335 0.06243174 0.12152375 0.14969714
## 167 0.14806335 0.06243174 0.12152375 0.14969714
## 168 0.14806335 0.06243174 0.10667727 0.14969714
## 169 0.14806335 0.06243174 0.12272101 0.14969714
## 170 0.14806335 0.21582397 0.10667727 0.14969714
## 171 0.14806335 0.09932349 0.11410336 0.14969714
## 172 0.14806335 0.06243174 0.12152375 0.14969714
## 173 0.14806335 0.06243174 0.12272101 0.14969714
## 174 0.14806335 0.45296167 0.10667727 0.14969714
## 175 0.14806335 0.48076923 0.12152375 0.14969714
## 176 0.14806335 0.09932349 0.10667727 0.14969714
## 177 0.14806335 0.21582397 0.11410336 0.14969714
## 178 0.14806335 0.09932349 0.12152375 0.14969714
## 179 0.14806335 0.43750000 0.12272101 0.14969714
## 180 0.14806335 0.06243174 0.10667727 0.14969714
## 181 0.14806335 0.09932349 0.11410336 0.14969714
## 182 0.14806335 0.45296167 0.12152375 0.14969714
## 183 0.14806335 0.06243174 0.12272101 0.14969714
## 184 0.14806335 0.10363527 0.12152375 0.14969714
## 185 0.14806335 0.06243174 0.11410336 0.14969714
## 186 0.14806335 0.06243174 0.10667727 0.14969714
## 187 0.14806335 0.06243174 0.10667727 0.14969714
## 188 0.14806335 0.06243174 0.09814869 0.14969714
## 189 0.14806335 0.06243174 0.09814869 0.14969714
## 190 0.14806335 0.09932349 0.10667727 0.14969714
## 191 0.05072162 0.09932349 0.11410336 0.14969714
## 192 0.14806335 0.06243174 0.11410336 0.14969714
## 193 0.14806335 0.21582397 0.12152375 0.14969714
## 194 0.14806335 0.10363527 0.12152375 0.14969714
## 195 0.14806335 0.06243174 0.10667727 0.14969714
## 196 0.14806335 0.06243174 0.10667727 0.14969714
## 197 0.14806335 0.06243174 0.12152375 0.14969714
## 198 0.05072162 0.06243174 0.12272101 0.14969714
## 199 0.14806335 0.09932349 0.11410336 0.14969714
## 200 0.14806335 0.09932349 0.12272101 0.14969714
## 201 0.14806335 0.09932349 0.12152375 0.14969714
## 202 0.14806335 0.21582397 0.09814869 0.14969714
## 203 0.14806335 0.09932349 0.11410336 0.14969714
## 204 0.14806335 0.09932349 0.12152375 0.14969714
## 205 0.14806335 0.09932349 0.10667727 0.14969714
## 206 0.14806335 0.09932349 0.09814869 0.14969714
## 207 0.14806335 0.09932349 0.11410336 0.14969714
## 208 0.14806335 0.06243174 0.09814869 0.14969714
## 209 0.05072162 0.21582397 0.12152375 0.14969714
## 210 0.14806335 0.06243174 0.10667727 0.14969714
## 211 0.14806335 0.21582397 0.12152375 0.14969714
## 212 0.14806335 0.06243174 0.12152375 0.14969714
## 213 0.14806335 0.06243174 0.12152375 0.14969714
## 214 0.14806335 0.06243174 0.12272101 0.14969714
## 215 0.14806335 0.06243174 0.09814869 0.14969714
## 216 0.14806335 0.09293746 0.09814869 0.14969714
## 217 0.14806335 0.09932349 0.11410336 0.14969714
## 218 0.14806335 0.09967090 0.11410336 0.14969714
## 219 0.05072162 0.09293746 0.12152375 0.14969714
## 220 0.14806335 0.06243174 0.11410336 0.14969714
## 221 0.14806335 0.06243174 0.12152375 0.14969714
## 222 0.14806335 0.21582397 0.11410336 0.14969714
## 223 0.14806335 0.06243174 0.10667727 0.14969714
## 224 0.14806335 0.06243174 0.10667727 0.14969714
## 225 0.14806335 0.43750000 0.09814869 0.14969714
## 226 0.14806335 0.51535088 0.09814869 0.14969714
## 227 0.14806335 0.09293746 0.12152375 0.14969714
## 228 0.05072162 0.10363527 0.11410336 0.14969714
## 229 0.14806335 0.06243174 0.12272101 0.14969714
## 230 0.14806335 0.06243174 0.11410336 0.14969714
## 231 0.14806335 0.21582397 0.10667727 0.14969714
## 232 0.14806335 0.48076923 0.12272101 0.14969714
## 233 0.14806335 0.06243174 0.11410336 0.14969714
## 234 0.14806335 0.06243174 0.12272101 0.14969714
## 235 0.14806335 0.06243174 0.12272101 0.14969714
## 236 0.14806335 0.06243174 0.10667727 0.14969714
## 237 0.14806335 0.06243174 0.11410336 0.14969714
## 238 0.14806335 0.21582397 0.11410336 0.14969714
## 239 0.14806335 0.06243174 0.12272101 0.14969714
## 240 0.14806335 0.06243174 0.10667727 0.14969714
## 241 0.14806335 0.21582397 0.12272101 0.14969714
## 242 0.14806335 0.06243174 0.12152375 0.14969714
## 243 0.14806335 0.09932349 0.12272101 0.14969714
## 244 0.14806335 0.21582397 0.12152375 0.14969714
## 245 0.14806335 0.48076923 0.09814869 0.14969714
## 246 0.14806335 0.06243174 0.12152375 0.14969714
## 247 0.14806335 0.09932349 0.12272101 0.14969714
## 248 0.14806335 0.06243174 0.12152375 0.14969714
## 249 0.14806335 0.09293746 0.12152375 0.14969714
## 250 0.14806335 0.43750000 0.09814869 0.14969714
## 251 0.14806335 0.06243174 0.12272101 0.14969714
## 252 0.05072162 0.09932349 0.09814869 0.14969714
## 253 0.14806335 0.09932349 0.09814869 0.14969714
## 254 0.14806335 0.06243174 0.12152375 0.14969714
## 255 0.14806335 0.06243174 0.12272101 0.14969714
## 256 0.14806335 0.09932349 0.10667727 0.14969714
## 257 0.14806335 0.06243174 0.11410336 0.14969714
## 258 0.14806335 0.09932349 0.12272101 0.14969714
## 259 0.14806335 0.21582397 0.10667727 0.14969714
## 260 0.14806335 0.06243174 0.11410336 0.14969714
## 261 0.14806335 0.21582397 0.12152375 0.14969714
## 262 0.14806335 0.09967090 0.10667727 0.14969714
## 263 0.14806335 0.06243174 0.10667727 0.14969714
## 264 0.14806335 0.09293746 0.12152375 0.14969714
## 265 0.14806335 0.09932349 0.11410336 0.14969714
## 266 0.14806335 0.06243174 0.11410336 0.14969714
## 267 0.14806335 0.06243174 0.12152375 0.14969714
## 268 0.14806335 0.21582397 0.12152375 0.14969714
## 269 0.05072162 0.06243174 0.12152375 0.14969714
## 270 0.14806335 0.10363527 0.10667727 0.14969714
## 271 0.14806335 0.09967090 0.11410336 0.14969714
## 272 0.14806335 0.06243174 0.10667727 0.14969714
## 273 0.14806335 0.06243174 0.12152375 0.14969714
## 274 0.14806335 0.10363527 0.11410336 0.14969714
## 275 0.14806335 0.21582397 0.09814869 0.14969714
## 276 0.14806335 0.09293746 0.11410336 0.14969714
## 277 0.14806335 0.21582397 0.12152375 0.14969714
## 278 0.14806335 0.21582397 0.11410336 0.14969714
## 279 0.14806335 0.06243174 0.09814869 0.14969714
## 280 0.05072162 0.06243174 0.12152375 0.14969714
## 281 0.14806335 0.09932349 0.12152375 0.14969714
## 282 0.14806335 0.06243174 0.10667727 0.14969714
## 283 0.14806335 0.06243174 0.11410336 0.14969714
## 284 0.14806335 0.09932349 0.11410336 0.14969714
## 285 0.14806335 0.09932349 0.09814869 0.14969714
## 286 0.14806335 0.43750000 0.10667727 0.14969714
## 287 0.14806335 0.06243174 0.09814869 0.14969714
## 288 0.14806335 0.06243174 0.11410336 0.14969714
## 289 0.14806335 0.21582397 0.11410336 0.14969714
## 290 0.14806335 0.21582397 0.12272101 0.14969714
## 291 0.14806335 0.21582397 0.10667727 0.14969714
## 292 0.14806335 0.51535088 0.12272101 0.14969714
## 293 0.14806335 0.09932349 0.09814869 0.14969714
## 294 0.14806335 0.21582397 0.09814869 0.14969714
## 295 0.14806335 0.21582397 0.10667727 0.14969714
## 296 0.14806335 0.06243174 0.10667727 0.14969714
## 297 0.14806335 0.21582397 0.12152375 0.14969714
## 298 0.14806335 0.09932349 0.12152375 0.14969714
## 299 0.14806335 0.06243174 0.12272101 0.14969714
## 300 0.14806335 0.06243174 0.12152375 0.14969714
## 301 0.14806335 0.21582397 0.09814869 0.14969714
## 302 0.14806335 0.06243174 0.09814869 0.14969714
## 303 0.14806335 0.06243174 0.10667727 0.14969714
## 304 0.14806335 0.06243174 0.12272101 0.14969714
## 305 0.14806335 0.09932349 0.10667727 0.14969714
## 306 0.14806335 0.06243174 0.09814869 0.14969714
## 307 0.14806335 0.45296167 0.12152375 0.14969714
## 308 0.14806335 0.06243174 0.12272101 0.14969714
## 309 0.14806335 0.06243174 0.11410336 0.14969714
## 310 0.14806335 0.06243174 0.11410336 0.14969714
## 311 0.14806335 0.09932349 0.12152375 0.14969714
## 312 0.14806335 0.09932349 0.09814869 0.14969714
## 313 0.14806335 0.06243174 0.11410336 0.14969714
## 314 0.14806335 0.21582397 0.11410336 0.14969714
## 315 0.14806335 0.21582397 0.11410336 0.14969714
## 316 0.14806335 0.06243174 0.12152375 0.14969714
## 317 0.05072162 0.09293746 0.09814869 0.14969714
## 318 0.14806335 0.21582397 0.09814869 0.14969714
## 319 0.14806335 0.09932349 0.09814869 0.14969714
## 320 0.14806335 0.06243174 0.09814869 0.14969714
## 321 0.14806335 0.09932349 0.10667727 0.14969714
## 322 0.14806335 0.43750000 0.10667727 0.14969714
## 323 0.14806335 0.09932349 0.12152375 0.14969714
## 324 0.14806335 0.06243174 0.11410336 0.14969714
## 325 0.05072162 0.06243174 0.09814869 0.14969714
## 326 0.14806335 0.06243174 0.11410336 0.14969714
## 327 0.14806335 0.21582397 0.09814869 0.14969714
## 328 0.14806335 0.06243174 0.12152375 0.14969714
## 329 0.14806335 0.06243174 0.12272101 0.14969714
## 330 0.14806335 0.06243174 0.12272101 0.14969714
## 331 0.14806335 0.06243174 0.11410336 0.14969714
## 332 0.14806335 0.09932349 0.12152375 0.14969714
## 333 0.14806335 0.21582397 0.12152375 0.14969714
## 334 0.14806335 0.06243174 0.12272101 0.14969714
## 335 0.14806335 0.06243174 0.12152375 0.14969714
## 336 0.14806335 0.09932349 0.11410336 0.14969714
## 337 0.14806335 0.06243174 0.09814869 0.14969714
## 338 0.14806335 0.06243174 0.09814869 0.14969714
## 339 0.14806335 0.09932349 0.12152375 0.14969714
## 340 0.14806335 0.06243174 0.11410336 0.14969714
## 341 0.14806335 0.21582397 0.10667727 0.14969714
## 342 0.14806335 0.06243174 0.12152375 0.14969714
## 343 0.14806335 0.10363527 0.10667727 0.14969714
## 344 0.14806335 0.06243174 0.09814869 0.14969714
## 345 0.14806335 0.09932349 0.09814869 0.14969714
## 346 0.14806335 0.45296167 0.12152375 0.14969714
## 347 0.14806335 0.21582397 0.12152375 0.14969714
## 348 0.14806335 0.09932349 0.09814869 0.14969714
## 349 0.14806335 0.06243174 0.09814869 0.14969714
## 350 0.14806335 0.06243174 0.09814869 0.14969714
## 351 0.14806335 0.09932349 0.11410336 0.14969714
## 352 0.05072162 0.09293746 0.11410336 0.14969714
## 353 0.14806335 0.06243174 0.11410336 0.14969714
## 354 0.14806335 0.06243174 0.12272101 0.14969714
## 355 0.14806335 0.06243174 0.10667727 0.14969714
## 356 0.05072162 0.09932349 0.10667727 0.14969714
## 357 0.14806335 0.45296167 0.09814869 0.14969714
## 358 0.14806335 0.06243174 0.12152375 0.14969714
## 359 0.14806335 0.09932349 0.11410336 0.14969714
## 360 0.14806335 0.09932349 0.12272101 0.14969714
## 361 0.14806335 0.21582397 0.11410336 0.14969714
## 362 0.14806335 0.06243174 0.09814869 0.14969714
## 363 0.05072162 0.06243174 0.12272101 0.14969714
## 364 0.14806335 0.09293746 0.09814869 0.14969714
## 365 0.14806335 0.06243174 0.11410336 0.14969714
## 366 0.14806335 0.09967090 0.10667727 0.14969714
## 367 0.14806335 0.06243174 0.10667727 0.14969714
## 368 0.14806335 0.10363527 0.10667727 0.14969714
## 369 0.14806335 0.21582397 0.10667727 0.14969714
## 370 0.14806335 0.09967090 0.11410336 0.14969714
## 371 0.14806335 0.06243174 0.12152375 0.14969714
## 372 0.14806335 0.06243174 0.12152375 0.14969714
## 373 0.14806335 0.09932349 0.09814869 0.14969714
## 374 0.14806335 0.06243174 0.10667727 0.14969714
## 375 0.14806335 0.09932349 0.11410336 0.14969714
## 376 0.14806335 0.21582397 0.12152375 0.14969714
## 377 0.14806335 0.09967090 0.09814869 0.14969714
## 378 0.14806335 0.06243174 0.10667727 0.14969714
## 379 0.14806335 0.06243174 0.12272101 0.14969714
## 380 0.14806335 0.06243174 0.11410336 0.14969714
## 381 0.14806335 0.09932349 0.12152375 0.14969714
## 382 0.14806335 0.09932349 0.12152375 0.14969714
## 383 0.14806335 0.09932349 0.12272101 0.14969714
## 384 0.14806335 0.09932349 0.09814869 0.14969714
## 385 0.14806335 0.06243174 0.09814869 0.14969714
## 386 0.14806335 0.06243174 0.09814869 0.14969714
## 387 0.14806335 0.09932349 0.09814869 0.14969714
## 388 0.05072162 0.06243174 0.12152375 0.14969714
## 389 0.14806335 0.06243174 0.10667727 0.14969714
## 390 0.14806335 0.21582397 0.12272101 0.14969714
## 391 0.14806335 0.10363527 0.12272101 0.14969714
## 392 0.14806335 0.06243174 0.10667727 0.14969714
## 393 0.14806335 0.43750000 0.11410336 0.14969714
## 394 0.14806335 0.06243174 0.10667727 0.14969714
## 395 0.05072162 0.06243174 0.12152375 0.14969714
## 396 0.14806335 0.21582397 0.10667727 0.14969714
## 397 0.14806335 0.21582397 0.12152375 0.14969714
## 398 0.14806335 0.21582397 0.10667727 0.14969714
## 399 0.14806335 0.43750000 0.12152375 0.14969714
## 400 0.05072162 0.06243174 0.12272101 0.14969714
## 401 0.14806335 0.06243174 0.11410336 0.14969714
## 402 0.14806335 0.09932349 0.12272101 0.14969714
## 403 0.14806335 0.21582397 0.09814869 0.14969714
## 404 0.14806335 0.06243174 0.12152375 0.14969714
## 405 0.14806335 0.10363527 0.11410336 0.14969714
## 406 0.14806335 0.10363527 0.10667727 0.14969714
## 407 0.14806335 0.21582397 0.09814869 0.14969714
## 408 0.05072162 0.06243174 0.11410336 0.14969714
## 409 0.14806335 0.09932349 0.09814869 0.14969714
## 410 0.14806335 0.06243174 0.12152375 0.14969714
## 411 0.14806335 0.21582397 0.09814869 0.14969714
## 412 0.14806335 0.10363527 0.10667727 0.14969714
## 413 0.14806335 0.51535088 0.11410336 0.14969714
## 414 0.14806335 0.21582397 0.12152375 0.14969714
## 415 0.14806335 0.06243174 0.11410336 0.14969714
## 416 0.14806335 0.10363527 0.12152375 0.14969714
## 417 0.14806335 0.06243174 0.12272101 0.14969714
## 418 0.14806335 0.06243174 0.12272101 0.14969714
## 419 0.14806335 0.06243174 0.10667727 0.14969714
## 420 0.14806335 0.09293746 0.12272101 0.14969714
## 421 0.14806335 0.06243174 0.11410336 0.14969714
## 422 0.14806335 0.21582397 0.11410336 0.14969714
## 423 0.05072162 0.09932349 0.11410336 0.14969714
## 424 0.14806335 0.06243174 0.10667727 0.14969714
## 425 0.14806335 0.21582397 0.10667727 0.14969714
## 426 0.14806335 0.21582397 0.09814869 0.14969714
## 427 0.14806335 0.06243174 0.12272101 0.14969714
## 428 0.14806335 0.06243174 0.12152375 0.14969714
## 429 0.14806335 0.06243174 0.12272101 0.14969714
## 430 0.14806335 0.09932349 0.11410336 0.14969714
## 431 0.14806335 0.06243174 0.09814869 0.14969714
## 432 0.05072162 0.09293746 0.12272101 0.14969714
## 433 0.14806335 0.21582397 0.11410336 0.14969714
## 434 0.14806335 0.21582397 0.10667727 0.14969714
## 435 0.14806335 0.48076923 0.09814869 0.14969714
## 436 0.05072162 0.06243174 0.10667727 0.14969714
## 437 0.14806335 0.21582397 0.12152375 0.14969714
## 438 0.14806335 0.06243174 0.12152375 0.14969714
## 439 0.05072162 0.06243174 0.10667727 0.14969714
## 440 0.14806335 0.21582397 0.12152375 0.14969714
## 441 0.14806335 0.21582397 0.09814869 0.14969714
## 442 0.14806335 0.06243174 0.11410336 0.14969714
## 443 0.14806335 0.21582397 0.12272101 0.14969714
## 444 0.05072162 0.09967090 0.12272101 0.14969714
## 445 0.14806335 0.06243174 0.12272101 0.14969714
## 446 0.14806335 0.21582397 0.12152375 0.14969714
## 447 0.14806335 0.21582397 0.12152375 0.14969714
## 448 0.14806335 0.09967090 0.10667727 0.14969714
## 449 0.14806335 0.06243174 0.10667727 0.14969714
## 450 0.14806335 0.09932349 0.11410336 0.14969714
## 451 0.14806335 0.43750000 0.10667727 0.14969714
## 452 0.14806335 0.06243174 0.12152375 0.14969714
## 453 0.14806335 0.06243174 0.11410336 0.14969714
## 454 0.05072162 0.06243174 0.12152375 0.14969714
## 455 0.14806335 0.09967090 0.11410336 0.14969714
## 456 0.14806335 0.06243174 0.10667727 0.14969714
## 457 0.14806335 0.09932349 0.11410336 0.14969714
## 458 0.14806335 0.21582397 0.12152375 0.14969714
## 459 0.14806335 0.06243174 0.12152375 0.14969714
## 460 0.14806335 0.06243174 0.09814869 0.14969714
## 461 0.14806335 0.21582397 0.09814869 0.14969714
## 462 0.14806335 0.21582397 0.10667727 0.14969714
## 463 0.14806335 0.21582397 0.12152375 0.14969714
## 464 0.14806335 0.06243174 0.09814869 0.14969714
## 465 0.14806335 0.21582397 0.10667727 0.14969714
## 466 0.14806335 0.06243174 0.12152375 0.14969714
## 467 0.14806335 0.09932349 0.12152375 0.14969714
## 468 0.14806335 0.09932349 0.11410336 0.14969714
## 469 0.14806335 0.45296167 0.12152375 0.14969714
## 470 0.14806335 0.09932349 0.10667727 0.14969714
## 471 0.14806335 0.06243174 0.12272101 0.14969714
## 472 0.14806335 0.09967090 0.12152375 0.14969714
## 473 0.14806335 0.06243174 0.12152375 0.14969714
## 474 0.14806335 0.09932349 0.10667727 0.14969714
## 475 0.14806335 0.21582397 0.12152375 0.14969714
## 476 0.14806335 0.06243174 0.12152375 0.14969714
## 477 0.14806335 0.51535088 0.11410336 0.14969714
## 478 0.14806335 0.09932349 0.12152375 0.14969714
## 479 0.14806335 0.21582397 0.09814869 0.14969714
## 480 0.14806335 0.21582397 0.12272101 0.14969714
## 481 0.14806335 0.06243174 0.10667727 0.14969714
## 482 0.14806335 0.10363527 0.10667727 0.14969714
## 483 0.05072162 0.43750000 0.11410336 0.14969714
## 484 0.14806335 0.06243174 0.12272101 0.14969714
## 485 0.14806335 0.06243174 0.11410336 0.14969714
## 486 0.14806335 0.06243174 0.12272101 0.14969714
## 487 0.14806335 0.06243174 0.11410336 0.14969714
## 488 0.14806335 0.10363527 0.09814869 0.14969714
## 489 0.14806335 0.09932349 0.10667727 0.14969714
## 490 0.14806335 0.21582397 0.12152375 0.14969714
## 491 0.14806335 0.09932349 0.10667727 0.14969714
## 492 0.14806335 0.06243174 0.10667727 0.14969714
## 493 0.14806335 0.06243174 0.12152375 0.14969714
## 494 0.14806335 0.09932349 0.10667727 0.14969714
## 495 0.14806335 0.06243174 0.10667727 0.14969714
## 496 0.14806335 0.06243174 0.12152375 0.14969714
## 497 0.14806335 0.45296167 0.12152375 0.14969714
## 498 0.14806335 0.43750000 0.11410336 0.14969714
## 499 0.14806335 0.09932349 0.09814869 0.14969714
## 500 0.14806335 0.06243174 0.10667727 0.14969714
## 501 0.05072162 0.06243174 0.10667727 0.14969714
## 502 0.14806335 0.09932349 0.09814869 0.14969714
## 503 0.14806335 0.09932349 0.09814869 0.14969714
## 504 0.14806335 0.21582397 0.10667727 0.14969714
## 505 0.14806335 0.06243174 0.10667727 0.14969714
## 506 0.14806335 0.06243174 0.12152375 0.14969714
## 507 0.14806335 0.09293746 0.10667727 0.14969714
## 508 0.14806335 0.09293746 0.12152375 0.14969714
## 509 0.14806335 0.09932349 0.10667727 0.14969714
## 510 0.14806335 0.06243174 0.12272101 0.14969714
## 511 0.14806335 0.21582397 0.12152375 0.14969714
## 512 0.14806335 0.21582397 0.12152375 0.14969714
## 513 0.14806335 0.21582397 0.09814869 0.14969714
## 514 0.14806335 0.09932349 0.10667727 0.14969714
## 515 0.14806335 0.21582397 0.10667727 0.14969714
## 516 0.14806335 0.43750000 0.11410336 0.14969714
## 517 0.14806335 0.21582397 0.10667727 0.14969714
## 518 0.14806335 0.21582397 0.12152375 0.14969714
## 519 0.14806335 0.10363527 0.12272101 0.14969714
## 520 0.14806335 0.06243174 0.12152375 0.14969714
## 521 0.14806335 0.06243174 0.10667727 0.14969714
## 522 0.14806335 0.09932349 0.11410336 0.14969714
## 523 0.14806335 0.21582397 0.09814869 0.14969714
## 524 0.14806335 0.09932349 0.12152375 0.14969714
## 525 0.14806335 0.06243174 0.11410336 0.14969714
## 526 0.14806335 0.09932349 0.11410336 0.14969714
## 527 0.14806335 0.06243174 0.10667727 0.14969714
## 528 0.05072162 0.09967090 0.11410336 0.14969714
## 529 0.14806335 0.06243174 0.12272101 0.14969714
## 530 0.14806335 0.09932349 0.10667727 0.14969714
## 531 0.14806335 0.45296167 0.11410336 0.14969714
## 532 0.14806335 0.09293746 0.12152375 0.14969714
## 533 0.14806335 0.06243174 0.12272101 0.14969714
## 534 0.14806335 0.51535088 0.12152375 0.14969714
## 535 0.14806335 0.06243174 0.12272101 0.14969714
## 536 0.14806335 0.21582397 0.10667727 0.14969714
## 537 0.14806335 0.06243174 0.11410336 0.14969714
## 538 0.14806335 0.21582397 0.09814869 0.14969714
## 539 0.14806335 0.21582397 0.10667727 0.14969714
## 540 0.05072162 0.45296167 0.10667727 0.14969714
## 541 0.14806335 0.06243174 0.11410336 0.14969714
## 542 0.14806335 0.21582397 0.10667727 0.14969714
## 543 0.14806335 0.45296167 0.10667727 0.14969714
## 544 0.05072162 0.09293746 0.12272101 0.14969714
## 545 0.14806335 0.21582397 0.10667727 0.14969714
## 546 0.14806335 0.09932349 0.12272101 0.14969714
## 547 0.14806335 0.09932349 0.10667727 0.14969714
## 548 0.14806335 0.09932349 0.10667727 0.14969714
## 549 0.14806335 0.06243174 0.10667727 0.14969714
## 550 0.14806335 0.21582397 0.12152375 0.14969714
## 551 0.14806335 0.06243174 0.09814869 0.14969714
## 552 0.14806335 0.06243174 0.09814869 0.14969714
## 553 0.14806335 0.06243174 0.11410336 0.14969714
## 554 0.14806335 0.51535088 0.09814869 0.14969714
## 555 0.14806335 0.06243174 0.10667727 0.14969714
## 556 0.14806335 0.51535088 0.10667727 0.14969714
## 557 0.14806335 0.10363527 0.12152375 0.14969714
## 558 0.14806335 0.06243174 0.12152375 0.14969714
## 559 0.14806335 0.09967090 0.12272101 0.14969714
## 560 0.14806335 0.21582397 0.09814869 0.14969714
## 561 0.14806335 0.09967090 0.11410336 0.14969714
## 562 0.14806335 0.09967090 0.11410336 0.14969714
## 563 0.14806335 0.09932349 0.11410336 0.14969714
## 564 0.14806335 0.06243174 0.10667727 0.14969714
## 565 0.14806335 0.09293746 0.12152375 0.14969714
## 566 0.05072162 0.43750000 0.10667727 0.14969714
## 567 0.14806335 0.09932349 0.11410336 0.14969714
## 568 0.14806335 0.10363527 0.10667727 0.14969714
## 569 0.14806335 0.06243174 0.09814869 0.14969714
## 570 0.14806335 0.51535088 0.09814869 0.14969714
## 571 0.14806335 0.06243174 0.10667727 0.14969714
## 572 0.14806335 0.21582397 0.10667727 0.14969714
## 573 0.14806335 0.06243174 0.12272101 0.14969714
## 574 0.14806335 0.10363527 0.09814869 0.14969714
## 575 0.14806335 0.06243174 0.09814869 0.14969714
## 576 0.05072162 0.06243174 0.12272101 0.14969714
## 577 0.14806335 0.09932349 0.12152375 0.14969714
## 578 0.14806335 0.10363527 0.11410336 0.14969714
## 579 0.14806335 0.06243174 0.12152375 0.14969714
## 580 0.14806335 0.43750000 0.10667727 0.14969714
## 581 0.14806335 0.09932349 0.12152375 0.14969714
## 582 0.14806335 0.06243174 0.11410336 0.14969714
## 583 0.14806335 0.21582397 0.12152375 0.14969714
## 584 0.14806335 0.10363527 0.11410336 0.14969714
## 585 0.14806335 0.09932349 0.09814869 0.14969714
## 586 0.14806335 0.06243174 0.11410336 0.14969714
## 587 0.05072162 0.10363527 0.12272101 0.14969714
## 588 0.14806335 0.21582397 0.12152375 0.14969714
## 589 0.05072162 0.21582397 0.09814869 0.14969714
## 590 0.14806335 0.06243174 0.11410336 0.14969714
## 591 0.14806335 0.06243174 0.12152375 0.14969714
## 592 0.14806335 0.21582397 0.12152375 0.14969714
## 593 0.14806335 0.06243174 0.12152375 0.14969714
## 594 0.14806335 0.06243174 0.10667727 0.14969714
## 595 0.14806335 0.06243174 0.10667727 0.14969714
## 596 0.14806335 0.06243174 0.11410336 0.14969714
## 597 0.14806335 0.06243174 0.12152375 0.14969714
## 598 0.14806335 0.21582397 0.11410336 0.14969714
## 599 0.14806335 0.06243174 0.11410336 0.14969714
## 600 0.14806335 0.06243174 0.12272101 0.14969714
## 601 0.14806335 0.21582397 0.12152375 0.14969714
## 602 0.05072162 0.10363527 0.11410336 0.14969714
## 603 0.14806335 0.06243174 0.10667727 0.14969714
## 604 0.05072162 0.21582397 0.10667727 0.14969714
## 605 0.14806335 0.09293746 0.11410336 0.14969714
## 606 0.14806335 0.21582397 0.12152375 0.14969714
## 607 0.14806335 0.09932349 0.11410336 0.14969714
## 608 0.14806335 0.09932349 0.10667727 0.14969714
## 609 0.14806335 0.06243174 0.12152375 0.14969714
## 610 0.14806335 0.51535088 0.09814869 0.14969714
## 611 0.14806335 0.21582397 0.12152375 0.14969714
## 612 0.14806335 0.09932349 0.12272101 0.14969714
## 613 0.14806335 0.06243174 0.12152375 0.14969714
## 614 0.14806335 0.21582397 0.09814869 0.14969714
## 615 0.14806335 0.06243174 0.09814869 0.14969714
## 616 0.05072162 0.06243174 0.10667727 0.14969714
## 617 0.14806335 0.45296167 0.12152375 0.14969714
## 618 0.14806335 0.48076923 0.10667727 0.14969714
## 619 0.14806335 0.06243174 0.12272101 0.14969714
## 620 0.14806335 0.09967090 0.12152375 0.14969714
## 621 0.14806335 0.09932349 0.11410336 0.14969714
## 622 0.14806335 0.06243174 0.12152375 0.14969714
## 623 0.14806335 0.06243174 0.11410336 0.14969714
## 624 0.14806335 0.06243174 0.11410336 0.14969714
## 625 0.14806335 0.06243174 0.10667727 0.14969714
## 626 0.14806335 0.09967090 0.12272101 0.14969714
## 627 0.14806335 0.21582397 0.10667727 0.14969714
## 628 0.14806335 0.48076923 0.12152375 0.14969714
## 629 0.14806335 0.06243174 0.12272101 0.14969714
## 630 0.14806335 0.09932349 0.11410336 0.14969714
## 631 0.14806335 0.06243174 0.12152375 0.14969714
## 632 0.14806335 0.21582397 0.10667727 0.14969714
## 633 0.14806335 0.06243174 0.10667727 0.14969714
## 634 0.14806335 0.06243174 0.10667727 0.14969714
## 635 0.14806335 0.09932349 0.11410336 0.14969714
## 636 0.14806335 0.09932349 0.09814869 0.14969714
## 637 0.14806335 0.06243174 0.12152375 0.14969714
## 638 0.14806335 0.09932349 0.12152375 0.14969714
## 639 0.14806335 0.06243174 0.11410336 0.14969714
## 640 0.14806335 0.21582397 0.09814869 0.14969714
## 641 0.14806335 0.09932349 0.11410336 0.14969714
## 642 0.14806335 0.06243174 0.12152375 0.14969714
## 643 0.14806335 0.06243174 0.12152375 0.14969714
## 644 0.14806335 0.21582397 0.10667727 0.14969714
## 645 0.14806335 0.06243174 0.12152375 0.14969714
## 646 0.14806335 0.06243174 0.11410336 0.14969714
## 647 0.14806335 0.06243174 0.11410336 0.14969714
## 648 0.14806335 0.06243174 0.09814869 0.14969714
## 649 0.14806335 0.06243174 0.12152375 0.14969714
## 650 0.14806335 0.45296167 0.11410336 0.14969714
## 651 0.14806335 0.06243174 0.10667727 0.14969714
## 652 0.14806335 0.06243174 0.11410336 0.14969714
## 653 0.14806335 0.51535088 0.12152375 0.14969714
## 654 0.14806335 0.06243174 0.11410336 0.14969714
## 655 0.14806335 0.06243174 0.12272101 0.14969714
## 656 0.14806335 0.06243174 0.09814869 0.14969714
## 657 0.14806335 0.21582397 0.11410336 0.14969714
## 658 0.14806335 0.09932349 0.11410336 0.14969714
## 659 0.14806335 0.06243174 0.09814869 0.14969714
## 660 0.14806335 0.06243174 0.10667727 0.14969714
## 661 0.14806335 0.06243174 0.11410336 0.14969714
## 662 0.14806335 0.10363527 0.11410336 0.14969714
## 663 0.14806335 0.09293746 0.11410336 0.14969714
## 664 0.14806335 0.45296167 0.11410336 0.14969714
## 665 0.14806335 0.09932349 0.11410336 0.14969714
## 666 0.14806335 0.10363527 0.11410336 0.14969714
## 667 0.05072162 0.09967090 0.12152375 0.14969714
## 668 0.14806335 0.06243174 0.12272101 0.14969714
## 669 0.14806335 0.09293746 0.12152375 0.14969714
## 670 0.14806335 0.09932349 0.11410336 0.14969714
## 671 0.14806335 0.06243174 0.12152375 0.14969714
## 672 0.14806335 0.06243174 0.12152375 0.14969714
## 673 0.14806335 0.48076923 0.12152375 0.14969714
## 674 0.14806335 0.09932349 0.12272101 0.14969714
## 675 0.14806335 0.06243174 0.10667727 0.14969714
## 676 0.14806335 0.06243174 0.12272101 0.14969714
## 677 0.14806335 0.21582397 0.10667727 0.14969714
## 678 0.14806335 0.09932349 0.11410336 0.14969714
## 679 0.14806335 0.48076923 0.12152375 0.14969714
## 680 0.14806335 0.10363527 0.12152375 0.14969714
## 681 0.14806335 0.06243174 0.12152375 0.14969714
## 682 0.14806335 0.09293746 0.11410336 0.14969714
## 683 0.14806335 0.21582397 0.11410336 0.14969714
## 684 0.14806335 0.06243174 0.09814869 0.14969714
## 685 0.14806335 0.06243174 0.10667727 0.14969714
## 686 0.14806335 0.06243174 0.11410336 0.14969714
## 687 0.14806335 0.51535088 0.10667727 0.14969714
## 688 0.14806335 0.06243174 0.11410336 0.14969714
## 689 0.14806335 0.06243174 0.10667727 0.14969714
## 690 0.14806335 0.09932349 0.09814869 0.14969714
## 691 0.14806335 0.10363527 0.09814869 0.14969714
## 692 0.14806335 0.06243174 0.12272101 0.14969714
## 693 0.14806335 0.10363527 0.10667727 0.14969714
## 694 0.14806335 0.06243174 0.12272101 0.14969714
## 695 0.14806335 0.09932349 0.12272101 0.14969714
## 696 0.14806335 0.06243174 0.12152375 0.14969714
## 697 0.14806335 0.09293746 0.09814869 0.14969714
## 698 0.14806335 0.09932349 0.12152375 0.14969714
## 699 0.14806335 0.06243174 0.10667727 0.14969714
## 700 0.14806335 0.09293746 0.12152375 0.14969714
## 701 0.14806335 0.09293746 0.10667727 0.14969714
## 702 0.14806335 0.09932349 0.09814869 0.14969714
## 703 0.14806335 0.06243174 0.10667727 0.14969714
## 704 0.14806335 0.21582397 0.09814869 0.14969714
## 705 0.05072162 0.06243174 0.12152375 0.14969714
## 706 0.14806335 0.06243174 0.10667727 0.14969714
## 707 0.14806335 0.06243174 0.10667727 0.14969714
## 708 0.14806335 0.48076923 0.09814869 0.14969714
## 709 0.14806335 0.45296167 0.09814869 0.14969714
## 710 0.14806335 0.06243174 0.12152375 0.14969714
## 711 0.14806335 0.06243174 0.12272101 0.14969714
## 712 0.14806335 0.09932349 0.12152375 0.14969714
## 713 0.14806335 0.06243174 0.10667727 0.14969714
## 714 0.14806335 0.06243174 0.12272101 0.14969714
## 715 0.14806335 0.06243174 0.12272101 0.14969714
## 716 0.14806335 0.21582397 0.12152375 0.14969714
## 717 0.14806335 0.06243174 0.12152375 0.14969714
## 718 0.14806335 0.21582397 0.12152375 0.14969714
## 719 0.14806335 0.09932349 0.11410336 0.14969714
## 720 0.14806335 0.06243174 0.09814869 0.14969714
## 721 0.14806335 0.21582397 0.12272101 0.14969714
## 722 0.14806335 0.10363527 0.11410336 0.14969714
## 723 0.14806335 0.06243174 0.09814869 0.14969714
## 724 0.14806335 0.06243174 0.10667727 0.14969714
## 725 0.14806335 0.06243174 0.11410336 0.14969714
## 726 0.14806335 0.10363527 0.10667727 0.14969714
## 727 0.14806335 0.06243174 0.10667727 0.14969714
## 728 0.14806335 0.09967090 0.11410336 0.14969714
## 729 0.05072162 0.06243174 0.10667727 0.14969714
## 730 0.14806335 0.21582397 0.09814869 0.14969714
## 731 0.14806335 0.21582397 0.10667727 0.14969714
## 732 0.14806335 0.09932349 0.09814869 0.14969714
## 733 0.14806335 0.06243174 0.11410336 0.14969714
## 734 0.14806335 0.09932349 0.09814869 0.14969714
## 735 0.14806335 0.06243174 0.10667727 0.14969714
## 736 0.14806335 0.06243174 0.12272101 0.14969714
## 737 0.05072162 0.10363527 0.12272101 0.14969714
## 738 0.14806335 0.43750000 0.11410336 0.14969714
## 739 0.14806335 0.06243174 0.12272101 0.14969714
## 740 0.14806335 0.09932349 0.10667727 0.14969714
## 741 0.05072162 0.21582397 0.12152375 0.14969714
## 742 0.14806335 0.09932349 0.12152375 0.14969714
## 743 0.05072162 0.06243174 0.12152375 0.14969714
## 744 0.14806335 0.09932349 0.12152375 0.14969714
## 745 0.14806335 0.21582397 0.10667727 0.14969714
## 746 0.14806335 0.09932349 0.09814869 0.14969714
## 747 0.14806335 0.06243174 0.09814869 0.14969714
## 748 0.14806335 0.06243174 0.09814869 0.14969714
## 749 0.14806335 0.06243174 0.10667727 0.14969714
## 750 0.14806335 0.06243174 0.10667727 0.14969714
## 751 0.14806335 0.06243174 0.09814869 0.14969714
## 752 0.14806335 0.21582397 0.09814869 0.14969714
## 753 0.14806335 0.09932349 0.11410336 0.14969714
## 754 0.14806335 0.09932349 0.11410336 0.14969714
## 755 0.14806335 0.06243174 0.10667727 0.14969714
## 756 0.14806335 0.21582397 0.09814869 0.14969714
## 757 0.14806335 0.21582397 0.12272101 0.14969714
## 758 0.14806335 0.06243174 0.12272101 0.14969714
## 759 0.14806335 0.21582397 0.10667727 0.14969714
## 760 0.05072162 0.06243174 0.12152375 0.14969714
## 761 0.14806335 0.21582397 0.09814869 0.14969714
## 762 0.14806335 0.45296167 0.12152375 0.14969714
## 763 0.14806335 0.06243174 0.10667727 0.14969714
## 764 0.14806335 0.09932349 0.10667727 0.14969714
## 765 0.14806335 0.06243174 0.10667727 0.14969714
## 766 0.14806335 0.09932349 0.09814869 0.14969714
## 767 0.14806335 0.09932349 0.12272101 0.14969714
## 768 0.14806335 0.06243174 0.10667727 0.14969714
## 769 0.14806335 0.09293746 0.12272101 0.14969714
## 770 0.14806335 0.09932349 0.11410336 0.14969714
## 771 0.14806335 0.06243174 0.12272101 0.14969714
## 772 0.14806335 0.06243174 0.09814869 0.14969714
## 773 0.14806335 0.45296167 0.09814869 0.14969714
## 774 0.14806335 0.09932349 0.11410336 0.14969714
## 775 0.14806335 0.43750000 0.11410336 0.14969714
## 776 0.14806335 0.09932349 0.12152375 0.14969714
## 777 0.14806335 0.21582397 0.09814869 0.14969714
## 778 0.14806335 0.06243174 0.12152375 0.14969714
## 779 0.14806335 0.06243174 0.12272101 0.14969714
## 780 0.14806335 0.06243174 0.09814869 0.14969714
## 781 0.14806335 0.09932349 0.12272101 0.14969714
## 782 0.14806335 0.06243174 0.10667727 0.14969714
## 783 0.14806335 0.06243174 0.12152375 0.14969714
## 784 0.14806335 0.06243174 0.09814869 0.14969714
## 785 0.14806335 0.45296167 0.11410336 0.14969714
## 786 0.14806335 0.06243174 0.09814869 0.14969714
## 787 0.14806335 0.21582397 0.12272101 0.14969714
## 788 0.14806335 0.06243174 0.10667727 0.14969714
## 789 0.14806335 0.06243174 0.12152375 0.14969714
## 790 0.14806335 0.06243174 0.11410336 0.14969714
## 791 0.14806335 0.06243174 0.11410336 0.14969714
## 792 0.14806335 0.09932349 0.12152375 0.14969714
## 793 0.14806335 0.06243174 0.11410336 0.14969714
## 794 0.14806335 0.06243174 0.11410336 0.14969714
## 795 0.14806335 0.06243174 0.12152375 0.14969714
## 796 0.14806335 0.45296167 0.10667727 0.14969714
## 797 0.14806335 0.06243174 0.12272101 0.14969714
## 798 0.14806335 0.09967090 0.10667727 0.14969714
## 799 0.14806335 0.09932349 0.11410336 0.14969714
## 800 0.14806335 0.45296167 0.11410336 0.14969714
## 801 0.05072162 0.09967090 0.09814869 0.14969714
## 802 0.14806335 0.06243174 0.10667727 0.14969714
## 803 0.14806335 0.43750000 0.10667727 0.14969714
## 804 0.14806335 0.43750000 0.09814869 0.14969714
## 805 0.14806335 0.06243174 0.12272101 0.14969714
## 806 0.14806335 0.21582397 0.12152375 0.14969714
## 807 0.14806335 0.06243174 0.09814869 0.14969714
## 808 0.14806335 0.21582397 0.12152375 0.14969714
## 809 0.14806335 0.09967090 0.11410336 0.14969714
## 810 0.14806335 0.06243174 0.10667727 0.14969714
## 811 0.14806335 0.09932349 0.12152375 0.14969714
## 812 0.14806335 0.21582397 0.09814869 0.14969714
## 813 0.14806335 0.21582397 0.09814869 0.14969714
## 814 0.14806335 0.06243174 0.12272101 0.14969714
## 815 0.14806335 0.06243174 0.09814869 0.14969714
## 816 0.05072162 0.06243174 0.09814869 0.14969714
## 817 0.14806335 0.06243174 0.12272101 0.14969714
## 818 0.14806335 0.06243174 0.12272101 0.14969714
## 819 0.14806335 0.09932349 0.09814869 0.14969714
## 820 0.14806335 0.06243174 0.10667727 0.14969714
## 821 0.14806335 0.45296167 0.12272101 0.14969714
## 822 0.05072162 0.10363527 0.09814869 0.14969714
## 823 0.14806335 0.06243174 0.12272101 0.14969714
## 824 0.14806335 0.06243174 0.11410336 0.14969714
## 825 0.14806335 0.06243174 0.12152375 0.14969714
## 826 0.14806335 0.06243174 0.10667727 0.14969714
## 827 0.14806335 0.09967090 0.11410336 0.14969714
## 828 0.14806335 0.21582397 0.10667727 0.14969714
## 829 0.14806335 0.06243174 0.10667727 0.14969714
## 830 0.14806335 0.06243174 0.12272101 0.14969714
## 831 0.14806335 0.09932349 0.09814869 0.14969714
## 832 0.14806335 0.09932349 0.09814869 0.14969714
## 833 0.14806335 0.09967090 0.12272101 0.14969714
## 834 0.14806335 0.21582397 0.10667727 0.14969714
## 835 0.14806335 0.09932349 0.11410336 0.14969714
## 836 0.14806335 0.09293746 0.10667727 0.14969714
## 837 0.14806335 0.10363527 0.12152375 0.14969714
## 838 0.14806335 0.21582397 0.09814869 0.14969714
## 839 0.14806335 0.09293746 0.12152375 0.14969714
## 840 0.14806335 0.06243174 0.09814869 0.14969714
## 841 0.14806335 0.21582397 0.09814869 0.14969714
## 842 0.14806335 0.06243174 0.12152375 0.14969714
## 843 0.14806335 0.06243174 0.12152375 0.14969714
## 844 0.14806335 0.06243174 0.10667727 0.14969714
## 845 0.14806335 0.06243174 0.09814869 0.14969714
## 846 0.14806335 0.10363527 0.12152375 0.14969714
## 847 0.14806335 0.21582397 0.10667727 0.14969714
## 848 0.14806335 0.06243174 0.12152375 0.14969714
## 849 0.14806335 0.06243174 0.09814869 0.14969714
## 850 0.14806335 0.06243174 0.12152375 0.14969714
## 851 0.14806335 0.09967090 0.11410336 0.14969714
## 852 0.14806335 0.21582397 0.12152375 0.14969714
## 853 0.14806335 0.06243174 0.11410336 0.14969714
## 854 0.14806335 0.09932349 0.12152375 0.14969714
## 855 0.14806335 0.10363527 0.11410336 0.14969714
## 856 0.14806335 0.06243174 0.12272101 0.14969714
## 857 0.14806335 0.21582397 0.11410336 0.14969714
## 858 0.14806335 0.43750000 0.11410336 0.14969714
## 859 0.14806335 0.09932349 0.12272101 0.14969714
## 860 0.14806335 0.06243174 0.12152375 0.14969714
## 861 0.14806335 0.10363527 0.12272101 0.14969714
## 862 0.14806335 0.09932349 0.12272101 0.14969714
## 863 0.14806335 0.21582397 0.09814869 0.14969714
## 864 0.14806335 0.21582397 0.12152375 0.14969714
## 865 0.14806335 0.06243174 0.09814869 0.14969714
## 866 0.05072162 0.09932349 0.12152375 0.14969714
## 867 0.14806335 0.10363527 0.12272101 0.14969714
## 868 0.14806335 0.06243174 0.12152375 0.14969714
## 869 0.14806335 0.45296167 0.10667727 0.14969714
## 870 0.14806335 0.09932349 0.10667727 0.14969714
## 871 0.14806335 0.09932349 0.11410336 0.14969714
## 872 0.14806335 0.21582397 0.09814869 0.14969714
## 873 0.14806335 0.21582397 0.11410336 0.14969714
## 874 0.14806335 0.10363527 0.09814869 0.14969714
## 875 0.14806335 0.06243174 0.11410336 0.14969714
## 876 0.14806335 0.21582397 0.10667727 0.14969714
## 877 0.14806335 0.21582397 0.09814869 0.14969714
## 878 0.14806335 0.09932349 0.10667727 0.14969714
## 879 0.05072162 0.06243174 0.11410336 0.14969714
## 880 0.14806335 0.09932349 0.10667727 0.14969714
## 881 0.14806335 0.09932349 0.11410336 0.14969714
## 882 0.14806335 0.06243174 0.12272101 0.14969714
## 883 0.14806335 0.09932349 0.10667727 0.14969714
## 884 0.14806335 0.06243174 0.09814869 0.14969714
## 885 0.14806335 0.10363527 0.10667727 0.14969714
## 886 0.14806335 0.45296167 0.11410336 0.14969714
## 887 0.14806335 0.09932349 0.09814869 0.14969714
## 888 0.14806335 0.09293746 0.09814869 0.14969714
## 889 0.14806335 0.06243174 0.10667727 0.14969714
## 890 0.14806335 0.09932349 0.12272101 0.14969714
## 891 0.14806335 0.06243174 0.12152375 0.14969714
## 892 0.14806335 0.06243174 0.12272101 0.14969714
## 893 0.14806335 0.06243174 0.10667727 0.14969714
## 894 0.14806335 0.09932349 0.12272101 0.14969714
## 895 0.14806335 0.06243174 0.12272101 0.14969714
## 896 0.14806335 0.09932349 0.11410336 0.14969714
## 897 0.14806335 0.09967090 0.11410336 0.14969714
## 898 0.14806335 0.06243174 0.10667727 0.14969714
## 899 0.14806335 0.21582397 0.09814869 0.14969714
## 900 0.14806335 0.21582397 0.09814869 0.14969714
## 901 0.05072162 0.06243174 0.12272101 0.14969714
## 902 0.14806335 0.10363527 0.11410336 0.14969714
## 903 0.14806335 0.06243174 0.12152375 0.14969714
## 904 0.14806335 0.06243174 0.12152375 0.14969714
## 905 0.14806335 0.21582397 0.09814869 0.14969714
## 906 0.14806335 0.21582397 0.10667727 0.14969714
## 907 0.14806335 0.06243174 0.11410336 0.14969714
## 908 0.14806335 0.06243174 0.11410336 0.14969714
## 909 0.14806335 0.09932349 0.09814869 0.14969714
## 910 0.14806335 0.51535088 0.12272101 0.14969714
## 911 0.14806335 0.51535088 0.09814869 0.14969714
## 912 0.14806335 0.21582397 0.10667727 0.14969714
## 913 0.14806335 0.09932349 0.12152375 0.14969714
## 914 0.14806335 0.06243174 0.09814869 0.14969714
## 915 0.14806335 0.09932349 0.11410336 0.14969714
## 916 0.14806335 0.06243174 0.10667727 0.14969714
## 917 0.14806335 0.09932349 0.09814869 0.14969714
## 918 0.14806335 0.21582397 0.12272101 0.14969714
## 919 0.14806335 0.45296167 0.12152375 0.14969714
## 920 0.14806335 0.21582397 0.09814869 0.14969714
## 921 0.05072162 0.45296167 0.10667727 0.14969714
## 922 0.14806335 0.06243174 0.09814869 0.14969714
## 923 0.14806335 0.06243174 0.10667727 0.14969714
## 924 0.14806335 0.09293746 0.11410336 0.14969714
## 925 0.14806335 0.21582397 0.10667727 0.14969714
## 926 0.14806335 0.06243174 0.12272101 0.14969714
## 927 0.14806335 0.06243174 0.12152375 0.14969714
## 928 0.14806335 0.06243174 0.12152375 0.14969714
## 929 0.14806335 0.45296167 0.10667727 0.14969714
## 930 0.14806335 0.09932349 0.12272101 0.14969714
## 931 0.14806335 0.21582397 0.10667727 0.14969714
## 932 0.14806335 0.06243174 0.11410336 0.14969714
## 933 0.14806335 0.06243174 0.12152375 0.14969714
## 934 0.14806335 0.06243174 0.12152375 0.14969714
## 935 0.14806335 0.10363527 0.10667727 0.14969714
## 936 0.14806335 0.06243174 0.12152375 0.14969714
## 937 0.14806335 0.21582397 0.09814869 0.14969714
## 938 0.14806335 0.43750000 0.09814869 0.14969714
## 939 0.14806335 0.06243174 0.09814869 0.14969714
## 940 0.14806335 0.09932349 0.10667727 0.14969714
## 941 0.14806335 0.06243174 0.11410336 0.14969714
## 942 0.14806335 0.06243174 0.09814869 0.14969714
## 943 0.14806335 0.06243174 0.12272101 0.14969714
## 944 0.14806335 0.06243174 0.12152375 0.14969714
## 945 0.14806335 0.21582397 0.12152375 0.14969714
## 946 0.14806335 0.06243174 0.09814869 0.14969714
## 947 0.14806335 0.09932349 0.11410336 0.14969714
## 948 0.14806335 0.21582397 0.09814869 0.14969714
## 949 0.14806335 0.09932349 0.12272101 0.14969714
## 950 0.14806335 0.21582397 0.11410336 0.14969714
## 951 0.14806335 0.09932349 0.11410336 0.14969714
## 952 0.14806335 0.06243174 0.09814869 0.14969714
## 953 0.14806335 0.06243174 0.12152375 0.14969714
## 954 0.05072162 0.21582397 0.09814869 0.14969714
## 955 0.14806335 0.06243174 0.09814869 0.14969714
## 956 0.14806335 0.06243174 0.10667727 0.14969714
## 957 0.14806335 0.09967090 0.12152375 0.14969714
## 958 0.14806335 0.21582397 0.09814869 0.14969714
## 959 0.14806335 0.21582397 0.12152375 0.14969714
## 960 0.14806335 0.06243174 0.12152375 0.14969714
## 961 0.14806335 0.09932349 0.11410336 0.14969714
## 962 0.14806335 0.06243174 0.12152375 0.14969714
## 963 0.14806335 0.51535088 0.10667727 0.14969714
## 964 0.14806335 0.09932349 0.11410336 0.14969714
## 965 0.14806335 0.06243174 0.12152375 0.14969714
## 966 0.14806335 0.09932349 0.12152375 0.14969714
## 967 0.14806335 0.10363527 0.12272101 0.14969714
## 968 0.14806335 0.09967090 0.12272101 0.14969714
## 969 0.14806335 0.06243174 0.12272101 0.14969714
## 970 0.14806335 0.09932349 0.11410336 0.14969714
## 971 0.14806335 0.45296167 0.12152375 0.14969714
## 972 0.14806335 0.09932349 0.11410336 0.14969714
## 973 0.14806335 0.06243174 0.10667727 0.14969714
## 974 0.14806335 0.06243174 0.12272101 0.14969714
## 975 0.14806335 0.09932349 0.12152375 0.14969714
## 976 0.14806335 0.43750000 0.12152375 0.14969714
## 977 0.14806335 0.06243174 0.10667727 0.14969714
## 978 0.14806335 0.21582397 0.12152375 0.14969714
## 979 0.14806335 0.09932349 0.11410336 0.14969714
## 980 0.14806335 0.51535088 0.12152375 0.14969714
## 981 0.14806335 0.09932349 0.11410336 0.14969714
## 982 0.14806335 0.06243174 0.11410336 0.14969714
## 983 0.14806335 0.21582397 0.09814869 0.14969714
## 984 0.14806335 0.10363527 0.12152375 0.14969714
## 985 0.14806335 0.21582397 0.12152375 0.14969714
## 986 0.14806335 0.09932349 0.12272101 0.14969714
## 987 0.14806335 0.06243174 0.09814869 0.14969714
## 988 0.14806335 0.06243174 0.09814869 0.14969714
## 989 0.05072162 0.10363527 0.09814869 0.14969714
## 990 0.14806335 0.21582397 0.11410336 0.14969714
## 991 0.14806335 0.06243174 0.10667727 0.14969714
## 992 0.14806335 0.09932349 0.09814869 0.14969714
## 993 0.14806335 0.06243174 0.12152375 0.14969714
## 994 0.14806335 0.06243174 0.12152375 0.14969714
## 995 0.14806335 0.06243174 0.12272101 0.14969714
## 996 0.14806335 0.51535088 0.09814869 0.14969714
## 997 0.14806335 0.06243174 0.11410336 0.14969714
## 998 0.14806335 0.06243174 0.09814869 0.14969714
## 999 0.14806335 0.09967090 0.09814869 0.14969714
## 1000 0.14806335 0.06243174 0.12152375 0.14969714
## 1001 0.14806335 0.06243174 0.09814869 0.14969714
## 1002 0.14806335 0.06243174 0.11410336 0.14969714
## 1003 0.14806335 0.09967090 0.11410336 0.14969714
## 1004 0.14806335 0.10363527 0.12152375 0.14969714
## 1005 0.05072162 0.06243174 0.09814869 0.14969714
## 1006 0.14806335 0.45296167 0.12152375 0.14969714
## 1007 0.14806335 0.09932349 0.12152375 0.14969714
## 1008 0.14806335 0.21582397 0.11410336 0.14969714
## 1009 0.14806335 0.06243174 0.10667727 0.14969714
## 1010 0.14806335 0.09932349 0.11410336 0.14969714
## 1011 0.14806335 0.21582397 0.09814869 0.14969714
## 1012 0.14806335 0.21582397 0.10667727 0.14969714
## 1013 0.14806335 0.06243174 0.09814869 0.14969714
## 1014 0.14806335 0.10363527 0.12152375 0.14969714
## 1015 0.14806335 0.48076923 0.10667727 0.14969714
## 1016 0.14806335 0.21582397 0.12152375 0.14969714
## 1017 0.14806335 0.06243174 0.10667727 0.14969714
## 1018 0.14806335 0.09932349 0.10667727 0.14969714
## 1019 0.14806335 0.09932349 0.12272101 0.14969714
## 1020 0.14806335 0.21582397 0.10667727 0.14969714
## 1021 0.14806335 0.06243174 0.10667727 0.14969714
## 1022 0.14806335 0.06243174 0.11410336 0.14969714
## 1023 0.14806335 0.06243174 0.12272101 0.14969714
## 1024 0.14806335 0.21582397 0.09814869 0.14969714
## 1025 0.14806335 0.09967090 0.09814869 0.14969714
## 1026 0.14806335 0.06243174 0.09814869 0.14969714
## 1027 0.14806335 0.21582397 0.09814869 0.14969714
## 1028 0.05072162 0.10363527 0.09814869 0.14969714
## 1029 0.14806335 0.06243174 0.12152375 0.14969714
## 1030 0.14806335 0.09932349 0.12272101 0.14969714
## 1031 0.14806335 0.06243174 0.12272101 0.14969714
## 1032 0.14806335 0.09932349 0.10667727 0.14969714
## 1033 0.14806335 0.06243174 0.10667727 0.14969714
## 1034 0.14806335 0.09932349 0.12272101 0.14969714
## 1035 0.14806335 0.06243174 0.11410336 0.14969714
## 1036 0.14806335 0.21582397 0.09814869 0.14969714
## 1037 0.14806335 0.43750000 0.11410336 0.14969714
## 1038 0.14806335 0.21582397 0.11410336 0.14969714
## 1039 0.14806335 0.06243174 0.10667727 0.14969714
## 1040 0.14806335 0.09293746 0.11410336 0.14969714
## 1041 0.14806335 0.09932349 0.12272101 0.14969714
## 1042 0.14806335 0.06243174 0.12152375 0.14969714
## 1043 0.14806335 0.06243174 0.12152375 0.14969714
## 1044 0.14806335 0.06243174 0.11410336 0.14969714
## 1045 0.14806335 0.21582397 0.12152375 0.14969714
## 1046 0.14806335 0.45296167 0.09814869 0.14969714
## 1047 0.05072162 0.48076923 0.12272101 0.14969714
## 1048 0.14806335 0.06243174 0.12272101 0.14969714
## 1049 0.14806335 0.09932349 0.10667727 0.14969714
## 1050 0.14806335 0.09967090 0.12272101 0.14969714
## 1051 0.14806335 0.43750000 0.11410336 0.14969714
## 1052 0.14806335 0.06243174 0.12152375 0.14969714
## 1053 0.14806335 0.06243174 0.12272101 0.14969714
## 1054 0.14806335 0.09932349 0.11410336 0.14969714
## 1055 0.14806335 0.21582397 0.09814869 0.14969714
## 1056 0.14806335 0.06243174 0.12152375 0.14969714
## 1057 0.05072162 0.06243174 0.12152375 0.14969714
## 1058 0.14806335 0.10363527 0.10667727 0.14969714
## 1059 0.14806335 0.45296167 0.10667727 0.14969714
## 1060 0.14806335 0.09932349 0.12272101 0.14969714
## 1061 0.14806335 0.09932349 0.09814869 0.14969714
## 1062 0.14806335 0.21582397 0.12152375 0.14969714
## 1063 0.14806335 0.21582397 0.11410336 0.14969714
## 1064 0.14806335 0.06243174 0.09814869 0.14969714
## 1065 0.14806335 0.06243174 0.11410336 0.14969714
## 1066 0.14806335 0.21582397 0.11410336 0.14969714
## 1067 0.14806335 0.48076923 0.12272101 0.14969714
## 1068 0.14806335 0.06243174 0.10667727 0.14969714
## 1069 0.14806335 0.09932349 0.12152375 0.14969714
## 1070 0.14806335 0.09967090 0.12272101 0.14969714
## 1071 0.14806335 0.09932349 0.11410336 0.14969714
## 1072 0.14806335 0.51535088 0.11410336 0.14969714
## 1073 0.05072162 0.06243174 0.12272101 0.14969714
## 1074 0.14806335 0.06243174 0.09814869 0.14969714
## 1075 0.14806335 0.09293746 0.11410336 0.14969714
## 1076 0.14806335 0.06243174 0.12152375 0.14969714
## 1077 0.14806335 0.06243174 0.09814869 0.14969714
## 1078 0.14806335 0.21582397 0.10667727 0.14969714
## 1079 0.14806335 0.06243174 0.12272101 0.14969714
## 1080 0.14806335 0.43750000 0.10667727 0.14969714
## 1081 0.14806335 0.09932349 0.11410336 0.14969714
## 1082 0.14806335 0.06243174 0.12152375 0.14969714
## 1083 0.14806335 0.06243174 0.09814869 0.14969714
## 1084 0.14806335 0.51535088 0.10667727 0.14969714
## 1085 0.14806335 0.06243174 0.12152375 0.14969714
## 1086 0.14806335 0.09967090 0.12152375 0.14969714
## 1087 0.14806335 0.09932349 0.11410336 0.14969714
## 1088 0.14806335 0.09932349 0.10667727 0.14969714
## 1089 0.14806335 0.21582397 0.10667727 0.14969714
## 1090 0.14806335 0.09967090 0.10667727 0.14969714
## 1091 0.14806335 0.10363527 0.09814869 0.14969714
## 1092 0.14806335 0.21582397 0.10667727 0.14969714
## 1093 0.14806335 0.06243174 0.12152375 0.14969714
## 1094 0.14806335 0.21582397 0.12152375 0.14969714
## 1095 0.14806335 0.10363527 0.09814869 0.14969714
## 1096 0.14806335 0.06243174 0.12152375 0.14969714
## 1097 0.14806335 0.09932349 0.12152375 0.14969714
## 1098 0.14806335 0.09293746 0.12152375 0.14969714
## 1099 0.14806335 0.21582397 0.09814869 0.14969714
## 1100 0.14806335 0.21582397 0.09814869 0.14969714
## 1101 0.14806335 0.09932349 0.12152375 0.14969714
## 1102 0.05072162 0.06243174 0.11410336 0.14969714
## 1103 0.14806335 0.06243174 0.09814869 0.14969714
## 1104 0.05072162 0.45296167 0.12152375 0.14969714
## 1105 0.14806335 0.09967090 0.12152375 0.14969714
## 1106 0.14806335 0.06243174 0.12152375 0.14969714
## 1107 0.14806335 0.45296167 0.09814869 0.14969714
## 1108 0.14806335 0.09967090 0.12272101 0.14969714
## 1109 0.14806335 0.06243174 0.11410336 0.14969714
## 1110 0.14806335 0.06243174 0.12152375 0.14969714
## 1111 0.14806335 0.09967090 0.12272101 0.14969714
## 1112 0.14806335 0.06243174 0.11410336 0.14969714
## 1113 0.14806335 0.09932349 0.12152375 0.14969714
## 1114 0.14806335 0.09967090 0.09814869 0.14969714
## 1115 0.14806335 0.10363527 0.10667727 0.14969714
## 1116 0.14806335 0.09932349 0.12152375 0.14969714
## 1117 0.14806335 0.09932349 0.10667727 0.14969714
## 1118 0.14806335 0.21582397 0.09814869 0.14969714
## 1119 0.14806335 0.09932349 0.12152375 0.14969714
## 1120 0.14806335 0.09932349 0.10667727 0.14969714
## 1121 0.14806335 0.21582397 0.12152375 0.14969714
## 1122 0.14806335 0.06243174 0.10667727 0.14969714
## 1123 0.14806335 0.06243174 0.11410336 0.14969714
## 1124 0.14806335 0.06243174 0.12152375 0.14969714
## 1125 0.14806335 0.09932349 0.09814869 0.14969714
## 1126 0.14806335 0.06243174 0.10667727 0.14969714
## 1127 0.05072162 0.06243174 0.10667727 0.14969714
## 1128 0.14806335 0.06243174 0.11410336 0.14969714
## 1129 0.14806335 0.21582397 0.09814869 0.14969714
## 1130 0.14806335 0.06243174 0.09814869 0.14969714
## 1131 0.14806335 0.21582397 0.12152375 0.14969714
## 1132 0.14806335 0.06243174 0.10667727 0.14969714
## 1133 0.14806335 0.09967090 0.12272101 0.14969714
## 1134 0.14806335 0.06243174 0.09814869 0.14969714
## 1135 0.14806335 0.06243174 0.10667727 0.14969714
## 1136 0.14806335 0.06243174 0.12152375 0.14969714
## 1137 0.14806335 0.09932349 0.10667727 0.14969714
## 1138 0.14806335 0.06243174 0.11410336 0.14969714
## 1139 0.14806335 0.09932349 0.10667727 0.14969714
## 1140 0.14806335 0.21582397 0.10667727 0.14969714
## 1141 0.14806335 0.43750000 0.10667727 0.14969714
## 1142 0.14806335 0.06243174 0.12272101 0.14969714
## 1143 0.14806335 0.09932349 0.12152375 0.14969714
## 1144 0.14806335 0.06243174 0.10667727 0.14969714
## 1145 0.05072162 0.45296167 0.09814869 0.14969714
## 1146 0.14806335 0.09967090 0.12272101 0.14969714
## 1147 0.14806335 0.21582397 0.12272101 0.14969714
## 1148 0.14806335 0.10363527 0.10667727 0.14969714
## 1149 0.14806335 0.48076923 0.09814869 0.14969714
## 1150 0.14806335 0.06243174 0.11410336 0.14969714
## 1151 0.14806335 0.09932349 0.11410336 0.14969714
## 1152 0.14806335 0.21582397 0.09814869 0.14969714
## 1153 0.14806335 0.06243174 0.10667727 0.14969714
## 1154 0.14806335 0.06243174 0.12152375 0.14969714
## 1155 0.14806335 0.45296167 0.11410336 0.14969714
## 1156 0.14806335 0.06243174 0.10667727 0.14969714
## 1157 0.14806335 0.09932349 0.11410336 0.14969714
## 1158 0.14806335 0.06243174 0.11410336 0.14969714
## 1159 0.14806335 0.10363527 0.09814869 0.14969714
## 1160 0.14806335 0.06243174 0.09814869 0.14969714
## 1161 0.14806335 0.09293746 0.12272101 0.14969714
## 1162 0.14806335 0.09932349 0.09814869 0.14969714
## 1163 0.14806335 0.09932349 0.12272101 0.14969714
## 1164 0.05072162 0.09293746 0.12152375 0.14969714
## 1165 0.14806335 0.21582397 0.09814869 0.14969714
## 1166 0.14806335 0.21582397 0.09814869 0.14969714
## 1167 0.14806335 0.06243174 0.09814869 0.14969714
## 1168 0.05072162 0.43750000 0.12152375 0.14969714
## 1169 0.14806335 0.06243174 0.11410336 0.14969714
## 1170 0.14806335 0.06243174 0.10667727 0.14969714
## 1171 0.14806335 0.06243174 0.10667727 0.14969714
## 1172 0.14806335 0.09932349 0.11410336 0.14969714
## 1173 0.14806335 0.09967090 0.11410336 0.14969714
## 1174 0.14806335 0.21582397 0.12272101 0.14969714
## 1175 0.14806335 0.10363527 0.11410336 0.14969714
## 1176 0.14806335 0.21582397 0.10667727 0.14969714
## 1177 0.14806335 0.21582397 0.12152375 0.14969714
## 1178 0.14806335 0.10363527 0.09814869 0.14969714
## 1179 0.14806335 0.10363527 0.12152375 0.14969714
## 1180 0.05072162 0.06243174 0.09814869 0.14969714
## 1181 0.14806335 0.21582397 0.10667727 0.14969714
## 1182 0.14806335 0.09967090 0.09814869 0.14969714
## 1183 0.14806335 0.06243174 0.10667727 0.14969714
## 1184 0.14806335 0.06243174 0.09814869 0.14969714
## 1185 0.14806335 0.21582397 0.10667727 0.14969714
## 1186 0.14806335 0.21582397 0.09814869 0.14969714
## 1187 0.14806335 0.21582397 0.12152375 0.14969714
## 1188 0.14806335 0.06243174 0.10667727 0.14969714
## 1189 0.14806335 0.21582397 0.12152375 0.14969714
## 1190 0.14806335 0.09932349 0.11410336 0.14969714
## 1191 0.14806335 0.06243174 0.11410336 0.14969714
## 1192 0.14806335 0.06243174 0.10667727 0.14969714
## 1193 0.14806335 0.45296167 0.09814869 0.14969714
## 1194 0.14806335 0.06243174 0.12152375 0.14969714
## 1195 0.14806335 0.06243174 0.12272101 0.14969714
## 1196 0.14806335 0.09932349 0.11410336 0.14969714
## 1197 0.05072162 0.06243174 0.12152375 0.14969714
## 1198 0.14806335 0.06243174 0.10667727 0.14969714
## 1199 0.14806335 0.06243174 0.10667727 0.14969714
## 1200 0.14806335 0.09293746 0.11410336 0.14969714
## 1201 0.14806335 0.45296167 0.10667727 0.14969714
## 1202 0.14806335 0.06243174 0.12272101 0.14969714
## 1203 0.14806335 0.09932349 0.10667727 0.14969714
## 1204 0.14806335 0.09932349 0.11410336 0.14969714
## 1205 0.14806335 0.21582397 0.12152375 0.14969714
## 1206 0.14806335 0.43750000 0.10667727 0.14969714
## 1207 0.14806335 0.21582397 0.09814869 0.14969714
## 1208 0.14806335 0.06243174 0.09814869 0.14969714
## 1209 0.14806335 0.09932349 0.11410336 0.14969714
## 1210 0.14806335 0.21582397 0.12152375 0.14969714
## 1211 0.14806335 0.45296167 0.11410336 0.14969714
## 1212 0.14806335 0.06243174 0.11410336 0.14969714
## 1213 0.05072162 0.48076923 0.12272101 0.14969714
## 1214 0.14806335 0.09932349 0.12272101 0.14969714
## 1215 0.14806335 0.09932349 0.12152375 0.14969714
## 1216 0.14806335 0.09932349 0.10667727 0.14969714
## 1217 0.14806335 0.10363527 0.09814869 0.14969714
## 1218 0.05072162 0.51535088 0.12152375 0.14969714
## 1219 0.14806335 0.06243174 0.09814869 0.14969714
## 1220 0.05072162 0.06243174 0.10667727 0.14969714
## 1221 0.14806335 0.21582397 0.10667727 0.14969714
## 1222 0.14806335 0.06243174 0.12272101 0.14969714
## 1223 0.14806335 0.09932349 0.10667727 0.14969714
## 1224 0.14806335 0.06243174 0.12152375 0.14969714
## 1225 0.14806335 0.09932349 0.09814869 0.14969714
## 1226 0.14806335 0.21582397 0.12152375 0.14969714
## 1227 0.14806335 0.10363527 0.11410336 0.14969714
## 1228 0.14806335 0.10363527 0.12272101 0.14969714
## 1229 0.14806335 0.06243174 0.10667727 0.14969714
## 1230 0.14806335 0.09932349 0.12152375 0.14969714
## 1231 0.14806335 0.06243174 0.12272101 0.14969714
## 1232 0.14806335 0.21582397 0.10667727 0.14969714
## 1233 0.14806335 0.09967090 0.12272101 0.14969714
## 1234 0.14806335 0.43750000 0.12272101 0.14969714
## 1235 0.14806335 0.06243174 0.10667727 0.14969714
## 1236 0.14806335 0.06243174 0.10667727 0.14969714
## 1237 0.14806335 0.06243174 0.09814869 0.14969714
## 1238 0.14806335 0.21582397 0.09814869 0.14969714
## 1239 0.14806335 0.06243174 0.10667727 0.14969714
## 1240 0.05072162 0.06243174 0.09814869 0.14969714
## 1241 0.14806335 0.06243174 0.10667727 0.14969714
## 1242 0.14806335 0.09932349 0.09814869 0.14969714
## 1243 0.05072162 0.21582397 0.11410336 0.14969714
## 1244 0.14806335 0.21582397 0.12152375 0.14969714
## 1245 0.14806335 0.21582397 0.09814869 0.14969714
## 1246 0.14806335 0.21582397 0.12152375 0.14969714
## 1247 0.14806335 0.06243174 0.11410336 0.14969714
## 1248 0.14806335 0.06243174 0.12152375 0.14969714
## 1249 0.14806335 0.06243174 0.11410336 0.14969714
## 1250 0.14806335 0.09932349 0.10667727 0.14969714
## 1251 0.14806335 0.09932349 0.12152375 0.14969714
## 1252 0.14806335 0.21582397 0.09814869 0.14969714
## 1253 0.14806335 0.43750000 0.12152375 0.14969714
## 1254 0.14806335 0.09932349 0.10667727 0.14969714
## 1255 0.14806335 0.45296167 0.10667727 0.14969714
## 1256 0.14806335 0.06243174 0.12152375 0.14969714
## 1257 0.14806335 0.06243174 0.11410336 0.14969714
## 1258 0.14806335 0.09967090 0.12152375 0.14969714
## 1259 0.14806335 0.06243174 0.10667727 0.14969714
## 1260 0.14806335 0.09932349 0.12152375 0.14969714
## 1261 0.05072162 0.06243174 0.09814869 0.14969714
## 1262 0.14806335 0.43750000 0.09814869 0.14969714
## 1263 0.14806335 0.43750000 0.10667727 0.14969714
## 1264 0.14806335 0.21582397 0.11410336 0.14969714
## 1265 0.14806335 0.09293746 0.12152375 0.14969714
## 1266 0.05072162 0.10363527 0.11410336 0.14969714
## 1267 0.14806335 0.06243174 0.09814869 0.14969714
## 1268 0.14806335 0.09932349 0.12272101 0.14969714
## 1269 0.14806335 0.06243174 0.12272101 0.14969714
## 1270 0.14806335 0.09932349 0.10667727 0.14969714
## 1271 0.14806335 0.43750000 0.12152375 0.14969714
## 1272 0.14806335 0.09932349 0.09814869 0.14969714
## 1273 0.14806335 0.06243174 0.12272101 0.14969714
## 1274 0.14806335 0.06243174 0.11410336 0.14969714
## 1275 0.14806335 0.09932349 0.12152375 0.14969714
## 1276 0.14806335 0.43750000 0.12272101 0.14969714
## 1277 0.14806335 0.09967090 0.12152375 0.14969714
## 1278 0.14806335 0.06243174 0.11410336 0.14969714
## 1279 0.14806335 0.06243174 0.09814869 0.14969714
## 1280 0.14806335 0.09932349 0.10667727 0.14969714
## 1281 0.14806335 0.06243174 0.12152375 0.14969714
## 1282 0.14806335 0.09293746 0.12272101 0.14969714
## 1283 0.14806335 0.06243174 0.12272101 0.14969714
## 1284 0.14806335 0.06243174 0.09814869 0.14969714
## 1285 0.14806335 0.21582397 0.10667727 0.14969714
## 1286 0.14806335 0.10363527 0.12152375 0.14969714
## 1287 0.14806335 0.21582397 0.10667727 0.14969714
## 1288 0.14806335 0.06243174 0.12152375 0.14969714
## 1289 0.14806335 0.21582397 0.10667727 0.14969714
## 1290 0.14806335 0.45296167 0.10667727 0.14969714
## 1291 0.14806335 0.09932349 0.11410336 0.14969714
## 1292 0.14806335 0.06243174 0.09814869 0.14969714
## 1293 0.14806335 0.09293746 0.12152375 0.14969714
## 1294 0.14806335 0.09932349 0.12152375 0.14969714
## 1295 0.14806335 0.06243174 0.12152375 0.14969714
## 1296 0.14806335 0.09967090 0.09814869 0.14969714
## 1297 0.14806335 0.43750000 0.11410336 0.14969714
## 1298 0.14806335 0.21582397 0.12152375 0.14969714
## 1299 0.14806335 0.51535088 0.11410336 0.14969714
## 1300 0.14806335 0.06243174 0.11410336 0.14969714
## 1301 0.14806335 0.06243174 0.12152375 0.14969714
## 1302 0.14806335 0.43750000 0.12152375 0.14969714
## 1303 0.05072162 0.06243174 0.09814869 0.14969714
## 1304 0.14806335 0.10363527 0.10667727 0.14969714
## 1305 0.14806335 0.09967090 0.11410336 0.14969714
## 1306 0.14806335 0.21582397 0.10667727 0.14969714
## 1307 0.14806335 0.06243174 0.12272101 0.14969714
## 1308 0.14806335 0.06243174 0.12272101 0.14969714
## 1309 0.14806335 0.21582397 0.12272101 0.14969714
## 1310 0.14806335 0.06243174 0.11410336 0.14969714
## 1311 0.14806335 0.09293746 0.12272101 0.14969714
## 1312 0.14806335 0.21582397 0.10667727 0.14969714
## 1313 0.14806335 0.06243174 0.10667727 0.14969714
## 1314 0.14806335 0.09932349 0.10667727 0.14969714
## 1315 0.14806335 0.51535088 0.12272101 0.14969714
## 1316 0.14806335 0.06243174 0.11410336 0.14969714
## 1317 0.14806335 0.09932349 0.11410336 0.14969714
## 1318 0.05072162 0.09967090 0.09814869 0.14969714
## 1319 0.14806335 0.09932349 0.12152375 0.14969714
## 1320 0.14806335 0.06243174 0.10667727 0.14969714
## 1321 0.14806335 0.21582397 0.12152375 0.14969714
## 1322 0.14806335 0.06243174 0.12152375 0.14969714
## 1323 0.14806335 0.21582397 0.09814869 0.14969714
## 1324 0.14806335 0.06243174 0.12152375 0.14969714
## 1325 0.14806335 0.06243174 0.12152375 0.14969714
## 1326 0.14806335 0.21582397 0.09814869 0.14969714
## 1327 0.14806335 0.09932349 0.12152375 0.14969714
## 1328 0.14806335 0.09932349 0.10667727 0.14969714
## 1329 0.14806335 0.06243174 0.09814869 0.14969714
## 1330 0.14806335 0.43750000 0.09814869 0.14969714
## 1331 0.14806335 0.06243174 0.11410336 0.14969714
## 1332 0.14806335 0.10363527 0.12272101 0.14969714
## 1333 0.14806335 0.51535088 0.12272101 0.14969714
## 1334 0.14806335 0.21582397 0.09814869 0.14969714
## 1335 0.14806335 0.10363527 0.09814869 0.14969714
## 1336 0.14806335 0.09932349 0.11410336 0.14969714
## 1337 0.14806335 0.09932349 0.10667727 0.14969714
## 1338 0.14806335 0.21582397 0.12152375 0.14969714
## 1339 0.14806335 0.09932349 0.12152375 0.14969714
## 1340 0.14806335 0.09932349 0.10667727 0.14969714
## 1341 0.14806335 0.09932349 0.09814869 0.14969714
## 1342 0.14806335 0.09932349 0.10667727 0.14969714
## 1343 0.05072162 0.09932349 0.09814869 0.14969714
## 1344 0.14806335 0.06243174 0.10667727 0.14969714
## 1345 0.14806335 0.45296167 0.12152375 0.14969714
## 1346 0.14806335 0.06243174 0.12272101 0.14969714
## 1347 0.14806335 0.09932349 0.09814869 0.14969714
## 1348 0.14806335 0.09932349 0.11410336 0.14969714
## 1349 0.14806335 0.09967090 0.11410336 0.14969714
## 1350 0.14806335 0.21582397 0.10667727 0.14969714
## 1351 0.14806335 0.09932349 0.12272101 0.14969714
## 1352 0.14806335 0.06243174 0.12152375 0.14969714
## 1353 0.14806335 0.09932349 0.11410336 0.14969714
## 1354 0.14806335 0.06243174 0.12152375 0.14969714
## 1355 0.14806335 0.09932349 0.12272101 0.14969714
## 1356 0.14806335 0.21582397 0.12152375 0.14969714
## 1357 0.05072162 0.45296167 0.09814869 0.14969714
## 1358 0.14806335 0.06243174 0.12152375 0.14969714
## 1359 0.14806335 0.45296167 0.10667727 0.14969714
## 1360 0.14806335 0.21582397 0.12152375 0.14969714
## 1361 0.05072162 0.21582397 0.11410336 0.14969714
## 1362 0.14806335 0.09967090 0.10667727 0.14969714
## 1363 0.05072162 0.09932349 0.09814869 0.14969714
## 1364 0.14806335 0.43750000 0.11410336 0.14969714
## 1365 0.14806335 0.06243174 0.12152375 0.14969714
## 1366 0.14806335 0.09932349 0.11410336 0.14969714
## 1367 0.14806335 0.06243174 0.12152375 0.14969714
## 1368 0.05072162 0.06243174 0.10667727 0.14969714
## 1369 0.14806335 0.21582397 0.09814869 0.14969714
## 1370 0.14806335 0.06243174 0.09814869 0.14969714
## 1371 0.05072162 0.06243174 0.12152375 0.14969714
## 1372 0.14806335 0.06243174 0.12272101 0.14969714
## 1373 0.05072162 0.43750000 0.10667727 0.14969714
## 1374 0.14806335 0.06243174 0.09814869 0.14969714
## 1375 0.14806335 0.21582397 0.09814869 0.14969714
## 1376 0.14806335 0.06243174 0.12272101 0.14969714
## 1377 0.14806335 0.06243174 0.10667727 0.14969714
## 1378 0.05072162 0.09932349 0.09814869 0.14969714
## 1379 0.14806335 0.09967090 0.11410336 0.14969714
## 1380 0.14806335 0.09967090 0.11410336 0.14969714
## 1381 0.14806335 0.06243174 0.12152375 0.14969714
## 1382 0.14806335 0.10363527 0.12152375 0.14969714
## 1383 0.14806335 0.09932349 0.10667727 0.14969714
## 1384 0.14806335 0.06243174 0.12152375 0.14969714
## 1385 0.14806335 0.06243174 0.12152375 0.14969714
## 1386 0.14806335 0.09932349 0.11410336 0.14969714
## 1387 0.14806335 0.06243174 0.12272101 0.14969714
## 1388 0.14806335 0.09932349 0.11410336 0.14969714
## 1389 0.14806335 0.21582397 0.10667727 0.14969714
## 1390 0.05072162 0.06243174 0.10667727 0.14969714
## 1391 0.14806335 0.09932349 0.10667727 0.14969714
## 1392 0.14806335 0.10363527 0.12272101 0.14969714
## 1393 0.14806335 0.06243174 0.12152375 0.14969714
## 1394 0.14806335 0.06243174 0.10667727 0.14969714
## 1395 0.14806335 0.06243174 0.12272101 0.14969714
## 1396 0.14806335 0.09932349 0.12152375 0.14969714
## 1397 0.14806335 0.06243174 0.09814869 0.14969714
## 1398 0.14806335 0.06243174 0.09814869 0.14969714
## 1399 0.14806335 0.09932349 0.09814869 0.14969714
## 1400 0.14806335 0.21582397 0.09814869 0.14969714
## 1401 0.14806335 0.06243174 0.12152375 0.14969714
## 1402 0.14806335 0.09293746 0.11410336 0.14969714
## 1403 0.14806335 0.21582397 0.09814869 0.14969714
## 1404 0.14806335 0.06243174 0.12272101 0.14969714
## 1405 0.14806335 0.06243174 0.10667727 0.14969714
## 1406 0.14806335 0.09932349 0.12152375 0.14969714
## 1407 0.14806335 0.06243174 0.12152375 0.14969714
## 1408 0.14806335 0.09932349 0.12152375 0.14969714
## 1409 0.14806335 0.21582397 0.09814869 0.14969714
## 1410 0.14806335 0.48076923 0.09814869 0.14969714
## 1411 0.14806335 0.06243174 0.12272101 0.14969714
## 1412 0.14806335 0.21582397 0.12272101 0.14969714
## 1413 0.14806335 0.09932349 0.11410336 0.14969714
## 1414 0.14806335 0.06243174 0.12152375 0.14969714
## 1415 0.14806335 0.21582397 0.10667727 0.14969714
## 1416 0.14806335 0.09932349 0.12152375 0.14969714
## 1417 0.14806335 0.06243174 0.09814869 0.14969714
## 1418 0.14806335 0.45296167 0.10667727 0.14969714
## 1419 0.14806335 0.06243174 0.12272101 0.14969714
## 1420 0.14806335 0.09932349 0.10667727 0.14969714
## 1421 0.14806335 0.06243174 0.09814869 0.14969714
## 1422 0.14806335 0.21582397 0.12152375 0.14969714
## 1423 0.14806335 0.06243174 0.10667727 0.14969714
## 1424 0.05072162 0.06243174 0.10667727 0.14969714
## 1425 0.14806335 0.09932349 0.12152375 0.14969714
## 1426 0.14806335 0.09932349 0.11410336 0.14969714
## 1427 0.14806335 0.06243174 0.11410336 0.14969714
## 1428 0.14806335 0.09293746 0.12272101 0.14969714
## 1429 0.14806335 0.06243174 0.09814869 0.14969714
## 1430 0.14806335 0.09932349 0.11410336 0.14969714
## 1431 0.14806335 0.06243174 0.10667727 0.14969714
## 1432 0.14806335 0.06243174 0.12272101 0.14969714
## 1433 0.14806335 0.06243174 0.10667727 0.14969714
## 1434 0.14806335 0.21582397 0.09814869 0.14969714
## 1435 0.14806335 0.21582397 0.10667727 0.14969714
## 1436 0.14806335 0.06243174 0.09814869 0.14969714
## 1437 0.14806335 0.21582397 0.09814869 0.14969714
## 1438 0.14806335 0.09932349 0.12152375 0.14969714
## 1439 0.14806335 0.06243174 0.12152375 0.14969714
## 1440 0.14806335 0.06243174 0.10667727 0.14969714
## 1441 0.14806335 0.21582397 0.12152375 0.14969714
## 1442 0.14806335 0.43750000 0.12152375 0.14969714
## 1443 0.14806335 0.06243174 0.12152375 0.14969714
## 1444 0.14806335 0.06243174 0.09814869 0.14969714
## 1445 0.14806335 0.06243174 0.12272101 0.14969714
## 1446 0.14806335 0.06243174 0.11410336 0.14969714
## 1447 0.14806335 0.21582397 0.10667727 0.14969714
## 1448 0.14806335 0.06243174 0.10667727 0.14969714
## 1449 0.14806335 0.09967090 0.09814869 0.14969714
## 1450 0.14806335 0.06243174 0.12272101 0.14969714
## 1451 0.14806335 0.06243174 0.12272101 0.14969714
## 1452 0.14806335 0.21582397 0.12272101 0.14969714
## 1453 0.14806335 0.06243174 0.11410336 0.14969714
## 1454 0.14806335 0.21582397 0.09814869 0.14969714
## 1455 0.14806335 0.43750000 0.10667727 0.14969714
## 1456 0.14806335 0.21582397 0.10667727 0.14969714
## 1457 0.14806335 0.06243174 0.12152375 0.14969714
## 1458 0.14806335 0.09967090 0.09814869 0.14969714
## 1459 0.14806335 0.06243174 0.10667727 0.14969714
## 1460 0.14806335 0.48076923 0.12152375 0.14969714
## 1461 0.14806335 0.06243174 0.11410336 0.14969714
## 1462 0.14806335 0.21582397 0.09814869 0.14969714
## 1463 0.14806335 0.09967090 0.12152375 0.14969714
## 1464 0.14806335 0.06243174 0.09814869 0.14969714
## 1465 0.14806335 0.06243174 0.12272101 0.14969714
## 1466 0.14806335 0.21582397 0.12152375 0.14969714
## 1467 0.14806335 0.06243174 0.09814869 0.14969714
## 1468 0.14806335 0.09932349 0.12152375 0.14969714
## 1469 0.14806335 0.43750000 0.09814869 0.14969714
## 1470 0.14806335 0.06243174 0.12272101 0.14969714
## 1471 0.14806335 0.43750000 0.12152375 0.14969714
## 1472 0.14806335 0.06243174 0.12272101 0.14969714
## 1473 0.14806335 0.06243174 0.11410336 0.14969714
## 1474 0.05072162 0.21582397 0.12272101 0.14969714
## 1475 0.14806335 0.06243174 0.12272101 0.14969714
## 1476 0.14806335 0.21582397 0.12272101 0.14969714
## 1477 0.14806335 0.43750000 0.11410336 0.14969714
## 1478 0.14806335 0.06243174 0.09814869 0.14969714
## 1479 0.14806335 0.21582397 0.10667727 0.14969714
## 1480 0.14806335 0.06243174 0.10667727 0.14969714
## 1481 0.14806335 0.21582397 0.12152375 0.14969714
## 1482 0.14806335 0.45296167 0.12272101 0.14969714
## 1483 0.14806335 0.09932349 0.12272101 0.14969714
## 1484 0.14806335 0.09932349 0.10667727 0.14969714
## 1485 0.14806335 0.06243174 0.10667727 0.14969714
## 1486 0.14806335 0.06243174 0.11410336 0.14969714
## 1487 0.14806335 0.21582397 0.12152375 0.14969714
## 1488 0.05072162 0.09932349 0.11410336 0.14969714
## 1489 0.14806335 0.21582397 0.11410336 0.14969714
## 1490 0.14806335 0.48076923 0.10667727 0.14969714
## 1491 0.14806335 0.09932349 0.09814869 0.14969714
## 1492 0.14806335 0.10363527 0.11410336 0.14969714
## 1493 0.05072162 0.45296167 0.10667727 0.14969714
## 1494 0.14806335 0.06243174 0.10667727 0.14969714
## 1495 0.14806335 0.21582397 0.12272101 0.14969714
## 1496 0.14806335 0.45296167 0.12272101 0.14969714
## 1497 0.14806335 0.09932349 0.10667727 0.14969714
## 1498 0.14806335 0.06243174 0.09814869 0.14969714
## 1499 0.14806335 0.06243174 0.12152375 0.14969714
## 1500 0.14806335 0.09932349 0.09814869 0.14969714
## 1501 0.14806335 0.06243174 0.12272101 0.14969714
## 1502 0.14806335 0.21582397 0.12152375 0.14969714
## 1503 0.14806335 0.21582397 0.12152375 0.14969714
## 1504 0.14806335 0.21582397 0.12152375 0.14969714
## 1505 0.14806335 0.06243174 0.11410336 0.14969714
## 1506 0.14806335 0.09932349 0.11410336 0.14969714
## 1507 0.14806335 0.09932349 0.10667727 0.14969714
## 1508 0.05072162 0.09967090 0.11410336 0.14969714
## 1509 0.14806335 0.45296167 0.11410336 0.14969714
## 1510 0.14806335 0.21582397 0.10667727 0.14969714
## 1511 0.14806335 0.45296167 0.11410336 0.14969714
## 1512 0.14806335 0.06243174 0.12152375 0.14969714
## 1513 0.14806335 0.06243174 0.12152375 0.14969714
## 1514 0.14806335 0.06243174 0.12272101 0.14969714
## 1515 0.14806335 0.06243174 0.10667727 0.14969714
## 1516 0.14806335 0.06243174 0.12152375 0.14969714
## 1517 0.14806335 0.09932349 0.12272101 0.14969714
## 1518 0.14806335 0.06243174 0.09814869 0.14969714
## 1519 0.14806335 0.09293746 0.12152375 0.14969714
## 1520 0.14806335 0.09932349 0.09814869 0.14969714
## 1521 0.14806335 0.09932349 0.09814869 0.14969714
## 1522 0.14806335 0.21582397 0.09814869 0.14969714
## 1523 0.05072162 0.06243174 0.09814869 0.14969714
## 1524 0.14806335 0.09932349 0.11410336 0.14969714
## 1525 0.14806335 0.21582397 0.10667727 0.14969714
## 1526 0.14806335 0.43750000 0.12152375 0.14969714
## 1527 0.14806335 0.06243174 0.10667727 0.14969714
## 1528 0.14806335 0.06243174 0.10667727 0.14969714
## 1529 0.14806335 0.09967090 0.12152375 0.14969714
## 1530 0.14806335 0.10363527 0.11410336 0.14969714
## 1531 0.14806335 0.06243174 0.10667727 0.14969714
## 1532 0.14806335 0.06243174 0.12152375 0.14969714
## 1533 0.14806335 0.09932349 0.12152375 0.14969714
## 1534 0.14806335 0.45296167 0.12152375 0.14969714
## 1535 0.05072162 0.09932349 0.10667727 0.14969714
## 1536 0.14806335 0.09932349 0.12152375 0.14969714
## 1537 0.14806335 0.10363527 0.10667727 0.14969714
## 1538 0.14806335 0.45296167 0.12152375 0.14969714
## 1539 0.14806335 0.06243174 0.11410336 0.14969714
## 1540 0.14806335 0.09932349 0.12272101 0.14969714
## 1541 0.14806335 0.09932349 0.09814869 0.14969714
## 1542 0.14806335 0.06243174 0.10667727 0.14969714
## 1543 0.14806335 0.06243174 0.12152375 0.14969714
## 1544 0.14806335 0.10363527 0.09814869 0.14969714
## 1545 0.14806335 0.09932349 0.12152375 0.14969714
## 1546 0.14806335 0.10363527 0.12272101 0.14969714
## 1547 0.14806335 0.09932349 0.11410336 0.14969714
## 1548 0.14806335 0.06243174 0.10667727 0.14969714
## 1549 0.05072162 0.06243174 0.12152375 0.14969714
## 1550 0.14806335 0.06243174 0.10667727 0.14969714
## 1551 0.14806335 0.21582397 0.11410336 0.14969714
## 1552 0.14806335 0.06243174 0.12272101 0.14969714
## 1553 0.14806335 0.09293746 0.11410336 0.14969714
## 1554 0.14806335 0.45296167 0.09814869 0.14969714
## 1555 0.05072162 0.45296167 0.11410336 0.14969714
## 1556 0.14806335 0.09932349 0.11410336 0.14969714
## 1557 0.14806335 0.09967090 0.11410336 0.14969714
## 1558 0.14806335 0.06243174 0.09814869 0.14969714
## 1559 0.05072162 0.06243174 0.09814869 0.14969714
## 1560 0.14806335 0.21582397 0.10667727 0.14969714
## 1561 0.14806335 0.09967090 0.10667727 0.14969714
## 1562 0.14806335 0.06243174 0.10667727 0.14969714
## 1563 0.05072162 0.09932349 0.12152375 0.14969714
## 1564 0.14806335 0.21582397 0.12152375 0.14969714
## 1565 0.14806335 0.06243174 0.11410336 0.14969714
## 1566 0.14806335 0.21582397 0.12272101 0.14969714
## 1567 0.14806335 0.45296167 0.11410336 0.14969714
## 1568 0.05072162 0.45296167 0.11410336 0.14969714
## 1569 0.05072162 0.09932349 0.11410336 0.14969714
## 1570 0.14806335 0.21582397 0.10667727 0.14969714
## 1571 0.14806335 0.06243174 0.09814869 0.14969714
## 1572 0.14806335 0.09293746 0.12152375 0.14969714
## 1573 0.14806335 0.09932349 0.09814869 0.14969714
## 1574 0.14806335 0.45296167 0.10667727 0.14969714
## 1575 0.14806335 0.06243174 0.10667727 0.14969714
## 1576 0.14806335 0.06243174 0.09814869 0.14969714
## 1577 0.14806335 0.06243174 0.12152375 0.14969714
## 1578 0.14806335 0.21582397 0.12152375 0.14969714
## 1579 0.14806335 0.09293746 0.11410336 0.14969714
## 1580 0.14806335 0.09967090 0.09814869 0.14969714
## 1581 0.14806335 0.21582397 0.12152375 0.14969714
## 1582 0.14806335 0.06243174 0.11410336 0.14969714
## 1583 0.14806335 0.09293746 0.12272101 0.14969714
## 1584 0.14806335 0.06243174 0.12272101 0.14969714
## 1585 0.05072162 0.09967090 0.12152375 0.14969714
## 1586 0.14806335 0.06243174 0.09814869 0.14969714
## 1587 0.14806335 0.21582397 0.09814869 0.14969714
## 1588 0.14806335 0.06243174 0.10667727 0.14969714
## 1589 0.14806335 0.06243174 0.12152375 0.14969714
## 1590 0.14806335 0.06243174 0.12272101 0.14969714
## 1591 0.14806335 0.06243174 0.11410336 0.14969714
## 1592 0.14806335 0.06243174 0.12152375 0.14969714
## 1593 0.14806335 0.06243174 0.12272101 0.14969714
## 1594 0.14806335 0.10363527 0.10667727 0.14969714
## 1595 0.14806335 0.06243174 0.09814869 0.14969714
## 1596 0.14806335 0.09293746 0.12152375 0.14969714
## 1597 0.14806335 0.09932349 0.10667727 0.14969714
## 1598 0.14806335 0.21582397 0.12272101 0.14969714
## 1599 0.14806335 0.10363527 0.11410336 0.14969714
## 1600 0.14806335 0.09932349 0.11410336 0.14969714
## 1601 0.14806335 0.09967090 0.09814869 0.14969714
## 1602 0.14806335 0.06243174 0.11410336 0.14969714
## 1603 0.14806335 0.43750000 0.09814869 0.14969714
## 1604 0.14806335 0.10363527 0.12152375 0.14969714
## 1605 0.14806335 0.06243174 0.10667727 0.14969714
## 1606 0.05072162 0.09932349 0.12272101 0.14969714
## 1607 0.14806335 0.06243174 0.12272101 0.14969714
## 1608 0.14806335 0.06243174 0.12152375 0.14969714
## 1609 0.14806335 0.21582397 0.10667727 0.14969714
## 1610 0.14806335 0.21582397 0.10667727 0.14969714
## 1611 0.14806335 0.09932349 0.12152375 0.14969714
## 1612 0.14806335 0.10363527 0.11410336 0.14969714
## 1613 0.14806335 0.21582397 0.10667727 0.14969714
## 1614 0.14806335 0.21582397 0.09814869 0.14969714
## 1615 0.14806335 0.06243174 0.12152375 0.14969714
## 1616 0.14806335 0.21582397 0.10667727 0.14969714
## 1617 0.05072162 0.09932349 0.12272101 0.14969714
## 1618 0.14806335 0.51535088 0.11410336 0.14969714
## 1619 0.14806335 0.09932349 0.12152375 0.14969714
## 1620 0.14806335 0.51535088 0.12152375 0.14969714
## 1621 0.14806335 0.21582397 0.10667727 0.14969714
## 1622 0.14806335 0.09967090 0.09814869 0.14969714
## 1623 0.14806335 0.06243174 0.12272101 0.14969714
## 1624 0.14806335 0.43750000 0.09814869 0.14969714
## 1625 0.14806335 0.06243174 0.12272101 0.14969714
## 1626 0.14806335 0.09293746 0.11410336 0.14969714
## 1627 0.14806335 0.43750000 0.10667727 0.14969714
## 1628 0.14806335 0.06243174 0.09814869 0.14969714
## 1629 0.14806335 0.43750000 0.10667727 0.14969714
## 1630 0.14806335 0.09932349 0.11410336 0.14969714
## 1631 0.14806335 0.06243174 0.10667727 0.14969714
## 1632 0.14806335 0.06243174 0.09814869 0.14969714
## 1633 0.14806335 0.21582397 0.09814869 0.14969714
## 1634 0.14806335 0.06243174 0.10667727 0.14969714
## 1635 0.14806335 0.06243174 0.11410336 0.14969714
## 1636 0.14806335 0.09932349 0.12272101 0.14969714
## 1637 0.14806335 0.09967090 0.12272101 0.14969714
## 1638 0.14806335 0.09932349 0.11410336 0.14969714
## 1639 0.14806335 0.09932349 0.11410336 0.14969714
## 1640 0.14806335 0.06243174 0.12272101 0.14969714
## 1641 0.14806335 0.21582397 0.10667727 0.14969714
## 1642 0.14806335 0.06243174 0.11410336 0.14969714
## 1643 0.14806335 0.06243174 0.09814869 0.14969714
## 1644 0.14806335 0.06243174 0.12272101 0.14969714
## 1645 0.05072162 0.09932349 0.11410336 0.14969714
## 1646 0.14806335 0.06243174 0.12272101 0.14969714
## 1647 0.14806335 0.06243174 0.12152375 0.14969714
## 1648 0.14806335 0.21582397 0.10667727 0.14969714
## 1649 0.14806335 0.06243174 0.10667727 0.14969714
## 1650 0.14806335 0.06243174 0.12152375 0.14969714
## 1651 0.14806335 0.21582397 0.09814869 0.14969714
## 1652 0.14806335 0.09932349 0.10667727 0.14969714
## 1653 0.14806335 0.06243174 0.12152375 0.14969714
## 1654 0.14806335 0.06243174 0.11410336 0.14969714
## 1655 0.14806335 0.09967090 0.11410336 0.14969714
## 1656 0.14806335 0.06243174 0.09814869 0.14969714
## 1657 0.14806335 0.09932349 0.11410336 0.14969714
## 1658 0.14806335 0.06243174 0.12272101 0.14969714
## 1659 0.14806335 0.09293746 0.09814869 0.14969714
## 1660 0.05072162 0.06243174 0.09814869 0.14969714
## 1661 0.14806335 0.21582397 0.09814869 0.14969714
## 1662 0.14806335 0.06243174 0.12152375 0.14969714
## 1663 0.14806335 0.06243174 0.10667727 0.14969714
## 1664 0.14806335 0.10363527 0.11410336 0.14969714
## 1665 0.14806335 0.21582397 0.12152375 0.14969714
## 1666 0.14806335 0.06243174 0.12272101 0.14969714
## 1667 0.14806335 0.09932349 0.12272101 0.14969714
## 1668 0.14806335 0.09932349 0.11410336 0.14969714
## 1669 0.14806335 0.09932349 0.11410336 0.14969714
## 1670 0.14806335 0.09932349 0.10667727 0.14969714
## 1671 0.14806335 0.06243174 0.09814869 0.14969714
## 1672 0.14806335 0.06243174 0.09814869 0.14969714
## 1673 0.14806335 0.06243174 0.12152375 0.14969714
## 1674 0.14806335 0.21582397 0.10667727 0.14969714
## 1675 0.14806335 0.09967090 0.12272101 0.14969714
## 1676 0.14806335 0.09932349 0.09814869 0.14969714
## 1677 0.14806335 0.06243174 0.09814869 0.14969714
## 1678 0.14806335 0.43750000 0.12272101 0.14969714
## 1679 0.14806335 0.45296167 0.12152375 0.14969714
## 1680 0.14806335 0.09932349 0.10667727 0.14969714
## 1681 0.14806335 0.06243174 0.11410336 0.14969714
## 1682 0.14806335 0.21582397 0.11410336 0.14969714
## 1683 0.14806335 0.21582397 0.10667727 0.14969714
## 1684 0.14806335 0.45296167 0.12152375 0.14969714
## 1685 0.14806335 0.21582397 0.12152375 0.14969714
## 1686 0.14806335 0.09932349 0.09814869 0.14969714
## 1687 0.14806335 0.06243174 0.12272101 0.14969714
## 1688 0.05072162 0.09932349 0.10667727 0.14969714
## 1689 0.14806335 0.06243174 0.10667727 0.14969714
## 1690 0.05072162 0.10363527 0.09814869 0.14969714
## 1691 0.14806335 0.09932349 0.12272101 0.14969714
## 1692 0.14806335 0.10363527 0.10667727 0.14969714
## 1693 0.14806335 0.09932349 0.12272101 0.14969714
## 1694 0.14806335 0.09967090 0.09814869 0.14969714
## 1695 0.14806335 0.21582397 0.10667727 0.14969714
## 1696 0.14806335 0.06243174 0.11410336 0.14969714
## 1697 0.05072162 0.09293746 0.10667727 0.14969714
## 1698 0.14806335 0.06243174 0.12272101 0.14969714
## 1699 0.14806335 0.06243174 0.09814869 0.14969714
## 1700 0.14806335 0.06243174 0.10667727 0.14969714
## 1701 0.14806335 0.10363527 0.11410336 0.14969714
## 1702 0.14806335 0.09932349 0.10667727 0.14969714
## 1703 0.14806335 0.06243174 0.12272101 0.14969714
## 1704 0.14806335 0.10363527 0.10667727 0.14969714
## 1705 0.14806335 0.10363527 0.09814869 0.14969714
## 1706 0.14806335 0.10363527 0.10667727 0.14969714
## 1707 0.05072162 0.06243174 0.09814869 0.14969714
## 1708 0.14806335 0.21582397 0.10667727 0.14969714
## 1709 0.14806335 0.09967090 0.10667727 0.14969714
## 1710 0.14806335 0.09932349 0.09814869 0.14969714
## 1711 0.14806335 0.21582397 0.09814869 0.14969714
## 1712 0.14806335 0.21582397 0.12272101 0.14969714
## 1713 0.14806335 0.06243174 0.12152375 0.14969714
## 1714 0.14806335 0.09932349 0.09814869 0.14969714
## 1715 0.14806335 0.06243174 0.11410336 0.14969714
## 1716 0.14806335 0.21582397 0.12152375 0.14969714
## 1717 0.14806335 0.06243174 0.09814869 0.14969714
## 1718 0.14806335 0.21582397 0.12152375 0.14969714
## 1719 0.14806335 0.06243174 0.12152375 0.14969714
## 1720 0.14806335 0.06243174 0.12272101 0.14969714
## 1721 0.14806335 0.51535088 0.09814869 0.14969714
## 1722 0.14806335 0.21582397 0.11410336 0.14969714
## 1723 0.14806335 0.45296167 0.12152375 0.14969714
## 1724 0.14806335 0.09932349 0.12152375 0.14969714
## 1725 0.14806335 0.21582397 0.10667727 0.14969714
## 1726 0.14806335 0.21582397 0.11410336 0.14969714
## 1727 0.14806335 0.06243174 0.12152375 0.14969714
## 1728 0.14806335 0.09932349 0.09814869 0.14969714
## 1729 0.05072162 0.09932349 0.10667727 0.14969714
## 1730 0.14806335 0.06243174 0.12152375 0.14969714
## 1731 0.14806335 0.06243174 0.12152375 0.14969714
## 1732 0.14806335 0.09932349 0.12272101 0.14969714
## 1733 0.14806335 0.09932349 0.11410336 0.14969714
## 1734 0.14806335 0.06243174 0.09814869 0.14969714
## 1735 0.14806335 0.06243174 0.11410336 0.14969714
## 1736 0.14806335 0.51535088 0.10667727 0.14969714
## 1737 0.14806335 0.06243174 0.11410336 0.14969714
## 1738 0.14806335 0.09293746 0.12152375 0.14969714
## 1739 0.14806335 0.09932349 0.12152375 0.14969714
## 1740 0.14806335 0.21582397 0.12152375 0.14969714
## 1741 0.14806335 0.06243174 0.12272101 0.14969714
## 1742 0.14806335 0.21582397 0.10667727 0.14969714
## 1743 0.14806335 0.06243174 0.10667727 0.14969714
## 1744 0.14806335 0.06243174 0.11410336 0.14969714
## 1745 0.14806335 0.06243174 0.11410336 0.14969714
## 1746 0.14806335 0.21582397 0.12152375 0.14969714
## 1747 0.14806335 0.06243174 0.09814869 0.14969714
## 1748 0.14806335 0.48076923 0.12152375 0.14969714
## 1749 0.14806335 0.10363527 0.09814869 0.14969714
## 1750 0.14806335 0.09932349 0.12272101 0.14969714
## 1751 0.14806335 0.06243174 0.10667727 0.14969714
## 1752 0.14806335 0.09967090 0.12272101 0.14969714
## 1753 0.14806335 0.09967090 0.11410336 0.14969714
## 1754 0.14806335 0.06243174 0.12152375 0.14969714
## 1755 0.14806335 0.09932349 0.10667727 0.14969714
## 1756 0.14806335 0.06243174 0.12272101 0.14969714
## 1757 0.14806335 0.06243174 0.12272101 0.14969714
## 1758 0.05072162 0.09293746 0.09814869 0.14969714
## 1759 0.14806335 0.09932349 0.12272101 0.14969714
## 1760 0.14806335 0.06243174 0.12152375 0.14969714
## 1761 0.14806335 0.09932349 0.09814869 0.14969714
## 1762 0.14806335 0.09967090 0.10667727 0.14969714
## 1763 0.05072162 0.21582397 0.09814869 0.14969714
## 1764 0.14806335 0.06243174 0.12272101 0.14969714
## 1765 0.14806335 0.06243174 0.12152375 0.14969714
## 1766 0.14806335 0.09967090 0.11410336 0.14969714
## 1767 0.05072162 0.06243174 0.12272101 0.14969714
## 1768 0.14806335 0.21582397 0.10667727 0.14969714
## 1769 0.05072162 0.09967090 0.12272101 0.14969714
## 1770 0.14806335 0.09932349 0.10667727 0.14969714
## 1771 0.14806335 0.06243174 0.11410336 0.14969714
## 1772 0.14806335 0.06243174 0.12272101 0.14969714
## 1773 0.14806335 0.06243174 0.10667727 0.14969714
## 1774 0.14806335 0.06243174 0.10667727 0.14969714
## 1775 0.14806335 0.06243174 0.09814869 0.14969714
## 1776 0.14806335 0.09967090 0.12272101 0.14969714
## 1777 0.14806335 0.21582397 0.10667727 0.14969714
## 1778 0.14806335 0.10363527 0.10667727 0.14969714
## 1779 0.14806335 0.48076923 0.12152375 0.14969714
## 1780 0.14806335 0.06243174 0.11410336 0.14969714
## 1781 0.14806335 0.09932349 0.10667727 0.14969714
## 1782 0.14806335 0.06243174 0.11410336 0.14969714
## 1783 0.14806335 0.21582397 0.09814869 0.14969714
## 1784 0.14806335 0.09967090 0.11410336 0.14969714
## 1785 0.14806335 0.48076923 0.12152375 0.14969714
## 1786 0.14806335 0.06243174 0.10667727 0.14969714
## 1787 0.05072162 0.09932349 0.12152375 0.14969714
## 1788 0.05072162 0.09932349 0.10667727 0.14969714
## 1789 0.14806335 0.06243174 0.10667727 0.14969714
## 1790 0.14806335 0.06243174 0.11410336 0.14969714
## 1791 0.14806335 0.09967090 0.11410336 0.14969714
## 1792 0.14806335 0.09932349 0.09814869 0.14969714
## 1793 0.14806335 0.09932349 0.11410336 0.14969714
## 1794 0.14806335 0.09932349 0.12272101 0.14969714
## 1795 0.14806335 0.09932349 0.10667727 0.14969714
## 1796 0.14806335 0.21582397 0.09814869 0.14969714
## 1797 0.14806335 0.21582397 0.12152375 0.14969714
## 1798 0.14806335 0.21582397 0.10667727 0.14969714
## 1799 0.05072162 0.06243174 0.12272101 0.14969714
## 1800 0.14806335 0.10363527 0.09814869 0.14969714
## 1801 0.14806335 0.09932349 0.10667727 0.14969714
## 1802 0.05072162 0.09293746 0.12152375 0.14969714
## 1803 0.14806335 0.09932349 0.09814869 0.14969714
## 1804 0.05072162 0.06243174 0.12272101 0.14969714
## 1805 0.14806335 0.06243174 0.12152375 0.14969714
## 1806 0.14806335 0.09932349 0.12272101 0.14969714
## 1807 0.14806335 0.06243174 0.12272101 0.14969714
## 1808 0.14806335 0.09932349 0.12152375 0.14969714
## 1809 0.14806335 0.09967090 0.12152375 0.14969714
## 1810 0.14806335 0.21582397 0.09814869 0.14969714
## 1811 0.14806335 0.21582397 0.09814869 0.14969714
## 1812 0.14806335 0.09932349 0.12272101 0.14969714
## 1813 0.14806335 0.06243174 0.12272101 0.14969714
## 1814 0.14806335 0.06243174 0.11410336 0.14969714
## 1815 0.14806335 0.45296167 0.12152375 0.14969714
## 1816 0.14806335 0.48076923 0.12152375 0.14969714
## 1817 0.14806335 0.21582397 0.09814869 0.14969714
## 1818 0.14806335 0.06243174 0.11410336 0.14969714
## 1819 0.14806335 0.06243174 0.12152375 0.14969714
## 1820 0.14806335 0.21582397 0.12272101 0.14969714
## 1821 0.14806335 0.06243174 0.12272101 0.14969714
## 1822 0.14806335 0.09967090 0.12272101 0.14969714
## 1823 0.14806335 0.09932349 0.11410336 0.14969714
## 1824 0.14806335 0.06243174 0.12272101 0.14969714
## 1825 0.14806335 0.21582397 0.10667727 0.14969714
## 1826 0.14806335 0.21582397 0.12272101 0.14969714
## 1827 0.14806335 0.09932349 0.12152375 0.14969714
## 1828 0.14806335 0.09932349 0.10667727 0.14969714
## 1829 0.14806335 0.10363527 0.10667727 0.14969714
## 1830 0.14806335 0.09932349 0.09814869 0.14969714
## 1831 0.14806335 0.21582397 0.11410336 0.14969714
## 1832 0.05072162 0.06243174 0.11410336 0.14969714
## 1833 0.14806335 0.21582397 0.11410336 0.14969714
## 1834 0.14806335 0.06243174 0.09814869 0.14969714
## 1835 0.14806335 0.09932349 0.12272101 0.14969714
## 1836 0.14806335 0.06243174 0.11410336 0.14969714
## 1837 0.14806335 0.51535088 0.10667727 0.14969714
## 1838 0.05072162 0.48076923 0.12152375 0.14969714
## 1839 0.14806335 0.06243174 0.12272101 0.14969714
## 1840 0.14806335 0.09932349 0.09814869 0.14969714
## 1841 0.14806335 0.06243174 0.12272101 0.14969714
## 1842 0.05072162 0.06243174 0.10667727 0.14969714
## 1843 0.05072162 0.06243174 0.11410336 0.14969714
## 1844 0.05072162 0.48076923 0.12272101 0.14969714
## 1845 0.14806335 0.09293746 0.12152375 0.14969714
## 1846 0.14806335 0.51535088 0.09814869 0.14969714
## 1847 0.14806335 0.09293746 0.12272101 0.14969714
## 1848 0.14806335 0.06243174 0.12272101 0.14969714
## 1849 0.14806335 0.21582397 0.10667727 0.14969714
## 1850 0.05072162 0.06243174 0.11410336 0.14969714
## 1851 0.14806335 0.06243174 0.10667727 0.14969714
## 1852 0.14806335 0.06243174 0.09814869 0.14969714
## 1853 0.14806335 0.21582397 0.12152375 0.14969714
## 1854 0.05072162 0.09932349 0.10667727 0.14969714
## 1855 0.14806335 0.06243174 0.12152375 0.14969714
## 1856 0.14806335 0.09293746 0.10667727 0.14969714
## 1857 0.14806335 0.06243174 0.10667727 0.14969714
## 1858 0.14806335 0.06243174 0.09814869 0.14969714
## 1859 0.14806335 0.09293746 0.10667727 0.14969714
## 1860 0.14806335 0.06243174 0.10667727 0.14969714
## 1861 0.14806335 0.09932349 0.12272101 0.14969714
## 1862 0.14806335 0.09932349 0.09814869 0.14969714
## 1863 0.05072162 0.06243174 0.10667727 0.14969714
## 1864 0.14806335 0.06243174 0.12272101 0.14969714
## 1865 0.14806335 0.09967090 0.09814869 0.14969714
## 1866 0.14806335 0.06243174 0.12272101 0.14969714
## 1867 0.14806335 0.06243174 0.10667727 0.14969714
## 1868 0.14806335 0.06243174 0.12272101 0.14969714
## 1869 0.14806335 0.09932349 0.12152375 0.14969714
## 1870 0.14806335 0.06243174 0.11410336 0.14969714
## 1871 0.14806335 0.06243174 0.12152375 0.14969714
## 1872 0.14806335 0.10363527 0.11410336 0.14969714
## 1873 0.14806335 0.45296167 0.09814869 0.14969714
## 1874 0.14806335 0.06243174 0.12152375 0.14969714
## 1875 0.14806335 0.09932349 0.11410336 0.14969714
## 1876 0.05072162 0.09967090 0.12272101 0.14969714
## 1877 0.14806335 0.09932349 0.09814869 0.14969714
## 1878 0.14806335 0.51535088 0.11410336 0.14969714
## 1879 0.14806335 0.06243174 0.10667727 0.14969714
## 1880 0.14806335 0.06243174 0.12272101 0.14969714
## 1881 0.14806335 0.06243174 0.10667727 0.14969714
## 1882 0.14806335 0.21582397 0.12272101 0.14969714
## 1883 0.14806335 0.21582397 0.12152375 0.14969714
## 1884 0.14806335 0.06243174 0.11410336 0.14969714
## 1885 0.14806335 0.09293746 0.12272101 0.14969714
## 1886 0.14806335 0.51535088 0.09814869 0.14969714
## 1887 0.05072162 0.09932349 0.10667727 0.14969714
## 1888 0.14806335 0.45296167 0.11410336 0.14969714
## 1889 0.14806335 0.06243174 0.12272101 0.14969714
## 1890 0.14806335 0.09932349 0.12272101 0.14969714
## 1891 0.14806335 0.09932349 0.09814869 0.14969714
## 1892 0.14806335 0.21582397 0.12152375 0.14969714
## 1893 0.14806335 0.06243174 0.12272101 0.14969714
## 1894 0.14806335 0.06243174 0.11410336 0.14969714
## 1895 0.14806335 0.06243174 0.12272101 0.14969714
## 1896 0.14806335 0.06243174 0.12272101 0.14969714
## 1897 0.14806335 0.10363527 0.11410336 0.14969714
## 1898 0.14806335 0.10363527 0.09814869 0.14969714
## 1899 0.14806335 0.21582397 0.10667727 0.14969714
## 1900 0.14806335 0.06243174 0.12272101 0.14969714
## 1901 0.05072162 0.09293746 0.12152375 0.14969714
## 1902 0.14806335 0.06243174 0.10667727 0.14969714
## 1903 0.14806335 0.06243174 0.10667727 0.14969714
## 1904 0.05072162 0.09932349 0.12272101 0.14969714
## 1905 0.14806335 0.06243174 0.12152375 0.14969714
## 1906 0.05072162 0.06243174 0.11410336 0.14969714
## 1907 0.14806335 0.21582397 0.10667727 0.14969714
## 1908 0.14806335 0.10363527 0.12272101 0.14969714
## 1909 0.05072162 0.09967090 0.10667727 0.14969714
## 1910 0.14806335 0.21582397 0.09814869 0.14969714
## 1911 0.14806335 0.45296167 0.10667727 0.14969714
## 1912 0.14806335 0.06243174 0.09814869 0.14969714
## 1913 0.14806335 0.06243174 0.12272101 0.14969714
## 1914 0.14806335 0.06243174 0.10667727 0.14969714
## 1915 0.14806335 0.21582397 0.12152375 0.14969714
## 1916 0.14806335 0.06243174 0.12152375 0.14969714
## 1917 0.14806335 0.09932349 0.09814869 0.14969714
## 1918 0.14806335 0.45296167 0.10667727 0.14969714
## 1919 0.14806335 0.21582397 0.09814869 0.14969714
## 1920 0.14806335 0.06243174 0.12272101 0.14969714
## 1921 0.14806335 0.10363527 0.12152375 0.14969714
## 1922 0.14806335 0.09932349 0.11410336 0.14969714
## 1923 0.14806335 0.21582397 0.09814869 0.14969714
## 1924 0.14806335 0.06243174 0.09814869 0.14969714
## 1925 0.05072162 0.09932349 0.12272101 0.14969714
## 1926 0.14806335 0.06243174 0.10667727 0.14969714
## 1927 0.14806335 0.21582397 0.12152375 0.14969714
## 1928 0.14806335 0.09932349 0.11410336 0.14969714
## 1929 0.14806335 0.43750000 0.12152375 0.14969714
## 1930 0.14806335 0.45296167 0.12272101 0.14969714
## 1931 0.14806335 0.06243174 0.10667727 0.14969714
## 1932 0.14806335 0.09932349 0.12152375 0.14969714
## 1933 0.14806335 0.45296167 0.12272101 0.14969714
## 1934 0.14806335 0.09932349 0.12272101 0.14969714
## 1935 0.14806335 0.21582397 0.10667727 0.14969714
## 1936 0.14806335 0.21582397 0.12152375 0.14969714
## 1937 0.14806335 0.21582397 0.12152375 0.14969714
## 1938 0.14806335 0.09293746 0.12272101 0.14969714
## 1939 0.14806335 0.06243174 0.11410336 0.14969714
## 1940 0.14806335 0.09932349 0.10667727 0.14969714
## 1941 0.14806335 0.09932349 0.12272101 0.14969714
## 1942 0.14806335 0.09967090 0.11410336 0.14969714
## 1943 0.14806335 0.06243174 0.11410336 0.14969714
## 1944 0.14806335 0.06243174 0.12152375 0.14969714
## 1945 0.14806335 0.09932349 0.12152375 0.14969714
## 1946 0.14806335 0.21582397 0.11410336 0.14969714
## 1947 0.14806335 0.09932349 0.11410336 0.14969714
## 1948 0.14806335 0.06243174 0.09814869 0.14969714
## 1949 0.14806335 0.06243174 0.10667727 0.14969714
## 1950 0.14806335 0.10363527 0.10667727 0.14969714
## 1951 0.14806335 0.06243174 0.11410336 0.14969714
## 1952 0.14806335 0.06243174 0.12152375 0.14969714
## 1953 0.14806335 0.09932349 0.10667727 0.14969714
## 1954 0.14806335 0.06243174 0.10667727 0.14969714
## 1955 0.14806335 0.09932349 0.12272101 0.14969714
## 1956 0.14806335 0.45296167 0.09814869 0.14969714
## 1957 0.14806335 0.06243174 0.10667727 0.14969714
## 1958 0.05072162 0.10363527 0.11410336 0.14969714
## 1959 0.14806335 0.09932349 0.10667727 0.14969714
## 1960 0.05072162 0.09932349 0.09814869 0.14969714
## 1961 0.14806335 0.06243174 0.09814869 0.14969714
## 1962 0.14806335 0.06243174 0.10667727 0.14969714
## 1963 0.05072162 0.06243174 0.12272101 0.14969714
## 1964 0.14806335 0.21582397 0.09814869 0.14969714
## 1965 0.14806335 0.06243174 0.12272101 0.14969714
## 1966 0.14806335 0.06243174 0.10667727 0.14969714
## 1967 0.14806335 0.51535088 0.09814869 0.14969714
## 1968 0.14806335 0.09932349 0.12152375 0.14969714
## 1969 0.14806335 0.45296167 0.09814869 0.14969714
## 1970 0.14806335 0.09932349 0.12152375 0.14969714
## 1971 0.14806335 0.09932349 0.12272101 0.14969714
## 1972 0.14806335 0.09932349 0.12272101 0.14969714
## 1973 0.14806335 0.06243174 0.10667727 0.14969714
## 1974 0.14806335 0.09932349 0.09814869 0.14969714
## 1975 0.14806335 0.06243174 0.11410336 0.14969714
## 1976 0.14806335 0.06243174 0.11410336 0.14969714
## 1977 0.14806335 0.06243174 0.10667727 0.14969714
## 1978 0.14806335 0.06243174 0.12272101 0.14969714
## 1979 0.14806335 0.21582397 0.12272101 0.14969714
## 1980 0.14806335 0.06243174 0.11410336 0.14969714
## 1981 0.14806335 0.10363527 0.09814869 0.14969714
## 1982 0.14806335 0.06243174 0.12272101 0.14969714
## 1983 0.14806335 0.09967090 0.10667727 0.14969714
## 1984 0.14806335 0.10363527 0.12272101 0.14969714
## 1985 0.14806335 0.06243174 0.11410336 0.14969714
## 1986 0.14806335 0.51535088 0.12152375 0.14969714
## 1987 0.14806335 0.06243174 0.10667727 0.14969714
## 1988 0.14806335 0.06243174 0.12152375 0.14969714
## 1989 0.14806335 0.21582397 0.10667727 0.14969714
## 1990 0.14806335 0.09967090 0.09814869 0.14969714
## 1991 0.14806335 0.51535088 0.11410336 0.14969714
## 1992 0.14806335 0.10363527 0.09814869 0.14969714
## 1993 0.14806335 0.09932349 0.12272101 0.14969714
## 1994 0.14806335 0.06243174 0.12272101 0.14969714
## 1995 0.14806335 0.06243174 0.10667727 0.14969714
## 1996 0.05072162 0.10363527 0.09814869 0.14969714
## 1997 0.14806335 0.06243174 0.12152375 0.14969714
## 1998 0.14806335 0.10363527 0.12272101 0.14969714
## 1999 0.14806335 0.09932349 0.11410336 0.14969714
## 2000 0.14806335 0.43750000 0.10667727 0.14969714
## 2001 0.14806335 0.06243174 0.12272101 0.14969714
## 2002 0.14806335 0.06243174 0.11410336 0.14969714
## 2003 0.14806335 0.06243174 0.10667727 0.14969714
## 2004 0.14806335 0.09932349 0.12272101 0.14969714
## 2005 0.14806335 0.06243174 0.10667727 0.14969714
## 2006 0.14806335 0.09932349 0.11410336 0.14969714
## 2007 0.14806335 0.09932349 0.10667727 0.14969714
## 2008 0.14806335 0.21582397 0.11410336 0.14969714
## 2009 0.14806335 0.06243174 0.09814869 0.14969714
## 2010 0.14806335 0.06243174 0.09814869 0.14969714
## 2011 0.14806335 0.09932349 0.10667727 0.14969714
## 2012 0.14806335 0.06243174 0.12152375 0.14969714
## 2013 0.14806335 0.06243174 0.11410336 0.14969714
## 2014 0.14806335 0.21582397 0.10667727 0.14969714
## 2015 0.14806335 0.21582397 0.09814869 0.14969714
## 2016 0.05072162 0.21582397 0.10667727 0.14969714
## 2017 0.14806335 0.45296167 0.10667727 0.14969714
## 2018 0.14806335 0.06243174 0.09814869 0.14969714
## 2019 0.14806335 0.09932349 0.11410336 0.14969714
## 2020 0.14806335 0.09932349 0.12272101 0.14969714
## 2021 0.14806335 0.09967090 0.11410336 0.14969714
## 2022 0.14806335 0.09932349 0.11410336 0.14969714
## 2023 0.14806335 0.09932349 0.09814869 0.14969714
## 2024 0.14806335 0.21582397 0.09814869 0.14969714
## 2025 0.14806335 0.09932349 0.12272101 0.14969714
## 2026 0.14806335 0.10363527 0.12152375 0.14969714
## 2027 0.14806335 0.10363527 0.09814869 0.14969714
## 2028 0.14806335 0.06243174 0.12152375 0.14969714
## 2029 0.14806335 0.09932349 0.12272101 0.14969714
## 2030 0.14806335 0.06243174 0.09814869 0.14969714
## 2031 0.14806335 0.06243174 0.09814869 0.14969714
## 2032 0.14806335 0.09932349 0.09814869 0.14969714
## 2033 0.14806335 0.06243174 0.11410336 0.14969714
## 2034 0.14806335 0.06243174 0.10667727 0.14969714
## 2035 0.14806335 0.06243174 0.09814869 0.14969714
## 2036 0.14806335 0.21582397 0.11410336 0.14969714
## 2037 0.14806335 0.09932349 0.12152375 0.14969714
## 2038 0.14806335 0.06243174 0.10667727 0.14969714
## 2039 0.14806335 0.10363527 0.12152375 0.14969714
## 2040 0.14806335 0.09932349 0.09814869 0.14969714
## 2041 0.14806335 0.45296167 0.11410336 0.14969714
## 2042 0.14806335 0.21582397 0.12152375 0.14969714
## 2043 0.14806335 0.21582397 0.12152375 0.14969714
## 2044 0.14806335 0.06243174 0.12152375 0.14969714
## 2045 0.14806335 0.51535088 0.11410336 0.14969714
## 2046 0.14806335 0.09932349 0.11410336 0.14969714
## 2047 0.14806335 0.09932349 0.11410336 0.14969714
## 2048 0.14806335 0.09932349 0.09814869 0.14969714
## 2049 0.14806335 0.06243174 0.10667727 0.14969714
## 2050 0.14806335 0.06243174 0.12272101 0.14969714
## 2051 0.14806335 0.21582397 0.09814869 0.14969714
## 2052 0.05072162 0.43750000 0.11410336 0.14969714
## 2053 0.14806335 0.21582397 0.12152375 0.14969714
## 2054 0.14806335 0.06243174 0.11410336 0.14969714
## 2055 0.14806335 0.21582397 0.10667727 0.14969714
## 2056 0.14806335 0.21582397 0.09814869 0.14969714
## 2057 0.14806335 0.10363527 0.10667727 0.14969714
## 2058 0.05072162 0.51535088 0.12152375 0.14969714
## 2059 0.14806335 0.06243174 0.10667727 0.14969714
## 2060 0.14806335 0.06243174 0.09814869 0.14969714
## 2061 0.14806335 0.51535088 0.10667727 0.14969714
## 2062 0.14806335 0.06243174 0.12152375 0.14969714
## 2063 0.14806335 0.09932349 0.12152375 0.14969714
## 2064 0.05072162 0.06243174 0.12152375 0.14969714
## 2065 0.14806335 0.09932349 0.11410336 0.14969714
## 2066 0.14806335 0.06243174 0.11410336 0.14969714
## 2067 0.14806335 0.06243174 0.12152375 0.14969714
## 2068 0.14806335 0.06243174 0.11410336 0.14969714
## 2069 0.14806335 0.06243174 0.12272101 0.14969714
## 2070 0.14806335 0.06243174 0.09814869 0.14969714
## 2071 0.14806335 0.10363527 0.12152375 0.14969714
## 2072 0.14806335 0.06243174 0.10667727 0.14969714
## 2073 0.14806335 0.21582397 0.12152375 0.14969714
## 2074 0.14806335 0.06243174 0.09814869 0.14969714
## 2075 0.14806335 0.45296167 0.09814869 0.14969714
## 2076 0.14806335 0.06243174 0.12272101 0.14969714
## 2077 0.14806335 0.06243174 0.10667727 0.14969714
## 2078 0.14806335 0.21582397 0.09814869 0.14969714
## 2079 0.14806335 0.21582397 0.12152375 0.14969714
## 2080 0.14806335 0.06243174 0.10667727 0.14969714
## 2081 0.14806335 0.06243174 0.10667727 0.14969714
## 2082 0.05072162 0.21582397 0.11410336 0.14969714
## 2083 0.14806335 0.21582397 0.11410336 0.14969714
## 2084 0.14806335 0.43750000 0.12152375 0.14969714
## 2085 0.14806335 0.06243174 0.10667727 0.14969714
## 2086 0.14806335 0.06243174 0.11410336 0.14969714
## 2087 0.14806335 0.43750000 0.09814869 0.14969714
## 2088 0.14806335 0.06243174 0.09814869 0.14969714
## 2089 0.14806335 0.06243174 0.09814869 0.14969714
## 2090 0.14806335 0.09932349 0.12152375 0.14969714
## 2091 0.14806335 0.06243174 0.12272101 0.14969714
## 2092 0.14806335 0.06243174 0.12272101 0.14969714
## 2093 0.14806335 0.21582397 0.10667727 0.14969714
## 2094 0.14806335 0.09932349 0.09814869 0.14969714
## 2095 0.14806335 0.09967090 0.11410336 0.14969714
## 2096 0.14806335 0.09932349 0.10667727 0.14969714
## 2097 0.14806335 0.09932349 0.12272101 0.14969714
## 2098 0.14806335 0.06243174 0.12152375 0.14969714
## 2099 0.14806335 0.09932349 0.11410336 0.14969714
## 2100 0.14806335 0.06243174 0.11410336 0.14969714
## 2101 0.14806335 0.06243174 0.11410336 0.14969714
## 2102 0.14806335 0.09932349 0.12272101 0.14969714
## 2103 0.14806335 0.06243174 0.10667727 0.14969714
## 2104 0.14806335 0.06243174 0.12152375 0.14969714
## 2105 0.14806335 0.09932349 0.12272101 0.14969714
## 2106 0.14806335 0.10363527 0.09814869 0.14969714
## 2107 0.14806335 0.21582397 0.10667727 0.14969714
## 2108 0.14806335 0.06243174 0.09814869 0.14969714
## 2109 0.14806335 0.06243174 0.12272101 0.14969714
## 2110 0.14806335 0.06243174 0.09814869 0.14969714
## 2111 0.14806335 0.06243174 0.12272101 0.14969714
## 2112 0.14806335 0.21582397 0.10667727 0.14969714
## 2113 0.14806335 0.10363527 0.10667727 0.14969714
## 2114 0.14806335 0.10363527 0.11410336 0.14969714
## 2115 0.14806335 0.48076923 0.09814869 0.14969714
## 2116 0.14806335 0.43750000 0.12272101 0.14969714
## 2117 0.14806335 0.06243174 0.11410336 0.14969714
## 2118 0.14806335 0.51535088 0.12152375 0.14969714
## 2119 0.14806335 0.09932349 0.10667727 0.14969714
## 2120 0.14806335 0.06243174 0.09814869 0.14969714
## 2121 0.14806335 0.45296167 0.10667727 0.14969714
## 2122 0.14806335 0.09967090 0.09814869 0.14969714
## 2123 0.14806335 0.06243174 0.10667727 0.14969714
## 2124 0.14806335 0.21582397 0.09814869 0.14969714
## 2125 0.14806335 0.10363527 0.09814869 0.14969714
## 2126 0.14806335 0.09967090 0.09814869 0.14969714
## 2127 0.14806335 0.06243174 0.12272101 0.14969714
## 2128 0.14806335 0.06243174 0.12152375 0.14969714
## 2129 0.14806335 0.21582397 0.12272101 0.14969714
## 2130 0.14806335 0.06243174 0.12272101 0.14969714
## 2131 0.14806335 0.06243174 0.11410336 0.14969714
## 2132 0.14806335 0.10363527 0.12152375 0.14969714
## 2133 0.14806335 0.06243174 0.11410336 0.14969714
## 2134 0.05072162 0.45296167 0.09814869 0.14969714
## 2135 0.14806335 0.09932349 0.09814869 0.14969714
## 2136 0.14806335 0.06243174 0.09814869 0.14969714
## 2137 0.14806335 0.06243174 0.10667727 0.14969714
## 2138 0.14806335 0.06243174 0.10667727 0.14969714
## 2139 0.14806335 0.43750000 0.12272101 0.14969714
## 2140 0.14806335 0.06243174 0.12272101 0.14969714
## 2141 0.14806335 0.21582397 0.09814869 0.14969714
## 2142 0.14806335 0.51535088 0.09814869 0.14969714
## 2143 0.14806335 0.06243174 0.12272101 0.14969714
## 2144 0.14806335 0.06243174 0.12152375 0.14969714
## 2145 0.14806335 0.21582397 0.10667727 0.14969714
## 2146 0.14806335 0.06243174 0.10667727 0.14969714
## 2147 0.14806335 0.06243174 0.10667727 0.14969714
## 2148 0.14806335 0.09932349 0.12272101 0.14969714
## 2149 0.14806335 0.06243174 0.12152375 0.14969714
## 2150 0.14806335 0.51535088 0.09814869 0.14969714
## 2151 0.14806335 0.21582397 0.12272101 0.14969714
## 2152 0.14806335 0.06243174 0.09814869 0.14969714
## 2153 0.14806335 0.21582397 0.09814869 0.14969714
## 2154 0.14806335 0.09932349 0.10667727 0.14969714
## 2155 0.14806335 0.09932349 0.12152375 0.14969714
## 2156 0.14806335 0.09932349 0.12272101 0.14969714
## 2157 0.14806335 0.06243174 0.09814869 0.14969714
## 2158 0.14806335 0.06243174 0.09814869 0.14969714
## 2159 0.14806335 0.09293746 0.12152375 0.14969714
## 2160 0.14806335 0.06243174 0.11410336 0.14969714
## 2161 0.14806335 0.21582397 0.09814869 0.14969714
## 2162 0.14806335 0.06243174 0.09814869 0.14969714
## 2163 0.14806335 0.21582397 0.09814869 0.14969714
## 2164 0.14806335 0.09932349 0.10667727 0.14969714
## 2165 0.14806335 0.06243174 0.12272101 0.14969714
## 2166 0.14806335 0.09932349 0.09814869 0.14969714
## 2167 0.05072162 0.09932349 0.12272101 0.14969714
## 2168 0.14806335 0.06243174 0.12272101 0.14969714
## 2169 0.14806335 0.06243174 0.12152375 0.14969714
## 2170 0.14806335 0.10363527 0.12272101 0.14969714
## 2171 0.14806335 0.21582397 0.12152375 0.14969714
## 2172 0.14806335 0.09932349 0.12272101 0.14969714
## 2173 0.14806335 0.06243174 0.12272101 0.14969714
## 2174 0.14806335 0.21582397 0.12152375 0.14969714
## 2175 0.14806335 0.06243174 0.12272101 0.14969714
## 2176 0.14806335 0.06243174 0.10667727 0.14969714
## 2177 0.14806335 0.10363527 0.10667727 0.14969714
## 2178 0.14806335 0.09293746 0.10667727 0.14969714
## 2179 0.14806335 0.21582397 0.10667727 0.14969714
## 2180 0.14806335 0.06243174 0.10667727 0.14969714
## 2181 0.14806335 0.09293746 0.11410336 0.14969714
## 2182 0.14806335 0.09932349 0.11410336 0.14969714
## 2183 0.05072162 0.06243174 0.12272101 0.14969714
## 2184 0.14806335 0.09932349 0.11410336 0.14969714
## 2185 0.14806335 0.06243174 0.12272101 0.14969714
## 2186 0.05072162 0.06243174 0.10667727 0.14969714
## 2187 0.14806335 0.45296167 0.12272101 0.14969714
## 2188 0.14806335 0.10363527 0.10667727 0.14969714
## 2189 0.14806335 0.09293746 0.10667727 0.14969714
## 2190 0.14806335 0.09932349 0.10667727 0.14969714
## 2191 0.14806335 0.06243174 0.09814869 0.14969714
## 2192 0.14806335 0.09932349 0.12152375 0.14969714
## 2193 0.14806335 0.09932349 0.12272101 0.14969714
## 2194 0.14806335 0.06243174 0.11410336 0.14969714
## 2195 0.14806335 0.21582397 0.12152375 0.14969714
## 2196 0.14806335 0.09932349 0.09814869 0.14969714
## 2197 0.14806335 0.06243174 0.10667727 0.14969714
## 2198 0.14806335 0.21582397 0.12152375 0.14969714
## 2199 0.14806335 0.09932349 0.10667727 0.14969714
## 2200 0.14806335 0.06243174 0.12272101 0.14969714
## 2201 0.14806335 0.06243174 0.10667727 0.14969714
## 2202 0.14806335 0.06243174 0.12272101 0.14969714
## 2203 0.14806335 0.06243174 0.11410336 0.14969714
## 2204 0.14806335 0.21582397 0.09814869 0.14969714
## 2205 0.14806335 0.21582397 0.11410336 0.14969714
## 2206 0.14806335 0.06243174 0.12152375 0.14969714
## 2207 0.05072162 0.06243174 0.10667727 0.14969714
## 2208 0.14806335 0.06243174 0.10667727 0.14969714
## 2209 0.14806335 0.21582397 0.09814869 0.14969714
## 2210 0.14806335 0.09967090 0.11410336 0.14969714
## 2211 0.05072162 0.09932349 0.11410336 0.14969714
## 2212 0.14806335 0.06243174 0.09814869 0.14969714
## 2213 0.14806335 0.43750000 0.11410336 0.14969714
## 2214 0.14806335 0.06243174 0.12272101 0.14969714
## 2215 0.14806335 0.06243174 0.12272101 0.14969714
## 2216 0.14806335 0.21582397 0.10667727 0.14969714
## 2217 0.14806335 0.09932349 0.09814869 0.14969714
## 2218 0.14806335 0.21582397 0.09814869 0.14969714
## 2219 0.14806335 0.09932349 0.12152375 0.14969714
## 2220 0.14806335 0.09967090 0.12272101 0.14969714
## 2221 0.14806335 0.09293746 0.11410336 0.14969714
## 2222 0.14806335 0.09967090 0.09814869 0.14969714
## 2223 0.05072162 0.06243174 0.11410336 0.14969714
## 2224 0.14806335 0.45296167 0.10667727 0.14969714
## 2225 0.14806335 0.10363527 0.09814869 0.14969714
## 2226 0.14806335 0.06243174 0.12272101 0.14969714
## 2227 0.14806335 0.10363527 0.12272101 0.14969714
## 2228 0.14806335 0.45296167 0.09814869 0.14969714
## 2229 0.14806335 0.21582397 0.10667727 0.14969714
## 2230 0.14806335 0.09293746 0.12152375 0.14969714
## 2231 0.14806335 0.09932349 0.12272101 0.14969714
## 2232 0.14806335 0.21582397 0.12152375 0.14969714
## 2233 0.14806335 0.06243174 0.12272101 0.14969714
## 2234 0.14806335 0.06243174 0.11410336 0.14969714
## 2235 0.14806335 0.06243174 0.12152375 0.14969714
## 2236 0.14806335 0.45296167 0.10667727 0.14969714
## 2237 0.14806335 0.09932349 0.09814869 0.14969714
## 2238 0.05072162 0.06243174 0.11410336 0.14969714
## 2239 0.14806335 0.06243174 0.12152375 0.14969714
## 2240 0.14806335 0.06243174 0.10667727 0.14969714
## 2241 0.14806335 0.06243174 0.11410336 0.14969714
## 2242 0.14806335 0.21582397 0.10667727 0.14969714
## 2243 0.14806335 0.06243174 0.11410336 0.14969714
## 2244 0.14806335 0.06243174 0.11410336 0.14969714
## 2245 0.14806335 0.09932349 0.11410336 0.14969714
## 2246 0.14806335 0.06243174 0.12272101 0.14969714
## 2247 0.14806335 0.09932349 0.12272101 0.14969714
## 2248 0.14806335 0.06243174 0.12152375 0.14969714
## 2249 0.14806335 0.06243174 0.12272101 0.14969714
## 2250 0.14806335 0.45296167 0.09814869 0.14969714
## 2251 0.14806335 0.09932349 0.11410336 0.14969714
## 2252 0.05072162 0.43750000 0.12272101 0.14969714
## 2253 0.14806335 0.06243174 0.09814869 0.14969714
## 2254 0.14806335 0.09932349 0.11410336 0.14969714
## 2255 0.14806335 0.06243174 0.09814869 0.14969714
## 2256 0.14806335 0.06243174 0.12152375 0.14969714
## 2257 0.14806335 0.48076923 0.09814869 0.14969714
## 2258 0.05072162 0.09932349 0.12152375 0.14969714
## 2259 0.14806335 0.43750000 0.12152375 0.14969714
## 2260 0.14806335 0.09932349 0.11410336 0.14969714
## 2261 0.14806335 0.06243174 0.10667727 0.14969714
## 2262 0.14806335 0.06243174 0.11410336 0.14969714
## 2263 0.14806335 0.06243174 0.10667727 0.14969714
## 2264 0.05072162 0.06243174 0.10667727 0.14969714
## 2265 0.14806335 0.09932349 0.10667727 0.14969714
## 2266 0.14806335 0.06243174 0.12272101 0.14969714
## 2267 0.14806335 0.10363527 0.12272101 0.14969714
## 2268 0.14806335 0.06243174 0.12272101 0.14969714
## 2269 0.14806335 0.21582397 0.12272101 0.14969714
## 2270 0.14806335 0.06243174 0.10667727 0.14969714
## 2271 0.14806335 0.51535088 0.11410336 0.14969714
## 2272 0.14806335 0.06243174 0.12272101 0.14969714
## 2273 0.14806335 0.09932349 0.10667727 0.14969714
## 2274 0.14806335 0.21582397 0.12152375 0.14969714
## 2275 0.14806335 0.06243174 0.12152375 0.14969714
## 2276 0.05072162 0.06243174 0.12152375 0.14969714
## 2277 0.14806335 0.06243174 0.09814869 0.14969714
## 2278 0.14806335 0.06243174 0.12272101 0.14969714
## 2279 0.14806335 0.06243174 0.12272101 0.14969714
## 2280 0.14806335 0.09932349 0.12152375 0.14969714
## 2281 0.14806335 0.43750000 0.12152375 0.14969714
## 2282 0.14806335 0.06243174 0.10667727 0.14969714
## 2283 0.14806335 0.09932349 0.11410336 0.14969714
## 2284 0.14806335 0.06243174 0.10667727 0.14969714
## 2285 0.14806335 0.09932349 0.11410336 0.14969714
## 2286 0.14806335 0.06243174 0.12152375 0.14969714
## 2287 0.14806335 0.06243174 0.12152375 0.14969714
## 2288 0.14806335 0.09932349 0.12272101 0.14969714
## 2289 0.14806335 0.43750000 0.12272101 0.14969714
## 2290 0.14806335 0.09293746 0.10667727 0.14969714
## 2291 0.14806335 0.51535088 0.12152375 0.14969714
## 2292 0.05072162 0.21582397 0.10667727 0.14969714
## 2293 0.14806335 0.09932349 0.11410336 0.14969714
## 2294 0.14806335 0.06243174 0.11410336 0.14969714
## 2295 0.14806335 0.21582397 0.09814869 0.14969714
## 2296 0.14806335 0.06243174 0.10667727 0.14969714
## 2297 0.14806335 0.09967090 0.11410336 0.14969714
## 2298 0.14806335 0.09293746 0.10667727 0.14969714
## 2299 0.05072162 0.06243174 0.09814869 0.14969714
## 2300 0.14806335 0.06243174 0.10667727 0.14969714
## 2301 0.14806335 0.09932349 0.09814869 0.14969714
## 2302 0.14806335 0.09932349 0.11410336 0.14969714
## 2303 0.14806335 0.51535088 0.09814869 0.14969714
## 2304 0.14806335 0.10363527 0.11410336 0.14969714
## 2305 0.14806335 0.43750000 0.12272101 0.14969714
## 2306 0.14806335 0.06243174 0.10667727 0.14969714
## 2307 0.14806335 0.06243174 0.09814869 0.14969714
## 2308 0.14806335 0.21582397 0.09814869 0.14969714
## 2309 0.14806335 0.06243174 0.09814869 0.14969714
## 2310 0.05072162 0.06243174 0.10667727 0.14969714
## 2311 0.14806335 0.06243174 0.12152375 0.14969714
## 2312 0.14806335 0.09293746 0.12152375 0.14969714
## 2313 0.14806335 0.06243174 0.10667727 0.14969714
## 2314 0.14806335 0.09293746 0.09814869 0.14969714
## 2315 0.14806335 0.06243174 0.11410336 0.14969714
## 2316 0.14806335 0.06243174 0.12152375 0.14969714
## 2317 0.14806335 0.06243174 0.11410336 0.14969714
## 2318 0.14806335 0.21582397 0.12152375 0.14969714
## 2319 0.05072162 0.09967090 0.10667727 0.14969714
## 2320 0.05072162 0.06243174 0.12272101 0.14969714
## 2321 0.14806335 0.21582397 0.10667727 0.14969714
## 2322 0.14806335 0.09932349 0.09814869 0.14969714
## 2323 0.14806335 0.21582397 0.12152375 0.14969714
## 2324 0.14806335 0.06243174 0.12152375 0.14969714
## 2325 0.14806335 0.51535088 0.10667727 0.14969714
## 2326 0.14806335 0.43750000 0.12152375 0.14969714
## 2327 0.14806335 0.21582397 0.10667727 0.14969714
## 2328 0.14806335 0.06243174 0.09814869 0.14969714
## 2329 0.14806335 0.06243174 0.12272101 0.14969714
## 2330 0.14806335 0.43750000 0.12152375 0.14969714
## 2331 0.14806335 0.21582397 0.11410336 0.14969714
## 2332 0.14806335 0.10363527 0.12272101 0.14969714
## 2333 0.14806335 0.10363527 0.12272101 0.14969714
## 2334 0.14806335 0.06243174 0.12152375 0.14969714
## 2335 0.14806335 0.06243174 0.12272101 0.14969714
## 2336 0.14806335 0.06243174 0.10667727 0.14969714
## 2337 0.14806335 0.06243174 0.12152375 0.14969714
## 2338 0.14806335 0.09932349 0.11410336 0.14969714
## 2339 0.14806335 0.06243174 0.09814869 0.14969714
## 2340 0.14806335 0.06243174 0.09814869 0.14969714
## 2341 0.14806335 0.06243174 0.12152375 0.14969714
## 2342 0.14806335 0.06243174 0.09814869 0.14969714
## 2343 0.14806335 0.06243174 0.12152375 0.14969714
## 2344 0.14806335 0.21582397 0.09814869 0.14969714
## 2345 0.14806335 0.06243174 0.12272101 0.14969714
## 2346 0.14806335 0.06243174 0.09814869 0.14969714
## 2347 0.14806335 0.21582397 0.11410336 0.14969714
## 2348 0.14806335 0.09932349 0.12152375 0.14969714
## 2349 0.14806335 0.06243174 0.10667727 0.14969714
## 2350 0.14806335 0.45296167 0.11410336 0.14969714
## 2351 0.14806335 0.09967090 0.11410336 0.14969714
## 2352 0.14806335 0.21582397 0.12152375 0.14969714
## 2353 0.14806335 0.21582397 0.10667727 0.14969714
## 2354 0.14806335 0.06243174 0.10667727 0.14969714
## 2355 0.05072162 0.09932349 0.12272101 0.14969714
## 2356 0.14806335 0.06243174 0.11410336 0.14969714
## 2357 0.14806335 0.09932349 0.10667727 0.14969714
## 2358 0.14806335 0.51535088 0.11410336 0.14969714
## 2359 0.05072162 0.06243174 0.09814869 0.14969714
## 2360 0.14806335 0.21582397 0.12272101 0.14969714
## 2361 0.14806335 0.09967090 0.11410336 0.14969714
## 2362 0.14806335 0.09967090 0.12272101 0.14969714
## 2363 0.14806335 0.06243174 0.12272101 0.14969714
## 2364 0.14806335 0.06243174 0.10667727 0.14969714
## 2365 0.14806335 0.45296167 0.09814869 0.14969714
## 2366 0.14806335 0.45296167 0.11410336 0.14969714
## 2367 0.14806335 0.09932349 0.10667727 0.14969714
## 2368 0.14806335 0.06243174 0.11410336 0.14969714
## 2369 0.14806335 0.09932349 0.10667727 0.14969714
## 2370 0.14806335 0.09932349 0.09814869 0.14969714
## 2371 0.14806335 0.09932349 0.12152375 0.14969714
## 2372 0.14806335 0.09932349 0.09814869 0.14969714
## 2373 0.14806335 0.06243174 0.11410336 0.14969714
## 2374 0.14806335 0.21582397 0.12152375 0.14969714
## 2375 0.14806335 0.10363527 0.12152375 0.14969714
## 2376 0.14806335 0.06243174 0.12152375 0.14969714
## 2377 0.14806335 0.09932349 0.12152375 0.14969714
## 2378 0.14806335 0.45296167 0.12272101 0.14969714
## 2379 0.14806335 0.21582397 0.09814869 0.14969714
## 2380 0.14806335 0.21582397 0.11410336 0.14969714
## 2381 0.14806335 0.09932349 0.12272101 0.14969714
## 2382 0.14806335 0.06243174 0.12152375 0.14969714
## 2383 0.14806335 0.06243174 0.11410336 0.14969714
## 2384 0.14806335 0.09932349 0.12152375 0.14969714
## 2385 0.14806335 0.09932349 0.09814869 0.14969714
## 2386 0.14806335 0.06243174 0.12272101 0.14969714
## 2387 0.14806335 0.09932349 0.11410336 0.14969714
## 2388 0.14806335 0.09932349 0.09814869 0.14969714
## 2389 0.14806335 0.09932349 0.11410336 0.14969714
## 2390 0.14806335 0.06243174 0.12272101 0.14969714
## 2391 0.14806335 0.06243174 0.12152375 0.14969714
## 2392 0.14806335 0.43750000 0.12272101 0.14969714
## 2393 0.14806335 0.06243174 0.11410336 0.14969714
## 2394 0.14806335 0.45296167 0.09814869 0.14969714
## 2395 0.14806335 0.21582397 0.12152375 0.14969714
## 2396 0.14806335 0.09293746 0.09814869 0.14969714
## 2397 0.14806335 0.06243174 0.10667727 0.14969714
## 2398 0.14806335 0.06243174 0.10667727 0.14969714
## 2399 0.14806335 0.06243174 0.10667727 0.14969714
## 2400 0.14806335 0.51535088 0.09814869 0.14969714
## 2401 0.14806335 0.06243174 0.12152375 0.14969714
## 2402 0.05072162 0.06243174 0.10667727 0.14969714
## 2403 0.14806335 0.21582397 0.12152375 0.14969714
## 2404 0.14806335 0.06243174 0.12272101 0.14969714
## 2405 0.14806335 0.06243174 0.11410336 0.14969714
## 2406 0.14806335 0.21582397 0.10667727 0.14969714
## 2407 0.14806335 0.09932349 0.12272101 0.14969714
## 2408 0.14806335 0.06243174 0.12272101 0.14969714
## 2409 0.14806335 0.21582397 0.12272101 0.14969714
## 2410 0.14806335 0.21582397 0.12152375 0.14969714
## 2411 0.14806335 0.45296167 0.10667727 0.14969714
## 2412 0.14806335 0.21582397 0.09814869 0.14969714
## 2413 0.14806335 0.06243174 0.12272101 0.14969714
## 2414 0.14806335 0.09932349 0.11410336 0.14969714
## 2415 0.14806335 0.10363527 0.12272101 0.14969714
## 2416 0.14806335 0.51535088 0.09814869 0.14969714
## 2417 0.14806335 0.06243174 0.12272101 0.14969714
## 2418 0.14806335 0.21582397 0.10667727 0.14969714
## 2419 0.14806335 0.06243174 0.12272101 0.14969714
## 2420 0.14806335 0.09293746 0.11410336 0.14969714
## 2421 0.05072162 0.06243174 0.11410336 0.14969714
## 2422 0.14806335 0.06243174 0.12152375 0.14969714
## 2423 0.05072162 0.09967090 0.12272101 0.14969714
## 2424 0.14806335 0.06243174 0.11410336 0.14969714
## 2425 0.14806335 0.06243174 0.12152375 0.14969714
## 2426 0.14806335 0.06243174 0.12272101 0.14969714
## 2427 0.14806335 0.21582397 0.09814869 0.14969714
## 2428 0.14806335 0.09932349 0.12152375 0.14969714
## 2429 0.14806335 0.06243174 0.10667727 0.14969714
## 2430 0.14806335 0.09932349 0.09814869 0.14969714
## 2431 0.14806335 0.45296167 0.12152375 0.14969714
## 2432 0.14806335 0.06243174 0.11410336 0.14969714
## 2433 0.14806335 0.06243174 0.10667727 0.14969714
## 2434 0.14806335 0.06243174 0.12272101 0.14969714
## 2435 0.14806335 0.10363527 0.10667727 0.14969714
## 2436 0.14806335 0.06243174 0.12152375 0.14969714
## 2437 0.14806335 0.09932349 0.09814869 0.14969714
## 2438 0.14806335 0.06243174 0.09814869 0.14969714
## 2439 0.14806335 0.06243174 0.10667727 0.14969714
## 2440 0.14806335 0.06243174 0.12272101 0.14969714
## 2441 0.14806335 0.06243174 0.12272101 0.14969714
## 2442 0.14806335 0.09932349 0.09814869 0.14969714
## 2443 0.05072162 0.43750000 0.09814869 0.14969714
## 2444 0.14806335 0.06243174 0.12272101 0.14969714
## 2445 0.14806335 0.45296167 0.11410336 0.14969714
## 2446 0.14806335 0.06243174 0.12272101 0.14969714
## 2447 0.14806335 0.06243174 0.09814869 0.14969714
## 2448 0.14806335 0.45296167 0.09814869 0.14969714
## 2449 0.14806335 0.06243174 0.09814869 0.14969714
## 2450 0.14806335 0.51535088 0.09814869 0.14969714
## 2451 0.14806335 0.06243174 0.12152375 0.14969714
## 2452 0.14806335 0.06243174 0.09814869 0.14969714
## 2453 0.14806335 0.21582397 0.10667727 0.14969714
## 2454 0.14806335 0.21582397 0.10667727 0.14969714
## 2455 0.14806335 0.10363527 0.09814869 0.14969714
## 2456 0.14806335 0.06243174 0.10667727 0.14969714
## 2457 0.14806335 0.06243174 0.11410336 0.14969714
## 2458 0.14806335 0.09967090 0.09814869 0.14969714
## 2459 0.14806335 0.09967090 0.11410336 0.14969714
## 2460 0.14806335 0.06243174 0.09814869 0.14969714
## 2461 0.14806335 0.06243174 0.12152375 0.14969714
## 2462 0.14806335 0.09967090 0.09814869 0.14969714
## 2463 0.14806335 0.09932349 0.09814869 0.14969714
## 2464 0.14806335 0.09932349 0.12152375 0.14969714
## 2465 0.14806335 0.06243174 0.12152375 0.14969714
## 2466 0.14806335 0.09967090 0.10667727 0.14969714
## 2467 0.14806335 0.06243174 0.10667727 0.14969714
## 2468 0.14806335 0.06243174 0.11410336 0.14969714
## 2469 0.14806335 0.10363527 0.12272101 0.14969714
## 2470 0.14806335 0.09932349 0.09814869 0.14969714
## 2471 0.14806335 0.09932349 0.10667727 0.14969714
## 2472 0.14806335 0.09932349 0.11410336 0.14969714
## 2473 0.14806335 0.06243174 0.12152375 0.14969714
## 2474 0.14806335 0.21582397 0.11410336 0.14969714
## 2475 0.14806335 0.21582397 0.09814869 0.14969714
## 2476 0.14806335 0.21582397 0.10667727 0.14969714
## 2477 0.14806335 0.06243174 0.12272101 0.14969714
## 2478 0.14806335 0.06243174 0.09814869 0.14969714
## 2479 0.14806335 0.06243174 0.09814869 0.14969714
## 2480 0.14806335 0.21582397 0.09814869 0.14969714
## 2481 0.14806335 0.06243174 0.10667727 0.14969714
## 2482 0.14806335 0.06243174 0.11410336 0.14969714
## 2483 0.05072162 0.45296167 0.12152375 0.14969714
## 2484 0.14806335 0.21582397 0.10667727 0.14969714
## 2485 0.14806335 0.21582397 0.12272101 0.14969714
## 2486 0.14806335 0.10363527 0.10667727 0.14969714
## 2487 0.14806335 0.09932349 0.09814869 0.14969714
## 2488 0.14806335 0.10363527 0.12152375 0.14969714
## 2489 0.14806335 0.06243174 0.11410336 0.14969714
## 2490 0.14806335 0.10363527 0.10667727 0.14969714
## 2491 0.14806335 0.21582397 0.11410336 0.14969714
## 2492 0.14806335 0.21582397 0.10667727 0.14969714
## 2493 0.14806335 0.09932349 0.10667727 0.14969714
## 2494 0.14806335 0.45296167 0.09814869 0.14969714
## 2495 0.14806335 0.06243174 0.12272101 0.14969714
## 2496 0.14806335 0.48076923 0.09814869 0.14969714
## 2497 0.14806335 0.45296167 0.12152375 0.14969714
## 2498 0.14806335 0.06243174 0.12272101 0.14969714
## 2499 0.14806335 0.09932349 0.12272101 0.14969714
## 2500 0.14806335 0.06243174 0.12272101 0.14969714
## 2501 0.14806335 0.09932349 0.12272101 0.14969714
## 2502 0.14806335 0.09967090 0.10667727 0.14969714
## 2503 0.14806335 0.06243174 0.10667727 0.14969714
## 2504 0.14806335 0.43750000 0.12272101 0.14969714
## 2505 0.14806335 0.06243174 0.12152375 0.14969714
## 2506 0.14806335 0.06243174 0.12272101 0.14969714
## 2507 0.14806335 0.09967090 0.12272101 0.14969714
## 2508 0.14806335 0.09932349 0.10667727 0.14969714
## 2509 0.14806335 0.09932349 0.12272101 0.14969714
## 2510 0.14806335 0.21582397 0.11410336 0.14969714
## 2511 0.14806335 0.06243174 0.12152375 0.14969714
## 2512 0.14806335 0.09932349 0.10667727 0.14969714
## 2513 0.14806335 0.21582397 0.10667727 0.14969714
## 2514 0.14806335 0.06243174 0.11410336 0.14969714
## 2515 0.14806335 0.06243174 0.12272101 0.14969714
## 2516 0.14806335 0.06243174 0.11410336 0.14969714
## 2517 0.14806335 0.09293746 0.09814869 0.14969714
## 2518 0.05072162 0.21582397 0.11410336 0.14969714
## 2519 0.14806335 0.06243174 0.12152375 0.14969714
## 2520 0.14806335 0.09932349 0.12272101 0.14969714
## 2521 0.14806335 0.06243174 0.12272101 0.14969714
## 2522 0.14806335 0.09932349 0.11410336 0.14969714
## 2523 0.14806335 0.10363527 0.11410336 0.14969714
## 2524 0.14806335 0.06243174 0.12152375 0.14969714
## 2525 0.14806335 0.09932349 0.11410336 0.14969714
## 2526 0.14806335 0.09932349 0.09814869 0.14969714
## 2527 0.14806335 0.06243174 0.10667727 0.14969714
## 2528 0.05072162 0.09293746 0.11410336 0.14969714
## 2529 0.14806335 0.06243174 0.12152375 0.14969714
## 2530 0.14806335 0.09967090 0.11410336 0.14969714
## 2531 0.14806335 0.09293746 0.12272101 0.14969714
## 2532 0.14806335 0.09932349 0.12272101 0.14969714
## 2533 0.14806335 0.10363527 0.12272101 0.14969714
## 2534 0.14806335 0.06243174 0.09814869 0.14969714
## 2535 0.14806335 0.06243174 0.12152375 0.14969714
## 2536 0.05072162 0.06243174 0.12272101 0.14969714
## 2537 0.14806335 0.21582397 0.09814869 0.14969714
## 2538 0.14806335 0.06243174 0.11410336 0.14969714
## 2539 0.14806335 0.09293746 0.12152375 0.14969714
## 2540 0.14806335 0.06243174 0.09814869 0.14969714
## 2541 0.14806335 0.09967090 0.11410336 0.14969714
## 2542 0.14806335 0.45296167 0.12272101 0.14969714
## 2543 0.14806335 0.21582397 0.09814869 0.14969714
## 2544 0.14806335 0.45296167 0.09814869 0.14969714
## 2545 0.14806335 0.06243174 0.12152375 0.14969714
## 2546 0.05072162 0.06243174 0.11410336 0.14969714
## 2547 0.14806335 0.06243174 0.12272101 0.14969714
## 2548 0.14806335 0.10363527 0.10667727 0.14969714
## 2549 0.14806335 0.06243174 0.09814869 0.14969714
## 2550 0.14806335 0.06243174 0.12152375 0.14969714
## 2551 0.14806335 0.06243174 0.09814869 0.14969714
## 2552 0.14806335 0.09932349 0.11410336 0.14969714
## 2553 0.14806335 0.06243174 0.12272101 0.14969714
## 2554 0.14806335 0.45296167 0.10667727 0.14969714
## 2555 0.14806335 0.21582397 0.10667727 0.14969714
## 2556 0.14806335 0.09967090 0.09814869 0.14969714
## 2557 0.14806335 0.09932349 0.10667727 0.14969714
## 2558 0.14806335 0.09932349 0.12152375 0.14969714
## 2559 0.14806335 0.21582397 0.11410336 0.14969714
## 2560 0.14806335 0.06243174 0.11410336 0.14969714
## 2561 0.14806335 0.06243174 0.11410336 0.14969714
## 2562 0.14806335 0.21582397 0.11410336 0.14969714
## 2563 0.14806335 0.09932349 0.12272101 0.14969714
## 2564 0.14806335 0.45296167 0.12272101 0.14969714
## 2565 0.14806335 0.10363527 0.12272101 0.14969714
## 2566 0.14806335 0.10363527 0.11410336 0.14969714
## 2567 0.05072162 0.10363527 0.11410336 0.14969714
## 2568 0.05072162 0.09932349 0.09814869 0.14969714
## 2569 0.14806335 0.45296167 0.11410336 0.14969714
## 2570 0.14806335 0.09932349 0.10667727 0.14969714
## 2571 0.14806335 0.09967090 0.12272101 0.14969714
## 2572 0.14806335 0.21582397 0.10667727 0.14969714
## 2573 0.14806335 0.09932349 0.09814869 0.14969714
## 2574 0.14806335 0.09293746 0.11410336 0.14969714
## 2575 0.14806335 0.06243174 0.11410336 0.14969714
## 2576 0.14806335 0.09932349 0.12272101 0.14969714
## 2577 0.14806335 0.06243174 0.11410336 0.14969714
## 2578 0.14806335 0.06243174 0.12272101 0.14969714
## 2579 0.14806335 0.09932349 0.12272101 0.14969714
## 2580 0.14806335 0.06243174 0.12152375 0.14969714
## 2581 0.14806335 0.06243174 0.11410336 0.14969714
## 2582 0.14806335 0.09932349 0.12272101 0.14969714
## 2583 0.14806335 0.06243174 0.10667727 0.14969714
## 2584 0.14806335 0.09932349 0.11410336 0.14969714
## 2585 0.14806335 0.43750000 0.11410336 0.14969714
## 2586 0.14806335 0.21582397 0.09814869 0.14969714
## 2587 0.14806335 0.06243174 0.12272101 0.14969714
## 2588 0.14806335 0.09932349 0.12272101 0.14969714
## 2589 0.14806335 0.06243174 0.12272101 0.14969714
## 2590 0.14806335 0.10363527 0.10667727 0.14969714
## 2591 0.14806335 0.48076923 0.12272101 0.14969714
## 2592 0.05072162 0.09932349 0.09814869 0.14969714
## 2593 0.14806335 0.09932349 0.10667727 0.14969714
## 2594 0.14806335 0.21582397 0.10667727 0.14969714
## 2595 0.05072162 0.09932349 0.12152375 0.14969714
## 2596 0.14806335 0.06243174 0.12272101 0.14969714
## 2597 0.14806335 0.09932349 0.10667727 0.14969714
## 2598 0.14806335 0.06243174 0.12152375 0.14969714
## 2599 0.14806335 0.09932349 0.09814869 0.14969714
## 2600 0.14806335 0.06243174 0.12272101 0.14969714
## 2601 0.14806335 0.09932349 0.12152375 0.14969714
## 2602 0.14806335 0.06243174 0.11410336 0.14969714
## 2603 0.14806335 0.09932349 0.09814869 0.14969714
## 2604 0.14806335 0.06243174 0.09814869 0.14969714
## 2605 0.14806335 0.09932349 0.11410336 0.14969714
## 2606 0.14806335 0.09932349 0.12272101 0.14969714
## 2607 0.05072162 0.06243174 0.11410336 0.14969714
## 2608 0.14806335 0.06243174 0.12272101 0.14969714
## 2609 0.14806335 0.09967090 0.09814869 0.14969714
## 2610 0.14806335 0.09932349 0.09814869 0.14969714
## 2611 0.14806335 0.21582397 0.12152375 0.14969714
## 2612 0.14806335 0.06243174 0.12272101 0.14969714
## 2613 0.14806335 0.21582397 0.10667727 0.14969714
## 2614 0.14806335 0.21582397 0.12152375 0.14969714
## 2615 0.14806335 0.06243174 0.11410336 0.14969714
## 2616 0.14806335 0.06243174 0.09814869 0.14969714
## 2617 0.14806335 0.09967090 0.09814869 0.14969714
## 2618 0.14806335 0.21582397 0.12152375 0.14969714
## 2619 0.14806335 0.09932349 0.12272101 0.14969714
## 2620 0.14806335 0.10363527 0.11410336 0.14969714
## 2621 0.14806335 0.10363527 0.11410336 0.14969714
## 2622 0.14806335 0.06243174 0.10667727 0.14969714
## 2623 0.14806335 0.06243174 0.12152375 0.14969714
## 2624 0.14806335 0.06243174 0.12272101 0.14969714
## 2625 0.14806335 0.06243174 0.10667727 0.14969714
## 2626 0.14806335 0.06243174 0.10667727 0.14969714
## 2627 0.14806335 0.09932349 0.12272101 0.14969714
## 2628 0.14806335 0.21582397 0.12272101 0.14969714
## 2629 0.14806335 0.10363527 0.12152375 0.14969714
## 2630 0.14806335 0.09967090 0.09814869 0.14969714
## 2631 0.14806335 0.09932349 0.12272101 0.14969714
## 2632 0.14806335 0.09932349 0.11410336 0.14969714
## 2633 0.14806335 0.09932349 0.12152375 0.14969714
## 2634 0.14806335 0.06243174 0.12272101 0.14969714
## 2635 0.14806335 0.06243174 0.10667727 0.14969714
## 2636 0.14806335 0.21582397 0.11410336 0.14969714
## 2637 0.14806335 0.06243174 0.11410336 0.14969714
## 2638 0.14806335 0.06243174 0.10667727 0.14969714
## 2639 0.14806335 0.06243174 0.12152375 0.14969714
## 2640 0.14806335 0.21582397 0.09814869 0.14969714
## 2641 0.14806335 0.21582397 0.10667727 0.14969714
## 2642 0.14806335 0.06243174 0.10667727 0.14969714
## 2643 0.14806335 0.21582397 0.11410336 0.14969714
## 2644 0.14806335 0.09932349 0.12152375 0.14969714
## 2645 0.14806335 0.06243174 0.12152375 0.14969714
## 2646 0.14806335 0.06243174 0.12272101 0.14969714
## 2647 0.14806335 0.06243174 0.12272101 0.14969714
## 2648 0.05072162 0.21582397 0.09814869 0.14969714
## 2649 0.14806335 0.10363527 0.09814869 0.14969714
## 2650 0.14806335 0.21582397 0.12152375 0.14969714
## 2651 0.14806335 0.06243174 0.12152375 0.14969714
## 2652 0.14806335 0.21582397 0.09814869 0.14969714
## 2653 0.14806335 0.10363527 0.10667727 0.14969714
## 2654 0.14806335 0.09932349 0.09814869 0.14969714
## 2655 0.14806335 0.09967090 0.10667727 0.14969714
## 2656 0.14806335 0.06243174 0.12152375 0.14969714
## 2657 0.14806335 0.09932349 0.10667727 0.14969714
## 2658 0.14806335 0.09932349 0.11410336 0.14969714
## 2659 0.14806335 0.06243174 0.10667727 0.14969714
## 2660 0.14806335 0.09932349 0.12272101 0.14969714
## 2661 0.14806335 0.21582397 0.12272101 0.14969714
## 2662 0.14806335 0.51535088 0.11410336 0.14969714
## 2663 0.14806335 0.21582397 0.12152375 0.14969714
## 2664 0.14806335 0.21582397 0.10667727 0.14969714
## 2665 0.14806335 0.06243174 0.12152375 0.14969714
## 2666 0.14806335 0.09932349 0.12272101 0.14969714
## 2667 0.14806335 0.21582397 0.12272101 0.14969714
## 2668 0.14806335 0.21582397 0.10667727 0.14969714
## 2669 0.14806335 0.09932349 0.11410336 0.14969714
## 2670 0.14806335 0.09293746 0.10667727 0.14969714
## 2671 0.14806335 0.06243174 0.09814869 0.14969714
## 2672 0.14806335 0.09932349 0.12272101 0.14969714
## 2673 0.14806335 0.10363527 0.09814869 0.14969714
## 2674 0.14806335 0.21582397 0.12152375 0.14969714
## 2675 0.14806335 0.06243174 0.12272101 0.14969714
## 2676 0.14806335 0.06243174 0.12272101 0.14969714
## 2677 0.14806335 0.06243174 0.12272101 0.14969714
## 2678 0.14806335 0.43750000 0.12272101 0.14969714
## 2679 0.14806335 0.45296167 0.12272101 0.14969714
## 2680 0.14806335 0.09932349 0.12272101 0.14969714
## 2681 0.14806335 0.06243174 0.10667727 0.14969714
## 2682 0.14806335 0.06243174 0.12272101 0.14969714
## 2683 0.14806335 0.21582397 0.10667727 0.14969714
## 2684 0.05072162 0.06243174 0.12152375 0.14969714
## 2685 0.14806335 0.09932349 0.10667727 0.14969714
## 2686 0.14806335 0.21582397 0.10667727 0.14969714
## 2687 0.14806335 0.06243174 0.12272101 0.14969714
## 2688 0.14806335 0.06243174 0.12272101 0.14969714
## 2689 0.14806335 0.09932349 0.11410336 0.14969714
## 2690 0.14806335 0.09932349 0.11410336 0.14969714
## 2691 0.14806335 0.45296167 0.12152375 0.14969714
## 2692 0.14806335 0.10363527 0.11410336 0.14969714
## 2693 0.14806335 0.10363527 0.10667727 0.14969714
## 2694 0.14806335 0.06243174 0.12152375 0.14969714
## 2695 0.14806335 0.06243174 0.09814869 0.14969714
## 2696 0.14806335 0.06243174 0.11410336 0.14969714
## 2697 0.14806335 0.09932349 0.12272101 0.14969714
## 2698 0.14806335 0.06243174 0.12152375 0.14969714
## 2699 0.14806335 0.06243174 0.12272101 0.14969714
## 2700 0.14806335 0.06243174 0.11410336 0.14969714
## 2701 0.05072162 0.06243174 0.12152375 0.14969714
## 2702 0.14806335 0.09932349 0.12272101 0.14969714
## 2703 0.14806335 0.06243174 0.09814869 0.14969714
## 2704 0.14806335 0.09932349 0.09814869 0.14969714
## 2705 0.14806335 0.06243174 0.10667727 0.14969714
## 2706 0.14806335 0.06243174 0.12272101 0.14969714
## 2707 0.14806335 0.06243174 0.12272101 0.14969714
## 2708 0.14806335 0.06243174 0.10667727 0.14969714
## 2709 0.14806335 0.06243174 0.10667727 0.14969714
## 2710 0.14806335 0.06243174 0.12272101 0.14969714
## 2711 0.14806335 0.21582397 0.09814869 0.14969714
## 2712 0.14806335 0.10363527 0.11410336 0.14969714
## 2713 0.14806335 0.45296167 0.12152375 0.14969714
## 2714 0.14806335 0.21582397 0.09814869 0.14969714
## 2715 0.14806335 0.09932349 0.12152375 0.14969714
## 2716 0.14806335 0.09932349 0.12272101 0.14969714
## 2717 0.14806335 0.06243174 0.10667727 0.14969714
## 2718 0.14806335 0.06243174 0.12152375 0.14969714
## 2719 0.14806335 0.09932349 0.12152375 0.14969714
## 2720 0.05072162 0.51535088 0.09814869 0.14969714
## 2721 0.14806335 0.06243174 0.12272101 0.14969714
## 2722 0.14806335 0.09932349 0.09814869 0.14969714
## 2723 0.14806335 0.06243174 0.10667727 0.14969714
## 2724 0.14806335 0.06243174 0.09814869 0.14969714
## 2725 0.14806335 0.21582397 0.12152375 0.14969714
## 2726 0.14806335 0.06243174 0.12272101 0.14969714
## 2727 0.14806335 0.06243174 0.09814869 0.14969714
## 2728 0.14806335 0.06243174 0.11410336 0.14969714
## 2729 0.14806335 0.09967090 0.12152375 0.14969714
## 2730 0.14806335 0.06243174 0.12272101 0.14969714
## 2731 0.05072162 0.06243174 0.12272101 0.14969714
## 2732 0.05072162 0.09932349 0.09814869 0.14969714
## 2733 0.14806335 0.10363527 0.09814869 0.14969714
## 2734 0.14806335 0.09932349 0.12152375 0.14969714
## 2735 0.14806335 0.09293746 0.12272101 0.14969714
## 2736 0.14806335 0.45296167 0.12152375 0.14969714
## 2737 0.14806335 0.06243174 0.11410336 0.14969714
## 2738 0.14806335 0.09932349 0.12152375 0.14969714
## 2739 0.14806335 0.06243174 0.12152375 0.14969714
## 2740 0.14806335 0.51535088 0.09814869 0.14969714
## 2741 0.14806335 0.09967090 0.10667727 0.14969714
## 2742 0.14806335 0.09932349 0.10667727 0.14969714
## 2743 0.14806335 0.06243174 0.12272101 0.14969714
## 2744 0.14806335 0.06243174 0.12272101 0.14969714
## 2745 0.05072162 0.09932349 0.10667727 0.14969714
## 2746 0.14806335 0.45296167 0.11410336 0.14969714
## 2747 0.14806335 0.21582397 0.12272101 0.14969714
## 2748 0.14806335 0.10363527 0.10667727 0.14969714
## 2749 0.14806335 0.43750000 0.12272101 0.14969714
## 2750 0.14806335 0.21582397 0.09814869 0.14969714
## 2751 0.14806335 0.09932349 0.12272101 0.14969714
## 2752 0.14806335 0.06243174 0.09814869 0.14969714
## 2753 0.14806335 0.06243174 0.12272101 0.14969714
## 2754 0.14806335 0.06243174 0.09814869 0.14969714
## 2755 0.14806335 0.06243174 0.12152375 0.14969714
## 2756 0.14806335 0.09932349 0.11410336 0.14969714
## 2757 0.14806335 0.06243174 0.12152375 0.14969714
## 2758 0.14806335 0.09932349 0.11410336 0.14969714
## 2759 0.14806335 0.06243174 0.11410336 0.14969714
## 2760 0.14806335 0.09932349 0.12152375 0.14969714
## 2761 0.05072162 0.10363527 0.11410336 0.14969714
## 2762 0.14806335 0.21582397 0.12152375 0.14969714
## 2763 0.14806335 0.45296167 0.12272101 0.14969714
## 2764 0.14806335 0.09967090 0.12152375 0.14969714
## 2765 0.14806335 0.06243174 0.11410336 0.14969714
## 2766 0.14806335 0.06243174 0.11410336 0.14969714
## 2767 0.14806335 0.06243174 0.10667727 0.14969714
## 2768 0.14806335 0.43750000 0.12272101 0.14969714
## 2769 0.14806335 0.21582397 0.11410336 0.14969714
## 2770 0.14806335 0.10363527 0.09814869 0.14969714
## 2771 0.14806335 0.06243174 0.10667727 0.14969714
## 2772 0.14806335 0.21582397 0.10667727 0.14969714
## 2773 0.14806335 0.06243174 0.09814869 0.14969714
## 2774 0.14806335 0.10363527 0.11410336 0.14969714
## 2775 0.14806335 0.09932349 0.09814869 0.14969714
## 2776 0.14806335 0.21582397 0.12152375 0.14969714
## 2777 0.14806335 0.06243174 0.10667727 0.14969714
## 2778 0.14806335 0.09293746 0.10667727 0.14969714
## 2779 0.14806335 0.21582397 0.12272101 0.14969714
## 2780 0.14806335 0.06243174 0.09814869 0.14969714
## 2781 0.14806335 0.21582397 0.09814869 0.14969714
## 2782 0.14806335 0.21582397 0.12152375 0.14969714
## 2783 0.14806335 0.06243174 0.11410336 0.14969714
## 2784 0.14806335 0.06243174 0.09814869 0.14969714
## 2785 0.14806335 0.06243174 0.10667727 0.14969714
## 2786 0.14806335 0.21582397 0.10667727 0.14969714
## 2787 0.05072162 0.06243174 0.11410336 0.14969714
## 2788 0.05072162 0.10363527 0.11410336 0.14969714
## 2789 0.14806335 0.09932349 0.12272101 0.14969714
## 2790 0.14806335 0.09932349 0.11410336 0.14969714
## 2791 0.14806335 0.51535088 0.11410336 0.14969714
## 2792 0.14806335 0.09932349 0.12272101 0.14969714
## 2793 0.14806335 0.06243174 0.12272101 0.14969714
## 2794 0.14806335 0.06243174 0.10667727 0.14969714
## 2795 0.14806335 0.06243174 0.09814869 0.14969714
## 2796 0.14806335 0.06243174 0.09814869 0.14969714
## 2797 0.14806335 0.09932349 0.12272101 0.14969714
## 2798 0.05072162 0.06243174 0.11410336 0.14969714
## 2799 0.14806335 0.06243174 0.12272101 0.14969714
## 2800 0.05072162 0.06243174 0.10667727 0.14969714
## 2801 0.14806335 0.09932349 0.11410336 0.14969714
## 2802 0.14806335 0.09967090 0.09814869 0.14969714
## 2803 0.14806335 0.51535088 0.11410336 0.14969714
## 2804 0.14806335 0.06243174 0.12272101 0.14969714
## 2805 0.14806335 0.43750000 0.09814869 0.14969714
## 2806 0.14806335 0.06243174 0.11410336 0.14969714
## 2807 0.14806335 0.06243174 0.09814869 0.14969714
## 2808 0.14806335 0.21582397 0.10667727 0.14969714
## 2809 0.14806335 0.45296167 0.11410336 0.14969714
## 2810 0.05072162 0.06243174 0.10667727 0.14969714
## 2811 0.14806335 0.06243174 0.12272101 0.14969714
## 2812 0.14806335 0.06243174 0.10667727 0.14969714
## 2813 0.14806335 0.09932349 0.09814869 0.14969714
## 2814 0.14806335 0.06243174 0.10667727 0.14969714
## 2815 0.14806335 0.06243174 0.10667727 0.14969714
## 2816 0.14806335 0.21582397 0.12272101 0.14969714
## 2817 0.14806335 0.09293746 0.11410336 0.14969714
## 2818 0.14806335 0.09932349 0.12272101 0.14969714
## 2819 0.14806335 0.06243174 0.10667727 0.14969714
## 2820 0.14806335 0.09932349 0.12152375 0.14969714
## 2821 0.14806335 0.09932349 0.12272101 0.14969714
## 2822 0.14806335 0.21582397 0.12152375 0.14969714
## 2823 0.14806335 0.45296167 0.11410336 0.14969714
## 2824 0.14806335 0.06243174 0.09814869 0.14969714
## 2825 0.14806335 0.21582397 0.12152375 0.14969714
## 2826 0.14806335 0.09932349 0.10667727 0.14969714
## 2827 0.14806335 0.09967090 0.11410336 0.14969714
## 2828 0.14806335 0.06243174 0.12272101 0.14969714
## 2829 0.14806335 0.21582397 0.12152375 0.14969714
## 2830 0.05072162 0.06243174 0.12272101 0.14969714
## 2831 0.14806335 0.21582397 0.11410336 0.14969714
## 2832 0.14806335 0.09932349 0.12272101 0.14969714
## 2833 0.05072162 0.09932349 0.10667727 0.14969714
## 2834 0.14806335 0.06243174 0.12272101 0.14969714
## 2835 0.14806335 0.06243174 0.09814869 0.14969714
## 2836 0.14806335 0.06243174 0.11410336 0.14969714
## 2837 0.14806335 0.09293746 0.10667727 0.14969714
## 2838 0.14806335 0.48076923 0.12152375 0.14969714
## 2839 0.14806335 0.09932349 0.12152375 0.14969714
## 2840 0.14806335 0.09967090 0.11410336 0.14969714
## 2841 0.14806335 0.06243174 0.10667727 0.14969714
## 2842 0.14806335 0.06243174 0.11410336 0.14969714
## 2843 0.14806335 0.09932349 0.09814869 0.14969714
## 2844 0.14806335 0.06243174 0.12152375 0.14969714
## 2845 0.14806335 0.06243174 0.10667727 0.14969714
## 2846 0.14806335 0.06243174 0.10667727 0.14969714
## 2847 0.14806335 0.06243174 0.11410336 0.14969714
## 2848 0.14806335 0.06243174 0.11410336 0.14969714
## 2849 0.14806335 0.06243174 0.10667727 0.14969714
## 2850 0.14806335 0.06243174 0.11410336 0.14969714
## 2851 0.14806335 0.21582397 0.12272101 0.14969714
## 2852 0.14806335 0.06243174 0.11410336 0.14969714
## 2853 0.14806335 0.06243174 0.12152375 0.14969714
## 2854 0.14806335 0.09932349 0.09814869 0.14969714
## 2855 0.14806335 0.21582397 0.12272101 0.14969714
## 2856 0.14806335 0.06243174 0.10667727 0.14969714
## 2857 0.14806335 0.06243174 0.09814869 0.14969714
## 2858 0.14806335 0.06243174 0.12272101 0.14969714
## 2859 0.14806335 0.06243174 0.10667727 0.14969714
## 2860 0.14806335 0.09932349 0.09814869 0.14969714
## 2861 0.14806335 0.06243174 0.09814869 0.14969714
## 2862 0.14806335 0.06243174 0.10667727 0.14969714
## 2863 0.14806335 0.06243174 0.09814869 0.14969714
## 2864 0.05072162 0.45296167 0.12272101 0.14969714
## 2865 0.14806335 0.09932349 0.12272101 0.14969714
## 2866 0.14806335 0.21582397 0.09814869 0.14969714
## 2867 0.14806335 0.21582397 0.10667727 0.14969714
## 2868 0.14806335 0.06243174 0.10667727 0.14969714
## 2869 0.14806335 0.06243174 0.11410336 0.14969714
## 2870 0.14806335 0.09932349 0.09814869 0.14969714
## 2871 0.14806335 0.21582397 0.12152375 0.14969714
## 2872 0.14806335 0.06243174 0.12152375 0.14969714
## 2873 0.14806335 0.21582397 0.09814869 0.14969714
## 2874 0.14806335 0.06243174 0.12272101 0.14969714
## 2875 0.14806335 0.48076923 0.12152375 0.14969714
## 2876 0.14806335 0.09932349 0.12272101 0.14969714
## 2877 0.14806335 0.06243174 0.11410336 0.14969714
## 2878 0.14806335 0.06243174 0.12272101 0.14969714
## 2879 0.14806335 0.09932349 0.11410336 0.14969714
## 2880 0.14806335 0.06243174 0.09814869 0.14969714
## 2881 0.05072162 0.09932349 0.09814869 0.14969714
## 2882 0.14806335 0.06243174 0.09814869 0.14969714
## 2883 0.14806335 0.06243174 0.10667727 0.14969714
## 2884 0.14806335 0.09932349 0.12272101 0.14969714
## 2885 0.14806335 0.06243174 0.12152375 0.14969714
## 2886 0.14806335 0.21582397 0.10667727 0.14969714
## 2887 0.14806335 0.45296167 0.11410336 0.14969714
## 2888 0.14806335 0.06243174 0.11410336 0.14969714
## 2889 0.14806335 0.09932349 0.11410336 0.14969714
## 2890 0.14806335 0.09932349 0.11410336 0.14969714
## 2891 0.05072162 0.21582397 0.09814869 0.14969714
## 2892 0.14806335 0.09932349 0.12272101 0.14969714
## 2893 0.14806335 0.09932349 0.10667727 0.14969714
## 2894 0.05072162 0.06243174 0.11410336 0.14969714
## 2895 0.14806335 0.09932349 0.09814869 0.14969714
## 2896 0.14806335 0.06243174 0.12152375 0.14969714
## 2897 0.14806335 0.06243174 0.10667727 0.14969714
## 2898 0.14806335 0.06243174 0.09814869 0.14969714
## 2899 0.14806335 0.06243174 0.09814869 0.14969714
## 2900 0.14806335 0.06243174 0.10667727 0.14969714
## 2901 0.14806335 0.09932349 0.11410336 0.14969714
## 2902 0.05072162 0.43750000 0.09814869 0.14969714
## 2903 0.05072162 0.10363527 0.11410336 0.14969714
## 2904 0.14806335 0.43750000 0.12152375 0.14969714
## 2905 0.14806335 0.06243174 0.12272101 0.14969714
## 2906 0.14806335 0.06243174 0.09814869 0.14969714
## 2907 0.14806335 0.06243174 0.12272101 0.14969714
## 2908 0.14806335 0.09932349 0.12272101 0.14969714
## 2909 0.14806335 0.21582397 0.09814869 0.14969714
## 2910 0.14806335 0.06243174 0.11410336 0.14969714
## 2911 0.14806335 0.10363527 0.11410336 0.14969714
## 2912 0.14806335 0.51535088 0.09814869 0.14969714
## 2913 0.14806335 0.09932349 0.12272101 0.14969714
## 2914 0.14806335 0.09932349 0.11410336 0.14969714
## 2915 0.14806335 0.09293746 0.10667727 0.14969714
## 2916 0.14806335 0.06243174 0.11410336 0.14969714
## 2917 0.14806335 0.21582397 0.09814869 0.14969714
## 2918 0.14806335 0.06243174 0.10667727 0.14969714
## 2919 0.14806335 0.45296167 0.12272101 0.14969714
## 2920 0.14806335 0.06243174 0.12272101 0.14969714
## 2921 0.14806335 0.06243174 0.12272101 0.14969714
## 2922 0.14806335 0.06243174 0.09814869 0.14969714
## 2923 0.14806335 0.06243174 0.11410336 0.14969714
## 2924 0.14806335 0.06243174 0.10667727 0.14969714
## 2925 0.14806335 0.06243174 0.12272101 0.14969714
## 2926 0.14806335 0.21582397 0.11410336 0.14969714
## 2927 0.14806335 0.09932349 0.12152375 0.14969714
## 2928 0.14806335 0.06243174 0.11410336 0.14969714
## 2929 0.14806335 0.09932349 0.09814869 0.14969714
## 2930 0.14806335 0.43750000 0.09814869 0.14969714
## 2931 0.14806335 0.09932349 0.12272101 0.14969714
## 2932 0.14806335 0.21582397 0.09814869 0.14969714
## 2933 0.14806335 0.45296167 0.10667727 0.14969714
## 2934 0.14806335 0.21582397 0.11410336 0.14969714
## 2935 0.14806335 0.06243174 0.09814869 0.14969714
## 2936 0.14806335 0.10363527 0.09814869 0.14969714
## 2937 0.14806335 0.06243174 0.11410336 0.14969714
## 2938 0.14806335 0.09293746 0.11410336 0.14969714
## 2939 0.14806335 0.06243174 0.11410336 0.14969714
## 2940 0.14806335 0.51535088 0.11410336 0.14969714
## 2941 0.14806335 0.06243174 0.09814869 0.14969714
## 2942 0.14806335 0.09932349 0.10667727 0.14969714
## 2943 0.14806335 0.09932349 0.12272101 0.14969714
## 2944 0.14806335 0.09967090 0.12272101 0.14969714
## 2945 0.14806335 0.06243174 0.12152375 0.14969714
## 2946 0.14806335 0.06243174 0.11410336 0.14969714
## 2947 0.14806335 0.06243174 0.11410336 0.14969714
## 2948 0.05072162 0.21582397 0.09814869 0.14969714
## 2949 0.14806335 0.09293746 0.12272101 0.14969714
## 2950 0.14806335 0.21582397 0.09814869 0.14969714
## 2951 0.14806335 0.43750000 0.09814869 0.14969714
## 2952 0.14806335 0.09932349 0.09814869 0.14969714
## 2953 0.05072162 0.45296167 0.12272101 0.14969714
## 2954 0.14806335 0.09932349 0.09814869 0.14969714
## 2955 0.14806335 0.06243174 0.09814869 0.14969714
## 2956 0.14806335 0.51535088 0.09814869 0.14969714
## 2957 0.14806335 0.09293746 0.09814869 0.14969714
## 2958 0.05072162 0.06243174 0.09814869 0.14969714
## 2959 0.14806335 0.06243174 0.12272101 0.14969714
## 2960 0.14806335 0.06243174 0.12152375 0.14969714
## 2961 0.05072162 0.10363527 0.12272101 0.14969714
## 2962 0.14806335 0.10363527 0.11410336 0.14969714
## 2963 0.14806335 0.06243174 0.09814869 0.14969714
## 2964 0.14806335 0.06243174 0.12272101 0.14969714
## 2965 0.14806335 0.06243174 0.12272101 0.14969714
## 2966 0.14806335 0.06243174 0.12272101 0.14969714
## 2967 0.14806335 0.09967090 0.09814869 0.14969714
## 2968 0.14806335 0.06243174 0.10667727 0.14969714
## 2969 0.14806335 0.45296167 0.10667727 0.14969714
## 2970 0.14806335 0.09932349 0.12272101 0.14969714
## 2971 0.14806335 0.06243174 0.12272101 0.14969714
## 2972 0.14806335 0.06243174 0.09814869 0.14969714
## 2973 0.14806335 0.06243174 0.12152375 0.14969714
## 2974 0.14806335 0.09932349 0.11410336 0.14969714
## 2975 0.14806335 0.21582397 0.12272101 0.14969714
## 2976 0.14806335 0.06243174 0.09814869 0.14969714
## 2977 0.14806335 0.06243174 0.10667727 0.14969714
## 2978 0.14806335 0.09932349 0.12152375 0.14969714
## 2979 0.14806335 0.09967090 0.11410336 0.14969714
## 2980 0.14806335 0.06243174 0.12272101 0.14969714
## 2981 0.14806335 0.21582397 0.12272101 0.14969714
## 2982 0.05072162 0.09932349 0.12272101 0.14969714
## 2983 0.14806335 0.10363527 0.12272101 0.14969714
## 2984 0.14806335 0.10363527 0.12272101 0.14969714
## 2985 0.05072162 0.06243174 0.12272101 0.14969714
## 2986 0.14806335 0.10363527 0.12152375 0.14969714
## 2987 0.14806335 0.43750000 0.12152375 0.14969714
## 2988 0.14806335 0.09932349 0.09814869 0.14969714
## 2989 0.14806335 0.06243174 0.09814869 0.14969714
## 2990 0.05072162 0.06243174 0.12272101 0.14969714
## 2991 0.14806335 0.06243174 0.12272101 0.14969714
## 2992 0.14806335 0.09293746 0.11410336 0.14969714
## 2993 0.14806335 0.06243174 0.12272101 0.14969714
## 2994 0.14806335 0.06243174 0.09814869 0.14969714
## 2995 0.14806335 0.09932349 0.09814869 0.14969714
## 2996 0.14806335 0.09932349 0.12152375 0.14969714
## 2997 0.14806335 0.21582397 0.11410336 0.14969714
## 2998 0.14806335 0.51535088 0.10667727 0.14969714
## 2999 0.14806335 0.09932349 0.09814869 0.14969714
## 3000 0.14806335 0.45296167 0.12272101 0.14969714
## 3001 0.14806335 0.06243174 0.09814869 0.14969714
## 3002 0.14806335 0.21582397 0.10667727 0.14969714
## 3003 0.14806335 0.21582397 0.12152375 0.14969714
## 3004 0.14806335 0.06243174 0.09814869 0.14969714
## 3005 0.14806335 0.21582397 0.12152375 0.14969714
## 3006 0.14806335 0.06243174 0.12272101 0.14969714
## 3007 0.14806335 0.45296167 0.12152375 0.14969714
## 3008 0.14806335 0.51535088 0.09814869 0.14969714
## 3009 0.14806335 0.06243174 0.11410336 0.14969714
## 3010 0.14806335 0.09932349 0.10667727 0.14969714
## 3011 0.14806335 0.09932349 0.09814869 0.14969714
## 3012 0.14806335 0.06243174 0.10667727 0.14969714
## 3013 0.14806335 0.06243174 0.11410336 0.14969714
## 3014 0.14806335 0.09932349 0.10667727 0.14969714
## 3015 0.14806335 0.09932349 0.12152375 0.14969714
## 3016 0.14806335 0.09932349 0.12272101 0.14969714
## 3017 0.14806335 0.09932349 0.09814869 0.14969714
## 3018 0.14806335 0.09932349 0.09814869 0.14969714
## 3019 0.14806335 0.09293746 0.09814869 0.14969714
## 3020 0.14806335 0.09932349 0.11410336 0.14969714
## 3021 0.14806335 0.06243174 0.12272101 0.14969714
## 3022 0.14806335 0.43750000 0.10667727 0.14969714
## 3023 0.14806335 0.21582397 0.10667727 0.14969714
## 3024 0.14806335 0.06243174 0.12272101 0.14969714
## 3025 0.14806335 0.09932349 0.12152375 0.14969714
## 3026 0.14806335 0.21582397 0.10667727 0.14969714
## 3027 0.14806335 0.09932349 0.12272101 0.14969714
## 3028 0.14806335 0.06243174 0.12272101 0.14969714
## 3029 0.14806335 0.06243174 0.12152375 0.14969714
## 3030 0.14806335 0.21582397 0.12272101 0.14969714
## 3031 0.14806335 0.06243174 0.12152375 0.14969714
## 3032 0.14806335 0.06243174 0.10667727 0.14969714
## 3033 0.05072162 0.06243174 0.12272101 0.14969714
## 3034 0.14806335 0.06243174 0.11410336 0.14969714
## 3035 0.14806335 0.06243174 0.12272101 0.14969714
## 3036 0.14806335 0.09967090 0.10667727 0.14969714
## 3037 0.14806335 0.21582397 0.10667727 0.14969714
## 3038 0.14806335 0.43750000 0.10667727 0.14969714
## 3039 0.14806335 0.06243174 0.12272101 0.14969714
## 3040 0.14806335 0.10363527 0.11410336 0.14969714
## 3041 0.14806335 0.43750000 0.12272101 0.14969714
## 3042 0.14806335 0.21582397 0.09814869 0.14969714
## 3043 0.05072162 0.48076923 0.12272101 0.14969714
## 3044 0.14806335 0.09932349 0.11410336 0.14969714
## 3045 0.14806335 0.06243174 0.09814869 0.14969714
## 3046 0.14806335 0.45296167 0.12152375 0.14969714
## 3047 0.14806335 0.43750000 0.11410336 0.14969714
## 3048 0.14806335 0.06243174 0.12272101 0.14969714
## 3049 0.14806335 0.45296167 0.09814869 0.14969714
## 3050 0.14806335 0.06243174 0.11410336 0.14969714
## 3051 0.05072162 0.09932349 0.09814869 0.14969714
## 3052 0.14806335 0.06243174 0.12152375 0.14969714
## 3053 0.14806335 0.06243174 0.12272101 0.14969714
## 3054 0.14806335 0.06243174 0.12272101 0.14969714
## 3055 0.14806335 0.06243174 0.12272101 0.14969714
## 3056 0.14806335 0.09932349 0.12272101 0.14969714
## 3057 0.14806335 0.10363527 0.10667727 0.14969714
## 3058 0.14806335 0.06243174 0.11410336 0.14969714
## 3059 0.14806335 0.06243174 0.10667727 0.14969714
## 3060 0.14806335 0.06243174 0.11410336 0.14969714
## 3061 0.14806335 0.21582397 0.12272101 0.14969714
## 3062 0.14806335 0.09932349 0.09814869 0.14969714
## 3063 0.14806335 0.09932349 0.10667727 0.14969714
## 3064 0.14806335 0.06243174 0.12152375 0.14969714
## 3065 0.14806335 0.06243174 0.12272101 0.14969714
## 3066 0.14806335 0.21582397 0.09814869 0.14969714
## 3067 0.14806335 0.21582397 0.10667727 0.14969714
## 3068 0.14806335 0.21582397 0.11410336 0.14969714
## 3069 0.14806335 0.21582397 0.10667727 0.14969714
## 3070 0.14806335 0.09932349 0.10667727 0.14969714
## 3071 0.14806335 0.06243174 0.12272101 0.14969714
## 3072 0.14806335 0.06243174 0.09814869 0.14969714
## 3073 0.14806335 0.10363527 0.10667727 0.14969714
## 3074 0.14806335 0.09932349 0.12272101 0.14969714
## 3075 0.14806335 0.09932349 0.09814869 0.14969714
## 3076 0.14806335 0.43750000 0.12272101 0.14969714
## 3077 0.14806335 0.43750000 0.12152375 0.14969714
## 3078 0.14806335 0.06243174 0.11410336 0.14969714
## 3079 0.14806335 0.06243174 0.10667727 0.14969714
## 3080 0.14806335 0.09932349 0.11410336 0.14969714
## 3081 0.14806335 0.06243174 0.12272101 0.14969714
## 3082 0.14806335 0.21582397 0.09814869 0.14969714
## 3083 0.14806335 0.06243174 0.12152375 0.14969714
## 3084 0.14806335 0.21582397 0.12272101 0.14969714
## 3085 0.14806335 0.06243174 0.12272101 0.14969714
## 3086 0.14806335 0.06243174 0.12152375 0.14969714
## 3087 0.05072162 0.45296167 0.12272101 0.14969714
## 3088 0.14806335 0.21582397 0.12272101 0.14969714
## 3089 0.14806335 0.06243174 0.12272101 0.14969714
## 3090 0.14806335 0.09932349 0.09814869 0.14969714
## 3091 0.14806335 0.21582397 0.10667727 0.14969714
## 3092 0.14806335 0.06243174 0.10667727 0.14969714
## 3093 0.14806335 0.06243174 0.10667727 0.14969714
## 3094 0.14806335 0.06243174 0.12152375 0.14969714
## 3095 0.14806335 0.06243174 0.10667727 0.14969714
## 3096 0.14806335 0.09932349 0.11410336 0.14969714
## 3097 0.14806335 0.43750000 0.12152375 0.14969714
## 3098 0.14806335 0.09932349 0.09814869 0.14969714
## 3099 0.14806335 0.09293746 0.10667727 0.14969714
## 3100 0.14806335 0.09932349 0.12272101 0.14969714
## 3101 0.14806335 0.06243174 0.12272101 0.14969714
## 3102 0.14806335 0.06243174 0.12152375 0.14969714
## 3103 0.14806335 0.43750000 0.12152375 0.14969714
## 3104 0.05072162 0.09932349 0.09814869 0.14969714
## 3105 0.14806335 0.06243174 0.10667727 0.14969714
## 3106 0.14806335 0.09293746 0.09814869 0.14969714
## 3107 0.14806335 0.21582397 0.12152375 0.14969714
## 3108 0.14806335 0.21582397 0.12272101 0.14969714
## 3109 0.14806335 0.06243174 0.11410336 0.14969714
## 3110 0.14806335 0.09932349 0.11410336 0.14969714
## 3111 0.14806335 0.45296167 0.12272101 0.14969714
## 3112 0.14806335 0.06243174 0.12272101 0.14969714
## 3113 0.14806335 0.06243174 0.11410336 0.14969714
## 3114 0.14806335 0.10363527 0.09814869 0.14969714
## 3115 0.14806335 0.09932349 0.11410336 0.14969714
## 3116 0.14806335 0.06243174 0.09814869 0.14969714
## 3117 0.05072162 0.06243174 0.09814869 0.14969714
## 3118 0.14806335 0.06243174 0.12152375 0.14969714
## 3119 0.05072162 0.45296167 0.11410336 0.14969714
## 3120 0.14806335 0.06243174 0.09814869 0.14969714
## 3121 0.14806335 0.09932349 0.12272101 0.14969714
## 3122 0.14806335 0.06243174 0.10667727 0.14969714
## 3123 0.14806335 0.51535088 0.09814869 0.14969714
## 3124 0.14806335 0.06243174 0.09814869 0.14969714
## 3125 0.14806335 0.06243174 0.12272101 0.14969714
## 3126 0.14806335 0.45296167 0.10667727 0.14969714
## 3127 0.14806335 0.45296167 0.11410336 0.14969714
## 3128 0.14806335 0.06243174 0.12272101 0.14969714
## 3129 0.14806335 0.06243174 0.12152375 0.14969714
## 3130 0.05072162 0.06243174 0.12272101 0.14969714
## 3131 0.14806335 0.21582397 0.10667727 0.14969714
## 3132 0.14806335 0.21582397 0.10667727 0.14969714
## 3133 0.14806335 0.09293746 0.12152375 0.14969714
## 3134 0.14806335 0.09932349 0.11410336 0.14969714
## 3135 0.14806335 0.06243174 0.09814869 0.14969714
## 3136 0.14806335 0.10363527 0.10667727 0.14969714
## 3137 0.14806335 0.06243174 0.11410336 0.14969714
## 3138 0.14806335 0.06243174 0.09814869 0.14969714
## 3139 0.05072162 0.06243174 0.11410336 0.14969714
## 3140 0.14806335 0.06243174 0.09814869 0.14969714
## 3141 0.14806335 0.10363527 0.10667727 0.14969714
## 3142 0.14806335 0.09932349 0.12272101 0.14969714
## 3143 0.14806335 0.10363527 0.09814869 0.14969714
## 3144 0.14806335 0.06243174 0.12272101 0.14969714
## 3145 0.14806335 0.43750000 0.09814869 0.14969714
## 3146 0.14806335 0.06243174 0.12272101 0.14969714
## 3147 0.14806335 0.21582397 0.10667727 0.14969714
## 3148 0.14806335 0.09932349 0.09814869 0.14969714
## 3149 0.14806335 0.09932349 0.12272101 0.14969714
## 3150 0.14806335 0.06243174 0.12272101 0.14969714
## 3151 0.14806335 0.06243174 0.10667727 0.14969714
## 3152 0.14806335 0.10363527 0.12152375 0.14969714
## 3153 0.14806335 0.06243174 0.11410336 0.14969714
## 3154 0.14806335 0.06243174 0.11410336 0.14969714
## 3155 0.14806335 0.06243174 0.11410336 0.14969714
## 3156 0.14806335 0.21582397 0.09814869 0.14969714
## 3157 0.14806335 0.21582397 0.10667727 0.14969714
## 3158 0.14806335 0.09293746 0.12272101 0.14969714
## 3159 0.14806335 0.06243174 0.09814869 0.14969714
## 3160 0.14806335 0.06243174 0.10667727 0.14969714
## 3161 0.14806335 0.09967090 0.09814869 0.14969714
## 3162 0.14806335 0.43750000 0.12272101 0.14969714
## 3163 0.14806335 0.06243174 0.12272101 0.14969714
## 3164 0.14806335 0.09932349 0.11410336 0.14969714
## 3165 0.14806335 0.43750000 0.09814869 0.14969714
## 3166 0.14806335 0.06243174 0.12272101 0.14969714
## 3167 0.14806335 0.43750000 0.12272101 0.14969714
## 3168 0.14806335 0.09932349 0.12272101 0.14969714
## 3169 0.14806335 0.48076923 0.09814869 0.14969714
## 3170 0.14806335 0.09932349 0.09814869 0.14969714
## 3171 0.14806335 0.06243174 0.12272101 0.14969714
## 3172 0.14806335 0.43750000 0.12272101 0.14969714
## 3173 0.14806335 0.43750000 0.12152375 0.14969714
## 3174 0.14806335 0.06243174 0.11410336 0.14969714
## 3175 0.05072162 0.10363527 0.09814869 0.14969714
## 3176 0.14806335 0.06243174 0.12152375 0.14969714
## 3177 0.14806335 0.21582397 0.09814869 0.14969714
## 3178 0.14806335 0.21582397 0.12152375 0.14969714
## 3179 0.14806335 0.09932349 0.12272101 0.14969714
## 3180 0.14806335 0.21582397 0.09814869 0.14969714
## 3181 0.14806335 0.09932349 0.11410336 0.14969714
## 3182 0.14806335 0.21582397 0.10667727 0.14969714
## 3183 0.14806335 0.06243174 0.11410336 0.14969714
## 3184 0.14806335 0.09932349 0.10667727 0.14969714
## 3185 0.14806335 0.06243174 0.11410336 0.14969714
## 3186 0.14806335 0.09932349 0.12272101 0.14969714
## 3187 0.14806335 0.09293746 0.12272101 0.14969714
## 3188 0.14806335 0.21582397 0.12272101 0.14969714
## 3189 0.14806335 0.21582397 0.09814869 0.14969714
## 3190 0.14806335 0.06243174 0.12272101 0.14969714
## 3191 0.14806335 0.06243174 0.10667727 0.14969714
## 3192 0.14806335 0.06243174 0.10667727 0.14969714
## 3193 0.14806335 0.21582397 0.11410336 0.14969714
## 3194 0.14806335 0.21582397 0.12152375 0.14969714
## 3195 0.14806335 0.06243174 0.11410336 0.14969714
## 3196 0.14806335 0.51535088 0.11410336 0.14969714
## 3197 0.14806335 0.06243174 0.10667727 0.14969714
## 3198 0.14806335 0.06243174 0.10667727 0.14969714
## 3199 0.14806335 0.10363527 0.12152375 0.14969714
## 3200 0.14806335 0.06243174 0.10667727 0.14969714
## 3201 0.14806335 0.06243174 0.12272101 0.14969714
## 3202 0.14806335 0.09932349 0.09814869 0.14969714
## 3203 0.14806335 0.09932349 0.11410336 0.14969714
## 3204 0.14806335 0.06243174 0.09814869 0.14969714
## 3205 0.14806335 0.21582397 0.11410336 0.14969714
## 3206 0.14806335 0.06243174 0.10667727 0.14969714
## 3207 0.14806335 0.21582397 0.12152375 0.14969714
## 3208 0.14806335 0.09932349 0.11410336 0.14969714
## 3209 0.14806335 0.06243174 0.12272101 0.14969714
## 3210 0.14806335 0.06243174 0.12152375 0.14969714
## 3211 0.14806335 0.06243174 0.10667727 0.14969714
## 3212 0.14806335 0.06243174 0.11410336 0.14969714
## 3213 0.05072162 0.06243174 0.09814869 0.14969714
## 3214 0.14806335 0.06243174 0.10667727 0.14969714
## 3215 0.14806335 0.10363527 0.10667727 0.14969714
## 3216 0.14806335 0.06243174 0.12272101 0.14969714
## 3217 0.05072162 0.06243174 0.12272101 0.14969714
## 3218 0.14806335 0.09967090 0.12272101 0.14969714
## 3219 0.14806335 0.45296167 0.11410336 0.14969714
## 3220 0.14806335 0.06243174 0.12272101 0.14969714
## 3221 0.14806335 0.43750000 0.12272101 0.14969714
## 3222 0.14806335 0.43750000 0.12272101 0.14969714
## 3223 0.14806335 0.45296167 0.09814869 0.14969714
## 3224 0.14806335 0.51535088 0.12272101 0.14969714
## 3225 0.05072162 0.06243174 0.11410336 0.14969714
## 3226 0.14806335 0.06243174 0.10667727 0.14969714
## 3227 0.14806335 0.06243174 0.12152375 0.14969714
## 3228 0.05072162 0.06243174 0.10667727 0.14969714
## 3229 0.14806335 0.09932349 0.11410336 0.14969714
## 3230 0.14806335 0.10363527 0.12272101 0.14969714
## 3231 0.14806335 0.51535088 0.12152375 0.14969714
## 3232 0.05072162 0.09932349 0.12152375 0.14969714
## 3233 0.14806335 0.06243174 0.09814869 0.14969714
## 3234 0.14806335 0.09932349 0.11410336 0.14969714
## 3235 0.14806335 0.51535088 0.09814869 0.14969714
## 3236 0.14806335 0.06243174 0.10667727 0.14969714
## 3237 0.14806335 0.06243174 0.11410336 0.14969714
## 3238 0.14806335 0.06243174 0.12152375 0.14969714
## 3239 0.05072162 0.06243174 0.11410336 0.14969714
## 3240 0.14806335 0.09932349 0.10667727 0.14969714
## 3241 0.14806335 0.09932349 0.10667727 0.14969714
## 3242 0.14806335 0.06243174 0.12152375 0.14969714
## 3243 0.14806335 0.51535088 0.12152375 0.14969714
## 3244 0.14806335 0.06243174 0.10667727 0.14969714
## 3245 0.14806335 0.06243174 0.12272101 0.14969714
## 3246 0.14806335 0.06243174 0.12272101 0.14969714
## 3247 0.14806335 0.09932349 0.09814869 0.14969714
## 3248 0.14806335 0.51535088 0.11410336 0.14969714
## 3249 0.14806335 0.09932349 0.12272101 0.14969714
## 3250 0.14806335 0.06243174 0.11410336 0.14969714
## 3251 0.14806335 0.45296167 0.12272101 0.14969714
## 3252 0.14806335 0.06243174 0.12152375 0.14969714
## 3253 0.05072162 0.06243174 0.12272101 0.14969714
## 3254 0.14806335 0.10363527 0.11410336 0.14969714
## 3255 0.14806335 0.06243174 0.10667727 0.14969714
## 3256 0.14806335 0.43750000 0.10667727 0.14969714
## 3257 0.14806335 0.10363527 0.10667727 0.14969714
## 3258 0.14806335 0.10363527 0.11410336 0.14969714
## 3259 0.14806335 0.06243174 0.10667727 0.14969714
## 3260 0.14806335 0.09932349 0.09814869 0.14969714
## 3261 0.14806335 0.06243174 0.09814869 0.14969714
## 3262 0.14806335 0.06243174 0.10667727 0.14969714
## 3263 0.14806335 0.10363527 0.11410336 0.14969714
## 3264 0.14806335 0.06243174 0.12272101 0.14969714
## 3265 0.14806335 0.09932349 0.09814869 0.14969714
## 3266 0.14806335 0.09932349 0.12152375 0.14969714
## 3267 0.14806335 0.09932349 0.12272101 0.14969714
## 3268 0.14806335 0.43750000 0.12272101 0.14969714
## 3269 0.05072162 0.09932349 0.11410336 0.14969714
## 3270 0.14806335 0.21582397 0.10667727 0.14969714
## 3271 0.14806335 0.06243174 0.10667727 0.14969714
## 3272 0.14806335 0.45296167 0.12152375 0.14969714
## 3273 0.14806335 0.21582397 0.09814869 0.14969714
## 3274 0.14806335 0.06243174 0.11410336 0.14969714
## 3275 0.14806335 0.21582397 0.12152375 0.14969714
## 3276 0.14806335 0.21582397 0.10667727 0.14969714
## 3277 0.14806335 0.06243174 0.10667727 0.14969714
## 3278 0.14806335 0.51535088 0.12152375 0.14969714
## 3279 0.14806335 0.09932349 0.12272101 0.14969714
## 3280 0.14806335 0.48076923 0.12152375 0.14969714
## 3281 0.14806335 0.21582397 0.10667727 0.14969714
## 3282 0.14806335 0.06243174 0.12152375 0.14969714
## 3283 0.14806335 0.06243174 0.09814869 0.14969714
## 3284 0.14806335 0.09932349 0.10667727 0.14969714
## 3285 0.14806335 0.06243174 0.09814869 0.14969714
## 3286 0.14806335 0.06243174 0.12272101 0.14969714
## 3287 0.14806335 0.06243174 0.12272101 0.14969714
## 3288 0.14806335 0.43750000 0.12272101 0.14969714
## 3289 0.14806335 0.06243174 0.12272101 0.14969714
## 3290 0.14806335 0.21582397 0.12152375 0.14969714
## 3291 0.14806335 0.09932349 0.12152375 0.14969714
## 3292 0.14806335 0.21582397 0.10667727 0.14969714
## 3293 0.14806335 0.10363527 0.12152375 0.14969714
## 3294 0.05072162 0.43750000 0.12272101 0.14969714
## 3295 0.14806335 0.09932349 0.12272101 0.14969714
## 3296 0.14806335 0.21582397 0.10667727 0.14969714
## 3297 0.14806335 0.45296167 0.09814869 0.14969714
## 3298 0.14806335 0.10363527 0.10667727 0.14969714
## 3299 0.14806335 0.10363527 0.12272101 0.14969714
## 3300 0.14806335 0.10363527 0.12152375 0.14969714
## 3301 0.14806335 0.09932349 0.09814869 0.14969714
## 3302 0.14806335 0.09967090 0.12272101 0.14969714
## 3303 0.14806335 0.21582397 0.09814869 0.14969714
## 3304 0.14806335 0.06243174 0.12272101 0.14969714
## 3305 0.14806335 0.51535088 0.09814869 0.14969714
## 3306 0.14806335 0.06243174 0.09814869 0.14969714
## 3307 0.14806335 0.21582397 0.10667727 0.14969714
## 3308 0.14806335 0.06243174 0.12152375 0.14969714
## 3309 0.05072162 0.10363527 0.09814869 0.14969714
## 3310 0.14806335 0.09967090 0.12272101 0.14969714
## 3311 0.14806335 0.06243174 0.11410336 0.14969714
## 3312 0.14806335 0.45296167 0.12272101 0.14969714
## 3313 0.14806335 0.45296167 0.12272101 0.14969714
## 3314 0.14806335 0.10363527 0.11410336 0.14969714
## 3315 0.14806335 0.45296167 0.12152375 0.14969714
## 3316 0.14806335 0.51535088 0.12272101 0.14969714
## 3317 0.14806335 0.06243174 0.09814869 0.14969714
## 3318 0.14806335 0.09932349 0.12152375 0.14969714
## 3319 0.14806335 0.06243174 0.12272101 0.14969714
## 3320 0.14806335 0.06243174 0.11410336 0.14969714
## 3321 0.14806335 0.43750000 0.11410336 0.14969714
## 3322 0.14806335 0.45296167 0.12152375 0.14969714
## 3323 0.14806335 0.06243174 0.09814869 0.14969714
## 3324 0.14806335 0.43750000 0.12152375 0.14969714
## 3325 0.14806335 0.43750000 0.12152375 0.14969714
## 3326 0.14806335 0.21582397 0.10667727 0.14969714
## 3327 0.05072162 0.43750000 0.09814869 0.14969714
## 3328 0.14806335 0.09932349 0.09814869 0.14969714
## 3329 0.14806335 0.10363527 0.09814869 0.14969714
## 3330 0.14806335 0.06243174 0.12152375 0.14969714
## 3331 0.14806335 0.06243174 0.12152375 0.14969714
## 3332 0.14806335 0.06243174 0.12152375 0.14969714
## 3333 0.14806335 0.06243174 0.11410336 0.14969714
## 3334 0.05072162 0.09967090 0.12272101 0.14969714
## 3335 0.14806335 0.06243174 0.12152375 0.14969714
## 3336 0.05072162 0.43750000 0.12272101 0.14969714
## 3337 0.14806335 0.06243174 0.11410336 0.14969714
## 3338 0.14806335 0.06243174 0.11410336 0.14969714
## 3339 0.14806335 0.09293746 0.12272101 0.14969714
## 3340 0.14806335 0.06243174 0.11410336 0.14969714
## 3341 0.14806335 0.06243174 0.12152375 0.14969714
## 3342 0.14806335 0.06243174 0.10667727 0.14969714
## 3343 0.14806335 0.45296167 0.10667727 0.14969714
## 3344 0.14806335 0.45296167 0.12272101 0.14969714
## 3345 0.14806335 0.06243174 0.11410336 0.14969714
## 3346 0.14806335 0.09293746 0.11410336 0.14969714
## 3347 0.14806335 0.06243174 0.09814869 0.14969714
## 3348 0.14806335 0.43750000 0.12272101 0.14969714
## 3349 0.14806335 0.45296167 0.11410336 0.14969714
## 3350 0.14806335 0.06243174 0.10667727 0.14969714
## 3351 0.14806335 0.06243174 0.10667727 0.14969714
## 3352 0.14806335 0.06243174 0.09814869 0.14969714
## 3353 0.14806335 0.06243174 0.11410336 0.14969714
## 3354 0.14806335 0.09967090 0.12272101 0.14969714
## 3355 0.14806335 0.06243174 0.12272101 0.14969714
## 3356 0.14806335 0.09293746 0.12152375 0.14969714
## 3357 0.14806335 0.06243174 0.12152375 0.14969714
## 3358 0.14806335 0.06243174 0.11410336 0.14969714
## 3359 0.14806335 0.06243174 0.12272101 0.14969714
## 3360 0.14806335 0.43750000 0.12152375 0.14969714
## 3361 0.14806335 0.09932349 0.09814869 0.14969714
## 3362 0.14806335 0.10363527 0.11410336 0.14969714
## 3363 0.14806335 0.10363527 0.11410336 0.14969714
## 3364 0.14806335 0.06243174 0.09814869 0.14969714
## 3365 0.14806335 0.06243174 0.09814869 0.14969714
## 3366 0.05072162 0.09932349 0.12272101 0.14969714
## 3367 0.14806335 0.06243174 0.12272101 0.14969714
## 3368 0.05072162 0.10363527 0.10667727 0.14969714
## 3369 0.14806335 0.51535088 0.12152375 0.14969714
## 3370 0.14806335 0.09932349 0.12152375 0.14969714
## 3371 0.14806335 0.06243174 0.12152375 0.14969714
## 3372 0.14806335 0.09932349 0.09814869 0.14969714
## 3373 0.14806335 0.51535088 0.11410336 0.14969714
## 3374 0.14806335 0.09932349 0.12272101 0.14969714
## 3375 0.14806335 0.21582397 0.10667727 0.14969714
## 3376 0.05072162 0.06243174 0.12272101 0.14969714
## 3377 0.14806335 0.09967090 0.12272101 0.14969714
## 3378 0.14806335 0.06243174 0.09814869 0.14969714
## 3379 0.14806335 0.09932349 0.09814869 0.14969714
## 3380 0.14806335 0.09932349 0.09814869 0.14969714
## 3381 0.14806335 0.09932349 0.09814869 0.14969714
## 3382 0.14806335 0.21582397 0.09814869 0.14969714
## 3383 0.14806335 0.06243174 0.09814869 0.14969714
## 3384 0.14806335 0.06243174 0.10667727 0.14969714
## 3385 0.14806335 0.51535088 0.11410336 0.14969714
## 3386 0.14806335 0.06243174 0.09814869 0.14969714
## 3387 0.14806335 0.43750000 0.10667727 0.14969714
## 3388 0.14806335 0.06243174 0.11410336 0.14969714
## 3389 0.14806335 0.06243174 0.12272101 0.14969714
## 3390 0.14806335 0.06243174 0.12272101 0.14969714
## 3391 0.14806335 0.09932349 0.11410336 0.14969714
## 3392 0.14806335 0.09967090 0.12272101 0.14969714
## 3393 0.14806335 0.06243174 0.11410336 0.14969714
## 3394 0.14806335 0.10363527 0.11410336 0.14969714
## 3395 0.14806335 0.06243174 0.12272101 0.14969714
## 3396 0.14806335 0.06243174 0.12152375 0.14969714
## 3397 0.14806335 0.06243174 0.12272101 0.14969714
## 3398 0.14806335 0.09932349 0.09814869 0.14969714
## 3399 0.05072162 0.06243174 0.12152375 0.14969714
## 3400 0.14806335 0.06243174 0.12272101 0.14969714
## 3401 0.14806335 0.21582397 0.10667727 0.14969714
## 3402 0.14806335 0.06243174 0.09814869 0.14969714
## 3403 0.14806335 0.09932349 0.10667727 0.14969714
## 3404 0.14806335 0.09932349 0.11410336 0.14969714
## 3405 0.14806335 0.09932349 0.09814869 0.14969714
## 3406 0.14806335 0.43750000 0.09814869 0.14969714
## 3407 0.14806335 0.43750000 0.12152375 0.14969714
## 3408 0.05072162 0.09967090 0.12152375 0.14969714
## 3409 0.14806335 0.06243174 0.09814869 0.14969714
## 3410 0.05072162 0.43750000 0.11410336 0.14969714
## 3411 0.14806335 0.06243174 0.12272101 0.14969714
## 3412 0.14806335 0.09932349 0.12272101 0.14969714
## 3413 0.14806335 0.06243174 0.12152375 0.14969714
## 3414 0.14806335 0.06243174 0.11410336 0.14969714
## 3415 0.14806335 0.06243174 0.09814869 0.14969714
## 3416 0.14806335 0.06243174 0.11410336 0.14969714
## 3417 0.14806335 0.09293746 0.09814869 0.14969714
## 3418 0.14806335 0.09932349 0.12272101 0.14969714
## 3419 0.14806335 0.43750000 0.12272101 0.14969714
## 3420 0.14806335 0.06243174 0.12272101 0.14969714
## 3421 0.14806335 0.06243174 0.12152375 0.14969714
## 3422 0.14806335 0.06243174 0.12272101 0.14969714
## 3423 0.14806335 0.43750000 0.12272101 0.14969714
## 3424 0.14806335 0.09932349 0.12152375 0.14969714
## 3425 0.14806335 0.21582397 0.09814869 0.14969714
## 3426 0.14806335 0.06243174 0.11410336 0.14969714
## 3427 0.14806335 0.06243174 0.11410336 0.14969714
## 3428 0.14806335 0.09967090 0.09814869 0.14969714
## 3429 0.14806335 0.06243174 0.12152375 0.14969714
## 3430 0.14806335 0.06243174 0.10667727 0.14969714
## 3431 0.14806335 0.09932349 0.11410336 0.14969714
## 3432 0.14806335 0.09932349 0.10667727 0.14969714
## 3433 0.14806335 0.09293746 0.12152375 0.14969714
## 3434 0.05072162 0.09293746 0.12152375 0.14969714
## 3435 0.14806335 0.09932349 0.12152375 0.14969714
## 3436 0.14806335 0.06243174 0.12272101 0.14969714
## 3437 0.14806335 0.09932349 0.09814869 0.14969714
## 3438 0.14806335 0.21582397 0.10667727 0.14969714
## 3439 0.14806335 0.21582397 0.10667727 0.14969714
## 3440 0.14806335 0.06243174 0.10667727 0.14969714
## 3441 0.14806335 0.10363527 0.12272101 0.14969714
## 3442 0.14806335 0.06243174 0.12272101 0.14969714
## 3443 0.14806335 0.06243174 0.12272101 0.14969714
## 3444 0.14806335 0.06243174 0.10667727 0.14969714
## 3445 0.14806335 0.06243174 0.09814869 0.14969714
## 3446 0.14806335 0.43750000 0.12272101 0.14969714
## 3447 0.14806335 0.06243174 0.12272101 0.14969714
## 3448 0.14806335 0.06243174 0.12152375 0.14969714
## 3449 0.14806335 0.06243174 0.09814869 0.14969714
## 3450 0.05072162 0.43750000 0.12152375 0.14969714
## 3451 0.14806335 0.21582397 0.09814869 0.14969714
## 3452 0.14806335 0.10363527 0.10667727 0.14969714
## 3453 0.14806335 0.21582397 0.10667727 0.14969714
## 3454 0.14806335 0.10363527 0.12152375 0.14969714
## 3455 0.14806335 0.09932349 0.09814869 0.14969714
## 3456 0.14806335 0.06243174 0.11410336 0.14969714
## 3457 0.14806335 0.45296167 0.10667727 0.14969714
## 3458 0.14806335 0.06243174 0.12152375 0.14969714
## 3459 0.05072162 0.06243174 0.11410336 0.14969714
## 3460 0.14806335 0.06243174 0.12272101 0.14969714
## 3461 0.14806335 0.45296167 0.12272101 0.14969714
## 3462 0.14806335 0.09932349 0.12272101 0.14969714
## 3463 0.14806335 0.21582397 0.09814869 0.14969714
## 3464 0.14806335 0.51535088 0.11410336 0.14969714
## 3465 0.14806335 0.21582397 0.10667727 0.14969714
## 3466 0.14806335 0.09932349 0.12272101 0.14969714
## 3467 0.05072162 0.21582397 0.09814869 0.14969714
## 3468 0.14806335 0.10363527 0.10667727 0.08671274
## 3469 0.14806335 0.09967090 0.10667727 0.08671274
## 3470 0.14806335 0.21582397 0.10667727 0.08671274
## 3471 0.05072162 0.09967090 0.10667727 0.08671274
## 3472 0.14806335 0.10363527 0.09814869 0.08671274
## 3473 0.14806335 0.21582397 0.10667727 0.08671274
## 3474 0.14806335 0.51535088 0.10667727 0.08671274
## 3475 0.05072162 0.09293746 0.10667727 0.08671274
## 3476 0.14806335 0.06243174 0.10667727 0.08671274
## 3477 0.14806335 0.09293746 0.09814869 0.08671274
## 3478 0.14806335 0.21582397 0.10667727 0.08671274
## 3479 0.14806335 0.10363527 0.10667727 0.08671274
## 3480 0.14806335 0.09293746 0.10667727 0.08671274
## 3481 0.14806335 0.21582397 0.10667727 0.08671274
## 3482 0.05072162 0.06243174 0.10667727 0.08671274
## 3483 0.14806335 0.09293746 0.10667727 0.08671274
## 3484 0.05072162 0.06243174 0.10667727 0.08671274
## 3485 0.05072162 0.09967090 0.10667727 0.08671274
## 3486 0.14806335 0.09293746 0.10667727 0.08671274
## 3487 0.14806335 0.09293746 0.10667727 0.08671274
## 3488 0.14806335 0.09932349 0.10667727 0.08671274
## 3489 0.14806335 0.06243174 0.10667727 0.08671274
## 3490 0.14806335 0.21582397 0.10667727 0.08671274
## 3491 0.05072162 0.10363527 0.09814869 0.08671274
## 3492 0.14806335 0.43750000 0.10667727 0.08671274
## 3493 0.14806335 0.10363527 0.10667727 0.08671274
## 3494 0.05072162 0.09967090 0.09814869 0.08671274
## 3495 0.14806335 0.09293746 0.09814869 0.08671274
## 3496 0.05072162 0.06243174 0.10667727 0.08671274
## 3497 0.05072162 0.09967090 0.10667727 0.08671274
## 3498 0.14806335 0.10363527 0.10667727 0.08671274
## 3499 0.14806335 0.10363527 0.10667727 0.08671274
## 3500 0.14806335 0.10363527 0.10667727 0.08671274
## 3501 0.05072162 0.06243174 0.10667727 0.08671274
## 3502 0.14806335 0.21582397 0.10667727 0.08671274
## 3503 0.05072162 0.06243174 0.10667727 0.08671274
## 3504 0.14806335 0.21582397 0.10667727 0.08671274
## 3505 0.14806335 0.09293746 0.10667727 0.08671274
## 3506 0.05072162 0.06243174 0.10667727 0.08671274
## 3507 0.14806335 0.09932349 0.10667727 0.08671274
## 3508 0.14806335 0.09293746 0.10667727 0.08671274
## 3509 0.05072162 0.06243174 0.10667727 0.08671274
## 3510 0.14806335 0.10363527 0.09814869 0.08671274
## 3511 0.14806335 0.06243174 0.09814869 0.08671274
## 3512 0.14806335 0.06243174 0.10667727 0.08671274
## 3513 0.14806335 0.06243174 0.10667727 0.08671274
## 3514 0.14806335 0.45296167 0.10667727 0.08671274
## 3515 0.14806335 0.51535088 0.10667727 0.08671274
## 3516 0.14806335 0.10363527 0.10667727 0.08671274
## 3517 0.05072162 0.09293746 0.10667727 0.08671274
## 3518 0.05072162 0.09293746 0.09814869 0.08671274
## 3519 0.05072162 0.09932349 0.10667727 0.08671274
## 3520 0.05072162 0.06243174 0.10667727 0.08671274
## 3521 0.05072162 0.06243174 0.09814869 0.08671274
## 3522 0.05072162 0.06243174 0.10667727 0.08671274
## 3523 0.05072162 0.09967090 0.09814869 0.08671274
## 3524 0.05072162 0.06243174 0.10667727 0.08671274
## 3525 0.14806335 0.09293746 0.09814869 0.08671274
## 3526 0.05072162 0.06243174 0.09814869 0.08671274
## 3527 0.14806335 0.09293746 0.10667727 0.08671274
## 3528 0.14806335 0.21582397 0.10667727 0.08671274
## 3529 0.05072162 0.09293746 0.10667727 0.08671274
## 3530 0.14806335 0.10363527 0.10667727 0.08671274
## 3531 0.05072162 0.06243174 0.10667727 0.08671274
## 3532 0.14806335 0.09293746 0.10667727 0.08671274
## 3533 0.05072162 0.06243174 0.10667727 0.08671274
## 3534 0.05072162 0.43750000 0.10667727 0.08671274
## 3535 0.05072162 0.09967090 0.10667727 0.08671274
## 3536 0.05072162 0.06243174 0.10667727 0.08671274
## 3537 0.05072162 0.06243174 0.10667727 0.08671274
## 3538 0.05072162 0.06243174 0.09814869 0.08671274
## 3539 0.14806335 0.10363527 0.09814869 0.08671274
## 3540 0.14806335 0.06243174 0.10667727 0.08671274
## 3541 0.14806335 0.21582397 0.10667727 0.08671274
## 3542 0.14806335 0.10363527 0.10667727 0.08671274
## 3543 0.05072162 0.09967090 0.09814869 0.08671274
## 3544 0.14806335 0.10363527 0.10667727 0.08671274
## 3545 0.14806335 0.09293746 0.10667727 0.08671274
## 3546 0.14806335 0.45296167 0.10667727 0.08671274
## 3547 0.05072162 0.06243174 0.10667727 0.08671274
## 3548 0.14806335 0.09293746 0.10667727 0.08671274
## 3549 0.14806335 0.09293746 0.10667727 0.08671274
## 3550 0.14806335 0.21582397 0.10667727 0.08671274
## 3551 0.14806335 0.10363527 0.10667727 0.08671274
## 3552 0.05072162 0.06243174 0.10667727 0.08671274
## 3553 0.05072162 0.06243174 0.09814869 0.08671274
## 3554 0.14806335 0.21582397 0.10667727 0.08671274
## 3555 0.14806335 0.10363527 0.10667727 0.08671274
## 3556 0.14806335 0.21582397 0.09814869 0.08671274
## 3557 0.14806335 0.06243174 0.09814869 0.08671274
## 3558 0.05072162 0.09967090 0.10667727 0.08671274
## 3559 0.05072162 0.06243174 0.10667727 0.08671274
## 3560 0.14806335 0.06243174 0.09814869 0.08671274
## 3561 0.14806335 0.21582397 0.10667727 0.08671274
## 3562 0.05072162 0.06243174 0.10667727 0.08671274
## 3563 0.14806335 0.09932349 0.10667727 0.08671274
## 3564 0.14806335 0.10363527 0.10667727 0.08671274
## 3565 0.14806335 0.06243174 0.10667727 0.08671274
## 3566 0.14806335 0.09932349 0.10667727 0.08671274
## 3567 0.05072162 0.06243174 0.10667727 0.08671274
## 3568 0.14806335 0.21582397 0.10667727 0.08671274
## 3569 0.05072162 0.09967090 0.10667727 0.08671274
## 3570 0.05072162 0.09967090 0.09814869 0.08671274
## 3571 0.05072162 0.09293746 0.10667727 0.08671274
## 3572 0.05072162 0.09293746 0.09814869 0.08671274
## 3573 0.14806335 0.09293746 0.10667727 0.08671274
## 3574 0.14806335 0.10363527 0.10667727 0.08671274
## 3575 0.14806335 0.09293746 0.10667727 0.08671274
## 3576 0.14806335 0.10363527 0.10667727 0.08671274
## 3577 0.14806335 0.10363527 0.10667727 0.08671274
## 3578 0.05072162 0.06243174 0.10667727 0.08671274
## 3579 0.14806335 0.09932349 0.10667727 0.08671274
## 3580 0.14806335 0.09932349 0.09814869 0.08671274
## 3581 0.14806335 0.21582397 0.10667727 0.08671274
## 3582 0.14806335 0.10363527 0.10667727 0.08671274
## 3583 0.05072162 0.06243174 0.10667727 0.08671274
## 3584 0.05072162 0.06243174 0.10667727 0.08671274
## 3585 0.05072162 0.10363527 0.10667727 0.08671274
## 3586 0.05072162 0.06243174 0.12152375 0.08671274
## 3587 0.05072162 0.06243174 0.10667727 0.08671274
## 3588 0.14806335 0.09293746 0.10667727 0.08671274
## 3589 0.14806335 0.21582397 0.10667727 0.08671274
## 3590 0.14806335 0.10363527 0.09814869 0.08671274
## 3591 0.05072162 0.06243174 0.10667727 0.08671274
## 3592 0.14806335 0.21582397 0.10667727 0.08671274
## 3593 0.14806335 0.10363527 0.09814869 0.08671274
## 3594 0.05072162 0.09967090 0.10667727 0.08671274
## 3595 0.05072162 0.06243174 0.10667727 0.08671274
## 3596 0.14806335 0.09932349 0.10667727 0.08671274
## 3597 0.14806335 0.51535088 0.10667727 0.08671274
## 3598 0.14806335 0.21582397 0.10667727 0.08671274
## 3599 0.05072162 0.09967090 0.10667727 0.08671274
## 3600 0.14806335 0.21582397 0.10667727 0.08671274
## 3601 0.14806335 0.10363527 0.10667727 0.08671274
## 3602 0.05072162 0.09967090 0.10667727 0.08671274
## 3603 0.05072162 0.09967090 0.10667727 0.08671274
## 3604 0.14806335 0.09293746 0.09814869 0.08671274
## 3605 0.14806335 0.10363527 0.10667727 0.08671274
## 3606 0.14806335 0.09293746 0.10667727 0.08671274
## 3607 0.14806335 0.21582397 0.10667727 0.08671274
## 3608 0.05072162 0.06243174 0.10667727 0.08671274
## 3609 0.14806335 0.09932349 0.09814869 0.08671274
## 3610 0.14806335 0.10363527 0.10667727 0.08671274
## 3611 0.05072162 0.06243174 0.10667727 0.08671274
## 3612 0.05072162 0.09967090 0.10667727 0.08671274
## 3613 0.14806335 0.21582397 0.10667727 0.08671274
## 3614 0.14806335 0.06243174 0.10667727 0.08671274
## 3615 0.14806335 0.10363527 0.10667727 0.08671274
## 3616 0.14806335 0.10363527 0.10667727 0.08671274
## 3617 0.05072162 0.06243174 0.09814869 0.08671274
## 3618 0.05072162 0.06243174 0.09814869 0.08671274
## 3619 0.05072162 0.06243174 0.10667727 0.08671274
## 3620 0.14806335 0.06243174 0.10667727 0.08671274
## 3621 0.14806335 0.06243174 0.10667727 0.08671274
## 3622 0.05072162 0.06243174 0.10667727 0.08671274
## 3623 0.14806335 0.06243174 0.10667727 0.08671274
## 3624 0.05072162 0.09967090 0.10667727 0.08671274
## 3625 0.14806335 0.09932349 0.12152375 0.08671274
## 3626 0.05072162 0.06243174 0.10667727 0.08671274
## 3627 0.05072162 0.10363527 0.10667727 0.08671274
## 3628 0.14806335 0.06243174 0.10667727 0.08671274
## 3629 0.14806335 0.43750000 0.10667727 0.08671274
## 3630 0.05072162 0.09293746 0.10667727 0.08671274
## 3631 0.14806335 0.09293746 0.10667727 0.08671274
## 3632 0.05072162 0.09967090 0.12152375 0.08671274
## 3633 0.14806335 0.09293746 0.10667727 0.08671274
## 3634 0.14806335 0.09293746 0.10667727 0.08671274
## 3635 0.14806335 0.09293746 0.10667727 0.08671274
## 3636 0.05072162 0.06243174 0.10667727 0.08671274
## 3637 0.14806335 0.09932349 0.10667727 0.08671274
## 3638 0.14806335 0.06243174 0.10667727 0.08671274
## 3639 0.14806335 0.09932349 0.09814869 0.08671274
## 3640 0.14806335 0.21582397 0.10667727 0.08671274
## 3641 0.05072162 0.09967090 0.10667727 0.08671274
## 3642 0.14806335 0.10363527 0.09814869 0.08671274
## 3643 0.05072162 0.06243174 0.10667727 0.08671274
## 3644 0.05072162 0.06243174 0.10667727 0.08671274
## 3645 0.05072162 0.09967090 0.10667727 0.08671274
## 3646 0.14806335 0.21582397 0.10667727 0.08671274
## 3647 0.14806335 0.21582397 0.10667727 0.08671274
## 3648 0.14806335 0.10363527 0.10667727 0.08671274
## 3649 0.14806335 0.09932349 0.10667727 0.08671274
## 3650 0.14806335 0.10363527 0.10667727 0.08671274
## 3651 0.14806335 0.51535088 0.10667727 0.08671274
## 3652 0.14806335 0.09293746 0.10667727 0.08671274
## 3653 0.05072162 0.09967090 0.10667727 0.08671274
## 3654 0.05072162 0.06243174 0.12152375 0.08671274
## 3655 0.05072162 0.06243174 0.10667727 0.08671274
## 3656 0.14806335 0.09293746 0.10667727 0.08671274
## 3657 0.05072162 0.09967090 0.10667727 0.08671274
## 3658 0.05072162 0.09967090 0.10667727 0.08671274
## 3659 0.05072162 0.06243174 0.10667727 0.08671274
## 3660 0.05072162 0.06243174 0.10667727 0.08671274
## 3661 0.05072162 0.09967090 0.10667727 0.08671274
## 3662 0.05072162 0.06243174 0.10667727 0.08671274
## 3663 0.14806335 0.09293746 0.10667727 0.08671274
## 3664 0.14806335 0.09932349 0.12152375 0.08671274
## 3665 0.05072162 0.06243174 0.10667727 0.08671274
## 3666 0.14806335 0.10363527 0.10667727 0.08671274
## 3667 0.05072162 0.09293746 0.10667727 0.08671274
## 3668 0.14806335 0.06243174 0.10667727 0.08671274
## 3669 0.05072162 0.06243174 0.10667727 0.08671274
## 3670 0.14806335 0.06243174 0.10667727 0.08671274
## 3671 0.14806335 0.10363527 0.10667727 0.08671274
## 3672 0.14806335 0.21582397 0.10667727 0.08671274
## 3673 0.14806335 0.21582397 0.10667727 0.08671274
## 3674 0.05072162 0.09967090 0.10667727 0.08671274
## 3675 0.14806335 0.10363527 0.10667727 0.08671274
## 3676 0.05072162 0.06243174 0.10667727 0.08671274
## 3677 0.14806335 0.09293746 0.10667727 0.08671274
## 3678 0.14806335 0.10363527 0.10667727 0.08671274
## 3679 0.05072162 0.09967090 0.10667727 0.08671274
## 3680 0.05072162 0.09967090 0.10667727 0.08671274
## 3681 0.14806335 0.10363527 0.09814869 0.08671274
## 3682 0.05072162 0.09967090 0.10667727 0.08671274
## 3683 0.14806335 0.10363527 0.10667727 0.08671274
## 3684 0.14806335 0.06243174 0.10667727 0.08671274
## 3685 0.05072162 0.09967090 0.09814869 0.08671274
## 3686 0.14806335 0.06243174 0.10667727 0.08671274
## 3687 0.05072162 0.09967090 0.10667727 0.08671274
## 3688 0.14806335 0.10363527 0.10667727 0.08671274
## 3689 0.14806335 0.09293746 0.10667727 0.08671274
## 3690 0.14806335 0.21582397 0.10667727 0.08671274
## 3691 0.14806335 0.21582397 0.10667727 0.08671274
## 3692 0.14806335 0.09293746 0.10667727 0.08671274
## 3693 0.14806335 0.10363527 0.10667727 0.08671274
## 3694 0.14806335 0.10363527 0.10667727 0.08671274
## 3695 0.14806335 0.09293746 0.09814869 0.08671274
## 3696 0.05072162 0.06243174 0.10667727 0.08671274
## 3697 0.14806335 0.10363527 0.10667727 0.08671274
## 3698 0.05072162 0.06243174 0.10667727 0.08671274
## 3699 0.14806335 0.21582397 0.10667727 0.08671274
## 3700 0.14806335 0.10363527 0.10667727 0.08671274
## 3701 0.05072162 0.09967090 0.10667727 0.08671274
## 3702 0.05072162 0.09967090 0.10667727 0.08671274
## 3703 0.14806335 0.10363527 0.10667727 0.08671274
## 3704 0.14806335 0.21582397 0.10667727 0.08671274
## 3705 0.05072162 0.09967090 0.10667727 0.08671274
## 3706 0.14806335 0.09293746 0.10667727 0.08671274
## 3707 0.14806335 0.06243174 0.10667727 0.08671274
## 3708 0.05072162 0.09967090 0.10667727 0.08671274
## 3709 0.14806335 0.09293746 0.10667727 0.08671274
## 3710 0.14806335 0.21582397 0.10667727 0.08671274
## 3711 0.14806335 0.10363527 0.10667727 0.08671274
## 3712 0.14806335 0.09293746 0.12152375 0.08671274
## 3713 0.05072162 0.09967090 0.10667727 0.08671274
## 3714 0.14806335 0.09932349 0.10667727 0.08671274
## 3715 0.05072162 0.09967090 0.10667727 0.08671274
## 3716 0.05072162 0.06243174 0.10667727 0.08671274
## 3717 0.05072162 0.06243174 0.10667727 0.08671274
## 3718 0.05072162 0.09967090 0.09814869 0.08671274
## 3719 0.05072162 0.06243174 0.09814869 0.08671274
## 3720 0.05072162 0.06243174 0.09814869 0.08671274
## 3721 0.14806335 0.10363527 0.10667727 0.08671274
## 3722 0.14806335 0.09293746 0.09814869 0.08671274
## 3723 0.05072162 0.06243174 0.10667727 0.08671274
## 3724 0.05072162 0.09967090 0.10667727 0.08671274
## 3725 0.14806335 0.10363527 0.10667727 0.08671274
## 3726 0.05072162 0.09967090 0.10667727 0.08671274
## 3727 0.05072162 0.06243174 0.10667727 0.08671274
## 3728 0.14806335 0.21582397 0.10667727 0.08671274
## 3729 0.14806335 0.06243174 0.10667727 0.08671274
## 3730 0.05072162 0.06243174 0.10667727 0.08671274
## 3731 0.14806335 0.09293746 0.10667727 0.08671274
## 3732 0.05072162 0.09293746 0.10667727 0.08671274
## 3733 0.05072162 0.09967090 0.10667727 0.08671274
## 3734 0.14806335 0.21582397 0.10667727 0.08671274
## 3735 0.14806335 0.06243174 0.10667727 0.08671274
## 3736 0.14806335 0.10363527 0.09814869 0.08671274
## 3737 0.14806335 0.09932349 0.10667727 0.08671274
## 3738 0.05072162 0.09967090 0.10667727 0.08671274
## 3739 0.14806335 0.10363527 0.10667727 0.08671274
## 3740 0.14806335 0.10363527 0.10667727 0.08671274
## 3741 0.14806335 0.10363527 0.10667727 0.08671274
## 3742 0.14806335 0.09967090 0.10667727 0.08671274
## 3743 0.05072162 0.09967090 0.10667727 0.08671274
## 3744 0.14806335 0.10363527 0.09814869 0.08671274
## 3745 0.05072162 0.09967090 0.10667727 0.08671274
## 3746 0.14806335 0.09293746 0.10667727 0.08671274
## 3747 0.05072162 0.06243174 0.10667727 0.08671274
## 3748 0.14806335 0.06243174 0.10667727 0.08671274
## 3749 0.14806335 0.09293746 0.09814869 0.08671274
## 3750 0.14806335 0.10363527 0.09814869 0.08671274
## 3751 0.05072162 0.06243174 0.10667727 0.08671274
## 3752 0.14806335 0.10363527 0.10667727 0.08671274
## 3753 0.14806335 0.10363527 0.10667727 0.08671274
## 3754 0.05072162 0.06243174 0.10667727 0.08671274
## 3755 0.14806335 0.09932349 0.10667727 0.08671274
## 3756 0.05072162 0.06243174 0.10667727 0.08671274
## 3757 0.14806335 0.06243174 0.09814869 0.08671274
## 3758 0.14806335 0.10363527 0.10667727 0.08671274
## 3759 0.14806335 0.10363527 0.10667727 0.08671274
## 3760 0.14806335 0.09293746 0.12152375 0.08671274
## 3761 0.14806335 0.21582397 0.10667727 0.08671274
## 3762 0.14806335 0.09932349 0.10667727 0.08671274
## 3763 0.14806335 0.21582397 0.10667727 0.08671274
## 3764 0.05072162 0.06243174 0.09814869 0.08671274
## 3765 0.05072162 0.09967090 0.10667727 0.08671274
## 3766 0.14806335 0.10363527 0.10667727 0.08671274
## 3767 0.05072162 0.09932349 0.10667727 0.08671274
## 3768 0.14806335 0.10363527 0.10667727 0.08671274
## 3769 0.14806335 0.06243174 0.10667727 0.08671274
## 3770 0.14806335 0.09293746 0.09814869 0.08671274
## 3771 0.14806335 0.09967090 0.10667727 0.08671274
## 3772 0.14806335 0.43750000 0.10667727 0.08671274
## 3773 0.05072162 0.09967090 0.10667727 0.08671274
## 3774 0.14806335 0.10363527 0.10667727 0.08671274
## 3775 0.05072162 0.09967090 0.10667727 0.08671274
## 3776 0.14806335 0.10363527 0.10667727 0.08671274
## 3777 0.05072162 0.06243174 0.10667727 0.08671274
## 3778 0.14806335 0.09293746 0.09814869 0.08671274
## 3779 0.05072162 0.09967090 0.10667727 0.08671274
## 3780 0.05072162 0.09967090 0.10667727 0.08671274
## 3781 0.05072162 0.06243174 0.10667727 0.08671274
## 3782 0.14806335 0.09293746 0.10667727 0.08671274
## 3783 0.05072162 0.09967090 0.10667727 0.08671274
## 3784 0.14806335 0.06243174 0.10667727 0.08671274
## 3785 0.05072162 0.06243174 0.10667727 0.08671274
## 3786 0.05072162 0.09967090 0.09814869 0.08671274
## 3787 0.14806335 0.06243174 0.10667727 0.08671274
## 3788 0.05072162 0.06243174 0.10667727 0.08671274
## 3789 0.14806335 0.10363527 0.10667727 0.08671274
## 3790 0.05072162 0.10363527 0.10667727 0.08671274
## 3791 0.05072162 0.09967090 0.10667727 0.08671274
## 3792 0.05072162 0.06243174 0.10667727 0.08671274
## 3793 0.14806335 0.10363527 0.10667727 0.08671274
## 3794 0.14806335 0.06243174 0.10667727 0.08671274
## 3795 0.05072162 0.09967090 0.10667727 0.08671274
## 3796 0.05072162 0.06243174 0.10667727 0.08671274
## 3797 0.14806335 0.06243174 0.10667727 0.08671274
## 3798 0.05072162 0.06243174 0.10667727 0.08671274
## 3799 0.05072162 0.09932349 0.09814869 0.08671274
## 3800 0.14806335 0.06243174 0.10667727 0.08671274
## 3801 0.14806335 0.09293746 0.09814869 0.08671274
## 3802 0.14806335 0.09932349 0.10667727 0.08671274
## 3803 0.14806335 0.09293746 0.10667727 0.08671274
## 3804 0.14806335 0.21582397 0.10667727 0.08671274
## 3805 0.05072162 0.09967090 0.10667727 0.08671274
## 3806 0.05072162 0.06243174 0.10667727 0.08671274
## 3807 0.14806335 0.06243174 0.10667727 0.08671274
## 3808 0.05072162 0.06243174 0.09814869 0.08671274
## 3809 0.05072162 0.06243174 0.09814869 0.08671274
## 3810 0.14806335 0.10363527 0.10667727 0.08671274
## 3811 0.05072162 0.06243174 0.10667727 0.08671274
## 3812 0.05072162 0.09967090 0.09814869 0.08671274
## 3813 0.14806335 0.09293746 0.10667727 0.08671274
## 3814 0.14806335 0.21582397 0.10667727 0.08671274
## 3815 0.05072162 0.09932349 0.10667727 0.08671274
## 3816 0.14806335 0.21582397 0.09814869 0.08671274
## 3817 0.14806335 0.10363527 0.09814869 0.08671274
## 3818 0.14806335 0.10363527 0.10667727 0.08671274
## 3819 0.14806335 0.09293746 0.10667727 0.08671274
## 3820 0.14806335 0.09932349 0.10667727 0.08671274
## 3821 0.14806335 0.10363527 0.10667727 0.08671274
## 3822 0.14806335 0.09932349 0.10667727 0.08671274
## 3823 0.14806335 0.06243174 0.10667727 0.08671274
## 3824 0.14806335 0.09293746 0.10667727 0.08671274
## 3825 0.05072162 0.09967090 0.10667727 0.08671274
## 3826 0.14806335 0.09932349 0.10667727 0.08671274
## 3827 0.14806335 0.06243174 0.10667727 0.08671274
## 3828 0.14806335 0.09932349 0.10667727 0.08671274
## 3829 0.05072162 0.09967090 0.10667727 0.08671274
## 3830 0.05072162 0.06243174 0.10667727 0.08671274
## 3831 0.05072162 0.09967090 0.09814869 0.08671274
## 3832 0.14806335 0.09293746 0.10667727 0.08671274
## 3833 0.14806335 0.10363527 0.10667727 0.08671274
## 3834 0.14806335 0.09293746 0.10667727 0.08671274
## 3835 0.14806335 0.21582397 0.10667727 0.08671274
## 3836 0.14806335 0.06243174 0.10667727 0.08671274
## 3837 0.14806335 0.06243174 0.10667727 0.08671274
## 3838 0.05072162 0.09967090 0.10667727 0.08671274
## 3839 0.14806335 0.09293746 0.09814869 0.08671274
## 3840 0.14806335 0.09293746 0.10667727 0.08671274
## 3841 0.14806335 0.10363527 0.10667727 0.08671274
## 3842 0.05072162 0.06243174 0.10667727 0.08671274
## 3843 0.05072162 0.09967090 0.10667727 0.08671274
## 3844 0.14806335 0.10363527 0.09814869 0.08671274
## 3845 0.14806335 0.09293746 0.10667727 0.08671274
## 3846 0.05072162 0.09967090 0.10667727 0.08671274
## 3847 0.14806335 0.09293746 0.09814869 0.08671274
## 3848 0.05072162 0.06243174 0.10667727 0.08671274
## 3849 0.14806335 0.09293746 0.11410336 0.08671274
## 3850 0.14806335 0.10363527 0.10667727 0.08671274
## 3851 0.05072162 0.06243174 0.10667727 0.08671274
## 3852 0.14806335 0.09932349 0.09814869 0.08671274
## 3853 0.14806335 0.06243174 0.10667727 0.08671274
## 3854 0.05072162 0.10363527 0.10667727 0.08671274
## 3855 0.05072162 0.09967090 0.10667727 0.08671274
## 3856 0.05072162 0.06243174 0.10667727 0.08671274
## 3857 0.05072162 0.06243174 0.10667727 0.08671274
## 3858 0.14806335 0.21582397 0.10667727 0.08671274
## 3859 0.14806335 0.10363527 0.10667727 0.08671274
## 3860 0.14806335 0.21582397 0.10667727 0.08671274
## 3861 0.05072162 0.09967090 0.10667727 0.08671274
## 3862 0.05072162 0.06243174 0.10667727 0.08671274
## 3863 0.05072162 0.09967090 0.09814869 0.08671274
## 3864 0.14806335 0.10363527 0.10667727 0.08671274
## 3865 0.05072162 0.09967090 0.10667727 0.08671274
## 3866 0.14806335 0.10363527 0.10667727 0.08671274
## 3867 0.14806335 0.45296167 0.10667727 0.08671274
## 3868 0.14806335 0.10363527 0.10667727 0.08671274
## 3869 0.05072162 0.09967090 0.10667727 0.08671274
## 3870 0.05072162 0.06243174 0.10667727 0.08671274
## 3871 0.05072162 0.06243174 0.10667727 0.08671274
## 3872 0.14806335 0.21582397 0.09814869 0.08671274
## 3873 0.05072162 0.09967090 0.10667727 0.08671274
## 3874 0.14806335 0.09293746 0.10667727 0.08671274
## 3875 0.14806335 0.09932349 0.10667727 0.08671274
## 3876 0.05072162 0.09967090 0.10667727 0.08671274
## 3877 0.14806335 0.06243174 0.10667727 0.08671274
## 3878 0.05072162 0.06243174 0.11410336 0.08671274
## 3879 0.05072162 0.06243174 0.10667727 0.08671274
## 3880 0.05072162 0.09967090 0.10667727 0.08671274
## 3881 0.05072162 0.06243174 0.10667727 0.08671274
## 3882 0.14806335 0.10363527 0.10667727 0.08671274
## 3883 0.14806335 0.09293746 0.09814869 0.08671274
## 3884 0.14806335 0.09293746 0.10667727 0.08671274
## 3885 0.14806335 0.09293746 0.10667727 0.08671274
## 3886 0.14806335 0.21582397 0.10667727 0.08671274
## 3887 0.05072162 0.06243174 0.10667727 0.08671274
## 3888 0.14806335 0.09293746 0.10667727 0.08671274
## 3889 0.14806335 0.21582397 0.09814869 0.08671274
## 3890 0.14806335 0.21582397 0.10667727 0.08671274
## 3891 0.14806335 0.06243174 0.10667727 0.08671274
## 3892 0.05072162 0.09967090 0.10667727 0.08671274
## 3893 0.05072162 0.06243174 0.10667727 0.08671274
## 3894 0.14806335 0.10363527 0.10667727 0.08671274
## 3895 0.05072162 0.06243174 0.09814869 0.08671274
## 3896 0.05072162 0.06243174 0.10667727 0.08671274
## 3897 0.05072162 0.10363527 0.09814869 0.08671274
## 3898 0.05072162 0.09293746 0.10667727 0.08671274
## 3899 0.14806335 0.09932349 0.10667727 0.08671274
## 3900 0.05072162 0.06243174 0.09814869 0.08671274
## 3901 0.14806335 0.09293746 0.10667727 0.08671274
## 3902 0.14806335 0.10363527 0.10667727 0.08671274
## 3903 0.05072162 0.09293746 0.10667727 0.08671274
## 3904 0.05072162 0.06243174 0.10667727 0.08671274
## 3905 0.14806335 0.10363527 0.10667727 0.08671274
## 3906 0.14806335 0.10363527 0.10667727 0.08671274
## 3907 0.14806335 0.09293746 0.10667727 0.08671274
## 3908 0.05072162 0.06243174 0.09814869 0.08671274
## 3909 0.05072162 0.43750000 0.10667727 0.08671274
## 3910 0.14806335 0.06243174 0.10667727 0.08671274
## 3911 0.14806335 0.09932349 0.10667727 0.08671274
## 3912 0.14806335 0.09293746 0.10667727 0.08671274
## 3913 0.14806335 0.10363527 0.10667727 0.08671274
## 3914 0.14806335 0.09932349 0.10667727 0.08671274
## 3915 0.05072162 0.09967090 0.10667727 0.08671274
## 3916 0.14806335 0.06243174 0.11410336 0.08671274
## 3917 0.14806335 0.09293746 0.10667727 0.08671274
## 3918 0.14806335 0.09967090 0.10667727 0.08671274
## 3919 0.05072162 0.06243174 0.10667727 0.08671274
## 3920 0.14806335 0.10363527 0.10667727 0.08671274
## 3921 0.14806335 0.09293746 0.10667727 0.08671274
## 3922 0.05072162 0.06243174 0.10667727 0.08671274
## 3923 0.05072162 0.09967090 0.09814869 0.08671274
## 3924 0.14806335 0.06243174 0.10667727 0.08671274
## 3925 0.05072162 0.09967090 0.10667727 0.08671274
## 3926 0.05072162 0.10363527 0.10667727 0.08671274
## 3927 0.14806335 0.10363527 0.10667727 0.08671274
## 3928 0.14806335 0.10363527 0.10667727 0.08671274
## 3929 0.14806335 0.21582397 0.10667727 0.08671274
## 3930 0.14806335 0.06243174 0.10667727 0.08671274
## 3931 0.05072162 0.06243174 0.10667727 0.08671274
## 3932 0.14806335 0.09293746 0.10667727 0.08671274
## 3933 0.05072162 0.09967090 0.09814869 0.08671274
## 3934 0.05072162 0.09967090 0.10667727 0.08671274
## 3935 0.05072162 0.06243174 0.10667727 0.08671274
## 3936 0.05072162 0.09293746 0.10667727 0.08671274
## 3937 0.14806335 0.10363527 0.10667727 0.08671274
## 3938 0.05072162 0.06243174 0.10667727 0.08671274
## 3939 0.14806335 0.21582397 0.10667727 0.08671274
## 3940 0.14806335 0.06243174 0.10667727 0.08671274
## 3941 0.14806335 0.09293746 0.10667727 0.08671274
## 3942 0.05072162 0.06243174 0.10667727 0.08671274
## 3943 0.14806335 0.10363527 0.10667727 0.08671274
## 3944 0.14806335 0.10363527 0.11410336 0.08671274
## 3945 0.14806335 0.10363527 0.10667727 0.08671274
## 3946 0.05072162 0.06243174 0.10667727 0.08671274
## 3947 0.14806335 0.09293746 0.10667727 0.08671274
## 3948 0.05072162 0.06243174 0.10667727 0.08671274
## 3949 0.14806335 0.10363527 0.10667727 0.08671274
## 3950 0.14806335 0.06243174 0.09814869 0.08671274
## 3951 0.14806335 0.09932349 0.10667727 0.08671274
## 3952 0.14806335 0.09932349 0.10667727 0.08671274
## 3953 0.14806335 0.10363527 0.10667727 0.08671274
## 3954 0.14806335 0.10363527 0.10667727 0.08671274
## 3955 0.05072162 0.06243174 0.10667727 0.08671274
## 3956 0.05072162 0.09967090 0.10667727 0.08671274
## 3957 0.14806335 0.09293746 0.10667727 0.08671274
## 3958 0.14806335 0.21582397 0.10667727 0.08671274
## 3959 0.05072162 0.09967090 0.10667727 0.08671274
## 3960 0.05072162 0.09967090 0.11410336 0.08671274
## 3961 0.14806335 0.09932349 0.10667727 0.08671274
## 3962 0.05072162 0.09967090 0.10667727 0.08671274
## 3963 0.14806335 0.09293746 0.10667727 0.08671274
## 3964 0.14806335 0.10363527 0.10667727 0.08671274
## 3965 0.05072162 0.06243174 0.09814869 0.08671274
## 3966 0.14806335 0.10363527 0.10667727 0.08671274
## 3967 0.14806335 0.06243174 0.09814869 0.08671274
## 3968 0.14806335 0.51535088 0.10667727 0.08671274
## 3969 0.05072162 0.09967090 0.10667727 0.08671274
## 3970 0.14806335 0.10363527 0.10667727 0.08671274
## 3971 0.14806335 0.09932349 0.10667727 0.08671274
## 3972 0.14806335 0.10363527 0.10667727 0.08671274
## 3973 0.05072162 0.09967090 0.10667727 0.08671274
## 3974 0.05072162 0.06243174 0.10667727 0.08671274
## 3975 0.14806335 0.21582397 0.10667727 0.08671274
## 3976 0.05072162 0.06243174 0.10667727 0.08671274
## 3977 0.05072162 0.09967090 0.10667727 0.08671274
## 3978 0.05072162 0.09967090 0.10667727 0.08671274
## 3979 0.05072162 0.09967090 0.10667727 0.08671274
## 3980 0.14806335 0.09293746 0.09814869 0.08671274
## 3981 0.14806335 0.10363527 0.10667727 0.08671274
## 3982 0.14806335 0.09932349 0.10667727 0.08671274
## 3983 0.14806335 0.09293746 0.10667727 0.08671274
## 3984 0.14806335 0.21582397 0.10667727 0.08671274
## 3985 0.05072162 0.06243174 0.10667727 0.08671274
## 3986 0.05072162 0.06243174 0.10667727 0.08671274
## 3987 0.14806335 0.09293746 0.10667727 0.08671274
## 3988 0.05072162 0.09967090 0.10667727 0.08671274
## 3989 0.14806335 0.06243174 0.10667727 0.08671274
## 3990 0.14806335 0.10363527 0.10667727 0.08671274
## 3991 0.14806335 0.09967090 0.10667727 0.08671274
## 3992 0.14806335 0.10363527 0.10667727 0.08671274
## 3993 0.05072162 0.43750000 0.09814869 0.08671274
## 3994 0.05072162 0.09967090 0.10667727 0.08671274
## 3995 0.14806335 0.21582397 0.10667727 0.08671274
## 3996 0.05072162 0.06243174 0.10667727 0.08671274
## 3997 0.05072162 0.06243174 0.09814869 0.08671274
## 3998 0.14806335 0.10363527 0.10667727 0.08671274
## 3999 0.14806335 0.06243174 0.09814869 0.08671274
## 4000 0.14806335 0.09932349 0.10667727 0.08671274
## 4001 0.14806335 0.21582397 0.10667727 0.08671274
## 4002 0.14806335 0.51535088 0.09814869 0.08671274
## 4003 0.14806335 0.09293746 0.10667727 0.08671274
## 4004 0.14806335 0.10363527 0.09814869 0.08671274
## 4005 0.14806335 0.06243174 0.10667727 0.08671274
## 4006 0.14806335 0.51535088 0.09814869 0.08671274
## 4007 0.14806335 0.21582397 0.10667727 0.08671274
## 4008 0.14806335 0.21582397 0.10667727 0.08671274
## 4009 0.05072162 0.06243174 0.10667727 0.08671274
## 4010 0.14806335 0.21582397 0.10667727 0.08671274
## 4011 0.14806335 0.09293746 0.10667727 0.08671274
## 4012 0.14806335 0.21582397 0.10667727 0.08671274
## 4013 0.14806335 0.06243174 0.09814869 0.08671274
## 4014 0.05072162 0.06243174 0.10667727 0.08671274
## 4015 0.05072162 0.09967090 0.10667727 0.08671274
## 4016 0.14806335 0.10363527 0.10667727 0.08671274
## 4017 0.05072162 0.09967090 0.10667727 0.08671274
## 4018 0.14806335 0.06243174 0.10667727 0.08671274
## 4019 0.05072162 0.09967090 0.10667727 0.08671274
## 4020 0.05072162 0.06243174 0.10667727 0.08671274
## 4021 0.14806335 0.09293746 0.10667727 0.08671274
## 4022 0.05072162 0.09967090 0.10667727 0.08671274
## 4023 0.05072162 0.06243174 0.10667727 0.08671274
## 4024 0.05072162 0.09967090 0.10667727 0.08671274
## 4025 0.05072162 0.06243174 0.10667727 0.08671274
## 4026 0.05072162 0.09967090 0.10667727 0.08671274
## 4027 0.14806335 0.06243174 0.10667727 0.08671274
## 4028 0.05072162 0.09967090 0.10667727 0.08671274
## 4029 0.14806335 0.21582397 0.10667727 0.08671274
## 4030 0.14806335 0.21582397 0.09814869 0.08671274
## 4031 0.14806335 0.09293746 0.10667727 0.08671274
## 4032 0.14806335 0.09293746 0.09814869 0.08671274
## 4033 0.05072162 0.06243174 0.10667727 0.08671274
## 4034 0.14806335 0.09293746 0.10667727 0.08671274
## 4035 0.14806335 0.09293746 0.10667727 0.08671274
## 4036 0.14806335 0.09932349 0.10667727 0.08671274
## 4037 0.05072162 0.06243174 0.10667727 0.08671274
## 4038 0.14806335 0.06243174 0.10667727 0.08671274
## 4039 0.14806335 0.09293746 0.10667727 0.08671274
## 4040 0.05072162 0.06243174 0.10667727 0.08671274
## 4041 0.05072162 0.06243174 0.10667727 0.08671274
## 4042 0.14806335 0.09293746 0.10667727 0.08671274
## 4043 0.14806335 0.10363527 0.10667727 0.08671274
## 4044 0.05072162 0.09293746 0.09814869 0.08671274
## 4045 0.14806335 0.09932349 0.10667727 0.08671274
## 4046 0.05072162 0.09967090 0.10667727 0.08671274
## 4047 0.14806335 0.51535088 0.10667727 0.08671274
## 4048 0.14806335 0.06243174 0.10667727 0.08671274
## 4049 0.14806335 0.10363527 0.10667727 0.08671274
## 4050 0.14806335 0.51535088 0.10667727 0.08671274
## 4051 0.05072162 0.09967090 0.10667727 0.08671274
## 4052 0.14806335 0.21582397 0.10667727 0.08671274
## 4053 0.05072162 0.09967090 0.10667727 0.08671274
## 4054 0.05072162 0.09967090 0.10667727 0.08671274
## 4055 0.14806335 0.06243174 0.10667727 0.08671274
## 4056 0.05072162 0.06243174 0.10667727 0.08671274
## 4057 0.14806335 0.09932349 0.10667727 0.08671274
## 4058 0.05072162 0.09967090 0.09814869 0.08671274
## 4059 0.05072162 0.09967090 0.10667727 0.08671274
## 4060 0.14806335 0.09293746 0.10667727 0.08671274
## 4061 0.05072162 0.09967090 0.09814869 0.08671274
## 4062 0.14806335 0.21582397 0.10667727 0.08671274
## 4063 0.05072162 0.09967090 0.10667727 0.08671274
## 4064 0.05072162 0.06243174 0.10667727 0.08671274
## 4065 0.14806335 0.10363527 0.10667727 0.08671274
## 4066 0.14806335 0.21582397 0.10667727 0.08671274
## 4067 0.05072162 0.09967090 0.10667727 0.08671274
## 4068 0.14806335 0.10363527 0.10667727 0.08671274
## 4069 0.14806335 0.09932349 0.10667727 0.08671274
## 4070 0.14806335 0.10363527 0.10667727 0.08671274
## 4071 0.14806335 0.06243174 0.10667727 0.08671274
## 4072 0.05072162 0.10363527 0.10667727 0.08671274
## 4073 0.14806335 0.09293746 0.10667727 0.08671274
## 4074 0.14806335 0.21582397 0.10667727 0.08671274
## 4075 0.05072162 0.09293746 0.10667727 0.08671274
## 4076 0.05072162 0.09967090 0.10667727 0.08671274
## 4077 0.14806335 0.51535088 0.10667727 0.08671274
## 4078 0.05072162 0.09967090 0.10667727 0.08671274
## 4079 0.14806335 0.06243174 0.09814869 0.08671274
## 4080 0.14806335 0.06243174 0.09814869 0.08671274
## 4081 0.05072162 0.09967090 0.10667727 0.08671274
## 4082 0.14806335 0.09932349 0.10667727 0.08671274
## 4083 0.14806335 0.09932349 0.09814869 0.08671274
## 4084 0.14806335 0.09293746 0.10667727 0.08671274
## 4085 0.05072162 0.06243174 0.10667727 0.08671274
## 4086 0.05072162 0.10363527 0.10667727 0.08671274
## 4087 0.14806335 0.09293746 0.10667727 0.08671274
## 4088 0.14806335 0.09293746 0.10667727 0.08671274
## 4089 0.05072162 0.06243174 0.10667727 0.08671274
## 4090 0.05072162 0.09967090 0.10667727 0.08671274
## 4091 0.05072162 0.09967090 0.09814869 0.08671274
## 4092 0.05072162 0.09967090 0.10667727 0.08671274
## 4093 0.14806335 0.06243174 0.10667727 0.08671274
## 4094 0.05072162 0.09967090 0.10667727 0.08671274
## 4095 0.14806335 0.10363527 0.10667727 0.08671274
## 4096 0.05072162 0.06243174 0.10667727 0.08671274
## 4097 0.14806335 0.09932349 0.10667727 0.08671274
## 4098 0.14806335 0.09932349 0.10667727 0.08671274
## 4099 0.05072162 0.09967090 0.10667727 0.08671274
## 4100 0.14806335 0.10363527 0.09814869 0.08671274
## 4101 0.14806335 0.45296167 0.10667727 0.08671274
## 4102 0.05072162 0.09967090 0.10667727 0.08671274
## 4103 0.05072162 0.06243174 0.10667727 0.08671274
## 4104 0.14806335 0.10363527 0.10667727 0.08671274
## 4105 0.14806335 0.09293746 0.10667727 0.08671274
## 4106 0.05072162 0.06243174 0.10667727 0.08671274
## 4107 0.05072162 0.09967090 0.10667727 0.08671274
## 4108 0.14806335 0.09932349 0.10667727 0.08671274
## 4109 0.14806335 0.10363527 0.10667727 0.08671274
## 4110 0.14806335 0.09932349 0.10667727 0.08671274
## 4111 0.05072162 0.09967090 0.10667727 0.08671274
## 4112 0.05072162 0.09967090 0.10667727 0.08671274
## 4113 0.14806335 0.09932349 0.10667727 0.08671274
## 4114 0.05072162 0.06243174 0.10667727 0.08671274
## 4115 0.14806335 0.51535088 0.10667727 0.08671274
## 4116 0.05072162 0.06243174 0.09814869 0.08671274
## 4117 0.14806335 0.09293746 0.10667727 0.08671274
## 4118 0.05072162 0.09293746 0.10667727 0.08671274
## 4119 0.05072162 0.06243174 0.10667727 0.08671274
## 4120 0.14806335 0.09932349 0.10667727 0.08671274
## 4121 0.14806335 0.21582397 0.10667727 0.08671274
## 4122 0.14806335 0.09293746 0.10667727 0.08671274
## 4123 0.14806335 0.09293746 0.10667727 0.08671274
## 4124 0.05072162 0.06243174 0.10667727 0.08671274
## 4125 0.14806335 0.10363527 0.10667727 0.08671274
## 4126 0.14806335 0.21582397 0.09814869 0.08671274
## 4127 0.14806335 0.10363527 0.10667727 0.08671274
## 4128 0.05072162 0.09967090 0.10667727 0.08671274
## 4129 0.05072162 0.06243174 0.10667727 0.08671274
## 4130 0.14806335 0.10363527 0.10667727 0.08671274
## 4131 0.05072162 0.09967090 0.10667727 0.08671274
## 4132 0.14806335 0.06243174 0.10667727 0.08671274
## 4133 0.05072162 0.09967090 0.10667727 0.08671274
## 4134 0.14806335 0.51535088 0.11410336 0.08671274
## 4135 0.14806335 0.10363527 0.10667727 0.08671274
## 4136 0.14806335 0.21582397 0.10667727 0.08671274
## 4137 0.14806335 0.09293746 0.10667727 0.08671274
## 4138 0.14806335 0.09967090 0.09814869 0.08671274
## 4139 0.05072162 0.06243174 0.10667727 0.08671274
## 4140 0.05072162 0.06243174 0.10667727 0.08671274
## 4141 0.14806335 0.09293746 0.09814869 0.08671274
## 4142 0.14806335 0.09932349 0.10667727 0.08671274
## 4143 0.05072162 0.06243174 0.10667727 0.08671274
## 4144 0.14806335 0.10363527 0.10667727 0.08671274
## 4145 0.05072162 0.06243174 0.10667727 0.08671274
## 4146 0.05072162 0.06243174 0.10667727 0.08671274
## 4147 0.14806335 0.06243174 0.10667727 0.08671274
## 4148 0.05072162 0.09932349 0.10667727 0.08671274
## 4149 0.14806335 0.09293746 0.10667727 0.08671274
## 4150 0.05072162 0.06243174 0.10667727 0.08671274
## 4151 0.14806335 0.06243174 0.10667727 0.08671274
## 4152 0.14806335 0.09293746 0.09814869 0.08671274
## 4153 0.14806335 0.09293746 0.10667727 0.08671274
## 4154 0.14806335 0.09293746 0.10667727 0.08671274
## 4155 0.14806335 0.10363527 0.10667727 0.08671274
## 4156 0.14806335 0.10363527 0.10667727 0.08671274
## 4157 0.14806335 0.09293746 0.10667727 0.08671274
## 4158 0.14806335 0.21582397 0.10667727 0.08671274
## 4159 0.14806335 0.10363527 0.10667727 0.08671274
## 4160 0.05072162 0.06243174 0.10667727 0.08671274
## 4161 0.14806335 0.10363527 0.10667727 0.08671274
## 4162 0.14806335 0.09932349 0.10667727 0.08671274
## 4163 0.14806335 0.10363527 0.10667727 0.08671274
## 4164 0.05072162 0.09967090 0.11410336 0.08671274
## 4165 0.05072162 0.09293746 0.10667727 0.08671274
## 4166 0.14806335 0.10363527 0.10667727 0.08671274
## 4167 0.14806335 0.10363527 0.10667727 0.08671274
## 4168 0.05072162 0.06243174 0.10667727 0.08671274
## 4169 0.05072162 0.09967090 0.10667727 0.08671274
## 4170 0.14806335 0.10363527 0.10667727 0.08671274
## 4171 0.14806335 0.09293746 0.10667727 0.08671274
## 4172 0.05072162 0.09967090 0.10667727 0.08671274
## 4173 0.05072162 0.06243174 0.10667727 0.08671274
## 4174 0.05072162 0.06243174 0.10667727 0.08671274
## 4175 0.14806335 0.21582397 0.10667727 0.08671274
## 4176 0.14806335 0.09293746 0.10667727 0.08671274
## 4177 0.14806335 0.10363527 0.10667727 0.08671274
## 4178 0.05072162 0.09293746 0.10667727 0.08671274
## 4179 0.05072162 0.09967090 0.09814869 0.08671274
## 4180 0.05072162 0.06243174 0.10667727 0.08671274
## 4181 0.05072162 0.06243174 0.10667727 0.08671274
## 4182 0.14806335 0.21582397 0.10667727 0.08671274
## 4183 0.14806335 0.09932349 0.09814869 0.08671274
## 4184 0.05072162 0.06243174 0.10667727 0.08671274
## 4185 0.14806335 0.09293746 0.10667727 0.08671274
## 4186 0.14806335 0.09293746 0.10667727 0.08671274
## 4187 0.14806335 0.10363527 0.10667727 0.08671274
## 4188 0.14806335 0.09932349 0.10667727 0.08671274
## 4189 0.14806335 0.51535088 0.09814869 0.08671274
## 4190 0.14806335 0.06243174 0.11410336 0.08671274
## 4191 0.14806335 0.21582397 0.09814869 0.08671274
## 4192 0.14806335 0.10363527 0.10667727 0.08671274
## 4193 0.05072162 0.09967090 0.09814869 0.08671274
## 4194 0.05072162 0.09967090 0.10667727 0.08671274
## 4195 0.14806335 0.10363527 0.10667727 0.08671274
## 4196 0.05072162 0.21582397 0.10667727 0.08671274
## 4197 0.14806335 0.43750000 0.10667727 0.08671274
## 4198 0.14806335 0.09293746 0.09814869 0.08671274
## 4199 0.14806335 0.09932349 0.10667727 0.08671274
## 4200 0.14806335 0.09932349 0.10667727 0.08671274
## 4201 0.14806335 0.09932349 0.10667727 0.08671274
## 4202 0.14806335 0.21582397 0.10667727 0.08671274
## 4203 0.05072162 0.09293746 0.10667727 0.08671274
## 4204 0.14806335 0.10363527 0.10667727 0.08671274
## 4205 0.14806335 0.09932349 0.09814869 0.08671274
## 4206 0.14806335 0.09932349 0.10667727 0.08671274
## 4207 0.14806335 0.06243174 0.10667727 0.08671274
## 4208 0.05072162 0.06243174 0.10667727 0.08671274
## 4209 0.14806335 0.10363527 0.10667727 0.08671274
## 4210 0.05072162 0.06243174 0.10667727 0.08671274
## 4211 0.14806335 0.09293746 0.10667727 0.08671274
## 4212 0.05072162 0.06243174 0.10667727 0.08671274
## 4213 0.05072162 0.06243174 0.10667727 0.08671274
## 4214 0.14806335 0.51535088 0.10667727 0.08671274
## 4215 0.14806335 0.10363527 0.10667727 0.08671274
## 4216 0.05072162 0.09293746 0.10667727 0.08671274
## 4217 0.14806335 0.06243174 0.10667727 0.08671274
## 4218 0.14806335 0.10363527 0.10667727 0.08671274
## 4219 0.05072162 0.06243174 0.10667727 0.08671274
## 4220 0.05072162 0.09967090 0.10667727 0.08671274
## 4221 0.14806335 0.10363527 0.10667727 0.08671274
## 4222 0.14806335 0.09293746 0.10667727 0.08671274
## 4223 0.05072162 0.06243174 0.10667727 0.08671274
## 4224 0.05072162 0.09967090 0.10667727 0.08671274
## 4225 0.14806335 0.09293746 0.10667727 0.08671274
## 4226 0.14806335 0.45296167 0.10667727 0.08671274
## 4227 0.05072162 0.06243174 0.10667727 0.08671274
## 4228 0.05072162 0.09967090 0.10667727 0.08671274
## 4229 0.05072162 0.09293746 0.10667727 0.08671274
## 4230 0.14806335 0.43750000 0.10667727 0.08671274
## 4231 0.14806335 0.09932349 0.10667727 0.08671274
## 4232 0.14806335 0.10363527 0.10667727 0.08671274
## 4233 0.05072162 0.06243174 0.09814869 0.08671274
## 4234 0.14806335 0.06243174 0.10667727 0.08671274
## 4235 0.14806335 0.09293746 0.09814869 0.08671274
## 4236 0.14806335 0.06243174 0.10667727 0.08671274
## 4237 0.14806335 0.10363527 0.10667727 0.08671274
## 4238 0.14806335 0.09293746 0.10667727 0.08671274
## 4239 0.14806335 0.09293746 0.10667727 0.08671274
## 4240 0.14806335 0.09932349 0.10667727 0.08671274
## 4241 0.14806335 0.09967090 0.09814869 0.08671274
## 4242 0.05072162 0.09967090 0.10667727 0.08671274
## 4243 0.14806335 0.10363527 0.10667727 0.08671274
## 4244 0.14806335 0.10363527 0.10667727 0.08671274
## 4245 0.05072162 0.09967090 0.10667727 0.08671274
## 4246 0.14806335 0.10363527 0.10667727 0.08671274
## 4247 0.05072162 0.09967090 0.10667727 0.08671274
## 4248 0.14806335 0.51535088 0.10667727 0.08671274
## 4249 0.14806335 0.51535088 0.10667727 0.08671274
## 4250 0.05072162 0.09967090 0.10667727 0.08671274
## 4251 0.14806335 0.10363527 0.10667727 0.08671274
## 4252 0.05072162 0.09293746 0.10667727 0.08671274
## 4253 0.14806335 0.51535088 0.10667727 0.08671274
## 4254 0.14806335 0.21582397 0.10667727 0.08671274
## 4255 0.14806335 0.10363527 0.10667727 0.08671274
## 4256 0.14806335 0.09932349 0.10667727 0.08671274
## 4257 0.14806335 0.06243174 0.09814869 0.08671274
## 4258 0.05072162 0.09967090 0.10667727 0.08671274
## 4259 0.14806335 0.09293746 0.09814869 0.08671274
## 4260 0.14806335 0.09293746 0.10667727 0.08671274
## 4261 0.14806335 0.09967090 0.10667727 0.08671274
## 4262 0.14806335 0.10363527 0.10667727 0.08671274
## 4263 0.14806335 0.06243174 0.10667727 0.08671274
## 4264 0.14806335 0.06243174 0.10667727 0.08671274
## 4265 0.14806335 0.10363527 0.10667727 0.08671274
## 4266 0.05072162 0.06243174 0.10667727 0.08671274
## 4267 0.14806335 0.09293746 0.10667727 0.08671274
## 4268 0.14806335 0.09293746 0.09814869 0.08671274
## 4269 0.14806335 0.21582397 0.10667727 0.08671274
## 4270 0.05072162 0.09967090 0.10667727 0.08671274
## 4271 0.14806335 0.21582397 0.10667727 0.08671274
## 4272 0.05072162 0.06243174 0.10667727 0.08671274
## 4273 0.14806335 0.06243174 0.10667727 0.08671274
## 4274 0.14806335 0.21582397 0.10667727 0.08671274
## 4275 0.14806335 0.10363527 0.10667727 0.08671274
## 4276 0.05072162 0.06243174 0.10667727 0.08671274
## 4277 0.14806335 0.10363527 0.10667727 0.08671274
## 4278 0.14806335 0.09932349 0.10667727 0.08671274
## 4279 0.14806335 0.10363527 0.10667727 0.08671274
## 4280 0.05072162 0.06243174 0.09814869 0.08671274
## 4281 0.14806335 0.09293746 0.10667727 0.08671274
## 4282 0.05072162 0.06243174 0.10667727 0.08671274
## 4283 0.05072162 0.06243174 0.10667727 0.08671274
## 4284 0.14806335 0.09932349 0.10667727 0.08671274
## 4285 0.14806335 0.21582397 0.10667727 0.08671274
## 4286 0.05072162 0.09967090 0.10667727 0.08671274
## 4287 0.14806335 0.10363527 0.10667727 0.08671274
## 4288 0.05072162 0.09967090 0.10667727 0.08671274
## 4289 0.05072162 0.06243174 0.10667727 0.08671274
## 4290 0.14806335 0.10363527 0.10667727 0.08671274
## 4291 0.14806335 0.21582397 0.10667727 0.08671274
## 4292 0.05072162 0.06243174 0.10667727 0.08671274
## 4293 0.05072162 0.06243174 0.10667727 0.08671274
## 4294 0.05072162 0.21582397 0.10667727 0.08671274
## 4295 0.14806335 0.51535088 0.10667727 0.08671274
## 4296 0.14806335 0.09932349 0.11410336 0.08671274
## 4297 0.05072162 0.06243174 0.10667727 0.08671274
## 4298 0.14806335 0.51535088 0.09814869 0.08671274
## 4299 0.05072162 0.09967090 0.10667727 0.08671274
## 4300 0.14806335 0.09293746 0.10667727 0.08671274
## 4301 0.14806335 0.10363527 0.10667727 0.08671274
## 4302 0.05072162 0.06243174 0.09814869 0.08671274
## 4303 0.14806335 0.09293746 0.10667727 0.08671274
## 4304 0.14806335 0.10363527 0.10667727 0.08671274
## 4305 0.14806335 0.10363527 0.10667727 0.08671274
## 4306 0.14806335 0.10363527 0.10667727 0.08671274
## 4307 0.14806335 0.09293746 0.10667727 0.08671274
## 4308 0.05072162 0.09967090 0.10667727 0.08671274
## 4309 0.05072162 0.06243174 0.10667727 0.08671274
## 4310 0.14806335 0.10363527 0.10667727 0.08671274
## 4311 0.05072162 0.09967090 0.10667727 0.08671274
## 4312 0.05072162 0.09967090 0.10667727 0.08671274
## 4313 0.05072162 0.06243174 0.10667727 0.08671274
## 4314 0.05072162 0.06243174 0.10667727 0.08671274
## 4315 0.05072162 0.09967090 0.10667727 0.08671274
## 4316 0.05072162 0.09967090 0.10667727 0.08671274
## 4317 0.05072162 0.09967090 0.10667727 0.08671274
## 4318 0.14806335 0.21582397 0.10667727 0.08671274
## 4319 0.14806335 0.06243174 0.09814869 0.08671274
## 4320 0.05072162 0.06243174 0.10667727 0.08671274
## 4321 0.14806335 0.09293746 0.10667727 0.08671274
## 4322 0.14806335 0.09293746 0.10667727 0.08671274
## 4323 0.14806335 0.10363527 0.10667727 0.08671274
## 4324 0.14806335 0.10363527 0.10667727 0.08671274
## 4325 0.14806335 0.09293746 0.10667727 0.08671274
## 4326 0.05072162 0.10363527 0.10667727 0.08671274
## 4327 0.05072162 0.06243174 0.10667727 0.08671274
## 4328 0.14806335 0.09967090 0.10667727 0.08671274
## 4329 0.14806335 0.09967090 0.10667727 0.08671274
## 4330 0.05072162 0.09967090 0.10667727 0.08671274
## 4331 0.14806335 0.21582397 0.10667727 0.08671274
## 4332 0.05072162 0.06243174 0.10667727 0.08671274
## 4333 0.14806335 0.10363527 0.10667727 0.08671274
## 4334 0.14806335 0.10363527 0.10667727 0.08671274
## 4335 0.14806335 0.09293746 0.10667727 0.08671274
## 4336 0.05072162 0.21582397 0.10667727 0.08671274
## 4337 0.14806335 0.09932349 0.10667727 0.08671274
## 4338 0.14806335 0.10363527 0.10667727 0.08671274
## 4339 0.14806335 0.09932349 0.10667727 0.08671274
## 4340 0.14806335 0.09293746 0.09814869 0.08671274
## 4341 0.05072162 0.06243174 0.10667727 0.08671274
## 4342 0.14806335 0.10363527 0.10667727 0.08671274
## 4343 0.05072162 0.06243174 0.10667727 0.08671274
## 4344 0.14806335 0.10363527 0.10667727 0.08671274
## 4345 0.14806335 0.09932349 0.10667727 0.08671274
## 4346 0.05072162 0.09967090 0.10667727 0.08671274
## 4347 0.14806335 0.10363527 0.10667727 0.08671274
## 4348 0.14806335 0.09293746 0.10667727 0.08671274
## 4349 0.14806335 0.21582397 0.10667727 0.08671274
## 4350 0.05072162 0.09967090 0.10667727 0.08671274
## 4351 0.14806335 0.10363527 0.10667727 0.08671274
## 4352 0.05072162 0.06243174 0.10667727 0.08671274
## 4353 0.05072162 0.06243174 0.10667727 0.08671274
## 4354 0.14806335 0.09932349 0.10667727 0.08671274
## 4355 0.05072162 0.09967090 0.10667727 0.08671274
## 4356 0.05072162 0.06243174 0.10667727 0.08671274
## 4357 0.14806335 0.10363527 0.10667727 0.08671274
## 4358 0.14806335 0.09293746 0.10667727 0.08671274
## 4359 0.14806335 0.10363527 0.10667727 0.08671274
## 4360 0.05072162 0.06243174 0.10667727 0.08671274
## 4361 0.14806335 0.09293746 0.10667727 0.08671274
## 4362 0.05072162 0.09967090 0.10667727 0.08671274
## 4363 0.14806335 0.09293746 0.10667727 0.08671274
## 4364 0.05072162 0.09967090 0.10667727 0.08671274
## 4365 0.05072162 0.06243174 0.10667727 0.08671274
## 4366 0.14806335 0.09932349 0.10667727 0.08671274
## 4367 0.14806335 0.09293746 0.10667727 0.08671274
## 4368 0.05072162 0.09293746 0.10667727 0.08671274
## 4369 0.05072162 0.06243174 0.10667727 0.08671274
## 4370 0.05072162 0.21582397 0.10667727 0.08671274
## 4371 0.05072162 0.09967090 0.10667727 0.08671274
## 4372 0.14806335 0.51535088 0.10667727 0.08671274
## 4373 0.14806335 0.09293746 0.10667727 0.08671274
## 4374 0.14806335 0.09293746 0.10667727 0.08671274
## 4375 0.14806335 0.09932349 0.10667727 0.08671274
## 4376 0.05072162 0.09293746 0.10667727 0.08671274
## 4377 0.14806335 0.09293746 0.10667727 0.08671274
## 4378 0.14806335 0.10363527 0.10667727 0.08671274
## 4379 0.14806335 0.51535088 0.10667727 0.08671274
## 4380 0.14806335 0.10363527 0.10667727 0.08671274
## 4381 0.14806335 0.51535088 0.10667727 0.08671274
## 4382 0.14806335 0.06243174 0.10667727 0.08671274
## 4383 0.14806335 0.10363527 0.10667727 0.08671274
## 4384 0.14806335 0.21582397 0.10667727 0.08671274
## 4385 0.14806335 0.10363527 0.10667727 0.08671274
## 4386 0.14806335 0.21582397 0.10667727 0.08671274
## 4387 0.05072162 0.09967090 0.09814869 0.08671274
## 4388 0.05072162 0.06243174 0.10667727 0.08671274
## 4389 0.14806335 0.09293746 0.10667727 0.08671274
## 4390 0.05072162 0.09967090 0.10667727 0.08671274
## 4391 0.14806335 0.10363527 0.10667727 0.08671274
## 4392 0.14806335 0.10363527 0.10667727 0.08671274
## 4393 0.14806335 0.09293746 0.10667727 0.08671274
## 4394 0.14806335 0.09967090 0.10667727 0.08671274
## 4395 0.05072162 0.09293746 0.10667727 0.08671274
## 4396 0.05072162 0.06243174 0.10667727 0.08671274
## 4397 0.05072162 0.06243174 0.10667727 0.08671274
## 4398 0.14806335 0.09293746 0.10667727 0.08671274
## 4399 0.14806335 0.09932349 0.10667727 0.08671274
## 4400 0.14806335 0.09293746 0.10667727 0.08671274
## 4401 0.14806335 0.09932349 0.10667727 0.08671274
## 4402 0.14806335 0.21582397 0.10667727 0.08671274
## 4403 0.05072162 0.09967090 0.10667727 0.08671274
## 4404 0.05072162 0.21582397 0.10667727 0.08671274
## 4405 0.14806335 0.21582397 0.10667727 0.08671274
## 4406 0.14806335 0.09293746 0.09814869 0.08671274
## 4407 0.05072162 0.10363527 0.10667727 0.08671274
## 4408 0.05072162 0.09967090 0.09814869 0.08671274
## 4409 0.14806335 0.06243174 0.09814869 0.08671274
## 4410 0.05072162 0.09967090 0.10667727 0.08671274
## 4411 0.14806335 0.21582397 0.10667727 0.08671274
## 4412 0.14806335 0.21582397 0.10667727 0.08671274
## 4413 0.14806335 0.09932349 0.10667727 0.08671274
## 4414 0.14806335 0.09293746 0.09814869 0.08671274
## 4415 0.14806335 0.10363527 0.09814869 0.08671274
## 4416 0.14806335 0.06243174 0.09814869 0.08671274
## 4417 0.05072162 0.06243174 0.09814869 0.08671274
## 4418 0.14806335 0.09293746 0.10667727 0.08671274
## 4419 0.14806335 0.06243174 0.10667727 0.08671274
## 4420 0.05072162 0.06243174 0.10667727 0.08671274
## 4421 0.05072162 0.09967090 0.10667727 0.08671274
## 4422 0.14806335 0.21582397 0.10667727 0.08671274
## 4423 0.14806335 0.10363527 0.10667727 0.08671274
## 4424 0.14806335 0.09293746 0.10667727 0.08671274
## 4425 0.05072162 0.09967090 0.10667727 0.08671274
## 4426 0.05072162 0.06243174 0.10667727 0.08671274
## 4427 0.14806335 0.21582397 0.10667727 0.08671274
## 4428 0.14806335 0.10363527 0.10667727 0.08671274
## 4429 0.14806335 0.10363527 0.10667727 0.08671274
## 4430 0.14806335 0.09932349 0.10667727 0.08671274
## 4431 0.14806335 0.21582397 0.10667727 0.08671274
## 4432 0.05072162 0.09967090 0.10667727 0.08671274
## 4433 0.05072162 0.06243174 0.10667727 0.08671274
## 4434 0.14806335 0.10363527 0.10667727 0.08671274
## 4435 0.05072162 0.06243174 0.10667727 0.08671274
## 4436 0.05072162 0.06243174 0.10667727 0.08671274
## 4437 0.14806335 0.10363527 0.10667727 0.08671274
## 4438 0.05072162 0.21582397 0.10667727 0.08671274
## 4439 0.14806335 0.06243174 0.10667727 0.08671274
## 4440 0.14806335 0.10363527 0.10667727 0.08671274
## 4441 0.05072162 0.06243174 0.10667727 0.08671274
## 4442 0.14806335 0.06243174 0.10667727 0.08671274
## 4443 0.14806335 0.48076923 0.10667727 0.08671274
## 4444 0.14806335 0.09293746 0.10667727 0.08671274
## 4445 0.05072162 0.10363527 0.10667727 0.08671274
## 4446 0.14806335 0.10363527 0.10667727 0.08671274
## 4447 0.14806335 0.21582397 0.10667727 0.08671274
## 4448 0.05072162 0.06243174 0.10667727 0.08671274
## 4449 0.14806335 0.09293746 0.09814869 0.08671274
## 4450 0.14806335 0.10363527 0.10667727 0.08671274
## 4451 0.14806335 0.21582397 0.09814869 0.08671274
## 4452 0.05072162 0.09967090 0.10667727 0.08671274
## 4453 0.14806335 0.06243174 0.10667727 0.08671274
## 4454 0.14806335 0.09293746 0.09814869 0.08671274
## 4455 0.14806335 0.21582397 0.10667727 0.08671274
## 4456 0.05072162 0.09967090 0.10667727 0.08671274
## 4457 0.14806335 0.09293746 0.09814869 0.08671274
## 4458 0.05072162 0.09293746 0.10667727 0.08671274
## 4459 0.14806335 0.10363527 0.10667727 0.08671274
## 4460 0.14806335 0.10363527 0.10667727 0.08671274
## 4461 0.14806335 0.09293746 0.10667727 0.08671274
## 4462 0.05072162 0.09967090 0.10667727 0.08671274
## 4463 0.05072162 0.09932349 0.10667727 0.08671274
## 4464 0.05072162 0.09932349 0.09814869 0.08671274
## 4465 0.05072162 0.09967090 0.10667727 0.08671274
## 4466 0.05072162 0.09293746 0.10667727 0.08671274
## 4467 0.05072162 0.06243174 0.10667727 0.08671274
## 4468 0.14806335 0.09293746 0.10667727 0.08671274
## 4469 0.05072162 0.06243174 0.10667727 0.08671274
## 4470 0.05072162 0.09967090 0.10667727 0.08671274
## 4471 0.05072162 0.09967090 0.10667727 0.08671274
## 4472 0.05072162 0.06243174 0.11410336 0.08671274
## 4473 0.14806335 0.09932349 0.10667727 0.08671274
## 4474 0.05072162 0.06243174 0.09814869 0.08671274
## 4475 0.14806335 0.06243174 0.10667727 0.08671274
## 4476 0.14806335 0.10363527 0.10667727 0.08671274
## 4477 0.14806335 0.09932349 0.10667727 0.08671274
## 4478 0.05072162 0.06243174 0.10667727 0.08671274
## 4479 0.05072162 0.06243174 0.10667727 0.08671274
## 4480 0.14806335 0.21582397 0.09814869 0.08671274
## 4481 0.14806335 0.21582397 0.09814869 0.08671274
## 4482 0.05072162 0.09967090 0.10667727 0.08671274
## 4483 0.05072162 0.10363527 0.10667727 0.08671274
## 4484 0.14806335 0.09293746 0.10667727 0.08671274
## 4485 0.05072162 0.09967090 0.10667727 0.08671274
## 4486 0.14806335 0.10363527 0.10667727 0.08671274
## 4487 0.14806335 0.51535088 0.10667727 0.08671274
## 4488 0.14806335 0.10363527 0.10667727 0.08671274
## 4489 0.14806335 0.09293746 0.10667727 0.08671274
## 4490 0.14806335 0.10363527 0.10667727 0.08671274
## 4491 0.05072162 0.21582397 0.10667727 0.08671274
## 4492 0.05072162 0.06243174 0.10667727 0.08671274
## 4493 0.05072162 0.06243174 0.10667727 0.08671274
## 4494 0.05072162 0.06243174 0.10667727 0.08671274
## 4495 0.14806335 0.10363527 0.10667727 0.08671274
## 4496 0.14806335 0.10363527 0.10667727 0.08671274
## 4497 0.14806335 0.10363527 0.10667727 0.08671274
## 4498 0.14806335 0.10363527 0.10667727 0.08671274
## 4499 0.14806335 0.21582397 0.10667727 0.08671274
## 4500 0.05072162 0.09967090 0.10667727 0.08671274
## 4501 0.14806335 0.09932349 0.10667727 0.08671274
## 4502 0.14806335 0.09293746 0.09814869 0.08671274
## 4503 0.05072162 0.06243174 0.10667727 0.08671274
## 4504 0.14806335 0.10363527 0.10667727 0.08671274
## 4505 0.14806335 0.10363527 0.10667727 0.08671274
## 4506 0.14806335 0.10363527 0.09814869 0.08671274
## 4507 0.05072162 0.06243174 0.09814869 0.08671274
## 4508 0.14806335 0.21582397 0.10667727 0.08671274
## 4509 0.14806335 0.06243174 0.10667727 0.08671274
## 4510 0.14806335 0.10363527 0.10667727 0.08671274
## 4511 0.14806335 0.09932349 0.10667727 0.08671274
## 4512 0.14806335 0.10363527 0.10667727 0.08671274
## 4513 0.14806335 0.10363527 0.10667727 0.08671274
## 4514 0.05072162 0.09967090 0.10667727 0.08671274
## 4515 0.14806335 0.06243174 0.10667727 0.08671274
## 4516 0.05072162 0.06243174 0.10667727 0.08671274
## 4517 0.14806335 0.09293746 0.10667727 0.08671274
## 4518 0.14806335 0.06243174 0.10667727 0.08671274
## 4519 0.14806335 0.06243174 0.09814869 0.08671274
## 4520 0.14806335 0.09967090 0.10667727 0.08671274
## 4521 0.05072162 0.09967090 0.10667727 0.08671274
## 4522 0.14806335 0.10363527 0.10667727 0.08671274
## 4523 0.14806335 0.21582397 0.10667727 0.08671274
## 4524 0.05072162 0.09967090 0.10667727 0.08671274
## 4525 0.05072162 0.09967090 0.10667727 0.08671274
## 4526 0.14806335 0.10363527 0.10667727 0.08671274
## 4527 0.14806335 0.09293746 0.09814869 0.08671274
## 4528 0.05072162 0.06243174 0.10667727 0.08671274
## 4529 0.14806335 0.06243174 0.10667727 0.08671274
## 4530 0.14806335 0.06243174 0.10667727 0.08671274
## 4531 0.14806335 0.09293746 0.09814869 0.08671274
## 4532 0.14806335 0.09293746 0.10667727 0.08671274
## 4533 0.05072162 0.09967090 0.10667727 0.08671274
## 4534 0.14806335 0.10363527 0.10667727 0.08671274
## 4535 0.05072162 0.06243174 0.10667727 0.08671274
## 4536 0.05072162 0.09967090 0.10667727 0.08671274
## 4537 0.05072162 0.06243174 0.10667727 0.08671274
## 4538 0.05072162 0.06243174 0.10667727 0.08671274
## 4539 0.14806335 0.48076923 0.10667727 0.08671274
## 4540 0.14806335 0.10363527 0.10667727 0.08671274
## 4541 0.05072162 0.06243174 0.10667727 0.08671274
## 4542 0.05072162 0.06243174 0.10667727 0.08671274
## 4543 0.14806335 0.09293746 0.10667727 0.08671274
## 4544 0.05072162 0.09967090 0.09814869 0.08671274
## 4545 0.14806335 0.10363527 0.11410336 0.08671274
## 4546 0.05072162 0.09967090 0.10667727 0.08671274
## 4547 0.14806335 0.09293746 0.10667727 0.08671274
## 4548 0.14806335 0.09293746 0.10667727 0.08671274
## 4549 0.05072162 0.09967090 0.10667727 0.08671274
## 4550 0.05072162 0.09967090 0.10667727 0.08671274
## 4551 0.05072162 0.06243174 0.09814869 0.08671274
## 4552 0.05072162 0.09967090 0.10667727 0.08671274
## 4553 0.14806335 0.10363527 0.10667727 0.08671274
## 4554 0.05072162 0.09967090 0.09814869 0.08671274
## 4555 0.14806335 0.10363527 0.10667727 0.08671274
## 4556 0.05072162 0.09967090 0.10667727 0.08671274
## 4557 0.14806335 0.06243174 0.11410336 0.08671274
## 4558 0.14806335 0.09293746 0.10667727 0.08671274
## 4559 0.14806335 0.10363527 0.10667727 0.08671274
## 4560 0.14806335 0.09293746 0.10667727 0.08671274
## 4561 0.14806335 0.09293746 0.09814869 0.08671274
## 4562 0.05072162 0.09967090 0.10667727 0.08671274
## 4563 0.05072162 0.09932349 0.10667727 0.08671274
## 4564 0.05072162 0.09967090 0.10667727 0.08671274
## 4565 0.14806335 0.21582397 0.10667727 0.08671274
## 4566 0.14806335 0.10363527 0.09814869 0.08671274
## 4567 0.14806335 0.09293746 0.10667727 0.08671274
## 4568 0.14806335 0.06243174 0.10667727 0.08671274
## 4569 0.05072162 0.06243174 0.10667727 0.08671274
## 4570 0.14806335 0.10363527 0.10667727 0.08671274
## 4571 0.14806335 0.09967090 0.09814869 0.08671274
## 4572 0.14806335 0.09932349 0.10667727 0.08671274
## 4573 0.14806335 0.43750000 0.10667727 0.08671274
## 4574 0.05072162 0.09967090 0.10667727 0.08671274
## 4575 0.14806335 0.09293746 0.10667727 0.08671274
## 4576 0.14806335 0.09293746 0.10667727 0.08671274
## 4577 0.14806335 0.09293746 0.10667727 0.08671274
## 4578 0.05072162 0.06243174 0.10667727 0.08671274
## 4579 0.14806335 0.21582397 0.10667727 0.08671274
## 4580 0.14806335 0.09293746 0.10667727 0.08671274
## 4581 0.14806335 0.06243174 0.10667727 0.08671274
## 4582 0.14806335 0.10363527 0.10667727 0.08671274
## 4583 0.14806335 0.09293746 0.10667727 0.08671274
## 4584 0.14806335 0.10363527 0.10667727 0.08671274
## 4585 0.05072162 0.09967090 0.10667727 0.08671274
## 4586 0.05072162 0.09967090 0.10667727 0.08671274
## 4587 0.14806335 0.10363527 0.10667727 0.08671274
## 4588 0.14806335 0.09293746 0.10667727 0.08671274
## 4589 0.05072162 0.09967090 0.10667727 0.08671274
## 4590 0.14806335 0.09293746 0.10667727 0.08671274
## 4591 0.14806335 0.10363527 0.10667727 0.08671274
## 4592 0.05072162 0.09967090 0.10667727 0.08671274
## 4593 0.14806335 0.09932349 0.10667727 0.08671274
## 4594 0.14806335 0.10363527 0.10667727 0.08671274
## 4595 0.14806335 0.21582397 0.10667727 0.08671274
## 4596 0.05072162 0.06243174 0.10667727 0.08671274
## 4597 0.14806335 0.09293746 0.09814869 0.08671274
## 4598 0.05072162 0.09967090 0.10667727 0.08671274
## 4599 0.14806335 0.09293746 0.10667727 0.08671274
## 4600 0.05072162 0.09967090 0.10667727 0.08671274
## 4601 0.05072162 0.09967090 0.09814869 0.08671274
## 4602 0.05072162 0.09967090 0.09814869 0.08671274
## 4603 0.14806335 0.21582397 0.10667727 0.08671274
## 4604 0.14806335 0.10363527 0.10667727 0.08671274
## 4605 0.05072162 0.06243174 0.10667727 0.08671274
## 4606 0.05072162 0.06243174 0.10667727 0.08671274
## 4607 0.05072162 0.06243174 0.10667727 0.08671274
## 4608 0.05072162 0.09967090 0.09814869 0.08671274
## 4609 0.14806335 0.09932349 0.10667727 0.08671274
## 4610 0.05072162 0.06243174 0.10667727 0.08671274
## 4611 0.14806335 0.10363527 0.10667727 0.08671274
## 4612 0.05072162 0.09967090 0.09814869 0.08671274
## 4613 0.05072162 0.06243174 0.10667727 0.08671274
## 4614 0.05072162 0.06243174 0.10667727 0.08671274
## 4615 0.14806335 0.09932349 0.10667727 0.08671274
## 4616 0.14806335 0.10363527 0.10667727 0.08671274
## 4617 0.14806335 0.21582397 0.10667727 0.08671274
## 4618 0.14806335 0.21582397 0.10667727 0.08671274
## 4619 0.14806335 0.21582397 0.10667727 0.08671274
## 4620 0.14806335 0.09293746 0.09814869 0.08671274
## 4621 0.14806335 0.21582397 0.10667727 0.08671274
## 4622 0.14806335 0.21582397 0.10667727 0.08671274
## 4623 0.05072162 0.06243174 0.10667727 0.08671274
## 4624 0.14806335 0.09293746 0.10667727 0.08671274
## 4625 0.05072162 0.09967090 0.11410336 0.08671274
## 4626 0.14806335 0.10363527 0.10667727 0.08671274
## 4627 0.05072162 0.06243174 0.09814869 0.08671274
## 4628 0.14806335 0.09293746 0.10667727 0.08671274
## 4629 0.14806335 0.09932349 0.10667727 0.08671274
## 4630 0.14806335 0.21582397 0.10667727 0.08671274
## 4631 0.14806335 0.10363527 0.10667727 0.08671274
## 4632 0.14806335 0.10363527 0.10667727 0.08671274
## 4633 0.14806335 0.09932349 0.09814869 0.08671274
## 4634 0.14806335 0.09293746 0.10667727 0.08671274
## 4635 0.05072162 0.09967090 0.10667727 0.08671274
## 4636 0.14806335 0.21582397 0.10667727 0.08671274
## 4637 0.14806335 0.06243174 0.10667727 0.08671274
## 4638 0.05072162 0.09967090 0.10667727 0.08671274
## 4639 0.14806335 0.09293746 0.10667727 0.08671274
## 4640 0.05072162 0.06243174 0.10667727 0.08671274
## 4641 0.14806335 0.10363527 0.09814869 0.08671274
## 4642 0.14806335 0.09932349 0.10667727 0.08671274
## 4643 0.14806335 0.06243174 0.10667727 0.08671274
## 4644 0.05072162 0.06243174 0.10667727 0.08671274
## 4645 0.14806335 0.09293746 0.10667727 0.08671274
## 4646 0.05072162 0.06243174 0.10667727 0.08671274
## 4647 0.14806335 0.10363527 0.10667727 0.08671274
## 4648 0.14806335 0.06243174 0.09814869 0.08671274
## 4649 0.14806335 0.21582397 0.10667727 0.08671274
## 4650 0.05072162 0.06243174 0.10667727 0.08671274
## 4651 0.14806335 0.06243174 0.10667727 0.08671274
## 4652 0.05072162 0.06243174 0.10667727 0.08671274
## 4653 0.05072162 0.06243174 0.10667727 0.08671274
## 4654 0.14806335 0.06243174 0.10667727 0.08671274
## 4655 0.05072162 0.06243174 0.10667727 0.08671274
## 4656 0.14806335 0.06243174 0.10667727 0.08671274
## 4657 0.14806335 0.10363527 0.10667727 0.08671274
## 4658 0.14806335 0.09293746 0.09814869 0.08671274
## 4659 0.14806335 0.21582397 0.10667727 0.08671274
## 4660 0.14806335 0.06243174 0.10667727 0.08671274
## 4661 0.14806335 0.09932349 0.10667727 0.08671274
## 4662 0.14806335 0.06243174 0.10667727 0.08671274
## 4663 0.14806335 0.21582397 0.10667727 0.08671274
## 4664 0.14806335 0.09293746 0.10667727 0.08671274
## 4665 0.14806335 0.09932349 0.09814869 0.08671274
## 4666 0.05072162 0.09967090 0.10667727 0.08671274
## 4667 0.05072162 0.06243174 0.10667727 0.08671274
## 4668 0.14806335 0.06243174 0.09814869 0.08671274
## 4669 0.14806335 0.45296167 0.10667727 0.08671274
## 4670 0.14806335 0.09932349 0.10667727 0.08671274
## 4671 0.05072162 0.06243174 0.09814869 0.08671274
## 4672 0.14806335 0.10363527 0.10667727 0.08671274
## 4673 0.14806335 0.10363527 0.10667727 0.08671274
## 4674 0.14806335 0.09932349 0.10667727 0.08671274
## 4675 0.05072162 0.06243174 0.10667727 0.08671274
## 4676 0.14806335 0.10363527 0.10667727 0.08671274
## 4677 0.14806335 0.06243174 0.11410336 0.08671274
## 4678 0.05072162 0.06243174 0.10667727 0.08671274
## 4679 0.14806335 0.21582397 0.10667727 0.08671274
## 4680 0.14806335 0.10363527 0.10667727 0.08671274
## 4681 0.14806335 0.09293746 0.10667727 0.08671274
## 4682 0.14806335 0.09293746 0.10667727 0.08671274
## 4683 0.05072162 0.10363527 0.10667727 0.08671274
## 4684 0.05072162 0.06243174 0.10667727 0.08671274
## 4685 0.14806335 0.09293746 0.10667727 0.08671274
## 4686 0.14806335 0.45296167 0.10667727 0.08671274
## 4687 0.05072162 0.09967090 0.10667727 0.08671274
## 4688 0.05072162 0.09967090 0.10667727 0.08671274
## 4689 0.14806335 0.51535088 0.10667727 0.08671274
## 4690 0.05072162 0.06243174 0.10667727 0.08671274
## 4691 0.14806335 0.10363527 0.10667727 0.08671274
## 4692 0.05072162 0.09967090 0.10667727 0.08671274
## 4693 0.14806335 0.10363527 0.10667727 0.08671274
## 4694 0.14806335 0.10363527 0.10667727 0.08671274
## 4695 0.05072162 0.09293746 0.10667727 0.08671274
## 4696 0.05072162 0.06243174 0.10667727 0.08671274
## 4697 0.05072162 0.06243174 0.10667727 0.08671274
## 4698 0.14806335 0.10363527 0.09814869 0.08671274
## 4699 0.14806335 0.09293746 0.10667727 0.08671274
## 4700 0.14806335 0.09932349 0.09814869 0.08671274
## 4701 0.05072162 0.09932349 0.09814869 0.08671274
## 4702 0.14806335 0.06243174 0.10667727 0.08671274
## 4703 0.05072162 0.09967090 0.10667727 0.08671274
## 4704 0.05072162 0.51535088 0.09814869 0.08671274
## 4705 0.14806335 0.09293746 0.10667727 0.08671274
## 4706 0.14806335 0.10363527 0.10667727 0.08671274
## 4707 0.14806335 0.09293746 0.10667727 0.08671274
## 4708 0.14806335 0.09293746 0.10667727 0.08671274
## 4709 0.14806335 0.51535088 0.10667727 0.08671274
## 4710 0.05072162 0.09967090 0.10667727 0.08671274
## 4711 0.14806335 0.09967090 0.10667727 0.08671274
## 4712 0.05072162 0.06243174 0.10667727 0.08671274
## 4713 0.05072162 0.09967090 0.10667727 0.08671274
## 4714 0.05072162 0.09293746 0.10667727 0.08671274
## 4715 0.05072162 0.09967090 0.10667727 0.08671274
## 4716 0.14806335 0.21582397 0.10667727 0.08671274
## 4717 0.05072162 0.06243174 0.10667727 0.08671274
## 4718 0.14806335 0.10363527 0.10667727 0.08671274
## 4719 0.05072162 0.09967090 0.10667727 0.08671274
## 4720 0.14806335 0.43750000 0.10667727 0.08671274
## 4721 0.05072162 0.06243174 0.10667727 0.08671274
## 4722 0.14806335 0.10363527 0.10667727 0.08671274
## 4723 0.05072162 0.09967090 0.10667727 0.08671274
## 4724 0.14806335 0.21582397 0.10667727 0.08671274
## 4725 0.14806335 0.10363527 0.10667727 0.08671274
## 4726 0.05072162 0.06243174 0.10667727 0.08671274
## 4727 0.14806335 0.10363527 0.09814869 0.08671274
## 4728 0.14806335 0.21582397 0.10667727 0.08671274
## 4729 0.14806335 0.21582397 0.10667727 0.08671274
## 4730 0.14806335 0.09967090 0.10667727 0.08671274
## 4731 0.05072162 0.06243174 0.10667727 0.08671274
## 4732 0.14806335 0.21582397 0.10667727 0.08671274
## 4733 0.05072162 0.09967090 0.10667727 0.08671274
## 4734 0.05072162 0.06243174 0.10667727 0.08671274
## 4735 0.05072162 0.06243174 0.09814869 0.08671274
## 4736 0.05072162 0.06243174 0.10667727 0.08671274
## 4737 0.14806335 0.10363527 0.10667727 0.08671274
## 4738 0.14806335 0.09293746 0.10667727 0.08671274
## 4739 0.05072162 0.06243174 0.10667727 0.08671274
## 4740 0.14806335 0.06243174 0.10667727 0.08671274
## 4741 0.14806335 0.06243174 0.10667727 0.08671274
## 4742 0.14806335 0.09967090 0.10667727 0.08671274
## 4743 0.05072162 0.09293746 0.10667727 0.08671274
## 4744 0.14806335 0.10363527 0.10667727 0.08671274
## 4745 0.05072162 0.10363527 0.10667727 0.08671274
## 4746 0.05072162 0.06243174 0.09814869 0.08671274
## 4747 0.05072162 0.06243174 0.10667727 0.08671274
## 4748 0.14806335 0.06243174 0.10667727 0.08671274
## 4749 0.14806335 0.06243174 0.10667727 0.08671274
## 4750 0.05072162 0.06243174 0.10667727 0.08671274
## 4751 0.05072162 0.09293746 0.10667727 0.08671274
## 4752 0.14806335 0.09932349 0.11410336 0.08671274
## 4753 0.05072162 0.06243174 0.10667727 0.08671274
## 4754 0.14806335 0.09293746 0.10667727 0.08671274
## 4755 0.05072162 0.09967090 0.09814869 0.08671274
## 4756 0.05072162 0.10363527 0.09814869 0.08671274
## 4757 0.14806335 0.09932349 0.10667727 0.08671274
## 4758 0.05072162 0.09967090 0.09814869 0.08671274
## 4759 0.14806335 0.09967090 0.09814869 0.08671274
## 4760 0.14806335 0.09293746 0.10667727 0.08671274
## 4761 0.14806335 0.09932349 0.10667727 0.08671274
## 4762 0.05072162 0.06243174 0.10667727 0.08671274
## 4763 0.14806335 0.06243174 0.10667727 0.08671274
## 4764 0.05072162 0.09967090 0.10667727 0.08671274
## 4765 0.05072162 0.06243174 0.11410336 0.08671274
## 4766 0.14806335 0.09293746 0.10667727 0.08671274
## 4767 0.14806335 0.09293746 0.10667727 0.08671274
## 4768 0.14806335 0.10363527 0.10667727 0.08671274
## 4769 0.14806335 0.10363527 0.09814869 0.08671274
## 4770 0.05072162 0.09967090 0.10667727 0.08671274
## 4771 0.14806335 0.06243174 0.10667727 0.08671274
## 4772 0.14806335 0.48076923 0.10667727 0.08671274
## 4773 0.05072162 0.06243174 0.10667727 0.08671274
## 4774 0.14806335 0.09293746 0.10667727 0.08671274
## 4775 0.05072162 0.09293746 0.10667727 0.08671274
## 4776 0.14806335 0.10363527 0.10667727 0.08671274
## 4777 0.14806335 0.09932349 0.10667727 0.08671274
## 4778 0.05072162 0.09967090 0.09814869 0.08671274
## 4779 0.05072162 0.09967090 0.10667727 0.08671274
## 4780 0.14806335 0.10363527 0.10667727 0.08671274
## 4781 0.05072162 0.09967090 0.10667727 0.08671274
## 4782 0.05072162 0.06243174 0.10667727 0.08671274
## 4783 0.05072162 0.09967090 0.10667727 0.08671274
## 4784 0.05072162 0.06243174 0.09814869 0.08671274
## 4785 0.14806335 0.09967090 0.09814869 0.08671274
## 4786 0.14806335 0.10363527 0.10667727 0.08671274
## 4787 0.14806335 0.06243174 0.10667727 0.08671274
## 4788 0.05072162 0.09967090 0.10667727 0.08671274
## 4789 0.14806335 0.09932349 0.10667727 0.08671274
## 4790 0.05072162 0.09967090 0.10667727 0.08671274
## 4791 0.05072162 0.06243174 0.10667727 0.08671274
## 4792 0.05072162 0.09967090 0.09814869 0.08671274
## 4793 0.14806335 0.06243174 0.10667727 0.08671274
## 4794 0.14806335 0.10363527 0.09814869 0.08671274
## 4795 0.05072162 0.06243174 0.10667727 0.08671274
## 4796 0.14806335 0.09293746 0.10667727 0.08671274
## 4797 0.05072162 0.09967090 0.10667727 0.08671274
## 4798 0.14806335 0.10363527 0.10667727 0.08671274
## 4799 0.14806335 0.10363527 0.10667727 0.08671274
## 4800 0.05072162 0.09967090 0.10667727 0.08671274
## 4801 0.14806335 0.21582397 0.10667727 0.08671274
## 4802 0.05072162 0.06243174 0.10667727 0.08671274
## 4803 0.14806335 0.06243174 0.10667727 0.08671274
## 4804 0.14806335 0.09932349 0.09814869 0.08671274
## 4805 0.05072162 0.06243174 0.10667727 0.08671274
## 4806 0.14806335 0.09293746 0.10667727 0.08671274
## 4807 0.05072162 0.09967090 0.10667727 0.08671274
## 4808 0.14806335 0.10363527 0.10667727 0.08671274
## 4809 0.05072162 0.06243174 0.10667727 0.08671274
## 4810 0.05072162 0.09932349 0.09814869 0.08671274
## 4811 0.05072162 0.06243174 0.10667727 0.08671274
## 4812 0.14806335 0.21582397 0.10667727 0.08671274
## 4813 0.14806335 0.09932349 0.10667727 0.08671274
## 4814 0.14806335 0.21582397 0.10667727 0.08671274
## 4815 0.05072162 0.06243174 0.10667727 0.08671274
## 4816 0.05072162 0.09967090 0.10667727 0.08671274
## 4817 0.14806335 0.06243174 0.10667727 0.08671274
## 4818 0.05072162 0.51535088 0.10667727 0.08671274
## 4819 0.05072162 0.06243174 0.10667727 0.08671274
## 4820 0.14806335 0.09932349 0.10667727 0.08671274
## 4821 0.05072162 0.09967090 0.10667727 0.08671274
## 4822 0.14806335 0.21582397 0.10667727 0.08671274
## 4823 0.14806335 0.21582397 0.10667727 0.08671274
## 4824 0.14806335 0.10363527 0.10667727 0.08671274
## 4825 0.05072162 0.09967090 0.10667727 0.08671274
## 4826 0.14806335 0.06243174 0.10667727 0.08671274
## 4827 0.05072162 0.06243174 0.10667727 0.08671274
## 4828 0.05072162 0.09967090 0.10667727 0.08671274
## 4829 0.14806335 0.10363527 0.10667727 0.08671274
## 4830 0.05072162 0.06243174 0.10667727 0.08671274
## 4831 0.14806335 0.21582397 0.10667727 0.08671274
## 4832 0.14806335 0.21582397 0.10667727 0.08671274
## 4833 0.05072162 0.09967090 0.10667727 0.08671274
## 4834 0.14806335 0.09932349 0.10667727 0.08671274
## 4835 0.14806335 0.10363527 0.10667727 0.08671274
## 4836 0.05072162 0.09967090 0.09814869 0.08671274
## 4837 0.05072162 0.06243174 0.10667727 0.08671274
## 4838 0.05072162 0.10363527 0.10667727 0.08671274
## 4839 0.14806335 0.09293746 0.09814869 0.08671274
## 4840 0.05072162 0.06243174 0.10667727 0.08671274
## 4841 0.05072162 0.06243174 0.10667727 0.08671274
## 4842 0.14806335 0.06243174 0.10667727 0.08671274
## 4843 0.14806335 0.06243174 0.10667727 0.08671274
## 4844 0.05072162 0.06243174 0.09814869 0.08671274
## 4845 0.14806335 0.09293746 0.11410336 0.08671274
## 4846 0.14806335 0.06243174 0.10667727 0.08671274
## 4847 0.14806335 0.06243174 0.10667727 0.08671274
## 4848 0.14806335 0.21582397 0.10667727 0.08671274
## 4849 0.05072162 0.06243174 0.10667727 0.08671274
## 4850 0.14806335 0.10363527 0.10667727 0.08671274
## 4851 0.14806335 0.10363527 0.10667727 0.08671274
## 4852 0.05072162 0.09967090 0.09814869 0.08671274
## 4853 0.05072162 0.09967090 0.10667727 0.08671274
## 4854 0.14806335 0.09293746 0.10667727 0.08671274
## 4855 0.14806335 0.06243174 0.10667727 0.08671274
## 4856 0.14806335 0.06243174 0.09814869 0.08671274
## 4857 0.05072162 0.09967090 0.10667727 0.08671274
## 4858 0.05072162 0.09967090 0.10667727 0.08671274
## 4859 0.14806335 0.21582397 0.10667727 0.08671274
## 4860 0.05072162 0.09967090 0.10667727 0.08671274
## 4861 0.14806335 0.10363527 0.10667727 0.08671274
## 4862 0.14806335 0.06243174 0.10667727 0.08671274
## 4863 0.14806335 0.21582397 0.10667727 0.08671274
## 4864 0.05072162 0.06243174 0.10667727 0.08671274
## 4865 0.05072162 0.09967090 0.09814869 0.08671274
## 4866 0.14806335 0.09932349 0.10667727 0.08671274
## 4867 0.14806335 0.09293746 0.10667727 0.08671274
## 4868 0.14806335 0.06243174 0.10667727 0.08671274
## 4869 0.14806335 0.09932349 0.09814869 0.08671274
## 4870 0.14806335 0.09293746 0.10667727 0.08671274
## 4871 0.05072162 0.06243174 0.10667727 0.08671274
## 4872 0.14806335 0.09293746 0.10667727 0.08671274
## 4873 0.05072162 0.06243174 0.10667727 0.08671274
## 4874 0.14806335 0.10363527 0.09814869 0.08671274
## 4875 0.14806335 0.09293746 0.10667727 0.08671274
## 4876 0.05072162 0.09967090 0.10667727 0.08671274
## 4877 0.05072162 0.06243174 0.09814869 0.08671274
## 4878 0.05072162 0.06243174 0.10667727 0.08671274
## 4879 0.05072162 0.09967090 0.10667727 0.08671274
## 4880 0.14806335 0.10363527 0.10667727 0.08671274
## 4881 0.14806335 0.09932349 0.10667727 0.08671274
## 4882 0.14806335 0.10363527 0.10667727 0.08671274
## 4883 0.05072162 0.06243174 0.10667727 0.08671274
## 4884 0.14806335 0.10363527 0.10667727 0.08671274
## 4885 0.14806335 0.21582397 0.10667727 0.08671274
## 4886 0.14806335 0.10363527 0.09814869 0.08671274
## 4887 0.05072162 0.48076923 0.10667727 0.08671274
## 4888 0.14806335 0.06243174 0.10667727 0.08671274
## 4889 0.14806335 0.10363527 0.10667727 0.08671274
## 4890 0.14806335 0.09293746 0.10667727 0.08671274
## 4891 0.14806335 0.09932349 0.10667727 0.08671274
## 4892 0.14806335 0.09932349 0.09814869 0.08671274
## 4893 0.14806335 0.21582397 0.10667727 0.08671274
## 4894 0.14806335 0.09293746 0.10667727 0.08671274
## 4895 0.05072162 0.06243174 0.10667727 0.08671274
## 4896 0.14806335 0.10363527 0.10667727 0.08671274
## 4897 0.05072162 0.09967090 0.10667727 0.08671274
## 4898 0.05072162 0.06243174 0.10667727 0.08671274
## 4899 0.05072162 0.06243174 0.10667727 0.08671274
## 4900 0.14806335 0.10363527 0.10667727 0.08671274
## 4901 0.14806335 0.09293746 0.10667727 0.08671274
## 4902 0.05072162 0.06243174 0.10667727 0.08671274
## 4903 0.14806335 0.09967090 0.10667727 0.08671274
## 4904 0.14806335 0.09293746 0.10667727 0.08671274
## 4905 0.14806335 0.10363527 0.10667727 0.08671274
## 4906 0.14806335 0.10363527 0.10667727 0.08671274
## 4907 0.14806335 0.09293746 0.10667727 0.08671274
## 4908 0.14806335 0.06243174 0.10667727 0.08671274
## 4909 0.14806335 0.06243174 0.10667727 0.08671274
## 4910 0.05072162 0.06243174 0.10667727 0.08671274
## 4911 0.05072162 0.06243174 0.10667727 0.08671274
## 4912 0.05072162 0.09293746 0.10667727 0.08671274
## 4913 0.05072162 0.06243174 0.10667727 0.08671274
## 4914 0.14806335 0.10363527 0.10667727 0.08671274
## 4915 0.05072162 0.06243174 0.10667727 0.08671274
## 4916 0.14806335 0.06243174 0.10667727 0.08671274
## 4917 0.05072162 0.09967090 0.10667727 0.08671274
## 4918 0.14806335 0.09932349 0.10667727 0.08671274
## 4919 0.05072162 0.06243174 0.10667727 0.08671274
## 4920 0.05072162 0.09967090 0.10667727 0.08671274
## 4921 0.05072162 0.09967090 0.10667727 0.08671274
## 4922 0.05072162 0.21582397 0.10667727 0.08671274
## 4923 0.05072162 0.09967090 0.10667727 0.08671274
## 4924 0.14806335 0.10363527 0.10667727 0.08671274
## 4925 0.05072162 0.09967090 0.10667727 0.08671274
## 4926 0.05072162 0.06243174 0.10667727 0.08671274
## 4927 0.14806335 0.06243174 0.10667727 0.08671274
## 4928 0.14806335 0.21582397 0.09814869 0.08671274
## 4929 0.14806335 0.09293746 0.09814869 0.08671274
## 4930 0.14806335 0.21582397 0.10667727 0.08671274
## 4931 0.14806335 0.10363527 0.10667727 0.08671274
## 4932 0.14806335 0.10363527 0.10667727 0.08671274
## 4933 0.14806335 0.10363527 0.10667727 0.08671274
## 4934 0.05072162 0.06243174 0.10667727 0.08671274
## 4935 0.14806335 0.10363527 0.10667727 0.08671274
## 4936 0.14806335 0.06243174 0.10667727 0.08671274
## 4937 0.14806335 0.10363527 0.09814869 0.08671274
## 4938 0.05072162 0.06243174 0.10667727 0.08671274
## 4939 0.14806335 0.09293746 0.10667727 0.08671274
## 4940 0.05072162 0.06243174 0.10667727 0.08671274
## 4941 0.14806335 0.09293746 0.10667727 0.08671274
## 4942 0.05072162 0.09967090 0.10667727 0.08671274
## 4943 0.14806335 0.10363527 0.09814869 0.08671274
## 4944 0.05072162 0.06243174 0.10667727 0.08671274
## 4945 0.05072162 0.06243174 0.10667727 0.08671274
## 4946 0.14806335 0.21582397 0.10667727 0.08671274
## 4947 0.05072162 0.06243174 0.10667727 0.08671274
## 4948 0.14806335 0.06243174 0.09814869 0.08671274
## 4949 0.14806335 0.21582397 0.10667727 0.08671274
## 4950 0.05072162 0.06243174 0.10667727 0.08671274
## 4951 0.14806335 0.21582397 0.10667727 0.08671274
## 4952 0.14806335 0.10363527 0.10667727 0.08671274
## 4953 0.05072162 0.06243174 0.10667727 0.08671274
## 4954 0.14806335 0.10363527 0.10667727 0.08671274
## 4955 0.14806335 0.21582397 0.10667727 0.08671274
## 4956 0.05072162 0.09293746 0.10667727 0.08671274
## 4957 0.14806335 0.10363527 0.09814869 0.08671274
## 4958 0.05072162 0.09293746 0.10667727 0.08671274
## 4959 0.05072162 0.09967090 0.10667727 0.08671274
## 4960 0.14806335 0.06243174 0.10667727 0.08671274
## 4961 0.05072162 0.06243174 0.10667727 0.08671274
## 4962 0.05072162 0.06243174 0.10667727 0.08671274
## 4963 0.14806335 0.10363527 0.09814869 0.08671274
## 4964 0.14806335 0.10363527 0.09814869 0.08671274
## 4965 0.05072162 0.06243174 0.10667727 0.08671274
## 4966 0.14806335 0.06243174 0.10667727 0.08671274
## 4967 0.05072162 0.06243174 0.10667727 0.08671274
## 4968 0.14806335 0.06243174 0.10667727 0.08671274
## 4969 0.14806335 0.09932349 0.10667727 0.08671274
## 4970 0.05072162 0.09967090 0.10667727 0.08671274
## 4971 0.14806335 0.10363527 0.10667727 0.08671274
## 4972 0.05072162 0.06243174 0.10667727 0.08671274
## 4973 0.14806335 0.09293746 0.11410336 0.08671274
## 4974 0.05072162 0.09967090 0.10667727 0.08671274
## 4975 0.05072162 0.06243174 0.10667727 0.08671274
## 4976 0.14806335 0.10363527 0.10667727 0.08671274
## 4977 0.05072162 0.06243174 0.10667727 0.08671274
## 4978 0.14806335 0.10363527 0.10667727 0.08671274
## 4979 0.05072162 0.09967090 0.09814869 0.08671274
## 4980 0.14806335 0.09932349 0.10667727 0.08671274
## 4981 0.14806335 0.06243174 0.10667727 0.08671274
## 4982 0.05072162 0.09932349 0.09814869 0.08671274
## 4983 0.05072162 0.09967090 0.10667727 0.08671274
## 4984 0.05072162 0.06243174 0.10667727 0.08671274
## 4985 0.14806335 0.10363527 0.10667727 0.08671274
## 4986 0.14806335 0.10363527 0.10667727 0.08671274
## 4987 0.05072162 0.09967090 0.10667727 0.08671274
## 4988 0.05072162 0.06243174 0.10667727 0.08671274
## 4989 0.05072162 0.06243174 0.10667727 0.08671274
## 4990 0.14806335 0.21582397 0.10667727 0.08671274
## 4991 0.05072162 0.06243174 0.10667727 0.08671274
## 4992 0.05072162 0.21582397 0.10667727 0.08671274
## 4993 0.05072162 0.09967090 0.10667727 0.08671274
## 4994 0.14806335 0.06243174 0.10667727 0.08671274
## 4995 0.14806335 0.10363527 0.10667727 0.08671274
## 4996 0.14806335 0.10363527 0.10667727 0.08671274
## 4997 0.14806335 0.10363527 0.10667727 0.08671274
## 4998 0.14806335 0.10363527 0.09814869 0.08671274
## 4999 0.14806335 0.06243174 0.10667727 0.08671274
## [ reached 'max' / getOption("max.print") -- omitted 27952 rows ]
test_encoded
## age duration campaign pdays previous emp.var.rate cons.price.idx
## 1 35 70 2 999 1 -1.8 92.893
## 2 24 1042 5 999 3 -1.1 94.199
## 3 40 88 1 999 1 -1.8 93.075
## 4 36 174 1 999 1 -1.8 92.893
## 5 47 934 2 999 1 -1.8 92.893
## 6 26 245 9 999 1 -1.8 92.893
## 7 65 80 1 999 1 -2.9 92.201
## 8 25 92 1 999 1 -1.8 93.075
## 9 59 332 2 999 1 -1.8 93.075
## 10 38 55 1 999 1 -1.8 92.893
## 11 45 845 1 999 2 -3.4 92.431
## 12 29 78 2 999 1 -1.8 92.893
## 13 31 319 1 999 1 -0.1 93.200
## 14 43 195 3 999 1 -1.8 92.893
## 15 56 362 2 999 2 -1.8 93.075
## 16 37 105 1 999 1 -1.8 92.893
## 17 24 7 4 999 1 -1.8 92.893
## 18 48 90 3 999 1 -1.8 93.075
## 19 29 145 1 999 1 -1.8 92.893
## 20 41 97 1 999 1 -1.8 92.893
## 21 46 201 6 999 1 -1.8 93.075
## 22 35 211 2 999 1 -0.1 93.200
## 23 37 466 1 999 1 -1.8 92.893
## 24 40 180 1 999 1 -0.1 93.200
## 25 26 135 1 999 2 -1.8 92.893
## 26 36 265 1 999 1 -1.7 94.055
## 27 41 77 3 999 1 -0.1 93.200
## 28 34 107 1 999 1 -1.8 92.893
## 29 38 78 2 999 1 -1.8 92.893
## 30 50 1326 6 999 1 -1.8 92.893
## 31 29 67 4 999 1 -1.8 92.893
## 32 38 37 1 999 1 -1.8 93.075
## 33 30 173 2 15 4 -1.1 94.199
## 34 33 125 1 999 2 -1.8 92.893
## 35 35 75 1 999 1 -1.8 92.893
## 36 55 519 1 999 1 -1.8 93.075
## 37 32 137 1 999 1 -1.8 92.893
## 38 38 192 1 999 1 -1.8 92.893
## 39 42 98 2 999 1 -1.8 92.893
## 40 78 631 2 999 2 -3.4 92.431
## 41 46 308 1 999 1 -0.1 93.200
## 42 38 81 3 999 1 -1.8 92.893
## 43 48 207 3 999 1 -2.9 92.201
## 44 53 383 2 999 1 -1.8 92.893
## 45 63 150 1 999 1 -1.8 93.075
## 46 47 642 2 999 1 -1.8 93.075
## 47 36 287 2 999 1 -1.8 92.893
## 48 77 318 1 9 4 -1.7 94.027
## 49 50 609 2 999 1 -0.1 93.200
## 50 68 88 1 999 2 -3.4 92.431
## 51 48 136 1 999 1 -2.9 92.963
## 52 43 192 2 999 1 -1.8 93.075
## 53 47 253 2 999 1 -1.8 92.893
## 54 30 143 1 999 1 -1.8 93.075
## 55 31 208 2 999 1 -1.8 92.893
## 56 29 16 6 999 1 -1.8 92.893
## 57 27 398 4 999 1 -2.9 92.201
## 58 41 774 2 999 1 -1.8 93.075
## 59 44 542 3 999 2 -1.8 93.075
## 60 34 364 2 999 1 -1.8 93.369
## 61 38 469 1 999 1 -1.8 92.893
## 62 84 267 1 999 1 -1.8 93.876
## 63 83 74 1 3 3 -1.8 92.893
## 64 50 124 5 999 1 -3.4 92.649
## 65 37 13 4 999 1 -0.1 93.200
## 66 40 147 1 999 1 -0.1 93.200
## 67 36 142 2 999 1 -1.8 93.075
## 68 26 284 3 999 1 -1.1 94.199
## 69 33 137 2 999 1 -1.8 92.893
## 70 26 196 1 9 3 -1.7 94.215
## 71 58 1359 3 999 1 -1.8 92.893
## 72 44 174 5 999 1 -1.8 92.893
## 73 43 22 8 999 1 -1.8 92.893
## 74 29 149 1 999 1 -1.8 92.893
## 75 34 162 2 999 1 -1.8 92.893
## 76 33 169 3 999 1 -1.8 92.893
## 77 37 137 1 999 1 -1.1 94.767
## 78 29 1410 1 999 1 -1.8 93.075
## 79 40 154 1 999 1 -2.9 92.963
## 80 32 340 2 999 1 -1.8 92.893
## 81 51 334 2 6 4 -1.1 94.767
## 82 56 83 3 999 1 -1.8 93.075
## 83 42 513 1 999 2 -1.7 94.215
## 84 43 190 1 999 1 -0.1 93.200
## 85 36 316 2 999 1 -1.8 93.075
## 86 44 188 1 999 1 -1.8 92.893
## 87 42 166 2 999 1 -0.1 93.200
## 88 31 80 1 999 1 -1.8 92.893
## 89 50 123 1 999 1 -0.1 93.200
## 90 41 243 1 999 2 -1.8 92.893
## 91 33 90 4 999 1 -0.1 93.200
## 92 55 177 5 999 1 -2.9 92.963
## 93 47 219 1 999 1 -1.8 92.893
## 94 45 5 1 999 1 -1.7 94.027
## 95 30 127 2 999 1 -0.1 93.200
## 96 55 45 2 999 1 -0.1 93.200
## 97 20 137 3 999 3 -1.1 94.601
## 98 48 85 1 999 1 -1.8 93.075
## 99 47 87 2 999 1 -1.8 92.893
## 100 29 273 3 999 2 -1.1 94.199
## 101 34 237 1 999 1 -2.9 92.201
## 102 31 211 6 999 1 -1.8 92.893
## 103 76 126 1 999 1 -1.7 94.027
## 104 28 333 1 999 1 -1.8 93.075
## 105 39 714 1 999 1 -0.1 93.200
## 106 51 1267 1 999 1 -1.8 93.876
## 107 35 143 1 999 1 -1.8 92.893
## 108 41 53 1 999 1 -1.8 93.075
## 109 37 497 5 999 2 -1.8 92.893
## 110 37 194 2 999 1 -1.8 93.369
## 111 59 8 1 999 1 -1.7 94.055
## 112 28 20 1 999 1 -0.1 93.200
## 113 24 676 2 999 1 -3.4 92.431
## 114 77 84 2 999 1 -2.9 92.963
## 115 34 1221 2 999 1 -1.8 92.893
## 116 27 191 2 999 1 -1.8 93.075
## 117 37 84 1 999 1 -3.4 92.649
## 118 46 456 1 999 1 -1.8 92.893
## 119 58 135 1 999 2 -1.8 93.369
## 120 42 158 1 999 1 -2.9 92.201
## 121 45 99 3 999 1 -1.8 93.075
## 122 27 48 2 999 1 -1.8 93.075
## 123 31 151 2 999 1 -1.8 92.893
## 124 61 69 1 999 1 -2.9 92.201
## 125 29 98 1 999 1 -2.9 92.201
## 126 36 67 4 999 1 -1.8 92.893
## 127 58 22 4 999 1 -0.1 93.200
## 128 54 616 3 999 1 -0.1 93.200
## 129 39 233 1 999 1 -1.8 92.893
## 130 37 81 2 999 1 -1.8 92.893
## 131 36 248 1 999 1 -2.9 92.963
## 132 29 134 2 9 2 -3.4 92.649
## 133 32 712 1 3 2 -2.9 92.963
## 134 33 19 8 999 1 -1.8 92.893
## 135 66 296 1 999 1 -1.7 94.215
## 136 43 443 1 999 1 -1.8 93.075
## 137 60 83 1 999 1 -1.8 92.893
## 138 51 166 7 999 1 -2.9 92.469
## 139 46 244 3 999 1 -1.8 93.075
## 140 39 504 2 999 1 -0.1 93.200
## 141 34 238 1 999 1 -1.8 93.075
## 142 35 768 2 999 2 -2.9 92.201
## 143 34 127 1 999 1 -0.1 93.200
## 144 29 85 1 999 1 -3.4 92.649
## 145 35 250 1 999 1 -2.9 92.201
## 146 34 353 6 999 1 -1.8 92.893
## 147 27 234 6 999 1 -1.8 92.893
## 148 39 305 2 999 1 -1.8 93.075
## 149 40 173 6 999 1 -1.7 94.027
## 150 56 219 2 999 1 -0.1 93.200
## 151 36 91 2 999 1 -0.1 93.200
## 152 21 326 2 999 1 -1.7 94.027
## 153 50 249 3 999 1 -1.8 93.075
## 154 29 386 2 999 1 -1.8 93.075
## 155 42 90 4 999 1 -0.1 93.200
## 156 37 78 4 999 1 -1.8 92.893
## 157 33 135 1 999 1 -1.8 92.893
## 158 35 130 1 999 1 -1.8 92.893
## 159 33 147 2 999 1 -1.8 92.893
## 160 36 208 12 999 1 -1.8 93.075
## 161 26 78 4 999 1 -1.8 92.843
## 162 52 161 1 999 1 -0.1 93.200
## 163 40 192 4 999 1 -1.8 92.893
## 164 57 45 1 999 1 -1.8 93.075
## 165 42 173 1 999 1 -0.1 93.200
## 166 41 246 1 999 1 -1.8 93.075
## 167 41 118 1 999 1 -2.9 92.963
## 168 20 162 4 999 1 -1.8 93.075
## 169 59 210 3 999 2 -1.7 94.215
## 170 29 69 3 999 1 -1.8 92.893
## 171 55 553 2 3 4 -2.9 92.963
## 172 49 568 1 999 1 -1.8 92.893
## 173 75 293 2 999 1 -1.8 93.369
## 174 30 102 3 999 1 -1.8 92.893
## 175 46 154 8 999 1 -1.8 93.075
## 176 74 156 1 999 1 -2.9 92.201
## 177 36 100 1 999 1 -1.8 92.893
## 178 32 144 5 999 1 -1.8 92.893
## 179 34 66 1 999 1 -0.1 93.200
## 180 78 319 2 999 1 -3.4 92.649
## 181 57 57 7 999 1 -0.1 93.200
## 182 40 140 4 999 1 -1.8 93.075
## 183 47 343 4 999 1 -1.8 92.893
## 184 35 225 7 999 1 -1.8 92.893
## 185 50 600 2 999 1 -0.1 93.200
## 186 54 219 3 999 1 -1.1 94.601
## 187 56 414 1 999 1 -3.4 92.649
## 188 44 276 2 999 1 -1.8 93.075
## 189 42 474 2 999 1 -1.8 92.893
## 190 31 551 3 999 1 -1.8 93.075
## 191 34 573 1 999 1 -1.8 92.893
## 192 18 269 1 999 1 -3.0 92.713
## 193 29 99 2 999 1 -3.4 92.431
## 194 43 352 1 999 1 -0.1 93.200
## 195 27 415 1 999 1 -1.8 92.893
## 196 31 196 2 999 1 -1.8 92.893
## 197 49 86 1 999 1 -1.8 92.893
## 198 56 290 3 999 1 -1.8 92.893
## 199 51 324 1 999 1 -0.1 93.200
## 200 34 340 1 999 1 -1.8 93.075
## 201 36 38 1 999 1 -1.8 92.893
## 202 46 309 1 999 1 -1.8 93.075
## 203 32 297 1 999 2 -2.9 92.963
## 204 22 267 2 999 1 -1.8 92.893
## 205 39 530 1 999 1 -0.1 93.200
## 206 22 84 1 999 2 -1.1 94.199
## 207 32 197 1 999 1 -1.7 94.055
## 208 44 175 2 999 2 -2.9 92.201
## 209 30 92 1 999 1 -0.1 93.200
## 210 36 62 1 999 1 -2.9 92.201
## 211 33 44 1 999 1 -1.8 92.893
## 212 45 201 1 999 1 -0.1 93.200
## 213 52 157 2 999 1 -1.8 92.893
## 214 52 121 1 999 1 -1.8 92.893
## 215 45 90 1 999 1 -0.1 93.200
## 216 27 185 5 999 2 -1.7 94.215
## 217 35 77 3 999 1 -1.8 93.075
## 218 47 226 1 999 1 -1.8 93.075
## 219 53 464 2 999 1 -0.1 93.200
## 220 46 200 2 999 1 -2.9 92.963
## 221 34 447 1 999 1 -1.7 94.027
## 222 50 51 5 999 1 -0.1 93.200
## 223 49 434 1 999 1 -3.4 92.431
## 224 34 332 3 999 1 -1.7 94.215
## 225 46 293 1 999 1 -1.8 92.893
## 226 31 51 8 999 1 -0.1 93.200
## 227 34 225 1 999 1 -1.8 92.893
## 228 51 72 2 999 1 -2.9 92.201
## 229 45 479 1 999 1 -1.8 93.075
## 230 35 244 2 999 1 -3.4 92.649
## 231 41 54 1 999 1 -0.1 93.200
## 232 55 99 1 999 1 -3.4 92.649
## 233 58 240 2 999 1 -0.1 93.200
## 234 74 307 1 999 1 -2.9 92.201
## 235 35 502 1 999 1 -1.8 92.893
## 236 37 73 4 999 1 -0.1 93.200
## 237 54 49 2 999 1 -3.4 92.379
## 238 38 299 1 999 1 -1.8 92.893
## 239 33 216 1 999 1 -1.8 92.893
## 240 40 52 1 999 1 -0.1 93.200
## 241 59 511 3 999 1 -3.4 92.431
## 242 59 378 2 999 1 -2.9 92.201
## 243 33 900 2 999 2 -1.8 93.075
## 244 26 204 2 999 1 -2.9 92.201
## 245 30 422 1 999 1 -1.8 92.893
## 246 50 718 4 999 3 -1.1 94.199
## 247 34 217 1 999 1 -1.8 92.893
## 248 29 112 4 999 1 -1.8 92.893
## 249 31 629 1 999 1 -1.8 92.893
## 250 47 159 1 999 1 -3.4 92.379
## 251 24 255 1 999 1 -1.8 93.075
## 252 67 341 4 999 1 -3.4 92.649
## 253 24 860 2 9 2 -1.7 94.215
## 254 53 470 2 999 2 -1.8 92.893
## 255 24 107 1 999 1 -1.8 93.075
## 256 59 1207 4 999 1 -1.7 94.055
## 257 53 367 6 999 1 -1.8 92.893
## 258 47 377 1 999 1 -1.8 92.893
## 259 40 91 2 999 1 -1.8 93.075
## 260 46 333 2 999 1 -0.1 93.200
## 261 27 136 5 999 1 -1.8 92.893
## 262 46 83 2 12 2 -1.1 94.601
## 263 26 102 2 999 1 -2.9 92.201
## 264 30 200 1 999 1 -1.7 94.027
## 265 44 16 3 999 1 -1.8 93.075
## 266 48 301 1 999 1 -3.4 92.431
## 267 35 117 3 999 1 -1.8 92.893
## 268 35 255 2 999 1 -1.8 92.893
## 269 38 351 1 999 1 -1.8 93.075
## 270 48 1337 4 999 1 -0.1 93.200
## 271 50 118 2 999 1 -1.8 92.893
## 272 37 76 1 999 1 -1.8 93.075
## 273 27 179 1 999 1 -1.7 94.215
## 274 36 73 3 999 1 -1.8 93.075
## 275 31 115 3 999 1 -1.8 92.893
## 276 37 143 2 999 1 -1.8 92.893
## 277 23 76 2 999 1 -1.7 94.215
## 278 44 267 4 999 1 -1.8 92.893
## 279 78 754 2 3 2 -1.8 92.893
## 280 28 343 2 999 1 -2.9 92.201
## 281 35 206 1 999 1 -1.8 92.893
## 282 40 215 1 999 1 -0.1 93.200
## 283 39 103 1 999 2 -1.8 92.893
## 284 46 78 2 999 1 -0.1 93.200
## 285 30 176 2 999 1 -1.8 92.893
## 286 27 253 1 999 2 -1.1 94.601
## 287 34 156 3 999 2 -1.7 94.215
## 288 23 136 3 999 1 -1.8 92.893
## 289 30 7 6 999 1 -1.8 93.075
## 290 52 198 1 999 1 -1.8 92.893
## 291 33 204 3 999 1 -1.8 92.893
## 292 40 165 1 999 1 -0.1 93.200
## 293 47 118 2 999 1 -1.8 92.893
## 294 30 208 1 999 1 -1.8 92.893
## 295 57 117 2 999 1 -0.1 93.200
## 296 26 251 1 999 1 -1.7 94.215
## 297 30 86 2 999 1 -1.8 92.893
## 298 24 66 1 999 1 -1.8 92.893
## 299 38 258 1 999 1 -1.8 93.075
## 300 27 471 2 999 1 -1.8 92.893
## 301 43 426 1 999 1 -1.8 92.893
## 302 43 249 3 999 1 -0.1 93.200
## 303 29 468 2 999 1 -1.8 92.893
## 304 33 113 1 999 1 -0.1 93.200
## 305 31 68 1 999 1 -0.1 93.200
## 306 20 240 1 999 1 -1.8 93.749
## 307 78 591 1 999 1 -1.8 93.369
## 308 30 87 4 999 1 -1.8 93.075
## 309 47 53 1 999 1 -1.8 93.075
## 310 30 120 3 999 1 -2.9 92.201
## 311 33 122 1 999 1 -0.1 93.200
## 312 36 242 1 999 1 -0.1 93.200
## 313 53 242 1 999 1 -3.4 92.649
## 314 62 113 1 999 1 -3.4 92.649
## 315 38 96 6 999 1 -1.8 92.893
## 316 39 248 1 999 1 -1.8 92.893
## 317 34 95 1 999 1 -1.8 92.893
## 318 22 154 2 999 1 -3.4 92.431
## 319 53 758 2 999 2 -1.8 93.749
## 320 37 1138 2 999 1 -1.8 93.075
## 321 31 59 1 999 1 -1.8 92.893
## 322 36 20 8 999 1 -1.8 92.893
## 323 33 235 2 999 1 -1.8 92.893
## 324 32 115 1 999 1 -0.1 93.200
## 325 27 109 1 999 1 -3.0 92.713
## 326 37 72 1 999 1 -1.8 92.893
## 327 48 296 1 16 3 -1.7 94.027
## 328 34 131 1 999 1 -3.4 92.431
## 329 32 319 1 999 1 -1.8 92.893
## 330 26 211 2 999 1 -1.8 92.893
## 331 26 639 3 999 1 -1.8 92.893
## 332 34 612 1 999 2 -1.8 92.893
## 333 54 222 1 999 1 -1.1 94.767
## 334 34 139 6 999 1 -0.1 93.200
## 335 31 868 3 18 3 -1.7 94.027
## 336 55 233 1 999 2 -3.4 92.431
## 337 38 456 1 999 1 -1.8 92.893
## 338 38 184 1 999 1 -1.8 92.893
## 339 37 108 2 999 1 -1.8 92.893
## 340 24 69 2 999 2 -1.8 92.893
## 341 36 160 1 999 1 -0.1 93.200
## 342 36 146 3 999 1 -1.8 92.893
## 343 56 566 1 7 2 -3.4 92.649
## 344 33 201 1 999 1 -1.8 92.893
## 345 46 765 1 999 1 -1.8 92.893
## 346 37 494 4 999 3 -1.7 94.215
## 347 35 59 2 999 1 -1.8 93.075
## 348 53 172 2 999 1 -1.8 92.893
## 349 31 906 1 999 1 -0.1 93.200
## 350 60 193 1 999 1 -1.8 92.893
## 351 40 143 3 999 1 -2.9 92.963
## 352 63 198 1 999 1 -1.8 93.075
## 353 32 36 9 999 1 -1.8 92.893
## 354 47 182 1 999 1 -3.4 92.649
## 355 29 314 2 999 1 -0.1 93.200
## 356 42 164 2 999 1 -0.1 93.200
## 357 42 64 2 999 1 -1.8 92.893
## 358 34 351 7 999 1 -1.8 92.893
## 359 46 119 1 999 1 -0.1 93.200
## 360 54 105 1 999 1 -1.8 93.075
## 361 56 517 3 999 1 -1.8 92.893
## 362 39 103 1 999 1 -1.8 92.893
## 363 34 133 1 999 1 -1.8 92.893
## 364 56 67 6 999 1 -0.1 93.200
## 365 33 193 1 999 1 -3.4 92.431
## 366 47 182 2 999 6 -1.7 94.027
## 367 42 271 1 999 1 -1.8 93.749
## 368 28 188 1 999 1 -2.9 92.963
## 369 34 83 2 999 1 -1.8 92.893
## 370 37 11 8 999 1 -1.8 92.893
## 371 31 91 1 999 1 -1.7 94.215
## 372 36 343 2 999 1 -3.4 92.431
## 373 30 22 1 999 1 -1.8 92.893
## 374 30 287 1 999 1 -1.8 92.893
## 375 39 71 5 999 1 -1.8 92.893
## 376 24 122 2 999 1 -2.9 92.963
## 377 38 202 3 999 1 -1.8 92.893
## 378 23 308 2 999 1 -1.8 92.843
## 379 46 65 1 999 1 -3.4 92.431
## 380 73 273 2 999 1 -1.7 94.027
## 381 42 228 2 999 1 -1.8 92.893
## 382 38 155 1 999 1 -1.8 92.893
## 383 31 190 1 999 1 -0.1 93.200
## 384 39 223 2 999 1 -1.8 92.893
## 385 19 380 1 999 1 -3.4 92.649
## 386 29 22 1 999 2 -1.8 93.075
## 387 34 14 5 999 1 -1.8 92.893
## 388 45 272 1 999 1 -1.8 92.893
## 389 38 234 2 999 1 -1.8 92.893
## 390 39 1007 3 999 1 -1.8 93.075
## 391 30 61 3 999 1 -1.8 92.893
## 392 51 1032 10 999 1 -0.1 93.200
## 393 29 198 2 999 2 -1.8 92.893
## 394 31 127 3 999 1 -2.9 92.963
## 395 52 291 1 999 1 -1.8 93.075
## 396 60 604 1 999 1 -1.1 94.601
## 397 48 260 2 999 1 -2.9 92.201
## 398 45 174 1 999 1 -1.8 93.075
## 399 30 195 3 999 1 -1.8 92.893
## 400 33 90 2 999 1 -0.1 93.200
## 401 34 362 2 999 1 -1.8 92.893
## 402 35 832 1 999 1 -1.8 92.893
## 403 31 107 1 999 2 -3.4 92.649
## 404 47 239 2 999 1 -1.8 93.075
## 405 28 359 1 999 2 -2.9 92.963
## 406 36 69 4 999 1 -3.4 92.649
## 407 40 456 1 999 1 -1.8 93.075
## 408 31 582 2 999 1 -1.8 92.893
## 409 48 267 2 999 1 -1.8 93.075
## 410 27 162 2 999 2 -2.9 92.963
## 411 32 213 1 999 1 -1.8 92.893
## 412 38 334 6 999 1 -1.8 92.893
## 413 35 77 2 999 1 -0.1 93.200
## 414 32 1307 3 999 1 -0.1 93.200
## 415 52 172 1 999 1 -0.1 93.200
## 416 36 279 1 999 1 -1.8 92.893
## 417 38 110 1 999 1 -1.8 93.075
## 418 65 253 1 999 2 -3.4 92.649
## 419 34 104 1 999 1 -1.8 92.893
## 420 34 143 1 999 1 -1.8 93.075
## 421 37 347 1 999 1 -0.1 93.200
## 422 67 89 5 999 1 -2.9 92.201
## 423 35 70 1 999 1 -0.1 93.200
## 424 24 175 1 999 1 -1.8 92.893
## 425 55 139 2 999 1 -1.8 92.893
## 426 25 152 4 999 1 -1.8 92.893
## 427 36 148 1 999 2 -1.8 93.369
## 428 35 12 6 999 1 -1.8 92.893
## 429 68 201 1 999 1 -3.4 92.379
## 430 27 154 1 999 1 -1.8 92.893
## 431 29 133 1 999 1 -1.8 92.893
## 432 30 180 3 999 1 -1.8 93.075
## 433 38 118 1 999 1 -1.8 92.893
## 434 47 119 1 999 4 -1.7 94.055
## 435 53 157 4 999 1 -1.8 92.893
## 436 44 150 3 999 2 -1.8 92.893
## 437 50 75 2 999 1 -0.1 93.200
## 438 32 249 1 999 1 -0.1 93.200
## 439 32 49 2 999 1 -0.1 93.200
## 440 33 32 1 999 1 -1.8 92.893
## 441 48 1032 3 999 2 -1.8 93.075
## 442 50 1365 2 999 1 -1.8 93.075
## 443 30 334 4 999 2 -1.7 94.215
## 444 37 364 1 999 1 -3.4 92.431
## 445 25 169 2 999 1 -2.9 92.201
## 446 44 31 1 999 1 -1.8 92.893
## 447 27 161 1 999 3 -1.1 94.601
## 448 31 48 4 999 1 -1.8 92.893
## 449 36 158 1 999 1 -1.8 92.893
## 450 30 221 2 999 1 -1.1 94.199
## 451 61 245 4 999 1 -1.8 93.075
## 452 70 122 1 14 3 -1.1 94.601
## 453 47 115 1 999 1 -1.8 92.893
## 454 38 365 1 999 1 -1.8 92.893
## 455 71 137 1 999 1 -3.4 92.431
## 456 26 189 2 999 1 -1.8 92.893
## 457 42 7 5 999 2 -1.8 92.893
## 458 44 67 2 999 1 -0.1 93.200
## 459 35 378 2 999 1 -1.8 92.893
## 460 43 279 1 999 1 -1.8 92.893
## 461 60 104 1 999 1 -3.4 92.379
## 462 28 81 1 999 1 -1.8 92.893
## 463 57 75 1 999 1 -0.1 93.200
## 464 37 635 1 999 1 -0.1 93.200
## 465 51 178 2 999 1 -0.1 93.200
## 466 39 952 2 999 1 -1.8 93.075
## 467 32 230 1 999 1 -1.8 93.075
## 468 55 9 2 999 2 -1.8 92.893
## 469 25 581 3 999 2 -1.8 93.876
## 470 35 242 2 999 1 -1.1 94.199
## 471 32 128 1 999 1 -1.8 92.893
## 472 50 699 1 999 1 -2.9 92.963
## 473 41 233 4 999 1 -0.1 93.200
## 474 33 223 1 999 1 -1.8 92.893
## 475 36 102 6 999 1 -1.8 92.893
## 476 36 90 1 999 2 -2.9 92.201
## 477 52 698 5 999 1 -1.8 93.876
## 478 84 220 2 999 2 -1.8 93.749
## 479 38 276 1 999 1 -1.8 92.893
## 480 30 143 1 999 1 -1.8 92.893
## 481 63 510 2 999 1 -3.0 92.713
## 482 48 193 4 999 1 -0.1 93.200
## 483 39 200 1 999 1 -2.9 92.201
## 484 56 277 1 999 1 -3.4 92.379
## 485 29 225 2 999 1 -0.1 93.200
## 486 26 99 1 999 1 -2.9 92.201
## 487 50 48 1 999 1 -0.1 93.200
## 488 42 164 3 999 1 -0.1 93.200
## 489 33 585 2 999 1 -1.8 92.893
## 490 18 256 2 7 2 -3.4 92.649
## 491 72 1 1 999 1 -1.1 94.199
## 492 36 245 1 999 1 -1.8 92.893
## 493 35 185 2 999 1 -1.8 92.893
## 494 30 156 1 999 1 -1.7 94.027
## 495 44 574 1 999 1 -1.8 93.075
## 496 35 827 1 999 1 -1.8 92.893
## 497 50 79 1 999 1 -0.1 93.200
## 498 33 199 7 999 1 -1.8 92.893
## 499 29 177 4 999 1 -1.8 92.893
## 500 37 654 1 999 1 -2.9 92.963
## 501 33 176 1 999 1 -0.1 93.200
## 502 42 221 1 999 2 -1.8 92.893
## 503 50 189 1 999 1 -0.1 93.200
## 504 33 192 1 999 1 -1.8 93.876
## 505 63 167 1 999 1 -3.4 92.379
## 506 37 84 2 999 2 -1.8 92.893
## 507 34 219 4 999 1 -1.8 92.893
## 508 37 312 3 999 1 -0.1 93.200
## 509 31 284 3 999 1 -1.8 92.893
## 510 48 517 2 999 1 -0.1 93.200
## 511 45 268 1 999 1 -1.8 93.075
## 512 51 541 2 999 1 -1.8 93.075
## 513 45 140 3 999 1 -3.4 92.649
## 514 37 66 1 999 1 -1.8 92.893
## 515 29 38 2 999 1 -0.1 93.200
## 516 29 473 2 999 1 -1.8 93.075
## 517 37 143 3 999 1 -1.8 92.893
## 518 47 22 1 999 1 -1.8 92.893
## 519 57 149 1 999 1 -2.9 92.201
## 520 44 134 1 999 1 -1.7 94.055
## 521 40 430 2 999 1 -1.8 92.893
## 522 36 65 1 999 1 -1.8 92.893
## 523 33 225 3 999 1 -1.8 92.893
## 524 46 417 2 999 2 -1.8 93.075
## 525 51 153 1 999 1 -1.8 92.893
## 526 33 234 1 999 1 -1.8 92.893
## 527 44 130 1 999 1 -0.1 93.200
## 528 49 330 2 999 1 -1.8 92.893
## 529 39 209 5 999 1 -1.8 92.893
## 530 34 210 2 999 1 -1.8 92.893
## 531 40 277 2 999 1 -1.8 93.075
## 532 37 115 2 999 1 -1.8 93.075
## 533 32 134 2 999 1 -1.8 92.893
## 534 28 154 1 999 2 -1.7 94.215
## 535 31 779 2 999 1 -0.1 93.200
## 536 29 147 1 999 2 -1.7 94.055
## 537 68 237 7 999 2 -1.8 93.876
## 538 35 233 1 999 1 -1.8 92.893
## 539 24 576 4 999 1 -1.8 92.893
## 540 26 176 2 999 1 -1.8 92.893
## 541 32 96 1 999 3 -3.4 92.431
## 542 79 104 1 999 2 -1.8 93.876
## 543 52 152 3 999 1 -1.8 92.893
## 544 58 127 1 999 1 -0.1 93.200
## 545 41 306 3 999 1 -1.8 92.893
## 546 46 182 6 999 1 -2.9 92.201
## 547 54 333 1 999 1 -1.8 92.893
## 548 50 389 1 999 1 -0.1 93.200
## 549 31 209 1 999 2 -1.7 94.027
## 550 40 21 1 999 1 -1.1 94.199
## 551 33 178 8 999 1 -1.8 92.893
## 552 32 134 1 999 1 -1.8 92.893
## 553 33 397 2 999 1 -1.8 93.075
## 554 44 272 2 999 1 -1.8 93.075
## 555 66 667 1 999 1 -1.1 94.199
## 556 34 473 1 999 1 -1.8 93.075
## 557 36 668 3 999 1 -1.8 93.075
## 558 39 208 3 999 1 -1.8 93.749
## 559 28 225 1 999 1 -1.8 92.893
## 560 53 107 1 999 1 -0.1 93.200
## 561 27 196 3 999 1 -1.8 92.893
## 562 46 245 2 999 4 -1.7 94.027
## 563 28 93 3 11 2 -1.8 93.075
## 564 48 591 1 999 1 -0.1 93.200
## 565 52 429 3 999 1 -1.8 92.893
## 566 43 131 2 999 1 -1.8 93.075
## 567 37 462 1 999 1 -1.8 92.893
## 568 51 133 1 999 1 -2.9 92.201
## 569 29 128 3 999 1 -1.8 92.893
## 570 41 105 1 999 1 -1.8 92.893
## 571 46 125 3 999 1 -1.8 93.075
## 572 27 267 1 999 1 -1.8 92.893
## 573 36 97 2 999 1 -1.8 92.893
## 574 43 200 2 999 1 -1.8 92.893
## 575 26 81 1 7 4 -1.8 93.369
## 576 30 520 3 999 1 -1.8 93.075
## 577 41 261 1 999 1 -1.8 92.893
## 578 52 7 7 999 1 -1.8 92.893
## 579 20 74 2 999 1 -2.9 92.963
## 580 70 325 1 999 2 -3.0 92.713
## 581 41 528 3 999 1 -1.8 93.075
## 582 37 94 2 999 1 -0.1 93.200
## 583 26 355 1 999 1 -1.1 94.199
## 584 26 45 2 999 2 -1.8 92.893
## 585 43 99 2 999 1 -1.8 92.893
## 586 81 279 1 999 4 -1.7 94.055
## 587 30 848 1 999 1 -1.8 92.893
## 588 29 315 2 999 1 -0.1 93.200
## 589 45 79 1 999 1 -1.8 93.075
## 590 45 190 1 999 1 -1.8 92.893
## 591 40 265 1 999 1 -1.8 92.893
## 592 39 363 1 999 1 -1.8 92.893
## 593 52 110 1 999 1 -1.8 92.893
## 594 38 137 4 999 1 -0.1 93.200
## 595 43 154 3 999 1 -0.1 93.200
## 596 33 210 2 999 1 -1.8 92.893
## 597 47 65 1 999 1 -0.1 93.200
## 598 45 104 4 999 1 -0.1 93.200
## 599 66 177 1 999 1 -1.8 93.369
## 600 44 310 1 999 1 -1.1 94.601
## 601 55 113 1 999 1 -0.1 93.200
## 602 53 405 1 999 1 -0.1 93.200
## 603 35 293 2 999 1 -0.1 93.200
## 604 37 588 1 999 1 -0.1 93.200
## 605 34 320 3 999 1 -1.8 92.893
## 606 38 923 1 999 1 -2.9 92.201
## 607 46 584 1 999 1 -0.1 93.200
## 608 24 316 3 999 1 -1.7 94.215
## 609 29 774 2 999 1 -1.8 92.893
## 610 57 200 6 999 1 -1.8 92.893
## 611 46 84 3 999 1 -1.8 92.893
## 612 69 153 4 999 1 -1.8 93.075
## 613 37 238 2 999 1 -1.8 92.893
## 614 37 445 1 999 1 -1.8 92.893
## 615 27 41 3 999 1 -1.8 92.893
## 616 49 171 1 999 1 -1.8 93.075
## 617 44 580 1 999 1 -1.8 93.075
## 618 22 256 3 999 1 -1.7 94.215
## 619 35 207 1 999 1 -1.8 93.075
## 620 29 41 2 999 1 -1.8 92.893
## 621 38 141 1 999 2 -1.8 93.075
## 622 42 92 1 999 1 -1.8 92.893
## 623 37 55 2 999 1 -0.1 93.200
## 624 33 486 1 999 2 -1.7 94.027
## 625 31 66 4 999 1 -1.8 92.893
## 626 32 293 2 999 2 -1.8 92.893
## 627 53 205 2 999 1 -0.1 93.200
## 628 52 177 2 11 3 -1.8 93.369
## 629 38 72 2 999 1 -1.8 92.893
## 630 38 135 1 999 2 -3.4 92.431
## 631 32 145 2 999 1 -0.1 93.200
## 632 38 101 1 999 1 -1.8 93.075
## 633 33 291 1 999 3 -1.1 94.601
## 634 26 358 1 9 2 -3.4 92.649
## 635 33 110 1 999 2 -3.4 92.431
## 636 24 174 1 999 1 -1.8 92.893
## 637 33 397 1 999 2 -1.8 92.893
## 638 48 105 1 999 1 -0.1 93.200
## 639 32 195 3 999 1 -1.8 92.893
## 640 48 89 1 999 1 -0.1 93.200
## 641 35 86 3 999 1 -0.1 93.200
## 642 32 154 3 999 1 -0.1 93.200
## 643 30 24 6 999 1 -1.8 92.893
## 644 29 212 1 999 1 -1.8 92.893
## 645 23 250 4 999 1 -1.7 94.215
## 646 38 266 1 999 1 -1.8 92.893
## 647 28 152 1 999 1 -1.8 93.369
## 648 33 238 1 999 1 -1.8 92.893
## 649 36 114 1 999 1 -0.1 93.200
## 650 29 854 2 999 1 -1.8 92.893
## 651 26 279 2 999 1 -1.8 92.893
## 652 33 101 4 999 2 -2.9 92.201
## 653 42 96 1 999 1 -2.9 92.201
## 654 30 599 4 999 1 -0.1 93.200
## 655 46 162 1 999 1 -0.1 93.200
## 656 44 119 2 999 1 -0.1 93.200
## 657 27 99 7 999 1 -1.8 92.893
## 658 28 457 2 999 1 -1.8 93.876
## 659 38 360 1 999 1 -1.8 92.893
## 660 32 62 1 999 1 -1.8 93.075
## 661 28 343 1 999 1 -1.8 92.893
## 662 36 74 3 999 1 -1.8 92.893
## 663 58 159 2 999 1 -1.8 92.893
## 664 33 495 1 999 1 -1.8 92.893
## 665 30 11 15 999 1 -1.8 92.893
## 666 57 148 4 999 1 -1.8 92.893
## 667 35 276 1 999 1 -0.1 93.200
## 668 54 82 1 999 1 -0.1 93.200
## 669 32 74 2 999 2 -1.1 94.767
## 670 34 36 2 999 1 -1.8 93.075
## 671 32 517 1 999 1 -1.8 92.893
## 672 38 612 1 999 1 -1.8 93.075
## 673 58 358 2 999 1 -1.8 92.893
## 674 50 241 2 999 1 -1.8 93.075
## 675 33 145 1 999 1 -1.8 92.893
## 676 36 40 2 999 1 -0.1 93.200
## 677 40 124 1 999 1 -1.8 93.075
## 678 28 165 1 999 1 -1.8 92.893
## 679 31 114 1 999 1 -1.8 92.893
## 680 27 9 5 999 1 -1.8 92.893
## 681 36 166 2 999 1 -0.1 93.200
## 682 66 43 1 999 2 -2.9 92.201
## 683 54 139 3 999 1 -1.8 92.893
## 684 25 516 1 13 2 -1.7 94.055
## 685 54 150 1 999 1 -0.1 93.200
## 686 31 161 5 999 1 -1.8 92.893
## 687 41 57 1 999 1 -1.8 92.893
## 688 58 110 2 999 1 -0.1 93.200
## 689 55 133 3 999 1 -1.8 92.893
## 690 50 157 1 999 1 -1.8 92.893
## 691 39 171 2 999 1 -0.1 93.200
## 692 44 225 3 999 2 -1.8 93.075
## 693 65 117 1 999 2 -1.7 94.215
## 694 59 381 1 999 1 -1.8 93.075
## 695 26 165 2 999 1 -1.8 92.893
## 696 35 138 1 999 1 -1.8 93.369
## 697 34 90 2 999 1 -1.8 93.075
## 698 33 220 1 999 1 -0.1 93.200
## 699 86 237 1 999 1 -3.4 92.649
## 700 39 148 2 999 1 -0.1 93.200
## 701 42 98 2 999 1 -1.8 92.893
## 702 32 53 1 999 1 -1.8 92.893
## 703 31 56 1 999 1 -1.8 92.893
## 704 49 181 4 999 1 -1.8 92.893
## 705 37 553 1 999 1 -1.8 92.893
## 706 44 492 1 999 2 -1.7 94.027
## 707 34 47 2 999 1 -1.8 92.893
## 708 38 1022 1 999 1 -1.8 92.893
## 709 35 197 4 999 1 -0.1 93.200
## 710 29 43 8 999 1 -1.8 92.893
## 711 30 157 1 999 1 -0.1 93.200
## 712 38 106 3 999 1 -0.1 93.200
## 713 31 90 1 999 1 -1.8 92.893
## 714 27 222 3 999 1 -3.4 92.649
## 715 55 113 2 999 1 -0.1 93.200
## 716 49 231 2 999 1 -1.8 92.893
## 717 30 109 1 999 1 -0.1 93.200
## 718 33 323 2 999 1 -1.8 92.893
## 719 34 601 2 999 1 -1.8 92.893
## 720 44 358 1 999 1 -1.8 92.893
## 721 29 209 1 999 1 -0.1 93.200
## 722 47 5 7 999 1 -1.8 92.893
## 723 33 364 1 999 1 -1.8 92.893
## 724 50 743 1 999 1 -0.1 93.200
## 725 81 158 1 999 1 -1.1 94.601
## 726 49 464 2 999 1 -2.9 92.201
## 727 46 205 1 999 1 -1.8 92.893
## 728 55 163 1 999 1 -1.8 92.893
## 729 34 251 1 999 2 -1.8 93.369
## 730 35 26 4 999 2 -1.8 93.075
## 731 42 675 4 999 1 -0.1 93.200
## 732 27 22 6 999 1 -1.8 92.893
## 733 53 160 7 999 1 -1.8 92.893
## 734 74 239 2 999 1 -2.9 92.201
## 735 54 53 1 999 1 -0.1 93.200
## 736 38 110 1 999 1 -1.8 93.075
## 737 29 292 1 999 1 -1.7 94.055
## 738 43 608 1 999 1 -1.8 93.075
## 739 24 190 1 999 1 -2.9 92.963
## 740 59 206 1 999 1 -2.9 92.201
## 741 35 86 1 999 1 -3.4 92.431
## 742 28 23 1 999 1 -1.8 92.893
## 743 34 263 1 999 1 -1.8 92.893
## 744 36 147 2 999 1 -1.8 92.893
## 745 60 107 1 999 1 -1.8 92.893
## 746 37 346 1 999 2 -1.8 92.893
## 747 45 215 1 999 1 -1.8 92.893
## 748 29 139 1 999 1 -1.8 92.893
## 749 33 670 2 999 1 -1.8 92.893
## 750 34 23 1 999 1 -1.7 94.215
## 751 45 288 1 999 1 -1.8 92.893
## 752 36 42 2 999 1 -1.8 92.893
## 753 24 263 1 999 1 -2.9 92.963
## 754 34 146 1 999 1 -1.8 92.893
## 755 44 253 1 999 1 -1.8 93.075
## 756 64 104 1 999 2 -1.8 93.075
## 757 51 224 2 999 1 -0.1 93.200
## 758 41 140 1 999 1 -0.1 93.200
## 759 54 139 4 999 1 -0.1 93.200
## 760 28 224 1 999 1 -1.8 92.893
## 761 45 165 1 999 3 -1.8 93.876
## 762 32 47 1 999 1 -1.8 93.075
## 763 32 158 2 999 1 -0.1 93.200
## 764 37 179 2 999 1 -2.9 92.201
## 765 55 14 8 999 2 -1.8 92.893
## 766 70 213 1 999 1 -3.4 92.379
## 767 31 215 2 999 1 -1.8 92.893
## 768 25 252 3 999 1 -1.8 93.369
## 769 51 176 1 999 1 -1.1 94.767
## 770 38 113 1 999 1 -3.4 92.379
## 771 32 191 2 19 2 -1.1 94.767
## 772 35 281 2 999 1 -1.8 92.893
## 773 33 204 1 999 1 -1.8 92.893
## 774 33 281 3 999 1 -1.8 92.893
## 775 48 220 2 999 1 -1.8 93.749
## 776 26 92 1 999 1 -3.4 92.431
## 777 48 294 1 999 1 -3.4 92.431
## 778 73 79 1 999 1 -1.8 93.075
## 779 18 271 1 999 1 -1.8 92.893
## 780 56 427 2 999 1 -1.7 94.215
## 781 75 191 1 999 1 -3.4 92.379
## 782 52 297 1 999 2 -3.4 92.431
## 783 54 487 3 999 2 -1.1 94.601
## 784 30 136 2 999 1 -0.1 93.200
## 785 59 383 2 999 2 -1.1 94.601
## 786 23 370 1 999 1 -1.8 92.893
## 787 68 500 2 999 1 -3.4 92.379
## 788 49 222 4 999 1 -1.8 92.893
## 789 34 201 1 5 3 -3.4 92.431
## 790 45 197 1 999 1 -1.8 92.893
## 791 57 595 3 999 1 -1.8 93.749
## 792 40 182 2 999 1 -1.8 92.893
## 793 58 224 2 999 1 -0.1 93.200
## 794 55 1440 1 999 1 -1.1 94.199
## 795 31 104 1 999 1 -0.1 93.200
## 796 42 175 1 999 1 -1.8 92.893
## 797 63 47 1 999 1 -2.9 92.201
## 798 35 273 2 999 1 -0.1 93.200
## 799 66 141 4 999 2 -1.8 93.369
## 800 31 62 1 999 1 -0.1 93.200
## 801 38 65 1 999 1 -2.9 92.963
## 802 64 248 1 999 2 -2.9 92.201
## 803 34 71 5 999 1 -1.8 92.893
## 804 21 142 3 999 1 -1.8 92.893
## 805 42 201 1 999 1 -1.8 92.893
## 806 57 275 2 999 1 -1.8 93.075
## 807 45 316 2 999 2 -1.1 94.601
## 808 18 561 1 17 2 -1.7 94.027
## 809 39 10 6 999 1 -0.1 93.200
## 810 94 134 1 999 1 -3.4 92.649
## 811 40 178 5 999 1 -0.1 93.200
## 812 52 181 2 999 1 -1.8 93.075
## 813 32 358 2 999 1 -1.8 92.893
## 814 47 408 2 999 2 -1.8 92.893
## 815 28 226 3 999 1 -1.7 94.027
## 816 41 97 1 999 2 -1.8 92.893
## 817 36 106 1 999 1 -0.1 93.200
## 818 51 119 1 999 1 -0.1 93.200
## 819 60 290 1 999 1 -3.4 92.431
## 820 30 398 2 999 0 1.4 93.444
## 821 57 58 2 999 0 -0.1 93.200
## 822 37 301 1 999 0 -1.8 92.893
## 823 24 93 5 999 0 -1.8 92.843
## 824 30 254 1 999 0 1.4 93.444
## 825 45 133 1 999 0 -1.8 92.893
## 826 51 547 3 999 0 1.4 93.444
## 827 44 14 3 999 0 -1.8 92.893
## 828 52 161 4 999 0 1.4 93.444
## 829 36 153 4 999 0 1.4 93.444
## 830 25 553 1 999 0 -2.9 92.201
## 831 30 445 1 999 0 1.4 93.444
## 832 31 267 4 999 0 1.1 93.994
## 833 44 175 11 999 0 1.4 93.918
## 834 41 160 6 999 0 1.1 93.994
## 835 38 183 1 999 0 -1.8 93.075
## 836 36 338 4 999 0 1.1 93.994
## 837 48 36 5 999 0 1.4 94.465
## 838 54 261 3 999 0 1.4 93.918
## 839 36 264 6 999 0 1.4 94.465
## 840 37 92 1 999 0 1.1 93.994
## 841 47 92 1 999 0 -1.8 93.075
## 842 38 9 1 999 0 -1.8 93.075
## 843 57 293 1 999 0 1.1 93.994
## 844 43 121 2 999 0 -1.8 93.075
## 845 41 343 2 999 0 -1.8 93.075
## 846 40 625 3 999 0 -1.8 93.075
## 847 53 456 1 999 0 -1.8 92.893
## 848 36 139 1 999 0 -1.8 92.893
## 849 36 172 2 999 0 1.4 93.918
## 850 25 299 3 999 0 -1.8 92.893
## 851 29 86 2 999 0 1.4 94.465
## 852 47 168 2 999 0 -1.8 92.893
## 853 64 693 2 999 0 -1.8 93.075
## 854 33 730 5 999 0 -1.8 92.893
## 855 31 1123 2 999 0 1.4 93.444
## 856 32 194 3 999 0 -1.8 92.893
## 857 42 134 2 999 0 1.1 93.994
## 858 24 126 2 999 0 1.4 93.918
## 859 43 141 4 999 0 -1.8 93.075
## 860 34 172 1 999 0 -1.8 93.075
## 861 47 251 3 999 0 1.1 93.994
## 862 26 36 2 999 0 -1.8 92.893
## 863 33 729 1 999 0 -1.8 92.893
## 864 41 911 2 999 0 1.4 93.918
## 865 46 138 1 999 0 1.1 93.994
## 866 28 498 2 999 0 1.1 93.994
## 867 28 330 2 999 0 1.4 93.918
## 868 48 105 3 999 0 -1.8 93.075
## 869 37 99 2 999 0 -1.8 93.075
## 870 37 851 2 999 0 1.1 93.994
## 871 31 35 3 999 0 1.4 93.918
## 872 30 285 1 999 0 -1.8 93.075
## 873 54 173 1 999 0 -1.8 92.893
## 874 32 709 1 999 0 -1.8 93.075
## 875 36 381 2 999 0 1.1 93.994
## 876 35 536 1 999 0 1.4 93.918
## 877 39 541 7 999 0 1.4 93.918
## 878 30 222 6 999 0 -1.8 92.893
## 879 40 316 3 999 0 1.1 93.994
## 880 56 340 1 999 0 1.1 93.994
## 881 42 231 1 999 0 1.4 93.444
## 882 57 251 1 999 0 1.1 93.994
## 883 38 131 2 999 0 -1.8 93.075
## 884 38 346 1 999 0 1.1 93.994
## 885 31 13 15 999 0 1.4 94.465
## 886 34 225 2 999 0 1.4 93.918
## 887 32 82 3 999 0 1.1 93.994
## 888 37 253 2 999 0 1.1 93.994
## 889 34 191 2 999 0 1.4 94.465
## 890 42 133 1 999 0 -0.1 93.200
## 891 47 463 2 999 0 1.1 93.994
## 892 26 230 2 999 0 -2.9 92.963
## 893 36 49 1 999 0 -1.8 92.893
## 894 39 38 3 999 0 1.4 94.465
## 895 57 1193 5 999 0 1.1 93.994
## 896 38 256 2 999 0 -1.1 94.199
## 897 35 65 1 999 0 1.1 93.994
## 898 33 656 1 999 0 -1.8 92.893
## 899 34 416 1 999 0 -1.8 93.075
## 900 47 251 2 999 0 1.4 93.444
## 901 55 49 1 999 0 1.4 93.918
## 902 36 322 2 999 0 -1.8 93.075
## 903 53 771 1 999 0 -1.8 93.075
## 904 48 115 4 999 0 1.1 93.994
## 905 48 63 1 999 0 1.4 94.465
## 906 37 460 8 999 0 1.4 94.465
## 907 29 58 1 999 0 1.4 93.444
## 908 32 1291 3 999 0 1.4 94.465
## 909 49 112 2 999 0 1.4 93.444
## 910 52 355 2 999 0 1.1 93.994
## 911 40 360 1 999 0 1.1 93.994
## 912 37 205 6 999 0 1.1 93.994
## 913 55 23 2 999 0 1.4 94.465
## 914 48 52 1 999 0 1.4 94.465
## 915 28 102 2 999 0 1.4 93.918
## 916 40 105 1 999 0 1.4 93.444
## 917 47 249 1 999 0 1.1 93.994
## 918 37 139 1 999 0 1.4 93.444
## 919 38 301 2 999 0 -1.8 93.075
## 920 47 108 1 999 0 1.4 94.465
## 921 44 18 2 999 0 1.4 93.918
## 922 44 175 2 999 0 1.4 94.465
## 923 31 93 1 999 0 1.1 93.994
## 924 30 127 1 999 0 1.4 94.465
## 925 37 131 3 999 0 -1.8 92.893
## 926 45 297 1 999 0 1.4 93.918
## 927 33 240 2 999 0 -0.1 93.200
## 928 34 204 5 999 0 -1.8 93.075
## 929 52 85 8 999 0 1.4 93.444
## 930 42 107 4 999 0 1.4 93.918
## 931 40 162 1 999 0 1.4 94.465
## 932 44 194 3 999 0 1.1 93.994
## 933 40 82 2 999 0 1.1 93.994
## 934 43 61 2 999 0 -0.1 93.200
## 935 45 637 1 999 0 -1.8 93.075
## 936 34 144 4 999 0 -1.8 92.893
## 937 37 246 2 999 0 1.1 93.994
## 938 32 44 1 999 0 1.4 93.918
## 939 26 199 1 999 0 1.4 93.918
## 940 44 262 4 999 0 1.4 93.444
## 941 36 262 1 999 0 1.4 93.918
## 942 26 123 2 999 0 1.1 93.994
## 943 47 63 2 999 0 1.4 94.465
## 944 59 117 2 999 0 1.4 93.444
## 945 53 127 3 999 0 1.4 93.918
## 946 33 555 1 999 0 1.1 93.994
## 947 43 151 6 999 0 1.4 94.465
## 948 36 191 1 999 0 1.4 93.918
## 949 44 25 6 999 0 1.4 94.465
## 950 28 278 2 999 0 1.4 93.918
## 951 47 67 1 999 0 1.4 93.918
## 952 51 99 3 999 0 -1.8 92.893
## 953 50 160 6 999 0 1.4 93.444
## 954 19 452 3 999 0 -1.8 93.075
## 955 37 94 7 999 0 1.4 94.465
## 956 52 306 1 999 0 1.1 93.994
## 957 35 121 1 999 0 -1.8 92.893
## 958 32 133 1 999 0 1.4 93.918
## 959 33 69 14 999 0 1.4 93.444
## 960 41 788 6 999 0 1.4 93.918
## 961 34 306 3 999 0 1.1 93.994
## 962 29 36 1 999 0 1.4 93.444
## 963 33 392 3 999 0 -1.8 93.075
## 964 57 100 1 999 0 -1.8 92.893
## 965 27 100 2 999 0 1.4 93.918
## 966 54 343 4 999 0 1.4 93.444
## 967 44 275 2 999 0 -0.1 93.200
## 968 55 129 3 999 0 1.4 93.918
## 969 36 148 2 999 0 1.1 93.994
## 970 39 255 1 999 0 1.4 93.444
## 971 25 835 1 999 0 1.4 93.918
## 972 39 67 2 999 0 1.4 93.918
## 973 36 355 4 999 0 1.4 94.465
## 974 28 5 1 999 0 -1.1 94.199
## 975 33 136 2 999 0 1.1 93.994
## 976 44 293 2 999 0 1.1 93.994
## 977 31 106 2 999 0 -0.1 93.200
## 978 49 152 1 999 0 1.4 93.918
## 979 44 289 1 999 0 1.4 94.465
## 980 30 117 2 999 0 1.4 93.918
## 981 43 425 1 999 0 1.1 93.994
## 982 29 76 2 999 0 1.1 93.994
## 983 35 115 1 999 0 -1.8 93.075
## 984 31 16 8 999 0 1.4 94.465
## 985 34 415 4 999 0 1.4 94.465
## 986 42 82 4 999 0 -1.8 93.075
## 987 44 75 1 999 0 1.1 93.994
## 988 51 115 2 999 0 -2.9 92.201
## 989 58 38 2 999 0 1.1 93.994
## 990 41 150 3 999 0 -1.8 92.893
## 991 35 14 21 999 0 1.4 94.465
## 992 40 154 1 999 0 -0.1 93.200
## 993 47 109 1 999 0 1.4 93.444
## 994 49 189 1 999 0 1.1 93.994
## 995 42 385 3 999 0 -1.8 92.893
## 996 44 10 4 999 0 1.4 94.465
## 997 37 475 3 999 0 -1.8 92.893
## 998 36 268 1 999 0 -1.8 92.893
## 999 43 320 3 999 0 1.1 93.994
## 1000 39 137 1 999 0 -1.8 93.075
## 1001 39 212 1 999 0 1.4 94.465
## 1002 42 26 1 999 0 1.4 94.465
## 1003 29 351 2 999 0 1.4 93.918
## 1004 32 617 4 999 0 1.1 93.994
## 1005 30 244 7 999 0 -2.9 92.963
## 1006 34 80 1 999 0 1.4 93.444
## 1007 36 53 4 999 0 -1.8 92.893
## 1008 38 91 2 999 0 1.1 93.994
## 1009 67 116 2 999 0 -1.1 94.199
## 1010 30 346 2 999 0 -1.8 93.075
## 1011 51 190 2 999 0 1.4 93.918
## 1012 57 102 4 999 0 1.4 93.918
## 1013 38 59 4 999 0 1.4 93.918
## 1014 42 277 3 999 0 1.4 93.444
## 1015 42 400 2 999 0 1.4 93.918
## 1016 53 351 1 999 0 -1.8 93.075
## 1017 44 163 2 999 0 1.1 93.994
## 1018 58 67 1 999 0 -1.8 92.893
## 1019 32 152 5 999 0 -1.8 92.893
## 1020 33 82 3 999 0 -1.8 92.893
## 1021 28 239 3 999 0 1.1 93.994
## 1022 54 203 1 999 0 1.4 93.918
## 1023 50 337 2 999 0 1.4 93.918
## 1024 58 180 6 999 0 1.4 94.465
## 1025 31 141 2 999 0 1.4 93.918
## 1026 58 218 1 999 0 1.4 94.465
## 1027 27 187 1 999 0 1.1 93.994
## 1028 35 91 1 999 0 1.4 93.444
## 1029 35 936 1 999 0 1.4 93.918
## 1030 27 149 1 999 0 1.4 93.918
## 1031 30 358 2 999 0 1.4 93.444
## 1032 36 82 4 999 0 1.4 94.465
## 1033 36 85 1 999 0 -1.8 92.893
## 1034 45 83 2 999 0 1.4 93.444
## 1035 73 135 1 999 0 -2.9 92.201
## 1036 26 353 2 999 0 1.1 93.994
## 1037 46 1649 2 999 0 1.4 93.918
## 1038 53 817 2 999 0 1.4 93.918
## 1039 46 43 1 999 0 1.1 93.994
## 1040 69 359 5 999 0 -1.7 94.055
## 1041 33 398 2 999 0 1.4 94.465
## 1042 58 528 1 999 0 1.4 93.444
## 1043 35 103 1 999 0 1.4 94.465
## 1044 34 15 9 999 0 -1.8 92.893
## 1045 52 151 1 999 0 1.4 93.444
## 1046 31 308 2 999 0 -1.8 93.075
## 1047 37 129 4 999 0 -1.8 92.893
## 1048 22 143 5 999 0 1.4 93.918
## 1049 48 290 5 999 0 1.1 93.994
## 1050 37 13 11 999 0 -1.8 92.893
## 1051 51 246 1 999 0 1.4 93.444
## 1052 26 378 1 999 0 -1.8 93.075
## 1053 26 120 6 999 0 1.1 93.994
## 1054 34 133 2 999 0 1.4 93.918
## 1055 32 221 2 999 0 1.4 93.918
## 1056 48 334 1 999 0 1.4 94.465
## 1057 44 345 1 999 0 -1.8 93.075
## 1058 41 82 2 999 0 1.4 94.465
## 1059 50 519 2 999 0 1.4 94.465
## 1060 39 306 1 999 0 -1.8 93.075
## 1061 46 407 1 999 0 1.4 93.918
## 1062 51 509 1 999 0 -2.9 92.963
## 1063 29 24 1 999 0 -2.9 92.963
## 1064 54 47 2 999 0 1.4 94.465
## 1065 51 78 1 999 0 1.4 93.918
## 1066 46 134 4 999 0 1.1 93.994
## 1067 52 541 5 999 0 1.1 93.994
## 1068 38 188 2 999 0 1.4 93.918
## 1069 49 448 5 999 0 1.4 93.444
## 1070 25 255 1 999 0 -2.9 92.201
## 1071 53 395 2 999 0 -0.1 93.200
## 1072 39 232 1 999 0 1.1 93.994
## 1073 34 131 2 999 0 -1.8 92.893
## 1074 32 82 5 999 0 1.4 93.444
## 1075 37 50 1 999 0 1.4 94.465
## 1076 41 385 3 999 0 1.4 93.918
## 1077 58 173 3 999 0 1.4 93.444
## 1078 45 636 3 999 0 -1.8 93.075
## 1079 38 202 1 999 0 -0.1 93.200
## 1080 41 325 1 999 0 -2.9 92.201
## 1081 32 531 1 999 0 -1.8 93.075
## 1082 55 357 1 999 0 1.4 93.918
## 1083 31 109 1 999 0 1.4 93.444
## 1084 45 126 5 999 0 1.4 94.465
## 1085 41 212 1 999 0 -1.8 93.075
## 1086 46 306 1 999 0 1.1 93.994
## 1087 29 48 1 999 0 -1.8 92.893
## 1088 57 554 2 999 0 -1.8 92.893
## 1089 27 46 2 999 0 1.4 94.465
## 1090 36 206 2 999 0 1.4 94.465
## 1091 38 57 1 999 0 1.1 93.994
## 1092 45 215 2 999 0 1.4 93.444
## 1093 33 56 2 999 0 1.4 93.444
## 1094 33 727 2 999 0 -1.8 93.075
## 1095 30 159 2 999 0 1.4 93.918
## 1096 39 23 1 999 0 1.4 94.465
## 1097 29 268 1 999 0 1.4 93.444
## 1098 30 648 1 999 0 -0.1 93.200
## 1099 27 80 4 999 0 -1.8 92.893
## 1100 24 292 1 999 0 -2.9 92.201
## 1101 44 142 2 999 0 1.1 93.994
## 1102 29 142 2 999 0 1.4 93.444
## 1103 33 405 2 999 0 -1.8 93.075
## 1104 52 87 5 999 0 1.4 93.918
## 1105 29 319 4 999 0 1.4 94.465
## 1106 26 174 2 999 0 1.4 93.918
## 1107 44 627 1 999 0 1.1 93.994
## 1108 27 162 2 999 0 1.1 93.994
## 1109 38 58 1 999 0 1.1 93.994
## 1110 51 277 3 999 0 1.1 93.994
## 1111 48 329 1 999 0 1.4 94.465
## 1112 37 136 1 999 0 1.1 93.994
## 1113 36 336 2 999 0 1.1 93.994
## 1114 33 335 3 999 0 1.4 93.444
## 1115 41 253 2 999 0 1.1 93.994
## 1116 51 956 1 999 0 -1.8 92.893
## 1117 58 89 3 999 0 1.4 93.444
## 1118 41 201 6 999 0 1.4 94.465
## 1119 57 44 3 999 0 -0.1 93.200
## 1120 39 344 1 999 0 -1.8 93.075
## 1121 39 184 2 999 0 1.4 93.918
## 1122 32 101 2 999 0 1.1 93.994
## 1123 30 153 2 999 0 1.4 94.465
## 1124 48 34 3 999 0 1.1 93.994
## 1125 36 865 1 999 0 1.1 93.994
## 1126 43 377 1 999 0 1.4 93.918
## 1127 52 67 2 999 0 1.1 93.994
## 1128 42 81 1 999 0 1.1 93.994
## 1129 30 159 1 999 0 -1.8 92.893
## 1130 42 126 3 999 0 1.4 93.918
## 1131 34 247 3 999 0 1.1 93.994
## 1132 56 35 1 999 0 1.4 94.465
## 1133 43 168 2 999 0 1.1 93.994
## 1134 29 88 1 999 0 1.4 93.444
## 1135 26 277 2 999 0 1.1 93.994
## 1136 29 161 3 999 0 -0.1 93.200
## 1137 32 80 4 999 0 1.4 94.465
## 1138 43 90 2 999 0 1.4 93.444
## 1139 32 65 5 999 0 -1.8 92.893
## 1140 57 137 7 999 0 1.4 93.918
## 1141 60 297 2 999 0 1.4 93.918
## 1142 41 116 1 999 0 1.4 93.444
## 1143 30 361 1 999 0 1.4 94.465
## 1144 49 832 2 999 0 -1.8 93.075
## 1145 38 764 2 999 0 1.4 93.918
## 1146 52 123 1 999 0 -0.1 93.200
## 1147 36 249 2 999 0 1.4 93.918
## 1148 42 145 2 999 0 1.1 93.994
## 1149 29 29 1 999 0 1.4 94.465
## 1150 38 79 1 999 0 -0.1 93.200
## 1151 41 513 3 999 0 1.4 94.465
## 1152 46 354 2 999 0 1.4 94.465
## 1153 47 84 3 999 0 1.4 93.918
## 1154 31 65 3 999 0 -3.4 92.649
## 1155 64 239 4 999 0 -1.7 94.027
## 1156 53 13 5 999 0 1.4 94.465
## 1157 33 61 3 999 0 1.4 94.465
## 1158 36 469 3 999 0 -1.8 93.075
## 1159 30 90 1 999 0 1.4 93.444
## 1160 56 79 3 999 0 1.4 94.465
## 1161 40 274 2 999 0 1.4 94.465
## 1162 55 133 8 999 0 -1.8 92.893
## 1163 39 653 4 999 0 1.4 93.918
## 1164 36 486 2 999 0 -1.8 93.075
## 1165 53 133 1 999 0 -1.8 92.893
## 1166 56 471 2 999 0 1.4 94.465
## 1167 33 135 2 999 0 1.1 93.994
## 1168 51 80 1 999 0 1.4 93.444
## 1169 50 132 1 999 0 1.1 93.994
## 1170 43 16 7 999 0 1.4 94.465
## 1171 29 170 5 999 0 -1.8 93.075
## 1172 51 86 1 999 0 1.4 93.444
## 1173 41 407 4 999 0 -0.1 93.200
## 1174 57 111 1 999 0 1.1 93.994
## 1175 53 56 1 999 0 -1.8 92.893
## 1176 46 739 1 999 0 1.4 93.444
## 1177 37 47 1 999 0 -0.1 93.200
## 1178 38 143 1 999 0 -1.8 93.075
## 1179 53 80 5 999 0 1.4 94.465
## 1180 36 193 3 999 0 1.4 94.465
## 1181 38 132 1 999 0 -1.8 92.893
## 1182 45 215 3 999 0 1.4 93.444
## 1183 37 6 5 999 0 -0.1 93.200
## 1184 41 911 2 999 0 1.1 93.994
## 1185 56 522 1 999 0 1.4 93.918
## 1186 35 471 2 999 0 1.1 93.994
## 1187 58 250 1 999 0 1.4 94.465
## 1188 27 103 1 999 0 1.4 94.465
## 1189 30 158 2 999 0 1.4 94.465
## 1190 29 274 3 999 0 1.4 93.918
## 1191 31 175 2 999 0 1.4 93.918
## 1192 39 10 7 999 0 -0.1 93.200
## 1193 32 47 1 999 0 -1.7 94.027
## 1194 39 67 3 999 0 1.1 93.994
## 1195 45 994 1 999 0 1.4 93.444
## 1196 42 516 5 999 0 1.4 94.465
## 1197 56 21 20 999 0 1.4 94.465
## 1198 62 141 2 999 0 -3.0 92.713
## 1199 45 27 2 999 0 1.4 93.444
## 1200 31 96 2 999 0 1.4 93.444
## 1201 38 693 3 999 0 1.4 94.465
## 1202 60 60 2 999 0 1.4 93.444
## 1203 29 112 1 999 0 1.4 93.444
## 1204 31 716 3 999 0 -1.1 94.601
## 1205 37 647 2 999 0 -1.8 93.075
## 1206 33 419 1 999 0 -1.8 93.075
## 1207 50 145 4 999 0 1.1 93.994
## 1208 31 127 1 999 0 1.1 93.994
## 1209 57 360 13 999 0 1.4 93.918
## 1210 28 133 4 999 0 1.1 93.994
## 1211 32 518 3 999 0 1.4 93.918
## 1212 43 14 9 999 0 -0.1 93.200
## 1213 31 39 3 999 0 -2.9 92.963
## 1214 28 237 4 999 0 -1.8 92.893
## 1215 42 353 1 999 0 1.4 93.444
## 1216 27 212 1 999 0 -1.8 93.369
## 1217 58 80 3 999 0 1.4 94.465
## 1218 24 159 1 999 0 1.4 93.918
## 1219 32 177 2 999 0 -1.8 92.893
## 1220 49 4 1 999 0 -1.7 94.027
## 1221 38 47 1 999 0 1.4 93.918
## 1222 25 277 1 999 0 -1.8 92.843
## 1223 41 191 1 999 0 1.4 93.444
## 1224 39 479 2 999 0 -1.8 93.075
## 1225 36 136 1 999 0 1.1 93.994
## 1226 26 200 3 999 0 1.4 93.918
## 1227 58 186 2 999 0 -0.1 93.200
## 1228 27 101 12 999 0 -1.8 92.843
## 1229 33 11 21 999 0 1.4 94.465
## 1230 37 17 7 999 0 1.4 93.444
## 1231 28 140 11 999 0 -2.9 92.201
## 1232 30 253 1 999 0 1.4 93.918
## 1233 29 152 1 999 0 1.4 93.444
## 1234 68 330 3 999 0 -1.8 93.749
## 1235 33 98 2 999 0 1.4 93.918
## 1236 35 296 2 999 0 -1.8 92.893
## 1237 41 150 6 999 0 1.1 93.994
## 1238 34 104 3 999 0 -1.8 93.075
## 1239 44 238 3 999 0 1.4 93.918
## 1240 54 250 1 999 0 -1.8 92.893
## 1241 35 301 2 999 0 -1.8 92.893
## 1242 33 84 4 999 0 1.1 93.994
## 1243 42 29 4 999 0 1.1 93.994
## 1244 28 315 3 999 0 1.1 93.994
## 1245 31 202 3 999 0 -1.1 94.767
## 1246 34 544 3 999 0 -1.8 92.843
## 1247 44 247 3 999 0 1.4 94.465
## 1248 34 763 1 999 0 -1.8 92.893
## 1249 45 131 1 999 0 1.1 93.994
## 1250 59 94 1 999 0 1.4 93.444
## 1251 30 104 6 999 0 1.1 93.994
## 1252 34 138 2 999 0 -0.1 93.200
## 1253 49 25 1 999 0 1.4 94.465
## 1254 31 80 4 999 0 -1.8 92.893
## 1255 42 46 4 999 0 -1.8 93.075
## 1256 44 170 2 999 0 1.4 93.918
## 1257 50 452 2 999 0 1.4 93.918
## 1258 45 924 3 999 0 1.4 94.465
## 1259 35 263 6 999 0 -0.1 93.200
## 1260 45 234 1 999 0 1.4 93.444
## 1261 46 195 1 999 0 1.4 93.444
## 1262 24 1193 2 999 0 1.1 93.994
## 1263 42 41 1 999 0 1.4 93.444
## 1264 43 1242 2 999 0 1.4 93.918
## 1265 42 123 2 999 0 1.4 93.918
## 1266 45 420 1 999 0 1.4 93.918
## 1267 35 529 1 999 0 -0.1 93.200
## 1268 34 381 3 999 0 1.4 94.465
## 1269 24 86 1 999 0 1.1 93.994
## 1270 30 96 1 999 0 1.4 93.918
## 1271 27 96 2 999 0 -2.9 92.963
## 1272 54 62 1 999 0 -0.1 93.200
## 1273 42 40 1 999 0 1.4 93.444
## 1274 38 56 1 999 0 1.4 94.465
## 1275 38 220 2 999 0 1.4 94.465
## 1276 32 120 2 999 0 -1.8 92.893
## 1277 29 215 1 999 0 -0.1 93.200
## 1278 40 30 4 999 0 1.4 94.465
## 1279 45 239 1 999 0 1.1 93.994
## 1280 38 224 5 999 0 1.1 93.994
## 1281 29 107 1 999 0 -2.9 92.201
## 1282 52 682 10 999 0 1.4 93.918
## 1283 52 160 1 999 0 1.4 94.465
## 1284 51 241 4 999 0 1.4 93.444
## 1285 32 191 2 999 0 1.4 93.918
## 1286 49 838 1 999 0 1.4 94.465
## 1287 33 125 1 999 0 1.4 93.444
## 1288 56 661 4 999 0 1.4 93.918
## 1289 32 1366 1 999 0 1.4 93.444
## 1290 59 28 1 999 0 1.4 93.444
## 1291 50 88 5 999 0 1.1 93.994
## 1292 33 179 2 999 0 1.1 93.994
## 1293 58 182 1 999 0 -1.8 92.893
## 1294 26 37 4 999 0 1.4 93.918
## 1295 36 172 1 999 0 1.4 93.444
## 1296 45 124 3 999 0 1.4 94.465
## 1297 41 12 5 999 0 -0.1 93.200
## 1298 47 180 1 999 0 1.4 94.465
## 1299 55 386 2 999 0 -1.8 93.075
## 1300 54 257 1 999 0 1.4 93.444
## 1301 58 901 1 999 0 -1.8 92.893
## 1302 52 173 7 999 0 1.4 93.444
## 1303 53 23 3 999 0 1.4 94.465
## 1304 49 339 1 999 0 -2.9 92.963
## 1305 32 1162 2 999 0 -0.1 93.200
## 1306 34 83 2 999 0 -1.8 93.075
## 1307 26 676 3 999 0 -1.8 92.893
## 1308 47 229 1 999 0 1.1 93.994
## 1309 46 258 5 999 0 1.1 93.994
## 1310 36 10 5 999 0 -1.8 92.893
## 1311 35 516 1 999 0 -1.7 94.055
## 1312 30 307 2 999 0 -0.1 93.200
## 1313 55 105 1 999 0 1.4 93.444
## 1314 31 173 2 999 0 1.4 93.918
## 1315 73 305 1 999 0 -2.9 92.201
## 1316 34 128 3 999 0 -1.8 92.893
## 1317 32 309 3 999 0 1.4 93.444
## 1318 45 106 1 999 0 -1.8 93.075
## 1319 26 175 2 999 0 -2.9 92.963
## 1320 40 148 1 999 0 1.1 93.994
## 1321 32 87 1 999 0 -2.9 92.201
## 1322 25 304 2 999 0 1.1 93.994
## 1323 55 44 4 999 0 1.4 94.465
## 1324 32 1692 2 999 0 1.1 93.994
## 1325 50 146 1 999 0 1.4 93.918
## 1326 58 48 2 999 0 1.4 93.444
## 1327 45 328 1 999 0 1.4 93.918
## 1328 55 188 3 999 0 1.4 93.444
## 1329 42 46 1 999 0 1.4 93.918
## 1330 32 800 5 999 0 -1.8 92.893
## 1331 29 121 1 999 0 -2.9 92.201
## 1332 32 280 1 999 0 1.1 93.994
## 1333 28 159 1 999 0 1.4 93.918
## 1334 30 114 2 999 0 1.1 93.994
## 1335 63 107 3 999 0 -2.9 92.201
## 1336 33 127 1 999 0 1.1 93.994
## 1337 28 20 3 999 0 1.4 94.465
## 1338 30 40 1 999 0 1.4 94.465
## 1339 37 17 8 999 0 -1.8 92.893
## 1340 48 274 2 999 0 1.1 93.994
## 1341 46 852 9 999 0 1.4 93.918
## 1342 32 174 1 999 0 1.4 94.465
## 1343 56 422 1 999 0 -1.8 93.075
## 1344 27 408 2 999 0 1.1 93.994
## 1345 31 7 1 999 0 -1.7 94.215
## 1346 28 30 18 999 0 1.1 93.994
## 1347 32 59 3 999 0 1.1 93.994
## 1348 26 203 1 999 0 1.1 93.994
## 1349 53 139 1 999 0 -2.9 92.201
## 1350 45 64 2 999 0 1.4 93.918
## 1351 29 132 5 999 0 1.1 93.994
## 1352 56 51 19 999 0 1.4 94.465
## 1353 52 96 2 999 0 -0.1 93.200
## 1354 38 62 1 999 0 -1.8 93.075
## 1355 28 663 3 999 0 1.1 93.994
## 1356 21 493 2 999 0 -2.9 92.963
## 1357 46 413 5 999 0 -2.9 92.469
## 1358 54 95 1 999 0 1.4 93.444
## 1359 35 193 1 999 0 1.4 93.444
## 1360 31 136 1 999 0 1.4 93.444
## 1361 36 476 3 999 0 1.1 93.994
## 1362 42 99 3 999 0 1.1 93.994
## 1363 34 201 4 999 0 1.4 93.444
## 1364 57 529 4 999 0 1.1 93.994
## 1365 32 166 3 999 0 1.4 93.444
## 1366 43 818 2 999 0 1.4 94.465
## 1367 36 49 5 999 0 1.4 94.465
## 1368 37 262 2 999 0 1.4 94.465
## 1369 38 87 1 999 0 1.4 93.444
## 1370 44 140 5 999 0 1.4 93.444
## 1371 30 50 4 999 0 1.4 93.918
## 1372 47 115 2 999 0 -1.8 93.075
## 1373 42 136 4 999 0 1.4 93.918
## 1374 57 134 2 999 0 -0.1 93.200
## 1375 42 125 3 999 0 1.1 93.994
## 1376 53 327 2 999 0 1.1 93.994
## 1377 44 903 4 999 0 -1.8 92.893
## 1378 34 79 2 999 0 -0.1 93.200
## 1379 31 87 2 999 0 1.4 93.918
## 1380 48 99 2 999 0 1.4 93.918
## 1381 31 1319 2 999 0 1.4 93.918
## 1382 33 70 1 999 0 -1.8 92.893
## 1383 33 576 1 999 0 1.1 93.994
## 1384 23 557 2 999 0 1.1 93.994
## 1385 28 453 3 999 0 1.4 93.918
## 1386 52 145 1 999 0 1.1 93.994
## 1387 45 179 4 999 0 -0.1 93.200
## 1388 32 96 3 999 0 1.1 93.994
## 1389 37 183 2 999 0 -3.4 92.431
## 1390 48 190 1 999 0 -1.8 93.075
## 1391 32 65 2 999 0 1.4 94.465
## 1392 53 61 4 999 0 -0.1 93.200
## 1393 34 1245 19 999 0 1.1 93.994
## 1394 58 155 5 999 0 1.4 93.444
## 1395 47 48 1 999 0 1.4 94.465
## 1396 34 183 1 999 0 -1.8 92.893
## 1397 46 116 6 999 0 1.1 93.994
## 1398 41 342 1 999 0 -1.8 93.749
## 1399 57 117 2 999 0 1.1 93.994
## 1400 52 258 3 999 0 -1.8 92.893
## 1401 35 360 2 999 0 1.4 94.465
## 1402 52 107 3 999 0 1.1 93.994
## 1403 47 384 6 999 0 1.4 93.444
## 1404 56 177 5 999 0 1.4 93.918
## 1405 43 255 1 999 0 -2.9 92.201
## 1406 47 152 5 999 0 1.4 93.444
## 1407 47 37 3 999 0 1.4 94.465
## 1408 35 229 3 999 0 -1.8 93.075
## 1409 56 520 2 999 0 -1.8 92.893
## 1410 60 154 5 999 0 1.4 93.444
## 1411 39 297 1 999 0 -1.8 93.075
## 1412 47 1161 3 999 0 1.1 93.994
## 1413 39 337 1 999 0 1.4 93.918
## 1414 38 167 2 999 0 1.4 94.465
## 1415 23 58 1 999 0 -1.8 92.893
## 1416 46 24 4 999 0 1.4 94.465
## 1417 69 240 1 999 0 -3.4 92.379
## 1418 40 775 1 999 0 -1.8 93.075
## 1419 59 135 2 999 0 1.4 94.465
## 1420 35 348 4 999 0 -1.8 92.893
## 1421 51 70 1 999 0 1.4 93.444
## 1422 42 14 15 999 0 1.1 93.994
## 1423 48 360 1 999 0 1.1 93.994
## 1424 33 105 2 999 0 -3.4 92.379
## 1425 44 735 1 999 0 1.4 93.918
## 1426 30 252 1 999 0 1.4 93.918
## 1427 64 173 2 999 0 -1.8 93.075
## 1428 37 180 2 999 0 -1.8 93.075
## 1429 31 191 3 999 0 1.4 94.465
## 1430 49 70 3 999 0 1.4 93.918
## 1431 36 111 4 999 0 1.4 94.465
## 1432 33 191 1 999 0 1.4 93.918
## 1433 48 88 4 999 0 1.4 93.918
## 1434 35 169 2 999 0 1.1 93.994
## 1435 50 502 2 999 0 1.4 93.918
## 1436 45 182 1 999 0 1.1 93.994
## 1437 45 35 3 999 0 1.1 93.994
## 1438 29 487 3 999 0 1.4 93.918
## 1439 59 150 2 999 0 1.4 93.918
## 1440 37 140 5 999 0 1.4 94.465
## 1441 32 54 1 999 0 -1.8 93.075
## 1442 46 28 8 999 0 1.1 93.994
## 1443 43 118 1 999 0 1.4 93.918
## 1444 37 286 1 999 0 1.1 93.994
## 1445 34 95 1 999 0 1.4 94.465
## 1446 35 88 5 999 0 1.1 93.994
## 1447 38 158 3 999 0 1.1 93.994
## 1448 41 326 3 999 0 1.4 93.444
## 1449 56 757 2 999 0 -0.1 93.200
## 1450 33 137 3 999 0 -2.9 92.963
## 1451 22 184 4 999 0 1.4 94.465
## 1452 50 604 4 999 0 1.4 93.444
## 1453 37 31 1 999 0 1.4 94.465
## 1454 31 173 1 999 0 1.4 93.918
## 1455 33 184 2 999 0 1.4 93.918
## 1456 51 150 1 999 0 1.4 93.444
## 1457 34 193 1 999 0 1.4 93.444
## 1458 36 298 3 999 0 1.1 93.994
## 1459 48 121 1 999 0 1.1 93.994
## 1460 35 283 1 999 0 1.4 93.918
## 1461 28 161 3 999 0 1.1 93.994
## 1462 32 324 2 999 0 1.1 93.994
## 1463 32 73 4 999 0 -1.8 92.893
## 1464 31 323 4 999 0 1.1 93.994
## 1465 55 258 1 999 0 1.4 93.918
## 1466 45 194 2 999 0 1.4 93.918
## 1467 30 408 1 999 0 1.1 93.994
## 1468 49 115 20 999 0 1.4 94.465
## 1469 33 80 1 999 0 -1.7 94.055
## 1470 35 116 1 999 0 1.1 93.994
## 1471 44 109 4 999 0 1.4 94.465
## 1472 44 84 2 999 0 1.4 93.444
## 1473 28 83 2 999 0 1.4 93.918
## 1474 60 24 11 999 0 1.4 93.444
## 1475 32 247 1 999 0 1.1 93.994
## 1476 34 302 2 999 0 1.4 94.465
## 1477 50 455 4 999 0 1.4 93.444
## 1478 53 15 2 999 0 -0.1 93.200
## 1479 34 114 5 999 0 -0.1 93.200
## 1480 31 143 1 999 0 1.4 93.918
## 1481 34 157 2 999 0 -1.8 93.075
## 1482 33 227 2 999 0 1.1 93.994
## 1483 47 365 3 999 0 1.4 93.918
## 1484 31 1106 3 999 0 1.1 93.994
## 1485 30 121 1 999 0 1.4 93.918
## 1486 38 772 1 999 0 1.1 93.994
## 1487 29 754 1 999 0 -1.8 93.075
## 1488 30 191 28 999 0 1.4 94.465
## 1489 47 167 1 999 0 1.4 93.444
## 1490 40 320 1 999 0 -1.8 92.893
## 1491 32 189 3 999 0 -1.8 92.893
## 1492 25 96 3 999 0 1.4 93.918
## 1493 33 436 4 999 0 1.4 93.918
## 1494 38 39 1 999 0 -1.8 92.893
## 1495 21 127 2 999 0 1.4 93.918
## 1496 35 237 3 999 0 1.1 93.994
## 1497 56 159 4 999 0 1.4 93.918
## 1498 54 296 1 999 0 1.1 93.994
## 1499 32 51 2 999 0 -0.1 93.200
## 1500 42 24 1 999 0 1.4 94.465
## 1501 48 788 2 999 0 1.1 93.994
## 1502 52 188 1 999 0 1.4 94.465
## 1503 35 179 21 999 0 1.4 94.465
## 1504 49 110 1 999 0 1.1 93.994
## 1505 36 78 2 999 0 -1.8 93.075
## 1506 39 107 1 999 0 -0.1 93.200
## 1507 40 182 2 999 0 -1.8 92.893
## 1508 56 188 14 999 0 1.4 93.918
## 1509 28 73 2 999 0 1.4 94.465
## 1510 22 34 10 999 0 -1.8 92.893
## 1511 29 803 1 999 0 1.1 93.994
## 1512 39 215 3 999 0 1.4 93.444
## 1513 26 182 2 999 0 -1.8 92.893
## 1514 51 409 2 999 0 1.4 94.465
## 1515 25 294 1 999 0 -1.8 92.843
## 1516 26 34 3 999 0 1.4 93.918
## 1517 55 41 3 999 0 1.1 93.994
## 1518 29 55 5 999 0 1.4 94.465
## 1519 58 186 2 999 0 -1.8 92.893
## 1520 46 257 1 999 0 1.4 93.918
## 1521 49 104 1 999 0 1.4 93.444
## 1522 39 274 9 999 0 1.4 94.465
## 1523 40 144 2 999 0 1.4 93.444
## 1524 41 97 3 999 0 1.4 93.444
## 1525 42 45 22 999 0 1.4 94.465
## 1526 33 247 2 999 0 1.4 93.444
## 1527 40 83 3 999 0 1.1 93.994
## 1528 35 213 2 999 0 1.4 93.918
## 1529 40 10 3 999 0 -0.1 93.200
## 1530 45 117 1 999 0 1.1 93.994
## 1531 55 1199 3 999 0 -0.1 93.200
## 1532 35 100 2 999 0 1.1 93.994
## 1533 44 172 1 999 0 1.1 93.994
## 1534 31 40 2 999 0 1.4 94.465
## 1535 23 1144 3 999 0 1.1 93.994
## 1536 54 235 1 999 0 1.1 93.994
## 1537 37 79 1 999 0 1.1 93.994
## 1538 37 23 1 999 0 1.4 93.918
## 1539 48 162 2 999 0 -0.1 93.200
## 1540 42 89 1 999 0 1.4 94.465
## 1541 32 209 3 999 0 1.1 93.994
## 1542 46 359 1 999 0 1.4 93.918
## 1543 41 357 1 999 0 1.4 93.918
## 1544 31 742 2 999 0 1.4 93.444
## 1545 48 253 1 999 0 1.1 93.994
## 1546 57 6 7 999 0 -0.1 93.200
## 1547 33 248 2 999 0 1.4 94.465
## 1548 38 166 3 999 0 1.1 93.994
## 1549 34 377 1 999 0 -1.8 92.893
## 1550 25 73 2 999 0 -1.8 92.893
## 1551 42 140 2 999 0 1.4 94.465
## 1552 44 369 1 999 0 1.4 93.918
## 1553 32 307 3 999 0 1.4 94.465
## 1554 54 326 2 999 0 -0.1 93.200
## 1555 38 71 1 999 0 -0.1 93.200
## 1556 33 436 2 999 0 1.4 93.444
## 1557 56 49 2 999 0 1.4 94.465
## 1558 28 65 2 999 0 -1.8 93.075
## 1559 35 157 1 999 0 1.4 93.918
## 1560 33 208 3 999 0 -1.8 92.893
## 1561 55 106 3 999 0 1.4 93.918
## 1562 44 122 1 999 0 1.4 93.444
## 1563 40 37 2 999 0 1.4 94.465
## 1564 42 112 2 999 0 1.4 93.918
## 1565 58 129 2 999 0 1.4 93.444
## 1566 50 98 17 999 0 1.1 93.994
## 1567 41 709 5 999 0 -1.8 92.893
## 1568 29 161 12 999 0 1.1 93.994
## 1569 62 172 4 999 0 -2.9 92.201
## 1570 25 21 2 999 0 -1.8 92.893
## 1571 40 1087 2 999 0 1.1 93.994
## 1572 31 90 2 999 0 1.1 93.994
## 1573 57 784 1 999 0 1.4 93.444
## 1574 32 309 5 999 0 1.4 93.444
## 1575 40 237 1 999 0 -1.8 92.893
## 1576 27 630 2 999 0 -2.9 92.201
## 1577 53 528 1 999 0 -0.1 93.200
## 1578 47 622 2 999 0 1.1 93.994
## 1579 42 98 1 999 0 1.4 93.918
## 1580 58 90 1 999 0 -1.8 92.893
## 1581 59 435 4 999 0 1.4 94.465
## 1582 34 69 1 999 0 1.1 93.994
## 1583 43 257 3 999 0 1.1 93.994
## 1584 33 286 2 999 0 1.4 93.918
## 1585 35 171 1 999 0 -0.1 93.200
## 1586 39 224 1 999 0 1.4 93.444
## 1587 28 557 1 999 0 1.1 93.994
## 1588 41 66 1 999 0 1.4 94.465
## 1589 39 368 2 999 0 1.4 94.465
## 1590 24 276 1 999 0 -2.9 92.201
## 1591 52 151 3 999 0 1.1 93.994
## 1592 50 893 3 999 0 1.1 93.994
## 1593 59 424 1 999 0 1.1 93.994
## 1594 24 138 2 999 0 1.4 93.918
## 1595 42 9 9 999 0 -1.8 92.893
## 1596 42 180 3 999 0 1.4 94.465
## 1597 30 168 4 999 0 -1.8 92.893
## 1598 34 426 2 999 0 1.4 94.465
## 1599 44 185 3 999 0 1.4 93.918
## 1600 29 43 1 999 0 -0.1 93.200
## 1601 37 912 1 999 0 1.1 93.994
## 1602 25 72 2 999 0 1.1 93.994
## 1603 35 76 12 999 0 1.4 94.465
## 1604 35 46 10 999 0 1.4 94.465
## 1605 32 180 2 999 0 1.1 93.994
## 1606 34 176 1 999 0 1.4 94.465
## 1607 51 28 4 999 0 -0.1 93.200
## 1608 45 211 3 999 0 1.4 93.444
## 1609 52 303 2 999 0 -2.9 92.963
## 1610 36 165 3 999 0 -1.8 93.075
## 1611 26 175 14 999 0 1.4 94.465
## 1612 40 277 3 999 0 1.1 93.994
## 1613 44 48 4 999 0 -0.1 93.200
## 1614 32 219 2 999 0 1.4 93.444
## 1615 39 159 1 999 0 1.1 93.994
## 1616 46 82 2 999 0 -0.1 93.200
## 1617 35 8 3 999 0 -0.1 93.200
## 1618 29 206 1 999 0 -1.8 92.893
## 1619 37 43 11 999 0 1.4 93.918
## 1620 53 206 3 999 0 -1.8 92.893
## 1621 39 346 4 999 0 1.1 93.994
## 1622 44 113 1 999 0 1.4 94.465
## 1623 30 173 4 999 0 -1.8 92.893
## 1624 56 94 7 999 0 -0.1 93.200
## 1625 36 245 5 999 0 -1.8 93.075
## 1626 37 78 13 999 0 1.1 93.994
## 1627 28 265 1 999 0 1.1 93.994
## 1628 30 169 1 999 0 -1.8 92.893
## 1629 56 308 2 999 0 -2.9 92.469
## 1630 30 12 14 999 0 1.4 94.465
## 1631 27 186 2 999 0 1.4 93.918
## 1632 46 140 1 999 0 1.1 93.994
## 1633 29 125 1 999 0 1.1 93.994
## 1634 42 10 3 999 0 -0.1 93.200
## 1635 31 76 1 999 0 -3.4 92.431
## 1636 32 44 1 999 0 -1.8 92.893
## 1637 51 153 1 999 0 1.1 93.994
## 1638 30 812 1 999 0 1.4 93.918
## 1639 52 401 1 999 0 -1.8 92.893
## 1640 53 51 2 999 0 1.4 94.465
## 1641 38 353 2 999 0 1.1 93.994
## 1642 31 22 12 999 0 1.4 94.465
## 1643 46 106 1 999 0 1.1 93.994
## 1644 37 115 1 999 0 1.4 93.444
## 1645 34 210 1 999 0 -1.8 93.075
## 1646 36 81 1 999 0 1.4 93.444
## 1647 55 186 2 999 0 -2.9 92.963
## 1648 50 85 4 999 0 1.1 93.994
## 1649 49 183 2 999 0 1.4 94.465
## 1650 48 29 2 999 0 1.4 94.465
## 1651 34 171 2 999 0 -1.8 93.075
## 1652 31 351 3 999 0 1.4 93.444
## 1653 41 70 1 999 0 1.1 93.994
## 1654 39 496 4 999 0 1.1 93.994
## 1655 37 145 1 999 0 -2.9 92.963
## 1656 23 13 8 999 0 -1.8 92.893
## 1657 52 70 4 999 0 -1.8 93.075
## 1658 40 117 2 999 0 1.1 93.994
## 1659 33 69 2 999 0 1.4 93.918
## 1660 37 210 1 999 0 -1.8 92.893
## 1661 36 297 1 999 0 1.1 93.994
## 1662 24 34 7 999 0 -1.8 92.893
## 1663 39 53 1 999 0 -1.8 92.893
## 1664 33 111 1 999 0 1.4 93.444
## 1665 53 373 1 999 0 1.4 94.465
## 1666 28 65 13 999 0 1.1 93.994
## 1667 33 38 5 999 0 1.4 94.465
## 1668 27 106 5 999 0 1.4 94.465
## 1669 28 462 1 999 0 -3.4 92.431
## 1670 32 891 4 999 0 1.4 93.918
## 1671 42 591 3 999 0 1.4 93.918
## 1672 56 75 4 999 0 1.4 94.465
## 1673 56 11 5 999 0 1.4 94.465
## 1674 34 6 1 999 0 -1.1 94.601
## 1675 53 317 1 999 0 1.1 93.994
## 1676 32 92 2 999 0 1.1 93.994
## 1677 34 76 1 999 0 -1.8 93.075
## 1678 41 213 2 999 0 1.4 94.465
## 1679 31 298 3 999 0 1.1 93.994
## 1680 41 153 2 999 0 1.1 93.994
## 1681 24 113 1 999 0 1.4 94.465
## 1682 30 1015 1 999 0 -1.8 92.893
## 1683 63 91 2 999 0 -3.4 92.431
## 1684 47 216 3 999 0 1.1 93.994
## 1685 42 456 2 999 0 1.1 93.994
## 1686 38 24 5 999 0 1.4 94.465
## 1687 48 312 3 999 0 -1.8 92.893
## 1688 35 11 2 999 0 -0.1 93.200
## 1689 50 430 1 999 0 -0.1 93.200
## 1690 41 41 1 999 0 -1.8 93.075
## 1691 30 154 1 999 0 1.1 93.994
## 1692 38 30 7 999 0 -1.8 92.893
## 1693 43 99 5 999 0 1.4 93.444
## 1694 45 386 3 999 0 1.4 93.918
## 1695 37 640 3 999 0 1.4 93.918
## 1696 35 348 4 999 0 -1.8 92.893
## 1697 36 235 1 999 0 -1.8 93.075
## 1698 34 73 1 999 0 1.4 94.465
## 1699 46 3253 1 999 0 -0.1 93.798
## 1700 54 86 2 999 0 1.4 93.918
## 1701 34 483 3 999 0 1.4 93.918
## 1702 41 184 4 999 0 -1.8 93.075
## 1703 34 207 4 999 0 1.1 93.994
## 1704 29 1007 6 999 0 -2.9 92.469
## 1705 31 596 1 999 0 1.4 93.918
## 1706 23 50 5 999 0 -1.8 92.893
## 1707 33 233 1 999 0 -3.4 92.431
## 1708 26 138 1 999 0 1.1 93.994
## 1709 35 710 1 999 0 1.1 93.994
## 1710 45 155 1 999 0 -2.9 92.963
## 1711 55 190 2 999 0 -1.8 92.893
## 1712 29 257 1 999 0 -1.8 93.369
## 1713 29 130 2 999 0 1.4 93.918
## 1714 57 850 3 999 0 1.4 94.465
## 1715 43 105 3 999 0 1.4 93.918
## 1716 40 133 1 999 0 -1.8 93.075
## 1717 38 46 2 999 0 1.1 93.994
## 1718 34 197 4 999 0 1.1 93.994
## 1719 33 57 3 999 0 1.4 93.444
## 1720 45 49 1 999 0 1.4 93.918
## 1721 47 135 1 999 0 -0.1 93.200
## 1722 32 172 3 999 0 1.4 93.918
## 1723 47 310 3 999 0 1.4 93.444
## 1724 21 149 1 999 0 -3.4 92.431
## 1725 37 288 2 999 0 -1.8 92.893
## 1726 45 275 1 999 0 1.1 93.994
## 1727 38 271 1 999 0 -0.1 93.200
## 1728 23 374 1 999 0 -3.4 92.431
## 1729 26 442 12 999 0 1.4 93.918
## 1730 43 48 1 999 0 -1.8 92.893
## 1731 44 570 4 999 0 -0.1 93.200
## 1732 56 621 4 999 0 1.1 93.994
## 1733 33 157 1 999 0 1.4 93.444
## 1734 40 181 2 999 0 1.4 94.465
## 1735 28 316 4 999 0 -2.9 92.469
## 1736 37 122 5 999 0 1.1 93.994
## 1737 58 72 30 999 0 1.4 93.918
## 1738 52 854 2 999 0 1.1 93.994
## 1739 37 107 1 999 0 1.1 93.994
## 1740 39 79 4 999 0 -0.1 93.200
## 1741 57 255 2 999 0 1.1 93.994
## 1742 52 172 1 999 0 1.4 93.444
## 1743 28 207 1 999 0 1.1 93.994
## 1744 48 109 2 999 0 1.4 93.444
## 1745 49 1980 2 999 0 1.1 93.994
## 1746 29 24 11 999 0 1.4 94.465
## 1747 30 251 1 999 0 1.1 93.994
## 1748 41 160 2 999 0 1.1 93.994
## 1749 35 176 4 999 0 1.4 94.465
## 1750 26 100 2 999 0 -1.8 93.075
## 1751 50 213 4 999 0 -1.8 92.893
## 1752 30 41 2 999 0 1.4 93.918
## 1753 39 155 2 999 0 1.4 93.444
## 1754 39 92 1 999 0 1.4 94.465
## 1755 52 83 4 999 0 1.1 93.994
## 1756 30 345 2 999 0 -0.1 93.200
## 1757 38 98 1 999 0 -1.8 92.893
## 1758 37 28 1 999 0 1.4 94.465
## 1759 37 252 6 999 0 1.4 93.918
## 1760 37 89 2 999 0 1.4 93.444
## 1761 32 109 3 999 0 1.4 93.918
## 1762 45 174 1 999 0 -0.1 93.200
## 1763 38 173 2 999 0 1.4 94.465
## 1764 51 243 3 999 0 1.1 93.994
## 1765 25 446 3 999 0 1.4 94.465
## 1766 44 734 2 999 0 1.4 93.444
## 1767 38 512 1 999 0 1.1 93.994
## 1768 29 256 1 999 0 1.1 93.994
## 1769 37 138 4 999 0 1.1 93.994
## 1770 50 257 1 999 0 -1.8 93.075
## 1771 36 61 1 999 0 1.4 94.465
## 1772 43 157 1 999 0 -1.8 92.893
## 1773 53 168 3 999 0 1.1 93.994
## 1774 42 123 1 999 0 1.1 93.994
## 1775 38 438 1 999 0 1.1 93.994
## 1776 48 175 1 999 0 1.4 93.444
## 1777 29 289 2 999 0 -2.9 92.201
## 1778 38 153 4 999 0 1.1 93.994
## 1779 47 256 8 999 0 1.4 94.465
## 1780 49 532 3 999 0 -1.8 92.893
## 1781 31 85 2 999 0 1.4 93.918
## 1782 52 1104 2 999 0 -3.4 92.379
## 1783 42 277 2 999 0 -1.8 93.075
## 1784 35 107 1 999 0 1.4 93.444
## 1785 27 198 1 999 0 1.4 93.918
## 1786 55 122 1 999 0 1.4 93.444
## 1787 51 202 1 999 0 1.1 93.994
## 1788 35 123 4 999 0 1.1 93.994
## 1789 53 199 1 999 0 1.4 93.918
## 1790 33 78 3 999 0 1.4 94.465
## 1791 47 107 1 999 0 1.1 93.994
## 1792 58 165 2 999 0 1.4 93.918
## 1793 32 200 2 999 0 1.4 93.444
## 1794 76 113 1 999 0 -3.4 92.379
## 1795 44 65 5 999 0 1.4 93.918
## 1796 44 173 1 999 0 1.4 94.465
## 1797 31 180 1 999 0 1.4 93.444
## 1798 64 252 4 999 0 -2.9 92.201
## 1799 20 1503 11 999 0 1.4 93.918
## 1800 28 52 2 999 0 -1.8 92.893
## 1801 31 111 1 999 0 1.4 93.918
## 1802 31 210 1 999 0 -3.4 92.379
## 1803 39 272 1 999 0 -1.8 92.893
## 1804 36 254 7 999 0 -0.1 93.200
## 1805 35 13 9 999 0 -1.8 92.893
## 1806 52 36 2 999 0 1.4 93.444
## 1807 53 565 1 999 0 1.4 93.444
## 1808 53 120 1 999 0 1.4 93.918
## 1809 31 275 1 999 0 1.4 93.444
## 1810 29 58 3 999 0 -1.8 92.893
## 1811 59 25 8 999 0 1.4 94.465
## 1812 33 178 2 999 0 1.1 93.994
## 1813 47 216 3 999 0 1.4 94.465
## 1814 50 130 7 999 0 1.4 93.918
## 1815 25 763 1 999 0 1.1 93.994
## 1816 54 28 6 999 0 1.4 94.465
## 1817 39 97 3 999 0 1.1 93.994
## 1818 39 212 1 999 0 1.1 93.994
## 1819 28 325 1 999 0 1.4 94.465
## 1820 36 393 5 999 0 1.4 93.918
## 1821 45 171 1 999 0 1.1 93.994
## 1822 44 580 7 999 0 1.4 93.918
## 1823 29 760 1 999 0 -1.8 92.893
## 1824 32 91 4 999 0 -1.8 92.893
## 1825 47 549 1 999 0 1.4 93.444
## 1826 40 17 10 999 0 1.4 94.465
## 1827 51 368 5 999 0 1.1 93.994
## 1828 47 11 4 999 0 1.4 94.465
## 1829 40 1013 2 999 0 -1.8 93.075
## 1830 45 271 1 999 0 -1.8 92.893
## 1831 28 71 1 999 0 1.1 93.994
## 1832 54 552 1 999 0 1.4 94.465
## 1833 41 23 7 999 0 1.4 94.465
## 1834 48 409 2 999 0 -2.9 92.469
## 1835 19 1161 5 999 0 -1.8 93.075
## 1836 36 194 2 999 0 1.4 93.444
## 1837 34 288 12 999 0 1.4 94.465
## 1838 39 470 24 999 0 1.4 93.918
## 1839 33 120 1 999 0 1.4 93.444
## 1840 47 61 3 999 0 1.4 93.444
## 1841 46 492 3 999 0 1.4 93.444
## 1842 30 201 1 999 0 1.4 93.444
## 1843 33 274 2 999 0 1.1 93.994
## 1844 59 281 2 999 0 1.1 93.994
## 1845 54 398 5 999 0 1.1 93.994
## 1846 26 305 2 999 0 1.1 93.994
## 1847 50 20 1 999 0 -0.1 93.200
## 1848 36 230 3 999 0 -0.1 93.200
## 1849 54 67 2 999 0 1.1 93.994
## 1850 51 127 1 999 0 -1.8 92.893
## 1851 44 534 2 999 0 -0.1 93.200
## 1852 53 241 1 999 0 1.1 93.994
## 1853 53 141 1 999 0 1.1 93.994
## 1854 55 203 1 999 0 1.4 93.444
## 1855 37 33 3 999 0 -0.1 93.200
## 1856 49 161 5 999 0 1.4 93.918
## 1857 48 21 1 999 0 1.4 93.444
## 1858 34 22 1 999 0 -1.7 94.027
## 1859 46 177 1 999 0 1.4 93.444
## 1860 22 1073 1 999 0 1.1 93.994
## 1861 38 323 1 999 0 1.1 93.994
## 1862 41 23 1 999 0 -1.7 94.055
## 1863 25 191 1 999 0 -2.9 92.963
## 1864 35 56 2 999 0 -3.4 92.379
## 1865 31 35 1 999 0 -1.7 94.055
## 1866 25 139 3 999 0 1.1 93.994
## 1867 51 328 7 999 0 1.1 93.994
## 1868 38 278 1 999 0 1.4 94.465
## 1869 36 122 1 999 0 1.4 94.465
## 1870 53 509 3 999 0 -1.8 92.893
## 1871 32 432 2 999 0 1.1 93.994
## 1872 25 247 1 999 0 1.1 93.994
## 1873 36 157 4 999 0 -1.8 92.893
## 1874 36 210 2 999 0 1.4 93.444
## 1875 36 267 3 999 0 -1.8 92.893
## 1876 50 1003 1 999 0 1.1 93.994
## 1877 52 88 3 999 0 1.4 93.444
## 1878 58 470 1 999 0 -2.9 92.963
## 1879 57 12 5 999 0 1.4 94.465
## 1880 59 62 3 999 0 1.4 94.465
## 1881 42 249 4 999 0 -0.1 93.200
## 1882 70 94 4 999 0 -2.9 92.201
## 1883 39 173 2 999 0 -1.8 92.893
## 1884 30 144 1 999 0 1.1 93.994
## 1885 54 144 1 999 0 1.1 93.994
## 1886 44 1169 1 999 0 1.4 93.918
## 1887 50 704 2 999 0 -1.8 93.075
## 1888 29 354 1 999 0 -1.8 93.075
## 1889 29 56 2 999 0 1.4 94.465
## 1890 49 24 1 999 0 1.1 93.994
## 1891 41 10 5 999 0 -1.8 92.893
## 1892 44 311 1 999 0 -0.1 93.200
## 1893 30 94 2 999 0 1.4 93.918
## 1894 44 18 6 999 0 1.4 94.465
## 1895 48 276 1 999 0 1.4 93.918
## 1896 36 224 1 999 0 1.1 93.994
## 1897 48 75 2 999 0 1.4 94.465
## 1898 44 390 2 999 0 1.4 93.444
## 1899 26 619 2 999 0 1.1 93.994
## 1900 31 208 1 999 0 1.4 94.465
## 1901 28 8 9 999 0 -1.8 92.893
## 1902 33 12 3 999 0 1.4 94.465
## 1903 42 1098 2 999 0 1.4 94.465
## 1904 59 118 2 999 0 1.1 93.994
## 1905 46 696 10 999 0 -3.0 92.713
## 1906 32 168 1 999 0 1.4 93.918
## 1907 54 193 2 999 0 -1.8 92.893
## 1908 48 168 2 999 0 -0.1 93.200
## 1909 30 131 2 999 0 1.4 93.444
## 1910 36 381 1 999 0 1.4 93.918
## 1911 38 117 1 999 0 1.4 93.444
## 1912 58 483 2 999 0 -1.8 93.075
## 1913 47 53 1 999 0 -1.8 93.075
## 1914 51 302 1 999 0 -2.9 92.963
## 1915 42 95 1 999 0 1.1 93.994
## 1916 35 1145 4 999 0 -0.1 93.200
## 1917 24 12 6 999 0 -1.8 92.893
## 1918 29 187 2 999 0 1.4 93.918
## 1919 44 10 7 999 0 -0.1 93.200
## 1920 39 543 2 999 0 1.4 93.918
## 1921 36 41 3 999 0 1.4 94.465
## 1922 30 96 2 999 0 1.1 93.994
## 1923 44 111 1 999 0 1.4 93.444
## 1924 54 53 1 999 0 1.4 94.465
## 1925 42 583 1 999 0 1.1 93.994
## 1926 38 50 3 999 0 1.1 93.994
## 1927 46 488 4 999 0 1.4 93.918
## 1928 39 241 1 999 0 1.1 93.994
## 1929 44 189 2 999 0 1.1 93.994
## 1930 41 144 4 999 0 1.1 93.994
## 1931 31 597 17 999 0 1.1 93.994
## 1932 37 1236 2 999 0 1.1 93.994
## 1933 54 163 3 999 0 1.4 93.918
## 1934 40 762 3 999 0 1.1 93.994
## 1935 47 230 1 999 0 1.1 93.994
## 1936 39 156 3 999 0 -1.8 93.075
## 1937 47 499 2 999 0 -1.8 93.075
## 1938 53 45 1 999 0 -1.8 92.893
## 1939 43 315 2 999 0 -1.8 93.075
## 1940 25 1068 3 999 0 -1.8 92.893
## 1941 31 214 4 999 0 -1.8 93.876
## 1942 47 64 3 999 0 -0.1 93.200
## 1943 39 157 2 999 0 1.4 94.465
## 1944 26 120 6 999 0 1.4 94.465
## 1945 34 365 1 999 0 -1.8 93.075
## 1946 27 244 2 999 0 1.4 94.465
## 1947 62 201 4 999 0 -1.7 94.055
## 1948 45 278 1 999 0 -1.8 93.075
## 1949 49 81 2 999 0 1.4 93.918
## 1950 44 135 2 999 0 -0.1 93.200
## 1951 33 548 2 999 0 1.4 93.918
## 1952 30 60 3 999 0 1.4 93.444
## 1953 60 241 2 999 0 1.4 93.918
## 1954 34 234 1 999 0 1.1 93.994
## 1955 31 255 2 999 0 1.4 93.918
## 1956 56 72 1 999 0 -0.1 93.200
## 1957 52 324 1 999 0 1.4 93.918
## 1958 46 897 1 999 0 1.1 93.994
## 1959 34 141 2 999 0 -1.8 93.075
## 1960 41 91 3 999 0 1.1 93.994
## 1961 41 109 1 999 0 1.1 93.994
## 1962 27 329 1 999 0 -2.9 92.963
## 1963 50 193 2 999 0 1.1 93.994
## 1964 37 34 3 999 0 1.4 94.465
## 1965 59 370 2 999 0 1.4 93.444
## 1966 39 219 4 999 0 1.1 93.994
## 1967 33 317 2 999 0 -1.8 92.893
## 1968 26 482 2 999 0 -2.9 92.201
## 1969 57 174 6 999 0 1.4 93.918
## 1970 48 211 2 999 0 1.1 93.994
## 1971 34 273 1 999 0 -1.8 92.893
## 1972 54 168 5 999 0 1.4 93.918
## 1973 57 59 1 999 0 -0.1 93.200
## 1974 29 215 2 999 0 -1.8 92.893
## 1975 42 855 3 999 0 -0.1 93.200
## 1976 40 52 1 999 0 -1.8 92.893
## 1977 38 293 6 999 0 1.1 93.994
## 1978 43 158 1 999 0 -0.1 93.200
## 1979 37 71 1 999 0 1.1 93.994
## 1980 40 48 5 999 0 1.1 93.994
## 1981 35 692 3 999 0 -1.8 92.893
## 1982 59 64 1 999 0 1.4 94.465
## 1983 30 374 12 999 0 1.4 93.444
## 1984 43 62 6 999 0 -0.1 93.200
## 1985 51 495 1 999 0 -1.8 92.893
## 1986 38 331 6 999 0 1.1 93.994
## 1987 41 639 2 999 0 1.4 94.465
## 1988 25 121 3 999 0 -1.8 92.893
## 1989 41 556 1 999 0 1.1 93.994
## 1990 42 1606 1 999 0 -0.1 93.200
## 1991 29 321 2 999 0 -1.8 93.075
## 1992 59 150 2 999 0 1.4 93.918
## 1993 27 238 2 999 0 1.4 93.918
## 1994 51 137 4 999 0 1.4 93.918
## 1995 35 91 1 999 0 1.4 93.918
## 1996 43 40 1 999 0 -0.1 93.200
## 1997 55 885 1 999 0 1.4 94.465
## 1998 39 47 4 999 0 -0.1 93.200
## 1999 34 134 2 999 0 -1.8 92.893
## 2000 59 113 1 999 0 1.1 93.994
## 2001 32 160 1 999 0 1.1 93.994
## 2002 27 182 2 999 0 1.1 93.994
## 2003 43 618 2 999 0 1.1 93.994
## 2004 51 155 2 999 0 -0.1 93.200
## 2005 36 226 1 999 0 1.4 93.918
## 2006 39 389 1 999 0 1.4 94.465
## 2007 51 296 2 999 0 1.1 93.994
## 2008 45 225 1 999 0 1.1 93.994
## 2009 32 212 2 999 0 1.4 93.918
## 2010 33 58 2 999 0 1.1 93.994
## 2011 25 12 7 999 0 -1.8 92.893
## 2012 35 208 3 999 0 1.1 93.994
## 2013 30 90 1 999 0 -1.8 92.893
## 2014 26 168 3 999 0 1.4 94.465
## 2015 54 14 1 999 0 -1.8 93.075
## 2016 25 50 1 999 0 -2.9 92.201
## 2017 49 133 5 999 0 1.4 93.918
## 2018 38 73 1 999 0 1.4 93.444
## 2019 34 185 1 999 0 -1.8 93.075
## 2020 36 45 3 999 0 1.1 93.994
## 2021 38 75 1 999 0 -1.8 92.893
## 2022 36 170 2 999 0 1.4 94.465
## 2023 34 54 1 999 0 -0.1 93.200
## 2024 27 86 4 999 0 1.1 93.994
## 2025 46 297 1 999 0 1.1 93.994
## 2026 47 138 3 999 0 1.4 93.918
## 2027 60 155 2 999 0 1.4 93.444
## 2028 39 935 3 999 0 1.1 93.994
## 2029 35 333 1 999 0 1.4 93.918
## 2030 40 17 21 999 0 1.4 94.465
## 2031 51 838 3 999 0 -1.8 93.075
## 2032 38 38 6 999 0 1.4 94.465
## 2033 45 120 2 999 0 -0.1 93.200
## 2034 35 219 1 999 0 1.1 93.994
## 2035 61 266 5 999 0 -1.8 93.075
## 2036 34 19 7 999 0 -1.8 92.893
## 2037 47 207 1 999 0 1.4 93.444
## 2038 53 228 6 999 0 -0.1 93.200
## 2039 24 456 1 999 0 -2.9 92.201
## 2040 36 90 1 999 0 1.1 93.994
## 2041 44 133 1 999 0 -2.9 92.963
## 2042 43 226 1 999 0 1.4 93.918
## 2043 55 252 1 999 0 -0.1 93.200
## 2044 37 383 1 999 0 1.4 93.918
## 2045 32 219 1 999 0 1.4 94.465
## 2046 34 229 5 999 0 1.1 93.994
## 2047 41 242 1 999 0 -1.8 92.893
## 2048 31 451 4 999 0 1.1 93.994
## 2049 49 36 2 999 0 -0.1 93.200
## 2050 55 243 2 999 0 1.4 93.918
## 2051 37 379 1 999 0 1.1 93.994
## 2052 32 147 2 999 0 1.4 93.918
## 2053 47 86 3 999 0 1.4 93.444
## 2054 56 383 1 999 0 1.4 93.918
## 2055 25 114 2 999 0 -1.8 92.893
## 2056 40 304 3 999 0 1.4 93.918
## 2057 54 83 2 999 0 1.4 93.918
## 2058 26 11 7 999 0 -1.8 92.893
## 2059 36 167 1 999 0 1.4 93.444
## 2060 35 285 1 999 0 -1.8 93.075
## 2061 30 39 2 999 0 1.4 93.918
## 2062 34 142 2 999 0 -1.8 92.893
## 2063 36 413 2 999 0 -1.8 93.075
## 2064 46 157 3 999 0 1.1 93.994
## 2065 39 46 1 999 0 1.1 93.994
## 2066 25 274 2 999 0 1.1 93.994
## 2067 59 9 5 999 0 1.4 94.465
## 2068 58 106 1 999 0 1.1 93.994
## 2069 32 102 2 999 0 1.4 94.465
## 2070 40 283 11 999 0 1.1 93.994
## 2071 58 92 1 999 0 -2.9 92.201
## 2072 51 399 3 999 0 1.4 94.465
## 2073 29 223 5 999 0 -1.8 92.893
## 2074 58 75 2 999 0 1.4 93.444
## 2075 47 191 3 999 0 -1.8 92.893
## 2076 27 412 6 999 0 1.1 93.994
## 2077 49 136 2 999 0 -3.4 92.431
## 2078 33 702 1 999 0 1.4 93.444
## 2079 34 81 2 999 0 -1.8 92.893
## 2080 52 203 1 999 0 1.1 93.994
## 2081 32 361 1 999 0 1.1 93.994
## 2082 36 84 3 999 0 1.1 93.994
## 2083 31 112 7 999 0 -3.4 92.379
## 2084 48 664 3 999 0 -0.1 93.200
## 2085 30 243 2 999 0 -1.8 92.893
## 2086 53 252 1 999 0 1.1 93.994
## 2087 46 11 6 999 0 -1.8 92.893
## 2088 28 143 1 999 0 1.1 93.994
## 2089 46 174 2 999 0 1.4 94.465
## 2090 55 197 1 999 0 1.1 93.994
## 2091 37 132 1 999 0 1.1 93.994
## 2092 27 352 1 999 0 1.4 93.918
## 2093 40 260 2 999 0 1.4 93.918
## 2094 47 604 2 999 0 1.1 93.994
## 2095 53 891 2 999 0 1.4 93.918
## 2096 36 239 1 999 0 -1.8 92.893
## 2097 26 117 1 999 0 1.4 93.918
## 2098 26 536 2 999 0 1.1 93.994
## 2099 31 55 12 999 0 1.4 94.465
## 2100 53 300 2 999 0 1.4 93.444
## 2101 56 302 1 999 0 -1.8 92.893
## 2102 29 104 2 999 0 -1.8 92.893
## 2103 48 136 1 999 0 1.1 93.994
## 2104 39 126 2 999 0 1.1 93.994
## 2105 30 13 3 999 0 -0.1 93.200
## 2106 49 464 2 999 0 1.4 94.465
## 2107 42 386 2 999 0 1.4 93.444
## 2108 39 57 1 999 0 1.4 93.444
## 2109 34 130 1 999 0 -1.8 93.075
## 2110 50 206 1 999 0 -0.1 93.200
## 2111 39 55 1 999 0 -1.8 93.075
## 2112 24 106 1 999 0 -1.1 94.767
## 2113 32 6 4 999 0 -1.8 92.893
## 2114 46 133 1 999 0 1.1 93.994
## 2115 48 251 3 999 0 1.4 93.444
## 2116 28 76 2 999 0 1.4 93.918
## 2117 33 84 3 999 0 1.1 93.994
## 2118 53 74 2 999 0 -1.8 92.893
## 2119 54 611 2 999 0 1.1 93.994
## 2120 23 14 5 999 0 -1.8 92.893
## 2121 45 90 3 999 0 1.4 93.444
## 2122 51 163 5 999 0 1.4 93.918
## 2123 33 82 1 999 0 1.4 93.444
## 2124 34 64 1 999 0 1.4 94.465
## 2125 27 628 1 999 0 -1.8 92.893
## 2126 32 136 1 999 0 1.4 93.444
## 2127 59 152 4 999 0 -3.4 92.431
## 2128 47 341 1 999 0 -1.8 92.893
## 2129 39 36 6 999 0 -1.8 92.893
## 2130 27 264 1 999 0 -3.4 92.649
## 2131 39 846 2 999 0 -1.8 92.893
## 2132 40 123 4 999 0 1.4 94.465
## 2133 43 169 1 999 0 1.4 93.918
## 2134 50 762 2 999 0 1.4 93.444
## 2135 53 63 3 999 0 1.4 94.465
## 2136 46 1135 2 999 0 1.1 93.994
## 2137 37 188 1 999 0 1.4 93.444
## 2138 37 415 1 999 0 1.1 93.994
## 2139 50 118 5 999 0 1.4 93.444
## 2140 35 773 2 999 0 1.4 93.444
## 2141 52 118 2 999 0 1.4 93.918
## 2142 35 451 1 999 0 1.4 93.918
## 2143 29 171 1 999 0 1.1 93.994
## 2144 34 549 2 999 0 -0.1 93.200
## 2145 50 855 2 999 0 1.1 93.994
## 2146 51 9 5 999 0 -0.1 93.200
## 2147 41 114 2 999 0 -1.8 92.893
## 2148 52 97 1 999 0 1.1 93.994
## 2149 30 89 4 999 0 1.4 93.918
## 2150 56 13 40 999 0 1.4 94.465
## 2151 37 354 2 999 0 -1.8 92.893
## 2152 25 64 2 999 0 -1.8 92.893
## 2153 29 239 2 999 0 -1.8 92.893
## 2154 37 43 2 999 0 1.4 94.465
## 2155 38 206 1 999 0 1.1 93.994
## 2156 38 287 4 999 0 1.1 93.994
## 2157 41 89 2 999 0 1.4 93.918
## 2158 44 262 2 999 0 -1.8 92.893
## 2159 41 198 1 999 0 -1.8 92.893
## 2160 45 166 12 999 0 1.1 93.994
## 2161 64 151 3 999 0 -1.1 94.767
## 2162 32 213 1 999 0 1.4 94.465
## 2163 45 164 4 999 0 -1.8 93.075
## 2164 26 127 7 999 0 1.4 93.918
## 2165 54 92 1 999 0 1.1 93.994
## 2166 40 255 6 999 0 1.1 93.994
## 2167 51 305 6 999 0 -0.1 93.200
## 2168 78 177 2 999 0 -3.4 92.431
## 2169 26 22 1 999 0 1.4 93.918
## 2170 45 333 2 999 0 1.1 93.994
## 2171 56 153 1 999 0 -1.8 93.075
## 2172 35 198 1 999 0 -1.8 92.893
## 2173 38 460 4 999 0 1.4 94.465
## 2174 33 103 1 999 0 -1.8 92.893
## 2175 25 243 3 999 0 -1.8 92.843
## 2176 45 191 1 999 0 1.1 93.994
## 2177 56 481 2 999 0 -0.1 93.200
## 2178 36 89 1 999 0 -1.8 92.893
## 2179 51 13 4 999 0 -0.1 93.200
## 2180 70 144 1 999 0 -3.4 92.379
## 2181 24 54 4 999 0 -1.8 92.893
## 2182 27 131 3 999 0 -1.8 92.893
## 2183 50 63 1 999 0 1.1 93.994
## 2184 38 127 6 999 0 1.4 94.465
## 2185 45 22 1 999 0 -0.1 93.200
## 2186 51 586 1 999 0 1.4 93.444
## 2187 31 218 1 999 0 1.1 93.994
## 2188 27 818 1 999 0 1.4 93.918
## 2189 42 93 2 999 0 1.4 94.465
## 2190 35 219 2 999 0 -1.8 92.893
## 2191 47 57 2 999 0 1.4 93.444
## 2192 53 199 2 999 0 1.1 93.994
## 2193 55 68 2 999 0 -0.1 93.200
## 2194 47 64 2 999 0 1.4 93.918
## 2195 46 134 3 999 0 1.1 93.994
## 2196 31 100 3 999 0 1.4 94.465
## 2197 29 289 2 999 0 1.4 93.918
## 2198 44 45 1 999 0 1.4 94.465
## 2199 34 251 2 999 0 -0.1 93.200
## 2200 29 206 1 999 0 -0.1 93.200
## 2201 52 553 2 999 0 1.1 93.994
## 2202 55 87 1 999 0 -1.8 92.893
## 2203 58 685 2 999 0 -1.8 92.893
## 2204 30 129 2 999 0 1.1 93.994
## 2205 39 364 2 999 0 -1.8 92.893
## 2206 43 284 4 999 0 1.1 93.994
## 2207 27 35 1 999 0 -1.1 94.199
## 2208 57 126 1 999 0 -0.1 93.200
## 2209 36 560 3 999 0 1.4 94.465
## 2210 28 296 2 999 0 -1.8 92.843
## 2211 36 11 3 999 0 1.4 94.465
## 2212 46 118 1 999 0 1.1 93.994
## 2213 32 129 1 999 0 1.1 93.994
## 2214 30 225 2 999 0 -0.1 93.200
## 2215 49 68 1 999 0 1.4 94.465
## 2216 35 143 1 999 0 1.4 94.465
## 2217 35 145 2 999 0 1.4 93.918
## 2218 50 106 1 999 0 1.1 93.994
## 2219 47 78 1 999 0 1.4 93.918
## 2220 33 595 2 999 0 1.4 93.918
## 2221 53 137 2 999 0 -0.1 93.200
## 2222 34 116 2 999 0 1.1 93.994
## 2223 40 215 1 999 0 1.1 93.994
## 2224 27 112 1 999 0 1.4 93.918
## 2225 56 310 1 999 0 -1.8 92.893
## 2226 33 209 1 999 0 1.4 93.918
## 2227 37 56 2 999 0 -0.1 93.200
## 2228 52 127 2 999 0 -0.1 93.200
## 2229 23 35 1 999 0 -1.8 93.876
## 2230 54 94 1 999 0 1.4 93.918
## 2231 48 122 6 999 0 1.4 93.444
## 2232 25 130 4 999 0 1.1 93.994
## 2233 33 106 2 999 0 1.4 93.444
## 2234 56 569 1 999 0 1.4 93.918
## 2235 53 1221 1 999 0 -0.1 93.200
## 2236 57 325 2 999 0 1.1 93.994
## 2237 25 1127 3 999 0 1.4 93.918
## 2238 53 164 1 999 0 1.4 94.465
## 2239 31 63 1 999 0 -0.1 93.200
## 2240 30 28 18 999 0 1.1 93.994
## 2241 32 53 3 999 0 -1.8 92.893
## 2242 34 298 1 999 0 1.4 93.444
## 2243 45 255 3 999 0 1.1 93.994
## 2244 35 13 3 999 0 1.4 94.465
## 2245 31 138 1 999 0 1.4 93.444
## 2246 55 270 1 999 0 -0.1 93.200
## 2247 42 890 2 999 0 -1.8 93.075
## 2248 53 125 2 999 0 -0.1 93.200
## 2249 33 483 3 999 0 1.1 93.994
## 2250 42 185 3 999 0 1.1 93.994
## 2251 53 319 3 999 0 -0.1 93.200
## 2252 58 49 1 999 0 1.4 93.918
## 2253 49 168 1 999 0 -1.8 92.893
## 2254 27 226 1 999 0 1.4 93.918
## 2255 34 290 2 999 0 -3.4 92.379
## 2256 52 221 2 999 0 -0.1 93.200
## 2257 47 140 3 999 0 -0.1 93.200
## 2258 57 59 2 999 0 1.4 94.465
## 2259 39 128 2 999 0 1.1 93.994
## 2260 30 78 2 999 0 1.4 94.465
## 2261 31 54 2 999 0 -0.1 93.200
## 2262 59 35 1 999 0 1.1 93.994
## 2263 54 186 3 999 0 1.4 94.465
## 2264 53 203 1 999 0 1.1 93.994
## 2265 47 7 1 999 0 -1.8 93.876
## 2266 54 75 2 999 0 -1.8 92.893
## 2267 51 116 3 999 0 -2.9 92.469
## 2268 37 833 8 999 0 1.1 93.994
## 2269 53 74 1 999 0 1.4 93.444
## 2270 46 595 1 999 0 -0.1 93.200
## 2271 30 1164 2 999 0 1.4 93.918
## 2272 35 159 9 999 0 1.4 94.465
## 2273 34 343 2 999 0 1.4 93.444
## 2274 42 275 2 999 0 1.1 93.994
## 2275 33 290 1 999 0 -1.8 92.893
## 2276 30 14 5 999 0 -0.1 93.200
## 2277 50 705 1 999 0 -0.1 93.200
## 2278 21 279 2 999 0 -1.8 92.893
## 2279 58 226 1 999 0 1.1 93.994
## 2280 37 103 3 999 0 1.4 93.444
## 2281 35 25 14 999 0 1.1 93.994
## 2282 29 729 1 999 0 -0.1 93.200
## 2283 49 731 4 999 0 1.1 93.994
## 2284 31 522 1 999 0 1.4 93.918
## 2285 34 123 3 999 0 1.4 93.918
## 2286 47 94 2 999 0 1.4 93.444
## 2287 35 165 2 999 0 1.4 93.918
## 2288 46 98 1 999 0 1.4 94.465
## 2289 40 73 1 999 0 1.4 93.444
## 2290 27 104 1 999 0 1.1 93.994
## 2291 41 106 3 999 0 1.4 93.444
## 2292 39 163 2 999 0 1.4 94.465
## 2293 53 59 3 999 0 -1.8 93.075
## 2294 42 574 6 999 0 1.1 93.994
## 2295 41 206 2 999 0 1.1 93.994
## 2296 28 166 4 999 0 -1.8 92.893
## 2297 52 84 3 999 0 1.1 93.994
## 2298 42 311 6 999 0 1.4 93.918
## 2299 29 35 3 999 0 1.4 93.918
## 2300 46 132 1 999 0 1.1 93.994
## 2301 38 79 2 999 0 1.4 93.444
## 2302 41 244 2 999 0 -2.9 92.963
## 2303 58 59 3 999 0 1.4 93.444
## 2304 51 484 1 999 0 1.4 93.918
## 2305 41 193 2 999 0 1.1 93.994
## 2306 34 171 4 999 0 -1.8 92.843
## 2307 38 610 1 999 0 1.1 93.994
## 2308 40 170 1 999 0 1.4 94.465
## 2309 41 323 1 999 0 1.4 93.444
## 2310 37 391 1 999 0 1.1 93.994
## 2311 35 149 1 999 0 1.1 93.994
## 2312 29 40 7 999 0 1.1 93.994
## 2313 56 117 8 999 0 1.4 93.918
## 2314 56 142 4 999 0 1.4 93.444
## 2315 31 131 4 999 0 1.1 93.994
## 2316 46 178 3 999 0 1.4 93.918
## 2317 33 70 1 999 0 1.1 93.994
## 2318 33 211 2 999 0 1.1 93.994
## 2319 32 17 9 999 0 -1.8 92.893
## 2320 59 664 7 999 0 1.4 93.918
## 2321 51 208 2 999 0 1.1 93.994
## 2322 58 467 4 999 0 1.1 93.994
## 2323 36 59 8 999 0 1.4 94.465
## 2324 29 164 1 999 0 -1.8 92.893
## 2325 36 178 1 999 0 1.4 94.465
## 2326 29 45 1 999 0 1.4 94.465
## 2327 39 80 1 999 0 1.4 93.444
## 2328 31 306 1 999 0 -0.1 93.200
## 2329 31 109 1 999 0 1.1 93.994
## 2330 40 147 3 999 0 -0.1 93.200
## 2331 37 351 2 999 0 1.4 94.465
## 2332 31 170 3 999 0 1.4 93.444
## 2333 42 372 3 999 0 1.4 94.465
## 2334 39 399 2 999 0 1.1 93.994
## 2335 36 166 1 999 0 1.4 94.465
## 2336 37 274 5 999 0 1.4 93.918
## 2337 56 26 2 999 0 1.1 93.994
## 2338 26 374 1 999 0 -1.1 94.199
## 2339 44 536 1 999 0 1.1 93.994
## 2340 27 530 2 999 0 1.1 93.994
## 2341 30 109 2 999 0 1.4 93.444
## 2342 28 251 5 999 0 1.4 93.918
## 2343 25 324 1 999 0 1.1 93.994
## 2344 31 41 1 999 0 -0.1 93.200
## 2345 54 87 13 999 0 1.4 94.465
## 2346 32 240 1 999 0 -1.8 92.893
## 2347 38 763 6 999 0 1.1 93.994
## 2348 40 144 1 999 0 -0.1 93.200
## 2349 36 12 2 999 0 1.1 93.994
## 2350 34 22 5 999 0 1.4 94.465
## 2351 50 595 2 999 0 -0.1 93.200
## 2352 38 224 3 999 0 1.4 93.918
## 2353 44 181 1 999 0 1.1 93.994
## 2354 35 724 12 999 0 1.4 93.444
## 2355 29 124 42 999 0 1.1 93.994
## 2356 28 64 1 999 0 -1.8 93.075
## 2357 34 305 2 999 0 -1.8 93.075
## 2358 46 138 9 999 0 1.4 94.465
## 2359 34 122 3 999 0 -1.8 93.075
## 2360 28 52 3 999 0 1.1 93.994
## 2361 39 156 5 999 0 1.4 94.465
## 2362 34 7 5 999 0 -1.8 93.075
## 2363 52 314 2 999 0 1.1 93.994
## 2364 60 174 1 999 0 1.4 93.444
## 2365 48 163 2 999 0 1.4 94.465
## 2366 40 144 2 999 0 -1.8 93.075
## 2367 30 165 4 999 0 1.1 93.994
## 2368 55 252 4 999 0 1.1 93.994
## 2369 46 196 3 999 0 -1.8 92.893
## 2370 37 666 1 999 0 -1.8 93.075
## 2371 47 80 2 999 0 1.4 93.444
## 2372 58 75 2 999 0 -1.8 93.075
## 2373 29 300 1 999 0 -2.9 92.201
## 2374 31 712 1 999 0 -1.8 92.893
## 2375 46 149 11 999 0 1.4 93.918
## 2376 60 338 2 999 0 -1.1 94.601
## 2377 52 44 1 999 0 -1.8 93.075
## 2378 43 90 6 999 0 1.4 93.918
## 2379 32 195 7 999 0 1.4 93.444
## 2380 57 507 1 999 0 1.1 93.994
## 2381 37 500 1 999 0 1.4 93.918
## 2382 32 23 1 999 0 1.1 93.994
## 2383 32 433 3 999 0 1.4 93.444
## 2384 41 213 2 999 0 1.1 93.994
## 2385 39 658 2 999 0 1.4 94.465
## 2386 38 64 1 999 0 -0.1 93.200
## 2387 28 288 1 999 0 1.4 94.465
## 2388 50 104 1 999 0 1.4 93.444
## 2389 43 21 5 999 0 -1.8 93.075
## 2390 45 95 4 999 0 1.4 93.444
## 2391 48 122 5 999 0 1.4 93.918
## 2392 34 231 3 999 0 -1.8 93.075
## 2393 50 79 3 999 0 1.4 93.444
## 2394 47 571 1 999 0 1.1 93.994
## 2395 58 469 2 999 0 1.4 94.465
## 2396 41 71 1 999 0 1.4 93.444
## 2397 38 293 3 999 0 -1.1 94.601
## 2398 41 33 5 999 0 -1.8 92.893
## 2399 31 271 2 999 0 1.4 94.465
## 2400 25 432 3 999 0 -1.8 92.893
## 2401 40 638 3 999 0 1.4 93.918
## 2402 50 272 2 999 0 1.4 93.444
## 2403 49 26 18 999 0 1.4 94.465
## 2404 38 15 9 999 0 -1.8 92.893
## 2405 67 270 2 999 0 -3.4 92.431
## 2406 40 493 2 999 0 1.4 94.465
## 2407 50 166 2 999 0 1.4 93.444
## 2408 56 240 1 999 0 1.4 93.444
## 2409 36 302 1 999 0 1.4 94.465
## 2410 45 696 2 999 0 -0.1 93.200
## 2411 44 104 1 999 0 -1.8 92.893
## 2412 33 129 2 999 0 1.4 93.444
## 2413 36 80 3 999 0 1.4 94.465
## 2414 53 60 1 999 0 1.4 93.918
## 2415 42 73 1 999 0 -0.1 93.200
## 2416 36 18 5 999 0 -1.8 93.075
## 2417 35 372 1 999 0 1.4 93.444
## 2418 29 116 1 999 0 -1.8 93.075
## 2419 29 245 1 999 0 -1.8 93.075
## 2420 28 125 2 999 0 1.4 94.465
## 2421 40 275 1 999 0 -1.8 93.075
## 2422 31 690 2 999 0 1.4 94.465
## 2423 49 161 4 999 0 1.4 93.444
## 2424 39 135 3 999 0 1.4 94.465
## 2425 43 123 1 999 0 -2.9 92.201
## 2426 41 120 1 999 0 1.4 93.918
## 2427 47 97 1 999 0 1.4 93.444
## 2428 41 686 1 999 0 -1.8 92.893
## 2429 73 128 2 999 0 -1.8 93.075
## 2430 54 71 4 999 0 1.4 94.465
## 2431 26 796 1 999 0 -3.0 92.713
## 2432 34 1622 2 999 0 1.1 93.994
## 2433 43 118 8 999 0 1.4 93.918
## 2434 39 52 1 999 0 1.1 93.994
## 2435 29 113 4 999 0 1.4 93.918
## 2436 49 76 5 999 0 1.4 93.444
## 2437 43 76 5 999 0 1.4 93.918
## 2438 34 162 3 999 0 1.4 93.918
## 2439 28 218 1 999 0 -1.8 93.075
## 2440 37 83 1 999 0 1.4 94.465
## 2441 38 204 1 999 0 1.1 93.994
## 2442 41 101 2 999 0 1.4 93.444
## 2443 39 65 2 999 0 1.4 93.918
## 2444 55 93 1 999 0 1.4 93.918
## 2445 35 60 3 999 0 1.1 93.994
## 2446 33 87 1 999 0 -3.4 92.431
## 2447 35 187 3 999 0 1.4 93.918
## 2448 33 136 1 999 0 1.4 94.465
## 2449 27 36 1 999 0 -1.7 94.027
## 2450 55 154 3 999 0 -3.4 92.649
## 2451 39 357 2 999 0 1.4 93.444
## 2452 31 199 6 999 0 -1.8 93.075
## 2453 46 378 3 999 0 1.4 93.444
## 2454 30 225 2 999 0 1.4 94.465
## 2455 43 149 6 999 0 1.1 93.994
## 2456 26 57 1 999 0 -1.8 92.893
## 2457 26 124 3 999 0 1.4 93.918
## 2458 40 81 2 999 0 1.4 93.918
## 2459 47 171 1 999 0 1.4 93.918
## 2460 47 21 1 999 0 -1.8 92.893
## 2461 47 139 3 999 0 1.4 93.444
## 2462 35 90 3 999 0 1.4 93.444
## 2463 59 108 7 999 0 1.4 93.918
## 2464 51 135 1 999 0 1.1 93.994
## 2465 24 468 8 999 0 1.4 94.465
## 2466 45 1068 1 999 0 1.4 94.465
## 2467 42 75 3 999 0 1.4 93.918
## 2468 28 78 5 999 0 1.4 94.465
## 2469 34 498 2 999 0 -1.8 92.893
## 2470 34 140 4 999 0 1.4 93.444
## 2471 37 69 1 999 0 -1.8 92.893
## 2472 32 322 3 999 0 1.4 93.918
## 2473 39 316 1 999 0 1.4 93.444
## 2474 48 90 1 999 0 -0.1 93.200
## 2475 41 73 1 999 0 -0.1 93.798
## 2476 46 386 2 999 0 -1.8 92.893
## 2477 45 201 1 999 0 -2.9 92.963
## 2478 45 98 3 999 0 1.4 93.918
## 2479 29 164 2 999 0 1.4 94.465
## 2480 48 65 3 999 0 1.4 94.465
## 2481 43 475 4 999 0 1.4 93.918
## 2482 34 206 6 999 0 1.4 93.918
## 2483 31 239 3 999 0 -1.7 94.027
## 2484 49 1042 1 999 0 1.1 93.994
## 2485 31 334 3 999 0 1.4 93.918
## 2486 35 200 3 999 0 1.4 94.465
## 2487 42 174 1 999 0 -1.8 92.893
## 2488 43 390 1 999 0 -1.8 93.075
## 2489 34 164 5 999 0 1.4 93.918
## 2490 36 98 1 999 0 1.1 93.994
## 2491 56 270 1 999 0 1.4 93.444
## 2492 47 449 1 999 0 1.1 93.994
## 2493 43 24 3 999 0 1.4 93.918
## 2494 29 187 3 999 0 1.4 94.465
## 2495 55 330 2 999 0 -0.1 93.200
## 2496 39 713 2 999 0 -1.7 94.055
## 2497 28 299 2 999 0 -1.8 92.893
## 2498 35 201 3 999 0 -1.8 93.075
## 2499 32 119 4 999 0 1.4 93.444
## 2500 55 342 2 999 0 1.4 93.918
## 2501 33 457 3 999 0 1.4 93.918
## 2502 23 360 3 999 0 1.4 93.918
## 2503 45 84 1 999 0 1.4 93.444
## 2504 44 242 1 999 0 1.4 93.918
## 2505 34 299 3 999 0 1.4 93.444
## 2506 47 140 4 999 0 1.4 93.918
## 2507 46 488 2 999 0 1.4 93.444
## 2508 25 521 1 999 0 1.4 93.918
## 2509 30 104 3 999 0 1.4 93.444
## 2510 36 233 7 999 0 1.4 93.444
## 2511 37 13 5 999 0 -1.8 93.075
## 2512 46 766 2 999 0 -1.8 93.075
## 2513 23 69 3 999 0 1.4 93.918
## 2514 33 177 2 999 0 1.4 93.444
## 2515 31 92 5 999 0 1.4 94.465
## 2516 39 84 4 999 0 1.4 93.918
## 2517 35 107 5 999 0 1.4 93.918
## 2518 36 389 1 999 0 1.1 93.994
## 2519 52 116 1 999 0 1.4 94.465
## 2520 52 81 6 999 0 1.4 93.918
## 2521 29 140 1 999 0 1.4 93.444
## 2522 30 162 1 999 0 -1.8 93.075
## 2523 38 147 2 999 0 1.1 93.994
## 2524 42 227 6 999 0 1.4 93.918
## 2525 40 137 3 999 0 1.4 93.918
## 2526 55 394 2 999 0 1.4 94.465
## 2527 46 341 3 999 0 1.4 93.918
## 2528 33 554 1 999 0 1.4 93.918
## 2529 38 118 6 999 0 1.1 93.994
## 2530 38 55 5 999 0 1.4 93.918
## 2531 58 236 10 999 0 1.1 93.994
## 2532 31 98 1 999 0 1.4 93.444
## 2533 45 129 1 999 0 -1.8 93.075
## 2534 37 124 1 999 0 1.1 93.994
## 2535 48 441 2 999 0 1.4 93.444
## 2536 36 110 4 999 0 -1.8 92.893
## 2537 37 275 6 999 0 1.4 93.444
## 2538 51 293 7 999 0 1.4 93.918
## 2539 27 33 5 999 0 -1.8 92.893
## 2540 34 263 8 999 0 1.4 94.465
## 2541 31 93 4 999 0 1.1 93.994
## 2542 39 104 1 999 0 1.1 93.994
## 2543 34 230 3 999 0 1.4 93.444
## 2544 40 102 1 999 0 1.1 93.994
## 2545 36 379 2 999 0 1.1 93.994
## 2546 52 130 5 999 0 -2.9 92.963
## 2547 43 410 3 999 0 1.1 93.994
## 2548 55 106 6 999 0 1.4 93.444
## 2549 58 324 1 999 0 -1.7 94.027
## 2550 42 49 2 999 0 1.4 93.918
## 2551 30 235 5 999 0 -3.4 92.649
## 2552 24 357 1 999 0 1.4 93.918
## 2553 54 44 8 999 0 -1.8 92.893
## 2554 36 262 1 999 0 1.1 93.994
## 2555 34 163 1 999 0 -1.8 93.075
## 2556 59 91 4 999 0 1.4 93.918
## 2557 36 63 1 999 0 1.4 93.918
## 2558 44 669 1 999 0 -0.1 93.200
## 2559 49 145 1 999 0 1.1 93.994
## 2560 39 193 1 999 0 1.1 93.994
## 2561 31 230 4 999 0 1.4 93.444
## 2562 30 342 9 999 0 1.4 93.918
## 2563 38 111 2 999 0 -1.8 92.843
## 2564 57 45 5 999 0 1.1 93.994
## 2565 33 199 1 999 0 1.4 93.918
## 2566 26 74 6 999 0 1.4 93.918
## 2567 36 95 2 999 0 1.4 93.918
## 2568 35 87 1 999 0 1.4 93.444
## 2569 34 200 2 999 0 -1.7 94.027
## 2570 34 178 1 999 0 1.4 94.465
## 2571 50 98 3 999 0 -1.8 93.075
## 2572 55 88 2 999 0 1.4 93.444
## 2573 30 57 1 999 0 -1.8 92.893
## 2574 41 653 2 999 0 1.4 93.444
## 2575 42 570 3 999 0 -2.9 92.963
## 2576 28 187 3 999 0 1.4 93.918
## 2577 35 424 2 999 0 -1.8 92.893
## 2578 44 2035 4 999 0 -1.7 94.027
## 2579 33 220 4 999 0 1.4 94.465
## 2580 40 215 2 999 0 1.1 93.994
## 2581 31 318 2 999 0 -1.7 94.027
## 2582 30 220 6 999 0 1.4 93.918
## 2583 49 164 1 999 0 -2.9 92.963
## 2584 44 123 2 999 0 1.1 93.994
## 2585 36 46 3 999 0 1.4 93.444
## 2586 23 115 1 999 0 -1.8 92.893
## 2587 21 114 2 999 0 -1.8 92.843
## 2588 43 114 2 999 0 1.1 93.994
## 2589 25 437 2 999 0 -2.9 92.963
## 2590 40 314 1 999 0 -1.8 93.075
## 2591 29 224 3 999 0 -1.8 92.893
## 2592 44 389 2 999 0 1.4 93.444
## 2593 41 247 2 999 0 1.4 93.444
## 2594 47 118 6 999 0 1.1 93.994
## 2595 31 1099 2 999 0 1.4 93.444
## 2596 56 122 1 999 0 1.4 93.918
## 2597 48 121 1 999 0 1.1 93.994
## 2598 49 69 11 999 0 1.4 93.918
## 2599 38 72 3 999 0 1.4 93.918
## 2600 53 91 3 999 0 1.4 94.465
## 2601 37 345 2 999 0 -1.8 93.075
## 2602 35 217 1 999 0 1.1 93.994
## 2603 34 1238 1 999 0 1.4 93.444
## 2604 54 564 5 999 0 -1.8 93.876
## 2605 38 200 2 999 0 1.1 93.994
## 2606 53 82 4 999 0 -1.8 92.893
## 2607 30 324 2 999 0 -1.1 94.767
## 2608 41 294 3 999 0 1.4 94.465
## 2609 35 135 1 999 0 1.1 93.994
## 2610 34 251 3 999 0 -1.7 94.215
## 2611 32 92 5 999 0 1.4 93.444
## 2612 28 689 3 999 0 1.4 94.465
## 2613 43 183 3 999 0 1.4 93.918
## 2614 42 93 1 999 0 -0.1 93.200
## 2615 39 670 3 999 0 1.4 94.465
## 2616 39 721 3 999 0 1.4 94.465
## 2617 41 82 2 999 0 1.4 93.918
## 2618 44 28 1 999 0 -1.8 92.893
## 2619 35 207 3 999 0 1.4 93.444
## 2620 40 68 3 999 0 1.4 93.918
## 2621 54 50 4 999 0 1.4 93.918
## 2622 41 75 1 999 0 1.4 93.444
## 2623 37 92 1 999 0 1.4 93.918
## 2624 24 341 3 999 0 1.4 94.465
## 2625 45 141 3 999 0 1.4 93.444
## 2626 39 733 3 999 0 1.4 93.918
## 2627 47 99 22 999 0 1.1 93.994
## 2628 67 70 22 999 0 -1.8 92.843
## 2629 52 748 3 999 0 1.1 93.994
## 2630 33 469 2 999 0 1.1 93.994
## 2631 45 92 12 999 0 1.4 93.444
## 2632 42 223 2 999 0 1.4 93.444
## 2633 30 189 1 999 0 -1.8 92.893
## 2634 33 643 1 999 0 1.1 93.994
## 2635 52 410 1 999 0 1.4 93.918
## 2636 49 91 3 999 0 1.4 93.918
## 2637 44 234 1 999 0 1.4 93.918
## 2638 57 611 2 999 0 1.1 93.994
## 2639 34 432 1 999 0 1.4 93.444
## 2640 53 119 3 999 0 1.4 93.444
## 2641 44 122 2 999 0 1.4 93.918
## 2642 23 202 1 999 0 1.4 94.465
## 2643 31 643 3 999 0 -1.8 93.075
## 2644 34 98 4 999 0 1.4 93.444
## 2645 56 170 5 999 0 -1.1 94.601
## 2646 27 510 6 999 0 1.4 93.918
## 2647 33 119 2 999 0 1.4 93.444
## 2648 32 11 9 999 0 1.4 93.444
## 2649 45 103 4 999 0 1.1 93.994
## 2650 50 92 1 999 0 -0.1 93.200
## 2651 29 74 1 999 0 -2.9 92.963
## 2652 35 68 21 999 0 1.4 94.465
## 2653 49 565 1 999 0 1.4 93.444
## 2654 50 68 3 999 0 1.4 93.444
## 2655 59 233 2 999 0 -1.8 92.893
## 2656 55 136 3 999 0 1.4 93.918
## 2657 52 165 5 999 0 1.4 93.918
## 2658 42 359 5 999 0 -1.8 92.893
## 2659 37 331 1 999 0 1.4 93.444
## 2660 33 457 1 999 0 -1.8 92.893
## 2661 26 347 1 999 0 -3.4 92.649
## 2662 36 258 3 999 0 1.4 93.444
## 2663 48 132 3 999 0 -1.8 93.075
## 2664 26 175 5 999 0 -1.8 92.843
## 2665 48 223 2 999 0 -1.8 93.075
## 2666 43 268 1 999 0 -1.8 93.075
## 2667 46 290 2 999 0 1.1 93.994
## 2668 81 90 4 999 0 -1.7 94.027
## 2669 47 357 1 999 0 1.4 93.918
## 2670 45 177 1 999 0 1.4 93.444
## 2671 55 199 1 999 0 1.4 93.918
## 2672 34 180 1 999 0 -1.8 92.893
## 2673 41 97 1 999 0 -3.4 92.379
## 2674 34 96 1 999 0 -1.8 93.075
## 2675 29 209 2 999 0 1.4 93.444
## 2676 42 116 2 999 0 -0.1 93.200
## 2677 42 442 8 999 0 1.4 94.465
## 2678 34 239 3 999 0 1.4 93.444
## 2679 48 214 1 999 0 1.4 93.918
## 2680 57 78 3 999 0 1.1 93.994
## 2681 60 98 1 999 0 -3.4 92.431
## 2682 39 63 1 999 0 -0.1 93.200
## 2683 39 272 2 999 0 -0.1 93.200
## 2684 34 210 2 999 0 1.1 93.994
## 2685 47 68 2 999 0 -1.8 93.075
## 2686 36 56 2 999 0 1.4 93.444
## 2687 26 114 2 999 0 1.4 93.918
## 2688 58 74 2 999 0 1.4 93.444
## 2689 47 256 4 999 0 1.1 93.994
## 2690 38 337 3 999 0 -3.4 92.649
## 2691 43 547 3 999 0 1.4 93.918
## 2692 33 110 2 999 0 1.1 93.994
## 2693 50 143 1 999 0 1.4 93.918
## 2694 35 690 1 999 0 -0.1 93.200
## 2695 46 470 2 999 0 1.1 93.994
## 2696 57 75 5 999 0 1.4 94.465
## 2697 36 165 1 999 0 1.1 93.994
## 2698 36 719 2 999 0 1.4 93.918
## 2699 64 294 3 999 0 -2.9 92.963
## 2700 49 173 4 999 0 -1.8 93.075
## 2701 28 387 2 999 0 1.4 93.918
## 2702 26 84 7 999 0 -1.8 92.893
## 2703 47 506 1 999 0 1.4 93.444
## 2704 24 375 2 999 0 -1.8 93.876
## 2705 55 89 13 999 0 1.4 93.918
## 2706 28 177 5 999 0 1.4 94.465
## 2707 50 205 2 999 0 1.4 94.465
## 2708 60 155 4 999 0 1.4 94.465
## 2709 33 546 2 999 0 1.4 93.918
## 2710 47 118 1 999 0 1.1 93.994
## 2711 45 591 1 999 0 -0.1 93.200
## 2712 19 206 1 999 0 -1.8 93.075
## 2713 38 26 3 999 0 1.1 93.994
## 2714 56 103 2 999 0 1.1 93.994
## 2715 51 1070 1 999 0 -0.1 93.200
## 2716 36 44 3 999 0 1.4 93.918
## 2717 34 28 5 999 0 -1.8 93.075
## 2718 30 88 2 999 0 1.4 94.465
## 2719 33 143 1 999 0 -1.8 93.749
## 2720 38 730 8 999 0 1.4 93.918
## 2721 33 200 1 999 0 -0.1 93.200
## 2722 41 238 1 999 0 -2.9 92.963
## 2723 35 144 2 999 0 1.4 94.465
## 2724 44 31 3 999 0 1.4 93.918
## 2725 59 113 2 999 0 1.4 93.444
## 2726 54 175 3 999 0 -3.4 92.649
## 2727 38 166 3 999 0 1.4 94.465
## 2728 35 386 1 999 0 -1.8 92.893
## 2729 36 214 3 999 0 1.1 93.994
## 2730 58 332 2 999 0 1.4 93.918
## 2731 31 90 1 999 0 -0.1 93.200
## 2732 54 54 1 999 0 -1.8 92.893
## 2733 47 58 1 999 0 -0.1 93.200
## 2734 24 337 4 999 0 1.4 93.918
## 2735 47 83 4 999 0 1.4 93.918
## 2736 53 249 2 999 0 -1.8 93.075
## 2737 32 87 1 999 0 -1.8 92.893
## 2738 30 71 1 999 0 1.4 94.465
## 2739 33 324 4 999 0 -1.8 92.893
## 2740 53 261 4 999 0 -1.8 93.369
## 2741 25 68 1 999 0 1.4 93.918
## 2742 81 617 2 999 0 -1.8 92.893
## 2743 36 194 2 999 0 1.4 93.918
## 2744 44 758 2 999 0 1.4 93.444
## 2745 39 501 1 999 0 -0.1 93.200
## 2746 35 90 2 999 0 1.4 93.444
## 2747 53 121 2 999 0 1.4 93.918
## 2748 41 101 3 999 0 -1.7 94.215
## 2749 37 250 2 999 0 1.4 94.465
## 2750 39 249 4 999 0 1.1 93.994
## 2751 45 413 2 999 0 1.4 93.444
## 2752 32 508 3 999 0 1.4 93.444
## 2753 40 49 1 999 0 1.4 94.465
## 2754 44 239 1 999 0 -1.8 92.843
## 2755 39 179 2 999 0 1.4 93.918
## 2756 39 258 1 999 0 1.4 94.465
## 2757 47 130 3 999 0 1.4 93.918
## 2758 49 334 3 999 0 -3.0 92.713
## 2759 35 63 1 999 0 -1.8 93.075
## 2760 25 159 1 999 0 1.4 93.918
## 2761 42 159 1 999 0 1.4 93.444
## 2762 50 47 4 999 0 1.4 93.918
## 2763 33 130 3 999 0 -0.1 93.200
## 2764 30 40 1 999 0 1.1 93.994
## 2765 36 246 3 999 0 1.4 93.444
## 2766 51 326 2 999 0 -0.1 93.200
## 2767 39 290 2 999 0 1.1 93.994
## 2768 56 123 3 999 0 1.4 93.918
## 2769 42 141 3 999 0 1.4 93.918
## 2770 36 48 2 999 0 -0.1 93.200
## 2771 39 1063 5 999 0 -1.8 92.893
## 2772 45 73 1 999 0 -0.1 93.200
## 2773 36 86 4 999 0 1.4 93.444
## 2774 27 250 3 999 0 1.4 93.918
## 2775 57 644 1 999 0 1.4 93.918
## 2776 35 142 2 999 0 1.4 93.444
## 2777 31 88 6 999 0 1.1 93.994
## 2778 40 63 3 999 0 1.1 93.994
## 2779 46 500 5 999 0 1.4 93.918
## 2780 46 144 3 999 0 1.1 93.994
## 2781 60 144 1 999 0 1.4 93.444
## 2782 26 8 2 999 0 1.1 93.994
## 2783 52 197 2 999 0 1.4 93.444
## 2784 27 316 1 999 0 1.4 93.918
## 2785 47 955 4 999 0 1.4 94.465
## 2786 46 431 1 999 0 -1.8 92.893
## 2787 31 173 1 999 0 -1.8 92.893
## 2788 38 431 4 999 0 1.4 93.444
## 2789 33 169 1 999 0 -1.8 93.749
## 2790 41 145 4 999 0 1.4 93.444
## 2791 46 143 1 999 0 -1.8 92.893
## 2792 33 115 1 999 0 1.4 93.444
## 2793 57 161 2 999 0 -2.9 92.963
## 2794 40 226 1 999 0 -1.8 93.075
## 2795 45 8 7 999 0 -1.8 92.893
## 2796 42 1088 14 999 0 1.4 93.918
## 2797 42 362 3 999 0 1.4 94.465
## 2798 34 252 4 999 0 1.4 93.918
## 2799 36 211 2 999 0 1.1 93.994
## 2800 46 502 5 999 0 1.4 94.465
## 2801 29 104 2 999 0 1.4 93.918
## 2802 43 265 4 999 0 1.4 93.918
## 2803 39 241 5 999 0 1.4 94.465
## 2804 57 374 5 999 0 1.4 93.918
## 2805 51 601 3 999 0 -1.8 92.893
## 2806 30 142 2 999 0 1.4 93.444
## 2807 54 56 3 999 0 1.4 93.918
## 2808 38 79 3 999 0 1.4 93.444
## 2809 39 791 3 999 0 -1.1 94.199
## 2810 45 307 1 999 0 1.4 93.918
## 2811 39 93 4 999 0 1.4 93.444
## 2812 26 320 2 999 0 -1.8 92.893
## 2813 31 143 2 999 0 1.4 93.444
## 2814 40 177 4 999 0 1.1 93.994
## 2815 44 299 4 999 0 1.4 94.465
## 2816 30 618 3 999 0 1.4 93.444
## 2817 49 252 1 999 0 1.1 93.994
## 2818 42 181 3 999 0 1.1 93.994
## 2819 41 339 8 999 0 1.4 93.918
## 2820 55 178 2 999 0 -1.8 92.893
## 2821 37 172 1 999 0 1.1 93.994
## 2822 33 89 3 999 0 1.1 93.994
## 2823 51 359 1 999 0 1.4 93.918
## 2824 48 106 1 999 0 -0.1 93.200
## 2825 56 215 1 999 0 1.4 94.465
## 2826 47 72 3 999 0 -1.8 93.075
## 2827 35 747 1 999 0 -0.1 93.200
## 2828 48 113 1 999 0 1.4 94.465
## 2829 47 148 1 999 0 1.4 93.918
## 2830 29 333 2 999 0 1.4 93.918
## 2831 53 313 2 999 0 1.4 94.465
## 2832 39 200 2 999 0 1.4 94.465
## 2833 38 98 5 999 0 -1.8 92.893
## 2834 30 184 2 999 0 1.4 93.918
## 2835 41 640 3 999 0 1.4 94.465
## 2836 53 64 5 999 0 1.4 93.444
## 2837 31 160 3 999 0 1.4 93.918
## 2838 32 8 7 999 0 -1.8 92.893
## 2839 28 333 1 999 0 -1.8 92.893
## 2840 46 471 3 999 0 -1.8 92.893
## 2841 48 9 6 999 0 1.4 93.444
## 2842 36 314 4 999 0 1.4 93.918
## 2843 34 562 3 999 0 1.4 94.465
## 2844 44 153 1 999 0 1.4 94.465
## 2845 45 26 15 999 0 1.4 93.444
## 2846 34 263 1 999 0 1.1 93.994
## 2847 59 228 6 999 0 -1.8 92.893
## 2848 27 200 6 999 0 -1.7 94.215
## 2849 59 484 1 999 0 1.4 94.465
## 2850 30 385 2 999 0 -3.4 92.431
## 2851 32 75 2 999 0 -1.8 92.843
## 2852 46 222 1 999 0 -1.8 93.075
## 2853 40 162 4 999 0 1.1 93.994
## 2854 35 114 5 999 0 1.4 94.465
## 2855 30 149 3 999 0 1.4 93.918
## 2856 57 11 4 999 0 -1.8 92.893
## 2857 42 124 2 999 0 1.4 94.465
## 2858 37 213 1 999 0 -2.9 92.201
## 2859 41 116 3 999 0 1.4 94.465
## 2860 28 273 5 999 0 1.4 94.465
## 2861 33 108 2 999 0 -1.8 93.075
## 2862 30 394 1 999 0 1.4 94.465
## 2863 32 70 1 999 0 1.4 94.465
## 2864 51 8 4 999 0 -1.8 92.893
## 2865 33 895 12 999 0 -1.8 92.893
## 2866 32 87 4 999 0 1.4 93.444
## 2867 27 11 4 999 0 -1.8 92.893
## 2868 33 111 2 999 0 1.4 93.918
## 2869 59 56 5 999 0 1.4 93.444
## 2870 44 115 1 999 0 1.1 93.994
## 2871 46 88 1 999 0 1.4 94.465
## 2872 69 92 1 999 0 -1.8 93.075
## 2873 59 86 3 999 0 1.4 93.918
## 2874 42 91 5 999 0 1.4 93.444
## 2875 34 90 4 999 0 -1.8 92.893
## 2876 33 66 1 999 0 1.4 93.918
## 2877 42 154 5 999 0 1.4 93.918
## 2878 55 199 4 999 0 1.4 93.444
## 2879 59 69 3 999 0 -1.8 93.075
## 2880 56 746 2 999 0 1.4 94.465
## 2881 42 173 2 999 0 1.1 93.994
## 2882 48 694 2 999 0 -0.1 93.200
## 2883 44 400 1 999 0 -1.8 93.075
## 2884 40 206 10 999 0 1.4 93.918
## 2885 26 901 1 999 0 1.4 94.465
## 2886 38 61 1 999 0 -0.1 93.200
## 2887 28 187 1 999 0 -1.8 93.075
## 2888 20 267 2 999 0 -1.8 92.843
## 2889 58 279 2 999 0 -0.1 93.200
## 2890 58 129 4 999 0 1.4 94.465
## 2891 42 298 4 999 0 1.4 94.465
## 2892 44 126 1 999 0 1.4 93.918
## 2893 37 113 3 999 0 1.1 93.994
## 2894 48 25 2 999 0 -1.8 93.075
## 2895 54 158 2 999 0 -1.8 93.749
## 2896 42 295 1 999 0 -0.1 93.200
## 2897 41 27 1 999 0 1.1 93.994
## 2898 44 136 1 999 0 1.4 93.918
## 2899 48 158 2 999 0 1.1 93.994
## 2900 31 93 2 999 0 1.4 93.444
## 2901 48 136 2 999 0 1.1 93.994
## 2902 58 157 5 999 0 1.4 93.444
## 2903 32 156 1 999 0 1.4 94.465
## 2904 41 440 1 999 0 1.4 94.465
## 2905 34 193 1 999 0 1.4 93.918
## 2906 57 506 2 999 0 1.1 93.994
## 2907 42 125 2 999 0 1.1 93.994
## 2908 35 386 1 999 0 -1.8 92.893
## 2909 48 348 2 999 0 1.4 93.444
## 2910 22 79 3 999 0 1.4 93.918
## 2911 56 247 2 999 0 1.4 93.918
## 2912 56 234 2 999 0 1.4 93.918
## 2913 51 59 2 999 0 -1.8 92.893
## 2914 57 88 2 999 0 1.4 93.444
## 2915 33 90 3 999 0 1.4 93.444
## 2916 43 93 3 999 0 1.1 93.994
## 2917 46 285 1 999 0 1.1 93.994
## 2918 40 69 2 999 0 -0.1 93.200
## 2919 55 385 1 999 0 1.1 93.994
## 2920 46 218 2 999 0 1.1 93.994
## 2921 46 151 2 999 0 1.4 93.918
## 2922 41 60 2 999 0 -0.1 93.200
## 2923 38 606 3 999 0 1.4 93.444
## 2924 31 44 1 999 0 -0.1 93.200
## 2925 36 54 5 999 0 -2.9 92.201
## 2926 38 125 3 999 0 1.4 93.444
## 2927 38 464 1 999 0 1.4 94.465
## 2928 38 85 1 999 0 1.1 93.994
## 2929 31 237 1 999 0 1.1 93.994
## 2930 35 165 5 999 0 1.1 93.994
## 2931 46 125 1 999 0 1.1 93.994
## 2932 57 365 4 999 0 1.4 93.444
## 2933 45 581 1 999 0 -0.1 93.200
## 2934 44 259 1 999 0 1.1 93.994
## 2935 39 123 3 999 0 1.4 93.918
## 2936 52 534 1 999 0 -0.1 93.200
## 2937 39 97 3 999 0 1.4 93.918
## 2938 54 56 4 999 0 1.4 93.444
## 2939 38 112 1 999 0 -0.1 93.200
## 2940 43 445 2 999 0 -1.8 92.893
## 2941 42 178 2 999 0 1.4 93.444
## 2942 26 589 1 999 0 1.4 94.465
## 2943 39 71 1 999 0 1.4 93.918
## 2944 43 32 2 999 0 1.4 93.918
## 2945 39 399 3 999 0 1.1 93.994
## 2946 50 98 3 999 0 1.4 93.444
## 2947 37 416 8 999 0 1.4 93.918
## 2948 68 80 3 999 0 -3.4 92.379
## 2949 44 787 1 999 0 1.4 93.444
## 2950 36 339 1 999 0 -1.8 93.075
## 2951 55 381 4 999 0 1.4 93.444
## 2952 52 147 1 999 0 -0.1 93.200
## 2953 31 274 2 999 0 -1.8 92.893
## 2954 54 57 4 999 0 1.4 93.918
## 2955 35 184 5 999 0 1.4 94.465
## 2956 29 415 2 999 0 -1.8 93.075
## 2957 41 123 1 999 0 -1.8 92.893
## 2958 29 122 2 999 0 1.4 93.444
## 2959 38 167 1 999 0 -2.9 92.201
## 2960 32 108 1 999 0 -2.9 92.963
## 2961 60 526 2 999 0 1.4 94.465
## 2962 49 142 2 999 0 1.4 93.444
## 2963 30 37 2 999 0 1.4 93.444
## 2964 55 232 3 999 0 -1.8 93.075
## 2965 40 131 2 999 0 1.1 93.994
## 2966 39 432 2 999 0 -1.8 92.893
## 2967 38 28 3 999 0 1.1 93.994
## 2968 38 280 10 999 0 1.4 93.444
## 2969 38 85 3 999 0 1.1 93.994
## 2970 35 70 6 999 0 1.1 93.994
## 2971 30 224 1 999 0 -1.8 93.075
## 2972 52 67 5 999 0 -1.8 93.075
## 2973 37 124 2 999 0 1.4 93.444
## 2974 45 177 1 999 0 1.1 93.994
## 2975 42 234 5 999 0 -1.8 93.075
## 2976 34 89 1 999 0 -2.9 92.201
## 2977 30 296 1 999 0 -1.8 92.893
## 2978 39 207 1 999 0 1.4 94.465
## 2979 25 215 1 999 0 -1.7 94.027
## 2980 37 210 1 999 0 -0.1 93.200
## 2981 58 224 1 999 0 1.4 93.918
## 2982 34 68 3 999 0 1.4 93.444
## 2983 40 91 1 999 0 1.4 94.465
## 2984 42 57 2 999 0 1.4 93.444
## 2985 35 180 3 999 0 1.4 93.918
## 2986 41 144 2 999 0 1.1 93.994
## 2987 56 298 1 999 0 1.4 93.918
## 2988 55 164 7 999 0 1.4 93.918
## 2989 36 128 1 999 0 1.4 94.465
## 2990 38 276 2 999 0 -1.8 93.075
## 2991 27 147 3 999 0 1.1 93.994
## 2992 57 40 1 999 0 1.4 93.918
## 2993 28 444 1 999 0 -1.8 93.075
## 2994 34 155 1 999 0 -0.1 93.200
## 2995 46 679 1 999 0 -3.0 92.713
## 2996 42 124 1 999 0 -0.1 93.200
## 2997 47 68 1 999 0 1.1 93.994
## 2998 30 83 4 999 0 1.4 94.465
## 2999 46 446 1 999 0 1.4 93.918
## 3000 39 751 2 999 0 1.4 93.918
## 3001 38 102 5 999 0 1.4 93.444
## 3002 46 8 1 999 0 -0.1 93.200
## 3003 35 203 6 999 0 1.4 93.444
## 3004 35 194 1 999 0 1.1 93.994
## 3005 46 357 2 999 0 -1.8 93.075
## 3006 46 194 5 999 0 1.1 93.994
## 3007 43 97 6 999 0 1.4 93.918
## 3008 26 125 2 999 0 1.4 93.918
## 3009 34 174 1 999 0 1.1 93.994
## 3010 40 893 1 999 0 -3.0 92.713
## 3011 29 264 2 999 0 -3.0 92.713
## 3012 21 264 1 999 0 -1.8 93.075
## 3013 54 155 2 999 0 1.1 93.994
## 3014 40 349 2 999 0 1.4 94.465
## 3015 52 777 4 999 0 1.4 94.465
## 3016 34 275 3 999 0 -1.8 92.893
## 3017 35 123 5 999 0 1.4 93.918
## 3018 49 44 1 999 0 -1.8 93.075
## 3019 55 123 1 999 0 1.4 93.444
## 3020 33 51 7 999 0 1.4 93.918
## 3021 40 62 2 999 0 1.4 93.918
## 3022 55 555 5 999 0 1.4 94.465
## 3023 46 87 3 999 0 1.4 93.918
## 3024 37 110 2 999 0 1.4 93.444
## 3025 42 127 2 999 0 -1.8 93.075
## 3026 53 303 1 999 0 1.1 93.994
## 3027 50 199 1 999 0 -0.1 93.200
## 3028 43 507 1 999 0 1.4 93.918
## 3029 32 388 4 999 0 1.4 93.444
## 3030 22 100 1 999 0 1.4 93.918
## 3031 29 255 1 999 0 1.4 94.465
## 3032 24 640 2 999 0 -1.8 93.075
## 3033 27 111 3 999 0 1.4 93.918
## 3034 34 468 1 999 0 1.4 93.444
## 3035 49 364 1 999 0 1.1 93.994
## 3036 35 188 6 999 0 1.1 93.994
## 3037 42 120 1 999 0 -0.1 93.200
## 3038 36 54 1 999 0 -1.8 92.893
## 3039 39 908 3 999 0 1.4 93.918
## 3040 42 259 8 999 0 1.4 93.918
## 3041 36 274 2 999 0 -1.8 93.075
## 3042 45 461 1 999 0 1.1 93.994
## 3043 45 107 2 999 0 1.1 93.994
## 3044 37 110 5 999 0 1.4 93.918
## 3045 44 135 3 999 0 1.4 93.444
## 3046 31 107 2 999 0 -0.1 93.200
## 3047 58 454 2 999 0 1.4 93.444
## 3048 33 197 4 999 0 1.4 93.444
## 3049 49 97 1 999 0 1.4 93.918
## 3050 45 272 1 999 0 1.4 93.444
## 3051 36 127 2 999 0 1.1 93.994
## 3052 43 170 2 999 0 -0.1 93.200
## 3053 34 90 2 999 0 1.4 93.444
## 3054 40 46 1 999 0 1.1 93.994
## 3055 58 129 2 999 0 1.4 93.444
## 3056 57 313 1 999 0 1.4 93.918
## 3057 52 910 2 999 0 1.4 94.465
## 3058 39 188 1 999 0 1.4 93.918
## 3059 53 215 2 999 0 1.1 93.994
## 3060 36 225 2 999 0 1.1 93.994
## 3061 34 97 9 999 0 1.1 93.994
## 3062 31 344 4 999 0 -1.8 92.893
## 3063 41 347 1 999 0 -1.8 93.075
## 3064 47 20 18 999 0 1.4 93.918
## 3065 42 2372 3 999 0 1.4 93.444
## 3066 29 565 1 999 0 -1.8 92.893
## 3067 32 114 1 999 0 -1.8 92.893
## 3068 33 182 2 999 0 1.4 94.465
## 3069 24 220 1 999 0 -2.9 92.963
## 3070 40 179 1 999 0 -1.8 93.075
## 3071 34 197 1 999 0 1.4 94.465
## 3072 45 9 4 999 0 -1.8 92.893
## 3073 52 491 3 999 0 1.4 93.918
## 3074 35 109 1 999 0 -1.8 92.893
## 3075 36 148 6 999 0 1.4 93.918
## 3076 49 97 1 999 0 -1.8 93.075
## 3077 60 368 2 999 0 1.4 93.444
## 3078 52 97 3 999 0 1.4 93.918
## 3079 46 243 4 999 0 -1.8 92.893
## 3080 44 398 7 999 0 1.1 93.994
## 3081 40 107 1 999 0 -0.1 93.200
## 3082 34 75 1 999 0 -3.4 92.649
## 3083 43 246 2 999 0 1.4 94.465
## 3084 53 313 4 999 0 1.4 93.444
## 3085 37 88 4 999 0 1.4 94.465
## 3086 29 128 1 999 0 -2.9 92.963
## 3087 42 485 2 999 0 1.4 93.918
## 3088 40 104 4 999 0 1.4 94.465
## 3089 34 138 8 999 0 -1.8 92.843
## 3090 55 5 3 999 0 1.1 93.994
## 3091 31 99 7 999 0 1.4 93.444
## 3092 32 386 2 999 0 -1.8 93.075
## 3093 33 16 5 999 0 -1.8 92.893
## 3094 40 189 1 999 0 1.4 93.918
## 3095 47 163 3 999 0 1.4 93.444
## 3096 37 387 1 999 0 -0.1 93.200
## 3097 31 111 1 999 0 1.4 93.918
## 3098 32 128 1 999 0 1.4 93.918
## 3099 36 90 2 999 0 1.1 93.994
## 3100 54 490 12 999 0 1.4 94.465
## 3101 32 116 1 999 0 -1.8 92.843
## 3102 40 60 2 999 0 1.4 94.465
## 3103 55 431 1 999 0 1.4 94.465
## 3104 49 225 1 999 0 1.4 94.465
## 3105 27 384 1 999 0 -1.8 93.075
## 3106 32 746 1 999 0 1.1 93.994
## 3107 32 96 6 999 0 -1.8 92.843
## 3108 51 159 1 999 0 1.4 94.465
## 3109 35 447 3 999 0 1.4 93.918
## 3110 45 79 1 999 0 1.1 93.994
## 3111 32 21 12 999 0 -1.8 92.893
## 3112 55 342 1 999 0 1.1 93.994
## 3113 39 6 4 999 0 -1.8 92.893
## 3114 37 326 3 999 0 -1.8 93.075
## 3115 46 59 8 999 0 1.4 93.918
## 3116 41 17 24 999 0 1.4 93.918
## 3117 31 1248 3 999 0 1.4 94.465
## 3118 35 463 2 999 0 1.4 93.444
## 3119 39 266 1 999 0 1.4 93.918
## 3120 28 535 2 999 0 1.4 93.918
## 3121 39 217 3 999 0 1.4 93.444
## 3122 43 181 2 999 0 1.1 93.994
## 3123 37 459 1 999 0 -3.4 92.649
## 3124 37 126 1 999 0 1.4 93.444
## 3125 32 98 3 999 0 1.4 93.444
## 3126 22 224 1 999 0 -1.8 93.075
## 3127 29 223 3 999 0 1.4 93.918
## 3128 40 354 7 999 0 1.4 94.465
## 3129 59 39 1 999 0 1.4 93.918
## 3130 49 36 4 999 0 1.4 93.444
## 3131 43 92 1 999 0 -0.1 93.200
## 3132 38 165 2 999 0 1.1 93.994
## 3133 28 102 2 999 0 1.4 94.465
## 3134 39 612 1 999 0 -1.8 92.893
## 3135 40 68 2 999 0 1.4 93.918
## 3136 37 115 4 999 0 1.1 93.994
## 3137 49 80 1 999 0 -0.1 93.200
## 3138 40 154 3 999 0 1.4 94.465
## 3139 45 170 2 999 0 1.1 93.994
## 3140 35 368 6 999 0 1.1 93.994
## 3141 53 372 2 999 0 -1.8 93.075
## 3142 36 1174 1 999 0 -1.8 93.075
## 3143 37 85 8 999 0 1.4 94.465
## 3144 27 262 3 999 0 -1.7 94.055
## 3145 44 78 3 999 0 1.4 94.465
## 3146 27 164 3 999 0 1.4 93.918
## 3147 39 135 1 999 0 1.1 93.994
## 3148 36 7 3 999 0 -1.8 93.075
## 3149 35 369 1 999 0 1.1 93.994
## 3150 53 67 3 999 0 -1.8 93.075
## 3151 39 79 2 999 0 1.4 93.918
## 3152 31 201 3 999 0 -1.8 93.075
## 3153 32 366 2 999 0 -1.8 92.893
## 3154 38 241 2 999 0 1.1 93.994
## 3155 38 857 2 999 0 1.4 93.918
## 3156 25 612 7 999 0 -1.8 92.893
## 3157 50 144 1 999 0 1.4 93.918
## 3158 55 86 7 999 0 1.1 93.994
## 3159 32 105 1 999 0 -1.8 93.075
## 3160 28 200 2 999 0 -1.8 92.893
## 3161 22 110 7 999 0 1.4 93.918
## 3162 52 130 1 999 0 1.1 93.994
## 3163 37 131 3 999 0 -1.8 93.075
## 3164 59 337 4 999 0 1.4 93.444
## 3165 30 13 27 999 0 1.4 93.918
## 3166 39 87 1 999 0 1.4 94.465
## 3167 23 132 1 999 0 -1.8 93.075
## 3168 57 496 1 999 0 1.4 93.918
## 3169 32 155 2 999 0 1.1 93.994
## 3170 19 213 3 999 0 -1.8 93.075
## 3171 33 139 3 999 0 -0.1 93.200
## 3172 65 145 2 999 0 -2.9 92.963
## 3173 31 413 1 999 0 1.4 93.444
## 3174 32 112 1 999 0 1.1 93.994
## 3175 55 124 3 999 0 -0.1 93.200
## 3176 58 849 2 999 0 1.1 93.994
## 3177 33 73 4 999 0 -1.8 93.075
## 3178 26 158 5 999 0 -1.8 92.893
## 3179 46 550 3 999 0 1.4 94.465
## 3180 32 165 4 999 0 -0.1 93.200
## 3181 35 55 3 999 0 1.1 93.994
## 3182 27 125 1 999 0 -0.1 93.200
## 3183 27 294 2 999 0 -1.8 93.075
## 3184 42 388 1 999 0 1.4 93.918
## 3185 36 280 1 999 0 1.4 93.444
## 3186 32 217 1 999 0 1.4 93.444
## 3187 31 433 2 999 0 -1.8 92.893
## 3188 22 767 12 999 0 1.4 93.918
## 3189 38 123 1 999 0 1.4 94.465
## 3190 44 208 1 999 0 -1.8 92.893
## 3191 40 81 5 999 0 1.4 93.918
## 3192 36 256 1 999 0 1.1 93.994
## 3193 36 37 1 999 0 1.4 94.465
## 3194 41 106 1 999 0 1.4 93.918
## 3195 44 53 1 999 0 1.4 93.918
## 3196 30 270 3 999 0 1.4 93.918
## 3197 51 151 4 999 0 1.4 93.918
## 3198 28 240 1 999 0 -1.8 92.893
## 3199 29 337 3 999 0 -0.1 93.200
## 3200 35 114 1 999 0 -1.8 93.075
## 3201 56 95 1 999 0 -1.8 93.075
## 3202 54 832 18 999 0 1.4 94.465
## 3203 32 83 1 999 0 -1.8 93.075
## 3204 33 68 9 999 0 1.4 93.444
## 3205 49 626 3 999 0 1.4 93.918
## 3206 40 146 1 999 0 -0.1 93.200
## 3207 46 173 1 999 0 -0.1 93.200
## 3208 33 356 1 999 0 1.4 93.918
## 3209 55 158 1 999 0 -1.8 93.075
## 3210 51 19 14 999 0 1.4 93.918
## 3211 42 110 3 999 0 1.4 93.918
## 3212 31 115 16 999 0 -1.8 93.075
## 3213 36 133 4 999 0 1.1 93.994
## 3214 41 127 6 999 0 1.4 94.465
## 3215 36 139 3 999 0 -0.1 93.200
## 3216 39 364 2 999 0 1.1 93.994
## 3217 45 671 2 999 0 1.4 93.444
## 3218 38 54 1 999 0 -1.8 93.075
## 3219 35 95 3 999 0 1.1 93.994
## 3220 30 63 3 999 0 -1.8 92.893
## 3221 52 104 1 999 0 -0.1 93.200
## 3222 39 436 2 999 0 1.4 93.444
## 3223 51 596 3 999 0 1.4 93.918
## 3224 28 318 2 999 0 1.1 93.994
## 3225 59 306 1 999 0 1.4 93.918
## 3226 54 53 3 999 0 1.4 93.444
## 3227 37 96 1 999 0 1.4 94.465
## 3228 35 63 5 999 0 1.1 93.994
## 3229 57 932 2 999 0 1.4 93.444
## 3230 32 67 2 999 0 1.4 93.918
## 3231 33 167 1 999 0 -1.8 92.893
## 3232 35 228 1 999 0 1.4 93.444
## 3233 28 442 1 999 0 -1.8 93.075
## 3234 36 239 4 999 0 1.1 93.994
## 3235 57 215 3 999 0 1.4 94.465
## 3236 41 120 5 999 0 1.1 93.994
## 3237 30 463 2 999 0 1.4 93.918
## 3238 47 89 2 999 0 1.4 93.444
## 3239 35 1336 4 999 0 1.4 93.918
## 3240 40 102 5 999 0 1.4 93.918
## 3241 54 178 4 999 0 1.4 93.918
## 3242 54 313 1 999 0 1.4 93.918
## 3243 44 240 2 999 0 1.4 93.444
## 3244 23 200 1 999 0 -1.8 92.893
## 3245 40 111 2 999 0 -0.1 93.200
## 3246 34 593 2 999 0 1.1 93.994
## 3247 29 210 2 999 0 -1.8 93.075
## 3248 50 273 1 999 0 1.4 93.444
## 3249 31 282 1 999 0 -0.1 93.200
## 3250 23 821 3 999 0 1.4 93.918
## 3251 39 525 1 999 0 -1.8 92.893
## 3252 43 245 1 999 0 1.4 93.918
## 3253 30 903 4 999 0 1.4 93.918
## 3254 69 355 3 999 0 -3.4 92.649
## 3255 53 154 3 999 0 1.4 94.465
## 3256 43 487 1 999 0 1.4 94.465
## 3257 36 120 1 999 0 1.4 93.444
## 3258 83 75 2 999 0 -3.4 92.379
## 3259 32 188 4 999 0 1.4 94.465
## 3260 32 805 2 999 0 1.4 94.465
## 3261 29 201 2 999 0 1.4 93.444
## 3262 29 441 4 999 0 -0.1 93.200
## 3263 43 88 4 999 0 1.4 93.918
## 3264 52 51 1 999 0 -1.8 92.893
## 3265 37 103 2 999 0 1.4 93.444
## 3266 71 349 1 999 0 -1.8 93.075
## 3267 48 669 1 999 0 -3.4 92.379
## 3268 42 230 6 999 0 -1.8 92.893
## 3269 32 232 2 999 0 -1.8 92.893
## 3270 41 60 2 999 0 -1.8 93.075
## 3271 39 303 3 999 0 -1.8 92.893
## 3272 28 101 2 999 0 1.1 93.994
## 3273 23 633 1 999 0 1.1 93.994
## 3274 35 419 2 999 0 -2.9 92.201
## 3275 41 367 3 999 0 1.4 94.465
## 3276 38 67 2 999 0 1.4 93.444
## 3277 43 209 2 999 0 -1.8 92.893
## 3278 29 145 4 999 0 1.4 94.465
## 3279 43 65 4 999 0 1.4 93.918
## 3280 57 89 2 999 0 -0.1 93.200
## 3281 33 148 1 999 0 1.1 93.994
## 3282 33 35 2 999 0 1.4 93.918
## 3283 37 247 3 999 0 1.4 93.918
## 3284 59 459 7 999 0 1.4 93.918
## 3285 31 313 2 999 0 1.1 93.994
## 3286 24 477 1 999 0 -1.8 93.075
## 3287 57 836 1 999 0 -1.8 93.075
## 3288 50 20 3 999 0 1.4 93.444
## 3289 48 349 2 999 0 1.4 94.465
## 3290 35 365 1 999 0 -3.4 92.649
## 3291 32 540 2 999 0 -2.9 92.201
## 3292 42 217 4 999 0 1.4 94.465
## 3293 29 133 5 999 0 1.4 93.444
## 3294 40 40 9 999 0 1.4 93.444
## 3295 44 634 1 999 0 -3.4 92.431
## 3296 25 422 2 999 0 1.4 93.918
## 3297 31 196 3 999 0 1.4 93.918
## 3298 32 188 2 999 0 1.4 94.465
## 3299 26 190 1 999 0 -1.8 93.075
## 3300 36 165 2 999 0 1.4 93.444
## 3301 31 370 3 999 0 -1.8 93.075
## 3302 44 107 3 999 0 1.4 93.918
## 3303 30 360 2 999 0 1.4 94.465
## 3304 48 903 1 999 0 1.4 93.918
## 3305 56 364 1 999 0 1.1 93.994
## 3306 56 379 1 999 0 1.1 93.994
## 3307 37 391 1 999 0 1.1 93.994
## 3308 36 59 1 999 0 -1.8 92.893
## 3309 40 433 1 999 0 -1.8 92.893
## 3310 45 149 1 999 0 -0.1 93.200
## 3311 46 75 1 999 0 -1.8 93.075
## 3312 30 228 1 999 0 1.4 93.918
## 3313 34 81 2 999 0 1.4 93.444
## 3314 40 154 1 999 0 1.4 93.918
## 3315 56 228 2 999 0 1.4 93.444
## 3316 29 1042 2 999 0 -1.8 93.075
## 3317 45 102 4 999 0 -0.1 93.200
## 3318 23 270 3 999 0 -2.9 92.469
## 3319 45 452 2 999 0 -1.8 93.075
## 3320 31 160 5 999 0 1.4 93.918
## 3321 52 259 3 999 0 1.1 93.994
## 3322 36 311 2 999 0 1.4 94.465
## 3323 28 243 2 999 0 1.4 94.465
## 3324 33 392 1 999 0 1.1 93.994
## 3325 41 124 4 999 0 1.4 93.444
## 3326 28 964 1 999 0 1.4 93.918
## 3327 50 1463 2 999 0 -1.8 93.075
## 3328 39 294 2 999 0 -1.8 92.893
## 3329 27 141 1 999 0 1.4 93.918
## 3330 48 54 1 999 0 -1.7 94.055
## 3331 31 560 2 999 0 -0.1 93.200
## 3332 26 123 1 999 0 1.4 94.465
## 3333 55 1136 1 999 0 1.4 94.465
## 3334 30 126 4 999 0 1.4 93.918
## 3335 29 196 4 999 0 1.4 93.918
## 3336 43 277 1 999 0 1.1 93.994
## 3337 33 215 3 999 0 1.1 93.994
## 3338 44 96 2 999 0 1.1 93.994
## 3339 40 91 3 999 0 1.1 93.994
## 3340 28 337 4 999 0 1.1 93.994
## 3341 49 258 2 999 0 1.4 93.918
## 3342 43 312 1 999 0 1.1 93.994
## 3343 38 171 2 999 0 -1.8 92.893
## 3344 54 843 2 999 0 1.1 93.994
## 3345 44 128 2 999 0 1.4 93.918
## 3346 31 198 2 999 0 1.4 94.465
## 3347 43 247 6 999 0 -1.8 92.893
## 3348 25 354 1 999 0 1.4 93.918
## 3349 46 124 4 999 0 -1.8 93.075
## 3350 28 28 2 999 0 -1.8 92.893
## 3351 50 38 1 999 0 -1.8 93.075
## 3352 48 716 3 999 0 1.4 93.918
## 3353 33 60 9 999 0 1.4 94.465
## 3354 47 194 1 999 0 1.1 93.994
## 3355 30 171 3 999 0 1.4 93.918
## 3356 31 55 1 999 0 1.1 93.994
## 3357 50 680 2 999 0 1.1 93.994
## 3358 33 11 3 999 0 -1.8 93.075
## 3359 56 86 4 999 0 1.4 93.918
## 3360 45 296 1 999 0 1.4 93.918
## 3361 30 114 2 999 0 1.1 93.994
## 3362 39 23 1 999 0 1.4 94.465
## 3363 30 295 4 999 0 1.4 93.918
## 3364 45 223 1 999 0 1.1 93.994
## 3365 27 336 9 999 0 -1.8 92.893
## 3366 40 335 1 999 0 -1.8 93.075
## 3367 39 178 1 999 0 1.4 94.465
## 3368 26 161 3 999 0 1.1 93.994
## 3369 50 88 2 999 0 1.4 93.444
## 3370 36 280 2 999 0 1.4 94.465
## 3371 45 188 1 999 0 -0.1 93.200
## 3372 34 150 2 999 0 1.1 93.994
## 3373 31 535 2 999 0 1.1 93.994
## 3374 38 361 2 999 0 1.4 94.465
## 3375 32 209 2 999 0 1.4 93.918
## 3376 33 305 2 999 0 -1.8 92.893
## 3377 34 560 1 999 0 1.4 93.918
## 3378 31 103 1 999 0 1.4 93.444
## 3379 24 209 1 999 0 -1.8 93.075
## 3380 41 105 2 999 0 1.4 93.444
## 3381 35 146 1 999 0 1.1 93.994
## 3382 38 30 4 999 0 -1.8 92.893
## 3383 29 556 1 999 0 -1.8 92.893
## 3384 53 53 1 999 0 -0.1 93.200
## 3385 82 185 2 999 0 -3.4 92.431
## 3386 29 234 3 999 0 1.4 93.444
## 3387 46 453 2 999 0 -1.8 93.075
## 3388 31 488 3 999 0 1.1 93.994
## 3389 47 126 3 999 0 1.4 93.918
## 3390 33 109 1 999 0 1.1 93.994
## 3391 52 199 7 999 0 1.4 93.918
## 3392 54 743 1 999 0 -1.8 93.075
## 3393 50 248 1 999 0 1.1 93.994
## 3394 32 443 2 999 0 1.4 94.465
## 3395 23 354 3 999 0 -1.8 93.075
## 3396 31 297 3 999 0 1.1 93.994
## 3397 36 230 2 999 0 1.4 93.918
## 3398 29 117 1 999 0 1.4 93.918
## 3399 38 234 1 999 0 1.4 93.444
## 3400 18 72 2 999 0 -3.4 92.379
## 3401 31 84 1 999 0 -2.9 92.963
## 3402 47 1122 1 999 0 -1.8 93.075
## 3403 31 375 2 999 0 -1.7 94.027
## 3404 43 380 1 999 0 1.4 93.918
## 3405 36 257 2 999 0 -1.8 92.893
## 3406 28 63 1 999 0 -1.8 93.075
## 3407 40 114 2 999 0 1.1 93.994
## 3408 29 215 1 999 0 -1.8 93.369
## 3409 38 240 1 999 0 1.1 93.994
## 3410 32 325 1 999 0 1.1 93.994
## 3411 49 537 5 999 0 1.4 94.465
## 3412 31 79 3 999 0 -1.8 92.893
## 3413 43 327 4 999 0 -1.8 92.893
## 3414 51 70 3 999 0 1.4 93.918
## 3415 51 212 1 999 0 -2.9 92.201
## 3416 38 141 3 999 0 1.1 93.994
## 3417 34 139 1 999 0 1.1 93.994
## 3418 35 85 2 999 0 1.4 93.918
## 3419 40 119 2 999 0 1.4 93.918
## 3420 39 690 3 999 0 1.4 93.918
## 3421 32 247 1 999 0 1.4 93.444
## 3422 26 256 1 999 0 1.4 93.918
## 3423 45 572 4 999 0 1.4 94.465
## 3424 29 119 1 999 0 -1.8 92.893
## 3425 75 247 2 999 0 -3.4 92.431
## 3426 44 360 3 999 0 1.4 94.465
## 3427 55 197 1 999 0 1.4 93.918
## 3428 32 72 2 999 0 1.1 93.994
## 3429 59 477 1 999 0 1.1 93.994
## 3430 31 153 3 999 0 1.4 93.918
## 3431 25 21 7 999 0 -1.8 92.893
## 3432 33 66 7 999 0 1.4 93.918
## 3433 34 110 2 999 0 -0.1 93.200
## 3434 41 146 1 999 0 1.4 93.444
## 3435 36 33 2 999 0 1.1 93.994
## 3436 48 195 2 999 0 -1.8 93.369
## 3437 51 280 2 999 0 -0.1 93.200
## 3438 31 133 1 999 0 1.4 93.918
## 3439 37 91 2 999 0 -2.9 92.469
## 3440 55 197 9 999 0 1.1 93.994
## 3441 35 297 4 999 0 -1.8 92.893
## 3442 30 3094 2 999 0 1.1 93.994
## 3443 28 419 2 999 0 1.4 94.465
## 3444 58 160 1 999 0 -2.9 92.469
## 3445 60 442 2 999 0 1.1 93.994
## 3446 53 298 5 999 0 1.1 93.994
## 3447 31 325 3 999 0 1.4 94.465
## 3448 35 116 7 999 0 1.4 93.444
## 3449 53 82 2 999 0 1.4 93.444
## 3450 35 159 1 999 0 1.4 93.444
## 3451 29 164 3 999 0 -1.8 92.893
## 3452 37 297 2 999 0 -1.8 92.893
## 3453 43 613 1 999 0 -3.4 92.379
## 3454 42 212 1 999 0 -1.8 92.893
## 3455 29 147 1 999 0 1.1 93.994
## 3456 32 182 1 999 0 1.4 93.918
## 3457 36 143 2 999 0 -3.4 92.431
## 3458 42 159 1 999 0 1.1 93.994
## 3459 53 107 3 999 0 -2.9 92.963
## 3460 50 192 1 999 0 1.4 93.918
## 3461 44 668 7 999 0 1.1 93.994
## 3462 36 210 1 999 0 1.1 93.994
## 3463 44 73 3 999 0 1.4 94.465
## 3464 27 86 9 999 0 1.4 93.918
## 3465 43 1212 1 999 0 1.4 93.918
## 3466 57 127 4 999 0 1.4 93.444
## 3467 55 228 2 999 0 1.4 94.465
## 3468 41 442 11 999 0 1.4 94.465
## 3469 49 75 2 999 0 1.4 93.918
## 3470 41 239 3 999 0 1.1 93.994
## 3471 35 471 1 999 0 -2.9 92.201
## 3472 29 111 1 999 0 1.4 93.444
## 3473 48 169 1 999 0 1.4 93.918
## 3474 37 492 9 999 0 1.1 93.994
## 3475 32 123 1 999 0 1.4 94.465
## 3476 34 126 1 999 0 1.4 94.465
## 3477 28 199 1 999 0 -1.8 92.893
## 3478 41 128 2 999 0 -1.7 94.215
## 3479 46 127 1 999 0 1.1 93.994
## 3480 30 341 1 999 0 -1.8 93.369
## 3481 52 867 2 999 0 1.4 93.918
## 3482 42 64 2 999 0 1.1 93.994
## 3483 43 362 1 999 0 1.4 93.918
## 3484 37 219 2 999 0 1.1 93.994
## 3485 50 207 3 999 0 -1.8 92.893
## 3486 30 67 1 999 0 1.4 94.465
## 3487 55 288 2 999 0 -0.1 93.200
## 3488 34 165 2 999 0 1.1 93.994
## 3489 41 548 2 999 0 1.4 94.465
## 3490 43 196 1 999 0 1.1 93.994
## 3491 45 16 11 999 0 1.4 93.444
## 3492 31 159 2 999 0 1.1 93.994
## 3493 30 444 5 999 0 1.4 93.918
## 3494 38 54 8 999 0 1.4 93.918
## 3495 33 273 1 999 0 1.1 93.994
## 3496 28 113 1 999 0 -1.8 92.893
## 3497 35 17 7 999 0 -1.8 92.893
## 3498 45 212 5 999 0 1.1 93.994
## 3499 52 161 1 999 0 1.4 93.918
## 3500 32 396 3 999 0 1.1 93.994
## 3501 35 228 2 999 0 1.4 93.918
## 3502 59 121 6 999 0 -2.9 92.201
## 3503 35 217 1 999 0 1.4 93.444
## 3504 42 257 1 999 0 -1.8 93.075
## 3505 50 433 4 999 0 1.4 93.918
## 3506 70 411 1 999 0 -1.7 94.027
## 3507 45 133 9 999 0 1.4 93.444
## 3508 48 486 2 999 0 -1.8 92.893
## 3509 34 227 15 999 0 1.4 94.465
## 3510 29 68 2 999 0 -1.8 92.893
## 3511 31 176 2 999 0 1.1 93.994
## 3512 58 100 2 999 0 -2.9 92.963
## 3513 52 88 1 999 0 1.4 93.918
## 3514 46 132 1 999 0 -0.1 93.200
## 3515 33 340 1 999 0 -0.1 93.200
## 3516 39 125 2 999 0 1.4 93.444
## 3517 40 343 1 999 0 1.4 93.444
## 3518 57 212 1 999 0 1.1 93.994
## 3519 52 128 3 999 0 1.4 93.918
## 3520 45 168 4 999 0 1.4 93.918
## 3521 26 802 2 999 0 -1.8 92.893
## 3522 31 125 1 999 0 -1.8 92.893
## 3523 27 38 9 999 0 1.1 93.994
## 3524 33 292 1 999 0 -0.1 93.200
## 3525 45 103 1 999 0 1.4 93.444
## 3526 41 52 6 999 0 1.4 93.918
## 3527 30 249 2 999 0 1.1 93.994
## 3528 50 106 3 999 0 1.4 93.444
## 3529 43 222 2 999 0 -0.1 93.200
## 3530 36 120 2 999 0 1.1 93.994
## 3531 35 30 1 999 0 1.4 93.444
## 3532 43 269 1 999 0 1.4 93.444
## 3533 29 420 1 999 0 1.1 93.994
## 3534 37 37 1 999 0 1.4 93.918
## 3535 30 332 1 999 0 1.4 93.918
## 3536 51 101 2 999 0 -0.1 93.200
## 3537 28 185 5 999 0 1.1 93.994
## 3538 29 122 12 999 0 1.4 93.918
## 3539 38 129 2 999 0 1.4 94.465
## 3540 42 175 4 999 0 -2.9 92.201
## 3541 55 266 2 999 0 1.4 94.465
## 3542 59 166 1 999 0 1.1 93.994
## 3543 56 366 1 999 0 1.4 93.444
## 3544 32 207 1 999 0 1.4 93.918
## 3545 42 70 1 999 0 -0.1 93.200
## 3546 45 702 4 999 0 1.1 93.994
## 3547 56 136 3 999 0 -1.8 93.075
## 3548 39 182 4 999 0 1.4 94.465
## 3549 46 93 15 999 0 1.4 93.444
## 3550 41 863 1 999 0 1.1 93.994
## 3551 25 83 2 999 0 1.4 93.918
## 3552 27 275 1 999 0 -1.8 92.893
## 3553 36 159 2 999 0 1.4 93.444
## 3554 35 189 1 999 0 1.4 93.444
## 3555 29 90 2 999 0 1.4 93.444
## 3556 33 466 1 999 0 1.4 93.918
## 3557 29 78 1 999 0 1.1 93.994
## 3558 49 285 1 999 0 1.4 94.465
## 3559 43 24 13 999 0 1.4 93.444
## 3560 52 437 3 999 0 -1.8 92.893
## 3561 32 282 1 999 0 -2.9 92.201
## 3562 43 258 2 999 0 1.1 93.994
## 3563 32 93 1 999 0 1.1 93.994
## 3564 41 396 2 999 0 1.4 93.918
## 3565 45 553 2 999 0 1.4 94.465
## 3566 35 35 10 999 0 1.4 93.444
## 3567 20 169 1 999 0 -3.4 92.431
## 3568 35 12 12 999 0 1.4 93.918
## 3569 47 268 6 999 0 1.1 93.994
## 3570 46 93 3 999 0 1.4 93.918
## 3571 34 354 2 999 0 -0.1 93.200
## 3572 38 22 3 999 0 -1.8 93.075
## 3573 35 192 3 999 0 1.4 93.918
## 3574 34 86 4 999 0 1.1 93.994
## 3575 29 238 3 999 0 1.1 93.994
## 3576 40 837 2 999 0 1.4 93.918
## 3577 36 235 4 999 0 -1.8 92.893
## 3578 43 267 2 999 0 1.1 93.994
## 3579 40 141 3 999 0 -3.4 92.649
## 3580 30 124 2 999 0 1.4 93.918
## 3581 50 102 1 999 0 -0.1 93.200
## 3582 40 162 4 999 0 1.4 93.918
## 3583 53 40 5 999 0 -1.8 92.893
## 3584 26 106 3 999 0 1.4 93.918
## 3585 39 245 2 999 0 1.4 93.918
## 3586 39 155 3 999 0 1.1 93.994
## 3587 30 146 3 999 0 1.4 93.444
## 3588 34 228 1 999 0 1.1 93.994
## 3589 39 1053 2 999 0 1.4 94.465
## 3590 31 85 4 999 0 1.4 93.918
## 3591 31 624 5 999 0 1.4 93.918
## 3592 29 808 1 999 0 1.4 93.918
## 3593 48 60 1 999 0 -0.1 93.200
## 3594 54 834 9 999 0 1.4 93.444
## 3595 32 792 1 999 0 1.4 93.918
## 3596 44 193 2 999 0 1.4 93.918
## 3597 32 223 2 999 0 1.4 94.465
## 3598 27 236 2 999 0 1.4 93.918
## 3599 39 333 1 999 0 -1.8 92.893
## 3600 32 827 2 999 0 -1.8 92.893
## 3601 46 513 5 999 0 1.4 93.918
## 3602 41 272 1 999 0 -1.7 94.027
## 3603 37 121 2 999 0 -1.8 92.893
## 3604 33 331 1 999 0 1.4 93.444
## 3605 35 123 2 999 0 1.1 93.994
## 3606 44 109 1 999 0 1.1 93.994
## 3607 57 181 4 999 0 -0.1 93.200
## 3608 36 445 4 999 0 1.4 93.918
## 3609 52 326 11 999 0 1.4 93.918
## 3610 50 203 2 999 0 1.4 93.444
## 3611 35 215 1 999 0 -1.8 92.893
## 3612 40 83 5 999 0 -1.8 93.075
## 3613 39 831 4 999 0 -1.8 92.893
## 3614 39 85 1 999 0 -1.8 92.893
## 3615 30 235 3 999 0 1.4 93.918
## 3616 40 265 2 999 0 1.4 93.918
## 3617 55 413 1 999 0 1.1 93.994
## 3618 49 119 4 999 0 1.4 93.444
## 3619 45 1026 2 999 0 1.4 93.444
## 3620 50 36 1 999 0 1.4 93.444
## 3621 32 419 2 999 0 1.4 93.918
## 3622 42 559 3 999 0 1.1 93.994
## 3623 40 15 7 999 0 -1.8 92.893
## 3624 24 722 3 999 0 1.4 93.918
## 3625 30 34 1 999 0 1.4 93.918
## 3626 33 854 1 999 0 1.4 93.918
## 3627 56 102 1 999 0 1.4 93.444
## 3628 42 364 1 999 0 1.1 93.994
## 3629 35 33 12 999 0 1.4 93.918
## 3630 32 79 3 999 0 1.4 93.918
## 3631 31 314 3 999 0 1.4 93.444
## 3632 31 419 3 999 0 1.4 93.444
## 3633 34 2462 2 999 0 -0.1 93.200
## 3634 34 218 1 999 0 1.4 93.918
## 3635 85 129 3 999 0 -1.8 93.075
## 3636 35 540 2 999 0 -0.1 93.200
## 3637 42 149 1 999 0 -0.1 93.200
## 3638 31 105 6 999 0 -0.1 93.200
## 3639 53 460 1 999 0 1.1 93.994
## 3640 39 21 8 999 0 1.4 94.465
## 3641 44 79 1 999 0 1.4 93.444
## 3642 32 49 1 999 0 -1.8 92.893
## 3643 46 114 2 999 0 -1.8 92.893
## 3644 38 1272 1 999 0 -1.8 92.893
## 3645 32 1048 1 999 0 -2.9 92.963
## 3646 43 318 7 999 0 1.4 93.918
## 3647 50 35 3 999 0 -0.1 93.200
## 3648 39 102 1 999 0 -0.1 93.200
## 3649 32 112 1 999 0 1.1 93.994
## 3650 37 71 15 999 0 1.4 93.918
## 3651 37 76 1 999 0 1.4 93.444
## 3652 34 11 3 999 0 1.4 93.918
## 3653 41 84 5 999 0 1.4 93.444
## 3654 41 240 2 999 0 1.1 93.994
## 3655 35 272 1 999 0 -1.8 93.075
## 3656 30 344 1 999 0 1.4 94.465
## 3657 39 742 1 999 0 1.4 93.918
## 3658 41 1111 3 999 0 1.1 93.994
## 3659 57 76 1 999 0 -0.1 93.200
## 3660 57 102 7 999 0 -1.8 92.893
## 3661 54 111 2 999 0 1.4 93.918
## 3662 56 68 2 999 0 1.4 93.444
## 3663 57 76 5 999 0 1.1 93.994
## 3664 32 77 2 999 0 -1.8 92.893
## 3665 32 167 1 999 0 1.1 93.994
## 3666 36 90 2 999 0 1.4 94.465
## 3667 41 1575 1 999 0 1.1 93.994
## 3668 46 549 1 999 0 -1.8 92.893
## 3669 27 84 14 999 0 1.1 93.994
## 3670 26 192 1 999 0 1.4 93.918
## 3671 32 83 2 999 0 1.4 94.465
## 3672 34 264 1 999 0 1.4 93.918
## 3673 29 178 1 999 0 1.4 93.918
## 3674 41 295 3 999 0 1.4 94.465
## 3675 45 71 2 999 0 1.4 94.465
## 3676 35 405 2 999 0 1.4 94.465
## 3677 33 153 7 999 0 1.4 93.444
## 3678 45 116 1 999 0 1.1 93.994
## 3679 35 57 1 999 0 -0.1 93.200
## 3680 49 173 1 999 0 1.1 93.994
## 3681 37 363 1 999 0 -1.7 94.055
## 3682 32 296 2 999 0 -0.1 93.200
## 3683 27 322 1 999 0 1.1 93.994
## 3684 36 7 6 999 0 -1.8 92.893
## 3685 45 482 3 999 0 1.4 93.444
## 3686 49 326 3 999 0 1.4 93.918
## 3687 43 238 3 999 0 -1.8 92.893
## 3688 28 225 3 999 0 1.4 93.918
## 3689 33 85 8 999 0 1.4 93.918
## 3690 36 109 3 999 0 -3.4 92.431
## 3691 33 125 3 999 0 1.1 93.994
## 3692 47 93 1 999 0 1.4 93.444
## 3693 39 297 1 999 0 1.1 93.994
## 3694 37 233 3 999 0 -1.8 93.075
## 3695 56 60 20 999 0 1.4 94.465
## 3696 32 66 2 999 0 -3.4 92.649
## 3697 39 87 5 999 0 1.1 93.994
## 3698 30 88 3 999 0 -1.8 92.843
## 3699 30 720 1 999 0 1.4 93.444
## 3700 23 271 2 999 0 1.4 93.918
## 3701 35 114 1 999 0 1.4 94.465
## 3702 39 5 2 999 0 1.1 93.994
## 3703 52 101 1 999 0 1.4 93.444
## 3704 44 90 4 999 0 -0.1 93.200
## 3705 31 94 4 999 0 1.4 94.465
## 3706 27 51 5 999 0 1.1 93.994
## 3707 56 92 1 999 0 -0.1 93.200
## 3708 41 479 1 999 0 -0.1 93.200
## 3709 62 154 2 999 0 -2.9 92.201
## 3710 37 168 1 999 0 1.1 93.994
## 3711 48 90 2 999 0 -0.1 93.200
## 3712 45 102 5 999 0 -1.8 92.893
## 3713 41 146 3 999 0 1.1 93.994
## 3714 38 221 2 999 0 -0.1 93.200
## 3715 45 281 4 999 0 1.4 94.465
## 3716 37 928 1 999 0 -2.9 92.201
## 3717 46 47 1 999 0 1.4 93.918
## 3718 43 288 1 999 0 -2.9 92.963
## 3719 51 229 2 999 0 1.4 93.918
## 3720 41 16 1 999 0 1.1 93.994
## 3721 35 118 4 999 0 1.4 93.918
## 3722 44 64 1 999 0 -1.8 92.893
## 3723 29 176 7 999 0 1.4 94.465
## 3724 38 219 4 999 0 1.1 93.994
## 3725 35 107 1 999 0 -1.8 93.075
## 3726 26 88 4 999 0 -1.8 92.893
## 3727 29 1147 2 999 0 1.1 93.994
## 3728 28 169 1 999 0 1.4 94.465
## 3729 49 820 1 999 0 -1.8 93.876
## 3730 30 114 2 999 0 -1.8 92.893
## 3731 48 429 6 999 0 1.4 93.444
## 3732 33 89 2 999 0 1.4 93.918
## 3733 39 407 1 999 0 -0.1 93.200
## 3734 41 170 1 999 0 -2.9 92.963
## 3735 48 69 19 999 0 1.1 93.994
## 3736 40 163 1 999 0 1.1 93.994
## 3737 27 173 2 999 0 -1.8 92.893
## 3738 56 190 1 999 0 1.4 93.444
## 3739 52 169 2 999 0 1.1 93.994
## 3740 41 127 1 999 0 1.4 93.444
## 3741 52 80 2 999 0 -1.8 92.893
## 3742 36 102 3 999 0 1.4 94.465
## 3743 40 61 2 999 0 1.4 94.465
## 3744 31 733 2 999 0 -1.8 92.893
## 3745 48 159 1 999 0 1.4 93.444
## 3746 38 20 1 999 0 1.1 93.994
## 3747 32 167 2 999 0 1.4 93.918
## 3748 52 26 2 999 0 1.4 94.465
## 3749 33 117 1 999 0 1.4 94.465
## 3750 33 101 3 999 0 1.4 93.444
## 3751 28 263 2 999 0 1.4 93.918
## 3752 48 85 1 999 0 1.4 94.465
## 3753 37 215 1 999 0 -0.1 93.200
## 3754 36 410 4 999 0 -1.8 92.893
## 3755 38 265 9 999 0 1.1 93.994
## 3756 37 277 2 999 0 1.4 93.918
## 3757 40 84 2 999 0 -1.8 92.893
## 3758 42 268 1 999 0 1.4 94.465
## 3759 38 344 1 999 0 -1.8 92.893
## 3760 38 125 2 999 0 1.4 93.918
## 3761 32 260 1 999 0 1.4 93.444
## 3762 35 77 2 999 0 1.4 93.918
## 3763 25 212 2 999 0 1.4 93.918
## 3764 44 168 1 999 0 1.4 93.918
## 3765 33 133 3 999 0 1.1 93.994
## 3766 35 7 1 999 0 -1.7 94.215
## 3767 31 213 1 999 0 -0.1 93.200
## 3768 71 117 3 999 0 -1.8 93.749
## 3769 30 103 7 999 0 1.4 93.444
## 3770 46 358 3 999 0 1.1 93.994
## 3771 28 171 5 999 0 1.4 94.465
## 3772 42 128 5 999 0 1.1 93.994
## 3773 33 83 4 999 0 -3.4 92.649
## 3774 45 269 3 999 0 1.4 93.918
## 3775 48 43 3 999 0 1.4 93.444
## 3776 45 87 3 999 0 1.1 93.994
## 3777 50 137 2 999 0 -1.8 93.075
## 3778 23 80 1 999 0 -2.9 92.201
## 3779 53 368 2 999 0 -1.8 92.893
## 3780 41 128 1 999 0 1.1 93.994
## 3781 34 202 2 999 0 1.1 93.994
## 3782 56 487 1 999 0 -0.1 93.200
## 3783 52 776 4 999 0 -1.8 92.893
## 3784 51 812 1 999 0 1.1 93.994
## 3785 40 21 35 999 0 1.4 93.918
## 3786 27 492 1 999 0 -2.9 92.963
## 3787 35 334 3 999 0 1.1 93.994
## 3788 28 1080 4 999 0 1.4 93.918
## 3789 42 84 2 999 0 1.4 93.918
## 3790 50 193 1 999 0 1.1 93.994
## 3791 29 132 1 999 0 -1.8 93.369
## 3792 39 391 2 999 0 1.1 93.994
## 3793 35 250 1 999 0 1.4 94.465
## 3794 46 146 4 999 0 -1.8 92.893
## 3795 41 59 1 999 0 -0.1 93.200
## 3796 32 360 17 999 0 1.4 93.918
## 3797 39 185 4 999 0 1.1 93.994
## 3798 32 187 1 999 0 -2.9 92.963
## 3799 30 429 2 999 0 -1.8 92.893
## 3800 39 31 3 999 0 1.4 94.465
## 3801 48 472 3 999 0 1.4 93.918
## 3802 45 527 1 999 0 -0.1 93.200
## 3803 50 18 16 999 0 1.1 93.994
## 3804 38 176 2 999 0 1.1 93.994
## 3805 47 16 1 999 0 1.1 93.994
## 3806 49 283 3 999 0 1.1 93.994
## 3807 30 314 2 999 0 1.1 93.994
## 3808 36 375 2 999 0 1.4 94.465
## 3809 57 86 4 999 0 -1.8 92.893
## 3810 50 326 1 999 0 1.1 93.994
## 3811 40 151 1 999 0 1.1 93.994
## 3812 40 190 2 999 0 1.1 93.994
## 3813 53 345 1 999 0 -1.7 94.055
## 3814 38 89 2 999 0 1.4 93.444
## 3815 43 99 4 999 0 -1.8 92.893
## 3816 27 402 1 999 0 1.4 93.918
## 3817 28 896 3 999 0 1.1 93.994
## 3818 27 326 1 999 0 1.4 93.918
## 3819 33 98 1 999 0 -0.1 93.200
## 3820 43 451 1 999 0 1.4 93.918
## 3821 47 9 6 999 0 -0.1 93.200
## 3822 56 69 1 999 0 1.4 94.465
## 3823 34 102 1 999 0 1.1 93.994
## 3824 42 76 1 999 0 -0.1 93.200
## 3825 30 74 1 999 0 -1.8 92.893
## 3826 46 303 3 999 0 1.1 93.994
## 3827 25 52 9 999 0 -1.8 92.893
## 3828 47 42 1 999 0 1.4 94.465
## 3829 35 345 1 999 0 -0.1 93.200
## 3830 77 348 1 999 0 -3.4 92.431
## 3831 49 51 1 999 0 -0.1 93.798
## 3832 25 104 2 999 0 1.1 93.994
## 3833 54 47 2 999 0 -1.8 92.843
## 3834 38 193 1 999 0 1.1 93.994
## 3835 39 51 1 999 0 1.4 93.918
## 3836 51 120 7 999 0 1.1 93.994
## 3837 42 1002 5 999 0 1.1 93.994
## 3838 36 422 3 999 0 1.4 93.918
## 3839 35 318 3 999 0 1.4 93.444
## 3840 43 306 5 999 0 1.4 93.444
## 3841 49 272 4 999 0 1.1 93.994
## 3842 46 344 1 999 0 -1.8 92.893
## 3843 31 383 3 999 0 1.4 93.918
## 3844 50 161 2 999 0 1.4 93.918
## 3845 38 98 1 999 0 1.4 94.465
## 3846 42 504 2 999 0 1.1 93.994
## 3847 47 140 2 999 0 1.4 93.444
## 3848 60 66 3 999 0 -3.4 92.649
## 3849 28 236 2 999 0 1.4 93.918
## 3850 42 418 3 999 0 1.4 93.918
## 3851 52 197 1 999 0 1.1 93.994
## 3852 48 362 1 999 0 1.4 93.444
## 3853 32 330 4 999 0 1.4 93.918
## 3854 45 64 1 999 0 1.4 93.444
## 3855 34 84 3 999 0 1.1 93.994
## 3856 50 541 1 999 0 1.4 93.444
## 3857 38 91 3 999 0 1.4 93.918
## 3858 46 1091 3 999 0 -1.8 92.893
## 3859 38 137 2 999 0 1.4 93.918
## 3860 28 1002 3 999 0 1.4 93.918
## 3861 30 17 5 999 0 1.4 94.465
## 3862 30 163 4 999 0 1.1 93.994
## 3863 59 130 8 999 0 1.4 93.918
## 3864 25 147 1 999 0 1.1 93.994
## 3865 33 73 4 999 0 1.4 93.444
## 3866 45 27 2 999 0 1.4 93.918
## 3867 54 141 2 999 0 -2.9 92.469
## 3868 48 1130 4 999 0 -1.8 92.893
## 3869 35 695 4 999 0 1.1 93.994
## 3870 40 270 1 999 0 1.4 94.465
## 3871 32 96 1 999 0 1.4 93.918
## 3872 39 436 2 999 0 1.4 94.465
## 3873 48 1424 4 999 0 1.4 93.918
## 3874 50 339 2 999 0 1.4 93.918
## 3875 27 407 11 999 0 1.4 93.918
## 3876 21 173 1 999 0 -2.9 92.963
## 3877 41 163 4 999 0 1.4 94.465
## 3878 55 232 2 999 0 -1.8 92.893
## 3879 45 31 2 999 0 1.1 93.994
## 3880 33 350 2 999 0 -1.8 92.893
## 3881 51 16 5 999 0 -1.8 93.075
## 3882 22 345 1 999 0 1.1 93.994
## 3883 35 49 3 999 0 -0.1 93.200
## 3884 30 316 1 999 0 -1.7 94.055
## 3885 35 174 9 999 0 1.4 93.918
## 3886 33 20 8 999 0 1.4 94.465
## 3887 37 172 1 999 0 1.1 93.994
## 3888 43 213 3 999 0 1.1 93.994
## 3889 43 265 1 999 0 1.4 93.918
## 3890 36 567 2 999 0 -1.8 92.893
## 3891 35 26 17 999 0 1.4 93.444
## 3892 38 546 2 999 0 -1.8 92.893
## 3893 43 193 2 999 0 1.4 94.465
## 3894 37 296 1 999 0 1.1 93.994
## 3895 38 63 2 999 0 -0.1 93.200
## 3896 44 252 1 999 0 -1.1 94.601
## 3897 44 143 1 999 0 1.1 93.994
## 3898 44 42 3 999 0 1.4 93.918
## 3899 31 392 7 999 0 -1.8 92.893
## 3900 39 59 4 999 0 1.4 94.465
## 3901 25 476 4 999 0 1.4 93.918
## 3902 47 223 1 999 0 1.4 94.465
## 3903 33 17 5 999 0 -1.8 92.893
## 3904 36 121 2 999 0 1.1 93.994
## 3905 24 154 2 999 0 1.4 93.918
## 3906 48 82 1 999 0 -0.1 93.200
## 3907 74 135 1 999 0 -2.9 92.201
## 3908 34 675 3 999 0 -1.8 92.893
## 3909 37 254 1 999 0 1.4 93.918
## 3910 50 70 3 999 0 1.4 93.444
## 3911 41 105 2 999 0 1.1 93.994
## 3912 54 337 1 999 0 -1.8 92.893
## 3913 41 104 1 999 0 -3.4 92.431
## 3914 34 93 1 999 0 1.4 93.918
## 3915 58 9 1 999 0 -1.1 94.601
## 3916 33 76 2 999 0 -0.1 93.200
## 3917 39 222 2 999 0 1.1 93.994
## 3918 77 393 1 999 0 -1.8 93.876
## 3919 48 413 1 999 0 1.4 93.918
## 3920 26 169 4 999 0 -1.8 92.843
## 3921 24 134 1 999 0 -2.9 92.963
## 3922 48 83 6 999 0 1.4 94.465
## 3923 60 1020 1 999 0 -3.4 92.431
## 3924 48 257 7 999 0 1.1 93.994
## 3925 57 2316 1 999 0 -1.8 93.075
## 3926 32 281 1 999 0 1.4 94.465
## 3927 51 122 5 999 0 1.1 93.994
## 3928 57 108 1 999 0 1.4 93.444
## 3929 53 212 3 999 0 -0.1 93.200
## 3930 52 291 3 999 0 1.4 94.465
## 3931 48 202 1 999 0 1.4 93.918
## 3932 42 422 5 999 0 1.1 93.994
## 3933 39 105 1 999 0 -2.9 92.201
## 3934 48 157 3 999 0 1.4 93.444
## 3935 29 110 2 999 0 -3.4 92.431
## 3936 40 132 2 999 0 -0.1 93.200
## 3937 31 290 9 999 0 1.4 93.444
## 3938 52 86 1 999 0 1.4 93.444
## 3939 41 382 3 999 0 1.4 94.465
## 3940 40 184 4 999 0 1.1 93.994
## 3941 33 265 2 999 0 -1.8 93.369
## 3942 32 175 2 999 0 -1.1 94.199
## 3943 47 211 2 999 0 1.4 94.465
## 3944 34 81 1 999 0 1.1 93.994
## 3945 30 577 1 999 0 1.1 93.994
## 3946 51 41 1 999 0 -1.8 92.893
## 3947 40 374 2 999 0 1.4 93.444
## 3948 30 90 5 999 0 1.4 93.918
## 3949 32 203 2 999 0 1.4 93.918
## 3950 57 161 1 999 0 -1.8 92.893
## 3951 52 76 2 999 0 1.4 93.918
## 3952 46 270 1 999 0 1.4 93.918
## 3953 58 341 12 999 0 1.4 93.918
## 3954 48 221 1 999 0 1.4 94.465
## 3955 42 248 2 999 0 1.1 93.994
## 3956 29 525 1 999 0 1.4 93.918
## 3957 46 165 3 999 0 1.4 93.918
## 3958 33 207 1 999 0 -1.8 93.075
## 3959 36 111 1 999 0 1.4 93.444
## 3960 31 456 6 999 0 1.1 93.994
## 3961 35 59 2 999 0 -1.8 92.893
## 3962 37 246 5 999 0 -3.4 92.431
## 3963 32 331 5 999 0 1.4 93.444
## 3964 36 260 1 999 0 1.4 93.444
## 3965 26 59 2 999 0 -1.8 92.843
## 3966 31 203 2 999 0 1.1 93.994
## 3967 34 1576 3 999 0 1.4 94.465
## 3968 46 235 7 999 0 1.1 93.994
## 3969 36 262 4 999 0 1.4 93.918
## 3970 43 507 2 999 0 -0.1 93.200
## 3971 30 255 1 999 0 1.1 93.994
## 3972 42 279 9 999 0 1.1 93.994
## 3973 33 222 1 999 0 -1.8 92.893
## 3974 25 298 1 999 0 1.4 93.918
## 3975 41 345 3 999 0 1.4 94.465
## 3976 39 440 3 999 0 1.4 94.465
## 3977 39 252 5 999 0 1.4 94.465
## 3978 28 192 1 999 0 -2.9 92.201
## 3979 41 123 2 999 0 1.4 94.465
## 3980 35 325 3 999 0 1.1 93.994
## 3981 40 422 2 999 0 1.4 93.918
## 3982 43 101 1 999 0 1.4 93.444
## 3983 50 209 2 999 0 -0.1 93.200
## 3984 36 428 1 999 0 -0.1 93.200
## 3985 28 442 1 999 0 -1.8 92.893
## 3986 50 199 15 999 0 -1.8 92.893
## 3987 49 560 4 999 0 1.1 93.994
## 3988 56 17 19 999 0 1.4 93.918
## 3989 30 133 1 999 0 -1.8 92.893
## 3990 37 128 1 999 0 1.1 93.994
## 3991 31 257 2 999 0 -0.1 93.200
## 3992 30 103 2 999 0 1.4 93.444
## 3993 44 292 1 999 0 1.4 93.918
## 3994 44 291 3 999 0 -0.1 93.200
## 3995 40 635 3 999 0 1.4 93.918
## 3996 53 63 1 999 0 1.4 94.465
## 3997 55 147 1 999 0 -0.1 93.200
## 3998 51 112 2 999 0 1.1 93.994
## 3999 37 89 1 999 0 -0.1 93.200
## 4000 34 161 3 999 0 1.4 93.444
## 4001 31 179 1 999 0 1.1 93.994
## 4002 31 157 5 999 0 1.1 93.994
## 4003 48 466 1 999 0 -1.8 92.893
## 4004 32 470 4 999 0 1.1 93.994
## 4005 39 714 1 999 0 -1.8 93.075
## 4006 54 109 2 999 0 1.4 93.444
## 4007 39 164 3 999 0 1.4 94.465
## 4008 45 160 1 999 0 1.1 93.994
## 4009 34 435 2 999 0 1.4 93.918
## 4010 45 265 3 999 0 -0.1 93.200
## 4011 29 142 4 999 0 1.4 93.444
## 4012 27 775 1 999 0 -1.8 93.876
## 4013 39 91 5 999 0 1.4 93.918
## 4014 49 146 6 999 0 1.1 93.994
## 4015 45 65 2 999 0 1.4 93.444
## 4016 36 195 1 999 0 -1.8 92.893
## 4017 46 87 1 999 0 -1.8 92.893
## 4018 42 560 3 999 0 -1.8 92.893
## 4019 39 78 2 999 0 -0.1 93.200
## 4020 38 241 1 999 0 1.1 93.994
## 4021 37 166 1 999 0 -1.8 92.893
## 4022 39 251 1 999 0 -1.8 92.893
## 4023 36 86 2 999 0 -1.8 92.843
## 4024 55 1298 1 999 0 1.4 93.918
## 4025 29 214 1 999 0 -1.8 92.893
## 4026 30 857 3 999 0 -0.1 93.200
## 4027 23 408 2 999 0 -3.4 92.431
## 4028 31 346 2 999 0 1.4 94.465
## 4029 30 88 1 999 0 -0.1 93.200
## 4030 50 69 3 999 0 1.4 93.444
## 4031 29 201 1 999 0 -3.4 92.649
## 4032 31 48 2 999 0 1.1 93.994
## 4033 27 13 1 999 0 -1.1 94.199
## 4034 31 102 1 999 0 -1.8 93.075
## 4035 48 126 3 999 0 -1.8 93.075
## 4036 35 215 1 999 0 1.1 93.994
## 4037 34 244 1 999 0 1.4 93.444
## 4038 42 207 1 999 0 1.1 93.994
## 4039 55 181 3 999 0 1.4 93.444
## 4040 38 400 2 999 0 1.4 94.465
## 4041 32 495 1 999 0 -1.8 93.075
## 4042 36 86 2 999 0 -1.8 92.893
## 4043 37 224 7 999 0 1.4 93.444
## 4044 80 156 1 999 0 -1.8 93.369
## 4045 20 325 1 999 0 -1.8 92.843
## 4046 36 171 1 999 0 -1.8 93.075
## 4047 42 87 2 999 0 1.4 94.465
## 4048 33 175 1 999 0 -0.1 93.200
## 4049 35 250 1 999 0 -1.8 93.075
## 4050 28 76 1 999 0 -3.4 92.379
## 4051 25 128 2 999 0 1.4 94.465
## 4052 23 134 1 999 0 1.4 93.918
## 4053 51 24 7 999 0 1.4 93.444
## 4054 32 160 7 999 0 1.4 93.444
## 4055 45 219 1 999 0 -1.8 92.893
## 4056 58 491 2 999 0 1.1 93.994
## 4057 69 616 1 999 0 -1.8 93.075
## 4058 44 236 7 999 0 1.4 93.444
## 4059 31 63 1 999 0 1.4 93.444
## 4060 24 121 2 999 0 1.1 93.994
## 4061 50 152 2 999 0 1.1 93.994
## 4062 52 474 2 999 0 -1.8 93.075
## 4063 26 243 1 999 0 -1.8 92.893
## 4064 28 651 5 999 0 1.4 94.465
## 4065 31 1094 2 999 0 -1.8 92.893
## 4066 35 74 1 999 0 1.1 93.994
## 4067 20 195 2 999 0 -1.8 93.075
## 4068 39 311 2 999 0 -1.8 93.075
## 4069 54 64 2 999 0 1.4 93.444
## 4070 30 56 4 999 0 -0.1 93.200
## 4071 46 231 2 999 0 1.4 94.465
## 4072 33 422 1 999 0 -0.1 93.200
## 4073 55 110 2 999 0 -1.8 93.075
## 4074 37 75 1 999 0 -0.1 93.200
## 4075 54 164 2 999 0 -3.4 92.431
## 4076 59 200 4 999 0 1.1 93.994
## 4077 34 140 1 999 0 1.4 93.444
## 4078 45 93 1 999 0 1.4 94.465
## 4079 30 82 6 999 0 -1.8 93.075
## 4080 24 151 2 999 0 -1.8 92.893
## 4081 57 81 1 999 0 1.1 93.994
## 4082 31 142 3 999 0 1.1 93.994
## 4083 29 141 2 999 0 1.1 93.994
## 4084 45 112 1 999 0 1.4 93.918
## 4085 33 147 1 999 0 1.4 93.444
## 4086 37 133 1 999 0 1.1 93.994
## 4087 36 86 5 999 0 1.4 93.444
## 4088 43 409 1 999 0 1.4 94.465
## 4089 41 316 2 999 0 -1.8 93.075
## 4090 47 100 2 999 0 1.4 93.918
## 4091 43 349 1 999 0 1.4 94.465
## 4092 54 253 3 999 0 1.1 93.994
## 4093 34 42 7 999 0 -0.1 93.200
## 4094 33 789 1 999 0 1.1 93.994
## 4095 42 134 3 999 0 1.4 94.465
## 4096 46 285 5 999 0 -1.8 93.075
## 4097 29 203 1 999 0 1.1 93.994
## 4098 44 76 3 999 0 1.1 93.994
## 4099 80 234 1 999 0 -1.8 93.749
## 4100 29 1052 1 999 0 1.1 93.994
## 4101 36 744 8 999 0 1.4 93.918
## 4102 39 310 1 999 0 1.4 94.465
## 4103 35 480 4 999 0 1.4 93.918
## 4104 33 460 1 999 0 -1.8 93.075
## 4105 45 178 1 999 0 1.1 93.994
## 4106 40 25 1 999 0 1.4 94.465
## 4107 32 81 4 999 0 1.4 93.918
## 4108 35 92 1 999 0 1.4 94.465
## 4109 40 549 1 999 0 -1.8 92.893
## 4110 35 992 2 999 0 1.4 94.465
## 4111 48 106 1 999 0 1.1 93.994
## 4112 31 365 1 999 0 -0.1 93.200
## 4113 40 345 2 999 0 1.1 93.994
## 4114 25 506 2 999 0 -1.8 92.893
## 4115 74 200 1 999 0 -1.8 93.749
## 4116 38 256 3 999 0 1.4 93.444
## 4117 36 18 12 999 0 1.4 93.918
## 4118 46 84 3 999 0 -1.8 92.893
## 4119 43 92 1 999 0 1.1 93.994
## 4120 24 576 2 999 0 1.4 93.918
## 4121 24 334 2 999 0 -1.8 92.893
## 4122 38 322 5 999 0 1.1 93.994
## 4123 34 175 4 999 0 -1.8 92.893
## 4124 42 380 3 999 0 -1.8 93.075
## 4125 30 369 2 999 0 1.1 93.994
## 4126 45 263 1 999 0 -1.8 93.075
## 4127 31 452 3 999 0 -1.8 92.893
## 4128 39 279 1 999 0 -1.8 92.893
## 4129 36 127 1 999 0 -1.8 92.893
## 4130 27 536 5 999 0 1.4 93.918
## 4131 38 69 4 999 0 -0.1 93.200
## 4132 30 80 1 999 0 -2.9 92.963
## 4133 24 196 2 999 0 -1.8 92.893
## 4134 32 100 1 999 0 1.4 93.918
## 4135 30 107 2 999 0 1.1 93.994
## 4136 35 68 1 999 0 -1.8 92.893
## 4137 47 309 1 999 0 1.4 94.465
## 4138 23 804 2 999 0 1.4 93.918
## 4139 34 722 1 999 0 1.4 94.465
## 4140 40 221 2 999 0 1.4 94.465
## 4141 41 50 1 999 0 -1.8 92.893
## 4142 70 320 1 999 0 -2.9 92.201
## 4143 33 370 2 999 0 1.4 93.444
## 4144 53 43 1 999 0 1.4 93.444
## 4145 36 517 3 999 0 1.4 93.918
## 4146 41 834 1 999 0 -1.8 93.075
## 4147 29 144 1 999 0 1.4 93.444
## 4148 38 67 2 999 0 1.4 94.465
## 4149 35 223 2 999 0 -1.8 92.893
## 4150 50 251 2 999 0 -1.8 92.893
## 4151 42 119 1 999 0 1.1 93.994
## 4152 30 156 7 999 0 -0.1 93.200
## 4153 44 515 2 999 0 1.1 93.994
## 4154 48 277 2 999 0 1.4 93.918
## 4155 33 172 2 999 0 -0.1 93.200
## 4156 34 128 1 999 0 1.4 94.465
## 4157 36 57 2 999 0 1.4 94.465
## 4158 43 493 5 999 0 -1.8 92.893
## 4159 55 260 1 999 0 -1.8 93.075
## 4160 32 185 1 999 0 1.4 93.918
## 4161 25 88 1 999 0 1.4 93.918
## 4162 24 103 3 999 0 -1.8 93.075
## 4163 30 248 2 999 0 -0.1 93.200
## 4164 42 51 7 999 0 1.4 93.444
## 4165 36 989 1 999 0 1.1 93.994
## 4166 30 248 5 999 0 1.4 93.918
## 4167 35 17 25 999 0 1.1 93.994
## 4168 36 395 2 999 0 -1.8 92.893
## 4169 49 370 1 999 0 1.4 94.465
## 4170 31 9 17 999 0 1.4 93.918
## 4171 53 48 2 999 0 1.4 93.444
## 4172 34 94 1 999 0 1.4 93.918
## 4173 55 159 1 999 0 -0.1 93.200
## 4174 36 117 1 999 0 1.4 93.444
## 4175 33 98 1 999 0 -0.1 93.200
## 4176 27 101 1 999 0 -1.8 92.893
## 4177 42 253 1 999 0 1.4 93.918
## 4178 30 72 7 999 0 -1.8 92.893
## 4179 41 149 2 999 0 1.1 93.994
## 4180 47 184 3 999 0 -1.8 92.893
## 4181 33 331 1 999 0 1.4 93.444
## 4182 46 445 3 999 0 -2.9 92.201
## 4183 34 87 1 999 0 -1.8 92.893
## 4184 41 92 1 999 0 1.4 93.444
## 4185 52 73 1 999 0 1.4 94.465
## 4186 44 16 9 999 0 -1.8 92.893
## 4187 26 1151 1 999 0 1.4 93.918
## 4188 56 92 3 999 0 1.1 93.994
## 4189 35 307 4 999 0 1.4 93.918
## 4190 49 216 2 999 0 1.4 94.465
## 4191 37 95 6 999 0 1.1 93.994
## 4192 45 276 3 999 0 1.1 93.994
## 4193 49 104 2 999 0 1.1 93.994
## 4194 33 187 2 999 0 -0.1 93.200
## 4195 44 455 2 999 0 -1.8 93.075
## 4196 27 156 1 999 0 -1.8 93.075
## 4197 58 183 2 999 0 1.4 94.465
## 4198 43 176 2 999 0 1.4 94.465
## 4199 30 127 2 999 0 1.4 93.918
## 4200 47 1025 1 999 0 -1.8 93.075
## 4201 34 313 1 999 0 1.4 93.444
## 4202 45 432 1 999 0 -1.8 93.075
## 4203 39 90 2 999 0 1.4 93.444
## 4204 28 1820 4 999 0 1.4 93.918
## 4205 45 360 5 999 0 1.4 93.444
## 4206 30 301 4 999 0 1.4 94.465
## 4207 32 749 8 999 0 1.4 93.918
## 4208 34 114 5 999 0 1.4 93.444
## 4209 44 102 1 999 0 1.4 93.444
## 4210 35 98 1 999 0 1.1 93.994
## 4211 57 30 9 999 0 1.4 93.444
## 4212 26 61 2 999 0 1.4 94.465
## 4213 34 1258 2 999 0 -0.1 93.200
## 4214 57 128 1 999 0 -1.8 92.893
## 4215 53 198 2 999 0 -1.8 93.749
## 4216 28 137 1 999 0 -1.8 93.075
## 4217 44 663 1 999 0 1.4 93.918
## 4218 46 144 10 999 0 1.4 94.465
## 4219 37 113 2 999 0 -1.8 92.893
## 4220 39 129 1 999 0 1.4 93.444
## 4221 31 290 2 999 0 -1.8 92.893
## 4222 32 52 8 999 0 1.1 93.994
## 4223 53 126 1 999 0 -1.8 93.075
## 4224 57 1173 4 999 0 1.4 93.918
## 4225 36 45 3 999 0 1.4 93.444
## 4226 38 55 1 999 0 1.4 94.465
## 4227 56 132 1 999 0 1.4 93.918
## 4228 59 309 5 999 0 1.4 94.465
## 4229 35 371 1 999 0 -0.1 93.200
## 4230 42 121 1 999 0 1.4 93.444
## 4231 29 42 1 999 0 -0.1 93.200
## 4232 48 730 2 999 0 1.4 93.918
## 4233 35 79 1 999 0 -1.8 93.075
## 4234 42 14 6 999 0 -0.1 93.200
## 4235 37 151 2 999 0 1.1 93.994
## 4236 38 69 3 999 0 1.4 94.465
## 4237 53 222 2 999 0 -1.8 93.749
## 4238 28 1148 1 999 0 -1.8 92.893
## 4239 43 20 4 999 0 -0.1 93.200
## 4240 43 88 1 999 0 1.4 93.444
## 4241 44 178 1 999 0 -1.8 93.075
## 4242 38 149 1 999 0 1.4 94.465
## 4243 36 82 3 999 0 -0.1 93.200
## 4244 54 577 3 999 0 1.4 93.918
## 4245 30 262 5 999 0 1.4 94.465
## 4246 41 93 1 999 0 -0.1 93.200
## 4247 41 786 2 999 0 -1.1 94.601
## 4248 37 199 1 999 0 -0.1 93.200
## 4249 32 472 2 999 0 -1.8 93.075
## 4250 31 817 2 999 0 1.4 94.465
## 4251 28 53 1 999 0 1.4 93.918
## 4252 45 702 1 999 0 -1.8 92.893
## 4253 35 270 2 999 0 -1.8 93.075
## 4254 46 99 5 999 0 -2.9 92.201
## 4255 30 273 2 999 0 -0.1 93.200
## 4256 31 12 5 999 0 1.4 93.444
## 4257 54 136 3 999 0 1.4 93.444
## 4258 33 184 1 999 0 -1.8 92.893
## 4259 28 240 1 999 0 -1.8 93.075
## 4260 33 234 1 999 0 1.1 93.994
## 4261 42 259 1 999 0 -3.4 92.431
## 4262 42 160 3 999 0 1.1 93.994
## 4263 51 141 1 999 0 1.1 93.994
## 4264 36 217 3 999 0 1.4 93.444
## 4265 51 187 2 999 0 1.4 93.444
## 4266 48 55 5 999 0 1.4 93.918
## 4267 31 130 2 999 0 1.4 94.465
## 4268 38 137 1 999 0 -1.8 92.843
## 4269 31 306 2 999 0 -1.7 94.027
## 4270 52 331 1 999 0 1.4 93.444
## 4271 26 93 3 999 0 -1.8 92.893
## 4272 73 135 2 999 0 -2.9 92.201
## 4273 47 226 1 999 0 1.4 93.918
## 4274 24 209 1 999 0 -1.8 93.075
## 4275 26 71 1 999 0 1.4 93.918
## 4276 31 395 1 999 0 -0.1 93.200
## 4277 30 27 7 999 0 1.4 94.465
## 4278 31 146 3 999 0 -1.8 92.893
## 4279 43 64 1 999 0 -1.8 93.075
## 4280 53 578 2 999 0 -2.9 92.963
## 4281 29 86 1 999 0 -1.8 93.075
## 4282 29 108 5 999 0 -1.7 94.055
## 4283 30 243 3 999 0 -1.8 93.075
## 4284 57 41 1 999 0 -1.8 93.075
## 4285 45 521 1 999 0 1.4 94.465
## 4286 30 329 2 999 0 -0.1 93.200
## 4287 43 53 1 999 0 1.4 93.918
## 4288 42 52 2 999 0 1.4 93.444
## 4289 30 461 1 999 0 -1.8 93.075
## 4290 37 145 1 999 0 -0.1 93.200
## 4291 45 179 2 999 0 1.1 93.994
## 4292 56 429 1 999 0 -3.0 92.713
## 4293 37 422 2 999 0 1.1 93.994
## 4294 31 127 1 999 0 1.4 94.465
## 4295 52 227 2 999 0 -1.8 93.876
## 4296 52 278 2 999 0 -0.1 93.200
## 4297 41 348 3 999 0 -0.1 93.200
## 4298 43 133 1 999 0 1.4 94.465
## 4299 34 221 1 999 0 1.4 94.465
## 4300 50 162 1 999 0 1.4 93.444
## 4301 35 96 2 999 0 1.4 93.918
## 4302 20 347 2 999 0 -2.9 92.201
## 4303 45 797 1 999 0 -1.8 93.075
## 4304 31 172 1 999 0 -1.8 93.075
## 4305 37 96 2 999 0 1.4 93.918
## 4306 29 122 3 999 0 -1.8 93.075
## 4307 39 125 1 999 0 1.1 93.994
## 4308 37 59 7 999 0 1.4 94.465
## 4309 46 351 3 999 0 -1.8 93.876
## 4310 27 263 2 999 0 1.4 94.465
## 4311 31 131 3 999 0 -0.1 93.200
## 4312 45 398 1 999 0 1.4 93.444
## 4313 30 111 2 999 0 1.4 93.444
## 4314 34 71 1 999 0 1.1 93.994
## 4315 30 41 1 999 0 1.1 93.994
## 4316 37 465 1 999 0 -1.8 93.075
## 4317 81 50 3 999 0 -2.9 92.201
## 4318 45 254 2 999 0 -0.1 93.200
## 4319 30 80 3 999 0 -1.8 93.075
## 4320 37 345 1 999 0 -1.8 92.893
## 4321 49 268 1 999 0 1.4 93.918
## 4322 43 104 1 999 0 -1.8 93.075
## 4323 50 77 1 999 0 1.4 94.465
## 4324 32 315 4 999 0 -2.9 92.469
## 4325 28 363 2 999 0 1.4 93.918
## 4326 34 266 4 999 0 1.4 94.465
## 4327 58 322 2 999 0 1.4 94.465
## 4328 46 180 2 999 0 1.4 93.444
## 4329 56 258 1 999 0 -0.1 93.200
## 4330 25 712 2 999 0 -1.8 93.075
## 4331 23 228 1 999 0 1.4 93.918
## 4332 38 770 2 999 0 1.1 93.994
## 4333 29 427 3 999 0 -1.8 93.075
## 4334 41 241 3 999 0 1.4 93.918
## 4335 48 222 2 999 0 1.1 93.994
## 4336 46 375 2 999 0 -1.8 93.075
## 4337 58 178 2 999 0 -0.1 93.200
## 4338 29 82 2 999 0 1.4 93.444
## 4339 48 663 2 999 0 1.4 93.444
## 4340 55 772 4 999 0 -1.8 93.075
## 4341 32 60 1 999 0 1.1 93.994
## 4342 41 82 4 999 0 -1.8 93.075
## 4343 51 410 3 999 0 1.1 93.994
## 4344 32 657 4 999 0 -1.8 93.075
## 4345 38 282 1 999 0 -1.8 92.893
## 4346 36 91 1 999 0 1.4 94.465
## 4347 35 352 4 999 0 1.1 93.994
## 4348 35 855 1 999 0 -1.8 93.075
## 4349 33 178 2 999 0 1.1 93.994
## 4350 32 23 4 999 0 1.1 93.994
## 4351 35 448 3 999 0 1.4 93.444
## 4352 50 684 1 999 0 1.4 93.918
## 4353 31 120 1 999 0 1.1 93.994
## 4354 49 349 3 999 0 -1.8 93.075
## 4355 45 201 1 999 0 -2.9 92.963
## 4356 61 165 2 999 0 -1.8 93.749
## 4357 28 64 1 999 0 -2.9 92.201
## 4358 30 85 6 999 0 1.4 93.918
## 4359 35 165 1 999 0 1.1 93.994
## 4360 39 108 3 999 0 1.1 93.994
## 4361 56 141 1 999 0 -1.8 93.075
## 4362 59 247 1 999 0 1.1 93.994
## 4363 34 484 5 999 0 1.1 93.994
## 4364 38 326 1 999 0 1.4 93.444
## 4365 47 185 7 999 0 1.1 93.994
## 4366 56 871 3 999 0 -0.1 93.200
## 4367 50 283 3 999 0 1.1 93.994
## 4368 38 172 1 999 0 -0.1 93.200
## 4369 33 1867 6 999 0 1.1 93.994
## 4370 35 137 1 999 0 -0.1 93.200
## 4371 50 586 1 999 0 1.4 94.465
## 4372 27 311 1 999 0 -1.8 92.893
## 4373 55 230 4 999 0 1.1 93.994
## 4374 47 186 9 999 0 -2.9 92.469
## 4375 31 277 1 999 0 -0.1 93.200
## 4376 48 602 3 999 0 1.4 93.444
## 4377 51 39 1 999 0 1.1 93.994
## 4378 25 113 1 999 0 -1.8 93.075
## 4379 36 103 3 999 0 1.1 93.994
## 4380 30 341 1 999 0 -1.8 92.893
## 4381 52 191 1 999 0 1.4 93.918
## 4382 37 98 3 999 0 1.4 93.918
## 4383 48 619 1 999 0 -1.8 93.075
## 4384 25 81 3 999 0 1.4 93.918
## 4385 48 13 14 999 0 1.4 93.444
## 4386 51 341 1 999 0 -1.8 93.075
## 4387 33 530 1 999 0 -1.8 93.075
## 4388 35 330 3 999 0 1.1 93.994
## 4389 77 165 7 999 0 -1.8 93.749
## 4390 37 322 1 999 0 -1.1 94.601
## 4391 26 273 4 999 0 -1.8 92.893
## 4392 31 239 2 999 0 -0.1 93.200
## 4393 46 398 3 999 0 1.4 93.444
## 4394 58 321 2 999 0 -0.1 93.200
## 4395 35 1579 2 999 0 1.4 93.444
## 4396 39 237 1 999 0 -1.8 93.075
## 4397 31 42 1 999 0 -1.8 92.893
## 4398 29 131 1 999 0 -2.9 92.201
## 4399 34 84 1 999 0 1.1 93.994
## 4400 36 287 1 999 0 1.1 93.994
## 4401 41 324 1 999 0 -1.7 94.027
## 4402 29 63 2 999 0 1.4 94.465
## 4403 45 425 2 999 0 1.4 93.444
## 4404 35 20 1 999 0 1.1 93.994
## 4405 38 109 3 999 0 1.4 93.918
## 4406 25 234 6 999 0 1.4 93.918
## 4407 37 125 4 999 0 1.1 93.994
## 4408 25 271 5 999 0 1.4 93.918
## 4409 34 30 1 999 0 -0.1 93.200
## 4410 57 699 3 999 0 1.1 93.994
## 4411 44 311 1 999 0 1.4 93.918
## 4412 31 230 1 999 0 -0.1 93.200
## 4413 40 681 6 999 0 -1.8 92.893
## 4414 48 429 2 999 0 -1.8 93.075
## 4415 18 108 1 999 0 -1.8 93.075
## 4416 52 208 2 999 0 1.4 94.465
## 4417 28 229 1 999 0 1.4 93.918
## 4418 42 919 1 999 0 1.4 94.465
## 4419 51 191 5 999 0 1.1 93.994
## 4420 25 125 2 999 0 -2.9 92.963
## 4421 30 252 1 999 0 -1.8 92.893
## 4422 45 542 3 999 0 1.4 94.465
## 4423 41 203 2 999 0 1.4 94.465
## 4424 34 957 2 999 0 -1.8 92.893
## 4425 33 90 5 999 0 -1.8 92.893
## 4426 49 136 3 999 0 1.1 93.994
## 4427 52 160 6 999 0 1.4 93.918
## 4428 48 108 2 999 0 1.4 93.918
## 4429 44 351 1 999 0 1.4 94.465
## 4430 35 150 1 999 0 -1.8 93.075
## 4431 48 361 2 999 0 1.4 94.465
## 4432 57 399 2 999 0 -0.1 93.200
## 4433 38 61 1 999 0 -0.1 93.200
## 4434 35 504 3 999 0 1.1 93.994
## 4435 35 1806 2 999 0 -1.8 92.893
## 4436 30 104 1 999 0 1.4 93.444
## 4437 49 81 1 999 0 -3.4 92.431
## 4438 36 120 3 999 0 1.4 93.444
## 4439 59 285 1 999 0 1.1 93.994
## 4440 29 227 1 999 0 1.4 93.918
## 4441 37 535 1 999 0 1.4 93.444
## 4442 48 288 3 999 0 -3.4 92.431
## 4443 53 135 1 999 0 1.1 93.994
## 4444 43 172 2 999 0 -1.8 92.893
## 4445 43 176 1 999 0 -1.8 93.075
## 4446 53 446 1 999 0 1.4 93.444
## 4447 27 5 3 999 0 1.4 93.918
## 4448 56 92 2 999 0 1.4 94.465
## 4449 48 182 1 999 0 1.1 93.994
## 4450 42 193 1 999 0 1.1 93.994
## 4451 47 117 1 999 0 1.4 93.444
## 4452 57 21 1 999 0 -0.1 93.200
## 4453 45 237 2 999 0 1.4 94.465
## 4454 49 216 2 999 0 -1.8 93.075
## 4455 50 102 1 999 0 1.4 93.918
## 4456 88 82 2 999 0 -1.8 92.843
## 4457 54 773 2 999 0 1.4 93.918
## 4458 34 511 1 999 0 1.4 94.465
## 4459 27 310 3 999 0 1.1 93.994
## 4460 40 190 2 999 0 -1.8 92.893
## 4461 66 110 2 999 0 -1.8 92.893
## 4462 41 184 4 999 0 1.4 93.918
## 4463 24 127 1 999 0 -1.8 93.075
## 4464 34 251 3 999 0 1.4 93.918
## 4465 48 178 1 999 0 1.1 93.994
## 4466 35 77 4 999 0 1.4 93.918
## 4467 42 705 1 999 0 1.1 93.994
## 4468 21 240 1 999 0 -1.8 92.893
## 4469 43 124 8 999 0 1.4 93.918
## 4470 39 175 5 999 0 1.1 93.994
## 4471 35 203 1 999 0 1.4 93.918
## 4472 43 50 1 999 0 1.4 93.918
## 4473 46 146 1 999 0 -1.8 93.075
## 4474 57 199 2 999 0 -0.1 93.200
## 4475 31 185 3 999 0 -1.8 92.893
## 4476 43 367 2 999 0 1.1 93.994
## 4477 38 35 25 999 0 1.4 93.918
## 4478 48 122 1 999 0 1.4 94.465
## 4479 36 8 24 999 0 1.4 93.918
## 4480 37 138 1 999 0 -0.1 93.200
## 4481 34 205 1 999 0 1.1 93.994
## 4482 39 6 12 999 0 1.4 93.918
## 4483 36 31 1 999 0 -1.8 92.893
## 4484 39 106 1 999 0 1.4 94.465
## 4485 36 189 3 999 0 1.4 93.918
## 4486 37 261 1 999 0 -1.8 93.075
## 4487 44 408 11 999 0 1.4 93.918
## 4488 35 510 3 999 0 -2.9 92.963
## 4489 47 65 7 999 0 1.1 93.994
## 4490 58 64 1 999 0 1.4 93.444
## 4491 37 54 2 999 0 1.1 93.994
## 4492 33 1321 2 999 0 1.1 93.994
## 4493 44 139 2 999 0 1.1 93.994
## 4494 41 120 2 999 0 1.4 93.444
## 4495 39 72 1 999 0 1.4 94.465
## 4496 42 316 1 999 0 -0.1 93.200
## 4497 46 246 3 999 0 1.1 93.994
## 4498 32 12 15 999 0 1.4 93.444
## 4499 39 453 1 999 0 1.4 94.465
## 4500 42 829 5 999 0 1.4 93.918
## 4501 42 144 1 999 0 -1.8 93.075
## 4502 31 348 1 999 0 -1.8 92.893
## 4503 47 178 2 999 0 1.1 93.994
## 4504 48 264 1 999 0 -3.4 92.431
## 4505 29 105 2 999 0 -1.8 93.075
## 4506 27 279 3 999 0 1.4 93.918
## 4507 30 188 1 999 0 -1.8 93.075
## 4508 27 1237 7 999 0 1.4 93.918
## 4509 41 184 1 999 0 1.4 93.918
## 4510 59 425 6 999 0 1.1 93.994
## 4511 25 18 3 999 0 1.4 94.465
## 4512 34 48 4 999 0 -0.1 93.200
## 4513 28 571 1 999 0 -1.8 93.075
## 4514 52 4199 3 999 0 1.4 93.444
## 4515 29 53 1 999 0 1.4 94.465
## 4516 27 84 3 999 0 1.4 93.918
## 4517 32 633 1 999 0 -1.8 92.893
## 4518 46 183 1 999 0 1.1 93.994
## 4519 27 297 1 999 0 -1.8 93.075
## 4520 30 118 2 999 0 1.4 94.465
## 4521 49 312 3 999 0 1.1 93.994
## 4522 33 201 1 999 0 1.4 93.444
## 4523 28 28 5 999 0 1.4 93.918
## 4524 34 262 1 999 0 -1.8 92.893
## 4525 29 190 1 999 0 1.4 94.465
## 4526 33 51 5 999 0 1.4 93.444
## 4527 58 158 1 999 0 -0.1 93.200
## 4528 31 290 1 999 0 -0.1 93.200
## 4529 30 739 2 999 0 -1.8 93.075
## 4530 41 597 1 999 0 -1.8 92.893
## 4531 27 438 2 999 0 1.1 93.994
## 4532 46 249 1 999 0 -1.8 93.075
## 4533 28 376 2 999 0 1.1 93.994
## 4534 49 259 2 999 0 -2.9 92.963
## 4535 43 320 3 999 0 1.4 94.465
## 4536 29 258 1 999 0 1.4 93.918
## 4537 30 162 1 999 0 1.1 93.994
## 4538 38 81 2 999 0 1.1 93.994
## 4539 55 178 1 999 0 1.4 94.465
## 4540 35 125 7 999 0 1.4 93.444
## 4541 31 119 1 999 0 -1.8 93.075
## 4542 24 282 1 999 0 1.4 93.918
## 4543 56 1925 1 999 0 -1.8 92.893
## 4544 39 95 1 999 0 -0.1 93.200
## 4545 36 317 2 999 0 -0.1 93.200
## 4546 29 376 2 999 0 -1.8 92.893
## 4547 38 619 4 999 0 1.1 93.994
## 4548 31 124 3 999 0 1.4 93.444
## 4549 35 133 2 999 0 1.1 93.994
## 4550 48 642 3 999 0 1.4 93.444
## 4551 42 272 2 999 0 -1.8 92.893
## 4552 88 402 2 999 0 -2.9 92.201
## 4553 56 88 2 999 0 -0.1 93.200
## 4554 51 870 3 999 0 1.4 93.918
## 4555 39 123 3 999 0 -1.8 92.893
## 4556 30 78 1 999 0 1.4 93.444
## 4557 32 65 8 999 0 1.4 93.444
## 4558 39 64 4 999 0 1.1 93.994
## 4559 25 312 5 999 0 1.4 93.918
## 4560 55 270 1 999 0 1.4 94.465
## 4561 37 262 2 999 0 -1.8 92.893
## 4562 27 1170 1 999 0 1.1 93.994
## 4563 39 179 1 999 0 1.4 93.444
## 4564 36 371 1 999 0 -0.1 93.200
## 4565 41 100 2 999 0 1.4 93.444
## 4566 35 390 2 999 0 -1.1 94.199
## 4567 53 144 1 999 0 1.4 93.918
## 4568 31 265 3 999 0 1.4 93.444
## 4569 60 101 3 999 0 1.1 93.994
## 4570 39 73 1 999 0 -0.1 93.200
## 4571 41 539 1 999 0 1.4 93.918
## 4572 31 1059 2 999 0 -0.1 93.200
## 4573 59 374 4 999 0 1.1 93.994
## 4574 37 232 1 999 0 1.4 94.465
## 4575 44 214 2 999 0 1.4 93.444
## 4576 33 55 1 999 0 -0.1 93.200
## 4577 24 210 6 999 0 -1.8 92.893
## 4578 39 110 4 999 0 1.4 94.465
## 4579 36 147 5 999 0 1.1 93.994
## 4580 55 159 2 999 0 1.4 93.444
## 4581 32 356 1 999 0 1.4 93.444
## 4582 37 161 1 999 0 -2.9 92.201
## 4583 52 176 2 999 0 -0.1 93.200
## 4584 36 164 2 999 0 -1.8 92.893
## 4585 50 367 2 999 0 1.4 93.918
## 4586 39 109 4 999 0 1.1 93.994
## 4587 29 160 1 999 0 1.4 93.918
## 4588 28 61 6 999 0 -1.8 92.893
## 4589 48 700 2 999 0 1.4 94.465
## 4590 57 162 1 999 0 1.4 93.918
## 4591 35 169 7 999 0 1.4 93.918
## 4592 35 305 2 999 0 -0.1 93.200
## 4593 41 158 1 999 0 1.1 93.994
## 4594 31 184 1 999 0 -0.1 93.200
## 4595 37 173 1 999 0 -1.1 94.199
## 4596 36 744 6 999 0 1.1 93.994
## 4597 49 575 2 999 0 1.4 93.444
## 4598 31 732 2 999 0 1.1 93.994
## 4599 41 231 2 999 0 1.4 94.465
## 4600 36 543 1 999 0 -3.4 92.379
## 4601 32 19 1 999 0 1.4 94.465
## 4602 57 77 2 999 0 1.4 93.444
## 4603 59 265 1 999 0 1.4 93.444
## 4604 52 201 1 999 0 1.1 93.994
## 4605 35 787 1 999 0 1.4 93.444
## 4606 34 28 1 999 0 1.4 93.918
## 4607 41 35 1 999 0 -1.8 92.893
## 4608 59 368 2 999 0 -2.9 92.963
## 4609 50 80 2 999 0 1.4 94.465
## 4610 44 246 2 999 0 -1.8 92.893
## 4611 55 146 1 999 0 1.4 94.465
## 4612 45 773 5 999 0 1.4 93.444
## 4613 37 210 2 999 0 1.4 93.444
## 4614 35 205 5 999 0 1.1 93.994
## 4615 43 104 1 999 0 1.4 94.465
## 4616 31 61 2 999 0 1.4 93.918
## 4617 43 51 1 999 0 1.4 93.918
## 4618 29 47 4 999 0 -1.8 92.893
## 4619 35 477 1 999 0 1.1 93.994
## 4620 79 86 2 999 0 -2.9 92.201
## 4621 54 202 3 999 0 1.1 93.994
## 4622 45 77 9 999 0 1.4 93.444
## 4623 57 202 1 999 0 1.4 93.444
## 4624 32 370 1 999 0 -0.1 93.200
## 4625 43 211 3 999 0 1.4 93.444
## 4626 47 1231 2 999 0 1.4 93.444
## 4627 31 1037 4 999 0 1.4 93.444
## 4628 39 73 1 999 0 1.1 93.994
## 4629 48 171 5 999 0 1.4 93.918
## 4630 36 300 1 999 0 1.4 93.444
## 4631 32 213 2 999 0 -1.8 92.893
## 4632 30 80 1 999 0 1.1 93.994
## 4633 35 240 3 999 0 1.1 93.994
## 4634 34 85 2 999 0 1.4 93.918
## 4635 38 168 1 999 0 1.4 93.918
## 4636 34 144 1 999 0 -0.1 93.200
## 4637 58 415 7 999 0 1.1 93.994
## 4638 36 350 3 999 0 -1.8 92.893
## 4639 32 52 5 999 0 1.4 94.465
## 4640 37 175 3 999 0 1.4 93.918
## 4641 54 225 2 999 0 1.4 93.918
## 4642 36 231 1 999 0 -0.1 93.200
## 4643 32 81 1 999 0 1.4 93.444
## 4644 25 244 1 999 0 -1.1 94.767
## 4645 45 64 18 999 0 1.4 93.444
## 4646 25 99 1 999 0 -2.9 92.201
## 4647 40 106 4 999 0 1.4 93.918
## 4648 35 473 1 999 0 1.1 93.994
## 4649 32 251 4 999 0 -0.1 93.200
## 4650 38 738 2 999 0 -0.1 93.200
## 4651 41 234 1 999 0 -0.1 93.200
## 4652 41 259 1 999 0 1.1 93.994
## 4653 48 101 1 999 0 1.4 93.444
## 4654 54 197 1 999 0 -1.8 92.893
## 4655 40 141 1 999 0 1.4 93.444
## 4656 40 245 4 999 0 1.1 93.994
## 4657 37 82 1 999 0 1.4 94.465
## 4658 54 250 1 999 0 1.4 93.444
## 4659 32 59 1 999 0 -0.1 93.200
## 4660 51 1226 3 999 0 -1.7 94.027
## 4661 36 558 1 999 0 -1.8 92.893
## 4662 25 75 1 999 0 -2.9 92.201
## 4663 30 362 6 999 0 -1.8 92.893
## 4664 31 397 2 999 0 1.4 94.465
## 4665 32 489 2 999 0 1.4 93.918
## 4666 39 158 1 999 0 1.4 93.444
## 4667 34 1065 1 999 0 1.4 93.918
## 4668 41 83 1 999 0 1.4 94.465
## 4669 33 321 1 999 0 1.4 93.444
## 4670 52 121 3 999 0 1.4 93.444
## 4671 32 29 9 999 0 1.4 93.444
## 4672 57 259 2 999 0 1.4 93.444
## 4673 32 168 1 999 0 1.4 93.444
## 4674 37 312 6 999 0 1.1 93.994
## 4675 41 237 2 999 0 1.4 94.465
## 4676 39 206 1 999 0 1.1 93.994
## 4677 39 291 2 999 0 -0.1 93.200
## 4678 47 487 3 999 0 1.4 93.444
## 4679 49 158 2 999 0 1.4 93.444
## 4680 41 186 2 999 0 1.4 93.918
## 4681 35 228 3 999 0 1.1 93.994
## 4682 42 650 2 999 0 1.4 93.918
## 4683 56 141 12 999 0 -1.8 93.075
## 4684 26 139 1 999 0 -1.8 92.843
## 4685 30 162 1 999 0 1.4 93.444
## 4686 29 137 2 999 0 1.4 93.444
## 4687 47 369 1 999 0 -1.8 93.075
## 4688 30 22 4 999 0 -1.8 92.893
## 4689 51 269 10 999 0 1.1 93.994
## 4690 40 477 2 999 0 -2.9 92.201
## 4691 26 400 2 999 0 1.4 94.465
## 4692 56 134 1 999 0 1.1 93.994
## 4693 35 490 7 999 0 1.4 93.918
## 4694 46 871 2 999 0 1.4 93.444
## 4695 37 118 1 999 0 1.1 93.994
## 4696 35 250 1 999 0 1.4 93.918
## 4697 38 86 1 999 0 -0.1 93.200
## 4698 45 90 3 999 0 1.1 93.994
## 4699 50 196 2 999 0 1.4 93.918
## 4700 49 487 1 999 0 1.4 94.465
## 4701 43 398 1 999 0 1.4 93.444
## 4702 56 403 5 999 0 1.4 94.465
## 4703 32 31 5 999 0 1.4 94.465
## 4704 45 391 1 999 0 1.4 93.918
## 4705 32 68 1 999 0 1.4 93.444
## 4706 35 12 12 999 0 1.4 93.444
## 4707 46 155 1 999 0 1.4 93.918
## 4708 30 91 2 999 0 1.4 93.918
## 4709 56 584 1 999 0 -1.8 93.075
## 4710 58 60 24 999 0 1.4 93.918
## 4711 40 314 2 999 0 1.4 94.465
## 4712 53 123 1 999 0 1.4 93.444
## 4713 23 22 6 999 0 -1.8 92.893
## 4714 27 101 14 999 0 1.4 93.918
## 4715 30 11 12 999 0 1.4 93.918
## 4716 41 349 1 999 0 -0.1 93.200
## 4717 29 633 1 999 0 1.4 93.918
## 4718 32 129 1 999 0 1.4 93.918
## 4719 32 1906 3 999 0 1.1 93.994
## 4720 30 52 1 999 0 1.4 93.444
## 4721 42 171 3 999 0 1.4 93.918
## 4722 40 237 4 999 0 1.4 93.918
## 4723 49 232 4 999 0 1.4 93.444
## 4724 23 523 2 999 0 1.4 93.918
## 4725 41 27 3 999 0 1.4 93.444
## 4726 46 121 1 999 0 1.4 93.918
## 4727 25 783 1 999 0 1.4 93.918
## 4728 51 507 2 999 0 1.4 93.444
## 4729 34 51 2 999 0 1.4 93.918
## 4730 50 162 1 999 0 1.4 93.918
## 4731 27 191 2 999 0 -1.8 93.369
## 4732 31 634 1 999 0 1.4 93.918
## 4733 27 112 2 999 0 -1.8 92.893
## 4734 35 92 2 999 0 1.4 93.444
## 4735 33 96 2 999 0 1.4 94.465
## 4736 55 55 8 999 0 1.4 93.918
## 4737 32 285 1 999 0 1.4 93.918
## 4738 38 403 2 999 0 1.1 93.994
## 4739 40 296 3 999 0 1.4 93.918
## 4740 41 266 1 999 0 1.4 93.444
## 4741 41 67 13 999 0 1.4 93.444
## 4742 33 480 2 999 0 -1.8 92.893
## 4743 55 101 5 999 0 1.4 93.918
## 4744 41 385 1 999 0 1.4 94.465
## 4745 38 119 1 999 0 1.4 93.444
## 4746 47 125 1 999 0 -0.1 93.200
## 4747 26 49 1 999 0 1.4 93.918
## 4748 39 134 2 999 0 1.4 93.918
## 4749 29 303 1 999 0 1.4 93.918
## 4750 30 123 1 999 0 1.1 93.994
## 4751 24 165 3 999 0 -1.8 93.369
## 4752 33 302 3 999 0 1.4 93.444
## 4753 42 935 1 999 0 1.4 93.444
## 4754 28 131 4 999 0 -1.8 92.843
## 4755 29 61 1 999 0 1.4 93.444
## 4756 52 140 2 999 0 1.4 93.444
## 4757 53 418 1 999 0 1.1 93.994
## 4758 31 141 1 999 0 1.1 93.994
## 4759 41 21 20 999 0 1.4 93.918
## 4760 58 48 6 999 0 1.4 93.918
## 4761 53 64 1 999 0 1.4 93.444
## 4762 50 255 1 999 0 1.4 94.465
## 4763 35 154 1 999 0 1.4 93.444
## 4764 48 106 2 999 0 1.4 93.444
## 4765 32 35 1 999 0 1.4 93.918
## 4766 31 342 1 999 0 1.4 93.918
## 4767 34 111 3 999 0 -2.9 92.963
## 4768 53 322 1 999 0 -0.1 93.200
## 4769 37 70 9 999 0 1.4 93.918
## 4770 39 257 1 999 0 1.4 93.444
## 4771 38 992 1 999 0 1.4 94.465
## 4772 27 135 3 999 0 1.4 93.918
## 4773 48 82 1 999 0 1.1 93.994
## 4774 38 182 2 999 0 -0.1 93.200
## 4775 57 101 1 999 0 1.4 94.465
## 4776 33 143 4 999 0 1.4 93.918
## 4777 32 78 3 999 0 1.4 93.444
## 4778 31 259 4 999 0 -1.8 92.893
## 4779 44 221 1 999 0 1.4 93.918
## 4780 31 40 1 999 0 1.4 93.444
## 4781 44 150 1 999 0 1.4 93.444
## 4782 45 350 4 999 0 1.1 93.994
## 4783 34 1000 1 999 0 1.1 93.994
## 4784 32 228 2 999 0 1.4 93.444
## 4785 31 105 1 999 0 1.4 94.465
## 4786 56 163 2 999 0 1.4 93.444
## 4787 35 195 1 999 0 -1.8 92.893
## 4788 32 51 1 999 0 -1.8 92.893
## 4789 43 359 1 999 0 1.4 93.918
## 4790 27 568 8 999 0 -1.8 92.893
## 4791 52 60 3 999 0 1.4 94.465
## 4792 31 467 1 999 0 1.4 93.918
## 4793 25 84 5 999 0 1.4 93.918
## 4794 32 443 4 999 0 1.4 93.918
## 4795 36 379 1 999 0 1.4 93.444
## 4796 41 31 1 999 0 1.4 94.465
## 4797 32 140 1 999 0 1.1 93.994
## 4798 24 109 5 999 0 1.4 93.918
## 4799 60 223 2 999 0 1.1 93.994
## 4800 34 1256 1 999 0 -0.1 93.200
## 4801 36 208 5 999 0 1.4 93.918
## 4802 26 432 1 999 0 -2.9 92.469
## 4803 35 126 2 999 0 -1.8 92.893
## 4804 31 387 1 999 0 -2.9 92.201
## 4805 30 148 20 999 0 1.4 93.918
## 4806 31 262 1 999 0 1.4 93.918
## 4807 34 48 2 999 0 -0.1 93.200
## 4808 26 270 7 999 0 1.4 93.918
## 4809 43 142 2 999 0 -1.8 92.893
## 4810 52 152 1 999 0 1.4 93.444
## 4811 34 652 1 999 0 1.4 93.918
## 4812 30 215 1 999 0 1.4 93.918
## 4813 35 71 1 999 0 1.4 94.465
## 4814 23 795 1 999 0 1.4 93.918
## 4815 32 415 2 999 0 -1.7 94.215
## 4816 43 287 1 999 0 1.4 93.918
## 4817 40 89 4 999 0 1.1 93.994
## 4818 38 201 2 999 0 -2.9 92.201
## 4819 73 76 1 999 0 -2.9 92.201
## 4820 30 75 2 999 0 -0.1 93.200
## 4821 37 137 2 999 0 1.1 93.994
## 4822 53 241 1 999 0 1.4 93.444
## 4823 53 58 2 999 0 1.4 93.918
## 4824 37 11 7 999 0 1.4 94.465
## 4825 47 1569 1 999 0 1.4 93.918
## 4826 35 343 2 999 0 1.1 93.994
## 4827 43 732 2 999 0 1.4 93.918
## 4828 44 202 3 999 0 1.4 93.444
## 4829 53 190 1 999 0 -2.9 92.201
## 4830 54 192 3 999 0 1.1 93.994
## 4831 54 213 1 999 0 1.4 93.444
## 4832 36 156 2 999 0 1.4 93.444
## 4833 32 246 3 999 0 -3.4 92.379
## 4834 39 124 1 999 0 1.1 93.994
## 4835 33 762 3 999 0 -1.8 92.893
## 4836 44 330 3 999 0 1.4 93.918
## 4837 54 71 5 999 0 1.4 93.918
## 4838 32 122 17 999 0 1.4 93.918
## 4839 29 20 1 999 0 -1.8 92.893
## 4840 44 39 1 999 0 -0.1 93.200
## 4841 48 337 1 999 0 1.4 93.918
## 4842 36 10 3 999 0 1.4 93.918
## 4843 33 155 2 999 0 1.1 93.994
## 4844 29 249 3 999 0 1.4 93.918
## 4845 32 432 3 999 0 1.4 93.444
## 4846 71 1112 1 999 0 -2.9 92.201
## 4847 44 318 2 999 0 1.1 93.994
## 4848 55 172 4 999 0 1.1 93.994
## 4849 43 73 3 999 0 -0.1 93.200
## 4850 59 300 1 999 0 1.4 93.918
## 4851 34 467 1 999 0 1.4 93.918
## 4852 58 63 5 999 0 -0.1 93.200
## 4853 33 444 1 999 0 -1.8 92.893
## 4854 44 222 2 999 0 1.4 93.444
## 4855 44 107 3 999 0 1.4 93.444
## 4856 56 86 3 999 0 1.4 93.918
## 4857 34 149 3 999 0 1.4 93.444
## 4858 32 165 1 999 0 1.4 93.918
## 4859 51 103 1 999 0 -0.1 93.200
## 4860 32 62 1 999 0 1.1 93.994
## 4861 35 806 1 999 0 1.1 93.994
## 4862 37 520 7 999 0 1.4 93.918
## 4863 34 100 4 999 0 1.1 93.994
## 4864 38 390 3 999 0 -0.1 93.200
## 4865 25 384 1 999 0 1.4 93.918
## 4866 39 185 1 999 0 1.4 93.444
## 4867 30 312 3 999 0 1.1 93.994
## 4868 41 167 1 999 0 -0.1 93.200
## 4869 46 993 6 999 0 1.4 94.465
## 4870 40 123 3 999 0 1.4 93.444
## 4871 45 141 3 999 0 -1.8 92.893
## 4872 47 114 1 999 0 1.4 93.918
## 4873 31 32 1 999 0 -1.8 92.893
## 4874 42 214 1 999 0 1.1 93.994
## 4875 44 118 3 999 0 1.4 94.465
## 4876 35 98 2 999 0 1.1 93.994
## 4877 55 58 2 999 0 1.4 93.918
## 4878 24 211 8 999 0 1.4 93.918
## 4879 36 139 1 999 0 1.4 93.444
## 4880 40 243 1 999 0 -2.9 92.469
## 4881 39 253 1 999 0 1.4 93.444
## 4882 39 381 4 999 0 1.4 93.444
## 4883 31 220 1 999 0 -0.1 93.200
## 4884 39 80 3 999 0 1.4 93.444
## 4885 23 141 3 999 0 1.4 93.918
## 4886 32 82 1 999 0 -2.9 92.963
## 4887 41 256 1 999 0 -1.8 92.893
## 4888 57 278 4 999 0 1.1 93.994
## 4889 30 935 4 999 0 1.4 93.918
## 4890 31 140 3 999 0 1.4 93.444
## 4891 27 43 2 999 0 1.1 93.994
## 4892 42 56 1 999 0 -1.8 92.893
## 4893 29 92 1 999 0 1.4 93.918
## 4894 53 158 8 999 0 1.4 93.444
## 4895 45 69 1 999 0 1.4 94.465
## 4896 38 170 3 999 0 1.4 93.918
## 4897 27 287 2 999 0 1.4 93.918
## 4898 35 234 2 999 0 1.4 93.444
## 4899 48 256 3 999 0 -0.1 93.200
## 4900 54 594 3 999 0 1.4 94.465
## 4901 37 123 1 999 0 -1.8 92.893
## 4902 44 102 1 999 0 -1.8 92.893
## 4903 56 626 5 999 0 1.4 93.918
## 4904 39 582 1 999 0 1.4 94.465
## 4905 29 184 3 999 0 1.4 93.444
## 4906 37 413 4 999 0 1.4 93.918
## 4907 45 378 1 999 0 1.1 93.994
## 4908 40 14 5 999 0 1.4 93.444
## 4909 51 781 1 999 0 1.4 94.465
## 4910 39 187 1 999 0 1.4 93.918
## 4911 50 66 2 999 0 1.4 93.444
## 4912 36 156 4 999 0 -0.1 93.200
## 4913 47 258 2 999 0 1.4 94.465
## 4914 31 126 4 999 0 -1.8 93.075
## 4915 37 364 4 999 0 1.1 93.994
## 4916 40 467 6 999 0 -1.8 92.893
## 4917 36 333 3 999 0 1.1 93.994
## 4918 27 143 1 999 0 -1.8 92.893
## 4919 30 331 4 999 0 1.1 93.994
## 4920 48 21 2 999 0 1.4 93.918
## 4921 36 55 7 999 0 1.4 93.918
## 4922 30 305 1 999 0 -0.1 93.200
## 4923 37 900 2 999 0 1.1 93.994
## 4924 30 45 1 999 0 1.4 93.918
## 4925 49 602 1 999 0 1.4 93.918
## 4926 35 34 31 999 0 1.4 94.465
## 4927 39 342 2 999 0 1.1 93.994
## 4928 34 8 8 999 0 1.4 93.444
## 4929 30 385 1 999 0 -0.1 93.200
## 4930 56 176 7 999 0 1.4 93.444
## 4931 56 242 3 999 0 1.1 93.994
## 4932 41 21 1 999 0 1.4 94.465
## 4933 40 90 2 999 0 1.4 93.918
## 4934 30 171 6 999 0 1.4 93.444
## 4935 49 106 12 999 0 1.4 93.918
## 4936 46 566 2 999 0 1.1 93.994
## 4937 55 181 1 999 0 1.4 93.444
## 4938 31 345 1 999 0 1.1 93.994
## 4939 35 117 2 999 0 -1.8 92.843
## 4940 40 89 6 999 0 1.4 94.465
## 4941 54 823 1 999 0 1.4 93.918
## 4942 38 574 1 999 0 -1.8 92.893
## 4943 40 142 8 999 0 1.4 93.444
## 4944 45 92 1 999 0 1.4 93.918
## 4945 30 116 3 999 0 1.4 94.465
## 4946 39 266 9 999 0 1.4 93.918
## 4947 49 146 1 999 0 1.4 93.918
## 4948 58 162 2 999 0 1.1 93.994
## 4949 43 435 3 999 0 1.4 94.465
## 4950 35 344 1 999 0 1.4 94.465
## 4951 55 169 5 999 0 1.4 93.444
## 4952 35 72 1 999 0 -1.8 93.075
## 4953 43 312 2 999 0 1.4 93.918
## 4954 39 163 1 999 0 1.4 93.444
## 4955 34 181 1 999 0 1.4 93.918
## 4956 33 341 1 999 0 -0.1 93.200
## 4957 58 81 1 999 0 1.4 93.918
## 4958 45 116 1 999 0 1.4 94.465
## 4959 35 215 1 999 0 -1.8 92.893
## 4960 31 176 1 999 0 -1.8 92.893
## 4961 31 107 1 999 0 -0.1 93.200
## 4962 34 114 2 999 0 1.4 93.918
## 4963 45 222 1 999 0 1.4 94.465
## 4964 33 82 1 999 0 1.1 93.994
## 4965 35 51 3 999 0 1.4 93.444
## 4966 57 203 1 999 0 1.1 93.994
## 4967 43 154 2 999 0 1.1 93.994
## 4968 43 315 2 999 0 1.1 93.994
## 4969 32 128 3 999 0 1.1 93.994
## 4970 29 130 3 999 0 1.4 93.918
## 4971 29 694 2 999 0 1.4 94.465
## 4972 21 106 1 999 0 -2.9 92.963
## 4973 28 285 1 999 0 1.1 93.994
## 4974 47 202 3 999 0 1.4 93.918
## 4975 32 50 6 999 0 1.4 93.918
## 4976 36 42 1 999 0 -0.1 93.200
## 4977 66 328 1 999 0 -1.8 93.369
## 4978 47 362 2 999 0 1.4 93.918
## 4979 57 412 7 999 0 1.4 94.465
## 4980 59 1268 2 999 0 1.4 94.465
## 4981 59 91 1 999 0 1.4 93.444
## 4982 33 482 1 999 0 -1.8 92.893
## 4983 44 284 5 999 0 1.1 93.994
## 4984 40 355 1 999 0 -2.9 92.963
## 4985 57 379 2 999 0 1.1 93.994
## 4986 29 11 5 999 0 -1.8 92.893
## 4987 33 100 1 999 0 -0.1 93.200
## 4988 38 114 1 999 0 -1.8 92.893
## 4989 29 211 1 999 0 1.4 93.918
## 4990 57 236 1 999 0 -1.8 92.893
## 4991 39 157 5 999 0 1.4 93.918
## 4992 51 179 4 999 0 1.4 93.918
## 4993 30 338 1 999 0 1.4 94.465
## 4994 47 78 1 999 0 1.4 94.465
## 4995 39 175 2 999 0 1.1 93.994
## 4996 31 656 3 999 0 1.4 93.918
## 4997 38 152 2 999 0 -1.8 92.893
## 4998 44 50 2 999 0 1.4 94.465
## 4999 38 517 5 999 0 1.4 93.918
## cons.conf.idx euribor3m nr.employed job_encoded marital_encoded
## 1 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2 -37.5 0.878 4963.6 0.8854962 0.8586118
## 3 -47.1 1.405 5099.1 0.9229145 0.8983567
## 4 -46.2 1.250 5099.1 0.8798814 0.8983567
## 5 -46.2 1.250 5099.1 0.9229145 0.8983567
## 6 -46.2 1.250 5099.1 0.9229145 0.8586118
## 7 -31.4 0.861 5076.2 0.7666667 0.8983567
## 8 -47.1 1.365 5099.1 0.6868132 0.8586118
## 9 -47.1 1.410 5099.1 0.9229145 0.8983567
## 10 -46.2 1.344 5099.1 0.8854962 0.8983567
## 11 -26.9 0.742 5017.5 0.9229145 0.8586118
## 12 -46.2 1.299 5099.1 0.8798814 0.9007315
## 13 -42.0 4.076 5195.8 0.9074675 0.8586118
## 14 -46.2 1.354 5099.1 0.9271523 0.8983567
## 15 -47.1 1.479 5099.1 0.9074675 0.8983567
## 16 -46.2 1.313 5099.1 0.8798814 0.8586118
## 17 -46.2 1.250 5099.1 0.9229145 0.8586118
## 18 -47.1 1.405 5099.1 0.8874842 0.9007315
## 19 -46.2 1.291 5099.1 0.9229145 0.8983567
## 20 -46.2 1.313 5099.1 0.8874842 0.8983567
## 21 -47.1 1.415 5099.1 0.8798814 0.9007315
## 22 -42.0 4.191 5195.8 0.8798814 0.8983567
## 23 -46.2 1.313 5099.1 0.9229145 0.8983567
## 24 -42.0 4.076 5195.8 0.8854962 0.8983567
## 25 -46.2 1.266 5099.1 0.9229145 0.8983567
## 26 -39.8 0.761 4991.6 0.9074675 0.8983567
## 27 -42.0 4.076 5195.8 0.9229145 0.8983567
## 28 -46.2 1.266 5099.1 0.9198606 0.8983567
## 29 -46.2 1.244 5099.1 0.8854962 0.8983567
## 30 -46.2 1.250 5099.1 0.9271523 0.8983567
## 31 -46.2 1.250 5099.1 0.9229145 0.9007315
## 32 -47.1 1.405 5099.1 0.9229145 0.9007315
## 33 -37.5 0.879 4963.6 0.8854962 0.8586118
## 34 -46.2 1.266 5099.1 0.8798814 0.8586118
## 35 -46.2 1.299 5099.1 0.8798814 0.8586118
## 36 -47.1 1.405 5099.1 0.9074675 0.8983567
## 37 -46.2 1.313 5099.1 0.9229145 0.8983567
## 38 -46.2 1.327 5099.1 0.9229145 0.9007315
## 39 -46.2 1.250 5099.1 0.8798814 0.8983567
## 40 -26.9 0.720 5017.5 0.7666667 0.9007315
## 41 -42.0 4.076 5195.8 0.8798814 0.8983567
## 42 -46.2 1.313 5099.1 0.9229145 0.8586118
## 43 -31.4 0.825 5076.2 0.9074675 0.8983567
## 44 -46.2 1.354 5099.1 0.9074675 0.8983567
## 45 -47.1 1.445 5099.1 0.7666667 0.8983567
## 46 -47.1 1.405 5099.1 0.8854962 0.9007315
## 47 -46.2 1.354 5099.1 0.8854962 0.8983567
## 48 -38.3 0.904 4991.6 0.7666667 0.8983567
## 49 -42.0 4.191 5195.8 0.8798814 0.9007315
## 50 -26.9 0.744 5017.5 0.7666667 0.8983567
## 51 -40.8 1.215 5076.2 0.8798814 0.8983567
## 52 -47.1 1.405 5099.1 0.8798814 0.8586118
## 53 -46.2 1.327 5099.1 0.8798814 0.8586118
## 54 -47.1 1.400 5099.1 0.8854962 0.8586118
## 55 -46.2 1.266 5099.1 0.8798814 0.8983567
## 56 -46.2 1.250 5099.1 0.8798814 0.8983567
## 57 -31.4 0.879 5076.2 0.8798814 0.8586118
## 58 -47.1 1.365 5099.1 0.8854962 0.9007315
## 59 -47.1 1.405 5099.1 0.9229145 0.9007315
## 60 -34.8 0.654 5008.7 0.8798814 0.8983567
## 61 -46.2 1.299 5099.1 0.8798814 0.9007315
## 62 -40.0 0.697 5008.7 0.7666667 0.8983567
## 63 -46.2 1.259 5099.1 0.7666667 0.8983567
## 64 -30.1 0.714 5017.5 0.8798814 0.8983567
## 65 -42.0 4.021 5195.8 0.9074675 0.8983567
## 66 -42.0 4.120 5195.8 0.8854962 0.8983567
## 67 -47.1 1.405 5099.1 0.8874842 0.8586118
## 68 -37.5 0.879 4963.6 0.8854962 0.8586118
## 69 -46.2 1.334 5099.1 0.8798814 0.8983567
## 70 -40.3 0.885 4991.6 0.8798814 0.8586118
## 71 -46.2 1.244 5099.1 0.8798814 0.8983567
## 72 -46.2 1.354 5099.1 0.8854962 0.8983567
## 73 -46.2 1.250 5099.1 0.9229145 0.8983567
## 74 -46.2 1.281 5099.1 0.8798814 0.8586118
## 75 -46.2 1.250 5099.1 0.8854962 0.8586118
## 76 -46.2 1.266 5099.1 0.8854962 0.8983567
## 77 -50.8 1.050 4963.6 0.8798814 0.8983567
## 78 -47.1 1.410 5099.1 0.9229145 0.8586118
## 79 -40.8 1.262 5076.2 0.8798814 0.8586118
## 80 -46.2 1.291 5099.1 0.9229145 0.8586118
## 81 -50.8 1.049 4963.6 0.8798814 0.9007315
## 82 -47.1 1.405 5099.1 0.9198606 0.8983567
## 83 -40.3 0.885 4991.6 0.8032787 0.8586118
## 84 -42.0 4.191 5195.8 0.8854962 0.8983567
## 85 -47.1 1.405 5099.1 0.8854962 0.8983567
## 86 -46.2 1.266 5099.1 0.8874842 0.8983567
## 87 -42.0 4.153 5195.8 0.8854962 0.8983567
## 88 -46.2 1.291 5099.1 0.8854962 0.8983567
## 89 -42.0 4.153 5195.8 0.8798814 0.8586118
## 90 -46.2 1.344 5099.1 0.9229145 0.8983567
## 91 -42.0 4.076 5195.8 0.8798814 0.8586118
## 92 -40.8 1.215 5076.2 0.8798814 0.8983567
## 93 -46.2 1.299 5099.1 0.8798814 0.8586118
## 94 -38.3 0.891 4991.6 0.9198606 0.9007315
## 95 -42.0 4.076 5195.8 0.8854962 0.8586118
## 96 -42.0 4.076 5195.8 0.9271523 0.8983567
## 97 -49.5 0.977 4963.6 0.6868132 0.8586118
## 98 -47.1 1.423 5099.1 0.9229145 0.8586118
## 99 -46.2 1.313 5099.1 0.9229145 0.8586118
## 100 -37.5 0.879 4963.6 0.8854962 0.8586118
## 101 -31.4 0.861 5076.2 0.8854962 0.8586118
## 102 -46.2 1.250 5099.1 0.8874842 0.8983567
## 103 -38.3 0.899 4991.6 0.7666667 0.8983567
## 104 -47.1 1.483 5099.1 0.9229145 0.8586118
## 105 -42.0 4.153 5195.8 0.9074675 0.8586118
## 106 -40.0 0.668 5008.7 0.8874842 0.8983567
## 107 -46.2 1.266 5099.1 0.8798814 0.8586118
## 108 -47.1 1.405 5099.1 0.9229145 0.8983567
## 109 -46.2 1.291 5099.1 0.8874842 0.8983567
## 110 -34.8 0.654 5008.7 0.8798814 0.8586118
## 111 -39.8 0.702 4991.6 0.7666667 0.9007315
## 112 -42.0 4.120 5195.8 0.9198606 0.8983567
## 113 -26.9 0.737 5017.5 0.9074675 0.8586118
## 114 -40.8 1.266 5076.2 0.9074675 0.8586118
## 115 -46.2 1.344 5099.1 0.8854962 0.8586118
## 116 -47.1 1.410 5099.1 0.9229145 0.8586118
## 117 -30.1 0.714 5017.5 0.9271523 0.8983567
## 118 -46.2 1.344 5099.1 0.9229145 0.8983567
## 119 -34.8 0.635 5008.7 0.8874842 0.8983567
## 120 -31.4 0.884 5076.2 0.8854962 0.8586118
## 121 -47.1 1.405 5099.1 0.9229145 0.8983567
## 122 -47.1 1.405 5099.1 0.8851675 0.8586118
## 123 -46.2 1.299 5099.1 0.8874842 0.8586118
## 124 -31.4 0.849 5076.2 0.7666667 0.8983567
## 125 -31.4 0.869 5076.2 0.9229145 0.8983567
## 126 -46.2 1.250 5099.1 0.8874842 0.9007315
## 127 -42.0 4.021 5195.8 0.7666667 0.8983567
## 128 -42.0 4.120 5195.8 0.9074675 0.8983567
## 129 -46.2 1.250 5099.1 0.9271523 0.8586118
## 130 -46.2 1.250 5099.1 0.8874842 0.8983567
## 131 -40.8 1.206 5076.2 0.8798814 0.8586118
## 132 -30.1 0.714 5017.5 0.8798814 0.8586118
## 133 -40.8 1.262 5076.2 0.8798814 0.8983567
## 134 -46.2 1.281 5099.1 0.8874842 0.8586118
## 135 -40.3 0.876 4991.6 0.8960396 0.8983567
## 136 -47.1 1.405 5099.1 0.9074675 0.8983567
## 137 -46.2 1.250 5099.1 0.8798814 0.9007315
## 138 -33.6 0.979 5076.2 0.9074675 0.9007315
## 139 -47.1 1.453 5099.1 0.8874842 0.8983567
## 140 -42.0 4.021 5195.8 0.8798814 0.8586118
## 141 -47.1 1.405 5099.1 0.9229145 0.8983567
## 142 -31.4 0.854 5076.2 0.8798814 0.8983567
## 143 -42.0 4.120 5195.8 0.9229145 0.8586118
## 144 -30.1 0.719 5017.5 0.8798814 0.8983567
## 145 -31.4 0.883 5076.2 0.8798814 0.8586118
## 146 -46.2 1.266 5099.1 0.8874842 0.8983567
## 147 -46.2 1.291 5099.1 0.8854962 0.8983567
## 148 -47.1 1.405 5099.1 0.9074675 0.8983567
## 149 -38.3 0.891 4991.6 0.8798814 0.8983567
## 150 -42.0 4.021 5195.8 0.8874842 0.8586118
## 151 -42.0 4.153 5195.8 0.8854962 0.8983567
## 152 -38.3 0.899 4991.6 0.6868132 0.8586118
## 153 -47.1 1.405 5099.1 0.9229145 0.8983567
## 154 -47.1 1.405 5099.1 0.8874842 0.8586118
## 155 -42.0 4.191 5195.8 0.8960396 0.8983567
## 156 -46.2 1.354 5099.1 0.8854962 0.8586118
## 157 -46.2 1.281 5099.1 0.8798814 0.8586118
## 158 -46.2 1.354 5099.1 0.8798814 0.8586118
## 159 -46.2 1.313 5099.1 0.8798814 0.8983567
## 160 -47.1 1.435 5099.1 0.8798814 0.8586118
## 161 -50.0 1.811 5099.1 0.6868132 0.8586118
## 162 -42.0 4.191 5195.8 0.9074675 0.9007315
## 163 -46.2 1.299 5099.1 0.8854962 0.8983567
## 164 -47.1 1.405 5099.1 0.9271523 0.8586118
## 165 -42.0 4.021 5195.8 0.8854962 0.8586118
## 166 -47.1 1.405 5099.1 0.8851675 0.8983567
## 167 -40.8 1.262 5076.2 0.8854962 0.8586118
## 168 -47.1 1.435 5099.1 0.6868132 0.8586118
## 169 -40.3 0.827 4991.6 0.7666667 0.9007315
## 170 -46.2 1.250 5099.1 0.9229145 0.8983567
## 171 -40.8 1.262 5076.2 0.7666667 0.8983567
## 172 -46.2 1.344 5099.1 0.9229145 0.8983567
## 173 -34.8 0.639 5008.7 0.7666667 0.8983567
## 174 -46.2 1.250 5099.1 0.8874842 0.8586118
## 175 -47.1 1.405 5099.1 0.8798814 0.8983567
## 176 -31.4 0.861 5076.2 0.7666667 0.8983567
## 177 -46.2 1.266 5099.1 0.8798814 0.8983567
## 178 -46.2 1.291 5099.1 0.8798814 0.8586118
## 179 -42.0 4.153 5195.8 0.8854962 0.8983567
## 180 -30.1 0.718 5017.5 0.7666667 0.8983567
## 181 -42.0 4.021 5195.8 0.9229145 0.8983567
## 182 -47.1 1.405 5099.1 0.8798814 0.8586118
## 183 -46.2 1.344 5099.1 0.9229145 0.8586118
## 184 -46.2 1.266 5099.1 0.8874842 0.8586118
## 185 -42.0 4.153 5195.8 0.9074675 0.8586118
## 186 -49.5 0.987 4963.6 0.9198606 0.8983567
## 187 -30.1 0.716 5017.5 0.8960396 0.9007315
## 188 -47.1 1.405 5099.1 0.8874842 0.8586118
## 189 -46.2 1.291 5099.1 0.8874842 0.8983567
## 190 -47.1 1.466 5099.1 0.8854962 0.8983567
## 191 -46.2 1.299 5099.1 0.8854962 0.8586118
## 192 -33.0 0.715 5023.5 0.6868132 0.8586118
## 193 -26.9 0.731 5017.5 0.8798814 0.8586118
## 194 -42.0 4.076 5195.8 0.9229145 0.8983567
## 195 -46.2 1.291 5099.1 0.8854962 0.8586118
## 196 -46.2 1.281 5099.1 0.8798814 0.8586118
## 197 -46.2 1.313 5099.1 0.9229145 0.8983567
## 198 -46.2 1.354 5099.1 0.8960396 0.8983567
## 199 -42.0 4.191 5195.8 0.8854962 0.8983567
## 200 -47.1 1.410 5099.1 0.9229145 0.8983567
## 201 -46.2 1.281 5099.1 0.9229145 0.8983567
## 202 -47.1 1.410 5099.1 0.8854962 0.8983567
## 203 -40.8 1.262 5076.2 0.8874842 0.8586118
## 204 -46.2 1.244 5099.1 0.8854962 0.8586118
## 205 -42.0 4.153 5195.8 0.8851675 0.8983567
## 206 -37.5 0.878 4963.6 0.8874842 0.8586118
## 207 -39.8 0.754 4991.6 0.9229145 0.8586118
## 208 -31.4 0.883 5076.2 0.9074675 0.8983567
## 209 -42.0 4.153 5195.8 0.8798814 0.8983567
## 210 -31.4 0.821 5076.2 0.8854962 0.8586118
## 211 -46.2 1.281 5099.1 0.8798814 0.8983567
## 212 -42.0 4.021 5195.8 0.8854962 0.8586118
## 213 -46.2 1.344 5099.1 0.9229145 0.8983567
## 214 -46.2 1.313 5099.1 0.8874842 0.8983567
## 215 -42.0 4.120 5195.8 0.8798814 0.8983567
## 216 -40.3 0.846 4991.6 0.9229145 0.8586118
## 217 -47.1 1.405 5099.1 0.9229145 0.8983567
## 218 -47.1 1.405 5099.1 0.8798814 0.8983567
## 219 -42.0 4.153 5195.8 0.9198606 0.8983567
## 220 -40.8 1.262 5076.2 0.8851675 0.8983567
## 221 -38.3 0.904 4991.6 0.9229145 0.8983567
## 222 -42.0 4.021 5195.8 0.7666667 0.8586118
## 223 -26.9 0.739 5017.5 0.8798814 0.8586118
## 224 -40.3 0.899 4991.6 0.8798814 0.9007315
## 225 -46.2 1.334 5099.1 0.8798814 0.8983567
## 226 -42.0 4.076 5195.8 0.8854962 0.8983567
## 227 -46.2 1.299 5099.1 0.8854962 0.8983567
## 228 -31.4 0.821 5076.2 0.8854962 0.8983567
## 229 -47.1 1.410 5099.1 0.9229145 0.8983567
## 230 -30.1 0.714 5017.5 0.9074675 0.8983567
## 231 -42.0 4.120 5195.8 0.8798814 0.8983567
## 232 -30.1 0.716 5017.5 0.9074675 0.8983567
## 233 -42.0 4.153 5195.8 0.9074675 0.8983567
## 234 -31.4 0.873 5076.2 0.7666667 0.8983567
## 235 -46.2 1.299 5099.1 0.8854962 0.8983567
## 236 -42.0 4.021 5195.8 0.8798814 0.8983567
## 237 -29.8 0.741 5017.5 0.9229145 0.8983567
## 238 -46.2 1.266 5099.1 0.9229145 0.8983567
## 239 -46.2 1.299 5099.1 0.8874842 0.8586118
## 240 -42.0 4.021 5195.8 0.8854962 0.8983567
## 241 -26.9 0.743 5017.5 0.8854962 0.8983567
## 242 -31.4 0.881 5076.2 0.8851675 0.8983567
## 243 -47.1 1.365 5099.1 0.8874842 0.8983567
## 244 -31.4 0.884 5076.2 0.8854962 0.8586118
## 245 -46.2 1.334 5099.1 0.8798814 0.9007315
## 246 -37.5 0.878 4963.6 0.9074675 0.8983567
## 247 -46.2 1.264 5099.1 0.8854962 0.8586118
## 248 -46.2 1.244 5099.1 0.8798814 0.8983567
## 249 -46.2 1.299 5099.1 0.8854962 0.8586118
## 250 -29.8 0.755 5017.5 0.8798814 0.9007315
## 251 -47.1 1.423 5099.1 0.8798814 0.8586118
## 252 -30.1 0.718 5017.5 0.7666667 0.8983567
## 253 -40.3 0.884 4991.6 0.8874842 0.8586118
## 254 -46.2 1.344 5099.1 0.8798814 0.8586118
## 255 -47.1 1.405 5099.1 0.8854962 0.9007315
## 256 -39.8 0.742 4991.6 0.8854962 0.8983567
## 257 -46.2 1.250 5099.1 0.9229145 0.9007315
## 258 -46.2 1.344 5099.1 0.8874842 0.8983567
## 259 -47.1 1.410 5099.1 0.8874842 0.8586118
## 260 -42.0 4.191 5195.8 0.9271523 0.8983567
## 261 -46.2 1.266 5099.1 0.9229145 0.8983567
## 262 -49.5 1.032 4963.6 0.9074675 0.8983567
## 263 -31.4 0.821 5076.2 0.9198606 0.8586118
## 264 -38.3 0.904 4991.6 0.6868132 0.8586118
## 265 -47.1 1.405 5099.1 0.9229145 0.9007315
## 266 -26.9 0.740 5017.5 0.9074675 0.8983567
## 267 -46.2 1.266 5099.1 0.8874842 0.8983567
## 268 -46.2 1.291 5099.1 0.8798814 0.8586118
## 269 -47.1 1.405 5099.1 0.8854962 0.8586118
## 270 -42.0 4.120 5195.8 0.8960396 0.8983567
## 271 -46.2 1.291 5099.1 0.9229145 0.8983567
## 272 -47.1 1.405 5099.1 0.9074675 0.8983567
## 273 -40.3 0.790 4991.6 0.8874842 0.8586118
## 274 -47.1 1.405 5099.1 0.9229145 0.8586118
## 275 -46.2 1.266 5099.1 0.9229145 0.8983567
## 276 -46.2 1.250 5099.1 0.8798814 0.9007315
## 277 -40.3 0.896 4991.6 0.8798814 0.8586118
## 278 -46.2 1.244 5099.1 0.9229145 0.8586118
## 279 -46.2 1.264 5099.1 0.7666667 0.8983567
## 280 -31.4 0.861 5076.2 0.8798814 0.8586118
## 281 -46.2 1.344 5099.1 0.8854962 0.8983567
## 282 -42.0 4.191 5195.8 0.9229145 0.8983567
## 283 -46.2 1.344 5099.1 0.9229145 0.8983567
## 284 -42.0 4.191 5195.8 0.9271523 0.8983567
## 285 -46.2 1.266 5099.1 0.8798814 0.8586118
## 286 -49.5 0.982 4963.6 0.9229145 0.8586118
## 287 -40.3 0.896 4991.6 0.9198606 0.8983567
## 288 -46.2 1.250 5099.1 0.9229145 0.8586118
## 289 -47.1 1.405 5099.1 0.6868132 0.8586118
## 290 -46.2 1.327 5099.1 0.9271523 0.8983567
## 291 -46.2 1.250 5099.1 0.8854962 0.8586118
## 292 -42.0 4.076 5195.8 0.9074675 0.8983567
## 293 -46.2 1.291 5099.1 0.9229145 0.8983567
## 294 -46.2 1.327 5099.1 0.9229145 0.8983567
## 295 -42.0 4.191 5195.8 0.9229145 0.9007315
## 296 -40.3 0.885 4991.6 0.8798814 0.8586118
## 297 -46.2 1.250 5099.1 0.9229145 0.8586118
## 298 -46.2 1.281 5099.1 0.6868132 0.8586118
## 299 -47.1 1.410 5099.1 0.9229145 0.8983567
## 300 -46.2 1.299 5099.1 0.8798814 0.8586118
## 301 -46.2 1.291 5099.1 0.8854962 0.8983567
## 302 -42.0 4.153 5195.8 0.9229145 0.8983567
## 303 -46.2 1.313 5099.1 0.9074675 0.8586118
## 304 -42.0 4.120 5195.8 0.9074675 0.8983567
## 305 -42.0 4.153 5195.8 0.8874842 0.9007315
## 306 -34.6 0.644 5008.7 0.6868132 0.8586118
## 307 -34.8 0.655 5008.7 0.7666667 0.9007315
## 308 -47.1 1.405 5099.1 0.9229145 0.8983567
## 309 -47.1 1.365 5099.1 0.8798814 0.8983567
## 310 -31.4 0.883 5076.2 0.8798814 0.8983567
## 311 -42.0 4.120 5195.8 0.8798814 0.8983567
## 312 -42.0 4.153 5195.8 0.8960396 0.8983567
## 313 -30.1 0.716 5017.5 0.8032787 0.8983567
## 314 -30.1 0.719 5017.5 0.9229145 0.8983567
## 315 -46.2 1.291 5099.1 0.8798814 0.8586118
## 316 -46.2 1.313 5099.1 0.9229145 0.8983567
## 317 -46.2 1.270 5099.1 0.8798814 0.8983567
## 318 -26.9 0.739 5017.5 0.6868132 0.8586118
## 319 -34.6 0.640 5008.7 0.8854962 0.8983567
## 320 -47.1 1.466 5099.1 0.9229145 0.8983567
## 321 -46.2 1.266 5099.1 0.9229145 0.8586118
## 322 -46.2 1.291 5099.1 0.9229145 0.8983567
## 323 -46.2 1.291 5099.1 0.9229145 0.8983567
## 324 -42.0 4.153 5195.8 0.8798814 0.9007315
## 325 -33.0 0.707 5023.5 0.8854962 0.8586118
## 326 -46.2 1.313 5099.1 0.9229145 0.8586118
## 327 -38.3 0.900 4991.6 0.9229145 0.8983567
## 328 -26.9 0.739 5017.5 0.8798814 0.8586118
## 329 -46.2 1.313 5099.1 0.9229145 0.8983567
## 330 -46.2 1.299 5099.1 0.8798814 0.8586118
## 331 -46.2 1.291 5099.1 0.8874842 0.8586118
## 332 -46.2 1.250 5099.1 0.8798814 0.8983567
## 333 -50.8 1.041 4963.6 0.8854962 0.8983567
## 334 -42.0 4.021 5195.8 0.8798814 0.8586118
## 335 -38.3 0.898 4991.6 0.6868132 0.8586118
## 336 -26.9 0.739 5017.5 0.9271523 0.8983567
## 337 -46.2 1.266 5099.1 0.8874842 0.8586118
## 338 -46.2 1.344 5099.1 0.9271523 0.8983567
## 339 -46.2 1.299 5099.1 0.8874842 0.8983567
## 340 -46.2 1.250 5099.1 0.8874842 0.8586118
## 341 -42.0 4.191 5195.8 0.9271523 0.9007315
## 342 -46.2 1.313 5099.1 0.8798814 0.8586118
## 343 -30.1 0.720 5017.5 0.8960396 0.9007315
## 344 -46.2 1.281 5099.1 0.8854962 0.8586118
## 345 -46.2 1.334 5099.1 0.8874842 0.8983567
## 346 -40.3 0.782 4991.6 0.8798814 0.8586118
## 347 -47.1 1.405 5099.1 0.8798814 0.8586118
## 348 -46.2 1.281 5099.1 0.7666667 0.9007315
## 349 -42.0 4.021 5195.8 0.9198606 0.8586118
## 350 -46.2 1.354 5099.1 0.9229145 0.8983567
## 351 -40.8 1.260 5076.2 0.8851675 0.8983567
## 352 -47.1 1.365 5099.1 0.7666667 0.8983567
## 353 -46.2 1.281 5099.1 0.9074675 0.8983567
## 354 -30.1 0.722 5017.5 0.8854962 0.9007315
## 355 -42.0 4.120 5195.8 0.8874842 0.8983567
## 356 -42.0 4.191 5195.8 0.9271523 0.8983567
## 357 -46.2 1.334 5099.1 0.9198606 0.8983567
## 358 -46.2 1.291 5099.1 0.8960396 0.8586118
## 359 -42.0 4.191 5195.8 0.9229145 0.8983567
## 360 -47.1 1.479 5099.1 0.8960396 0.8983567
## 361 -46.2 1.244 5099.1 0.8854962 0.8586118
## 362 -46.2 1.291 5099.1 0.9074675 0.8586118
## 363 -46.2 1.281 5099.1 0.9229145 0.8983567
## 364 -42.0 4.076 5195.8 0.8960396 0.9007315
## 365 -26.9 0.739 5017.5 0.9198606 0.8586118
## 366 -38.3 0.904 4991.6 0.9074675 0.8983567
## 367 -34.6 0.642 5008.7 0.8960396 0.9007315
## 368 -40.8 1.268 5076.2 0.8798814 0.8586118
## 369 -46.2 1.313 5099.1 0.8854962 0.8983567
## 370 -46.2 1.313 5099.1 0.8798814 0.9007315
## 371 -40.3 0.840 4991.6 0.8798814 0.8586118
## 372 -26.9 0.722 5017.5 0.8798814 0.8983567
## 373 -46.2 1.281 5099.1 0.9229145 0.8586118
## 374 -46.2 1.266 5099.1 0.8798814 0.8586118
## 375 -46.2 1.266 5099.1 0.8798814 0.8983567
## 376 -40.8 1.262 5076.2 0.8854962 0.8586118
## 377 -46.2 1.244 5099.1 0.8854962 0.8586118
## 378 -50.0 1.757 5099.1 0.8798814 0.8586118
## 379 -26.9 0.728 5017.5 0.9229145 0.8983567
## 380 -38.3 0.904 4991.6 0.7666667 0.9007315
## 381 -46.2 1.281 5099.1 0.8854962 0.9007315
## 382 -46.2 1.327 5099.1 0.9074675 0.8983567
## 383 -42.0 4.120 5195.8 0.8874842 0.8983567
## 384 -46.2 1.281 5099.1 0.9229145 0.8983567
## 385 -30.1 0.714 5017.5 0.6868132 0.8586118
## 386 -47.1 1.405 5099.1 0.9229145 0.8586118
## 387 -46.2 1.291 5099.1 0.8798814 0.9007315
## 388 -46.2 1.313 5099.1 0.8854962 0.8586118
## 389 -46.2 1.281 5099.1 0.9198606 0.8983567
## 390 -47.1 1.410 5099.1 0.8874842 0.8586118
## 391 -46.2 1.299 5099.1 0.9074675 0.8983567
## 392 -42.0 4.021 5195.8 0.9229145 0.8983567
## 393 -46.2 1.334 5099.1 0.8798814 0.8586118
## 394 -40.8 1.281 5076.2 0.8798814 0.8586118
## 395 -47.1 1.410 5099.1 0.9229145 0.9007315
## 396 -49.5 1.037 4963.6 0.8798814 0.8983567
## 397 -31.4 0.869 5076.2 0.8798814 0.8586118
## 398 -47.1 1.405 5099.1 0.9229145 0.8983567
## 399 -46.2 1.250 5099.1 0.8798814 0.8586118
## 400 -42.0 4.120 5195.8 0.9271523 0.8983567
## 401 -46.2 1.334 5099.1 0.8874842 0.8983567
## 402 -46.2 1.250 5099.1 0.9229145 0.8983567
## 403 -30.1 0.719 5017.5 0.9229145 0.8983567
## 404 -47.1 1.405 5099.1 0.9074675 0.8983567
## 405 -40.8 1.262 5076.2 0.8798814 0.8586118
## 406 -30.1 0.722 5017.5 0.9198606 0.8586118
## 407 -47.1 1.479 5099.1 0.8874842 0.8983567
## 408 -46.2 1.327 5099.1 0.8874842 0.8983567
## 409 -47.1 1.405 5099.1 0.8874842 0.8586118
## 410 -40.8 1.262 5076.2 0.9198606 0.8586118
## 411 -46.2 1.327 5099.1 0.8851675 0.8586118
## 412 -46.2 1.344 5099.1 0.9229145 0.9007315
## 413 -42.0 4.120 5195.8 0.9229145 0.8586118
## 414 -42.0 4.120 5195.8 0.8798814 0.8586118
## 415 -42.0 4.120 5195.8 0.7666667 0.8983567
## 416 -46.2 1.266 5099.1 0.9229145 0.8586118
## 417 -47.1 1.423 5099.1 0.9229145 0.8983567
## 418 -30.1 0.714 5017.5 0.7666667 0.8586118
## 419 -46.2 1.313 5099.1 0.8798814 0.8983567
## 420 -47.1 1.405 5099.1 0.9229145 0.8983567
## 421 -42.0 4.021 5195.8 0.8854962 0.8586118
## 422 -31.4 0.834 5076.2 0.7666667 0.9007315
## 423 -42.0 4.191 5195.8 0.8798814 0.8983567
## 424 -46.2 1.266 5099.1 0.8854962 0.8586118
## 425 -46.2 1.291 5099.1 0.8798814 0.8983567
## 426 -46.2 1.281 5099.1 0.8798814 0.8983567
## 427 -34.8 0.654 5008.7 0.9074675 0.8983567
## 428 -46.2 1.291 5099.1 0.8798814 0.8983567
## 429 -29.8 0.788 5017.5 0.7666667 0.8983567
## 430 -46.2 1.299 5099.1 0.8032787 0.8586118
## 431 -46.2 1.266 5099.1 0.8798814 0.8983567
## 432 -47.1 1.405 5099.1 0.8798814 0.8586118
## 433 -46.2 1.334 5099.1 0.9229145 0.8983567
## 434 -39.8 0.702 4991.6 0.8798814 0.8586118
## 435 -46.2 1.266 5099.1 0.8874842 0.8983567
## 436 -46.2 1.281 5099.1 0.8798814 0.8983567
## 437 -42.0 4.076 5195.8 0.8854962 0.8983567
## 438 -42.0 4.191 5195.8 0.9271523 0.8983567
## 439 -42.0 4.120 5195.8 0.9271523 0.8983567
## 440 -46.2 1.281 5099.1 0.8854962 0.8586118
## 441 -47.1 1.445 5099.1 0.9229145 0.8983567
## 442 -47.1 1.410 5099.1 0.9229145 0.8983567
## 443 -40.3 0.840 4991.6 0.6868132 0.8586118
## 444 -26.9 0.742 5017.5 0.8854962 0.8983567
## 445 -31.4 0.879 5076.2 0.9198606 0.8586118
## 446 -46.2 1.281 5099.1 0.8960396 0.8983567
## 447 -49.5 0.942 4963.6 0.6868132 0.8586118
## 448 -46.2 1.281 5099.1 0.9229145 0.8586118
## 449 -46.2 1.327 5099.1 0.9229145 0.8983567
## 450 -37.5 0.877 4963.6 0.8854962 0.8586118
## 451 -47.1 1.405 5099.1 0.7666667 0.8983567
## 452 -49.5 0.965 4963.6 0.7666667 0.8983567
## 453 -46.2 1.299 5099.1 0.9229145 0.8983567
## 454 -46.2 1.266 5099.1 0.9229145 0.8983567
## 455 -26.9 0.754 5017.5 0.7666667 0.8983567
## 456 -46.2 1.266 5099.1 0.6868132 0.8586118
## 457 -46.2 1.299 5099.1 0.8874842 0.8586118
## 458 -42.0 4.120 5195.8 0.9271523 0.8983567
## 459 -46.2 1.281 5099.1 0.9229145 0.8983567
## 460 -46.2 1.291 5099.1 0.9229145 0.8983567
## 461 -29.8 0.809 5017.5 0.7666667 0.8983567
## 462 -46.2 1.313 5099.1 0.6868132 0.8586118
## 463 -42.0 4.021 5195.8 0.8960396 0.8983567
## 464 -42.0 4.021 5195.8 0.8854962 0.9007315
## 465 -42.0 4.191 5195.8 0.9229145 0.8983567
## 466 -47.1 1.405 5099.1 0.9074675 0.8586118
## 467 -47.1 1.405 5099.1 0.8854962 0.8586118
## 468 -46.2 1.313 5099.1 0.9229145 0.8983567
## 469 -40.0 0.699 5008.7 0.8854962 0.8586118
## 470 -37.5 0.886 4963.6 0.8798814 0.8983567
## 471 -46.2 1.334 5099.1 0.8798814 0.8983567
## 472 -40.8 1.260 5076.2 0.8798814 0.8586118
## 473 -42.0 4.076 5195.8 0.8798814 0.9007315
## 474 -46.2 1.291 5099.1 0.8874842 0.8983567
## 475 -46.2 1.299 5099.1 0.8874842 0.8983567
## 476 -31.4 0.879 5076.2 0.8798814 0.8983567
## 477 -40.0 0.684 5008.7 0.9074675 0.8983567
## 478 -34.6 0.635 5008.7 0.7666667 0.9007315
## 479 -46.2 1.344 5099.1 0.9229145 0.8983567
## 480 -46.2 1.344 5099.1 0.9229145 0.8586118
## 481 -33.0 0.715 5023.5 0.8854962 0.8983567
## 482 -42.0 4.153 5195.8 0.8854962 0.8586118
## 483 -31.4 0.873 5076.2 0.8798814 0.8983567
## 484 -29.8 0.750 5017.5 0.9074675 0.9007315
## 485 -42.0 4.076 5195.8 0.8798814 0.8586118
## 486 -31.4 0.851 5076.2 0.8798814 0.8586118
## 487 -42.0 4.021 5195.8 0.9271523 0.8983567
## 488 -42.0 4.076 5195.8 0.9074675 0.8983567
## 489 -46.2 1.334 5099.1 0.9271523 0.8983567
## 490 -30.1 0.714 5017.5 0.6868132 0.8586118
## 491 -37.5 0.886 4963.6 0.7666667 0.8983567
## 492 -46.2 1.291 5099.1 0.9229145 0.8983567
## 493 -46.2 1.281 5099.1 0.8874842 0.8586118
## 494 -38.3 0.900 4991.6 0.8798814 0.8586118
## 495 -47.1 1.405 5099.1 0.9229145 0.8983567
## 496 -46.2 1.334 5099.1 0.8798814 0.8983567
## 497 -42.0 4.153 5195.8 0.8851675 0.8983567
## 498 -46.2 1.334 5099.1 0.8854962 0.8983567
## 499 -46.2 1.299 5099.1 0.8798814 0.8586118
## 500 -40.8 1.262 5076.2 0.8854962 0.8586118
## 501 -42.0 4.076 5195.8 0.8851675 0.8586118
## 502 -46.2 1.344 5099.1 0.8854962 0.9007315
## 503 -42.0 4.153 5195.8 0.8798814 0.8983567
## 504 -40.0 0.677 5008.7 0.8874842 0.8983567
## 505 -29.8 0.788 5017.5 0.7666667 0.8983567
## 506 -46.2 1.334 5099.1 0.9229145 0.8586118
## 507 -46.2 1.313 5099.1 0.9229145 0.8983567
## 508 -42.0 4.021 5195.8 0.9229145 0.8983567
## 509 -46.2 1.344 5099.1 0.8874842 0.8983567
## 510 -42.0 4.120 5195.8 0.8798814 0.8983567
## 511 -47.1 1.410 5099.1 0.9229145 0.8983567
## 512 -47.1 1.405 5099.1 0.9229145 0.8983567
## 513 -30.1 0.715 5017.5 0.8798814 0.9007315
## 514 -46.2 1.299 5099.1 0.8854962 0.9007315
## 515 -42.0 4.021 5195.8 0.8854962 0.8586118
## 516 -47.1 1.405 5099.1 0.8874842 0.8586118
## 517 -46.2 1.334 5099.1 0.9198606 0.9007315
## 518 -46.2 1.344 5099.1 0.9271523 0.8983567
## 519 -31.4 0.883 5076.2 0.8798814 0.8983567
## 520 -39.8 0.742 4991.6 0.9198606 0.9007315
## 521 -46.2 1.327 5099.1 0.8854962 0.8586118
## 522 -46.2 1.266 5099.1 0.8798814 0.8983567
## 523 -46.2 1.327 5099.1 0.8874842 0.8983567
## 524 -47.1 1.445 5099.1 0.8874842 0.8983567
## 525 -46.2 1.250 5099.1 0.8854962 0.8983567
## 526 -46.2 1.299 5099.1 0.8798814 0.8586118
## 527 -42.0 4.120 5195.8 0.9271523 0.8983567
## 528 -46.2 1.299 5099.1 0.9271523 0.8983567
## 529 -46.2 1.344 5099.1 0.8798814 0.8586118
## 530 -46.2 1.266 5099.1 0.9271523 0.8983567
## 531 -47.1 1.479 5099.1 0.8874842 0.8983567
## 532 -47.1 1.405 5099.1 0.9074675 0.9007315
## 533 -46.2 1.291 5099.1 0.9074675 0.8586118
## 534 -40.3 0.827 4991.6 0.6868132 0.8586118
## 535 -42.0 4.120 5195.8 0.8798814 0.8983567
## 536 -39.8 0.704 4991.6 0.8798814 0.8586118
## 537 -40.0 0.692 5008.7 0.7666667 0.8983567
## 538 -46.2 1.250 5099.1 0.9074675 0.8586118
## 539 -46.2 1.250 5099.1 0.8874842 0.8586118
## 540 -46.2 1.344 5099.1 0.6868132 0.8586118
## 541 -26.9 0.728 5017.5 0.8798814 0.8586118
## 542 -40.0 0.668 5008.7 0.7666667 0.8983567
## 543 -46.2 1.266 5099.1 0.8854962 0.8983567
## 544 -42.0 4.021 5195.8 0.7666667 0.8983567
## 545 -46.2 1.354 5099.1 0.8798814 0.8586118
## 546 -31.4 0.869 5076.2 0.8854962 0.8983567
## 547 -46.2 1.327 5099.1 0.8854962 0.8586118
## 548 -42.0 4.153 5195.8 0.9074675 0.8983567
## 549 -38.3 0.898 4991.6 0.9198606 0.8586118
## 550 -37.5 0.886 4963.6 0.8798814 0.9007315
## 551 -46.2 1.266 5099.1 0.8798814 0.8983567
## 552 -46.2 1.313 5099.1 0.8854962 0.8983567
## 553 -47.1 1.415 5099.1 0.9229145 0.8983567
## 554 -47.1 1.410 5099.1 0.9229145 0.8983567
## 555 -37.5 0.881 4963.6 0.7666667 0.8983567
## 556 -47.1 1.405 5099.1 0.8798814 0.9007315
## 557 -47.1 1.410 5099.1 0.9229145 0.8586118
## 558 -34.6 0.640 5008.7 0.8854962 0.8983567
## 559 -46.2 1.266 5099.1 0.9229145 0.8586118
## 560 -42.0 4.191 5195.8 0.9271523 0.9007315
## 561 -46.2 1.281 5099.1 0.8798814 0.8586118
## 562 -38.3 0.904 4991.6 0.8854962 0.8983567
## 563 -47.1 1.453 5099.1 0.6868132 0.8586118
## 564 -42.0 4.021 5195.8 0.9074675 0.8983567
## 565 -46.2 1.281 5099.1 0.8798814 0.8983567
## 566 -47.1 1.405 5099.1 0.8854962 0.9007315
## 567 -46.2 1.313 5099.1 0.8874842 0.8586118
## 568 -31.4 0.838 5076.2 0.8798814 0.9007315
## 569 -46.2 1.313 5099.1 0.9229145 0.8983567
## 570 -46.2 1.244 5099.1 0.9229145 0.8983567
## 571 -47.1 1.466 5099.1 0.9229145 0.8983567
## 572 -46.2 1.327 5099.1 0.9229145 0.8983567
## 573 -46.2 1.299 5099.1 0.8874842 0.8983567
## 574 -46.2 1.291 5099.1 0.9229145 0.8586118
## 575 -34.8 0.636 5008.7 0.8798814 0.8586118
## 576 -47.1 1.415 5099.1 0.8798814 0.8983567
## 577 -46.2 1.244 5099.1 0.9074675 0.9007315
## 578 -46.2 1.266 5099.1 0.9229145 0.9007315
## 579 -40.8 1.260 5076.2 0.6868132 0.8586118
## 580 -33.0 0.715 5023.5 0.7666667 0.8983567
## 581 -47.1 1.405 5099.1 0.8798814 0.8983567
## 582 -42.0 4.191 5195.8 0.9271523 0.8983567
## 583 -37.5 0.881 4963.6 0.8798814 0.8586118
## 584 -46.2 1.334 5099.1 0.9229145 0.8983567
## 585 -46.2 1.299 5099.1 0.9229145 0.8983567
## 586 -39.8 0.761 4991.6 0.7666667 0.9007315
## 587 -46.2 1.334 5099.1 0.9229145 0.9007315
## 588 -42.0 4.076 5195.8 0.8798814 0.8586118
## 589 -47.1 1.405 5099.1 0.8874842 0.8983567
## 590 -46.2 1.299 5099.1 0.9229145 0.9007315
## 591 -46.2 1.313 5099.1 0.9229145 0.8983567
## 592 -46.2 1.281 5099.1 0.8798814 0.9007315
## 593 -46.2 1.244 5099.1 0.8798814 0.9007315
## 594 -42.0 4.120 5195.8 0.8854962 0.9007315
## 595 -42.0 4.153 5195.8 0.9271523 0.8983567
## 596 -46.2 1.334 5099.1 0.9074675 0.8983567
## 597 -42.0 4.153 5195.8 0.8851675 0.8983567
## 598 -42.0 4.076 5195.8 0.8854962 0.9007315
## 599 -34.8 0.655 5008.7 0.7666667 0.8983567
## 600 -49.5 1.000 4963.6 0.8854962 0.8983567
## 601 -42.0 4.021 5195.8 0.8854962 0.8983567
## 602 -42.0 4.076 5195.8 0.8854962 0.9007315
## 603 -42.0 4.120 5195.8 0.9074675 0.8586118
## 604 -42.0 4.153 5195.8 0.9229145 0.8586118
## 605 -46.2 1.250 5099.1 0.8874842 0.8983567
## 606 -31.4 0.884 5076.2 0.8854962 0.8983567
## 607 -42.0 4.120 5195.8 0.9229145 0.8586118
## 608 -40.3 0.835 4991.6 0.6868132 0.8586118
## 609 -46.2 1.281 5099.1 0.9198606 0.8586118
## 610 -46.2 1.299 5099.1 0.8854962 0.8983567
## 611 -46.2 1.327 5099.1 0.9074675 0.8983567
## 612 -47.1 1.372 5099.1 0.7666667 0.8983567
## 613 -46.2 1.299 5099.1 0.9271523 0.8983567
## 614 -46.2 1.334 5099.1 0.8874842 0.8586118
## 615 -46.2 1.291 5099.1 0.8798814 0.8586118
## 616 -47.1 1.365 5099.1 0.8851675 0.8983567
## 617 -47.1 1.410 5099.1 0.9271523 0.9007315
## 618 -40.3 0.835 4991.6 0.8874842 0.8586118
## 619 -47.1 1.405 5099.1 0.9229145 0.8983567
## 620 -46.2 1.281 5099.1 0.8798814 0.8586118
## 621 -47.1 1.405 5099.1 0.8798814 0.8586118
## 622 -46.2 1.313 5099.1 0.8798814 0.8586118
## 623 -42.0 4.191 5195.8 0.8851675 0.8983567
## 624 -38.3 0.898 4991.6 0.8874842 0.8586118
## 625 -46.2 1.299 5099.1 0.8854962 0.8586118
## 626 -46.2 1.266 5099.1 0.8798814 0.8983567
## 627 -42.0 4.120 5195.8 0.9229145 0.8983567
## 628 -34.8 0.654 5008.7 0.8874842 0.8983567
## 629 -46.2 1.266 5099.1 0.9229145 0.8983567
## 630 -26.9 0.742 5017.5 0.8854962 0.9007315
## 631 -42.0 4.153 5195.8 0.8798814 0.8586118
## 632 -47.1 1.483 5099.1 0.8874842 0.8983567
## 633 -49.5 0.977 4963.6 0.8874842 0.8983567
## 634 -30.1 0.719 5017.5 0.8854962 0.8586118
## 635 -26.9 0.735 5017.5 0.8798814 0.8586118
## 636 -46.2 1.264 5099.1 0.8798814 0.8586118
## 637 -46.2 1.327 5099.1 0.8874842 0.8983567
## 638 -42.0 4.120 5195.8 0.8798814 0.8586118
## 639 -46.2 1.281 5099.1 0.8854962 0.8983567
## 640 -42.0 4.021 5195.8 0.8798814 0.8983567
## 641 -42.0 4.021 5195.8 0.8798814 0.8586118
## 642 -42.0 4.120 5195.8 0.6868132 0.8983567
## 643 -46.2 1.266 5099.1 0.9229145 0.8983567
## 644 -46.2 1.291 5099.1 0.8874842 0.8983567
## 645 -40.3 0.846 4991.6 0.9229145 0.8586118
## 646 -46.2 1.344 5099.1 0.9271523 0.8983567
## 647 -34.8 0.651 5008.7 0.9198606 0.8586118
## 648 -46.2 1.291 5099.1 0.9198606 0.8586118
## 649 -42.0 4.286 5195.8 0.8798814 0.8983567
## 650 -46.2 1.266 5099.1 0.8874842 0.8586118
## 651 -46.2 1.344 5099.1 0.9074675 0.8586118
## 652 -31.4 0.873 5076.2 0.8854962 0.8983567
## 653 -31.4 0.879 5076.2 0.8854962 0.8983567
## 654 -42.0 4.120 5195.8 0.8874842 0.8983567
## 655 -42.0 4.153 5195.8 0.9198606 0.8983567
## 656 -42.0 4.021 5195.8 0.9229145 0.8983567
## 657 -46.2 1.266 5099.1 0.8798814 0.8586118
## 658 -40.0 0.683 5008.7 0.8798814 0.8586118
## 659 -46.2 1.344 5099.1 0.9271523 0.8983567
## 660 -47.1 1.405 5099.1 0.8854962 0.8586118
## 661 -46.2 1.313 5099.1 0.8874842 0.8983567
## 662 -46.2 1.299 5099.1 0.8798814 0.8586118
## 663 -46.2 1.281 5099.1 0.9074675 0.8983567
## 664 -46.2 1.344 5099.1 0.8798814 0.8983567
## 665 -46.2 1.266 5099.1 0.8874842 0.8586118
## 666 -46.2 1.344 5099.1 0.7666667 0.8983567
## 667 -42.0 4.153 5195.8 0.9074675 0.8983567
## 668 -42.0 4.021 5195.8 0.8854962 0.8983567
## 669 -50.8 1.048 4963.6 0.8798814 0.8586118
## 670 -47.1 1.405 5099.1 0.9229145 0.8586118
## 671 -46.2 1.291 5099.1 0.9229145 0.8586118
## 672 -47.1 1.405 5099.1 0.9229145 0.8983567
## 673 -46.2 1.334 5099.1 0.7666667 0.8983567
## 674 -47.1 1.410 5099.1 0.8851675 0.8983567
## 675 -46.2 1.344 5099.1 0.8960396 0.8983567
## 676 -42.0 4.120 5195.8 0.8798814 0.8983567
## 677 -47.1 1.365 5099.1 0.8874842 0.8983567
## 678 -46.2 1.281 5099.1 0.8798814 0.8983567
## 679 -46.2 1.281 5099.1 0.9229145 0.8586118
## 680 -46.2 1.266 5099.1 0.9271523 0.9007315
## 681 -42.0 4.191 5195.8 0.8851675 0.9007315
## 682 -31.4 0.861 5076.2 0.7666667 0.8983567
## 683 -46.2 1.291 5099.1 0.7666667 0.9007315
## 684 -39.8 0.702 4991.6 0.8874842 0.8586118
## 685 -42.0 4.120 5195.8 0.9074675 0.9007315
## 686 -46.2 1.291 5099.1 0.9229145 0.8983567
## 687 -46.2 1.313 5099.1 0.8798814 0.8586118
## 688 -42.0 4.021 5195.8 0.8798814 0.8983567
## 689 -46.2 1.291 5099.1 0.9229145 0.9007315
## 690 -46.2 1.327 5099.1 0.9229145 0.8983567
## 691 -42.0 4.120 5195.8 0.8798814 0.8983567
## 692 -47.1 1.405 5099.1 0.9229145 0.8586118
## 693 -40.3 0.899 4991.6 0.9074675 0.8983567
## 694 -47.1 1.365 5099.1 0.7666667 0.8983567
## 695 -46.2 1.291 5099.1 0.8874842 0.8586118
## 696 -34.8 0.651 5008.7 0.8854962 0.8983567
## 697 -47.1 1.405 5099.1 0.9229145 0.8586118
## 698 -42.0 4.076 5195.8 0.9229145 0.9007315
## 699 -30.1 0.716 5017.5 0.7666667 0.9007315
## 700 -42.0 4.191 5195.8 0.8874842 0.8983567
## 701 -46.2 1.299 5099.1 0.8798814 0.8983567
## 702 -46.2 1.281 5099.1 0.8874842 0.8586118
## 703 -46.2 1.250 5099.1 0.8798814 0.8586118
## 704 -46.2 1.291 5099.1 0.8798814 0.9007315
## 705 -46.2 1.299 5099.1 0.8798814 0.8586118
## 706 -38.3 0.904 4991.6 0.8798814 0.8586118
## 707 -46.2 1.313 5099.1 0.8854962 0.8983567
## 708 -46.2 1.313 5099.1 0.9229145 0.8586118
## 709 -42.0 4.076 5195.8 0.9229145 0.9007315
## 710 -46.2 1.250 5099.1 0.8798814 0.8586118
## 711 -42.0 4.153 5195.8 0.8798814 0.8983567
## 712 -42.0 4.076 5195.8 0.9271523 0.8983567
## 713 -46.2 1.334 5099.1 0.9229145 0.8586118
## 714 -30.1 0.720 5017.5 0.8851675 0.8983567
## 715 -42.0 4.120 5195.8 0.8854962 0.8983567
## 716 -46.2 1.334 5099.1 0.8874842 0.8586118
## 717 -42.0 4.120 5195.8 0.8798814 0.8586118
## 718 -46.2 1.334 5099.1 0.8874842 0.8983567
## 719 -46.2 1.264 5099.1 0.8854962 0.8586118
## 720 -46.2 1.344 5099.1 0.8874842 0.8983567
## 721 -42.0 4.120 5195.8 0.9074675 0.8586118
## 722 -46.2 1.281 5099.1 0.9229145 0.8983567
## 723 -46.2 1.313 5099.1 0.9074675 0.8983567
## 724 -42.0 4.076 5195.8 0.9198606 0.9007315
## 725 -49.5 0.987 4963.6 0.7666667 0.9007315
## 726 -31.4 0.883 5076.2 0.8798814 0.8983567
## 727 -46.2 1.264 5099.1 0.8851675 0.8983567
## 728 -46.2 1.299 5099.1 0.9229145 0.9007315
## 729 -34.8 0.654 5008.7 0.8854962 0.8586118
## 730 -47.1 1.405 5099.1 0.8874842 0.8983567
## 731 -42.0 4.021 5195.8 0.8854962 0.9007315
## 732 -46.2 1.244 5099.1 0.8874842 0.8586118
## 733 -46.2 1.334 5099.1 0.8798814 0.8983567
## 734 -31.4 0.879 5076.2 0.7666667 0.8983567
## 735 -42.0 4.153 5195.8 0.9074675 0.8983567
## 736 -47.1 1.365 5099.1 0.8854962 0.8983567
## 737 -39.8 0.727 4991.6 0.8798814 0.8983567
## 738 -47.1 1.453 5099.1 0.9229145 0.8983567
## 739 -40.8 1.266 5076.2 0.6868132 0.8586118
## 740 -31.4 0.883 5076.2 0.8798814 0.9007315
## 741 -26.9 0.740 5017.5 0.8798814 0.8983567
## 742 -46.2 1.281 5099.1 0.8854962 0.8983567
## 743 -46.2 1.327 5099.1 0.9229145 0.8983567
## 744 -46.2 1.334 5099.1 0.9074675 0.8586118
## 745 -46.2 1.327 5099.1 0.8798814 0.8586118
## 746 -46.2 1.299 5099.1 0.9271523 0.8983567
## 747 -46.2 1.281 5099.1 0.8874842 0.9007315
## 748 -46.2 1.344 5099.1 0.6868132 0.8586118
## 749 -46.2 1.344 5099.1 0.9229145 0.8983567
## 750 -40.3 0.884 4991.6 0.8854962 0.8586118
## 751 -46.2 1.299 5099.1 0.9074675 0.8983567
## 752 -46.2 1.327 5099.1 0.8798814 0.8586118
## 753 -40.8 1.262 5076.2 0.8032787 0.8586118
## 754 -46.2 1.291 5099.1 0.8798814 0.8586118
## 755 -47.1 1.410 5099.1 0.9229145 0.8983567
## 756 -47.1 1.405 5099.1 0.7666667 0.8983567
## 757 -42.0 4.021 5195.8 0.8798814 0.8586118
## 758 -42.0 4.120 5195.8 0.9074675 0.8983567
## 759 -42.0 4.153 5195.8 0.9198606 0.8983567
## 760 -46.2 1.281 5099.1 0.8854962 0.8983567
## 761 -40.0 0.692 5008.7 0.9074675 0.8983567
## 762 -47.1 1.405 5099.1 0.9229145 0.8983567
## 763 -42.0 4.076 5195.8 0.8798814 0.8983567
## 764 -31.4 0.884 5076.2 0.8798814 0.8983567
## 765 -46.2 1.250 5099.1 0.8960396 0.8983567
## 766 -29.8 0.750 5017.5 0.8960396 0.9007315
## 767 -46.2 1.327 5099.1 0.8874842 0.8983567
## 768 -34.8 0.653 5008.7 0.6868132 0.8586118
## 769 -50.8 1.050 4963.6 0.8874842 0.8983567
## 770 -29.8 0.773 5017.5 0.8798814 0.8586118
## 771 -50.8 1.048 4963.6 0.8798814 0.8586118
## 772 -46.2 1.334 5099.1 0.8874842 0.8586118
## 773 -46.2 1.291 5099.1 0.8854962 0.9007315
## 774 -46.2 1.334 5099.1 0.8798814 0.8586118
## 775 -34.6 0.644 5008.7 0.8798814 0.8983567
## 776 -26.9 0.742 5017.5 0.6868132 0.8586118
## 777 -26.9 0.740 5017.5 0.9074675 0.8983567
## 778 -47.1 1.365 5099.1 0.7666667 0.8983567
## 779 -46.2 1.259 5099.1 0.6868132 0.8586118
## 780 -40.3 0.884 4991.6 0.8874842 0.8983567
## 781 -29.8 0.788 5017.5 0.7666667 0.8983567
## 782 -26.9 0.728 5017.5 0.8960396 0.8983567
## 783 -49.5 1.016 4963.6 0.8874842 0.9007315
## 784 -42.0 4.153 5195.8 0.9229145 0.8983567
## 785 -49.5 0.977 4963.6 0.8874842 0.8983567
## 786 -46.2 1.281 5099.1 0.8874842 0.8983567
## 787 -29.8 0.739 5017.5 0.7666667 0.8586118
## 788 -46.2 1.244 5099.1 0.8854962 0.8983567
## 789 -26.9 0.740 5017.5 0.9198606 0.8983567
## 790 -46.2 1.299 5099.1 0.8854962 0.8823529
## 791 -34.6 0.642 5008.7 0.8960396 0.8983567
## 792 -46.2 1.334 5099.1 0.9229145 0.8983567
## 793 -42.0 4.191 5195.8 0.9198606 0.8983567
## 794 -37.5 0.884 4963.6 0.9074675 0.9007315
## 795 -42.0 4.153 5195.8 0.8854962 0.8983567
## 796 -46.2 1.334 5099.1 0.9229145 0.9007315
## 797 -31.4 0.838 5076.2 0.8854962 0.8983567
## 798 -42.0 4.191 5195.8 0.9229145 0.8983567
## 799 -34.8 0.654 5008.7 0.7666667 0.9007315
## 800 -42.0 4.021 5195.8 0.8874842 0.8983567
## 801 -40.8 1.260 5076.2 0.8798814 0.9007315
## 802 -31.4 0.884 5076.2 0.8851675 0.8983567
## 803 -46.2 1.250 5099.1 0.9229145 0.8586118
## 804 -46.2 1.266 5099.1 0.6868132 0.8586118
## 805 -46.2 1.281 5099.1 0.8874842 0.8983567
## 806 -47.1 1.435 5099.1 0.8874842 0.8983567
## 807 -49.5 1.016 4963.6 0.6868132 0.8586118
## 808 -38.3 0.900 4991.6 0.6868132 0.8586118
## 809 -42.0 4.076 5195.8 0.9074675 0.9007315
## 810 -30.1 0.716 5017.5 0.7666667 0.8983567
## 811 -42.0 4.120 5195.8 0.9229145 0.8983567
## 812 -47.1 1.405 5099.1 0.8798814 0.8983567
## 813 -46.2 1.281 5099.1 0.9229145 0.8586118
## 814 -46.2 1.281 5099.1 0.9229145 0.8586118
## 815 -38.3 0.898 4991.6 0.8798814 0.8983567
## 816 -46.2 1.244 5099.1 0.9074675 0.8983567
## 817 -42.0 4.120 5195.8 0.8798814 0.8586118
## 818 -42.0 4.153 5195.8 0.8874842 0.9007315
## 819 -26.9 0.740 5017.5 0.8798814 0.8983567
## 820 -36.1 4.963 5228.1 0.8798814 0.9007315
## 821 -42.0 4.021 5195.8 0.8874842 0.8983567
## 822 -46.2 1.313 5099.1 0.9229145 0.8983567
## 823 -50.0 1.574 5099.1 0.9074675 0.8983567
## 824 -36.1 4.964 5228.1 0.8798814 0.8586118
## 825 -46.2 1.250 5099.1 0.9198606 0.9007315
## 826 -36.1 4.964 5228.1 0.8874842 0.8983567
## 827 -46.2 1.250 5099.1 0.8798814 0.8983567
## 828 -36.1 4.966 5228.1 0.9229145 0.8983567
## 829 -36.1 4.964 5228.1 0.8798814 0.8983567
## 830 -31.4 0.869 5076.2 0.8874842 0.8586118
## 831 -36.1 4.966 5228.1 0.8854962 0.8586118
## 832 -36.4 4.857 5191.0 0.8798814 0.9007315
## 833 -42.7 4.957 5228.1 0.9198606 0.8983567
## 834 -36.4 4.859 5191.0 0.9229145 0.8983567
## 835 -47.1 1.405 5099.1 0.8854962 0.8586118
## 836 -36.4 4.855 5191.0 0.8854962 0.8983567
## 837 -41.8 4.959 5228.1 0.8798814 0.9007315
## 838 -42.7 4.962 5228.1 0.9229145 0.8983567
## 839 -41.8 4.959 5228.1 0.8854962 0.8586118
## 840 -36.4 4.864 5191.0 0.8854962 0.8983567
## 841 -47.1 1.405 5099.1 0.8854962 0.8983567
## 842 -47.1 1.405 5099.1 0.9229145 0.8983567
## 843 -36.4 4.857 5191.0 0.8960396 0.9007315
## 844 -47.1 1.479 5099.1 0.9074675 0.8983567
## 845 -47.1 1.405 5099.1 0.9229145 0.8983567
## 846 -47.1 1.405 5099.1 0.9198606 0.8983567
## 847 -46.2 1.250 5099.1 0.8798814 0.8983567
## 848 -46.2 1.313 5099.1 0.9271523 0.8983567
## 849 -42.7 4.963 5228.1 0.9229145 0.8586118
## 850 -46.2 1.313 5099.1 0.9229145 0.8586118
## 851 -41.8 4.959 5228.1 0.9229145 0.8586118
## 852 -46.2 1.313 5099.1 0.9229145 0.8983567
## 853 -47.1 1.400 5099.1 0.9074675 0.8983567
## 854 -46.2 1.250 5099.1 0.9229145 0.8983567
## 855 -36.1 4.964 5228.1 0.8854962 0.8586118
## 856 -46.2 1.250 5099.1 0.9074675 0.8586118
## 857 -36.4 4.855 5191.0 0.9229145 0.8983567
## 858 -42.7 4.957 5228.1 0.8854962 0.8586118
## 859 -47.1 1.405 5099.1 0.9074675 0.8983567
## 860 -47.1 1.405 5099.1 0.8854962 0.9007315
## 861 -36.4 4.864 5191.0 0.9074675 0.8983567
## 862 -46.2 1.250 5099.1 0.9229145 0.8586118
## 863 -46.2 1.313 5099.1 0.8874842 0.8983567
## 864 -42.7 4.963 5228.1 0.9198606 0.9007315
## 865 -36.4 4.857 5191.0 0.8798814 0.8983567
## 866 -36.4 4.859 5191.0 0.8798814 0.8586118
## 867 -42.7 4.963 5228.1 0.9229145 0.8983567
## 868 -47.1 1.405 5099.1 0.8874842 0.8586118
## 869 -47.1 1.405 5099.1 0.9229145 0.8586118
## 870 -36.4 4.859 5191.0 0.8798814 0.8983567
## 871 -42.7 4.957 5228.1 0.9229145 0.8586118
## 872 -47.1 1.479 5099.1 0.8854962 0.8586118
## 873 -46.2 1.250 5099.1 0.9074675 0.8983567
## 874 -47.1 1.405 5099.1 0.9074675 0.8586118
## 875 -36.4 4.864 5191.0 0.8798814 0.8983567
## 876 -42.7 4.957 5228.1 0.8798814 0.8586118
## 877 -42.7 4.957 5228.1 0.9229145 0.8586118
## 878 -46.2 1.354 5099.1 0.8798814 0.8586118
## 879 -36.4 4.855 5191.0 0.8851675 0.8983567
## 880 -36.4 4.864 5191.0 0.9229145 0.8983567
## 881 -36.1 4.966 5228.1 0.8798814 0.8983567
## 882 -36.4 4.864 5191.0 0.8874842 0.9007315
## 883 -47.1 1.405 5099.1 0.9074675 0.9007315
## 884 -36.4 4.857 5191.0 0.8798814 0.9007315
## 885 -41.8 4.959 5228.1 0.8798814 0.8586118
## 886 -42.7 4.959 5228.1 0.8854962 0.8586118
## 887 -36.4 4.857 5191.0 0.8798814 0.8983567
## 888 -36.4 4.857 5191.0 0.9271523 0.8983567
## 889 -41.8 4.967 5228.1 0.8854962 0.8983567
## 890 -42.0 4.021 5195.8 0.9074675 0.8983567
## 891 -36.4 4.857 5191.0 0.9074675 0.8983567
## 892 -40.8 1.268 5076.2 0.9074675 0.8586118
## 893 -46.2 1.313 5099.1 0.9229145 0.8983567
## 894 -41.8 4.967 5228.1 0.9074675 0.8983567
## 895 -36.4 4.859 5191.0 0.8874842 0.9007315
## 896 -37.5 0.878 4963.6 0.8874842 0.8586118
## 897 -36.4 4.857 5191.0 0.9229145 0.8983567
## 898 -46.2 1.313 5099.1 0.9229145 0.8983567
## 899 -47.1 1.405 5099.1 0.9074675 0.8983567
## 900 -36.1 4.964 5228.1 0.8798814 0.8983567
## 901 -42.7 4.959 5228.1 0.8854962 0.8983567
## 902 -47.1 1.405 5099.1 0.8854962 0.8983567
## 903 -47.1 1.405 5099.1 0.8798814 0.8983567
## 904 -36.4 4.858 5191.0 0.8874842 0.8983567
## 905 -41.8 4.959 5228.1 0.9229145 0.8983567
## 906 -41.8 4.967 5228.1 0.9271523 0.8983567
## 907 -36.1 4.963 5228.1 0.8798814 0.8983567
## 908 -41.8 4.967 5228.1 0.8960396 0.8983567
## 909 -36.1 4.964 5228.1 0.8851675 0.8983567
## 910 -36.4 4.859 5191.0 0.9074675 0.9007315
## 911 -36.4 4.859 5191.0 0.8854962 0.8983567
## 912 -36.4 4.864 5191.0 0.8960396 0.8983567
## 913 -41.8 4.959 5228.1 0.9229145 0.8983567
## 914 -41.8 4.967 5228.1 0.9229145 0.8983567
## 915 -42.7 4.962 5228.1 0.8874842 0.8586118
## 916 -36.1 4.964 5228.1 0.8854962 0.8983567
## 917 -36.4 4.859 5191.0 0.9229145 0.8983567
## 918 -36.1 4.964 5228.1 0.9198606 0.8983567
## 919 -47.1 1.405 5099.1 0.8854962 0.8586118
## 920 -41.8 4.959 5228.1 0.8874842 0.8983567
## 921 -42.7 4.962 5228.1 0.9229145 0.8983567
## 922 -41.8 4.967 5228.1 0.9229145 0.8983567
## 923 -36.4 4.855 5191.0 0.9229145 0.8983567
## 924 -41.8 4.967 5228.1 0.8874842 0.8983567
## 925 -46.2 1.250 5099.1 0.8854962 0.8586118
## 926 -42.7 4.959 5228.1 0.9229145 0.8983567
## 927 -42.0 4.021 5195.8 0.8798814 0.8586118
## 928 -47.1 1.405 5099.1 0.9229145 0.9007315
## 929 -36.1 4.963 5228.1 0.9229145 0.8983567
## 930 -42.7 4.962 5228.1 0.9229145 0.8586118
## 931 -41.8 4.947 5228.1 0.9074675 0.8983567
## 932 -36.4 4.859 5191.0 0.9229145 0.8983567
## 933 -36.4 4.864 5191.0 0.9198606 0.8983567
## 934 -42.0 4.021 5195.8 0.8854962 0.8586118
## 935 -47.1 1.405 5099.1 0.9229145 0.8983567
## 936 -46.2 1.313 5099.1 0.9229145 0.8983567
## 937 -36.4 4.859 5191.0 0.8874842 0.8983567
## 938 -42.7 4.960 5228.1 0.8874842 0.8983567
## 939 -42.7 4.957 5228.1 0.9229145 0.8983567
## 940 -36.1 4.966 5228.1 0.8798814 0.8983567
## 941 -42.7 4.957 5228.1 0.8798814 0.8983567
## 942 -36.4 4.864 5191.0 0.8874842 0.8586118
## 943 -41.8 4.967 5228.1 0.7666667 0.8983567
## 944 -36.1 4.963 5228.1 0.7666667 0.8983567
## 945 -42.7 4.957 5228.1 0.8874842 0.9007315
## 946 -36.4 4.864 5191.0 0.8798814 0.8983567
## 947 -41.8 4.967 5228.1 0.9229145 0.8983567
## 948 -42.7 4.957 5228.1 0.8798814 0.8983567
## 949 -41.8 4.967 5228.1 0.8798814 0.9007315
## 950 -42.7 4.957 5228.1 0.8874842 0.9007315
## 951 -42.7 4.957 5228.1 0.9229145 0.8983567
## 952 -46.2 1.313 5099.1 0.9229145 0.8983567
## 953 -36.1 4.963 5228.1 0.9074675 0.8983567
## 954 -47.1 1.405 5099.1 0.6868132 0.8586118
## 955 -41.8 4.959 5228.1 0.9229145 0.8983567
## 956 -36.4 4.859 5191.0 0.8874842 0.9007315
## 957 -46.2 1.259 5099.1 0.8798814 0.8983567
## 958 -42.7 4.959 5228.1 0.9229145 0.8983567
## 959 -36.1 4.963 5228.1 0.8798814 0.8586118
## 960 -42.7 4.957 5228.1 0.9198606 0.8983567
## 961 -36.4 4.864 5191.0 0.9229145 0.9007315
## 962 -36.1 4.963 5228.1 0.8854962 0.8586118
## 963 -47.1 1.405 5099.1 0.8798814 0.9007315
## 964 -46.2 1.259 5099.1 0.8798814 0.8983567
## 965 -42.7 4.963 5228.1 0.6868132 0.8586118
## 966 -36.1 4.964 5228.1 0.8854962 0.9007315
## 967 -42.0 4.021 5195.8 0.9229145 0.8983567
## 968 -42.7 4.962 5228.1 0.7666667 0.8983567
## 969 -36.4 4.857 5191.0 0.8798814 0.8586118
## 970 -36.1 4.963 5228.1 0.8854962 0.9007315
## 971 -42.7 4.957 5228.1 0.8798814 0.8586118
## 972 -42.7 4.963 5228.1 0.8874842 0.8983567
## 973 -41.8 4.967 5228.1 0.8798814 0.8983567
## 974 -37.5 0.878 4963.6 0.8874842 0.8586118
## 975 -36.4 4.864 5191.0 0.8854962 0.8983567
## 976 -36.4 4.857 5191.0 0.8960396 0.8983567
## 977 -42.0 4.021 5195.8 0.8798814 0.8586118
## 978 -42.7 4.962 5228.1 0.8854962 0.8983567
## 979 -41.8 4.960 5228.1 0.8854962 0.9007315
## 980 -42.7 4.963 5228.1 0.8798814 0.8983567
## 981 -36.4 4.857 5191.0 0.8798814 0.9007315
## 982 -36.4 4.864 5191.0 0.8874842 0.8983567
## 983 -47.1 1.405 5099.1 0.8798814 0.8586118
## 984 -41.8 4.959 5228.1 0.6868132 0.8586118
## 985 -41.8 4.959 5228.1 0.9074675 0.8983567
## 986 -47.1 1.405 5099.1 0.8798814 0.8586118
## 987 -36.4 4.864 5191.0 0.8854962 0.8983567
## 988 -31.4 0.881 5076.2 0.8854962 0.8983567
## 989 -36.4 4.859 5191.0 0.8798814 0.9007315
## 990 -46.2 1.250 5099.1 0.9229145 0.8983567
## 991 -41.8 4.959 5228.1 0.8854962 0.8586118
## 992 -42.0 4.021 5195.8 0.9229145 0.9007315
## 993 -36.1 4.966 5228.1 0.8798814 0.8983567
## 994 -36.4 4.855 5191.0 0.9271523 0.8983567
## 995 -46.2 1.250 5099.1 0.9198606 0.8983567
## 996 -41.8 4.959 5228.1 0.9198606 0.8586118
## 997 -46.2 1.313 5099.1 0.9229145 0.8983567
## 998 -46.2 1.250 5099.1 0.9074675 0.8983567
## 999 -36.4 4.857 5191.0 0.8854962 0.8586118
## 1000 -47.1 1.405 5099.1 0.8874842 0.8983567
## 1001 -41.8 4.967 5228.1 0.8851675 0.8983567
## 1002 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1003 -42.7 4.957 5228.1 0.9074675 0.8586118
## 1004 -36.4 4.855 5191.0 0.8032787 0.8823529
## 1005 -40.8 1.268 5076.2 0.9074675 0.8586118
## 1006 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1007 -46.2 1.313 5099.1 0.9271523 0.9007315
## 1008 -36.4 4.864 5191.0 0.9229145 0.8586118
## 1009 -37.5 0.883 4963.6 0.7666667 0.8983567
## 1010 -47.1 1.405 5099.1 0.8854962 0.8586118
## 1011 -42.7 4.962 5228.1 0.9271523 0.8983567
## 1012 -42.7 4.962 5228.1 0.7666667 0.8586118
## 1013 -42.7 4.957 5228.1 0.8854962 0.8586118
## 1014 -36.1 4.964 5228.1 0.9271523 0.8983567
## 1015 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1016 -47.1 1.405 5099.1 0.8798814 0.8586118
## 1017 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1018 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1019 -46.2 1.250 5099.1 0.8854962 0.8586118
## 1020 -46.2 1.250 5099.1 0.8874842 0.9007315
## 1021 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1022 -42.7 4.962 5228.1 0.8851675 0.8983567
## 1023 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1024 -41.8 4.959 5228.1 0.9229145 0.8823529
## 1025 -42.7 4.959 5228.1 0.8854962 0.8586118
## 1026 -41.8 4.959 5228.1 0.9271523 0.8983567
## 1027 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1028 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1029 -42.7 4.962 5228.1 0.8851675 0.8586118
## 1030 -42.7 4.957 5228.1 0.8798814 0.8586118
## 1031 -36.1 4.964 5228.1 0.8854962 0.8586118
## 1032 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1033 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1034 -36.1 4.963 5228.1 0.8854962 0.9007315
## 1035 -31.4 0.881 5076.2 0.7666667 0.8983567
## 1036 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1037 -42.7 4.963 5228.1 0.8960396 0.8983567
## 1038 -42.7 4.963 5228.1 0.7666667 0.8983567
## 1039 -36.4 4.864 5191.0 0.9074675 0.8983567
## 1040 -39.8 0.748 4991.6 0.7666667 0.9007315
## 1041 -41.8 4.959 5228.1 0.9229145 0.9007315
## 1042 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1043 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1044 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1045 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1046 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1047 -46.2 1.313 5099.1 0.8851675 0.8983567
## 1048 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1049 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1050 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1051 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1052 -47.1 1.405 5099.1 0.8854962 0.8586118
## 1053 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1054 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1055 -42.7 4.963 5228.1 0.8854962 0.8983567
## 1056 -41.8 4.967 5228.1 0.8851675 0.8983567
## 1057 -47.1 1.405 5099.1 0.9074675 0.8983567
## 1058 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1059 -41.8 4.959 5228.1 0.8798814 0.9007315
## 1060 -47.1 1.405 5099.1 0.9074675 0.8983567
## 1061 -42.7 4.959 5228.1 0.9229145 0.8983567
## 1062 -40.8 1.268 5076.2 0.8854962 0.8586118
## 1063 -40.8 1.260 5076.2 0.8854962 0.8586118
## 1064 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1065 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1066 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1067 -36.4 4.859 5191.0 0.9271523 0.8983567
## 1068 -42.7 4.963 5228.1 0.9271523 0.8983567
## 1069 -36.1 4.966 5228.1 0.8960396 0.8983567
## 1070 -31.4 0.881 5076.2 0.8798814 0.8586118
## 1071 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1072 -36.4 4.857 5191.0 0.8798814 0.8983567
## 1073 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1074 -36.1 4.964 5228.1 0.8854962 0.8586118
## 1075 -41.8 4.967 5228.1 0.9271523 0.8983567
## 1076 -42.7 4.962 5228.1 0.8960396 0.8586118
## 1077 -36.1 4.966 5228.1 0.9198606 0.8983567
## 1078 -47.1 1.405 5099.1 0.8798814 0.8983567
## 1079 -42.0 4.021 5195.8 0.9229145 0.8586118
## 1080 -31.4 0.881 5076.2 0.8874842 0.8586118
## 1081 -47.1 1.405 5099.1 0.7666667 0.8983567
## 1082 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1083 -36.1 4.964 5228.1 0.8854962 0.8586118
## 1084 -41.8 4.959 5228.1 0.9074675 0.8983567
## 1085 -47.1 1.405 5099.1 0.9074675 0.8983567
## 1086 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1087 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1088 -46.2 1.259 5099.1 0.8798814 0.8983567
## 1089 -41.8 4.967 5228.1 0.9198606 0.8586118
## 1090 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1091 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1092 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1093 -36.1 4.963 5228.1 0.8854962 0.8983567
## 1094 -47.1 1.405 5099.1 0.9074675 0.8983567
## 1095 -42.7 4.963 5228.1 0.8798814 0.8983567
## 1096 -41.8 4.967 5228.1 0.9074675 0.8983567
## 1097 -36.1 4.964 5228.1 0.8798814 0.8586118
## 1098 -42.0 4.021 5195.8 0.8874842 0.8586118
## 1099 -46.2 1.313 5099.1 0.9229145 0.8586118
## 1100 -31.4 0.881 5076.2 0.6868132 0.8586118
## 1101 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1102 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1103 -47.1 1.405 5099.1 0.8798814 0.8586118
## 1104 -42.7 4.962 5228.1 0.8798814 0.9007315
## 1105 -41.8 4.967 5228.1 0.8798814 0.8983567
## 1106 -42.7 4.957 5228.1 0.8798814 0.8586118
## 1107 -36.4 4.859 5191.0 0.9074675 0.8983567
## 1108 -36.4 4.855 5191.0 0.8874842 0.8983567
## 1109 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1110 -36.4 4.855 5191.0 0.9271523 0.8983567
## 1111 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1112 -36.4 4.859 5191.0 0.8854962 0.8983567
## 1113 -36.4 4.859 5191.0 0.8798814 0.8983567
## 1114 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1115 -36.4 4.857 5191.0 0.9229145 0.9007315
## 1116 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1117 -36.1 4.963 5228.1 0.7666667 0.8983567
## 1118 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1119 -42.0 4.021 5195.8 0.8960396 0.8983567
## 1120 -47.1 1.405 5099.1 0.9229145 0.9007315
## 1121 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1122 -36.4 4.857 5191.0 0.9198606 0.8983567
## 1123 -41.8 4.947 5228.1 0.9271523 0.8983567
## 1124 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1125 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1126 -42.7 4.957 5228.1 0.9229145 0.8983567
## 1127 -36.4 4.864 5191.0 0.9229145 0.8586118
## 1128 -36.4 4.857 5191.0 0.9271523 0.8983567
## 1129 -46.2 1.250 5099.1 0.8874842 0.8586118
## 1130 -42.7 4.962 5228.1 0.9198606 0.8983567
## 1131 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1132 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1133 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1134 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1135 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1136 -42.0 4.021 5195.8 0.8854962 0.8586118
## 1137 -41.8 4.947 5228.1 0.9074675 0.8983567
## 1138 -36.1 4.965 5228.1 0.8854962 0.9007315
## 1139 -46.2 1.250 5099.1 0.9198606 0.8983567
## 1140 -42.7 4.962 5228.1 0.8798814 0.8586118
## 1141 -42.7 4.962 5228.1 0.7666667 0.8983567
## 1142 -36.1 4.963 5228.1 0.8960396 0.8983567
## 1143 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1144 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1145 -42.7 4.963 5228.1 0.9229145 0.9007315
## 1146 -42.0 4.021 5195.8 0.8854962 0.9007315
## 1147 -42.7 4.963 5228.1 0.8874842 0.8586118
## 1148 -36.4 4.855 5191.0 0.8798814 0.8586118
## 1149 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1150 -42.0 4.021 5195.8 0.9074675 0.8983567
## 1151 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1152 -41.8 4.967 5228.1 0.8798814 0.8983567
## 1153 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1154 -30.1 0.718 5017.5 0.9229145 0.8983567
## 1155 -38.3 0.905 4991.6 0.8032787 0.8983567
## 1156 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1157 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1158 -47.1 1.405 5099.1 0.8874842 0.8983567
## 1159 -36.1 4.963 5228.1 0.8854962 0.8586118
## 1160 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1161 -41.8 4.967 5228.1 0.9229145 0.8586118
## 1162 -46.2 1.313 5099.1 0.9271523 0.9007315
## 1163 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1164 -47.1 1.405 5099.1 0.9271523 0.8983567
## 1165 -46.2 1.250 5099.1 0.8874842 0.8983567
## 1166 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1167 -36.4 4.857 5191.0 0.9271523 0.8983567
## 1168 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1169 -36.4 4.859 5191.0 0.8960396 0.9007315
## 1170 -41.8 4.959 5228.1 0.8874842 0.8983567
## 1171 -47.1 1.405 5099.1 0.6868132 0.8586118
## 1172 -36.1 4.963 5228.1 0.8798814 0.9007315
## 1173 -42.0 4.021 5195.8 0.8854962 0.8983567
## 1174 -36.4 4.859 5191.0 0.9074675 0.9007315
## 1175 -46.2 1.250 5099.1 0.8854962 0.9007315
## 1176 -36.1 4.964 5228.1 0.8874842 0.8983567
## 1177 -42.0 4.021 5195.8 0.8854962 0.9007315
## 1178 -47.1 1.405 5099.1 0.9074675 0.8983567
## 1179 -41.8 4.967 5228.1 0.8798814 0.9007315
## 1180 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1181 -46.2 1.313 5099.1 0.8798814 0.8586118
## 1182 -36.1 4.963 5228.1 0.8854962 0.8983567
## 1183 -42.0 4.021 5195.8 0.9198606 0.8983567
## 1184 -36.4 4.857 5191.0 0.8874842 0.8983567
## 1185 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1186 -36.4 4.855 5191.0 0.8851675 0.8983567
## 1187 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1188 -41.8 4.947 5228.1 0.8798814 0.8586118
## 1189 -41.8 4.967 5228.1 0.8874842 0.9007315
## 1190 -42.7 4.957 5228.1 0.8854962 0.8586118
## 1191 -42.7 4.963 5228.1 0.6868132 0.8586118
## 1192 -42.0 4.021 5195.8 0.9074675 0.8983567
## 1193 -38.3 0.905 4991.6 0.9271523 0.8586118
## 1194 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1195 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1196 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1197 -41.8 4.967 5228.1 0.8798814 0.8983567
## 1198 -33.0 0.714 5023.5 0.8960396 0.8983567
## 1199 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1200 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1201 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1202 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1203 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1204 -49.5 1.029 4963.6 0.6868132 0.8586118
## 1205 -47.1 1.405 5099.1 0.9074675 0.9007315
## 1206 -47.1 1.405 5099.1 0.9229145 0.8586118
## 1207 -36.4 4.857 5191.0 0.8798814 0.9007315
## 1208 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1209 -42.7 4.962 5228.1 0.9271523 0.9007315
## 1210 -36.4 4.864 5191.0 0.8874842 0.8983567
## 1211 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1212 -42.0 4.021 5195.8 0.8854962 0.8983567
## 1213 -40.8 1.268 5076.2 0.8798814 0.8586118
## 1214 -46.2 1.313 5099.1 0.8874842 0.8983567
## 1215 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1216 -34.8 0.649 5008.7 0.8874842 0.8586118
## 1217 -41.8 4.967 5228.1 0.8854962 0.9007315
## 1218 -42.7 4.963 5228.1 0.6868132 0.8586118
## 1219 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1220 -38.3 0.890 4991.6 0.8798814 0.8983567
## 1221 -42.7 4.957 5228.1 0.8874842 0.8983567
## 1222 -50.0 1.531 5099.1 0.8798814 0.8983567
## 1223 -36.1 4.966 5228.1 0.8854962 0.9007315
## 1224 -47.1 1.405 5099.1 0.8798814 0.8983567
## 1225 -36.4 4.855 5191.0 0.9229145 0.8586118
## 1226 -42.7 4.957 5228.1 0.8874842 0.8586118
## 1227 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1228 -50.0 1.531 5099.1 0.8960396 0.8983567
## 1229 -41.8 4.959 5228.1 0.8874842 0.8823529
## 1230 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1231 -31.4 0.869 5076.2 0.8851675 0.8983567
## 1232 -42.7 4.959 5228.1 0.8798814 0.8586118
## 1233 -36.1 4.964 5228.1 0.8854962 0.8586118
## 1234 -34.6 0.644 5008.7 0.7666667 0.8983567
## 1235 -42.7 4.963 5228.1 0.8798814 0.8983567
## 1236 -46.2 1.250 5099.1 0.9074675 0.8586118
## 1237 -36.4 4.857 5191.0 0.9198606 0.8983567
## 1238 -47.1 1.405 5099.1 0.9271523 0.8983567
## 1239 -42.7 4.957 5228.1 0.8874842 0.9007315
## 1240 -46.2 1.250 5099.1 0.8874842 0.8586118
## 1241 -46.2 1.313 5099.1 0.8874842 0.8983567
## 1242 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1243 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1244 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1245 -50.8 1.040 4963.6 0.8874842 0.8983567
## 1246 -50.0 1.726 5099.1 0.8854962 0.8586118
## 1247 -41.8 4.947 5228.1 0.9229145 0.8586118
## 1248 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1249 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1250 -36.1 4.963 5228.1 0.7666667 0.8983567
## 1251 -36.4 4.864 5191.0 0.8854962 0.8983567
## 1252 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1253 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1254 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1255 -47.1 1.405 5099.1 0.9271523 0.8983567
## 1256 -42.7 4.963 5228.1 0.9271523 0.9007315
## 1257 -42.7 4.963 5228.1 0.8798814 0.9007315
## 1258 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1259 -42.0 4.021 5195.8 0.8798814 0.9007315
## 1260 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1261 -36.1 4.964 5228.1 0.8960396 0.8983567
## 1262 -36.4 4.864 5191.0 0.9271523 0.8983567
## 1263 -36.1 4.964 5228.1 0.8874842 0.8983567
## 1264 -42.7 4.963 5228.1 0.9229145 0.9007315
## 1265 -42.7 4.963 5228.1 0.8874842 0.8983567
## 1266 -42.7 4.957 5228.1 0.8960396 0.9007315
## 1267 -42.0 4.021 5195.8 0.8798814 0.8586118
## 1268 -41.8 4.947 5228.1 0.9229145 0.8983567
## 1269 -36.4 4.859 5191.0 0.6868132 0.8586118
## 1270 -42.7 4.960 5228.1 0.9074675 0.8586118
## 1271 -40.8 1.268 5076.2 0.8798814 0.8586118
## 1272 -42.0 4.191 5195.8 0.7666667 0.9007315
## 1273 -36.1 4.963 5228.1 0.8798814 0.9007315
## 1274 -41.8 4.967 5228.1 0.8851675 0.8983567
## 1275 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1276 -46.2 1.313 5099.1 0.9229145 0.8586118
## 1277 -42.0 4.021 5195.8 0.8854962 0.8586118
## 1278 -41.8 4.959 5228.1 0.8960396 0.8983567
## 1279 -36.4 4.855 5191.0 0.8851675 0.8983567
## 1280 -36.4 4.864 5191.0 0.8798814 0.9007315
## 1281 -31.4 0.881 5076.2 0.8798814 0.8586118
## 1282 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1283 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1284 -36.1 4.966 5228.1 0.8874842 0.8983567
## 1285 -42.7 4.959 5228.1 0.9229145 0.8983567
## 1286 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1287 -36.1 4.966 5228.1 0.8854962 0.8586118
## 1288 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1289 -36.1 4.964 5228.1 0.8798814 0.8983567
## 1290 -36.1 4.963 5228.1 0.7666667 0.8983567
## 1291 -36.4 4.857 5191.0 0.9198606 0.8586118
## 1292 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1293 -46.2 1.244 5099.1 0.9074675 0.8983567
## 1294 -42.7 4.957 5228.1 0.8874842 0.8586118
## 1295 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1296 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1297 -42.0 4.021 5195.8 0.8854962 0.8983567
## 1298 -41.8 4.865 5228.1 0.9271523 0.8983567
## 1299 -47.1 1.405 5099.1 0.8798814 0.9007315
## 1300 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1301 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1302 -36.1 4.966 5228.1 0.8874842 0.8983567
## 1303 -41.8 4.959 5228.1 0.9074675 0.9007315
## 1304 -40.8 1.266 5076.2 0.9074675 0.8983567
## 1305 -42.0 4.021 5195.8 0.8854962 0.8586118
## 1306 -47.1 1.400 5099.1 0.8032787 0.8983567
## 1307 -46.2 1.250 5099.1 0.8874842 0.8983567
## 1308 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1309 -36.4 4.857 5191.0 0.9074675 0.8983567
## 1310 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1311 -39.8 0.720 4991.6 0.8854962 0.8586118
## 1312 -42.0 4.021 5195.8 0.8854962 0.8586118
## 1313 -36.1 4.963 5228.1 0.8032787 0.8983567
## 1314 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1315 -31.4 0.881 5076.2 0.7666667 0.8983567
## 1316 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1317 -36.1 4.964 5228.1 0.8798814 0.8586118
## 1318 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1319 -40.8 1.268 5076.2 0.9198606 0.8586118
## 1320 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1321 -31.4 0.881 5076.2 0.8854962 0.8586118
## 1322 -36.4 4.859 5191.0 0.9229145 0.8586118
## 1323 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1324 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1325 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1326 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1327 -42.7 4.957 5228.1 0.9229145 0.9007315
## 1328 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1329 -42.7 4.960 5228.1 0.8798814 0.8983567
## 1330 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1331 -31.4 0.881 5076.2 0.8798814 0.8586118
## 1332 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1333 -42.7 4.962 5228.1 0.9229145 0.8586118
## 1334 -36.4 4.864 5191.0 0.8874842 0.8983567
## 1335 -31.4 0.869 5076.2 0.9229145 0.8983567
## 1336 -36.4 4.864 5191.0 0.9074675 0.8983567
## 1337 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1338 -41.8 4.967 5228.1 0.8798814 0.9007315
## 1339 -46.2 1.250 5099.1 0.8874842 0.9007315
## 1340 -36.4 4.859 5191.0 0.8798814 0.9007315
## 1341 -42.7 4.957 5228.1 0.8798814 0.8586118
## 1342 -41.8 4.959 5228.1 0.8874842 0.8983567
## 1343 -47.1 1.405 5099.1 0.9229145 0.8823529
## 1344 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1345 -40.3 0.889 4991.6 0.8798814 0.8983567
## 1346 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1347 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1348 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1349 -31.4 0.849 5076.2 0.8798814 0.8983567
## 1350 -42.7 4.962 5228.1 0.8854962 0.9007315
## 1351 -36.4 4.855 5191.0 0.8798814 0.8586118
## 1352 -41.8 4.959 5228.1 0.7666667 0.8983567
## 1353 -42.0 4.191 5195.8 0.9198606 0.8983567
## 1354 -47.1 1.392 5099.1 0.8798814 0.9007315
## 1355 -36.4 4.855 5191.0 0.9229145 0.8586118
## 1356 -40.8 1.268 5076.2 0.6868132 0.8586118
## 1357 -33.6 1.048 5076.2 0.8798814 0.8586118
## 1358 -36.1 4.963 5228.1 0.8874842 0.8983567
## 1359 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1360 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1361 -36.4 4.859 5191.0 0.8854962 0.8983567
## 1362 -36.4 4.857 5191.0 0.8798814 0.9007315
## 1363 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1364 -36.4 4.859 5191.0 0.7666667 0.8983567
## 1365 -36.1 4.966 5228.1 0.8854962 0.8586118
## 1366 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1367 -41.8 4.967 5228.1 0.9074675 0.8983567
## 1368 -41.8 4.967 5228.1 0.8960396 0.8983567
## 1369 -36.1 4.966 5228.1 0.8854962 0.8586118
## 1370 -36.1 4.965 5228.1 0.9198606 0.8983567
## 1371 -42.7 4.957 5228.1 0.9229145 0.8983567
## 1372 -47.1 1.405 5099.1 0.8854962 0.8586118
## 1373 -42.7 4.960 5228.1 0.8874842 0.8983567
## 1374 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1375 -36.4 4.855 5191.0 0.8798814 0.9007315
## 1376 -36.4 4.857 5191.0 0.8854962 0.9007315
## 1377 -46.2 1.244 5099.1 0.8874842 0.9007315
## 1378 -42.0 4.021 5195.8 0.9074675 0.8586118
## 1379 -42.7 4.963 5228.1 0.8798814 0.8586118
## 1380 -42.7 4.960 5228.1 0.8798814 0.8983567
## 1381 -42.7 4.962 5228.1 0.8874842 0.8983567
## 1382 -46.2 1.313 5099.1 0.8854962 0.8586118
## 1383 -36.4 4.859 5191.0 0.8798814 0.8983567
## 1384 -36.4 4.864 5191.0 0.8874842 0.8586118
## 1385 -42.7 4.957 5228.1 0.8854962 0.8586118
## 1386 -36.4 4.859 5191.0 0.8854962 0.8983567
## 1387 -42.0 4.021 5195.8 0.8854962 0.9007315
## 1388 -36.4 4.864 5191.0 0.8798814 0.8586118
## 1389 -26.9 0.720 5017.5 0.8798814 0.8586118
## 1390 -47.1 1.479 5099.1 0.8798814 0.8983567
## 1391 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1392 -42.0 4.021 5195.8 0.9198606 0.8983567
## 1393 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1394 -36.1 4.964 5228.1 0.8874842 0.8983567
## 1395 -41.8 4.959 5228.1 0.9229145 0.9007315
## 1396 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1397 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1398 -34.6 0.645 5008.7 0.8798814 0.8983567
## 1399 -36.4 4.857 5191.0 0.9074675 0.9007315
## 1400 -46.2 1.250 5099.1 0.9198606 0.9007315
## 1401 -41.8 4.967 5228.1 0.8851675 0.8983567
## 1402 -36.4 4.859 5191.0 0.9198606 0.8983567
## 1403 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1404 -42.7 4.957 5228.1 0.8798814 0.8983567
## 1405 -31.4 0.825 5076.2 0.8854962 0.8586118
## 1406 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1407 -41.8 4.967 5228.1 0.7666667 0.8983567
## 1408 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1409 -46.2 1.354 5099.1 0.8874842 0.8983567
## 1410 -36.1 4.964 5228.1 0.9074675 0.8983567
## 1411 -47.1 1.405 5099.1 0.8798814 0.8586118
## 1412 -36.4 4.859 5191.0 0.9229145 0.9007315
## 1413 -42.7 4.962 5228.1 0.8798814 0.8586118
## 1414 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1415 -46.2 1.299 5099.1 0.9229145 0.8586118
## 1416 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1417 -29.8 0.773 5017.5 0.7666667 0.8983567
## 1418 -47.1 1.405 5099.1 0.9198606 0.8983567
## 1419 -41.8 4.947 5228.1 0.8854962 0.9007315
## 1420 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1421 -36.1 4.963 5228.1 0.9229145 0.8983567
## 1422 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1423 -36.4 4.857 5191.0 0.8854962 0.8983567
## 1424 -29.8 0.741 5017.5 0.8854962 0.8586118
## 1425 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1426 -42.7 4.963 5228.1 0.9229145 0.8586118
## 1427 -47.1 1.400 5099.1 0.7666667 0.8983567
## 1428 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1429 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1430 -42.7 4.960 5228.1 0.8854962 0.8983567
## 1431 -41.8 4.947 5228.1 0.8798814 0.8983567
## 1432 -42.7 4.957 5228.1 0.8798814 0.8586118
## 1433 -42.7 4.960 5228.1 0.8874842 0.9007315
## 1434 -36.4 4.855 5191.0 0.8854962 0.8983567
## 1435 -42.7 4.963 5228.1 0.9229145 0.9007315
## 1436 -36.4 4.855 5191.0 0.8874842 0.8983567
## 1437 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1438 -42.7 4.963 5228.1 0.8798814 0.8586118
## 1439 -42.7 4.959 5228.1 0.7666667 0.8983567
## 1440 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1441 -47.1 1.405 5099.1 0.8854962 0.8586118
## 1442 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1443 -42.7 4.960 5228.1 0.8798814 0.8983567
## 1444 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1445 -41.8 4.947 5228.1 0.8798814 0.8983567
## 1446 -36.4 4.857 5191.0 0.8874842 0.8983567
## 1447 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1448 -36.1 4.964 5228.1 0.9198606 0.8983567
## 1449 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1450 -40.8 1.268 5076.2 0.6868132 0.8586118
## 1451 -41.8 4.959 5228.1 0.8854962 0.8586118
## 1452 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1453 -41.8 4.959 5228.1 0.8960396 0.8983567
## 1454 -42.7 4.962 5228.1 0.8798814 0.8586118
## 1455 -42.7 4.963 5228.1 0.9229145 0.8586118
## 1456 -36.1 4.963 5228.1 0.9229145 0.8983567
## 1457 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1458 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1459 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1460 -42.7 4.963 5228.1 0.8798814 0.8983567
## 1461 -36.4 4.859 5191.0 0.8798814 0.8983567
## 1462 -36.4 4.855 5191.0 0.8798814 0.9007315
## 1463 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1464 -36.4 4.859 5191.0 0.9229145 0.8586118
## 1465 -42.7 4.962 5228.1 0.7666667 0.8983567
## 1466 -42.7 4.962 5228.1 0.9229145 0.9007315
## 1467 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1468 -41.8 4.959 5228.1 0.8798814 0.9007315
## 1469 -39.8 0.732 4991.6 0.8798814 0.8983567
## 1470 -36.4 4.857 5191.0 0.8874842 0.8983567
## 1471 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1472 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1473 -42.7 4.957 5228.1 0.8854962 0.8983567
## 1474 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1475 -36.4 4.859 5191.0 0.8854962 0.8586118
## 1476 -41.8 4.947 5228.1 0.9229145 0.8983567
## 1477 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1478 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1479 -42.0 4.021 5195.8 0.9074675 0.8586118
## 1480 -42.7 4.957 5228.1 0.8798814 0.8983567
## 1481 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1482 -36.4 4.859 5191.0 0.9198606 0.8586118
## 1483 -42.7 4.962 5228.1 0.8854962 0.8586118
## 1484 -36.4 4.859 5191.0 0.8854962 0.8983567
## 1485 -42.7 4.959 5228.1 0.8798814 0.8586118
## 1486 -36.4 4.855 5191.0 0.9074675 0.8983567
## 1487 -47.1 1.405 5099.1 0.8874842 0.8983567
## 1488 -41.8 4.947 5228.1 0.9229145 0.8983567
## 1489 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1490 -46.2 1.259 5099.1 0.8854962 0.8586118
## 1491 -46.2 1.250 5099.1 0.8874842 0.8586118
## 1492 -42.7 4.957 5228.1 0.8854962 0.8586118
## 1493 -42.7 4.959 5228.1 0.8854962 0.8983567
## 1494 -46.2 1.313 5099.1 0.9229145 0.8586118
## 1495 -42.7 4.957 5228.1 0.9229145 0.8586118
## 1496 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1497 -42.7 4.962 5228.1 0.8854962 0.9007315
## 1498 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1499 -42.0 4.021 5195.8 0.9074675 0.8983567
## 1500 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1501 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1502 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1503 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1504 -36.4 4.857 5191.0 0.9271523 0.8983567
## 1505 -47.1 1.400 5099.1 0.8798814 0.8983567
## 1506 -42.0 4.191 5195.8 0.9229145 0.8983567
## 1507 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1508 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1509 -41.8 4.947 5228.1 0.9198606 0.8586118
## 1510 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1511 -36.4 4.859 5191.0 0.9229145 0.8586118
## 1512 -36.1 4.966 5228.1 0.9074675 0.8983567
## 1513 -46.2 1.259 5099.1 0.6868132 0.8586118
## 1514 -41.8 4.865 5228.1 0.9074675 0.8983567
## 1515 -50.0 1.531 5099.1 0.8798814 0.8983567
## 1516 -42.7 4.957 5228.1 0.8874842 0.8586118
## 1517 -36.4 4.864 5191.0 0.8854962 0.8983567
## 1518 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1519 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1520 -42.7 4.959 5228.1 0.9229145 0.8983567
## 1521 -36.1 4.963 5228.1 0.8874842 0.8983567
## 1522 -41.8 4.959 5228.1 0.8854962 0.8586118
## 1523 -36.1 4.963 5228.1 0.9198606 0.8983567
## 1524 -36.1 4.964 5228.1 0.9198606 0.8983567
## 1525 -41.8 4.959 5228.1 0.8854962 0.9007315
## 1526 -36.1 4.964 5228.1 0.8851675 0.8983567
## 1527 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1528 -42.7 4.963 5228.1 0.8798814 0.8983567
## 1529 -42.0 4.021 5195.8 0.8854962 0.8983567
## 1530 -36.4 4.859 5191.0 0.8854962 0.9007315
## 1531 -42.0 4.021 5195.8 0.7666667 0.8586118
## 1532 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1533 -36.4 4.857 5191.0 0.9074675 0.9007315
## 1534 -41.8 4.959 5228.1 0.9271523 0.8983567
## 1535 -36.4 4.859 5191.0 0.8874842 0.8983567
## 1536 -36.4 4.864 5191.0 0.9198606 0.8983567
## 1537 -36.4 4.855 5191.0 0.9229145 0.8586118
## 1538 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1539 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1540 -41.8 4.959 5228.1 0.8851675 0.8983567
## 1541 -36.4 4.855 5191.0 0.7666667 0.8983567
## 1542 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1543 -42.7 4.960 5228.1 0.9229145 0.8586118
## 1544 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1545 -36.4 4.857 5191.0 0.8874842 0.8983567
## 1546 -42.0 4.021 5195.8 0.8798814 0.9007315
## 1547 -41.8 4.967 5228.1 0.8798814 0.8983567
## 1548 -36.4 4.855 5191.0 0.8854962 0.8586118
## 1549 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1550 -46.2 1.250 5099.1 0.9229145 0.8586118
## 1551 -41.8 4.947 5228.1 0.8798814 0.8586118
## 1552 -42.7 4.960 5228.1 0.9229145 0.8983567
## 1553 -41.8 4.959 5228.1 0.8874842 0.8586118
## 1554 -42.0 4.021 5195.8 0.8854962 0.8983567
## 1555 -42.0 4.021 5195.8 0.8798814 0.9007315
## 1556 -36.1 4.963 5228.1 0.8854962 0.8586118
## 1557 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1558 -47.1 1.400 5099.1 0.9229145 0.8586118
## 1559 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1560 -46.2 1.250 5099.1 0.9229145 0.9007315
## 1561 -42.7 4.962 5228.1 0.9074675 0.8983567
## 1562 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1563 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1564 -42.7 4.962 5228.1 0.9229145 0.8586118
## 1565 -36.1 4.965 5228.1 0.8798814 0.8983567
## 1566 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1567 -46.2 1.250 5099.1 0.9229145 0.9007315
## 1568 -36.4 4.864 5191.0 0.8960396 0.8983567
## 1569 -31.4 0.869 5076.2 0.7666667 0.8983567
## 1570 -46.2 1.250 5099.1 0.8874842 0.8586118
## 1571 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1572 -36.4 4.859 5191.0 0.8798814 0.8983567
## 1573 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1574 -36.1 4.964 5228.1 0.8854962 0.8586118
## 1575 -46.2 1.313 5099.1 0.8874842 0.8983567
## 1576 -31.4 0.825 5076.2 0.6868132 0.8586118
## 1577 -42.0 4.021 5195.8 0.9198606 0.8983567
## 1578 -36.4 4.858 5191.0 0.9229145 0.8983567
## 1579 -42.7 4.962 5228.1 0.8854962 0.8586118
## 1580 -46.2 1.313 5099.1 0.9074675 0.8586118
## 1581 -41.8 4.959 5228.1 0.7666667 0.8983567
## 1582 -36.4 4.864 5191.0 0.8874842 0.8983567
## 1583 -36.4 4.855 5191.0 0.9074675 0.8983567
## 1584 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1585 -42.0 4.191 5195.8 0.9074675 0.8983567
## 1586 -36.1 4.966 5228.1 0.9074675 0.8983567
## 1587 -36.4 4.855 5191.0 0.9229145 0.8586118
## 1588 -41.8 4.960 5228.1 0.9229145 0.9007315
## 1589 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1590 -31.4 0.849 5076.2 0.6868132 0.8586118
## 1591 -36.4 4.864 5191.0 0.9198606 0.8983567
## 1592 -36.4 4.857 5191.0 0.8854962 0.8983567
## 1593 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1594 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1595 -46.2 1.250 5099.1 0.9271523 0.8983567
## 1596 -41.8 4.865 5228.1 0.9198606 0.8983567
## 1597 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1598 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1599 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1600 -42.0 4.021 5195.8 0.8874842 0.8586118
## 1601 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1602 -36.4 4.855 5191.0 0.8874842 0.9007315
## 1603 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1604 -41.8 4.959 5228.1 0.8874842 0.8983567
## 1605 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1606 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1607 -42.0 4.021 5195.8 0.8960396 0.8983567
## 1608 -36.1 4.970 5228.1 0.8851675 0.8983567
## 1609 -40.8 1.268 5076.2 0.9074675 0.8983567
## 1610 -47.1 1.405 5099.1 0.8798814 0.9007315
## 1611 -41.8 4.959 5228.1 0.9229145 0.8586118
## 1612 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1613 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1614 -36.1 4.964 5228.1 0.8854962 0.8983567
## 1615 -36.4 4.859 5191.0 0.8854962 0.8983567
## 1616 -42.0 4.021 5195.8 0.8960396 0.8983567
## 1617 -42.0 4.021 5195.8 0.9198606 0.8983567
## 1618 -46.2 1.313 5099.1 0.9229145 0.8586118
## 1619 -42.7 4.959 5228.1 0.8798814 0.8586118
## 1620 -46.2 1.354 5099.1 0.8854962 0.8983567
## 1621 -36.4 4.855 5191.0 0.8874842 0.8586118
## 1622 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1623 -46.2 1.250 5099.1 0.9074675 0.8983567
## 1624 -42.0 4.021 5195.8 0.9074675 0.8983567
## 1625 -47.1 1.405 5099.1 0.8798814 0.8586118
## 1626 -36.4 4.864 5191.0 0.9198606 0.8983567
## 1627 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1628 -46.2 1.244 5099.1 0.8798814 0.8983567
## 1629 -33.6 1.059 5076.2 0.7666667 0.8983567
## 1630 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1631 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1632 -36.4 4.857 5191.0 0.9198606 0.8983567
## 1633 -36.4 4.859 5191.0 0.8960396 0.8586118
## 1634 -42.0 4.021 5195.8 0.8798814 0.9007315
## 1635 -26.9 0.730 5017.5 0.9198606 0.8586118
## 1636 -46.2 1.259 5099.1 0.8854962 0.8586118
## 1637 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1638 -42.7 4.963 5228.1 0.8874842 0.8983567
## 1639 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1640 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1641 -36.4 4.857 5191.0 0.8798814 0.8586118
## 1642 -41.8 4.959 5228.1 0.9271523 0.8586118
## 1643 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1644 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1645 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1646 -36.1 4.966 5228.1 0.8854962 0.8586118
## 1647 -40.8 1.268 5076.2 0.7666667 0.8983567
## 1648 -36.4 4.858 5191.0 0.8874842 0.8983567
## 1649 -41.8 4.947 5228.1 0.8960396 0.8983567
## 1650 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1651 -47.1 1.405 5099.1 0.8854962 0.8983567
## 1652 -36.1 4.964 5228.1 0.8798814 0.9007315
## 1653 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1654 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1655 -40.8 1.268 5076.2 0.8798814 0.8983567
## 1656 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1657 -47.1 1.405 5099.1 0.9271523 0.9007315
## 1658 -36.4 4.857 5191.0 0.8798814 0.9007315
## 1659 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1660 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1661 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1662 -46.2 1.250 5099.1 0.8874842 0.8586118
## 1663 -46.2 1.313 5099.1 0.9074675 0.8983567
## 1664 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1665 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1666 -36.4 4.864 5191.0 0.8854962 0.8586118
## 1667 -41.8 4.959 5228.1 0.9198606 0.8586118
## 1668 -41.8 4.967 5228.1 0.8874842 0.8586118
## 1669 -26.9 0.752 5017.5 0.8851675 0.8586118
## 1670 -42.7 4.960 5228.1 0.8874842 0.8983567
## 1671 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1672 -41.8 4.959 5228.1 0.7666667 0.9007315
## 1673 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1674 -49.5 0.993 4963.6 0.6868132 0.8586118
## 1675 -36.4 4.859 5191.0 0.9229145 0.9007315
## 1676 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1677 -47.1 1.405 5099.1 0.8854962 0.9007315
## 1678 -41.8 4.865 5228.1 0.9229145 0.8983567
## 1679 -36.4 4.857 5191.0 0.8851675 0.8983567
## 1680 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1681 -41.8 4.959 5228.1 0.9271523 0.8586118
## 1682 -46.2 1.250 5099.1 0.8854962 0.8586118
## 1683 -26.9 0.752 5017.5 0.7666667 0.8983567
## 1684 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1685 -36.4 4.857 5191.0 0.9074675 0.8983567
## 1686 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1687 -46.2 1.354 5099.1 0.8798814 0.8983567
## 1688 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1689 -42.0 4.021 5195.8 0.8798814 0.9007315
## 1690 -47.1 1.405 5099.1 0.8798814 0.8586118
## 1691 -36.4 4.857 5191.0 0.8874842 0.8586118
## 1692 -46.2 1.244 5099.1 0.8798814 0.8586118
## 1693 -36.1 4.965 5228.1 0.8798814 0.8586118
## 1694 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1695 -42.7 4.957 5228.1 0.9229145 0.8983567
## 1696 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1697 -47.1 1.405 5099.1 0.9229145 0.9007315
## 1698 -41.8 4.961 5228.1 0.9229145 0.8983567
## 1699 -40.4 5.045 5195.8 0.8798814 0.9007315
## 1700 -42.7 4.963 5228.1 0.9229145 0.9007315
## 1701 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1702 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1703 -36.4 4.857 5191.0 0.8854962 0.8983567
## 1704 -33.6 1.059 5076.2 0.8854962 0.8586118
## 1705 -42.7 4.957 5228.1 0.9229145 0.9007315
## 1706 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1707 -26.9 0.739 5017.5 0.8798814 0.8586118
## 1708 -36.4 4.864 5191.0 0.8854962 0.8983567
## 1709 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1710 -40.8 1.268 5076.2 0.8798814 0.8983567
## 1711 -46.2 1.327 5099.1 0.8851675 0.9007315
## 1712 -34.8 0.646 5008.7 0.8798814 0.8586118
## 1713 -42.7 4.963 5228.1 0.8798814 0.8586118
## 1714 -41.8 4.959 5228.1 0.9271523 0.8983567
## 1715 -42.7 4.959 5228.1 0.8854962 0.8983567
## 1716 -47.1 1.405 5099.1 0.8798814 0.8586118
## 1717 -36.4 4.855 5191.0 0.8854962 0.8983567
## 1718 -36.4 4.855 5191.0 0.9074675 0.8983567
## 1719 -36.1 4.966 5228.1 0.8798814 0.9007315
## 1720 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1721 -42.0 4.191 5195.8 0.9074675 0.8983567
## 1722 -42.7 4.957 5228.1 0.9198606 0.8983567
## 1723 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1724 -26.9 0.730 5017.5 0.6868132 0.8586118
## 1725 -46.2 1.259 5099.1 0.8960396 0.8586118
## 1726 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1727 -42.0 4.021 5195.8 0.8798814 0.9007315
## 1728 -26.9 0.730 5017.5 0.8854962 0.8586118
## 1729 -42.7 4.962 5228.1 0.8874842 0.8983567
## 1730 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1731 -42.0 4.021 5195.8 0.9271523 0.8983567
## 1732 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1733 -36.1 4.964 5228.1 0.8798814 0.8983567
## 1734 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1735 -33.6 1.048 5076.2 0.8874842 0.8586118
## 1736 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1737 -42.7 4.962 5228.1 0.8874842 0.8983567
## 1738 -36.4 4.864 5191.0 0.8874842 0.8983567
## 1739 -36.4 4.859 5191.0 0.9074675 0.8983567
## 1740 -42.0 4.021 5195.8 0.8798814 0.8586118
## 1741 -36.4 4.855 5191.0 0.9271523 0.8983567
## 1742 -36.1 4.966 5228.1 0.8798814 0.9007315
## 1743 -36.4 4.859 5191.0 0.8874842 0.8586118
## 1744 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1745 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1746 -41.8 4.959 5228.1 0.9198606 0.8983567
## 1747 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1748 -36.4 4.857 5191.0 0.9229145 0.9007315
## 1749 -41.8 4.959 5228.1 0.9074675 0.9007315
## 1750 -47.1 1.405 5099.1 0.8854962 0.8586118
## 1751 -46.2 1.264 5099.1 0.8798814 0.9007315
## 1752 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1753 -36.1 4.964 5228.1 0.8960396 0.8983567
## 1754 -41.8 4.967 5228.1 0.9229145 0.9007315
## 1755 -36.4 4.855 5191.0 0.9198606 0.8983567
## 1756 -42.0 4.021 5195.8 0.9198606 0.8586118
## 1757 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1758 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1759 -42.7 4.957 5228.1 0.8854962 0.8983567
## 1760 -36.1 4.963 5228.1 0.8854962 0.8983567
## 1761 -42.7 4.962 5228.1 0.8798814 0.8586118
## 1762 -42.0 4.021 5195.8 0.8854962 0.8983567
## 1763 -41.8 4.967 5228.1 0.8960396 0.8983567
## 1764 -36.4 4.859 5191.0 0.7666667 0.8983567
## 1765 -41.8 4.967 5228.1 0.9229145 0.8586118
## 1766 -36.1 4.965 5228.1 0.9229145 0.8983567
## 1767 -36.4 4.859 5191.0 0.8874842 0.8983567
## 1768 -36.4 4.857 5191.0 0.8854962 0.8586118
## 1769 -36.4 4.857 5191.0 0.8798814 0.8586118
## 1770 -47.1 1.405 5099.1 0.9271523 0.8983567
## 1771 -41.8 4.967 5228.1 0.9229145 0.8586118
## 1772 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1773 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1774 -36.4 4.859 5191.0 0.9074675 0.8983567
## 1775 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1776 -36.1 4.964 5228.1 0.9198606 0.8983567
## 1777 -31.4 0.881 5076.2 0.8798814 0.8586118
## 1778 -36.4 4.855 5191.0 0.8960396 0.8983567
## 1779 -41.8 4.959 5228.1 0.8874842 0.8983567
## 1780 -46.2 1.250 5099.1 0.9198606 0.8983567
## 1781 -42.7 4.957 5228.1 0.9198606 0.8586118
## 1782 -29.8 0.762 5017.5 0.8798814 0.8983567
## 1783 -47.1 1.405 5099.1 0.8874842 0.8983567
## 1784 -36.1 4.964 5228.1 0.8854962 0.8586118
## 1785 -42.7 4.962 5228.1 0.8854962 0.8586118
## 1786 -36.1 4.964 5228.1 0.7666667 0.8983567
## 1787 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1788 -36.4 4.864 5191.0 0.8798814 0.8586118
## 1789 -42.7 4.962 5228.1 0.9074675 0.8983567
## 1790 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1791 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1792 -42.7 4.959 5228.1 0.7666667 0.8983567
## 1793 -36.1 4.964 5228.1 0.8798814 0.8983567
## 1794 -29.8 0.803 5017.5 0.9074675 0.8983567
## 1795 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1796 -41.8 4.961 5228.1 0.8854962 0.9007315
## 1797 -36.1 4.963 5228.1 0.8854962 0.9007315
## 1798 -31.4 0.849 5076.2 0.7666667 0.8983567
## 1799 -42.7 4.957 5228.1 0.6868132 0.8586118
## 1800 -46.2 1.299 5099.1 0.9229145 0.8983567
## 1801 -42.7 4.957 5228.1 0.8798814 0.8586118
## 1802 -29.8 0.773 5017.5 0.8798814 0.8586118
## 1803 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1804 -42.0 4.021 5195.8 0.8854962 0.8586118
## 1805 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1806 -36.1 4.965 5228.1 0.8874842 0.8983567
## 1807 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1808 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1809 -36.1 4.965 5228.1 0.8798814 0.8983567
## 1810 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1811 -41.8 4.959 5228.1 0.7666667 0.8983567
## 1812 -36.4 4.855 5191.0 0.9074675 0.8983567
## 1813 -41.8 4.958 5228.1 0.8798814 0.8983567
## 1814 -42.7 4.962 5228.1 0.9074675 0.9007315
## 1815 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1816 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1817 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1818 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1819 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1820 -42.7 4.962 5228.1 0.8798814 0.8586118
## 1821 -36.4 4.864 5191.0 0.9229145 0.9007315
## 1822 -42.7 4.957 5228.1 0.9229145 0.9007315
## 1823 -46.2 1.250 5099.1 0.9229145 0.9007315
## 1824 -46.2 1.313 5099.1 0.9229145 0.8586118
## 1825 -36.1 4.965 5228.1 0.8798814 0.8586118
## 1826 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1827 -36.4 4.857 5191.0 0.8798814 0.8983567
## 1828 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1829 -47.1 1.405 5099.1 0.9271523 0.8983567
## 1830 -46.2 1.259 5099.1 0.8798814 0.8983567
## 1831 -36.4 4.858 5191.0 0.8854962 0.9007315
## 1832 -41.8 4.967 5228.1 0.9074675 0.8983567
## 1833 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1834 -33.6 1.059 5076.2 0.8798814 0.9007315
## 1835 -47.1 1.405 5099.1 0.6868132 0.8586118
## 1836 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1837 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1838 -42.7 4.957 5228.1 0.9229145 0.8586118
## 1839 -36.1 4.963 5228.1 0.8854962 0.8586118
## 1840 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1841 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1842 -36.1 4.963 5228.1 0.8798814 0.9007315
## 1843 -36.4 4.855 5191.0 0.9074675 0.8586118
## 1844 -36.4 4.857 5191.0 0.8854962 0.9007315
## 1845 -36.4 4.864 5191.0 0.9074675 0.8983567
## 1846 -36.4 4.855 5191.0 0.8854962 0.8983567
## 1847 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1848 -42.0 4.021 5195.8 0.9271523 0.9007315
## 1849 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1850 -46.2 1.313 5099.1 0.9074675 0.8983567
## 1851 -42.0 4.021 5195.8 0.9074675 0.8586118
## 1852 -36.4 4.855 5191.0 0.9074675 0.8983567
## 1853 -36.4 4.859 5191.0 0.8851675 0.8983567
## 1854 -36.1 4.964 5228.1 0.8854962 0.9007315
## 1855 -42.0 4.021 5195.8 0.8798814 0.8586118
## 1856 -42.7 4.963 5228.1 0.9074675 0.9007315
## 1857 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1858 -38.3 0.890 4991.6 0.8798814 0.8586118
## 1859 -36.1 4.964 5228.1 0.8960396 0.8983567
## 1860 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1861 -36.4 4.859 5191.0 0.8874842 0.8983567
## 1862 -39.8 0.732 4991.6 0.9271523 0.8983567
## 1863 -40.8 1.268 5076.2 0.6868132 0.8983567
## 1864 -29.8 0.803 5017.5 0.8874842 0.9007315
## 1865 -39.8 0.707 4991.6 0.8874842 0.8983567
## 1866 -36.4 4.864 5191.0 0.9229145 0.8586118
## 1867 -36.4 4.855 5191.0 0.8874842 0.8983567
## 1868 -41.8 4.967 5228.1 0.9229145 0.9007315
## 1869 -41.8 4.959 5228.1 0.9074675 0.8983567
## 1870 -46.2 1.250 5099.1 0.9229145 0.9007315
## 1871 -36.4 4.855 5191.0 0.8874842 0.8983567
## 1872 -36.4 4.855 5191.0 0.9229145 0.8586118
## 1873 -46.2 1.250 5099.1 0.8854962 0.8983567
## 1874 -36.1 4.965 5228.1 0.8960396 0.8983567
## 1875 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1876 -36.4 4.857 5191.0 0.8854962 0.8983567
## 1877 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1878 -40.8 1.266 5076.2 0.7666667 0.9007315
## 1879 -41.8 4.959 5228.1 0.7666667 0.8983567
## 1880 -41.8 4.959 5228.1 0.7666667 0.8983567
## 1881 -42.0 4.021 5195.8 0.9229145 0.8586118
## 1882 -31.4 0.869 5076.2 0.7666667 0.8983567
## 1883 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1884 -36.4 4.859 5191.0 0.9198606 0.8586118
## 1885 -36.4 4.860 5191.0 0.8874842 0.8586118
## 1886 -42.7 4.962 5228.1 0.8874842 0.9007315
## 1887 -47.1 1.405 5099.1 0.9074675 0.8983567
## 1888 -47.1 1.405 5099.1 0.8854962 0.8586118
## 1889 -41.8 4.947 5228.1 0.8874842 0.9007315
## 1890 -36.4 4.857 5191.0 0.8798814 0.9007315
## 1891 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1892 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1893 -42.7 4.963 5228.1 0.8874842 0.8586118
## 1894 -41.8 4.959 5228.1 0.8798814 0.8586118
## 1895 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1896 -36.4 4.860 5191.0 0.9229145 0.8983567
## 1897 -41.8 4.959 5228.1 0.7666667 0.8983567
## 1898 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1899 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1900 -41.8 4.960 5228.1 0.9229145 0.8983567
## 1901 -46.2 1.250 5099.1 0.8854962 0.8586118
## 1902 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1903 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1904 -36.4 4.859 5191.0 0.7666667 0.9007315
## 1905 -33.0 0.718 5023.5 0.8798814 0.8983567
## 1906 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1907 -46.2 1.250 5099.1 0.7666667 0.9007315
## 1908 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1909 -36.1 4.963 5228.1 0.8854962 0.8586118
## 1910 -42.7 4.957 5228.1 0.9074675 0.8586118
## 1911 -36.1 4.966 5228.1 0.8854962 0.9007315
## 1912 -47.1 1.405 5099.1 0.8854962 0.8983567
## 1913 -47.1 1.405 5099.1 0.8854962 0.8983567
## 1914 -40.8 1.268 5076.2 0.8854962 0.8983567
## 1915 -36.4 4.858 5191.0 0.8798814 0.9007315
## 1916 -42.0 4.076 5195.8 0.8854962 0.8983567
## 1917 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1918 -42.7 4.963 5228.1 0.9229145 0.8586118
## 1919 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1920 -42.7 4.960 5228.1 0.8874842 0.8983567
## 1921 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1922 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1923 -36.1 4.964 5228.1 0.8798814 0.8983567
## 1924 -41.8 4.865 5228.1 0.9229145 0.8983567
## 1925 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1926 -36.4 4.857 5191.0 0.8874842 0.8983567
## 1927 -42.7 4.962 5228.1 0.9074675 0.8983567
## 1928 -36.4 4.855 5191.0 0.8851675 0.8983567
## 1929 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1930 -36.4 4.859 5191.0 0.8851675 0.8983567
## 1931 -36.4 4.859 5191.0 0.9229145 0.9007315
## 1932 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1933 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1934 -36.4 4.864 5191.0 0.8874842 0.8983567
## 1935 -36.4 4.857 5191.0 0.8798814 0.8983567
## 1936 -47.1 1.365 5099.1 0.9074675 0.8983567
## 1937 -47.1 1.405 5099.1 0.8798814 0.8983567
## 1938 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1939 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1940 -46.2 1.250 5099.1 0.9229145 0.8586118
## 1941 -40.0 0.695 5008.7 0.8874842 0.8586118
## 1942 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1943 -41.8 4.960 5228.1 0.9074675 0.8983567
## 1944 -41.8 4.947 5228.1 0.8798814 0.8983567
## 1945 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1946 -41.8 4.947 5228.1 0.9198606 0.8586118
## 1947 -39.8 0.732 4991.6 0.7666667 0.9007315
## 1948 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1949 -42.7 4.962 5228.1 0.8798814 0.9007315
## 1950 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1951 -42.7 4.959 5228.1 0.8874842 0.8983567
## 1952 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1953 -42.7 4.962 5228.1 0.9074675 0.8983567
## 1954 -36.4 4.864 5191.0 0.8798814 0.8586118
## 1955 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1956 -42.0 4.021 5195.8 0.8874842 0.8983567
## 1957 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1958 -36.4 4.859 5191.0 0.8798814 0.9007315
## 1959 -47.1 1.405 5099.1 0.8854962 0.8983567
## 1960 -36.4 4.855 5191.0 0.9229145 0.9007315
## 1961 -36.4 4.864 5191.0 0.8798814 0.9007315
## 1962 -40.8 1.268 5076.2 0.8798814 0.8586118
## 1963 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1964 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1965 -36.1 4.970 5228.1 0.7666667 0.8983567
## 1966 -36.4 4.857 5191.0 0.8798814 0.8586118
## 1967 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1968 -31.4 0.869 5076.2 0.6868132 0.8586118
## 1969 -42.7 4.962 5228.1 0.7666667 0.8586118
## 1970 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1971 -46.2 1.327 5099.1 0.9229145 0.8983567
## 1972 -42.7 4.960 5228.1 0.9229145 0.8983567
## 1973 -42.0 4.021 5195.8 0.8851675 0.8983567
## 1974 -46.2 1.250 5099.1 0.8854962 0.8586118
## 1975 -42.0 4.021 5195.8 0.8874842 0.9007315
## 1976 -46.2 1.313 5099.1 0.9074675 0.8586118
## 1977 -36.4 4.864 5191.0 0.8874842 0.8983567
## 1978 -42.0 4.021 5195.8 0.8874842 0.8983567
## 1979 -36.4 4.857 5191.0 0.9271523 0.8983567
## 1980 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1981 -46.2 1.250 5099.1 0.8854962 0.9007315
## 1982 -41.8 4.960 5228.1 0.9229145 0.8983567
## 1983 -36.1 4.963 5228.1 0.8798814 0.8586118
## 1984 -42.0 4.021 5195.8 0.8874842 0.8586118
## 1985 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1986 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1987 -41.8 4.967 5228.1 0.8854962 0.9007315
## 1988 -46.2 1.250 5099.1 0.9229145 0.8586118
## 1989 -36.4 4.864 5191.0 0.8798814 0.9007315
## 1990 -42.0 4.191 5195.8 0.8854962 0.8983567
## 1991 -47.1 1.405 5099.1 0.8798814 0.9007315
## 1992 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1993 -42.7 4.960 5228.1 0.8798814 0.8983567
## 1994 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1995 -42.7 4.957 5228.1 0.8798814 0.8586118
## 1996 -42.0 4.021 5195.8 0.9074675 0.8586118
## 1997 -41.8 4.958 5228.1 0.8854962 0.9007315
## 1998 -42.0 4.021 5195.8 0.9198606 0.8983567
## 1999 -46.2 1.313 5099.1 0.8798814 0.8586118
## 2000 -36.4 4.857 5191.0 0.7666667 0.9007315
## 2001 -36.4 4.864 5191.0 0.8854962 0.8586118
## 2002 -36.4 4.858 5191.0 0.8798814 0.8586118
## 2003 -36.4 4.864 5191.0 0.9229145 0.9007315
## 2004 -42.0 4.021 5195.8 0.8798814 0.9007315
## 2005 -42.7 4.960 5228.1 0.8874842 0.9007315
## 2006 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2007 -36.4 4.864 5191.0 0.7666667 0.9007315
## 2008 -36.4 4.855 5191.0 0.8798814 0.8983567
## 2009 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2010 -36.4 4.864 5191.0 0.9229145 0.8586118
## 2011 -46.2 1.266 5099.1 0.6868132 0.8586118
## 2012 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2013 -46.2 1.244 5099.1 0.6868132 0.8586118
## 2014 -41.8 4.967 5228.1 0.9271523 0.8983567
## 2015 -47.1 1.405 5099.1 0.9229145 0.8586118
## 2016 -31.4 0.825 5076.2 0.6868132 0.8586118
## 2017 -42.7 4.957 5228.1 0.8851675 0.9007315
## 2018 -36.1 4.964 5228.1 0.9198606 0.8983567
## 2019 -47.1 1.405 5099.1 0.8854962 0.9007315
## 2020 -36.4 4.864 5191.0 0.9229145 0.8586118
## 2021 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2022 -41.8 4.959 5228.1 0.8798814 0.8983567
## 2023 -42.0 4.191 5195.8 0.9229145 0.8983567
## 2024 -36.4 4.855 5191.0 0.8874842 0.8586118
## 2025 -36.4 4.859 5191.0 0.8798814 0.8983567
## 2026 -42.7 4.962 5228.1 0.9229145 0.9007315
## 2027 -36.1 4.964 5228.1 0.7666667 0.8983567
## 2028 -36.4 4.857 5191.0 0.8960396 0.8983567
## 2029 -42.7 4.963 5228.1 0.9229145 0.8983567
## 2030 -41.8 4.959 5228.1 0.8798814 0.8983567
## 2031 -47.1 1.410 5099.1 0.9271523 0.8983567
## 2032 -41.8 4.959 5228.1 0.9229145 0.8586118
## 2033 -42.0 4.021 5195.8 0.8874842 0.9007315
## 2034 -36.4 4.855 5191.0 0.9074675 0.8983567
## 2035 -47.1 1.406 5099.1 0.8798814 0.8983567
## 2036 -46.2 1.250 5099.1 0.9229145 0.8983567
## 2037 -36.1 4.966 5228.1 0.8874842 0.8983567
## 2038 -42.0 4.021 5195.8 0.9271523 0.8983567
## 2039 -31.4 0.881 5076.2 0.6868132 0.8586118
## 2040 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2041 -40.8 1.268 5076.2 0.8798814 0.8983567
## 2042 -42.7 4.957 5228.1 0.9229145 0.8983567
## 2043 -42.0 4.021 5195.8 0.9271523 0.8983567
## 2044 -42.7 4.957 5228.1 0.9229145 0.9007315
## 2045 -41.8 4.967 5228.1 0.8851675 0.8586118
## 2046 -36.4 4.855 5191.0 0.9229145 0.8983567
## 2047 -46.2 1.250 5099.1 0.9271523 0.9007315
## 2048 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2049 -42.0 4.021 5195.8 0.8798814 0.8983567
## 2050 -42.7 4.963 5228.1 0.9271523 0.8983567
## 2051 -36.4 4.864 5191.0 0.9229145 0.8586118
## 2052 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2053 -36.1 4.966 5228.1 0.9271523 0.8983567
## 2054 -42.7 4.957 5228.1 0.8798814 0.8983567
## 2055 -46.2 1.250 5099.1 0.9229145 0.8983567
## 2056 -42.7 4.959 5228.1 0.9229145 0.8983567
## 2057 -42.7 4.962 5228.1 0.8851675 0.8983567
## 2058 -46.2 1.250 5099.1 0.8854962 0.8586118
## 2059 -36.1 4.966 5228.1 0.8854962 0.8983567
## 2060 -47.1 1.365 5099.1 0.8798814 0.9007315
## 2061 -42.7 4.959 5228.1 0.8874842 0.9007315
## 2062 -46.2 1.244 5099.1 0.9229145 0.8983567
## 2063 -47.1 1.405 5099.1 0.8798814 0.8586118
## 2064 -36.4 4.864 5191.0 0.9229145 0.9007315
## 2065 -36.4 4.859 5191.0 0.9229145 0.8983567
## 2066 -36.4 4.857 5191.0 0.9198606 0.8983567
## 2067 -41.8 4.959 5228.1 0.9271523 0.8983567
## 2068 -36.4 4.855 5191.0 0.9074675 0.8983567
## 2069 -41.8 4.865 5228.1 0.8798814 0.8983567
## 2070 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2071 -31.4 0.849 5076.2 0.7666667 0.8983567
## 2072 -41.8 4.866 5228.1 0.8854962 0.9007315
## 2073 -46.2 1.250 5099.1 0.8798814 0.8586118
## 2074 -36.1 4.965 5228.1 0.8798814 0.9007315
## 2075 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2076 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2077 -26.9 0.739 5017.5 0.8798814 0.8586118
## 2078 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2079 -46.2 1.313 5099.1 0.8854962 0.8983567
## 2080 -36.4 4.859 5191.0 0.9074675 0.8983567
## 2081 -36.4 4.857 5191.0 0.8874842 0.8586118
## 2082 -36.4 4.857 5191.0 0.8798814 0.9007315
## 2083 -29.8 0.803 5017.5 0.8798814 0.8586118
## 2084 -42.0 4.021 5195.8 0.8798814 0.8983567
## 2085 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2086 -36.4 4.857 5191.0 0.8874842 0.9007315
## 2087 -46.2 1.244 5099.1 0.8798814 0.8586118
## 2088 -36.4 4.855 5191.0 0.8874842 0.8983567
## 2089 -41.8 4.967 5228.1 0.9198606 0.8983567
## 2090 -36.4 4.859 5191.0 0.7666667 0.8983567
## 2091 -36.4 4.859 5191.0 0.8854962 0.8586118
## 2092 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2093 -42.7 4.963 5228.1 0.8854962 0.8586118
## 2094 -36.4 4.864 5191.0 0.9229145 0.8983567
## 2095 -42.7 4.963 5228.1 0.7666667 0.8983567
## 2096 -46.2 1.250 5099.1 0.9229145 0.8586118
## 2097 -42.7 4.963 5228.1 0.9271523 0.8586118
## 2098 -36.4 4.864 5191.0 0.8874842 0.8586118
## 2099 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2100 -36.1 4.963 5228.1 0.9198606 0.8983567
## 2101 -46.2 1.250 5099.1 0.9074675 0.8983567
## 2102 -46.2 1.250 5099.1 0.8798814 0.8586118
## 2103 -36.4 4.859 5191.0 0.8854962 0.8983567
## 2104 -36.4 4.855 5191.0 0.8854962 0.8983567
## 2105 -42.0 4.021 5195.8 0.8874842 0.8586118
## 2106 -41.8 4.865 5228.1 0.8851675 0.9007315
## 2107 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2108 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2109 -47.1 1.405 5099.1 0.9271523 0.8983567
## 2110 -42.0 4.021 5195.8 0.8798814 0.8983567
## 2111 -47.1 1.405 5099.1 0.8798814 0.8586118
## 2112 -50.8 1.050 4963.6 0.6868132 0.8586118
## 2113 -46.2 1.250 5099.1 0.8798814 0.8586118
## 2114 -36.4 4.855 5191.0 0.9229145 0.9007315
## 2115 -36.1 4.970 5228.1 0.8960396 0.8983567
## 2116 -42.7 4.963 5228.1 0.9229145 0.8586118
## 2117 -36.4 4.864 5191.0 0.8798814 0.8983567
## 2118 -46.2 1.250 5099.1 0.8874842 0.8983567
## 2119 -36.4 4.857 5191.0 0.9074675 0.9007315
## 2120 -46.2 1.250 5099.1 0.8854962 0.8586118
## 2121 -36.1 4.964 5228.1 0.9229145 0.8983567
## 2122 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2123 -36.1 4.964 5228.1 0.8798814 0.8586118
## 2124 -41.8 4.959 5228.1 0.8798814 0.8983567
## 2125 -46.2 1.299 5099.1 0.8032787 0.8586118
## 2126 -36.1 4.963 5228.1 0.8798814 0.9007315
## 2127 -26.9 0.720 5017.5 0.7666667 0.9007315
## 2128 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2129 -46.2 1.354 5099.1 0.8798814 0.8983567
## 2130 -30.1 0.714 5017.5 0.8798814 0.8586118
## 2131 -46.2 1.354 5099.1 0.8851675 0.8586118
## 2132 -41.8 4.865 5228.1 0.8854962 0.8586118
## 2133 -42.7 4.959 5228.1 0.9074675 0.8983567
## 2134 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2135 -41.8 4.967 5228.1 0.9229145 0.9007315
## 2136 -36.4 4.859 5191.0 0.8854962 0.8983567
## 2137 -36.1 4.966 5228.1 0.8854962 0.8983567
## 2138 -36.4 4.857 5191.0 0.9074675 0.8586118
## 2139 -36.1 4.964 5228.1 0.9229145 0.8983567
## 2140 -36.1 4.963 5228.1 0.8798814 0.8586118
## 2141 -42.7 4.963 5228.1 0.8851675 0.8983567
## 2142 -42.7 4.963 5228.1 0.8798814 0.8983567
## 2143 -36.4 4.857 5191.0 0.8854962 0.8586118
## 2144 -42.0 4.021 5195.8 0.8798814 0.9007315
## 2145 -36.4 4.864 5191.0 0.8854962 0.8983567
## 2146 -42.0 4.021 5195.8 0.8798814 0.8983567
## 2147 -46.2 1.313 5099.1 0.8798814 0.8983567
## 2148 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2149 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2150 -41.8 4.959 5228.1 0.9198606 0.8983567
## 2151 -46.2 1.250 5099.1 0.8851675 0.8983567
## 2152 -46.2 1.250 5099.1 0.9229145 0.8586118
## 2153 -46.2 1.250 5099.1 0.9229145 0.8586118
## 2154 -41.8 4.959 5228.1 0.8854962 0.8586118
## 2155 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2156 -36.4 4.855 5191.0 0.8854962 0.9007315
## 2157 -42.7 4.959 5228.1 0.9271523 0.8983567
## 2158 -46.2 1.250 5099.1 0.9074675 0.8983567
## 2159 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2160 -36.4 4.857 5191.0 0.8874842 0.9007315
## 2161 -50.8 1.028 4963.6 0.7666667 0.9007315
## 2162 -41.8 4.961 5228.1 0.8798814 0.8586118
## 2163 -47.1 1.405 5099.1 0.8874842 0.8586118
## 2164 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2165 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2166 -36.4 4.855 5191.0 0.9271523 0.8983567
## 2167 -42.0 4.021 5195.8 0.8960396 0.8983567
## 2168 -26.9 0.720 5017.5 0.7666667 0.9007315
## 2169 -42.7 4.958 5228.1 0.8798814 0.8586118
## 2170 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2171 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2172 -46.2 1.313 5099.1 0.8874842 0.8586118
## 2173 -41.8 4.967 5228.1 0.8798814 0.8983567
## 2174 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2175 -50.0 1.531 5099.1 0.8798814 0.8983567
## 2176 -36.4 4.857 5191.0 0.8851675 0.8983567
## 2177 -42.0 4.021 5195.8 0.7666667 0.8983567
## 2178 -46.2 1.313 5099.1 0.8874842 0.8983567
## 2179 -42.0 4.021 5195.8 0.9074675 0.8983567
## 2180 -29.8 0.741 5017.5 0.7666667 0.8983567
## 2181 -46.2 1.250 5099.1 0.9229145 0.8586118
## 2182 -46.2 1.250 5099.1 0.8854962 0.8983567
## 2183 -36.4 4.855 5191.0 0.9074675 0.8586118
## 2184 -41.8 4.865 5228.1 0.8854962 0.8586118
## 2185 -42.0 4.021 5195.8 0.9074675 0.8983567
## 2186 -36.1 4.964 5228.1 0.9229145 0.8983567
## 2187 -36.4 4.855 5191.0 0.8798814 0.8983567
## 2188 -42.7 4.958 5228.1 0.9229145 0.8586118
## 2189 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2190 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2191 -36.1 4.965 5228.1 0.9074675 0.8983567
## 2192 -36.4 4.857 5191.0 0.9271523 0.8983567
## 2193 -42.0 4.191 5195.8 0.9229145 0.8983567
## 2194 -42.7 4.960 5228.1 0.8874842 0.8586118
## 2195 -36.4 4.864 5191.0 0.9074675 0.8983567
## 2196 -41.8 4.967 5228.1 0.9271523 0.8983567
## 2197 -42.7 4.963 5228.1 0.8874842 0.8586118
## 2198 -41.8 4.967 5228.1 0.8854962 0.8983567
## 2199 -42.0 4.021 5195.8 0.8854962 0.8983567
## 2200 -42.0 4.021 5195.8 0.8854962 0.8586118
## 2201 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2202 -46.2 1.250 5099.1 0.9074675 0.8983567
## 2203 -46.2 1.313 5099.1 0.9074675 0.8586118
## 2204 -36.4 4.864 5191.0 0.9229145 0.8983567
## 2205 -46.2 1.250 5099.1 0.8798814 0.8983567
## 2206 -36.4 4.855 5191.0 0.8874842 0.9007315
## 2207 -37.5 0.882 4963.6 0.8874842 0.8586118
## 2208 -42.0 4.021 5195.8 0.9229145 0.8983567
## 2209 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2210 -50.0 1.640 5099.1 0.9198606 0.8586118
## 2211 -41.8 4.959 5228.1 0.8798814 0.8983567
## 2212 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2213 -36.4 4.855 5191.0 0.8798814 0.8983567
## 2214 -42.0 4.021 5195.8 0.9229145 0.8983567
## 2215 -41.8 4.967 5228.1 0.8798814 0.8586118
## 2216 -41.8 4.865 5228.1 0.8798814 0.8586118
## 2217 -42.7 4.963 5228.1 0.9229145 0.8983567
## 2218 -36.4 4.855 5191.0 0.8874842 0.8586118
## 2219 -42.7 4.962 5228.1 0.8960396 0.8983567
## 2220 -42.7 4.957 5228.1 0.8798814 0.8983567
## 2221 -42.0 4.021 5195.8 0.9074675 0.8983567
## 2222 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2223 -36.4 4.859 5191.0 0.9229145 0.8983567
## 2224 -42.7 4.960 5228.1 0.8798814 0.8586118
## 2225 -46.2 1.250 5099.1 0.8874842 0.8983567
## 2226 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2227 -42.0 4.021 5195.8 0.9198606 0.8983567
## 2228 -42.0 4.021 5195.8 0.8798814 0.9007315
## 2229 -40.0 0.699 5008.7 0.8851675 0.8983567
## 2230 -42.7 4.957 5228.1 0.9229145 0.8983567
## 2231 -36.1 4.962 5228.1 0.8798814 0.9007315
## 2232 -36.4 4.859 5191.0 0.8960396 0.8586118
## 2233 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2234 -42.7 4.957 5228.1 0.8798814 0.8983567
## 2235 -42.0 4.021 5195.8 0.9198606 0.8983567
## 2236 -36.4 4.857 5191.0 0.8032787 0.8983567
## 2237 -42.7 4.957 5228.1 0.9229145 0.8586118
## 2238 -41.8 4.967 5228.1 0.9229145 0.8983567
## 2239 -42.0 4.021 5195.8 0.8798814 0.8586118
## 2240 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2241 -46.2 1.250 5099.1 0.8854962 0.8586118
## 2242 -36.1 4.970 5228.1 0.8798814 0.8586118
## 2243 -36.4 4.859 5191.0 0.9074675 0.8983567
## 2244 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2245 -36.1 4.964 5228.1 0.8854962 0.9007315
## 2246 -42.0 4.021 5195.8 0.8960396 0.8983567
## 2247 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2248 -42.0 4.021 5195.8 0.8851675 0.8586118
## 2249 -36.4 4.855 5191.0 0.8874842 0.8983567
## 2250 -36.4 4.864 5191.0 0.8854962 0.8983567
## 2251 -42.0 4.021 5195.8 0.9074675 0.8983567
## 2252 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2253 -46.2 1.259 5099.1 0.8798814 0.8983567
## 2254 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2255 -29.8 0.773 5017.5 0.8798814 0.8983567
## 2256 -42.0 4.021 5195.8 0.9271523 0.8983567
## 2257 -42.0 4.021 5195.8 0.8798814 0.8983567
## 2258 -41.8 4.967 5228.1 0.7666667 0.8983567
## 2259 -36.4 4.857 5191.0 0.9229145 0.8586118
## 2260 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2261 -42.0 4.021 5195.8 0.8798814 0.8586118
## 2262 -36.4 4.857 5191.0 0.7666667 0.8983567
## 2263 -41.8 4.961 5228.1 0.8854962 0.8586118
## 2264 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2265 -40.0 0.684 5008.7 0.8854962 0.9007315
## 2266 -46.2 1.313 5099.1 0.8798814 0.9007315
## 2267 -33.6 0.921 5076.2 0.8798814 0.8983567
## 2268 -36.4 4.864 5191.0 0.9198606 0.8983567
## 2269 -36.1 4.963 5228.1 0.9074675 0.8983567
## 2270 -42.0 4.191 5195.8 0.9074675 0.8983567
## 2271 -42.7 4.963 5228.1 0.8798814 0.8983567
## 2272 -41.8 4.967 5228.1 0.8798814 0.8586118
## 2273 -36.1 4.965 5228.1 0.9271523 0.8983567
## 2274 -36.4 4.864 5191.0 0.8851675 0.9007315
## 2275 -46.2 1.313 5099.1 0.8854962 0.8983567
## 2276 -42.0 4.021 5195.8 0.9229145 0.8983567
## 2277 -42.0 4.021 5195.8 0.8854962 0.8983567
## 2278 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2279 -36.4 4.864 5191.0 0.8874842 0.8983567
## 2280 -36.1 4.965 5228.1 0.8798814 0.8586118
## 2281 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2282 -42.0 4.021 5195.8 0.9198606 0.8983567
## 2283 -36.4 4.859 5191.0 0.8798814 0.8983567
## 2284 -42.7 4.960 5228.1 0.8874842 0.9007315
## 2285 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2286 -36.1 4.964 5228.1 0.8798814 0.9007315
## 2287 -42.7 4.963 5228.1 0.9229145 0.8983567
## 2288 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2289 -36.1 4.964 5228.1 0.8854962 0.8586118
## 2290 -36.4 4.858 5191.0 0.6868132 0.8586118
## 2291 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2292 -41.8 4.865 5228.1 0.8798814 0.8586118
## 2293 -47.1 1.405 5099.1 0.8798814 0.8586118
## 2294 -36.4 4.857 5191.0 0.8851675 0.8983567
## 2295 -36.4 4.859 5191.0 0.8960396 0.8983567
## 2296 -46.2 1.250 5099.1 0.8854962 0.8586118
## 2297 -36.4 4.857 5191.0 0.8960396 0.8983567
## 2298 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2299 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2300 -36.4 4.857 5191.0 0.8798814 0.9007315
## 2301 -36.1 4.963 5228.1 0.8854962 0.9007315
## 2302 -40.8 1.266 5076.2 0.8854962 0.8983567
## 2303 -36.1 4.965 5228.1 0.9074675 0.8983567
## 2304 -42.7 4.963 5228.1 0.8874842 0.8586118
## 2305 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2306 -50.0 1.520 5099.1 0.8854962 0.8586118
## 2307 -36.4 4.858 5191.0 0.9074675 0.8983567
## 2308 -41.8 4.959 5228.1 0.9074675 0.8983567
## 2309 -36.1 4.965 5228.1 0.9198606 0.8983567
## 2310 -36.4 4.857 5191.0 0.8854962 0.8586118
## 2311 -36.4 4.859 5191.0 0.8854962 0.8983567
## 2312 -36.4 4.857 5191.0 0.9198606 0.8983567
## 2313 -42.7 4.962 5228.1 0.9229145 0.9007315
## 2314 -36.1 4.964 5228.1 0.9229145 0.8983567
## 2315 -36.4 4.859 5191.0 0.8854962 0.8586118
## 2316 -42.7 4.957 5228.1 0.8798814 0.8983567
## 2317 -36.4 4.855 5191.0 0.9074675 0.8983567
## 2318 -36.4 4.859 5191.0 0.8874842 0.8983567
## 2319 -46.2 1.313 5099.1 0.8798814 0.8983567
## 2320 -42.7 4.962 5228.1 0.7666667 0.8983567
## 2321 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2322 -36.4 4.858 5191.0 0.9229145 0.9007315
## 2323 -41.8 4.961 5228.1 0.8798814 0.8983567
## 2324 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2325 -41.8 4.967 5228.1 0.9229145 0.8983567
## 2326 -41.8 4.959 5228.1 0.8798814 0.8983567
## 2327 -36.1 4.964 5228.1 0.8960396 0.8983567
## 2328 -42.0 4.021 5195.8 0.8798814 0.8586118
## 2329 -36.4 4.855 5191.0 0.9229145 0.8983567
## 2330 -42.0 4.021 5195.8 0.9074675 0.8983567
## 2331 -41.8 4.959 5228.1 0.9271523 0.8983567
## 2332 -36.1 4.964 5228.1 0.8854962 0.8586118
## 2333 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2334 -36.4 4.857 5191.0 0.8798814 0.8586118
## 2335 -41.8 4.959 5228.1 0.8874842 0.8983567
## 2336 -42.7 4.957 5228.1 0.9271523 0.8586118
## 2337 -36.4 4.855 5191.0 0.8874842 0.8983567
## 2338 -37.5 0.879 4963.6 0.8854962 0.8586118
## 2339 -36.4 4.857 5191.0 0.8851675 0.8983567
## 2340 -36.4 4.855 5191.0 0.9271523 0.8983567
## 2341 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2342 -42.7 4.957 5228.1 0.8798814 0.8586118
## 2343 -36.4 4.855 5191.0 0.9229145 0.8586118
## 2344 -42.0 4.076 5195.8 0.8874842 0.9007315
## 2345 -41.8 4.961 5228.1 0.9074675 0.8983567
## 2346 -46.2 1.313 5099.1 0.8960396 0.8983567
## 2347 -36.4 4.857 5191.0 0.6868132 0.8586118
## 2348 -42.0 4.021 5195.8 0.9229145 0.8983567
## 2349 -36.4 4.855 5191.0 0.9229145 0.8983567
## 2350 -41.8 4.959 5228.1 0.8798814 0.8983567
## 2351 -42.0 4.191 5195.8 0.9271523 0.8983567
## 2352 -42.7 4.960 5228.1 0.8854962 0.8983567
## 2353 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2354 -36.1 4.963 5228.1 0.8798814 0.8586118
## 2355 -36.4 4.858 5191.0 0.8854962 0.8983567
## 2356 -47.1 1.405 5099.1 0.9198606 0.8586118
## 2357 -47.1 1.405 5099.1 0.8798814 0.8586118
## 2358 -41.8 4.961 5228.1 0.8798814 0.9007315
## 2359 -47.1 1.405 5099.1 0.8854962 0.8983567
## 2360 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2361 -41.8 4.865 5228.1 0.9074675 0.8983567
## 2362 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2363 -36.4 4.857 5191.0 0.9271523 0.9007315
## 2364 -36.1 4.970 5228.1 0.7666667 0.8983567
## 2365 -41.8 4.865 5228.1 0.9229145 0.9007315
## 2366 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2367 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2368 -36.4 4.857 5191.0 0.8854962 0.9007315
## 2369 -46.2 1.244 5099.1 0.8798814 0.8983567
## 2370 -47.1 1.405 5099.1 0.9074675 0.8983567
## 2371 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2372 -47.1 1.466 5099.1 0.7666667 0.9007315
## 2373 -31.4 0.861 5076.2 0.9074675 0.8586118
## 2374 -46.2 1.299 5099.1 0.8798814 0.8983567
## 2375 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2376 -49.5 1.000 4963.6 0.7666667 0.8983567
## 2377 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2378 -42.7 4.962 5228.1 0.8960396 0.8983567
## 2379 -36.1 4.963 5228.1 0.8854962 0.8586118
## 2380 -36.4 4.857 5191.0 0.7666667 0.8586118
## 2381 -42.7 4.960 5228.1 0.8854962 0.8586118
## 2382 -36.4 4.858 5191.0 0.8798814 0.8983567
## 2383 -36.1 4.965 5228.1 0.8854962 0.8586118
## 2384 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2385 -41.8 4.865 5228.1 0.8798814 0.8586118
## 2386 -42.0 4.191 5195.8 0.9229145 0.8983567
## 2387 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2388 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2389 -47.1 1.405 5099.1 0.9074675 0.8983567
## 2390 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2391 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2392 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2393 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2394 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2395 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2396 -36.1 4.970 5228.1 0.8854962 0.8983567
## 2397 -49.5 1.032 4963.6 0.8798814 0.9007315
## 2398 -46.2 1.244 5099.1 0.8851675 0.8983567
## 2399 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2400 -46.2 1.244 5099.1 0.6868132 0.8586118
## 2401 -42.7 4.960 5228.1 0.9074675 0.8983567
## 2402 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2403 -41.8 4.960 5228.1 0.9074675 0.8983567
## 2404 -46.2 1.244 5099.1 0.8854962 0.8586118
## 2405 -26.9 0.739 5017.5 0.7666667 0.8983567
## 2406 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2407 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2408 -36.1 4.970 5228.1 0.8798814 0.8983567
## 2409 -41.8 4.865 5228.1 0.8854962 0.8983567
## 2410 -42.0 4.191 5195.8 0.9229145 0.8983567
## 2411 -46.2 1.264 5099.1 0.9229145 0.8586118
## 2412 -36.1 4.963 5228.1 0.8854962 0.8586118
## 2413 -41.8 4.865 5228.1 0.8798814 0.8983567
## 2414 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2415 -42.0 4.191 5195.8 0.9198606 0.8586118
## 2416 -47.1 1.405 5099.1 0.8874842 0.8586118
## 2417 -36.1 4.970 5228.1 0.9074675 0.8983567
## 2418 -47.1 1.405 5099.1 0.8854962 0.8586118
## 2419 -47.1 1.405 5099.1 0.8798814 0.8983567
## 2420 -41.8 4.947 5228.1 0.8854962 0.8586118
## 2421 -47.1 1.466 5099.1 0.8874842 0.8586118
## 2422 -41.8 4.866 5228.1 0.9074675 0.8586118
## 2423 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2424 -41.8 4.961 5228.1 0.9198606 0.8983567
## 2425 -31.4 0.861 5076.2 0.9074675 0.8983567
## 2426 -42.7 4.960 5228.1 0.9271523 0.8983567
## 2427 -36.1 4.965 5228.1 0.7666667 0.8983567
## 2428 -46.2 1.299 5099.1 0.8854962 0.8586118
## 2429 -47.1 1.405 5099.1 0.7666667 0.8983567
## 2430 -41.8 4.960 5228.1 0.8854962 0.8983567
## 2431 -33.0 0.709 5023.5 0.6868132 0.8586118
## 2432 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2433 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2434 -36.4 4.857 5191.0 0.8874842 0.9007315
## 2435 -42.7 4.960 5228.1 0.8874842 0.8586118
## 2436 -36.1 4.965 5228.1 0.9074675 0.8983567
## 2437 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2438 -42.7 4.962 5228.1 0.9198606 0.9007315
## 2439 -47.1 1.392 5099.1 0.9229145 0.8586118
## 2440 -41.8 4.961 5228.1 0.8798814 0.9007315
## 2441 -36.4 4.857 5191.0 0.8960396 0.9007315
## 2442 -36.1 4.970 5228.1 0.8854962 0.8983567
## 2443 -42.7 4.960 5228.1 0.8854962 0.8586118
## 2444 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2445 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2446 -26.9 0.731 5017.5 0.8798814 0.8586118
## 2447 -42.7 4.960 5228.1 0.9198606 0.8983567
## 2448 -41.8 4.961 5228.1 0.8854962 0.8983567
## 2449 -38.3 0.888 4991.6 0.8798814 0.8983567
## 2450 -30.1 0.722 5017.5 0.8798814 0.8983567
## 2451 -36.1 4.970 5228.1 0.8960396 0.8983567
## 2452 -47.1 1.405 5099.1 0.8854962 0.8586118
## 2453 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2454 -41.8 4.961 5228.1 0.8798814 0.9007315
## 2455 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2456 -46.2 1.299 5099.1 0.8798814 0.8586118
## 2457 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2458 -42.7 4.962 5228.1 0.9198606 0.8983567
## 2459 -42.7 4.960 5228.1 0.8854962 0.8586118
## 2460 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2461 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2462 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2463 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2464 -36.4 4.857 5191.0 0.8798814 0.9007315
## 2465 -41.8 4.865 5228.1 0.8874842 0.8586118
## 2466 -41.8 4.865 5228.1 0.8798814 0.8983567
## 2467 -42.7 4.960 5228.1 0.8854962 0.8983567
## 2468 -41.8 4.960 5228.1 0.8798814 0.8586118
## 2469 -46.2 1.299 5099.1 0.9229145 0.8586118
## 2470 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2471 -46.2 1.299 5099.1 0.9271523 0.8983567
## 2472 -42.7 4.960 5228.1 0.8874842 0.8983567
## 2473 -36.1 4.965 5228.1 0.8854962 0.9007315
## 2474 -42.0 4.191 5195.8 0.8874842 0.9007315
## 2475 -40.4 5.000 5195.8 0.8854962 0.9007315
## 2476 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2477 -40.8 1.266 5076.2 0.8851675 0.8983567
## 2478 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2479 -41.8 4.961 5228.1 0.8798814 0.8586118
## 2480 -41.8 4.961 5228.1 0.8798814 0.8983567
## 2481 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2482 -42.7 4.960 5228.1 0.8874842 0.8983567
## 2483 -38.3 0.896 4991.6 0.8798814 0.8586118
## 2484 -36.4 4.857 5191.0 0.9271523 0.8983567
## 2485 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2486 -41.8 4.865 5228.1 0.8854962 0.8983567
## 2487 -46.2 1.354 5099.1 0.8798814 0.8983567
## 2488 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2489 -42.7 4.960 5228.1 0.8854962 0.8586118
## 2490 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2491 -36.1 4.970 5228.1 0.7666667 0.8983567
## 2492 -36.4 4.857 5191.0 0.9271523 0.8983567
## 2493 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2494 -41.8 4.960 5228.1 0.8798814 0.9007315
## 2495 -42.0 4.191 5195.8 0.9074675 0.8983567
## 2496 -39.8 0.720 4991.6 0.8854962 0.8983567
## 2497 -46.2 1.299 5099.1 0.9229145 0.8586118
## 2498 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2499 -36.1 4.963 5228.1 0.9074675 0.8983567
## 2500 -42.7 4.962 5228.1 0.9074675 0.8586118
## 2501 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2502 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2503 -36.1 4.970 5228.1 0.8854962 0.8983567
## 2504 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2505 -36.1 4.963 5228.1 0.8798814 0.8586118
## 2506 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2507 -36.1 4.970 5228.1 0.9229145 0.8983567
## 2508 -42.7 4.958 5228.1 0.9229145 0.8983567
## 2509 -36.1 4.965 5228.1 0.8798814 0.8586118
## 2510 -36.1 4.963 5228.1 0.9198606 0.8983567
## 2511 -47.1 1.405 5099.1 0.9074675 0.8983567
## 2512 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2513 -42.7 4.960 5228.1 0.8798814 0.8586118
## 2514 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2515 -41.8 4.865 5228.1 0.8874842 0.8983567
## 2516 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2517 -42.7 4.960 5228.1 0.8798814 0.8586118
## 2518 -36.4 4.857 5191.0 0.9229145 0.8586118
## 2519 -41.8 4.960 5228.1 0.9229145 0.8983567
## 2520 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2521 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2522 -47.1 1.405 5099.1 0.8798814 0.8586118
## 2523 -36.4 4.858 5191.0 0.8854962 0.8586118
## 2524 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2525 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2526 -41.8 4.960 5228.1 0.8960396 0.8983567
## 2527 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2528 -42.7 4.960 5228.1 0.8854962 0.8586118
## 2529 -36.4 4.857 5191.0 0.9229145 0.8586118
## 2530 -42.7 4.962 5228.1 0.8854962 0.8983567
## 2531 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2532 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2533 -47.1 1.466 5099.1 0.9229145 0.8586118
## 2534 -36.4 4.858 5191.0 0.8798814 0.8983567
## 2535 -36.1 4.970 5228.1 0.8960396 0.8983567
## 2536 -46.2 1.354 5099.1 0.9074675 0.8983567
## 2537 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2538 -42.7 4.960 5228.1 0.9229145 0.9007315
## 2539 -46.2 1.244 5099.1 0.8874842 0.8586118
## 2540 -41.8 4.960 5228.1 0.9229145 0.8983567
## 2541 -36.4 4.857 5191.0 0.9229145 0.8586118
## 2542 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2543 -36.1 4.970 5228.1 0.8798814 0.8586118
## 2544 -36.4 4.858 5191.0 0.8798814 0.9007315
## 2545 -36.4 4.857 5191.0 0.9229145 0.8586118
## 2546 -40.8 1.281 5076.2 0.8854962 0.8983567
## 2547 -36.4 4.857 5191.0 0.7666667 0.8983567
## 2548 -36.1 4.965 5228.1 0.9074675 0.8983567
## 2549 -38.3 0.904 4991.6 0.8854962 0.8983567
## 2550 -42.7 4.962 5228.1 0.9271523 0.8586118
## 2551 -30.1 0.714 5017.5 0.9229145 0.8586118
## 2552 -42.7 4.960 5228.1 0.8798814 0.8586118
## 2553 -46.2 1.244 5099.1 0.7666667 0.9007315
## 2554 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2555 -47.1 1.405 5099.1 0.9074675 0.8983567
## 2556 -42.7 4.960 5228.1 0.7666667 0.8983567
## 2557 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2558 -42.0 4.191 5195.8 0.9074675 0.8983567
## 2559 -36.4 4.857 5191.0 0.9074675 0.9007315
## 2560 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2561 -36.1 4.963 5228.1 0.8854962 0.8586118
## 2562 -42.7 4.960 5228.1 0.8874842 0.8983567
## 2563 -50.0 1.811 5099.1 0.8798814 0.8586118
## 2564 -36.4 4.857 5191.0 0.8851675 0.8983567
## 2565 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2566 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2567 -42.7 4.960 5228.1 0.8854962 0.8983567
## 2568 -36.1 4.965 5228.1 0.8960396 0.8983567
## 2569 -38.3 0.896 4991.6 0.8854962 0.8586118
## 2570 -41.8 4.865 5228.1 0.9229145 0.9007315
## 2571 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2572 -36.1 4.965 5228.1 0.7666667 0.8983567
## 2573 -46.2 1.244 5099.1 0.8798814 0.8586118
## 2574 -36.1 4.970 5228.1 0.8032787 0.8983567
## 2575 -40.8 1.215 5076.2 0.8798814 0.8586118
## 2576 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2577 -46.2 1.244 5099.1 0.8798814 0.8586118
## 2578 -38.3 0.896 4991.6 0.7666667 0.8586118
## 2579 -41.8 4.961 5228.1 0.8854962 0.8983567
## 2580 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2581 -38.3 0.896 4991.6 0.8798814 0.8983567
## 2582 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2583 -40.8 1.266 5076.2 0.9074675 0.8983567
## 2584 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2585 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2586 -46.2 1.244 5099.1 0.9229145 0.8586118
## 2587 -50.0 1.520 5099.1 0.6868132 0.8586118
## 2588 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2589 -40.8 1.260 5076.2 0.8874842 0.9007315
## 2590 -47.1 1.405 5099.1 0.8854962 0.8983567
## 2591 -46.2 1.299 5099.1 0.9271523 0.8983567
## 2592 -36.1 4.965 5228.1 0.9074675 0.8983567
## 2593 -36.1 4.965 5228.1 0.9198606 0.8983567
## 2594 -36.4 4.857 5191.0 0.8854962 0.8586118
## 2595 -36.1 4.965 5228.1 0.9074675 0.8586118
## 2596 -42.7 4.968 5228.1 0.9074675 0.8983567
## 2597 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2598 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2599 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2600 -41.8 4.961 5228.1 0.9229145 0.8586118
## 2601 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2602 -36.4 4.857 5191.0 0.6868132 0.8586118
## 2603 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2604 -40.0 0.685 5008.7 0.8798814 0.8983567
## 2605 -36.4 4.857 5191.0 0.8851675 0.8983567
## 2606 -46.2 1.244 5099.1 0.9074675 0.9007315
## 2607 -50.8 1.039 4963.6 0.8798814 0.8586118
## 2608 -41.8 4.960 5228.1 0.9229145 0.9007315
## 2609 -36.4 4.858 5191.0 0.6868132 0.8586118
## 2610 -40.3 0.793 4991.6 0.8854962 0.8586118
## 2611 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2612 -41.8 4.865 5228.1 0.8874842 0.8586118
## 2613 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2614 -42.0 4.191 5195.8 0.9074675 0.8983567
## 2615 -41.8 4.958 5228.1 0.9074675 0.8586118
## 2616 -41.8 4.960 5228.1 0.9074675 0.8983567
## 2617 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2618 -46.2 1.244 5099.1 0.9271523 0.9007315
## 2619 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2620 -42.7 4.962 5228.1 0.9271523 0.8983567
## 2621 -42.7 4.962 5228.1 0.8960396 0.9007315
## 2622 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2623 -42.7 4.960 5228.1 0.9074675 0.8983567
## 2624 -41.8 4.960 5228.1 0.8874842 0.8586118
## 2625 -36.1 4.965 5228.1 0.8798814 0.9007315
## 2626 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2627 -36.4 4.858 5191.0 0.9074675 0.8983567
## 2628 -50.0 1.703 5099.1 0.7666667 0.8586118
## 2629 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2630 -36.4 4.857 5191.0 0.8854962 0.8586118
## 2631 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2632 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2633 -46.2 1.299 5099.1 0.8854962 0.8586118
## 2634 -36.4 4.858 5191.0 0.8798814 0.8983567
## 2635 -42.7 4.960 5228.1 0.9229145 0.9007315
## 2636 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2637 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2638 -36.4 4.857 5191.0 0.7666667 0.8983567
## 2639 -36.1 4.970 5228.1 0.8798814 0.8586118
## 2640 -36.1 4.963 5228.1 0.7666667 0.9007315
## 2641 -42.7 4.960 5228.1 0.9229145 0.9007315
## 2642 -41.8 4.866 5228.1 0.8874842 0.8586118
## 2643 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2644 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2645 -49.5 1.000 4963.6 0.8854962 0.9007315
## 2646 -42.7 4.960 5228.1 0.8798814 0.8586118
## 2647 -36.1 4.970 5228.1 0.8798814 0.9007315
## 2648 -36.1 4.965 5228.1 0.8960396 0.8983567
## 2649 -36.4 4.855 5191.0 0.8798814 0.8983567
## 2650 -42.0 4.191 5195.8 0.9271523 0.8983567
## 2651 -40.8 1.260 5076.2 0.8798814 0.8586118
## 2652 -41.8 4.865 5228.1 0.9074675 0.8586118
## 2653 -36.1 4.965 5228.1 0.8874842 0.8983567
## 2654 -36.1 4.963 5228.1 0.9229145 0.8983567
## 2655 -46.2 1.354 5099.1 0.7666667 0.8983567
## 2656 -42.7 4.962 5228.1 0.9198606 0.8983567
## 2657 -42.7 4.962 5228.1 0.9271523 0.8983567
## 2658 -46.2 1.244 5099.1 0.9074675 0.9007315
## 2659 -36.1 4.965 5228.1 0.8854962 0.8586118
## 2660 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2661 -30.1 0.715 5017.5 0.8798814 0.8586118
## 2662 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2663 -47.1 1.405 5099.1 0.7666667 0.9007315
## 2664 -50.0 1.811 5099.1 0.8798814 0.8983567
## 2665 -47.1 1.466 5099.1 0.8798814 0.8586118
## 2666 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2667 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2668 -38.3 0.898 4991.6 0.7666667 0.8983567
## 2669 -42.7 4.960 5228.1 0.8960396 0.9007315
## 2670 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2671 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2672 -46.2 1.264 5099.1 0.8798814 0.8983567
## 2673 -29.8 0.797 5017.5 0.8798814 0.8983567
## 2674 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2675 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2676 -42.0 4.191 5195.8 0.8798814 0.8983567
## 2677 -41.8 4.961 5228.1 0.8854962 0.8983567
## 2678 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2679 -42.7 4.960 5228.1 0.8854962 0.8983567
## 2680 -36.4 4.857 5191.0 0.8874842 0.9007315
## 2681 -26.9 0.739 5017.5 0.7666667 0.8983567
## 2682 -42.0 4.191 5195.8 0.8851675 0.8983567
## 2683 -42.0 4.191 5195.8 0.8960396 0.8983567
## 2684 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2685 -47.1 1.405 5099.1 0.9229145 0.8586118
## 2686 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2687 -42.7 4.960 5228.1 0.8874842 0.8983567
## 2688 -36.1 4.965 5228.1 0.8798814 0.9007315
## 2689 -36.4 4.857 5191.0 0.8798814 0.9007315
## 2690 -30.1 0.719 5017.5 0.8798814 0.8983567
## 2691 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2692 -36.4 4.857 5191.0 0.8854962 0.9007315
## 2693 -42.7 4.962 5228.1 0.8032787 0.8983567
## 2694 -42.0 4.191 5195.8 0.8798814 0.8983567
## 2695 -36.4 4.857 5191.0 0.9198606 0.8983567
## 2696 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2697 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2698 -42.7 4.962 5228.1 0.8874842 0.8586118
## 2699 -40.8 1.260 5076.2 0.7666667 0.8983567
## 2700 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2701 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2702 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2703 -36.1 4.970 5228.1 0.8854962 0.8983567
## 2704 -40.0 0.697 5008.7 0.8851675 0.8586118
## 2705 -42.7 4.960 5228.1 0.8854962 0.8983567
## 2706 -41.8 4.960 5228.1 0.8798814 0.8586118
## 2707 -41.8 4.865 5228.1 0.8798814 0.8983567
## 2708 -41.8 4.960 5228.1 0.7666667 0.8983567
## 2709 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2710 -36.4 4.857 5191.0 0.9271523 0.8983567
## 2711 -42.0 4.191 5195.8 0.8798814 0.8983567
## 2712 -47.1 1.405 5099.1 0.6868132 0.8586118
## 2713 -36.4 4.860 5191.0 0.8798814 0.8983567
## 2714 -36.4 4.857 5191.0 0.7666667 0.8983567
## 2715 -42.0 4.191 5195.8 0.9074675 0.8983567
## 2716 -42.7 4.960 5228.1 0.9271523 0.8983567
## 2717 -47.1 1.405 5099.1 0.8798814 0.8586118
## 2718 -41.8 4.865 5228.1 0.8874842 0.8983567
## 2719 -34.6 0.642 5008.7 0.8798814 0.8586118
## 2720 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2721 -42.0 4.076 5195.8 0.9229145 0.8983567
## 2722 -40.8 1.215 5076.2 0.8854962 0.9007315
## 2723 -41.8 4.865 5228.1 0.8798814 0.9007315
## 2724 -42.7 4.962 5228.1 0.8854962 0.9007315
## 2725 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2726 -30.1 0.714 5017.5 0.8874842 0.8983567
## 2727 -41.8 4.961 5228.1 0.9074675 0.8983567
## 2728 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2729 -36.4 4.858 5191.0 0.9229145 0.8586118
## 2730 -42.7 4.962 5228.1 0.9074675 0.8983567
## 2731 -42.0 4.191 5195.8 0.8874842 0.9007315
## 2732 -46.2 1.299 5099.1 0.9074675 0.8983567
## 2733 -42.0 4.191 5195.8 0.8798814 0.8983567
## 2734 -42.7 4.960 5228.1 0.8874842 0.8983567
## 2735 -42.7 4.962 5228.1 0.9198606 0.8983567
## 2736 -47.1 1.405 5099.1 0.9074675 0.9007315
## 2737 -46.2 1.244 5099.1 0.8798814 0.8983567
## 2738 -41.8 4.960 5228.1 0.8854962 0.8983567
## 2739 -46.2 1.244 5099.1 0.8798814 0.8586118
## 2740 -34.8 0.646 5008.7 0.8854962 0.8983567
## 2741 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2742 -46.2 1.354 5099.1 0.7666667 0.8983567
## 2743 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2744 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2745 -42.0 4.191 5195.8 0.8854962 0.8983567
## 2746 -36.1 4.965 5228.1 0.8798814 0.8586118
## 2747 -42.7 4.962 5228.1 0.9074675 0.9007315
## 2748 -40.3 0.793 4991.6 0.8798814 0.9007315
## 2749 -41.8 4.961 5228.1 0.8798814 0.8983567
## 2750 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2751 -36.1 4.970 5228.1 0.8874842 0.8983567
## 2752 -36.1 4.965 5228.1 0.8854962 0.8586118
## 2753 -41.8 4.961 5228.1 0.8874842 0.8983567
## 2754 -50.0 1.811 5099.1 0.9229145 0.8586118
## 2755 -42.7 4.962 5228.1 0.8854962 0.9007315
## 2756 -41.8 4.865 5228.1 0.9198606 0.8983567
## 2757 -42.7 4.962 5228.1 0.9074675 0.8983567
## 2758 -33.0 0.717 5023.5 0.8960396 0.8586118
## 2759 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2760 -42.7 4.960 5228.1 0.8798814 0.9007315
## 2761 -36.1 4.965 5228.1 0.8798814 0.9007315
## 2762 -42.7 4.962 5228.1 0.8798814 0.9007315
## 2763 -42.0 4.076 5195.8 0.8874842 0.8983567
## 2764 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2765 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2766 -42.0 4.191 5195.8 0.8798814 0.8983567
## 2767 -36.4 4.857 5191.0 0.9074675 0.9007315
## 2768 -42.7 4.962 5228.1 0.9229145 0.9007315
## 2769 -42.7 4.962 5228.1 0.9074675 0.9007315
## 2770 -42.0 4.191 5195.8 0.8874842 0.8983567
## 2771 -46.2 1.354 5099.1 0.8798814 0.8983567
## 2772 -42.0 4.191 5195.8 0.9074675 0.8983567
## 2773 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2774 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2775 -42.7 4.962 5228.1 0.9198606 0.8983567
## 2776 -36.1 4.970 5228.1 0.8854962 0.9007315
## 2777 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2778 -36.4 4.857 5191.0 0.9198606 0.8983567
## 2779 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2780 -36.4 4.857 5191.0 0.8854962 0.9007315
## 2781 -36.1 4.970 5228.1 0.7666667 0.8983567
## 2782 -36.4 4.858 5191.0 0.8798814 0.8586118
## 2783 -36.1 4.963 5228.1 0.8960396 0.8983567
## 2784 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2785 -41.8 4.866 5228.1 0.9229145 0.8983567
## 2786 -46.2 1.244 5099.1 0.8854962 0.9007315
## 2787 -46.2 1.244 5099.1 0.8798814 0.8983567
## 2788 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2789 -34.6 0.642 5008.7 0.8798814 0.8586118
## 2790 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2791 -46.2 1.244 5099.1 0.9074675 0.8983567
## 2792 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2793 -40.8 1.266 5076.2 0.8798814 0.8983567
## 2794 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2795 -46.2 1.244 5099.1 0.9229145 0.8586118
## 2796 -42.7 4.968 5228.1 0.9198606 0.8983567
## 2797 -41.8 4.960 5228.1 0.8798814 0.8586118
## 2798 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2799 -36.4 4.858 5191.0 0.8798814 0.8983567
## 2800 -41.8 4.865 5228.1 0.8798814 0.8983567
## 2801 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2802 -42.7 4.962 5228.1 0.8851675 0.9007315
## 2803 -41.8 4.865 5228.1 0.8874842 0.9007315
## 2804 -42.7 4.961 5228.1 0.9074675 0.8983567
## 2805 -46.2 1.354 5099.1 0.9229145 0.8983567
## 2806 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2807 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2808 -36.1 4.965 5228.1 0.8854962 0.9007315
## 2809 -37.5 0.882 4963.6 0.9229145 0.8983567
## 2810 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2811 -36.1 4.965 5228.1 0.8854962 0.9007315
## 2812 -46.2 1.266 5099.1 0.8798814 0.8586118
## 2813 -36.1 4.963 5228.1 0.8854962 0.8586118
## 2814 -36.4 4.857 5191.0 0.8874842 0.8983567
## 2815 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2816 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2817 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2818 -36.4 4.857 5191.0 0.8851675 0.8983567
## 2819 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2820 -46.2 1.244 5099.1 0.8798814 0.9007315
## 2821 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2822 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2823 -42.7 4.962 5228.1 0.8798814 0.9007315
## 2824 -42.0 4.191 5195.8 0.8854962 0.8983567
## 2825 -41.8 4.866 5228.1 0.9271523 0.8983567
## 2826 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2827 -42.0 4.191 5195.8 0.8798814 0.8983567
## 2828 -41.8 4.958 5228.1 0.8798814 0.8983567
## 2829 -42.7 4.962 5228.1 0.8960396 0.8983567
## 2830 -42.7 4.960 5228.1 0.8798814 0.8586118
## 2831 -41.8 4.865 5228.1 0.8032787 0.8983567
## 2832 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2833 -46.2 1.244 5099.1 0.8798814 0.8586118
## 2834 -42.7 4.962 5228.1 0.8854962 0.8983567
## 2835 -41.8 4.958 5228.1 0.9198606 0.8586118
## 2836 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2837 -42.7 4.960 5228.1 0.8874842 0.8983567
## 2838 -46.2 1.244 5099.1 0.8798814 0.8586118
## 2839 -46.2 1.299 5099.1 0.9229145 0.8586118
## 2840 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2841 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2842 -42.7 4.962 5228.1 0.8854962 0.8983567
## 2843 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2844 -41.8 4.866 5228.1 0.9229145 0.8983567
## 2845 -36.1 4.962 5228.1 0.9074675 0.8983567
## 2846 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2847 -46.2 1.354 5099.1 0.7666667 0.8983567
## 2848 -40.3 0.827 4991.6 0.8798814 0.8586118
## 2849 -41.8 4.865 5228.1 0.7666667 0.8983567
## 2850 -26.9 0.739 5017.5 0.8874842 0.8586118
## 2851 -50.0 1.703 5099.1 0.9074675 0.8586118
## 2852 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2853 -36.4 4.857 5191.0 0.9229145 0.9007315
## 2854 -41.8 4.960 5228.1 0.9271523 0.8983567
## 2855 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2856 -46.2 1.244 5099.1 0.8874842 0.8983567
## 2857 -41.8 4.947 5228.1 0.8798814 0.8983567
## 2858 -31.4 0.884 5076.2 0.9229145 0.8983567
## 2859 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2860 -41.8 4.960 5228.1 0.9229145 0.8983567
## 2861 -47.1 1.405 5099.1 0.9229145 0.8586118
## 2862 -41.8 4.865 5228.1 0.8874842 0.9007315
## 2863 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2864 -46.2 1.354 5099.1 0.8854962 0.8983567
## 2865 -46.2 1.244 5099.1 0.8798814 0.8983567
## 2866 -36.1 4.965 5228.1 0.8960396 0.8983567
## 2867 -46.2 1.244 5099.1 0.8851675 0.8983567
## 2868 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2869 -36.1 4.965 5228.1 0.8960396 0.8983567
## 2870 -36.4 4.858 5191.0 0.8032787 0.8983567
## 2871 -41.8 4.961 5228.1 0.9271523 0.8983567
## 2872 -47.1 1.405 5099.1 0.7666667 0.9007315
## 2873 -42.7 4.962 5228.1 0.8798814 0.9007315
## 2874 -36.1 4.965 5228.1 0.8798814 0.9007315
## 2875 -46.2 1.354 5099.1 0.8874842 0.8983567
## 2876 -42.7 4.960 5228.1 0.8874842 0.9007315
## 2877 -42.7 4.962 5228.1 0.8854962 0.9007315
## 2878 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2879 -47.1 1.405 5099.1 0.9198606 0.8983567
## 2880 -41.8 4.865 5228.1 0.8874842 0.8983567
## 2881 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2882 -42.0 4.191 5195.8 0.9271523 0.8983567
## 2883 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2884 -42.7 4.962 5228.1 0.8798814 0.9007315
## 2885 -41.8 4.961 5228.1 0.6868132 0.8586118
## 2886 -42.0 4.191 5195.8 0.8854962 0.8983567
## 2887 -47.1 1.405 5099.1 0.9198606 0.8586118
## 2888 -50.0 1.538 5099.1 0.6868132 0.8586118
## 2889 -42.0 4.076 5195.8 0.7666667 0.8983567
## 2890 -41.8 4.865 5228.1 0.8798814 0.8983567
## 2891 -41.8 4.960 5228.1 0.9229145 0.8983567
## 2892 -42.7 4.962 5228.1 0.9074675 0.8983567
## 2893 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2894 -47.1 1.405 5099.1 0.8874842 0.9007315
## 2895 -34.6 0.642 5008.7 0.8798814 0.8983567
## 2896 -42.0 4.191 5195.8 0.8854962 0.8983567
## 2897 -36.4 4.858 5191.0 0.9074675 0.8983567
## 2898 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2899 -36.4 4.858 5191.0 0.8874842 0.9007315
## 2900 -36.1 4.963 5228.1 0.8798814 0.8586118
## 2901 -36.4 4.857 5191.0 0.7666667 0.9007315
## 2902 -36.1 4.962 5228.1 0.9198606 0.8983567
## 2903 -41.8 4.865 5228.1 0.9229145 0.8586118
## 2904 -41.8 4.961 5228.1 0.9074675 0.8983567
## 2905 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2906 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2907 -36.4 4.857 5191.0 0.9074675 0.9007315
## 2908 -46.2 1.299 5099.1 0.8798814 0.8586118
## 2909 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2910 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2911 -42.7 4.962 5228.1 0.8874842 0.9007315
## 2912 -42.7 4.962 5228.1 0.8798814 0.9007315
## 2913 -46.2 1.354 5099.1 0.9229145 0.8983567
## 2914 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2915 -36.1 4.963 5228.1 0.8851675 0.9007315
## 2916 -36.4 4.857 5191.0 0.8874842 0.8983567
## 2917 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2918 -42.0 4.191 5195.8 0.9271523 0.8983567
## 2919 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2920 -36.4 4.857 5191.0 0.8798814 0.8586118
## 2921 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2922 -42.0 4.191 5195.8 0.8854962 0.8983567
## 2923 -36.1 4.970 5228.1 0.8854962 0.8983567
## 2924 -42.0 4.733 5195.8 0.8798814 0.8983567
## 2925 -31.4 0.821 5076.2 0.8798814 0.8983567
## 2926 -36.1 4.963 5228.1 0.8854962 0.9007315
## 2927 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2928 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2929 -36.4 4.857 5191.0 0.8798814 0.8586118
## 2930 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2931 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2932 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2933 -42.0 4.191 5195.8 0.8874842 0.9007315
## 2934 -36.4 4.858 5191.0 0.9271523 0.8983567
## 2935 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2936 -42.0 4.191 5195.8 0.9074675 0.9007315
## 2937 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2938 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2939 -42.0 4.191 5195.8 0.9229145 0.8983567
## 2940 -46.2 1.299 5099.1 0.9198606 0.8586118
## 2941 -36.1 4.963 5228.1 0.9074675 0.8983567
## 2942 -41.8 4.961 5228.1 0.6868132 0.8586118
## 2943 -42.7 4.958 5228.1 0.9229145 0.8983567
## 2944 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2945 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2946 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2947 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2948 -29.8 0.739 5017.5 0.7666667 0.8586118
## 2949 -36.1 4.963 5228.1 0.9229145 0.8983567
## 2950 -47.1 1.405 5099.1 0.9229145 0.9007315
## 2951 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2952 -42.0 4.191 5195.8 0.7666667 0.8983567
## 2953 -46.2 1.299 5099.1 0.8798814 0.9007315
## 2954 -42.7 4.962 5228.1 0.8960396 0.9007315
## 2955 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2956 -47.1 1.405 5099.1 0.8854962 0.8586118
## 2957 -46.2 1.344 5099.1 0.9229145 0.8983567
## 2958 -36.1 4.965 5228.1 0.8798814 0.8586118
## 2959 -31.4 0.884 5076.2 0.8798814 0.8586118
## 2960 -40.8 1.266 5076.2 0.8854962 0.8983567
## 2961 -41.8 4.865 5228.1 0.9074675 0.8983567
## 2962 -36.1 4.968 5228.1 0.8854962 0.8983567
## 2963 -36.1 4.963 5228.1 0.8798814 0.8586118
## 2964 -47.1 1.466 5099.1 0.9074675 0.9007315
## 2965 -36.4 4.858 5191.0 0.9198606 0.8983567
## 2966 -46.2 1.299 5099.1 0.8798814 0.8983567
## 2967 -36.4 4.855 5191.0 0.9229145 0.8586118
## 2968 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2969 -36.4 4.858 5191.0 0.8874842 0.8586118
## 2970 -36.4 4.857 5191.0 0.8874842 0.8983567
## 2971 -47.1 1.365 5099.1 0.8798814 0.8586118
## 2972 -47.1 1.405 5099.1 0.9271523 0.8983567
## 2973 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2974 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2975 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2976 -31.4 0.821 5076.2 0.8798814 0.8983567
## 2977 -46.2 1.299 5099.1 0.8874842 0.8983567
## 2978 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2979 -38.3 0.904 4991.6 0.8798814 0.8586118
## 2980 -42.0 4.191 5195.8 0.9271523 0.8983567
## 2981 -42.7 4.963 5228.1 0.8874842 0.8983567
## 2982 -36.1 4.965 5228.1 0.9198606 0.8983567
## 2983 -41.8 4.961 5228.1 0.9271523 0.8983567
## 2984 -36.1 4.965 5228.1 0.8854962 0.9007315
## 2985 -42.7 4.962 5228.1 0.9271523 0.8586118
## 2986 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2987 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2988 -42.7 4.962 5228.1 0.8874842 0.9007315
## 2989 -41.8 4.961 5228.1 0.8854962 0.8983567
## 2990 -47.1 1.466 5099.1 0.9229145 0.8983567
## 2991 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2992 -42.7 4.962 5228.1 0.9198606 0.8983567
## 2993 -47.1 1.483 5099.1 0.8854962 0.8586118
## 2994 -42.0 4.191 5195.8 0.8851675 0.8983567
## 2995 -33.0 0.706 5023.5 0.8854962 0.8983567
## 2996 -42.0 4.191 5195.8 0.8798814 0.9007315
## 2997 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2998 -41.8 4.960 5228.1 0.8874842 0.8983567
## 2999 -42.7 4.963 5228.1 0.9229145 0.8586118
## 3000 -42.7 4.962 5228.1 0.8874842 0.8983567
## 3001 -36.1 4.963 5228.1 0.8854962 0.9007315
## 3002 -42.0 3.879 5195.8 0.9271523 0.8586118
## 3003 -36.1 4.965 5228.1 0.8854962 0.8586118
## 3004 -36.4 4.857 5191.0 0.8874842 0.9007315
## 3005 -47.1 1.410 5099.1 0.9229145 0.8983567
## 3006 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3007 -42.7 4.962 5228.1 0.8854962 0.8586118
## 3008 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3009 -36.4 4.856 5191.0 0.8798814 0.8983567
## 3010 -33.0 0.706 5023.5 0.9198606 0.8983567
## 3011 -33.0 0.709 5023.5 0.8854962 0.8586118
## 3012 -47.1 1.365 5099.1 0.8798814 0.8586118
## 3013 -36.4 4.860 5191.0 0.8854962 0.9007315
## 3014 -41.8 4.960 5228.1 0.8798814 0.8586118
## 3015 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3016 -46.2 1.354 5099.1 0.8874842 0.8983567
## 3017 -42.7 4.962 5228.1 0.8874842 0.8586118
## 3018 -47.1 1.410 5099.1 0.9074675 0.8983567
## 3019 -36.1 4.965 5228.1 0.8874842 0.8983567
## 3020 -42.7 4.968 5228.1 0.8874842 0.9007315
## 3021 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3022 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3023 -42.7 4.962 5228.1 0.9074675 0.8983567
## 3024 -36.1 4.970 5228.1 0.9074675 0.8983567
## 3025 -47.1 1.410 5099.1 0.9271523 0.8983567
## 3026 -36.4 4.860 5191.0 0.8032787 0.8983567
## 3027 -42.0 4.191 5195.8 0.8854962 0.8983567
## 3028 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3029 -36.1 4.964 5228.1 0.8854962 0.8586118
## 3030 -42.7 4.960 5228.1 0.8874842 0.8983567
## 3031 -41.8 4.961 5228.1 0.8798814 0.8983567
## 3032 -47.1 1.410 5099.1 0.9074675 0.8586118
## 3033 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3034 -36.1 4.965 5228.1 0.8854962 0.8586118
## 3035 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3036 -36.4 4.860 5191.0 0.9198606 0.8983567
## 3037 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3038 -46.2 1.264 5099.1 0.9198606 0.8983567
## 3039 -42.7 4.960 5228.1 0.9074675 0.8983567
## 3040 -42.7 4.960 5228.1 0.9229145 0.9007315
## 3041 -47.1 1.410 5099.1 0.8798814 0.8586118
## 3042 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3043 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3044 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3045 -36.1 4.970 5228.1 0.9229145 0.8983567
## 3046 -42.0 4.191 5195.8 0.8874842 0.9007315
## 3047 -36.1 4.965 5228.1 0.7666667 0.8983567
## 3048 -36.1 4.963 5228.1 0.8851675 0.9007315
## 3049 -42.7 4.962 5228.1 0.8854962 0.8586118
## 3050 -36.1 4.970 5228.1 0.9074675 0.9007315
## 3051 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3052 -42.0 4.191 5195.8 0.8874842 0.8983567
## 3053 -36.1 4.965 5228.1 0.8798814 0.8586118
## 3054 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3055 -36.1 4.965 5228.1 0.8798814 0.9007315
## 3056 -42.7 4.962 5228.1 0.9198606 0.8983567
## 3057 -41.8 4.866 5228.1 0.9229145 0.9007315
## 3058 -42.7 4.963 5228.1 0.9229145 0.8983567
## 3059 -36.4 4.860 5191.0 0.8851675 0.9007315
## 3060 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3061 -36.4 4.858 5191.0 0.8798814 0.8983567
## 3062 -46.2 1.266 5099.1 0.8798814 0.8983567
## 3063 -47.1 1.365 5099.1 0.8854962 0.9007315
## 3064 -42.7 4.961 5228.1 0.9229145 0.8983567
## 3065 -36.1 4.962 5228.1 0.8960396 0.8983567
## 3066 -46.2 1.244 5099.1 0.8798814 0.8983567
## 3067 -46.2 1.244 5099.1 0.9229145 0.8983567
## 3068 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3069 -40.8 1.260 5076.2 0.6868132 0.8586118
## 3070 -47.1 1.410 5099.1 0.9074675 0.8983567
## 3071 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3072 -46.2 1.244 5099.1 0.9229145 0.8586118
## 3073 -42.7 4.960 5228.1 0.9074675 0.8983567
## 3074 -46.2 1.264 5099.1 0.8798814 0.8983567
## 3075 -42.7 4.968 5228.1 0.8798814 0.8586118
## 3076 -47.1 1.365 5099.1 0.9074675 0.8983567
## 3077 -36.1 4.970 5228.1 0.7666667 0.8983567
## 3078 -42.7 4.960 5228.1 0.9271523 0.8983567
## 3079 -46.2 1.264 5099.1 0.8798814 0.8983567
## 3080 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3081 -42.0 4.076 5195.8 0.8874842 0.8586118
## 3082 -30.1 0.714 5017.5 0.9074675 0.8983567
## 3083 -41.8 4.866 5228.1 0.9229145 0.8983567
## 3084 -36.1 4.965 5228.1 0.9074675 0.8983567
## 3085 -41.8 4.947 5228.1 0.9198606 0.8586118
## 3086 -40.8 1.262 5076.2 0.8798814 0.8586118
## 3087 -42.7 4.958 5228.1 0.9271523 0.8983567
## 3088 -41.8 4.960 5228.1 0.9229145 0.8983567
## 3089 -50.0 1.520 5099.1 0.8854962 0.8586118
## 3090 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3091 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3092 -47.1 1.410 5099.1 0.8798814 0.8586118
## 3093 -46.2 1.266 5099.1 0.9229145 0.8983567
## 3094 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3095 -36.1 4.964 5228.1 0.9229145 0.8983567
## 3096 -42.0 4.191 5195.8 0.8798814 0.8586118
## 3097 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3098 -42.7 4.968 5228.1 0.8854962 0.8586118
## 3099 -36.4 4.855 5191.0 0.8798814 0.8983567
## 3100 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3101 -50.0 1.703 5099.1 0.9074675 0.8586118
## 3102 -41.8 4.960 5228.1 0.8854962 0.8983567
## 3103 -41.8 4.960 5228.1 0.9229145 0.8983567
## 3104 -41.8 4.866 5228.1 0.9229145 0.8983567
## 3105 -47.1 1.410 5099.1 0.8874842 0.8586118
## 3106 -36.4 4.860 5191.0 0.8874842 0.8983567
## 3107 -50.0 1.520 5099.1 0.8798814 0.8586118
## 3108 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3109 -42.7 4.960 5228.1 0.8798814 0.8586118
## 3110 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3111 -46.2 1.266 5099.1 0.8874842 0.8983567
## 3112 -36.4 4.857 5191.0 0.7666667 0.8586118
## 3113 -46.2 1.354 5099.1 0.8798814 0.8983567
## 3114 -47.1 1.405 5099.1 0.9229145 0.8586118
## 3115 -42.7 4.962 5228.1 0.8960396 0.8983567
## 3116 -42.7 4.968 5228.1 0.8960396 0.8983567
## 3117 -41.8 4.960 5228.1 0.9271523 0.8586118
## 3118 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3119 -42.7 4.963 5228.1 0.9229145 0.8983567
## 3120 -42.7 4.963 5228.1 0.8798814 0.8586118
## 3121 -36.1 4.968 5228.1 0.8798814 0.8983567
## 3122 -36.4 4.857 5191.0 0.9229145 0.8586118
## 3123 -30.1 0.722 5017.5 0.8798814 0.8983567
## 3124 -36.1 4.968 5228.1 0.8960396 0.8983567
## 3125 -36.1 4.963 5228.1 0.8854962 0.8983567
## 3126 -47.1 1.405 5099.1 0.8874842 0.8586118
## 3127 -42.7 4.962 5228.1 0.9271523 0.8586118
## 3128 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3129 -42.7 4.960 5228.1 0.8854962 0.9007315
## 3130 -36.1 4.965 5228.1 0.9229145 0.8983567
## 3131 -42.0 4.191 5195.8 0.8874842 0.8983567
## 3132 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3133 -41.8 4.865 5228.1 0.9229145 0.8586118
## 3134 -46.2 1.244 5099.1 0.8854962 0.8586118
## 3135 -42.7 4.962 5228.1 0.8851675 0.8983567
## 3136 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3137 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3138 -41.8 4.960 5228.1 0.9229145 0.8983567
## 3139 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3140 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3141 -47.1 1.405 5099.1 0.8960396 0.8983567
## 3142 -47.1 1.410 5099.1 0.9229145 0.8983567
## 3143 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3144 -39.8 0.720 4991.6 0.8798814 0.8983567
## 3145 -41.8 4.961 5228.1 0.8798814 0.8983567
## 3146 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3147 -36.4 4.860 5191.0 0.8851675 0.8983567
## 3148 -47.1 1.405 5099.1 0.8854962 0.8983567
## 3149 -36.4 4.855 5191.0 0.8798814 0.8983567
## 3150 -47.1 1.406 5099.1 0.7666667 0.8983567
## 3151 -42.7 4.960 5228.1 0.8798814 0.9007315
## 3152 -47.1 1.405 5099.1 0.8798814 0.8586118
## 3153 -46.2 1.266 5099.1 0.8798814 0.8983567
## 3154 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3155 -42.7 4.968 5228.1 0.8874842 0.8983567
## 3156 -46.2 1.264 5099.1 0.8798814 0.8983567
## 3157 -42.7 4.963 5228.1 0.9074675 0.8983567
## 3158 -36.4 4.858 5191.0 0.9271523 0.9007315
## 3159 -47.1 1.405 5099.1 0.8854962 0.9007315
## 3160 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3161 -42.7 4.960 5228.1 0.9229145 0.8586118
## 3162 -36.4 4.860 5191.0 0.9229145 0.8586118
## 3163 -47.1 1.405 5099.1 0.8798814 0.8983567
## 3164 -36.1 4.965 5228.1 0.7666667 0.8983567
## 3165 -42.7 4.968 5228.1 0.8798814 0.8586118
## 3166 -41.8 4.961 5228.1 0.9198606 0.8983567
## 3167 -47.1 1.365 5099.1 0.8798814 0.8586118
## 3168 -42.7 4.963 5228.1 0.7666667 0.8983567
## 3169 -36.4 4.855 5191.0 0.8798814 0.8586118
## 3170 -47.1 1.405 5099.1 0.6868132 0.8586118
## 3171 -42.0 4.076 5195.8 0.8798814 0.8983567
## 3172 -40.8 1.266 5076.2 0.8960396 0.8983567
## 3173 -36.1 4.965 5228.1 0.9074675 0.8586118
## 3174 -36.4 4.858 5191.0 0.8874842 0.8586118
## 3175 -42.0 4.076 5195.8 0.9271523 0.8983567
## 3176 -36.4 4.857 5191.0 0.8851675 0.8983567
## 3177 -47.1 1.405 5099.1 0.8798814 0.8586118
## 3178 -46.2 1.266 5099.1 0.8854962 0.8586118
## 3179 -41.8 4.865 5228.1 0.7666667 0.8983567
## 3180 -42.0 4.076 5195.8 0.8798814 0.8983567
## 3181 -36.4 4.858 5191.0 0.9198606 0.9007315
## 3182 -42.0 4.406 5195.8 0.6868132 0.8586118
## 3183 -47.1 1.405 5099.1 0.9229145 0.8983567
## 3184 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3185 -36.1 4.963 5228.1 0.8798814 0.9007315
## 3186 -36.1 4.965 5228.1 0.8798814 0.8983567
## 3187 -46.2 1.266 5099.1 0.8798814 0.8586118
## 3188 -42.7 4.962 5228.1 0.8960396 0.8586118
## 3189 -41.8 4.960 5228.1 0.8798814 0.8983567
## 3190 -46.2 1.244 5099.1 0.8851675 0.9007315
## 3191 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3192 -36.4 4.857 5191.0 0.6868132 0.8586118
## 3193 -41.8 4.961 5228.1 0.8854962 0.8983567
## 3194 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3195 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3196 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3197 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3198 -46.2 1.299 5099.1 0.9271523 0.8586118
## 3199 -42.0 4.076 5195.8 0.9198606 0.8586118
## 3200 -47.1 1.483 5099.1 0.9229145 0.8983567
## 3201 -47.1 1.365 5099.1 0.9271523 0.8983567
## 3202 -41.8 4.961 5228.1 0.9229145 0.8823529
## 3203 -47.1 1.410 5099.1 0.8798814 0.8586118
## 3204 -36.1 4.962 5228.1 0.8854962 0.8586118
## 3205 -42.7 4.958 5228.1 0.9229145 0.8586118
## 3206 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3207 -42.0 4.191 5195.8 0.8854962 0.8983567
## 3208 -42.7 4.963 5228.1 0.9198606 0.8983567
## 3209 -47.1 1.466 5099.1 0.7666667 0.8983567
## 3210 -42.7 4.962 5228.1 0.9271523 0.9007315
## 3211 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3212 -47.1 1.406 5099.1 0.8798814 0.8586118
## 3213 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3214 -41.8 4.866 5228.1 0.9229145 0.9007315
## 3215 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3216 -36.4 4.860 5191.0 0.9074675 0.8983567
## 3217 -36.1 4.963 5228.1 0.8874842 0.8983567
## 3218 -47.1 1.410 5099.1 0.8854962 0.8983567
## 3219 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3220 -46.2 1.327 5099.1 0.8854962 0.8586118
## 3221 -42.0 4.076 5195.8 0.9074675 0.8983567
## 3222 -36.1 4.968 5228.1 0.8798814 0.8983567
## 3223 -42.7 4.962 5228.1 0.8874842 0.8983567
## 3224 -36.4 4.855 5191.0 0.9229145 0.8983567
## 3225 -42.7 4.962 5228.1 0.7666667 0.8586118
## 3226 -36.1 4.965 5228.1 0.8960396 0.8983567
## 3227 -41.8 4.961 5228.1 0.8854962 0.8983567
## 3228 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3229 -36.1 4.965 5228.1 0.9198606 0.8983567
## 3230 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3231 -46.2 1.266 5099.1 0.8798814 0.8983567
## 3232 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3233 -47.1 1.410 5099.1 0.8854962 0.8983567
## 3234 -36.4 4.857 5191.0 0.9229145 0.8586118
## 3235 -41.8 4.960 5228.1 0.8854962 0.8983567
## 3236 -36.4 4.855 5191.0 0.9229145 0.8983567
## 3237 -42.7 4.960 5228.1 0.8854962 0.8586118
## 3238 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3239 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3240 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3241 -42.7 4.962 5228.1 0.9198606 0.9007315
## 3242 -42.7 4.963 5228.1 0.9229145 0.8983567
## 3243 -36.1 4.963 5228.1 0.8798814 0.9007315
## 3244 -46.2 1.266 5099.1 0.6868132 0.8586118
## 3245 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3246 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3247 -47.1 1.405 5099.1 0.8854962 0.8586118
## 3248 -36.1 4.963 5228.1 0.9198606 0.8983567
## 3249 -42.0 4.076 5195.8 0.8798814 0.8983567
## 3250 -42.7 4.962 5228.1 0.8874842 0.8586118
## 3251 -46.2 1.244 5099.1 0.8854962 0.8983567
## 3252 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3253 -42.7 4.958 5228.1 0.9229145 0.8983567
## 3254 -30.1 0.716 5017.5 0.7666667 0.8983567
## 3255 -41.8 4.958 5228.1 0.9271523 0.9007315
## 3256 -41.8 4.961 5228.1 0.8854962 0.8983567
## 3257 -36.1 4.963 5228.1 0.8798814 0.8983567
## 3258 -29.8 0.771 5017.5 0.7666667 0.8983567
## 3259 -41.8 4.958 5228.1 0.8798814 0.8586118
## 3260 -41.8 4.866 5228.1 0.8854962 0.8983567
## 3261 -36.1 4.963 5228.1 0.8854962 0.8586118
## 3262 -42.0 4.076 5195.8 0.8874842 0.8983567
## 3263 -42.7 4.962 5228.1 0.8960396 0.8983567
## 3264 -46.2 1.244 5099.1 0.8798814 0.9007315
## 3265 -36.1 4.965 5228.1 0.8960396 0.8983567
## 3266 -47.1 1.405 5099.1 0.7666667 0.8983567
## 3267 -29.8 0.797 5017.5 0.8854962 0.8983567
## 3268 -46.2 1.354 5099.1 0.8798814 0.8983567
## 3269 -46.2 1.244 5099.1 0.8798814 0.8983567
## 3270 -47.1 1.410 5099.1 0.8874842 0.8983567
## 3271 -46.2 1.354 5099.1 0.8798814 0.8983567
## 3272 -36.4 4.857 5191.0 0.9229145 0.8586118
## 3273 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3274 -31.4 0.884 5076.2 0.8874842 0.8586118
## 3275 -41.8 4.865 5228.1 0.8798814 0.8586118
## 3276 -36.1 4.963 5228.1 0.8854962 0.9007315
## 3277 -46.2 1.327 5099.1 0.8798814 0.8586118
## 3278 -41.8 4.961 5228.1 0.6868132 0.8983567
## 3279 -42.7 4.962 5228.1 0.8874842 0.8983567
## 3280 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3281 -36.4 4.860 5191.0 0.8874842 0.8983567
## 3282 -42.7 4.962 5228.1 0.9271523 0.8983567
## 3283 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3284 -42.7 4.962 5228.1 0.8854962 0.8983567
## 3285 -36.4 4.858 5191.0 0.8798814 0.8983567
## 3286 -47.1 1.365 5099.1 0.8854962 0.8586118
## 3287 -47.1 1.410 5099.1 0.8854962 0.8983567
## 3288 -36.1 4.970 5228.1 0.8798814 0.8983567
## 3289 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3290 -30.1 0.714 5017.5 0.9198606 0.8586118
## 3291 -31.4 0.884 5076.2 0.6868132 0.8983567
## 3292 -41.8 4.865 5228.1 0.8874842 0.8983567
## 3293 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3294 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3295 -26.9 0.740 5017.5 0.8798814 0.9007315
## 3296 -42.7 4.960 5228.1 0.8874842 0.8586118
## 3297 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3298 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3299 -47.1 1.466 5099.1 0.8798814 0.8983567
## 3300 -36.1 4.962 5228.1 0.8798814 0.8983567
## 3301 -47.1 1.365 5099.1 0.8798814 0.8586118
## 3302 -42.7 4.962 5228.1 0.8854962 0.9007315
## 3303 -41.8 4.865 5228.1 0.8874842 0.8983567
## 3304 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3305 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3306 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3307 -36.4 4.857 5191.0 0.9229145 0.9007315
## 3308 -46.2 1.299 5099.1 0.8854962 0.8586118
## 3309 -46.2 1.266 5099.1 0.9229145 0.8983567
## 3310 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3311 -47.1 1.405 5099.1 0.8798814 0.8983567
## 3312 -42.7 4.963 5228.1 0.8798814 0.8586118
## 3313 -36.1 4.962 5228.1 0.8854962 0.8983567
## 3314 -42.7 4.963 5228.1 0.8854962 0.8983567
## 3315 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3316 -47.1 1.435 5099.1 0.9229145 0.8983567
## 3317 -42.0 4.076 5195.8 0.8854962 0.8586118
## 3318 -33.6 1.048 5076.2 0.6868132 0.8586118
## 3319 -47.1 1.365 5099.1 0.9074675 0.8983567
## 3320 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3321 -36.4 4.858 5191.0 0.9074675 0.9007315
## 3322 -41.8 4.961 5228.1 0.9229145 0.8586118
## 3323 -41.8 4.961 5228.1 0.9229145 0.8586118
## 3324 -36.4 4.857 5191.0 0.8960396 0.9007315
## 3325 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3326 -42.7 4.963 5228.1 0.8798814 0.8983567
## 3327 -47.1 1.410 5099.1 0.9198606 0.8983567
## 3328 -46.2 1.299 5099.1 0.8874842 0.8983567
## 3329 -42.7 4.963 5228.1 0.8798814 0.8983567
## 3330 -39.8 0.711 4991.6 0.8798814 0.8983567
## 3331 -42.0 4.191 5195.8 0.8798814 0.8586118
## 3332 -41.8 4.961 5228.1 0.8854962 0.8983567
## 3333 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3334 -42.7 4.960 5228.1 0.8854962 0.8586118
## 3335 -42.7 4.968 5228.1 0.9074675 0.8983567
## 3336 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3337 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3338 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3339 -36.4 4.855 5191.0 0.8798814 0.8983567
## 3340 -36.4 4.855 5191.0 0.8854962 0.8586118
## 3341 -42.7 4.962 5228.1 0.9074675 0.8983567
## 3342 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3343 -46.2 1.299 5099.1 0.8874842 0.8983567
## 3344 -36.4 4.857 5191.0 0.9074675 0.9007315
## 3345 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3346 -41.8 4.947 5228.1 0.9229145 0.8983567
## 3347 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3348 -42.7 4.960 5228.1 0.9271523 0.8586118
## 3349 -47.1 1.405 5099.1 0.8874842 0.8983567
## 3350 -46.2 1.244 5099.1 0.8798814 0.8586118
## 3351 -47.1 1.405 5099.1 0.8854962 0.8983567
## 3352 -42.7 4.962 5228.1 0.9229145 0.9007315
## 3353 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3354 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3355 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3356 -36.4 4.860 5191.0 0.8798814 0.8983567
## 3357 -36.4 4.857 5191.0 0.8874842 0.9007315
## 3358 -47.1 1.405 5099.1 0.9229145 0.8983567
## 3359 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3360 -42.7 4.962 5228.1 0.8798814 0.9007315
## 3361 -36.4 4.857 5191.0 0.6868132 0.8586118
## 3362 -41.8 4.961 5228.1 0.9074675 0.8983567
## 3363 -42.7 4.961 5228.1 0.9271523 0.8586118
## 3364 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3365 -46.2 1.354 5099.1 0.8854962 0.8586118
## 3366 -47.1 1.365 5099.1 0.8854962 0.9007315
## 3367 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3368 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3369 -36.1 4.968 5228.1 0.8798814 0.8983567
## 3370 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3371 -42.0 4.191 5195.8 0.9229145 0.9007315
## 3372 -36.4 4.857 5191.0 0.9198606 0.8586118
## 3373 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3374 -41.8 4.958 5228.1 0.8798814 0.8983567
## 3375 -42.7 4.962 5228.1 0.8798814 0.8586118
## 3376 -46.2 1.244 5099.1 0.8798814 0.8586118
## 3377 -42.7 4.963 5228.1 0.8854962 0.8586118
## 3378 -36.1 4.964 5228.1 0.8798814 0.8586118
## 3379 -47.1 1.365 5099.1 0.6868132 0.8586118
## 3380 -36.1 4.963 5228.1 0.8854962 0.8983567
## 3381 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3382 -46.2 1.299 5099.1 0.9271523 0.8586118
## 3383 -46.2 1.327 5099.1 0.8798814 0.8983567
## 3384 -42.0 4.191 5195.8 0.8960396 0.8983567
## 3385 -26.9 0.722 5017.5 0.7666667 0.8586118
## 3386 -36.1 4.964 5228.1 0.8854962 0.8586118
## 3387 -47.1 1.410 5099.1 0.9198606 0.9007315
## 3388 -36.4 4.857 5191.0 0.8798814 0.9007315
## 3389 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3390 -36.4 4.860 5191.0 0.8874842 0.9007315
## 3391 -42.7 4.960 5228.1 0.8851675 0.8983567
## 3392 -47.1 1.410 5099.1 0.9229145 0.8983567
## 3393 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3394 -41.8 4.961 5228.1 0.8854962 0.8586118
## 3395 -47.1 1.365 5099.1 0.6868132 0.8586118
## 3396 -36.4 4.860 5191.0 0.8874842 0.8983567
## 3397 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3398 -42.7 4.968 5228.1 0.8798814 0.8586118
## 3399 -36.1 4.966 5228.1 0.8854962 0.8983567
## 3400 -29.8 0.809 5017.5 0.6868132 0.8586118
## 3401 -40.8 1.266 5076.2 0.8874842 0.8983567
## 3402 -47.1 1.410 5099.1 0.8798814 0.8586118
## 3403 -38.3 0.904 4991.6 0.6868132 0.8586118
## 3404 -42.7 4.962 5228.1 0.9271523 0.8983567
## 3405 -46.2 1.354 5099.1 0.9271523 0.8983567
## 3406 -47.1 1.365 5099.1 0.8798814 0.8983567
## 3407 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3408 -34.8 0.639 5008.7 0.8798814 0.8586118
## 3409 -36.4 4.857 5191.0 0.8032787 0.8983567
## 3410 -36.4 4.860 5191.0 0.8960396 0.8983567
## 3411 -41.8 4.865 5228.1 0.8798814 0.9007315
## 3412 -46.2 1.354 5099.1 0.8798814 0.9007315
## 3413 -46.2 1.327 5099.1 0.9229145 0.8586118
## 3414 -42.7 4.962 5228.1 0.7666667 0.9007315
## 3415 -31.4 0.829 5076.2 0.8798814 0.8983567
## 3416 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3417 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3418 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3419 -42.7 4.962 5228.1 0.8874842 0.8983567
## 3420 -42.7 4.960 5228.1 0.8854962 0.8586118
## 3421 -36.1 4.965 5228.1 0.8798814 0.8983567
## 3422 -42.7 4.960 5228.1 0.8874842 0.8586118
## 3423 -41.8 4.865 5228.1 0.9074675 0.9007315
## 3424 -46.2 1.244 5099.1 0.8798814 0.8586118
## 3425 -26.9 0.722 5017.5 0.7666667 0.9007315
## 3426 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3427 -42.7 4.966 5228.1 0.8798814 0.8983567
## 3428 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3429 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3430 -42.7 4.960 5228.1 0.9229145 0.8586118
## 3431 -46.2 1.244 5099.1 0.6868132 0.8586118
## 3432 -42.7 4.958 5228.1 0.9074675 0.8983567
## 3433 -42.0 4.191 5195.8 0.8798814 0.8586118
## 3434 -36.1 4.964 5228.1 0.8798814 0.9007315
## 3435 -36.4 4.857 5191.0 0.8851675 0.8983567
## 3436 -34.8 0.646 5008.7 0.8851675 0.8983567
## 3437 -42.0 4.153 5195.8 0.8798814 0.8983567
## 3438 -42.7 4.963 5228.1 0.9229145 0.8586118
## 3439 -33.6 0.944 5076.2 0.8874842 0.8983567
## 3440 -36.4 4.860 5191.0 0.8854962 0.8983567
## 3441 -46.2 1.354 5099.1 0.8874842 0.8983567
## 3442 -36.4 4.857 5191.0 0.9198606 0.8983567
## 3443 -41.8 4.961 5228.1 0.9271523 0.8586118
## 3444 -33.6 1.072 5076.2 0.8854962 0.8983567
## 3445 -36.4 4.855 5191.0 0.9271523 0.8983567
## 3446 -36.4 4.855 5191.0 0.7666667 0.8983567
## 3447 -41.8 4.960 5228.1 0.9229145 0.8586118
## 3448 -36.1 4.965 5228.1 0.9074675 0.9007315
## 3449 -36.1 4.963 5228.1 0.7666667 0.9007315
## 3450 -36.1 4.968 5228.1 0.8854962 0.8586118
## 3451 -46.2 1.266 5099.1 0.8874842 0.8586118
## 3452 -46.2 1.244 5099.1 0.9198606 0.8586118
## 3453 -29.8 0.766 5017.5 0.9198606 0.8983567
## 3454 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3455 -36.4 4.858 5191.0 0.8854962 0.8586118
## 3456 -42.7 4.963 5228.1 0.8854962 0.8983567
## 3457 -26.9 0.739 5017.5 0.9074675 0.8983567
## 3458 -36.4 4.860 5191.0 0.9229145 0.9007315
## 3459 -40.8 1.281 5076.2 0.7666667 0.8586118
## 3460 -42.7 4.963 5228.1 0.9074675 0.8586118
## 3461 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3462 -36.4 4.857 5191.0 0.8874842 0.8586118
## 3463 -41.8 4.865 5228.1 0.9229145 0.9007315
## 3464 -42.7 4.960 5228.1 0.8798814 0.8586118
## 3465 -42.7 4.960 5228.1 0.8874842 0.8983567
## 3466 -36.1 4.965 5228.1 0.8798814 0.8983567
## 3467 -41.8 4.865 5228.1 0.7666667 0.9007315
## 3468 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3469 -42.7 4.968 5228.1 0.8854962 0.8983567
## 3470 -36.4 4.857 5191.0 0.9271523 0.8983567
## 3471 -31.4 0.883 5076.2 0.8798814 0.8586118
## 3472 -36.1 4.965 5228.1 0.8854962 0.8586118
## 3473 -42.7 4.960 5228.1 0.9229145 0.9007315
## 3474 -36.4 4.858 5191.0 0.9229145 0.8586118
## 3475 -41.8 4.961 5228.1 0.8960396 0.8586118
## 3476 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3477 -46.2 1.266 5099.1 0.9229145 0.8983567
## 3478 -40.3 0.793 4991.6 0.8798814 0.9007315
## 3479 -36.4 4.860 5191.0 0.9271523 0.9007315
## 3480 -34.8 0.646 5008.7 0.8851675 0.8586118
## 3481 -42.7 4.962 5228.1 0.8798814 0.9007315
## 3482 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3483 -42.7 4.962 5228.1 0.9271523 0.8983567
## 3484 -36.4 4.855 5191.0 0.9229145 0.8983567
## 3485 -46.2 1.244 5099.1 0.8960396 0.8983567
## 3486 -41.8 4.866 5228.1 0.8854962 0.8586118
## 3487 -42.0 4.191 5195.8 0.8798814 0.9007315
## 3488 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3489 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3490 -36.4 4.855 5191.0 0.8798814 0.8983567
## 3491 -36.1 4.962 5228.1 0.8874842 0.8983567
## 3492 -36.4 4.857 5191.0 0.9074675 0.8586118
## 3493 -42.7 4.968 5228.1 0.8874842 0.8586118
## 3494 -42.7 4.960 5228.1 0.9074675 0.8983567
## 3495 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3496 -46.2 1.244 5099.1 0.9229145 0.8586118
## 3497 -46.2 1.266 5099.1 0.8798814 0.8983567
## 3498 -36.4 4.857 5191.0 0.8798814 0.9007315
## 3499 -42.7 4.960 5228.1 0.9074675 0.8983567
## 3500 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3501 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3502 -31.4 0.883 5076.2 0.8960396 0.8983567
## 3503 -36.1 4.965 5228.1 0.8854962 0.8586118
## 3504 -47.1 1.405 5099.1 0.8874842 0.8983567
## 3505 -42.7 4.962 5228.1 0.9198606 0.9007315
## 3506 -38.3 0.899 4991.6 0.8854962 0.8983567
## 3507 -36.1 4.962 5228.1 0.8874842 0.8983567
## 3508 -46.2 1.244 5099.1 0.8874842 0.8983567
## 3509 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3510 -46.2 1.244 5099.1 0.8854962 0.8586118
## 3511 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3512 -40.8 1.215 5076.2 0.7666667 0.8983567
## 3513 -42.7 4.960 5228.1 0.8960396 0.8983567
## 3514 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3515 -42.0 4.076 5195.8 0.9229145 0.8983567
## 3516 -36.1 4.965 5228.1 0.8798814 0.9007315
## 3517 -36.1 4.964 5228.1 0.8798814 0.8983567
## 3518 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3519 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3520 -42.7 4.962 5228.1 0.9198606 0.9007315
## 3521 -46.2 1.299 5099.1 0.6868132 0.8586118
## 3522 -46.2 1.299 5099.1 0.9074675 0.8586118
## 3523 -36.4 4.860 5191.0 0.6868132 0.8586118
## 3524 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3525 -36.1 4.965 5228.1 0.9229145 0.8983567
## 3526 -42.7 4.968 5228.1 0.9198606 0.9007315
## 3527 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3528 -36.1 4.965 5228.1 0.9229145 0.8983567
## 3529 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3530 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3531 -36.1 4.968 5228.1 0.8854962 0.8586118
## 3532 -36.1 4.965 5228.1 0.9074675 0.9007315
## 3533 -36.4 4.858 5191.0 0.8854962 0.8586118
## 3534 -42.7 4.960 5228.1 0.9229145 0.8586118
## 3535 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3536 -42.0 4.076 5195.8 0.9198606 0.8983567
## 3537 -36.4 4.857 5191.0 0.9198606 0.8983567
## 3538 -42.7 4.962 5228.1 0.8798814 0.8586118
## 3539 -41.8 4.961 5228.1 0.8854962 0.8983567
## 3540 -31.4 0.883 5076.2 0.8851675 0.8983567
## 3541 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3542 -36.4 4.855 5191.0 0.9229145 0.8983567
## 3543 -36.1 4.964 5228.1 0.9229145 0.8983567
## 3544 -42.7 4.963 5228.1 0.8874842 0.9007315
## 3545 -42.0 4.191 5195.8 0.8798814 0.9007315
## 3546 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3547 -47.1 1.405 5099.1 0.8854962 0.8983567
## 3548 -41.8 4.947 5228.1 0.8854962 0.8586118
## 3549 -36.1 4.962 5228.1 0.8854962 0.9007315
## 3550 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3551 -42.7 4.960 5228.1 0.8798814 0.8586118
## 3552 -46.2 1.299 5099.1 0.8854962 0.8983567
## 3553 -36.1 4.965 5228.1 0.8798814 0.8586118
## 3554 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3555 -36.1 4.964 5228.1 0.8798814 0.8586118
## 3556 -42.7 4.963 5228.1 0.9198606 0.8983567
## 3557 -36.4 4.858 5191.0 0.8874842 0.8586118
## 3558 -41.8 4.866 5228.1 0.9271523 0.8983567
## 3559 -36.1 4.962 5228.1 0.8798814 0.8983567
## 3560 -46.2 1.354 5099.1 0.8798814 0.8586118
## 3561 -31.4 0.873 5076.2 0.9229145 0.8586118
## 3562 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3563 -36.4 4.855 5191.0 0.8798814 0.8983567
## 3564 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3565 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3566 -36.1 4.962 5228.1 0.8854962 0.8983567
## 3567 -26.9 0.739 5017.5 0.6868132 0.8586118
## 3568 -42.7 4.968 5228.1 0.8854962 0.8983567
## 3569 -36.4 4.858 5191.0 0.9074675 0.8983567
## 3570 -42.7 4.962 5228.1 0.8874842 0.8983567
## 3571 -42.0 4.076 5195.8 0.8854962 0.8586118
## 3572 -47.1 1.405 5099.1 0.8874842 0.8983567
## 3573 -42.7 4.962 5228.1 0.9198606 0.8983567
## 3574 -36.4 4.857 5191.0 0.9198606 0.8983567
## 3575 -36.4 4.858 5191.0 0.8874842 0.8983567
## 3576 -42.7 4.962 5228.1 0.8798814 0.9007315
## 3577 -46.2 1.327 5099.1 0.8854962 0.8586118
## 3578 -36.4 4.857 5191.0 0.8032787 0.8983567
## 3579 -30.1 0.714 5017.5 0.8854962 0.8586118
## 3580 -42.7 4.961 5228.1 0.8798814 0.8586118
## 3581 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3582 -42.7 4.960 5228.1 0.8874842 0.8983567
## 3583 -46.2 1.354 5099.1 0.8798814 0.8983567
## 3584 -42.7 4.960 5228.1 0.8798814 0.8586118
## 3585 -42.7 4.968 5228.1 0.9074675 0.8983567
## 3586 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3587 -36.1 4.963 5228.1 0.8798814 0.8983567
## 3588 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3589 -41.8 4.866 5228.1 0.9271523 0.8586118
## 3590 -42.7 4.962 5228.1 0.8798814 0.8586118
## 3591 -42.7 4.960 5228.1 0.8874842 0.8983567
## 3592 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3593 -42.0 4.076 5195.8 0.8851675 0.8983567
## 3594 -36.1 4.964 5228.1 0.8874842 0.8983567
## 3595 -42.7 4.963 5228.1 0.8798814 0.8586118
## 3596 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3597 -41.8 4.960 5228.1 0.8874842 0.8586118
## 3598 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3599 -46.2 1.299 5099.1 0.9229145 0.8586118
## 3600 -46.2 1.244 5099.1 0.9229145 0.9007315
## 3601 -42.7 4.961 5228.1 0.8854962 0.9007315
## 3602 -38.3 0.904 4991.6 0.8798814 0.9007315
## 3603 -46.2 1.244 5099.1 0.8798814 0.9007315
## 3604 -36.1 4.963 5228.1 0.8851675 0.9007315
## 3605 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3606 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3607 -42.0 4.191 5195.8 0.8854962 0.9007315
## 3608 -42.7 4.960 5228.1 0.9229145 0.8586118
## 3609 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3610 -36.1 4.962 5228.1 0.8798814 0.8983567
## 3611 -46.2 1.299 5099.1 0.8874842 0.9007315
## 3612 -47.1 1.405 5099.1 0.9229145 0.8983567
## 3613 -46.2 1.327 5099.1 0.8854962 0.8983567
## 3614 -46.2 1.299 5099.1 0.9229145 0.8586118
## 3615 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3616 -42.7 4.958 5228.1 0.8960396 0.9007315
## 3617 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3618 -36.1 4.963 5228.1 0.8851675 0.8983567
## 3619 -36.1 4.963 5228.1 0.8874842 0.8983567
## 3620 -36.1 4.970 5228.1 0.9229145 0.8983567
## 3621 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3622 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3623 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3624 -42.7 4.960 5228.1 0.8798814 0.8586118
## 3625 -42.7 4.968 5228.1 0.8851675 0.8983567
## 3626 -42.7 4.963 5228.1 0.9229145 0.8586118
## 3627 -36.1 4.968 5228.1 0.8798814 0.8983567
## 3628 -36.4 4.857 5191.0 0.8960396 0.8983567
## 3629 -42.7 4.968 5228.1 0.9198606 0.8983567
## 3630 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3631 -36.1 4.963 5228.1 0.8854962 0.8983567
## 3632 -36.1 4.963 5228.1 0.8798814 0.8586118
## 3633 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3634 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3635 -47.1 1.405 5099.1 0.7666667 0.8983567
## 3636 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3637 -42.0 4.191 5195.8 0.8854962 0.8983567
## 3638 -42.0 4.076 5195.8 0.8798814 0.8983567
## 3639 -36.4 4.857 5191.0 0.7666667 0.9007315
## 3640 -41.8 4.961 5228.1 0.8851675 0.8983567
## 3641 -36.1 4.963 5228.1 0.9229145 0.8983567
## 3642 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3643 -46.2 1.299 5099.1 0.9074675 0.8586118
## 3644 -46.2 1.291 5099.1 0.9271523 0.8983567
## 3645 -40.8 1.266 5076.2 0.8854962 0.8586118
## 3646 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3647 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3648 -42.0 4.191 5195.8 0.9074675 0.8983567
## 3649 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3650 -42.7 4.960 5228.1 0.8798814 0.8586118
## 3651 -36.1 4.965 5228.1 0.8854962 0.8586118
## 3652 -42.7 4.968 5228.1 0.8854962 0.8983567
## 3653 -36.1 4.962 5228.1 0.8798814 0.8983567
## 3654 -36.4 4.857 5191.0 0.9074675 0.9007315
## 3655 -47.1 1.466 5099.1 0.8854962 0.8983567
## 3656 -41.8 4.955 5228.1 0.8798814 0.8983567
## 3657 -42.7 4.963 5228.1 0.9198606 0.8983567
## 3658 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3659 -42.0 4.191 5195.8 0.9074675 0.8983567
## 3660 -46.2 1.244 5099.1 0.8798814 0.8586118
## 3661 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3662 -36.1 4.963 5228.1 0.7666667 0.8983567
## 3663 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3664 -46.2 1.354 5099.1 0.6868132 0.8586118
## 3665 -36.4 4.857 5191.0 0.8874842 0.8586118
## 3666 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3667 -36.4 4.857 5191.0 0.9229145 0.9007315
## 3668 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3669 -36.4 4.860 5191.0 0.8851675 0.8983567
## 3670 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3671 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3672 -42.7 4.960 5228.1 0.9074675 0.8586118
## 3673 -42.7 4.966 5228.1 0.9229145 0.9007315
## 3674 -41.8 4.961 5228.1 0.8874842 0.8586118
## 3675 -41.8 4.865 5228.1 0.8874842 0.8983567
## 3676 -41.8 4.961 5228.1 0.9074675 0.8983567
## 3677 -36.1 4.963 5228.1 0.8854962 0.8983567
## 3678 -36.4 4.855 5191.0 0.9229145 0.8983567
## 3679 -42.0 4.191 5195.8 0.8851675 0.8983567
## 3680 -36.4 4.860 5191.0 0.8874842 0.9007315
## 3681 -39.8 0.754 4991.6 0.9198606 0.8983567
## 3682 -42.0 4.153 5195.8 0.9229145 0.8983567
## 3683 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3684 -46.2 1.354 5099.1 0.9074675 0.8983567
## 3685 -36.1 4.970 5228.1 0.8854962 0.9007315
## 3686 -42.7 4.960 5228.1 0.8851675 0.9007315
## 3687 -46.2 1.354 5099.1 0.8798814 0.8983567
## 3688 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3689 -42.7 4.961 5228.1 0.8874842 0.8983567
## 3690 -26.9 0.739 5017.5 0.9074675 0.8983567
## 3691 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3692 -36.1 4.964 5228.1 0.8798814 0.8983567
## 3693 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3694 -47.1 1.405 5099.1 0.9229145 0.8983567
## 3695 -41.8 4.866 5228.1 0.7666667 0.8983567
## 3696 -30.1 0.714 5017.5 0.9198606 0.8983567
## 3697 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3698 -50.0 1.811 5099.1 0.9074675 0.8983567
## 3699 -36.1 4.965 5228.1 0.8854962 0.8586118
## 3700 -42.7 4.958 5228.1 0.9074675 0.8586118
## 3701 -41.8 4.961 5228.1 0.8854962 0.8983567
## 3702 -36.4 4.858 5191.0 0.8874842 0.8983567
## 3703 -36.1 4.968 5228.1 0.8854962 0.9007315
## 3704 -42.0 4.076 5195.8 0.8798814 0.8586118
## 3705 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3706 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3707 -42.0 4.191 5195.8 0.8874842 0.8983567
## 3708 -42.0 4.191 5195.8 0.8798814 0.9007315
## 3709 -31.4 0.873 5076.2 0.7666667 0.8983567
## 3710 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3711 -42.0 4.076 5195.8 0.9074675 0.8586118
## 3712 -46.2 1.244 5099.1 0.9229145 0.8586118
## 3713 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3714 -42.0 4.191 5195.8 0.9074675 0.8983567
## 3715 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3716 -31.4 0.851 5076.2 0.6868132 0.8586118
## 3717 -42.7 4.960 5228.1 0.9229145 0.8586118
## 3718 -40.8 1.266 5076.2 0.8798814 0.8983567
## 3719 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3720 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3721 -42.7 4.962 5228.1 0.8854962 0.8586118
## 3722 -46.2 1.264 5099.1 0.9229145 0.8586118
## 3723 -41.8 4.955 5228.1 0.8798814 0.8983567
## 3724 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3725 -47.1 1.405 5099.1 0.9229145 0.8983567
## 3726 -46.2 1.266 5099.1 0.9229145 0.8586118
## 3727 -36.4 4.857 5191.0 0.8854962 0.8586118
## 3728 -41.8 4.866 5228.1 0.8032787 0.8586118
## 3729 -40.0 0.699 5008.7 0.8854962 0.8983567
## 3730 -46.2 1.244 5099.1 0.8798814 0.8586118
## 3731 -36.1 4.965 5228.1 0.8798814 0.8983567
## 3732 -42.7 4.962 5228.1 0.8854962 0.8586118
## 3733 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3734 -40.8 1.260 5076.2 0.8851675 0.8586118
## 3735 -36.4 4.856 5191.0 0.8854962 0.8586118
## 3736 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3737 -46.2 1.354 5099.1 0.9229145 0.8823529
## 3738 -36.1 4.968 5228.1 0.8854962 0.8983567
## 3739 -36.4 4.855 5191.0 0.9198606 0.8586118
## 3740 -36.1 4.964 5228.1 0.8854962 0.8586118
## 3741 -46.2 1.244 5099.1 0.8798814 0.9007315
## 3742 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3743 -41.8 4.865 5228.1 0.9074675 0.8983567
## 3744 -46.2 1.299 5099.1 0.8854962 0.8983567
## 3745 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3746 -36.4 4.857 5191.0 0.8854962 0.8586118
## 3747 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3748 -41.8 4.961 5228.1 0.7666667 0.9007315
## 3749 -41.8 4.961 5228.1 0.9074675 0.8983567
## 3750 -36.1 4.965 5228.1 0.8960396 0.8983567
## 3751 -42.7 4.962 5228.1 0.8851675 0.8983567
## 3752 -41.8 4.961 5228.1 0.8851675 0.8983567
## 3753 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3754 -46.2 1.354 5099.1 0.9271523 0.8983567
## 3755 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3756 -42.7 4.960 5228.1 0.9198606 0.8586118
## 3757 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3758 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3759 -46.2 1.299 5099.1 0.8798814 0.9007315
## 3760 -42.7 4.960 5228.1 0.8798814 0.9007315
## 3761 -36.1 4.962 5228.1 0.9074675 0.8586118
## 3762 -42.7 4.962 5228.1 0.8798814 0.8586118
## 3763 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3764 -42.7 4.968 5228.1 0.8854962 0.8983567
## 3765 -36.4 4.857 5191.0 0.8854962 0.9007315
## 3766 -40.3 0.876 4991.6 0.9229145 0.8983567
## 3767 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3768 -34.6 0.645 5008.7 0.7666667 0.8983567
## 3769 -36.1 4.962 5228.1 0.8798814 0.9007315
## 3770 -36.4 4.858 5191.0 0.8798814 0.8983567
## 3771 -41.8 4.864 5228.1 0.6868132 0.8586118
## 3772 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3773 -30.1 0.722 5017.5 0.8798814 0.8983567
## 3774 -42.7 4.966 5228.1 0.9074675 0.8586118
## 3775 -36.1 4.963 5228.1 0.8854962 0.8983567
## 3776 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3777 -47.1 1.405 5099.1 0.8798814 0.9007315
## 3778 -31.4 0.861 5076.2 0.6868132 0.8586118
## 3779 -46.2 1.244 5099.1 0.9074675 0.8983567
## 3780 -36.4 4.858 5191.0 0.8798814 0.9007315
## 3781 -36.4 4.857 5191.0 0.8874842 0.9007315
## 3782 -42.0 4.076 5195.8 0.9074675 0.9007315
## 3783 -46.2 1.299 5099.1 0.8798814 0.8586118
## 3784 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3785 -42.7 4.968 5228.1 0.8874842 0.8983567
## 3786 -40.8 1.266 5076.2 0.8854962 0.8983567
## 3787 -36.4 4.860 5191.0 0.8874842 0.8586118
## 3788 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3789 -42.7 4.962 5228.1 0.9198606 0.8983567
## 3790 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3791 -34.8 0.652 5008.7 0.8798814 0.8586118
## 3792 -36.4 4.860 5191.0 0.8798814 0.8586118
## 3793 -41.8 4.961 5228.1 0.8798814 0.8983567
## 3794 -46.2 1.327 5099.1 0.8798814 0.8983567
## 3795 -42.0 4.191 5195.8 0.8851675 0.8983567
## 3796 -42.7 4.963 5228.1 0.9229145 0.8983567
## 3797 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3798 -40.8 1.215 5076.2 0.8854962 0.8586118
## 3799 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3800 -41.8 4.865 5228.1 0.9198606 0.8983567
## 3801 -42.7 4.962 5228.1 0.8798814 0.8586118
## 3802 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3803 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3804 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3805 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3806 -36.4 4.857 5191.0 0.8960396 0.8983567
## 3807 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3808 -41.8 4.960 5228.1 0.8798814 0.8983567
## 3809 -46.2 1.244 5099.1 0.8854962 0.9007315
## 3810 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3811 -36.4 4.857 5191.0 0.8854962 0.9007315
## 3812 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3813 -39.8 0.754 4991.6 0.9074675 0.9007315
## 3814 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3815 -46.2 1.354 5099.1 0.9229145 0.8983567
## 3816 -42.7 4.963 5228.1 0.9229145 0.8586118
## 3817 -36.4 4.857 5191.0 0.9271523 0.8983567
## 3818 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3819 -42.0 4.733 5195.8 0.8798814 0.8983567
## 3820 -42.7 4.960 5228.1 0.8874842 0.8983567
## 3821 -42.0 4.076 5195.8 0.9229145 0.8983567
## 3822 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3823 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3824 -42.0 4.191 5195.8 0.8854962 0.8983567
## 3825 -46.2 1.244 5099.1 0.9229145 0.8586118
## 3826 -36.4 4.857 5191.0 0.8798814 0.9007315
## 3827 -46.2 1.244 5099.1 0.6868132 0.8586118
## 3828 -41.8 4.865 5228.1 0.9271523 0.8586118
## 3829 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3830 -26.9 0.743 5017.5 0.7666667 0.8983567
## 3831 -40.4 4.912 5195.8 0.8798814 0.8586118
## 3832 -36.4 4.858 5191.0 0.8874842 0.8983567
## 3833 -50.0 1.560 5099.1 0.8798814 0.8983567
## 3834 -36.4 4.860 5191.0 0.8874842 0.8586118
## 3835 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3836 -36.4 4.858 5191.0 0.8798814 0.8586118
## 3837 -36.4 4.857 5191.0 0.9198606 0.8983567
## 3838 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3839 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3840 -36.1 4.964 5228.1 0.8960396 0.9007315
## 3841 -36.4 4.855 5191.0 0.8851675 0.8983567
## 3842 -46.2 1.264 5099.1 0.8798814 0.8586118
## 3843 -42.7 4.958 5228.1 0.9198606 0.8823529
## 3844 -42.7 4.962 5228.1 0.9074675 0.8983567
## 3845 -41.8 4.961 5228.1 0.8798814 0.8586118
## 3846 -36.4 4.857 5191.0 0.8854962 0.8586118
## 3847 -36.1 4.970 5228.1 0.8874842 0.8983567
## 3848 -30.1 0.722 5017.5 0.8960396 0.8983567
## 3849 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3850 -42.7 4.962 5228.1 0.8798814 0.8586118
## 3851 -36.4 4.857 5191.0 0.8798814 0.9007315
## 3852 -36.1 4.963 5228.1 0.9229145 0.8983567
## 3853 -42.7 4.962 5228.1 0.8854962 0.8983567
## 3854 -36.1 4.968 5228.1 0.9198606 0.8983567
## 3855 -36.4 4.858 5191.0 0.9229145 0.8586118
## 3856 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3857 -42.7 4.962 5228.1 0.6868132 0.8586118
## 3858 -46.2 1.354 5099.1 0.9229145 0.8983567
## 3859 -42.7 4.962 5228.1 0.8854962 0.9007315
## 3860 -42.7 4.960 5228.1 0.8854962 0.8586118
## 3861 -41.8 4.961 5228.1 0.9229145 0.8586118
## 3862 -36.4 4.857 5191.0 0.9229145 0.8586118
## 3863 -42.7 4.968 5228.1 0.8854962 0.8983567
## 3864 -36.4 4.855 5191.0 0.8874842 0.9007315
## 3865 -36.1 4.963 5228.1 0.8798814 0.8983567
## 3866 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3867 -33.6 0.899 5076.2 0.8851675 0.8983567
## 3868 -46.2 1.344 5099.1 0.8874842 0.8983567
## 3869 -36.4 4.857 5191.0 0.8798814 0.9007315
## 3870 -41.8 4.960 5228.1 0.8798814 0.8586118
## 3871 -42.7 4.963 5228.1 0.9229145 0.8983567
## 3872 -41.8 4.961 5228.1 0.8798814 0.8586118
## 3873 -42.7 4.961 5228.1 0.8798814 0.9007315
## 3874 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3875 -42.7 4.960 5228.1 0.8854962 0.8586118
## 3876 -40.8 1.260 5076.2 0.8798814 0.8586118
## 3877 -41.8 4.960 5228.1 0.8851675 0.9007315
## 3878 -46.2 1.291 5099.1 0.8798814 0.8983567
## 3879 -36.4 4.855 5191.0 0.9229145 0.8983567
## 3880 -46.2 1.266 5099.1 0.8798814 0.8983567
## 3881 -47.1 1.405 5099.1 0.9229145 0.9007315
## 3882 -36.4 4.858 5191.0 0.8874842 0.8586118
## 3883 -42.0 4.191 5195.8 0.8798814 0.9007315
## 3884 -39.8 0.742 4991.6 0.8798814 0.8586118
## 3885 -42.7 4.961 5228.1 0.8874842 0.8983567
## 3886 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3887 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3888 -36.4 4.857 5191.0 0.9074675 0.8983567
## 3889 -42.7 4.962 5228.1 0.8854962 0.8586118
## 3890 -46.2 1.244 5099.1 0.6868132 0.8586118
## 3891 -36.1 4.962 5228.1 0.8854962 0.8586118
## 3892 -46.2 1.291 5099.1 0.8874842 0.8586118
## 3893 -41.8 4.960 5228.1 0.8798814 0.8983567
## 3894 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3895 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3896 -49.5 1.000 4963.6 0.8798814 0.8983567
## 3897 -36.4 4.857 5191.0 0.9074675 0.8983567
## 3898 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3899 -46.2 1.354 5099.1 0.9229145 0.8983567
## 3900 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3901 -42.7 4.963 5228.1 0.8798814 0.8586118
## 3902 -41.8 4.958 5228.1 0.8854962 0.8983567
## 3903 -46.2 1.266 5099.1 0.8798814 0.8586118
## 3904 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3905 -42.7 4.962 5228.1 0.6868132 0.8586118
## 3906 -42.0 4.191 5195.8 0.9198606 0.9007315
## 3907 -31.4 0.883 5076.2 0.7666667 0.8983567
## 3908 -46.2 1.354 5099.1 0.8874842 0.8983567
## 3909 -42.7 4.960 5228.1 0.9271523 0.8983567
## 3910 -36.1 4.963 5228.1 0.8798814 0.8983567
## 3911 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3912 -46.2 1.264 5099.1 0.8798814 0.8586118
## 3913 -26.9 0.739 5017.5 0.9229145 0.8983567
## 3914 -42.7 4.966 5228.1 0.9229145 0.8983567
## 3915 -49.5 0.953 4963.6 0.8798814 0.8983567
## 3916 -42.0 4.191 5195.8 0.8798814 0.9007315
## 3917 -36.4 4.858 5191.0 0.8798814 0.8983567
## 3918 -40.0 0.697 5008.7 0.7666667 0.9007315
## 3919 -42.7 4.968 5228.1 0.9271523 0.8983567
## 3920 -50.0 1.811 5099.1 0.6868132 0.8586118
## 3921 -40.8 1.262 5076.2 0.8032787 0.8586118
## 3922 -41.8 4.865 5228.1 0.8851675 0.8586118
## 3923 -26.9 0.739 5017.5 0.7666667 0.8983567
## 3924 -36.4 4.860 5191.0 0.8854962 0.8586118
## 3925 -47.1 1.466 5099.1 0.9229145 0.8983567
## 3926 -41.8 4.958 5228.1 0.8854962 0.8983567
## 3927 -36.4 4.857 5191.0 0.8798814 0.9007315
## 3928 -36.1 4.970 5228.1 0.8798814 0.8983567
## 3929 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3930 -41.8 4.961 5228.1 0.9271523 0.8983567
## 3931 -42.7 4.966 5228.1 0.9271523 0.8983567
## 3932 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3933 -31.4 0.873 5076.2 0.9074675 0.8983567
## 3934 -36.1 4.968 5228.1 0.8854962 0.8983567
## 3935 -26.9 0.731 5017.5 0.8798814 0.8586118
## 3936 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3937 -36.1 4.963 5228.1 0.8854962 0.8586118
## 3938 -36.1 4.968 5228.1 0.8854962 0.9007315
## 3939 -41.8 4.960 5228.1 0.8854962 0.8586118
## 3940 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3941 -34.8 0.652 5008.7 0.9198606 0.8586118
## 3942 -37.5 0.879 4963.6 0.8854962 0.8983567
## 3943 -41.8 4.958 5228.1 0.9229145 0.8983567
## 3944 -36.4 4.858 5191.0 0.8798814 0.8983567
## 3945 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3946 -46.2 1.266 5099.1 0.8798814 0.9007315
## 3947 -36.1 4.964 5228.1 0.8798814 0.8983567
## 3948 -42.7 4.960 5228.1 0.9229145 0.8586118
## 3949 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3950 -46.2 1.299 5099.1 0.8854962 0.8983567
## 3951 -42.7 4.962 5228.1 0.8874842 0.8983567
## 3952 -42.7 4.963 5228.1 0.9229145 0.8586118
## 3953 -42.7 4.962 5228.1 0.8854962 0.9007315
## 3954 -41.8 4.960 5228.1 0.8854962 0.8983567
## 3955 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3956 -42.7 4.963 5228.1 0.8854962 0.8983567
## 3957 -42.7 4.968 5228.1 0.8854962 0.9007315
## 3958 -47.1 1.405 5099.1 0.9229145 0.8983567
## 3959 -36.1 4.968 5228.1 0.8798814 0.8983567
## 3960 -36.4 4.857 5191.0 0.8874842 0.8586118
## 3961 -46.2 1.244 5099.1 0.8960396 0.8983567
## 3962 -26.9 0.740 5017.5 0.9229145 0.8983567
## 3963 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3964 -36.1 4.963 5228.1 0.8798814 0.8586118
## 3965 -50.0 1.811 5099.1 0.6868132 0.8586118
## 3966 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3967 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3968 -36.4 4.858 5191.0 0.9229145 0.9007315
## 3969 -42.7 4.962 5228.1 0.8960396 0.8983567
## 3970 -42.0 4.191 5195.8 0.8798814 0.8586118
## 3971 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3972 -36.4 4.860 5191.0 0.9074675 0.9007315
## 3973 -46.2 1.244 5099.1 0.9229145 0.8586118
## 3974 -42.7 4.958 5228.1 0.8798814 0.8983567
## 3975 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3976 -41.8 4.960 5228.1 0.9271523 0.8983567
## 3977 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3978 -31.4 0.861 5076.2 0.8798814 0.8586118
## 3979 -41.8 4.961 5228.1 0.9229145 0.8586118
## 3980 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3981 -42.7 4.961 5228.1 0.9271523 0.8983567
## 3982 -36.1 4.966 5228.1 0.8798814 0.8983567
## 3983 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3984 -42.0 4.076 5195.8 0.8798814 0.8586118
## 3985 -46.2 1.291 5099.1 0.9229145 0.8983567
## 3986 -46.2 1.266 5099.1 0.8874842 0.9007315
## 3987 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3988 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3989 -46.2 1.299 5099.1 0.8798814 0.8586118
## 3990 -36.4 4.858 5191.0 0.9229145 0.8586118
## 3991 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3992 -36.1 4.968 5228.1 0.8854962 0.8586118
## 3993 -42.7 4.962 5228.1 0.9074675 0.8983567
## 3994 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3995 -42.7 4.961 5228.1 0.8798814 0.8586118
## 3996 -41.8 4.961 5228.1 0.8798814 0.8586118
## 3997 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3998 -36.4 4.857 5191.0 0.9271523 0.9007315
## 3999 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4000 -36.1 4.968 5228.1 0.8798814 0.8586118
## 4001 -36.4 4.858 5191.0 0.9198606 0.8983567
## 4002 -36.4 4.857 5191.0 0.8798814 0.8983567
## 4003 -46.2 1.299 5099.1 0.8798814 0.9007315
## 4004 -36.4 4.858 5191.0 0.8798814 0.8586118
## 4005 -47.1 1.405 5099.1 0.8854962 0.8586118
## 4006 -36.1 4.964 5228.1 0.9229145 0.8983567
## 4007 -41.8 4.961 5228.1 0.9198606 0.8983567
## 4008 -36.4 4.860 5191.0 0.8032787 0.8983567
## 4009 -42.7 4.962 5228.1 0.9229145 0.8586118
## 4010 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4011 -36.1 4.962 5228.1 0.8798814 0.8586118
## 4012 -40.0 0.701 5008.7 0.6868132 0.8586118
## 4013 -42.7 4.968 5228.1 0.8874842 0.8586118
## 4014 -36.4 4.857 5191.0 0.8854962 0.8983567
## 4015 -36.1 4.968 5228.1 0.9198606 0.8983567
## 4016 -46.2 1.299 5099.1 0.9229145 0.8983567
## 4017 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4018 -46.2 1.327 5099.1 0.9229145 0.8586118
## 4019 -42.0 4.191 5195.8 0.9229145 0.8586118
## 4020 -36.4 4.858 5191.0 0.9229145 0.8983567
## 4021 -46.2 1.327 5099.1 0.8874842 0.8983567
## 4022 -46.2 1.291 5099.1 0.8854962 0.8586118
## 4023 -50.0 1.538 5099.1 0.9074675 0.8983567
## 4024 -42.7 4.962 5228.1 0.8032787 0.8983567
## 4025 -46.2 1.299 5099.1 0.8854962 0.8586118
## 4026 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4027 -26.9 0.722 5017.5 0.8854962 0.8983567
## 4028 -41.8 4.961 5228.1 0.8798814 0.8983567
## 4029 -42.0 4.191 5195.8 0.8874842 0.8586118
## 4030 -36.1 4.965 5228.1 0.9229145 0.8983567
## 4031 -30.1 0.715 5017.5 0.8960396 0.8586118
## 4032 -36.4 4.858 5191.0 0.9229145 0.8983567
## 4033 -37.5 0.879 4963.6 0.8798814 0.8586118
## 4034 -47.1 1.365 5099.1 0.8798814 0.8586118
## 4035 -47.1 1.365 5099.1 0.9271523 0.8983567
## 4036 -36.4 4.860 5191.0 0.8854962 0.8983567
## 4037 -36.1 4.964 5228.1 0.8854962 0.8586118
## 4038 -36.4 4.860 5191.0 0.9198606 0.8983567
## 4039 -36.1 4.968 5228.1 0.7666667 0.8983567
## 4040 -41.8 4.866 5228.1 0.8874842 0.8983567
## 4041 -47.1 1.410 5099.1 0.8798814 0.8586118
## 4042 -46.2 1.291 5099.1 0.9229145 0.8983567
## 4043 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4044 -34.8 0.635 5008.7 0.7666667 0.8983567
## 4045 -50.0 1.538 5099.1 0.6868132 0.8586118
## 4046 -47.1 1.365 5099.1 0.9229145 0.8983567
## 4047 -41.8 4.866 5228.1 0.8851675 0.8983567
## 4048 -42.0 4.076 5195.8 0.9229145 0.8586118
## 4049 -47.1 1.410 5099.1 0.8798814 0.8983567
## 4050 -29.8 0.819 5017.5 0.9074675 0.8586118
## 4051 -41.8 4.866 5228.1 0.8854962 0.8586118
## 4052 -42.7 4.958 5228.1 0.9074675 0.8586118
## 4053 -36.1 4.962 5228.1 0.8798814 0.9007315
## 4054 -36.1 4.963 5228.1 0.8874842 0.8983567
## 4055 -46.2 1.327 5099.1 0.9229145 0.9007315
## 4056 -36.4 4.860 5191.0 0.9198606 0.9007315
## 4057 -47.1 1.365 5099.1 0.7666667 0.8983567
## 4058 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4059 -36.1 4.968 5228.1 0.9198606 0.8983567
## 4060 -36.4 4.857 5191.0 0.8851675 0.8586118
## 4061 -36.4 4.860 5191.0 0.9229145 0.8586118
## 4062 -47.1 1.410 5099.1 0.9229145 0.9007315
## 4063 -46.2 1.266 5099.1 0.8874842 0.8586118
## 4064 -41.8 4.958 5228.1 0.9074675 0.8586118
## 4065 -46.2 1.266 5099.1 0.8798814 0.8586118
## 4066 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4067 -47.1 1.365 5099.1 0.6868132 0.8586118
## 4068 -47.1 1.483 5099.1 0.9229145 0.8586118
## 4069 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4070 -42.0 4.076 5195.8 0.8798814 0.8586118
## 4071 -41.8 4.864 5228.1 0.8851675 0.9007315
## 4072 -42.0 4.076 5195.8 0.8874842 0.8983567
## 4073 -47.1 1.365 5099.1 0.8798814 0.8983567
## 4074 -42.0 4.076 5195.8 0.9229145 0.9007315
## 4075 -26.9 0.722 5017.5 0.7666667 0.8983567
## 4076 -36.4 4.860 5191.0 0.9271523 0.8983567
## 4077 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4078 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4079 -47.1 1.483 5099.1 0.8798814 0.8983567
## 4080 -46.2 1.266 5099.1 0.9074675 0.8586118
## 4081 -36.4 4.860 5191.0 0.9074675 0.9007315
## 4082 -36.4 4.859 5191.0 0.8798814 0.8586118
## 4083 -36.4 4.855 5191.0 0.8798814 0.8586118
## 4084 -42.7 4.963 5228.1 0.9229145 0.9007315
## 4085 -36.1 4.962 5228.1 0.8874842 0.8983567
## 4086 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4087 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4088 -41.8 4.866 5228.1 0.8851675 0.8983567
## 4089 -47.1 1.410 5099.1 0.9229145 0.9007315
## 4090 -42.7 4.962 5228.1 0.8854962 0.9007315
## 4091 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4092 -36.4 4.860 5191.0 0.9229145 0.8586118
## 4093 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4094 -36.4 4.855 5191.0 0.8874842 0.8586118
## 4095 -41.8 4.864 5228.1 0.9229145 0.9007315
## 4096 -47.1 1.410 5099.1 0.9271523 0.8983567
## 4097 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4098 -36.4 4.860 5191.0 0.9229145 0.9007315
## 4099 -34.6 0.644 5008.7 0.7666667 0.9007315
## 4100 -36.4 4.856 5191.0 0.8798814 0.8586118
## 4101 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4102 -41.8 4.962 5228.1 0.9229145 0.9007315
## 4103 -42.7 4.963 5228.1 0.8854962 0.8586118
## 4104 -47.1 1.365 5099.1 0.9229145 0.8586118
## 4105 -36.4 4.860 5191.0 0.9074675 0.8983567
## 4106 -41.8 4.864 5228.1 0.8798814 0.8586118
## 4107 -42.7 4.968 5228.1 0.8798814 0.9007315
## 4108 -41.8 4.866 5228.1 0.9229145 0.8983567
## 4109 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4110 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4111 -36.4 4.856 5191.0 0.9229145 0.9007315
## 4112 -42.0 4.076 5195.8 0.8798814 0.8586118
## 4113 -36.4 4.855 5191.0 0.9074675 0.8983567
## 4114 -46.2 1.266 5099.1 0.9074675 0.8983567
## 4115 -34.6 0.644 5008.7 0.7666667 0.8983567
## 4116 -36.1 4.968 5228.1 0.8960396 0.8983567
## 4117 -42.7 4.968 5228.1 0.8798814 0.8983567
## 4118 -46.2 1.291 5099.1 0.9229145 0.8983567
## 4119 -36.4 4.855 5191.0 0.8851675 0.8983567
## 4120 -42.7 4.962 5228.1 0.8874842 0.8586118
## 4121 -46.2 1.266 5099.1 0.9198606 0.8586118
## 4122 -36.4 4.857 5191.0 0.9271523 0.8983567
## 4123 -46.2 1.327 5099.1 0.9074675 0.8983567
## 4124 -47.1 1.410 5099.1 0.8798814 0.9007315
## 4125 -36.4 4.855 5191.0 0.8854962 0.8983567
## 4126 -47.1 1.410 5099.1 0.9229145 0.8983567
## 4127 -46.2 1.266 5099.1 0.8874842 0.8586118
## 4128 -46.2 1.327 5099.1 0.8798814 0.8983567
## 4129 -46.2 1.327 5099.1 0.8798814 0.8586118
## 4130 -42.7 4.958 5228.1 0.9229145 0.9007315
## 4131 -42.0 4.076 5195.8 0.9074675 0.8586118
## 4132 -40.8 1.260 5076.2 0.8798814 0.8983567
## 4133 -46.2 1.266 5099.1 0.9271523 0.8586118
## 4134 -42.7 4.963 5228.1 0.8854962 0.8586118
## 4135 -36.4 4.860 5191.0 0.8798814 0.8586118
## 4136 -46.2 1.266 5099.1 0.9074675 0.8586118
## 4137 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4138 -42.7 4.958 5228.1 0.9074675 0.8586118
## 4139 -41.8 4.961 5228.1 0.8874842 0.8983567
## 4140 -41.8 4.866 5228.1 0.8798814 0.8983567
## 4141 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4142 -31.4 0.883 5076.2 0.7666667 0.8983567
## 4143 -36.1 4.964 5228.1 0.8798814 0.8586118
## 4144 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4145 -42.7 4.968 5228.1 0.9229145 0.8983567
## 4146 -47.1 1.365 5099.1 0.8854962 0.9007315
## 4147 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4148 -41.8 4.866 5228.1 0.8798814 0.8586118
## 4149 -46.2 1.266 5099.1 0.8874842 0.8983567
## 4150 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4151 -36.4 4.860 5191.0 0.8798814 0.9007315
## 4152 -42.0 4.076 5195.8 0.8874842 0.8983567
## 4153 -36.4 4.860 5191.0 0.8854962 0.8983567
## 4154 -42.7 4.961 5228.1 0.8851675 0.8983567
## 4155 -42.0 4.076 5195.8 0.8798814 0.8586118
## 4156 -41.8 4.866 5228.1 0.8798814 0.8586118
## 4157 -41.8 4.962 5228.1 0.8874842 0.8983567
## 4158 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4159 -47.1 1.365 5099.1 0.8798814 0.9007315
## 4160 -42.7 4.958 5228.1 0.8798814 0.8586118
## 4161 -42.7 4.958 5228.1 0.8874842 0.8586118
## 4162 -47.1 1.365 5099.1 0.8798814 0.8586118
## 4163 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4164 -36.1 4.968 5228.1 0.8798814 0.8983567
## 4165 -36.4 4.855 5191.0 0.9229145 0.8586118
## 4166 -42.7 4.968 5228.1 0.8874842 0.8586118
## 4167 -36.4 4.860 5191.0 0.8851675 0.8983567
## 4168 -46.2 1.291 5099.1 0.9229145 0.8983567
## 4169 -41.8 4.961 5228.1 0.8798814 0.9007315
## 4170 -42.7 4.968 5228.1 0.8874842 0.8586118
## 4171 -36.1 4.962 5228.1 0.9198606 0.8983567
## 4172 -42.7 4.968 5228.1 0.8851675 0.8983567
## 4173 -42.0 4.076 5195.8 0.9074675 0.9007315
## 4174 -36.1 4.968 5228.1 0.8798814 0.8586118
## 4175 -42.0 4.076 5195.8 0.8874842 0.9007315
## 4176 -46.2 1.327 5099.1 0.9229145 0.8586118
## 4177 -42.7 4.968 5228.1 0.9074675 0.8983567
## 4178 -46.2 1.266 5099.1 0.8798814 0.8983567
## 4179 -36.4 4.856 5191.0 0.9074675 0.8983567
## 4180 -46.2 1.291 5099.1 0.9271523 0.9007315
## 4181 -36.1 4.962 5228.1 0.8874842 0.8983567
## 4182 -31.4 0.829 5076.2 0.8798814 0.8983567
## 4183 -46.2 1.281 5099.1 0.8874842 0.8586118
## 4184 -36.1 4.964 5228.1 0.8960396 0.8983567
## 4185 -41.8 4.866 5228.1 0.9074675 0.9007315
## 4186 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4187 -42.7 4.958 5228.1 0.8960396 0.8983567
## 4188 -36.4 4.860 5191.0 0.9074675 0.8983567
## 4189 -42.7 4.968 5228.1 0.8854962 0.8586118
## 4190 -41.8 4.961 5228.1 0.9074675 0.8983567
## 4191 -36.4 4.860 5191.0 0.9074675 0.8823529
## 4192 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4193 -36.4 4.860 5191.0 0.9198606 0.8983567
## 4194 -42.0 4.076 5195.8 0.8851675 0.8586118
## 4195 -47.1 1.365 5099.1 0.9229145 0.8983567
## 4196 -47.1 1.410 5099.1 0.9229145 0.8586118
## 4197 -41.8 4.864 5228.1 0.9229145 0.8983567
## 4198 -41.8 4.961 5228.1 0.8854962 0.8983567
## 4199 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4200 -47.1 1.410 5099.1 0.8798814 0.8586118
## 4201 -36.1 4.964 5228.1 0.8854962 0.8586118
## 4202 -47.1 1.410 5099.1 0.9229145 0.8983567
## 4203 -36.1 4.968 5228.1 0.8798814 0.8983567
## 4204 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4205 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4206 -41.8 4.955 5228.1 0.8798814 0.8586118
## 4207 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4208 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4209 -36.1 4.965 5228.1 0.8798814 0.8983567
## 4210 -36.4 4.860 5191.0 0.8851675 0.9007315
## 4211 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4212 -41.8 4.866 5228.1 0.9229145 0.8586118
## 4213 -42.0 4.076 5195.8 0.9074675 0.9007315
## 4214 -46.2 1.327 5099.1 0.7666667 0.8983567
## 4215 -34.6 0.640 5008.7 0.9074675 0.9007315
## 4216 -47.1 1.410 5099.1 0.8854962 0.8983567
## 4217 -42.7 4.961 5228.1 0.8854962 0.8983567
## 4218 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4219 -46.2 1.327 5099.1 0.8798814 0.8983567
## 4220 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4221 -46.2 1.344 5099.1 0.8798814 0.9007315
## 4222 -36.4 4.860 5191.0 0.8874842 0.8983567
## 4223 -47.1 1.365 5099.1 0.8854962 0.8983567
## 4224 -42.7 4.962 5228.1 0.8851675 0.8983567
## 4225 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4226 -41.8 4.961 5228.1 0.8851675 0.8983567
## 4227 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4228 -41.8 4.958 5228.1 0.8874842 0.8983567
## 4229 -42.0 4.076 5195.8 0.6868132 0.8983567
## 4230 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4231 -42.0 4.153 5195.8 0.9229145 0.8983567
## 4232 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4233 -47.1 1.410 5099.1 0.8851675 0.8983567
## 4234 -42.0 4.076 5195.8 0.9229145 0.9007315
## 4235 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4236 -41.8 4.958 5228.1 0.9074675 0.8586118
## 4237 -34.6 0.640 5008.7 0.9074675 0.9007315
## 4238 -46.2 1.327 5099.1 0.8798814 0.9007315
## 4239 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4240 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4241 -47.1 1.410 5099.1 0.9229145 0.8983567
## 4242 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4243 -42.0 4.076 5195.8 0.9229145 0.8586118
## 4244 -42.7 4.962 5228.1 0.7666667 0.8586118
## 4245 -41.8 4.961 5228.1 0.9229145 0.8586118
## 4246 -42.0 4.153 5195.8 0.8798814 0.8586118
## 4247 -49.5 0.987 4963.6 0.8798814 0.8586118
## 4248 -42.0 4.153 5195.8 0.9271523 0.8586118
## 4249 -47.1 1.410 5099.1 0.8874842 0.8586118
## 4250 -41.8 4.866 5228.1 0.8854962 0.8586118
## 4251 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4252 -46.2 1.327 5099.1 0.8854962 0.8983567
## 4253 -47.1 1.406 5099.1 0.8854962 0.8983567
## 4254 -31.4 0.883 5076.2 0.9229145 0.8983567
## 4255 -42.0 4.153 5195.8 0.9198606 0.8983567
## 4256 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4257 -36.1 4.964 5228.1 0.9198606 0.8983567
## 4258 -46.2 1.291 5099.1 0.9229145 0.8586118
## 4259 -47.1 1.483 5099.1 0.9229145 0.8586118
## 4260 -36.4 4.855 5191.0 0.9074675 0.8983567
## 4261 -26.9 0.741 5017.5 0.9074675 0.9007315
## 4262 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4263 -36.4 4.857 5191.0 0.8874842 0.8983567
## 4264 -36.1 4.966 5228.1 0.8854962 0.8586118
## 4265 -36.1 4.964 5228.1 0.9229145 0.8983567
## 4266 -42.7 4.968 5228.1 0.8874842 0.8983567
## 4267 -41.8 4.866 5228.1 0.9271523 0.8983567
## 4268 -50.0 1.757 5099.1 0.8854962 0.8983567
## 4269 -38.3 0.904 4991.6 0.6868132 0.8586118
## 4270 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4271 -46.2 1.270 5099.1 0.6868132 0.8586118
## 4272 -31.4 0.873 5076.2 0.7666667 0.8983567
## 4273 -42.7 4.957 5228.1 0.8854962 0.9007315
## 4274 -47.1 1.365 5099.1 0.6868132 0.8586118
## 4275 -42.7 4.963 5228.1 0.9198606 0.8586118
## 4276 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4277 -41.8 4.866 5228.1 0.9074675 0.8586118
## 4278 -46.2 1.266 5099.1 0.9074675 0.8586118
## 4279 -47.1 1.365 5099.1 0.8854962 0.8586118
## 4280 -40.8 1.260 5076.2 0.9229145 0.8983567
## 4281 -47.1 1.406 5099.1 0.6868132 0.8586118
## 4282 -39.8 0.767 4991.6 0.8798814 0.8586118
## 4283 -47.1 1.483 5099.1 0.8798814 0.8983567
## 4284 -47.1 1.365 5099.1 0.7666667 0.8983567
## 4285 -41.8 4.961 5228.1 0.8798814 0.8983567
## 4286 -42.0 4.076 5195.8 0.9198606 0.8983567
## 4287 -42.7 4.962 5228.1 0.8960396 0.9007315
## 4288 -36.1 4.964 5228.1 0.9198606 0.8983567
## 4289 -47.1 1.365 5099.1 0.8798814 0.8983567
## 4290 -42.0 4.076 5195.8 0.8851675 0.8586118
## 4291 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4292 -33.0 0.714 5023.5 0.7666667 0.8983567
## 4293 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4294 -41.8 4.961 5228.1 0.8854962 0.8586118
## 4295 -40.0 0.677 5008.7 0.8798814 0.8983567
## 4296 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4297 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4298 -41.8 4.866 5228.1 0.9229145 0.8586118
## 4299 -41.8 4.866 5228.1 0.9074675 0.8983567
## 4300 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4301 -42.7 4.962 5228.1 0.8874842 0.9007315
## 4302 -31.4 0.873 5076.2 0.6868132 0.8586118
## 4303 -47.1 1.410 5099.1 0.9229145 0.8983567
## 4304 -47.1 1.410 5099.1 0.9229145 0.8983567
## 4305 -42.7 4.961 5228.1 0.8874842 0.8586118
## 4306 -47.1 1.410 5099.1 0.8798814 0.8983567
## 4307 -36.4 4.857 5191.0 0.8854962 0.8983567
## 4308 -41.8 4.866 5228.1 0.9271523 0.8983567
## 4309 -40.0 0.692 5008.7 0.8798814 0.8983567
## 4310 -41.8 4.866 5228.1 0.8798814 0.8586118
## 4311 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4312 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4313 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4314 -36.4 4.856 5191.0 0.9229145 0.8586118
## 4315 -36.4 4.860 5191.0 0.9229145 0.8586118
## 4316 -47.1 1.365 5099.1 0.9198606 0.8586118
## 4317 -31.4 0.838 5076.2 0.7666667 0.8983567
## 4318 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4319 -47.1 1.483 5099.1 0.8798814 0.8983567
## 4320 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4321 -42.7 4.963 5228.1 0.9229145 0.8983567
## 4322 -47.1 1.365 5099.1 0.8798814 0.8983567
## 4323 -41.8 4.958 5228.1 0.8798814 0.8983567
## 4324 -33.6 1.018 5076.2 0.8798814 0.8586118
## 4325 -42.7 4.963 5228.1 0.8874842 0.8586118
## 4326 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4327 -41.8 4.955 5228.1 0.8874842 0.8983567
## 4328 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4329 -42.0 4.076 5195.8 0.7666667 0.8983567
## 4330 -47.1 1.365 5099.1 0.8032787 0.8586118
## 4331 -42.7 4.963 5228.1 0.9229145 0.8586118
## 4332 -36.4 4.860 5191.0 0.8854962 0.8983567
## 4333 -47.1 1.365 5099.1 0.8798814 0.8586118
## 4334 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4335 -36.4 4.857 5191.0 0.9271523 0.8983567
## 4336 -47.1 1.410 5099.1 0.8854962 0.8983567
## 4337 -42.0 4.076 5195.8 0.8798814 0.9007315
## 4338 -36.1 4.962 5228.1 0.9074675 0.8586118
## 4339 -36.1 4.968 5228.1 0.8798814 0.8983567
## 4340 -47.1 1.410 5099.1 0.9229145 0.8983567
## 4341 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4342 -47.1 1.423 5099.1 0.8798814 0.9007315
## 4343 -36.4 4.860 5191.0 0.9074675 0.8983567
## 4344 -47.1 1.410 5099.1 0.9229145 0.9007315
## 4345 -46.2 1.327 5099.1 0.9229145 0.9007315
## 4346 -41.8 4.958 5228.1 0.9271523 0.8983567
## 4347 -36.4 4.857 5191.0 0.8798814 0.8586118
## 4348 -47.1 1.423 5099.1 0.9229145 0.8983567
## 4349 -36.4 4.855 5191.0 0.9074675 0.8983567
## 4350 -36.4 4.855 5191.0 0.8851675 0.9007315
## 4351 -36.1 4.964 5228.1 0.9074675 0.8983567
## 4352 -42.7 4.963 5228.1 0.8874842 0.9007315
## 4353 -36.4 4.860 5191.0 0.9229145 0.8586118
## 4354 -47.1 1.483 5099.1 0.8798814 0.8983567
## 4355 -40.8 1.206 5076.2 0.9198606 0.8586118
## 4356 -34.6 0.659 5008.7 0.7666667 0.8983567
## 4357 -31.4 0.851 5076.2 0.8854962 0.8586118
## 4358 -42.7 4.963 5228.1 0.9198606 0.8983567
## 4359 -36.4 4.860 5191.0 0.9271523 0.8983567
## 4360 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4361 -47.1 1.365 5099.1 0.9271523 0.8983567
## 4362 -36.4 4.860 5191.0 0.7666667 0.9007315
## 4363 -36.4 4.860 5191.0 0.9074675 0.8983567
## 4364 -36.1 4.968 5228.1 0.8798814 0.8983567
## 4365 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4366 -42.0 4.076 5195.8 0.8874842 0.8983567
## 4367 -36.4 4.855 5191.0 0.9271523 0.8983567
## 4368 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4369 -36.4 4.860 5191.0 0.9229145 0.9007315
## 4370 -42.0 4.076 5195.8 0.9229145 0.8586118
## 4371 -41.8 4.959 5228.1 0.9229145 0.8983567
## 4372 -46.2 1.266 5099.1 0.8854962 0.8586118
## 4373 -36.4 4.855 5191.0 0.8798814 0.9007315
## 4374 -33.6 0.908 5076.2 0.8798814 0.8983567
## 4375 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4376 -36.1 4.962 5228.1 0.9229145 0.8983567
## 4377 -36.4 4.855 5191.0 0.8851675 0.8983567
## 4378 -47.1 1.365 5099.1 0.9198606 0.8586118
## 4379 -36.4 4.855 5191.0 0.8798814 0.8983567
## 4380 -46.2 1.266 5099.1 0.8854962 0.8983567
## 4381 -42.7 4.962 5228.1 0.8854962 0.8983567
## 4382 -42.7 4.968 5228.1 0.8874842 0.9007315
## 4383 -47.1 1.365 5099.1 0.9271523 0.8983567
## 4384 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4385 -36.1 4.962 5228.1 0.9229145 0.8983567
## 4386 -47.1 1.365 5099.1 0.8854962 0.8983567
## 4387 -47.1 1.435 5099.1 0.8854962 0.8586118
## 4388 -36.4 4.855 5191.0 0.8854962 0.8983567
## 4389 -34.6 0.644 5008.7 0.7666667 0.8983567
## 4390 -49.5 0.987 4963.6 0.8798814 0.8586118
## 4391 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4392 -42.0 4.076 5195.8 0.8798814 0.8586118
## 4393 -36.1 4.963 5228.1 0.9229145 0.8983567
## 4394 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4395 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4396 -47.1 1.365 5099.1 0.8874842 0.8983567
## 4397 -46.2 1.266 5099.1 0.9229145 0.8586118
## 4398 -31.4 0.851 5076.2 0.8798814 0.8983567
## 4399 -36.4 4.860 5191.0 0.9074675 0.8586118
## 4400 -36.4 4.855 5191.0 0.8874842 0.8983567
## 4401 -38.3 0.904 4991.6 0.9271523 0.8983567
## 4402 -41.8 4.961 5228.1 0.8798814 0.8586118
## 4403 -36.1 4.964 5228.1 0.9229145 0.8983567
## 4404 -36.4 4.855 5191.0 0.8032787 0.8983567
## 4405 -42.7 4.961 5228.1 0.8874842 0.8586118
## 4406 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4407 -36.4 4.860 5191.0 0.8874842 0.8983567
## 4408 -42.7 4.958 5228.1 0.8798814 0.8586118
## 4409 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4410 -36.4 4.857 5191.0 0.9074675 0.8983567
## 4411 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4412 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4413 -46.2 1.270 5099.1 0.9229145 0.8983567
## 4414 -47.1 1.435 5099.1 0.9229145 0.8983567
## 4415 -47.1 1.365 5099.1 0.6868132 0.8586118
## 4416 -41.8 4.961 5228.1 0.8854962 0.8983567
## 4417 -42.7 4.963 5228.1 0.9198606 0.8983567
## 4418 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4419 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4420 -40.8 1.260 5076.2 0.8851675 0.8983567
## 4421 -46.2 1.327 5099.1 0.9229145 0.8586118
## 4422 -41.8 4.958 5228.1 0.9229145 0.9007315
## 4423 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4424 -46.2 1.327 5099.1 0.8874842 0.8586118
## 4425 -46.2 1.266 5099.1 0.8854962 0.8983567
## 4426 -36.4 4.860 5191.0 0.8798814 0.9007315
## 4427 -42.7 4.958 5228.1 0.9229145 0.9007315
## 4428 -42.7 4.963 5228.1 0.8854962 0.9007315
## 4429 -41.8 4.958 5228.1 0.8798814 0.8983567
## 4430 -47.1 1.435 5099.1 0.8874842 0.8983567
## 4431 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4432 -42.0 4.076 5195.8 0.8798814 0.9007315
## 4433 -42.0 4.153 5195.8 0.9074675 0.8983567
## 4434 -36.4 4.860 5191.0 0.8854962 0.8983567
## 4435 -46.2 1.327 5099.1 0.9229145 0.8586118
## 4436 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4437 -26.9 0.754 5017.5 0.8854962 0.9007315
## 4438 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4439 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4440 -42.7 4.963 5228.1 0.9271523 0.8983567
## 4441 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4442 -26.9 0.722 5017.5 0.8854962 0.8983567
## 4443 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4444 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4445 -47.1 1.410 5099.1 0.9074675 0.8983567
## 4446 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4447 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4448 -41.8 4.961 5228.1 0.7666667 0.8983567
## 4449 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4450 -36.4 4.855 5191.0 0.8798814 0.8983567
## 4451 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4452 -42.0 4.700 5195.8 0.7666667 0.9007315
## 4453 -41.8 4.961 5228.1 0.9074675 0.8586118
## 4454 -47.1 1.365 5099.1 0.8798814 0.8983567
## 4455 -42.7 4.963 5228.1 0.8798814 0.8586118
## 4456 -50.0 1.663 5099.1 0.7666667 0.9007315
## 4457 -42.7 4.962 5228.1 0.8851675 0.8983567
## 4458 -41.8 4.866 5228.1 0.8874842 0.8983567
## 4459 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4460 -46.2 1.266 5099.1 0.9074675 0.8983567
## 4461 -46.2 1.270 5099.1 0.8032787 0.8983567
## 4462 -42.7 4.961 5228.1 0.9229145 0.8983567
## 4463 -47.1 1.410 5099.1 0.8798814 0.8586118
## 4464 -42.7 4.968 5228.1 0.8854962 0.9007315
## 4465 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4466 -42.7 4.961 5228.1 0.8854962 0.9007315
## 4467 -36.4 4.856 5191.0 0.8854962 0.8983567
## 4468 -46.2 1.266 5099.1 0.8798814 0.8586118
## 4469 -42.7 4.968 5228.1 0.8874842 0.8983567
## 4470 -36.4 4.855 5191.0 0.9198606 0.8983567
## 4471 -42.7 4.961 5228.1 0.8960396 0.8983567
## 4472 -42.7 4.958 5228.1 0.8854962 0.8983567
## 4473 -47.1 1.365 5099.1 0.8874842 0.8983567
## 4474 -42.0 4.076 5195.8 0.9271523 0.8983567
## 4475 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4476 -36.4 4.860 5191.0 0.8032787 0.8983567
## 4477 -42.7 4.968 5228.1 0.8798814 0.8983567
## 4478 -41.8 4.961 5228.1 0.8874842 0.9007315
## 4479 -42.7 4.968 5228.1 0.9229145 0.8586118
## 4480 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4481 -36.4 4.860 5191.0 0.9198606 0.8983567
## 4482 -42.7 4.968 5228.1 0.9229145 0.8586118
## 4483 -46.2 1.327 5099.1 0.8854962 0.9007315
## 4484 -41.8 4.958 5228.1 0.8798814 0.9007315
## 4485 -42.7 4.968 5228.1 0.8851675 0.8586118
## 4486 -47.1 1.365 5099.1 0.8798814 0.8586118
## 4487 -42.7 4.958 5228.1 0.8854962 0.8586118
## 4488 -40.8 1.260 5076.2 0.8798814 0.8983567
## 4489 -36.4 4.860 5191.0 0.9229145 0.9007315
## 4490 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4491 -36.4 4.860 5191.0 0.8854962 0.8586118
## 4492 -36.4 4.859 5191.0 0.8851675 0.9007315
## 4493 -36.4 4.857 5191.0 0.8854962 0.8586118
## 4494 -36.1 4.964 5228.1 0.8798814 0.9007315
## 4495 -41.8 4.958 5228.1 0.8851675 0.8983567
## 4496 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4497 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4498 -36.1 4.962 5228.1 0.8798814 0.8586118
## 4499 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4500 -42.7 4.963 5228.1 0.9229145 0.8983567
## 4501 -47.1 1.483 5099.1 0.8854962 0.9007315
## 4502 -46.2 1.266 5099.1 0.8874842 0.8983567
## 4503 -36.4 4.860 5191.0 0.8874842 0.8983567
## 4504 -26.9 0.722 5017.5 0.8854962 0.8983567
## 4505 -47.1 1.410 5099.1 0.8874842 0.8586118
## 4506 -42.7 4.962 5228.1 0.9198606 0.8586118
## 4507 -47.1 1.435 5099.1 0.9198606 0.8586118
## 4508 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4509 -42.7 4.962 5228.1 0.8854962 0.8586118
## 4510 -36.4 4.855 5191.0 0.7666667 0.8983567
## 4511 -41.8 4.866 5228.1 0.8874842 0.8586118
## 4512 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4513 -47.1 1.365 5099.1 0.8798814 0.8586118
## 4514 -36.1 4.963 5228.1 0.9229145 0.8983567
## 4515 -41.8 4.866 5228.1 0.9271523 0.9007315
## 4516 -42.7 4.968 5228.1 0.8798814 0.8983567
## 4517 -46.2 1.327 5099.1 0.8798814 0.9007315
## 4518 -36.4 4.857 5191.0 0.8960396 0.8983567
## 4519 -47.1 1.410 5099.1 0.8874842 0.8586118
## 4520 -41.8 4.864 5228.1 0.9229145 0.8983567
## 4521 -36.4 4.855 5191.0 0.8798814 0.9007315
## 4522 -36.1 4.962 5228.1 0.8851675 0.8586118
## 4523 -42.7 4.968 5228.1 0.8854962 0.8586118
## 4524 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4525 -41.8 4.955 5228.1 0.9229145 0.8983567
## 4526 -36.1 4.962 5228.1 0.8874842 0.8983567
## 4527 -42.0 4.153 5195.8 0.9229145 0.8983567
## 4528 -42.0 4.076 5195.8 0.9271523 0.8586118
## 4529 -47.1 1.483 5099.1 0.8798814 0.8983567
## 4530 -46.2 1.334 5099.1 0.9229145 0.8586118
## 4531 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4532 -47.1 1.483 5099.1 0.9074675 0.8983567
## 4533 -36.4 4.855 5191.0 0.8798814 0.8586118
## 4534 -40.8 1.235 5076.2 0.8798814 0.8983567
## 4535 -41.8 4.962 5228.1 0.9229145 0.8983567
## 4536 -42.7 4.958 5228.1 0.8798814 0.8586118
## 4537 -36.4 4.855 5191.0 0.8798814 0.8983567
## 4538 -36.4 4.856 5191.0 0.9229145 0.9007315
## 4539 -41.8 4.961 5228.1 0.8798814 0.8983567
## 4540 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4541 -47.1 1.365 5099.1 0.8798814 0.8586118
## 4542 -42.7 4.958 5228.1 0.8798814 0.8586118
## 4543 -46.2 1.291 5099.1 0.8798814 0.8983567
## 4544 -42.0 4.153 5195.8 0.9198606 0.8983567
## 4545 -42.0 4.076 5195.8 0.9198606 0.8983567
## 4546 -46.2 1.266 5099.1 0.9198606 0.8983567
## 4547 -36.4 4.860 5191.0 0.6868132 0.8586118
## 4548 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4549 -36.4 4.860 5191.0 0.8854962 0.8983567
## 4550 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4551 -46.2 1.344 5099.1 0.9229145 0.8983567
## 4552 -31.4 0.873 5076.2 0.7666667 0.9007315
## 4553 -42.0 4.076 5195.8 0.8798814 0.9007315
## 4554 -42.7 4.962 5228.1 0.8960396 0.9007315
## 4555 -46.2 1.327 5099.1 0.8798814 0.8983567
## 4556 -36.1 4.968 5228.1 0.8854962 0.8586118
## 4557 -36.1 4.964 5228.1 0.8854962 0.8586118
## 4558 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4559 -42.7 4.958 5228.1 0.8854962 0.8586118
## 4560 -41.8 4.958 5228.1 0.9229145 0.9007315
## 4561 -46.2 1.327 5099.1 0.8874842 0.8983567
## 4562 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4563 -36.1 4.963 5228.1 0.8960396 0.8983567
## 4564 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4565 -36.1 4.962 5228.1 0.8854962 0.9007315
## 4566 -37.5 0.878 4963.6 0.8854962 0.8983567
## 4567 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4568 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4569 -36.4 4.860 5191.0 0.9271523 0.8983567
## 4570 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4571 -42.7 4.958 5228.1 0.8854962 0.8983567
## 4572 -42.0 4.076 5195.8 0.8874842 0.8586118
## 4573 -36.4 4.860 5191.0 0.9074675 0.8983567
## 4574 -41.8 4.961 5228.1 0.9229145 0.9007315
## 4575 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4576 -42.0 4.076 5195.8 0.9271523 0.8983567
## 4577 -46.2 1.266 5099.1 0.8798814 0.8586118
## 4578 -41.8 4.958 5228.1 0.8798814 0.8586118
## 4579 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4580 -36.1 4.963 5228.1 0.9229145 0.8983567
## 4581 -36.1 4.964 5228.1 0.8798814 0.8586118
## 4582 -31.4 0.883 5076.2 0.9229145 0.8983567
## 4583 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4584 -46.2 1.266 5099.1 0.9074675 0.8983567
## 4585 -42.7 4.962 5228.1 0.9074675 0.8983567
## 4586 -36.4 4.855 5191.0 0.7666667 0.8586118
## 4587 -42.7 4.963 5228.1 0.8798814 0.8983567
## 4588 -46.2 1.266 5099.1 0.9271523 0.8983567
## 4589 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4590 -42.7 4.961 5228.1 0.8798814 0.9007315
## 4591 -42.7 4.958 5228.1 0.8851675 0.9007315
## 4592 -42.0 4.076 5195.8 0.9198606 0.8983567
## 4593 -36.4 4.860 5191.0 0.8874842 0.8983567
## 4594 -42.0 4.076 5195.8 0.9229145 0.8586118
## 4595 -37.5 0.879 4963.6 0.8798814 0.8983567
## 4596 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4597 -36.1 4.963 5228.1 0.8874842 0.8983567
## 4598 -36.4 4.855 5191.0 0.9229145 0.8586118
## 4599 -41.8 4.866 5228.1 0.8874842 0.8983567
## 4600 -29.8 0.766 5017.5 0.8798814 0.8983567
## 4601 -41.8 4.866 5228.1 0.8960396 0.8983567
## 4602 -36.1 4.962 5228.1 0.9074675 0.8983567
## 4603 -36.1 4.964 5228.1 0.7666667 0.8983567
## 4604 -36.4 4.860 5191.0 0.8874842 0.9007315
## 4605 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4606 -42.7 4.958 5228.1 0.8854962 0.8586118
## 4607 -46.2 1.327 5099.1 0.9074675 0.8983567
## 4608 -40.8 1.262 5076.2 0.7666667 0.9007315
## 4609 -41.8 4.866 5228.1 0.9229145 0.8983567
## 4610 -46.2 1.266 5099.1 0.8854962 0.8586118
## 4611 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4612 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4613 -36.1 4.962 5228.1 0.8854962 0.8586118
## 4614 -36.4 4.860 5191.0 0.8960396 0.8983567
## 4615 -41.8 4.961 5228.1 0.8854962 0.8586118
## 4616 -42.7 4.963 5228.1 0.8798814 0.8586118
## 4617 -42.7 4.968 5228.1 0.8798814 0.8983567
## 4618 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4619 -36.4 4.855 5191.0 0.9271523 0.8983567
## 4620 -31.4 0.883 5076.2 0.7666667 0.8983567
## 4621 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4622 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4623 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4624 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4625 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4626 -36.1 4.964 5228.1 0.8798814 0.8983567
## 4627 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4628 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4629 -42.7 4.963 5228.1 0.8854962 0.8983567
## 4630 -36.1 4.963 5228.1 0.8798814 0.8586118
## 4631 -46.2 1.327 5099.1 0.8874842 0.8983567
## 4632 -36.4 4.855 5191.0 0.8874842 0.8983567
## 4633 -36.4 4.855 5191.0 0.8874842 0.8586118
## 4634 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4635 -42.7 4.966 5228.1 0.8854962 0.8586118
## 4636 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4637 -36.4 4.860 5191.0 0.9074675 0.9007315
## 4638 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4639 -41.8 4.958 5228.1 0.8854962 0.8983567
## 4640 -42.7 4.968 5228.1 0.8798814 0.8983567
## 4641 -42.7 4.958 5228.1 0.9229145 0.8983567
## 4642 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4643 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4644 -50.8 1.041 4963.6 0.6868132 0.8586118
## 4645 -36.1 4.962 5228.1 0.8874842 0.8983567
## 4646 -31.4 0.873 5076.2 0.8798814 0.8586118
## 4647 -42.7 4.968 5228.1 0.8798814 0.8983567
## 4648 -36.4 4.860 5191.0 0.8874842 0.8983567
## 4649 -42.0 4.076 5195.8 0.8874842 0.8983567
## 4650 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4651 -42.0 4.592 5195.8 0.8798814 0.8586118
## 4652 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4653 -36.1 4.963 5228.1 0.8874842 0.8983567
## 4654 -46.2 1.344 5099.1 0.9229145 0.8983567
## 4655 -36.1 4.964 5228.1 0.9198606 0.8983567
## 4656 -36.4 4.856 5191.0 0.9229145 0.8586118
## 4657 -41.8 4.866 5228.1 0.8854962 0.8983567
## 4658 -36.1 4.964 5228.1 0.8874842 0.8983567
## 4659 -42.0 4.076 5195.8 0.9229145 0.9007315
## 4660 -38.3 0.899 4991.6 0.8854962 0.8983567
## 4661 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4662 -31.4 0.851 5076.2 0.6868132 0.8586118
## 4663 -46.2 1.266 5099.1 0.9229145 0.8586118
## 4664 -41.8 4.864 5228.1 0.9229145 0.8983567
## 4665 -42.7 4.958 5228.1 0.9074675 0.9007315
## 4666 -36.1 4.964 5228.1 0.8798814 0.9007315
## 4667 -42.7 4.963 5228.1 0.8854962 0.8586118
## 4668 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4669 -36.1 4.963 5228.1 0.8960396 0.9007315
## 4670 -36.1 4.963 5228.1 0.8851675 0.8983567
## 4671 -36.1 4.962 5228.1 0.9198606 0.8983567
## 4672 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4673 -36.1 4.965 5228.1 0.8854962 0.8586118
## 4674 -36.4 4.860 5191.0 0.8798814 0.9007315
## 4675 -41.8 4.866 5228.1 0.9229145 0.8983567
## 4676 -36.4 4.860 5191.0 0.8874842 0.8586118
## 4677 -42.0 4.076 5195.8 0.9271523 0.8983567
## 4678 -36.1 4.968 5228.1 0.9271523 0.8983567
## 4679 -36.1 4.968 5228.1 0.8874842 0.8983567
## 4680 -42.7 4.962 5228.1 0.8854962 0.8586118
## 4681 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4682 -42.7 4.955 5228.1 0.9074675 0.8983567
## 4683 -47.1 1.415 5099.1 0.9271523 0.8983567
## 4684 -50.0 1.650 5099.1 0.9074675 0.8586118
## 4685 -36.1 4.963 5228.1 0.8798814 0.8586118
## 4686 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4687 -47.1 1.453 5099.1 0.9229145 0.8586118
## 4688 -46.2 1.291 5099.1 0.8798814 0.8983567
## 4689 -36.4 4.857 5191.0 0.9074675 0.9007315
## 4690 -31.4 0.873 5076.2 0.8798814 0.8983567
## 4691 -41.8 4.866 5228.1 0.9198606 0.8983567
## 4692 -36.4 4.860 5191.0 0.8798814 0.9007315
## 4693 -42.7 4.958 5228.1 0.8798814 0.8983567
## 4694 -36.1 4.965 5228.1 0.8798814 0.8983567
## 4695 -36.4 4.857 5191.0 0.8851675 0.8983567
## 4696 -42.7 4.963 5228.1 0.8798814 0.8586118
## 4697 -42.0 4.076 5195.8 0.9198606 0.8983567
## 4698 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4699 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4700 -41.8 4.866 5228.1 0.8798814 0.9007315
## 4701 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4702 -41.8 4.958 5228.1 0.9074675 0.8983567
## 4703 -41.8 4.864 5228.1 0.9229145 0.8983567
## 4704 -42.7 4.968 5228.1 0.9074675 0.8983567
## 4705 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4706 -36.1 4.965 5228.1 0.8854962 0.8983567
## 4707 -42.7 4.963 5228.1 0.9229145 0.8586118
## 4708 -42.7 4.958 5228.1 0.8854962 0.8586118
## 4709 -47.1 1.423 5099.1 0.9074675 0.8983567
## 4710 -42.7 4.961 5228.1 0.7666667 0.9007315
## 4711 -41.8 4.866 5228.1 0.8798814 0.8983567
## 4712 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4713 -46.2 1.266 5099.1 0.8798814 0.8586118
## 4714 -42.7 4.962 5228.1 0.8874842 0.8586118
## 4715 -42.7 4.958 5228.1 0.9271523 0.8586118
## 4716 -42.0 4.153 5195.8 0.9198606 0.9007315
## 4717 -42.7 4.963 5228.1 0.9229145 0.8586118
## 4718 -42.7 4.961 5228.1 0.8798814 0.8983567
## 4719 -36.4 4.857 5191.0 0.8854962 0.8983567
## 4720 -36.1 4.966 5228.1 0.8798814 0.8586118
## 4721 -42.7 4.958 5228.1 0.9198606 0.8586118
## 4722 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4723 -36.1 4.966 5228.1 0.9229145 0.8983567
## 4724 -42.7 4.962 5228.1 0.9229145 0.8586118
## 4725 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4726 -42.7 4.963 5228.1 0.9229145 0.8586118
## 4727 -42.7 4.963 5228.1 0.8854962 0.8586118
## 4728 -36.1 4.968 5228.1 0.8798814 0.8983567
## 4729 -42.7 4.962 5228.1 0.8798814 0.8586118
## 4730 -42.7 4.962 5228.1 0.9074675 0.8983567
## 4731 -34.8 0.637 5008.7 0.8798814 0.8586118
## 4732 -42.7 4.963 5228.1 0.8798814 0.8983567
## 4733 -46.2 1.291 5099.1 0.6868132 0.8586118
## 4734 -36.1 4.968 5228.1 0.8854962 0.8586118
## 4735 -41.8 4.961 5228.1 0.8798814 0.8983567
## 4736 -42.7 4.968 5228.1 0.7666667 0.8983567
## 4737 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4738 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4739 -42.7 4.963 5228.1 0.8854962 0.8983567
## 4740 -36.1 4.964 5228.1 0.8798814 0.8983567
## 4741 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4742 -46.2 1.266 5099.1 0.8854962 0.8586118
## 4743 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4744 -41.8 4.958 5228.1 0.8874842 0.8983567
## 4745 -36.1 4.966 5228.1 0.8798814 0.8983567
## 4746 -42.0 4.153 5195.8 0.8874842 0.8983567
## 4747 -42.7 4.968 5228.1 0.9229145 0.8983567
## 4748 -42.7 4.958 5228.1 0.8798814 0.8983567
## 4749 -42.7 4.962 5228.1 0.8798814 0.8586118
## 4750 -36.4 4.856 5191.0 0.8854962 0.8983567
## 4751 -34.8 0.643 5008.7 0.8854962 0.8586118
## 4752 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4753 -36.1 4.964 5228.1 0.8854962 0.8586118
## 4754 -50.0 1.538 5099.1 0.8798814 0.8586118
## 4755 -36.1 4.968 5228.1 0.8798814 0.8586118
## 4756 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4757 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4758 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4759 -42.7 4.962 5228.1 0.9271523 0.8586118
## 4760 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4761 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4762 -41.8 4.961 5228.1 0.9074675 0.8586118
## 4763 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4764 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4765 -42.7 4.968 5228.1 0.8854962 0.8586118
## 4766 -42.7 4.962 5228.1 0.9229145 0.8586118
## 4767 -40.8 1.260 5076.2 0.9074675 0.8983567
## 4768 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4769 -42.7 4.961 5228.1 0.9074675 0.8983567
## 4770 -36.1 4.968 5228.1 0.8798814 0.8586118
## 4771 -41.8 4.864 5228.1 0.8798814 0.8586118
## 4772 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4773 -36.4 4.856 5191.0 0.8798814 0.8983567
## 4774 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4775 -41.8 4.962 5228.1 0.8960396 0.8983567
## 4776 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4777 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4778 -46.2 1.266 5099.1 0.8854962 0.8586118
## 4779 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4780 -36.1 4.963 5228.1 0.8798814 0.8586118
## 4781 -36.1 4.963 5228.1 0.8960396 0.8983567
## 4782 -36.4 4.857 5191.0 0.8854962 0.8983567
## 4783 -36.4 4.860 5191.0 0.8874842 0.8983567
## 4784 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4785 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4786 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4787 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4788 -46.2 1.344 5099.1 0.8854962 0.8586118
## 4789 -42.7 4.955 5228.1 0.8854962 0.8586118
## 4790 -46.2 1.270 5099.1 0.8854962 0.8586118
## 4791 -41.8 4.866 5228.1 0.9229145 0.8983567
## 4792 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4793 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4794 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4795 -36.1 4.963 5228.1 0.8798814 0.8586118
## 4796 -41.8 4.961 5228.1 0.8874842 0.8983567
## 4797 -36.4 4.856 5191.0 0.8874842 0.8983567
## 4798 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4799 -36.4 4.855 5191.0 0.7666667 0.9007315
## 4800 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4801 -42.7 4.968 5228.1 0.9229145 0.8983567
## 4802 -33.6 1.044 5076.2 0.6868132 0.8586118
## 4803 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4804 -31.4 0.883 5076.2 0.8798814 0.8586118
## 4805 -42.7 4.963 5228.1 0.9198606 0.8983567
## 4806 -42.7 4.958 5228.1 0.9198606 0.9007315
## 4807 -42.0 4.076 5195.8 0.6868132 0.9007315
## 4808 -42.7 4.963 5228.1 0.8854962 0.8983567
## 4809 -46.2 1.291 5099.1 0.8874842 0.8983567
## 4810 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4811 -42.7 4.966 5228.1 0.9074675 0.8983567
## 4812 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4813 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4814 -42.7 4.958 5228.1 0.9074675 0.8586118
## 4815 -40.3 0.846 4991.6 0.8874842 0.8586118
## 4816 -42.7 4.962 5228.1 0.8798814 0.8586118
## 4817 -36.4 4.855 5191.0 0.8798814 0.8983567
## 4818 -31.4 0.851 5076.2 0.8798814 0.9007315
## 4819 -31.4 0.854 5076.2 0.7666667 0.8983567
## 4820 -42.0 4.076 5195.8 0.8874842 0.8983567
## 4821 -36.4 4.857 5191.0 0.9229145 0.8586118
## 4822 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4823 -42.7 4.962 5228.1 0.7666667 0.8983567
## 4824 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4825 -42.7 4.961 5228.1 0.8854962 0.8983567
## 4826 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4827 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4828 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4829 -31.4 0.883 5076.2 0.8854962 0.8983567
## 4830 -36.4 4.860 5191.0 0.9229145 0.9007315
## 4831 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4832 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4833 -29.8 0.768 5017.5 0.8854962 0.8983567
## 4834 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4835 -46.2 1.344 5099.1 0.7666667 0.8983567
## 4836 -42.7 4.958 5228.1 0.8854962 0.8586118
## 4837 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4838 -42.7 4.958 5228.1 0.8798814 0.8983567
## 4839 -46.2 1.266 5099.1 0.8854962 0.8586118
## 4840 -42.0 4.076 5195.8 0.9229145 0.8586118
## 4841 -42.7 4.961 5228.1 0.9229145 0.8983567
## 4842 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4843 -36.4 4.855 5191.0 0.8874842 0.8823529
## 4844 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4845 -36.1 4.966 5228.1 0.8854962 0.8586118
## 4846 -31.4 0.829 5076.2 0.7666667 0.8983567
## 4847 -36.4 4.860 5191.0 0.9229145 0.9007315
## 4848 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4849 -42.0 4.076 5195.8 0.9229145 0.9007315
## 4850 -42.7 4.968 5228.1 0.8874842 0.8983567
## 4851 -42.7 4.963 5228.1 0.6868132 0.9007315
## 4852 -42.0 4.076 5195.8 0.9229145 0.9007315
## 4853 -46.2 1.266 5099.1 0.8798814 0.8983567
## 4854 -36.1 4.963 5228.1 0.9229145 0.8983567
## 4855 -36.1 4.968 5228.1 0.9198606 0.8983567
## 4856 -42.7 4.961 5228.1 0.8798814 0.9007315
## 4857 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4858 -42.7 4.963 5228.1 0.8874842 0.8586118
## 4859 -42.0 4.153 5195.8 0.9229145 0.8983567
## 4860 -36.4 4.860 5191.0 0.8798814 0.8586118
## 4861 -36.4 4.856 5191.0 0.8874842 0.9007315
## 4862 -42.7 4.961 5228.1 0.8874842 0.8983567
## 4863 -36.4 4.860 5191.0 0.8854962 0.8586118
## 4864 -42.0 4.153 5195.8 0.9074675 0.8983567
## 4865 -42.7 4.963 5228.1 0.8874842 0.8586118
## 4866 -36.1 4.966 5228.1 0.9074675 0.8983567
## 4867 -36.4 4.857 5191.0 0.9074675 0.8586118
## 4868 -42.0 4.076 5195.8 0.9074675 0.9007315
## 4869 -41.8 4.958 5228.1 0.8854962 0.8983567
## 4870 -36.1 4.968 5228.1 0.8798814 0.8586118
## 4871 -46.2 1.270 5099.1 0.8874842 0.8983567
## 4872 -42.7 4.958 5228.1 0.9229145 0.8983567
## 4873 -46.2 1.291 5099.1 0.8851675 0.8983567
## 4874 -36.4 4.856 5191.0 0.8798814 0.9007315
## 4875 -41.8 4.961 5228.1 0.8874842 0.9007315
## 4876 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4877 -42.7 4.962 5228.1 0.9271523 0.8983567
## 4878 -42.7 4.961 5228.1 0.9229145 0.8983567
## 4879 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4880 -33.6 1.044 5076.2 0.8798814 0.8983567
## 4881 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4882 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4883 -42.0 4.076 5195.8 0.8874842 0.8983567
## 4884 -36.1 4.964 5228.1 0.9074675 0.8983567
## 4885 -42.7 4.962 5228.1 0.8798814 0.8586118
## 4886 -40.8 1.262 5076.2 0.8798814 0.8983567
## 4887 -46.2 1.291 5099.1 0.9074675 0.8983567
## 4888 -36.4 4.860 5191.0 0.9074675 0.8983567
## 4889 -42.7 4.961 5228.1 0.8798814 0.8983567
## 4890 -36.1 4.962 5228.1 0.8798814 0.8586118
## 4891 -36.4 4.855 5191.0 0.8854962 0.8586118
## 4892 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4893 -42.7 4.962 5228.1 0.9229145 0.8586118
## 4894 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4895 -41.8 4.961 5228.1 0.9074675 0.8586118
## 4896 -42.7 4.961 5228.1 0.8854962 0.8586118
## 4897 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4898 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4899 -42.0 4.120 5195.8 0.8798814 0.8983567
## 4900 -41.8 4.866 5228.1 0.8854962 0.8586118
## 4901 -46.2 1.266 5099.1 0.9074675 0.8983567
## 4902 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4903 -42.7 4.962 5228.1 0.8851675 0.8983567
## 4904 -41.8 4.958 5228.1 0.9271523 0.8983567
## 4905 -36.1 4.963 5228.1 0.8798814 0.8586118
## 4906 -42.7 4.958 5228.1 0.9229145 0.8983567
## 4907 -36.4 4.856 5191.0 0.8874842 0.8983567
## 4908 -36.1 4.962 5228.1 0.8798814 0.8586118
## 4909 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4910 -42.7 4.962 5228.1 0.8874842 0.9007315
## 4911 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4912 -42.0 4.076 5195.8 0.8854962 0.9007315
## 4913 -41.8 4.864 5228.1 0.9229145 0.9007315
## 4914 -47.1 1.405 5099.1 0.8854962 0.8586118
## 4915 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4916 -46.2 1.266 5099.1 0.9229145 0.9007315
## 4917 -36.4 4.860 5191.0 0.9229145 0.8586118
## 4918 -46.2 1.266 5099.1 0.8798814 0.8983567
## 4919 -36.4 4.860 5191.0 0.9229145 0.8586118
## 4920 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4921 -42.7 4.968 5228.1 0.9271523 0.8983567
## 4922 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4923 -36.4 4.860 5191.0 0.8798814 0.8586118
## 4924 -42.7 4.963 5228.1 0.9229145 0.8586118
## 4925 -42.7 4.958 5228.1 0.8798814 0.9007315
## 4926 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4927 -36.4 4.856 5191.0 0.8874842 0.8983567
## 4928 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4929 -42.0 4.076 5195.8 0.9198606 0.8586118
## 4930 -36.1 4.963 5228.1 0.9198606 0.8983567
## 4931 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4932 -41.8 4.866 5228.1 0.9074675 0.8983567
## 4933 -42.7 4.961 5228.1 0.9074675 0.8983567
## 4934 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4935 -42.7 4.961 5228.1 0.9229145 0.8983567
## 4936 -36.4 4.856 5191.0 0.9229145 0.8983567
## 4937 -36.1 4.965 5228.1 0.8854962 0.9007315
## 4938 -36.4 4.856 5191.0 0.8798814 0.8983567
## 4939 -50.0 1.538 5099.1 0.8798814 0.8983567
## 4940 -41.8 4.958 5228.1 0.8798814 0.8983567
## 4941 -42.7 4.962 5228.1 0.8854962 0.8983567
## 4942 -46.2 1.327 5099.1 0.8798814 0.8983567
## 4943 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4944 -42.7 4.962 5228.1 0.8798814 0.8983567
## 4945 -41.8 4.961 5228.1 0.9229145 0.9007315
## 4946 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4947 -42.7 4.962 5228.1 0.8874842 0.9007315
## 4948 -36.4 4.855 5191.0 0.8798814 0.8983567
## 4949 -41.8 4.864 5228.1 0.9074675 0.8983567
## 4950 -41.8 4.958 5228.1 0.8854962 0.8983567
## 4951 -36.1 4.964 5228.1 0.9198606 0.8983567
## 4952 -47.1 1.423 5099.1 0.8798814 0.8983567
## 4953 -42.7 4.962 5228.1 0.9074675 0.8586118
## 4954 -36.1 4.968 5228.1 0.8854962 0.8586118
## 4955 -42.7 4.963 5228.1 0.9229145 0.9007315
## 4956 -42.0 4.153 5195.8 0.9074675 0.8983567
## 4957 -42.7 4.961 5228.1 0.7666667 0.8983567
## 4958 -41.8 4.955 5228.1 0.8854962 0.8586118
## 4959 -46.2 1.344 5099.1 0.8874842 0.8983567
## 4960 -46.2 1.266 5099.1 0.8798814 0.8983567
## 4961 -42.0 4.153 5195.8 0.6868132 0.8586118
## 4962 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4963 -41.8 4.866 5228.1 0.9229145 0.8983567
## 4964 -36.4 4.857 5191.0 0.9271523 0.8983567
## 4965 -36.1 4.964 5228.1 0.9271523 0.8983567
## 4966 -36.4 4.859 5191.0 0.7666667 0.8983567
## 4967 -36.4 4.855 5191.0 0.9229145 0.9007315
## 4968 -36.4 4.857 5191.0 0.8798814 0.8983567
## 4969 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4970 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4971 -41.8 4.959 5228.1 0.8798814 0.8586118
## 4972 -40.8 1.262 5076.2 0.9074675 0.8586118
## 4973 -36.4 4.857 5191.0 0.8874842 0.8983567
## 4974 -42.7 4.962 5228.1 0.8854962 0.9007315
## 4975 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4976 -42.0 4.076 5195.8 0.8798814 0.8586118
## 4977 -34.8 0.655 5008.7 0.7666667 0.8983567
## 4978 -42.7 4.962 5228.1 0.8854962 0.8983567
## 4979 -41.8 4.961 5228.1 0.9074675 0.8983567
## 4980 -41.8 4.958 5228.1 0.9271523 0.9007315
## 4981 -36.1 4.964 5228.1 0.7666667 0.8983567
## 4982 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4983 -36.4 4.860 5191.0 0.8854962 0.8983567
## 4984 -40.8 1.252 5076.2 0.8851675 0.8586118
## 4985 -36.4 4.857 5191.0 0.9074675 0.8983567
## 4986 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4987 -42.0 4.076 5195.8 0.8874842 0.8586118
## 4988 -46.2 1.291 5099.1 0.8874842 0.8586118
## 4989 -42.7 4.966 5228.1 0.8798814 0.8586118
## 4990 -46.2 1.334 5099.1 0.9271523 0.9007315
## 4991 -42.7 4.961 5228.1 0.9229145 0.8983567
## 4992 -42.7 4.962 5228.1 0.8960396 0.8983567
## 4993 -41.8 4.864 5228.1 0.9229145 0.8983567
## 4994 -41.8 4.961 5228.1 0.9271523 0.8983567
## 4995 -36.4 4.856 5191.0 0.9229145 0.8983567
## 4996 -42.7 4.961 5228.1 0.9229145 0.8983567
## 4997 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4998 -41.8 4.961 5228.1 0.8854962 0.9007315
## 4999 -42.7 4.958 5228.1 0.9271523 0.8983567
## education_encoded default_encoded housing_encoded loan_encoded
## 1 0.9156328 0.8709579 0.8932935 0.8845984
## 2 0.8967552 0.8709579 0.8816392 0.8845984
## 3 0.9057377 0.9512195 0.8816392 0.8845984
## 4 0.8657143 0.8709579 0.8932935 0.8845984
## 5 0.8880126 0.8709579 0.8816392 0.8845984
## 6 0.9156328 0.8709579 0.8816392 0.8996840
## 7 0.8880126 0.8709579 0.8932935 0.8845984
## 8 0.8657143 0.8709579 0.8816392 0.8845984
## 9 0.9156328 0.8709579 0.8932935 0.8845984
## 10 0.8657143 0.8709579 0.8816392 0.8845984
## 11 0.9156328 0.8709579 0.8932935 0.8845984
## 12 0.8880126 0.8709579 0.8816392 0.8996840
## 13 0.8657143 0.8709579 0.8932935 0.8845984
## 14 0.9057377 0.8709579 0.8816392 0.8845984
## 15 0.8657143 0.8709579 0.8932935 0.8845984
## 16 0.8657143 0.8709579 0.8816392 0.8845984
## 17 0.9156328 0.8709579 0.8932935 0.8845984
## 18 0.8880126 0.8709579 0.8816392 0.8845984
## 19 0.8880126 0.8709579 0.8816392 0.8996840
## 20 0.8880126 0.8709579 0.8816392 0.8845984
## 21 0.8657143 0.8709579 0.8816392 0.8845984
## 22 0.8657143 0.8709579 0.8816392 0.8845984
## 23 0.8880126 0.8709579 0.8816392 0.8845984
## 24 0.8967552 0.8709579 0.8816392 0.8845984
## 25 0.9156328 0.8709579 0.8932935 0.8845984
## 26 0.8657143 0.8709579 0.8932935 0.8845984
## 27 0.9075630 0.8709579 0.8932935 0.8845984
## 28 0.8880126 0.8709579 0.8816392 0.8845984
## 29 0.8657143 0.8709579 0.8816392 0.8845984
## 30 0.8880126 0.8709579 0.8816392 0.8996840
## 31 0.8348348 0.9512195 0.8932935 0.8845984
## 32 0.9057377 0.8709579 0.8816392 0.8996840
## 33 0.8657143 0.8709579 0.8816392 0.8845984
## 34 0.8657143 0.8709579 0.8816392 0.8845984
## 35 0.8657143 0.8709579 0.8816392 0.8845984
## 36 0.8657143 0.8709579 0.8932935 0.8845984
## 37 0.9156328 0.9512195 0.8816392 0.8845984
## 38 0.8880126 0.8709579 0.8932935 0.8845984
## 39 0.9156328 0.9512195 0.8816392 0.8845984
## 40 0.9057377 0.8709579 0.8932935 0.8845984
## 41 0.8880126 0.8709579 0.8816392 0.8845984
## 42 0.8880126 0.8709579 0.8816392 0.8845984
## 43 0.8657143 0.9512195 0.8816392 0.8845984
## 44 0.8880126 0.8709579 0.8816392 0.8845984
## 45 0.8348348 0.8709579 0.8932935 0.8845984
## 46 0.8657143 0.8709579 0.8932935 0.8996840
## 47 0.8657143 0.8709579 0.8932935 0.8996840
## 48 0.9075630 0.8709579 0.8932935 0.8845984
## 49 0.8657143 0.8709579 0.8816392 0.8845984
## 50 0.8880126 0.8709579 0.8816392 0.8845984
## 51 0.8657143 0.8709579 0.8816392 0.8845984
## 52 0.8880126 0.8709579 0.8816392 0.8845984
## 53 0.9156328 0.8709579 0.8932935 0.8845984
## 54 0.8657143 0.8709579 0.8816392 0.8845984
## 55 0.8880126 0.8709579 0.8816392 0.8845984
## 56 0.9057377 0.8709579 0.8816392 0.8845984
## 57 0.8657143 0.8709579 0.8816392 0.8845984
## 58 0.8967552 0.8709579 0.8932935 0.8845984
## 59 0.9075630 0.9512195 0.8816392 0.8996840
## 60 0.8967552 0.8709579 0.8932935 0.8996840
## 61 0.8880126 0.8709579 0.8816392 0.8845984
## 62 0.9156328 0.8709579 0.8816392 0.8845984
## 63 0.9156328 0.8709579 0.8816392 0.8996840
## 64 0.8657143 0.8709579 0.8816392 0.8845984
## 65 0.8657143 0.8709579 0.8816392 0.8845984
## 66 0.8967552 0.9512195 0.8816392 0.8845984
## 67 0.8880126 0.8709579 0.8816392 0.8845984
## 68 0.8657143 0.8709579 0.8816392 0.8845984
## 69 0.8880126 0.8709579 0.8816392 0.8845984
## 70 0.8657143 0.8709579 0.8932935 0.8845984
## 71 0.8657143 0.8709579 0.8816392 0.8845984
## 72 0.8880126 0.8709579 0.8932935 0.8845984
## 73 0.8880126 0.8709579 0.8932935 0.8845984
## 74 0.8880126 0.8709579 0.8816392 0.8845984
## 75 0.8657143 0.8709579 0.8932935 0.8845984
## 76 0.8657143 0.8709579 0.8932935 0.8996840
## 77 0.8657143 0.8709579 0.8932935 0.8845984
## 78 0.9057377 0.8709579 0.8816392 0.8996840
## 79 0.8880126 0.8709579 0.8816392 0.8845984
## 80 0.9156328 0.8709579 0.8816392 0.8845984
## 81 0.8880126 0.8709579 0.8816392 0.8996840
## 82 0.8657143 0.8709579 0.8932935 0.8845984
## 83 0.8657143 0.8709579 0.8816392 0.8845984
## 84 0.8967552 0.8709579 0.8816392 0.8845984
## 85 0.9057377 0.8709579 0.8932935 0.8845984
## 86 0.8880126 0.8709579 0.8932935 0.8845984
## 87 0.9057377 0.8709579 0.8932935 0.8845984
## 88 0.8967552 0.8709579 0.8816392 0.8845984
## 89 0.8657143 0.8709579 0.8816392 0.8845984
## 90 0.9156328 0.8709579 0.8816392 0.8845984
## 91 0.8657143 0.8709579 0.8816392 0.8996840
## 92 0.8880126 0.8709579 0.8816392 0.8845984
## 93 0.8880126 0.8709579 0.8932935 0.8845984
## 94 0.8967552 0.8709579 0.8816392 0.8845984
## 95 0.8967552 0.8709579 0.8816392 0.8845984
## 96 0.8967552 0.8709579 0.8816392 0.8845984
## 97 0.8348348 0.8709579 0.8932935 0.8845984
## 98 0.9156328 0.8709579 0.8816392 0.8845984
## 99 0.9075630 0.8709579 0.8816392 0.8845984
## 100 0.8967552 0.8709579 0.8932935 0.8845984
## 101 0.8967552 0.8709579 0.8932935 0.8845984
## 102 0.8880126 0.8709579 0.8816392 0.8845984
## 103 0.8657143 0.8709579 0.8932935 0.8845984
## 104 0.8880126 0.8709579 0.8932935 0.8996840
## 105 0.8880126 0.9512195 0.8932935 0.8845984
## 106 0.8880126 0.8709579 0.8932935 0.8845984
## 107 0.8657143 0.8709579 0.8816392 0.8845984
## 108 0.8880126 0.8709579 0.8816392 0.8845984
## 109 0.8880126 0.8709579 0.8932935 0.8845984
## 110 0.8657143 0.8709579 0.8816392 0.8845984
## 111 0.8967552 0.8709579 0.8932935 0.8845984
## 112 0.8657143 0.8709579 0.8816392 0.8845984
## 113 0.8657143 0.8709579 0.8816392 0.8845984
## 114 0.9156328 0.8709579 0.8932935 0.8845984
## 115 0.8967552 0.8709579 0.8932935 0.8845984
## 116 0.9075630 0.8709579 0.8816392 0.8845984
## 117 0.8657143 0.8709579 0.8816392 0.8845984
## 118 0.8880126 0.8709579 0.8932935 0.8845984
## 119 0.8880126 0.8709579 0.8932935 0.8845984
## 120 0.8348348 0.8709579 0.8816392 0.8845984
## 121 0.9156328 0.8709579 0.8932935 0.8845984
## 122 0.9156328 0.8709579 0.8932935 0.8845984
## 123 0.8880126 0.8709579 0.8816392 0.8845984
## 124 0.9075630 0.8709579 0.8816392 0.8996840
## 125 0.9075630 0.8709579 0.8816392 0.8845984
## 126 0.8657143 0.8709579 0.8932935 0.8845984
## 127 0.8967552 0.9512195 0.8816392 0.8996840
## 128 0.9057377 0.8709579 0.8816392 0.8845984
## 129 0.8657143 0.8709579 0.8816392 0.8996840
## 130 0.8880126 0.8709579 0.8816392 0.8845984
## 131 0.8880126 0.8709579 0.8816392 0.8845984
## 132 0.8657143 0.8709579 0.8932935 0.8845984
## 133 0.8657143 0.8709579 0.8816392 0.8845984
## 134 0.9057377 0.9512195 0.8816392 0.8996840
## 135 0.9075630 0.8709579 0.8932935 0.8996840
## 136 0.8657143 0.8709579 0.8932935 0.8996840
## 137 0.8880126 0.9512195 0.8816392 0.8845984
## 138 0.8657143 0.8709579 0.8932935 0.8845984
## 139 0.8348348 0.8709579 0.8816392 0.8845984
## 140 0.8348348 0.8709579 0.8932935 0.8845984
## 141 0.9156328 0.8709579 0.8816392 0.8845984
## 142 0.8657143 0.8709579 0.8816392 0.8845984
## 143 0.9156328 0.8709579 0.8932935 0.8845984
## 144 0.8880126 0.8709579 0.8816392 0.8845984
## 145 0.8657143 0.8709579 0.8932935 0.8845984
## 146 0.8880126 0.8709579 0.8932935 0.8845984
## 147 0.8967552 0.8709579 0.8932935 0.8845984
## 148 0.8657143 0.8709579 0.8816392 0.8845984
## 149 0.8880126 0.8709579 0.8816392 0.8845984
## 150 0.8880126 0.8709579 0.8816392 0.8845984
## 151 0.8880126 0.8709579 0.8932935 0.8845984
## 152 0.8880126 0.8709579 0.8816392 0.8845984
## 153 0.9156328 0.8709579 0.8816392 0.8845984
## 154 0.8880126 0.8709579 0.8932935 0.8845984
## 155 0.8657143 0.8709579 0.8932935 0.8845984
## 156 0.8967552 0.8709579 0.8816392 0.8845984
## 157 0.8880126 0.8709579 0.8816392 0.8845984
## 158 0.8880126 0.8709579 0.8816392 0.8996840
## 159 0.9156328 0.8709579 0.8816392 0.8845984
## 160 0.8657143 0.8709579 0.8932935 0.8845984
## 161 0.9156328 0.8709579 0.8816392 0.8996840
## 162 0.8657143 0.8709579 0.8816392 0.8845984
## 163 0.8657143 0.8709579 0.8932935 0.8845984
## 164 0.8657143 0.8709579 0.8816392 0.8996840
## 165 0.8967552 0.8709579 0.8816392 0.8845984
## 166 0.9156328 0.9512195 0.8816392 0.8845984
## 167 0.8657143 0.8709579 0.8816392 0.8845984
## 168 0.8880126 0.8709579 0.8816392 0.8845984
## 169 0.9075630 0.8709579 0.8932935 0.8996840
## 170 0.9057377 0.8709579 0.8816392 0.8845984
## 171 0.9075630 0.8709579 0.8932935 0.8845984
## 172 0.9057377 0.9512195 0.8932935 0.8845984
## 173 0.9156328 0.8709579 0.8932935 0.8845984
## 174 0.8880126 0.8709579 0.8932935 0.8845984
## 175 0.8657143 0.8709579 0.8816392 0.8845984
## 176 0.9156328 0.8709579 0.8816392 0.8845984
## 177 0.9156328 0.8709579 0.8816392 0.8845984
## 178 0.8657143 0.8709579 0.8932935 0.8845984
## 179 0.9156328 0.8709579 0.8816392 0.8845984
## 180 0.8967552 0.8709579 0.8932935 0.8845984
## 181 0.9156328 0.9512195 0.8816392 0.8845984
## 182 0.8657143 0.8709579 0.8932935 0.8845984
## 183 0.9075630 0.9512195 0.8932935 0.8845984
## 184 0.8880126 0.8709579 0.8932935 0.8996840
## 185 0.8657143 0.8709579 0.8816392 0.8845984
## 186 0.8657143 0.8709579 0.8932935 0.8845984
## 187 0.9075630 0.8709579 0.8816392 0.8845984
## 188 0.8880126 0.8709579 0.8932935 0.8845984
## 189 0.9057377 0.8709579 0.8932935 0.8845984
## 190 0.8967552 0.8709579 0.8932935 0.8845984
## 191 0.8967552 0.8709579 0.8932935 0.8845984
## 192 0.9156328 0.8709579 0.8816392 0.8845984
## 193 0.8657143 0.8709579 0.8816392 0.8845984
## 194 0.9156328 0.8709579 0.8816392 0.8845984
## 195 0.8967552 0.8709579 0.8932935 0.8845984
## 196 0.8657143 0.8709579 0.8932935 0.8845984
## 197 0.9075630 0.8709579 0.8816392 0.8845984
## 198 0.8880126 0.8709579 0.8816392 0.8996840
## 199 0.8348348 0.8709579 0.8932935 0.8845984
## 200 0.9156328 0.8709579 0.8932935 0.8845984
## 201 0.9156328 0.9512195 0.8816392 0.8845984
## 202 0.8967552 0.8709579 0.8816392 0.8845984
## 203 0.8967552 0.8709579 0.8816392 0.8845984
## 204 0.9156328 0.8709579 0.8932935 0.8845984
## 205 0.9156328 0.9512195 0.8932935 0.8996840
## 206 0.8967552 0.8709579 0.8816392 0.8845984
## 207 0.8880126 0.8709579 0.8932935 0.8845984
## 208 0.8657143 0.8709579 0.8932935 0.8845984
## 209 0.8880126 0.8709579 0.8816392 0.8845984
## 210 0.8967552 0.8709579 0.8816392 0.8845984
## 211 0.8657143 0.8709579 0.8816392 0.8996840
## 212 0.8657143 0.8709579 0.8816392 0.8845984
## 213 0.9057377 0.8709579 0.8816392 0.8845984
## 214 0.8880126 0.8709579 0.8816392 0.8845984
## 215 0.8880126 0.8709579 0.8816392 0.8845984
## 216 0.8880126 0.8709579 0.8816392 0.8845984
## 217 0.9057377 0.8709579 0.8932935 0.8845984
## 218 0.8657143 0.9512195 0.8932935 0.8845984
## 219 0.9075630 0.8709579 0.8816392 0.8996840
## 220 0.9156328 0.8709579 0.8932935 0.8845984
## 221 0.9156328 0.8709579 0.8932935 0.8996840
## 222 0.8657143 0.8709579 0.8932935 0.8845984
## 223 0.8880126 0.8709579 0.8816392 0.8845984
## 224 0.8657143 0.8709579 0.8816392 0.8845984
## 225 0.8880126 0.9512195 0.8816392 0.8845984
## 226 0.9057377 0.8709579 0.8816392 0.8845984
## 227 0.8880126 0.8709579 0.8816392 0.8845984
## 228 0.8967552 0.8709579 0.8816392 0.8845984
## 229 0.9075630 0.9512195 0.8816392 0.8845984
## 230 0.8657143 0.8709579 0.8816392 0.8996840
## 231 0.8657143 0.8709579 0.8816392 0.8845984
## 232 0.8657143 0.8709579 0.8816392 0.8845984
## 233 0.8657143 0.8709579 0.8816392 0.8996840
## 234 0.9075630 0.8709579 0.8932935 0.8845984
## 235 0.8657143 0.8709579 0.8816392 0.8845984
## 236 0.8967552 0.8709579 0.8932935 0.8845984
## 237 0.9075630 0.8709579 0.8932935 0.8845984
## 238 0.9075630 0.8709579 0.8932935 0.8845984
## 239 0.8880126 0.8709579 0.9032258 0.9032258
## 240 0.8657143 0.8709579 0.8932935 0.8845984
## 241 0.8657143 0.8709579 0.8816392 0.8845984
## 242 0.8967552 0.8709579 0.8816392 0.8845984
## 243 0.8880126 0.8709579 0.8816392 0.8845984
## 244 0.8657143 0.8709579 0.8816392 0.8845984
## 245 0.8880126 0.8709579 0.8816392 0.8845984
## 246 0.8657143 0.8709579 0.8932935 0.8845984
## 247 0.8967552 0.8709579 0.8932935 0.8996840
## 248 0.8880126 0.8709579 0.8816392 0.8845984
## 249 0.8657143 0.8709579 0.8932935 0.8845984
## 250 0.8880126 0.8709579 0.8816392 0.8845984
## 251 0.8880126 0.8709579 0.8816392 0.8845984
## 252 0.9075630 0.8709579 0.8932935 0.8845984
## 253 0.8880126 0.8709579 0.8816392 0.8845984
## 254 0.8880126 0.8709579 0.8816392 0.8845984
## 255 0.8967552 0.8709579 0.8816392 0.8845984
## 256 0.8967552 0.8709579 0.8932935 0.8845984
## 257 0.9075630 0.8709579 0.8816392 0.8845984
## 258 0.8880126 0.9512195 0.8816392 0.8845984
## 259 0.8880126 0.8709579 0.8816392 0.8845984
## 260 0.9075630 0.8709579 0.8816392 0.8845984
## 261 0.8880126 0.8709579 0.8932935 0.8845984
## 262 0.8657143 0.8709579 0.9032258 0.9032258
## 263 0.8657143 0.8709579 0.8816392 0.8845984
## 264 0.8880126 0.8709579 0.8932935 0.8845984
## 265 0.9075630 0.9512195 0.8816392 0.8845984
## 266 0.8657143 0.8709579 0.8932935 0.8845984
## 267 0.8880126 0.8709579 0.8816392 0.8845984
## 268 0.8657143 0.8709579 0.8816392 0.8845984
## 269 0.8657143 0.8709579 0.8816392 0.8845984
## 270 0.9057377 0.8709579 0.8816392 0.8845984
## 271 0.9156328 0.9512195 0.8932935 0.8996840
## 272 0.8657143 0.9512195 0.8932935 0.8996840
## 273 0.8880126 0.8709579 0.9032258 0.9032258
## 274 0.8967552 0.9512195 0.8816392 0.8996840
## 275 0.9075630 0.8709579 0.8932935 0.8845984
## 276 0.8880126 0.8709579 0.8932935 0.8845984
## 277 0.8657143 0.8709579 0.8932935 0.8996840
## 278 0.9156328 0.8709579 0.8932935 0.8845984
## 279 0.8880126 0.8709579 0.8816392 0.8845984
## 280 0.8657143 0.8709579 0.8816392 0.8845984
## 281 0.8967552 0.8709579 0.8816392 0.8845984
## 282 0.9156328 0.8709579 0.8932935 0.8845984
## 283 0.9057377 0.8709579 0.8816392 0.8845984
## 284 0.8657143 0.8709579 0.8816392 0.8996840
## 285 0.8657143 0.8709579 0.8816392 0.8996840
## 286 0.8880126 0.8709579 0.8932935 0.8845984
## 287 0.8657143 0.8709579 0.9032258 0.9032258
## 288 0.8967552 0.8709579 0.8816392 0.8845984
## 289 0.8880126 0.8709579 0.8816392 0.8845984
## 290 0.8880126 0.8709579 0.8816392 0.8845984
## 291 0.8657143 0.8709579 0.8932935 0.8845984
## 292 0.8348348 0.8709579 0.8816392 0.8845984
## 293 0.9156328 0.8709579 0.8932935 0.8845984
## 294 0.9075630 0.8709579 0.8932935 0.8845984
## 295 0.9156328 0.8709579 0.8932935 0.8845984
## 296 0.8880126 0.8709579 0.8816392 0.8845984
## 297 0.8880126 0.8709579 0.8816392 0.8996840
## 298 0.8880126 0.8709579 0.8816392 0.8996840
## 299 0.9075630 0.9512195 0.8816392 0.8845984
## 300 0.8657143 0.8709579 0.8816392 0.8845984
## 301 0.8657143 0.9512195 0.9032258 0.9032258
## 302 0.9075630 0.9512195 0.8816392 0.8996840
## 303 0.8657143 0.8709579 0.8816392 0.8845984
## 304 0.8657143 0.8709579 0.8932935 0.8996840
## 305 0.8967552 0.8709579 0.8932935 0.8845984
## 306 0.9075630 0.8709579 0.8816392 0.8996840
## 307 0.8967552 0.8709579 0.8816392 0.8845984
## 308 0.9075630 0.8709579 0.8932935 0.8845984
## 309 0.8657143 0.8709579 0.8816392 0.8845984
## 310 0.8657143 0.8709579 0.8816392 0.8845984
## 311 0.8657143 0.8709579 0.8932935 0.8845984
## 312 0.9075630 0.8709579 0.8932935 0.8845984
## 313 0.9156328 0.8709579 0.8932935 0.8996840
## 314 0.9075630 0.8709579 0.8816392 0.8996840
## 315 0.8880126 0.8709579 0.8932935 0.8845984
## 316 0.8880126 0.8709579 0.8932935 0.8996840
## 317 0.8657143 0.8709579 0.8816392 0.8845984
## 318 0.8880126 0.8709579 0.8932935 0.8845984
## 319 0.8657143 0.8709579 0.9032258 0.9032258
## 320 0.9057377 0.8709579 0.8816392 0.8845984
## 321 0.9156328 0.8709579 0.8932935 0.8845984
## 322 0.8880126 0.8709579 0.8816392 0.8845984
## 323 0.9057377 0.8709579 0.8816392 0.8845984
## 324 0.8880126 0.8709579 0.8932935 0.8845984
## 325 0.8657143 0.8709579 0.8816392 0.8845984
## 326 0.9156328 0.8709579 0.8816392 0.8845984
## 327 0.9156328 0.8709579 0.8932935 0.8845984
## 328 0.8657143 0.8709579 0.8932935 0.8845984
## 329 0.8880126 0.8709579 0.8932935 0.8845984
## 330 0.8880126 0.8709579 0.8816392 0.8845984
## 331 0.8657143 0.8709579 0.8816392 0.8996840
## 332 0.8657143 0.8709579 0.8816392 0.8845984
## 333 0.8348348 0.8709579 0.8816392 0.8845984
## 334 0.8657143 0.8709579 0.8932935 0.8845984
## 335 0.8348348 0.8709579 0.8816392 0.8845984
## 336 0.8967552 0.8709579 0.8816392 0.8996840
## 337 0.8880126 0.8709579 0.8816392 0.8996840
## 338 0.9075630 0.8709579 0.8932935 0.8845984
## 339 0.8880126 0.8709579 0.8932935 0.8845984
## 340 0.8880126 0.8709579 0.8816392 0.8996840
## 341 0.8657143 0.8709579 0.8816392 0.8845984
## 342 0.8657143 0.8709579 0.8932935 0.8845984
## 343 0.8967552 0.8709579 0.8816392 0.8845984
## 344 0.8967552 0.8709579 0.8816392 0.8845984
## 345 0.8880126 0.9512195 0.8932935 0.8845984
## 346 0.8880126 0.8709579 0.8932935 0.8845984
## 347 0.8657143 0.8709579 0.9032258 0.9032258
## 348 0.8657143 0.8709579 0.8816392 0.8845984
## 349 0.8657143 0.8709579 0.8932935 0.8845984
## 350 0.9156328 0.8709579 0.8816392 0.8845984
## 351 0.9156328 0.8709579 0.8932935 0.8845984
## 352 0.8880126 0.8709579 0.8932935 0.8845984
## 353 0.8657143 0.8709579 0.8816392 0.8996840
## 354 0.8880126 0.8709579 0.8816392 0.8845984
## 355 0.9057377 0.8709579 0.8932935 0.8845984
## 356 0.8880126 0.8709579 0.8816392 0.8845984
## 357 0.8657143 0.9512195 0.9032258 0.9032258
## 358 0.8880126 0.8709579 0.8932935 0.8845984
## 359 0.9156328 0.8709579 0.8816392 0.8845984
## 360 0.8348348 0.8709579 0.8816392 0.8845984
## 361 0.8967552 0.8709579 0.8816392 0.8845984
## 362 0.8657143 0.8709579 0.8816392 0.8845984
## 363 0.8880126 0.8709579 0.8816392 0.8845984
## 364 0.8880126 0.8709579 0.8816392 0.8845984
## 365 0.8967552 0.8709579 0.8816392 0.8996840
## 366 0.8657143 0.8709579 0.8816392 0.8845984
## 367 0.9075630 0.8709579 0.8816392 0.8845984
## 368 0.8657143 0.8709579 0.8816392 0.8845984
## 369 0.8967552 0.8709579 0.8932935 0.8845984
## 370 0.8880126 0.8709579 0.8932935 0.8845984
## 371 0.8880126 0.8709579 0.8816392 0.8845984
## 372 0.8657143 0.8709579 0.8932935 0.8845984
## 373 0.8880126 0.8709579 0.8932935 0.8845984
## 374 0.8657143 0.8709579 0.8816392 0.8845984
## 375 0.8880126 0.8709579 0.8816392 0.8845984
## 376 0.8967552 0.8709579 0.8932935 0.8845984
## 377 0.8967552 0.8709579 0.8816392 0.8845984
## 378 0.8657143 0.8709579 0.9032258 0.9032258
## 379 0.9156328 0.8709579 0.8816392 0.8845984
## 380 0.9075630 0.9512195 0.8816392 0.8845984
## 381 0.8880126 0.8709579 0.8816392 0.8845984
## 382 0.8348348 0.8709579 0.8932935 0.8845984
## 383 0.8880126 0.8709579 0.8932935 0.8845984
## 384 0.9057377 0.8709579 0.8932935 0.8996840
## 385 0.8348348 0.8709579 0.8816392 0.8845984
## 386 0.9156328 0.9512195 0.8932935 0.8845984
## 387 0.8657143 0.8709579 0.8816392 0.8845984
## 388 0.8657143 0.8709579 0.8932935 0.8845984
## 389 0.9156328 0.8709579 0.8932935 0.8996840
## 390 0.8880126 0.8709579 0.8816392 0.8845984
## 391 0.8657143 0.8709579 0.8816392 0.8845984
## 392 0.9156328 0.8709579 0.8932935 0.8845984
## 393 0.8657143 0.8709579 0.8932935 0.8845984
## 394 0.8657143 0.8709579 0.8932935 0.8845984
## 395 0.9075630 0.8709579 0.8816392 0.8845984
## 396 0.8880126 0.8709579 0.8932935 0.8845984
## 397 0.8657143 0.8709579 0.8816392 0.8845984
## 398 0.9156328 0.8709579 0.8816392 0.8845984
## 399 0.8880126 0.8709579 0.8816392 0.8845984
## 400 0.9057377 0.8709579 0.8932935 0.8845984
## 401 0.8880126 0.8709579 0.8932935 0.8996840
## 402 0.9057377 0.8709579 0.8816392 0.8845984
## 403 0.9057377 0.8709579 0.8816392 0.8845984
## 404 0.8967552 0.8709579 0.8816392 0.8845984
## 405 0.8880126 0.8709579 0.8816392 0.8845984
## 406 0.8657143 0.8709579 0.8816392 0.8845984
## 407 0.8880126 0.8709579 0.8816392 0.8845984
## 408 0.8880126 0.8709579 0.9032258 0.9032258
## 409 0.8880126 0.8709579 0.8816392 0.8845984
## 410 0.8967552 0.8709579 0.8932935 0.8845984
## 411 0.8657143 0.8709579 0.8932935 0.8845984
## 412 0.8880126 0.8709579 0.8816392 0.8845984
## 413 0.8880126 0.8709579 0.8932935 0.8845984
## 414 0.8657143 0.8709579 0.8932935 0.8845984
## 415 0.8657143 0.9512195 0.8932935 0.8845984
## 416 0.9075630 0.8709579 0.8816392 0.8845984
## 417 0.9156328 0.8709579 0.8932935 0.8845984
## 418 0.8657143 0.8709579 0.8932935 0.8845984
## 419 0.8657143 0.8709579 0.8932935 0.8845984
## 420 0.8880126 0.8709579 0.8816392 0.8845984
## 421 0.8967552 0.8709579 0.8816392 0.8845984
## 422 0.8657143 0.8709579 0.8816392 0.8845984
## 423 0.8657143 0.9512195 0.8932935 0.8845984
## 424 0.8967552 0.8709579 0.8932935 0.8845984
## 425 0.8880126 0.9512195 0.8816392 0.8845984
## 426 0.8880126 0.8709579 0.8816392 0.8845984
## 427 0.8657143 0.8709579 0.8932935 0.8845984
## 428 0.8880126 0.8709579 0.8816392 0.8845984
## 429 0.9075630 0.8709579 0.8932935 0.8845984
## 430 0.8880126 0.9512195 0.8816392 0.8996840
## 431 0.8657143 0.8709579 0.8816392 0.8845984
## 432 0.8880126 0.8709579 0.8816392 0.8845984
## 433 0.8880126 0.9512195 0.8816392 0.8845984
## 434 0.8657143 0.8709579 0.8816392 0.8845984
## 435 0.9057377 0.8709579 0.8816392 0.8845984
## 436 0.8880126 0.8709579 0.8816392 0.8845984
## 437 0.8880126 0.8709579 0.8816392 0.8845984
## 438 0.8657143 0.8709579 0.8816392 0.8996840
## 439 0.8657143 0.8709579 0.8932935 0.8996840
## 440 0.8657143 0.8709579 0.8932935 0.8845984
## 441 0.9156328 0.8709579 0.8816392 0.8845984
## 442 0.9156328 0.8709579 0.8816392 0.8845984
## 443 0.8967552 0.8709579 0.8816392 0.8845984
## 444 0.8657143 0.8709579 0.8816392 0.8845984
## 445 0.8657143 0.8709579 0.8932935 0.8845984
## 446 0.9075630 0.8709579 0.8816392 0.8845984
## 447 0.8657143 0.8709579 0.8816392 0.8845984
## 448 0.9156328 0.8709579 0.8932935 0.8845984
## 449 0.9156328 0.8709579 0.8816392 0.8845984
## 450 0.8967552 0.8709579 0.8932935 0.8845984
## 451 0.9075630 0.8709579 0.8816392 0.8845984
## 452 0.9075630 0.9512195 0.8932935 0.8845984
## 453 0.9075630 0.9512195 0.8816392 0.8845984
## 454 0.9075630 0.8709579 0.8816392 0.8996840
## 455 0.9075630 0.8709579 0.8816392 0.8845984
## 456 0.8348348 0.8709579 0.8816392 0.8845984
## 457 0.8880126 0.8709579 0.8816392 0.8845984
## 458 0.8657143 0.8709579 0.8932935 0.8996840
## 459 0.9057377 0.8709579 0.8816392 0.8845984
## 460 0.9075630 0.8709579 0.8816392 0.8996840
## 461 0.8967552 0.8709579 0.8816392 0.8845984
## 462 0.8657143 0.8709579 0.8932935 0.8845984
## 463 0.9075630 0.8709579 0.8816392 0.8996840
## 464 0.8880126 0.8709579 0.8932935 0.8845984
## 465 0.9075630 0.8709579 0.8816392 0.8996840
## 466 0.8657143 0.8709579 0.8932935 0.8845984
## 467 0.8967552 0.8709579 0.8816392 0.8996840
## 468 0.8348348 0.9512195 0.8932935 0.8845984
## 469 0.8880126 0.8709579 0.8816392 0.8845984
## 470 0.8657143 0.8709579 0.8932935 0.8996840
## 471 0.8880126 0.8709579 0.8816392 0.8845984
## 472 0.9156328 0.8709579 0.9032258 0.9032258
## 473 0.8657143 0.8709579 0.8932935 0.8845984
## 474 0.8880126 0.8709579 0.8816392 0.8845984
## 475 0.9057377 0.9512195 0.8816392 0.8845984
## 476 0.8657143 0.8709579 0.8816392 0.8845984
## 477 0.8657143 0.8709579 0.8932935 0.8845984
## 478 0.9075630 0.8709579 0.8932935 0.8845984
## 479 0.9156328 0.9512195 0.8816392 0.8845984
## 480 0.9156328 0.8709579 0.8932935 0.8996840
## 481 0.8348348 0.8709579 0.8816392 0.8845984
## 482 0.8657143 0.8709579 0.8816392 0.8996840
## 483 0.8657143 0.9512195 0.8816392 0.8845984
## 484 0.8657143 0.8709579 0.8932935 0.8845984
## 485 0.8657143 0.8709579 0.8816392 0.8845984
## 486 0.8657143 0.8709579 0.8932935 0.8845984
## 487 0.8657143 0.8709579 0.8932935 0.8845984
## 488 0.8880126 0.8709579 0.8816392 0.8996840
## 489 0.8657143 0.9512195 0.8816392 0.8845984
## 490 0.8880126 0.8709579 0.8932935 0.8845984
## 491 0.8967552 0.8709579 0.8932935 0.8845984
## 492 0.9075630 0.8709579 0.8932935 0.8845984
## 493 0.8880126 0.8709579 0.8816392 0.8845984
## 494 0.8657143 0.8709579 0.8932935 0.8845984
## 495 0.9156328 0.9512195 0.8816392 0.8845984
## 496 0.8967552 0.8709579 0.8816392 0.8845984
## 497 0.8880126 0.8709579 0.8932935 0.8845984
## 498 0.8967552 0.8709579 0.8816392 0.8845984
## 499 0.9156328 0.8709579 0.8932935 0.8845984
## 500 0.8657143 0.8709579 0.8932935 0.8845984
## 501 0.8657143 0.8709579 0.8816392 0.8845984
## 502 0.9057377 0.8709579 0.8816392 0.8845984
## 503 0.8657143 0.8709579 0.8932935 0.8996840
## 504 0.8880126 0.8709579 0.8932935 0.8845984
## 505 0.8348348 0.8709579 0.8816392 0.8996840
## 506 0.8967552 0.8709579 0.8932935 0.8845984
## 507 0.9156328 0.9512195 0.8816392 0.8996840
## 508 0.9156328 0.8709579 0.8816392 0.8996840
## 509 0.8880126 0.8709579 0.8932935 0.8996840
## 510 0.8657143 0.8709579 0.8816392 0.8845984
## 511 0.8348348 0.8709579 0.8816392 0.8845984
## 512 0.9156328 0.9512195 0.8932935 0.8845984
## 513 0.8657143 0.8709579 0.8816392 0.8845984
## 514 0.8967552 0.8709579 0.8932935 0.8845984
## 515 0.8967552 0.8709579 0.8816392 0.8845984
## 516 0.8880126 0.8709579 0.8932935 0.8845984
## 517 0.8657143 0.8709579 0.8932935 0.8845984
## 518 0.8348348 0.9512195 0.8816392 0.8845984
## 519 0.8657143 0.8709579 0.8816392 0.8845984
## 520 0.8967552 0.8709579 0.8816392 0.8996840
## 521 0.8657143 0.8709579 0.8932935 0.8845984
## 522 0.8657143 0.8709579 0.8932935 0.8845984
## 523 0.9156328 0.8709579 0.8932935 0.8845984
## 524 0.8880126 0.8709579 0.8816392 0.8845984
## 525 0.8967552 0.8709579 0.8816392 0.8845984
## 526 0.8657143 0.8709579 0.8932935 0.8845984
## 527 0.8880126 0.8709579 0.8932935 0.8845984
## 528 0.9057377 0.9512195 0.8816392 0.8996840
## 529 0.8967552 0.8709579 0.8816392 0.8845984
## 530 0.9057377 0.8709579 0.8816392 0.8845984
## 531 0.8880126 0.8709579 0.8816392 0.8845984
## 532 0.8967552 0.8709579 0.8816392 0.8845984
## 533 0.8967552 0.8709579 0.8932935 0.8845984
## 534 0.8880126 0.8709579 0.8816392 0.8996840
## 535 0.8657143 0.8709579 0.8816392 0.8845984
## 536 0.8657143 0.8709579 0.8816392 0.8845984
## 537 0.8967552 0.8709579 0.9032258 0.9032258
## 538 0.8657143 0.8709579 0.8816392 0.8845984
## 539 0.8880126 0.8709579 0.8932935 0.8845984
## 540 0.8880126 0.9512195 0.8932935 0.8845984
## 541 0.8657143 0.8709579 0.8932935 0.8845984
## 542 0.9156328 0.8709579 0.8932935 0.8845984
## 543 0.9057377 0.9512195 0.8932935 0.8845984
## 544 0.8967552 0.8709579 0.8932935 0.8845984
## 545 0.8880126 0.8709579 0.8816392 0.8845984
## 546 0.8967552 0.8709579 0.8816392 0.8845984
## 547 0.8657143 0.8709579 0.8816392 0.8845984
## 548 0.9075630 0.8709579 0.8816392 0.8845984
## 549 0.8657143 0.8709579 0.8932935 0.8845984
## 550 0.8880126 0.8709579 0.8816392 0.8996840
## 551 0.8967552 0.8709579 0.8932935 0.8996840
## 552 0.8967552 0.8709579 0.8816392 0.8996840
## 553 0.9156328 0.8709579 0.8932935 0.8845984
## 554 0.9057377 0.8709579 0.8816392 0.8845984
## 555 0.8348348 0.8709579 0.8932935 0.8845984
## 556 0.8657143 0.8709579 0.8932935 0.8996840
## 557 0.8880126 0.8709579 0.8816392 0.8845984
## 558 0.8967552 0.8709579 0.8932935 0.8845984
## 559 0.9156328 0.8709579 0.8816392 0.8845984
## 560 0.8657143 0.8709579 0.8816392 0.8845984
## 561 0.8880126 0.8709579 0.8816392 0.8996840
## 562 0.8967552 0.8709579 0.8816392 0.8845984
## 563 0.8657143 0.8709579 0.8816392 0.8845984
## 564 0.8657143 0.8709579 0.8932935 0.8996840
## 565 0.8657143 0.8709579 0.8932935 0.8845984
## 566 0.8967552 0.9512195 0.8932935 0.8845984
## 567 0.8967552 0.8709579 0.8932935 0.8845984
## 568 0.8880126 0.8709579 0.8816392 0.8845984
## 569 0.9156328 0.8709579 0.8932935 0.8845984
## 570 0.9156328 0.8709579 0.8816392 0.8996840
## 571 0.9156328 0.9512195 0.8816392 0.8845984
## 572 0.9156328 0.8709579 0.8932935 0.8845984
## 573 0.8657143 0.8709579 0.8816392 0.8845984
## 574 0.9075630 0.8709579 0.8816392 0.8845984
## 575 0.8657143 0.8709579 0.8932935 0.8845984
## 576 0.8657143 0.8709579 0.8932935 0.8845984
## 577 0.8880126 0.8709579 0.8932935 0.8845984
## 578 0.9057377 0.9512195 0.8816392 0.8845984
## 579 0.8880126 0.8709579 0.8816392 0.8996840
## 580 0.9075630 0.8709579 0.8816392 0.8845984
## 581 0.8967552 0.8709579 0.8816392 0.8996840
## 582 0.8657143 0.9512195 0.8932935 0.8845984
## 583 0.8657143 0.8709579 0.8816392 0.8845984
## 584 0.9156328 0.8709579 0.8932935 0.8845984
## 585 0.9057377 0.8709579 0.8932935 0.8845984
## 586 0.8880126 0.8709579 0.8932935 0.8845984
## 587 0.8880126 0.9512195 0.8932935 0.8845984
## 588 0.8657143 0.8709579 0.8816392 0.8845984
## 589 0.8880126 0.9512195 0.8816392 0.8845984
## 590 0.9075630 0.8709579 0.8816392 0.8845984
## 591 0.8348348 0.9512195 0.8932935 0.8845984
## 592 0.9156328 0.8709579 0.8932935 0.8845984
## 593 0.8880126 0.8709579 0.8816392 0.8996840
## 594 0.8880126 0.8709579 0.8816392 0.8845984
## 595 0.9075630 0.8709579 0.8816392 0.8845984
## 596 0.8657143 0.8709579 0.8932935 0.8845984
## 597 0.8880126 0.8709579 0.8816392 0.8845984
## 598 0.8657143 0.8709579 0.8816392 0.8845984
## 599 0.8967552 0.8709579 0.8932935 0.8845984
## 600 0.8880126 0.8709579 0.8816392 0.8996840
## 601 0.8967552 0.8709579 0.8932935 0.8845984
## 602 0.8880126 0.8709579 0.8932935 0.8845984
## 603 0.8657143 0.8709579 0.8816392 0.8996840
## 604 0.8880126 0.9512195 0.8932935 0.8845984
## 605 0.8880126 0.8709579 0.8816392 0.8845984
## 606 0.8967552 0.8709579 0.8932935 0.8845984
## 607 0.9075630 0.9512195 0.8932935 0.8845984
## 608 0.8880126 0.8709579 0.8816392 0.8996840
## 609 0.8967552 0.8709579 0.8816392 0.8845984
## 610 0.8657143 0.8709579 0.8932935 0.8845984
## 611 0.8657143 0.8709579 0.8816392 0.8996840
## 612 0.8880126 0.8709579 0.8816392 0.8845984
## 613 0.9156328 0.8709579 0.8932935 0.8845984
## 614 0.8880126 0.8709579 0.8816392 0.8845984
## 615 0.8880126 0.9512195 0.8816392 0.8845984
## 616 0.8657143 0.8709579 0.8932935 0.8845984
## 617 0.8657143 0.8709579 0.8816392 0.8845984
## 618 0.8967552 0.8709579 0.8932935 0.8845984
## 619 0.9156328 0.8709579 0.8932935 0.8845984
## 620 0.9156328 0.8709579 0.8816392 0.8845984
## 621 0.8880126 0.8709579 0.8816392 0.8845984
## 622 0.8880126 0.8709579 0.8816392 0.8845984
## 623 0.8880126 0.8709579 0.8932935 0.8845984
## 624 0.8880126 0.8709579 0.8816392 0.8845984
## 625 0.8657143 0.8709579 0.8932935 0.8845984
## 626 0.8657143 0.8709579 0.8816392 0.8845984
## 627 0.9156328 0.8709579 0.8816392 0.8845984
## 628 0.8880126 0.9512195 0.8816392 0.8845984
## 629 0.9057377 0.9512195 0.8932935 0.8845984
## 630 0.8967552 0.8709579 0.8932935 0.8996840
## 631 0.8657143 0.8709579 0.8816392 0.8845984
## 632 0.9156328 0.8709579 0.8816392 0.8845984
## 633 0.8967552 0.8709579 0.8932935 0.8845984
## 634 0.8967552 0.8709579 0.8932935 0.8996840
## 635 0.8657143 0.8709579 0.8932935 0.8996840
## 636 0.8657143 0.8709579 0.8932935 0.8845984
## 637 0.8880126 0.8709579 0.8816392 0.8845984
## 638 0.8880126 0.8709579 0.8816392 0.8845984
## 639 0.8880126 0.8709579 0.8932935 0.8845984
## 640 0.8657143 0.8709579 0.8816392 0.8996840
## 641 0.8880126 0.8709579 0.8816392 0.8845984
## 642 0.8657143 0.8709579 0.8932935 0.8845984
## 643 0.9057377 0.8709579 0.8932935 0.8996840
## 644 0.9156328 0.8709579 0.8932935 0.8845984
## 645 0.9156328 0.8709579 0.8932935 0.8845984
## 646 0.8967552 0.8709579 0.8932935 0.8996840
## 647 0.8657143 0.8709579 0.8816392 0.8845984
## 648 0.8880126 0.8709579 0.8932935 0.8845984
## 649 0.8880126 0.8709579 0.8816392 0.8845984
## 650 0.8880126 0.8709579 0.8932935 0.8845984
## 651 0.8657143 0.8709579 0.8932935 0.8845984
## 652 0.8657143 0.8709579 0.8816392 0.8845984
## 653 0.8967552 0.8709579 0.8932935 0.8845984
## 654 0.8880126 0.8709579 0.8816392 0.8845984
## 655 0.9075630 0.8709579 0.8816392 0.8996840
## 656 0.9057377 0.8709579 0.8816392 0.8996840
## 657 0.8880126 0.8709579 0.8816392 0.8996840
## 658 0.8880126 0.8709579 0.8816392 0.8845984
## 659 0.9075630 0.8709579 0.8816392 0.8845984
## 660 0.8967552 0.8709579 0.8932935 0.8845984
## 661 0.8880126 0.8709579 0.8932935 0.8996840
## 662 0.8967552 0.8709579 0.8816392 0.8845984
## 663 0.9057377 0.9512195 0.8932935 0.8845984
## 664 0.8880126 0.8709579 0.8816392 0.8845984
## 665 0.8880126 0.8709579 0.9032258 0.9032258
## 666 0.9057377 0.8709579 0.8932935 0.8845984
## 667 0.9075630 0.8709579 0.8932935 0.8845984
## 668 0.8880126 0.9512195 0.8816392 0.8845984
## 669 0.8880126 0.8709579 0.8932935 0.8845984
## 670 0.9156328 0.9512195 0.8932935 0.8845984
## 671 0.8880126 0.8709579 0.8816392 0.8845984
## 672 0.9156328 0.8709579 0.8816392 0.8845984
## 673 0.9075630 0.8709579 0.8816392 0.8845984
## 674 0.9075630 0.9512195 0.8816392 0.8845984
## 675 0.9156328 0.9512195 0.8816392 0.8845984
## 676 0.8657143 0.8709579 0.8816392 0.8845984
## 677 0.8880126 0.8709579 0.8816392 0.8845984
## 678 0.8880126 0.8709579 0.8816392 0.8996840
## 679 0.9156328 0.8709579 0.8932935 0.8845984
## 680 0.8657143 0.9512195 0.8932935 0.8845984
## 681 0.8880126 0.8709579 0.8932935 0.8845984
## 682 0.8348348 0.8709579 0.8932935 0.8845984
## 683 0.8967552 0.8709579 0.8816392 0.8845984
## 684 0.8348348 0.8709579 0.8816392 0.8845984
## 685 0.8657143 0.8709579 0.8816392 0.8845984
## 686 0.9156328 0.8709579 0.8816392 0.8845984
## 687 0.8880126 0.8709579 0.8816392 0.8845984
## 688 0.8657143 0.9512195 0.8932935 0.8845984
## 689 0.9156328 0.8709579 0.8932935 0.8845984
## 690 0.8967552 0.9512195 0.8816392 0.8845984
## 691 0.8657143 0.8709579 0.8816392 0.8845984
## 692 0.9156328 0.9512195 0.8816392 0.8845984
## 693 0.8880126 0.8709579 0.8816392 0.8845984
## 694 0.9075630 0.8709579 0.8816392 0.8845984
## 695 0.9156328 0.9512195 0.8816392 0.8845984
## 696 0.8657143 0.8709579 0.8816392 0.8996840
## 697 0.9156328 0.9512195 0.8816392 0.8845984
## 698 0.9156328 0.8709579 0.8816392 0.8845984
## 699 0.9075630 0.8709579 0.8816392 0.8845984
## 700 0.8967552 0.8709579 0.8816392 0.8996840
## 701 0.8657143 0.8709579 0.8932935 0.8845984
## 702 0.8880126 0.8709579 0.8816392 0.8845984
## 703 0.8657143 0.8709579 0.8932935 0.8845984
## 704 0.8880126 0.8709579 0.8816392 0.8845984
## 705 0.8657143 0.8709579 0.8932935 0.8996840
## 706 0.8657143 0.8709579 0.8932935 0.8845984
## 707 0.8657143 0.8709579 0.8816392 0.8845984
## 708 0.9057377 0.9512195 0.8816392 0.8845984
## 709 0.9075630 0.8709579 0.8932935 0.8845984
## 710 0.8880126 0.8709579 0.9032258 0.9032258
## 711 0.8880126 0.8709579 0.8932935 0.8845984
## 712 0.8657143 0.8709579 0.8816392 0.8845984
## 713 0.8880126 0.8709579 0.8932935 0.8845984
## 714 0.8880126 0.8709579 0.8932935 0.8996840
## 715 0.9156328 0.8709579 0.8932935 0.8996840
## 716 0.8880126 0.8709579 0.8932935 0.8996840
## 717 0.8880126 0.8709579 0.8816392 0.8845984
## 718 0.8880126 0.8709579 0.8816392 0.8996840
## 719 0.8967552 0.8709579 0.8816392 0.8845984
## 720 0.8880126 0.8709579 0.8816392 0.8845984
## 721 0.8657143 0.8709579 0.8932935 0.8845984
## 722 0.9075630 0.9512195 0.8816392 0.8845984
## 723 0.8657143 0.8709579 0.8932935 0.8845984
## 724 0.8657143 0.8709579 0.8816392 0.8845984
## 725 0.9075630 0.8709579 0.8816392 0.8845984
## 726 0.8657143 0.8709579 0.8816392 0.8845984
## 727 0.9156328 0.8709579 0.8816392 0.8845984
## 728 0.9075630 0.9512195 0.8816392 0.8996840
## 729 0.8657143 0.8709579 0.8932935 0.8845984
## 730 0.9156328 0.8709579 0.8816392 0.8845984
## 731 0.8967552 0.8709579 0.8932935 0.8845984
## 732 0.8657143 0.8709579 0.8816392 0.8996840
## 733 0.8657143 0.9512195 0.8932935 0.8845984
## 734 0.8657143 0.8709579 0.8816392 0.8845984
## 735 0.8657143 0.8709579 0.8932935 0.8845984
## 736 0.8967552 0.8709579 0.8816392 0.8845984
## 737 0.8880126 0.8709579 0.8816392 0.8845984
## 738 0.9156328 0.9512195 0.8932935 0.8845984
## 739 0.8880126 0.9512195 0.8932935 0.8845984
## 740 0.8967552 0.8709579 0.8932935 0.8845984
## 741 0.8657143 0.8709579 0.8816392 0.8845984
## 742 0.9156328 0.8709579 0.8816392 0.8845984
## 743 0.9156328 0.9512195 0.8932935 0.8845984
## 744 0.8657143 0.8709579 0.8816392 0.8996840
## 745 0.8657143 0.8709579 0.8816392 0.8996840
## 746 0.9156328 0.8709579 0.8816392 0.8845984
## 747 0.9156328 0.8709579 0.8932935 0.8845984
## 748 0.8880126 0.9512195 0.8932935 0.8996840
## 749 0.9057377 0.9512195 0.8816392 0.8845984
## 750 0.9156328 0.8709579 0.8932935 0.8845984
## 751 0.9156328 0.9512195 0.8816392 0.8845984
## 752 0.8880126 0.8709579 0.8932935 0.8845984
## 753 0.8657143 0.8709579 0.8932935 0.8845984
## 754 0.8657143 0.8709579 0.8932935 0.8845984
## 755 0.8880126 0.9512195 0.8816392 0.8845984
## 756 0.9075630 0.8709579 0.8816392 0.8845984
## 757 0.8657143 0.9512195 0.8932935 0.8845984
## 758 0.8657143 0.8709579 0.8932935 0.8845984
## 759 0.9156328 0.8709579 0.8816392 0.8845984
## 760 0.9156328 0.8709579 0.8816392 0.8845984
## 761 0.9156328 0.8709579 0.8816392 0.8845984
## 762 0.9156328 0.8709579 0.8932935 0.8845984
## 763 0.8657143 0.8709579 0.8816392 0.8845984
## 764 0.8880126 0.8709579 0.8932935 0.8845984
## 765 0.8880126 0.9512195 0.8816392 0.8845984
## 766 0.9075630 0.8709579 0.8932935 0.8845984
## 767 0.8880126 0.8709579 0.9032258 0.9032258
## 768 0.8657143 0.8709579 0.8816392 0.8845984
## 769 0.8880126 0.8709579 0.8816392 0.8845984
## 770 0.8880126 0.8709579 0.8816392 0.8845984
## 771 0.8880126 0.8709579 0.8932935 0.8845984
## 772 0.8880126 0.8709579 0.8932935 0.8845984
## 773 0.8880126 0.8709579 0.8932935 0.8845984
## 774 0.8880126 0.8709579 0.8816392 0.8845984
## 775 0.8657143 0.8709579 0.8816392 0.8845984
## 776 0.9156328 0.8709579 0.9032258 0.9032258
## 777 0.8657143 0.8709579 0.8816392 0.8845984
## 778 0.8657143 0.8709579 0.8816392 0.8845984
## 779 0.8880126 0.8709579 0.8932935 0.8845984
## 780 0.8880126 0.8709579 0.8816392 0.8845984
## 781 0.8348348 0.8709579 0.8932935 0.8845984
## 782 0.8880126 0.8709579 0.8932935 0.8845984
## 783 0.8880126 0.8709579 0.8816392 0.8845984
## 784 0.9156328 0.8709579 0.8816392 0.8845984
## 785 0.8657143 0.8709579 0.8816392 0.8845984
## 786 0.8880126 0.8709579 0.8932935 0.8845984
## 787 0.8657143 0.8709579 0.8932935 0.8845984
## 788 0.8880126 0.9512195 0.8932935 0.8845984
## 789 0.8657143 0.8709579 0.8932935 0.8845984
## 790 0.9057377 0.8709579 0.8932935 0.8845984
## 791 0.9075630 0.8709579 0.8816392 0.8845984
## 792 0.9057377 0.9512195 0.8816392 0.8845984
## 793 0.8657143 0.8709579 0.8932935 0.8845984
## 794 0.8657143 0.8709579 0.8816392 0.8845984
## 795 0.8657143 0.8709579 0.9032258 0.9032258
## 796 0.8880126 0.9512195 0.8816392 0.8845984
## 797 0.8348348 0.8709579 0.8932935 0.8845984
## 798 0.8880126 0.9512195 0.8816392 0.8845984
## 799 0.9075630 0.8709579 0.8816392 0.8845984
## 800 0.8880126 0.8709579 0.8816392 0.8845984
## 801 0.8880126 0.8709579 0.8932935 0.8845984
## 802 0.8657143 0.8709579 0.8816392 0.8845984
## 803 0.8880126 0.8709579 0.8932935 0.8845984
## 804 0.8880126 0.9512195 0.8816392 0.8845984
## 805 0.9156328 0.8709579 0.8816392 0.8845984
## 806 0.8880126 0.8709579 0.8816392 0.8845984
## 807 0.8348348 0.8709579 0.8816392 0.8845984
## 808 0.8348348 0.8709579 0.8816392 0.8845984
## 809 0.8657143 0.8709579 0.8816392 0.8845984
## 810 0.9156328 0.8709579 0.8932935 0.8845984
## 811 0.9075630 0.8709579 0.8816392 0.8845984
## 812 0.8657143 0.8709579 0.8816392 0.8845984
## 813 0.8880126 0.8709579 0.8932935 0.8996840
## 814 0.9057377 0.9512195 0.8932935 0.8845984
## 815 0.8657143 0.8709579 0.8816392 0.8845984
## 816 0.8880126 0.8709579 0.8932935 0.8845984
## 817 0.8657143 0.8709579 0.8932935 0.8845984
## 818 0.8880126 0.8709579 0.8932935 0.8845984
## 819 0.8348348 0.8709579 0.8816392 0.8845984
## 820 0.8657143 0.8709579 0.8816392 0.8845984
## 821 0.8348348 0.8709579 0.8932935 0.8845984
## 822 0.9156328 0.8709579 0.8932935 0.8845984
## 823 0.8348348 0.8709579 0.8932935 0.8845984
## 824 0.8880126 0.8709579 0.8932935 0.8845984
## 825 0.8657143 0.8709579 0.8932935 0.8996840
## 826 0.8348348 0.8709579 0.8932935 0.8845984
## 827 0.8880126 0.8709579 0.8932935 0.8845984
## 828 0.8880126 0.8709579 0.8932935 0.8845984
## 829 0.8967552 0.8709579 0.8816392 0.8996840
## 830 0.8880126 0.8709579 0.8932935 0.8845984
## 831 0.8967552 0.8709579 0.8816392 0.8845984
## 832 0.8880126 0.8709579 0.8932935 0.8845984
## 833 0.8880126 0.9512195 0.8932935 0.8845984
## 834 0.9057377 0.9512195 0.8816392 0.8845984
## 835 0.8880126 0.8709579 0.8816392 0.8845984
## 836 0.8967552 0.8709579 0.8816392 0.8845984
## 837 0.8880126 0.8709579 0.8932935 0.8996840
## 838 0.9156328 0.8709579 0.8932935 0.8845984
## 839 0.8348348 0.8709579 0.8932935 0.8845984
## 840 0.8967552 0.9512195 0.9032258 0.9032258
## 841 0.8967552 0.9512195 0.8932935 0.8845984
## 842 0.9156328 0.8709579 0.8932935 0.8845984
## 843 0.9075630 0.8709579 0.8816392 0.8845984
## 844 0.8657143 0.9512195 0.8932935 0.8845984
## 845 0.9156328 0.9512195 0.8932935 0.8845984
## 846 0.8657143 0.8709579 0.8932935 0.8845984
## 847 0.8880126 0.8709579 0.8932935 0.8845984
## 848 0.8657143 0.8709579 0.8816392 0.8845984
## 849 0.8880126 0.8709579 0.8932935 0.8845984
## 850 0.9156328 0.8709579 0.8932935 0.8845984
## 851 0.8967552 0.8709579 0.8932935 0.8845984
## 852 0.8880126 0.8709579 0.8932935 0.8996840
## 853 0.8880126 0.8709579 0.8816392 0.8845984
## 854 0.9156328 0.9512195 0.8816392 0.8845984
## 855 0.8657143 0.9512195 0.8816392 0.8845984
## 856 0.8967552 0.8709579 0.8932935 0.8845984
## 857 0.9057377 0.8709579 0.8932935 0.8845984
## 858 0.8348348 0.8709579 0.8932935 0.8845984
## 859 0.8657143 0.9512195 0.8816392 0.8845984
## 860 0.8967552 0.8709579 0.8816392 0.8845984
## 861 0.9075630 0.9512195 0.8932935 0.8996840
## 862 0.9075630 0.8709579 0.8816392 0.8845984
## 863 0.8880126 0.8709579 0.8816392 0.8845984
## 864 0.8967552 0.8709579 0.8932935 0.8845984
## 865 0.8880126 0.9512195 0.8816392 0.8845984
## 866 0.8880126 0.8709579 0.8932935 0.8845984
## 867 0.9057377 0.9512195 0.8816392 0.8845984
## 868 0.8880126 0.8709579 0.8932935 0.8845984
## 869 0.9057377 0.8709579 0.8816392 0.8845984
## 870 0.8880126 0.8709579 0.8932935 0.8996840
## 871 0.8657143 0.8709579 0.8932935 0.8845984
## 872 0.8880126 0.8709579 0.8932935 0.8845984
## 873 0.8657143 0.8709579 0.8816392 0.8845984
## 874 0.8657143 0.8709579 0.8816392 0.8845984
## 875 0.8880126 0.8709579 0.8932935 0.8845984
## 876 0.8657143 0.8709579 0.8932935 0.8845984
## 877 0.9075630 0.9512195 0.8932935 0.8845984
## 878 0.8657143 0.8709579 0.8932935 0.8845984
## 879 0.9156328 0.8709579 0.8816392 0.8996840
## 880 0.8967552 0.8709579 0.9032258 0.9032258
## 881 0.8657143 0.8709579 0.8816392 0.8845984
## 882 0.8880126 0.8709579 0.8932935 0.8845984
## 883 0.8657143 0.8709579 0.8932935 0.8996840
## 884 0.8880126 0.8709579 0.8932935 0.8845984
## 885 0.9156328 0.9512195 0.8816392 0.8996840
## 886 0.8967552 0.9512195 0.8816392 0.8845984
## 887 0.8657143 0.8709579 0.8816392 0.8845984
## 888 0.8657143 0.8709579 0.8932935 0.8996840
## 889 0.8657143 0.8709579 0.8932935 0.8845984
## 890 0.9057377 0.8709579 0.8932935 0.8845984
## 891 0.9075630 0.9512195 0.8932935 0.8845984
## 892 0.8657143 0.8709579 0.8816392 0.8845984
## 893 0.9156328 0.8709579 0.8932935 0.8996840
## 894 0.9057377 0.9512195 0.8816392 0.8845984
## 895 0.8880126 0.8709579 0.8816392 0.8996840
## 896 0.8880126 0.8709579 0.8932935 0.8845984
## 897 0.8967552 0.8709579 0.8816392 0.8996840
## 898 0.9156328 0.8709579 0.8816392 0.8845984
## 899 0.8657143 0.8709579 0.8816392 0.8845984
## 900 0.8348348 0.8709579 0.8816392 0.8845984
## 901 0.8657143 0.8709579 0.8816392 0.8845984
## 902 0.8967552 0.9512195 0.8932935 0.8845984
## 903 0.8657143 0.8709579 0.8816392 0.8845984
## 904 0.8880126 0.9512195 0.8816392 0.8996840
## 905 0.9075630 0.8709579 0.8932935 0.8845984
## 906 0.8657143 0.9512195 0.8816392 0.8845984
## 907 0.8657143 0.8709579 0.8816392 0.8845984
## 908 0.8657143 0.8709579 0.8816392 0.8845984
## 909 0.8880126 0.9512195 0.8816392 0.8845984
## 910 0.8657143 0.8709579 0.8932935 0.8845984
## 911 0.8967552 0.9512195 0.8816392 0.8845984
## 912 0.8880126 0.8709579 0.8816392 0.8996840
## 913 0.9156328 0.9512195 0.8932935 0.8845984
## 914 0.9057377 0.8709579 0.9032258 0.9032258
## 915 0.8880126 0.8709579 0.8932935 0.8845984
## 916 0.8880126 0.8709579 0.8816392 0.8996840
## 917 0.9057377 0.9512195 0.8816392 0.8996840
## 918 0.8657143 0.8709579 0.8816392 0.8996840
## 919 0.8657143 0.8709579 0.8932935 0.8845984
## 920 0.9057377 0.8709579 0.8932935 0.8845984
## 921 0.8348348 0.9512195 0.8932935 0.8845984
## 922 0.9156328 0.9512195 0.8816392 0.8996840
## 923 0.9156328 0.8709579 0.8932935 0.8845984
## 924 0.8880126 0.9512195 0.9032258 0.9032258
## 925 0.8967552 0.8709579 0.8816392 0.8845984
## 926 0.9156328 0.8709579 0.8816392 0.8845984
## 927 0.8967552 0.8709579 0.8816392 0.8845984
## 928 0.9075630 0.8709579 0.8932935 0.8845984
## 929 0.9156328 0.8709579 0.8932935 0.8845984
## 930 0.9075630 0.8709579 0.8816392 0.8996840
## 931 0.9156328 0.8709579 0.8816392 0.8996840
## 932 0.9057377 0.9512195 0.8816392 0.8845984
## 933 0.9075630 0.9512195 0.8816392 0.8845984
## 934 0.8880126 0.8709579 0.8932935 0.8845984
## 935 0.8348348 0.8709579 0.8816392 0.8996840
## 936 0.9156328 0.8709579 0.8932935 0.8845984
## 937 0.9156328 0.9512195 0.8932935 0.8996840
## 938 0.8880126 0.9512195 0.8932935 0.8845984
## 939 0.9156328 0.8709579 0.8932935 0.8845984
## 940 0.8880126 0.9512195 0.8932935 0.8845984
## 941 0.8967552 0.8709579 0.8932935 0.8845984
## 942 0.8880126 0.8709579 0.8816392 0.8845984
## 943 0.9075630 0.9512195 0.8932935 0.8845984
## 944 0.8348348 0.8709579 0.8816392 0.8996840
## 945 0.9156328 0.8709579 0.8932935 0.8845984
## 946 0.8657143 0.8709579 0.8816392 0.8845984
## 947 0.9156328 0.8709579 0.8816392 0.8845984
## 948 0.8880126 0.8709579 0.9032258 0.9032258
## 949 0.8657143 0.8709579 0.8816392 0.8845984
## 950 0.8880126 0.9512195 0.8932935 0.8996840
## 951 0.9156328 0.9512195 0.8816392 0.8845984
## 952 0.8657143 0.8709579 0.8816392 0.8845984
## 953 0.8657143 0.8709579 0.8932935 0.8845984
## 954 0.8348348 0.8709579 0.8816392 0.8845984
## 955 0.9075630 0.8709579 0.8816392 0.8845984
## 956 0.8348348 0.9512195 0.8816392 0.8996840
## 957 0.8880126 0.8709579 0.8816392 0.8845984
## 958 0.9057377 0.8709579 0.8816392 0.8845984
## 959 0.8657143 0.8709579 0.8932935 0.8845984
## 960 0.9156328 0.9512195 0.8932935 0.8845984
## 961 0.9075630 0.8709579 0.8816392 0.8845984
## 962 0.8657143 0.8709579 0.8932935 0.8845984
## 963 0.8880126 0.8709579 0.8932935 0.8845984
## 964 0.9057377 0.8709579 0.8816392 0.8845984
## 965 0.8880126 0.8709579 0.8816392 0.8845984
## 966 0.8967552 0.9512195 0.8816392 0.8845984
## 967 0.9057377 0.8709579 0.8816392 0.8845984
## 968 0.9075630 0.9512195 0.8816392 0.8845984
## 969 0.8880126 0.8709579 0.8932935 0.8996840
## 970 0.8880126 0.8709579 0.8816392 0.8845984
## 971 0.8657143 0.8709579 0.8932935 0.8845984
## 972 0.8880126 0.9512195 0.8816392 0.8845984
## 973 0.8880126 0.8709579 0.8932935 0.8845984
## 974 0.8880126 0.8709579 0.8816392 0.8996840
## 975 0.8880126 0.8709579 0.8816392 0.8845984
## 976 0.8880126 0.9512195 0.8932935 0.8845984
## 977 0.8880126 0.8709579 0.8816392 0.8845984
## 978 0.8967552 0.9512195 0.8816392 0.8996840
## 979 0.8967552 0.8709579 0.8816392 0.8845984
## 980 0.8657143 0.8709579 0.8932935 0.8996840
## 981 0.8880126 0.8709579 0.8816392 0.8845984
## 982 0.8880126 0.8709579 0.8932935 0.8845984
## 983 0.8657143 0.8709579 0.8816392 0.8845984
## 984 0.8348348 0.9512195 0.8816392 0.8845984
## 985 0.8657143 0.8709579 0.8816392 0.8845984
## 986 0.8657143 0.8709579 0.8932935 0.8845984
## 987 0.8880126 0.8709579 0.8932935 0.8845984
## 988 0.8967552 0.8709579 0.8816392 0.8845984
## 989 0.9156328 0.9512195 0.8816392 0.8845984
## 990 0.8880126 0.8709579 0.8816392 0.8845984
## 991 0.8967552 0.8709579 0.9032258 0.9032258
## 992 0.9156328 0.8709579 0.8932935 0.8845984
## 993 0.9156328 0.8709579 0.8816392 0.8845984
## 994 0.8880126 0.8709579 0.8932935 0.8845984
## 995 0.8967552 0.9512195 0.8932935 0.8845984
## 996 0.8657143 0.8709579 0.8932935 0.8845984
## 997 0.8880126 0.8709579 0.8816392 0.8845984
## 998 0.8657143 0.8709579 0.8932935 0.8845984
## 999 0.8967552 0.8709579 0.8816392 0.8845984
## 1000 0.8880126 0.8709579 0.8816392 0.8845984
## 1001 0.8657143 0.8709579 0.8932935 0.8845984
## 1002 0.8880126 0.8709579 0.8816392 0.8996840
## 1003 0.9156328 0.8709579 0.8816392 0.8996840
## 1004 0.8657143 0.8709579 0.8932935 0.8845984
## 1005 0.8657143 0.8709579 0.8932935 0.8996840
## 1006 0.8657143 0.8709579 0.8816392 0.8845984
## 1007 0.9057377 0.8709579 0.8816392 0.8845984
## 1008 0.9156328 0.9512195 0.8932935 0.8845984
## 1009 0.8967552 0.8709579 0.8932935 0.8845984
## 1010 0.8967552 0.8709579 0.8816392 0.8845984
## 1011 0.9057377 0.9512195 0.8932935 0.8845984
## 1012 0.9075630 0.8709579 0.8932935 0.8845984
## 1013 0.8967552 0.8709579 0.8932935 0.8845984
## 1014 0.8880126 0.8709579 0.8932935 0.8845984
## 1015 0.8657143 0.8709579 0.8932935 0.8996840
## 1016 0.9057377 0.9512195 0.8932935 0.8996840
## 1017 0.9156328 0.8709579 0.8932935 0.8845984
## 1018 0.8880126 0.8709579 0.8816392 0.8845984
## 1019 0.8967552 0.8709579 0.8816392 0.8845984
## 1020 0.8880126 0.8709579 0.8816392 0.8845984
## 1021 0.9156328 0.8709579 0.8816392 0.8845984
## 1022 0.8880126 0.9512195 0.8932935 0.8845984
## 1023 0.8657143 0.8709579 0.8932935 0.8996840
## 1024 0.9156328 0.9512195 0.8932935 0.8845984
## 1025 0.8967552 0.8709579 0.8932935 0.8845984
## 1026 0.8657143 0.9512195 0.8932935 0.8845984
## 1027 0.8348348 0.8709579 0.8816392 0.8845984
## 1028 0.8657143 0.8709579 0.8932935 0.8996840
## 1029 0.9156328 0.8709579 0.8932935 0.8845984
## 1030 0.8657143 0.8709579 0.8932935 0.8845984
## 1031 0.8967552 0.8709579 0.8816392 0.8845984
## 1032 0.8880126 0.8709579 0.8932935 0.8845984
## 1033 0.9156328 0.8709579 0.8816392 0.8996840
## 1034 0.8967552 0.8709579 0.8816392 0.8996840
## 1035 0.9075630 0.8709579 0.8816392 0.8996840
## 1036 0.9057377 0.9512195 0.8816392 0.8996840
## 1037 0.9075630 0.9512195 0.8932935 0.8845984
## 1038 0.9156328 0.9512195 0.8816392 0.8845984
## 1039 0.9156328 0.8709579 0.8932935 0.8845984
## 1040 0.8967552 0.8709579 0.8816392 0.8845984
## 1041 0.9057377 0.9512195 0.8932935 0.8845984
## 1042 0.8880126 0.8709579 0.8932935 0.8845984
## 1043 0.8967552 0.9512195 0.8932935 0.8845984
## 1044 0.8880126 0.8709579 0.8932935 0.8845984
## 1045 0.9075630 0.8709579 0.8932935 0.8845984
## 1046 0.9156328 0.8709579 0.8816392 0.8845984
## 1047 0.9156328 0.8709579 0.8816392 0.8996840
## 1048 0.8967552 0.8709579 0.8816392 0.8845984
## 1049 0.9057377 0.8709579 0.8816392 0.8845984
## 1050 0.8880126 0.8709579 0.8932935 0.8845984
## 1051 0.9057377 0.8709579 0.8816392 0.8845984
## 1052 0.8967552 0.8709579 0.8816392 0.8845984
## 1053 0.8880126 0.9512195 0.8932935 0.8845984
## 1054 0.8657143 0.8709579 0.8816392 0.8845984
## 1055 0.8348348 0.8709579 0.8932935 0.8845984
## 1056 0.8880126 0.9512195 0.8816392 0.8845984
## 1057 0.8967552 0.8709579 0.8816392 0.8845984
## 1058 0.8880126 0.8709579 0.8816392 0.8845984
## 1059 0.8880126 0.8709579 0.8932935 0.8845984
## 1060 0.8657143 0.8709579 0.8816392 0.8845984
## 1061 0.9156328 0.9512195 0.8932935 0.8845984
## 1062 0.8657143 0.8709579 0.8816392 0.8845984
## 1063 0.9156328 0.8709579 0.8932935 0.8845984
## 1064 0.8880126 0.8709579 0.8816392 0.8845984
## 1065 0.9156328 0.9512195 0.8932935 0.8845984
## 1066 0.9156328 0.8709579 0.8932935 0.8996840
## 1067 0.8657143 0.9512195 0.8816392 0.8845984
## 1068 0.9156328 0.8709579 0.8816392 0.8845984
## 1069 0.9075630 0.8709579 0.8816392 0.8845984
## 1070 0.8657143 0.8709579 0.8816392 0.8845984
## 1071 0.9156328 0.8709579 0.8932935 0.8845984
## 1072 0.8967552 0.8709579 0.8816392 0.8845984
## 1073 0.8880126 0.9512195 0.8932935 0.8845984
## 1074 0.8967552 0.8709579 0.8932935 0.8996840
## 1075 0.9156328 0.8709579 0.8932935 0.8845984
## 1076 0.9075630 0.9512195 0.8816392 0.8845984
## 1077 0.8657143 0.8709579 0.8816392 0.8845984
## 1078 0.8880126 0.8709579 0.8816392 0.8996840
## 1079 0.9057377 0.8709579 0.8816392 0.8996840
## 1080 0.8657143 0.8709579 0.8816392 0.8845984
## 1081 0.9075630 0.8709579 0.8816392 0.8845984
## 1082 0.9156328 0.8709579 0.8932935 0.8845984
## 1083 0.8967552 0.8709579 0.8932935 0.8845984
## 1084 0.8657143 0.8709579 0.8932935 0.8845984
## 1085 0.8657143 0.8709579 0.8816392 0.8845984
## 1086 0.9156328 0.9512195 0.8932935 0.8845984
## 1087 0.8880126 0.8709579 0.8932935 0.8996840
## 1088 0.8657143 0.8709579 0.8816392 0.8845984
## 1089 0.8657143 0.8709579 0.8932935 0.8845984
## 1090 0.8967552 0.8709579 0.8932935 0.8845984
## 1091 0.9156328 0.8709579 0.8816392 0.8996840
## 1092 0.8880126 0.9512195 0.9032258 0.9032258
## 1093 0.8967552 0.8709579 0.8816392 0.8845984
## 1094 0.9156328 0.8709579 0.8932935 0.8845984
## 1095 0.8657143 0.8709579 0.8932935 0.8845984
## 1096 0.8657143 0.8709579 0.8816392 0.8845984
## 1097 0.8657143 0.8709579 0.8816392 0.8845984
## 1098 0.8880126 0.8709579 0.8932935 0.8845984
## 1099 0.8880126 0.8709579 0.8932935 0.8845984
## 1100 0.8880126 0.8709579 0.8932935 0.8845984
## 1101 0.8880126 0.8709579 0.8816392 0.8845984
## 1102 0.8657143 0.9512195 0.8816392 0.8845984
## 1103 0.8880126 0.8709579 0.8932935 0.8845984
## 1104 0.8880126 0.8709579 0.8932935 0.8845984
## 1105 0.8880126 0.8709579 0.8932935 0.8845984
## 1106 0.8657143 0.8709579 0.8816392 0.8845984
## 1107 0.8657143 0.8709579 0.8932935 0.8845984
## 1108 0.9156328 0.8709579 0.8816392 0.8845984
## 1109 0.9156328 0.8709579 0.8932935 0.8845984
## 1110 0.9075630 0.9512195 0.8932935 0.8845984
## 1111 0.8880126 0.9512195 0.8816392 0.8845984
## 1112 0.8880126 0.8709579 0.8816392 0.8845984
## 1113 0.8657143 0.8709579 0.8816392 0.8845984
## 1114 0.8967552 0.8709579 0.8932935 0.8845984
## 1115 0.9057377 0.8709579 0.8932935 0.8845984
## 1116 0.9156328 0.9512195 0.8932935 0.8845984
## 1117 0.9075630 0.8709579 0.8816392 0.8996840
## 1118 0.9156328 0.9512195 0.8932935 0.8845984
## 1119 0.9075630 0.8709579 0.8932935 0.8845984
## 1120 0.9057377 0.8709579 0.8816392 0.8845984
## 1121 0.8880126 0.8709579 0.8932935 0.8845984
## 1122 0.9156328 0.8709579 0.8932935 0.8845984
## 1123 0.9156328 0.8709579 0.8932935 0.8845984
## 1124 0.8880126 0.8709579 0.8932935 0.8845984
## 1125 0.9075630 0.9512195 0.8816392 0.8845984
## 1126 0.9156328 0.8709579 0.8932935 0.8845984
## 1127 0.8348348 0.9512195 0.8932935 0.8845984
## 1128 0.8880126 0.8709579 0.8816392 0.8845984
## 1129 0.8880126 0.8709579 0.8816392 0.8845984
## 1130 0.9075630 0.9512195 0.8816392 0.8845984
## 1131 0.9156328 0.8709579 0.8816392 0.8845984
## 1132 0.8967552 0.9512195 0.8932935 0.8845984
## 1133 0.9075630 0.9512195 0.8816392 0.8845984
## 1134 0.8657143 0.9512195 0.8932935 0.8845984
## 1135 0.9156328 0.8709579 0.8816392 0.8996840
## 1136 0.8967552 0.8709579 0.8932935 0.8845984
## 1137 0.8657143 0.8709579 0.8932935 0.8845984
## 1138 0.8967552 0.9512195 0.8932935 0.8996840
## 1139 0.8967552 0.8709579 0.8932935 0.8996840
## 1140 0.8348348 0.8709579 0.8932935 0.8845984
## 1141 0.8880126 0.9512195 0.8816392 0.8845984
## 1142 0.9075630 0.8709579 0.8816392 0.8845984
## 1143 0.9156328 0.8709579 0.9032258 0.9032258
## 1144 0.9156328 0.8709579 0.8816392 0.8845984
## 1145 0.9156328 0.8709579 0.8932935 0.8845984
## 1146 0.8657143 0.9512195 0.8932935 0.8845984
## 1147 0.8880126 0.8709579 0.8816392 0.8845984
## 1148 0.9156328 0.8709579 0.8932935 0.8845984
## 1149 0.8967552 0.8709579 0.8932935 0.8845984
## 1150 0.8657143 0.8709579 0.8932935 0.8996840
## 1151 0.9156328 0.9512195 0.8816392 0.8845984
## 1152 0.8880126 0.8709579 0.8932935 0.8845984
## 1153 0.8657143 0.8709579 0.8932935 0.8845984
## 1154 0.9057377 0.8709579 0.8816392 0.8845984
## 1155 0.8348348 0.8709579 0.8816392 0.8845984
## 1156 0.9156328 0.8709579 0.8816392 0.8845984
## 1157 0.8880126 0.8709579 0.8816392 0.8845984
## 1158 0.8880126 0.8709579 0.8932935 0.8845984
## 1159 0.8880126 0.8709579 0.8816392 0.8845984
## 1160 0.8880126 0.9512195 0.8816392 0.8845984
## 1161 0.8348348 0.8709579 0.8932935 0.8996840
## 1162 0.8657143 0.9512195 0.8932935 0.8845984
## 1163 0.8657143 0.8709579 0.8932935 0.8845984
## 1164 0.8657143 0.8709579 0.8816392 0.8845984
## 1165 0.9057377 0.8709579 0.8816392 0.8845984
## 1166 0.8348348 0.8709579 0.8816392 0.8845984
## 1167 0.8657143 0.8709579 0.8816392 0.8845984
## 1168 0.9075630 0.9512195 0.8932935 0.8845984
## 1169 0.9075630 0.9512195 0.8932935 0.8845984
## 1170 0.8880126 0.8709579 0.8932935 0.8845984
## 1171 0.8348348 0.8709579 0.8816392 0.8845984
## 1172 0.8657143 0.9512195 0.8932935 0.8845984
## 1173 0.8967552 0.8709579 0.8932935 0.8845984
## 1174 0.8657143 0.8709579 0.8932935 0.8845984
## 1175 0.8967552 0.8709579 0.8816392 0.8845984
## 1176 0.8348348 0.8709579 0.8932935 0.8845984
## 1177 0.8880126 0.8709579 0.8816392 0.8845984
## 1178 0.8880126 0.9512195 0.8816392 0.8845984
## 1179 0.8657143 0.8709579 0.8932935 0.8845984
## 1180 0.8967552 0.8709579 0.8932935 0.8845984
## 1181 0.8657143 0.8709579 0.8816392 0.8845984
## 1182 0.8967552 0.8709579 0.8816392 0.8996840
## 1183 0.8657143 0.8709579 0.8816392 0.8845984
## 1184 0.8880126 0.8709579 0.8932935 0.8845984
## 1185 0.9075630 0.9512195 0.8816392 0.8996840
## 1186 0.9156328 0.9512195 0.8932935 0.8845984
## 1187 0.9075630 0.8709579 0.9032258 0.9032258
## 1188 0.8967552 0.8709579 0.8816392 0.8996840
## 1189 0.9156328 0.8709579 0.8932935 0.8845984
## 1190 0.8967552 0.8709579 0.8816392 0.8845984
## 1191 0.8880126 0.9512195 0.8932935 0.8845984
## 1192 0.8657143 0.8709579 0.8816392 0.8845984
## 1193 0.8967552 0.8709579 0.8816392 0.8845984
## 1194 0.9156328 0.8709579 0.8932935 0.8996840
## 1195 0.9075630 0.9512195 0.8816392 0.8845984
## 1196 0.9156328 0.8709579 0.8816392 0.8845984
## 1197 0.8880126 0.8709579 0.8816392 0.8845984
## 1198 0.8967552 0.8709579 0.8816392 0.8845984
## 1199 0.8657143 0.8709579 0.8932935 0.8845984
## 1200 0.8657143 0.8709579 0.8932935 0.8996840
## 1201 0.9156328 0.8709579 0.8932935 0.8845984
## 1202 0.9156328 0.8709579 0.8816392 0.8845984
## 1203 0.8967552 0.8709579 0.8816392 0.8845984
## 1204 0.8880126 0.8709579 0.8816392 0.8845984
## 1205 0.8880126 0.8709579 0.8816392 0.8845984
## 1206 0.9156328 0.8709579 0.8932935 0.8845984
## 1207 0.9156328 0.8709579 0.8932935 0.8845984
## 1208 0.9156328 0.8709579 0.8816392 0.8845984
## 1209 0.8880126 0.8709579 0.9032258 0.9032258
## 1210 0.8880126 0.8709579 0.8816392 0.8845984
## 1211 0.9156328 0.8709579 0.8932935 0.8996840
## 1212 0.8967552 0.8709579 0.8932935 0.8845984
## 1213 0.8880126 0.8709579 0.8932935 0.8845984
## 1214 0.8880126 0.8709579 0.8816392 0.8845984
## 1215 0.8657143 0.8709579 0.8932935 0.8845984
## 1216 0.8657143 0.8709579 0.8932935 0.8845984
## 1217 0.9156328 0.8709579 0.8932935 0.8845984
## 1218 0.9075630 0.8709579 0.8932935 0.8845984
## 1219 0.9156328 0.9512195 0.8816392 0.8845984
## 1220 0.8657143 0.8709579 0.8816392 0.8845984
## 1221 0.8880126 0.8709579 0.8816392 0.8845984
## 1222 0.8657143 0.8709579 0.8816392 0.8845984
## 1223 0.8657143 0.8709579 0.8816392 0.8845984
## 1224 0.8880126 0.8709579 0.8816392 0.8845984
## 1225 0.9075630 0.8709579 0.8932935 0.8845984
## 1226 0.8880126 0.8709579 0.8816392 0.8845984
## 1227 0.8657143 0.8709579 0.8932935 0.8845984
## 1228 0.8880126 0.8709579 0.8816392 0.8845984
## 1229 0.8880126 0.8709579 0.8932935 0.8845984
## 1230 0.8967552 0.9512195 0.8816392 0.8845984
## 1231 0.8967552 0.8709579 0.8932935 0.8845984
## 1232 0.8880126 0.8709579 0.8816392 0.8845984
## 1233 0.8967552 0.8709579 0.8932935 0.8845984
## 1234 0.8657143 0.8709579 0.8816392 0.8845984
## 1235 0.8880126 0.8709579 0.8932935 0.8845984
## 1236 0.8657143 0.8709579 0.8932935 0.8845984
## 1237 0.8657143 0.8709579 0.8816392 0.8845984
## 1238 0.8657143 0.8709579 0.8816392 0.8845984
## 1239 0.8880126 0.8709579 0.8932935 0.8845984
## 1240 0.9057377 0.9512195 0.8816392 0.8845984
## 1241 0.8880126 0.8709579 0.8932935 0.8845984
## 1242 0.9156328 0.8709579 0.8932935 0.8996840
## 1243 0.9075630 0.8709579 0.8816392 0.8845984
## 1244 0.8657143 0.8709579 0.8816392 0.8845984
## 1245 0.8880126 0.8709579 0.8816392 0.8845984
## 1246 0.8967552 0.8709579 0.8816392 0.8996840
## 1247 0.9057377 0.8709579 0.8932935 0.8845984
## 1248 0.9156328 0.8709579 0.8932935 0.8996840
## 1249 0.9057377 0.9512195 0.8932935 0.8845984
## 1250 0.9075630 0.8709579 0.8816392 0.8845984
## 1251 0.8657143 0.8709579 0.8816392 0.8845984
## 1252 0.8657143 0.8709579 0.8816392 0.8845984
## 1253 0.9075630 0.9512195 0.9032258 0.9032258
## 1254 0.8880126 0.8709579 0.8932935 0.8845984
## 1255 0.8657143 0.9512195 0.8932935 0.8845984
## 1256 0.9075630 0.8709579 0.8932935 0.8845984
## 1257 0.9156328 0.8709579 0.8932935 0.8845984
## 1258 0.9156328 0.9512195 0.8932935 0.8845984
## 1259 0.8657143 0.8709579 0.8932935 0.8845984
## 1260 0.9156328 0.8709579 0.8932935 0.8996840
## 1261 0.9075630 0.8709579 0.8816392 0.8845984
## 1262 0.8657143 0.9512195 0.8932935 0.8845984
## 1263 0.8880126 0.9512195 0.8816392 0.8996840
## 1264 0.9075630 0.8709579 0.8816392 0.8845984
## 1265 0.8880126 0.8709579 0.8816392 0.8845984
## 1266 0.9075630 0.9512195 0.8932935 0.8845984
## 1267 0.8657143 0.8709579 0.8816392 0.8996840
## 1268 0.9057377 0.8709579 0.8932935 0.8845984
## 1269 0.8880126 0.8709579 0.9032258 0.9032258
## 1270 0.8657143 0.8709579 0.8816392 0.8845984
## 1271 0.8657143 0.8709579 0.8932935 0.8845984
## 1272 0.8967552 0.8709579 0.8932935 0.8845984
## 1273 0.8657143 0.8709579 0.8816392 0.8845984
## 1274 0.9156328 0.8709579 0.8932935 0.8845984
## 1275 0.8967552 0.8709579 0.8816392 0.8845984
## 1276 0.9156328 0.8709579 0.8932935 0.8845984
## 1277 0.8967552 0.8709579 0.8816392 0.8996840
## 1278 0.9075630 0.9512195 0.8816392 0.8845984
## 1279 0.8880126 0.9512195 0.8816392 0.8845984
## 1280 0.8880126 0.8709579 0.8816392 0.8845984
## 1281 0.8657143 0.8709579 0.8816392 0.8845984
## 1282 0.9075630 0.9512195 0.8932935 0.8996840
## 1283 0.9075630 0.8709579 0.8816392 0.8845984
## 1284 0.8880126 0.8709579 0.8816392 0.8845984
## 1285 0.9057377 0.9512195 0.8932935 0.8996840
## 1286 0.9075630 0.9512195 0.8932935 0.8845984
## 1287 0.8967552 0.8709579 0.8816392 0.8996840
## 1288 0.8880126 0.9512195 0.8816392 0.8845984
## 1289 0.8657143 0.8709579 0.8816392 0.8845984
## 1290 0.8657143 0.8709579 0.8816392 0.8845984
## 1291 0.8657143 0.8709579 0.8932935 0.8996840
## 1292 0.8880126 0.9512195 0.8816392 0.8845984
## 1293 0.8657143 0.8709579 0.8932935 0.8845984
## 1294 0.8880126 0.8709579 0.8816392 0.8845984
## 1295 0.8967552 0.8709579 0.8932935 0.8845984
## 1296 0.8967552 0.9512195 0.8932935 0.8845984
## 1297 0.8657143 0.8709579 0.8816392 0.8845984
## 1298 0.8657143 0.8709579 0.8932935 0.8996840
## 1299 0.8348348 0.8709579 0.8932935 0.8845984
## 1300 0.8348348 0.9512195 0.8816392 0.8845984
## 1301 0.9075630 0.9512195 0.8932935 0.8845984
## 1302 0.8967552 0.8709579 0.8932935 0.8996840
## 1303 0.8657143 0.8709579 0.8932935 0.8845984
## 1304 0.8657143 0.8709579 0.8816392 0.8845984
## 1305 0.8657143 0.8709579 0.8816392 0.8996840
## 1306 0.9075630 0.8709579 0.8932935 0.8996840
## 1307 0.8880126 0.8709579 0.8932935 0.8996840
## 1308 0.9156328 0.9512195 0.8816392 0.8845984
## 1309 0.8657143 0.8709579 0.8816392 0.8845984
## 1310 0.8880126 0.8709579 0.8816392 0.8996840
## 1311 0.8657143 0.8709579 0.8932935 0.8845984
## 1312 0.8657143 0.8709579 0.8932935 0.8845984
## 1313 0.8348348 0.9512195 0.8932935 0.8845984
## 1314 0.9057377 0.8709579 0.8932935 0.8996840
## 1315 0.9075630 0.8709579 0.8816392 0.8845984
## 1316 0.8967552 0.8709579 0.8816392 0.8996840
## 1317 0.8657143 0.8709579 0.8816392 0.8996840
## 1318 0.8348348 0.8709579 0.8932935 0.8845984
## 1319 0.8657143 0.8709579 0.8816392 0.8845984
## 1320 0.8967552 0.8709579 0.8932935 0.8996840
## 1321 0.8967552 0.8709579 0.8932935 0.8845984
## 1322 0.9075630 0.8709579 0.8816392 0.8845984
## 1323 0.8657143 0.8709579 0.8932935 0.8845984
## 1324 0.8657143 0.8709579 0.8932935 0.8996840
## 1325 0.8657143 0.8709579 0.8932935 0.8845984
## 1326 0.8348348 0.9512195 0.8816392 0.8996840
## 1327 0.9075630 0.9512195 0.8816392 0.8845984
## 1328 0.9075630 0.8709579 0.8932935 0.8845984
## 1329 0.8657143 0.8709579 0.8816392 0.8845984
## 1330 0.8657143 0.8709579 0.8932935 0.8845984
## 1331 0.8880126 0.8709579 0.8816392 0.8845984
## 1332 0.9156328 0.8709579 0.8816392 0.8845984
## 1333 0.9156328 0.8709579 0.8932935 0.8845984
## 1334 0.8880126 0.8709579 0.8816392 0.8996840
## 1335 0.9075630 0.8709579 0.8816392 0.8996840
## 1336 0.9156328 0.9512195 0.8932935 0.8845984
## 1337 0.8348348 0.9512195 0.8932935 0.8845984
## 1338 0.8657143 0.9512195 0.8816392 0.8845984
## 1339 0.9075630 0.8709579 0.8932935 0.8845984
## 1340 0.9156328 0.8709579 0.8816392 0.8845984
## 1341 0.8657143 0.8709579 0.8932935 0.8845984
## 1342 0.8880126 0.9512195 0.8932935 0.8845984
## 1343 0.9075630 0.8709579 0.8932935 0.8845984
## 1344 0.9057377 0.8709579 0.8816392 0.8845984
## 1345 0.8657143 0.8709579 0.8932935 0.8845984
## 1346 0.8880126 0.8709579 0.8932935 0.8996840
## 1347 0.9156328 0.8709579 0.8816392 0.8845984
## 1348 0.8880126 0.8709579 0.8932935 0.8845984
## 1349 0.8657143 0.8709579 0.8932935 0.8845984
## 1350 0.8348348 0.9512195 0.8932935 0.8845984
## 1351 0.8880126 0.8709579 0.8932935 0.8845984
## 1352 0.9057377 0.8709579 0.8816392 0.8845984
## 1353 0.8657143 0.9512195 0.8932935 0.8845984
## 1354 0.8657143 0.8709579 0.8932935 0.8845984
## 1355 0.9156328 0.8709579 0.8816392 0.8845984
## 1356 0.8657143 0.8709579 0.8932935 0.8845984
## 1357 0.8657143 0.8709579 0.8816392 0.8845984
## 1358 0.8880126 0.8709579 0.8816392 0.8845984
## 1359 0.8657143 0.8709579 0.8816392 0.8845984
## 1360 0.8657143 0.8709579 0.8816392 0.8845984
## 1361 0.9156328 0.8709579 0.8932935 0.8845984
## 1362 0.8880126 0.8709579 0.8816392 0.8845984
## 1363 0.8657143 0.8709579 0.8816392 0.8845984
## 1364 0.8348348 0.9512195 0.8816392 0.8845984
## 1365 0.8657143 0.8709579 0.8816392 0.8845984
## 1366 0.9156328 0.9512195 0.8816392 0.8996840
## 1367 0.8657143 0.8709579 0.8932935 0.8996840
## 1368 0.8657143 0.8709579 0.8816392 0.8845984
## 1369 0.8967552 0.8709579 0.8816392 0.8845984
## 1370 0.9156328 0.8709579 0.8932935 0.8996840
## 1371 0.9057377 0.9512195 0.8816392 0.8845984
## 1372 0.8657143 0.8709579 0.8932935 0.8845984
## 1373 0.8880126 0.9512195 0.8816392 0.8845984
## 1374 0.9156328 0.9512195 0.8816392 0.8996840
## 1375 0.8657143 0.8709579 0.8816392 0.8845984
## 1376 0.8967552 0.8709579 0.8932935 0.8845984
## 1377 0.8880126 0.8709579 0.8932935 0.8845984
## 1378 0.8657143 0.8709579 0.8816392 0.8845984
## 1379 0.8657143 0.8709579 0.8932935 0.8845984
## 1380 0.8657143 0.8709579 0.8816392 0.8845984
## 1381 0.8880126 0.8709579 0.8932935 0.8996840
## 1382 0.8967552 0.8709579 0.8816392 0.8845984
## 1383 0.8657143 0.8709579 0.8816392 0.8845984
## 1384 0.8880126 0.8709579 0.8932935 0.8845984
## 1385 0.8657143 0.8709579 0.8932935 0.8845984
## 1386 0.8967552 0.8709579 0.8932935 0.8845984
## 1387 0.9156328 0.8709579 0.8932935 0.8845984
## 1388 0.8657143 0.9512195 0.8932935 0.8845984
## 1389 0.8657143 0.8709579 0.8816392 0.8845984
## 1390 0.8880126 0.8709579 0.8816392 0.8845984
## 1391 0.8657143 0.8709579 0.8816392 0.8845984
## 1392 0.8657143 0.8709579 0.8816392 0.8845984
## 1393 0.9156328 0.9512195 0.8932935 0.8996840
## 1394 0.8880126 0.8709579 0.8932935 0.8845984
## 1395 0.9075630 0.8709579 0.8816392 0.8845984
## 1396 0.8657143 0.8709579 0.8816392 0.8996840
## 1397 0.9156328 0.8709579 0.8816392 0.8845984
## 1398 0.8657143 0.8709579 0.8816392 0.8845984
## 1399 0.8657143 0.8709579 0.8816392 0.8845984
## 1400 0.8657143 0.8709579 0.8816392 0.8845984
## 1401 0.8657143 0.8709579 0.8932935 0.8845984
## 1402 0.8657143 0.8709579 0.8816392 0.8845984
## 1403 0.8657143 0.8709579 0.8932935 0.8845984
## 1404 0.8657143 0.8709579 0.8816392 0.8845984
## 1405 0.8967552 0.8709579 0.8932935 0.8845984
## 1406 0.8880126 0.9512195 0.8816392 0.8845984
## 1407 0.9075630 0.9512195 0.8932935 0.8996840
## 1408 0.9057377 0.8709579 0.8932935 0.8996840
## 1409 0.8880126 0.8709579 0.8816392 0.8845984
## 1410 0.8657143 0.8709579 0.9032258 0.9032258
## 1411 0.8880126 0.8709579 0.8932935 0.8845984
## 1412 0.9156328 0.9512195 0.8932935 0.8845984
## 1413 0.8880126 0.8709579 0.8816392 0.8845984
## 1414 0.9057377 0.8709579 0.8816392 0.8845984
## 1415 0.9156328 0.8709579 0.8816392 0.8845984
## 1416 0.9156328 0.9512195 0.8932935 0.8996840
## 1417 0.8880126 0.8709579 0.8932935 0.8845984
## 1418 0.8657143 0.8709579 0.8932935 0.8845984
## 1419 0.9075630 0.8709579 0.8816392 0.8845984
## 1420 0.8657143 0.8709579 0.8816392 0.8845984
## 1421 0.9156328 0.9512195 0.8932935 0.8845984
## 1422 0.8657143 0.8709579 0.8816392 0.8845984
## 1423 0.8880126 0.8709579 0.8816392 0.8845984
## 1424 0.9156328 0.8709579 0.8932935 0.8845984
## 1425 0.8348348 0.8709579 0.8932935 0.8845984
## 1426 0.9057377 0.8709579 0.8932935 0.8845984
## 1427 0.8657143 0.8709579 0.8932935 0.8845984
## 1428 0.9075630 0.8709579 0.8932935 0.8845984
## 1429 0.9156328 0.9512195 0.8816392 0.8845984
## 1430 0.8967552 0.8709579 0.8816392 0.8996840
## 1431 0.8880126 0.8709579 0.8816392 0.8996840
## 1432 0.8880126 0.8709579 0.8932935 0.8845984
## 1433 0.8880126 0.8709579 0.8932935 0.8996840
## 1434 0.8967552 0.8709579 0.8932935 0.8845984
## 1435 0.9156328 0.8709579 0.8816392 0.8845984
## 1436 0.8880126 0.8709579 0.8932935 0.8845984
## 1437 0.8880126 0.8709579 0.8932935 0.8996840
## 1438 0.8880126 0.9512195 0.8932935 0.8845984
## 1439 0.9075630 0.9512195 0.8932935 0.8845984
## 1440 0.8967552 0.8709579 0.8932935 0.8845984
## 1441 0.8967552 0.8709579 0.8816392 0.8845984
## 1442 0.9075630 0.9512195 0.8932935 0.8996840
## 1443 0.8880126 0.8709579 0.8816392 0.8845984
## 1444 0.8880126 0.8709579 0.8932935 0.8845984
## 1445 0.8880126 0.8709579 0.8816392 0.8845984
## 1446 0.8880126 0.8709579 0.8816392 0.8845984
## 1447 0.8880126 0.9512195 0.8816392 0.8845984
## 1448 0.8967552 0.8709579 0.8816392 0.8845984
## 1449 0.9156328 0.8709579 0.8816392 0.8845984
## 1450 0.8348348 0.8709579 0.8932935 0.8845984
## 1451 0.8967552 0.8709579 0.8932935 0.8845984
## 1452 0.9057377 0.8709579 0.8816392 0.8845984
## 1453 0.8880126 0.8709579 0.8932935 0.8996840
## 1454 0.8657143 0.8709579 0.8932935 0.8845984
## 1455 0.9057377 0.9512195 0.8932935 0.8996840
## 1456 0.8967552 0.8709579 0.8932935 0.8845984
## 1457 0.8657143 0.8709579 0.8816392 0.8845984
## 1458 0.9156328 0.8709579 0.8932935 0.8996840
## 1459 0.8657143 0.8709579 0.8932935 0.8996840
## 1460 0.8880126 0.9512195 0.8816392 0.8996840
## 1461 0.8657143 0.8709579 0.8932935 0.8845984
## 1462 0.8880126 0.8709579 0.8816392 0.8845984
## 1463 0.8967552 0.8709579 0.8816392 0.8996840
## 1464 0.9156328 0.8709579 0.8816392 0.8845984
## 1465 0.9075630 0.9512195 0.8816392 0.8996840
## 1466 0.9156328 0.8709579 0.8932935 0.8996840
## 1467 0.8348348 0.8709579 0.8816392 0.8996840
## 1468 0.8880126 0.8709579 0.8816392 0.8845984
## 1469 0.8657143 0.8709579 0.8932935 0.8845984
## 1470 0.8880126 0.8709579 0.8932935 0.8996840
## 1471 0.9156328 0.8709579 0.8932935 0.8845984
## 1472 0.8657143 0.8709579 0.8932935 0.8845984
## 1473 0.9156328 0.8709579 0.8816392 0.8845984
## 1474 0.9156328 0.8709579 0.8932935 0.8845984
## 1475 0.8967552 0.8709579 0.8816392 0.8845984
## 1476 0.9156328 0.8709579 0.8932935 0.8845984
## 1477 0.9156328 0.8709579 0.8816392 0.8845984
## 1478 0.9075630 0.8709579 0.8816392 0.8845984
## 1479 0.8657143 0.8709579 0.9032258 0.9032258
## 1480 0.8657143 0.8709579 0.8932935 0.8845984
## 1481 0.9156328 0.8709579 0.8816392 0.8845984
## 1482 0.8657143 0.8709579 0.8816392 0.8845984
## 1483 0.8967552 0.8709579 0.8816392 0.8845984
## 1484 0.8657143 0.8709579 0.8932935 0.8845984
## 1485 0.8657143 0.8709579 0.8816392 0.8845984
## 1486 0.9156328 0.9512195 0.8932935 0.8845984
## 1487 0.9057377 0.8709579 0.8932935 0.8996840
## 1488 0.9156328 0.9512195 0.8932935 0.8845984
## 1489 0.9057377 0.8709579 0.8816392 0.8845984
## 1490 0.8967552 0.8709579 0.8816392 0.8845984
## 1491 0.8348348 0.8709579 0.8816392 0.8845984
## 1492 0.8880126 0.8709579 0.8932935 0.8845984
## 1493 0.9156328 0.9512195 0.8816392 0.8845984
## 1494 0.9057377 0.9512195 0.8932935 0.8845984
## 1495 0.9156328 0.8709579 0.8932935 0.8845984
## 1496 0.9075630 0.8709579 0.8816392 0.8845984
## 1497 0.8967552 0.8709579 0.8816392 0.8845984
## 1498 0.9075630 0.9512195 0.9032258 0.9032258
## 1499 0.8657143 0.8709579 0.8932935 0.8845984
## 1500 0.8967552 0.8709579 0.8932935 0.8845984
## 1501 0.8967552 0.8709579 0.8932935 0.8845984
## 1502 0.9156328 0.8709579 0.8932935 0.8845984
## 1503 0.8880126 0.8709579 0.8932935 0.8845984
## 1504 0.8657143 0.8709579 0.8932935 0.8845984
## 1505 0.8880126 0.8709579 0.8932935 0.8845984
## 1506 0.9156328 0.8709579 0.8816392 0.8845984
## 1507 0.9057377 0.9512195 0.8932935 0.8845984
## 1508 0.9156328 0.9512195 0.8932935 0.8845984
## 1509 0.8657143 0.8709579 0.8816392 0.8845984
## 1510 0.9156328 0.8709579 0.8816392 0.8996840
## 1511 0.8880126 0.8709579 0.8816392 0.8845984
## 1512 0.8880126 0.8709579 0.8932935 0.8845984
## 1513 0.8967552 0.8709579 0.8932935 0.8996840
## 1514 0.8657143 0.8709579 0.8816392 0.8996840
## 1515 0.8657143 0.8709579 0.8816392 0.8845984
## 1516 0.8880126 0.9512195 0.8816392 0.8845984
## 1517 0.8657143 0.8709579 0.8932935 0.8845984
## 1518 0.8348348 0.9512195 0.8932935 0.8996840
## 1519 0.9075630 0.9512195 0.8932935 0.8996840
## 1520 0.8348348 0.8709579 0.8816392 0.8845984
## 1521 0.8348348 0.8709579 0.8932935 0.8845984
## 1522 0.8880126 0.8709579 0.8816392 0.8845984
## 1523 0.8657143 0.8709579 0.8932935 0.8845984
## 1524 0.8657143 0.8709579 0.8816392 0.8845984
## 1525 0.9156328 0.8709579 0.8932935 0.8845984
## 1526 0.8657143 0.8709579 0.8932935 0.8845984
## 1527 0.8880126 0.8709579 0.8932935 0.8845984
## 1528 0.8880126 0.8709579 0.8932935 0.8845984
## 1529 0.8657143 0.8709579 0.8816392 0.8845984
## 1530 0.8967552 0.8709579 0.8816392 0.8845984
## 1531 0.8657143 0.9512195 0.8932935 0.8845984
## 1532 0.8348348 0.8709579 0.8932935 0.8845984
## 1533 0.8657143 0.8709579 0.8816392 0.8845984
## 1534 0.8967552 0.8709579 0.8816392 0.8845984
## 1535 0.9156328 0.8709579 0.8932935 0.8845984
## 1536 0.8967552 0.9512195 0.8932935 0.8845984
## 1537 0.8880126 0.8709579 0.8932935 0.8845984
## 1538 0.9156328 0.8709579 0.8816392 0.8845984
## 1539 0.8880126 0.8709579 0.8816392 0.8845984
## 1540 0.8880126 0.9512195 0.8932935 0.8845984
## 1541 0.8880126 0.8709579 0.8932935 0.8845984
## 1542 0.8967552 0.8709579 0.8932935 0.8845984
## 1543 0.8657143 0.8709579 0.8932935 0.8845984
## 1544 0.9075630 0.8709579 0.8932935 0.8845984
## 1545 0.8967552 0.8709579 0.8816392 0.8845984
## 1546 0.8657143 0.9512195 0.8816392 0.8845984
## 1547 0.8967552 0.8709579 0.8816392 0.8996840
## 1548 0.8967552 0.8709579 0.8816392 0.8845984
## 1549 0.8657143 0.8709579 0.8932935 0.8845984
## 1550 0.9156328 0.8709579 0.8816392 0.8845984
## 1551 0.8880126 0.8709579 0.8932935 0.8845984
## 1552 0.9156328 0.9512195 0.8816392 0.8845984
## 1553 0.9057377 0.8709579 0.8816392 0.8845984
## 1554 0.8880126 0.9512195 0.8816392 0.8845984
## 1555 0.9156328 0.8709579 0.8932935 0.8845984
## 1556 0.8967552 0.8709579 0.8816392 0.8845984
## 1557 0.8348348 0.8709579 0.8932935 0.8845984
## 1558 0.9156328 0.8709579 0.8816392 0.8845984
## 1559 0.9156328 0.9512195 0.8816392 0.8845984
## 1560 0.9156328 0.8709579 0.8816392 0.8996840
## 1561 0.9156328 0.8709579 0.8816392 0.8845984
## 1562 0.8967552 0.8709579 0.8816392 0.8845984
## 1563 0.8967552 0.8709579 0.8932935 0.8845984
## 1564 0.9075630 0.8709579 0.8816392 0.8845984
## 1565 0.8657143 0.8709579 0.8932935 0.8845984
## 1566 0.9156328 0.9512195 0.8816392 0.8845984
## 1567 0.9075630 0.8709579 0.8932935 0.8845984
## 1568 0.8880126 0.8709579 0.8932935 0.8845984
## 1569 0.8348348 0.8709579 0.8932935 0.8845984
## 1570 0.8880126 0.8709579 0.8932935 0.8845984
## 1571 0.8880126 0.8709579 0.8816392 0.8996840
## 1572 0.8657143 0.8709579 0.8816392 0.8845984
## 1573 0.8880126 0.9512195 0.8932935 0.8845984
## 1574 0.8967552 0.8709579 0.8932935 0.8845984
## 1575 0.9075630 0.9512195 0.8816392 0.8845984
## 1576 0.8657143 0.8709579 0.8816392 0.8845984
## 1577 0.8657143 0.8709579 0.8816392 0.8845984
## 1578 0.9075630 0.8709579 0.8816392 0.8845984
## 1579 0.8967552 0.8709579 0.8816392 0.8845984
## 1580 0.8657143 0.8709579 0.8932935 0.8845984
## 1581 0.8967552 0.9512195 0.8816392 0.8845984
## 1582 0.8880126 0.8709579 0.8816392 0.8845984
## 1583 0.9075630 0.8709579 0.8816392 0.8845984
## 1584 0.9156328 0.8709579 0.8932935 0.8845984
## 1585 0.9156328 0.8709579 0.8816392 0.8845984
## 1586 0.8657143 0.8709579 0.8932935 0.8845984
## 1587 0.9057377 0.8709579 0.8932935 0.8845984
## 1588 0.9057377 0.8709579 0.8932935 0.8845984
## 1589 0.8880126 0.8709579 0.8816392 0.8845984
## 1590 0.8880126 0.8709579 0.8932935 0.8845984
## 1591 0.8657143 0.8709579 0.8932935 0.8845984
## 1592 0.8880126 0.8709579 0.8816392 0.8845984
## 1593 0.9075630 0.9512195 0.8932935 0.8845984
## 1594 0.9156328 0.8709579 0.8932935 0.8996840
## 1595 0.8880126 0.8709579 0.8816392 0.8845984
## 1596 0.8657143 0.8709579 0.8932935 0.8845984
## 1597 0.8967552 0.8709579 0.8816392 0.8845984
## 1598 0.9075630 0.8709579 0.8816392 0.8996840
## 1599 0.9156328 0.8709579 0.8932935 0.8996840
## 1600 0.8880126 0.8709579 0.8816392 0.8845984
## 1601 0.8880126 0.8709579 0.8816392 0.8845984
## 1602 0.8880126 0.8709579 0.8932935 0.8845984
## 1603 0.9156328 0.9512195 0.8932935 0.8845984
## 1604 0.9057377 0.8709579 0.8816392 0.8845984
## 1605 0.9156328 0.9512195 0.8932935 0.8845984
## 1606 0.9057377 0.9512195 0.8932935 0.8845984
## 1607 0.8880126 0.8709579 0.8932935 0.8845984
## 1608 0.8657143 0.8709579 0.8816392 0.8845984
## 1609 0.8657143 0.8709579 0.8932935 0.8845984
## 1610 0.8880126 0.8709579 0.8932935 0.8845984
## 1611 0.9156328 0.9512195 0.8932935 0.8996840
## 1612 0.9156328 0.9512195 0.8816392 0.8845984
## 1613 0.8657143 0.9512195 0.8932935 0.8845984
## 1614 0.8967552 0.8709579 0.8932935 0.8996840
## 1615 0.8967552 0.8709579 0.8816392 0.8845984
## 1616 0.8657143 0.9512195 0.8816392 0.8845984
## 1617 0.8657143 0.8709579 0.8932935 0.8845984
## 1618 0.9075630 0.9512195 0.8816392 0.8845984
## 1619 0.8657143 0.8709579 0.8932935 0.8845984
## 1620 0.8967552 0.8709579 0.8932935 0.8845984
## 1621 0.8880126 0.8709579 0.8932935 0.8845984
## 1622 0.9075630 0.8709579 0.8816392 0.8845984
## 1623 0.8657143 0.8709579 0.8932935 0.8845984
## 1624 0.9156328 0.8709579 0.8816392 0.8845984
## 1625 0.8880126 0.8709579 0.8816392 0.8845984
## 1626 0.8967552 0.9512195 0.8816392 0.8845984
## 1627 0.8880126 0.8709579 0.8816392 0.8845984
## 1628 0.8880126 0.8709579 0.8816392 0.8845984
## 1629 0.8880126 0.8709579 0.8816392 0.8996840
## 1630 0.9156328 0.8709579 0.8816392 0.8845984
## 1631 0.9057377 0.8709579 0.8816392 0.8845984
## 1632 0.9156328 0.9512195 0.8816392 0.8996840
## 1633 0.8880126 0.8709579 0.8932935 0.8845984
## 1634 0.8657143 0.8709579 0.8816392 0.8845984
## 1635 0.8657143 0.8709579 0.8932935 0.8845984
## 1636 0.8657143 0.8709579 0.8932935 0.8845984
## 1637 0.9075630 0.8709579 0.8816392 0.8845984
## 1638 0.8880126 0.8709579 0.8816392 0.8845984
## 1639 0.8657143 0.8709579 0.8816392 0.8845984
## 1640 0.8348348 0.8709579 0.8932935 0.8845984
## 1641 0.9156328 0.8709579 0.8932935 0.8845984
## 1642 0.8657143 0.9512195 0.8932935 0.8845984
## 1643 0.8967552 0.8709579 0.8816392 0.8845984
## 1644 0.8657143 0.8709579 0.8932935 0.8845984
## 1645 0.9156328 0.8709579 0.8816392 0.8845984
## 1646 0.8880126 0.8709579 0.8816392 0.8845984
## 1647 0.8880126 0.8709579 0.8816392 0.8996840
## 1648 0.9057377 0.8709579 0.8816392 0.8845984
## 1649 0.9075630 0.8709579 0.8932935 0.8996840
## 1650 0.9075630 0.8709579 0.8932935 0.8845984
## 1651 0.8967552 0.8709579 0.8816392 0.8845984
## 1652 0.8657143 0.8709579 0.9032258 0.9032258
## 1653 0.8880126 0.8709579 0.8816392 0.8845984
## 1654 0.8348348 0.8709579 0.8932935 0.8845984
## 1655 0.8657143 0.8709579 0.8816392 0.8845984
## 1656 0.8880126 0.8709579 0.8932935 0.8845984
## 1657 0.8657143 0.9512195 0.8816392 0.8845984
## 1658 0.8657143 0.8709579 0.8816392 0.8845984
## 1659 0.8880126 0.8709579 0.8932935 0.8845984
## 1660 0.9156328 0.8709579 0.8816392 0.8845984
## 1661 0.8657143 0.9512195 0.8816392 0.8996840
## 1662 0.8880126 0.8709579 0.8816392 0.8845984
## 1663 0.8657143 0.8709579 0.8816392 0.8845984
## 1664 0.8657143 0.8709579 0.8816392 0.8845984
## 1665 0.8880126 0.9512195 0.8932935 0.8845984
## 1666 0.8967552 0.8709579 0.8816392 0.8845984
## 1667 0.8657143 0.8709579 0.9032258 0.9032258
## 1668 0.8967552 0.8709579 0.8932935 0.8845984
## 1669 0.9075630 0.8709579 0.8816392 0.8996840
## 1670 0.9075630 0.9512195 0.8932935 0.8845984
## 1671 0.8657143 0.8709579 0.8932935 0.8845984
## 1672 0.9075630 0.9512195 0.8932935 0.8845984
## 1673 0.9075630 0.8709579 0.8932935 0.8845984
## 1674 0.8967552 0.8709579 0.8816392 0.8845984
## 1675 0.9075630 0.9512195 0.8932935 0.8845984
## 1676 0.8880126 0.8709579 0.8932935 0.8996840
## 1677 0.9156328 0.8709579 0.8816392 0.8845984
## 1678 0.9075630 0.9512195 0.8932935 0.8845984
## 1679 0.8967552 0.8709579 0.8816392 0.8845984
## 1680 0.9075630 0.8709579 0.8816392 0.8845984
## 1681 0.8880126 0.8709579 0.8816392 0.8845984
## 1682 0.8967552 0.8709579 0.8932935 0.8845984
## 1683 0.9057377 0.8709579 0.8816392 0.8845984
## 1684 0.8657143 0.9512195 0.8932935 0.8845984
## 1685 0.8348348 0.9512195 0.8932935 0.8845984
## 1686 0.8657143 0.8709579 0.8932935 0.8845984
## 1687 0.8657143 0.8709579 0.8932935 0.8996840
## 1688 0.9156328 0.8709579 0.8816392 0.8845984
## 1689 0.8880126 0.8709579 0.8816392 0.8845984
## 1690 0.8967552 0.8709579 0.8816392 0.8996840
## 1691 0.8348348 0.8709579 0.8932935 0.8996840
## 1692 0.8657143 0.8709579 0.8816392 0.8996840
## 1693 0.8657143 0.8709579 0.8932935 0.8845984
## 1694 0.8880126 0.9512195 0.8816392 0.8845984
## 1695 0.9057377 0.8709579 0.8932935 0.8845984
## 1696 0.8657143 0.8709579 0.8816392 0.8845984
## 1697 0.9057377 0.9512195 0.8816392 0.8845984
## 1698 0.9156328 0.9512195 0.8932935 0.8845984
## 1699 0.8880126 0.8709579 0.8816392 0.8845984
## 1700 0.8880126 0.9512195 0.8932935 0.8845984
## 1701 0.8657143 0.8709579 0.8816392 0.8996840
## 1702 0.9075630 0.9512195 0.8816392 0.8845984
## 1703 0.8967552 0.8709579 0.8816392 0.8996840
## 1704 0.8657143 0.8709579 0.8932935 0.8845984
## 1705 0.8348348 0.8709579 0.8816392 0.8845984
## 1706 0.8880126 0.8709579 0.8816392 0.8845984
## 1707 0.8657143 0.8709579 0.8816392 0.8845984
## 1708 0.9057377 0.8709579 0.8816392 0.8845984
## 1709 0.8967552 0.8709579 0.8816392 0.8996840
## 1710 0.8348348 0.8709579 0.8932935 0.8845984
## 1711 0.8657143 0.8709579 0.8932935 0.8845984
## 1712 0.8880126 0.8709579 0.8816392 0.8996840
## 1713 0.8880126 0.8709579 0.8816392 0.8845984
## 1714 0.9156328 0.9512195 0.8816392 0.8845984
## 1715 0.8657143 0.8709579 0.8816392 0.8845984
## 1716 0.8880126 0.8709579 0.8816392 0.8845984
## 1717 0.8967552 0.8709579 0.8816392 0.8845984
## 1718 0.8657143 0.8709579 0.8816392 0.8845984
## 1719 0.8880126 0.8709579 0.8816392 0.8845984
## 1720 0.8967552 0.8709579 0.8932935 0.8845984
## 1721 0.8657143 0.8709579 0.8932935 0.8845984
## 1722 0.8657143 0.9512195 0.8932935 0.8845984
## 1723 0.8348348 0.9512195 0.8816392 0.8845984
## 1724 0.8880126 0.8709579 0.8816392 0.8845984
## 1725 0.8657143 0.8709579 0.8932935 0.8845984
## 1726 0.9156328 0.9512195 0.8932935 0.8845984
## 1727 0.9156328 0.8709579 0.8932935 0.8845984
## 1728 0.8657143 0.8709579 0.8816392 0.8845984
## 1729 0.8880126 0.8709579 0.8816392 0.8845984
## 1730 0.8880126 0.8709579 0.8816392 0.8845984
## 1731 0.8657143 0.8709579 0.8816392 0.8845984
## 1732 0.8967552 0.8709579 0.8816392 0.8845984
## 1733 0.8657143 0.8709579 0.8932935 0.8845984
## 1734 0.9075630 0.9512195 0.8932935 0.8996840
## 1735 0.8657143 0.8709579 0.8816392 0.8845984
## 1736 0.8348348 0.8709579 0.8932935 0.8845984
## 1737 0.8880126 0.8709579 0.8816392 0.8845984
## 1738 0.8880126 0.9512195 0.9032258 0.9032258
## 1739 0.8657143 0.8709579 0.9032258 0.9032258
## 1740 0.8348348 0.8709579 0.8816392 0.8845984
## 1741 0.8880126 0.9512195 0.8816392 0.8845984
## 1742 0.8657143 0.9512195 0.8816392 0.8845984
## 1743 0.8880126 0.8709579 0.8816392 0.8845984
## 1744 0.8657143 0.9512195 0.8932935 0.8845984
## 1745 0.9057377 0.8709579 0.8816392 0.8845984
## 1746 0.9057377 0.9512195 0.8932935 0.8845984
## 1747 0.8348348 0.8709579 0.8816392 0.8845984
## 1748 0.9057377 0.8709579 0.8816392 0.8845984
## 1749 0.8880126 0.8709579 0.8816392 0.8845984
## 1750 0.8967552 0.8709579 0.8816392 0.8845984
## 1751 0.8657143 0.8709579 0.8932935 0.8996840
## 1752 0.8967552 0.8709579 0.8816392 0.8845984
## 1753 0.9075630 0.8709579 0.8932935 0.8845984
## 1754 0.9156328 0.8709579 0.9032258 0.9032258
## 1755 0.8657143 0.8709579 0.8816392 0.8845984
## 1756 0.8657143 0.8709579 0.8932935 0.8845984
## 1757 0.9156328 0.8709579 0.8816392 0.8845984
## 1758 0.9156328 0.8709579 0.8816392 0.8845984
## 1759 0.8967552 0.8709579 0.8816392 0.8845984
## 1760 0.8967552 0.8709579 0.8816392 0.8845984
## 1761 0.8657143 0.8709579 0.8816392 0.8845984
## 1762 0.9156328 0.9512195 0.8932935 0.8845984
## 1763 0.9156328 0.8709579 0.8816392 0.8996840
## 1764 0.8657143 0.8709579 0.8816392 0.8996840
## 1765 0.8880126 0.8709579 0.8816392 0.8845984
## 1766 0.9075630 0.8709579 0.8932935 0.8996840
## 1767 0.8880126 0.8709579 0.8816392 0.8845984
## 1768 0.8657143 0.8709579 0.8816392 0.8845984
## 1769 0.8657143 0.8709579 0.8816392 0.8996840
## 1770 0.8880126 0.8709579 0.8816392 0.8845984
## 1771 0.8880126 0.8709579 0.8816392 0.8845984
## 1772 0.9156328 0.8709579 0.8932935 0.8845984
## 1773 0.9156328 0.9512195 0.8816392 0.8845984
## 1774 0.8657143 0.8709579 0.8816392 0.8996840
## 1775 0.9075630 0.8709579 0.8932935 0.8845984
## 1776 0.8880126 0.8709579 0.8816392 0.8845984
## 1777 0.8657143 0.8709579 0.8932935 0.8845984
## 1778 0.9057377 0.9512195 0.8816392 0.8845984
## 1779 0.8880126 0.8709579 0.8816392 0.8845984
## 1780 0.8880126 0.8709579 0.8932935 0.8845984
## 1781 0.8657143 0.8709579 0.8816392 0.8845984
## 1782 0.8657143 0.8709579 0.8932935 0.8845984
## 1783 0.8880126 0.8709579 0.8932935 0.8845984
## 1784 0.8880126 0.9512195 0.8816392 0.8996840
## 1785 0.8880126 0.8709579 0.8932935 0.8845984
## 1786 0.8967552 0.8709579 0.8816392 0.8845984
## 1787 0.9156328 0.8709579 0.8932935 0.8845984
## 1788 0.8657143 0.8709579 0.8932935 0.8845984
## 1789 0.8657143 0.8709579 0.8816392 0.8845984
## 1790 0.8880126 0.9512195 0.8932935 0.8845984
## 1791 0.9075630 0.9512195 0.8932935 0.8845984
## 1792 0.8967552 0.9512195 0.8816392 0.8845984
## 1793 0.8657143 0.9512195 0.8816392 0.8845984
## 1794 0.8348348 0.8709579 0.8932935 0.8845984
## 1795 0.9075630 0.8709579 0.8816392 0.8845984
## 1796 0.8967552 0.8709579 0.8816392 0.8845984
## 1797 0.8657143 0.8709579 0.8932935 0.8996840
## 1798 0.8348348 0.8709579 0.8932935 0.8845984
## 1799 0.8657143 0.8709579 0.8816392 0.8845984
## 1800 0.9075630 0.8709579 0.8932935 0.8845984
## 1801 0.8657143 0.8709579 0.8816392 0.8996840
## 1802 0.8880126 0.8709579 0.8816392 0.8845984
## 1803 0.8657143 0.8709579 0.8932935 0.8845984
## 1804 0.8348348 0.8709579 0.8816392 0.8845984
## 1805 0.9075630 0.8709579 0.8932935 0.8845984
## 1806 0.8880126 0.9512195 0.8932935 0.8845984
## 1807 0.9156328 0.8709579 0.8816392 0.8845984
## 1808 0.8657143 0.8709579 0.8932935 0.8845984
## 1809 0.8657143 0.9512195 0.8932935 0.8845984
## 1810 0.9057377 0.8709579 0.8932935 0.8845984
## 1811 0.9156328 0.9512195 0.8932935 0.8845984
## 1812 0.8880126 0.8709579 0.8816392 0.8845984
## 1813 0.8657143 0.8709579 0.8932935 0.8845984
## 1814 0.8657143 0.8709579 0.8932935 0.8845984
## 1815 0.9156328 0.9512195 0.8816392 0.8845984
## 1816 0.9075630 0.8709579 0.8932935 0.8845984
## 1817 0.9156328 0.9512195 0.8932935 0.8996840
## 1818 0.8348348 0.8709579 0.8932935 0.8845984
## 1819 0.9156328 0.9512195 0.8932935 0.8845984
## 1820 0.8880126 0.9512195 0.8816392 0.8996840
## 1821 0.9156328 0.8709579 0.8932935 0.8845984
## 1822 0.9057377 0.9512195 0.8932935 0.8845984
## 1823 0.8880126 0.8709579 0.8932935 0.8845984
## 1824 0.9057377 0.8709579 0.8816392 0.8845984
## 1825 0.8657143 0.8709579 0.8932935 0.8845984
## 1826 0.8880126 0.9512195 0.8816392 0.8845984
## 1827 0.9156328 0.8709579 0.8816392 0.8845984
## 1828 0.8657143 0.8709579 0.8816392 0.8845984
## 1829 0.9156328 0.8709579 0.8816392 0.8845984
## 1830 0.8348348 0.8709579 0.8816392 0.8845984
## 1831 0.8967552 0.8709579 0.8932935 0.8845984
## 1832 0.8880126 0.9512195 0.8932935 0.8845984
## 1833 0.8880126 0.9512195 0.8932935 0.8845984
## 1834 0.8657143 0.8709579 0.8816392 0.8845984
## 1835 0.8348348 0.8709579 0.8816392 0.8845984
## 1836 0.8657143 0.8709579 0.8816392 0.8845984
## 1837 0.8657143 0.8709579 0.8932935 0.8845984
## 1838 0.9075630 0.9512195 0.8932935 0.8845984
## 1839 0.8657143 0.8709579 0.8932935 0.8845984
## 1840 0.8880126 0.9512195 0.8932935 0.8845984
## 1841 0.9075630 0.8709579 0.8932935 0.8845984
## 1842 0.8657143 0.8709579 0.8816392 0.8996840
## 1843 0.8657143 0.8709579 0.8816392 0.8996840
## 1844 0.8657143 0.8709579 0.8932935 0.8845984
## 1845 0.9156328 0.8709579 0.8816392 0.8845984
## 1846 0.8880126 0.8709579 0.8816392 0.8845984
## 1847 0.8348348 0.8709579 0.8932935 0.8845984
## 1848 0.8880126 0.8709579 0.8816392 0.8845984
## 1849 0.8348348 0.9512195 0.8932935 0.8845984
## 1850 0.8657143 0.8709579 0.8932935 0.8845984
## 1851 0.8657143 0.9512195 0.8932935 0.8845984
## 1852 0.9075630 0.8709579 0.8816392 0.8845984
## 1853 0.9075630 0.9512195 0.8932935 0.8845984
## 1854 0.8967552 0.8709579 0.8932935 0.8845984
## 1855 0.8657143 0.8709579 0.8816392 0.8996840
## 1856 0.8657143 0.8709579 0.8932935 0.8845984
## 1857 0.8657143 0.9512195 0.8816392 0.8996840
## 1858 0.8880126 0.8709579 0.9032258 0.9032258
## 1859 0.9075630 0.8709579 0.8932935 0.8845984
## 1860 0.9057377 0.9512195 0.8932935 0.8996840
## 1861 0.8880126 0.9512195 0.8816392 0.8845984
## 1862 0.8657143 0.8709579 0.8816392 0.8845984
## 1863 0.8657143 0.8709579 0.8932935 0.8845984
## 1864 0.8880126 0.8709579 0.8816392 0.8845984
## 1865 0.8880126 0.8709579 0.8932935 0.8996840
## 1866 0.8880126 0.8709579 0.8816392 0.8845984
## 1867 0.8967552 0.9512195 0.8932935 0.8845984
## 1868 0.8348348 0.8709579 0.8932935 0.8845984
## 1869 0.8657143 0.8709579 0.8816392 0.8845984
## 1870 0.9156328 0.8709579 0.8816392 0.8845984
## 1871 0.8880126 0.8709579 0.8816392 0.8845984
## 1872 0.9075630 0.8709579 0.8816392 0.8845984
## 1873 0.8967552 0.8709579 0.8816392 0.8845984
## 1874 0.9057377 0.8709579 0.8932935 0.8845984
## 1875 0.8657143 0.8709579 0.8932935 0.8996840
## 1876 0.8967552 0.8709579 0.8816392 0.8845984
## 1877 0.9057377 0.9512195 0.8932935 0.8845984
## 1878 0.8967552 0.8709579 0.8816392 0.8845984
## 1879 0.8657143 0.8709579 0.8816392 0.8845984
## 1880 0.9075630 0.9512195 0.8932935 0.8996840
## 1881 0.8967552 0.8709579 0.8932935 0.8845984
## 1882 0.8967552 0.8709579 0.8816392 0.8845984
## 1883 0.9057377 0.9512195 0.8932935 0.8845984
## 1884 0.8880126 0.8709579 0.8816392 0.8845984
## 1885 0.8880126 0.9512195 0.8932935 0.8845984
## 1886 0.8880126 0.8709579 0.8816392 0.8996840
## 1887 0.9057377 0.8709579 0.8816392 0.8845984
## 1888 0.8657143 0.8709579 0.8932935 0.8845984
## 1889 0.8880126 0.8709579 0.8816392 0.8845984
## 1890 0.8657143 0.8709579 0.8932935 0.8845984
## 1891 0.9156328 0.9512195 0.8816392 0.8845984
## 1892 0.8657143 0.9512195 0.8932935 0.8845984
## 1893 0.8880126 0.8709579 0.8816392 0.8845984
## 1894 0.8657143 0.9512195 0.8816392 0.8845984
## 1895 0.9075630 0.9512195 0.8932935 0.8845984
## 1896 0.8967552 0.8709579 0.8816392 0.8996840
## 1897 0.9075630 0.9512195 0.8932935 0.8845984
## 1898 0.8880126 0.8709579 0.8816392 0.8996840
## 1899 0.8880126 0.8709579 0.8932935 0.8845984
## 1900 0.9156328 0.8709579 0.8816392 0.8845984
## 1901 0.8967552 0.8709579 0.8816392 0.8845984
## 1902 0.9156328 0.8709579 0.8932935 0.8845984
## 1903 0.9057377 0.9512195 0.8932935 0.8845984
## 1904 0.9075630 0.8709579 0.8816392 0.8845984
## 1905 0.8657143 0.8709579 0.9032258 0.9032258
## 1906 0.8967552 0.8709579 0.8816392 0.8845984
## 1907 0.8657143 0.8709579 0.8816392 0.8845984
## 1908 0.9075630 0.8709579 0.8816392 0.8845984
## 1909 0.8657143 0.9512195 0.8932935 0.8845984
## 1910 0.8657143 0.8709579 0.8816392 0.8845984
## 1911 0.8967552 0.8709579 0.8816392 0.8845984
## 1912 0.8967552 0.9512195 0.8816392 0.8845984
## 1913 0.8967552 0.9512195 0.8816392 0.8845984
## 1914 0.9156328 0.8709579 0.8932935 0.8845984
## 1915 0.8657143 0.8709579 0.8932935 0.8845984
## 1916 0.8657143 0.8709579 0.8932935 0.8845984
## 1917 0.9156328 0.8709579 0.8816392 0.8845984
## 1918 0.9156328 0.8709579 0.8932935 0.8845984
## 1919 0.8880126 0.8709579 0.8932935 0.8845984
## 1920 0.9156328 0.8709579 0.8816392 0.8845984
## 1921 0.9075630 0.9512195 0.8816392 0.8845984
## 1922 0.8348348 0.8709579 0.8816392 0.8845984
## 1923 0.8880126 0.8709579 0.8816392 0.8845984
## 1924 0.8880126 0.8709579 0.8932935 0.8845984
## 1925 0.9057377 0.8709579 0.8932935 0.8996840
## 1926 0.8880126 0.9512195 0.8932935 0.8845984
## 1927 0.9156328 0.9512195 0.8816392 0.8996840
## 1928 0.8880126 0.8709579 0.8932935 0.8845984
## 1929 0.8967552 0.8709579 0.9032258 0.9032258
## 1930 0.9156328 0.9512195 0.8816392 0.8845984
## 1931 0.9057377 0.8709579 0.8816392 0.8845984
## 1932 0.8880126 0.8709579 0.8932935 0.8845984
## 1933 0.9075630 0.9512195 0.8932935 0.8845984
## 1934 0.8880126 0.8709579 0.8932935 0.8996840
## 1935 0.8348348 0.8709579 0.8932935 0.8845984
## 1936 0.8967552 0.8709579 0.8932935 0.8845984
## 1937 0.8880126 0.9512195 0.9032258 0.9032258
## 1938 0.8880126 0.8709579 0.8816392 0.8845984
## 1939 0.9057377 0.9512195 0.8932935 0.8845984
## 1940 0.8880126 0.8709579 0.8932935 0.8845984
## 1941 0.9156328 0.8709579 0.8816392 0.8845984
## 1942 0.9156328 0.8709579 0.8816392 0.8845984
## 1943 0.8657143 0.8709579 0.8816392 0.8845984
## 1944 0.8880126 0.8709579 0.8932935 0.8845984
## 1945 0.8967552 0.8709579 0.8932935 0.8845984
## 1946 0.8657143 0.8709579 0.8816392 0.8845984
## 1947 0.8880126 0.8709579 0.8816392 0.8845984
## 1948 0.8348348 0.8709579 0.8932935 0.8845984
## 1949 0.8880126 0.8709579 0.8816392 0.8845984
## 1950 0.8657143 0.8709579 0.8932935 0.8845984
## 1951 0.8880126 0.8709579 0.8816392 0.8845984
## 1952 0.8657143 0.8709579 0.8932935 0.8845984
## 1953 0.8657143 0.8709579 0.8932935 0.8845984
## 1954 0.8657143 0.8709579 0.8932935 0.8845984
## 1955 0.9057377 0.8709579 0.8932935 0.8845984
## 1956 0.8880126 0.9512195 0.8816392 0.8845984
## 1957 0.8880126 0.8709579 0.8932935 0.8845984
## 1958 0.8657143 0.8709579 0.8932935 0.8845984
## 1959 0.8967552 0.8709579 0.8932935 0.8845984
## 1960 0.9075630 0.8709579 0.8932935 0.8845984
## 1961 0.8880126 0.8709579 0.8816392 0.8845984
## 1962 0.8657143 0.8709579 0.8816392 0.8845984
## 1963 0.9075630 0.9512195 0.9032258 0.9032258
## 1964 0.8348348 0.8709579 0.8932935 0.8845984
## 1965 0.8880126 0.8709579 0.8816392 0.8845984
## 1966 0.8348348 0.8709579 0.8932935 0.8996840
## 1967 0.8657143 0.8709579 0.8816392 0.8845984
## 1968 0.8880126 0.8709579 0.8932935 0.8845984
## 1969 0.8348348 0.9512195 0.8816392 0.8996840
## 1970 0.8967552 0.9512195 0.8816392 0.8845984
## 1971 0.9075630 0.8709579 0.8932935 0.8845984
## 1972 0.9075630 0.8709579 0.8932935 0.8845984
## 1973 0.8657143 0.8709579 0.8816392 0.8996840
## 1974 0.8657143 0.8709579 0.8816392 0.8996840
## 1975 0.8880126 0.8709579 0.8816392 0.8845984
## 1976 0.8657143 0.8709579 0.8816392 0.8845984
## 1977 0.8880126 0.9512195 0.8932935 0.8845984
## 1978 0.9057377 0.8709579 0.8816392 0.8845984
## 1979 0.9057377 0.9512195 0.9032258 0.9032258
## 1980 0.8348348 0.9512195 0.8816392 0.8845984
## 1981 0.8967552 0.8709579 0.8932935 0.8845984
## 1982 0.9075630 0.9512195 0.8816392 0.8845984
## 1983 0.8657143 0.8709579 0.8816392 0.8845984
## 1984 0.8880126 0.9512195 0.8932935 0.8845984
## 1985 0.9156328 0.9512195 0.8816392 0.8845984
## 1986 0.9057377 0.8709579 0.8816392 0.8845984
## 1987 0.9075630 0.8709579 0.8932935 0.8845984
## 1988 0.9156328 0.8709579 0.8932935 0.8845984
## 1989 0.8880126 0.8709579 0.8932935 0.8845984
## 1990 0.8967552 0.9512195 0.8816392 0.8845984
## 1991 0.9156328 0.8709579 0.8816392 0.8845984
## 1992 0.8348348 0.9512195 0.8816392 0.8845984
## 1993 0.8880126 0.8709579 0.8816392 0.8845984
## 1994 0.8967552 0.8709579 0.8816392 0.8996840
## 1995 0.8657143 0.8709579 0.8932935 0.8845984
## 1996 0.8880126 0.8709579 0.8932935 0.8845984
## 1997 0.8967552 0.9512195 0.8932935 0.8845984
## 1998 0.8967552 0.8709579 0.8932935 0.8845984
## 1999 0.8657143 0.8709579 0.8932935 0.8845984
## 2000 0.8967552 0.8709579 0.8932935 0.8845984
## 2001 0.8657143 0.8709579 0.8816392 0.8845984
## 2002 0.8657143 0.8709579 0.8816392 0.8845984
## 2003 0.9075630 0.9512195 0.8816392 0.8845984
## 2004 0.9156328 0.8709579 0.8816392 0.8845984
## 2005 0.8880126 0.8709579 0.8816392 0.8845984
## 2006 0.9156328 0.9512195 0.8816392 0.8845984
## 2007 0.9156328 0.8709579 0.8932935 0.8845984
## 2008 0.8880126 0.8709579 0.8932935 0.8996840
## 2009 0.8880126 0.8709579 0.8816392 0.8845984
## 2010 0.9156328 0.8709579 0.8816392 0.8996840
## 2011 0.8880126 0.8709579 0.8932935 0.8845984
## 2012 0.8880126 0.8709579 0.8932935 0.8996840
## 2013 0.8657143 0.8709579 0.8816392 0.8845984
## 2014 0.8657143 0.8709579 0.8816392 0.8845984
## 2015 0.9156328 0.8709579 0.8816392 0.8845984
## 2016 0.8348348 0.9512195 0.8816392 0.8845984
## 2017 0.8657143 0.8709579 0.8816392 0.8996840
## 2018 0.9156328 0.9512195 0.8816392 0.8845984
## 2019 0.8967552 0.8709579 0.8932935 0.8845984
## 2020 0.9156328 0.9512195 0.8932935 0.8845984
## 2021 0.9156328 0.8709579 0.8816392 0.8845984
## 2022 0.8657143 0.8709579 0.8816392 0.8996840
## 2023 0.9075630 0.8709579 0.8816392 0.8845984
## 2024 0.8880126 0.8709579 0.8932935 0.8845984
## 2025 0.8880126 0.8709579 0.8932935 0.8845984
## 2026 0.9156328 0.8709579 0.8816392 0.8996840
## 2027 0.9075630 0.9512195 0.8816392 0.8845984
## 2028 0.9156328 0.8709579 0.8816392 0.8845984
## 2029 0.9156328 0.9512195 0.8816392 0.8845984
## 2030 0.8657143 0.8709579 0.8932935 0.8845984
## 2031 0.8000000 0.8709579 0.8816392 0.8845984
## 2032 0.9156328 0.8709579 0.8816392 0.8845984
## 2033 0.8880126 0.9512195 0.8816392 0.8845984
## 2034 0.8657143 0.8709579 0.8816392 0.8996840
## 2035 0.8657143 0.8709579 0.8816392 0.8996840
## 2036 0.8967552 0.8709579 0.8816392 0.8996840
## 2037 0.8880126 0.8709579 0.8816392 0.8845984
## 2038 0.9057377 0.8709579 0.8816392 0.8845984
## 2039 0.8880126 0.8709579 0.8816392 0.8845984
## 2040 0.8967552 0.9512195 0.8932935 0.8845984
## 2041 0.8657143 0.8709579 0.8816392 0.8845984
## 2042 0.9156328 0.8709579 0.8816392 0.8845984
## 2043 0.8657143 0.8709579 0.8932935 0.8845984
## 2044 0.9156328 0.8709579 0.8816392 0.8845984
## 2045 0.8880126 0.9512195 0.8816392 0.8845984
## 2046 0.9156328 0.8709579 0.8816392 0.8845984
## 2047 0.8348348 0.8709579 0.8932935 0.8845984
## 2048 0.9156328 0.8709579 0.8932935 0.8845984
## 2049 0.8880126 0.8709579 0.8816392 0.8845984
## 2050 0.8967552 0.9512195 0.8816392 0.8845984
## 2051 0.8348348 0.9512195 0.8932935 0.8845984
## 2052 0.8880126 0.8709579 0.8816392 0.8845984
## 2053 0.8880126 0.8709579 0.9032258 0.9032258
## 2054 0.8657143 0.8709579 0.8816392 0.8996840
## 2055 0.9075630 0.8709579 0.8932935 0.8845984
## 2056 0.9156328 0.8709579 0.8932935 0.8845984
## 2057 0.8880126 0.9512195 0.8816392 0.8845984
## 2058 0.8967552 0.8709579 0.8816392 0.8845984
## 2059 0.8657143 0.8709579 0.8816392 0.8845984
## 2060 0.8880126 0.8709579 0.8816392 0.8845984
## 2061 0.8880126 0.8709579 0.8816392 0.8996840
## 2062 0.9156328 0.8709579 0.8816392 0.8845984
## 2063 0.8880126 0.8709579 0.8816392 0.8845984
## 2064 0.9075630 0.8709579 0.8816392 0.8845984
## 2065 0.8880126 0.8709579 0.8932935 0.8845984
## 2066 0.8657143 0.8709579 0.8816392 0.8845984
## 2067 0.8657143 0.8709579 0.8932935 0.8845984
## 2068 0.8348348 0.9512195 0.8816392 0.8845984
## 2069 0.8657143 0.8709579 0.8816392 0.8845984
## 2070 0.9075630 0.8709579 0.8932935 0.8845984
## 2071 0.8657143 0.8709579 0.8816392 0.8845984
## 2072 0.8967552 0.8709579 0.8932935 0.8845984
## 2073 0.8657143 0.8709579 0.8816392 0.8845984
## 2074 0.8657143 0.9512195 0.8932935 0.8996840
## 2075 0.8880126 0.8709579 0.8816392 0.8845984
## 2076 0.9156328 0.9512195 0.8816392 0.8845984
## 2077 0.8880126 0.8709579 0.8816392 0.8845984
## 2078 0.8657143 0.8709579 0.8816392 0.8845984
## 2079 0.8967552 0.8709579 0.8816392 0.8845984
## 2080 0.8967552 0.8709579 0.8932935 0.8845984
## 2081 0.9057377 0.8709579 0.8932935 0.8845984
## 2082 0.8880126 0.8709579 0.8816392 0.8845984
## 2083 0.8657143 0.8709579 0.8816392 0.8845984
## 2084 0.9156328 0.8709579 0.8816392 0.8996840
## 2085 0.9075630 0.8709579 0.8816392 0.8845984
## 2086 0.8657143 0.8709579 0.8932935 0.8996840
## 2087 0.8657143 0.8709579 0.8932935 0.8996840
## 2088 0.8880126 0.9512195 0.8932935 0.8845984
## 2089 0.8967552 0.8709579 0.8816392 0.8845984
## 2090 0.9075630 0.9512195 0.8932935 0.8845984
## 2091 0.8657143 0.8709579 0.8932935 0.8845984
## 2092 0.8657143 0.8709579 0.9032258 0.9032258
## 2093 0.8967552 0.8709579 0.8932935 0.8845984
## 2094 0.9057377 0.9512195 0.8816392 0.8845984
## 2095 0.9156328 0.9512195 0.8932935 0.8845984
## 2096 0.9156328 0.8709579 0.8816392 0.8845984
## 2097 0.8657143 0.8709579 0.8932935 0.8845984
## 2098 0.8348348 0.8709579 0.8816392 0.8845984
## 2099 0.9057377 0.8709579 0.8816392 0.8845984
## 2100 0.8657143 0.8709579 0.8816392 0.8845984
## 2101 0.8657143 0.9512195 0.8816392 0.8996840
## 2102 0.8657143 0.9512195 0.8816392 0.8845984
## 2103 0.8348348 0.9512195 0.8932935 0.8996840
## 2104 0.8967552 0.8709579 0.8932935 0.8845984
## 2105 0.8657143 0.8709579 0.8816392 0.8845984
## 2106 0.8967552 0.8709579 0.8932935 0.8845984
## 2107 0.8967552 0.8709579 0.8816392 0.8845984
## 2108 0.8657143 0.8709579 0.8816392 0.8845984
## 2109 0.8657143 0.8709579 0.8816392 0.8996840
## 2110 0.8657143 0.8709579 0.8932935 0.8845984
## 2111 0.8880126 0.8709579 0.8816392 0.8996840
## 2112 0.8880126 0.8709579 0.8816392 0.8996840
## 2113 0.8967552 0.8709579 0.8932935 0.8996840
## 2114 0.9156328 0.8709579 0.8816392 0.8845984
## 2115 0.9075630 0.9512195 0.8816392 0.8845984
## 2116 0.9075630 0.9512195 0.8816392 0.8845984
## 2117 0.8880126 0.8709579 0.8932935 0.8996840
## 2118 0.8657143 0.8709579 0.8932935 0.8996840
## 2119 0.8657143 0.8709579 0.8932935 0.8845984
## 2120 0.8967552 0.8709579 0.9032258 0.9032258
## 2121 0.9057377 0.9512195 0.8816392 0.8845984
## 2122 0.8657143 0.8709579 0.8932935 0.8845984
## 2123 0.8657143 0.8709579 0.8932935 0.8845984
## 2124 0.8657143 0.8709579 0.8932935 0.8845984
## 2125 0.8880126 0.9512195 0.8816392 0.8996840
## 2126 0.8657143 0.8709579 0.9032258 0.9032258
## 2127 0.9075630 0.8709579 0.8816392 0.8845984
## 2128 0.9075630 0.9512195 0.8816392 0.8996840
## 2129 0.8657143 0.8709579 0.8816392 0.8845984
## 2130 0.8657143 0.8709579 0.8816392 0.8845984
## 2131 0.9156328 0.8709579 0.8816392 0.8845984
## 2132 0.8967552 0.8709579 0.8816392 0.8845984
## 2133 0.8880126 0.8709579 0.8932935 0.8996840
## 2134 0.8657143 0.8709579 0.9032258 0.9032258
## 2135 0.9075630 0.9512195 0.8932935 0.8845984
## 2136 0.9156328 0.8709579 0.8816392 0.8845984
## 2137 0.8967552 0.8709579 0.8932935 0.8845984
## 2138 0.8657143 0.8709579 0.8816392 0.8845984
## 2139 0.9057377 0.9512195 0.8816392 0.8845984
## 2140 0.8657143 0.8709579 0.8816392 0.8845984
## 2141 0.8657143 0.9512195 0.8932935 0.8996840
## 2142 0.8880126 0.9512195 0.8932935 0.8845984
## 2143 0.8880126 0.8709579 0.8932935 0.8845984
## 2144 0.8657143 0.8709579 0.8932935 0.8845984
## 2145 0.8967552 0.8709579 0.8816392 0.8845984
## 2146 0.8880126 0.8709579 0.8816392 0.8845984
## 2147 0.8657143 0.9512195 0.8816392 0.8845984
## 2148 0.9156328 0.8709579 0.8932935 0.8845984
## 2149 0.9156328 0.8709579 0.8816392 0.8845984
## 2150 0.8967552 0.8709579 0.8932935 0.8996840
## 2151 0.8657143 0.8709579 0.8816392 0.8845984
## 2152 0.9075630 0.8709579 0.8816392 0.8845984
## 2153 0.9156328 0.8709579 0.8932935 0.8845984
## 2154 0.8967552 0.9512195 0.8932935 0.8845984
## 2155 0.8657143 0.8709579 0.8932935 0.8996840
## 2156 0.8967552 0.8709579 0.8816392 0.8845984
## 2157 0.9075630 0.8709579 0.8816392 0.8845984
## 2158 0.8657143 0.8709579 0.8932935 0.8845984
## 2159 0.9156328 0.8709579 0.8816392 0.8996840
## 2160 0.8880126 0.9512195 0.8932935 0.8845984
## 2161 0.8967552 0.8709579 0.8816392 0.8845984
## 2162 0.8967552 0.8709579 0.8932935 0.8996840
## 2163 0.8348348 0.8709579 0.8816392 0.8845984
## 2164 0.8657143 0.8709579 0.8932935 0.8845984
## 2165 0.9075630 0.8709579 0.8932935 0.8845984
## 2166 0.9156328 0.8709579 0.8816392 0.8845984
## 2167 0.8880126 0.8709579 0.8932935 0.8996840
## 2168 0.9057377 0.8709579 0.8932935 0.8845984
## 2169 0.8657143 0.8709579 0.8816392 0.8996840
## 2170 0.8000000 0.9512195 0.8932935 0.8996840
## 2171 0.9075630 0.8709579 0.8932935 0.8845984
## 2172 0.8880126 0.8709579 0.8932935 0.8845984
## 2173 0.8657143 0.8709579 0.8932935 0.8845984
## 2174 0.8880126 0.8709579 0.8816392 0.8845984
## 2175 0.8657143 0.8709579 0.8932935 0.8845984
## 2176 0.8657143 0.8709579 0.8932935 0.8845984
## 2177 0.9075630 0.8709579 0.8816392 0.8845984
## 2178 0.8880126 0.9512195 0.8932935 0.8845984
## 2179 0.8657143 0.8709579 0.8932935 0.8996840
## 2180 0.8880126 0.8709579 0.8816392 0.8845984
## 2181 0.9156328 0.8709579 0.8816392 0.8845984
## 2182 0.8657143 0.8709579 0.8816392 0.8845984
## 2183 0.8657143 0.8709579 0.8816392 0.8996840
## 2184 0.8657143 0.8709579 0.8932935 0.8845984
## 2185 0.8657143 0.8709579 0.8816392 0.8996840
## 2186 0.9075630 0.9512195 0.8816392 0.8845984
## 2187 0.8657143 0.8709579 0.8816392 0.8845984
## 2188 0.9156328 0.8709579 0.8816392 0.8845984
## 2189 0.9156328 0.9512195 0.8816392 0.8845984
## 2190 0.9156328 0.8709579 0.8816392 0.8845984
## 2191 0.8657143 0.8709579 0.8816392 0.8996840
## 2192 0.8657143 0.9512195 0.8932935 0.8996840
## 2193 0.9075630 0.9512195 0.8932935 0.8996840
## 2194 0.9156328 0.8709579 0.8932935 0.8845984
## 2195 0.9156328 0.8709579 0.8932935 0.8845984
## 2196 0.8880126 0.8709579 0.8816392 0.8845984
## 2197 0.8880126 0.9512195 0.8816392 0.8845984
## 2198 0.8967552 0.9512195 0.8932935 0.8845984
## 2199 0.8967552 0.8709579 0.8816392 0.8845984
## 2200 0.8880126 0.8709579 0.8816392 0.8996840
## 2201 0.8348348 0.9512195 0.8816392 0.8845984
## 2202 0.9057377 0.9512195 0.8932935 0.8996840
## 2203 0.8657143 0.8709579 0.8816392 0.8845984
## 2204 0.8348348 0.9512195 0.8816392 0.8996840
## 2205 0.8657143 0.8709579 0.8816392 0.8845984
## 2206 0.9156328 0.8709579 0.8816392 0.8845984
## 2207 0.8880126 0.8709579 0.8932935 0.8996840
## 2208 0.9156328 0.9512195 0.8816392 0.8845984
## 2209 0.9156328 0.8709579 0.8816392 0.8845984
## 2210 0.8657143 0.8709579 0.8932935 0.8845984
## 2211 0.8657143 0.8709579 0.8816392 0.8845984
## 2212 0.9156328 0.8709579 0.8816392 0.8845984
## 2213 0.8880126 0.8709579 0.8932935 0.8845984
## 2214 0.9156328 0.8709579 0.8816392 0.8845984
## 2215 0.8880126 0.8709579 0.8816392 0.8845984
## 2216 0.9075630 0.9512195 0.8816392 0.8845984
## 2217 0.9057377 0.8709579 0.8816392 0.8845984
## 2218 0.8880126 0.8709579 0.8932935 0.8845984
## 2219 0.9075630 0.9512195 0.8932935 0.8845984
## 2220 0.8880126 0.8709579 0.8932935 0.8845984
## 2221 0.8657143 0.8709579 0.8932935 0.8845984
## 2222 0.8880126 0.8709579 0.8816392 0.8845984
## 2223 0.9075630 0.9512195 0.8932935 0.8845984
## 2224 0.8880126 0.8709579 0.8816392 0.8845984
## 2225 0.8880126 0.9512195 0.8932935 0.8845984
## 2226 0.8967552 0.8709579 0.8932935 0.8845984
## 2227 0.8657143 0.8709579 0.8816392 0.8845984
## 2228 0.8880126 0.8709579 0.8816392 0.8845984
## 2229 0.8880126 0.8709579 0.8932935 0.8845984
## 2230 0.9075630 0.9512195 0.8932935 0.8845984
## 2231 0.8657143 0.8709579 0.8816392 0.8845984
## 2232 0.9156328 0.8709579 0.8932935 0.8845984
## 2233 0.8967552 0.8709579 0.8816392 0.8996840
## 2234 0.8657143 0.8709579 0.8932935 0.8996840
## 2235 0.8657143 0.8709579 0.8816392 0.8845984
## 2236 0.8348348 0.9512195 0.8816392 0.8845984
## 2237 0.9057377 0.8709579 0.8932935 0.8996840
## 2238 0.9156328 0.9512195 0.8932935 0.8996840
## 2239 0.8880126 0.8709579 0.8816392 0.8845984
## 2240 0.8657143 0.8709579 0.8816392 0.8845984
## 2241 0.8967552 0.8709579 0.8932935 0.8845984
## 2242 0.8657143 0.8709579 0.8816392 0.8845984
## 2243 0.8657143 0.8709579 0.8932935 0.8845984
## 2244 0.9156328 0.9512195 0.8816392 0.8845984
## 2245 0.8880126 0.8709579 0.8816392 0.8845984
## 2246 0.9075630 0.9512195 0.8932935 0.8845984
## 2247 0.8657143 0.8709579 0.8932935 0.8845984
## 2248 0.9156328 0.8709579 0.8932935 0.8845984
## 2249 0.8880126 0.9512195 0.8932935 0.8845984
## 2250 0.8967552 0.9512195 0.8816392 0.8845984
## 2251 0.8657143 0.8709579 0.8816392 0.8845984
## 2252 0.8348348 0.9512195 0.8932935 0.8996840
## 2253 0.8657143 0.8709579 0.8816392 0.8845984
## 2254 0.8657143 0.8709579 0.8816392 0.8845984
## 2255 0.8657143 0.8709579 0.8932935 0.8845984
## 2256 0.8657143 0.8709579 0.8816392 0.8996840
## 2257 0.8880126 0.8709579 0.8816392 0.8845984
## 2258 0.8657143 0.8709579 0.8816392 0.8845984
## 2259 0.8967552 0.8709579 0.8932935 0.8845984
## 2260 0.9156328 0.8709579 0.8932935 0.8996840
## 2261 0.8657143 0.8709579 0.8816392 0.8845984
## 2262 0.8657143 0.8709579 0.8932935 0.8845984
## 2263 0.9156328 0.8709579 0.8932935 0.8845984
## 2264 0.9156328 0.8709579 0.8932935 0.8996840
## 2265 0.8967552 0.8709579 0.8932935 0.8996840
## 2266 0.8967552 0.8709579 0.8816392 0.8845984
## 2267 0.8657143 0.8709579 0.9032258 0.9032258
## 2268 0.8880126 0.8709579 0.8932935 0.8845984
## 2269 0.8657143 0.8709579 0.8932935 0.8845984
## 2270 0.8657143 0.8709579 0.8932935 0.8845984
## 2271 0.8657143 0.8709579 0.8932935 0.8845984
## 2272 0.8657143 0.8709579 0.8932935 0.8996840
## 2273 0.8657143 0.9512195 0.8816392 0.8845984
## 2274 0.8880126 0.8709579 0.8932935 0.8845984
## 2275 0.8967552 0.8709579 0.8932935 0.8845984
## 2276 0.8880126 0.8709579 0.8816392 0.8996840
## 2277 0.9156328 0.8709579 0.8932935 0.8845984
## 2278 0.9156328 0.8709579 0.8932935 0.8845984
## 2279 0.9075630 0.8709579 0.8932935 0.8845984
## 2280 0.8657143 0.8709579 0.8932935 0.8996840
## 2281 0.9075630 0.9512195 0.8932935 0.8845984
## 2282 0.8657143 0.8709579 0.8816392 0.8996840
## 2283 0.8348348 0.8709579 0.8816392 0.8845984
## 2284 0.8880126 0.8709579 0.8816392 0.8845984
## 2285 0.8967552 0.8709579 0.8932935 0.8996840
## 2286 0.8657143 0.8709579 0.8816392 0.8845984
## 2287 0.9057377 0.8709579 0.8932935 0.8845984
## 2288 0.9057377 0.8709579 0.8932935 0.8845984
## 2289 0.8880126 0.8709579 0.8816392 0.8845984
## 2290 0.8657143 0.8709579 0.8816392 0.8845984
## 2291 0.8657143 0.8709579 0.8932935 0.8845984
## 2292 0.8348348 0.8709579 0.8816392 0.8845984
## 2293 0.8657143 0.8709579 0.8932935 0.8845984
## 2294 0.9075630 0.9512195 0.8816392 0.8845984
## 2295 0.8880126 0.8709579 0.8932935 0.8845984
## 2296 0.8657143 0.8709579 0.8932935 0.8996840
## 2297 0.9075630 0.9512195 0.8816392 0.8845984
## 2298 0.8880126 0.8709579 0.8816392 0.8845984
## 2299 0.8880126 0.9512195 0.8932935 0.8845984
## 2300 0.8880126 0.8709579 0.8932935 0.8845984
## 2301 0.8967552 0.8709579 0.8816392 0.8845984
## 2302 0.8657143 0.8709579 0.8816392 0.8996840
## 2303 0.8657143 0.8709579 0.8816392 0.8845984
## 2304 0.9057377 0.8709579 0.8932935 0.8845984
## 2305 0.9057377 0.8709579 0.8932935 0.8845984
## 2306 0.8657143 0.8709579 0.8816392 0.8845984
## 2307 0.8348348 0.8709579 0.8932935 0.8845984
## 2308 0.8348348 0.8709579 0.8816392 0.8845984
## 2309 0.8967552 0.8709579 0.8816392 0.8845984
## 2310 0.8967552 0.8709579 0.8816392 0.8845984
## 2311 0.8967552 0.8709579 0.8816392 0.8845984
## 2312 0.9156328 0.9512195 0.8816392 0.8845984
## 2313 0.8348348 0.8709579 0.8932935 0.8996840
## 2314 0.9156328 0.9512195 0.8932935 0.8845984
## 2315 0.8967552 0.9512195 0.8816392 0.8996840
## 2316 0.8657143 0.9512195 0.8932935 0.8845984
## 2317 0.8657143 0.8709579 0.8932935 0.8996840
## 2318 0.8880126 0.8709579 0.8816392 0.8845984
## 2319 0.8880126 0.9512195 0.8816392 0.8845984
## 2320 0.8657143 0.8709579 0.8816392 0.8845984
## 2321 0.8348348 0.8709579 0.8932935 0.8845984
## 2322 0.8348348 0.8709579 0.8932935 0.8845984
## 2323 0.8880126 0.9512195 0.8932935 0.8996840
## 2324 0.9156328 0.8709579 0.8816392 0.8845984
## 2325 0.8880126 0.8709579 0.8816392 0.8845984
## 2326 0.8657143 0.8709579 0.8932935 0.8845984
## 2327 0.8967552 0.8709579 0.8816392 0.8845984
## 2328 0.8880126 0.8709579 0.8816392 0.8845984
## 2329 0.9156328 0.8709579 0.8932935 0.8845984
## 2330 0.8657143 0.8709579 0.8932935 0.8845984
## 2331 0.8657143 0.8709579 0.8932935 0.8845984
## 2332 0.8880126 0.8709579 0.8816392 0.8845984
## 2333 0.9075630 0.9512195 0.8816392 0.8845984
## 2334 0.8880126 0.9512195 0.8932935 0.8845984
## 2335 0.8880126 0.8709579 0.8932935 0.8845984
## 2336 0.8967552 0.8709579 0.8932935 0.8845984
## 2337 0.8880126 0.9512195 0.8816392 0.8845984
## 2338 0.8657143 0.8709579 0.8932935 0.8845984
## 2339 0.9057377 0.8709579 0.8816392 0.8996840
## 2340 0.8657143 0.8709579 0.8932935 0.8845984
## 2341 0.8657143 0.9512195 0.8816392 0.8845984
## 2342 0.8348348 0.8709579 0.8816392 0.8845984
## 2343 0.9075630 0.8709579 0.8932935 0.8845984
## 2344 0.8880126 0.8709579 0.8816392 0.8845984
## 2345 0.8657143 0.8709579 0.8932935 0.8845984
## 2346 0.9075630 0.8709579 0.8816392 0.8845984
## 2347 0.8657143 0.8709579 0.8816392 0.8845984
## 2348 0.8880126 0.8709579 0.8816392 0.8845984
## 2349 0.9057377 0.9512195 0.8816392 0.8845984
## 2350 0.8657143 0.8709579 0.8816392 0.8845984
## 2351 0.8657143 0.9512195 0.8816392 0.8845984
## 2352 0.8967552 0.9512195 0.8932935 0.8845984
## 2353 0.9075630 0.9512195 0.8816392 0.8845984
## 2354 0.8657143 0.8709579 0.8932935 0.8845984
## 2355 0.8967552 0.8709579 0.8816392 0.8845984
## 2356 0.8657143 0.8709579 0.8816392 0.8845984
## 2357 0.8657143 0.8709579 0.8816392 0.8845984
## 2358 0.8657143 0.8709579 0.8816392 0.8845984
## 2359 0.8967552 0.8709579 0.8816392 0.8845984
## 2360 0.8657143 0.8709579 0.8932935 0.8845984
## 2361 0.9057377 0.9512195 0.8932935 0.8845984
## 2362 0.9057377 0.8709579 0.8816392 0.8845984
## 2363 0.8880126 0.8709579 0.8932935 0.8845984
## 2364 0.8657143 0.9512195 0.8816392 0.8845984
## 2365 0.9075630 0.9512195 0.8816392 0.8845984
## 2366 0.9156328 0.9512195 0.8932935 0.8845984
## 2367 0.8657143 0.8709579 0.8932935 0.8845984
## 2368 0.8967552 0.9512195 0.8816392 0.8845984
## 2369 0.8880126 0.8709579 0.8816392 0.8996840
## 2370 0.8657143 0.8709579 0.8932935 0.8845984
## 2371 0.9156328 0.8709579 0.8932935 0.8845984
## 2372 0.8880126 0.8709579 0.8816392 0.8845984
## 2373 0.8657143 0.8709579 0.8932935 0.8845984
## 2374 0.8657143 0.8709579 0.8816392 0.8845984
## 2375 0.8880126 0.8709579 0.8816392 0.8845984
## 2376 0.8657143 0.8709579 0.8816392 0.8845984
## 2377 0.9057377 0.8709579 0.8816392 0.8845984
## 2378 0.9075630 0.8709579 0.8932935 0.8845984
## 2379 0.8657143 0.8709579 0.8932935 0.8845984
## 2380 0.8880126 0.8709579 0.8816392 0.8996840
## 2381 0.8880126 0.9512195 0.8932935 0.8845984
## 2382 0.8657143 0.8709579 0.8816392 0.8845984
## 2383 0.8880126 0.8709579 0.8816392 0.8845984
## 2384 0.8657143 0.9512195 0.8932935 0.8845984
## 2385 0.8657143 0.9512195 0.8932935 0.8845984
## 2386 0.8348348 0.8709579 0.8932935 0.8845984
## 2387 0.9156328 0.8709579 0.8816392 0.8996840
## 2388 0.8880126 0.8709579 0.8932935 0.8845984
## 2389 0.8657143 0.8709579 0.8816392 0.8996840
## 2390 0.8967552 0.8709579 0.8816392 0.8845984
## 2391 0.9057377 0.8709579 0.8816392 0.8845984
## 2392 0.9156328 0.8709579 0.8932935 0.8845984
## 2393 0.9075630 0.8709579 0.8932935 0.8845984
## 2394 0.8967552 0.9512195 0.8932935 0.8845984
## 2395 0.9075630 0.8709579 0.8932935 0.8845984
## 2396 0.8657143 0.8709579 0.8816392 0.8845984
## 2397 0.8657143 0.8709579 0.8816392 0.8845984
## 2398 0.8967552 0.8709579 0.8816392 0.8845984
## 2399 0.9057377 0.8709579 0.8932935 0.8845984
## 2400 0.8880126 0.8709579 0.8816392 0.8845984
## 2401 0.8657143 0.8709579 0.8816392 0.8845984
## 2402 0.8967552 0.9512195 0.8816392 0.8845984
## 2403 0.8880126 0.8709579 0.8816392 0.8845984
## 2404 0.8967552 0.8709579 0.8816392 0.8996840
## 2405 0.8967552 0.8709579 0.8932935 0.8845984
## 2406 0.9057377 0.8709579 0.8932935 0.8845984
## 2407 0.8657143 0.8709579 0.8816392 0.8845984
## 2408 0.9057377 0.8709579 0.8816392 0.8845984
## 2409 0.8967552 0.8709579 0.8816392 0.8845984
## 2410 0.9057377 0.9512195 0.8816392 0.8845984
## 2411 0.8967552 0.8709579 0.8932935 0.8845984
## 2412 0.8880126 0.8709579 0.8932935 0.8845984
## 2413 0.8657143 0.8709579 0.8816392 0.8845984
## 2414 0.8348348 0.9512195 0.8816392 0.8845984
## 2415 0.8657143 0.8709579 0.8816392 0.8845984
## 2416 0.8880126 0.9512195 0.8932935 0.8996840
## 2417 0.8657143 0.9512195 0.8816392 0.8845984
## 2418 0.9156328 0.8709579 0.9032258 0.9032258
## 2419 0.8657143 0.8709579 0.8816392 0.8996840
## 2420 0.8657143 0.8709579 0.8932935 0.8845984
## 2421 0.8880126 0.8709579 0.8932935 0.8845984
## 2422 0.8657143 0.9512195 0.8932935 0.8996840
## 2423 0.9156328 0.8709579 0.8816392 0.8845984
## 2424 0.8657143 0.8709579 0.8932935 0.8845984
## 2425 0.8657143 0.8709579 0.8932935 0.8845984
## 2426 0.9075630 0.8709579 0.8816392 0.8845984
## 2427 0.9156328 0.9512195 0.8932935 0.8996840
## 2428 0.8967552 0.8709579 0.8932935 0.8845984
## 2429 0.9075630 0.8709579 0.8816392 0.8996840
## 2430 0.8657143 0.9512195 0.8932935 0.8845984
## 2431 0.8657143 0.8709579 0.8932935 0.8845984
## 2432 0.9057377 0.8709579 0.8816392 0.8845984
## 2433 0.8880126 0.8709579 0.8816392 0.8996840
## 2434 0.8880126 0.9512195 0.8816392 0.8845984
## 2435 0.8880126 0.8709579 0.8816392 0.8845984
## 2436 0.8657143 0.8709579 0.8932935 0.8845984
## 2437 0.9057377 0.9512195 0.8816392 0.8996840
## 2438 0.8657143 0.8709579 0.8816392 0.8845984
## 2439 0.9156328 0.8709579 0.8932935 0.8845984
## 2440 0.8657143 0.8709579 0.8932935 0.8845984
## 2441 0.8880126 0.9512195 0.8816392 0.8845984
## 2442 0.8657143 0.8709579 0.8816392 0.8845984
## 2443 0.8967552 0.8709579 0.8932935 0.8845984
## 2444 0.8657143 0.8709579 0.8932935 0.8845984
## 2445 0.8657143 0.8709579 0.8816392 0.8845984
## 2446 0.8880126 0.8709579 0.8932935 0.8845984
## 2447 0.8880126 0.8709579 0.8932935 0.8845984
## 2448 0.9156328 0.8709579 0.8932935 0.8845984
## 2449 0.8880126 0.8709579 0.8816392 0.8845984
## 2450 0.9156328 0.8709579 0.8932935 0.8845984
## 2451 0.9075630 0.8709579 0.8932935 0.8996840
## 2452 0.8967552 0.8709579 0.8816392 0.8845984
## 2453 0.9156328 0.8709579 0.8816392 0.8845984
## 2454 0.8880126 0.8709579 0.8816392 0.8845984
## 2455 0.9075630 0.9512195 0.8816392 0.8996840
## 2456 0.8657143 0.8709579 0.8816392 0.8845984
## 2457 0.8880126 0.8709579 0.8932935 0.8845984
## 2458 0.8348348 0.9512195 0.8816392 0.8845984
## 2459 0.8967552 0.9512195 0.8932935 0.8845984
## 2460 0.9057377 0.9512195 0.8816392 0.8845984
## 2461 0.8967552 0.8709579 0.8816392 0.8845984
## 2462 0.8967552 0.8709579 0.8816392 0.8845984
## 2463 0.9057377 0.9512195 0.8816392 0.8845984
## 2464 0.9156328 0.9512195 0.8816392 0.8845984
## 2465 0.8880126 0.8709579 0.8816392 0.8845984
## 2466 0.8348348 0.8709579 0.8816392 0.8845984
## 2467 0.8967552 0.9512195 0.8932935 0.8845984
## 2468 0.8657143 0.8709579 0.8932935 0.8845984
## 2469 0.8657143 0.9512195 0.8816392 0.8845984
## 2470 0.8967552 0.9512195 0.8816392 0.8845984
## 2471 0.9156328 0.8709579 0.8932935 0.8845984
## 2472 0.9075630 0.9512195 0.8932935 0.8845984
## 2473 0.8967552 0.8709579 0.8816392 0.8845984
## 2474 0.8880126 0.9512195 0.8816392 0.8845984
## 2475 0.8967552 0.8709579 0.9032258 0.9032258
## 2476 0.9156328 0.8709579 0.8816392 0.8996840
## 2477 0.9156328 0.8709579 0.8816392 0.8845984
## 2478 0.9075630 0.9512195 0.8816392 0.8845984
## 2479 0.8657143 0.8709579 0.8816392 0.8845984
## 2480 0.8880126 0.9512195 0.8816392 0.8845984
## 2481 0.8880126 0.8709579 0.8816392 0.8845984
## 2482 0.8880126 0.8709579 0.8816392 0.8845984
## 2483 0.8657143 0.8709579 0.8816392 0.8845984
## 2484 0.8657143 0.9512195 0.8816392 0.8845984
## 2485 0.9156328 0.8709579 0.8816392 0.8845984
## 2486 0.8967552 0.8709579 0.8932935 0.8845984
## 2487 0.8967552 0.8709579 0.8816392 0.8845984
## 2488 0.8880126 0.8709579 0.8932935 0.8845984
## 2489 0.8657143 0.8709579 0.8932935 0.8996840
## 2490 0.9156328 0.8709579 0.8816392 0.8996840
## 2491 0.8657143 0.8709579 0.8816392 0.8845984
## 2492 0.8657143 0.9512195 0.8932935 0.8845984
## 2493 0.9156328 0.9512195 0.8816392 0.8845984
## 2494 0.8657143 0.8709579 0.8932935 0.8845984
## 2495 0.9075630 0.8709579 0.8932935 0.8845984
## 2496 0.8657143 0.8709579 0.8816392 0.8845984
## 2497 0.8967552 0.8709579 0.8932935 0.8845984
## 2498 0.9156328 0.9512195 0.8816392 0.8845984
## 2499 0.8657143 0.8709579 0.8932935 0.8845984
## 2500 0.8348348 0.8709579 0.8932935 0.8996840
## 2501 0.8880126 0.8709579 0.8816392 0.8845984
## 2502 0.9156328 0.8709579 0.8932935 0.8845984
## 2503 0.8880126 0.8709579 0.8816392 0.8845984
## 2504 0.8880126 0.8709579 0.8816392 0.8845984
## 2505 0.8657143 0.8709579 0.8932935 0.8845984
## 2506 0.9075630 0.9512195 0.8816392 0.8996840
## 2507 0.9156328 0.8709579 0.8932935 0.8845984
## 2508 0.9075630 0.8709579 0.8932935 0.8996840
## 2509 0.8657143 0.8709579 0.8816392 0.8845984
## 2510 0.9057377 0.9512195 0.8932935 0.8845984
## 2511 0.8657143 0.8709579 0.8816392 0.8845984
## 2512 0.8880126 0.9512195 0.8816392 0.8845984
## 2513 0.8657143 0.8709579 0.8816392 0.8996840
## 2514 0.8657143 0.8709579 0.8932935 0.8845984
## 2515 0.9057377 0.8709579 0.8932935 0.8845984
## 2516 0.8880126 0.8709579 0.8816392 0.8845984
## 2517 0.8657143 0.8709579 0.8932935 0.8845984
## 2518 0.8880126 0.8709579 0.8932935 0.8996840
## 2519 0.9075630 0.9512195 0.8816392 0.8845984
## 2520 0.8880126 0.9512195 0.8932935 0.8845984
## 2521 0.8657143 0.9512195 0.8816392 0.8845984
## 2522 0.8657143 0.9512195 0.8932935 0.8845984
## 2523 0.8967552 0.8709579 0.8932935 0.8845984
## 2524 0.9075630 0.8709579 0.8816392 0.8845984
## 2525 0.9057377 0.8709579 0.8816392 0.8845984
## 2526 0.8967552 0.8709579 0.8932935 0.8845984
## 2527 0.9057377 0.9512195 0.8816392 0.8996840
## 2528 0.8967552 0.8709579 0.8816392 0.8996840
## 2529 0.9075630 0.8709579 0.8932935 0.8845984
## 2530 0.8657143 0.8709579 0.8816392 0.8845984
## 2531 0.8657143 0.8709579 0.8932935 0.8845984
## 2532 0.8967552 0.8709579 0.8816392 0.8996840
## 2533 0.9156328 0.8709579 0.8932935 0.8845984
## 2534 0.8880126 0.8709579 0.8816392 0.8845984
## 2535 0.9075630 0.9512195 0.8816392 0.8845984
## 2536 0.8657143 0.8709579 0.8932935 0.8996840
## 2537 0.8967552 0.8709579 0.8932935 0.8845984
## 2538 0.9156328 0.8709579 0.8932935 0.8845984
## 2539 0.8657143 0.8709579 0.8816392 0.8996840
## 2540 0.9156328 0.8709579 0.8932935 0.8845984
## 2541 0.8880126 0.9512195 0.8816392 0.8845984
## 2542 0.8657143 0.8709579 0.8932935 0.8845984
## 2543 0.8657143 0.8709579 0.8932935 0.8996840
## 2544 0.8967552 0.8709579 0.8932935 0.8845984
## 2545 0.9156328 0.9512195 0.8816392 0.8845984
## 2546 0.8967552 0.8709579 0.8932935 0.8845984
## 2547 0.9075630 0.9512195 0.8932935 0.8845984
## 2548 0.8657143 0.8709579 0.8932935 0.8845984
## 2549 0.9156328 0.8709579 0.8816392 0.8845984
## 2550 0.8657143 0.8709579 0.8932935 0.8845984
## 2551 0.8880126 0.8709579 0.9032258 0.9032258
## 2552 0.8967552 0.8709579 0.8816392 0.8845984
## 2553 0.8967552 0.8709579 0.8816392 0.8845984
## 2554 0.8880126 0.8709579 0.8816392 0.8845984
## 2555 0.8657143 0.8709579 0.8932935 0.8845984
## 2556 0.9075630 0.9512195 0.8932935 0.8845984
## 2557 0.9156328 0.8709579 0.8932935 0.8845984
## 2558 0.8880126 0.8709579 0.8816392 0.8845984
## 2559 0.8880126 0.9512195 0.8816392 0.8845984
## 2560 0.8657143 0.8709579 0.8816392 0.8845984
## 2561 0.8657143 0.8709579 0.8932935 0.8845984
## 2562 0.8880126 0.8709579 0.8816392 0.8996840
## 2563 0.8657143 0.8709579 0.8816392 0.8845984
## 2564 0.9156328 0.9512195 0.8816392 0.8845984
## 2565 0.9156328 0.8709579 0.8932935 0.8845984
## 2566 0.8967552 0.8709579 0.8932935 0.8845984
## 2567 0.8657143 0.8709579 0.8932935 0.8845984
## 2568 0.9075630 0.8709579 0.8816392 0.8845984
## 2569 0.9156328 0.8709579 0.8932935 0.8845984
## 2570 0.9075630 0.9512195 0.8932935 0.8845984
## 2571 0.9156328 0.8709579 0.8932935 0.8845984
## 2572 0.8880126 0.9512195 0.8932935 0.8845984
## 2573 0.8880126 0.8709579 0.8816392 0.8845984
## 2574 0.8348348 0.8709579 0.8816392 0.8996840
## 2575 0.8657143 0.8709579 0.8816392 0.8845984
## 2576 0.8657143 0.8709579 0.8932935 0.8845984
## 2577 0.8657143 0.8709579 0.8816392 0.8845984
## 2578 0.8880126 0.8709579 0.8932935 0.8845984
## 2579 0.8967552 0.8709579 0.8932935 0.8845984
## 2580 0.9057377 0.9512195 0.8816392 0.8845984
## 2581 0.8967552 0.8709579 0.8932935 0.8845984
## 2582 0.8348348 0.8709579 0.8932935 0.8845984
## 2583 0.8657143 0.8709579 0.8932935 0.8845984
## 2584 0.9075630 0.8709579 0.8816392 0.8996840
## 2585 0.8880126 0.8709579 0.8932935 0.8845984
## 2586 0.8880126 0.8709579 0.8816392 0.8845984
## 2587 0.9075630 0.8709579 0.8932935 0.8845984
## 2588 0.8657143 0.8709579 0.8816392 0.8845984
## 2589 0.8880126 0.8709579 0.8816392 0.8996840
## 2590 0.8967552 0.8709579 0.8816392 0.8996840
## 2591 0.9075630 0.9512195 0.8816392 0.8845984
## 2592 0.8657143 0.8709579 0.8816392 0.8845984
## 2593 0.8657143 0.8709579 0.8932935 0.8845984
## 2594 0.8657143 0.9512195 0.8816392 0.8996840
## 2595 0.8657143 0.8709579 0.8932935 0.8845984
## 2596 0.8657143 0.8709579 0.8816392 0.8845984
## 2597 0.8657143 0.8709579 0.8816392 0.8845984
## 2598 0.8880126 0.8709579 0.8816392 0.8845984
## 2599 0.9156328 0.9512195 0.8816392 0.8845984
## 2600 0.9156328 0.8709579 0.8816392 0.8845984
## 2601 0.8880126 0.8709579 0.8816392 0.8996840
## 2602 0.8657143 0.9512195 0.8816392 0.8996840
## 2603 0.8657143 0.8709579 0.8932935 0.8845984
## 2604 0.8967552 0.8709579 0.8932935 0.8845984
## 2605 0.9156328 0.9512195 0.8932935 0.8845984
## 2606 0.8967552 0.8709579 0.8816392 0.8845984
## 2607 0.8657143 0.8709579 0.8816392 0.8845984
## 2608 0.9156328 0.9512195 0.8932935 0.8845984
## 2609 0.8880126 0.8709579 0.8932935 0.8845984
## 2610 0.8657143 0.8709579 0.8816392 0.8845984
## 2611 0.8967552 0.8709579 0.8816392 0.8845984
## 2612 0.8880126 0.8709579 0.8932935 0.8845984
## 2613 0.8880126 0.8709579 0.8816392 0.8996840
## 2614 0.8657143 0.8709579 0.8932935 0.8845984
## 2615 0.8657143 0.8709579 0.8932935 0.8845984
## 2616 0.8657143 0.8709579 0.8932935 0.8845984
## 2617 0.8880126 0.8709579 0.8816392 0.8845984
## 2618 0.8657143 0.8709579 0.8816392 0.8845984
## 2619 0.8967552 0.8709579 0.8816392 0.8845984
## 2620 0.8657143 0.8709579 0.8932935 0.8845984
## 2621 0.9075630 0.8709579 0.8816392 0.8845984
## 2622 0.8967552 0.8709579 0.8816392 0.8845984
## 2623 0.8657143 0.9512195 0.8932935 0.8845984
## 2624 0.8880126 0.8709579 0.8816392 0.8845984
## 2625 0.8657143 0.8709579 0.8816392 0.8845984
## 2626 0.8657143 0.8709579 0.8932935 0.8845984
## 2627 0.9075630 0.9512195 0.8932935 0.8845984
## 2628 0.8657143 0.8709579 0.8816392 0.8996840
## 2629 0.9075630 0.9512195 0.8816392 0.8845984
## 2630 0.8967552 0.8709579 0.8816392 0.8996840
## 2631 0.8657143 0.8709579 0.8816392 0.8845984
## 2632 0.8967552 0.8709579 0.8816392 0.8996840
## 2633 0.9156328 0.8709579 0.8932935 0.8996840
## 2634 0.8657143 0.8709579 0.8932935 0.8845984
## 2635 0.9156328 0.9512195 0.8816392 0.8996840
## 2636 0.8657143 0.9512195 0.8932935 0.8845984
## 2637 0.8880126 0.8709579 0.8816392 0.8996840
## 2638 0.8348348 0.9512195 0.8932935 0.8845984
## 2639 0.8657143 0.8709579 0.8816392 0.8845984
## 2640 0.8967552 0.8709579 0.8932935 0.8845984
## 2641 0.9057377 0.9512195 0.8932935 0.8996840
## 2642 0.8967552 0.9512195 0.8932935 0.8845984
## 2643 0.9156328 0.8709579 0.8932935 0.8845984
## 2644 0.8657143 0.8709579 0.8816392 0.8845984
## 2645 0.8967552 0.8709579 0.8816392 0.8996840
## 2646 0.8880126 0.9512195 0.8932935 0.8845984
## 2647 0.8657143 0.8709579 0.8932935 0.8996840
## 2648 0.9075630 0.8709579 0.8816392 0.8845984
## 2649 0.8880126 0.8709579 0.8816392 0.8845984
## 2650 0.8657143 0.8709579 0.8816392 0.8845984
## 2651 0.8880126 0.8709579 0.8932935 0.8996840
## 2652 0.8657143 0.8709579 0.8816392 0.8845984
## 2653 0.8880126 0.8709579 0.8932935 0.8845984
## 2654 0.9156328 0.8709579 0.8816392 0.8996840
## 2655 0.9057377 0.8709579 0.8932935 0.8845984
## 2656 0.8348348 0.9512195 0.8932935 0.8845984
## 2657 0.9156328 0.8709579 0.8816392 0.8845984
## 2658 0.8657143 0.8709579 0.8932935 0.8845984
## 2659 0.8967552 0.8709579 0.8816392 0.8996840
## 2660 0.9156328 0.8709579 0.8816392 0.8845984
## 2661 0.8880126 0.8709579 0.9032258 0.9032258
## 2662 0.8657143 0.8709579 0.8816392 0.8845984
## 2663 0.9075630 0.9512195 0.8816392 0.8845984
## 2664 0.8657143 0.8709579 0.8816392 0.8845984
## 2665 0.8880126 0.8709579 0.8932935 0.8845984
## 2666 0.9075630 0.8709579 0.8816392 0.8845984
## 2667 0.8967552 0.8709579 0.8932935 0.8845984
## 2668 0.9075630 0.8709579 0.8816392 0.8845984
## 2669 0.9075630 0.9512195 0.8932935 0.8845984
## 2670 0.8657143 0.8709579 0.8816392 0.8845984
## 2671 0.9075630 0.8709579 0.8932935 0.8845984
## 2672 0.8657143 0.8709579 0.8816392 0.8845984
## 2673 0.8657143 0.8709579 0.8816392 0.8845984
## 2674 0.9156328 0.8709579 0.8932935 0.8996840
## 2675 0.8657143 0.8709579 0.8816392 0.8845984
## 2676 0.8657143 0.8709579 0.8816392 0.8845984
## 2677 0.9156328 0.8709579 0.8816392 0.8845984
## 2678 0.8967552 0.9512195 0.8816392 0.8845984
## 2679 0.8348348 0.9512195 0.8816392 0.8845984
## 2680 0.8880126 0.8709579 0.8932935 0.8845984
## 2681 0.9075630 0.8709579 0.8932935 0.8845984
## 2682 0.9156328 0.8709579 0.8816392 0.8845984
## 2683 0.9156328 0.8709579 0.8816392 0.8996840
## 2684 0.8967552 0.8709579 0.8816392 0.8845984
## 2685 0.9156328 0.9512195 0.8816392 0.8845984
## 2686 0.8657143 0.8709579 0.8816392 0.8845984
## 2687 0.8880126 0.8709579 0.8816392 0.8996840
## 2688 0.8657143 0.9512195 0.8932935 0.8845984
## 2689 0.8657143 0.8709579 0.8816392 0.8845984
## 2690 0.8657143 0.8709579 0.8932935 0.8996840
## 2691 0.9057377 0.9512195 0.8932935 0.8845984
## 2692 0.8967552 0.8709579 0.8816392 0.8845984
## 2693 0.8348348 0.9512195 0.8816392 0.8845984
## 2694 0.8657143 0.8709579 0.8816392 0.8845984
## 2695 0.9156328 0.9512195 0.8932935 0.8845984
## 2696 0.9075630 0.9512195 0.8816392 0.8845984
## 2697 0.8657143 0.8709579 0.8816392 0.8845984
## 2698 0.8880126 0.8709579 0.8932935 0.8845984
## 2699 0.8348348 0.8709579 0.8816392 0.8845984
## 2700 0.8880126 0.8709579 0.8932935 0.8845984
## 2701 0.9156328 0.8709579 0.8816392 0.8845984
## 2702 0.9057377 0.8709579 0.8932935 0.8845984
## 2703 0.8967552 0.8709579 0.8816392 0.8845984
## 2704 0.8880126 0.8709579 0.8932935 0.8996840
## 2705 0.8967552 0.9512195 0.8932935 0.8845984
## 2706 0.8348348 0.8709579 0.8816392 0.8845984
## 2707 0.8880126 0.8709579 0.8932935 0.8845984
## 2708 0.9075630 0.9512195 0.8932935 0.8845984
## 2709 0.8657143 0.8709579 0.8932935 0.8845984
## 2710 0.8880126 0.8709579 0.8932935 0.8845984
## 2711 0.9156328 0.8709579 0.8816392 0.8845984
## 2712 0.8348348 0.8709579 0.8816392 0.8996840
## 2713 0.8880126 0.8709579 0.8816392 0.8845984
## 2714 0.9075630 0.9512195 0.8816392 0.8845984
## 2715 0.8657143 0.8709579 0.8816392 0.8845984
## 2716 0.8348348 0.9512195 0.8816392 0.8845984
## 2717 0.9057377 0.8709579 0.8932935 0.8845984
## 2718 0.8880126 0.8709579 0.8932935 0.8845984
## 2719 0.8657143 0.8709579 0.8816392 0.8845984
## 2720 0.9156328 0.8709579 0.8932935 0.8996840
## 2721 0.9156328 0.8709579 0.8932935 0.8996840
## 2722 0.8657143 0.8709579 0.8932935 0.8845984
## 2723 0.8657143 0.8709579 0.8816392 0.8845984
## 2724 0.8657143 0.9512195 0.8816392 0.8996840
## 2725 0.8657143 0.9512195 0.8816392 0.8845984
## 2726 0.9156328 0.8709579 0.8816392 0.8996840
## 2727 0.9057377 0.9512195 0.8816392 0.8845984
## 2728 0.9075630 0.8709579 0.8816392 0.8845984
## 2729 0.9156328 0.8709579 0.8932935 0.8845984
## 2730 0.8657143 0.9512195 0.8816392 0.8845984
## 2731 0.8880126 0.8709579 0.8816392 0.8996840
## 2732 0.9057377 0.8709579 0.8816392 0.8845984
## 2733 0.8657143 0.8709579 0.8816392 0.8845984
## 2734 0.8880126 0.8709579 0.8816392 0.8845984
## 2735 0.8657143 0.8709579 0.8932935 0.8996840
## 2736 0.8657143 0.9512195 0.9032258 0.9032258
## 2737 0.8880126 0.8709579 0.8932935 0.8845984
## 2738 0.8657143 0.8709579 0.9032258 0.9032258
## 2739 0.8657143 0.8709579 0.8816392 0.8845984
## 2740 0.8967552 0.8709579 0.8932935 0.8845984
## 2741 0.8880126 0.8709579 0.8932935 0.8845984
## 2742 0.9075630 0.8709579 0.8932935 0.8845984
## 2743 0.8880126 0.8709579 0.8816392 0.8845984
## 2744 0.8880126 0.8709579 0.8816392 0.8845984
## 2745 0.8967552 0.8709579 0.8816392 0.8996840
## 2746 0.8657143 0.8709579 0.8932935 0.8845984
## 2747 0.8880126 0.8709579 0.8932935 0.8845984
## 2748 0.8657143 0.8709579 0.8932935 0.8845984
## 2749 0.8880126 0.8709579 0.8932935 0.8845984
## 2750 0.9156328 0.8709579 0.8932935 0.8845984
## 2751 0.8880126 0.9512195 0.8816392 0.8845984
## 2752 0.8657143 0.8709579 0.8816392 0.8996840
## 2753 0.9057377 0.9512195 0.8932935 0.8845984
## 2754 0.8967552 0.8709579 0.8932935 0.8845984
## 2755 0.8657143 0.8709579 0.8932935 0.8845984
## 2756 0.9075630 0.9512195 0.8816392 0.8996840
## 2757 0.9075630 0.8709579 0.8816392 0.8845984
## 2758 0.8657143 0.8709579 0.8932935 0.8996840
## 2759 0.8880126 0.9512195 0.8932935 0.8845984
## 2760 0.8967552 0.8709579 0.8932935 0.8845984
## 2761 0.8657143 0.8709579 0.8816392 0.8996840
## 2762 0.9156328 0.8709579 0.8932935 0.8845984
## 2763 0.8880126 0.9512195 0.8932935 0.8845984
## 2764 0.8657143 0.9512195 0.8932935 0.8845984
## 2765 0.8657143 0.8709579 0.8816392 0.8996840
## 2766 0.8880126 0.8709579 0.8816392 0.8845984
## 2767 0.8657143 0.8709579 0.8932935 0.8845984
## 2768 0.9156328 0.8709579 0.8816392 0.8996840
## 2769 0.8657143 0.9512195 0.8816392 0.8845984
## 2770 0.8880126 0.8709579 0.8816392 0.8845984
## 2771 0.8880126 0.8709579 0.8932935 0.8845984
## 2772 0.9156328 0.8709579 0.8816392 0.8845984
## 2773 0.8657143 0.9512195 0.8932935 0.8845984
## 2774 0.8880126 0.8709579 0.8816392 0.8845984
## 2775 0.8657143 0.9512195 0.9032258 0.9032258
## 2776 0.8657143 0.8709579 0.8816392 0.8996840
## 2777 0.9156328 0.9512195 0.8816392 0.8996840
## 2778 0.8657143 0.9512195 0.8932935 0.8845984
## 2779 0.9057377 0.9512195 0.8932935 0.8845984
## 2780 0.8967552 0.8709579 0.8816392 0.8845984
## 2781 0.8657143 0.9512195 0.8932935 0.8845984
## 2782 0.8880126 0.8709579 0.8932935 0.8996840
## 2783 0.9075630 0.9512195 0.8816392 0.8845984
## 2784 0.9156328 0.8709579 0.8932935 0.8845984
## 2785 0.9156328 0.8709579 0.8816392 0.8845984
## 2786 0.8967552 0.8709579 0.8816392 0.8845984
## 2787 0.8657143 0.8709579 0.8816392 0.8996840
## 2788 0.8657143 0.8709579 0.8932935 0.8845984
## 2789 0.8657143 0.8709579 0.8816392 0.8845984
## 2790 0.8657143 0.8709579 0.8816392 0.8845984
## 2791 0.8657143 0.8709579 0.8932935 0.8845984
## 2792 0.8880126 0.8709579 0.8816392 0.8845984
## 2793 0.8657143 0.8709579 0.8816392 0.8845984
## 2794 0.8880126 0.9512195 0.8816392 0.8845984
## 2795 0.8880126 0.9512195 0.8816392 0.8845984
## 2796 0.8657143 0.8709579 0.8816392 0.8845984
## 2797 0.8880126 0.8709579 0.8932935 0.8845984
## 2798 0.9075630 0.8709579 0.8932935 0.8845984
## 2799 0.8880126 0.8709579 0.8932935 0.8845984
## 2800 0.8657143 0.8709579 0.8816392 0.8845984
## 2801 0.9156328 0.8709579 0.8816392 0.8845984
## 2802 0.9156328 0.8709579 0.8816392 0.8845984
## 2803 0.8880126 0.9512195 0.8816392 0.8845984
## 2804 0.9156328 0.8709579 0.8932935 0.8845984
## 2805 0.9075630 0.8709579 0.8816392 0.8845984
## 2806 0.8657143 0.9512195 0.8816392 0.8845984
## 2807 0.8348348 0.8709579 0.8816392 0.8845984
## 2808 0.8880126 0.8709579 0.8932935 0.8845984
## 2809 0.9156328 0.8709579 0.8816392 0.8845984
## 2810 0.8967552 0.8709579 0.8816392 0.8996840
## 2811 0.8967552 0.9512195 0.8932935 0.8845984
## 2812 0.8657143 0.8709579 0.8816392 0.8845984
## 2813 0.8657143 0.8709579 0.8816392 0.8845984
## 2814 0.8880126 0.9512195 0.8816392 0.8845984
## 2815 0.9075630 0.9512195 0.8816392 0.8845984
## 2816 0.8657143 0.8709579 0.8816392 0.8845984
## 2817 0.9075630 0.9512195 0.8932935 0.8845984
## 2818 0.8880126 0.9512195 0.8932935 0.8845984
## 2819 0.8880126 0.8709579 0.8932935 0.8845984
## 2820 0.8348348 0.9512195 0.8932935 0.8845984
## 2821 0.8880126 0.8709579 0.8816392 0.8845984
## 2822 0.8657143 0.8709579 0.8816392 0.8845984
## 2823 0.8657143 0.8709579 0.8932935 0.8845984
## 2824 0.8967552 0.8709579 0.8932935 0.8845984
## 2825 0.8657143 0.9512195 0.8816392 0.8845984
## 2826 0.9156328 0.8709579 0.9032258 0.9032258
## 2827 0.8657143 0.8709579 0.8932935 0.8845984
## 2828 0.9156328 0.9512195 0.8932935 0.8845984
## 2829 0.9075630 0.9512195 0.8816392 0.8845984
## 2830 0.8657143 0.8709579 0.8816392 0.8845984
## 2831 0.8880126 0.9512195 0.8932935 0.8845984
## 2832 0.9156328 0.8709579 0.8932935 0.8845984
## 2833 0.8657143 0.8709579 0.8816392 0.8845984
## 2834 0.8967552 0.8709579 0.8816392 0.8996840
## 2835 0.8657143 0.8709579 0.8816392 0.8996840
## 2836 0.9057377 0.8709579 0.8816392 0.8845984
## 2837 0.8880126 0.9512195 0.8932935 0.8845984
## 2838 0.8657143 0.8709579 0.8816392 0.8845984
## 2839 0.8967552 0.8709579 0.8816392 0.8845984
## 2840 0.9075630 0.8709579 0.8932935 0.8845984
## 2841 0.9156328 0.8709579 0.8816392 0.8845984
## 2842 0.8967552 0.8709579 0.8932935 0.8845984
## 2843 0.8880126 0.8709579 0.8816392 0.8845984
## 2844 0.9075630 0.8709579 0.8932935 0.8845984
## 2845 0.8657143 0.8709579 0.8816392 0.8845984
## 2846 0.9156328 0.8709579 0.8932935 0.8845984
## 2847 0.9057377 0.8709579 0.8816392 0.8845984
## 2848 0.8657143 0.9512195 0.8932935 0.8845984
## 2849 0.8657143 0.9512195 0.8816392 0.8845984
## 2850 0.8880126 0.8709579 0.8816392 0.8845984
## 2851 0.8657143 0.8709579 0.8816392 0.8845984
## 2852 0.9156328 0.9512195 0.8932935 0.8996840
## 2853 0.9057377 0.8709579 0.8932935 0.8845984
## 2854 0.9057377 0.8709579 0.8932935 0.8845984
## 2855 0.9156328 0.8709579 0.8816392 0.8845984
## 2856 0.8880126 0.8709579 0.8816392 0.8845984
## 2857 0.8657143 0.8709579 0.8932935 0.8845984
## 2858 0.9156328 0.8709579 0.8932935 0.8845984
## 2859 0.8880126 0.9512195 0.8816392 0.8996840
## 2860 0.9057377 0.9512195 0.8816392 0.8845984
## 2861 0.9075630 0.8709579 0.8816392 0.8845984
## 2862 0.9156328 0.8709579 0.8932935 0.8845984
## 2863 0.9156328 0.9512195 0.8932935 0.8845984
## 2864 0.8967552 0.8709579 0.8816392 0.8845984
## 2865 0.8657143 0.8709579 0.8816392 0.8996840
## 2866 0.9075630 0.8709579 0.8816392 0.8845984
## 2867 0.8880126 0.8709579 0.8816392 0.8845984
## 2868 0.9057377 0.9512195 0.8932935 0.8996840
## 2869 0.9075630 0.9512195 0.8816392 0.8996840
## 2870 0.9057377 0.8709579 0.8816392 0.8996840
## 2871 0.8967552 0.9512195 0.8932935 0.8845984
## 2872 0.9075630 0.8709579 0.8932935 0.8845984
## 2873 0.8880126 0.8709579 0.8816392 0.8845984
## 2874 0.8657143 0.8709579 0.8816392 0.8845984
## 2875 0.8967552 0.8709579 0.8932935 0.8845984
## 2876 0.8348348 0.8709579 0.8932935 0.8845984
## 2877 0.8967552 0.8709579 0.8816392 0.8996840
## 2878 0.8967552 0.8709579 0.8816392 0.8996840
## 2879 0.8967552 0.8709579 0.9032258 0.9032258
## 2880 0.9075630 0.9512195 0.8932935 0.8845984
## 2881 0.9156328 0.8709579 0.8932935 0.8845984
## 2882 0.8657143 0.9512195 0.8816392 0.8845984
## 2883 0.9057377 0.8709579 0.8932935 0.8845984
## 2884 0.8657143 0.8709579 0.8932935 0.8845984
## 2885 0.8880126 0.8709579 0.8932935 0.8845984
## 2886 0.8967552 0.8709579 0.8816392 0.8845984
## 2887 0.8657143 0.8709579 0.8816392 0.8845984
## 2888 0.9156328 0.8709579 0.8816392 0.8845984
## 2889 0.8657143 0.8709579 0.9032258 0.9032258
## 2890 0.8657143 0.8709579 0.8932935 0.8996840
## 2891 0.9057377 0.8709579 0.8932935 0.8845984
## 2892 0.8880126 0.9512195 0.8816392 0.8845984
## 2893 0.8657143 0.9512195 0.8816392 0.8845984
## 2894 0.8880126 0.8709579 0.8816392 0.8845984
## 2895 0.8880126 0.8709579 0.8816392 0.8845984
## 2896 0.9156328 0.8709579 0.8932935 0.8845984
## 2897 0.8657143 0.9512195 0.8816392 0.8845984
## 2898 0.8880126 0.8709579 0.8816392 0.8845984
## 2899 0.8880126 0.9512195 0.8816392 0.8996840
## 2900 0.8880126 0.8709579 0.8932935 0.8845984
## 2901 0.8967552 0.8709579 0.8816392 0.8845984
## 2902 0.9057377 0.9512195 0.8816392 0.8845984
## 2903 0.9075630 0.8709579 0.8816392 0.8996840
## 2904 0.8880126 0.8709579 0.8816392 0.8845984
## 2905 0.8880126 0.8709579 0.8816392 0.8996840
## 2906 0.8657143 0.9512195 0.8816392 0.8845984
## 2907 0.8657143 0.8709579 0.8816392 0.8845984
## 2908 0.8657143 0.8709579 0.8932935 0.8845984
## 2909 0.9156328 0.8709579 0.8932935 0.8845984
## 2910 0.9156328 0.8709579 0.8816392 0.8845984
## 2911 0.8880126 0.9512195 0.8816392 0.8845984
## 2912 0.9057377 0.9512195 0.8932935 0.8996840
## 2913 0.9075630 0.8709579 0.8816392 0.8845984
## 2914 0.9156328 0.8709579 0.8816392 0.8845984
## 2915 0.8967552 0.8709579 0.8932935 0.8845984
## 2916 0.8880126 0.8709579 0.8932935 0.8845984
## 2917 0.8348348 0.9512195 0.8932935 0.8845984
## 2918 0.9156328 0.8709579 0.8816392 0.8845984
## 2919 0.9075630 0.9512195 0.8816392 0.8845984
## 2920 0.8880126 0.8709579 0.8932935 0.8845984
## 2921 0.8880126 0.9512195 0.8816392 0.8845984
## 2922 0.9057377 0.8709579 0.8816392 0.8845984
## 2923 0.8967552 0.8709579 0.8932935 0.8845984
## 2924 0.8657143 0.8709579 0.8816392 0.8845984
## 2925 0.8880126 0.8709579 0.8932935 0.8845984
## 2926 0.8657143 0.9512195 0.8932935 0.8845984
## 2927 0.9156328 0.9512195 0.8932935 0.8845984
## 2928 0.9057377 0.9512195 0.8932935 0.8845984
## 2929 0.8657143 0.8709579 0.8932935 0.8845984
## 2930 0.8880126 0.8709579 0.8932935 0.8845984
## 2931 0.9075630 0.9512195 0.8932935 0.8996840
## 2932 0.9156328 0.8709579 0.8816392 0.8845984
## 2933 0.8880126 0.8709579 0.8816392 0.8845984
## 2934 0.8967552 0.8709579 0.8932935 0.8845984
## 2935 0.9156328 0.9512195 0.8816392 0.8845984
## 2936 0.8657143 0.8709579 0.8816392 0.8845984
## 2937 0.8657143 0.8709579 0.8932935 0.8845984
## 2938 0.9075630 0.8709579 0.8816392 0.8845984
## 2939 0.9075630 0.8709579 0.8932935 0.8845984
## 2940 0.8657143 0.8709579 0.8816392 0.8845984
## 2941 0.8657143 0.8709579 0.8816392 0.8845984
## 2942 0.8880126 0.8709579 0.8932935 0.8845984
## 2943 0.9075630 0.8709579 0.8816392 0.8845984
## 2944 0.8880126 0.8709579 0.8816392 0.8996840
## 2945 0.9057377 0.9512195 0.8816392 0.8845984
## 2946 0.8657143 0.8709579 0.8932935 0.8845984
## 2947 0.8880126 0.8709579 0.8816392 0.8845984
## 2948 0.8657143 0.8709579 0.8816392 0.8845984
## 2949 0.9156328 0.9512195 0.8932935 0.8845984
## 2950 0.9057377 0.8709579 0.8816392 0.8845984
## 2951 0.8967552 0.8709579 0.8932935 0.8845984
## 2952 0.8657143 0.8709579 0.8932935 0.8845984
## 2953 0.8880126 0.8709579 0.8816392 0.8845984
## 2954 0.8657143 0.9512195 0.8816392 0.8845984
## 2955 0.9075630 0.9512195 0.8816392 0.8845984
## 2956 0.8348348 0.8709579 0.8932935 0.8845984
## 2957 0.9156328 0.8709579 0.8816392 0.8845984
## 2958 0.8657143 0.8709579 0.8932935 0.8845984
## 2959 0.8880126 0.8709579 0.8816392 0.8996840
## 2960 0.8967552 0.8709579 0.8816392 0.8845984
## 2961 0.8657143 0.8709579 0.8932935 0.8845984
## 2962 0.8967552 0.9512195 0.8816392 0.8845984
## 2963 0.8657143 0.8709579 0.8932935 0.8845984
## 2964 0.8657143 0.8709579 0.8816392 0.8845984
## 2965 0.8880126 0.9512195 0.8932935 0.8845984
## 2966 0.8880126 0.8709579 0.8816392 0.8845984
## 2967 0.9075630 0.9512195 0.8932935 0.8845984
## 2968 0.8657143 0.8709579 0.8932935 0.8845984
## 2969 0.8880126 0.9512195 0.8816392 0.8845984
## 2970 0.9057377 0.8709579 0.8932935 0.8845984
## 2971 0.8657143 0.8709579 0.8932935 0.8845984
## 2972 0.9156328 0.8709579 0.8816392 0.8996840
## 2973 0.8657143 0.8709579 0.8932935 0.8845984
## 2974 0.9075630 0.8709579 0.8816392 0.8996840
## 2975 0.8880126 0.8709579 0.8816392 0.8996840
## 2976 0.8657143 0.8709579 0.8816392 0.8845984
## 2977 0.8880126 0.8709579 0.8816392 0.8996840
## 2978 0.9156328 0.9512195 0.8932935 0.8845984
## 2979 0.8657143 0.8709579 0.8932935 0.8845984
## 2980 0.9156328 0.9512195 0.8932935 0.8845984
## 2981 0.8880126 0.9512195 0.8932935 0.8845984
## 2982 0.9156328 0.9512195 0.8816392 0.8845984
## 2983 0.8657143 0.9512195 0.9032258 0.9032258
## 2984 0.8657143 0.8709579 0.8816392 0.8845984
## 2985 0.8657143 0.8709579 0.8932935 0.8845984
## 2986 0.8967552 0.8709579 0.8932935 0.8845984
## 2987 0.8348348 0.9512195 0.8932935 0.8845984
## 2988 0.8880126 0.8709579 0.8932935 0.8845984
## 2989 0.8880126 0.8709579 0.8932935 0.8845984
## 2990 0.9156328 0.8709579 0.8932935 0.8996840
## 2991 0.9156328 0.8709579 0.8816392 0.8845984
## 2992 0.8657143 0.9512195 0.8816392 0.8845984
## 2993 0.8967552 0.8709579 0.8932935 0.8845984
## 2994 0.8657143 0.8709579 0.8816392 0.8845984
## 2995 0.8967552 0.8709579 0.8816392 0.8845984
## 2996 0.8880126 0.8709579 0.8816392 0.8845984
## 2997 0.8967552 0.9512195 0.8932935 0.8996840
## 2998 0.8657143 0.8709579 0.8816392 0.8845984
## 2999 0.9156328 0.9512195 0.8816392 0.8845984
## 3000 0.8967552 0.8709579 0.8816392 0.8845984
## 3001 0.8657143 0.9512195 0.8932935 0.8845984
## 3002 0.8967552 0.8709579 0.8816392 0.8845984
## 3003 0.8967552 0.8709579 0.8932935 0.8845984
## 3004 0.8880126 0.8709579 0.8816392 0.8845984
## 3005 0.9075630 0.8709579 0.8932935 0.8845984
## 3006 0.9156328 0.8709579 0.8816392 0.8845984
## 3007 0.8967552 0.9512195 0.8932935 0.8845984
## 3008 0.8880126 0.8709579 0.8932935 0.8845984
## 3009 0.8657143 0.8709579 0.8932935 0.8845984
## 3010 0.8657143 0.8709579 0.8932935 0.8996840
## 3011 0.8657143 0.8709579 0.8816392 0.8845984
## 3012 0.8880126 0.8709579 0.8932935 0.8845984
## 3013 0.8657143 0.8709579 0.8932935 0.8996840
## 3014 0.8880126 0.9512195 0.8932935 0.8845984
## 3015 0.8880126 0.9512195 0.8932935 0.8845984
## 3016 0.8967552 0.8709579 0.8816392 0.8996840
## 3017 0.9156328 0.8709579 0.8816392 0.8845984
## 3018 0.8657143 0.8709579 0.8816392 0.8845984
## 3019 0.8880126 0.9512195 0.8932935 0.8845984
## 3020 0.8880126 0.8709579 0.8932935 0.8996840
## 3021 0.9057377 0.8709579 0.8816392 0.8845984
## 3022 0.8967552 0.8709579 0.8816392 0.8845984
## 3023 0.8657143 0.8709579 0.8932935 0.8845984
## 3024 0.8657143 0.9512195 0.8932935 0.8845984
## 3025 0.9156328 0.8709579 0.8932935 0.8996840
## 3026 0.8880126 0.9512195 0.8932935 0.8845984
## 3027 0.8967552 0.8709579 0.8816392 0.8845984
## 3028 0.8880126 0.8709579 0.8932935 0.8845984
## 3029 0.8657143 0.8709579 0.8816392 0.8845984
## 3030 0.8880126 0.9512195 0.8816392 0.8845984
## 3031 0.8880126 0.8709579 0.8932935 0.8845984
## 3032 0.8657143 0.8709579 0.8932935 0.8845984
## 3033 0.9156328 0.8709579 0.8816392 0.8845984
## 3034 0.8967552 0.8709579 0.8932935 0.8845984
## 3035 0.9075630 0.9512195 0.8816392 0.8845984
## 3036 0.8657143 0.8709579 0.8932935 0.8996840
## 3037 0.8657143 0.8709579 0.8816392 0.8845984
## 3038 0.8657143 0.8709579 0.8932935 0.8845984
## 3039 0.8657143 0.9512195 0.8816392 0.8845984
## 3040 0.9156328 0.8709579 0.8932935 0.8845984
## 3041 0.8657143 0.8709579 0.8816392 0.8845984
## 3042 0.9156328 0.9512195 0.8816392 0.8845984
## 3043 0.9057377 0.9512195 0.8816392 0.8845984
## 3044 0.8657143 0.9512195 0.8816392 0.8845984
## 3045 0.9156328 0.8709579 0.8932935 0.8845984
## 3046 0.8880126 0.8709579 0.8932935 0.8845984
## 3047 0.9075630 0.9512195 0.8932935 0.8845984
## 3048 0.8967552 0.8709579 0.8932935 0.8845984
## 3049 0.8657143 0.9512195 0.8932935 0.8845984
## 3050 0.8880126 0.8709579 0.8816392 0.8845984
## 3051 0.8657143 0.8709579 0.8816392 0.8845984
## 3052 0.8880126 0.8709579 0.8816392 0.8996840
## 3053 0.8657143 0.9512195 0.8816392 0.8996840
## 3054 0.9156328 0.9512195 0.8932935 0.8845984
## 3055 0.8657143 0.9512195 0.8932935 0.8845984
## 3056 0.8657143 0.8709579 0.8932935 0.8845984
## 3057 0.9075630 0.8709579 0.8932935 0.8845984
## 3058 0.8657143 0.8709579 0.8932935 0.8845984
## 3059 0.9156328 0.9512195 0.8932935 0.8845984
## 3060 0.8880126 0.8709579 0.8932935 0.8845984
## 3061 0.8657143 0.8709579 0.8816392 0.8996840
## 3062 0.8657143 0.9512195 0.8932935 0.8845984
## 3063 0.8967552 0.8709579 0.9032258 0.9032258
## 3064 0.8880126 0.8709579 0.8816392 0.8845984
## 3065 0.8657143 0.8709579 0.8816392 0.8996840
## 3066 0.8657143 0.8709579 0.8816392 0.8845984
## 3067 0.9156328 0.9512195 0.8816392 0.8996840
## 3068 0.9156328 0.8709579 0.8932935 0.8996840
## 3069 0.8348348 0.8709579 0.8816392 0.8845984
## 3070 0.9057377 0.8709579 0.8816392 0.8845984
## 3071 0.9156328 0.9512195 0.8816392 0.8845984
## 3072 0.8880126 0.9512195 0.8932935 0.8845984
## 3073 0.8967552 0.8709579 0.8816392 0.8845984
## 3074 0.8657143 0.8709579 0.8816392 0.8845984
## 3075 0.8657143 0.8709579 0.8816392 0.8845984
## 3076 0.8657143 0.8709579 0.8932935 0.8845984
## 3077 0.8657143 0.9512195 0.8816392 0.8845984
## 3078 0.8657143 0.8709579 0.8816392 0.8845984
## 3079 0.8657143 0.8709579 0.8816392 0.8845984
## 3080 0.8657143 0.9512195 0.8816392 0.8996840
## 3081 0.9057377 0.8709579 0.8932935 0.8845984
## 3082 0.8657143 0.8709579 0.8932935 0.8845984
## 3083 0.9156328 0.8709579 0.8932935 0.8845984
## 3084 0.8657143 0.8709579 0.8932935 0.8845984
## 3085 0.8657143 0.9512195 0.8932935 0.8996840
## 3086 0.8657143 0.8709579 0.8816392 0.8845984
## 3087 0.9075630 0.9512195 0.8816392 0.8845984
## 3088 0.9057377 0.8709579 0.8816392 0.8845984
## 3089 0.8657143 0.8709579 0.8932935 0.8845984
## 3090 0.8880126 0.9512195 0.8932935 0.8845984
## 3091 0.8657143 0.8709579 0.8932935 0.8845984
## 3092 0.8657143 0.8709579 0.8816392 0.8845984
## 3093 0.9156328 0.8709579 0.8816392 0.8845984
## 3094 0.8967552 0.8709579 0.8932935 0.8845984
## 3095 0.8348348 0.9512195 0.8932935 0.8996840
## 3096 0.8880126 0.9512195 0.8816392 0.8845984
## 3097 0.9156328 0.8709579 0.8932935 0.8845984
## 3098 0.8967552 0.8709579 0.8816392 0.8845984
## 3099 0.8880126 0.8709579 0.8932935 0.8845984
## 3100 0.8880126 0.9512195 0.8816392 0.8845984
## 3101 0.8657143 0.8709579 0.8816392 0.8845984
## 3102 0.8967552 0.9512195 0.8932935 0.8845984
## 3103 0.9075630 0.9512195 0.8932935 0.8845984
## 3104 0.8348348 0.8709579 0.8932935 0.8845984
## 3105 0.8657143 0.8709579 0.8816392 0.8845984
## 3106 0.9156328 0.8709579 0.8932935 0.8845984
## 3107 0.8657143 0.8709579 0.8816392 0.8996840
## 3108 0.9156328 0.8709579 0.8816392 0.8845984
## 3109 0.8657143 0.8709579 0.8816392 0.8845984
## 3110 0.8880126 0.8709579 0.8816392 0.8845984
## 3111 0.8880126 0.8709579 0.8816392 0.8845984
## 3112 0.8880126 0.8709579 0.8816392 0.8845984
## 3113 0.8880126 0.8709579 0.8932935 0.8845984
## 3114 0.9075630 0.8709579 0.8816392 0.8845984
## 3115 0.9075630 0.9512195 0.8816392 0.8845984
## 3116 0.9075630 0.9512195 0.8932935 0.8845984
## 3117 0.9156328 0.8709579 0.8932935 0.8845984
## 3118 0.8967552 0.8709579 0.8932935 0.8996840
## 3119 0.9156328 0.8709579 0.8816392 0.8845984
## 3120 0.8880126 0.8709579 0.8932935 0.8845984
## 3121 0.8657143 0.8709579 0.8816392 0.8845984
## 3122 0.9075630 0.9512195 0.8816392 0.8845984
## 3123 0.8880126 0.8709579 0.8816392 0.8845984
## 3124 0.8880126 0.9512195 0.8932935 0.8845984
## 3125 0.8880126 0.9512195 0.8932935 0.8845984
## 3126 0.8880126 0.8709579 0.8816392 0.8845984
## 3127 0.9156328 0.8709579 0.8932935 0.8845984
## 3128 0.9075630 0.8709579 0.8932935 0.8845984
## 3129 0.8657143 0.8709579 0.8932935 0.8845984
## 3130 0.8348348 0.9512195 0.8816392 0.8845984
## 3131 0.9075630 0.8709579 0.8816392 0.8845984
## 3132 0.8880126 0.9512195 0.8932935 0.8845984
## 3133 0.8880126 0.8709579 0.8816392 0.8845984
## 3134 0.8657143 0.8709579 0.8816392 0.8845984
## 3135 0.9156328 0.9512195 0.8816392 0.8845984
## 3136 0.8880126 0.8709579 0.8816392 0.8845984
## 3137 0.8880126 0.9512195 0.8816392 0.8845984
## 3138 0.9156328 0.9512195 0.8932935 0.8845984
## 3139 0.9075630 0.9512195 0.8816392 0.8845984
## 3140 0.8880126 0.8709579 0.8816392 0.8845984
## 3141 0.9057377 0.9512195 0.9032258 0.9032258
## 3142 0.8348348 0.8709579 0.8932935 0.8845984
## 3143 0.8657143 0.8709579 0.8932935 0.8845984
## 3144 0.8657143 0.8709579 0.8816392 0.8845984
## 3145 0.8657143 0.9512195 0.8932935 0.8845984
## 3146 0.8880126 0.8709579 0.8816392 0.8845984
## 3147 0.8880126 0.8709579 0.8932935 0.8996840
## 3148 0.9156328 0.8709579 0.8816392 0.8996840
## 3149 0.8657143 0.8709579 0.8816392 0.8996840
## 3150 0.9156328 0.8709579 0.8932935 0.8845984
## 3151 0.9156328 0.8709579 0.8816392 0.8845984
## 3152 0.8657143 0.8709579 0.8816392 0.8845984
## 3153 0.8657143 0.8709579 0.8932935 0.8845984
## 3154 0.9075630 0.9512195 0.8932935 0.8845984
## 3155 0.8880126 0.8709579 0.8932935 0.8845984
## 3156 0.8657143 0.8709579 0.9032258 0.9032258
## 3157 0.8657143 0.8709579 0.8932935 0.8845984
## 3158 0.8657143 0.8709579 0.8816392 0.8996840
## 3159 0.9156328 0.8709579 0.8932935 0.8845984
## 3160 0.9057377 0.8709579 0.8932935 0.8845984
## 3161 0.9156328 0.8709579 0.8816392 0.8845984
## 3162 0.9156328 0.9512195 0.8816392 0.8845984
## 3163 0.8880126 0.8709579 0.8932935 0.8845984
## 3164 0.9156328 0.8709579 0.8816392 0.8845984
## 3165 0.8880126 0.8709579 0.8932935 0.8845984
## 3166 0.9075630 0.9512195 0.8932935 0.8845984
## 3167 0.8880126 0.8709579 0.8816392 0.8845984
## 3168 0.9075630 0.8709579 0.8816392 0.8845984
## 3169 0.8880126 0.8709579 0.9032258 0.9032258
## 3170 0.8348348 0.8709579 0.9032258 0.9032258
## 3171 0.8657143 0.8709579 0.8932935 0.8845984
## 3172 0.9075630 0.8709579 0.8932935 0.8845984
## 3173 0.8657143 0.8709579 0.8932935 0.8845984
## 3174 0.9057377 0.8709579 0.8816392 0.8996840
## 3175 0.8967552 0.8709579 0.8816392 0.8845984
## 3176 0.9075630 0.9512195 0.8932935 0.8845984
## 3177 0.8657143 0.9512195 0.8932935 0.8845984
## 3178 0.8967552 0.8709579 0.8816392 0.8996840
## 3179 0.9075630 0.8709579 0.8816392 0.8845984
## 3180 0.8657143 0.8709579 0.8932935 0.8845984
## 3181 0.9156328 0.8709579 0.8932935 0.8996840
## 3182 0.8657143 0.8709579 0.8816392 0.8845984
## 3183 0.9156328 0.9512195 0.8816392 0.8845984
## 3184 0.8880126 0.8709579 0.8816392 0.8996840
## 3185 0.8657143 0.9512195 0.8816392 0.8845984
## 3186 0.8657143 0.8709579 0.8816392 0.8996840
## 3187 0.8880126 0.8709579 0.8932935 0.8845984
## 3188 0.8880126 0.8709579 0.8816392 0.8996840
## 3189 0.8880126 0.8709579 0.8932935 0.8845984
## 3190 0.9057377 0.8709579 0.8932935 0.8845984
## 3191 0.8967552 0.8709579 0.8932935 0.8845984
## 3192 0.9156328 0.8709579 0.8816392 0.8845984
## 3193 0.8967552 0.8709579 0.8816392 0.8996840
## 3194 0.8880126 0.8709579 0.9032258 0.9032258
## 3195 0.8880126 0.8709579 0.8816392 0.8845984
## 3196 0.8348348 0.8709579 0.8932935 0.8845984
## 3197 0.8000000 0.9512195 0.8932935 0.8845984
## 3198 0.8967552 0.8709579 0.8816392 0.8845984
## 3199 0.8880126 0.8709579 0.8816392 0.8996840
## 3200 0.9156328 0.9512195 0.8816392 0.8845984
## 3201 0.8657143 0.8709579 0.8932935 0.8845984
## 3202 0.9057377 0.9512195 0.8932935 0.8845984
## 3203 0.8657143 0.8709579 0.8816392 0.8845984
## 3204 0.8657143 0.8709579 0.8932935 0.8845984
## 3205 0.9057377 0.9512195 0.8816392 0.8845984
## 3206 0.9156328 0.8709579 0.8816392 0.8845984
## 3207 0.8967552 0.8709579 0.8932935 0.8996840
## 3208 0.9156328 0.9512195 0.8932935 0.8845984
## 3209 0.9075630 0.8709579 0.8816392 0.8845984
## 3210 0.8657143 0.8709579 0.9032258 0.9032258
## 3211 0.8880126 0.8709579 0.8932935 0.8845984
## 3212 0.8657143 0.8709579 0.8932935 0.8845984
## 3213 0.8880126 0.8709579 0.8816392 0.8845984
## 3214 0.8967552 0.8709579 0.9032258 0.9032258
## 3215 0.8880126 0.8709579 0.8816392 0.8996840
## 3216 0.9057377 0.8709579 0.8816392 0.8845984
## 3217 0.9057377 0.8709579 0.8816392 0.8845984
## 3218 0.8967552 0.8709579 0.8816392 0.8845984
## 3219 0.9075630 0.9512195 0.8932935 0.8845984
## 3220 0.8657143 0.9512195 0.8816392 0.8845984
## 3221 0.8657143 0.8709579 0.8816392 0.8845984
## 3222 0.8657143 0.8709579 0.8932935 0.8845984
## 3223 0.8880126 0.9512195 0.8816392 0.8845984
## 3224 0.9057377 0.9512195 0.8816392 0.8996840
## 3225 0.8967552 0.9512195 0.8816392 0.8845984
## 3226 0.9075630 0.9512195 0.8816392 0.8845984
## 3227 0.8967552 0.8709579 0.8932935 0.8845984
## 3228 0.9156328 0.8709579 0.8932935 0.8845984
## 3229 0.8657143 0.9512195 0.8816392 0.8845984
## 3230 0.8880126 0.8709579 0.8816392 0.8845984
## 3231 0.8657143 0.8709579 0.8816392 0.8845984
## 3232 0.8967552 0.8709579 0.8816392 0.8996840
## 3233 0.9156328 0.8709579 0.8932935 0.8845984
## 3234 0.9156328 0.8709579 0.8816392 0.8845984
## 3235 0.9156328 0.8709579 0.8816392 0.8845984
## 3236 0.8967552 0.9512195 0.8816392 0.8845984
## 3237 0.8657143 0.8709579 0.8816392 0.8845984
## 3238 0.8880126 0.9512195 0.8816392 0.8996840
## 3239 0.8880126 0.9512195 0.8932935 0.8845984
## 3240 0.8967552 0.8709579 0.8932935 0.8845984
## 3241 0.8880126 0.9512195 0.8932935 0.8845984
## 3242 0.8880126 0.8709579 0.8932935 0.8996840
## 3243 0.8657143 0.8709579 0.8816392 0.8845984
## 3244 0.8657143 0.8709579 0.8816392 0.8845984
## 3245 0.9156328 0.8709579 0.8816392 0.8845984
## 3246 0.8657143 0.8709579 0.8816392 0.8845984
## 3247 0.8657143 0.8709579 0.8816392 0.8845984
## 3248 0.8657143 0.8709579 0.8932935 0.8845984
## 3249 0.8657143 0.8709579 0.8932935 0.8845984
## 3250 0.8880126 0.8709579 0.8932935 0.8845984
## 3251 0.8967552 0.8709579 0.8816392 0.8996840
## 3252 0.8880126 0.9512195 0.8816392 0.8845984
## 3253 0.9156328 0.9512195 0.8932935 0.8845984
## 3254 0.9057377 0.8709579 0.8816392 0.8845984
## 3255 0.8348348 0.8709579 0.8816392 0.8845984
## 3256 0.9156328 0.9512195 0.8816392 0.8845984
## 3257 0.8657143 0.9512195 0.8816392 0.8845984
## 3258 0.8348348 0.8709579 0.8816392 0.8845984
## 3259 0.8657143 0.9512195 0.8932935 0.8845984
## 3260 0.8967552 0.8709579 0.8932935 0.8845984
## 3261 0.8880126 0.8709579 0.8816392 0.8845984
## 3262 0.8880126 0.9512195 0.8816392 0.8845984
## 3263 0.9075630 0.8709579 0.8816392 0.8845984
## 3264 0.9156328 0.8709579 0.8816392 0.8845984
## 3265 0.8657143 0.9512195 0.8932935 0.8996840
## 3266 0.8657143 0.8709579 0.8932935 0.8845984
## 3267 0.8967552 0.8709579 0.8816392 0.8845984
## 3268 0.8657143 0.8709579 0.8816392 0.8845984
## 3269 0.8657143 0.8709579 0.8816392 0.8845984
## 3270 0.8880126 0.8709579 0.8816392 0.8845984
## 3271 0.8880126 0.8709579 0.8816392 0.8845984
## 3272 0.9075630 0.8709579 0.8816392 0.8845984
## 3273 0.9156328 0.8709579 0.8932935 0.8845984
## 3274 0.8657143 0.8709579 0.9032258 0.9032258
## 3275 0.8657143 0.8709579 0.8932935 0.8845984
## 3276 0.8657143 0.9512195 0.8816392 0.8845984
## 3277 0.8880126 0.8709579 0.8932935 0.8845984
## 3278 0.8880126 0.9512195 0.8932935 0.8845984
## 3279 0.9057377 0.9512195 0.8816392 0.8845984
## 3280 0.8657143 0.8709579 0.8816392 0.8845984
## 3281 0.9057377 0.8709579 0.8816392 0.8845984
## 3282 0.8657143 0.8709579 0.8816392 0.8845984
## 3283 0.9156328 0.8709579 0.8816392 0.8845984
## 3284 0.8657143 0.9512195 0.8932935 0.8996840
## 3285 0.8880126 0.8709579 0.8932935 0.8845984
## 3286 0.8657143 0.8709579 0.8816392 0.8845984
## 3287 0.8657143 0.8709579 0.8816392 0.8845984
## 3288 0.8880126 0.8709579 0.8932935 0.8845984
## 3289 0.9075630 0.9512195 0.8932935 0.8845984
## 3290 0.8657143 0.8709579 0.8816392 0.8845984
## 3291 0.8967552 0.8709579 0.8816392 0.8845984
## 3292 0.8880126 0.8709579 0.8932935 0.8845984
## 3293 0.8880126 0.8709579 0.8932935 0.8845984
## 3294 0.8967552 0.8709579 0.8932935 0.8845984
## 3295 0.8880126 0.8709579 0.8932935 0.8845984
## 3296 0.8880126 0.8709579 0.8932935 0.8845984
## 3297 0.9156328 0.8709579 0.8816392 0.8845984
## 3298 0.9075630 0.9512195 0.8932935 0.8845984
## 3299 0.8880126 0.8709579 0.8932935 0.8845984
## 3300 0.8657143 0.8709579 0.8816392 0.8845984
## 3301 0.8657143 0.8709579 0.8816392 0.8845984
## 3302 0.8967552 0.8709579 0.8932935 0.8996840
## 3303 0.8880126 0.8709579 0.8932935 0.8845984
## 3304 0.8880126 0.8709579 0.8816392 0.8845984
## 3305 0.8348348 0.8709579 0.8816392 0.8845984
## 3306 0.9156328 0.9512195 0.8932935 0.8845984
## 3307 0.9075630 0.9512195 0.8816392 0.8845984
## 3308 0.8967552 0.8709579 0.8816392 0.8845984
## 3309 0.9075630 0.8709579 0.8816392 0.8845984
## 3310 0.8880126 0.8709579 0.8816392 0.8845984
## 3311 0.8657143 0.8709579 0.8816392 0.8845984
## 3312 0.8657143 0.8709579 0.8816392 0.8845984
## 3313 0.8657143 0.8709579 0.9032258 0.9032258
## 3314 0.9156328 0.8709579 0.8816392 0.8845984
## 3315 0.8657143 0.8709579 0.8932935 0.8845984
## 3316 0.9156328 0.8709579 0.8816392 0.8845984
## 3317 0.8967552 0.8709579 0.8816392 0.8845984
## 3318 0.8880126 0.8709579 0.8932935 0.8845984
## 3319 0.8657143 0.9512195 0.8816392 0.8845984
## 3320 0.8880126 0.8709579 0.8932935 0.8845984
## 3321 0.8880126 0.8709579 0.9032258 0.9032258
## 3322 0.8880126 0.8709579 0.9032258 0.9032258
## 3323 0.9156328 0.8709579 0.8816392 0.8845984
## 3324 0.8657143 0.8709579 0.8932935 0.8845984
## 3325 0.8657143 0.9512195 0.8816392 0.8845984
## 3326 0.8880126 0.8709579 0.8932935 0.8845984
## 3327 0.8657143 0.8709579 0.8816392 0.8845984
## 3328 0.8880126 0.8709579 0.8932935 0.8845984
## 3329 0.8880126 0.8709579 0.8816392 0.8845984
## 3330 0.8880126 0.8709579 0.8816392 0.8845984
## 3331 0.8880126 0.8709579 0.8932935 0.8845984
## 3332 0.9057377 0.8709579 0.8932935 0.8845984
## 3333 0.9075630 0.9512195 0.8816392 0.8845984
## 3334 0.8657143 0.8709579 0.8816392 0.8996840
## 3335 0.8657143 0.8709579 0.8816392 0.8845984
## 3336 0.8348348 0.8709579 0.8932935 0.8845984
## 3337 0.9156328 0.8709579 0.9032258 0.9032258
## 3338 0.8880126 0.8709579 0.8816392 0.8845984
## 3339 0.8657143 0.9512195 0.8816392 0.8996840
## 3340 0.8967552 0.8709579 0.8816392 0.8996840
## 3341 0.8880126 0.8709579 0.8932935 0.8845984
## 3342 0.8880126 0.8709579 0.8816392 0.8845984
## 3343 0.8880126 0.9512195 0.8932935 0.8845984
## 3344 0.8657143 0.8709579 0.8816392 0.8845984
## 3345 0.9156328 0.9512195 0.8932935 0.8845984
## 3346 0.9156328 0.8709579 0.8816392 0.8845984
## 3347 0.9156328 0.8709579 0.8816392 0.8845984
## 3348 0.8967552 0.8709579 0.8816392 0.8845984
## 3349 0.8880126 0.8709579 0.8932935 0.8845984
## 3350 0.8657143 0.8709579 0.8816392 0.8845984
## 3351 0.8967552 0.8709579 0.8816392 0.8845984
## 3352 0.8880126 0.9512195 0.8932935 0.8996840
## 3353 0.8880126 0.8709579 0.8932935 0.8996840
## 3354 0.8967552 0.9512195 0.8932935 0.8845984
## 3355 0.9156328 0.8709579 0.8932935 0.8845984
## 3356 0.8880126 0.8709579 0.8932935 0.8845984
## 3357 0.8967552 0.8709579 0.8932935 0.8845984
## 3358 0.9156328 0.9512195 0.8932935 0.8845984
## 3359 0.9156328 0.9512195 0.8932935 0.8845984
## 3360 0.9057377 0.8709579 0.8932935 0.8996840
## 3361 0.8348348 0.9512195 0.8816392 0.8845984
## 3362 0.8657143 0.8709579 0.8816392 0.8845984
## 3363 0.8880126 0.8709579 0.8932935 0.8996840
## 3364 0.8348348 0.9512195 0.8932935 0.8845984
## 3365 0.8657143 0.8709579 0.8816392 0.8845984
## 3366 0.8657143 0.8709579 0.8816392 0.8845984
## 3367 0.8657143 0.8709579 0.8932935 0.8845984
## 3368 0.9156328 0.8709579 0.8816392 0.8845984
## 3369 0.8657143 0.8709579 0.8932935 0.8845984
## 3370 0.9156328 0.9512195 0.8932935 0.8996840
## 3371 0.9156328 0.9512195 0.8816392 0.8845984
## 3372 0.8657143 0.8709579 0.8816392 0.8845984
## 3373 0.9156328 0.8709579 0.8932935 0.8845984
## 3374 0.8657143 0.8709579 0.8932935 0.8845984
## 3375 0.8657143 0.8709579 0.9032258 0.9032258
## 3376 0.8657143 0.8709579 0.8932935 0.8845984
## 3377 0.8657143 0.8709579 0.8816392 0.8845984
## 3378 0.8657143 0.9512195 0.8932935 0.8996840
## 3379 0.8880126 0.8709579 0.8816392 0.8845984
## 3380 0.8967552 0.8709579 0.8816392 0.8845984
## 3381 0.9057377 0.8709579 0.8816392 0.8845984
## 3382 0.8657143 0.8709579 0.8816392 0.8845984
## 3383 0.8880126 0.8709579 0.8816392 0.8845984
## 3384 0.8657143 0.8709579 0.8932935 0.8845984
## 3385 0.9075630 0.8709579 0.8816392 0.8845984
## 3386 0.8657143 0.8709579 0.8816392 0.8845984
## 3387 0.9156328 0.8709579 0.8816392 0.8845984
## 3388 0.8880126 0.8709579 0.8932935 0.8845984
## 3389 0.9057377 0.8709579 0.8932935 0.8845984
## 3390 0.8880126 0.8709579 0.8816392 0.8845984
## 3391 0.8348348 0.8709579 0.8816392 0.8845984
## 3392 0.9075630 0.8709579 0.8816392 0.8845984
## 3393 0.8880126 0.8709579 0.8816392 0.8845984
## 3394 0.8657143 0.8709579 0.8932935 0.8845984
## 3395 0.8880126 0.8709579 0.8816392 0.8845984
## 3396 0.9057377 0.9512195 0.8816392 0.8845984
## 3397 0.8657143 0.8709579 0.8816392 0.8996840
## 3398 0.8657143 0.8709579 0.8932935 0.8845984
## 3399 0.8880126 0.8709579 0.9032258 0.9032258
## 3400 0.8348348 0.8709579 0.9032258 0.9032258
## 3401 0.9156328 0.8709579 0.8932935 0.8845984
## 3402 0.8880126 0.8709579 0.8816392 0.8996840
## 3403 0.8348348 0.8709579 0.8816392 0.8845984
## 3404 0.8880126 0.8709579 0.8816392 0.8845984
## 3405 0.9156328 0.8709579 0.8932935 0.8845984
## 3406 0.8657143 0.8709579 0.8816392 0.8845984
## 3407 0.8348348 0.8709579 0.8932935 0.8845984
## 3408 0.8657143 0.8709579 0.8816392 0.8845984
## 3409 0.9057377 0.8709579 0.8816392 0.8845984
## 3410 0.9075630 0.8709579 0.8816392 0.8845984
## 3411 0.8880126 0.8709579 0.8816392 0.8845984
## 3412 0.8657143 0.8709579 0.8816392 0.8996840
## 3413 0.9156328 0.8709579 0.8816392 0.8845984
## 3414 0.8967552 0.8709579 0.8816392 0.8845984
## 3415 0.8657143 0.8709579 0.8816392 0.8845984
## 3416 0.8657143 0.8709579 0.8932935 0.8845984
## 3417 0.9156328 0.9512195 0.8816392 0.8845984
## 3418 0.8880126 0.8709579 0.8816392 0.8845984
## 3419 0.9057377 0.8709579 0.8932935 0.8845984
## 3420 0.8967552 0.8709579 0.8932935 0.8845984
## 3421 0.8657143 0.8709579 0.8932935 0.8845984
## 3422 0.8880126 0.8709579 0.8816392 0.8845984
## 3423 0.8657143 0.8709579 0.8932935 0.8845984
## 3424 0.8880126 0.8709579 0.8816392 0.8845984
## 3425 0.9075630 0.8709579 0.8932935 0.8845984
## 3426 0.8880126 0.8709579 0.8932935 0.8845984
## 3427 0.9156328 0.9512195 0.8816392 0.8845984
## 3428 0.8880126 0.8709579 0.9032258 0.9032258
## 3429 0.8657143 0.8709579 0.8932935 0.8845984
## 3430 0.9075630 0.9512195 0.8816392 0.8845984
## 3431 0.8880126 0.8709579 0.8816392 0.8845984
## 3432 0.8657143 0.8709579 0.8932935 0.8845984
## 3433 0.8657143 0.8709579 0.8932935 0.8845984
## 3434 0.8657143 0.9512195 0.8932935 0.8845984
## 3435 0.8348348 0.9512195 0.8932935 0.8845984
## 3436 0.8657143 0.8709579 0.8816392 0.8845984
## 3437 0.8880126 0.8709579 0.8816392 0.8845984
## 3438 0.9075630 0.8709579 0.8816392 0.8845984
## 3439 0.8880126 0.8709579 0.8816392 0.8845984
## 3440 0.8657143 0.8709579 0.8816392 0.8845984
## 3441 0.8880126 0.8709579 0.8932935 0.8845984
## 3442 0.9156328 0.8709579 0.8932935 0.8845984
## 3443 0.8880126 0.8709579 0.8816392 0.8845984
## 3444 0.8657143 0.9512195 0.8816392 0.8845984
## 3445 0.9075630 0.8709579 0.8816392 0.8845984
## 3446 0.9057377 0.9512195 0.8932935 0.8996840
## 3447 0.8880126 0.8709579 0.8816392 0.8996840
## 3448 0.8657143 0.8709579 0.8932935 0.8996840
## 3449 0.8967552 0.8709579 0.9032258 0.9032258
## 3450 0.8657143 0.8709579 0.8816392 0.8845984
## 3451 0.8880126 0.8709579 0.8816392 0.8845984
## 3452 0.9075630 0.8709579 0.8932935 0.8996840
## 3453 0.8880126 0.8709579 0.8816392 0.8845984
## 3454 0.9075630 0.8709579 0.8932935 0.8845984
## 3455 0.8657143 0.8709579 0.9032258 0.9032258
## 3456 0.8880126 0.8709579 0.8932935 0.8845984
## 3457 0.9075630 0.8709579 0.8932935 0.8845984
## 3458 0.9156328 0.8709579 0.8932935 0.8845984
## 3459 0.9075630 0.8709579 0.8816392 0.8845984
## 3460 0.8657143 0.8709579 0.8932935 0.8845984
## 3461 0.9057377 0.8709579 0.8816392 0.8996840
## 3462 0.9057377 0.9512195 0.8816392 0.8845984
## 3463 0.8348348 0.8709579 0.8932935 0.8996840
## 3464 0.8657143 0.8709579 0.8932935 0.8845984
## 3465 0.8880126 0.8709579 0.8816392 0.8996840
## 3466 0.8880126 0.9512195 0.8816392 0.8996840
## 3467 0.9057377 0.9512195 0.8932935 0.8845984
## 3468 0.8967552 0.9512195 0.8816392 0.8845984
## 3469 0.9156328 0.9512195 0.8816392 0.8845984
## 3470 0.8657143 0.9512195 0.8816392 0.8845984
## 3471 0.8657143 0.8709579 0.8816392 0.8996840
## 3472 0.8967552 0.8709579 0.8816392 0.8845984
## 3473 0.9075630 0.9512195 0.8816392 0.8996840
## 3474 0.8657143 0.8709579 0.8816392 0.8845984
## 3475 0.9075630 0.8709579 0.8816392 0.8996840
## 3476 0.8967552 0.8709579 0.8816392 0.8996840
## 3477 0.9156328 0.9512195 0.8816392 0.8845984
## 3478 0.8657143 0.8709579 0.8932935 0.8845984
## 3479 0.8657143 0.8709579 0.8932935 0.8845984
## 3480 0.8967552 0.8709579 0.8816392 0.8845984
## 3481 0.8657143 0.8709579 0.8816392 0.8845984
## 3482 0.8657143 0.8709579 0.8932935 0.8845984
## 3483 0.8880126 0.8709579 0.8932935 0.8845984
## 3484 0.9075630 0.8709579 0.8932935 0.8845984
## 3485 0.9156328 0.8709579 0.8932935 0.8845984
## 3486 0.8967552 0.8709579 0.9032258 0.9032258
## 3487 0.8657143 0.8709579 0.8816392 0.8845984
## 3488 0.8657143 0.8709579 0.8932935 0.8996840
## 3489 0.8880126 0.8709579 0.9032258 0.9032258
## 3490 0.8880126 0.8709579 0.8932935 0.8845984
## 3491 0.8967552 0.8709579 0.8816392 0.8845984
## 3492 0.8880126 0.8709579 0.8816392 0.8845984
## 3493 0.8880126 0.8709579 0.8932935 0.8845984
## 3494 0.8880126 0.8709579 0.8816392 0.8845984
## 3495 0.8348348 0.8709579 0.8816392 0.8845984
## 3496 0.8967552 0.8709579 0.8816392 0.8845984
## 3497 0.8657143 0.8709579 0.8932935 0.8996840
## 3498 0.8657143 0.9512195 0.8816392 0.8845984
## 3499 0.8657143 0.8709579 0.8816392 0.8996840
## 3500 0.8880126 0.8709579 0.8816392 0.8845984
## 3501 0.8657143 0.8709579 0.8816392 0.8996840
## 3502 0.9075630 0.8709579 0.8816392 0.8845984
## 3503 0.8657143 0.8709579 0.8816392 0.8845984
## 3504 0.8657143 0.8709579 0.8816392 0.8845984
## 3505 0.8657143 0.9512195 0.8816392 0.8845984
## 3506 0.8348348 0.8709579 0.8932935 0.8845984
## 3507 0.8967552 0.8709579 0.8816392 0.8996840
## 3508 0.8348348 0.8709579 0.8932935 0.8845984
## 3509 0.9156328 0.8709579 0.8932935 0.8845984
## 3510 0.8657143 0.8709579 0.8932935 0.8845984
## 3511 0.9057377 0.9512195 0.8932935 0.8845984
## 3512 0.8967552 0.8709579 0.8816392 0.8996840
## 3513 0.9075630 0.8709579 0.8816392 0.8845984
## 3514 0.9156328 0.8709579 0.8816392 0.8845984
## 3515 0.9156328 0.9512195 0.8816392 0.8845984
## 3516 0.8657143 0.8709579 0.8932935 0.8845984
## 3517 0.8657143 0.9512195 0.8816392 0.8845984
## 3518 0.8657143 0.8709579 0.8932935 0.8996840
## 3519 0.9156328 0.9512195 0.8932935 0.8845984
## 3520 0.8657143 0.8709579 0.8816392 0.8845984
## 3521 0.9075630 0.8709579 0.8932935 0.8996840
## 3522 0.8657143 0.8709579 0.8816392 0.8845984
## 3523 0.8880126 0.9512195 0.8816392 0.8845984
## 3524 0.9156328 0.9512195 0.8816392 0.8996840
## 3525 0.8880126 0.8709579 0.8816392 0.8845984
## 3526 0.8657143 0.8709579 0.8932935 0.8996840
## 3527 0.9156328 0.8709579 0.8932935 0.8845984
## 3528 0.9156328 0.9512195 0.8932935 0.8845984
## 3529 0.8657143 0.8709579 0.8932935 0.8845984
## 3530 0.8657143 0.8709579 0.8816392 0.8845984
## 3531 0.8657143 0.8709579 0.8816392 0.8996840
## 3532 0.8657143 0.8709579 0.8816392 0.8845984
## 3533 0.8657143 0.8709579 0.8816392 0.8845984
## 3534 0.9057377 0.9512195 0.8932935 0.8845984
## 3535 0.9156328 0.8709579 0.8816392 0.8845984
## 3536 0.8657143 0.8709579 0.8816392 0.8845984
## 3537 0.8967552 0.8709579 0.8932935 0.8845984
## 3538 0.8657143 0.8709579 0.8816392 0.8845984
## 3539 0.9156328 0.8709579 0.8932935 0.8845984
## 3540 0.8348348 0.8709579 0.8932935 0.8845984
## 3541 0.9075630 0.9512195 0.8816392 0.8996840
## 3542 0.9057377 0.8709579 0.8816392 0.8845984
## 3543 0.9075630 0.8709579 0.8816392 0.8845984
## 3544 0.8880126 0.8709579 0.8816392 0.8845984
## 3545 0.8880126 0.8709579 0.8816392 0.8845984
## 3546 0.9075630 0.9512195 0.8932935 0.8845984
## 3547 0.8967552 0.9512195 0.8932935 0.8845984
## 3548 0.8967552 0.8709579 0.8816392 0.8845984
## 3549 0.8967552 0.8709579 0.8932935 0.8845984
## 3550 0.8880126 0.8709579 0.8932935 0.8996840
## 3551 0.9156328 0.8709579 0.8932935 0.8845984
## 3552 0.8967552 0.8709579 0.8816392 0.8845984
## 3553 0.8657143 0.9512195 0.8816392 0.8845984
## 3554 0.8967552 0.8709579 0.8932935 0.8845984
## 3555 0.8880126 0.8709579 0.8932935 0.8845984
## 3556 0.9156328 0.9512195 0.8932935 0.8845984
## 3557 0.8657143 0.9512195 0.8816392 0.8845984
## 3558 0.9075630 0.9512195 0.8932935 0.8845984
## 3559 0.8657143 0.8709579 0.8816392 0.8845984
## 3560 0.8880126 0.8709579 0.8932935 0.8845984
## 3561 0.9156328 0.8709579 0.8816392 0.8845984
## 3562 0.9156328 0.9512195 0.8932935 0.8845984
## 3563 0.9057377 0.8709579 0.8932935 0.8845984
## 3564 0.8657143 0.8709579 0.8932935 0.8996840
## 3565 0.9075630 0.9512195 0.8816392 0.8845984
## 3566 0.8657143 0.8709579 0.8816392 0.8845984
## 3567 0.8880126 0.8709579 0.8932935 0.8996840
## 3568 0.8967552 0.8709579 0.9032258 0.9032258
## 3569 0.9075630 0.9512195 0.8932935 0.8845984
## 3570 0.8880126 0.8709579 0.8932935 0.8845984
## 3571 0.8657143 0.8709579 0.8816392 0.8845984
## 3572 0.8880126 0.8709579 0.8816392 0.8845984
## 3573 0.8657143 0.8709579 0.8816392 0.8845984
## 3574 0.8657143 0.8709579 0.8816392 0.8996840
## 3575 0.9156328 0.8709579 0.8816392 0.8845984
## 3576 0.8880126 0.8709579 0.8932935 0.8845984
## 3577 0.8657143 0.8709579 0.8932935 0.8845984
## 3578 0.8348348 0.8709579 0.8816392 0.8845984
## 3579 0.8657143 0.8709579 0.8932935 0.8845984
## 3580 0.8657143 0.8709579 0.8816392 0.8845984
## 3581 0.8657143 0.9512195 0.8932935 0.8845984
## 3582 0.8880126 0.8709579 0.8932935 0.8996840
## 3583 0.9156328 0.8709579 0.8932935 0.8845984
## 3584 0.8348348 0.8709579 0.8932935 0.8996840
## 3585 0.8880126 0.8709579 0.8932935 0.8996840
## 3586 0.9057377 0.8709579 0.8932935 0.8996840
## 3587 0.8657143 0.8709579 0.8932935 0.8845984
## 3588 0.8880126 0.8709579 0.8932935 0.8845984
## 3589 0.9057377 0.8709579 0.8932935 0.8845984
## 3590 0.8880126 0.8709579 0.8816392 0.8845984
## 3591 0.8880126 0.8709579 0.8932935 0.8845984
## 3592 0.9156328 0.8709579 0.8816392 0.8845984
## 3593 0.8657143 0.8709579 0.8816392 0.8845984
## 3594 0.8880126 0.8709579 0.8816392 0.8845984
## 3595 0.8657143 0.8709579 0.8932935 0.8845984
## 3596 0.8880126 0.9512195 0.8932935 0.8845984
## 3597 0.8880126 0.8709579 0.8932935 0.8845984
## 3598 0.9156328 0.8709579 0.8816392 0.8845984
## 3599 0.9156328 0.8709579 0.8816392 0.8845984
## 3600 0.9075630 0.8709579 0.8932935 0.8845984
## 3601 0.8967552 0.8709579 0.8816392 0.8845984
## 3602 0.8880126 0.8709579 0.9032258 0.9032258
## 3603 0.8657143 0.9512195 0.8816392 0.8996840
## 3604 0.8967552 0.8709579 0.8816392 0.8845984
## 3605 0.8880126 0.8709579 0.8816392 0.8845984
## 3606 0.9156328 0.9512195 0.8932935 0.8845984
## 3607 0.8967552 0.8709579 0.8816392 0.8845984
## 3608 0.9156328 0.9512195 0.8816392 0.8845984
## 3609 0.8348348 0.8709579 0.8932935 0.8996840
## 3610 0.8657143 0.8709579 0.8816392 0.8845984
## 3611 0.8657143 0.8709579 0.8816392 0.8845984
## 3612 0.9057377 0.8709579 0.8932935 0.8845984
## 3613 0.8967552 0.8709579 0.8932935 0.8996840
## 3614 0.9156328 0.8709579 0.8816392 0.8845984
## 3615 0.9156328 0.8709579 0.8816392 0.8845984
## 3616 0.8880126 0.9512195 0.8932935 0.8996840
## 3617 0.9075630 0.9512195 0.8816392 0.8845984
## 3618 0.8880126 0.8709579 0.8816392 0.8845984
## 3619 0.8880126 0.8709579 0.8932935 0.8845984
## 3620 0.9156328 0.9512195 0.8816392 0.8845984
## 3621 0.9075630 0.9512195 0.8816392 0.8996840
## 3622 0.9156328 0.9512195 0.8932935 0.8845984
## 3623 0.9075630 0.8709579 0.8932935 0.8845984
## 3624 0.8880126 0.8709579 0.8816392 0.8845984
## 3625 0.8880126 0.8709579 0.8816392 0.8845984
## 3626 0.9057377 0.8709579 0.8932935 0.8845984
## 3627 0.9057377 0.9512195 0.8932935 0.8845984
## 3628 0.9075630 0.8709579 0.8816392 0.8845984
## 3629 0.8657143 0.8709579 0.8816392 0.8845984
## 3630 0.9156328 0.8709579 0.8932935 0.8845984
## 3631 0.8657143 0.8709579 0.8816392 0.8845984
## 3632 0.8657143 0.8709579 0.8932935 0.8845984
## 3633 0.8657143 0.9512195 0.8816392 0.8845984
## 3634 0.9057377 0.8709579 0.8816392 0.8996840
## 3635 0.9075630 0.9512195 0.8816392 0.8845984
## 3636 0.8880126 0.8709579 0.8932935 0.8845984
## 3637 0.8967552 0.8709579 0.8816392 0.8845984
## 3638 0.8657143 0.8709579 0.8932935 0.8845984
## 3639 0.9075630 0.8709579 0.8932935 0.8845984
## 3640 0.8657143 0.9512195 0.8932935 0.8845984
## 3641 0.9075630 0.8709579 0.8816392 0.8845984
## 3642 0.9156328 0.8709579 0.8932935 0.8996840
## 3643 0.8657143 0.8709579 0.8932935 0.8996840
## 3644 0.8348348 0.9512195 0.8932935 0.8845984
## 3645 0.8657143 0.8709579 0.8932935 0.8845984
## 3646 0.9156328 0.8709579 0.8816392 0.8845984
## 3647 0.9156328 0.8709579 0.8816392 0.8996840
## 3648 0.8657143 0.8709579 0.8932935 0.8845984
## 3649 0.8657143 0.8709579 0.8932935 0.8845984
## 3650 0.8880126 0.8709579 0.8932935 0.8845984
## 3651 0.8967552 0.8709579 0.8816392 0.8845984
## 3652 0.8967552 0.8709579 0.8816392 0.8845984
## 3653 0.8657143 0.8709579 0.8932935 0.8845984
## 3654 0.9156328 0.8709579 0.8816392 0.8996840
## 3655 0.8967552 0.8709579 0.8816392 0.8845984
## 3656 0.8880126 0.8709579 0.9032258 0.9032258
## 3657 0.9156328 0.8709579 0.8932935 0.8845984
## 3658 0.8348348 0.8709579 0.8816392 0.8996840
## 3659 0.8657143 0.8709579 0.8816392 0.8845984
## 3660 0.8880126 0.8709579 0.9032258 0.9032258
## 3661 0.8348348 0.8709579 0.8932935 0.8845984
## 3662 0.9057377 0.8709579 0.8932935 0.8845984
## 3663 0.8657143 0.9512195 0.8932935 0.8996840
## 3664 0.8348348 0.8709579 0.8932935 0.8996840
## 3665 0.9057377 0.8709579 0.8932935 0.8845984
## 3666 0.9075630 0.8709579 0.8932935 0.8845984
## 3667 0.9075630 0.9512195 0.8816392 0.8845984
## 3668 0.9075630 0.8709579 0.8816392 0.8845984
## 3669 0.9156328 0.8709579 0.8932935 0.8845984
## 3670 0.8967552 0.8709579 0.8932935 0.8845984
## 3671 0.8880126 0.8709579 0.8816392 0.8845984
## 3672 0.8880126 0.8709579 0.8932935 0.8845984
## 3673 0.8880126 0.8709579 0.8816392 0.8845984
## 3674 0.8880126 0.8709579 0.8932935 0.8845984
## 3675 0.9156328 0.8709579 0.8932935 0.8845984
## 3676 0.8880126 0.8709579 0.8816392 0.8845984
## 3677 0.8657143 0.9512195 0.8816392 0.8845984
## 3678 0.9075630 0.9512195 0.8816392 0.8845984
## 3679 0.9075630 0.8709579 0.8816392 0.8845984
## 3680 0.9057377 0.9512195 0.8816392 0.8845984
## 3681 0.8657143 0.8709579 0.8932935 0.8845984
## 3682 0.9156328 0.8709579 0.8932935 0.8845984
## 3683 0.9156328 0.9512195 0.8932935 0.8845984
## 3684 0.8657143 0.8709579 0.8816392 0.8845984
## 3685 0.8880126 0.8709579 0.8816392 0.8996840
## 3686 0.9156328 0.9512195 0.8932935 0.8845984
## 3687 0.8967552 0.8709579 0.8816392 0.8996840
## 3688 0.9156328 0.8709579 0.8816392 0.8845984
## 3689 0.8880126 0.8709579 0.8932935 0.8845984
## 3690 0.9075630 0.8709579 0.8816392 0.8845984
## 3691 0.9156328 0.9512195 0.8816392 0.8845984
## 3692 0.8657143 0.8709579 0.8932935 0.8845984
## 3693 0.9057377 0.8709579 0.8816392 0.8845984
## 3694 0.8880126 0.8709579 0.8816392 0.8845984
## 3695 0.9156328 0.9512195 0.8816392 0.8845984
## 3696 0.8657143 0.8709579 0.8932935 0.8845984
## 3697 0.8967552 0.8709579 0.8932935 0.8845984
## 3698 0.8657143 0.8709579 0.8932935 0.8845984
## 3699 0.8657143 0.8709579 0.8816392 0.8845984
## 3700 0.8657143 0.8709579 0.8932935 0.8845984
## 3701 0.8657143 0.8709579 0.8932935 0.8845984
## 3702 0.8880126 0.9512195 0.8932935 0.8845984
## 3703 0.8880126 0.8709579 0.8816392 0.8845984
## 3704 0.8657143 0.8709579 0.8816392 0.8996840
## 3705 0.9156328 0.8709579 0.8816392 0.8845984
## 3706 0.9075630 0.8709579 0.8816392 0.8845984
## 3707 0.8880126 0.8709579 0.8932935 0.8845984
## 3708 0.8657143 0.8709579 0.8816392 0.8845984
## 3709 0.8657143 0.9512195 0.8932935 0.8845984
## 3710 0.9057377 0.8709579 0.8932935 0.8845984
## 3711 0.8657143 0.8709579 0.8816392 0.8845984
## 3712 0.8880126 0.9512195 0.8932935 0.8996840
## 3713 0.8880126 0.9512195 0.8816392 0.8996840
## 3714 0.8657143 0.8709579 0.8932935 0.8845984
## 3715 0.8657143 0.8709579 0.8932935 0.8845984
## 3716 0.8348348 0.8709579 0.8932935 0.8845984
## 3717 0.9057377 0.9512195 0.8816392 0.8845984
## 3718 0.8880126 0.9512195 0.8816392 0.8845984
## 3719 0.8657143 0.9512195 0.8932935 0.8845984
## 3720 0.8880126 0.8709579 0.8932935 0.8996840
## 3721 0.8657143 0.8709579 0.8816392 0.8845984
## 3722 0.8967552 0.8709579 0.8816392 0.8845984
## 3723 0.8657143 0.8709579 0.8932935 0.8845984
## 3724 0.8880126 0.8709579 0.8932935 0.8845984
## 3725 0.9075630 0.9512195 0.8816392 0.8845984
## 3726 0.9156328 0.9512195 0.8816392 0.8845984
## 3727 0.8657143 0.8709579 0.8932935 0.8845984
## 3728 0.8348348 0.9512195 0.8816392 0.8845984
## 3729 0.8657143 0.8709579 0.8816392 0.8845984
## 3730 0.8657143 0.8709579 0.8816392 0.8845984
## 3731 0.8880126 0.8709579 0.8932935 0.8996840
## 3732 0.9156328 0.8709579 0.8932935 0.8845984
## 3733 0.8657143 0.8709579 0.8816392 0.8845984
## 3734 0.9075630 0.8709579 0.8932935 0.8845984
## 3735 0.8348348 0.8709579 0.9032258 0.9032258
## 3736 0.8657143 0.9512195 0.8816392 0.8845984
## 3737 0.8880126 0.8709579 0.8932935 0.8845984
## 3738 0.8967552 0.9512195 0.8932935 0.8996840
## 3739 0.8657143 0.9512195 0.8816392 0.8845984
## 3740 0.8657143 0.8709579 0.8816392 0.8845984
## 3741 0.8880126 0.8709579 0.8816392 0.8996840
## 3742 0.8967552 0.9512195 0.8816392 0.8996840
## 3743 0.8657143 0.8709579 0.9032258 0.9032258
## 3744 0.8657143 0.8709579 0.8932935 0.8845984
## 3745 0.8657143 0.8709579 0.8816392 0.8996840
## 3746 0.8657143 0.8709579 0.8932935 0.8996840
## 3747 0.8967552 0.8709579 0.8932935 0.8845984
## 3748 0.9075630 0.9512195 0.8816392 0.8996840
## 3749 0.8880126 0.8709579 0.8932935 0.8996840
## 3750 0.8880126 0.8709579 0.8816392 0.8845984
## 3751 0.8657143 0.8709579 0.8816392 0.8845984
## 3752 0.9156328 0.8709579 0.8816392 0.8845984
## 3753 0.8657143 0.9512195 0.8816392 0.8845984
## 3754 0.8657143 0.8709579 0.8932935 0.8845984
## 3755 0.8880126 0.9512195 0.8816392 0.8845984
## 3756 0.9075630 0.8709579 0.9032258 0.9032258
## 3757 0.9075630 0.8709579 0.8932935 0.8845984
## 3758 0.8348348 0.9512195 0.8932935 0.8845984
## 3759 0.8880126 0.8709579 0.8932935 0.8845984
## 3760 0.8880126 0.8709579 0.8932935 0.8996840
## 3761 0.8657143 0.8709579 0.8816392 0.8845984
## 3762 0.8657143 0.8709579 0.8816392 0.8845984
## 3763 0.9156328 0.8709579 0.8816392 0.8996840
## 3764 0.8967552 0.8709579 0.8816392 0.8845984
## 3765 0.8967552 0.8709579 0.8932935 0.8845984
## 3766 0.8880126 0.8709579 0.8816392 0.8845984
## 3767 0.9156328 0.8709579 0.8932935 0.8996840
## 3768 0.9075630 0.8709579 0.8932935 0.8845984
## 3769 0.8657143 0.8709579 0.8932935 0.8845984
## 3770 0.8880126 0.9512195 0.8816392 0.8996840
## 3771 0.8657143 0.9512195 0.8932935 0.8845984
## 3772 0.9075630 0.9512195 0.8816392 0.8845984
## 3773 0.8657143 0.8709579 0.8816392 0.8845984
## 3774 0.8657143 0.8709579 0.8932935 0.8996840
## 3775 0.8967552 0.9512195 0.8932935 0.8845984
## 3776 0.8348348 0.9512195 0.8932935 0.8845984
## 3777 0.9156328 0.8709579 0.8816392 0.8996840
## 3778 0.8880126 0.8709579 0.8932935 0.8845984
## 3779 0.8657143 0.8709579 0.8932935 0.8845984
## 3780 0.8657143 0.9512195 0.8816392 0.8845984
## 3781 0.9156328 0.9512195 0.8932935 0.8996840
## 3782 0.8657143 0.8709579 0.8816392 0.8845984
## 3783 0.9075630 0.8709579 0.8932935 0.8845984
## 3784 0.9156328 0.8709579 0.8816392 0.8845984
## 3785 0.9156328 0.8709579 0.8932935 0.8845984
## 3786 0.8967552 0.8709579 0.8816392 0.8845984
## 3787 0.8880126 0.9512195 0.8816392 0.8845984
## 3788 0.9156328 0.8709579 0.8816392 0.8845984
## 3789 0.8657143 0.8709579 0.8932935 0.8845984
## 3790 0.9075630 0.9512195 0.8816392 0.8845984
## 3791 0.8348348 0.8709579 0.8816392 0.8845984
## 3792 0.8657143 0.9512195 0.8932935 0.8845984
## 3793 0.8880126 0.8709579 0.8932935 0.8845984
## 3794 0.8880126 0.8709579 0.8816392 0.8845984
## 3795 0.9075630 0.8709579 0.8816392 0.8845984
## 3796 0.9075630 0.9512195 0.8932935 0.8845984
## 3797 0.8880126 0.8709579 0.9032258 0.9032258
## 3798 0.8967552 0.8709579 0.8816392 0.8996840
## 3799 0.9057377 0.8709579 0.8816392 0.8996840
## 3800 0.8657143 0.8709579 0.8816392 0.8996840
## 3801 0.8657143 0.8709579 0.8932935 0.8845984
## 3802 0.8880126 0.8709579 0.8816392 0.8845984
## 3803 0.9075630 0.9512195 0.8932935 0.8845984
## 3804 0.9057377 0.8709579 0.8816392 0.8845984
## 3805 0.8880126 0.9512195 0.8816392 0.8845984
## 3806 0.9075630 0.8709579 0.8932935 0.8845984
## 3807 0.8880126 0.9512195 0.8932935 0.8845984
## 3808 0.8657143 0.8709579 0.9032258 0.9032258
## 3809 0.9057377 0.8709579 0.8816392 0.8845984
## 3810 0.8880126 0.9512195 0.8932935 0.8845984
## 3811 0.8967552 0.8709579 0.8932935 0.8845984
## 3812 0.8657143 0.8709579 0.8816392 0.8996840
## 3813 0.8657143 0.8709579 0.8932935 0.8845984
## 3814 0.8880126 0.8709579 0.8932935 0.8845984
## 3815 0.9156328 0.8709579 0.8816392 0.8996840
## 3816 0.9156328 0.8709579 0.8816392 0.8845984
## 3817 0.9156328 0.8709579 0.8932935 0.8845984
## 3818 0.9057377 0.8709579 0.8932935 0.8845984
## 3819 0.8657143 0.8709579 0.8932935 0.8845984
## 3820 0.8967552 0.8709579 0.8816392 0.8845984
## 3821 0.9057377 0.8709579 0.8816392 0.8996840
## 3822 0.8657143 0.8709579 0.8932935 0.8996840
## 3823 0.9075630 0.8709579 0.8816392 0.8845984
## 3824 0.8967552 0.8709579 0.8816392 0.8845984
## 3825 0.9156328 0.8709579 0.8932935 0.8845984
## 3826 0.8657143 0.9512195 0.8932935 0.8845984
## 3827 0.8880126 0.8709579 0.8816392 0.8845984
## 3828 0.8657143 0.9512195 0.8816392 0.8845984
## 3829 0.8967552 0.8709579 0.8816392 0.8845984
## 3830 0.8657143 0.8709579 0.8932935 0.8996840
## 3831 0.8657143 0.8709579 0.8816392 0.8845984
## 3832 0.8880126 0.9512195 0.8816392 0.8996840
## 3833 0.8657143 0.8709579 0.8932935 0.8845984
## 3834 0.9156328 0.8709579 0.8816392 0.8845984
## 3835 0.9156328 0.9512195 0.8932935 0.8996840
## 3836 0.8657143 0.8709579 0.8932935 0.8845984
## 3837 0.8657143 0.8709579 0.8816392 0.8845984
## 3838 0.9057377 0.8709579 0.8816392 0.8845984
## 3839 0.8657143 0.8709579 0.8816392 0.8845984
## 3840 0.8967552 0.8709579 0.8932935 0.8996840
## 3841 0.8657143 0.8709579 0.8816392 0.8996840
## 3842 0.8657143 0.8709579 0.8932935 0.8845984
## 3843 0.8967552 0.8709579 0.8932935 0.8996840
## 3844 0.8657143 0.8709579 0.8816392 0.8845984
## 3845 0.9156328 0.8709579 0.8932935 0.8845984
## 3846 0.9156328 0.8709579 0.8932935 0.8845984
## 3847 0.8880126 0.8709579 0.8816392 0.8845984
## 3848 0.8657143 0.8709579 0.8816392 0.8845984
## 3849 0.9156328 0.8709579 0.8816392 0.8845984
## 3850 0.9156328 0.9512195 0.8816392 0.8845984
## 3851 0.8657143 0.8709579 0.8932935 0.8845984
## 3852 0.9057377 0.8709579 0.8932935 0.8845984
## 3853 0.8967552 0.8709579 0.8816392 0.8996840
## 3854 0.9075630 0.8709579 0.8932935 0.8845984
## 3855 0.9156328 0.8709579 0.8932935 0.8845984
## 3856 0.8657143 0.8709579 0.8816392 0.8845984
## 3857 0.8348348 0.9512195 0.8932935 0.8845984
## 3858 0.9057377 0.8709579 0.8816392 0.8845984
## 3859 0.8657143 0.8709579 0.8816392 0.8845984
## 3860 0.8967552 0.8709579 0.8816392 0.8845984
## 3861 0.9075630 0.8709579 0.8932935 0.8845984
## 3862 0.9156328 0.8709579 0.8816392 0.8996840
## 3863 0.8880126 0.9512195 0.8932935 0.8845984
## 3864 0.8880126 0.8709579 0.8816392 0.8845984
## 3865 0.8657143 0.8709579 0.9032258 0.9032258
## 3866 0.8348348 0.9512195 0.8816392 0.8845984
## 3867 0.8657143 0.8709579 0.8816392 0.8996840
## 3868 0.9075630 0.8709579 0.8932935 0.8845984
## 3869 0.8657143 0.8709579 0.8932935 0.8845984
## 3870 0.8657143 0.9512195 0.8932935 0.8996840
## 3871 0.9075630 0.8709579 0.8816392 0.8845984
## 3872 0.8657143 0.8709579 0.8816392 0.8845984
## 3873 0.9156328 0.8709579 0.8932935 0.8845984
## 3874 0.8880126 0.9512195 0.8816392 0.8845984
## 3875 0.8880126 0.8709579 0.8816392 0.8845984
## 3876 0.8880126 0.8709579 0.8932935 0.8845984
## 3877 0.8880126 0.8709579 0.8932935 0.8845984
## 3878 0.8880126 0.9512195 0.8816392 0.8845984
## 3879 0.9156328 0.9512195 0.8932935 0.8845984
## 3880 0.8880126 0.8709579 0.8932935 0.8845984
## 3881 0.9075630 0.8709579 0.8932935 0.8996840
## 3882 0.8880126 0.8709579 0.8816392 0.8845984
## 3883 0.8880126 0.8709579 0.8932935 0.8845984
## 3884 0.8657143 0.8709579 0.8816392 0.8845984
## 3885 0.8348348 0.9512195 0.8816392 0.8996840
## 3886 0.8657143 0.8709579 0.8816392 0.8845984
## 3887 0.8657143 0.8709579 0.8932935 0.8845984
## 3888 0.8657143 0.9512195 0.8932935 0.8996840
## 3889 0.8967552 0.9512195 0.8816392 0.8845984
## 3890 0.8348348 0.9512195 0.8816392 0.8845984
## 3891 0.8657143 0.8709579 0.8932935 0.8845984
## 3892 0.9057377 0.8709579 0.8816392 0.8845984
## 3893 0.8880126 0.8709579 0.8932935 0.8845984
## 3894 0.9075630 0.9512195 0.8932935 0.8845984
## 3895 0.8880126 0.8709579 0.8816392 0.8845984
## 3896 0.8657143 0.8709579 0.8816392 0.8845984
## 3897 0.8657143 0.8709579 0.8816392 0.8845984
## 3898 0.8880126 0.8709579 0.8932935 0.8845984
## 3899 0.9057377 0.8709579 0.8816392 0.8845984
## 3900 0.8967552 0.8709579 0.8816392 0.8845984
## 3901 0.8880126 0.8709579 0.8816392 0.8845984
## 3902 0.8967552 0.8709579 0.8932935 0.8845984
## 3903 0.8657143 0.8709579 0.8932935 0.8845984
## 3904 0.9156328 0.8709579 0.8816392 0.8845984
## 3905 0.8880126 0.9512195 0.8816392 0.8845984
## 3906 0.8880126 0.8709579 0.8816392 0.8845984
## 3907 0.8880126 0.8709579 0.8932935 0.8845984
## 3908 0.8967552 0.8709579 0.8816392 0.8996840
## 3909 0.9057377 0.8709579 0.8816392 0.8845984
## 3910 0.8657143 0.8709579 0.8932935 0.8845984
## 3911 0.9156328 0.9512195 0.8932935 0.8845984
## 3912 0.8657143 0.8709579 0.8932935 0.8845984
## 3913 0.9156328 0.8709579 0.8932935 0.8845984
## 3914 0.9057377 0.8709579 0.8816392 0.8845984
## 3915 0.8657143 0.8709579 0.8816392 0.8845984
## 3916 0.8657143 0.8709579 0.8816392 0.8845984
## 3917 0.9075630 0.8709579 0.8932935 0.8845984
## 3918 0.9075630 0.8709579 0.8932935 0.8845984
## 3919 0.8657143 0.8709579 0.8816392 0.8845984
## 3920 0.9156328 0.8709579 0.8816392 0.8845984
## 3921 0.8657143 0.8709579 0.8816392 0.8996840
## 3922 0.9075630 0.8709579 0.8816392 0.8845984
## 3923 0.9075630 0.8709579 0.8816392 0.8845984
## 3924 0.8348348 0.9512195 0.8932935 0.8845984
## 3925 0.8880126 0.8709579 0.8816392 0.8996840
## 3926 0.8657143 0.8709579 0.8932935 0.8845984
## 3927 0.8657143 0.8709579 0.8932935 0.8845984
## 3928 0.8880126 0.8709579 0.8816392 0.8845984
## 3929 0.8967552 0.8709579 0.8816392 0.8996840
## 3930 0.9156328 0.9512195 0.8932935 0.8845984
## 3931 0.9057377 0.8709579 0.8816392 0.8845984
## 3932 0.8657143 0.8709579 0.8816392 0.8845984
## 3933 0.8657143 0.8709579 0.8932935 0.8845984
## 3934 0.8880126 0.8709579 0.8932935 0.8845984
## 3935 0.8657143 0.8709579 0.8816392 0.8845984
## 3936 0.9156328 0.8709579 0.8816392 0.8845984
## 3937 0.8657143 0.8709579 0.8816392 0.8845984
## 3938 0.8657143 0.8709579 0.8932935 0.8996840
## 3939 0.8657143 0.8709579 0.8932935 0.8845984
## 3940 0.9156328 0.9512195 0.8816392 0.8996840
## 3941 0.8657143 0.8709579 0.8816392 0.8845984
## 3942 0.8657143 0.8709579 0.8932935 0.8845984
## 3943 0.9075630 0.8709579 0.8816392 0.8845984
## 3944 0.8657143 0.8709579 0.8932935 0.8845984
## 3945 0.8880126 0.8709579 0.8932935 0.8845984
## 3946 0.8657143 0.8709579 0.8816392 0.8845984
## 3947 0.8657143 0.8709579 0.8816392 0.8845984
## 3948 0.9156328 0.8709579 0.8816392 0.8996840
## 3949 0.8967552 0.8709579 0.8932935 0.8845984
## 3950 0.8880126 0.8709579 0.8932935 0.8996840
## 3951 0.8880126 0.9512195 0.8932935 0.8845984
## 3952 0.9156328 0.9512195 0.8932935 0.8845984
## 3953 0.8348348 0.9512195 0.8816392 0.8845984
## 3954 0.8880126 0.8709579 0.9032258 0.9032258
## 3955 0.8880126 0.8709579 0.8816392 0.8845984
## 3956 0.8657143 0.8709579 0.8932935 0.8996840
## 3957 0.8967552 0.8709579 0.8816392 0.8845984
## 3958 0.8880126 0.8709579 0.8932935 0.8845984
## 3959 0.8657143 0.9512195 0.8932935 0.8845984
## 3960 0.8880126 0.8709579 0.9032258 0.9032258
## 3961 0.8657143 0.8709579 0.8816392 0.8845984
## 3962 0.9057377 0.8709579 0.8932935 0.8845984
## 3963 0.8657143 0.8709579 0.8932935 0.8996840
## 3964 0.8657143 0.8709579 0.8932935 0.8845984
## 3965 0.9156328 0.8709579 0.8816392 0.8845984
## 3966 0.9156328 0.8709579 0.8816392 0.8845984
## 3967 0.9057377 0.8709579 0.8932935 0.8996840
## 3968 0.9075630 0.8709579 0.8932935 0.8845984
## 3969 0.9075630 0.8709579 0.8932935 0.8845984
## 3970 0.8657143 0.8709579 0.8932935 0.8845984
## 3971 0.8657143 0.8709579 0.8816392 0.8845984
## 3972 0.8657143 0.8709579 0.8932935 0.8845984
## 3973 0.8880126 0.8709579 0.8932935 0.8845984
## 3974 0.8880126 0.8709579 0.8932935 0.8845984
## 3975 0.9156328 0.8709579 0.8932935 0.8845984
## 3976 0.8880126 0.8709579 0.9032258 0.9032258
## 3977 0.8880126 0.9512195 0.8816392 0.8845984
## 3978 0.8657143 0.8709579 0.8932935 0.8845984
## 3979 0.9156328 0.8709579 0.8932935 0.8845984
## 3980 0.8657143 0.8709579 0.8816392 0.8845984
## 3981 0.8880126 0.8709579 0.8932935 0.8845984
## 3982 0.8657143 0.9512195 0.8932935 0.8845984
## 3983 0.8657143 0.9512195 0.8816392 0.8845984
## 3984 0.8657143 0.8709579 0.8932935 0.8845984
## 3985 0.9075630 0.8709579 0.8932935 0.8845984
## 3986 0.8880126 0.8709579 0.8816392 0.8845984
## 3987 0.8880126 0.8709579 0.8932935 0.8845984
## 3988 0.8657143 0.9512195 0.8932935 0.8845984
## 3989 0.8880126 0.8709579 0.8932935 0.8845984
## 3990 0.8967552 0.8709579 0.8932935 0.8845984
## 3991 0.9156328 0.8709579 0.8816392 0.8996840
## 3992 0.8657143 0.9512195 0.8816392 0.8845984
## 3993 0.8880126 0.9512195 0.8932935 0.8996840
## 3994 0.8967552 0.8709579 0.8816392 0.8845984
## 3995 0.8880126 0.8709579 0.8816392 0.8845984
## 3996 0.9057377 0.8709579 0.8816392 0.8845984
## 3997 0.8880126 0.9512195 0.8816392 0.8845984
## 3998 0.8657143 0.9512195 0.8932935 0.8996840
## 3999 0.8657143 0.8709579 0.8932935 0.8845984
## 4000 0.8657143 0.8709579 0.8932935 0.8845984
## 4001 0.8657143 0.8709579 0.8932935 0.8996840
## 4002 0.8880126 0.9512195 0.8816392 0.8996840
## 4003 0.8880126 0.9512195 0.8816392 0.8996840
## 4004 0.8657143 0.8709579 0.8932935 0.8845984
## 4005 0.8967552 0.8709579 0.8932935 0.8845984
## 4006 0.9075630 0.8709579 0.8816392 0.8845984
## 4007 0.9075630 0.9512195 0.8816392 0.8845984
## 4008 0.8348348 0.8709579 0.8932935 0.8996840
## 4009 0.8880126 0.8709579 0.8816392 0.8845984
## 4010 0.9057377 0.8709579 0.8816392 0.8845984
## 4011 0.8657143 0.8709579 0.8932935 0.8845984
## 4012 0.9156328 0.8709579 0.8816392 0.8996840
## 4013 0.8880126 0.8709579 0.8816392 0.8845984
## 4014 0.9156328 0.8709579 0.8816392 0.8845984
## 4015 0.9075630 0.8709579 0.8932935 0.8845984
## 4016 0.9057377 0.8709579 0.8816392 0.8845984
## 4017 0.9075630 0.8709579 0.8932935 0.8845984
## 4018 0.9075630 0.8709579 0.8816392 0.8845984
## 4019 0.9156328 0.8709579 0.8816392 0.8845984
## 4020 0.9075630 0.8709579 0.8932935 0.8845984
## 4021 0.9156328 0.8709579 0.8816392 0.8845984
## 4022 0.8967552 0.8709579 0.8932935 0.8845984
## 4023 0.8657143 0.8709579 0.8816392 0.8845984
## 4024 0.9075630 0.8709579 0.8816392 0.8845984
## 4025 0.9156328 0.8709579 0.8816392 0.8845984
## 4026 0.8657143 0.8709579 0.8816392 0.8845984
## 4027 0.8967552 0.8709579 0.8816392 0.8996840
## 4028 0.8880126 0.8709579 0.8932935 0.8845984
## 4029 0.8880126 0.8709579 0.8932935 0.8845984
## 4030 0.9075630 0.8709579 0.8816392 0.8996840
## 4031 0.8657143 0.8709579 0.8932935 0.8996840
## 4032 0.9156328 0.8709579 0.8816392 0.8845984
## 4033 0.8657143 0.8709579 0.8816392 0.8845984
## 4034 0.8657143 0.8709579 0.8816392 0.8996840
## 4035 0.8657143 0.8709579 0.8816392 0.8845984
## 4036 0.8657143 0.9512195 0.8932935 0.8845984
## 4037 0.8657143 0.8709579 0.8816392 0.8845984
## 4038 0.8657143 0.8709579 0.8932935 0.8845984
## 4039 0.8967552 0.8709579 0.8816392 0.8845984
## 4040 0.9075630 0.8709579 0.8816392 0.8845984
## 4041 0.8657143 0.8709579 0.8816392 0.8845984
## 4042 0.8348348 0.8709579 0.8816392 0.8845984
## 4043 0.8967552 0.8709579 0.8816392 0.8845984
## 4044 0.9075630 0.8709579 0.8816392 0.8845984
## 4045 0.9156328 0.8709579 0.8816392 0.8845984
## 4046 0.9156328 0.8709579 0.8932935 0.8845984
## 4047 0.9057377 0.9512195 0.8932935 0.8845984
## 4048 0.9156328 0.8709579 0.8816392 0.8845984
## 4049 0.8657143 0.8709579 0.8932935 0.8845984
## 4050 0.8657143 0.8709579 0.8816392 0.8845984
## 4051 0.8657143 0.8709579 0.8816392 0.8996840
## 4052 0.8657143 0.8709579 0.8816392 0.8845984
## 4053 0.8657143 0.9512195 0.8816392 0.8845984
## 4054 0.8967552 0.9512195 0.8816392 0.8845984
## 4055 0.9057377 0.9512195 0.8816392 0.8845984
## 4056 0.8348348 0.8709579 0.8816392 0.8845984
## 4057 0.8657143 0.8709579 0.8816392 0.8845984
## 4058 0.8967552 0.8709579 0.8816392 0.8845984
## 4059 0.9075630 0.9512195 0.8816392 0.8845984
## 4060 0.8657143 0.8709579 0.8932935 0.8996840
## 4061 0.9075630 0.8709579 0.8932935 0.8845984
## 4062 0.9075630 0.8709579 0.8932935 0.8845984
## 4063 0.8880126 0.8709579 0.8932935 0.8845984
## 4064 0.8657143 0.8709579 0.8932935 0.8845984
## 4065 0.8880126 0.8709579 0.8816392 0.8845984
## 4066 0.9156328 0.8709579 0.8816392 0.8845984
## 4067 0.8880126 0.8709579 0.8816392 0.8845984
## 4068 0.9156328 0.8709579 0.8932935 0.8845984
## 4069 0.8967552 0.8709579 0.8816392 0.8996840
## 4070 0.8880126 0.8709579 0.8932935 0.8845984
## 4071 0.9156328 0.8709579 0.8816392 0.8845984
## 4072 0.8880126 0.8709579 0.8816392 0.8996840
## 4073 0.8348348 0.8709579 0.8816392 0.8845984
## 4074 0.8967552 0.8709579 0.8816392 0.8845984
## 4075 0.9075630 0.8709579 0.8932935 0.8996840
## 4076 0.9156328 0.8709579 0.8932935 0.8845984
## 4077 0.8657143 0.8709579 0.8816392 0.8845984
## 4078 0.9156328 0.9512195 0.8816392 0.8996840
## 4079 0.8657143 0.8709579 0.8816392 0.8996840
## 4080 0.8657143 0.8709579 0.8816392 0.8845984
## 4081 0.8657143 0.8709579 0.8816392 0.8845984
## 4082 0.8657143 0.8709579 0.8932935 0.8845984
## 4083 0.8657143 0.8709579 0.8932935 0.8845984
## 4084 0.8880126 0.9512195 0.8816392 0.8996840
## 4085 0.8967552 0.8709579 0.8816392 0.8845984
## 4086 0.8880126 0.8709579 0.8816392 0.8845984
## 4087 0.8657143 0.8709579 0.8816392 0.8845984
## 4088 0.8657143 0.9512195 0.8816392 0.8845984
## 4089 0.9075630 0.8709579 0.8932935 0.8996840
## 4090 0.8880126 0.8709579 0.8816392 0.8845984
## 4091 0.9075630 0.9512195 0.8932935 0.8845984
## 4092 0.9075630 0.8709579 0.8932935 0.8845984
## 4093 0.8967552 0.8709579 0.8816392 0.8996840
## 4094 0.8880126 0.8709579 0.8816392 0.8845984
## 4095 0.9075630 0.8709579 0.8932935 0.8845984
## 4096 0.8657143 0.8709579 0.8816392 0.8996840
## 4097 0.8657143 0.8709579 0.8816392 0.8845984
## 4098 0.8348348 0.8709579 0.8932935 0.8845984
## 4099 0.9075630 0.8709579 0.8816392 0.8845984
## 4100 0.8880126 0.8709579 0.8816392 0.8845984
## 4101 0.8657143 0.8709579 0.8816392 0.8845984
## 4102 0.9156328 0.8709579 0.8816392 0.8845984
## 4103 0.8657143 0.8709579 0.8932935 0.8845984
## 4104 0.9075630 0.8709579 0.8816392 0.8996840
## 4105 0.8348348 0.9512195 0.8932935 0.8845984
## 4106 0.8880126 0.8709579 0.8932935 0.8996840
## 4107 0.8880126 0.8709579 0.9032258 0.9032258
## 4108 0.9156328 0.8709579 0.8932935 0.8845984
## 4109 0.9156328 0.8709579 0.8816392 0.8996840
## 4110 0.8880126 0.8709579 0.8932935 0.8845984
## 4111 0.9075630 0.9512195 0.8932935 0.8845984
## 4112 0.8657143 0.8709579 0.8932935 0.8845984
## 4113 0.8657143 0.8709579 0.8816392 0.8845984
## 4114 0.8657143 0.8709579 0.8932935 0.8845984
## 4115 0.8657143 0.8709579 0.8932935 0.8845984
## 4116 0.9057377 0.8709579 0.8816392 0.8845984
## 4117 0.8880126 0.8709579 0.8932935 0.8996840
## 4118 0.9156328 0.9512195 0.8932935 0.8845984
## 4119 0.9075630 0.8709579 0.8932935 0.8845984
## 4120 0.8880126 0.8709579 0.8816392 0.8845984
## 4121 0.8657143 0.8709579 0.8932935 0.8845984
## 4122 0.8657143 0.8709579 0.8932935 0.8845984
## 4123 0.9075630 0.8709579 0.8932935 0.8845984
## 4124 0.8880126 0.8709579 0.8932935 0.8845984
## 4125 0.8967552 0.8709579 0.8932935 0.8845984
## 4126 0.8348348 0.8709579 0.8816392 0.8845984
## 4127 0.8880126 0.9512195 0.8816392 0.8845984
## 4128 0.9156328 0.8709579 0.8816392 0.8845984
## 4129 0.8880126 0.8709579 0.8816392 0.8996840
## 4130 0.8348348 0.8709579 0.8932935 0.8845984
## 4131 0.8657143 0.8709579 0.8932935 0.8845984
## 4132 0.8967552 0.8709579 0.8816392 0.8845984
## 4133 0.8657143 0.8709579 0.8932935 0.8845984
## 4134 0.8657143 0.8709579 0.8816392 0.8845984
## 4135 0.8880126 0.8709579 0.8932935 0.8845984
## 4136 0.8657143 0.8709579 0.8932935 0.8845984
## 4137 0.9075630 0.8709579 0.8816392 0.8845984
## 4138 0.8657143 0.8709579 0.8816392 0.8996840
## 4139 0.9057377 0.8709579 0.8932935 0.8845984
## 4140 0.8880126 0.8709579 0.8932935 0.8845984
## 4141 0.9156328 0.8709579 0.9032258 0.9032258
## 4142 0.9075630 0.9512195 0.8816392 0.8845984
## 4143 0.8657143 0.8709579 0.8816392 0.8845984
## 4144 0.8967552 0.9512195 0.8816392 0.8845984
## 4145 0.9057377 0.9512195 0.8816392 0.8845984
## 4146 0.8967552 0.8709579 0.8816392 0.8845984
## 4147 0.8880126 0.8709579 0.8816392 0.8845984
## 4148 0.8880126 0.9512195 0.8816392 0.8845984
## 4149 0.8880126 0.8709579 0.8816392 0.8845984
## 4150 0.9075630 0.8709579 0.8932935 0.8845984
## 4151 0.8880126 0.8709579 0.8816392 0.8845984
## 4152 0.8880126 0.8709579 0.8816392 0.8845984
## 4153 0.8967552 0.8709579 0.8816392 0.8845984
## 4154 0.8657143 0.8709579 0.8932935 0.8845984
## 4155 0.8880126 0.8709579 0.8816392 0.8845984
## 4156 0.8657143 0.8709579 0.8932935 0.8845984
## 4157 0.8880126 0.9512195 0.8816392 0.8996840
## 4158 0.9075630 0.8709579 0.8816392 0.8845984
## 4159 0.8657143 0.8709579 0.8932935 0.8845984
## 4160 0.9156328 0.8709579 0.8932935 0.8845984
## 4161 0.9057377 0.9512195 0.8932935 0.8845984
## 4162 0.8657143 0.8709579 0.8816392 0.8845984
## 4163 0.8657143 0.8709579 0.8932935 0.8845984
## 4164 0.8657143 0.9512195 0.8816392 0.8845984
## 4165 0.9057377 0.8709579 0.8932935 0.8845984
## 4166 0.8880126 0.8709579 0.8816392 0.8845984
## 4167 0.8657143 0.8709579 0.8932935 0.8845984
## 4168 0.9156328 0.8709579 0.8932935 0.8845984
## 4169 0.8880126 0.8709579 0.8932935 0.8845984
## 4170 0.8880126 0.8709579 0.8932935 0.8996840
## 4171 0.8657143 0.8709579 0.8816392 0.8996840
## 4172 0.8880126 0.8709579 0.9032258 0.9032258
## 4173 0.8657143 0.8709579 0.8816392 0.8845984
## 4174 0.8657143 0.8709579 0.8816392 0.8845984
## 4175 0.8880126 0.8709579 0.8932935 0.8996840
## 4176 0.9156328 0.9512195 0.8816392 0.8996840
## 4177 0.9156328 0.8709579 0.8816392 0.8845984
## 4178 0.8657143 0.8709579 0.8932935 0.8845984
## 4179 0.8348348 0.9512195 0.8816392 0.8845984
## 4180 0.9156328 0.8709579 0.8932935 0.8845984
## 4181 0.8967552 0.8709579 0.8816392 0.8996840
## 4182 0.8657143 0.8709579 0.8816392 0.8845984
## 4183 0.8880126 0.8709579 0.8816392 0.8996840
## 4184 0.9075630 0.9512195 0.8816392 0.8845984
## 4185 0.8657143 0.8709579 0.8816392 0.8996840
## 4186 0.9057377 0.8709579 0.8816392 0.8845984
## 4187 0.9075630 0.8709579 0.8816392 0.8845984
## 4188 0.9057377 0.8709579 0.8932935 0.8996840
## 4189 0.8967552 0.8709579 0.8816392 0.8845984
## 4190 0.8657143 0.8709579 0.8932935 0.8845984
## 4191 0.8880126 0.8709579 0.8932935 0.8845984
## 4192 0.9075630 0.8709579 0.8816392 0.8845984
## 4193 0.8967552 0.8709579 0.9032258 0.9032258
## 4194 0.8657143 0.8709579 0.8932935 0.8845984
## 4195 0.9156328 0.8709579 0.8816392 0.8845984
## 4196 0.9075630 0.8709579 0.8816392 0.8845984
## 4197 0.8880126 0.8709579 0.8816392 0.8845984
## 4198 0.9156328 0.9512195 0.8816392 0.8845984
## 4199 0.8657143 0.8709579 0.8932935 0.8996840
## 4200 0.8880126 0.8709579 0.8932935 0.8845984
## 4201 0.8657143 0.8709579 0.8816392 0.8845984
## 4202 0.8348348 0.8709579 0.8816392 0.8845984
## 4203 0.8657143 0.8709579 0.8816392 0.8845984
## 4204 0.9075630 0.8709579 0.8816392 0.8845984
## 4205 0.8967552 0.9512195 0.8816392 0.8845984
## 4206 0.8657143 0.8709579 0.8932935 0.8845984
## 4207 0.8657143 0.8709579 0.8932935 0.8996840
## 4208 0.8657143 0.9512195 0.8816392 0.8845984
## 4209 0.8657143 0.8709579 0.8932935 0.8845984
## 4210 0.9075630 0.8709579 0.8816392 0.8845984
## 4211 0.8657143 0.9512195 0.8816392 0.8996840
## 4212 0.9156328 0.8709579 0.8816392 0.8845984
## 4213 0.8657143 0.8709579 0.8816392 0.8996840
## 4214 0.9057377 0.8709579 0.8816392 0.8845984
## 4215 0.8657143 0.8709579 0.8932935 0.8845984
## 4216 0.9156328 0.8709579 0.8816392 0.8845984
## 4217 0.8967552 0.9512195 0.8816392 0.8845984
## 4218 0.9057377 0.8709579 0.8932935 0.8845984
## 4219 0.8880126 0.9512195 0.8816392 0.8845984
## 4220 0.8967552 0.8709579 0.8932935 0.8845984
## 4221 0.8657143 0.8709579 0.8932935 0.8845984
## 4222 0.8880126 0.8709579 0.8816392 0.8845984
## 4223 0.8657143 0.8709579 0.8932935 0.8996840
## 4224 0.8657143 0.8709579 0.8816392 0.8845984
## 4225 0.8967552 0.8709579 0.8816392 0.8845984
## 4226 0.9075630 0.9512195 0.8932935 0.8845984
## 4227 0.9075630 0.8709579 0.8816392 0.8845984
## 4228 0.8880126 0.8709579 0.8932935 0.8845984
## 4229 0.9156328 0.8709579 0.8816392 0.8845984
## 4230 0.8657143 0.8709579 0.8816392 0.8845984
## 4231 0.9156328 0.8709579 0.8816392 0.8845984
## 4232 0.8348348 0.8709579 0.8932935 0.8845984
## 4233 0.8967552 0.8709579 0.8816392 0.8845984
## 4234 0.9075630 0.9512195 0.8932935 0.8845984
## 4235 0.9075630 0.8709579 0.8816392 0.8845984
## 4236 0.8657143 0.8709579 0.8816392 0.8845984
## 4237 0.8657143 0.8709579 0.8816392 0.8845984
## 4238 0.8657143 0.8709579 0.8816392 0.8845984
## 4239 0.9057377 0.8709579 0.8816392 0.8845984
## 4240 0.8880126 0.8709579 0.8816392 0.8845984
## 4241 0.9075630 0.8709579 0.8816392 0.8845984
## 4242 0.9075630 0.9512195 0.8932935 0.8845984
## 4243 0.9057377 0.8709579 0.8816392 0.8845984
## 4244 0.8880126 0.8709579 0.8816392 0.8845984
## 4245 0.8348348 0.8709579 0.8932935 0.8996840
## 4246 0.8657143 0.8709579 0.8932935 0.8845984
## 4247 0.8880126 0.8709579 0.8932935 0.8845984
## 4248 0.8657143 0.8709579 0.8932935 0.8845984
## 4249 0.8880126 0.8709579 0.8932935 0.8845984
## 4250 0.8657143 0.9512195 0.8816392 0.8845984
## 4251 0.8967552 0.8709579 0.8932935 0.8845984
## 4252 0.8967552 0.8709579 0.8816392 0.8996840
## 4253 0.8657143 0.8709579 0.8932935 0.8845984
## 4254 0.8967552 0.8709579 0.8932935 0.8845984
## 4255 0.8967552 0.9512195 0.8816392 0.8845984
## 4256 0.8657143 0.8709579 0.8816392 0.8996840
## 4257 0.8880126 0.8709579 0.8816392 0.8845984
## 4258 0.9075630 0.8709579 0.8816392 0.8845984
## 4259 0.8880126 0.8709579 0.8816392 0.8845984
## 4260 0.8880126 0.9512195 0.8932935 0.8845984
## 4261 0.8348348 0.8709579 0.8816392 0.8845984
## 4262 0.9075630 0.9512195 0.8816392 0.8845984
## 4263 0.8348348 0.9512195 0.8932935 0.8845984
## 4264 0.8967552 0.8709579 0.9032258 0.9032258
## 4265 0.9156328 0.9512195 0.8932935 0.8845984
## 4266 0.8967552 0.9512195 0.8816392 0.8845984
## 4267 0.8657143 0.8709579 0.8816392 0.8845984
## 4268 0.8967552 0.8709579 0.8932935 0.8996840
## 4269 0.8348348 0.8709579 0.8816392 0.8845984
## 4270 0.8348348 0.8709579 0.8932935 0.8845984
## 4271 0.8880126 0.8709579 0.8932935 0.8845984
## 4272 0.8967552 0.8709579 0.8816392 0.8845984
## 4273 0.8967552 0.8709579 0.8816392 0.8845984
## 4274 0.8880126 0.8709579 0.8932935 0.8996840
## 4275 0.8967552 0.8709579 0.8816392 0.8845984
## 4276 0.8657143 0.8709579 0.8816392 0.8845984
## 4277 0.8657143 0.8709579 0.8932935 0.8845984
## 4278 0.8657143 0.8709579 0.8816392 0.8996840
## 4279 0.8657143 0.8709579 0.8932935 0.8845984
## 4280 0.9156328 0.8709579 0.8932935 0.8996840
## 4281 0.8880126 0.8709579 0.8932935 0.8845984
## 4282 0.8880126 0.8709579 0.8932935 0.8845984
## 4283 0.8657143 0.8709579 0.8816392 0.8845984
## 4284 0.8657143 0.8709579 0.8816392 0.8996840
## 4285 0.9156328 0.8709579 0.8932935 0.8845984
## 4286 0.8967552 0.8709579 0.8816392 0.8845984
## 4287 0.9057377 0.9512195 0.8932935 0.8996840
## 4288 0.9075630 0.9512195 0.8816392 0.8845984
## 4289 0.8657143 0.8709579 0.8816392 0.8845984
## 4290 0.8657143 0.8709579 0.8816392 0.8845984
## 4291 0.9075630 0.9512195 0.8932935 0.8845984
## 4292 0.9075630 0.8709579 0.8932935 0.8845984
## 4293 0.9156328 0.9512195 0.8932935 0.8845984
## 4294 0.8967552 0.9512195 0.8932935 0.8996840
## 4295 0.8657143 0.8709579 0.8816392 0.8845984
## 4296 0.8657143 0.8709579 0.8932935 0.8845984
## 4297 0.9156328 0.8709579 0.8816392 0.8845984
## 4298 0.8967552 0.8709579 0.8932935 0.8845984
## 4299 0.8657143 0.8709579 0.8932935 0.8845984
## 4300 0.8348348 0.8709579 0.8816392 0.8845984
## 4301 0.8880126 0.8709579 0.9032258 0.9032258
## 4302 0.8880126 0.8709579 0.8932935 0.8845984
## 4303 0.8348348 0.8709579 0.8816392 0.8845984
## 4304 0.9156328 0.8709579 0.8816392 0.8845984
## 4305 0.8880126 0.8709579 0.8932935 0.8996840
## 4306 0.8657143 0.8709579 0.8816392 0.8996840
## 4307 0.8967552 0.8709579 0.8932935 0.8845984
## 4308 0.8657143 0.8709579 0.9032258 0.9032258
## 4309 0.8657143 0.8709579 0.8932935 0.8845984
## 4310 0.8657143 0.8709579 0.8932935 0.8996840
## 4311 0.8657143 0.8709579 0.8816392 0.8845984
## 4312 0.8967552 0.8709579 0.8932935 0.8845984
## 4313 0.8657143 0.8709579 0.8932935 0.8845984
## 4314 0.9156328 0.8709579 0.8932935 0.8845984
## 4315 0.9075630 0.8709579 0.8932935 0.8845984
## 4316 0.8657143 0.8709579 0.8816392 0.8845984
## 4317 0.8880126 0.8709579 0.8932935 0.8845984
## 4318 0.8348348 0.8709579 0.8816392 0.8996840
## 4319 0.8657143 0.8709579 0.8816392 0.8845984
## 4320 0.9075630 0.8709579 0.8932935 0.8845984
## 4321 0.9156328 0.8709579 0.8816392 0.8845984
## 4322 0.8657143 0.8709579 0.8932935 0.8845984
## 4323 0.8657143 0.8709579 0.8932935 0.8845984
## 4324 0.8657143 0.8709579 0.8816392 0.8845984
## 4325 0.8657143 0.8709579 0.8932935 0.8845984
## 4326 0.9156328 0.9512195 0.8816392 0.8845984
## 4327 0.9075630 0.8709579 0.8932935 0.8845984
## 4328 0.8880126 0.8709579 0.9032258 0.9032258
## 4329 0.9075630 0.8709579 0.8816392 0.8996840
## 4330 0.8657143 0.8709579 0.8816392 0.8845984
## 4331 0.8880126 0.8709579 0.8932935 0.8845984
## 4332 0.8657143 0.8709579 0.8816392 0.8845984
## 4333 0.8967552 0.8709579 0.8932935 0.8845984
## 4334 0.8880126 0.8709579 0.8816392 0.8996840
## 4335 0.8657143 0.8709579 0.8816392 0.8845984
## 4336 0.8657143 0.8709579 0.8816392 0.8845984
## 4337 0.8657143 0.8709579 0.8932935 0.8845984
## 4338 0.8657143 0.8709579 0.8816392 0.8845984
## 4339 0.8880126 0.8709579 0.8932935 0.8845984
## 4340 0.9075630 0.8709579 0.8816392 0.8996840
## 4341 0.9057377 0.9512195 0.8932935 0.8845984
## 4342 0.8657143 0.8709579 0.8932935 0.8845984
## 4343 0.8657143 0.8709579 0.8816392 0.8845984
## 4344 0.9075630 0.8709579 0.8932935 0.8845984
## 4345 0.8880126 0.8709579 0.8932935 0.8845984
## 4346 0.8880126 0.8709579 0.8932935 0.8996840
## 4347 0.8967552 0.9512195 0.8816392 0.8845984
## 4348 0.9156328 0.8709579 0.8816392 0.8845984
## 4349 0.8657143 0.8709579 0.8932935 0.8845984
## 4350 0.9075630 0.8709579 0.9032258 0.9032258
## 4351 0.8880126 0.8709579 0.8816392 0.8845984
## 4352 0.9057377 0.8709579 0.8932935 0.8996840
## 4353 0.8880126 0.8709579 0.8816392 0.8845984
## 4354 0.9057377 0.9512195 0.8816392 0.8845984
## 4355 0.9156328 0.8709579 0.8816392 0.8845984
## 4356 0.9156328 0.8709579 0.8932935 0.8845984
## 4357 0.8967552 0.8709579 0.8816392 0.8845984
## 4358 0.8657143 0.8709579 0.8816392 0.8845984
## 4359 0.9156328 0.8709579 0.8932935 0.8996840
## 4360 0.9057377 0.8709579 0.8932935 0.8845984
## 4361 0.8657143 0.8709579 0.8816392 0.8845984
## 4362 0.9075630 0.9512195 0.8816392 0.8845984
## 4363 0.8967552 0.9512195 0.8932935 0.8845984
## 4364 0.8657143 0.8709579 0.8932935 0.8845984
## 4365 0.9156328 0.8709579 0.8816392 0.8845984
## 4366 0.8880126 0.8709579 0.8932935 0.8845984
## 4367 0.9156328 0.8709579 0.8816392 0.8845984
## 4368 0.8967552 0.8709579 0.8816392 0.8845984
## 4369 0.9156328 0.9512195 0.8932935 0.8845984
## 4370 0.9057377 0.8709579 0.8932935 0.8845984
## 4371 0.9057377 0.9512195 0.8932935 0.8845984
## 4372 0.8967552 0.8709579 0.8932935 0.8845984
## 4373 0.8657143 0.8709579 0.8816392 0.8845984
## 4374 0.8657143 0.8709579 0.8932935 0.8845984
## 4375 0.9156328 0.8709579 0.8932935 0.8845984
## 4376 0.9156328 0.8709579 0.8816392 0.8845984
## 4377 0.8880126 0.8709579 0.8816392 0.8845984
## 4378 0.8657143 0.8709579 0.8816392 0.8845984
## 4379 0.8880126 0.8709579 0.8816392 0.8845984
## 4380 0.8967552 0.8709579 0.8816392 0.8845984
## 4381 0.8967552 0.8709579 0.8932935 0.8845984
## 4382 0.8880126 0.8709579 0.8932935 0.8845984
## 4383 0.8657143 0.8709579 0.8932935 0.8845984
## 4384 0.9156328 0.8709579 0.8932935 0.8845984
## 4385 0.9156328 0.8709579 0.8932935 0.8845984
## 4386 0.8967552 0.8709579 0.8816392 0.8845984
## 4387 0.8657143 0.8709579 0.8816392 0.8845984
## 4388 0.8657143 0.8709579 0.8816392 0.8845984
## 4389 0.8880126 0.8709579 0.8816392 0.8845984
## 4390 0.8880126 0.8709579 0.8932935 0.8845984
## 4391 0.9156328 0.9512195 0.8932935 0.8845984
## 4392 0.8657143 0.8709579 0.8816392 0.8845984
## 4393 0.9057377 0.9512195 0.8816392 0.8845984
## 4394 0.8967552 0.8709579 0.8932935 0.8845984
## 4395 0.8657143 0.8709579 0.9032258 0.9032258
## 4396 0.8657143 0.8709579 0.8932935 0.8845984
## 4397 0.9156328 0.8709579 0.8816392 0.8845984
## 4398 0.8657143 0.8709579 0.8932935 0.8845984
## 4399 0.9156328 0.8709579 0.8816392 0.8845984
## 4400 0.8880126 0.8709579 0.8816392 0.8845984
## 4401 0.8657143 0.8709579 0.8816392 0.8845984
## 4402 0.8880126 0.8709579 0.8816392 0.8845984
## 4403 0.9057377 0.8709579 0.8816392 0.8996840
## 4404 0.9156328 0.8709579 0.8816392 0.8996840
## 4405 0.8880126 0.9512195 0.8816392 0.8845984
## 4406 0.8880126 0.8709579 0.8932935 0.8996840
## 4407 0.8967552 0.9512195 0.8932935 0.8845984
## 4408 0.8657143 0.8709579 0.8816392 0.8845984
## 4409 0.8657143 0.8709579 0.8816392 0.8845984
## 4410 0.8967552 0.9512195 0.8816392 0.8845984
## 4411 0.9075630 0.8709579 0.8816392 0.8845984
## 4412 0.8967552 0.9512195 0.8932935 0.8845984
## 4413 0.9075630 0.8709579 0.8816392 0.8845984
## 4414 0.9156328 0.9512195 0.8816392 0.8996840
## 4415 0.9075630 0.8709579 0.8932935 0.8845984
## 4416 0.8348348 0.9512195 0.8932935 0.8845984
## 4417 0.8657143 0.8709579 0.8816392 0.8845984
## 4418 0.9057377 0.8709579 0.8932935 0.8845984
## 4419 0.9156328 0.8709579 0.8932935 0.8845984
## 4420 0.8880126 0.8709579 0.8932935 0.8845984
## 4421 0.9156328 0.8709579 0.8932935 0.8996840
## 4422 0.9156328 0.8709579 0.8816392 0.8845984
## 4423 0.9156328 0.9512195 0.8932935 0.8845984
## 4424 0.8880126 0.8709579 0.8932935 0.8845984
## 4425 0.8880126 0.8709579 0.8816392 0.8845984
## 4426 0.8880126 0.8709579 0.8932935 0.8845984
## 4427 0.9075630 0.9512195 0.8932935 0.8845984
## 4428 0.8967552 0.8709579 0.8816392 0.8845984
## 4429 0.8657143 0.8709579 0.8816392 0.8845984
## 4430 0.9156328 0.8709579 0.8816392 0.8845984
## 4431 0.9057377 0.9512195 0.8932935 0.8845984
## 4432 0.8657143 0.9512195 0.8932935 0.8845984
## 4433 0.8657143 0.8709579 0.8932935 0.8845984
## 4434 0.8967552 0.8709579 0.8932935 0.8845984
## 4435 0.9156328 0.8709579 0.8932935 0.8845984
## 4436 0.8657143 0.8709579 0.8816392 0.8845984
## 4437 0.8348348 0.8709579 0.8816392 0.8996840
## 4438 0.8657143 0.9512195 0.8816392 0.8845984
## 4439 0.8880126 0.8709579 0.8816392 0.8845984
## 4440 0.8967552 0.8709579 0.8932935 0.8845984
## 4441 0.8657143 0.9512195 0.8932935 0.8845984
## 4442 0.8880126 0.8709579 0.8932935 0.8996840
## 4443 0.8657143 0.8709579 0.8816392 0.8845984
## 4444 0.9057377 0.9512195 0.8816392 0.8845984
## 4445 0.8657143 0.9512195 0.8932935 0.8845984
## 4446 0.9075630 0.9512195 0.8816392 0.8845984
## 4447 0.8880126 0.8709579 0.8816392 0.8845984
## 4448 0.9075630 0.8709579 0.8932935 0.8845984
## 4449 0.9057377 0.8709579 0.8816392 0.8996840
## 4450 0.8657143 0.8709579 0.8932935 0.8845984
## 4451 0.8967552 0.8709579 0.8816392 0.8845984
## 4452 0.8657143 0.8709579 0.8816392 0.8845984
## 4453 0.9156328 0.8709579 0.8816392 0.8845984
## 4454 0.8880126 0.8709579 0.8816392 0.8845984
## 4455 0.8657143 0.8709579 0.8932935 0.8845984
## 4456 0.9075630 0.8709579 0.8816392 0.8996840
## 4457 0.8657143 0.8709579 0.8816392 0.8845984
## 4458 0.8880126 0.8709579 0.8932935 0.8845984
## 4459 0.9075630 0.8709579 0.8816392 0.8845984
## 4460 0.8657143 0.9512195 0.8932935 0.8845984
## 4461 0.9075630 0.8709579 0.8816392 0.8996840
## 4462 0.9156328 0.8709579 0.8932935 0.8845984
## 4463 0.8657143 0.8709579 0.8816392 0.8845984
## 4464 0.8348348 0.8709579 0.8816392 0.8845984
## 4465 0.8967552 0.8709579 0.8816392 0.8845984
## 4466 0.8967552 0.8709579 0.8932935 0.8845984
## 4467 0.9057377 0.8709579 0.8816392 0.8845984
## 4468 0.8880126 0.8709579 0.8932935 0.8996840
## 4469 0.9057377 0.8709579 0.8932935 0.8996840
## 4470 0.8880126 0.8709579 0.8816392 0.8845984
## 4471 0.9075630 0.8709579 0.8932935 0.8996840
## 4472 0.9156328 0.8709579 0.8816392 0.8845984
## 4473 0.8880126 0.8709579 0.8932935 0.8845984
## 4474 0.8880126 0.8709579 0.8932935 0.8845984
## 4475 0.9156328 0.8709579 0.8932935 0.8845984
## 4476 0.8880126 0.9512195 0.8816392 0.8996840
## 4477 0.9057377 0.8709579 0.8932935 0.8845984
## 4478 0.9057377 0.9512195 0.8816392 0.8845984
## 4479 0.8880126 0.8709579 0.8816392 0.8845984
## 4480 0.9075630 0.8709579 0.8816392 0.8845984
## 4481 0.8967552 0.8709579 0.8932935 0.8845984
## 4482 0.9075630 0.9512195 0.8816392 0.8845984
## 4483 0.8967552 0.8709579 0.8932935 0.8845984
## 4484 0.8967552 0.8709579 0.8816392 0.8996840
## 4485 0.8348348 0.9512195 0.8932935 0.8845984
## 4486 0.8657143 0.8709579 0.8816392 0.8845984
## 4487 0.8967552 0.8709579 0.8816392 0.8845984
## 4488 0.8657143 0.8709579 0.8932935 0.8845984
## 4489 0.9156328 0.9512195 0.8816392 0.8845984
## 4490 0.8880126 0.8709579 0.8816392 0.8996840
## 4491 0.8880126 0.9512195 0.8816392 0.8845984
## 4492 0.9156328 0.8709579 0.8932935 0.8845984
## 4493 0.8967552 0.8709579 0.8816392 0.8996840
## 4494 0.8657143 0.9512195 0.8932935 0.8845984
## 4495 0.8657143 0.8709579 0.8816392 0.8845984
## 4496 0.8657143 0.8709579 0.8932935 0.8845984
## 4497 0.9075630 0.8709579 0.8932935 0.8845984
## 4498 0.8657143 0.8709579 0.8816392 0.8845984
## 4499 0.9057377 0.9512195 0.8816392 0.8845984
## 4500 0.9156328 0.8709579 0.8816392 0.8845984
## 4501 0.8967552 0.8709579 0.8816392 0.8996840
## 4502 0.8880126 0.8709579 0.8816392 0.8845984
## 4503 0.8880126 0.8709579 0.9032258 0.9032258
## 4504 0.8880126 0.8709579 0.8932935 0.8845984
## 4505 0.9156328 0.9512195 0.8816392 0.8845984
## 4506 0.8967552 0.8709579 0.8816392 0.8845984
## 4507 0.8657143 0.8709579 0.8932935 0.8845984
## 4508 0.8657143 0.8709579 0.8932935 0.8845984
## 4509 0.8657143 0.8709579 0.8816392 0.8996840
## 4510 0.8657143 0.8709579 0.8932935 0.8845984
## 4511 0.8967552 0.8709579 0.8816392 0.8845984
## 4512 0.8657143 0.8709579 0.9032258 0.9032258
## 4513 0.8880126 0.8709579 0.8932935 0.8845984
## 4514 0.9075630 0.8709579 0.8932935 0.8845984
## 4515 0.9156328 0.8709579 0.8816392 0.8845984
## 4516 0.8880126 0.9512195 0.8932935 0.8845984
## 4517 0.8880126 0.8709579 0.8816392 0.8845984
## 4518 0.9075630 0.9512195 0.8932935 0.8845984
## 4519 0.8657143 0.8709579 0.8816392 0.8845984
## 4520 0.8348348 0.8709579 0.8932935 0.8996840
## 4521 0.9156328 0.8709579 0.8816392 0.8845984
## 4522 0.8657143 0.8709579 0.8816392 0.8996840
## 4523 0.8967552 0.8709579 0.8932935 0.8845984
## 4524 0.9075630 0.9512195 0.8932935 0.8996840
## 4525 0.9156328 0.8709579 0.8932935 0.8996840
## 4526 0.8967552 0.8709579 0.8816392 0.8845984
## 4527 0.9156328 0.8709579 0.8816392 0.8845984
## 4528 0.8880126 0.8709579 0.8932935 0.8845984
## 4529 0.8657143 0.8709579 0.8816392 0.8996840
## 4530 0.9156328 0.8709579 0.8816392 0.8845984
## 4531 0.9075630 0.9512195 0.8932935 0.8845984
## 4532 0.8657143 0.8709579 0.8932935 0.8845984
## 4533 0.9156328 0.8709579 0.8816392 0.8996840
## 4534 0.8657143 0.8709579 0.8932935 0.8845984
## 4535 0.9075630 0.9512195 0.8816392 0.8996840
## 4536 0.8657143 0.8709579 0.8816392 0.8996840
## 4537 0.8880126 0.8709579 0.8816392 0.8996840
## 4538 0.8348348 0.9512195 0.9032258 0.9032258
## 4539 0.8880126 0.8709579 0.8816392 0.8845984
## 4540 0.8657143 0.8709579 0.8816392 0.8996840
## 4541 0.8880126 0.8709579 0.8816392 0.8845984
## 4542 0.8880126 0.9512195 0.8816392 0.8845984
## 4543 0.8657143 0.8709579 0.8816392 0.8845984
## 4544 0.8657143 0.8709579 0.8816392 0.8845984
## 4545 0.9156328 0.8709579 0.8816392 0.8845984
## 4546 0.8657143 0.8709579 0.8932935 0.8845984
## 4547 0.8657143 0.8709579 0.8932935 0.8845984
## 4548 0.8880126 0.8709579 0.8932935 0.8845984
## 4549 0.8657143 0.9512195 0.8816392 0.8845984
## 4550 0.8348348 0.9512195 0.9032258 0.9032258
## 4551 0.9075630 0.8709579 0.8932935 0.8845984
## 4552 0.9075630 0.8709579 0.8816392 0.8845984
## 4553 0.8657143 0.8709579 0.8816392 0.8845984
## 4554 0.8880126 0.8709579 0.8816392 0.8845984
## 4555 0.9057377 0.8709579 0.8816392 0.8845984
## 4556 0.8657143 0.9512195 0.8816392 0.8845984
## 4557 0.8657143 0.8709579 0.8932935 0.8996840
## 4558 0.8880126 0.9512195 0.8816392 0.8845984
## 4559 0.8967552 0.8709579 0.8816392 0.8845984
## 4560 0.9075630 0.9512195 0.8932935 0.8845984
## 4561 0.8880126 0.8709579 0.8932935 0.8845984
## 4562 0.9156328 0.8709579 0.8932935 0.8996840
## 4563 0.9075630 0.8709579 0.8932935 0.8845984
## 4564 0.8880126 0.9512195 0.8816392 0.8845984
## 4565 0.8967552 0.8709579 0.8816392 0.8996840
## 4566 0.8967552 0.8709579 0.8816392 0.8845984
## 4567 0.8967552 0.8709579 0.8816392 0.8845984
## 4568 0.8657143 0.8709579 0.8816392 0.8996840
## 4569 0.9075630 0.8709579 0.9032258 0.9032258
## 4570 0.8657143 0.8709579 0.8932935 0.8845984
## 4571 0.8967552 0.8709579 0.8816392 0.8996840
## 4572 0.8880126 0.8709579 0.8816392 0.8845984
## 4573 0.9075630 0.9512195 0.8816392 0.8845984
## 4574 0.9156328 0.8709579 0.8932935 0.8845984
## 4575 0.8657143 0.8709579 0.8932935 0.8845984
## 4576 0.8657143 0.8709579 0.8932935 0.8845984
## 4577 0.8967552 0.8709579 0.8932935 0.8845984
## 4578 0.8880126 0.8709579 0.8932935 0.8845984
## 4579 0.9156328 0.8709579 0.8932935 0.8845984
## 4580 0.9156328 0.9512195 0.9032258 0.9032258
## 4581 0.8657143 0.8709579 0.8932935 0.8845984
## 4582 0.9156328 0.8709579 0.8816392 0.8996840
## 4583 0.9156328 0.8709579 0.8932935 0.8845984
## 4584 0.8657143 0.8709579 0.8932935 0.8845984
## 4585 0.8657143 0.9512195 0.9032258 0.9032258
## 4586 0.8880126 0.8709579 0.8932935 0.8845984
## 4587 0.8657143 0.9512195 0.8932935 0.8996840
## 4588 0.8880126 0.8709579 0.8816392 0.8845984
## 4589 0.8880126 0.8709579 0.8816392 0.8845984
## 4590 0.8880126 0.9512195 0.8816392 0.8845984
## 4591 0.9156328 0.8709579 0.8932935 0.8845984
## 4592 0.8880126 0.8709579 0.8816392 0.8845984
## 4593 0.8657143 0.8709579 0.8932935 0.8845984
## 4594 0.8880126 0.8709579 0.8932935 0.8845984
## 4595 0.8657143 0.8709579 0.8932935 0.8996840
## 4596 0.9156328 0.9512195 0.8816392 0.8845984
## 4597 0.9075630 0.8709579 0.8932935 0.8845984
## 4598 0.9156328 0.8709579 0.8932935 0.8845984
## 4599 0.8880126 0.8709579 0.8932935 0.8845984
## 4600 0.8880126 0.8709579 0.8932935 0.8845984
## 4601 0.9057377 0.9512195 0.8932935 0.8845984
## 4602 0.8657143 0.8709579 0.8816392 0.8845984
## 4603 0.9075630 0.8709579 0.8816392 0.8996840
## 4604 0.8880126 0.8709579 0.8816392 0.8845984
## 4605 0.8880126 0.8709579 0.8932935 0.8845984
## 4606 0.8967552 0.8709579 0.8932935 0.8845984
## 4607 0.8657143 0.8709579 0.8932935 0.8996840
## 4608 0.8657143 0.8709579 0.8932935 0.8845984
## 4609 0.9075630 0.8709579 0.9032258 0.9032258
## 4610 0.8967552 0.9512195 0.8816392 0.8996840
## 4611 0.9075630 0.8709579 0.8932935 0.8845984
## 4612 0.9156328 0.8709579 0.8816392 0.8845984
## 4613 0.8657143 0.8709579 0.8816392 0.8845984
## 4614 0.9075630 0.9512195 0.8932935 0.8996840
## 4615 0.8967552 0.8709579 0.9032258 0.9032258
## 4616 0.8657143 0.8709579 0.9032258 0.9032258
## 4617 0.8348348 0.8709579 0.8816392 0.8845984
## 4618 0.9156328 0.8709579 0.8932935 0.8845984
## 4619 0.8657143 0.8709579 0.8816392 0.8996840
## 4620 0.8348348 0.8709579 0.8932935 0.8845984
## 4621 0.8657143 0.8709579 0.9032258 0.9032258
## 4622 0.8657143 0.8709579 0.8816392 0.8845984
## 4623 0.8657143 0.8709579 0.8816392 0.8845984
## 4624 0.8967552 0.8709579 0.8816392 0.8845984
## 4625 0.8967552 0.8709579 0.8932935 0.8845984
## 4626 0.8657143 0.8709579 0.9032258 0.9032258
## 4627 0.8657143 0.8709579 0.8816392 0.8845984
## 4628 0.8657143 0.8709579 0.8932935 0.8845984
## 4629 0.9057377 0.8709579 0.8932935 0.8845984
## 4630 0.8657143 0.8709579 0.8816392 0.8845984
## 4631 0.8880126 0.8709579 0.8932935 0.8845984
## 4632 0.8880126 0.9512195 0.8932935 0.8845984
## 4633 0.9075630 0.8709579 0.8932935 0.8996840
## 4634 0.8657143 0.8709579 0.8932935 0.8845984
## 4635 0.8657143 0.9512195 0.8816392 0.8996840
## 4636 0.8967552 0.8709579 0.8932935 0.8845984
## 4637 0.8657143 0.8709579 0.8932935 0.8845984
## 4638 0.9075630 0.9512195 0.8816392 0.8996840
## 4639 0.9156328 0.9512195 0.8932935 0.8845984
## 4640 0.8657143 0.8709579 0.8932935 0.8996840
## 4641 0.9156328 0.9512195 0.8932935 0.8845984
## 4642 0.8880126 0.8709579 0.8816392 0.8845984
## 4643 0.8967552 0.9512195 0.8932935 0.8996840
## 4644 0.8880126 0.8709579 0.8932935 0.8845984
## 4645 0.8967552 0.8709579 0.8932935 0.8845984
## 4646 0.8657143 0.8709579 0.8932935 0.8996840
## 4647 0.9156328 0.8709579 0.8816392 0.8845984
## 4648 0.9057377 0.8709579 0.8816392 0.8845984
## 4649 0.9156328 0.9512195 0.8816392 0.8845984
## 4650 0.9156328 0.8709579 0.8932935 0.8845984
## 4651 0.8880126 0.8709579 0.8816392 0.8845984
## 4652 0.9057377 0.8709579 0.8932935 0.8845984
## 4653 0.8880126 0.9512195 0.8816392 0.8996840
## 4654 0.8880126 0.9512195 0.8816392 0.8996840
## 4655 0.8657143 0.8709579 0.8816392 0.8845984
## 4656 0.9156328 0.8709579 0.8932935 0.8845984
## 4657 0.8657143 0.8709579 0.8932935 0.8845984
## 4658 0.8880126 0.8709579 0.8816392 0.8845984
## 4659 0.8657143 0.8709579 0.8816392 0.8845984
## 4660 0.8967552 0.8709579 0.8816392 0.8845984
## 4661 0.9075630 0.8709579 0.8816392 0.8996840
## 4662 0.8657143 0.8709579 0.8932935 0.8845984
## 4663 0.9156328 0.8709579 0.8932935 0.8845984
## 4664 0.9156328 0.8709579 0.8932935 0.8845984
## 4665 0.8657143 0.9512195 0.8816392 0.8845984
## 4666 0.8657143 0.8709579 0.8816392 0.8996840
## 4667 0.8657143 0.8709579 0.8816392 0.8996840
## 4668 0.9156328 0.9512195 0.8816392 0.8845984
## 4669 0.8967552 0.8709579 0.8816392 0.8845984
## 4670 0.9075630 0.8709579 0.8932935 0.8845984
## 4671 0.8880126 0.8709579 0.8816392 0.8845984
## 4672 0.8657143 0.8709579 0.8932935 0.8845984
## 4673 0.8657143 0.8709579 0.8816392 0.8845984
## 4674 0.9156328 0.9512195 0.8932935 0.8845984
## 4675 0.9156328 0.9512195 0.8932935 0.8845984
## 4676 0.8880126 0.9512195 0.8932935 0.8845984
## 4677 0.8967552 0.8709579 0.8816392 0.8845984
## 4678 0.8657143 0.8709579 0.8932935 0.8845984
## 4679 0.8880126 0.8709579 0.8816392 0.8845984
## 4680 0.8657143 0.8709579 0.8932935 0.8845984
## 4681 0.8880126 0.8709579 0.8816392 0.8845984
## 4682 0.8657143 0.8709579 0.8932935 0.8996840
## 4683 0.9156328 0.8709579 0.8816392 0.8845984
## 4684 0.8657143 0.8709579 0.8932935 0.8845984
## 4685 0.8657143 0.8709579 0.8816392 0.8845984
## 4686 0.8657143 0.9512195 0.8932935 0.8996840
## 4687 0.9075630 0.9512195 0.8932935 0.8845984
## 4688 0.8657143 0.8709579 0.8932935 0.8845984
## 4689 0.8657143 0.8709579 0.8932935 0.8845984
## 4690 0.8880126 0.8709579 0.8932935 0.8845984
## 4691 0.8657143 0.8709579 0.8816392 0.8845984
## 4692 0.8348348 0.9512195 0.8816392 0.8845984
## 4693 0.8880126 0.8709579 0.8932935 0.8845984
## 4694 0.8880126 0.8709579 0.8932935 0.8996840
## 4695 0.8967552 0.8709579 0.8932935 0.8845984
## 4696 0.8657143 0.9512195 0.8932935 0.8845984
## 4697 0.8967552 0.8709579 0.8816392 0.8845984
## 4698 0.9156328 0.9512195 0.8932935 0.8845984
## 4699 0.8880126 0.8709579 0.8816392 0.8845984
## 4700 0.8657143 0.8709579 0.8932935 0.8845984
## 4701 0.8657143 0.8709579 0.8816392 0.8996840
## 4702 0.8657143 0.8709579 0.8932935 0.8845984
## 4703 0.9057377 0.8709579 0.9032258 0.9032258
## 4704 0.8657143 0.8709579 0.8816392 0.8845984
## 4705 0.8967552 0.9512195 0.8932935 0.8845984
## 4706 0.8657143 0.8709579 0.8816392 0.8845984
## 4707 0.9156328 0.9512195 0.8816392 0.8845984
## 4708 0.8657143 0.8709579 0.8816392 0.8845984
## 4709 0.9156328 0.9512195 0.8932935 0.8845984
## 4710 0.8967552 0.8709579 0.8932935 0.8845984
## 4711 0.8880126 0.8709579 0.8932935 0.8845984
## 4712 0.8967552 0.8709579 0.8816392 0.8845984
## 4713 0.8880126 0.8709579 0.8932935 0.8845984
## 4714 0.8880126 0.8709579 0.8932935 0.8845984
## 4715 0.8657143 0.8709579 0.8816392 0.8845984
## 4716 0.8657143 0.8709579 0.8932935 0.8845984
## 4717 0.9156328 0.8709579 0.8816392 0.8845984
## 4718 0.9156328 0.8709579 0.8816392 0.8845984
## 4719 0.8967552 0.8709579 0.8932935 0.8845984
## 4720 0.8657143 0.8709579 0.8932935 0.8845984
## 4721 0.8967552 0.8709579 0.8816392 0.8845984
## 4722 0.8880126 0.8709579 0.8816392 0.8845984
## 4723 0.9057377 0.8709579 0.8816392 0.8845984
## 4724 0.9156328 0.8709579 0.8816392 0.8845984
## 4725 0.8657143 0.8709579 0.8816392 0.8845984
## 4726 0.9156328 0.9512195 0.8932935 0.8845984
## 4727 0.8967552 0.8709579 0.8816392 0.8845984
## 4728 0.8657143 0.9512195 0.8816392 0.8845984
## 4729 0.8348348 0.9512195 0.8816392 0.8845984
## 4730 0.8967552 0.8709579 0.8932935 0.8845984
## 4731 0.8657143 0.8709579 0.8932935 0.8845984
## 4732 0.8880126 0.8709579 0.8932935 0.8845984
## 4733 0.8880126 0.8709579 0.8932935 0.8845984
## 4734 0.8657143 0.8709579 0.8932935 0.8845984
## 4735 0.8880126 0.8709579 0.8932935 0.8845984
## 4736 0.9156328 0.9512195 0.8816392 0.8845984
## 4737 0.9075630 0.9512195 0.8932935 0.8845984
## 4738 0.9075630 0.8709579 0.8816392 0.8845984
## 4739 0.8657143 0.8709579 0.8816392 0.8845984
## 4740 0.8657143 0.8709579 0.8816392 0.8845984
## 4741 0.8657143 0.8709579 0.8932935 0.8845984
## 4742 0.8967552 0.8709579 0.8932935 0.8845984
## 4743 0.8967552 0.8709579 0.8816392 0.8996840
## 4744 0.9156328 0.8709579 0.8816392 0.8845984
## 4745 0.8657143 0.8709579 0.8816392 0.8845984
## 4746 0.8880126 0.8709579 0.9032258 0.9032258
## 4747 0.8880126 0.8709579 0.8816392 0.8845984
## 4748 0.8880126 0.9512195 0.8932935 0.8996840
## 4749 0.8880126 0.8709579 0.8816392 0.8845984
## 4750 0.8657143 0.9512195 0.8932935 0.8845984
## 4751 0.8967552 0.8709579 0.8816392 0.8845984
## 4752 0.8657143 0.8709579 0.8932935 0.8845984
## 4753 0.8657143 0.8709579 0.8816392 0.8845984
## 4754 0.8880126 0.8709579 0.8816392 0.8845984
## 4755 0.8880126 0.8709579 0.8816392 0.8845984
## 4756 0.8348348 0.8709579 0.8816392 0.8845984
## 4757 0.8967552 0.8709579 0.8816392 0.8996840
## 4758 0.9156328 0.8709579 0.8816392 0.8845984
## 4759 0.8880126 0.8709579 0.8816392 0.8996840
## 4760 0.9075630 0.8709579 0.8816392 0.8845984
## 4761 0.9156328 0.9512195 0.8816392 0.8996840
## 4762 0.8657143 0.8709579 0.8932935 0.8845984
## 4763 0.8967552 0.8709579 0.8932935 0.8845984
## 4764 0.9156328 0.9512195 0.8932935 0.8845984
## 4765 0.8967552 0.8709579 0.8932935 0.8845984
## 4766 0.9156328 0.8709579 0.8816392 0.8845984
## 4767 0.8657143 0.8709579 0.8816392 0.8845984
## 4768 0.8967552 0.8709579 0.8816392 0.8845984
## 4769 0.8348348 0.8709579 0.8816392 0.8845984
## 4770 0.8880126 0.8709579 0.8932935 0.8845984
## 4771 0.8657143 0.9512195 0.8816392 0.8845984
## 4772 0.8880126 0.8709579 0.8932935 0.8845984
## 4773 0.8880126 0.8709579 0.8932935 0.8845984
## 4774 0.8657143 0.8709579 0.8816392 0.8845984
## 4775 0.9075630 0.8709579 0.8932935 0.8845984
## 4776 0.8967552 0.8709579 0.8816392 0.8845984
## 4777 0.8880126 0.8709579 0.8816392 0.8845984
## 4778 0.8657143 0.8709579 0.8816392 0.8845984
## 4779 0.8967552 0.8709579 0.8932935 0.8845984
## 4780 0.8657143 0.8709579 0.8932935 0.8845984
## 4781 0.9075630 0.8709579 0.8816392 0.8845984
## 4782 0.8967552 0.8709579 0.8816392 0.8845984
## 4783 0.9057377 0.8709579 0.8816392 0.8996840
## 4784 0.8657143 0.8709579 0.8816392 0.8845984
## 4785 0.9057377 0.8709579 0.8816392 0.8996840
## 4786 0.9075630 0.9512195 0.8932935 0.8845984
## 4787 0.9075630 0.8709579 0.8816392 0.8996840
## 4788 0.8657143 0.8709579 0.8816392 0.8845984
## 4789 0.8967552 0.8709579 0.8816392 0.8996840
## 4790 0.8657143 0.8709579 0.8816392 0.8845984
## 4791 0.8348348 0.9512195 0.8816392 0.8845984
## 4792 0.9075630 0.8709579 0.8816392 0.8845984
## 4793 0.8880126 0.8709579 0.8816392 0.8845984
## 4794 0.8657143 0.8709579 0.8816392 0.8845984
## 4795 0.8657143 0.8709579 0.8816392 0.8845984
## 4796 0.8880126 0.9512195 0.8816392 0.8996840
## 4797 0.8880126 0.8709579 0.8932935 0.8845984
## 4798 0.8880126 0.8709579 0.8816392 0.8996840
## 4799 0.8880126 0.8709579 0.8816392 0.8845984
## 4800 0.8657143 0.8709579 0.8932935 0.8845984
## 4801 0.9057377 0.9512195 0.8932935 0.8845984
## 4802 0.8880126 0.8709579 0.8816392 0.8845984
## 4803 0.9057377 0.8709579 0.8932935 0.8845984
## 4804 0.8657143 0.8709579 0.8932935 0.8845984
## 4805 0.8657143 0.8709579 0.8816392 0.8845984
## 4806 0.8657143 0.8709579 0.9032258 0.9032258
## 4807 0.8657143 0.8709579 0.8816392 0.8845984
## 4808 0.8657143 0.8709579 0.8932935 0.8845984
## 4809 0.9057377 0.8709579 0.9032258 0.9032258
## 4810 0.9156328 0.8709579 0.8816392 0.8845984
## 4811 0.8657143 0.8709579 0.8816392 0.8845984
## 4812 0.8657143 0.8709579 0.8932935 0.8996840
## 4813 0.8348348 0.8709579 0.8932935 0.8845984
## 4814 0.8657143 0.8709579 0.8932935 0.8845984
## 4815 0.8348348 0.8709579 0.8932935 0.8996840
## 4816 0.8880126 0.8709579 0.8816392 0.8845984
## 4817 0.8880126 0.9512195 0.8816392 0.8845984
## 4818 0.8967552 0.8709579 0.8932935 0.8845984
## 4819 0.9075630 0.9512195 0.8932935 0.8845984
## 4820 0.8880126 0.8709579 0.8816392 0.8845984
## 4821 0.8967552 0.8709579 0.8932935 0.8845984
## 4822 0.9156328 0.8709579 0.8816392 0.8845984
## 4823 0.9156328 0.8709579 0.8816392 0.8996840
## 4824 0.8967552 0.8709579 0.8932935 0.8845984
## 4825 0.9156328 0.8709579 0.9032258 0.9032258
## 4826 0.9156328 0.8709579 0.8932935 0.8845984
## 4827 0.9156328 0.9512195 0.8816392 0.8845984
## 4828 0.8967552 0.8709579 0.8932935 0.8845984
## 4829 0.8967552 0.8709579 0.8816392 0.8845984
## 4830 0.9075630 0.8709579 0.8932935 0.8845984
## 4831 0.8967552 0.9512195 0.8932935 0.8845984
## 4832 0.8657143 0.8709579 0.8816392 0.8845984
## 4833 0.8657143 0.8709579 0.8932935 0.8845984
## 4834 0.9057377 0.8709579 0.8932935 0.8845984
## 4835 0.8880126 0.8709579 0.8816392 0.8845984
## 4836 0.8967552 0.8709579 0.8932935 0.8845984
## 4837 0.9075630 0.9512195 0.8816392 0.8996840
## 4838 0.8657143 0.8709579 0.8816392 0.8845984
## 4839 0.9156328 0.8709579 0.8932935 0.8845984
## 4840 0.9057377 0.9512195 0.8816392 0.8845984
## 4841 0.9057377 0.8709579 0.8932935 0.8996840
## 4842 0.8657143 0.8709579 0.8816392 0.8845984
## 4843 0.8880126 0.8709579 0.8816392 0.8996840
## 4844 0.9156328 0.8709579 0.8932935 0.8845984
## 4845 0.8657143 0.8709579 0.8932935 0.8845984
## 4846 0.8657143 0.8709579 0.8816392 0.8845984
## 4847 0.9057377 0.9512195 0.8816392 0.8845984
## 4848 0.9156328 0.9512195 0.8816392 0.8845984
## 4849 0.9156328 0.8709579 0.9032258 0.9032258
## 4850 0.8880126 0.8709579 0.8816392 0.8845984
## 4851 0.9057377 0.8709579 0.8816392 0.8845984
## 4852 0.9075630 0.8709579 0.8816392 0.8845984
## 4853 0.8657143 0.8709579 0.8816392 0.8996840
## 4854 0.9057377 0.8709579 0.8816392 0.8996840
## 4855 0.8657143 0.8709579 0.8932935 0.8845984
## 4856 0.8657143 0.8709579 0.8816392 0.8845984
## 4857 0.8657143 0.8709579 0.8816392 0.8845984
## 4858 0.9156328 0.8709579 0.8816392 0.8845984
## 4859 0.9075630 0.9512195 0.8932935 0.8845984
## 4860 0.8657143 0.8709579 0.8932935 0.8845984
## 4861 0.8967552 0.9512195 0.8932935 0.8845984
## 4862 0.8880126 0.8709579 0.8816392 0.8845984
## 4863 0.8967552 0.8709579 0.8932935 0.8845984
## 4864 0.9156328 0.8709579 0.8816392 0.8845984
## 4865 0.8967552 0.8709579 0.8816392 0.8845984
## 4866 0.8657143 0.8709579 0.9032258 0.9032258
## 4867 0.8657143 0.8709579 0.8816392 0.8845984
## 4868 0.9057377 0.8709579 0.8816392 0.8845984
## 4869 0.8657143 0.9512195 0.8932935 0.8996840
## 4870 0.8657143 0.8709579 0.8816392 0.8845984
## 4871 0.8880126 0.8709579 0.8816392 0.8996840
## 4872 0.9075630 0.9512195 0.8816392 0.8996840
## 4873 0.8967552 0.8709579 0.8816392 0.8845984
## 4874 0.8657143 0.8709579 0.8932935 0.8845984
## 4875 0.8880126 0.8709579 0.8932935 0.8845984
## 4876 0.9075630 0.8709579 0.8932935 0.8845984
## 4877 0.8657143 0.9512195 0.8932935 0.8845984
## 4878 0.8967552 0.8709579 0.8932935 0.8845984
## 4879 0.8657143 0.8709579 0.8816392 0.8845984
## 4880 0.8657143 0.8709579 0.8816392 0.8845984
## 4881 0.8967552 0.8709579 0.8816392 0.8845984
## 4882 0.8657143 0.9512195 0.8816392 0.8996840
## 4883 0.8880126 0.8709579 0.8816392 0.8845984
## 4884 0.8657143 0.8709579 0.8816392 0.8845984
## 4885 0.8880126 0.8709579 0.8816392 0.8845984
## 4886 0.8657143 0.8709579 0.8816392 0.8996840
## 4887 0.8880126 0.9512195 0.8932935 0.8845984
## 4888 0.8657143 0.8709579 0.8816392 0.8845984
## 4889 0.8880126 0.8709579 0.8932935 0.8845984
## 4890 0.8657143 0.8709579 0.8816392 0.8996840
## 4891 0.8880126 0.8709579 0.8816392 0.8845984
## 4892 0.9057377 0.8709579 0.8816392 0.8845984
## 4893 0.9057377 0.8709579 0.8816392 0.8845984
## 4894 0.8967552 0.9512195 0.8816392 0.8845984
## 4895 0.9156328 0.8709579 0.8816392 0.8845984
## 4896 0.8967552 0.8709579 0.8816392 0.8845984
## 4897 0.8657143 0.9512195 0.8932935 0.8996840
## 4898 0.8967552 0.8709579 0.8816392 0.8845984
## 4899 0.8657143 0.8709579 0.8816392 0.8845984
## 4900 0.8657143 0.9512195 0.8932935 0.8845984
## 4901 0.8657143 0.8709579 0.8932935 0.8996840
## 4902 0.9057377 0.8709579 0.8816392 0.8845984
## 4903 0.8348348 0.8709579 0.8932935 0.8845984
## 4904 0.8880126 0.8709579 0.8816392 0.8845984
## 4905 0.8657143 0.8709579 0.8816392 0.8845984
## 4906 0.8880126 0.9512195 0.8932935 0.8845984
## 4907 0.8880126 0.9512195 0.8816392 0.8845984
## 4908 0.8657143 0.8709579 0.8932935 0.8996840
## 4909 0.9075630 0.9512195 0.8932935 0.8996840
## 4910 0.8880126 0.8709579 0.8932935 0.8996840
## 4911 0.9075630 0.9512195 0.8816392 0.8845984
## 4912 0.8967552 0.8709579 0.9032258 0.9032258
## 4913 0.9156328 0.9512195 0.8932935 0.8996840
## 4914 0.8657143 0.8709579 0.8932935 0.8845984
## 4915 0.9156328 0.9512195 0.8816392 0.8845984
## 4916 0.9156328 0.9512195 0.8932935 0.8845984
## 4917 0.9156328 0.8709579 0.8932935 0.8845984
## 4918 0.8967552 0.8709579 0.8816392 0.8845984
## 4919 0.9075630 0.9512195 0.8816392 0.8996840
## 4920 0.8967552 0.8709579 0.8816392 0.8845984
## 4921 0.8657143 0.9512195 0.8816392 0.8845984
## 4922 0.8348348 0.8709579 0.8816392 0.8845984
## 4923 0.8657143 0.8709579 0.8816392 0.8845984
## 4924 0.9156328 0.8709579 0.8816392 0.8845984
## 4925 0.8880126 0.8709579 0.8932935 0.8845984
## 4926 0.9057377 0.8709579 0.8932935 0.8845984
## 4927 0.8880126 0.8709579 0.8932935 0.8845984
## 4928 0.8657143 0.8709579 0.8932935 0.8845984
## 4929 0.8657143 0.8709579 0.8932935 0.8845984
## 4930 0.9156328 0.8709579 0.8816392 0.8845984
## 4931 0.9075630 0.8709579 0.8816392 0.8845984
## 4932 0.8657143 0.8709579 0.8932935 0.8845984
## 4933 0.8657143 0.8709579 0.8816392 0.8845984
## 4934 0.8967552 0.8709579 0.8816392 0.8845984
## 4935 0.9075630 0.9512195 0.8816392 0.8845984
## 4936 0.9075630 0.9512195 0.8816392 0.8845984
## 4937 0.8657143 0.8709579 0.8932935 0.8845984
## 4938 0.8880126 0.9512195 0.8932935 0.8845984
## 4939 0.8880126 0.8709579 0.8816392 0.8845984
## 4940 0.8880126 0.9512195 0.8932935 0.8845984
## 4941 0.9057377 0.8709579 0.8816392 0.8845984
## 4942 0.8880126 0.8709579 0.8816392 0.8996840
## 4943 0.8967552 0.8709579 0.8816392 0.8845984
## 4944 0.8348348 0.9512195 0.8816392 0.8845984
## 4945 0.9156328 0.8709579 0.8816392 0.8845984
## 4946 0.8880126 0.8709579 0.8932935 0.8845984
## 4947 0.8880126 0.8709579 0.8816392 0.8845984
## 4948 0.8657143 0.8709579 0.8932935 0.8996840
## 4949 0.8657143 0.8709579 0.8816392 0.8996840
## 4950 0.9057377 0.8709579 0.8816392 0.8996840
## 4951 0.9075630 0.9512195 0.9032258 0.9032258
## 4952 0.8657143 0.8709579 0.8932935 0.8845984
## 4953 0.8657143 0.9512195 0.8932935 0.8845984
## 4954 0.8657143 0.8709579 0.8932935 0.8845984
## 4955 0.9156328 0.8709579 0.8816392 0.8845984
## 4956 0.8657143 0.8709579 0.8816392 0.8845984
## 4957 0.9075630 0.8709579 0.8932935 0.8845984
## 4958 0.8967552 0.9512195 0.8816392 0.8996840
## 4959 0.8880126 0.9512195 0.8816392 0.8845984
## 4960 0.8657143 0.8709579 0.8932935 0.8845984
## 4961 0.8880126 0.8709579 0.8816392 0.8996840
## 4962 0.8657143 0.8709579 0.8932935 0.8996840
## 4963 0.9057377 0.9512195 0.8816392 0.8845984
## 4964 0.9156328 0.9512195 0.8932935 0.8845984
## 4965 0.8657143 0.8709579 0.8816392 0.8845984
## 4966 0.8657143 0.9512195 0.8932935 0.8845984
## 4967 0.9075630 0.9512195 0.8932935 0.8845984
## 4968 0.8880126 0.8709579 0.8932935 0.8996840
## 4969 0.9156328 0.9512195 0.8932935 0.8845984
## 4970 0.8880126 0.8709579 0.8932935 0.8996840
## 4971 0.8657143 0.8709579 0.8816392 0.8845984
## 4972 0.8657143 0.8709579 0.9032258 0.9032258
## 4973 0.8348348 0.8709579 0.8816392 0.8845984
## 4974 0.8880126 0.8709579 0.8932935 0.8845984
## 4975 0.8657143 0.8709579 0.8816392 0.8996840
## 4976 0.8657143 0.8709579 0.8816392 0.8845984
## 4977 0.8967552 0.8709579 0.8932935 0.8845984
## 4978 0.8967552 0.9512195 0.8816392 0.8845984
## 4979 0.8657143 0.9512195 0.8816392 0.8845984
## 4980 0.8880126 0.9512195 0.8816392 0.8845984
## 4981 0.8657143 0.9512195 0.8932935 0.8845984
## 4982 0.9156328 0.8709579 0.8816392 0.8845984
## 4983 0.8967552 0.9512195 0.8932935 0.8845984
## 4984 0.9075630 0.8709579 0.8932935 0.8845984
## 4985 0.8657143 0.8709579 0.8816392 0.8845984
## 4986 0.9156328 0.9512195 0.8816392 0.8996840
## 4987 0.8880126 0.8709579 0.8816392 0.8845984
## 4988 0.9156328 0.8709579 0.8932935 0.8845984
## 4989 0.8657143 0.8709579 0.8816392 0.8845984
## 4990 0.9156328 0.8709579 0.8816392 0.8845984
## 4991 0.9075630 0.9512195 0.8816392 0.8996840
## 4992 0.9075630 0.8709579 0.8816392 0.8845984
## 4993 0.9057377 0.8709579 0.8932935 0.8845984
## 4994 0.8967552 0.9512195 0.8816392 0.8845984
## 4995 0.9156328 0.8709579 0.8816392 0.8845984
## 4996 0.9156328 0.9512195 0.8816392 0.8996840
## 4997 0.8880126 0.9512195 0.8816392 0.8845984
## 4998 0.8967552 0.8709579 0.8932935 0.8996840
## 4999 0.9057377 0.9512195 0.8932935 0.8845984
## contact_encoded month_encoded day_of_week_encoded poutcome_encoded
## 1 0.9439160 0.9321055 0.9090369 0.8534799
## 2 0.8540864 0.5408163 0.8890339 0.8534799
## 3 0.8540864 0.8148148 0.9090369 0.8534799
## 4 0.8540864 0.9321055 0.8890339 0.8534799
## 5 0.8540864 0.9321055 0.8890339 0.8534799
## 6 0.8540864 0.9321055 0.8890339 0.8534799
## 7 0.8540864 0.8877722 0.9090369 0.8534799
## 8 0.8540864 0.8148148 0.8791400 0.8534799
## 9 0.8540864 0.8148148 0.8791400 0.8534799
## 10 0.8540864 0.9321055 0.8721351 0.8534799
## 11 0.8540864 0.6137931 0.8721351 0.8534799
## 12 0.8540864 0.9321055 0.9090369 0.8534799
## 13 0.8540864 0.9010727 0.8791400 0.8534799
## 14 0.8540864 0.9321055 0.9090369 0.8534799
## 15 0.9439160 0.8148148 0.8890339 0.8534799
## 16 0.8540864 0.9321055 0.8890339 0.8534799
## 17 0.9439160 0.9321055 0.8890339 0.8534799
## 18 0.8540864 0.8148148 0.9090369 0.8534799
## 19 0.8540864 0.9321055 0.8721351 0.8534799
## 20 0.8540864 0.9321055 0.8890339 0.8534799
## 21 0.8540864 0.8148148 0.8874696 0.8534799
## 22 0.8540864 0.9010727 0.9090369 0.8534799
## 23 0.8540864 0.9321055 0.8890339 0.8534799
## 24 0.8540864 0.9010727 0.8791400 0.8534799
## 25 0.8540864 0.9321055 0.8791400 0.8534799
## 26 0.8540864 0.8864504 0.8721351 0.8534799
## 27 0.8540864 0.9010727 0.8791400 0.8534799
## 28 0.8540864 0.9321055 0.8791400 0.8534799
## 29 0.8540864 0.9321055 0.9090369 0.8534799
## 30 0.8540864 0.9321055 0.8890339 0.8534799
## 31 0.8540864 0.9321055 0.8890339 0.8534799
## 32 0.8540864 0.8148148 0.9090369 0.8534799
## 33 0.8540864 0.5408163 0.8890339 0.8534799
## 34 0.8540864 0.9321055 0.8721351 0.8534799
## 35 0.8540864 0.9321055 0.9090369 0.8534799
## 36 0.8540864 0.8148148 0.8890339 0.8534799
## 37 0.8540864 0.9321055 0.8890339 0.8534799
## 38 0.8540864 0.9321055 0.8791400 0.8534799
## 39 0.8540864 0.9321055 0.8890339 0.8534799
## 40 0.8540864 0.6137931 0.8890339 0.8534799
## 41 0.8540864 0.9010727 0.8791400 0.8534799
## 42 0.8540864 0.9321055 0.8890339 0.8534799
## 43 0.8540864 0.8877722 0.8890339 0.8534799
## 44 0.8540864 0.9321055 0.9090369 0.8534799
## 45 0.8540864 0.8148148 0.8874696 0.8534799
## 46 0.8540864 0.8148148 0.8890339 0.8534799
## 47 0.8540864 0.9321055 0.9090369 0.8534799
## 48 0.8540864 0.8877722 0.8791400 0.8534799
## 49 0.9439160 0.9010727 0.9090369 0.8534799
## 50 0.8540864 0.6137931 0.8721351 0.8534799
## 51 0.8540864 0.8864504 0.9090369 0.8534799
## 52 0.8540864 0.8148148 0.8890339 0.8534799
## 53 0.8540864 0.9321055 0.8791400 0.8534799
## 54 0.8540864 0.8148148 0.8890339 0.8534799
## 55 0.8540864 0.9321055 0.8721351 0.8534799
## 56 0.8540864 0.9321055 0.8890339 0.8534799
## 57 0.8540864 0.8877722 0.8874696 0.8534799
## 58 0.8540864 0.8148148 0.8791400 0.8534799
## 59 0.8540864 0.8148148 0.9090369 0.8534799
## 60 0.9439160 0.4949495 0.8791400 0.8534799
## 61 0.8540864 0.9321055 0.9090369 0.8534799
## 62 0.8540864 0.9321055 0.8874696 0.8534799
## 63 0.8540864 0.9321055 0.8890339 0.8534799
## 64 0.8540864 0.9010727 0.9090369 0.8534799
## 65 0.8540864 0.9010727 0.8890339 0.8534799
## 66 0.8540864 0.9010727 0.8874696 0.8534799
## 67 0.8540864 0.8148148 0.9090369 0.8534799
## 68 0.8540864 0.5408163 0.8890339 0.8534799
## 69 0.8540864 0.9321055 0.8874696 0.8534799
## 70 0.8540864 0.9080000 0.8890339 0.8534799
## 71 0.8540864 0.9321055 0.9090369 0.8534799
## 72 0.8540864 0.9321055 0.9090369 0.8534799
## 73 0.8540864 0.9321055 0.8890339 0.8534799
## 74 0.8540864 0.9321055 0.8874696 0.8534799
## 75 0.8540864 0.9321055 0.8890339 0.8534799
## 76 0.8540864 0.9321055 0.8791400 0.8534799
## 77 0.8540864 0.9010727 0.9090369 0.8534799
## 78 0.8540864 0.8148148 0.8791400 0.8534799
## 79 0.8540864 0.8864504 0.8721351 0.8534799
## 80 0.8540864 0.9321055 0.8721351 0.8534799
## 81 0.8540864 0.9010727 0.8721351 0.8534799
## 82 0.8540864 0.8148148 0.9090369 0.8534799
## 83 0.8540864 0.9080000 0.8890339 0.8534799
## 84 0.8540864 0.9010727 0.9090369 0.8534799
## 85 0.8540864 0.8148148 0.9090369 0.8534799
## 86 0.9439160 0.9321055 0.8791400 0.8534799
## 87 0.8540864 0.9010727 0.8721351 0.8534799
## 88 0.8540864 0.9321055 0.8721351 0.8534799
## 89 0.8540864 0.9010727 0.8721351 0.8534799
## 90 0.8540864 0.9321055 0.8721351 0.8534799
## 91 0.8540864 0.9010727 0.8791400 0.8534799
## 92 0.8540864 0.8864504 0.9090369 0.8534799
## 93 0.8540864 0.9321055 0.9090369 0.8534799
## 94 0.9439160 0.8877722 0.9090369 0.8534799
## 95 0.8540864 0.9010727 0.8791400 0.8534799
## 96 0.8540864 0.9010727 0.8791400 0.8534799
## 97 0.8540864 0.6137931 0.9090369 0.8534799
## 98 0.8540864 0.8148148 0.8721351 0.8534799
## 99 0.8540864 0.9321055 0.8890339 0.8534799
## 100 0.8540864 0.5408163 0.9090369 0.8534799
## 101 0.8540864 0.8877722 0.9090369 0.8534799
## 102 0.8540864 0.9321055 0.8890339 0.8534799
## 103 0.8540864 0.8877722 0.8791400 0.8534799
## 104 0.8540864 0.8148148 0.8791400 0.8534799
## 105 0.8540864 0.9010727 0.8721351 0.8534799
## 106 0.8540864 0.9321055 0.8721351 0.8534799
## 107 0.8540864 0.9321055 0.8791400 0.8534799
## 108 0.8540864 0.8148148 0.9090369 0.8534799
## 109 0.8540864 0.9321055 0.8721351 0.8534799
## 110 0.8540864 0.4949495 0.8791400 0.8534799
## 111 0.9439160 0.8864504 0.8721351 0.8534799
## 112 0.9439160 0.9010727 0.8874696 0.8534799
## 113 0.8540864 0.6137931 0.8721351 0.8534799
## 114 0.8540864 0.8864504 0.9090369 0.8534799
## 115 0.8540864 0.9321055 0.8721351 0.8534799
## 116 0.8540864 0.8148148 0.8791400 0.8534799
## 117 0.8540864 0.9010727 0.9090369 0.8534799
## 118 0.8540864 0.9321055 0.8721351 0.8534799
## 119 0.8540864 0.4949495 0.9090369 0.8534799
## 120 0.8540864 0.8877722 0.8721351 0.8534799
## 121 0.8540864 0.8148148 0.8890339 0.8534799
## 122 0.8540864 0.8148148 0.8890339 0.8534799
## 123 0.8540864 0.9321055 0.9090369 0.8534799
## 124 0.8540864 0.8877722 0.8890339 0.8534799
## 125 0.8540864 0.8877722 0.8890339 0.8534799
## 126 0.8540864 0.9321055 0.8890339 0.8534799
## 127 0.8540864 0.9010727 0.8890339 0.8534799
## 128 0.8540864 0.9010727 0.8874696 0.8534799
## 129 0.8540864 0.9321055 0.8890339 0.8534799
## 130 0.8540864 0.9321055 0.8890339 0.8534799
## 131 0.8540864 0.8864504 0.8721351 0.8534799
## 132 0.8540864 0.9010727 0.8791400 0.8534799
## 133 0.8540864 0.8864504 0.8721351 0.8534799
## 134 0.9439160 0.9321055 0.8874696 0.8534799
## 135 0.8540864 0.9080000 0.8721351 0.8534799
## 136 0.8540864 0.8148148 0.9090369 0.8534799
## 137 0.8540864 0.9321055 0.8890339 0.8534799
## 138 0.8540864 0.9080000 0.8874696 0.8534799
## 139 0.8540864 0.8148148 0.8721351 0.8534799
## 140 0.8540864 0.9010727 0.8890339 0.8534799
## 141 0.8540864 0.8148148 0.8890339 0.8534799
## 142 0.8540864 0.8877722 0.8874696 0.8534799
## 143 0.8540864 0.9010727 0.8874696 0.8534799
## 144 0.8540864 0.9010727 0.8874696 0.8534799
## 145 0.8540864 0.8877722 0.8791400 0.8534799
## 146 0.8540864 0.9321055 0.8791400 0.8534799
## 147 0.8540864 0.9321055 0.8721351 0.8534799
## 148 0.8540864 0.8148148 0.9090369 0.8534799
## 149 0.9439160 0.8877722 0.8791400 0.8534799
## 150 0.8540864 0.9010727 0.8890339 0.8534799
## 151 0.8540864 0.9010727 0.8721351 0.8534799
## 152 0.8540864 0.8877722 0.8721351 0.8534799
## 153 0.8540864 0.8148148 0.9090369 0.8534799
## 154 0.8540864 0.8148148 0.9090369 0.8534799
## 155 0.8540864 0.9010727 0.9090369 0.8534799
## 156 0.8540864 0.9321055 0.9090369 0.8534799
## 157 0.8540864 0.9321055 0.8874696 0.8534799
## 158 0.8540864 0.9321055 0.9090369 0.8534799
## 159 0.9439160 0.9321055 0.8890339 0.8534799
## 160 0.8540864 0.8148148 0.8791400 0.8534799
## 161 0.8540864 0.4949495 0.9090369 0.8534799
## 162 0.8540864 0.9010727 0.9090369 0.8534799
## 163 0.8540864 0.9321055 0.9090369 0.8534799
## 164 0.8540864 0.8148148 0.9090369 0.8534799
## 165 0.8540864 0.9010727 0.8890339 0.8534799
## 166 0.9439160 0.8148148 0.8890339 0.8534799
## 167 0.8540864 0.8864504 0.8721351 0.8534799
## 168 0.8540864 0.8148148 0.8791400 0.8534799
## 169 0.8540864 0.9080000 0.9090369 0.8534799
## 170 0.8540864 0.9321055 0.8890339 0.8534799
## 171 0.8540864 0.8864504 0.8721351 0.8534799
## 172 0.8540864 0.9321055 0.8721351 0.8534799
## 173 0.8540864 0.4949495 0.9090369 0.8534799
## 174 0.8540864 0.9321055 0.8890339 0.8534799
## 175 0.9439160 0.8148148 0.8874696 0.8534799
## 176 0.8540864 0.8877722 0.9090369 0.8534799
## 177 0.8540864 0.9321055 0.8721351 0.8534799
## 178 0.8540864 0.9321055 0.8721351 0.8534799
## 179 0.8540864 0.9010727 0.8721351 0.8534799
## 180 0.8540864 0.9010727 0.8890339 0.8534799
## 181 0.8540864 0.9010727 0.8890339 0.8534799
## 182 0.8540864 0.8148148 0.9090369 0.8534799
## 183 0.8540864 0.9321055 0.8721351 0.8534799
## 184 0.9439160 0.9321055 0.8791400 0.8534799
## 185 0.8540864 0.9010727 0.8721351 0.8534799
## 186 0.8540864 0.6137931 0.8791400 0.8534799
## 187 0.8540864 0.9010727 0.8874696 0.8534799
## 188 0.8540864 0.8148148 0.8890339 0.8534799
## 189 0.8540864 0.9321055 0.8721351 0.8534799
## 190 0.8540864 0.8148148 0.9090369 0.8534799
## 191 0.8540864 0.9321055 0.9090369 0.8534799
## 192 0.8540864 0.3750000 0.9090369 0.8534799
## 193 0.8540864 0.6137931 0.9090369 0.8534799
## 194 0.8540864 0.9010727 0.8791400 0.8534799
## 195 0.8540864 0.9321055 0.8721351 0.8534799
## 196 0.8540864 0.9321055 0.8874696 0.8534799
## 197 0.8540864 0.9321055 0.8890339 0.8534799
## 198 0.9439160 0.9321055 0.9090369 0.8534799
## 199 0.8540864 0.9010727 0.9090369 0.8534799
## 200 0.8540864 0.8148148 0.8791400 0.8534799
## 201 0.9439160 0.9321055 0.8874696 0.8534799
## 202 0.8540864 0.8148148 0.8791400 0.8534799
## 203 0.8540864 0.8864504 0.8721351 0.8534799
## 204 0.9439160 0.9321055 0.9090369 0.8534799
## 205 0.8540864 0.9010727 0.8721351 0.8534799
## 206 0.8540864 0.5408163 0.8791400 0.8534799
## 207 0.8540864 0.8864504 0.9090369 0.8534799
## 208 0.8540864 0.8877722 0.8721351 0.8534799
## 209 0.8540864 0.9010727 0.8721351 0.8534799
## 210 0.8540864 0.8877722 0.9090369 0.8534799
## 211 0.8540864 0.9321055 0.8874696 0.8534799
## 212 0.8540864 0.9010727 0.8890339 0.8534799
## 213 0.8540864 0.9321055 0.8721351 0.8534799
## 214 0.8540864 0.9321055 0.8890339 0.8534799
## 215 0.8540864 0.9010727 0.8874696 0.8534799
## 216 0.8540864 0.9080000 0.8791400 0.8534799
## 217 0.8540864 0.8148148 0.8890339 0.8534799
## 218 0.8540864 0.8148148 0.8890339 0.8534799
## 219 0.8540864 0.9010727 0.8721351 0.8534799
## 220 0.8540864 0.8864504 0.8721351 0.8534799
## 221 0.8540864 0.8877722 0.8721351 0.8534799
## 222 0.8540864 0.9010727 0.8890339 0.8534799
## 223 0.9439160 0.6137931 0.8890339 0.8534799
## 224 0.9439160 0.9080000 0.8791400 0.8534799
## 225 0.8540864 0.9321055 0.8874696 0.8534799
## 226 0.9439160 0.9010727 0.8791400 0.8534799
## 227 0.8540864 0.9321055 0.9090369 0.8534799
## 228 0.8540864 0.8877722 0.9090369 0.8534799
## 229 0.8540864 0.8148148 0.8791400 0.8534799
## 230 0.8540864 0.9010727 0.9090369 0.8534799
## 231 0.8540864 0.9010727 0.8874696 0.8534799
## 232 0.8540864 0.9010727 0.8874696 0.8534799
## 233 0.8540864 0.9010727 0.8721351 0.8534799
## 234 0.8540864 0.8877722 0.8791400 0.8534799
## 235 0.8540864 0.9321055 0.9090369 0.8534799
## 236 0.8540864 0.9010727 0.8890339 0.8534799
## 237 0.8540864 0.5408163 0.8890339 0.8534799
## 238 0.8540864 0.9321055 0.8791400 0.8534799
## 239 0.8540864 0.9321055 0.9090369 0.8534799
## 240 0.8540864 0.9010727 0.8890339 0.8534799
## 241 0.8540864 0.6137931 0.9090369 0.8534799
## 242 0.8540864 0.8877722 0.8890339 0.8534799
## 243 0.8540864 0.8148148 0.8791400 0.8534799
## 244 0.8540864 0.8877722 0.8721351 0.8534799
## 245 0.8540864 0.9321055 0.8874696 0.8534799
## 246 0.8540864 0.5408163 0.8791400 0.8534799
## 247 0.8540864 0.9321055 0.9090369 0.8534799
## 248 0.8540864 0.9321055 0.9090369 0.8534799
## 249 0.8540864 0.9321055 0.9090369 0.8534799
## 250 0.8540864 0.5408163 0.8721351 0.8534799
## 251 0.8540864 0.8148148 0.8721351 0.8534799
## 252 0.9439160 0.9010727 0.8890339 0.8534799
## 253 0.8540864 0.9080000 0.8791400 0.8534799
## 254 0.8540864 0.9321055 0.8721351 0.8534799
## 255 0.8540864 0.8148148 0.8890339 0.8534799
## 256 0.8540864 0.8864504 0.8791400 0.8534799
## 257 0.9439160 0.9321055 0.8890339 0.8534799
## 258 0.8540864 0.9321055 0.8721351 0.8534799
## 259 0.8540864 0.8148148 0.8791400 0.8534799
## 260 0.8540864 0.9010727 0.9090369 0.8534799
## 261 0.8540864 0.9321055 0.8791400 0.8534799
## 262 0.8540864 0.6137931 0.9090369 0.8534799
## 263 0.8540864 0.8877722 0.9090369 0.8534799
## 264 0.8540864 0.8877722 0.8791400 0.8534799
## 265 0.8540864 0.8148148 0.9090369 0.8534799
## 266 0.8540864 0.6137931 0.8874696 0.8534799
## 267 0.8540864 0.9321055 0.8791400 0.8534799
## 268 0.8540864 0.9321055 0.8721351 0.8534799
## 269 0.8540864 0.8148148 0.8890339 0.8534799
## 270 0.8540864 0.9010727 0.8874696 0.8534799
## 271 0.8540864 0.9321055 0.8721351 0.8534799
## 272 0.8540864 0.8148148 0.8890339 0.8534799
## 273 0.8540864 0.9080000 0.8890339 0.8534799
## 274 0.9439160 0.8148148 0.9090369 0.8534799
## 275 0.8540864 0.9321055 0.8791400 0.8534799
## 276 0.8540864 0.9321055 0.8890339 0.8534799
## 277 0.8540864 0.9080000 0.8890339 0.8534799
## 278 0.8540864 0.9321055 0.9090369 0.8534799
## 279 0.8540864 0.9321055 0.9090369 0.8534799
## 280 0.8540864 0.8877722 0.9090369 0.8534799
## 281 0.8540864 0.9321055 0.8721351 0.8534799
## 282 0.8540864 0.9010727 0.9090369 0.8534799
## 283 0.8540864 0.9321055 0.8721351 0.8534799
## 284 0.8540864 0.9010727 0.9090369 0.8534799
## 285 0.8540864 0.9321055 0.8791400 0.8534799
## 286 0.8540864 0.6137931 0.8721351 0.8534799
## 287 0.8540864 0.9080000 0.8890339 0.8534799
## 288 0.8540864 0.9321055 0.8890339 0.8534799
## 289 0.8540864 0.8148148 0.9090369 0.8534799
## 290 0.8540864 0.9321055 0.8791400 0.8534799
## 291 0.8540864 0.9321055 0.8890339 0.8534799
## 292 0.8540864 0.9010727 0.8791400 0.8534799
## 293 0.8540864 0.9321055 0.8721351 0.8534799
## 294 0.8540864 0.9321055 0.8791400 0.8534799
## 295 0.8540864 0.9010727 0.9090369 0.8534799
## 296 0.8540864 0.9080000 0.8890339 0.8534799
## 297 0.8540864 0.9321055 0.8890339 0.8534799
## 298 0.8540864 0.9321055 0.8874696 0.8534799
## 299 0.8540864 0.8148148 0.8791400 0.8534799
## 300 0.8540864 0.9321055 0.9090369 0.8534799
## 301 0.8540864 0.9321055 0.8721351 0.8534799
## 302 0.9439160 0.9010727 0.8721351 0.8534799
## 303 0.8540864 0.9321055 0.8890339 0.8534799
## 304 0.8540864 0.9010727 0.8874696 0.8534799
## 305 0.8540864 0.9010727 0.8721351 0.8534799
## 306 0.8540864 0.8148148 0.8721351 0.8534799
## 307 0.8540864 0.4949495 0.8721351 0.8534799
## 308 0.8540864 0.8148148 0.9090369 0.8534799
## 309 0.8540864 0.8148148 0.8791400 0.8534799
## 310 0.8540864 0.8877722 0.8721351 0.8534799
## 311 0.8540864 0.9010727 0.8874696 0.8534799
## 312 0.8540864 0.9010727 0.8721351 0.8534799
## 313 0.8540864 0.9010727 0.8874696 0.8534799
## 314 0.8540864 0.9010727 0.9090369 0.8534799
## 315 0.8540864 0.9321055 0.8721351 0.8534799
## 316 0.8540864 0.9321055 0.8890339 0.8534799
## 317 0.8540864 0.9321055 0.8874696 0.8534799
## 318 0.8540864 0.6137931 0.8890339 0.8534799
## 319 0.8540864 0.8148148 0.8791400 0.8534799
## 320 0.8540864 0.8148148 0.9090369 0.8534799
## 321 0.8540864 0.9321055 0.8791400 0.8534799
## 322 0.8540864 0.9321055 0.8721351 0.8534799
## 323 0.8540864 0.9321055 0.8721351 0.8534799
## 324 0.8540864 0.9010727 0.8721351 0.8534799
## 325 0.8540864 0.3750000 0.8721351 0.8534799
## 326 0.8540864 0.9321055 0.8890339 0.8534799
## 327 0.8540864 0.8877722 0.8874696 0.8534799
## 328 0.8540864 0.6137931 0.9090369 0.8534799
## 329 0.8540864 0.9321055 0.8890339 0.8534799
## 330 0.8540864 0.9321055 0.9090369 0.8534799
## 331 0.8540864 0.9321055 0.8721351 0.8534799
## 332 0.8540864 0.9321055 0.8890339 0.8534799
## 333 0.8540864 0.9010727 0.8791400 0.8534799
## 334 0.8540864 0.9010727 0.8890339 0.8534799
## 335 0.8540864 0.8877722 0.9090369 0.8534799
## 336 0.8540864 0.6137931 0.9090369 0.8534799
## 337 0.8540864 0.9321055 0.8791400 0.8534799
## 338 0.8540864 0.9321055 0.8721351 0.8534799
## 339 0.9439160 0.9321055 0.9090369 0.8534799
## 340 0.8540864 0.9321055 0.8890339 0.8534799
## 341 0.8540864 0.9010727 0.9090369 0.8534799
## 342 0.8540864 0.9321055 0.8890339 0.8534799
## 343 0.8540864 0.9010727 0.8721351 0.8534799
## 344 0.8540864 0.9321055 0.8874696 0.8534799
## 345 0.8540864 0.9321055 0.8874696 0.8534799
## 346 0.9439160 0.9080000 0.8791400 0.8534799
## 347 0.8540864 0.8148148 0.9090369 0.8534799
## 348 0.8540864 0.9321055 0.8874696 0.8534799
## 349 0.8540864 0.9010727 0.8890339 0.8534799
## 350 0.8540864 0.9321055 0.9090369 0.8534799
## 351 0.8540864 0.8864504 0.9090369 0.8534799
## 352 0.8540864 0.8148148 0.8791400 0.8534799
## 353 0.8540864 0.9321055 0.8874696 0.8534799
## 354 0.8540864 0.9010727 0.9090369 0.8534799
## 355 0.8540864 0.9010727 0.8874696 0.8534799
## 356 0.9439160 0.9010727 0.9090369 0.8534799
## 357 0.8540864 0.9321055 0.8874696 0.8534799
## 358 0.8540864 0.9321055 0.8721351 0.8534799
## 359 0.8540864 0.9010727 0.9090369 0.8534799
## 360 0.8540864 0.8148148 0.8890339 0.8534799
## 361 0.8540864 0.9321055 0.9090369 0.8534799
## 362 0.8540864 0.9321055 0.8721351 0.8534799
## 363 0.8540864 0.9321055 0.8874696 0.8534799
## 364 0.8540864 0.9010727 0.8791400 0.8534799
## 365 0.9439160 0.6137931 0.8890339 0.8534799
## 366 0.8540864 0.8877722 0.9090369 0.8534799
## 367 0.9439160 0.8148148 0.9090369 0.8534799
## 368 0.8540864 0.8864504 0.8890339 0.8534799
## 369 0.8540864 0.9321055 0.8890339 0.8534799
## 370 0.8540864 0.9321055 0.8890339 0.8534799
## 371 0.8540864 0.9080000 0.8874696 0.8534799
## 372 0.8540864 0.6137931 0.8791400 0.8534799
## 373 0.8540864 0.9321055 0.8874696 0.8534799
## 374 0.8540864 0.9321055 0.8791400 0.8534799
## 375 0.8540864 0.9321055 0.8721351 0.8534799
## 376 0.8540864 0.8864504 0.8721351 0.8534799
## 377 0.8540864 0.9321055 0.9090369 0.8534799
## 378 0.8540864 0.4949495 0.8791400 0.8534799
## 379 0.8540864 0.6137931 0.8721351 0.8534799
## 380 0.8540864 0.8877722 0.8721351 0.8534799
## 381 0.8540864 0.9321055 0.8874696 0.8534799
## 382 0.8540864 0.9321055 0.8791400 0.8534799
## 383 0.8540864 0.9010727 0.8874696 0.8534799
## 384 0.8540864 0.9321055 0.8874696 0.8534799
## 385 0.8540864 0.9010727 0.9090369 0.8534799
## 386 0.8540864 0.8148148 0.8890339 0.8534799
## 387 0.8540864 0.9321055 0.8721351 0.8534799
## 388 0.8540864 0.9321055 0.8890339 0.8534799
## 389 0.8540864 0.9321055 0.8874696 0.8534799
## 390 0.8540864 0.8148148 0.8791400 0.8534799
## 391 0.8540864 0.9321055 0.9090369 0.8534799
## 392 0.8540864 0.9010727 0.8890339 0.8534799
## 393 0.8540864 0.9321055 0.8874696 0.8534799
## 394 0.8540864 0.8864504 0.9090369 0.8534799
## 395 0.8540864 0.8148148 0.8791400 0.8534799
## 396 0.8540864 0.6137931 0.8721351 0.8534799
## 397 0.8540864 0.8877722 0.8890339 0.8534799
## 398 0.8540864 0.8148148 0.9090369 0.8534799
## 399 0.8540864 0.9321055 0.8890339 0.8534799
## 400 0.8540864 0.9010727 0.8874696 0.8534799
## 401 0.8540864 0.9321055 0.8874696 0.8534799
## 402 0.8540864 0.9321055 0.8890339 0.8534799
## 403 0.8540864 0.9010727 0.9090369 0.8534799
## 404 0.8540864 0.8148148 0.8890339 0.8534799
## 405 0.8540864 0.8864504 0.8721351 0.8534799
## 406 0.8540864 0.9010727 0.9090369 0.8534799
## 407 0.8540864 0.8148148 0.8890339 0.8534799
## 408 0.8540864 0.9321055 0.8791400 0.8534799
## 409 0.8540864 0.8148148 0.8890339 0.8534799
## 410 0.8540864 0.8864504 0.8721351 0.8534799
## 411 0.8540864 0.9321055 0.8791400 0.8534799
## 412 0.8540864 0.9321055 0.8721351 0.8534799
## 413 0.8540864 0.9010727 0.8874696 0.8534799
## 414 0.8540864 0.9010727 0.8874696 0.8534799
## 415 0.8540864 0.9010727 0.8874696 0.8534799
## 416 0.8540864 0.9321055 0.8791400 0.8534799
## 417 0.8540864 0.8148148 0.8721351 0.8534799
## 418 0.8540864 0.9010727 0.8791400 0.8534799
## 419 0.8540864 0.9321055 0.8890339 0.8534799
## 420 0.8540864 0.8148148 0.9090369 0.8534799
## 421 0.8540864 0.9010727 0.8890339 0.8534799
## 422 0.8540864 0.8877722 0.8874696 0.8534799
## 423 0.8540864 0.9010727 0.9090369 0.8534799
## 424 0.8540864 0.9321055 0.8791400 0.8534799
## 425 0.8540864 0.9321055 0.8721351 0.8534799
## 426 0.8540864 0.9321055 0.8874696 0.8534799
## 427 0.8540864 0.4949495 0.8791400 0.8534799
## 428 0.8540864 0.9321055 0.8721351 0.8534799
## 429 0.9439160 0.5408163 0.8721351 0.8534799
## 430 0.8540864 0.9321055 0.9090369 0.8534799
## 431 0.8540864 0.9321055 0.8791400 0.8534799
## 432 0.8540864 0.8148148 0.9090369 0.8534799
## 433 0.8540864 0.9321055 0.8874696 0.8534799
## 434 0.8540864 0.8864504 0.8721351 0.8534799
## 435 0.8540864 0.9321055 0.8791400 0.8534799
## 436 0.8540864 0.9321055 0.8874696 0.8534799
## 437 0.9439160 0.9010727 0.8791400 0.8534799
## 438 0.9439160 0.9010727 0.9090369 0.8534799
## 439 0.8540864 0.9010727 0.8874696 0.8534799
## 440 0.9439160 0.9321055 0.8874696 0.8534799
## 441 0.8540864 0.8148148 0.8874696 0.8534799
## 442 0.8540864 0.8148148 0.8791400 0.8534799
## 443 0.8540864 0.9080000 0.8874696 0.8534799
## 444 0.8540864 0.6137931 0.8874696 0.8534799
## 445 0.8540864 0.8877722 0.8874696 0.8534799
## 446 0.8540864 0.9321055 0.8874696 0.8534799
## 447 0.8540864 0.6137931 0.8890339 0.8534799
## 448 0.9439160 0.9321055 0.8874696 0.8534799
## 449 0.8540864 0.9321055 0.8791400 0.8534799
## 450 0.8540864 0.5408163 0.8721351 0.8534799
## 451 0.8540864 0.8148148 0.8874696 0.8534799
## 452 0.8540864 0.6137931 0.8791400 0.8534799
## 453 0.8540864 0.9321055 0.9090369 0.8534799
## 454 0.8540864 0.9321055 0.8791400 0.8534799
## 455 0.8540864 0.6137931 0.8791400 0.8534799
## 456 0.8540864 0.9321055 0.8721351 0.8534799
## 457 0.8540864 0.9321055 0.9090369 0.8534799
## 458 0.8540864 0.9010727 0.8874696 0.8534799
## 459 0.8540864 0.9321055 0.8874696 0.8534799
## 460 0.8540864 0.9321055 0.8721351 0.8534799
## 461 0.8540864 0.5408163 0.8791400 0.8534799
## 462 0.8540864 0.9321055 0.8890339 0.8534799
## 463 0.8540864 0.9010727 0.8890339 0.8534799
## 464 0.8540864 0.9010727 0.8890339 0.8534799
## 465 0.8540864 0.9010727 0.9090369 0.8534799
## 466 0.8540864 0.8148148 0.8890339 0.8534799
## 467 0.8540864 0.8148148 0.9090369 0.8534799
## 468 0.8540864 0.9321055 0.8890339 0.8534799
## 469 0.8540864 0.9321055 0.8890339 0.8534799
## 470 0.8540864 0.5408163 0.8874696 0.8534799
## 471 0.8540864 0.9321055 0.8874696 0.8534799
## 472 0.8540864 0.8864504 0.8874696 0.8534799
## 473 0.9439160 0.9010727 0.8791400 0.8534799
## 474 0.8540864 0.9321055 0.8721351 0.8534799
## 475 0.8540864 0.9321055 0.9090369 0.8534799
## 476 0.8540864 0.8877722 0.8874696 0.8534799
## 477 0.8540864 0.9321055 0.8890339 0.8534799
## 478 0.8540864 0.8148148 0.8791400 0.8534799
## 479 0.8540864 0.9321055 0.8721351 0.8534799
## 480 0.8540864 0.9321055 0.8721351 0.8534799
## 481 0.8540864 0.3750000 0.9090369 0.8534799
## 482 0.8540864 0.9010727 0.8721351 0.8534799
## 483 0.8540864 0.8877722 0.8791400 0.8534799
## 484 0.8540864 0.5408163 0.8721351 0.8534799
## 485 0.8540864 0.9010727 0.8791400 0.8534799
## 486 0.8540864 0.8877722 0.8791400 0.8534799
## 487 0.8540864 0.9010727 0.8890339 0.8534799
## 488 0.8540864 0.9010727 0.8791400 0.8534799
## 489 0.8540864 0.9321055 0.8874696 0.8534799
## 490 0.8540864 0.9010727 0.8890339 0.8534799
## 491 0.8540864 0.5408163 0.8874696 0.8534799
## 492 0.8540864 0.9321055 0.8721351 0.8534799
## 493 0.8540864 0.9321055 0.8874696 0.8534799
## 494 0.9439160 0.8877722 0.8874696 0.8534799
## 495 0.8540864 0.8148148 0.8890339 0.8534799
## 496 0.8540864 0.9321055 0.8874696 0.8534799
## 497 0.8540864 0.9010727 0.8721351 0.8534799
## 498 0.8540864 0.9321055 0.8874696 0.8534799
## 499 0.8540864 0.9321055 0.9090369 0.8534799
## 500 0.8540864 0.8864504 0.8721351 0.8534799
## 501 0.8540864 0.9010727 0.8791400 0.8534799
## 502 0.8540864 0.9321055 0.8721351 0.8534799
## 503 0.8540864 0.9010727 0.8721351 0.8534799
## 504 0.8540864 0.9321055 0.8791400 0.8534799
## 505 0.8540864 0.5408163 0.8721351 0.8534799
## 506 0.8540864 0.9321055 0.8874696 0.8534799
## 507 0.9439160 0.9321055 0.8890339 0.8534799
## 508 0.8540864 0.9010727 0.8890339 0.8534799
## 509 0.8540864 0.9321055 0.8721351 0.8534799
## 510 0.8540864 0.9010727 0.8874696 0.8534799
## 511 0.8540864 0.8148148 0.8791400 0.8534799
## 512 0.8540864 0.8148148 0.8890339 0.8534799
## 513 0.8540864 0.9010727 0.8721351 0.8534799
## 514 0.8540864 0.9321055 0.9090369 0.8534799
## 515 0.8540864 0.9010727 0.8890339 0.8534799
## 516 0.8540864 0.8148148 0.8890339 0.8534799
## 517 0.8540864 0.9321055 0.8874696 0.8534799
## 518 0.9439160 0.9321055 0.8721351 0.8534799
## 519 0.8540864 0.8877722 0.8721351 0.8534799
## 520 0.8540864 0.8864504 0.8791400 0.8534799
## 521 0.9439160 0.9321055 0.8791400 0.8534799
## 522 0.8540864 0.9321055 0.8721351 0.8534799
## 523 0.8540864 0.9321055 0.8791400 0.8534799
## 524 0.8540864 0.8148148 0.8874696 0.8534799
## 525 0.8540864 0.9321055 0.8890339 0.8534799
## 526 0.8540864 0.9321055 0.9090369 0.8534799
## 527 0.8540864 0.9010727 0.8874696 0.8534799
## 528 0.8540864 0.9321055 0.9090369 0.8534799
## 529 0.8540864 0.9321055 0.8721351 0.8534799
## 530 0.8540864 0.9321055 0.8791400 0.8534799
## 531 0.8540864 0.8148148 0.8890339 0.8534799
## 532 0.8540864 0.8148148 0.8890339 0.8534799
## 533 0.8540864 0.9321055 0.8721351 0.8534799
## 534 0.8540864 0.9080000 0.9090369 0.8534799
## 535 0.8540864 0.9010727 0.8874696 0.8534799
## 536 0.8540864 0.8864504 0.8874696 0.8534799
## 537 0.8540864 0.9321055 0.8791400 0.8534799
## 538 0.8540864 0.9321055 0.8890339 0.8534799
## 539 0.8540864 0.9321055 0.8890339 0.8534799
## 540 0.8540864 0.9321055 0.8721351 0.8534799
## 541 0.8540864 0.6137931 0.8721351 0.8534799
## 542 0.8540864 0.9321055 0.8721351 0.8534799
## 543 0.8540864 0.9321055 0.8791400 0.8534799
## 544 0.8540864 0.9010727 0.8890339 0.8534799
## 545 0.8540864 0.9321055 0.9090369 0.8534799
## 546 0.8540864 0.8877722 0.8890339 0.8534799
## 547 0.8540864 0.9321055 0.8791400 0.8534799
## 548 0.8540864 0.9010727 0.8721351 0.8534799
## 549 0.8540864 0.8877722 0.9090369 0.8534799
## 550 0.9439160 0.5408163 0.8874696 0.8534799
## 551 0.8540864 0.9321055 0.8791400 0.8534799
## 552 0.8540864 0.9321055 0.8890339 0.8534799
## 553 0.8540864 0.8148148 0.8874696 0.8534799
## 554 0.9439160 0.8148148 0.8791400 0.8534799
## 555 0.8540864 0.5408163 0.8721351 0.8534799
## 556 0.8540864 0.8148148 0.9090369 0.8534799
## 557 0.9439160 0.8148148 0.8791400 0.8534799
## 558 0.8540864 0.8148148 0.8791400 0.8534799
## 559 0.8540864 0.9321055 0.8791400 0.8534799
## 560 0.8540864 0.9010727 0.9090369 0.8534799
## 561 0.8540864 0.9321055 0.8874696 0.8534799
## 562 0.8540864 0.8877722 0.8791400 0.8534799
## 563 0.8540864 0.8148148 0.8721351 0.8534799
## 564 0.8540864 0.9010727 0.8890339 0.8534799
## 565 0.8540864 0.9321055 0.8874696 0.8534799
## 566 0.8540864 0.8148148 0.9090369 0.8534799
## 567 0.8540864 0.9321055 0.8890339 0.8534799
## 568 0.8540864 0.8877722 0.8721351 0.8534799
## 569 0.8540864 0.9321055 0.8890339 0.8534799
## 570 0.8540864 0.9321055 0.9090369 0.8534799
## 571 0.9439160 0.8148148 0.9090369 0.8534799
## 572 0.8540864 0.9321055 0.8791400 0.8534799
## 573 0.8540864 0.9321055 0.9090369 0.8534799
## 574 0.9439160 0.9321055 0.8721351 0.8534799
## 575 0.8540864 0.4949495 0.8890339 0.8534799
## 576 0.8540864 0.8148148 0.8874696 0.8534799
## 577 0.8540864 0.9321055 0.9090369 0.8534799
## 578 0.8540864 0.9321055 0.8791400 0.8534799
## 579 0.8540864 0.8864504 0.8874696 0.8534799
## 580 0.8540864 0.3750000 0.8874696 0.8534799
## 581 0.8540864 0.8148148 0.9090369 0.8534799
## 582 0.8540864 0.9010727 0.9090369 0.8534799
## 583 0.8540864 0.5408163 0.8721351 0.8534799
## 584 0.8540864 0.9321055 0.8874696 0.8534799
## 585 0.8540864 0.9321055 0.9090369 0.8534799
## 586 0.8540864 0.8864504 0.8721351 0.8534799
## 587 0.8540864 0.9321055 0.8874696 0.8534799
## 588 0.8540864 0.9010727 0.8791400 0.8534799
## 589 0.8540864 0.8148148 0.9090369 0.8534799
## 590 0.8540864 0.9321055 0.9090369 0.8534799
## 591 0.8540864 0.9321055 0.8890339 0.8534799
## 592 0.9439160 0.9321055 0.8874696 0.8534799
## 593 0.8540864 0.9321055 0.9090369 0.8534799
## 594 0.9439160 0.9010727 0.8874696 0.8534799
## 595 0.8540864 0.9010727 0.8721351 0.8534799
## 596 0.8540864 0.9321055 0.8874696 0.8534799
## 597 0.8540864 0.9010727 0.8721351 0.8534799
## 598 0.8540864 0.9010727 0.8791400 0.8534799
## 599 0.8540864 0.4949495 0.8721351 0.8534799
## 600 0.8540864 0.6137931 0.9090369 0.8534799
## 601 0.8540864 0.9010727 0.8890339 0.8534799
## 602 0.8540864 0.9010727 0.8791400 0.8534799
## 603 0.8540864 0.9010727 0.8874696 0.8534799
## 604 0.8540864 0.9010727 0.8721351 0.8534799
## 605 0.8540864 0.9321055 0.8890339 0.8534799
## 606 0.8540864 0.8877722 0.9090369 0.8534799
## 607 0.8540864 0.9010727 0.8874696 0.8534799
## 608 0.8540864 0.9080000 0.8721351 0.8534799
## 609 0.8540864 0.9321055 0.8874696 0.8534799
## 610 0.8540864 0.9321055 0.9090369 0.8534799
## 611 0.8540864 0.9321055 0.8791400 0.8534799
## 612 0.8540864 0.8148148 0.8874696 0.8534799
## 613 0.8540864 0.9321055 0.9090369 0.8534799
## 614 0.8540864 0.9321055 0.8874696 0.8534799
## 615 0.8540864 0.9321055 0.8721351 0.8534799
## 616 0.8540864 0.8148148 0.8791400 0.8534799
## 617 0.8540864 0.8148148 0.8791400 0.8534799
## 618 0.8540864 0.9080000 0.8721351 0.8534799
## 619 0.8540864 0.8148148 0.9090369 0.8534799
## 620 0.9439160 0.9321055 0.8874696 0.8534799
## 621 0.8540864 0.8148148 0.8890339 0.8534799
## 622 0.8540864 0.9321055 0.8890339 0.8534799
## 623 0.8540864 0.9010727 0.9090369 0.8534799
## 624 0.8540864 0.8877722 0.9090369 0.8534799
## 625 0.8540864 0.9321055 0.9090369 0.8534799
## 626 0.8540864 0.9321055 0.8721351 0.8534799
## 627 0.8540864 0.9010727 0.8874696 0.8534799
## 628 0.8540864 0.4949495 0.8791400 0.8534799
## 629 0.8540864 0.9321055 0.8791400 0.8534799
## 630 0.8540864 0.6137931 0.8721351 0.8534799
## 631 0.8540864 0.9010727 0.8721351 0.8534799
## 632 0.8540864 0.8148148 0.8791400 0.8534799
## 633 0.8540864 0.6137931 0.9090369 0.8534799
## 634 0.8540864 0.9010727 0.8874696 0.8534799
## 635 0.8540864 0.6137931 0.8874696 0.8534799
## 636 0.8540864 0.9321055 0.9090369 0.8534799
## 637 0.8540864 0.9321055 0.8791400 0.8534799
## 638 0.8540864 0.9010727 0.8874696 0.8534799
## 639 0.8540864 0.9321055 0.8874696 0.8534799
## 640 0.8540864 0.9010727 0.8890339 0.8534799
## 641 0.8540864 0.9010727 0.8890339 0.8534799
## 642 0.8540864 0.9010727 0.8874696 0.8534799
## 643 0.8540864 0.9321055 0.8791400 0.8534799
## 644 0.8540864 0.9321055 0.8721351 0.8534799
## 645 0.8540864 0.9080000 0.8791400 0.8534799
## 646 0.8540864 0.9321055 0.8721351 0.8534799
## 647 0.9439160 0.4949495 0.8874696 0.8534799
## 648 0.8540864 0.9321055 0.8721351 0.8534799
## 649 0.9439160 0.9010727 0.8874696 0.8534799
## 650 0.8540864 0.9321055 0.8791400 0.8534799
## 651 0.8540864 0.9321055 0.8721351 0.8534799
## 652 0.8540864 0.8877722 0.8791400 0.8534799
## 653 0.8540864 0.8877722 0.8874696 0.8534799
## 654 0.8540864 0.9010727 0.8874696 0.8534799
## 655 0.8540864 0.9010727 0.8721351 0.8534799
## 656 0.8540864 0.9010727 0.8890339 0.8534799
## 657 0.8540864 0.9321055 0.8791400 0.8534799
## 658 0.8540864 0.9321055 0.8791400 0.8534799
## 659 0.8540864 0.9321055 0.8721351 0.8534799
## 660 0.8540864 0.8148148 0.9090369 0.8534799
## 661 0.8540864 0.9321055 0.8890339 0.8534799
## 662 0.8540864 0.9321055 0.9090369 0.8534799
## 663 0.8540864 0.9321055 0.8874696 0.8534799
## 664 0.8540864 0.9321055 0.8721351 0.8534799
## 665 0.8540864 0.9321055 0.8791400 0.8534799
## 666 0.8540864 0.9321055 0.8721351 0.8534799
## 667 0.8540864 0.9010727 0.8721351 0.8534799
## 668 0.8540864 0.9010727 0.8890339 0.8534799
## 669 0.8540864 0.9010727 0.9090369 0.8534799
## 670 0.8540864 0.8148148 0.9090369 0.8534799
## 671 0.8540864 0.9321055 0.8721351 0.8534799
## 672 0.8540864 0.8148148 0.8890339 0.8534799
## 673 0.8540864 0.9321055 0.8874696 0.8534799
## 674 0.8540864 0.8148148 0.8791400 0.8534799
## 675 0.8540864 0.9321055 0.8721351 0.8534799
## 676 0.8540864 0.9010727 0.8874696 0.8534799
## 677 0.8540864 0.8148148 0.8791400 0.8534799
## 678 0.8540864 0.9321055 0.8874696 0.8534799
## 679 0.8540864 0.9321055 0.8874696 0.8534799
## 680 0.9439160 0.9321055 0.8791400 0.8534799
## 681 0.8540864 0.9010727 0.9090369 0.8534799
## 682 0.8540864 0.8877722 0.9090369 0.8534799
## 683 0.9439160 0.9321055 0.8721351 0.8534799
## 684 0.8540864 0.8864504 0.8721351 0.8534799
## 685 0.8540864 0.9010727 0.8874696 0.8534799
## 686 0.8540864 0.9321055 0.8721351 0.8534799
## 687 0.8540864 0.9321055 0.8890339 0.8534799
## 688 0.8540864 0.9010727 0.8890339 0.8534799
## 689 0.8540864 0.9321055 0.8721351 0.8534799
## 690 0.8540864 0.9321055 0.8791400 0.8534799
## 691 0.8540864 0.9010727 0.8874696 0.8534799
## 692 0.8540864 0.8148148 0.8890339 0.8534799
## 693 0.8540864 0.9080000 0.8791400 0.8534799
## 694 0.8540864 0.8148148 0.8791400 0.8534799
## 695 0.8540864 0.9321055 0.8721351 0.8534799
## 696 0.8540864 0.4949495 0.8874696 0.8534799
## 697 0.8540864 0.8148148 0.9090369 0.8534799
## 698 0.8540864 0.9010727 0.8791400 0.8534799
## 699 0.8540864 0.9010727 0.8874696 0.8534799
## 700 0.8540864 0.9010727 0.9090369 0.8534799
## 701 0.8540864 0.9321055 0.9090369 0.8534799
## 702 0.8540864 0.9321055 0.8874696 0.8534799
## 703 0.8540864 0.9321055 0.8890339 0.8534799
## 704 0.8540864 0.9321055 0.8721351 0.8534799
## 705 0.8540864 0.9321055 0.9090369 0.8534799
## 706 0.8540864 0.8877722 0.8791400 0.8534799
## 707 0.8540864 0.9321055 0.8890339 0.8534799
## 708 0.8540864 0.9321055 0.8890339 0.8534799
## 709 0.8540864 0.9010727 0.8791400 0.8534799
## 710 0.8540864 0.9321055 0.8890339 0.8534799
## 711 0.8540864 0.9010727 0.8721351 0.8534799
## 712 0.8540864 0.9010727 0.8791400 0.8534799
## 713 0.8540864 0.9321055 0.8874696 0.8534799
## 714 0.8540864 0.9010727 0.8721351 0.8534799
## 715 0.8540864 0.9010727 0.8874696 0.8534799
## 716 0.8540864 0.9321055 0.8874696 0.8534799
## 717 0.8540864 0.9010727 0.8874696 0.8534799
## 718 0.8540864 0.9321055 0.8874696 0.8534799
## 719 0.8540864 0.9321055 0.9090369 0.8534799
## 720 0.8540864 0.9321055 0.8721351 0.8534799
## 721 0.8540864 0.9010727 0.8874696 0.8534799
## 722 0.8540864 0.9321055 0.8874696 0.8534799
## 723 0.8540864 0.9321055 0.8890339 0.8534799
## 724 0.8540864 0.9010727 0.8791400 0.8534799
## 725 0.8540864 0.6137931 0.8791400 0.8534799
## 726 0.8540864 0.8877722 0.8721351 0.8534799
## 727 0.8540864 0.9321055 0.9090369 0.8534799
## 728 0.8540864 0.9321055 0.9090369 0.8534799
## 729 0.8540864 0.4949495 0.8791400 0.8534799
## 730 0.9439160 0.8148148 0.9090369 0.8534799
## 731 0.8540864 0.9010727 0.8890339 0.8534799
## 732 0.8540864 0.9321055 0.9090369 0.8534799
## 733 0.8540864 0.9321055 0.8874696 0.8534799
## 734 0.8540864 0.8877722 0.8874696 0.8534799
## 735 0.8540864 0.9010727 0.8721351 0.8534799
## 736 0.8540864 0.8148148 0.8791400 0.8534799
## 737 0.8540864 0.8864504 0.8874696 0.8534799
## 738 0.8540864 0.8148148 0.8721351 0.8534799
## 739 0.8540864 0.8864504 0.9090369 0.8534799
## 740 0.8540864 0.8877722 0.8721351 0.8534799
## 741 0.8540864 0.6137931 0.8791400 0.8534799
## 742 0.8540864 0.9321055 0.8874696 0.8534799
## 743 0.8540864 0.9321055 0.8791400 0.8534799
## 744 0.8540864 0.9321055 0.8874696 0.8534799
## 745 0.8540864 0.9321055 0.8791400 0.8534799
## 746 0.8540864 0.9321055 0.9090369 0.8534799
## 747 0.8540864 0.9321055 0.8874696 0.8534799
## 748 0.8540864 0.9321055 0.8721351 0.8534799
## 749 0.8540864 0.9321055 0.8721351 0.8534799
## 750 0.9439160 0.9080000 0.8791400 0.8534799
## 751 0.8540864 0.9321055 0.9090369 0.8534799
## 752 0.8540864 0.9321055 0.8791400 0.8534799
## 753 0.8540864 0.8864504 0.8721351 0.8534799
## 754 0.8540864 0.9321055 0.8721351 0.8534799
## 755 0.8540864 0.8148148 0.8791400 0.8534799
## 756 0.8540864 0.8148148 0.8874696 0.8534799
## 757 0.8540864 0.9010727 0.8890339 0.8534799
## 758 0.8540864 0.9010727 0.8874696 0.8534799
## 759 0.8540864 0.9010727 0.8721351 0.8534799
## 760 0.8540864 0.9321055 0.8874696 0.8534799
## 761 0.8540864 0.9321055 0.8791400 0.8534799
## 762 0.8540864 0.8148148 0.8890339 0.8534799
## 763 0.8540864 0.9010727 0.8791400 0.8534799
## 764 0.8540864 0.8877722 0.8874696 0.8534799
## 765 0.8540864 0.9321055 0.8890339 0.8534799
## 766 0.8540864 0.5408163 0.8721351 0.8534799
## 767 0.8540864 0.9321055 0.8791400 0.8534799
## 768 0.9439160 0.4949495 0.8890339 0.8534799
## 769 0.8540864 0.9010727 0.9090369 0.8534799
## 770 0.8540864 0.5408163 0.8890339 0.8534799
## 771 0.8540864 0.9010727 0.9090369 0.8534799
## 772 0.8540864 0.9321055 0.8874696 0.8534799
## 773 0.8540864 0.9321055 0.8721351 0.8534799
## 774 0.8540864 0.9321055 0.8874696 0.8534799
## 775 0.8540864 0.8148148 0.8791400 0.8534799
## 776 0.8540864 0.6137931 0.8721351 0.8534799
## 777 0.8540864 0.6137931 0.8874696 0.8534799
## 778 0.8540864 0.8148148 0.8791400 0.8534799
## 779 0.8540864 0.9321055 0.8890339 0.8534799
## 780 0.8540864 0.9080000 0.8791400 0.8534799
## 781 0.8540864 0.5408163 0.8721351 0.8534799
## 782 0.8540864 0.6137931 0.8721351 0.8534799
## 783 0.8540864 0.6137931 0.8874696 0.8534799
## 784 0.8540864 0.9010727 0.8721351 0.8534799
## 785 0.8540864 0.6137931 0.9090369 0.8534799
## 786 0.8540864 0.9321055 0.8874696 0.8534799
## 787 0.8540864 0.5408163 0.9090369 0.8534799
## 788 0.8540864 0.9321055 0.9090369 0.8534799
## 789 0.8540864 0.6137931 0.8874696 0.8534799
## 790 0.8540864 0.9321055 0.9090369 0.8534799
## 791 0.9439160 0.8148148 0.8874696 0.8534799
## 792 0.8540864 0.9321055 0.8874696 0.8534799
## 793 0.8540864 0.9010727 0.9090369 0.8534799
## 794 0.8540864 0.5408163 0.8791400 0.8534799
## 795 0.8540864 0.9010727 0.8721351 0.8534799
## 796 0.8540864 0.9321055 0.8874696 0.8534799
## 797 0.8540864 0.8877722 0.8721351 0.8534799
## 798 0.8540864 0.9010727 0.9090369 0.8534799
## 799 0.8540864 0.4949495 0.8791400 0.8534799
## 800 0.9439160 0.9010727 0.8890339 0.8534799
## 801 0.8540864 0.8864504 0.8874696 0.8534799
## 802 0.8540864 0.8877722 0.8721351 0.8534799
## 803 0.9439160 0.9321055 0.8890339 0.8534799
## 804 0.8540864 0.9321055 0.8791400 0.8534799
## 805 0.8540864 0.9321055 0.8874696 0.8534799
## 806 0.8540864 0.8148148 0.8791400 0.8534799
## 807 0.8540864 0.6137931 0.8874696 0.8534799
## 808 0.8540864 0.8877722 0.8874696 0.8534799
## 809 0.8540864 0.9010727 0.8791400 0.8534799
## 810 0.8540864 0.9010727 0.8874696 0.8534799
## 811 0.9439160 0.9010727 0.8874696 0.8534799
## 812 0.8540864 0.8148148 0.9090369 0.8534799
## 813 0.8540864 0.9321055 0.8874696 0.8534799
## 814 0.8540864 0.9321055 0.8874696 0.8534799
## 815 0.8540864 0.8877722 0.9090369 0.8534799
## 816 0.8540864 0.9321055 0.9090369 0.8534799
## 817 0.8540864 0.9010727 0.8874696 0.8534799
## 818 0.8540864 0.9010727 0.8721351 0.8534799
## 819 0.8540864 0.6137931 0.8874696 0.8534799
## 820 0.8540864 0.8877722 0.8890339 0.9110335
## 821 0.8540864 0.9010727 0.8890339 0.9110335
## 822 0.9439160 0.9321055 0.8890339 0.9110335
## 823 0.8540864 0.4949495 0.8890339 0.9110335
## 824 0.8540864 0.8877722 0.8890339 0.9110335
## 825 0.8540864 0.9321055 0.8890339 0.9110335
## 826 0.8540864 0.8877722 0.8890339 0.9110335
## 827 0.8540864 0.9321055 0.8890339 0.9110335
## 828 0.8540864 0.8877722 0.8890339 0.9110335
## 829 0.8540864 0.8877722 0.8890339 0.9110335
## 830 0.8540864 0.8877722 0.8890339 0.9110335
## 831 0.8540864 0.8877722 0.8890339 0.9110335
## 832 0.9439160 0.9321055 0.8890339 0.9110335
## 833 0.8540864 0.9080000 0.8890339 0.9110335
## 834 0.9439160 0.9321055 0.8890339 0.9110335
## 835 0.8540864 0.8148148 0.8890339 0.9110335
## 836 0.9439160 0.9321055 0.8890339 0.9110335
## 837 0.9439160 0.8864504 0.8890339 0.9110335
## 838 0.8540864 0.9080000 0.8890339 0.9110335
## 839 0.9439160 0.8864504 0.8890339 0.9110335
## 840 0.9439160 0.9321055 0.8890339 0.9110335
## 841 0.8540864 0.8148148 0.8890339 0.9110335
## 842 0.8540864 0.8148148 0.8890339 0.9110335
## 843 0.9439160 0.9321055 0.9090369 0.9110335
## 844 0.8540864 0.8148148 0.8890339 0.9110335
## 845 0.8540864 0.8148148 0.8890339 0.9110335
## 846 0.8540864 0.8148148 0.8890339 0.9110335
## 847 0.8540864 0.9321055 0.8890339 0.9110335
## 848 0.9439160 0.9321055 0.8890339 0.9110335
## 849 0.8540864 0.9080000 0.8890339 0.9110335
## 850 0.8540864 0.9321055 0.8890339 0.9110335
## 851 0.9439160 0.8864504 0.8890339 0.9110335
## 852 0.8540864 0.9321055 0.8890339 0.9110335
## 853 0.8540864 0.8148148 0.8890339 0.9110335
## 854 0.8540864 0.9321055 0.8890339 0.9110335
## 855 0.8540864 0.8877722 0.8890339 0.9110335
## 856 0.8540864 0.9321055 0.8890339 0.9110335
## 857 0.9439160 0.9321055 0.8890339 0.9110335
## 858 0.8540864 0.9080000 0.8890339 0.9110335
## 859 0.9439160 0.8148148 0.8890339 0.9110335
## 860 0.8540864 0.8148148 0.8890339 0.9110335
## 861 0.9439160 0.9321055 0.8890339 0.9110335
## 862 0.8540864 0.9321055 0.8890339 0.9110335
## 863 0.8540864 0.9321055 0.8890339 0.9110335
## 864 0.8540864 0.9080000 0.8890339 0.9110335
## 865 0.9439160 0.9321055 0.8890339 0.9110335
## 866 0.9439160 0.9321055 0.8890339 0.9110335
## 867 0.9439160 0.9080000 0.8890339 0.9110335
## 868 0.8540864 0.8148148 0.8890339 0.9110335
## 869 0.8540864 0.8148148 0.8890339 0.9110335
## 870 0.9439160 0.9321055 0.8890339 0.9110335
## 871 0.8540864 0.9080000 0.8890339 0.9110335
## 872 0.8540864 0.8148148 0.8890339 0.9110335
## 873 0.8540864 0.9321055 0.8890339 0.9110335
## 874 0.8540864 0.8148148 0.8890339 0.9110335
## 875 0.9439160 0.9321055 0.8890339 0.9110335
## 876 0.8540864 0.9080000 0.8890339 0.9110335
## 877 0.8540864 0.9080000 0.8890339 0.9110335
## 878 0.9439160 0.9321055 0.9090369 0.9110335
## 879 0.9439160 0.9321055 0.8890339 0.9110335
## 880 0.9439160 0.9321055 0.8890339 0.9110335
## 881 0.8540864 0.8877722 0.8890339 0.9110335
## 882 0.9439160 0.9321055 0.8890339 0.9110335
## 883 0.8540864 0.8148148 0.8890339 0.9110335
## 884 0.9439160 0.9321055 0.8890339 0.9110335
## 885 0.9439160 0.8864504 0.8890339 0.9110335
## 886 0.9439160 0.9080000 0.8890339 0.9110335
## 887 0.9439160 0.9321055 0.8890339 0.9110335
## 888 0.9439160 0.9321055 0.8890339 0.9110335
## 889 0.9439160 0.8864504 0.8890339 0.9110335
## 890 0.8540864 0.9010727 0.8890339 0.9110335
## 891 0.9439160 0.9321055 0.8890339 0.9110335
## 892 0.8540864 0.8864504 0.8890339 0.9110335
## 893 0.8540864 0.9321055 0.8890339 0.9110335
## 894 0.9439160 0.8864504 0.8890339 0.9110335
## 895 0.9439160 0.9321055 0.8890339 0.9110335
## 896 0.8540864 0.5408163 0.8890339 0.9110335
## 897 0.9439160 0.9321055 0.8890339 0.9110335
## 898 0.8540864 0.9321055 0.8890339 0.9110335
## 899 0.8540864 0.8148148 0.8890339 0.9110335
## 900 0.8540864 0.8877722 0.8890339 0.9110335
## 901 0.9439160 0.9080000 0.8890339 0.9110335
## 902 0.8540864 0.8148148 0.8890339 0.9110335
## 903 0.8540864 0.8148148 0.8890339 0.9110335
## 904 0.9439160 0.9321055 0.9090369 0.9110335
## 905 0.9439160 0.8864504 0.8890339 0.9110335
## 906 0.9439160 0.8864504 0.8890339 0.9110335
## 907 0.8540864 0.8877722 0.8890339 0.9110335
## 908 0.9439160 0.8864504 0.8890339 0.9110335
## 909 0.8540864 0.8877722 0.8890339 0.9110335
## 910 0.9439160 0.9321055 0.8890339 0.9110335
## 911 0.9439160 0.9321055 0.8890339 0.9110335
## 912 0.9439160 0.9321055 0.8890339 0.9110335
## 913 0.9439160 0.8864504 0.8890339 0.9110335
## 914 0.9439160 0.8864504 0.8890339 0.9110335
## 915 0.8540864 0.9080000 0.8890339 0.9110335
## 916 0.8540864 0.8877722 0.8890339 0.9110335
## 917 0.9439160 0.9321055 0.8890339 0.9110335
## 918 0.8540864 0.8877722 0.8890339 0.9110335
## 919 0.8540864 0.8148148 0.8890339 0.9110335
## 920 0.9439160 0.8864504 0.8890339 0.9110335
## 921 0.8540864 0.9080000 0.8890339 0.9110335
## 922 0.9439160 0.8864504 0.8890339 0.9110335
## 923 0.9439160 0.9321055 0.8890339 0.9110335
## 924 0.9439160 0.8864504 0.8890339 0.9110335
## 925 0.8540864 0.9321055 0.8890339 0.9110335
## 926 0.8540864 0.9080000 0.8890339 0.9110335
## 927 0.9439160 0.9010727 0.8890339 0.9110335
## 928 0.8540864 0.8148148 0.8890339 0.9110335
## 929 0.8540864 0.8877722 0.8890339 0.9110335
## 930 0.8540864 0.9080000 0.8890339 0.9110335
## 931 0.9439160 0.8864504 0.8890339 0.9110335
## 932 0.9439160 0.9321055 0.8890339 0.9110335
## 933 0.9439160 0.9321055 0.8890339 0.9110335
## 934 0.8540864 0.9010727 0.8890339 0.9110335
## 935 0.8540864 0.8148148 0.8890339 0.9110335
## 936 0.8540864 0.9321055 0.8890339 0.9110335
## 937 0.9439160 0.9321055 0.8890339 0.9110335
## 938 0.8540864 0.9080000 0.9090369 0.9110335
## 939 0.8540864 0.9080000 0.8890339 0.9110335
## 940 0.8540864 0.8877722 0.8890339 0.9110335
## 941 0.8540864 0.9080000 0.8890339 0.9110335
## 942 0.9439160 0.9321055 0.8890339 0.9110335
## 943 0.9439160 0.8864504 0.8890339 0.9110335
## 944 0.8540864 0.8877722 0.8890339 0.9110335
## 945 0.8540864 0.9080000 0.8890339 0.9110335
## 946 0.9439160 0.9321055 0.8890339 0.9110335
## 947 0.9439160 0.8864504 0.8890339 0.9110335
## 948 0.8540864 0.9080000 0.8890339 0.9110335
## 949 0.9439160 0.8864504 0.8890339 0.9110335
## 950 0.8540864 0.9080000 0.8890339 0.9110335
## 951 0.8540864 0.9080000 0.8890339 0.9110335
## 952 0.8540864 0.9321055 0.8890339 0.9110335
## 953 0.8540864 0.8877722 0.8890339 0.9110335
## 954 0.8540864 0.8148148 0.8890339 0.9110335
## 955 0.9439160 0.8864504 0.8890339 0.9110335
## 956 0.9439160 0.9321055 0.8890339 0.9110335
## 957 0.8540864 0.9321055 0.8890339 0.9110335
## 958 0.9439160 0.9080000 0.8890339 0.9110335
## 959 0.8540864 0.8877722 0.8890339 0.9110335
## 960 0.8540864 0.9080000 0.8890339 0.9110335
## 961 0.9439160 0.9321055 0.8890339 0.9110335
## 962 0.9439160 0.8877722 0.8890339 0.9110335
## 963 0.9439160 0.8148148 0.8890339 0.9110335
## 964 0.8540864 0.9321055 0.8890339 0.9110335
## 965 0.8540864 0.9080000 0.8890339 0.9110335
## 966 0.8540864 0.8877722 0.8890339 0.9110335
## 967 0.8540864 0.9010727 0.8890339 0.9110335
## 968 0.8540864 0.9080000 0.8890339 0.9110335
## 969 0.9439160 0.9321055 0.8890339 0.9110335
## 970 0.8540864 0.8877722 0.8890339 0.9110335
## 971 0.8540864 0.9080000 0.8890339 0.9110335
## 972 0.8540864 0.9080000 0.8890339 0.9110335
## 973 0.9439160 0.8864504 0.8890339 0.9110335
## 974 0.9439160 0.5408163 0.8890339 0.9110335
## 975 0.9439160 0.9321055 0.8890339 0.9110335
## 976 0.9439160 0.9321055 0.8890339 0.9110335
## 977 0.8540864 0.9010727 0.8890339 0.9110335
## 978 0.8540864 0.9080000 0.8890339 0.9110335
## 979 0.9439160 0.8864504 0.9090369 0.9110335
## 980 0.9439160 0.9080000 0.8890339 0.9110335
## 981 0.9439160 0.9321055 0.8890339 0.9110335
## 982 0.9439160 0.9321055 0.8890339 0.9110335
## 983 0.8540864 0.8148148 0.8890339 0.9110335
## 984 0.9439160 0.8864504 0.8890339 0.9110335
## 985 0.9439160 0.8864504 0.8890339 0.9110335
## 986 0.9439160 0.8148148 0.8890339 0.9110335
## 987 0.9439160 0.9321055 0.8890339 0.9110335
## 988 0.9439160 0.8877722 0.8890339 0.9110335
## 989 0.9439160 0.9321055 0.8890339 0.9110335
## 990 0.8540864 0.9321055 0.8890339 0.9110335
## 991 0.9439160 0.8864504 0.8890339 0.9110335
## 992 0.8540864 0.9010727 0.8890339 0.9110335
## 993 0.8540864 0.8877722 0.8890339 0.9110335
## 994 0.9439160 0.9321055 0.8890339 0.9110335
## 995 0.8540864 0.9321055 0.8890339 0.9110335
## 996 0.9439160 0.8864504 0.8890339 0.9110335
## 997 0.8540864 0.9321055 0.8890339 0.9110335
## 998 0.8540864 0.9321055 0.8890339 0.9110335
## 999 0.9439160 0.9321055 0.8890339 0.9110335
## 1000 0.9439160 0.8148148 0.8890339 0.9110335
## 1001 0.9439160 0.8864504 0.8890339 0.9110335
## 1002 0.9439160 0.8864504 0.8890339 0.9110335
## 1003 0.8540864 0.9080000 0.8890339 0.9110335
## 1004 0.9439160 0.9321055 0.8890339 0.9110335
## 1005 0.8540864 0.8864504 0.8890339 0.9110335
## 1006 0.8540864 0.8877722 0.8890339 0.9110335
## 1007 0.8540864 0.9321055 0.8890339 0.9110335
## 1008 0.9439160 0.9321055 0.8890339 0.9110335
## 1009 0.8540864 0.5408163 0.8890339 0.9110335
## 1010 0.8540864 0.8148148 0.8890339 0.9110335
## 1011 0.8540864 0.9080000 0.8890339 0.9110335
## 1012 0.9439160 0.9080000 0.8890339 0.9110335
## 1013 0.8540864 0.9080000 0.8890339 0.9110335
## 1014 0.8540864 0.8877722 0.8890339 0.9110335
## 1015 0.8540864 0.9080000 0.8890339 0.9110335
## 1016 0.8540864 0.8148148 0.8890339 0.9110335
## 1017 0.9439160 0.9321055 0.8890339 0.9110335
## 1018 0.8540864 0.9321055 0.8890339 0.9110335
## 1019 0.8540864 0.9321055 0.8890339 0.9110335
## 1020 0.8540864 0.9321055 0.8890339 0.9110335
## 1021 0.9439160 0.9321055 0.8890339 0.9110335
## 1022 0.8540864 0.9080000 0.8890339 0.9110335
## 1023 0.8540864 0.9080000 0.8890339 0.9110335
## 1024 0.9439160 0.8864504 0.8890339 0.9110335
## 1025 0.9439160 0.9080000 0.8890339 0.9110335
## 1026 0.9439160 0.8864504 0.8890339 0.9110335
## 1027 0.9439160 0.9321055 0.8890339 0.9110335
## 1028 0.9439160 0.8877722 0.8890339 0.9110335
## 1029 0.8540864 0.9080000 0.8890339 0.9110335
## 1030 0.8540864 0.9080000 0.8890339 0.9110335
## 1031 0.8540864 0.8877722 0.8890339 0.9110335
## 1032 0.9439160 0.8864504 0.8890339 0.9110335
## 1033 0.8540864 0.9321055 0.8890339 0.9110335
## 1034 0.8540864 0.8877722 0.8890339 0.9110335
## 1035 0.8540864 0.8877722 0.8890339 0.9110335
## 1036 0.9439160 0.9321055 0.8890339 0.9110335
## 1037 0.8540864 0.9080000 0.8890339 0.9110335
## 1038 0.8540864 0.9080000 0.8890339 0.9110335
## 1039 0.9439160 0.9321055 0.8890339 0.9110335
## 1040 0.9439160 0.8864504 0.8890339 0.9110335
## 1041 0.9439160 0.8864504 0.8890339 0.9110335
## 1042 0.8540864 0.8877722 0.8890339 0.9110335
## 1043 0.9439160 0.8864504 0.8890339 0.9110335
## 1044 0.8540864 0.9321055 0.8890339 0.9110335
## 1045 0.8540864 0.8877722 0.8890339 0.9110335
## 1046 0.8540864 0.8148148 0.8890339 0.9110335
## 1047 0.8540864 0.9321055 0.8890339 0.9110335
## 1048 0.8540864 0.9080000 0.8890339 0.9110335
## 1049 0.9439160 0.9321055 0.8890339 0.9110335
## 1050 0.8540864 0.9321055 0.8890339 0.9110335
## 1051 0.8540864 0.8877722 0.8890339 0.9110335
## 1052 0.8540864 0.8148148 0.8890339 0.9110335
## 1053 0.9439160 0.9321055 0.8890339 0.9110335
## 1054 0.8540864 0.9080000 0.8890339 0.9110335
## 1055 0.8540864 0.9080000 0.8890339 0.9110335
## 1056 0.9439160 0.8864504 0.8890339 0.9110335
## 1057 0.8540864 0.8148148 0.8890339 0.9110335
## 1058 0.9439160 0.8864504 0.8890339 0.9110335
## 1059 0.9439160 0.8864504 0.8890339 0.9110335
## 1060 0.8540864 0.8148148 0.8890339 0.9110335
## 1061 0.8540864 0.9080000 0.8890339 0.9110335
## 1062 0.8540864 0.8864504 0.8890339 0.9110335
## 1063 0.8540864 0.8864504 0.9090369 0.9110335
## 1064 0.9439160 0.8864504 0.8890339 0.9110335
## 1065 0.8540864 0.9080000 0.8890339 0.9110335
## 1066 0.9439160 0.9321055 0.8890339 0.9110335
## 1067 0.9439160 0.9321055 0.8890339 0.9110335
## 1068 0.8540864 0.9080000 0.8890339 0.9110335
## 1069 0.8540864 0.8877722 0.8890339 0.9110335
## 1070 0.8540864 0.8877722 0.8890339 0.9110335
## 1071 0.8540864 0.9010727 0.8890339 0.9110335
## 1072 0.9439160 0.9321055 0.8890339 0.9110335
## 1073 0.8540864 0.9321055 0.8890339 0.9110335
## 1074 0.8540864 0.8877722 0.8890339 0.9110335
## 1075 0.9439160 0.8864504 0.8890339 0.9110335
## 1076 0.8540864 0.9080000 0.9090369 0.9110335
## 1077 0.8540864 0.8877722 0.8890339 0.9110335
## 1078 0.8540864 0.8148148 0.8890339 0.9110335
## 1079 0.8540864 0.9010727 0.8890339 0.9110335
## 1080 0.8540864 0.8877722 0.8890339 0.9110335
## 1081 0.8540864 0.8148148 0.8890339 0.9110335
## 1082 0.8540864 0.9080000 0.8890339 0.9110335
## 1083 0.8540864 0.8877722 0.8890339 0.9110335
## 1084 0.9439160 0.8864504 0.8890339 0.9110335
## 1085 0.8540864 0.8148148 0.8890339 0.9110335
## 1086 0.9439160 0.9321055 0.8890339 0.9110335
## 1087 0.8540864 0.9321055 0.8890339 0.9110335
## 1088 0.8540864 0.9321055 0.8890339 0.9110335
## 1089 0.9439160 0.8864504 0.8890339 0.9110335
## 1090 0.9439160 0.8864504 0.8890339 0.9110335
## 1091 0.9439160 0.9321055 0.8890339 0.9110335
## 1092 0.8540864 0.8877722 0.8890339 0.9110335
## 1093 0.8540864 0.8877722 0.8890339 0.9110335
## 1094 0.8540864 0.8148148 0.8890339 0.9110335
## 1095 0.8540864 0.9080000 0.8890339 0.9110335
## 1096 0.9439160 0.8864504 0.8890339 0.9110335
## 1097 0.8540864 0.8877722 0.8890339 0.9110335
## 1098 0.8540864 0.9010727 0.8890339 0.9110335
## 1099 0.8540864 0.9321055 0.8890339 0.9110335
## 1100 0.8540864 0.8877722 0.8890339 0.9110335
## 1101 0.9439160 0.9321055 0.8890339 0.9110335
## 1102 0.8540864 0.8877722 0.8890339 0.9110335
## 1103 0.8540864 0.8148148 0.8890339 0.9110335
## 1104 0.8540864 0.9080000 0.8890339 0.9110335
## 1105 0.9439160 0.8864504 0.8890339 0.9110335
## 1106 0.8540864 0.9080000 0.8890339 0.9110335
## 1107 0.9439160 0.9321055 0.8890339 0.9110335
## 1108 0.9439160 0.9321055 0.8890339 0.9110335
## 1109 0.9439160 0.9321055 0.8890339 0.9110335
## 1110 0.9439160 0.9321055 0.8890339 0.9110335
## 1111 0.9439160 0.8864504 0.8890339 0.9110335
## 1112 0.9439160 0.9321055 0.8890339 0.9110335
## 1113 0.9439160 0.9321055 0.8890339 0.9110335
## 1114 0.8540864 0.8877722 0.8890339 0.9110335
## 1115 0.9439160 0.9321055 0.8890339 0.9110335
## 1116 0.8540864 0.9321055 0.8890339 0.9110335
## 1117 0.8540864 0.8877722 0.8890339 0.9110335
## 1118 0.9439160 0.8864504 0.8890339 0.9110335
## 1119 0.8540864 0.9010727 0.8890339 0.9110335
## 1120 0.8540864 0.8148148 0.8890339 0.9110335
## 1121 0.8540864 0.9080000 0.8890339 0.9110335
## 1122 0.9439160 0.9321055 0.8890339 0.9110335
## 1123 0.9439160 0.8864504 0.8890339 0.9110335
## 1124 0.9439160 0.9321055 0.8890339 0.9110335
## 1125 0.9439160 0.9321055 0.8890339 0.9110335
## 1126 0.8540864 0.9080000 0.8890339 0.9110335
## 1127 0.9439160 0.9321055 0.8890339 0.9110335
## 1128 0.9439160 0.9321055 0.8890339 0.9110335
## 1129 0.8540864 0.9321055 0.8890339 0.9110335
## 1130 0.8540864 0.9080000 0.8890339 0.9110335
## 1131 0.9439160 0.9321055 0.8890339 0.9110335
## 1132 0.9439160 0.8864504 0.8890339 0.9110335
## 1133 0.9439160 0.9321055 0.8890339 0.9110335
## 1134 0.8540864 0.8877722 0.8890339 0.9110335
## 1135 0.9439160 0.9321055 0.8890339 0.9110335
## 1136 0.8540864 0.9010727 0.8890339 0.9110335
## 1137 0.9439160 0.8864504 0.8890339 0.9110335
## 1138 0.8540864 0.8877722 0.9090369 0.9110335
## 1139 0.9439160 0.9321055 0.8890339 0.9110335
## 1140 0.8540864 0.9080000 0.8890339 0.9110335
## 1141 0.9439160 0.9080000 0.8890339 0.9110335
## 1142 0.9439160 0.8877722 0.8890339 0.9110335
## 1143 0.9439160 0.8864504 0.8890339 0.9110335
## 1144 0.8540864 0.8148148 0.8890339 0.9110335
## 1145 0.8540864 0.9080000 0.8890339 0.9110335
## 1146 0.8540864 0.9010727 0.8890339 0.9110335
## 1147 0.8540864 0.9080000 0.8890339 0.9110335
## 1148 0.9439160 0.9321055 0.8890339 0.9110335
## 1149 0.9439160 0.8864504 0.8890339 0.9110335
## 1150 0.8540864 0.9010727 0.8890339 0.9110335
## 1151 0.9439160 0.8864504 0.8890339 0.9110335
## 1152 0.9439160 0.8864504 0.8890339 0.9110335
## 1153 0.8540864 0.9080000 0.8890339 0.9110335
## 1154 0.8540864 0.9010727 0.8890339 0.9110335
## 1155 0.9439160 0.8877722 0.8890339 0.9110335
## 1156 0.9439160 0.8864504 0.8890339 0.9110335
## 1157 0.9439160 0.8864504 0.8890339 0.9110335
## 1158 0.8540864 0.8148148 0.8890339 0.9110335
## 1159 0.8540864 0.8877722 0.8890339 0.9110335
## 1160 0.9439160 0.8864504 0.8890339 0.9110335
## 1161 0.9439160 0.8864504 0.8890339 0.9110335
## 1162 0.8540864 0.9321055 0.8890339 0.9110335
## 1163 0.8540864 0.9080000 0.8890339 0.9110335
## 1164 0.8540864 0.8148148 0.8890339 0.9110335
## 1165 0.8540864 0.9321055 0.8890339 0.9110335
## 1166 0.9439160 0.8864504 0.8890339 0.9110335
## 1167 0.9439160 0.9321055 0.8890339 0.9110335
## 1168 0.8540864 0.8877722 0.8890339 0.9110335
## 1169 0.9439160 0.9321055 0.8890339 0.9110335
## 1170 0.9439160 0.8864504 0.8890339 0.9110335
## 1171 0.8540864 0.8148148 0.8890339 0.9110335
## 1172 0.9439160 0.8877722 0.8890339 0.9110335
## 1173 0.8540864 0.9010727 0.8890339 0.9110335
## 1174 0.9439160 0.9321055 0.8890339 0.9110335
## 1175 0.8540864 0.9321055 0.8890339 0.9110335
## 1176 0.8540864 0.8877722 0.8890339 0.9110335
## 1177 0.8540864 0.9010727 0.8890339 0.9110335
## 1178 0.8540864 0.8148148 0.8890339 0.9110335
## 1179 0.9439160 0.8864504 0.8890339 0.9110335
## 1180 0.9439160 0.8864504 0.8890339 0.9110335
## 1181 0.8540864 0.9321055 0.8890339 0.9110335
## 1182 0.8540864 0.8877722 0.8890339 0.9110335
## 1183 0.8540864 0.9010727 0.8890339 0.9110335
## 1184 0.9439160 0.9321055 0.8890339 0.9110335
## 1185 0.8540864 0.9080000 0.8890339 0.9110335
## 1186 0.9439160 0.9321055 0.8890339 0.9110335
## 1187 0.9439160 0.8864504 0.8890339 0.9110335
## 1188 0.9439160 0.8864504 0.8890339 0.9110335
## 1189 0.9439160 0.8864504 0.8890339 0.9110335
## 1190 0.8540864 0.9080000 0.8890339 0.9110335
## 1191 0.8540864 0.9080000 0.8890339 0.9110335
## 1192 0.9439160 0.9010727 0.8890339 0.9110335
## 1193 0.9439160 0.8877722 0.8890339 0.9110335
## 1194 0.9439160 0.9321055 0.8890339 0.9110335
## 1195 0.8540864 0.8877722 0.8890339 0.9110335
## 1196 0.9439160 0.8864504 0.8890339 0.9110335
## 1197 0.9439160 0.8864504 0.8890339 0.9110335
## 1198 0.8540864 0.3750000 0.8890339 0.9110335
## 1199 0.8540864 0.8877722 0.8890339 0.9110335
## 1200 0.8540864 0.8877722 0.8890339 0.9110335
## 1201 0.9439160 0.8864504 0.8890339 0.9110335
## 1202 0.8540864 0.8877722 0.8890339 0.9110335
## 1203 0.8540864 0.8877722 0.8890339 0.9110335
## 1204 0.8540864 0.6137931 0.8890339 0.9110335
## 1205 0.8540864 0.8148148 0.8890339 0.9110335
## 1206 0.8540864 0.8148148 0.8890339 0.9110335
## 1207 0.9439160 0.9321055 0.8890339 0.9110335
## 1208 0.9439160 0.9321055 0.8890339 0.9110335
## 1209 0.8540864 0.9080000 0.8890339 0.9110335
## 1210 0.9439160 0.9321055 0.8890339 0.9110335
## 1211 0.9439160 0.9080000 0.8890339 0.9110335
## 1212 0.8540864 0.9010727 0.8890339 0.9110335
## 1213 0.8540864 0.8864504 0.8890339 0.9110335
## 1214 0.8540864 0.9321055 0.8890339 0.9110335
## 1215 0.8540864 0.8877722 0.8890339 0.9110335
## 1216 0.8540864 0.4949495 0.8890339 0.9110335
## 1217 0.9439160 0.8864504 0.8890339 0.9110335
## 1218 0.8540864 0.9080000 0.8890339 0.9110335
## 1219 0.8540864 0.9321055 0.8890339 0.9110335
## 1220 0.9439160 0.8877722 0.8890339 0.9110335
## 1221 0.8540864 0.9080000 0.8890339 0.9110335
## 1222 0.8540864 0.4949495 0.8890339 0.9110335
## 1223 0.8540864 0.8877722 0.8890339 0.9110335
## 1224 0.8540864 0.8148148 0.8890339 0.9110335
## 1225 0.9439160 0.9321055 0.8890339 0.9110335
## 1226 0.9439160 0.9080000 0.8890339 0.9110335
## 1227 0.9439160 0.9010727 0.8890339 0.9110335
## 1228 0.8540864 0.4949495 0.8890339 0.9110335
## 1229 0.9439160 0.8864504 0.8890339 0.9110335
## 1230 0.8540864 0.8877722 0.8890339 0.9110335
## 1231 0.9439160 0.8877722 0.8890339 0.9110335
## 1232 0.9439160 0.9080000 0.8890339 0.9110335
## 1233 0.8540864 0.8877722 0.8890339 0.9110335
## 1234 0.8540864 0.8148148 0.8890339 0.9110335
## 1235 0.8540864 0.9080000 0.8890339 0.9110335
## 1236 0.8540864 0.9321055 0.8890339 0.9110335
## 1237 0.9439160 0.9321055 0.8890339 0.9110335
## 1238 0.8540864 0.8148148 0.8890339 0.9110335
## 1239 0.8540864 0.9080000 0.8890339 0.9110335
## 1240 0.8540864 0.9321055 0.8890339 0.9110335
## 1241 0.8540864 0.9321055 0.8890339 0.9110335
## 1242 0.9439160 0.9321055 0.8890339 0.9110335
## 1243 0.9439160 0.9321055 0.8890339 0.9110335
## 1244 0.9439160 0.9321055 0.8890339 0.9110335
## 1245 0.8540864 0.9010727 0.8890339 0.9110335
## 1246 0.8540864 0.4949495 0.8890339 0.9110335
## 1247 0.9439160 0.8864504 0.8890339 0.9110335
## 1248 0.8540864 0.9321055 0.8890339 0.9110335
## 1249 0.9439160 0.9321055 0.8890339 0.9110335
## 1250 0.8540864 0.8877722 0.8890339 0.9110335
## 1251 0.9439160 0.9321055 0.8890339 0.9110335
## 1252 0.8540864 0.9010727 0.8890339 0.9110335
## 1253 0.9439160 0.8864504 0.8890339 0.9110335
## 1254 0.8540864 0.9321055 0.8890339 0.9110335
## 1255 0.8540864 0.8148148 0.8890339 0.9110335
## 1256 0.8540864 0.9080000 0.8890339 0.9110335
## 1257 0.8540864 0.9080000 0.8890339 0.9110335
## 1258 0.9439160 0.8864504 0.8890339 0.9110335
## 1259 0.8540864 0.9010727 0.8890339 0.9110335
## 1260 0.8540864 0.8877722 0.8890339 0.9110335
## 1261 0.8540864 0.8877722 0.8890339 0.9110335
## 1262 0.9439160 0.9321055 0.8890339 0.9110335
## 1263 0.8540864 0.8877722 0.8890339 0.9110335
## 1264 0.8540864 0.9080000 0.8890339 0.9110335
## 1265 0.8540864 0.9080000 0.8890339 0.9110335
## 1266 0.8540864 0.9080000 0.8890339 0.9110335
## 1267 0.8540864 0.9010727 0.8890339 0.9110335
## 1268 0.9439160 0.8864504 0.8890339 0.9110335
## 1269 0.9439160 0.9321055 0.8890339 0.9110335
## 1270 0.8540864 0.9080000 0.9090369 0.9110335
## 1271 0.8540864 0.8864504 0.8890339 0.9110335
## 1272 0.8540864 0.9010727 0.9090369 0.9110335
## 1273 0.8540864 0.8877722 0.8890339 0.9110335
## 1274 0.9439160 0.8864504 0.8890339 0.9110335
## 1275 0.9439160 0.8864504 0.8890339 0.9110335
## 1276 0.8540864 0.9321055 0.8890339 0.9110335
## 1277 0.8540864 0.9010727 0.8890339 0.9110335
## 1278 0.9439160 0.8864504 0.8890339 0.9110335
## 1279 0.9439160 0.9321055 0.8890339 0.9110335
## 1280 0.9439160 0.9321055 0.8890339 0.9110335
## 1281 0.8540864 0.8877722 0.8890339 0.9110335
## 1282 0.8540864 0.9080000 0.8890339 0.9110335
## 1283 0.9439160 0.8864504 0.8890339 0.9110335
## 1284 0.8540864 0.8877722 0.8890339 0.9110335
## 1285 0.9439160 0.9080000 0.8890339 0.9110335
## 1286 0.9439160 0.8864504 0.8890339 0.9110335
## 1287 0.8540864 0.8877722 0.8890339 0.9110335
## 1288 0.8540864 0.9080000 0.8890339 0.9110335
## 1289 0.8540864 0.8877722 0.8890339 0.9110335
## 1290 0.8540864 0.8877722 0.8890339 0.9110335
## 1291 0.9439160 0.9321055 0.9090369 0.9110335
## 1292 0.9439160 0.9321055 0.8890339 0.9110335
## 1293 0.8540864 0.9321055 0.9090369 0.9110335
## 1294 0.8540864 0.9080000 0.8890339 0.9110335
## 1295 0.8540864 0.8877722 0.8890339 0.9110335
## 1296 0.9439160 0.8864504 0.8890339 0.9110335
## 1297 0.8540864 0.9010727 0.8890339 0.9110335
## 1298 0.9439160 0.8864504 0.9090369 0.9110335
## 1299 0.8540864 0.8148148 0.8890339 0.9110335
## 1300 0.8540864 0.8877722 0.8890339 0.9110335
## 1301 0.8540864 0.9321055 0.8890339 0.9110335
## 1302 0.8540864 0.8877722 0.8890339 0.9110335
## 1303 0.9439160 0.8864504 0.8890339 0.9110335
## 1304 0.8540864 0.8864504 0.9090369 0.9110335
## 1305 0.8540864 0.9010727 0.8890339 0.9110335
## 1306 0.8540864 0.8148148 0.8890339 0.9110335
## 1307 0.8540864 0.9321055 0.8890339 0.9110335
## 1308 0.9439160 0.9321055 0.8890339 0.9110335
## 1309 0.9439160 0.9321055 0.8890339 0.9110335
## 1310 0.8540864 0.9321055 0.8890339 0.9110335
## 1311 0.8540864 0.8864504 0.9090369 0.9110335
## 1312 0.8540864 0.9010727 0.8890339 0.9110335
## 1313 0.8540864 0.8877722 0.8890339 0.9110335
## 1314 0.8540864 0.9080000 0.8890339 0.9110335
## 1315 0.8540864 0.8877722 0.8890339 0.9110335
## 1316 0.8540864 0.9321055 0.8890339 0.9110335
## 1317 0.8540864 0.8877722 0.8890339 0.9110335
## 1318 0.8540864 0.8148148 0.8890339 0.9110335
## 1319 0.8540864 0.8864504 0.8890339 0.9110335
## 1320 0.9439160 0.9321055 0.8890339 0.9110335
## 1321 0.8540864 0.8877722 0.8890339 0.9110335
## 1322 0.9439160 0.9321055 0.8890339 0.9110335
## 1323 0.9439160 0.8864504 0.8890339 0.9110335
## 1324 0.9439160 0.9321055 0.8890339 0.9110335
## 1325 0.8540864 0.9080000 0.8890339 0.9110335
## 1326 0.8540864 0.8877722 0.8890339 0.9110335
## 1327 0.8540864 0.9080000 0.8890339 0.9110335
## 1328 0.8540864 0.8877722 0.8890339 0.9110335
## 1329 0.8540864 0.9080000 0.9090369 0.9110335
## 1330 0.8540864 0.9321055 0.8890339 0.9110335
## 1331 0.8540864 0.8877722 0.8890339 0.9110335
## 1332 0.9439160 0.9321055 0.8890339 0.9110335
## 1333 0.8540864 0.9080000 0.8890339 0.9110335
## 1334 0.9439160 0.9321055 0.8890339 0.9110335
## 1335 0.8540864 0.8877722 0.8890339 0.9110335
## 1336 0.9439160 0.9321055 0.8890339 0.9110335
## 1337 0.9439160 0.8864504 0.8890339 0.9110335
## 1338 0.9439160 0.8864504 0.8890339 0.9110335
## 1339 0.8540864 0.9321055 0.8890339 0.9110335
## 1340 0.9439160 0.9321055 0.8890339 0.9110335
## 1341 0.8540864 0.9080000 0.8890339 0.9110335
## 1342 0.9439160 0.8864504 0.8890339 0.9110335
## 1343 0.8540864 0.8148148 0.8890339 0.9110335
## 1344 0.9439160 0.9321055 0.8890339 0.9110335
## 1345 0.9439160 0.9080000 0.9090369 0.9110335
## 1346 0.9439160 0.9321055 0.8890339 0.9110335
## 1347 0.9439160 0.9321055 0.8890339 0.9110335
## 1348 0.9439160 0.9321055 0.8890339 0.9110335
## 1349 0.8540864 0.8877722 0.8890339 0.9110335
## 1350 0.8540864 0.9080000 0.8890339 0.9110335
## 1351 0.9439160 0.9321055 0.8890339 0.9110335
## 1352 0.9439160 0.8864504 0.8890339 0.9110335
## 1353 0.8540864 0.9010727 0.9090369 0.9110335
## 1354 0.8540864 0.8148148 0.9090369 0.9110335
## 1355 0.9439160 0.9321055 0.8890339 0.9110335
## 1356 0.8540864 0.8864504 0.8890339 0.9110335
## 1357 0.8540864 0.9080000 0.9090369 0.9110335
## 1358 0.8540864 0.8877722 0.8890339 0.9110335
## 1359 0.8540864 0.8877722 0.8890339 0.9110335
## 1360 0.8540864 0.8877722 0.8890339 0.9110335
## 1361 0.9439160 0.9321055 0.8890339 0.9110335
## 1362 0.9439160 0.9321055 0.8890339 0.9110335
## 1363 0.8540864 0.8877722 0.8890339 0.9110335
## 1364 0.9439160 0.9321055 0.8890339 0.9110335
## 1365 0.8540864 0.8877722 0.8890339 0.9110335
## 1366 0.9439160 0.8864504 0.8890339 0.9110335
## 1367 0.9439160 0.8864504 0.8890339 0.9110335
## 1368 0.9439160 0.8864504 0.8890339 0.9110335
## 1369 0.8540864 0.8877722 0.8890339 0.9110335
## 1370 0.8540864 0.8877722 0.9090369 0.9110335
## 1371 0.8540864 0.9080000 0.8890339 0.9110335
## 1372 0.8540864 0.8148148 0.8890339 0.9110335
## 1373 0.8540864 0.9080000 0.9090369 0.9110335
## 1374 0.8540864 0.9010727 0.8890339 0.9110335
## 1375 0.9439160 0.9321055 0.8890339 0.9110335
## 1376 0.9439160 0.9321055 0.8890339 0.9110335
## 1377 0.8540864 0.9321055 0.9090369 0.9110335
## 1378 0.8540864 0.9010727 0.8890339 0.9110335
## 1379 0.9439160 0.9080000 0.8890339 0.9110335
## 1380 0.8540864 0.9080000 0.9090369 0.9110335
## 1381 0.8540864 0.9080000 0.8890339 0.9110335
## 1382 0.8540864 0.9321055 0.8890339 0.9110335
## 1383 0.9439160 0.9321055 0.8890339 0.9110335
## 1384 0.9439160 0.9321055 0.8890339 0.9110335
## 1385 0.8540864 0.9080000 0.8890339 0.9110335
## 1386 0.9439160 0.9321055 0.8890339 0.9110335
## 1387 0.8540864 0.9010727 0.8890339 0.9110335
## 1388 0.9439160 0.9321055 0.8890339 0.9110335
## 1389 0.8540864 0.6137931 0.8890339 0.9110335
## 1390 0.8540864 0.8148148 0.8890339 0.9110335
## 1391 0.9439160 0.8864504 0.8890339 0.9110335
## 1392 0.8540864 0.9010727 0.8890339 0.9110335
## 1393 0.9439160 0.9321055 0.8890339 0.9110335
## 1394 0.8540864 0.8877722 0.8890339 0.9110335
## 1395 0.9439160 0.8864504 0.8890339 0.9110335
## 1396 0.8540864 0.9321055 0.8890339 0.9110335
## 1397 0.9439160 0.9321055 0.8890339 0.9110335
## 1398 0.8540864 0.8148148 0.8890339 0.9110335
## 1399 0.9439160 0.9321055 0.9090369 0.9110335
## 1400 0.9439160 0.9321055 0.8890339 0.9110335
## 1401 0.9439160 0.8864504 0.8890339 0.9110335
## 1402 0.9439160 0.9321055 0.8890339 0.9110335
## 1403 0.8540864 0.8877722 0.9090369 0.9110335
## 1404 0.8540864 0.9080000 0.8890339 0.9110335
## 1405 0.8540864 0.8877722 0.8890339 0.9110335
## 1406 0.8540864 0.8877722 0.8890339 0.9110335
## 1407 0.9439160 0.8864504 0.8890339 0.9110335
## 1408 0.8540864 0.8148148 0.8890339 0.9110335
## 1409 0.8540864 0.9321055 0.9090369 0.9110335
## 1410 0.8540864 0.8877722 0.8890339 0.9110335
## 1411 0.8540864 0.8148148 0.8890339 0.9110335
## 1412 0.9439160 0.9321055 0.8890339 0.9110335
## 1413 0.8540864 0.9080000 0.8890339 0.9110335
## 1414 0.9439160 0.8864504 0.8890339 0.9110335
## 1415 0.8540864 0.9321055 0.9090369 0.9110335
## 1416 0.9439160 0.8864504 0.8890339 0.9110335
## 1417 0.8540864 0.5408163 0.8890339 0.9110335
## 1418 0.8540864 0.8148148 0.8890339 0.9110335
## 1419 0.9439160 0.8864504 0.8890339 0.9110335
## 1420 0.8540864 0.9321055 0.8890339 0.9110335
## 1421 0.8540864 0.8877722 0.8890339 0.9110335
## 1422 0.9439160 0.9321055 0.8890339 0.9110335
## 1423 0.9439160 0.9321055 0.8890339 0.9110335
## 1424 0.8540864 0.5408163 0.8890339 0.9110335
## 1425 0.8540864 0.9080000 0.8890339 0.9110335
## 1426 0.8540864 0.9080000 0.8890339 0.9110335
## 1427 0.8540864 0.8148148 0.8890339 0.9110335
## 1428 0.8540864 0.8148148 0.8890339 0.9110335
## 1429 0.9439160 0.8864504 0.8890339 0.9110335
## 1430 0.9439160 0.9080000 0.9090369 0.9110335
## 1431 0.9439160 0.8864504 0.8890339 0.9110335
## 1432 0.8540864 0.9080000 0.8890339 0.9110335
## 1433 0.8540864 0.9080000 0.9090369 0.9110335
## 1434 0.9439160 0.9321055 0.8890339 0.9110335
## 1435 0.8540864 0.9080000 0.8890339 0.9110335
## 1436 0.9439160 0.9321055 0.8890339 0.9110335
## 1437 0.9439160 0.9321055 0.8890339 0.9110335
## 1438 0.8540864 0.9080000 0.8890339 0.9110335
## 1439 0.9439160 0.9080000 0.8890339 0.9110335
## 1440 0.9439160 0.8864504 0.8890339 0.9110335
## 1441 0.8540864 0.8148148 0.9090369 0.9110335
## 1442 0.9439160 0.9321055 0.8890339 0.9110335
## 1443 0.8540864 0.9080000 0.9090369 0.9110335
## 1444 0.9439160 0.9321055 0.8890339 0.9110335
## 1445 0.9439160 0.8864504 0.8890339 0.9110335
## 1446 0.9439160 0.9321055 0.9090369 0.9110335
## 1447 0.9439160 0.9321055 0.8890339 0.9110335
## 1448 0.8540864 0.8877722 0.8890339 0.9110335
## 1449 0.8540864 0.9010727 0.8890339 0.9110335
## 1450 0.9439160 0.8864504 0.8890339 0.9110335
## 1451 0.9439160 0.8864504 0.8890339 0.9110335
## 1452 0.8540864 0.8877722 0.8890339 0.9110335
## 1453 0.9439160 0.8864504 0.8890339 0.9110335
## 1454 0.8540864 0.9080000 0.9090369 0.9110335
## 1455 0.8540864 0.9080000 0.8890339 0.9110335
## 1456 0.8540864 0.8877722 0.8890339 0.9110335
## 1457 0.8540864 0.8877722 0.8890339 0.9110335
## 1458 0.9439160 0.9321055 0.8890339 0.9110335
## 1459 0.9439160 0.9321055 0.8890339 0.9110335
## 1460 0.8540864 0.9080000 0.8890339 0.9110335
## 1461 0.9439160 0.9321055 0.8890339 0.9110335
## 1462 0.9439160 0.9321055 0.8890339 0.9110335
## 1463 0.9439160 0.9321055 0.8890339 0.9110335
## 1464 0.9439160 0.9321055 0.8890339 0.9110335
## 1465 0.8540864 0.9080000 0.8890339 0.9110335
## 1466 0.8540864 0.9080000 0.9090369 0.9110335
## 1467 0.9439160 0.9321055 0.9090369 0.9110335
## 1468 0.9439160 0.8864504 0.8890339 0.9110335
## 1469 0.9439160 0.8864504 0.8890339 0.9110335
## 1470 0.9439160 0.9321055 0.9090369 0.9110335
## 1471 0.9439160 0.8864504 0.8890339 0.9110335
## 1472 0.8540864 0.8877722 0.8890339 0.9110335
## 1473 0.8540864 0.9080000 0.8890339 0.9110335
## 1474 0.8540864 0.8877722 0.8890339 0.9110335
## 1475 0.9439160 0.9321055 0.8890339 0.9110335
## 1476 0.9439160 0.8864504 0.8890339 0.9110335
## 1477 0.8540864 0.8877722 0.8890339 0.9110335
## 1478 0.8540864 0.9010727 0.8890339 0.9110335
## 1479 0.9439160 0.9010727 0.8890339 0.9110335
## 1480 0.8540864 0.9080000 0.8890339 0.9110335
## 1481 0.8540864 0.8148148 0.8890339 0.9110335
## 1482 0.9439160 0.9321055 0.8890339 0.9110335
## 1483 0.8540864 0.9080000 0.9090369 0.9110335
## 1484 0.9439160 0.9321055 0.8890339 0.9110335
## 1485 0.9439160 0.9080000 0.8890339 0.9110335
## 1486 0.9439160 0.9321055 0.8890339 0.9110335
## 1487 0.8540864 0.8148148 0.8890339 0.9110335
## 1488 0.9439160 0.8864504 0.8890339 0.9110335
## 1489 0.8540864 0.8877722 0.8890339 0.9110335
## 1490 0.8540864 0.9321055 0.8890339 0.9110335
## 1491 0.8540864 0.9321055 0.8890339 0.9110335
## 1492 0.8540864 0.9080000 0.8890339 0.9110335
## 1493 0.8540864 0.9080000 0.8890339 0.9110335
## 1494 0.8540864 0.9321055 0.8890339 0.9110335
## 1495 0.8540864 0.9080000 0.8890339 0.9110335
## 1496 0.9439160 0.9321055 0.8890339 0.9110335
## 1497 0.9439160 0.9080000 0.8890339 0.9110335
## 1498 0.9439160 0.9321055 0.8890339 0.9110335
## 1499 0.8540864 0.9010727 0.8890339 0.9110335
## 1500 0.9439160 0.8864504 0.8890339 0.9110335
## 1501 0.9439160 0.9321055 0.8890339 0.9110335
## 1502 0.9439160 0.8864504 0.8890339 0.9110335
## 1503 0.9439160 0.8864504 0.8890339 0.9110335
## 1504 0.9439160 0.9321055 0.8890339 0.9110335
## 1505 0.8540864 0.8148148 0.8890339 0.9110335
## 1506 0.8540864 0.9010727 0.9090369 0.9110335
## 1507 0.8540864 0.9321055 0.8890339 0.9110335
## 1508 0.8540864 0.9080000 0.8890339 0.9110335
## 1509 0.9439160 0.8864504 0.9090369 0.9110335
## 1510 0.8540864 0.9321055 0.8890339 0.9110335
## 1511 0.9439160 0.9321055 0.8890339 0.9110335
## 1512 0.8540864 0.8877722 0.8890339 0.9110335
## 1513 0.8540864 0.9321055 0.8890339 0.9110335
## 1514 0.9439160 0.8864504 0.9090369 0.9110335
## 1515 0.8540864 0.4949495 0.8890339 0.9110335
## 1516 0.8540864 0.9080000 0.8890339 0.9110335
## 1517 0.9439160 0.9321055 0.8890339 0.9110335
## 1518 0.9439160 0.8864504 0.8890339 0.9110335
## 1519 0.8540864 0.9321055 0.8890339 0.9110335
## 1520 0.9439160 0.9080000 0.8890339 0.9110335
## 1521 0.9439160 0.8877722 0.8890339 0.9110335
## 1522 0.9439160 0.8864504 0.8890339 0.9110335
## 1523 0.8540864 0.8877722 0.8890339 0.9110335
## 1524 0.8540864 0.8877722 0.8890339 0.9110335
## 1525 0.9439160 0.8864504 0.8890339 0.9110335
## 1526 0.8540864 0.8877722 0.8890339 0.9110335
## 1527 0.9439160 0.9321055 0.8890339 0.9110335
## 1528 0.8540864 0.9080000 0.8890339 0.9110335
## 1529 0.9439160 0.9010727 0.8890339 0.9110335
## 1530 0.9439160 0.9321055 0.8890339 0.9110335
## 1531 0.8540864 0.9010727 0.8890339 0.9110335
## 1532 0.9439160 0.9321055 0.8890339 0.9110335
## 1533 0.9439160 0.9321055 0.9090369 0.9110335
## 1534 0.9439160 0.8864504 0.8890339 0.9110335
## 1535 0.9439160 0.9321055 0.8890339 0.9110335
## 1536 0.9439160 0.9321055 0.8890339 0.9110335
## 1537 0.9439160 0.9321055 0.8890339 0.9110335
## 1538 0.8540864 0.9080000 0.8890339 0.9110335
## 1539 0.8540864 0.9010727 0.8890339 0.9110335
## 1540 0.9439160 0.8864504 0.8890339 0.9110335
## 1541 0.9439160 0.9321055 0.8890339 0.9110335
## 1542 0.8540864 0.9080000 0.8890339 0.9110335
## 1543 0.8540864 0.9080000 0.9090369 0.9110335
## 1544 0.8540864 0.8877722 0.8890339 0.9110335
## 1545 0.9439160 0.9321055 0.8890339 0.9110335
## 1546 0.8540864 0.9010727 0.8890339 0.9110335
## 1547 0.9439160 0.8864504 0.8890339 0.9110335
## 1548 0.9439160 0.9321055 0.8890339 0.9110335
## 1549 0.8540864 0.9321055 0.8890339 0.9110335
## 1550 0.8540864 0.9321055 0.8890339 0.9110335
## 1551 0.9439160 0.8864504 0.8890339 0.9110335
## 1552 0.8540864 0.9080000 0.9090369 0.9110335
## 1553 0.9439160 0.8864504 0.8890339 0.9110335
## 1554 0.8540864 0.9010727 0.8890339 0.9110335
## 1555 0.8540864 0.9010727 0.8890339 0.9110335
## 1556 0.8540864 0.8877722 0.8890339 0.9110335
## 1557 0.9439160 0.8864504 0.8890339 0.9110335
## 1558 0.8540864 0.8148148 0.8890339 0.9110335
## 1559 0.8540864 0.9080000 0.8890339 0.9110335
## 1560 0.8540864 0.9321055 0.8890339 0.9110335
## 1561 0.9439160 0.9080000 0.8890339 0.9110335
## 1562 0.8540864 0.8877722 0.8890339 0.9110335
## 1563 0.9439160 0.8864504 0.8890339 0.9110335
## 1564 0.8540864 0.9080000 0.8890339 0.9110335
## 1565 0.8540864 0.8877722 0.9090369 0.9110335
## 1566 0.9439160 0.9321055 0.8890339 0.9110335
## 1567 0.8540864 0.9321055 0.8890339 0.9110335
## 1568 0.9439160 0.9321055 0.8890339 0.9110335
## 1569 0.8540864 0.8877722 0.8890339 0.9110335
## 1570 0.8540864 0.9321055 0.8890339 0.9110335
## 1571 0.9439160 0.9321055 0.8890339 0.9110335
## 1572 0.9439160 0.9321055 0.8890339 0.9110335
## 1573 0.8540864 0.8877722 0.8890339 0.9110335
## 1574 0.8540864 0.8877722 0.8890339 0.9110335
## 1575 0.8540864 0.9321055 0.8890339 0.9110335
## 1576 0.8540864 0.8877722 0.8890339 0.9110335
## 1577 0.8540864 0.9010727 0.8890339 0.9110335
## 1578 0.9439160 0.9321055 0.9090369 0.9110335
## 1579 0.8540864 0.9080000 0.8890339 0.9110335
## 1580 0.8540864 0.9321055 0.8890339 0.9110335
## 1581 0.9439160 0.8864504 0.8890339 0.9110335
## 1582 0.9439160 0.9321055 0.8890339 0.9110335
## 1583 0.9439160 0.9321055 0.8890339 0.9110335
## 1584 0.9439160 0.9080000 0.8890339 0.9110335
## 1585 0.8540864 0.9010727 0.9090369 0.9110335
## 1586 0.8540864 0.8877722 0.8890339 0.9110335
## 1587 0.9439160 0.9321055 0.8890339 0.9110335
## 1588 0.9439160 0.8864504 0.9090369 0.9110335
## 1589 0.9439160 0.8864504 0.8890339 0.9110335
## 1590 0.8540864 0.8877722 0.8890339 0.9110335
## 1591 0.9439160 0.9321055 0.8890339 0.9110335
## 1592 0.9439160 0.9321055 0.8890339 0.9110335
## 1593 0.9439160 0.9321055 0.8890339 0.9110335
## 1594 0.8540864 0.9080000 0.8890339 0.9110335
## 1595 0.8540864 0.9321055 0.8890339 0.9110335
## 1596 0.9439160 0.8864504 0.9090369 0.9110335
## 1597 0.8540864 0.9321055 0.8890339 0.9110335
## 1598 0.9439160 0.8864504 0.8890339 0.9110335
## 1599 0.8540864 0.9080000 0.8890339 0.9110335
## 1600 0.8540864 0.9010727 0.8890339 0.9110335
## 1601 0.9439160 0.9321055 0.8890339 0.9110335
## 1602 0.9439160 0.9321055 0.8890339 0.9110335
## 1603 0.9439160 0.8864504 0.8890339 0.9110335
## 1604 0.9439160 0.8864504 0.8890339 0.9110335
## 1605 0.9439160 0.9321055 0.8890339 0.9110335
## 1606 0.9439160 0.8864504 0.8890339 0.9110335
## 1607 0.8540864 0.9010727 0.8890339 0.9110335
## 1608 0.8540864 0.8877722 0.9090369 0.9110335
## 1609 0.9439160 0.8864504 0.8890339 0.9110335
## 1610 0.8540864 0.8148148 0.8890339 0.9110335
## 1611 0.9439160 0.8864504 0.8890339 0.9110335
## 1612 0.9439160 0.9321055 0.8890339 0.9110335
## 1613 0.8540864 0.9010727 0.8890339 0.9110335
## 1614 0.8540864 0.8877722 0.8890339 0.9110335
## 1615 0.9439160 0.9321055 0.8890339 0.9110335
## 1616 0.8540864 0.9010727 0.8890339 0.9110335
## 1617 0.8540864 0.9010727 0.8890339 0.9110335
## 1618 0.8540864 0.9321055 0.8890339 0.9110335
## 1619 0.9439160 0.9080000 0.8890339 0.9110335
## 1620 0.8540864 0.9321055 0.9090369 0.9110335
## 1621 0.9439160 0.9321055 0.8890339 0.9110335
## 1622 0.9439160 0.8864504 0.8890339 0.9110335
## 1623 0.8540864 0.9321055 0.8890339 0.9110335
## 1624 0.9439160 0.9010727 0.8890339 0.9110335
## 1625 0.8540864 0.8148148 0.8890339 0.9110335
## 1626 0.9439160 0.9321055 0.8890339 0.9110335
## 1627 0.9439160 0.9321055 0.8890339 0.9110335
## 1628 0.8540864 0.9321055 0.9090369 0.9110335
## 1629 0.8540864 0.9080000 0.8890339 0.9110335
## 1630 0.9439160 0.8864504 0.8890339 0.9110335
## 1631 0.8540864 0.9080000 0.8890339 0.9110335
## 1632 0.9439160 0.9321055 0.9090369 0.9110335
## 1633 0.9439160 0.9321055 0.8890339 0.9110335
## 1634 0.8540864 0.9010727 0.8890339 0.9110335
## 1635 0.8540864 0.6137931 0.8890339 0.9110335
## 1636 0.8540864 0.9321055 0.8890339 0.9110335
## 1637 0.9439160 0.9321055 0.8890339 0.9110335
## 1638 0.8540864 0.9080000 0.8890339 0.9110335
## 1639 0.8540864 0.9321055 0.8890339 0.9110335
## 1640 0.9439160 0.8864504 0.8890339 0.9110335
## 1641 0.9439160 0.9321055 0.8890339 0.9110335
## 1642 0.9439160 0.8864504 0.8890339 0.9110335
## 1643 0.9439160 0.9321055 0.8890339 0.9110335
## 1644 0.9439160 0.8877722 0.8890339 0.9110335
## 1645 0.8540864 0.8148148 0.8890339 0.9110335
## 1646 0.8540864 0.8877722 0.8890339 0.9110335
## 1647 0.8540864 0.8864504 0.8890339 0.9110335
## 1648 0.9439160 0.9321055 0.9090369 0.9110335
## 1649 0.9439160 0.8864504 0.8890339 0.9110335
## 1650 0.9439160 0.8864504 0.8890339 0.9110335
## 1651 0.8540864 0.8148148 0.8890339 0.9110335
## 1652 0.8540864 0.8877722 0.8890339 0.9110335
## 1653 0.9439160 0.9321055 0.8890339 0.9110335
## 1654 0.9439160 0.9321055 0.8890339 0.9110335
## 1655 0.9439160 0.8864504 0.8890339 0.9110335
## 1656 0.8540864 0.9321055 0.8890339 0.9110335
## 1657 0.9439160 0.8148148 0.9090369 0.9110335
## 1658 0.9439160 0.9321055 0.8890339 0.9110335
## 1659 0.8540864 0.9080000 0.9090369 0.9110335
## 1660 0.8540864 0.9321055 0.8890339 0.9110335
## 1661 0.9439160 0.9321055 0.8890339 0.9110335
## 1662 0.8540864 0.9321055 0.8890339 0.9110335
## 1663 0.8540864 0.9321055 0.8890339 0.9110335
## 1664 0.8540864 0.8877722 0.8890339 0.9110335
## 1665 0.9439160 0.8864504 0.8890339 0.9110335
## 1666 0.9439160 0.9321055 0.8890339 0.9110335
## 1667 0.9439160 0.8864504 0.8890339 0.9110335
## 1668 0.9439160 0.8864504 0.8890339 0.9110335
## 1669 0.8540864 0.6137931 0.8890339 0.9110335
## 1670 0.8540864 0.9080000 0.9090369 0.9110335
## 1671 0.8540864 0.9080000 0.8890339 0.9110335
## 1672 0.9439160 0.8864504 0.8890339 0.9110335
## 1673 0.9439160 0.8864504 0.8890339 0.9110335
## 1674 0.9439160 0.6137931 0.8890339 0.9110335
## 1675 0.9439160 0.9321055 0.8890339 0.9110335
## 1676 0.9439160 0.9321055 0.8890339 0.9110335
## 1677 0.8540864 0.8148148 0.8890339 0.9110335
## 1678 0.9439160 0.8864504 0.9090369 0.9110335
## 1679 0.9439160 0.9321055 0.8890339 0.9110335
## 1680 0.9439160 0.9321055 0.8890339 0.9110335
## 1681 0.9439160 0.8864504 0.8890339 0.9110335
## 1682 0.8540864 0.9321055 0.8890339 0.9110335
## 1683 0.8540864 0.6137931 0.8890339 0.9110335
## 1684 0.9439160 0.9321055 0.8890339 0.9110335
## 1685 0.9439160 0.9321055 0.8890339 0.9110335
## 1686 0.9439160 0.8864504 0.8890339 0.9110335
## 1687 0.8540864 0.9321055 0.9090369 0.9110335
## 1688 0.8540864 0.9010727 0.8890339 0.9110335
## 1689 0.8540864 0.9010727 0.8890339 0.9110335
## 1690 0.8540864 0.8148148 0.8890339 0.9110335
## 1691 0.9439160 0.9321055 0.8890339 0.9110335
## 1692 0.8540864 0.9321055 0.9090369 0.9110335
## 1693 0.8540864 0.8877722 0.9090369 0.9110335
## 1694 0.8540864 0.9080000 0.9090369 0.9110335
## 1695 0.8540864 0.9080000 0.8890339 0.9110335
## 1696 0.8540864 0.9321055 0.8890339 0.9110335
## 1697 0.8540864 0.8148148 0.8890339 0.9110335
## 1698 0.9439160 0.8864504 0.9090369 0.9110335
## 1699 0.9439160 0.6137931 0.8890339 0.9110335
## 1700 0.8540864 0.9080000 0.8890339 0.9110335
## 1701 0.8540864 0.9080000 0.8890339 0.9110335
## 1702 0.8540864 0.8148148 0.8890339 0.9110335
## 1703 0.9439160 0.9321055 0.9090369 0.9110335
## 1704 0.8540864 0.9080000 0.8890339 0.9110335
## 1705 0.8540864 0.9080000 0.8890339 0.9110335
## 1706 0.8540864 0.9321055 0.8890339 0.9110335
## 1707 0.8540864 0.6137931 0.8890339 0.9110335
## 1708 0.9439160 0.9321055 0.8890339 0.9110335
## 1709 0.9439160 0.9321055 0.8890339 0.9110335
## 1710 0.8540864 0.8864504 0.8890339 0.9110335
## 1711 0.8540864 0.9321055 0.8791400 0.9110335
## 1712 0.8540864 0.4949495 0.9090369 0.9110335
## 1713 0.8540864 0.9080000 0.8890339 0.9110335
## 1714 0.9439160 0.8864504 0.8890339 0.9110335
## 1715 0.9439160 0.9080000 0.8890339 0.9110335
## 1716 0.8540864 0.8148148 0.9090369 0.9110335
## 1717 0.9439160 0.9321055 0.8890339 0.9110335
## 1718 0.9439160 0.9321055 0.8890339 0.9110335
## 1719 0.8540864 0.8877722 0.8890339 0.9110335
## 1720 0.8540864 0.9080000 0.8890339 0.9110335
## 1721 0.8540864 0.9010727 0.9090369 0.9110335
## 1722 0.8540864 0.9080000 0.8890339 0.9110335
## 1723 0.8540864 0.8877722 0.8890339 0.9110335
## 1724 0.8540864 0.6137931 0.8890339 0.9110335
## 1725 0.8540864 0.9321055 0.8890339 0.9110335
## 1726 0.9439160 0.9321055 0.8890339 0.9110335
## 1727 0.8540864 0.9010727 0.8890339 0.9110335
## 1728 0.8540864 0.6137931 0.8890339 0.9110335
## 1729 0.8540864 0.9080000 0.8890339 0.9110335
## 1730 0.8540864 0.9321055 0.8890339 0.9110335
## 1731 0.8540864 0.9010727 0.8890339 0.9110335
## 1732 0.9439160 0.9321055 0.9090369 0.9110335
## 1733 0.8540864 0.8877722 0.8890339 0.9110335
## 1734 0.9439160 0.8864504 0.8890339 0.9110335
## 1735 0.8540864 0.9080000 0.9090369 0.9110335
## 1736 0.9439160 0.9321055 0.8890339 0.9110335
## 1737 0.8540864 0.9080000 0.8890339 0.9110335
## 1738 0.9439160 0.9321055 0.8890339 0.9110335
## 1739 0.9439160 0.9321055 0.8890339 0.9110335
## 1740 0.8540864 0.9010727 0.8890339 0.9110335
## 1741 0.9439160 0.9321055 0.8890339 0.9110335
## 1742 0.8540864 0.8877722 0.8890339 0.9110335
## 1743 0.9439160 0.9321055 0.8890339 0.9110335
## 1744 0.8540864 0.8877722 0.8890339 0.9110335
## 1745 0.9439160 0.9321055 0.8890339 0.9110335
## 1746 0.9439160 0.8864504 0.8890339 0.9110335
## 1747 0.9439160 0.9321055 0.9090369 0.9110335
## 1748 0.9439160 0.9321055 0.8890339 0.9110335
## 1749 0.9439160 0.8864504 0.8890339 0.9110335
## 1750 0.9439160 0.8148148 0.8890339 0.9110335
## 1751 0.8540864 0.9321055 0.9090369 0.9110335
## 1752 0.8540864 0.9080000 0.9090369 0.9110335
## 1753 0.8540864 0.8877722 0.8890339 0.9110335
## 1754 0.9439160 0.8864504 0.8890339 0.9110335
## 1755 0.9439160 0.9321055 0.8890339 0.9110335
## 1756 0.9439160 0.9010727 0.8890339 0.9110335
## 1757 0.8540864 0.9321055 0.8890339 0.9110335
## 1758 0.9439160 0.8864504 0.8890339 0.9110335
## 1759 0.8540864 0.9080000 0.8890339 0.9110335
## 1760 0.8540864 0.8877722 0.9090369 0.9110335
## 1761 0.9439160 0.9080000 0.9090369 0.9110335
## 1762 0.8540864 0.9010727 0.8890339 0.9110335
## 1763 0.9439160 0.8864504 0.8890339 0.9110335
## 1764 0.9439160 0.9321055 0.8890339 0.9110335
## 1765 0.9439160 0.8864504 0.8890339 0.9110335
## 1766 0.8540864 0.8877722 0.9090369 0.9110335
## 1767 0.9439160 0.9321055 0.8890339 0.9110335
## 1768 0.9439160 0.9321055 0.8890339 0.9110335
## 1769 0.9439160 0.9321055 0.8890339 0.9110335
## 1770 0.8540864 0.8148148 0.9090369 0.9110335
## 1771 0.9439160 0.8864504 0.8890339 0.9110335
## 1772 0.8540864 0.9321055 0.8890339 0.9110335
## 1773 0.9439160 0.9321055 0.8890339 0.9110335
## 1774 0.9439160 0.9321055 0.8890339 0.9110335
## 1775 0.9439160 0.9321055 0.8890339 0.9110335
## 1776 0.8540864 0.8877722 0.8890339 0.9110335
## 1777 0.8540864 0.8877722 0.8890339 0.9110335
## 1778 0.9439160 0.9321055 0.8890339 0.9110335
## 1779 0.9439160 0.8864504 0.8890339 0.9110335
## 1780 0.8540864 0.9321055 0.8890339 0.9110335
## 1781 0.8540864 0.9080000 0.8890339 0.9110335
## 1782 0.8540864 0.5408163 0.8890339 0.9110335
## 1783 0.8540864 0.8148148 0.8890339 0.9110335
## 1784 0.8540864 0.8877722 0.8890339 0.9110335
## 1785 0.8540864 0.9080000 0.8890339 0.9110335
## 1786 0.8540864 0.8877722 0.8890339 0.9110335
## 1787 0.9439160 0.9321055 0.8890339 0.9110335
## 1788 0.9439160 0.9321055 0.8890339 0.9110335
## 1789 0.9439160 0.9080000 0.8890339 0.9110335
## 1790 0.9439160 0.8864504 0.8890339 0.9110335
## 1791 0.9439160 0.9321055 0.8890339 0.9110335
## 1792 0.8540864 0.9080000 0.8890339 0.9110335
## 1793 0.8540864 0.8877722 0.8890339 0.9110335
## 1794 0.8540864 0.5408163 0.8890339 0.9110335
## 1795 0.8540864 0.9080000 0.8890339 0.9110335
## 1796 0.9439160 0.8864504 0.9090369 0.9110335
## 1797 0.8540864 0.8877722 0.8890339 0.9110335
## 1798 0.8540864 0.8877722 0.8890339 0.9110335
## 1799 0.8540864 0.9080000 0.8890339 0.9110335
## 1800 0.8540864 0.9321055 0.9090369 0.9110335
## 1801 0.8540864 0.9080000 0.8890339 0.9110335
## 1802 0.8540864 0.5408163 0.8890339 0.9110335
## 1803 0.8540864 0.9321055 0.8890339 0.9110335
## 1804 0.8540864 0.9010727 0.8890339 0.9110335
## 1805 0.8540864 0.9321055 0.8890339 0.9110335
## 1806 0.8540864 0.8877722 0.9090369 0.9110335
## 1807 0.8540864 0.8877722 0.8890339 0.9110335
## 1808 0.9439160 0.9080000 0.8890339 0.9110335
## 1809 0.8540864 0.8877722 0.9090369 0.9110335
## 1810 0.8540864 0.9321055 0.8890339 0.9110335
## 1811 0.9439160 0.8864504 0.8890339 0.9110335
## 1812 0.9439160 0.9321055 0.8890339 0.9110335
## 1813 0.9439160 0.8864504 0.9090369 0.9110335
## 1814 0.9439160 0.9080000 0.9090369 0.9110335
## 1815 0.9439160 0.9321055 0.8890339 0.9110335
## 1816 0.9439160 0.8864504 0.8890339 0.9110335
## 1817 0.9439160 0.9321055 0.8890339 0.9110335
## 1818 0.9439160 0.9321055 0.8890339 0.9110335
## 1819 0.9439160 0.8864504 0.8890339 0.9110335
## 1820 0.8540864 0.9080000 0.9090369 0.9110335
## 1821 0.9439160 0.9321055 0.8890339 0.9110335
## 1822 0.8540864 0.9080000 0.8890339 0.9110335
## 1823 0.8540864 0.9321055 0.8890339 0.9110335
## 1824 0.8540864 0.9321055 0.8890339 0.9110335
## 1825 0.8540864 0.8877722 0.9090369 0.9110335
## 1826 0.9439160 0.8864504 0.8890339 0.9110335
## 1827 0.9439160 0.9321055 0.8890339 0.9110335
## 1828 0.9439160 0.8864504 0.8890339 0.9110335
## 1829 0.8540864 0.8148148 0.8890339 0.9110335
## 1830 0.8540864 0.9321055 0.8890339 0.9110335
## 1831 0.9439160 0.9321055 0.9090369 0.9110335
## 1832 0.9439160 0.8864504 0.8890339 0.9110335
## 1833 0.9439160 0.8864504 0.8890339 0.9110335
## 1834 0.8540864 0.9080000 0.8890339 0.9110335
## 1835 0.9439160 0.8148148 0.8890339 0.9110335
## 1836 0.8540864 0.8877722 0.8890339 0.9110335
## 1837 0.9439160 0.8864504 0.8890339 0.9110335
## 1838 0.9439160 0.9080000 0.8890339 0.9110335
## 1839 0.8540864 0.8877722 0.8890339 0.9110335
## 1840 0.8540864 0.8877722 0.8890339 0.9110335
## 1841 0.8540864 0.8877722 0.8890339 0.9110335
## 1842 0.8540864 0.8877722 0.8890339 0.9110335
## 1843 0.9439160 0.9321055 0.8890339 0.9110335
## 1844 0.9439160 0.9321055 0.8890339 0.9110335
## 1845 0.9439160 0.9321055 0.8890339 0.9110335
## 1846 0.9439160 0.9321055 0.8890339 0.9110335
## 1847 0.9439160 0.9010727 0.8890339 0.9110335
## 1848 0.8540864 0.9010727 0.8890339 0.9110335
## 1849 0.9439160 0.9321055 0.8890339 0.9110335
## 1850 0.8540864 0.9321055 0.8890339 0.9110335
## 1851 0.8540864 0.9010727 0.8890339 0.9110335
## 1852 0.9439160 0.9321055 0.8890339 0.9110335
## 1853 0.9439160 0.9321055 0.8890339 0.9110335
## 1854 0.8540864 0.8877722 0.8890339 0.9110335
## 1855 0.8540864 0.9010727 0.8890339 0.9110335
## 1856 0.8540864 0.9080000 0.8791400 0.9110335
## 1857 0.8540864 0.8877722 0.8890339 0.9110335
## 1858 0.9439160 0.8877722 0.8890339 0.9110335
## 1859 0.8540864 0.8877722 0.8890339 0.9110335
## 1860 0.9439160 0.9321055 0.8890339 0.9110335
## 1861 0.9439160 0.9321055 0.8890339 0.9110335
## 1862 0.9439160 0.8864504 0.8890339 0.9110335
## 1863 0.8540864 0.8864504 0.8890339 0.9110335
## 1864 0.8540864 0.5408163 0.8890339 0.9110335
## 1865 0.9439160 0.8864504 0.8890339 0.9110335
## 1866 0.9439160 0.9321055 0.8890339 0.9110335
## 1867 0.9439160 0.9321055 0.8890339 0.9110335
## 1868 0.9439160 0.8864504 0.8890339 0.9110335
## 1869 0.9439160 0.8864504 0.8890339 0.9110335
## 1870 0.8540864 0.9321055 0.8890339 0.9110335
## 1871 0.9439160 0.9321055 0.8890339 0.9110335
## 1872 0.9439160 0.9321055 0.8890339 0.9110335
## 1873 0.8540864 0.9321055 0.8890339 0.9110335
## 1874 0.8540864 0.8877722 0.9090369 0.9110335
## 1875 0.9439160 0.9321055 0.8890339 0.9110335
## 1876 0.9439160 0.9321055 0.8890339 0.9110335
## 1877 0.8540864 0.8877722 0.8890339 0.9110335
## 1878 0.8540864 0.8864504 0.9090369 0.9110335
## 1879 0.9439160 0.8864504 0.8890339 0.9110335
## 1880 0.9439160 0.8864504 0.8890339 0.9110335
## 1881 0.8540864 0.9010727 0.8890339 0.9110335
## 1882 0.8540864 0.8877722 0.8890339 0.9110335
## 1883 0.8540864 0.9321055 0.8890339 0.9110335
## 1884 0.9439160 0.9321055 0.8890339 0.9110335
## 1885 0.9439160 0.9321055 0.8791400 0.9110335
## 1886 0.8540864 0.9080000 0.9090369 0.9110335
## 1887 0.8540864 0.8148148 0.8890339 0.9110335
## 1888 0.8540864 0.8148148 0.9090369 0.9110335
## 1889 0.9439160 0.8864504 0.8890339 0.9110335
## 1890 0.9439160 0.9321055 0.8890339 0.9110335
## 1891 0.8540864 0.9321055 0.8890339 0.9110335
## 1892 0.8540864 0.9010727 0.8890339 0.9110335
## 1893 0.8540864 0.9080000 0.8890339 0.9110335
## 1894 0.9439160 0.8864504 0.8890339 0.9110335
## 1895 0.8540864 0.9080000 0.8890339 0.9110335
## 1896 0.9439160 0.9321055 0.8791400 0.9110335
## 1897 0.9439160 0.8864504 0.8890339 0.9110335
## 1898 0.8540864 0.8877722 0.8890339 0.9110335
## 1899 0.9439160 0.9321055 0.8890339 0.9110335
## 1900 0.9439160 0.8864504 0.9090369 0.9110335
## 1901 0.9439160 0.9321055 0.8890339 0.9110335
## 1902 0.9439160 0.8864504 0.8890339 0.9110335
## 1903 0.9439160 0.8864504 0.8890339 0.9110335
## 1904 0.9439160 0.9321055 0.8890339 0.9110335
## 1905 0.8540864 0.3750000 0.8890339 0.9110335
## 1906 0.9439160 0.9080000 0.8890339 0.9110335
## 1907 0.8540864 0.9321055 0.8890339 0.9110335
## 1908 0.8540864 0.9010727 0.8890339 0.9110335
## 1909 0.8540864 0.8877722 0.9090369 0.9110335
## 1910 0.8540864 0.9080000 0.8890339 0.9110335
## 1911 0.8540864 0.8877722 0.8890339 0.9110335
## 1912 0.8540864 0.8148148 0.9090369 0.9110335
## 1913 0.8540864 0.8148148 0.8890339 0.9110335
## 1914 0.9439160 0.8864504 0.8890339 0.9110335
## 1915 0.9439160 0.9321055 0.9090369 0.9110335
## 1916 0.8540864 0.9010727 0.8791400 0.9110335
## 1917 0.9439160 0.9321055 0.8890339 0.9110335
## 1918 0.8540864 0.9080000 0.8890339 0.9110335
## 1919 0.8540864 0.9010727 0.8890339 0.9110335
## 1920 0.9439160 0.9080000 0.9090369 0.9110335
## 1921 0.9439160 0.8864504 0.8890339 0.9110335
## 1922 0.9439160 0.9321055 0.8890339 0.9110335
## 1923 0.8540864 0.8877722 0.8890339 0.9110335
## 1924 0.9439160 0.8864504 0.9090369 0.9110335
## 1925 0.9439160 0.9321055 0.9090369 0.9110335
## 1926 0.9439160 0.9321055 0.8890339 0.9110335
## 1927 0.8540864 0.9080000 0.9090369 0.9110335
## 1928 0.9439160 0.9321055 0.8890339 0.9110335
## 1929 0.9439160 0.9321055 0.8890339 0.9110335
## 1930 0.9439160 0.9321055 0.8890339 0.9110335
## 1931 0.9439160 0.9321055 0.8890339 0.9110335
## 1932 0.9439160 0.9321055 0.8890339 0.9110335
## 1933 0.8540864 0.9080000 0.9090369 0.9110335
## 1934 0.9439160 0.9321055 0.8890339 0.9110335
## 1935 0.9439160 0.9321055 0.8890339 0.9110335
## 1936 0.8540864 0.8148148 0.8791400 0.9110335
## 1937 0.8540864 0.8148148 0.8890339 0.9110335
## 1938 0.8540864 0.9321055 0.8890339 0.9110335
## 1939 0.8540864 0.8148148 0.8890339 0.9110335
## 1940 0.8540864 0.9321055 0.8890339 0.9110335
## 1941 0.8540864 0.9321055 0.8890339 0.9110335
## 1942 0.9439160 0.9010727 0.8890339 0.9110335
## 1943 0.9439160 0.8864504 0.9090369 0.9110335
## 1944 0.9439160 0.8864504 0.8890339 0.9110335
## 1945 0.8540864 0.8148148 0.8890339 0.9110335
## 1946 0.9439160 0.8864504 0.8890339 0.9110335
## 1947 0.8540864 0.8864504 0.8890339 0.9110335
## 1948 0.8540864 0.8148148 0.8890339 0.9110335
## 1949 0.8540864 0.9080000 0.8890339 0.9110335
## 1950 0.8540864 0.9010727 0.8890339 0.9110335
## 1951 0.8540864 0.9080000 0.8890339 0.9110335
## 1952 0.8540864 0.8877722 0.8890339 0.9110335
## 1953 0.8540864 0.9080000 0.8890339 0.9110335
## 1954 0.9439160 0.9321055 0.8890339 0.9110335
## 1955 0.8540864 0.9080000 0.8890339 0.9110335
## 1956 0.8540864 0.9010727 0.8890339 0.9110335
## 1957 0.8540864 0.9080000 0.8890339 0.9110335
## 1958 0.9439160 0.9321055 0.8890339 0.9110335
## 1959 0.8540864 0.8148148 0.8890339 0.9110335
## 1960 0.9439160 0.9321055 0.8890339 0.9110335
## 1961 0.9439160 0.9321055 0.8890339 0.9110335
## 1962 0.9439160 0.8864504 0.8890339 0.9110335
## 1963 0.9439160 0.9321055 0.8890339 0.9110335
## 1964 0.9439160 0.8864504 0.8890339 0.9110335
## 1965 0.8540864 0.8877722 0.9090369 0.9110335
## 1966 0.9439160 0.9321055 0.8890339 0.9110335
## 1967 0.8540864 0.9321055 0.8890339 0.9110335
## 1968 0.8540864 0.8877722 0.8890339 0.9110335
## 1969 0.8540864 0.9080000 0.9090369 0.9110335
## 1970 0.9439160 0.9321055 0.8890339 0.9110335
## 1971 0.8540864 0.9321055 0.8791400 0.9110335
## 1972 0.8540864 0.9080000 0.9090369 0.9110335
## 1973 0.8540864 0.9010727 0.8890339 0.9110335
## 1974 0.8540864 0.9321055 0.8890339 0.9110335
## 1975 0.8540864 0.9010727 0.8890339 0.9110335
## 1976 0.8540864 0.9321055 0.8890339 0.9110335
## 1977 0.9439160 0.9321055 0.8890339 0.9110335
## 1978 0.8540864 0.9010727 0.8890339 0.9110335
## 1979 0.9439160 0.9321055 0.8890339 0.9110335
## 1980 0.9439160 0.9321055 0.8890339 0.9110335
## 1981 0.8540864 0.9321055 0.8890339 0.9110335
## 1982 0.9439160 0.8864504 0.9090369 0.9110335
## 1983 0.8540864 0.8877722 0.9090369 0.9110335
## 1984 0.8540864 0.9010727 0.8890339 0.9110335
## 1985 0.8540864 0.9321055 0.8890339 0.9110335
## 1986 0.9439160 0.9321055 0.8890339 0.9110335
## 1987 0.9439160 0.8864504 0.8890339 0.9110335
## 1988 0.8540864 0.9321055 0.8890339 0.9110335
## 1989 0.9439160 0.9321055 0.8890339 0.9110335
## 1990 0.9439160 0.9010727 0.9090369 0.9110335
## 1991 0.8540864 0.8148148 0.8890339 0.9110335
## 1992 0.8540864 0.9080000 0.8890339 0.9110335
## 1993 0.8540864 0.9080000 0.9090369 0.9110335
## 1994 0.8540864 0.9080000 0.8791400 0.9110335
## 1995 0.8540864 0.9080000 0.8890339 0.9110335
## 1996 0.8540864 0.9010727 0.8890339 0.9110335
## 1997 0.9439160 0.8864504 0.8791400 0.9110335
## 1998 0.9439160 0.9010727 0.8890339 0.9110335
## 1999 0.8540864 0.9321055 0.8890339 0.9110335
## 2000 0.9439160 0.9321055 0.9090369 0.9110335
## 2001 0.9439160 0.9321055 0.8890339 0.9110335
## 2002 0.9439160 0.9321055 0.9090369 0.9110335
## 2003 0.9439160 0.9321055 0.8890339 0.9110335
## 2004 0.8540864 0.9010727 0.8890339 0.9110335
## 2005 0.8540864 0.9080000 0.9090369 0.9110335
## 2006 0.9439160 0.8864504 0.9090369 0.9110335
## 2007 0.9439160 0.9321055 0.8890339 0.9110335
## 2008 0.9439160 0.9321055 0.8890339 0.9110335
## 2009 0.8540864 0.9080000 0.8890339 0.9110335
## 2010 0.9439160 0.9321055 0.8890339 0.9110335
## 2011 0.8540864 0.9321055 0.8791400 0.9110335
## 2012 0.9439160 0.9321055 0.9090369 0.9110335
## 2013 0.8540864 0.9321055 0.9090369 0.9110335
## 2014 0.9439160 0.8864504 0.8890339 0.9110335
## 2015 0.8540864 0.8148148 0.8890339 0.9110335
## 2016 0.8540864 0.8877722 0.8890339 0.9110335
## 2017 0.8540864 0.9080000 0.8890339 0.9110335
## 2018 0.8540864 0.8877722 0.8890339 0.9110335
## 2019 0.8540864 0.8148148 0.8890339 0.9110335
## 2020 0.9439160 0.9321055 0.8890339 0.9110335
## 2021 0.8540864 0.9321055 0.8890339 0.9110335
## 2022 0.9439160 0.8864504 0.8890339 0.9110335
## 2023 0.8540864 0.9010727 0.9090369 0.9110335
## 2024 0.9439160 0.9321055 0.8890339 0.9110335
## 2025 0.9439160 0.9321055 0.8890339 0.9110335
## 2026 0.8540864 0.9080000 0.9090369 0.9110335
## 2027 0.8540864 0.8877722 0.8890339 0.9110335
## 2028 0.9439160 0.9321055 0.9090369 0.9110335
## 2029 0.8540864 0.9080000 0.8890339 0.9110335
## 2030 0.9439160 0.8864504 0.8890339 0.9110335
## 2031 0.8540864 0.8148148 0.8791400 0.9110335
## 2032 0.9439160 0.8864504 0.8890339 0.9110335
## 2033 0.8540864 0.9010727 0.8890339 0.9110335
## 2034 0.9439160 0.9321055 0.8890339 0.9110335
## 2035 0.8540864 0.8148148 0.8791400 0.9110335
## 2036 0.8540864 0.9321055 0.8890339 0.9110335
## 2037 0.8540864 0.8877722 0.8890339 0.9110335
## 2038 0.9439160 0.9010727 0.8890339 0.9110335
## 2039 0.8540864 0.8877722 0.8890339 0.9110335
## 2040 0.9439160 0.9321055 0.8890339 0.9110335
## 2041 0.8540864 0.8864504 0.8890339 0.9110335
## 2042 0.8540864 0.9080000 0.8890339 0.9110335
## 2043 0.8540864 0.9010727 0.8890339 0.9110335
## 2044 0.8540864 0.9080000 0.8890339 0.9110335
## 2045 0.9439160 0.8864504 0.8890339 0.9110335
## 2046 0.9439160 0.9321055 0.8890339 0.9110335
## 2047 0.8540864 0.9321055 0.8890339 0.9110335
## 2048 0.9439160 0.9321055 0.8890339 0.9110335
## 2049 0.8540864 0.9010727 0.8890339 0.9110335
## 2050 0.8540864 0.9080000 0.8890339 0.9110335
## 2051 0.9439160 0.9321055 0.8890339 0.9110335
## 2052 0.8540864 0.9080000 0.8890339 0.9110335
## 2053 0.8540864 0.8877722 0.8890339 0.9110335
## 2054 0.8540864 0.9080000 0.8890339 0.9110335
## 2055 0.8540864 0.9321055 0.8890339 0.9110335
## 2056 0.9439160 0.9080000 0.8890339 0.9110335
## 2057 0.8540864 0.9080000 0.8890339 0.9110335
## 2058 0.8540864 0.9321055 0.8890339 0.9110335
## 2059 0.8540864 0.8877722 0.8890339 0.9110335
## 2060 0.8540864 0.8148148 0.8791400 0.9110335
## 2061 0.8540864 0.9080000 0.8890339 0.9110335
## 2062 0.8540864 0.9321055 0.9090369 0.9110335
## 2063 0.8540864 0.8148148 0.8890339 0.9110335
## 2064 0.9439160 0.9321055 0.8890339 0.9110335
## 2065 0.9439160 0.9321055 0.8890339 0.9110335
## 2066 0.9439160 0.9321055 0.8890339 0.9110335
## 2067 0.9439160 0.8864504 0.8890339 0.9110335
## 2068 0.9439160 0.9321055 0.8890339 0.9110335
## 2069 0.9439160 0.8864504 0.9090369 0.9110335
## 2070 0.9439160 0.9321055 0.8890339 0.9110335
## 2071 0.8540864 0.8877722 0.8890339 0.9110335
## 2072 0.9439160 0.8864504 0.8791400 0.9110335
## 2073 0.8540864 0.9321055 0.8890339 0.9110335
## 2074 0.8540864 0.8877722 0.9090369 0.9110335
## 2075 0.8540864 0.9321055 0.8890339 0.9110335
## 2076 0.9439160 0.9321055 0.8890339 0.9110335
## 2077 0.8540864 0.6137931 0.8890339 0.9110335
## 2078 0.8540864 0.8877722 0.9090369 0.9110335
## 2079 0.8540864 0.9321055 0.8890339 0.9110335
## 2080 0.9439160 0.9321055 0.8890339 0.9110335
## 2081 0.9439160 0.9321055 0.8890339 0.9110335
## 2082 0.9439160 0.9321055 0.9090369 0.9110335
## 2083 0.8540864 0.5408163 0.8890339 0.9110335
## 2084 0.8540864 0.9010727 0.8890339 0.9110335
## 2085 0.8540864 0.9321055 0.9090369 0.9110335
## 2086 0.9439160 0.9321055 0.8890339 0.9110335
## 2087 0.8540864 0.9321055 0.9090369 0.9110335
## 2088 0.9439160 0.9321055 0.8890339 0.9110335
## 2089 0.9439160 0.8864504 0.8890339 0.9110335
## 2090 0.9439160 0.9321055 0.8890339 0.9110335
## 2091 0.9439160 0.9321055 0.8890339 0.9110335
## 2092 0.8540864 0.9080000 0.8890339 0.9110335
## 2093 0.8540864 0.9080000 0.8890339 0.9110335
## 2094 0.9439160 0.9321055 0.8890339 0.9110335
## 2095 0.8540864 0.9080000 0.8890339 0.9110335
## 2096 0.8540864 0.9321055 0.8890339 0.9110335
## 2097 0.9439160 0.9080000 0.8890339 0.9110335
## 2098 0.9439160 0.9321055 0.8890339 0.9110335
## 2099 0.9439160 0.8864504 0.8890339 0.9110335
## 2100 0.8540864 0.8877722 0.8890339 0.9110335
## 2101 0.8540864 0.9321055 0.8890339 0.9110335
## 2102 0.8540864 0.9321055 0.8890339 0.9110335
## 2103 0.9439160 0.9321055 0.8890339 0.9110335
## 2104 0.9439160 0.9321055 0.8890339 0.9110335
## 2105 0.8540864 0.9010727 0.8890339 0.9110335
## 2106 0.9439160 0.8864504 0.9090369 0.9110335
## 2107 0.8540864 0.8877722 0.9090369 0.9110335
## 2108 0.8540864 0.8877722 0.9090369 0.9110335
## 2109 0.9439160 0.8148148 0.8890339 0.9110335
## 2110 0.8540864 0.9010727 0.8890339 0.9110335
## 2111 0.8540864 0.8148148 0.9090369 0.9110335
## 2112 0.8540864 0.9010727 0.9090369 0.9110335
## 2113 0.8540864 0.9321055 0.8890339 0.9110335
## 2114 0.9439160 0.9321055 0.8890339 0.9110335
## 2115 0.8540864 0.8877722 0.9090369 0.9110335
## 2116 0.9439160 0.9080000 0.8890339 0.9110335
## 2117 0.9439160 0.9321055 0.8890339 0.9110335
## 2118 0.8540864 0.9321055 0.8890339 0.9110335
## 2119 0.9439160 0.9321055 0.9090369 0.9110335
## 2120 0.8540864 0.9321055 0.8890339 0.9110335
## 2121 0.8540864 0.8877722 0.8791400 0.9110335
## 2122 0.9439160 0.9080000 0.8890339 0.9110335
## 2123 0.8540864 0.8877722 0.8890339 0.9110335
## 2124 0.9439160 0.8864504 0.8890339 0.9110335
## 2125 0.8540864 0.9321055 0.9090369 0.9110335
## 2126 0.8540864 0.8877722 0.8890339 0.9110335
## 2127 0.9439160 0.6137931 0.8890339 0.9110335
## 2128 0.8540864 0.9321055 0.9090369 0.9110335
## 2129 0.9439160 0.9321055 0.9090369 0.9110335
## 2130 0.8540864 0.9010727 0.8890339 0.9110335
## 2131 0.9439160 0.9321055 0.9090369 0.9110335
## 2132 0.9439160 0.8864504 0.9090369 0.9110335
## 2133 0.9439160 0.9080000 0.8890339 0.9110335
## 2134 0.8540864 0.8877722 0.9090369 0.9110335
## 2135 0.9439160 0.8864504 0.8890339 0.9110335
## 2136 0.9439160 0.9321055 0.8890339 0.9110335
## 2137 0.8540864 0.8877722 0.8890339 0.9110335
## 2138 0.9439160 0.9321055 0.8890339 0.9110335
## 2139 0.8540864 0.8877722 0.8890339 0.9110335
## 2140 0.8540864 0.8877722 0.9090369 0.9110335
## 2141 0.8540864 0.9080000 0.8890339 0.9110335
## 2142 0.8540864 0.9080000 0.8890339 0.9110335
## 2143 0.9439160 0.9321055 0.9090369 0.9110335
## 2144 0.8540864 0.9010727 0.8890339 0.9110335
## 2145 0.9439160 0.9321055 0.8890339 0.9110335
## 2146 0.8540864 0.9010727 0.8890339 0.9110335
## 2147 0.8540864 0.9321055 0.8890339 0.9110335
## 2148 0.9439160 0.9321055 0.8890339 0.9110335
## 2149 0.8540864 0.9080000 0.9090369 0.9110335
## 2150 0.9439160 0.8864504 0.8890339 0.9110335
## 2151 0.9439160 0.9321055 0.8890339 0.9110335
## 2152 0.8540864 0.9321055 0.8890339 0.9110335
## 2153 0.8540864 0.9321055 0.8890339 0.9110335
## 2154 0.9439160 0.8864504 0.8890339 0.9110335
## 2155 0.9439160 0.9321055 0.9090369 0.9110335
## 2156 0.9439160 0.9321055 0.8791400 0.9110335
## 2157 0.9439160 0.9080000 0.8890339 0.9110335
## 2158 0.8540864 0.9321055 0.8890339 0.9110335
## 2159 0.8540864 0.9321055 0.8890339 0.9110335
## 2160 0.9439160 0.9321055 0.9090369 0.9110335
## 2161 0.8540864 0.9010727 0.8890339 0.9110335
## 2162 0.9439160 0.8864504 0.9090369 0.9110335
## 2163 0.8540864 0.8148148 0.8890339 0.9110335
## 2164 0.9439160 0.9080000 0.9090369 0.9110335
## 2165 0.9439160 0.9321055 0.8890339 0.9110335
## 2166 0.9439160 0.9321055 0.8791400 0.9110335
## 2167 0.8540864 0.9010727 0.8890339 0.9110335
## 2168 0.9439160 0.6137931 0.8890339 0.9110335
## 2169 0.8540864 0.9080000 0.8791400 0.9110335
## 2170 0.9439160 0.9321055 0.8890339 0.9110335
## 2171 0.8540864 0.8148148 0.8890339 0.9110335
## 2172 0.8540864 0.9321055 0.8890339 0.9110335
## 2173 0.9439160 0.8864504 0.8890339 0.9110335
## 2174 0.8540864 0.9321055 0.8890339 0.9110335
## 2175 0.8540864 0.4949495 0.8890339 0.9110335
## 2176 0.9439160 0.9321055 0.8890339 0.9110335
## 2177 0.8540864 0.9010727 0.8890339 0.9110335
## 2178 0.8540864 0.9321055 0.8890339 0.9110335
## 2179 0.9439160 0.9010727 0.8890339 0.9110335
## 2180 0.8540864 0.5408163 0.8890339 0.9110335
## 2181 0.8540864 0.9321055 0.8890339 0.9110335
## 2182 0.8540864 0.9321055 0.8890339 0.9110335
## 2183 0.9439160 0.9321055 0.8890339 0.9110335
## 2184 0.9439160 0.8864504 0.9090369 0.9110335
## 2185 0.8540864 0.9010727 0.8890339 0.9110335
## 2186 0.8540864 0.8877722 0.8890339 0.9110335
## 2187 0.9439160 0.9321055 0.8890339 0.9110335
## 2188 0.8540864 0.9080000 0.8791400 0.9110335
## 2189 0.9439160 0.8864504 0.8890339 0.9110335
## 2190 0.8540864 0.9321055 0.8890339 0.9110335
## 2191 0.8540864 0.8877722 0.9090369 0.9110335
## 2192 0.9439160 0.9321055 0.8890339 0.9110335
## 2193 0.8540864 0.9010727 0.9090369 0.9110335
## 2194 0.8540864 0.9080000 0.9090369 0.9110335
## 2195 0.9439160 0.9321055 0.8890339 0.9110335
## 2196 0.9439160 0.8864504 0.8890339 0.9110335
## 2197 0.8540864 0.9080000 0.8890339 0.9110335
## 2198 0.9439160 0.8864504 0.8890339 0.9110335
## 2199 0.8540864 0.9010727 0.8890339 0.9110335
## 2200 0.8540864 0.9010727 0.8890339 0.9110335
## 2201 0.9439160 0.9321055 0.8890339 0.9110335
## 2202 0.8540864 0.9321055 0.8890339 0.9110335
## 2203 0.8540864 0.9321055 0.8890339 0.9110335
## 2204 0.9439160 0.9321055 0.8890339 0.9110335
## 2205 0.8540864 0.9321055 0.8890339 0.9110335
## 2206 0.9439160 0.9321055 0.8890339 0.9110335
## 2207 0.9439160 0.5408163 0.9090369 0.9110335
## 2208 0.9439160 0.9010727 0.8890339 0.9110335
## 2209 0.9439160 0.8864504 0.8890339 0.9110335
## 2210 0.8540864 0.4949495 0.8890339 0.9110335
## 2211 0.9439160 0.8864504 0.8890339 0.9110335
## 2212 0.9439160 0.9321055 0.8890339 0.9110335
## 2213 0.9439160 0.9321055 0.8890339 0.9110335
## 2214 0.8540864 0.9010727 0.8890339 0.9110335
## 2215 0.9439160 0.8864504 0.8890339 0.9110335
## 2216 0.9439160 0.8864504 0.9090369 0.9110335
## 2217 0.8540864 0.9080000 0.8890339 0.9110335
## 2218 0.9439160 0.9321055 0.8890339 0.9110335
## 2219 0.8540864 0.9080000 0.9090369 0.9110335
## 2220 0.8540864 0.9080000 0.8890339 0.9110335
## 2221 0.8540864 0.9010727 0.8890339 0.9110335
## 2222 0.9439160 0.9321055 0.8890339 0.9110335
## 2223 0.9439160 0.9321055 0.8890339 0.9110335
## 2224 0.8540864 0.9080000 0.9090369 0.9110335
## 2225 0.8540864 0.9321055 0.8890339 0.9110335
## 2226 0.8540864 0.9080000 0.9090369 0.9110335
## 2227 0.8540864 0.9010727 0.8890339 0.9110335
## 2228 0.8540864 0.9010727 0.8890339 0.9110335
## 2229 0.9439160 0.9321055 0.8890339 0.9110335
## 2230 0.8540864 0.9080000 0.8890339 0.9110335
## 2231 0.8540864 0.8877722 0.8791400 0.9110335
## 2232 0.9439160 0.9321055 0.8890339 0.9110335
## 2233 0.8540864 0.8877722 0.9090369 0.9110335
## 2234 0.8540864 0.9080000 0.8890339 0.9110335
## 2235 0.8540864 0.9010727 0.8890339 0.9110335
## 2236 0.9439160 0.9321055 0.9090369 0.9110335
## 2237 0.8540864 0.9080000 0.8890339 0.9110335
## 2238 0.9439160 0.8864504 0.8890339 0.9110335
## 2239 0.8540864 0.9010727 0.8890339 0.9110335
## 2240 0.9439160 0.9321055 0.8890339 0.9110335
## 2241 0.8540864 0.9321055 0.8890339 0.9110335
## 2242 0.8540864 0.8877722 0.9090369 0.9110335
## 2243 0.9439160 0.9321055 0.8890339 0.9110335
## 2244 0.9439160 0.8864504 0.8890339 0.9110335
## 2245 0.8540864 0.8877722 0.8890339 0.9110335
## 2246 0.9439160 0.9010727 0.8890339 0.9110335
## 2247 0.8540864 0.8148148 0.9090369 0.9110335
## 2248 0.8540864 0.9010727 0.8890339 0.9110335
## 2249 0.9439160 0.9321055 0.8890339 0.9110335
## 2250 0.9439160 0.9321055 0.8890339 0.9110335
## 2251 0.8540864 0.9010727 0.8890339 0.9110335
## 2252 0.8540864 0.9080000 0.9090369 0.9110335
## 2253 0.8540864 0.9321055 0.8890339 0.9110335
## 2254 0.8540864 0.9080000 0.8890339 0.9110335
## 2255 0.9439160 0.5408163 0.8890339 0.9110335
## 2256 0.8540864 0.9010727 0.8890339 0.9110335
## 2257 0.8540864 0.9010727 0.8890339 0.9110335
## 2258 0.9439160 0.8864504 0.8890339 0.9110335
## 2259 0.9439160 0.9321055 0.8890339 0.9110335
## 2260 0.9439160 0.8864504 0.8890339 0.9110335
## 2261 0.8540864 0.9010727 0.8890339 0.9110335
## 2262 0.9439160 0.9321055 0.8890339 0.9110335
## 2263 0.9439160 0.8864504 0.9090369 0.9110335
## 2264 0.9439160 0.9321055 0.8890339 0.9110335
## 2265 0.9439160 0.9321055 0.8890339 0.9110335
## 2266 0.9439160 0.9321055 0.8890339 0.9110335
## 2267 0.9439160 0.9080000 0.8890339 0.9110335
## 2268 0.9439160 0.9321055 0.8890339 0.9110335
## 2269 0.9439160 0.8877722 0.8890339 0.9110335
## 2270 0.8540864 0.9010727 0.9090369 0.9110335
## 2271 0.8540864 0.9080000 0.8890339 0.9110335
## 2272 0.9439160 0.8864504 0.8890339 0.9110335
## 2273 0.8540864 0.8877722 0.9090369 0.9110335
## 2274 0.9439160 0.9321055 0.8890339 0.9110335
## 2275 0.8540864 0.9321055 0.8890339 0.9110335
## 2276 0.8540864 0.9010727 0.8890339 0.9110335
## 2277 0.8540864 0.9010727 0.8890339 0.9110335
## 2278 0.8540864 0.9321055 0.8890339 0.9110335
## 2279 0.9439160 0.9321055 0.8890339 0.9110335
## 2280 0.8540864 0.8877722 0.9090369 0.9110335
## 2281 0.9439160 0.9321055 0.8890339 0.9110335
## 2282 0.8540864 0.9010727 0.8890339 0.9110335
## 2283 0.9439160 0.9321055 0.8890339 0.9110335
## 2284 0.8540864 0.9080000 0.9090369 0.9110335
## 2285 0.8540864 0.9080000 0.9090369 0.9110335
## 2286 0.8540864 0.8877722 0.8890339 0.9110335
## 2287 0.8540864 0.9080000 0.8890339 0.9110335
## 2288 0.9439160 0.8864504 0.8890339 0.9110335
## 2289 0.8540864 0.8877722 0.8890339 0.9110335
## 2290 0.9439160 0.9321055 0.9090369 0.9110335
## 2291 0.8540864 0.8877722 0.8890339 0.9110335
## 2292 0.9439160 0.8864504 0.9090369 0.9110335
## 2293 0.8540864 0.8148148 0.9090369 0.9110335
## 2294 0.9439160 0.9321055 0.9090369 0.9110335
## 2295 0.9439160 0.9321055 0.8890339 0.9110335
## 2296 0.9439160 0.9321055 0.8890339 0.9110335
## 2297 0.9439160 0.9321055 0.9090369 0.9110335
## 2298 0.8540864 0.9080000 0.8890339 0.9110335
## 2299 0.8540864 0.9080000 0.9090369 0.9110335
## 2300 0.9439160 0.9321055 0.8890339 0.9110335
## 2301 0.8540864 0.8877722 0.8890339 0.9110335
## 2302 0.8540864 0.8864504 0.9090369 0.9110335
## 2303 0.8540864 0.8877722 0.9090369 0.9110335
## 2304 0.8540864 0.9080000 0.8890339 0.9110335
## 2305 0.9439160 0.9321055 0.8890339 0.9110335
## 2306 0.8540864 0.4949495 0.9090369 0.9110335
## 2307 0.9439160 0.9321055 0.9090369 0.9110335
## 2308 0.9439160 0.8864504 0.8890339 0.9110335
## 2309 0.8540864 0.8877722 0.9090369 0.9110335
## 2310 0.9439160 0.9321055 0.8890339 0.9110335
## 2311 0.9439160 0.9321055 0.8890339 0.9110335
## 2312 0.9439160 0.9321055 0.8890339 0.9110335
## 2313 0.8540864 0.9080000 0.9090369 0.9110335
## 2314 0.8540864 0.8877722 0.8890339 0.9110335
## 2315 0.9439160 0.9321055 0.8890339 0.9110335
## 2316 0.8540864 0.9080000 0.8890339 0.9110335
## 2317 0.9439160 0.9321055 0.8890339 0.9110335
## 2318 0.9439160 0.9321055 0.8890339 0.9110335
## 2319 0.9439160 0.9321055 0.8890339 0.9110335
## 2320 0.8540864 0.9080000 0.9090369 0.9110335
## 2321 0.9439160 0.9321055 0.8890339 0.9110335
## 2322 0.9439160 0.9321055 0.9090369 0.9110335
## 2323 0.9439160 0.8864504 0.8791400 0.9110335
## 2324 0.8540864 0.9321055 0.8890339 0.9110335
## 2325 0.9439160 0.8864504 0.8890339 0.9110335
## 2326 0.9439160 0.8864504 0.8890339 0.9110335
## 2327 0.8540864 0.8877722 0.8890339 0.9110335
## 2328 0.8540864 0.9010727 0.8890339 0.9110335
## 2329 0.9439160 0.9321055 0.8890339 0.9110335
## 2330 0.8540864 0.9010727 0.8890339 0.9110335
## 2331 0.9439160 0.8864504 0.8890339 0.9110335
## 2332 0.8540864 0.8877722 0.8791400 0.9110335
## 2333 0.9439160 0.8864504 0.8890339 0.9110335
## 2334 0.9439160 0.9321055 0.9090369 0.9110335
## 2335 0.9439160 0.8864504 0.8890339 0.9110335
## 2336 0.8540864 0.9080000 0.8890339 0.9110335
## 2337 0.9439160 0.9321055 0.8890339 0.9110335
## 2338 0.8540864 0.5408163 0.8890339 0.9110335
## 2339 0.9439160 0.9321055 0.9090369 0.9110335
## 2340 0.9439160 0.9321055 0.8890339 0.9110335
## 2341 0.8540864 0.8877722 0.9090369 0.9110335
## 2342 0.8540864 0.9080000 0.8890339 0.9110335
## 2343 0.9439160 0.9321055 0.8890339 0.9110335
## 2344 0.8540864 0.9010727 0.8791400 0.9110335
## 2345 0.9439160 0.8864504 0.9090369 0.9110335
## 2346 0.8540864 0.9321055 0.8890339 0.9110335
## 2347 0.9439160 0.9321055 0.9090369 0.9110335
## 2348 0.8540864 0.9010727 0.8890339 0.9110335
## 2349 0.9439160 0.9321055 0.8791400 0.9110335
## 2350 0.9439160 0.8864504 0.8890339 0.9110335
## 2351 0.8540864 0.9010727 0.9090369 0.9110335
## 2352 0.8540864 0.9080000 0.9090369 0.9110335
## 2353 0.9439160 0.9321055 0.9090369 0.9110335
## 2354 0.8540864 0.8877722 0.9090369 0.9110335
## 2355 0.9439160 0.9321055 0.9090369 0.9110335
## 2356 0.8540864 0.8148148 0.9090369 0.9110335
## 2357 0.8540864 0.8148148 0.9090369 0.9110335
## 2358 0.9439160 0.8864504 0.8791400 0.9110335
## 2359 0.8540864 0.8148148 0.9090369 0.9110335
## 2360 0.9439160 0.9321055 0.9090369 0.9110335
## 2361 0.9439160 0.8864504 0.9090369 0.9110335
## 2362 0.9439160 0.8148148 0.9090369 0.9110335
## 2363 0.9439160 0.9321055 0.9090369 0.9110335
## 2364 0.8540864 0.8877722 0.9090369 0.9110335
## 2365 0.9439160 0.8864504 0.9090369 0.9110335
## 2366 0.8540864 0.8148148 0.9090369 0.9110335
## 2367 0.9439160 0.9321055 0.9090369 0.9110335
## 2368 0.9439160 0.9321055 0.9090369 0.9110335
## 2369 0.8540864 0.9321055 0.9090369 0.9110335
## 2370 0.8540864 0.8148148 0.9090369 0.9110335
## 2371 0.8540864 0.8877722 0.9090369 0.9110335
## 2372 0.8540864 0.8148148 0.9090369 0.9110335
## 2373 0.8540864 0.8877722 0.9090369 0.9110335
## 2374 0.8540864 0.9321055 0.9090369 0.9110335
## 2375 0.8540864 0.9080000 0.9090369 0.9110335
## 2376 0.8540864 0.6137931 0.9090369 0.9110335
## 2377 0.8540864 0.8148148 0.9090369 0.9110335
## 2378 0.8540864 0.9080000 0.9090369 0.9110335
## 2379 0.8540864 0.8877722 0.9090369 0.9110335
## 2380 0.9439160 0.9321055 0.9090369 0.9110335
## 2381 0.8540864 0.9080000 0.9090369 0.9110335
## 2382 0.9439160 0.9321055 0.9090369 0.9110335
## 2383 0.8540864 0.8877722 0.9090369 0.9110335
## 2384 0.9439160 0.9321055 0.9090369 0.9110335
## 2385 0.9439160 0.8864504 0.9090369 0.9110335
## 2386 0.8540864 0.9010727 0.9090369 0.9110335
## 2387 0.9439160 0.8864504 0.9090369 0.9110335
## 2388 0.8540864 0.8877722 0.9090369 0.9110335
## 2389 0.8540864 0.8148148 0.9090369 0.9110335
## 2390 0.8540864 0.8877722 0.9090369 0.9110335
## 2391 0.8540864 0.9080000 0.9090369 0.9110335
## 2392 0.8540864 0.8148148 0.9090369 0.9110335
## 2393 0.8540864 0.8877722 0.9090369 0.9110335
## 2394 0.9439160 0.9321055 0.9090369 0.9110335
## 2395 0.9439160 0.8864504 0.9090369 0.9110335
## 2396 0.8540864 0.8877722 0.9090369 0.9110335
## 2397 0.9439160 0.6137931 0.9090369 0.9110335
## 2398 0.9439160 0.9321055 0.9090369 0.9110335
## 2399 0.9439160 0.8864504 0.9090369 0.9110335
## 2400 0.8540864 0.9321055 0.9090369 0.9110335
## 2401 0.8540864 0.9080000 0.9090369 0.9110335
## 2402 0.8540864 0.8877722 0.9090369 0.9110335
## 2403 0.9439160 0.8864504 0.9090369 0.9110335
## 2404 0.8540864 0.9321055 0.9090369 0.9110335
## 2405 0.9439160 0.6137931 0.9090369 0.9110335
## 2406 0.9439160 0.8864504 0.9090369 0.9110335
## 2407 0.8540864 0.8877722 0.9090369 0.9110335
## 2408 0.8540864 0.8877722 0.9090369 0.9110335
## 2409 0.9439160 0.8864504 0.9090369 0.9110335
## 2410 0.8540864 0.9010727 0.9090369 0.9110335
## 2411 0.8540864 0.9321055 0.9090369 0.9110335
## 2412 0.8540864 0.8877722 0.9090369 0.9110335
## 2413 0.9439160 0.8864504 0.9090369 0.9110335
## 2414 0.8540864 0.9080000 0.9090369 0.9110335
## 2415 0.8540864 0.9010727 0.9090369 0.9110335
## 2416 0.8540864 0.8148148 0.9090369 0.9110335
## 2417 0.8540864 0.8877722 0.9090369 0.9110335
## 2418 0.9439160 0.8148148 0.9090369 0.9110335
## 2419 0.8540864 0.8148148 0.9090369 0.9110335
## 2420 0.9439160 0.8864504 0.9090369 0.9110335
## 2421 0.8540864 0.8148148 0.9090369 0.9110335
## 2422 0.9439160 0.8864504 0.8791400 0.9110335
## 2423 0.8540864 0.8877722 0.9090369 0.9110335
## 2424 0.9439160 0.8864504 0.9090369 0.9110335
## 2425 0.9439160 0.8877722 0.9090369 0.9110335
## 2426 0.8540864 0.9080000 0.9090369 0.9110335
## 2427 0.8540864 0.8877722 0.9090369 0.9110335
## 2428 0.8540864 0.9321055 0.9090369 0.9110335
## 2429 0.8540864 0.8148148 0.9090369 0.9110335
## 2430 0.9439160 0.8864504 0.9090369 0.9110335
## 2431 0.9439160 0.3750000 0.9090369 0.9110335
## 2432 0.9439160 0.9321055 0.9090369 0.9110335
## 2433 0.9439160 0.9080000 0.9090369 0.9110335
## 2434 0.9439160 0.9321055 0.9090369 0.9110335
## 2435 0.8540864 0.9080000 0.9090369 0.9110335
## 2436 0.8540864 0.8877722 0.9090369 0.9110335
## 2437 0.8540864 0.9080000 0.9090369 0.9110335
## 2438 0.9439160 0.9080000 0.9090369 0.9110335
## 2439 0.8540864 0.8148148 0.9090369 0.9110335
## 2440 0.9439160 0.8864504 0.9090369 0.9110335
## 2441 0.9439160 0.9321055 0.9090369 0.9110335
## 2442 0.8540864 0.8877722 0.9090369 0.9110335
## 2443 0.8540864 0.9080000 0.9090369 0.9110335
## 2444 0.8540864 0.9080000 0.9090369 0.9110335
## 2445 0.9439160 0.9321055 0.9090369 0.9110335
## 2446 0.8540864 0.6137931 0.9090369 0.9110335
## 2447 0.8540864 0.9080000 0.9090369 0.9110335
## 2448 0.9439160 0.8864504 0.9090369 0.9110335
## 2449 0.9439160 0.8877722 0.9090369 0.9110335
## 2450 0.8540864 0.9010727 0.9090369 0.9110335
## 2451 0.8540864 0.8877722 0.9090369 0.9110335
## 2452 0.8540864 0.8148148 0.9090369 0.9110335
## 2453 0.8540864 0.8877722 0.9090369 0.9110335
## 2454 0.9439160 0.8864504 0.9090369 0.9110335
## 2455 0.9439160 0.9321055 0.9090369 0.9110335
## 2456 0.8540864 0.9321055 0.9090369 0.9110335
## 2457 0.8540864 0.9080000 0.9090369 0.9110335
## 2458 0.9439160 0.9080000 0.9090369 0.9110335
## 2459 0.8540864 0.9080000 0.9090369 0.9110335
## 2460 0.9439160 0.9321055 0.9090369 0.9110335
## 2461 0.8540864 0.8877722 0.9090369 0.9110335
## 2462 0.8540864 0.8877722 0.9090369 0.9110335
## 2463 0.8540864 0.9080000 0.9090369 0.9110335
## 2464 0.9439160 0.9321055 0.9090369 0.9110335
## 2465 0.9439160 0.8864504 0.9090369 0.9110335
## 2466 0.9439160 0.8864504 0.9090369 0.9110335
## 2467 0.8540864 0.9080000 0.9090369 0.9110335
## 2468 0.9439160 0.8864504 0.9090369 0.9110335
## 2469 0.8540864 0.9321055 0.9090369 0.9110335
## 2470 0.8540864 0.8877722 0.8791400 0.9110335
## 2471 0.8540864 0.9321055 0.9090369 0.9110335
## 2472 0.8540864 0.9080000 0.9090369 0.9110335
## 2473 0.8540864 0.8877722 0.9090369 0.9110335
## 2474 0.8540864 0.9010727 0.9090369 0.9110335
## 2475 0.9439160 0.6137931 0.9090369 0.9110335
## 2476 0.9439160 0.9321055 0.9090369 0.9110335
## 2477 0.8540864 0.8864504 0.9090369 0.9110335
## 2478 0.8540864 0.9080000 0.9090369 0.9110335
## 2479 0.9439160 0.8864504 0.9090369 0.9110335
## 2480 0.9439160 0.8864504 0.9090369 0.9110335
## 2481 0.8540864 0.9080000 0.9090369 0.9110335
## 2482 0.8540864 0.9080000 0.9090369 0.9110335
## 2483 0.8540864 0.8877722 0.9090369 0.9110335
## 2484 0.9439160 0.9321055 0.9090369 0.9110335
## 2485 0.8540864 0.9080000 0.9090369 0.9110335
## 2486 0.9439160 0.8864504 0.9090369 0.9110335
## 2487 0.8540864 0.9321055 0.9090369 0.9110335
## 2488 0.8540864 0.8148148 0.9090369 0.9110335
## 2489 0.8540864 0.9080000 0.9090369 0.9110335
## 2490 0.9439160 0.9321055 0.9090369 0.9110335
## 2491 0.8540864 0.8877722 0.9090369 0.9110335
## 2492 0.9439160 0.9321055 0.9090369 0.9110335
## 2493 0.8540864 0.9080000 0.9090369 0.9110335
## 2494 0.9439160 0.8864504 0.9090369 0.9110335
## 2495 0.8540864 0.9010727 0.9090369 0.9110335
## 2496 0.8540864 0.8864504 0.9090369 0.9110335
## 2497 0.8540864 0.9321055 0.9090369 0.9110335
## 2498 0.8540864 0.8148148 0.9090369 0.9110335
## 2499 0.8540864 0.8877722 0.9090369 0.9110335
## 2500 0.8540864 0.9080000 0.9090369 0.9110335
## 2501 0.8540864 0.9080000 0.9090369 0.9110335
## 2502 0.8540864 0.9080000 0.9090369 0.9110335
## 2503 0.8540864 0.8877722 0.9090369 0.9110335
## 2504 0.8540864 0.9080000 0.9090369 0.9110335
## 2505 0.8540864 0.8877722 0.9090369 0.9110335
## 2506 0.8540864 0.9080000 0.9090369 0.9110335
## 2507 0.8540864 0.8877722 0.9090369 0.9110335
## 2508 0.8540864 0.9080000 0.8791400 0.9110335
## 2509 0.8540864 0.8877722 0.9090369 0.9110335
## 2510 0.8540864 0.8877722 0.9090369 0.9110335
## 2511 0.8540864 0.8148148 0.9090369 0.9110335
## 2512 0.8540864 0.8148148 0.9090369 0.9110335
## 2513 0.9439160 0.9080000 0.9090369 0.9110335
## 2514 0.8540864 0.8877722 0.9090369 0.9110335
## 2515 0.9439160 0.8864504 0.9090369 0.9110335
## 2516 0.8540864 0.9080000 0.9090369 0.9110335
## 2517 0.8540864 0.9080000 0.9090369 0.9110335
## 2518 0.9439160 0.9321055 0.9090369 0.9110335
## 2519 0.9439160 0.8864504 0.9090369 0.9110335
## 2520 0.8540864 0.9080000 0.9090369 0.9110335
## 2521 0.8540864 0.8877722 0.9090369 0.9110335
## 2522 0.8540864 0.8148148 0.9090369 0.9110335
## 2523 0.9439160 0.9321055 0.9090369 0.9110335
## 2524 0.8540864 0.9080000 0.9090369 0.9110335
## 2525 0.8540864 0.9080000 0.9090369 0.9110335
## 2526 0.9439160 0.8864504 0.9090369 0.9110335
## 2527 0.8540864 0.9080000 0.9090369 0.9110335
## 2528 0.8540864 0.9080000 0.9090369 0.9110335
## 2529 0.9439160 0.9321055 0.9090369 0.9110335
## 2530 0.8540864 0.9080000 0.9090369 0.9110335
## 2531 0.9439160 0.9321055 0.9090369 0.9110335
## 2532 0.8540864 0.8877722 0.9090369 0.9110335
## 2533 0.8540864 0.8148148 0.9090369 0.9110335
## 2534 0.9439160 0.9321055 0.9090369 0.9110335
## 2535 0.8540864 0.8877722 0.9090369 0.9110335
## 2536 0.8540864 0.9321055 0.9090369 0.9110335
## 2537 0.8540864 0.8877722 0.9090369 0.9110335
## 2538 0.8540864 0.9080000 0.9090369 0.9110335
## 2539 0.8540864 0.9321055 0.9090369 0.9110335
## 2540 0.9439160 0.8864504 0.9090369 0.9110335
## 2541 0.9439160 0.9321055 0.9090369 0.9110335
## 2542 0.9439160 0.9321055 0.9090369 0.9110335
## 2543 0.8540864 0.8877722 0.9090369 0.9110335
## 2544 0.9439160 0.9321055 0.9090369 0.9110335
## 2545 0.9439160 0.9321055 0.9090369 0.9110335
## 2546 0.8540864 0.8864504 0.9090369 0.9110335
## 2547 0.9439160 0.9321055 0.9090369 0.9110335
## 2548 0.8540864 0.8877722 0.9090369 0.9110335
## 2549 0.8540864 0.8877722 0.9090369 0.9110335
## 2550 0.8540864 0.9080000 0.9090369 0.9110335
## 2551 0.8540864 0.9010727 0.9090369 0.9110335
## 2552 0.8540864 0.9080000 0.9090369 0.9110335
## 2553 0.8540864 0.9321055 0.9090369 0.9110335
## 2554 0.9439160 0.9321055 0.9090369 0.9110335
## 2555 0.8540864 0.8148148 0.9090369 0.9110335
## 2556 0.8540864 0.9080000 0.9090369 0.9110335
## 2557 0.8540864 0.9080000 0.9090369 0.9110335
## 2558 0.8540864 0.9010727 0.9090369 0.9110335
## 2559 0.9439160 0.9321055 0.9090369 0.9110335
## 2560 0.9439160 0.9321055 0.9090369 0.9110335
## 2561 0.8540864 0.8877722 0.9090369 0.9110335
## 2562 0.9439160 0.9080000 0.9090369 0.9110335
## 2563 0.8540864 0.4949495 0.9090369 0.9110335
## 2564 0.9439160 0.9321055 0.9090369 0.9110335
## 2565 0.8540864 0.9080000 0.9090369 0.9110335
## 2566 0.8540864 0.9080000 0.9090369 0.9110335
## 2567 0.8540864 0.9080000 0.9090369 0.9110335
## 2568 0.8540864 0.8877722 0.9090369 0.9110335
## 2569 0.8540864 0.8877722 0.9090369 0.9110335
## 2570 0.9439160 0.8864504 0.9090369 0.9110335
## 2571 0.8540864 0.8148148 0.9090369 0.9110335
## 2572 0.8540864 0.8877722 0.9090369 0.9110335
## 2573 0.8540864 0.9321055 0.9090369 0.9110335
## 2574 0.8540864 0.8877722 0.9090369 0.9110335
## 2575 0.8540864 0.8864504 0.9090369 0.9110335
## 2576 0.8540864 0.9080000 0.9090369 0.9110335
## 2577 0.8540864 0.9321055 0.9090369 0.9110335
## 2578 0.8540864 0.8877722 0.9090369 0.9110335
## 2579 0.9439160 0.8864504 0.9090369 0.9110335
## 2580 0.9439160 0.9321055 0.9090369 0.9110335
## 2581 0.8540864 0.8877722 0.9090369 0.9110335
## 2582 0.8540864 0.9080000 0.9090369 0.9110335
## 2583 0.8540864 0.8864504 0.9090369 0.9110335
## 2584 0.9439160 0.9321055 0.9090369 0.9110335
## 2585 0.8540864 0.8877722 0.9090369 0.9110335
## 2586 0.8540864 0.9321055 0.9090369 0.9110335
## 2587 0.8540864 0.4949495 0.9090369 0.9110335
## 2588 0.9439160 0.9321055 0.9090369 0.9110335
## 2589 0.8540864 0.8864504 0.8791400 0.9110335
## 2590 0.8540864 0.8148148 0.9090369 0.9110335
## 2591 0.9439160 0.9321055 0.9090369 0.9110335
## 2592 0.8540864 0.8877722 0.9090369 0.9110335
## 2593 0.8540864 0.8877722 0.9090369 0.9110335
## 2594 0.9439160 0.9321055 0.9090369 0.9110335
## 2595 0.8540864 0.8877722 0.9090369 0.9110335
## 2596 0.8540864 0.9080000 0.8791400 0.9110335
## 2597 0.9439160 0.9321055 0.9090369 0.9110335
## 2598 0.8540864 0.9080000 0.9090369 0.9110335
## 2599 0.8540864 0.9080000 0.9090369 0.9110335
## 2600 0.9439160 0.8864504 0.9090369 0.9110335
## 2601 0.8540864 0.8148148 0.9090369 0.9110335
## 2602 0.9439160 0.9321055 0.9090369 0.9110335
## 2603 0.8540864 0.8877722 0.9090369 0.9110335
## 2604 0.9439160 0.9321055 0.9090369 0.9110335
## 2605 0.9439160 0.9321055 0.9090369 0.9110335
## 2606 0.8540864 0.9321055 0.9090369 0.9110335
## 2607 0.8540864 0.9010727 0.9090369 0.9110335
## 2608 0.9439160 0.8864504 0.9090369 0.9110335
## 2609 0.9439160 0.9321055 0.9090369 0.9110335
## 2610 0.8540864 0.9080000 0.9090369 0.9110335
## 2611 0.8540864 0.8877722 0.9090369 0.9110335
## 2612 0.9439160 0.8864504 0.9090369 0.9110335
## 2613 0.8540864 0.9080000 0.9090369 0.9110335
## 2614 0.8540864 0.9010727 0.9090369 0.9110335
## 2615 0.9439160 0.8864504 0.9090369 0.9110335
## 2616 0.9439160 0.8864504 0.9090369 0.9110335
## 2617 0.8540864 0.9080000 0.9090369 0.9110335
## 2618 0.9439160 0.9321055 0.9090369 0.9110335
## 2619 0.8540864 0.8877722 0.9090369 0.9110335
## 2620 0.8540864 0.9080000 0.9090369 0.9110335
## 2621 0.8540864 0.9080000 0.9090369 0.9110335
## 2622 0.8540864 0.8877722 0.9090369 0.9110335
## 2623 0.8540864 0.9080000 0.9090369 0.9110335
## 2624 0.9439160 0.8864504 0.9090369 0.9110335
## 2625 0.8540864 0.8877722 0.9090369 0.9110335
## 2626 0.9439160 0.9080000 0.9090369 0.9110335
## 2627 0.9439160 0.9321055 0.9090369 0.9110335
## 2628 0.8540864 0.4949495 0.9090369 0.9110335
## 2629 0.9439160 0.9321055 0.9090369 0.9110335
## 2630 0.9439160 0.9321055 0.9090369 0.9110335
## 2631 0.8540864 0.8877722 0.9090369 0.9110335
## 2632 0.8540864 0.8877722 0.9090369 0.9110335
## 2633 0.8540864 0.9321055 0.9090369 0.9110335
## 2634 0.9439160 0.9321055 0.9090369 0.9110335
## 2635 0.8540864 0.9080000 0.9090369 0.9110335
## 2636 0.8540864 0.9080000 0.9090369 0.9110335
## 2637 0.8540864 0.9080000 0.9090369 0.9110335
## 2638 0.9439160 0.9321055 0.9090369 0.9110335
## 2639 0.8540864 0.8877722 0.9090369 0.9110335
## 2640 0.8540864 0.8877722 0.9090369 0.9110335
## 2641 0.9439160 0.9080000 0.9090369 0.9110335
## 2642 0.9439160 0.8864504 0.8791400 0.9110335
## 2643 0.8540864 0.8148148 0.9090369 0.9110335
## 2644 0.8540864 0.8877722 0.9090369 0.9110335
## 2645 0.8540864 0.6137931 0.9090369 0.9110335
## 2646 0.8540864 0.9080000 0.9090369 0.9110335
## 2647 0.8540864 0.8877722 0.9090369 0.9110335
## 2648 0.8540864 0.8877722 0.9090369 0.9110335
## 2649 0.9439160 0.9321055 0.8791400 0.9110335
## 2650 0.8540864 0.9010727 0.9090369 0.9110335
## 2651 0.8540864 0.8864504 0.9090369 0.9110335
## 2652 0.9439160 0.8864504 0.9090369 0.9110335
## 2653 0.8540864 0.8877722 0.9090369 0.9110335
## 2654 0.8540864 0.8877722 0.9090369 0.9110335
## 2655 0.8540864 0.9321055 0.9090369 0.9110335
## 2656 0.8540864 0.9080000 0.9090369 0.9110335
## 2657 0.8540864 0.9080000 0.9090369 0.9110335
## 2658 0.8540864 0.9321055 0.9090369 0.9110335
## 2659 0.8540864 0.8877722 0.9090369 0.9110335
## 2660 0.8540864 0.9321055 0.9090369 0.9110335
## 2661 0.8540864 0.9010727 0.9090369 0.9110335
## 2662 0.8540864 0.8877722 0.9090369 0.9110335
## 2663 0.8540864 0.8148148 0.9090369 0.9110335
## 2664 0.8540864 0.4949495 0.9090369 0.9110335
## 2665 0.8540864 0.8148148 0.9090369 0.9110335
## 2666 0.8540864 0.8148148 0.9090369 0.9110335
## 2667 0.9439160 0.9321055 0.9090369 0.9110335
## 2668 0.8540864 0.8877722 0.9090369 0.9110335
## 2669 0.8540864 0.9080000 0.9090369 0.9110335
## 2670 0.8540864 0.8877722 0.9090369 0.9110335
## 2671 0.8540864 0.9080000 0.9090369 0.9110335
## 2672 0.9439160 0.9321055 0.9090369 0.9110335
## 2673 0.8540864 0.5408163 0.9090369 0.9110335
## 2674 0.8540864 0.8148148 0.9090369 0.9110335
## 2675 0.8540864 0.8877722 0.9090369 0.9110335
## 2676 0.8540864 0.9010727 0.9090369 0.9110335
## 2677 0.9439160 0.8864504 0.9090369 0.9110335
## 2678 0.8540864 0.8877722 0.8791400 0.9110335
## 2679 0.8540864 0.9080000 0.9090369 0.9110335
## 2680 0.9439160 0.9321055 0.9090369 0.9110335
## 2681 0.8540864 0.6137931 0.9090369 0.9110335
## 2682 0.8540864 0.9010727 0.9090369 0.9110335
## 2683 0.8540864 0.9010727 0.9090369 0.9110335
## 2684 0.9439160 0.9321055 0.9090369 0.9110335
## 2685 0.8540864 0.8148148 0.9090369 0.9110335
## 2686 0.8540864 0.8877722 0.9090369 0.9110335
## 2687 0.8540864 0.9080000 0.9090369 0.9110335
## 2688 0.8540864 0.8877722 0.9090369 0.9110335
## 2689 0.9439160 0.9321055 0.9090369 0.9110335
## 2690 0.9439160 0.9010727 0.9090369 0.9110335
## 2691 0.8540864 0.9080000 0.9090369 0.9110335
## 2692 0.9439160 0.9321055 0.9090369 0.9110335
## 2693 0.8540864 0.9080000 0.9090369 0.9110335
## 2694 0.8540864 0.9010727 0.9090369 0.9110335
## 2695 0.9439160 0.9321055 0.9090369 0.9110335
## 2696 0.9439160 0.8864504 0.9090369 0.9110335
## 2697 0.9439160 0.9321055 0.9090369 0.9110335
## 2698 0.8540864 0.9080000 0.9090369 0.9110335
## 2699 0.8540864 0.8864504 0.9090369 0.9110335
## 2700 0.8540864 0.8148148 0.9090369 0.9110335
## 2701 0.8540864 0.9080000 0.9090369 0.9110335
## 2702 0.8540864 0.9321055 0.9090369 0.9110335
## 2703 0.8540864 0.8877722 0.9090369 0.9110335
## 2704 0.8540864 0.9321055 0.9090369 0.9110335
## 2705 0.9439160 0.9080000 0.9090369 0.9110335
## 2706 0.9439160 0.8864504 0.9090369 0.9110335
## 2707 0.9439160 0.8864504 0.9090369 0.9110335
## 2708 0.9439160 0.8864504 0.9090369 0.9110335
## 2709 0.8540864 0.9080000 0.9090369 0.9110335
## 2710 0.9439160 0.9321055 0.9090369 0.9110335
## 2711 0.8540864 0.9010727 0.9090369 0.9110335
## 2712 0.8540864 0.8148148 0.9090369 0.9110335
## 2713 0.9439160 0.9321055 0.8791400 0.9110335
## 2714 0.9439160 0.9321055 0.9090369 0.9110335
## 2715 0.8540864 0.9010727 0.9090369 0.9110335
## 2716 0.8540864 0.9080000 0.9090369 0.9110335
## 2717 0.8540864 0.8148148 0.9090369 0.9110335
## 2718 0.9439160 0.8864504 0.9090369 0.9110335
## 2719 0.8540864 0.8148148 0.9090369 0.9110335
## 2720 0.8540864 0.9080000 0.9090369 0.9110335
## 2721 0.8540864 0.9010727 0.8791400 0.9110335
## 2722 0.8540864 0.8864504 0.9090369 0.9110335
## 2723 0.9439160 0.8864504 0.9090369 0.9110335
## 2724 0.9439160 0.9080000 0.9090369 0.9110335
## 2725 0.8540864 0.8877722 0.9090369 0.9110335
## 2726 0.8540864 0.9010727 0.9090369 0.9110335
## 2727 0.9439160 0.8864504 0.9090369 0.9110335
## 2728 0.8540864 0.9321055 0.9090369 0.9110335
## 2729 0.9439160 0.9321055 0.9090369 0.9110335
## 2730 0.8540864 0.9080000 0.9090369 0.9110335
## 2731 0.8540864 0.9010727 0.9090369 0.9110335
## 2732 0.8540864 0.9321055 0.9090369 0.9110335
## 2733 0.8540864 0.9010727 0.9090369 0.9110335
## 2734 0.8540864 0.9080000 0.9090369 0.9110335
## 2735 0.8540864 0.9080000 0.9090369 0.9110335
## 2736 0.8540864 0.8148148 0.9090369 0.9110335
## 2737 0.8540864 0.9321055 0.9090369 0.9110335
## 2738 0.9439160 0.8864504 0.9090369 0.9110335
## 2739 0.8540864 0.9321055 0.9090369 0.9110335
## 2740 0.8540864 0.4949495 0.9090369 0.9110335
## 2741 0.8540864 0.9080000 0.9090369 0.9110335
## 2742 0.8540864 0.9321055 0.9090369 0.9110335
## 2743 0.9439160 0.9080000 0.9090369 0.9110335
## 2744 0.8540864 0.8877722 0.9090369 0.9110335
## 2745 0.8540864 0.9010727 0.9090369 0.9110335
## 2746 0.8540864 0.8877722 0.9090369 0.9110335
## 2747 0.8540864 0.9080000 0.9090369 0.9110335
## 2748 0.8540864 0.9080000 0.9090369 0.9110335
## 2749 0.9439160 0.8864504 0.9090369 0.9110335
## 2750 0.9439160 0.9321055 0.9090369 0.9110335
## 2751 0.8540864 0.8877722 0.9090369 0.9110335
## 2752 0.8540864 0.8877722 0.9090369 0.9110335
## 2753 0.9439160 0.8864504 0.9090369 0.9110335
## 2754 0.8540864 0.4949495 0.9090369 0.9110335
## 2755 0.8540864 0.9080000 0.9090369 0.9110335
## 2756 0.9439160 0.8864504 0.9090369 0.9110335
## 2757 0.8540864 0.9080000 0.9090369 0.9110335
## 2758 0.8540864 0.3750000 0.9090369 0.9110335
## 2759 0.8540864 0.8148148 0.9090369 0.9110335
## 2760 0.8540864 0.9080000 0.9090369 0.9110335
## 2761 0.8540864 0.8877722 0.9090369 0.9110335
## 2762 0.8540864 0.9080000 0.9090369 0.9110335
## 2763 0.8540864 0.9010727 0.8791400 0.9110335
## 2764 0.9439160 0.9321055 0.9090369 0.9110335
## 2765 0.8540864 0.8877722 0.9090369 0.9110335
## 2766 0.8540864 0.9010727 0.9090369 0.9110335
## 2767 0.9439160 0.9321055 0.9090369 0.9110335
## 2768 0.8540864 0.9080000 0.9090369 0.9110335
## 2769 0.8540864 0.9080000 0.9090369 0.9110335
## 2770 0.8540864 0.9010727 0.9090369 0.9110335
## 2771 0.8540864 0.9321055 0.9090369 0.9110335
## 2772 0.8540864 0.9010727 0.9090369 0.9110335
## 2773 0.8540864 0.8877722 0.9090369 0.9110335
## 2774 0.8540864 0.9080000 0.9090369 0.9110335
## 2775 0.9439160 0.9080000 0.9090369 0.9110335
## 2776 0.8540864 0.8877722 0.9090369 0.9110335
## 2777 0.9439160 0.9321055 0.9090369 0.9110335
## 2778 0.9439160 0.9321055 0.9090369 0.9110335
## 2779 0.8540864 0.9080000 0.9090369 0.9110335
## 2780 0.9439160 0.9321055 0.9090369 0.9110335
## 2781 0.8540864 0.8877722 0.9090369 0.9110335
## 2782 0.9439160 0.9321055 0.9090369 0.9110335
## 2783 0.8540864 0.8877722 0.9090369 0.9110335
## 2784 0.8540864 0.9080000 0.9090369 0.9110335
## 2785 0.9439160 0.8864504 0.8791400 0.9110335
## 2786 0.8540864 0.9321055 0.9090369 0.9110335
## 2787 0.8540864 0.9321055 0.9090369 0.9110335
## 2788 0.8540864 0.8877722 0.9090369 0.9110335
## 2789 0.8540864 0.8148148 0.9090369 0.9110335
## 2790 0.8540864 0.8877722 0.9090369 0.9110335
## 2791 0.8540864 0.9321055 0.9090369 0.9110335
## 2792 0.8540864 0.8877722 0.8791400 0.9110335
## 2793 0.8540864 0.8864504 0.9090369 0.9110335
## 2794 0.8540864 0.8148148 0.9090369 0.9110335
## 2795 0.8540864 0.9321055 0.9090369 0.9110335
## 2796 0.9439160 0.9080000 0.8791400 0.9110335
## 2797 0.9439160 0.8864504 0.9090369 0.9110335
## 2798 0.9439160 0.9080000 0.9090369 0.9110335
## 2799 0.9439160 0.9321055 0.9090369 0.9110335
## 2800 0.9439160 0.8864504 0.9090369 0.9110335
## 2801 0.8540864 0.9080000 0.9090369 0.9110335
## 2802 0.8540864 0.9080000 0.9090369 0.9110335
## 2803 0.9439160 0.8864504 0.9090369 0.9110335
## 2804 0.8540864 0.9080000 0.8721351 0.9110335
## 2805 0.8540864 0.9321055 0.9090369 0.9110335
## 2806 0.8540864 0.8877722 0.9090369 0.9110335
## 2807 0.8540864 0.9080000 0.9090369 0.9110335
## 2808 0.8540864 0.8877722 0.9090369 0.9110335
## 2809 0.8540864 0.5408163 0.9090369 0.9110335
## 2810 0.8540864 0.9080000 0.9090369 0.9110335
## 2811 0.8540864 0.8877722 0.9090369 0.9110335
## 2812 0.8540864 0.9321055 0.8791400 0.9110335
## 2813 0.8540864 0.8877722 0.9090369 0.9110335
## 2814 0.9439160 0.9321055 0.9090369 0.9110335
## 2815 0.9439160 0.8864504 0.9090369 0.9110335
## 2816 0.8540864 0.8877722 0.9090369 0.9110335
## 2817 0.9439160 0.9321055 0.9090369 0.9110335
## 2818 0.9439160 0.9321055 0.9090369 0.9110335
## 2819 0.8540864 0.9080000 0.9090369 0.9110335
## 2820 0.8540864 0.9321055 0.9090369 0.9110335
## 2821 0.9439160 0.9321055 0.9090369 0.9110335
## 2822 0.9439160 0.9321055 0.9090369 0.9110335
## 2823 0.9439160 0.9080000 0.9090369 0.9110335
## 2824 0.9439160 0.9010727 0.9090369 0.9110335
## 2825 0.9439160 0.8864504 0.8791400 0.9110335
## 2826 0.8540864 0.8148148 0.9090369 0.9110335
## 2827 0.8540864 0.9010727 0.9090369 0.9110335
## 2828 0.9439160 0.8864504 0.8791400 0.9110335
## 2829 0.9439160 0.9080000 0.9090369 0.9110335
## 2830 0.8540864 0.9080000 0.9090369 0.9110335
## 2831 0.9439160 0.8864504 0.9090369 0.9110335
## 2832 0.9439160 0.8864504 0.9090369 0.9110335
## 2833 0.8540864 0.9321055 0.9090369 0.9110335
## 2834 0.8540864 0.9080000 0.9090369 0.9110335
## 2835 0.9439160 0.8864504 0.9090369 0.9110335
## 2836 0.8540864 0.8877722 0.9090369 0.9110335
## 2837 0.8540864 0.9080000 0.9090369 0.9110335
## 2838 0.8540864 0.9321055 0.9090369 0.9110335
## 2839 0.8540864 0.9321055 0.9090369 0.9110335
## 2840 0.8540864 0.9321055 0.9090369 0.9110335
## 2841 0.8540864 0.8877722 0.9090369 0.9110335
## 2842 0.8540864 0.9080000 0.9090369 0.9110335
## 2843 0.9439160 0.8864504 0.9090369 0.9110335
## 2844 0.9439160 0.8864504 0.8791400 0.9110335
## 2845 0.8540864 0.8877722 0.8791400 0.9110335
## 2846 0.9439160 0.9321055 0.9090369 0.9110335
## 2847 0.8540864 0.9321055 0.9090369 0.9110335
## 2848 0.8540864 0.9080000 0.9090369 0.9110335
## 2849 0.9439160 0.8864504 0.9090369 0.9110335
## 2850 0.8540864 0.6137931 0.9090369 0.9110335
## 2851 0.8540864 0.4949495 0.9090369 0.9110335
## 2852 0.8540864 0.8148148 0.9090369 0.9110335
## 2853 0.9439160 0.9321055 0.9090369 0.9110335
## 2854 0.9439160 0.8864504 0.9090369 0.9110335
## 2855 0.8540864 0.9080000 0.9090369 0.9110335
## 2856 0.8540864 0.9321055 0.9090369 0.9110335
## 2857 0.9439160 0.8864504 0.9090369 0.9110335
## 2858 0.8540864 0.8877722 0.9090369 0.9110335
## 2859 0.9439160 0.8864504 0.9090369 0.9110335
## 2860 0.9439160 0.8864504 0.9090369 0.9110335
## 2861 0.8540864 0.8148148 0.9090369 0.9110335
## 2862 0.9439160 0.8864504 0.9090369 0.9110335
## 2863 0.9439160 0.8864504 0.9090369 0.9110335
## 2864 0.8540864 0.9321055 0.9090369 0.9110335
## 2865 0.9439160 0.9321055 0.9090369 0.9110335
## 2866 0.8540864 0.8877722 0.9090369 0.9110335
## 2867 0.8540864 0.9321055 0.9090369 0.9110335
## 2868 0.8540864 0.9080000 0.9090369 0.9110335
## 2869 0.8540864 0.8877722 0.9090369 0.9110335
## 2870 0.9439160 0.9321055 0.9090369 0.9110335
## 2871 0.9439160 0.8864504 0.9090369 0.9110335
## 2872 0.8540864 0.8148148 0.9090369 0.9110335
## 2873 0.8540864 0.9080000 0.9090369 0.9110335
## 2874 0.8540864 0.8877722 0.9090369 0.9110335
## 2875 0.8540864 0.9321055 0.9090369 0.9110335
## 2876 0.8540864 0.9080000 0.9090369 0.9110335
## 2877 0.8540864 0.9080000 0.9090369 0.9110335
## 2878 0.8540864 0.8877722 0.9090369 0.9110335
## 2879 0.8540864 0.8148148 0.9090369 0.9110335
## 2880 0.9439160 0.8864504 0.9090369 0.9110335
## 2881 0.9439160 0.9321055 0.9090369 0.9110335
## 2882 0.8540864 0.9010727 0.9090369 0.9110335
## 2883 0.8540864 0.8148148 0.9090369 0.9110335
## 2884 0.8540864 0.9080000 0.9090369 0.9110335
## 2885 0.9439160 0.8864504 0.9090369 0.9110335
## 2886 0.8540864 0.9010727 0.9090369 0.9110335
## 2887 0.8540864 0.8148148 0.9090369 0.9110335
## 2888 0.8540864 0.4949495 0.8791400 0.9110335
## 2889 0.8540864 0.9010727 0.8791400 0.9110335
## 2890 0.9439160 0.8864504 0.9090369 0.9110335
## 2891 0.9439160 0.8864504 0.9090369 0.9110335
## 2892 0.8540864 0.9080000 0.9090369 0.9110335
## 2893 0.9439160 0.9321055 0.9090369 0.9110335
## 2894 0.8540864 0.8148148 0.9090369 0.9110335
## 2895 0.8540864 0.8148148 0.9090369 0.9110335
## 2896 0.8540864 0.9010727 0.9090369 0.9110335
## 2897 0.9439160 0.9321055 0.9090369 0.9110335
## 2898 0.8540864 0.9080000 0.9090369 0.9110335
## 2899 0.9439160 0.9321055 0.9090369 0.9110335
## 2900 0.8540864 0.8877722 0.9090369 0.9110335
## 2901 0.9439160 0.9321055 0.9090369 0.9110335
## 2902 0.8540864 0.8877722 0.8791400 0.9110335
## 2903 0.9439160 0.8864504 0.9090369 0.9110335
## 2904 0.9439160 0.8864504 0.9090369 0.9110335
## 2905 0.8540864 0.9080000 0.9090369 0.9110335
## 2906 0.9439160 0.9321055 0.9090369 0.9110335
## 2907 0.9439160 0.9321055 0.9090369 0.9110335
## 2908 0.8540864 0.9321055 0.9090369 0.9110335
## 2909 0.8540864 0.8877722 0.9090369 0.9110335
## 2910 0.8540864 0.9080000 0.9090369 0.9110335
## 2911 0.8540864 0.9080000 0.9090369 0.9110335
## 2912 0.8540864 0.9080000 0.9090369 0.9110335
## 2913 0.8540864 0.9321055 0.9090369 0.9110335
## 2914 0.8540864 0.8877722 0.9090369 0.9110335
## 2915 0.8540864 0.8877722 0.9090369 0.9110335
## 2916 0.9439160 0.9321055 0.9090369 0.9110335
## 2917 0.9439160 0.9321055 0.9090369 0.9110335
## 2918 0.8540864 0.9010727 0.9090369 0.9110335
## 2919 0.9439160 0.9321055 0.9090369 0.9110335
## 2920 0.9439160 0.9321055 0.9090369 0.9110335
## 2921 0.8540864 0.9080000 0.9090369 0.9110335
## 2922 0.9439160 0.9010727 0.9090369 0.9110335
## 2923 0.8540864 0.8877722 0.9090369 0.9110335
## 2924 0.9439160 0.9010727 0.9090369 0.9110335
## 2925 0.8540864 0.8877722 0.9090369 0.9110335
## 2926 0.8540864 0.8877722 0.9090369 0.9110335
## 2927 0.9439160 0.8864504 0.9090369 0.9110335
## 2928 0.9439160 0.9321055 0.9090369 0.9110335
## 2929 0.9439160 0.9321055 0.9090369 0.9110335
## 2930 0.9439160 0.9321055 0.9090369 0.9110335
## 2931 0.9439160 0.9321055 0.9090369 0.9110335
## 2932 0.8540864 0.8877722 0.9090369 0.9110335
## 2933 0.8540864 0.9010727 0.9090369 0.9110335
## 2934 0.9439160 0.9321055 0.9090369 0.9110335
## 2935 0.8540864 0.9080000 0.9090369 0.9110335
## 2936 0.8540864 0.9010727 0.9090369 0.9110335
## 2937 0.8540864 0.9080000 0.9090369 0.9110335
## 2938 0.8540864 0.8877722 0.9090369 0.9110335
## 2939 0.8540864 0.9010727 0.9090369 0.9110335
## 2940 0.8540864 0.9321055 0.9090369 0.9110335
## 2941 0.8540864 0.8877722 0.9090369 0.9110335
## 2942 0.9439160 0.8864504 0.9090369 0.9110335
## 2943 0.8540864 0.9080000 0.8791400 0.9110335
## 2944 0.8540864 0.9080000 0.9090369 0.9110335
## 2945 0.9439160 0.9321055 0.9090369 0.9110335
## 2946 0.8540864 0.8877722 0.9090369 0.9110335
## 2947 0.9439160 0.9080000 0.9090369 0.9110335
## 2948 0.9439160 0.5408163 0.9090369 0.9110335
## 2949 0.8540864 0.8877722 0.8721351 0.9110335
## 2950 0.8540864 0.8148148 0.9090369 0.9110335
## 2951 0.8540864 0.8877722 0.9090369 0.9110335
## 2952 0.8540864 0.9010727 0.9090369 0.9110335
## 2953 0.8540864 0.9321055 0.9090369 0.9110335
## 2954 0.8540864 0.9080000 0.9090369 0.9110335
## 2955 0.9439160 0.8864504 0.9090369 0.9110335
## 2956 0.8540864 0.8148148 0.9090369 0.9110335
## 2957 0.8540864 0.9321055 0.8721351 0.9110335
## 2958 0.8540864 0.8877722 0.9090369 0.9110335
## 2959 0.8540864 0.8877722 0.9090369 0.9110335
## 2960 0.8540864 0.8864504 0.9090369 0.9110335
## 2961 0.9439160 0.8864504 0.9090369 0.9110335
## 2962 0.8540864 0.8877722 0.8791400 0.9110335
## 2963 0.8540864 0.8877722 0.9090369 0.9110335
## 2964 0.8540864 0.8148148 0.9090369 0.9110335
## 2965 0.9439160 0.9321055 0.9090369 0.9110335
## 2966 0.8540864 0.9321055 0.9090369 0.9110335
## 2967 0.9439160 0.9321055 0.8791400 0.9110335
## 2968 0.9439160 0.8877722 0.9090369 0.9110335
## 2969 0.9439160 0.9321055 0.9090369 0.9110335
## 2970 0.9439160 0.9321055 0.9090369 0.9110335
## 2971 0.8540864 0.8148148 0.8791400 0.9110335
## 2972 0.9439160 0.8148148 0.9090369 0.9110335
## 2973 0.8540864 0.8877722 0.9090369 0.9110335
## 2974 0.9439160 0.9321055 0.9090369 0.9110335
## 2975 0.8540864 0.8148148 0.9090369 0.9110335
## 2976 0.8540864 0.8877722 0.9090369 0.9110335
## 2977 0.8540864 0.9321055 0.9090369 0.9110335
## 2978 0.9439160 0.8864504 0.8791400 0.9110335
## 2979 0.8540864 0.8877722 0.8791400 0.9110335
## 2980 0.9439160 0.9010727 0.9090369 0.9110335
## 2981 0.8540864 0.9080000 0.8791400 0.9110335
## 2982 0.8540864 0.8877722 0.9090369 0.9110335
## 2983 0.9439160 0.8864504 0.8791400 0.9110335
## 2984 0.8540864 0.8877722 0.9090369 0.9110335
## 2985 0.8540864 0.9080000 0.9090369 0.9110335
## 2986 0.9439160 0.9321055 0.9090369 0.9110335
## 2987 0.8540864 0.9080000 0.9090369 0.9110335
## 2988 0.8540864 0.9080000 0.9090369 0.9110335
## 2989 0.9439160 0.8864504 0.8721351 0.9110335
## 2990 0.8540864 0.8148148 0.9090369 0.9110335
## 2991 0.9439160 0.9321055 0.9090369 0.9110335
## 2992 0.9439160 0.9080000 0.9090369 0.9110335
## 2993 0.8540864 0.8148148 0.8791400 0.9110335
## 2994 0.9439160 0.9010727 0.9090369 0.9110335
## 2995 0.9439160 0.3750000 0.9090369 0.9110335
## 2996 0.9439160 0.9010727 0.9090369 0.9110335
## 2997 0.9439160 0.9321055 0.9090369 0.9110335
## 2998 0.9439160 0.8864504 0.9090369 0.9110335
## 2999 0.8540864 0.9080000 0.8791400 0.9110335
## 3000 0.8540864 0.9080000 0.9090369 0.9110335
## 3001 0.8540864 0.8877722 0.9090369 0.9110335
## 3002 0.9439160 0.9010727 0.8791400 0.9110335
## 3003 0.8540864 0.8877722 0.9090369 0.9110335
## 3004 0.9439160 0.9321055 0.9090369 0.9110335
## 3005 0.8540864 0.8148148 0.8791400 0.9110335
## 3006 0.9439160 0.9321055 0.9090369 0.9110335
## 3007 0.8540864 0.9080000 0.8721351 0.9110335
## 3008 0.8540864 0.9080000 0.8791400 0.9110335
## 3009 0.9439160 0.9321055 0.8721351 0.9110335
## 3010 0.8540864 0.3750000 0.9090369 0.9110335
## 3011 0.8540864 0.3750000 0.9090369 0.9110335
## 3012 0.8540864 0.8148148 0.8791400 0.9110335
## 3013 0.9439160 0.9321055 0.8791400 0.9110335
## 3014 0.9439160 0.8864504 0.9090369 0.9110335
## 3015 0.9439160 0.8864504 0.9090369 0.9110335
## 3016 0.8540864 0.9321055 0.9090369 0.9110335
## 3017 0.8540864 0.9080000 0.8791400 0.9110335
## 3018 0.8540864 0.8148148 0.8791400 0.9110335
## 3019 0.8540864 0.8877722 0.9090369 0.9110335
## 3020 0.8540864 0.9080000 0.8791400 0.9110335
## 3021 0.8540864 0.9080000 0.9090369 0.9110335
## 3022 0.9439160 0.8864504 0.9090369 0.9110335
## 3023 0.8540864 0.9080000 0.9090369 0.9110335
## 3024 0.8540864 0.8877722 0.9090369 0.9110335
## 3025 0.8540864 0.8148148 0.8791400 0.9110335
## 3026 0.9439160 0.9321055 0.8791400 0.9110335
## 3027 0.8540864 0.9010727 0.9090369 0.9110335
## 3028 0.8540864 0.9080000 0.9090369 0.9110335
## 3029 0.8540864 0.8877722 0.8791400 0.9110335
## 3030 0.8540864 0.9080000 0.9090369 0.9110335
## 3031 0.9439160 0.8864504 0.9090369 0.9110335
## 3032 0.8540864 0.8148148 0.8791400 0.9110335
## 3033 0.9439160 0.9080000 0.9090369 0.9110335
## 3034 0.8540864 0.8877722 0.9090369 0.9110335
## 3035 0.9439160 0.9321055 0.9090369 0.9110335
## 3036 0.9439160 0.9321055 0.8791400 0.9110335
## 3037 0.8540864 0.9010727 0.9090369 0.9110335
## 3038 0.8540864 0.9321055 0.9090369 0.9110335
## 3039 0.8540864 0.9080000 0.9090369 0.9110335
## 3040 0.9439160 0.9080000 0.9090369 0.9110335
## 3041 0.8540864 0.8148148 0.8791400 0.9110335
## 3042 0.9439160 0.9321055 0.9090369 0.9110335
## 3043 0.9439160 0.9321055 0.9090369 0.9110335
## 3044 0.8540864 0.9080000 0.9090369 0.9110335
## 3045 0.8540864 0.8877722 0.9090369 0.9110335
## 3046 0.9439160 0.9010727 0.9090369 0.9110335
## 3047 0.8540864 0.8877722 0.9090369 0.9110335
## 3048 0.8540864 0.8877722 0.9090369 0.9110335
## 3049 0.9439160 0.9080000 0.9090369 0.9110335
## 3050 0.8540864 0.8877722 0.9090369 0.9110335
## 3051 0.9439160 0.9321055 0.9090369 0.9110335
## 3052 0.8540864 0.9010727 0.9090369 0.9110335
## 3053 0.8540864 0.8877722 0.9090369 0.9110335
## 3054 0.9439160 0.9321055 0.9090369 0.9110335
## 3055 0.8540864 0.8877722 0.9090369 0.9110335
## 3056 0.8540864 0.9080000 0.8791400 0.9110335
## 3057 0.9439160 0.8864504 0.8791400 0.9110335
## 3058 0.8540864 0.9080000 0.8791400 0.9110335
## 3059 0.9439160 0.9321055 0.8791400 0.9110335
## 3060 0.9439160 0.9321055 0.9090369 0.9110335
## 3061 0.9439160 0.9321055 0.9090369 0.9110335
## 3062 0.8540864 0.9321055 0.8791400 0.9110335
## 3063 0.8540864 0.8148148 0.8791400 0.9110335
## 3064 0.8540864 0.9080000 0.8721351 0.9110335
## 3065 0.8540864 0.8877722 0.8791400 0.9110335
## 3066 0.8540864 0.9321055 0.9090369 0.9110335
## 3067 0.8540864 0.9321055 0.9090369 0.9110335
## 3068 0.9439160 0.8864504 0.9090369 0.9110335
## 3069 0.8540864 0.8864504 0.9090369 0.9110335
## 3070 0.8540864 0.8148148 0.8791400 0.9110335
## 3071 0.9439160 0.8864504 0.9090369 0.9110335
## 3072 0.8540864 0.9321055 0.9090369 0.9110335
## 3073 0.8540864 0.9080000 0.9090369 0.9110335
## 3074 0.8540864 0.9321055 0.9090369 0.9110335
## 3075 0.8540864 0.9080000 0.8791400 0.9110335
## 3076 0.8540864 0.8148148 0.8791400 0.9110335
## 3077 0.8540864 0.8877722 0.9090369 0.9110335
## 3078 0.8540864 0.9080000 0.9090369 0.9110335
## 3079 0.9439160 0.9321055 0.9090369 0.9110335
## 3080 0.9439160 0.9321055 0.9090369 0.9110335
## 3081 0.8540864 0.9010727 0.8791400 0.9110335
## 3082 0.8540864 0.9010727 0.9090369 0.9110335
## 3083 0.9439160 0.8864504 0.8791400 0.9110335
## 3084 0.8540864 0.8877722 0.9090369 0.9110335
## 3085 0.9439160 0.8864504 0.9090369 0.9110335
## 3086 0.9439160 0.8864504 0.8721351 0.9110335
## 3087 0.9439160 0.9080000 0.8791400 0.9110335
## 3088 0.9439160 0.8864504 0.9090369 0.9110335
## 3089 0.8540864 0.4949495 0.9090369 0.9110335
## 3090 0.9439160 0.9321055 0.8721351 0.9110335
## 3091 0.8540864 0.8877722 0.9090369 0.9110335
## 3092 0.8540864 0.8148148 0.8791400 0.9110335
## 3093 0.9439160 0.9321055 0.8791400 0.9110335
## 3094 0.8540864 0.9080000 0.9090369 0.9110335
## 3095 0.8540864 0.8877722 0.8791400 0.9110335
## 3096 0.8540864 0.9010727 0.9090369 0.9110335
## 3097 0.8540864 0.9080000 0.9090369 0.9110335
## 3098 0.8540864 0.9080000 0.8791400 0.9110335
## 3099 0.9439160 0.9321055 0.8791400 0.9110335
## 3100 0.9439160 0.8864504 0.9090369 0.9110335
## 3101 0.8540864 0.4949495 0.9090369 0.9110335
## 3102 0.9439160 0.8864504 0.9090369 0.9110335
## 3103 0.9439160 0.8864504 0.9090369 0.9110335
## 3104 0.9439160 0.8864504 0.8791400 0.9110335
## 3105 0.8540864 0.8148148 0.8791400 0.9110335
## 3106 0.9439160 0.9321055 0.8791400 0.9110335
## 3107 0.8540864 0.4949495 0.9090369 0.9110335
## 3108 0.9439160 0.8864504 0.9090369 0.9110335
## 3109 0.8540864 0.9080000 0.9090369 0.9110335
## 3110 0.9439160 0.9321055 0.9090369 0.9110335
## 3111 0.8540864 0.9321055 0.8791400 0.9110335
## 3112 0.9439160 0.9321055 0.9090369 0.9110335
## 3113 0.9439160 0.9321055 0.9090369 0.9110335
## 3114 0.8540864 0.8148148 0.9090369 0.9110335
## 3115 0.8540864 0.9080000 0.9090369 0.9110335
## 3116 0.8540864 0.9080000 0.8791400 0.9110335
## 3117 0.9439160 0.8864504 0.9090369 0.9110335
## 3118 0.8540864 0.8877722 0.9090369 0.9110335
## 3119 0.8540864 0.9080000 0.8791400 0.9110335
## 3120 0.9439160 0.9080000 0.8791400 0.9110335
## 3121 0.8540864 0.8877722 0.8791400 0.9110335
## 3122 0.9439160 0.9321055 0.9090369 0.9110335
## 3123 0.9439160 0.9010727 0.9090369 0.9110335
## 3124 0.8540864 0.8877722 0.8791400 0.9110335
## 3125 0.8540864 0.8877722 0.9090369 0.9110335
## 3126 0.8540864 0.8148148 0.9090369 0.9110335
## 3127 0.8540864 0.9080000 0.9090369 0.9110335
## 3128 0.9439160 0.8864504 0.8791400 0.9110335
## 3129 0.8540864 0.9080000 0.9090369 0.9110335
## 3130 0.8540864 0.8877722 0.9090369 0.9110335
## 3131 0.8540864 0.9010727 0.9090369 0.9110335
## 3132 0.9439160 0.9321055 0.9090369 0.9110335
## 3133 0.9439160 0.8864504 0.9090369 0.9110335
## 3134 0.8540864 0.9321055 0.9090369 0.9110335
## 3135 0.8540864 0.9080000 0.9090369 0.9110335
## 3136 0.9439160 0.9321055 0.9090369 0.9110335
## 3137 0.8540864 0.9010727 0.9090369 0.9110335
## 3138 0.9439160 0.8864504 0.9090369 0.9110335
## 3139 0.9439160 0.9321055 0.9090369 0.9110335
## 3140 0.9439160 0.9321055 0.9090369 0.9110335
## 3141 0.8540864 0.8148148 0.9090369 0.9110335
## 3142 0.8540864 0.8148148 0.8791400 0.9110335
## 3143 0.9439160 0.8864504 0.9090369 0.9110335
## 3144 0.8540864 0.8864504 0.9090369 0.9110335
## 3145 0.9439160 0.8864504 0.9090369 0.9110335
## 3146 0.8540864 0.9080000 0.9090369 0.9110335
## 3147 0.9439160 0.9321055 0.8791400 0.9110335
## 3148 0.8540864 0.8148148 0.9090369 0.9110335
## 3149 0.9439160 0.9321055 0.8791400 0.9110335
## 3150 0.9439160 0.8148148 0.8791400 0.9110335
## 3151 0.8540864 0.9080000 0.9090369 0.9110335
## 3152 0.8540864 0.8148148 0.9090369 0.9110335
## 3153 0.8540864 0.9321055 0.8791400 0.9110335
## 3154 0.9439160 0.9321055 0.8791400 0.9110335
## 3155 0.8540864 0.9080000 0.8791400 0.9110335
## 3156 0.8540864 0.9321055 0.9090369 0.9110335
## 3157 0.8540864 0.9080000 0.8791400 0.9110335
## 3158 0.9439160 0.9321055 0.9090369 0.9110335
## 3159 0.8540864 0.8148148 0.9090369 0.9110335
## 3160 0.8540864 0.9321055 0.9090369 0.9110335
## 3161 0.9439160 0.9080000 0.9090369 0.9110335
## 3162 0.9439160 0.9321055 0.8791400 0.9110335
## 3163 0.8540864 0.8148148 0.9090369 0.9110335
## 3164 0.8540864 0.8877722 0.9090369 0.9110335
## 3165 0.8540864 0.9080000 0.8791400 0.9110335
## 3166 0.9439160 0.8864504 0.9090369 0.9110335
## 3167 0.8540864 0.8148148 0.8791400 0.9110335
## 3168 0.8540864 0.9080000 0.8791400 0.9110335
## 3169 0.9439160 0.9321055 0.8791400 0.9110335
## 3170 0.8540864 0.8148148 0.9090369 0.9110335
## 3171 0.8540864 0.9010727 0.8791400 0.9110335
## 3172 0.8540864 0.8864504 0.9090369 0.9110335
## 3173 0.8540864 0.8877722 0.9090369 0.9110335
## 3174 0.9439160 0.9321055 0.9090369 0.9110335
## 3175 0.8540864 0.9010727 0.8791400 0.9110335
## 3176 0.9439160 0.9321055 0.9090369 0.9110335
## 3177 0.8540864 0.8148148 0.9090369 0.9110335
## 3178 0.8540864 0.9321055 0.8791400 0.9110335
## 3179 0.9439160 0.8864504 0.9090369 0.9110335
## 3180 0.8540864 0.9010727 0.8791400 0.9110335
## 3181 0.9439160 0.9321055 0.9090369 0.9110335
## 3182 0.9439160 0.9010727 0.9090369 0.9110335
## 3183 0.8540864 0.8148148 0.9090369 0.9110335
## 3184 0.9439160 0.9080000 0.9090369 0.9110335
## 3185 0.8540864 0.8877722 0.9090369 0.9110335
## 3186 0.8540864 0.8877722 0.9090369 0.9110335
## 3187 0.8540864 0.9321055 0.8791400 0.9110335
## 3188 0.8540864 0.9080000 0.9090369 0.9110335
## 3189 0.9439160 0.8864504 0.9090369 0.9110335
## 3190 0.8540864 0.9321055 0.9090369 0.9110335
## 3191 0.8540864 0.9080000 0.9090369 0.9110335
## 3192 0.9439160 0.9321055 0.9090369 0.9110335
## 3193 0.9439160 0.8864504 0.9090369 0.9110335
## 3194 0.8540864 0.9080000 0.9090369 0.9110335
## 3195 0.8540864 0.9080000 0.9090369 0.9110335
## 3196 0.8540864 0.9080000 0.9090369 0.9110335
## 3197 0.8540864 0.9080000 0.9090369 0.9110335
## 3198 0.8540864 0.9321055 0.9090369 0.9110335
## 3199 0.8540864 0.9010727 0.8791400 0.9110335
## 3200 0.8540864 0.8148148 0.8791400 0.9110335
## 3201 0.9439160 0.8148148 0.8791400 0.9110335
## 3202 0.9439160 0.8864504 0.9090369 0.9110335
## 3203 0.8540864 0.8148148 0.8791400 0.9110335
## 3204 0.8540864 0.8877722 0.8791400 0.9110335
## 3205 0.8540864 0.9080000 0.8791400 0.9110335
## 3206 0.8540864 0.9010727 0.9090369 0.9110335
## 3207 0.8540864 0.9010727 0.9090369 0.9110335
## 3208 0.8540864 0.9080000 0.8791400 0.9110335
## 3209 0.8540864 0.8148148 0.9090369 0.9110335
## 3210 0.8540864 0.9080000 0.9090369 0.9110335
## 3211 0.8540864 0.9080000 0.9090369 0.9110335
## 3212 0.8540864 0.8148148 0.8791400 0.9110335
## 3213 0.9439160 0.9321055 0.9090369 0.9110335
## 3214 0.9439160 0.8864504 0.8791400 0.9110335
## 3215 0.8540864 0.9010727 0.9090369 0.9110335
## 3216 0.9439160 0.9321055 0.8791400 0.9110335
## 3217 0.8540864 0.8877722 0.9090369 0.9110335
## 3218 0.8540864 0.8148148 0.8791400 0.9110335
## 3219 0.9439160 0.9321055 0.9090369 0.9110335
## 3220 0.8540864 0.9321055 0.8791400 0.9110335
## 3221 0.8540864 0.9010727 0.8791400 0.9110335
## 3222 0.8540864 0.8877722 0.8791400 0.9110335
## 3223 0.9439160 0.9080000 0.9090369 0.9110335
## 3224 0.9439160 0.9321055 0.8791400 0.9110335
## 3225 0.8540864 0.9080000 0.8791400 0.9110335
## 3226 0.8540864 0.8877722 0.9090369 0.9110335
## 3227 0.9439160 0.8864504 0.8791400 0.9110335
## 3228 0.9439160 0.9321055 0.9090369 0.9110335
## 3229 0.8540864 0.8877722 0.9090369 0.9110335
## 3230 0.8540864 0.9080000 0.9090369 0.9110335
## 3231 0.8540864 0.9321055 0.8791400 0.9110335
## 3232 0.8540864 0.8877722 0.9090369 0.9110335
## 3233 0.8540864 0.8148148 0.8791400 0.9110335
## 3234 0.9439160 0.9321055 0.9090369 0.9110335
## 3235 0.9439160 0.8864504 0.9090369 0.9110335
## 3236 0.9439160 0.9321055 0.8791400 0.9110335
## 3237 0.8540864 0.9080000 0.9090369 0.9110335
## 3238 0.8540864 0.8877722 0.9090369 0.9110335
## 3239 0.8540864 0.9080000 0.9090369 0.9110335
## 3240 0.8540864 0.9080000 0.9090369 0.9110335
## 3241 0.9439160 0.9080000 0.9090369 0.9110335
## 3242 0.8540864 0.9080000 0.8791400 0.9110335
## 3243 0.8540864 0.8877722 0.9090369 0.9110335
## 3244 0.8540864 0.9321055 0.8791400 0.9110335
## 3245 0.8540864 0.9010727 0.9090369 0.9110335
## 3246 0.9439160 0.9321055 0.9090369 0.9110335
## 3247 0.8540864 0.8148148 0.9090369 0.9110335
## 3248 0.8540864 0.8877722 0.8791400 0.9110335
## 3249 0.8540864 0.9010727 0.8791400 0.9110335
## 3250 0.9439160 0.9080000 0.9090369 0.9110335
## 3251 0.8540864 0.9321055 0.9090369 0.9110335
## 3252 0.8540864 0.9080000 0.9090369 0.9110335
## 3253 0.8540864 0.9080000 0.8791400 0.9110335
## 3254 0.8540864 0.9010727 0.8791400 0.9110335
## 3255 0.9439160 0.8864504 0.8791400 0.9110335
## 3256 0.9439160 0.8864504 0.8791400 0.9110335
## 3257 0.8540864 0.8877722 0.8791400 0.9110335
## 3258 0.8540864 0.5408163 0.9090369 0.9110335
## 3259 0.9439160 0.8864504 0.8791400 0.9110335
## 3260 0.9439160 0.8864504 0.8791400 0.9110335
## 3261 0.8540864 0.8877722 0.9090369 0.9110335
## 3262 0.8540864 0.9010727 0.8791400 0.9110335
## 3263 0.8540864 0.9080000 0.9090369 0.9110335
## 3264 0.9439160 0.9321055 0.9090369 0.9110335
## 3265 0.8540864 0.8877722 0.9090369 0.9110335
## 3266 0.8540864 0.8148148 0.9090369 0.9110335
## 3267 0.8540864 0.5408163 0.9090369 0.9110335
## 3268 0.8540864 0.9321055 0.9090369 0.9110335
## 3269 0.8540864 0.9321055 0.9090369 0.9110335
## 3270 0.8540864 0.8148148 0.8791400 0.9110335
## 3271 0.8540864 0.9321055 0.9090369 0.9110335
## 3272 0.9439160 0.9321055 0.9090369 0.9110335
## 3273 0.9439160 0.9321055 0.9090369 0.9110335
## 3274 0.8540864 0.8877722 0.9090369 0.9110335
## 3275 0.9439160 0.8864504 0.9090369 0.9110335
## 3276 0.8540864 0.8877722 0.9090369 0.9110335
## 3277 0.8540864 0.9321055 0.8791400 0.9110335
## 3278 0.9439160 0.8864504 0.8791400 0.9110335
## 3279 0.8540864 0.9080000 0.9090369 0.9110335
## 3280 0.8540864 0.9010727 0.9090369 0.9110335
## 3281 0.9439160 0.9321055 0.8791400 0.9110335
## 3282 0.9439160 0.9080000 0.9090369 0.9110335
## 3283 0.8540864 0.9080000 0.9090369 0.9110335
## 3284 0.8540864 0.9080000 0.8791400 0.9110335
## 3285 0.9439160 0.9321055 0.9090369 0.9110335
## 3286 0.8540864 0.8148148 0.8791400 0.9110335
## 3287 0.8540864 0.8148148 0.8791400 0.9110335
## 3288 0.8540864 0.8877722 0.9090369 0.9110335
## 3289 0.9439160 0.8864504 0.9090369 0.9110335
## 3290 0.8540864 0.9010727 0.9090369 0.9110335
## 3291 0.8540864 0.8877722 0.9090369 0.9110335
## 3292 0.9439160 0.8864504 0.9090369 0.9110335
## 3293 0.9439160 0.8877722 0.9090369 0.9110335
## 3294 0.8540864 0.8877722 0.9090369 0.9110335
## 3295 0.8540864 0.6137931 0.8791400 0.9110335
## 3296 0.8540864 0.9080000 0.9090369 0.9110335
## 3297 0.8540864 0.9080000 0.9090369 0.9110335
## 3298 0.9439160 0.8864504 0.9090369 0.9110335
## 3299 0.8540864 0.8148148 0.9090369 0.9110335
## 3300 0.8540864 0.8877722 0.8791400 0.9110335
## 3301 0.8540864 0.8148148 0.8791400 0.9110335
## 3302 0.9439160 0.9080000 0.9090369 0.9110335
## 3303 0.9439160 0.8864504 0.9090369 0.9110335
## 3304 0.8540864 0.9080000 0.8791400 0.9110335
## 3305 0.9439160 0.9321055 0.9090369 0.9110335
## 3306 0.9439160 0.9321055 0.9090369 0.9110335
## 3307 0.9439160 0.9321055 0.9090369 0.9110335
## 3308 0.8540864 0.9321055 0.9090369 0.9110335
## 3309 0.8540864 0.9321055 0.8791400 0.9110335
## 3310 0.8540864 0.9010727 0.9090369 0.9110335
## 3311 0.8540864 0.8148148 0.9090369 0.9110335
## 3312 0.8540864 0.9080000 0.8791400 0.9110335
## 3313 0.8540864 0.8877722 0.8791400 0.9110335
## 3314 0.8540864 0.9080000 0.8791400 0.9110335
## 3315 0.8540864 0.8877722 0.9090369 0.9110335
## 3316 0.8540864 0.8148148 0.8791400 0.9110335
## 3317 0.8540864 0.9010727 0.8791400 0.9110335
## 3318 0.8540864 0.9080000 0.9090369 0.9110335
## 3319 0.8540864 0.8148148 0.8791400 0.9110335
## 3320 0.8540864 0.9080000 0.9090369 0.9110335
## 3321 0.9439160 0.9321055 0.9090369 0.9110335
## 3322 0.9439160 0.8864504 0.9090369 0.9110335
## 3323 0.9439160 0.8864504 0.9090369 0.9110335
## 3324 0.9439160 0.9321055 0.8721351 0.9110335
## 3325 0.8540864 0.8877722 0.9090369 0.9110335
## 3326 0.8540864 0.9080000 0.8791400 0.9110335
## 3327 0.8540864 0.8148148 0.8791400 0.9110335
## 3328 0.8540864 0.9321055 0.9090369 0.9110335
## 3329 0.8540864 0.9080000 0.8791400 0.9110335
## 3330 0.9439160 0.8864504 0.9090369 0.9110335
## 3331 0.8540864 0.9010727 0.9090369 0.9110335
## 3332 0.9439160 0.8864504 0.9090369 0.9110335
## 3333 0.9439160 0.8864504 0.8791400 0.9110335
## 3334 0.8540864 0.9080000 0.9090369 0.9110335
## 3335 0.8540864 0.9080000 0.8791400 0.9110335
## 3336 0.9439160 0.9321055 0.9090369 0.9110335
## 3337 0.9439160 0.9321055 0.9090369 0.9110335
## 3338 0.9439160 0.9321055 0.9090369 0.9110335
## 3339 0.9439160 0.9321055 0.8791400 0.9110335
## 3340 0.9439160 0.9321055 0.8791400 0.9110335
## 3341 0.9439160 0.9080000 0.8791400 0.9110335
## 3342 0.9439160 0.9321055 0.9090369 0.9110335
## 3343 0.8540864 0.9321055 0.9090369 0.9110335
## 3344 0.9439160 0.9321055 0.9090369 0.9110335
## 3345 0.8540864 0.9080000 0.8791400 0.9110335
## 3346 0.9439160 0.8864504 0.9090369 0.9110335
## 3347 0.8540864 0.9321055 0.9090369 0.9110335
## 3348 0.8540864 0.9080000 0.9090369 0.9110335
## 3349 0.8540864 0.8148148 0.9090369 0.9110335
## 3350 0.8540864 0.9321055 0.9090369 0.9110335
## 3351 0.8540864 0.8148148 0.9090369 0.9110335
## 3352 0.9439160 0.9080000 0.9090369 0.9110335
## 3353 0.9439160 0.8864504 0.9090369 0.9110335
## 3354 0.9439160 0.9321055 0.9090369 0.9110335
## 3355 0.8540864 0.9080000 0.9090369 0.9110335
## 3356 0.9439160 0.9321055 0.8791400 0.9110335
## 3357 0.9439160 0.9321055 0.9090369 0.9110335
## 3358 0.8540864 0.8148148 0.9090369 0.9110335
## 3359 0.9439160 0.9080000 0.9090369 0.9110335
## 3360 0.9439160 0.9080000 0.9090369 0.9110335
## 3361 0.9439160 0.9321055 0.9090369 0.9110335
## 3362 0.9439160 0.8864504 0.9090369 0.9110335
## 3363 0.8540864 0.9080000 0.8721351 0.9110335
## 3364 0.9439160 0.9321055 0.9090369 0.9110335
## 3365 0.9439160 0.9321055 0.9090369 0.9110335
## 3366 0.8540864 0.8148148 0.8791400 0.9110335
## 3367 0.9439160 0.8864504 0.9090369 0.9110335
## 3368 0.9439160 0.9321055 0.9090369 0.9110335
## 3369 0.8540864 0.8877722 0.8791400 0.9110335
## 3370 0.9439160 0.8864504 0.9090369 0.9110335
## 3371 0.8540864 0.9010727 0.9090369 0.9110335
## 3372 0.9439160 0.9321055 0.9090369 0.9110335
## 3373 0.9439160 0.9321055 0.8791400 0.9110335
## 3374 0.9439160 0.8864504 0.8791400 0.9110335
## 3375 0.8540864 0.9080000 0.9090369 0.9110335
## 3376 0.8540864 0.9321055 0.9090369 0.9110335
## 3377 0.8540864 0.9080000 0.8791400 0.9110335
## 3378 0.8540864 0.8877722 0.8791400 0.9110335
## 3379 0.8540864 0.8148148 0.8791400 0.9110335
## 3380 0.8540864 0.8877722 0.9090369 0.9110335
## 3381 0.9439160 0.9321055 0.9090369 0.9110335
## 3382 0.9439160 0.9321055 0.9090369 0.9110335
## 3383 0.8540864 0.9321055 0.8791400 0.9110335
## 3384 0.8540864 0.9010727 0.9090369 0.9110335
## 3385 0.8540864 0.6137931 0.8791400 0.9110335
## 3386 0.9439160 0.8877722 0.8791400 0.9110335
## 3387 0.8540864 0.8148148 0.8791400 0.9110335
## 3388 0.9439160 0.9321055 0.9090369 0.9110335
## 3389 0.8540864 0.9080000 0.9090369 0.9110335
## 3390 0.9439160 0.9321055 0.8791400 0.9110335
## 3391 0.8540864 0.9080000 0.9090369 0.9110335
## 3392 0.8540864 0.8148148 0.8791400 0.9110335
## 3393 0.9439160 0.9321055 0.9090369 0.9110335
## 3394 0.9439160 0.8864504 0.9090369 0.9110335
## 3395 0.8540864 0.8148148 0.8791400 0.9110335
## 3396 0.9439160 0.9321055 0.8791400 0.9110335
## 3397 0.8540864 0.9080000 0.9090369 0.9110335
## 3398 0.8540864 0.9080000 0.8791400 0.9110335
## 3399 0.8540864 0.8877722 0.8721351 0.9110335
## 3400 0.8540864 0.5408163 0.8791400 0.9110335
## 3401 0.8540864 0.8864504 0.9090369 0.9110335
## 3402 0.8540864 0.8148148 0.8791400 0.9110335
## 3403 0.8540864 0.8877722 0.8791400 0.9110335
## 3404 0.8540864 0.9080000 0.8791400 0.9110335
## 3405 0.8540864 0.9321055 0.9090369 0.9110335
## 3406 0.8540864 0.8148148 0.8791400 0.9110335
## 3407 0.9439160 0.9321055 0.9090369 0.9110335
## 3408 0.8540864 0.4949495 0.9090369 0.9110335
## 3409 0.9439160 0.9321055 0.9090369 0.9110335
## 3410 0.9439160 0.9321055 0.8791400 0.9110335
## 3411 0.9439160 0.8864504 0.9090369 0.9110335
## 3412 0.8540864 0.9321055 0.9090369 0.9110335
## 3413 0.8540864 0.9321055 0.8791400 0.9110335
## 3414 0.8540864 0.9080000 0.9090369 0.9110335
## 3415 0.8540864 0.8877722 0.8791400 0.9110335
## 3416 0.9439160 0.9321055 0.8721351 0.9110335
## 3417 0.9439160 0.9321055 0.8791400 0.9110335
## 3418 0.8540864 0.9080000 0.9090369 0.9110335
## 3419 0.8540864 0.9080000 0.9090369 0.9110335
## 3420 0.8540864 0.9080000 0.9090369 0.9110335
## 3421 0.8540864 0.8877722 0.9090369 0.9110335
## 3422 0.8540864 0.9080000 0.9090369 0.9110335
## 3423 0.9439160 0.8864504 0.9090369 0.9110335
## 3424 0.8540864 0.9321055 0.9090369 0.9110335
## 3425 0.8540864 0.6137931 0.8791400 0.9110335
## 3426 0.9439160 0.8864504 0.9090369 0.9110335
## 3427 0.9439160 0.9080000 0.8791400 0.9110335
## 3428 0.9439160 0.9321055 0.9090369 0.9110335
## 3429 0.9439160 0.9321055 0.9090369 0.9110335
## 3430 0.8540864 0.9080000 0.9090369 0.9110335
## 3431 0.9439160 0.9321055 0.9090369 0.9110335
## 3432 0.8540864 0.9080000 0.8791400 0.9110335
## 3433 0.8540864 0.9010727 0.9090369 0.9110335
## 3434 0.8540864 0.8877722 0.8791400 0.9110335
## 3435 0.9439160 0.9321055 0.9090369 0.9110335
## 3436 0.8540864 0.4949495 0.9090369 0.9110335
## 3437 0.8540864 0.9010727 0.8721351 0.9110335
## 3438 0.8540864 0.9080000 0.8791400 0.9110335
## 3439 0.8540864 0.9080000 0.9090369 0.9110335
## 3440 0.9439160 0.9321055 0.8791400 0.9110335
## 3441 0.8540864 0.9321055 0.9090369 0.9110335
## 3442 0.9439160 0.9321055 0.8721351 0.9110335
## 3443 0.9439160 0.8864504 0.9090369 0.9110335
## 3444 0.8540864 0.9080000 0.8791400 0.9110335
## 3445 0.9439160 0.9321055 0.8791400 0.9110335
## 3446 0.9439160 0.9321055 0.8791400 0.9110335
## 3447 0.9439160 0.8864504 0.9090369 0.9110335
## 3448 0.8540864 0.8877722 0.9090369 0.9110335
## 3449 0.8540864 0.8877722 0.9090369 0.9110335
## 3450 0.8540864 0.8877722 0.8791400 0.9110335
## 3451 0.8540864 0.9321055 0.8791400 0.9110335
## 3452 0.8540864 0.9321055 0.9090369 0.9110335
## 3453 0.8540864 0.5408163 0.8791400 0.9110335
## 3454 0.8540864 0.9321055 0.9090369 0.9110335
## 3455 0.9439160 0.9321055 0.9090369 0.9110335
## 3456 0.8540864 0.9080000 0.8791400 0.9110335
## 3457 0.8540864 0.6137931 0.9090369 0.9110335
## 3458 0.9439160 0.9321055 0.8791400 0.9110335
## 3459 0.8540864 0.8864504 0.9090369 0.9110335
## 3460 0.8540864 0.9080000 0.8791400 0.9110335
## 3461 0.9439160 0.9321055 0.9090369 0.9110335
## 3462 0.9439160 0.9321055 0.9090369 0.9110335
## 3463 0.9439160 0.8864504 0.9090369 0.9110335
## 3464 0.9439160 0.9080000 0.9090369 0.9110335
## 3465 0.8540864 0.9080000 0.9090369 0.9110335
## 3466 0.8540864 0.8877722 0.9090369 0.9110335
## 3467 0.9439160 0.8864504 0.9090369 0.9110335
## 3468 0.9439160 0.8864504 0.9090369 0.9110335
## 3469 0.8540864 0.9080000 0.8791400 0.9110335
## 3470 0.9439160 0.9321055 0.9090369 0.9110335
## 3471 0.8540864 0.8877722 0.8791400 0.9110335
## 3472 0.8540864 0.8877722 0.9090369 0.9110335
## 3473 0.8540864 0.9080000 0.9090369 0.9110335
## 3474 0.9439160 0.9321055 0.9090369 0.9110335
## 3475 0.9439160 0.8864504 0.9090369 0.9110335
## 3476 0.9439160 0.8864504 0.9090369 0.9110335
## 3477 0.8540864 0.9321055 0.8791400 0.9110335
## 3478 0.8540864 0.9080000 0.9090369 0.9110335
## 3479 0.9439160 0.9321055 0.8791400 0.9110335
## 3480 0.8540864 0.4949495 0.9090369 0.9110335
## 3481 0.8540864 0.9080000 0.9090369 0.9110335
## 3482 0.9439160 0.9321055 0.9090369 0.9110335
## 3483 0.8540864 0.9080000 0.8791400 0.9110335
## 3484 0.9439160 0.9321055 0.8791400 0.9110335
## 3485 0.8540864 0.9321055 0.9090369 0.9110335
## 3486 0.9439160 0.8864504 0.8791400 0.9110335
## 3487 0.8540864 0.9010727 0.9090369 0.9110335
## 3488 0.9439160 0.9321055 0.9090369 0.9110335
## 3489 0.9439160 0.8864504 0.9090369 0.9110335
## 3490 0.9439160 0.9321055 0.8791400 0.9110335
## 3491 0.8540864 0.8877722 0.8791400 0.9110335
## 3492 0.9439160 0.9321055 0.9090369 0.9110335
## 3493 0.9439160 0.9080000 0.8791400 0.9110335
## 3494 0.8540864 0.9080000 0.9090369 0.9110335
## 3495 0.9439160 0.9321055 0.9090369 0.9110335
## 3496 0.8540864 0.9321055 0.9090369 0.9110335
## 3497 0.8540864 0.9321055 0.8791400 0.9110335
## 3498 0.9439160 0.9321055 0.9090369 0.9110335
## 3499 0.8540864 0.9080000 0.9090369 0.9110335
## 3500 0.9439160 0.9321055 0.9090369 0.9110335
## 3501 0.8540864 0.9080000 0.9090369 0.9110335
## 3502 0.8540864 0.8877722 0.8791400 0.9110335
## 3503 0.8540864 0.8877722 0.9090369 0.9110335
## 3504 0.8540864 0.8148148 0.9090369 0.9110335
## 3505 0.8540864 0.9080000 0.9090369 0.9110335
## 3506 0.8540864 0.8877722 0.8791400 0.9110335
## 3507 0.8540864 0.8877722 0.8791400 0.9110335
## 3508 0.8540864 0.9321055 0.9090369 0.9110335
## 3509 0.9439160 0.8864504 0.9090369 0.9110335
## 3510 0.8540864 0.9321055 0.9090369 0.9110335
## 3511 0.9439160 0.9321055 0.8791400 0.9110335
## 3512 0.9439160 0.8864504 0.9090369 0.9110335
## 3513 0.8540864 0.9080000 0.9090369 0.9110335
## 3514 0.8540864 0.9010727 0.9090369 0.9110335
## 3515 0.8540864 0.9010727 0.8791400 0.9110335
## 3516 0.8540864 0.8877722 0.9090369 0.9110335
## 3517 0.8540864 0.8877722 0.8791400 0.9110335
## 3518 0.9439160 0.9321055 0.9090369 0.9110335
## 3519 0.8540864 0.9080000 0.9090369 0.9110335
## 3520 0.8540864 0.9080000 0.9090369 0.9110335
## 3521 0.8540864 0.9321055 0.9090369 0.9110335
## 3522 0.8540864 0.9321055 0.9090369 0.9110335
## 3523 0.9439160 0.9321055 0.8791400 0.9110335
## 3524 0.9439160 0.9010727 0.9090369 0.9110335
## 3525 0.8540864 0.8877722 0.9090369 0.9110335
## 3526 0.8540864 0.9080000 0.8791400 0.9110335
## 3527 0.9439160 0.9321055 0.9090369 0.9110335
## 3528 0.8540864 0.8877722 0.9090369 0.9110335
## 3529 0.8540864 0.9010727 0.9090369 0.9110335
## 3530 0.9439160 0.9321055 0.9090369 0.9110335
## 3531 0.8540864 0.8877722 0.8791400 0.9110335
## 3532 0.8540864 0.8877722 0.9090369 0.9110335
## 3533 0.9439160 0.9321055 0.9090369 0.9110335
## 3534 0.9439160 0.9080000 0.9090369 0.9110335
## 3535 0.8540864 0.9080000 0.9090369 0.9110335
## 3536 0.8540864 0.9010727 0.8791400 0.9110335
## 3537 0.9439160 0.9321055 0.9090369 0.9110335
## 3538 0.9439160 0.9080000 0.8791400 0.9110335
## 3539 0.9439160 0.8864504 0.8791400 0.9110335
## 3540 0.8540864 0.8877722 0.8791400 0.9110335
## 3541 0.9439160 0.8864504 0.9090369 0.9110335
## 3542 0.9439160 0.9321055 0.8791400 0.9110335
## 3543 0.8540864 0.8877722 0.8791400 0.9110335
## 3544 0.8540864 0.9080000 0.8791400 0.9110335
## 3545 0.8540864 0.9010727 0.9090369 0.9110335
## 3546 0.9439160 0.9321055 0.9090369 0.9110335
## 3547 0.8540864 0.8148148 0.9090369 0.9110335
## 3548 0.9439160 0.8864504 0.9090369 0.9110335
## 3549 0.8540864 0.8877722 0.8791400 0.9110335
## 3550 0.9439160 0.9321055 0.9090369 0.9110335
## 3551 0.8540864 0.9080000 0.9090369 0.9110335
## 3552 0.8540864 0.9321055 0.9090369 0.9110335
## 3553 0.8540864 0.8877722 0.9090369 0.9110335
## 3554 0.8540864 0.8877722 0.9090369 0.9110335
## 3555 0.8540864 0.8877722 0.8791400 0.9110335
## 3556 0.8540864 0.9080000 0.8791400 0.9110335
## 3557 0.9439160 0.9321055 0.9090369 0.9110335
## 3558 0.9439160 0.8864504 0.8791400 0.9110335
## 3559 0.8540864 0.8877722 0.8791400 0.9110335
## 3560 0.8540864 0.9321055 0.9090369 0.9110335
## 3561 0.8540864 0.8877722 0.8791400 0.9110335
## 3562 0.9439160 0.9321055 0.9090369 0.9110335
## 3563 0.9439160 0.9321055 0.8791400 0.9110335
## 3564 0.8540864 0.9080000 0.9090369 0.9110335
## 3565 0.9439160 0.8864504 0.9090369 0.9110335
## 3566 0.8540864 0.8877722 0.8791400 0.9110335
## 3567 0.8540864 0.6137931 0.9090369 0.9110335
## 3568 0.8540864 0.9080000 0.8791400 0.9110335
## 3569 0.9439160 0.9321055 0.9090369 0.9110335
## 3570 0.8540864 0.9080000 0.9090369 0.9110335
## 3571 0.8540864 0.9010727 0.8791400 0.9110335
## 3572 0.8540864 0.8148148 0.9090369 0.9110335
## 3573 0.8540864 0.9080000 0.9090369 0.9110335
## 3574 0.9439160 0.9321055 0.9090369 0.9110335
## 3575 0.9439160 0.9321055 0.9090369 0.9110335
## 3576 0.8540864 0.9080000 0.9090369 0.9110335
## 3577 0.8540864 0.9321055 0.8791400 0.9110335
## 3578 0.9439160 0.9321055 0.9090369 0.9110335
## 3579 0.8540864 0.9010727 0.9090369 0.9110335
## 3580 0.8540864 0.9080000 0.8721351 0.9110335
## 3581 0.8540864 0.9010727 0.9090369 0.9110335
## 3582 0.8540864 0.9080000 0.9090369 0.9110335
## 3583 0.9439160 0.9321055 0.9090369 0.9110335
## 3584 0.8540864 0.9080000 0.9090369 0.9110335
## 3585 0.8540864 0.9080000 0.8791400 0.9110335
## 3586 0.9439160 0.9321055 0.9090369 0.9110335
## 3587 0.8540864 0.8877722 0.9090369 0.9110335
## 3588 0.9439160 0.9321055 0.9090369 0.9110335
## 3589 0.9439160 0.8864504 0.8791400 0.9110335
## 3590 0.8540864 0.9080000 0.8721351 0.9110335
## 3591 0.8540864 0.9080000 0.9090369 0.9110335
## 3592 0.8540864 0.9080000 0.9090369 0.9110335
## 3593 0.8540864 0.9010727 0.8791400 0.9110335
## 3594 0.8540864 0.8877722 0.8791400 0.9110335
## 3595 0.8540864 0.9080000 0.8791400 0.9110335
## 3596 0.9439160 0.9080000 0.9090369 0.9110335
## 3597 0.9439160 0.8864504 0.9090369 0.9110335
## 3598 0.9439160 0.9080000 0.9090369 0.9110335
## 3599 0.8540864 0.9321055 0.9090369 0.9110335
## 3600 0.8540864 0.9321055 0.9090369 0.9110335
## 3601 0.8540864 0.9080000 0.8721351 0.9110335
## 3602 0.8540864 0.8877722 0.8791400 0.9110335
## 3603 0.8540864 0.9321055 0.9090369 0.9110335
## 3604 0.9439160 0.8877722 0.9090369 0.9110335
## 3605 0.9439160 0.9321055 0.9090369 0.9110335
## 3606 0.9439160 0.9321055 0.9090369 0.9110335
## 3607 0.8540864 0.9010727 0.9090369 0.9110335
## 3608 0.8540864 0.9080000 0.9090369 0.9110335
## 3609 0.8540864 0.9080000 0.9090369 0.9110335
## 3610 0.8540864 0.8877722 0.8791400 0.9110335
## 3611 0.8540864 0.9321055 0.9090369 0.9110335
## 3612 0.8540864 0.8148148 0.9090369 0.9110335
## 3613 0.8540864 0.9321055 0.8791400 0.9110335
## 3614 0.8540864 0.9321055 0.9090369 0.9110335
## 3615 0.8540864 0.9080000 0.9090369 0.9110335
## 3616 0.9439160 0.9080000 0.8791400 0.9110335
## 3617 0.9439160 0.9321055 0.9090369 0.9110335
## 3618 0.8540864 0.8877722 0.9090369 0.9110335
## 3619 0.8540864 0.8877722 0.8791400 0.9110335
## 3620 0.8540864 0.8877722 0.9090369 0.9110335
## 3621 0.8540864 0.9080000 0.9090369 0.9110335
## 3622 0.9439160 0.9321055 0.9090369 0.9110335
## 3623 0.8540864 0.9321055 0.9090369 0.9110335
## 3624 0.9439160 0.9080000 0.9090369 0.9110335
## 3625 0.8540864 0.9080000 0.8791400 0.9110335
## 3626 0.8540864 0.9080000 0.8791400 0.9110335
## 3627 0.8540864 0.8877722 0.8791400 0.9110335
## 3628 0.9439160 0.9321055 0.9090369 0.9110335
## 3629 0.9439160 0.9080000 0.8791400 0.9110335
## 3630 0.8540864 0.9080000 0.8791400 0.9110335
## 3631 0.8540864 0.8877722 0.9090369 0.9110335
## 3632 0.8540864 0.8877722 0.8791400 0.9110335
## 3633 0.8540864 0.9010727 0.9090369 0.9110335
## 3634 0.8540864 0.9080000 0.9090369 0.9110335
## 3635 0.8540864 0.8148148 0.8721351 0.9110335
## 3636 0.8540864 0.9010727 0.9090369 0.9110335
## 3637 0.8540864 0.9010727 0.9090369 0.9110335
## 3638 0.9439160 0.9010727 0.8791400 0.9110335
## 3639 0.9439160 0.9321055 0.9090369 0.9110335
## 3640 0.9439160 0.8864504 0.8791400 0.9110335
## 3641 0.8540864 0.8877722 0.9090369 0.9110335
## 3642 0.8540864 0.9321055 0.9090369 0.9110335
## 3643 0.8540864 0.9321055 0.9090369 0.9110335
## 3644 0.8540864 0.9321055 0.8721351 0.9110335
## 3645 0.8540864 0.8864504 0.9090369 0.9110335
## 3646 0.8540864 0.9080000 0.9090369 0.9110335
## 3647 0.8540864 0.9010727 0.9090369 0.9110335
## 3648 0.8540864 0.9010727 0.9090369 0.9110335
## 3649 0.9439160 0.9321055 0.9090369 0.9110335
## 3650 0.8540864 0.9080000 0.9090369 0.9110335
## 3651 0.8540864 0.8877722 0.9090369 0.9110335
## 3652 0.8540864 0.9080000 0.8791400 0.9110335
## 3653 0.8540864 0.8877722 0.8791400 0.9110335
## 3654 0.9439160 0.9321055 0.9090369 0.9110335
## 3655 0.8540864 0.8148148 0.9090369 0.9110335
## 3656 0.9439160 0.8864504 0.8791400 0.9110335
## 3657 0.8540864 0.9080000 0.8791400 0.9110335
## 3658 0.9439160 0.9321055 0.9090369 0.9110335
## 3659 0.9439160 0.9010727 0.9090369 0.9110335
## 3660 0.9439160 0.9321055 0.9090369 0.9110335
## 3661 0.8540864 0.9080000 0.9090369 0.9110335
## 3662 0.8540864 0.8877722 0.9090369 0.9110335
## 3663 0.9439160 0.9321055 0.9090369 0.9110335
## 3664 0.8540864 0.9321055 0.9090369 0.9110335
## 3665 0.9439160 0.9321055 0.9090369 0.9110335
## 3666 0.9439160 0.8864504 0.9090369 0.9110335
## 3667 0.9439160 0.9321055 0.9090369 0.9110335
## 3668 0.8540864 0.9321055 0.9090369 0.9110335
## 3669 0.9439160 0.9321055 0.8791400 0.9110335
## 3670 0.8540864 0.9080000 0.9090369 0.9110335
## 3671 0.9439160 0.8864504 0.9090369 0.9110335
## 3672 0.8540864 0.9080000 0.9090369 0.9110335
## 3673 0.9439160 0.9080000 0.8791400 0.9110335
## 3674 0.9439160 0.8864504 0.9090369 0.9110335
## 3675 0.9439160 0.8864504 0.9090369 0.9110335
## 3676 0.9439160 0.8864504 0.8791400 0.9110335
## 3677 0.8540864 0.8877722 0.9090369 0.9110335
## 3678 0.9439160 0.9321055 0.8791400 0.9110335
## 3679 0.8540864 0.9010727 0.9090369 0.9110335
## 3680 0.9439160 0.9321055 0.8791400 0.9110335
## 3681 0.9439160 0.8864504 0.9090369 0.9110335
## 3682 0.9439160 0.9010727 0.8721351 0.9110335
## 3683 0.9439160 0.9321055 0.9090369 0.9110335
## 3684 0.8540864 0.9321055 0.9090369 0.9110335
## 3685 0.8540864 0.8877722 0.9090369 0.9110335
## 3686 0.8540864 0.9080000 0.9090369 0.9110335
## 3687 0.8540864 0.9321055 0.9090369 0.9110335
## 3688 0.8540864 0.9080000 0.9090369 0.9110335
## 3689 0.8540864 0.9080000 0.8721351 0.9110335
## 3690 0.8540864 0.6137931 0.9090369 0.9110335
## 3691 0.9439160 0.9321055 0.9090369 0.9110335
## 3692 0.8540864 0.8877722 0.8791400 0.9110335
## 3693 0.9439160 0.9321055 0.9090369 0.9110335
## 3694 0.8540864 0.8148148 0.9090369 0.9110335
## 3695 0.9439160 0.8864504 0.8791400 0.9110335
## 3696 0.8540864 0.9010727 0.8791400 0.9110335
## 3697 0.9439160 0.9321055 0.9090369 0.9110335
## 3698 0.9439160 0.4949495 0.9090369 0.9110335
## 3699 0.8540864 0.8877722 0.9090369 0.9110335
## 3700 0.8540864 0.9080000 0.8791400 0.9110335
## 3701 0.9439160 0.8864504 0.9090369 0.9110335
## 3702 0.9439160 0.9321055 0.9090369 0.9110335
## 3703 0.8540864 0.8877722 0.8791400 0.9110335
## 3704 0.8540864 0.9010727 0.8791400 0.9110335
## 3705 0.9439160 0.8864504 0.9090369 0.9110335
## 3706 0.9439160 0.9321055 0.9090369 0.9110335
## 3707 0.9439160 0.9010727 0.9090369 0.9110335
## 3708 0.8540864 0.9010727 0.9090369 0.9110335
## 3709 0.8540864 0.8877722 0.8791400 0.9110335
## 3710 0.9439160 0.9321055 0.9090369 0.9110335
## 3711 0.8540864 0.9010727 0.8791400 0.9110335
## 3712 0.8540864 0.9321055 0.9090369 0.9110335
## 3713 0.9439160 0.9321055 0.9090369 0.9110335
## 3714 0.8540864 0.9010727 0.9090369 0.9110335
## 3715 0.9439160 0.8864504 0.9090369 0.9110335
## 3716 0.8540864 0.8877722 0.8791400 0.9110335
## 3717 0.8540864 0.9080000 0.9090369 0.9110335
## 3718 0.8540864 0.8864504 0.9090369 0.9110335
## 3719 0.8540864 0.9080000 0.8791400 0.9110335
## 3720 0.9439160 0.9321055 0.9090369 0.9110335
## 3721 0.8540864 0.9080000 0.9090369 0.9110335
## 3722 0.8540864 0.9321055 0.9090369 0.9110335
## 3723 0.9439160 0.8864504 0.8791400 0.9110335
## 3724 0.9439160 0.9321055 0.9090369 0.9110335
## 3725 0.8540864 0.8148148 0.9090369 0.9110335
## 3726 0.8540864 0.9321055 0.8791400 0.9110335
## 3727 0.9439160 0.9321055 0.9090369 0.9110335
## 3728 0.9439160 0.8864504 0.8791400 0.9110335
## 3729 0.8540864 0.9321055 0.8791400 0.9110335
## 3730 0.8540864 0.9321055 0.9090369 0.9110335
## 3731 0.8540864 0.8877722 0.9090369 0.9110335
## 3732 0.8540864 0.9080000 0.8791400 0.9110335
## 3733 0.8540864 0.9010727 0.9090369 0.9110335
## 3734 0.8540864 0.8864504 0.9090369 0.9110335
## 3735 0.9439160 0.9321055 0.8721351 0.9110335
## 3736 0.9439160 0.9321055 0.9090369 0.9110335
## 3737 0.8540864 0.9321055 0.9090369 0.9110335
## 3738 0.8540864 0.8877722 0.8791400 0.9110335
## 3739 0.9439160 0.9321055 0.8791400 0.9110335
## 3740 0.8540864 0.8877722 0.8791400 0.9110335
## 3741 0.8540864 0.9321055 0.9090369 0.9110335
## 3742 0.9439160 0.8864504 0.8721351 0.9110335
## 3743 0.9439160 0.8864504 0.9090369 0.9110335
## 3744 0.8540864 0.9321055 0.9090369 0.9110335
## 3745 0.8540864 0.8877722 0.9090369 0.9110335
## 3746 0.9439160 0.9321055 0.9090369 0.9110335
## 3747 0.8540864 0.9080000 0.9090369 0.9110335
## 3748 0.9439160 0.8864504 0.8791400 0.9110335
## 3749 0.9439160 0.8864504 0.9090369 0.9110335
## 3750 0.8540864 0.8877722 0.9090369 0.9110335
## 3751 0.8540864 0.9080000 0.8791400 0.9110335
## 3752 0.9439160 0.8864504 0.9090369 0.9110335
## 3753 0.9439160 0.9010727 0.9090369 0.9110335
## 3754 0.9439160 0.9321055 0.9090369 0.9110335
## 3755 0.9439160 0.9321055 0.9090369 0.9110335
## 3756 0.8540864 0.9080000 0.9090369 0.9110335
## 3757 0.8540864 0.9321055 0.9090369 0.9110335
## 3758 0.9439160 0.8864504 0.9090369 0.9110335
## 3759 0.8540864 0.9321055 0.9090369 0.9110335
## 3760 0.8540864 0.9080000 0.9090369 0.9110335
## 3761 0.8540864 0.8877722 0.8791400 0.9110335
## 3762 0.8540864 0.9080000 0.9090369 0.9110335
## 3763 0.8540864 0.9080000 0.8791400 0.9110335
## 3764 0.9439160 0.9080000 0.8791400 0.9110335
## 3765 0.9439160 0.9321055 0.9090369 0.9110335
## 3766 0.9439160 0.9080000 0.8721351 0.9110335
## 3767 0.8540864 0.9010727 0.9090369 0.9110335
## 3768 0.8540864 0.8148148 0.9090369 0.9110335
## 3769 0.8540864 0.8877722 0.8791400 0.9110335
## 3770 0.9439160 0.9321055 0.9090369 0.9110335
## 3771 0.9439160 0.8864504 0.8721351 0.9110335
## 3772 0.9439160 0.9321055 0.9090369 0.9110335
## 3773 0.9439160 0.9010727 0.9090369 0.9110335
## 3774 0.9439160 0.9080000 0.8791400 0.9110335
## 3775 0.8540864 0.8877722 0.9090369 0.9110335
## 3776 0.9439160 0.9321055 0.9090369 0.9110335
## 3777 0.8540864 0.8148148 0.9090369 0.9110335
## 3778 0.8540864 0.8877722 0.9090369 0.9110335
## 3779 0.8540864 0.9321055 0.9090369 0.9110335
## 3780 0.9439160 0.9321055 0.9090369 0.9110335
## 3781 0.9439160 0.9321055 0.9090369 0.9110335
## 3782 0.8540864 0.9010727 0.8791400 0.9110335
## 3783 0.8540864 0.9321055 0.9090369 0.9110335
## 3784 0.9439160 0.9321055 0.9090369 0.9110335
## 3785 0.9439160 0.9080000 0.8791400 0.9110335
## 3786 0.8540864 0.8864504 0.9090369 0.9110335
## 3787 0.9439160 0.9321055 0.8791400 0.9110335
## 3788 0.8540864 0.9080000 0.9090369 0.9110335
## 3789 0.8540864 0.9080000 0.9090369 0.9110335
## 3790 0.9439160 0.9321055 0.9090369 0.9110335
## 3791 0.8540864 0.4949495 0.9090369 0.9110335
## 3792 0.9439160 0.9321055 0.8791400 0.9110335
## 3793 0.9439160 0.8864504 0.9090369 0.9110335
## 3794 0.9439160 0.9321055 0.8791400 0.9110335
## 3795 0.8540864 0.9010727 0.9090369 0.9110335
## 3796 0.8540864 0.9080000 0.8791400 0.9110335
## 3797 0.9439160 0.9321055 0.9090369 0.9110335
## 3798 0.8540864 0.8864504 0.9090369 0.9110335
## 3799 0.8540864 0.9321055 0.9090369 0.9110335
## 3800 0.9439160 0.8864504 0.9090369 0.9110335
## 3801 0.8540864 0.9080000 0.9090369 0.9110335
## 3802 0.8540864 0.9010727 0.9090369 0.9110335
## 3803 0.9439160 0.9321055 0.8791400 0.9110335
## 3804 0.9439160 0.9321055 0.8791400 0.9110335
## 3805 0.9439160 0.9321055 0.9090369 0.9110335
## 3806 0.9439160 0.9321055 0.8721351 0.9110335
## 3807 0.9439160 0.9321055 0.9090369 0.9110335
## 3808 0.9439160 0.8864504 0.9090369 0.9110335
## 3809 0.8540864 0.9321055 0.9090369 0.9110335
## 3810 0.9439160 0.9321055 0.9090369 0.9110335
## 3811 0.9439160 0.9321055 0.9090369 0.9110335
## 3812 0.9439160 0.9321055 0.9090369 0.9110335
## 3813 0.8540864 0.8864504 0.9090369 0.9110335
## 3814 0.8540864 0.8877722 0.8721351 0.9110335
## 3815 0.8540864 0.9321055 0.9090369 0.9110335
## 3816 0.8540864 0.9080000 0.8791400 0.9110335
## 3817 0.9439160 0.9321055 0.9090369 0.9110335
## 3818 0.8540864 0.9080000 0.8791400 0.9110335
## 3819 0.9439160 0.9010727 0.9090369 0.9110335
## 3820 0.8540864 0.9080000 0.9090369 0.9110335
## 3821 0.8540864 0.9010727 0.8791400 0.9110335
## 3822 0.9439160 0.8864504 0.9090369 0.9110335
## 3823 0.9439160 0.9321055 0.9090369 0.9110335
## 3824 0.9439160 0.9010727 0.9090369 0.9110335
## 3825 0.8540864 0.9321055 0.9090369 0.9110335
## 3826 0.9439160 0.9321055 0.9090369 0.9110335
## 3827 0.9439160 0.9321055 0.9090369 0.9110335
## 3828 0.9439160 0.8864504 0.9090369 0.9110335
## 3829 0.8540864 0.9010727 0.9090369 0.9110335
## 3830 0.8540864 0.6137931 0.9090369 0.9110335
## 3831 0.9439160 0.6137931 0.9090369 0.9110335
## 3832 0.9439160 0.9321055 0.9090369 0.9110335
## 3833 0.8540864 0.4949495 0.9090369 0.9110335
## 3834 0.9439160 0.9321055 0.8791400 0.9110335
## 3835 0.8540864 0.9080000 0.9090369 0.9110335
## 3836 0.9439160 0.9321055 0.9090369 0.9110335
## 3837 0.9439160 0.9321055 0.9090369 0.9110335
## 3838 0.8540864 0.9080000 0.9090369 0.9110335
## 3839 0.8540864 0.8877722 0.9090369 0.9110335
## 3840 0.8540864 0.8877722 0.8791400 0.9110335
## 3841 0.9439160 0.9321055 0.8791400 0.9110335
## 3842 0.8540864 0.9321055 0.9090369 0.9110335
## 3843 0.8540864 0.9080000 0.8791400 0.9110335
## 3844 0.8540864 0.9080000 0.8791400 0.9110335
## 3845 0.9439160 0.8864504 0.8721351 0.9110335
## 3846 0.9439160 0.9321055 0.9090369 0.9110335
## 3847 0.8540864 0.8877722 0.9090369 0.9110335
## 3848 0.8540864 0.9010727 0.9090369 0.9110335
## 3849 0.8540864 0.9080000 0.9090369 0.9110335
## 3850 0.8540864 0.9080000 0.9090369 0.9110335
## 3851 0.9439160 0.9321055 0.9090369 0.9110335
## 3852 0.8540864 0.8877722 0.8791400 0.9110335
## 3853 0.8540864 0.9080000 0.9090369 0.9110335
## 3854 0.8540864 0.8877722 0.8791400 0.9110335
## 3855 0.9439160 0.9321055 0.9090369 0.9110335
## 3856 0.8540864 0.8877722 0.8721351 0.9110335
## 3857 0.8540864 0.9080000 0.9090369 0.9110335
## 3858 0.8540864 0.9321055 0.9090369 0.9110335
## 3859 0.8540864 0.9080000 0.8791400 0.9110335
## 3860 0.8540864 0.9080000 0.9090369 0.9110335
## 3861 0.9439160 0.8864504 0.9090369 0.9110335
## 3862 0.9439160 0.9321055 0.9090369 0.9110335
## 3863 0.9439160 0.9080000 0.8791400 0.9110335
## 3864 0.9439160 0.9321055 0.8791400 0.9110335
## 3865 0.8540864 0.8877722 0.9090369 0.9110335
## 3866 0.9439160 0.9080000 0.8791400 0.9110335
## 3867 0.8540864 0.9080000 0.8791400 0.9110335
## 3868 0.8540864 0.9321055 0.8721351 0.9110335
## 3869 0.9439160 0.9321055 0.9090369 0.9110335
## 3870 0.9439160 0.8864504 0.9090369 0.9110335
## 3871 0.8540864 0.9080000 0.8791400 0.9110335
## 3872 0.9439160 0.8864504 0.9090369 0.9110335
## 3873 0.8540864 0.9080000 0.8721351 0.9110335
## 3874 0.8540864 0.9080000 0.9090369 0.9110335
## 3875 0.8540864 0.9080000 0.9090369 0.9110335
## 3876 0.8540864 0.8864504 0.9090369 0.9110335
## 3877 0.9439160 0.8864504 0.9090369 0.9110335
## 3878 0.8540864 0.9321055 0.8721351 0.9110335
## 3879 0.9439160 0.9321055 0.8791400 0.9110335
## 3880 0.8540864 0.9321055 0.8791400 0.9110335
## 3881 0.8540864 0.8148148 0.9090369 0.9110335
## 3882 0.9439160 0.9321055 0.9090369 0.9110335
## 3883 0.8540864 0.9010727 0.9090369 0.9110335
## 3884 0.9439160 0.8864504 0.8791400 0.9110335
## 3885 0.8540864 0.9080000 0.8721351 0.9110335
## 3886 0.9439160 0.8864504 0.9090369 0.9110335
## 3887 0.9439160 0.9321055 0.9090369 0.9110335
## 3888 0.9439160 0.9321055 0.9090369 0.9110335
## 3889 0.8540864 0.9080000 0.8721351 0.9110335
## 3890 0.8540864 0.9321055 0.9090369 0.9110335
## 3891 0.8540864 0.8877722 0.8791400 0.9110335
## 3892 0.8540864 0.9321055 0.8721351 0.9110335
## 3893 0.9439160 0.8864504 0.9090369 0.9110335
## 3894 0.9439160 0.9321055 0.9090369 0.9110335
## 3895 0.8540864 0.9010727 0.9090369 0.9110335
## 3896 0.8540864 0.6137931 0.9090369 0.9110335
## 3897 0.9439160 0.9321055 0.8721351 0.9110335
## 3898 0.8540864 0.9080000 0.8791400 0.9110335
## 3899 0.8540864 0.9321055 0.9090369 0.9110335
## 3900 0.9439160 0.8864504 0.9090369 0.9110335
## 3901 0.8540864 0.9080000 0.8791400 0.9110335
## 3902 0.9439160 0.8864504 0.8791400 0.9110335
## 3903 0.8540864 0.9321055 0.8791400 0.9110335
## 3904 0.9439160 0.9321055 0.9090369 0.9110335
## 3905 0.8540864 0.9080000 0.8721351 0.9110335
## 3906 0.8540864 0.9010727 0.9090369 0.9110335
## 3907 0.8540864 0.8877722 0.8791400 0.9110335
## 3908 0.8540864 0.9321055 0.9090369 0.9110335
## 3909 0.8540864 0.9080000 0.9090369 0.9110335
## 3910 0.8540864 0.8877722 0.9090369 0.9110335
## 3911 0.9439160 0.9321055 0.9090369 0.9110335
## 3912 0.8540864 0.9321055 0.9090369 0.9110335
## 3913 0.8540864 0.6137931 0.9090369 0.9110335
## 3914 0.9439160 0.9080000 0.8791400 0.9110335
## 3915 0.9439160 0.6137931 0.9090369 0.9110335
## 3916 0.8540864 0.9010727 0.9090369 0.9110335
## 3917 0.9439160 0.9321055 0.9090369 0.9110335
## 3918 0.8540864 0.9321055 0.8721351 0.9110335
## 3919 0.8540864 0.9080000 0.8791400 0.9110335
## 3920 0.9439160 0.4949495 0.9090369 0.9110335
## 3921 0.8540864 0.8864504 0.8721351 0.9110335
## 3922 0.9439160 0.8864504 0.9090369 0.9110335
## 3923 0.8540864 0.6137931 0.9090369 0.9110335
## 3924 0.9439160 0.9321055 0.8791400 0.9110335
## 3925 0.8540864 0.8148148 0.9090369 0.9110335
## 3926 0.9439160 0.8864504 0.8791400 0.9110335
## 3927 0.9439160 0.9321055 0.9090369 0.9110335
## 3928 0.8540864 0.8877722 0.9090369 0.9110335
## 3929 0.8540864 0.9010727 0.9090369 0.9110335
## 3930 0.9439160 0.8864504 0.9090369 0.9110335
## 3931 0.9439160 0.9080000 0.8791400 0.9110335
## 3932 0.9439160 0.9321055 0.9090369 0.9110335
## 3933 0.8540864 0.8877722 0.8791400 0.9110335
## 3934 0.8540864 0.8877722 0.8791400 0.9110335
## 3935 0.8540864 0.6137931 0.9090369 0.9110335
## 3936 0.9439160 0.9010727 0.9090369 0.9110335
## 3937 0.8540864 0.8877722 0.8721351 0.9110335
## 3938 0.8540864 0.8877722 0.8721351 0.9110335
## 3939 0.9439160 0.8864504 0.9090369 0.9110335
## 3940 0.9439160 0.9321055 0.9090369 0.9110335
## 3941 0.8540864 0.4949495 0.9090369 0.9110335
## 3942 0.8540864 0.5408163 0.9090369 0.9110335
## 3943 0.9439160 0.8864504 0.8791400 0.9110335
## 3944 0.9439160 0.9321055 0.9090369 0.9110335
## 3945 0.9439160 0.9321055 0.9090369 0.9110335
## 3946 0.8540864 0.9321055 0.8721351 0.9110335
## 3947 0.8540864 0.8877722 0.8791400 0.9110335
## 3948 0.8540864 0.9080000 0.9090369 0.9110335
## 3949 0.8540864 0.9080000 0.9090369 0.9110335
## 3950 0.8540864 0.9321055 0.9090369 0.9110335
## 3951 0.8540864 0.9080000 0.9090369 0.9110335
## 3952 0.8540864 0.9080000 0.8791400 0.9110335
## 3953 0.8540864 0.9080000 0.9090369 0.9110335
## 3954 0.9439160 0.8864504 0.9090369 0.9110335
## 3955 0.9439160 0.9321055 0.9090369 0.9110335
## 3956 0.8540864 0.9080000 0.8791400 0.9110335
## 3957 0.8540864 0.9080000 0.8791400 0.9110335
## 3958 0.8540864 0.8148148 0.9090369 0.9110335
## 3959 0.8540864 0.8877722 0.8791400 0.9110335
## 3960 0.9439160 0.9321055 0.9090369 0.9110335
## 3961 0.8540864 0.9321055 0.9090369 0.9110335
## 3962 0.8540864 0.6137931 0.8791400 0.9110335
## 3963 0.8540864 0.8877722 0.9090369 0.9110335
## 3964 0.8540864 0.8877722 0.8721351 0.9110335
## 3965 0.8540864 0.4949495 0.9090369 0.9110335
## 3966 0.9439160 0.9321055 0.8791400 0.9110335
## 3967 0.9439160 0.8864504 0.9090369 0.9110335
## 3968 0.9439160 0.9321055 0.9090369 0.9110335
## 3969 0.8540864 0.9080000 0.9090369 0.9110335
## 3970 0.8540864 0.9010727 0.9090369 0.9110335
## 3971 0.9439160 0.9321055 0.9090369 0.9110335
## 3972 0.9439160 0.9321055 0.8791400 0.9110335
## 3973 0.8540864 0.9321055 0.9090369 0.9110335
## 3974 0.8540864 0.9080000 0.8791400 0.9110335
## 3975 0.9439160 0.8864504 0.9090369 0.9110335
## 3976 0.9439160 0.8864504 0.9090369 0.9110335
## 3977 0.9439160 0.8864504 0.9090369 0.9110335
## 3978 0.8540864 0.8877722 0.9090369 0.9110335
## 3979 0.9439160 0.8864504 0.9090369 0.9110335
## 3980 0.9439160 0.9321055 0.9090369 0.9110335
## 3981 0.8540864 0.9080000 0.8721351 0.9110335
## 3982 0.8540864 0.8877722 0.8721351 0.9110335
## 3983 0.8540864 0.9010727 0.9090369 0.9110335
## 3984 0.8540864 0.9010727 0.8791400 0.9110335
## 3985 0.8540864 0.9321055 0.8721351 0.9110335
## 3986 0.8540864 0.9321055 0.8791400 0.9110335
## 3987 0.9439160 0.9321055 0.9090369 0.9110335
## 3988 0.8540864 0.9080000 0.9090369 0.9110335
## 3989 0.8540864 0.9321055 0.9090369 0.9110335
## 3990 0.9439160 0.9321055 0.9090369 0.9110335
## 3991 0.8540864 0.9010727 0.9090369 0.9110335
## 3992 0.8540864 0.8877722 0.8791400 0.9110335
## 3993 0.8540864 0.9080000 0.9090369 0.9110335
## 3994 0.9439160 0.9010727 0.9090369 0.9110335
## 3995 0.8540864 0.9080000 0.8721351 0.9110335
## 3996 0.9439160 0.8864504 0.9090369 0.9110335
## 3997 0.8540864 0.9010727 0.9090369 0.9110335
## 3998 0.9439160 0.9321055 0.9090369 0.9110335
## 3999 0.8540864 0.9010727 0.8791400 0.9110335
## 4000 0.8540864 0.8877722 0.8791400 0.9110335
## 4001 0.9439160 0.9321055 0.9090369 0.9110335
## 4002 0.9439160 0.9321055 0.9090369 0.9110335
## 4003 0.8540864 0.9321055 0.9090369 0.9110335
## 4004 0.9439160 0.9321055 0.9090369 0.9110335
## 4005 0.8540864 0.8148148 0.9090369 0.9110335
## 4006 0.8540864 0.8877722 0.8791400 0.9110335
## 4007 0.9439160 0.8864504 0.9090369 0.9110335
## 4008 0.9439160 0.9321055 0.8791400 0.9110335
## 4009 0.8540864 0.9080000 0.9090369 0.9110335
## 4010 0.8540864 0.9010727 0.8791400 0.9110335
## 4011 0.8540864 0.8877722 0.8791400 0.9110335
## 4012 0.8540864 0.9321055 0.9090369 0.9110335
## 4013 0.8540864 0.9080000 0.8791400 0.9110335
## 4014 0.9439160 0.9321055 0.9090369 0.9110335
## 4015 0.8540864 0.8877722 0.8791400 0.9110335
## 4016 0.8540864 0.9321055 0.9090369 0.9110335
## 4017 0.8540864 0.9321055 0.8791400 0.9110335
## 4018 0.8540864 0.9321055 0.8791400 0.9110335
## 4019 0.8540864 0.9010727 0.9090369 0.9110335
## 4020 0.9439160 0.9321055 0.9090369 0.9110335
## 4021 0.8540864 0.9321055 0.8791400 0.9110335
## 4022 0.8540864 0.9321055 0.8721351 0.9110335
## 4023 0.8540864 0.4949495 0.8791400 0.9110335
## 4024 0.8540864 0.9080000 0.8791400 0.9110335
## 4025 0.8540864 0.9321055 0.9090369 0.9110335
## 4026 0.8540864 0.9010727 0.8791400 0.9110335
## 4027 0.8540864 0.6137931 0.8791400 0.9110335
## 4028 0.9439160 0.8864504 0.9090369 0.9110335
## 4029 0.8540864 0.9010727 0.9090369 0.9110335
## 4030 0.8540864 0.8877722 0.9090369 0.9110335
## 4031 0.9439160 0.9010727 0.9090369 0.9110335
## 4032 0.9439160 0.9321055 0.9090369 0.9110335
## 4033 0.9439160 0.5408163 0.9090369 0.9110335
## 4034 0.8540864 0.8148148 0.8791400 0.9110335
## 4035 0.8540864 0.8148148 0.8791400 0.9110335
## 4036 0.9439160 0.9321055 0.8791400 0.9110335
## 4037 0.8540864 0.8877722 0.8791400 0.9110335
## 4038 0.9439160 0.9321055 0.8791400 0.9110335
## 4039 0.8540864 0.8877722 0.8791400 0.9110335
## 4040 0.9439160 0.8864504 0.8791400 0.9110335
## 4041 0.8540864 0.8148148 0.8791400 0.9110335
## 4042 0.8540864 0.9321055 0.8721351 0.9110335
## 4043 0.8540864 0.8877722 0.8791400 0.9110335
## 4044 0.8540864 0.4949495 0.8791400 0.9110335
## 4045 0.8540864 0.4949495 0.8791400 0.9110335
## 4046 0.8540864 0.8148148 0.8791400 0.9110335
## 4047 0.9439160 0.8864504 0.8791400 0.9110335
## 4048 0.8540864 0.9010727 0.8791400 0.9110335
## 4049 0.8540864 0.8148148 0.8791400 0.9110335
## 4050 0.8540864 0.5408163 0.8721351 0.9110335
## 4051 0.9439160 0.8864504 0.8791400 0.9110335
## 4052 0.8540864 0.9080000 0.8791400 0.9110335
## 4053 0.8540864 0.8877722 0.8791400 0.9110335
## 4054 0.8540864 0.8877722 0.8791400 0.9110335
## 4055 0.8540864 0.9321055 0.8791400 0.9110335
## 4056 0.9439160 0.9321055 0.8791400 0.9110335
## 4057 0.8540864 0.8148148 0.8791400 0.9110335
## 4058 0.8540864 0.8877722 0.8791400 0.9110335
## 4059 0.8540864 0.8877722 0.8791400 0.9110335
## 4060 0.9439160 0.9321055 0.8721351 0.9110335
## 4061 0.9439160 0.9321055 0.8791400 0.9110335
## 4062 0.8540864 0.8148148 0.8791400 0.9110335
## 4063 0.8540864 0.9321055 0.8791400 0.9110335
## 4064 0.9439160 0.8864504 0.8791400 0.9110335
## 4065 0.8540864 0.9321055 0.8791400 0.9110335
## 4066 0.9439160 0.9321055 0.8791400 0.9110335
## 4067 0.8540864 0.8148148 0.8791400 0.9110335
## 4068 0.8540864 0.8148148 0.8791400 0.9110335
## 4069 0.8540864 0.8877722 0.8791400 0.9110335
## 4070 0.8540864 0.9010727 0.8791400 0.9110335
## 4071 0.9439160 0.8864504 0.8721351 0.9110335
## 4072 0.8540864 0.9010727 0.8791400 0.9110335
## 4073 0.8540864 0.8148148 0.8791400 0.9110335
## 4074 0.8540864 0.9010727 0.8791400 0.9110335
## 4075 0.8540864 0.6137931 0.8791400 0.9110335
## 4076 0.9439160 0.9321055 0.8791400 0.9110335
## 4077 0.8540864 0.8877722 0.8791400 0.9110335
## 4078 0.9439160 0.8864504 0.8791400 0.9110335
## 4079 0.8540864 0.8148148 0.8791400 0.9110335
## 4080 0.9439160 0.9321055 0.8791400 0.9110335
## 4081 0.9439160 0.9321055 0.8791400 0.9110335
## 4082 0.9439160 0.9321055 0.8874696 0.9110335
## 4083 0.9439160 0.9321055 0.8791400 0.9110335
## 4084 0.8540864 0.9080000 0.8791400 0.9110335
## 4085 0.8540864 0.8877722 0.8791400 0.9110335
## 4086 0.9439160 0.9321055 0.8791400 0.9110335
## 4087 0.8540864 0.8877722 0.8791400 0.9110335
## 4088 0.9439160 0.8864504 0.8791400 0.9110335
## 4089 0.8540864 0.8148148 0.8791400 0.9110335
## 4090 0.8540864 0.9080000 0.8791400 0.9110335
## 4091 0.9439160 0.8864504 0.8791400 0.9110335
## 4092 0.9439160 0.9321055 0.8791400 0.9110335
## 4093 0.8540864 0.9010727 0.8791400 0.9110335
## 4094 0.9439160 0.9321055 0.8791400 0.9110335
## 4095 0.9439160 0.8864504 0.8721351 0.9110335
## 4096 0.8540864 0.8148148 0.8791400 0.9110335
## 4097 0.9439160 0.9321055 0.8791400 0.9110335
## 4098 0.9439160 0.9321055 0.8791400 0.9110335
## 4099 0.8540864 0.8148148 0.8791400 0.9110335
## 4100 0.9439160 0.9321055 0.8721351 0.9110335
## 4101 0.8540864 0.9080000 0.8791400 0.9110335
## 4102 0.9439160 0.8864504 0.8874696 0.9110335
## 4103 0.8540864 0.9080000 0.8791400 0.9110335
## 4104 0.8540864 0.8148148 0.8791400 0.9110335
## 4105 0.9439160 0.9321055 0.8791400 0.9110335
## 4106 0.9439160 0.8864504 0.8721351 0.9110335
## 4107 0.8540864 0.9080000 0.8791400 0.9110335
## 4108 0.9439160 0.8864504 0.8791400 0.9110335
## 4109 0.8540864 0.9321055 0.8791400 0.9110335
## 4110 0.9439160 0.8864504 0.8791400 0.9110335
## 4111 0.9439160 0.9321055 0.8721351 0.9110335
## 4112 0.8540864 0.9010727 0.8791400 0.9110335
## 4113 0.9439160 0.9321055 0.8791400 0.9110335
## 4114 0.8540864 0.9321055 0.8791400 0.9110335
## 4115 0.8540864 0.8148148 0.8791400 0.9110335
## 4116 0.8540864 0.8877722 0.8791400 0.9110335
## 4117 0.8540864 0.9080000 0.8791400 0.9110335
## 4118 0.8540864 0.9321055 0.8721351 0.9110335
## 4119 0.9439160 0.9321055 0.8791400 0.9110335
## 4120 0.8540864 0.9080000 0.8791400 0.9110335
## 4121 0.8540864 0.9321055 0.8791400 0.9110335
## 4122 0.9439160 0.9321055 0.8721351 0.9110335
## 4123 0.8540864 0.9321055 0.8791400 0.9110335
## 4124 0.8540864 0.8148148 0.8791400 0.9110335
## 4125 0.9439160 0.9321055 0.8791400 0.9110335
## 4126 0.8540864 0.8148148 0.8791400 0.9110335
## 4127 0.8540864 0.9321055 0.8791400 0.9110335
## 4128 0.8540864 0.9321055 0.8791400 0.9110335
## 4129 0.8540864 0.9321055 0.8791400 0.9110335
## 4130 0.8540864 0.9080000 0.8791400 0.9110335
## 4131 0.8540864 0.9010727 0.8791400 0.9110335
## 4132 0.8540864 0.8864504 0.8791400 0.9110335
## 4133 0.8540864 0.9321055 0.8791400 0.9110335
## 4134 0.8540864 0.9080000 0.8791400 0.9110335
## 4135 0.9439160 0.9321055 0.8791400 0.9110335
## 4136 0.8540864 0.9321055 0.8721351 0.9110335
## 4137 0.9439160 0.8864504 0.8791400 0.9110335
## 4138 0.8540864 0.9080000 0.8791400 0.9110335
## 4139 0.9439160 0.8864504 0.8791400 0.9110335
## 4140 0.9439160 0.8864504 0.8791400 0.9110335
## 4141 0.8540864 0.9321055 0.8791400 0.9110335
## 4142 0.8540864 0.8877722 0.8791400 0.9110335
## 4143 0.8540864 0.8877722 0.8791400 0.9110335
## 4144 0.8540864 0.8877722 0.8791400 0.9110335
## 4145 0.8540864 0.9080000 0.8791400 0.9110335
## 4146 0.8540864 0.8148148 0.8791400 0.9110335
## 4147 0.8540864 0.8877722 0.8791400 0.9110335
## 4148 0.9439160 0.8864504 0.8791400 0.9110335
## 4149 0.8540864 0.9321055 0.8791400 0.9110335
## 4150 0.8540864 0.9321055 0.8791400 0.9110335
## 4151 0.9439160 0.9321055 0.8791400 0.9110335
## 4152 0.9439160 0.9010727 0.8791400 0.9110335
## 4153 0.9439160 0.9321055 0.8791400 0.9110335
## 4154 0.8540864 0.9080000 0.8721351 0.9110335
## 4155 0.8540864 0.9010727 0.8791400 0.9110335
## 4156 0.9439160 0.8864504 0.8791400 0.9110335
## 4157 0.9439160 0.8864504 0.8874696 0.9110335
## 4158 0.8540864 0.9321055 0.8791400 0.9110335
## 4159 0.8540864 0.8148148 0.8791400 0.9110335
## 4160 0.8540864 0.9080000 0.8791400 0.9110335
## 4161 0.8540864 0.9080000 0.8791400 0.9110335
## 4162 0.8540864 0.8148148 0.8791400 0.9110335
## 4163 0.8540864 0.9010727 0.8791400 0.9110335
## 4164 0.8540864 0.8877722 0.8791400 0.9110335
## 4165 0.9439160 0.9321055 0.8791400 0.9110335
## 4166 0.8540864 0.9080000 0.8791400 0.9110335
## 4167 0.9439160 0.9321055 0.8791400 0.9110335
## 4168 0.8540864 0.9321055 0.8721351 0.9110335
## 4169 0.9439160 0.8864504 0.8791400 0.9110335
## 4170 0.8540864 0.9080000 0.8791400 0.9110335
## 4171 0.9439160 0.8877722 0.8791400 0.9110335
## 4172 0.8540864 0.9080000 0.8791400 0.9110335
## 4173 0.8540864 0.9010727 0.8791400 0.9110335
## 4174 0.8540864 0.8877722 0.8791400 0.9110335
## 4175 0.8540864 0.9010727 0.8791400 0.9110335
## 4176 0.8540864 0.9321055 0.8791400 0.9110335
## 4177 0.8540864 0.9080000 0.8791400 0.9110335
## 4178 0.9439160 0.9321055 0.8791400 0.9110335
## 4179 0.9439160 0.9321055 0.8874696 0.9110335
## 4180 0.8540864 0.9321055 0.8721351 0.9110335
## 4181 0.8540864 0.8877722 0.8791400 0.9110335
## 4182 0.8540864 0.8877722 0.8791400 0.9110335
## 4183 0.8540864 0.9321055 0.8874696 0.9110335
## 4184 0.8540864 0.8877722 0.8791400 0.9110335
## 4185 0.9439160 0.8864504 0.8791400 0.9110335
## 4186 0.8540864 0.9321055 0.8791400 0.9110335
## 4187 0.8540864 0.9080000 0.8791400 0.9110335
## 4188 0.9439160 0.9321055 0.8791400 0.9110335
## 4189 0.8540864 0.9080000 0.8791400 0.9110335
## 4190 0.9439160 0.8864504 0.8791400 0.9110335
## 4191 0.9439160 0.9321055 0.8791400 0.9110335
## 4192 0.9439160 0.9321055 0.8791400 0.9110335
## 4193 0.9439160 0.9321055 0.8791400 0.9110335
## 4194 0.8540864 0.9010727 0.8791400 0.9110335
## 4195 0.9439160 0.8148148 0.8791400 0.9110335
## 4196 0.8540864 0.8148148 0.8791400 0.9110335
## 4197 0.9439160 0.8864504 0.8721351 0.9110335
## 4198 0.9439160 0.8864504 0.8791400 0.9110335
## 4199 0.8540864 0.9080000 0.8721351 0.9110335
## 4200 0.8540864 0.8148148 0.8791400 0.9110335
## 4201 0.9439160 0.8877722 0.8791400 0.9110335
## 4202 0.8540864 0.8148148 0.8791400 0.9110335
## 4203 0.8540864 0.8877722 0.8791400 0.9110335
## 4204 0.8540864 0.9080000 0.8791400 0.9110335
## 4205 0.8540864 0.8877722 0.8791400 0.9110335
## 4206 0.9439160 0.8864504 0.8791400 0.9110335
## 4207 0.8540864 0.9080000 0.8791400 0.9110335
## 4208 0.8540864 0.8877722 0.8791400 0.9110335
## 4209 0.8540864 0.8877722 0.8721351 0.9110335
## 4210 0.9439160 0.9321055 0.8791400 0.9110335
## 4211 0.8540864 0.8877722 0.8791400 0.9110335
## 4212 0.9439160 0.8864504 0.8791400 0.9110335
## 4213 0.8540864 0.9010727 0.8791400 0.9110335
## 4214 0.8540864 0.9321055 0.8791400 0.9110335
## 4215 0.8540864 0.8148148 0.8791400 0.9110335
## 4216 0.8540864 0.8148148 0.8791400 0.9110335
## 4217 0.8540864 0.9080000 0.8721351 0.9110335
## 4218 0.9439160 0.8864504 0.8791400 0.9110335
## 4219 0.8540864 0.9321055 0.8791400 0.9110335
## 4220 0.8540864 0.8877722 0.8791400 0.9110335
## 4221 0.8540864 0.9321055 0.8721351 0.9110335
## 4222 0.9439160 0.9321055 0.8791400 0.9110335
## 4223 0.8540864 0.8148148 0.8791400 0.9110335
## 4224 0.8540864 0.9080000 0.8791400 0.9110335
## 4225 0.8540864 0.8877722 0.8791400 0.9110335
## 4226 0.9439160 0.8864504 0.8791400 0.9110335
## 4227 0.8540864 0.9080000 0.8791400 0.9110335
## 4228 0.9439160 0.8864504 0.8791400 0.9110335
## 4229 0.8540864 0.9010727 0.8791400 0.9110335
## 4230 0.8540864 0.8877722 0.8791400 0.9110335
## 4231 0.8540864 0.9010727 0.8721351 0.9110335
## 4232 0.8540864 0.9080000 0.8791400 0.9110335
## 4233 0.8540864 0.8148148 0.8791400 0.9110335
## 4234 0.8540864 0.9010727 0.8791400 0.9110335
## 4235 0.9439160 0.9321055 0.8791400 0.9110335
## 4236 0.9439160 0.8864504 0.8791400 0.9110335
## 4237 0.8540864 0.8148148 0.8791400 0.9110335
## 4238 0.8540864 0.9321055 0.8791400 0.9110335
## 4239 0.9439160 0.9010727 0.8791400 0.9110335
## 4240 0.8540864 0.8877722 0.8721351 0.9110335
## 4241 0.8540864 0.8148148 0.8791400 0.9110335
## 4242 0.9439160 0.8864504 0.8791400 0.9110335
## 4243 0.8540864 0.9010727 0.8791400 0.9110335
## 4244 0.8540864 0.9080000 0.8791400 0.9110335
## 4245 0.9439160 0.8864504 0.8791400 0.9110335
## 4246 0.8540864 0.9010727 0.8721351 0.9110335
## 4247 0.8540864 0.6137931 0.8791400 0.9110335
## 4248 0.8540864 0.9010727 0.8721351 0.9110335
## 4249 0.8540864 0.8148148 0.8791400 0.9110335
## 4250 0.9439160 0.8864504 0.8791400 0.9110335
## 4251 0.8540864 0.9080000 0.8791400 0.9110335
## 4252 0.8540864 0.9321055 0.8791400 0.9110335
## 4253 0.8540864 0.8148148 0.8791400 0.9110335
## 4254 0.8540864 0.8877722 0.8791400 0.9110335
## 4255 0.8540864 0.9010727 0.8721351 0.9110335
## 4256 0.8540864 0.8877722 0.8791400 0.9110335
## 4257 0.8540864 0.8877722 0.8791400 0.9110335
## 4258 0.8540864 0.9321055 0.8721351 0.9110335
## 4259 0.9439160 0.8148148 0.8791400 0.9110335
## 4260 0.9439160 0.9321055 0.8791400 0.9110335
## 4261 0.9439160 0.6137931 0.8791400 0.9110335
## 4262 0.9439160 0.9321055 0.8791400 0.9110335
## 4263 0.9439160 0.9321055 0.8721351 0.9110335
## 4264 0.8540864 0.8877722 0.8721351 0.9110335
## 4265 0.8540864 0.8877722 0.8791400 0.9110335
## 4266 0.8540864 0.9080000 0.8791400 0.9110335
## 4267 0.9439160 0.8864504 0.8791400 0.9110335
## 4268 0.8540864 0.4949495 0.8791400 0.9110335
## 4269 0.8540864 0.8877722 0.8791400 0.9110335
## 4270 0.8540864 0.8877722 0.8791400 0.9110335
## 4271 0.8540864 0.9321055 0.8791400 0.9110335
## 4272 0.8540864 0.8877722 0.8791400 0.9110335
## 4273 0.8540864 0.9080000 0.8874696 0.9110335
## 4274 0.8540864 0.8148148 0.8791400 0.9110335
## 4275 0.8540864 0.9080000 0.8791400 0.9110335
## 4276 0.8540864 0.9010727 0.8791400 0.9110335
## 4277 0.9439160 0.8864504 0.8791400 0.9110335
## 4278 0.8540864 0.9321055 0.8791400 0.9110335
## 4279 0.8540864 0.8148148 0.8791400 0.9110335
## 4280 0.8540864 0.8864504 0.8791400 0.9110335
## 4281 0.8540864 0.8148148 0.8791400 0.9110335
## 4282 0.8540864 0.8864504 0.8874696 0.9110335
## 4283 0.8540864 0.8148148 0.8791400 0.9110335
## 4284 0.9439160 0.8148148 0.8791400 0.9110335
## 4285 0.9439160 0.8864504 0.8791400 0.9110335
## 4286 0.8540864 0.9010727 0.8791400 0.9110335
## 4287 0.8540864 0.9080000 0.8791400 0.9110335
## 4288 0.8540864 0.8877722 0.8791400 0.9110335
## 4289 0.8540864 0.8148148 0.8791400 0.9110335
## 4290 0.8540864 0.9010727 0.8791400 0.9110335
## 4291 0.9439160 0.9321055 0.8791400 0.9110335
## 4292 0.8540864 0.3750000 0.8791400 0.9110335
## 4293 0.9439160 0.9321055 0.8791400 0.9110335
## 4294 0.9439160 0.8864504 0.8791400 0.9110335
## 4295 0.8540864 0.9321055 0.8791400 0.9110335
## 4296 0.8540864 0.9010727 0.8791400 0.9110335
## 4297 0.8540864 0.9010727 0.8791400 0.9110335
## 4298 0.9439160 0.8864504 0.8791400 0.9110335
## 4299 0.9439160 0.8864504 0.8791400 0.9110335
## 4300 0.8540864 0.8877722 0.8791400 0.9110335
## 4301 0.8540864 0.9080000 0.8721351 0.9110335
## 4302 0.8540864 0.8877722 0.8791400 0.9110335
## 4303 0.8540864 0.8148148 0.8791400 0.9110335
## 4304 0.8540864 0.8148148 0.8791400 0.9110335
## 4305 0.8540864 0.9080000 0.8721351 0.9110335
## 4306 0.9439160 0.8148148 0.8791400 0.9110335
## 4307 0.9439160 0.9321055 0.8721351 0.9110335
## 4308 0.9439160 0.8864504 0.8791400 0.9110335
## 4309 0.9439160 0.9321055 0.8791400 0.9110335
## 4310 0.9439160 0.8864504 0.8791400 0.9110335
## 4311 0.8540864 0.9010727 0.8791400 0.9110335
## 4312 0.8540864 0.8877722 0.8791400 0.9110335
## 4313 0.8540864 0.8877722 0.8721351 0.9110335
## 4314 0.9439160 0.9321055 0.8721351 0.9110335
## 4315 0.9439160 0.9321055 0.8791400 0.9110335
## 4316 0.8540864 0.8148148 0.8791400 0.9110335
## 4317 0.8540864 0.8877722 0.8721351 0.9110335
## 4318 0.8540864 0.9010727 0.8791400 0.9110335
## 4319 0.8540864 0.8148148 0.8791400 0.9110335
## 4320 0.8540864 0.9321055 0.8791400 0.9110335
## 4321 0.8540864 0.9080000 0.8791400 0.9110335
## 4322 0.8540864 0.8148148 0.8791400 0.9110335
## 4323 0.9439160 0.8864504 0.8791400 0.9110335
## 4324 0.8540864 0.9080000 0.8791400 0.9110335
## 4325 0.8540864 0.9080000 0.8791400 0.9110335
## 4326 0.9439160 0.8864504 0.8791400 0.9110335
## 4327 0.9439160 0.8864504 0.8791400 0.9110335
## 4328 0.8540864 0.8877722 0.8791400 0.9110335
## 4329 0.8540864 0.9010727 0.8791400 0.9110335
## 4330 0.9439160 0.8148148 0.8791400 0.9110335
## 4331 0.8540864 0.9080000 0.8791400 0.9110335
## 4332 0.9439160 0.9321055 0.8791400 0.9110335
## 4333 0.8540864 0.8148148 0.8791400 0.9110335
## 4334 0.8540864 0.9080000 0.8791400 0.9110335
## 4335 0.9439160 0.9321055 0.8721351 0.9110335
## 4336 0.8540864 0.8148148 0.8791400 0.9110335
## 4337 0.8540864 0.9010727 0.8791400 0.9110335
## 4338 0.8540864 0.8877722 0.8791400 0.9110335
## 4339 0.8540864 0.8877722 0.8791400 0.9110335
## 4340 0.8540864 0.8148148 0.8791400 0.9110335
## 4341 0.9439160 0.9321055 0.8791400 0.9110335
## 4342 0.8540864 0.8148148 0.8721351 0.9110335
## 4343 0.9439160 0.9321055 0.8791400 0.9110335
## 4344 0.8540864 0.8148148 0.8791400 0.9110335
## 4345 0.8540864 0.9321055 0.8791400 0.9110335
## 4346 0.9439160 0.8864504 0.8791400 0.9110335
## 4347 0.9439160 0.9321055 0.8721351 0.9110335
## 4348 0.8540864 0.8148148 0.8721351 0.9110335
## 4349 0.9439160 0.9321055 0.8791400 0.9110335
## 4350 0.9439160 0.9321055 0.8791400 0.9110335
## 4351 0.8540864 0.8877722 0.8791400 0.9110335
## 4352 0.8540864 0.9080000 0.8874696 0.9110335
## 4353 0.9439160 0.9321055 0.8791400 0.9110335
## 4354 0.8540864 0.8148148 0.8791400 0.9110335
## 4355 0.8540864 0.8864504 0.8721351 0.9110335
## 4356 0.8540864 0.8148148 0.8791400 0.9110335
## 4357 0.8540864 0.8877722 0.8791400 0.9110335
## 4358 0.9439160 0.9080000 0.8791400 0.9110335
## 4359 0.9439160 0.9321055 0.8791400 0.9110335
## 4360 0.9439160 0.9321055 0.8791400 0.9110335
## 4361 0.9439160 0.8148148 0.8791400 0.9110335
## 4362 0.9439160 0.9321055 0.8791400 0.9110335
## 4363 0.9439160 0.9321055 0.8791400 0.9110335
## 4364 0.8540864 0.8877722 0.8791400 0.9110335
## 4365 0.9439160 0.9321055 0.8791400 0.9110335
## 4366 0.9439160 0.9010727 0.8791400 0.9110335
## 4367 0.9439160 0.9321055 0.8791400 0.9110335
## 4368 0.9439160 0.9010727 0.8791400 0.9110335
## 4369 0.9439160 0.9321055 0.8791400 0.9110335
## 4370 0.8540864 0.9010727 0.8791400 0.9110335
## 4371 0.9439160 0.8864504 0.8874696 0.9110335
## 4372 0.8540864 0.9321055 0.8791400 0.9110335
## 4373 0.9439160 0.9321055 0.8791400 0.9110335
## 4374 0.9439160 0.9080000 0.8721351 0.9110335
## 4375 0.8540864 0.9010727 0.8791400 0.9110335
## 4376 0.8540864 0.8877722 0.8791400 0.9110335
## 4377 0.9439160 0.9321055 0.8791400 0.9110335
## 4378 0.8540864 0.8148148 0.8791400 0.9110335
## 4379 0.9439160 0.9321055 0.8791400 0.9110335
## 4380 0.8540864 0.9321055 0.8791400 0.9110335
## 4381 0.8540864 0.9080000 0.8791400 0.9110335
## 4382 0.8540864 0.9080000 0.8791400 0.9110335
## 4383 0.8540864 0.8148148 0.8791400 0.9110335
## 4384 0.8540864 0.9080000 0.8791400 0.9110335
## 4385 0.8540864 0.8877722 0.8791400 0.9110335
## 4386 0.8540864 0.8148148 0.8791400 0.9110335
## 4387 0.8540864 0.8148148 0.8791400 0.9110335
## 4388 0.9439160 0.9321055 0.8791400 0.9110335
## 4389 0.8540864 0.8148148 0.8791400 0.9110335
## 4390 0.8540864 0.6137931 0.8791400 0.9110335
## 4391 0.8540864 0.9321055 0.8791400 0.9110335
## 4392 0.8540864 0.9010727 0.8791400 0.9110335
## 4393 0.8540864 0.8877722 0.8721351 0.9110335
## 4394 0.8540864 0.9010727 0.8791400 0.9110335
## 4395 0.8540864 0.8877722 0.8791400 0.9110335
## 4396 0.8540864 0.8148148 0.8791400 0.9110335
## 4397 0.8540864 0.9321055 0.8791400 0.9110335
## 4398 0.8540864 0.8877722 0.8791400 0.9110335
## 4399 0.9439160 0.9321055 0.8791400 0.9110335
## 4400 0.9439160 0.9321055 0.8791400 0.9110335
## 4401 0.8540864 0.8877722 0.8791400 0.9110335
## 4402 0.9439160 0.8864504 0.8791400 0.9110335
## 4403 0.8540864 0.8877722 0.8791400 0.9110335
## 4404 0.9439160 0.9321055 0.8791400 0.9110335
## 4405 0.8540864 0.9080000 0.8721351 0.9110335
## 4406 0.8540864 0.9080000 0.8721351 0.9110335
## 4407 0.9439160 0.9321055 0.8791400 0.9110335
## 4408 0.8540864 0.9080000 0.8791400 0.9110335
## 4409 0.9439160 0.9010727 0.8791400 0.9110335
## 4410 0.9439160 0.9321055 0.8721351 0.9110335
## 4411 0.8540864 0.9080000 0.8791400 0.9110335
## 4412 0.8540864 0.9010727 0.8791400 0.9110335
## 4413 0.8540864 0.9321055 0.8791400 0.9110335
## 4414 0.8540864 0.8148148 0.8791400 0.9110335
## 4415 0.8540864 0.8148148 0.8791400 0.9110335
## 4416 0.9439160 0.8864504 0.8791400 0.9110335
## 4417 0.8540864 0.9080000 0.8874696 0.9110335
## 4418 0.9439160 0.8864504 0.8791400 0.9110335
## 4419 0.9439160 0.9321055 0.8791400 0.9110335
## 4420 0.8540864 0.8864504 0.8791400 0.9110335
## 4421 0.8540864 0.9321055 0.8791400 0.9110335
## 4422 0.9439160 0.8864504 0.8791400 0.9110335
## 4423 0.9439160 0.8864504 0.8791400 0.9110335
## 4424 0.8540864 0.9321055 0.8791400 0.9110335
## 4425 0.8540864 0.9321055 0.8791400 0.9110335
## 4426 0.9439160 0.9321055 0.8791400 0.9110335
## 4427 0.8540864 0.9080000 0.8791400 0.9110335
## 4428 0.8540864 0.9080000 0.8791400 0.9110335
## 4429 0.9439160 0.8864504 0.8791400 0.9110335
## 4430 0.8540864 0.8148148 0.8791400 0.9110335
## 4431 0.9439160 0.8864504 0.8791400 0.9110335
## 4432 0.8540864 0.9010727 0.8791400 0.9110335
## 4433 0.8540864 0.9010727 0.8721351 0.9110335
## 4434 0.9439160 0.9321055 0.8791400 0.9110335
## 4435 0.8540864 0.9321055 0.8791400 0.9110335
## 4436 0.8540864 0.8877722 0.8791400 0.9110335
## 4437 0.8540864 0.6137931 0.8791400 0.9110335
## 4438 0.8540864 0.8877722 0.8721351 0.9110335
## 4439 0.9439160 0.9321055 0.8791400 0.9110335
## 4440 0.8540864 0.9080000 0.8791400 0.9110335
## 4441 0.8540864 0.8877722 0.8791400 0.9110335
## 4442 0.8540864 0.6137931 0.8791400 0.9110335
## 4443 0.9439160 0.9321055 0.8791400 0.9110335
## 4444 0.8540864 0.9321055 0.8791400 0.9110335
## 4445 0.8540864 0.8148148 0.8791400 0.9110335
## 4446 0.8540864 0.8877722 0.8791400 0.9110335
## 4447 0.8540864 0.9080000 0.8791400 0.9110335
## 4448 0.9439160 0.8864504 0.8791400 0.9110335
## 4449 0.9439160 0.9321055 0.8791400 0.9110335
## 4450 0.9439160 0.9321055 0.8791400 0.9110335
## 4451 0.8540864 0.8877722 0.8791400 0.9110335
## 4452 0.9439160 0.9010727 0.8721351 0.9110335
## 4453 0.9439160 0.8864504 0.8791400 0.9110335
## 4454 0.8540864 0.8148148 0.8791400 0.9110335
## 4455 0.8540864 0.9080000 0.8874696 0.9110335
## 4456 0.8540864 0.4949495 0.8874696 0.9110335
## 4457 0.8540864 0.9080000 0.8791400 0.9110335
## 4458 0.9439160 0.8864504 0.8791400 0.9110335
## 4459 0.9439160 0.9321055 0.8791400 0.9110335
## 4460 0.8540864 0.9321055 0.8791400 0.9110335
## 4461 0.8540864 0.9321055 0.8791400 0.9110335
## 4462 0.8540864 0.9080000 0.8721351 0.9110335
## 4463 0.8540864 0.8148148 0.8791400 0.9110335
## 4464 0.9439160 0.9080000 0.8791400 0.9110335
## 4465 0.9439160 0.9321055 0.8791400 0.9110335
## 4466 0.8540864 0.9080000 0.8721351 0.9110335
## 4467 0.9439160 0.9321055 0.8721351 0.9110335
## 4468 0.8540864 0.9321055 0.8791400 0.9110335
## 4469 0.8540864 0.9080000 0.8791400 0.9110335
## 4470 0.9439160 0.9321055 0.8791400 0.9110335
## 4471 0.8540864 0.9080000 0.8721351 0.9110335
## 4472 0.8540864 0.9080000 0.8791400 0.9110335
## 4473 0.8540864 0.8148148 0.8791400 0.9110335
## 4474 0.8540864 0.9010727 0.8791400 0.9110335
## 4475 0.8540864 0.9321055 0.8791400 0.9110335
## 4476 0.9439160 0.9321055 0.8791400 0.9110335
## 4477 0.8540864 0.9080000 0.8791400 0.9110335
## 4478 0.9439160 0.8864504 0.8791400 0.9110335
## 4479 0.8540864 0.9080000 0.8791400 0.9110335
## 4480 0.8540864 0.9010727 0.8791400 0.9110335
## 4481 0.9439160 0.9321055 0.8791400 0.9110335
## 4482 0.8540864 0.9080000 0.8791400 0.9110335
## 4483 0.8540864 0.9321055 0.8791400 0.9110335
## 4484 0.9439160 0.8864504 0.8791400 0.9110335
## 4485 0.8540864 0.9080000 0.8791400 0.9110335
## 4486 0.8540864 0.8148148 0.8791400 0.9110335
## 4487 0.8540864 0.9080000 0.8791400 0.9110335
## 4488 0.8540864 0.8864504 0.8791400 0.9110335
## 4489 0.9439160 0.9321055 0.8791400 0.9110335
## 4490 0.9439160 0.8877722 0.8791400 0.9110335
## 4491 0.9439160 0.9321055 0.8791400 0.9110335
## 4492 0.9439160 0.9321055 0.8874696 0.9110335
## 4493 0.9439160 0.9321055 0.8721351 0.9110335
## 4494 0.8540864 0.8877722 0.8791400 0.9110335
## 4495 0.9439160 0.8864504 0.8791400 0.9110335
## 4496 0.8540864 0.9010727 0.8791400 0.9110335
## 4497 0.9439160 0.9321055 0.8791400 0.9110335
## 4498 0.8540864 0.8877722 0.8791400 0.9110335
## 4499 0.9439160 0.8864504 0.8791400 0.9110335
## 4500 0.8540864 0.9080000 0.8791400 0.9110335
## 4501 0.8540864 0.8148148 0.8791400 0.9110335
## 4502 0.8540864 0.9321055 0.8791400 0.9110335
## 4503 0.9439160 0.9321055 0.8791400 0.9110335
## 4504 0.8540864 0.6137931 0.8791400 0.9110335
## 4505 0.8540864 0.8148148 0.8791400 0.9110335
## 4506 0.8540864 0.9080000 0.8721351 0.9110335
## 4507 0.8540864 0.8148148 0.8791400 0.9110335
## 4508 0.8540864 0.9080000 0.8721351 0.9110335
## 4509 0.8540864 0.9080000 0.8874696 0.9110335
## 4510 0.9439160 0.9321055 0.8791400 0.9110335
## 4511 0.9439160 0.8864504 0.8791400 0.9110335
## 4512 0.8540864 0.9010727 0.8791400 0.9110335
## 4513 0.8540864 0.8148148 0.8791400 0.9110335
## 4514 0.9439160 0.8877722 0.8791400 0.9110335
## 4515 0.9439160 0.8864504 0.8791400 0.9110335
## 4516 0.8540864 0.9080000 0.8791400 0.9110335
## 4517 0.8540864 0.9321055 0.8791400 0.9110335
## 4518 0.9439160 0.9321055 0.8874696 0.9110335
## 4519 0.8540864 0.8148148 0.8791400 0.9110335
## 4520 0.9439160 0.8864504 0.8721351 0.9110335
## 4521 0.9439160 0.9321055 0.8791400 0.9110335
## 4522 0.8540864 0.8877722 0.8791400 0.9110335
## 4523 0.8540864 0.9080000 0.8791400 0.9110335
## 4524 0.8540864 0.9321055 0.8791400 0.9110335
## 4525 0.9439160 0.8864504 0.8791400 0.9110335
## 4526 0.8540864 0.8877722 0.8791400 0.9110335
## 4527 0.8540864 0.9010727 0.8721351 0.9110335
## 4528 0.8540864 0.9010727 0.8791400 0.9110335
## 4529 0.8540864 0.8148148 0.8791400 0.9110335
## 4530 0.8540864 0.9321055 0.8874696 0.9110335
## 4531 0.9439160 0.9321055 0.8791400 0.9110335
## 4532 0.8540864 0.8148148 0.8791400 0.9110335
## 4533 0.9439160 0.9321055 0.8791400 0.9110335
## 4534 0.8540864 0.8864504 0.8791400 0.9110335
## 4535 0.9439160 0.8864504 0.8874696 0.9110335
## 4536 0.8540864 0.9080000 0.8791400 0.9110335
## 4537 0.9439160 0.9321055 0.8791400 0.9110335
## 4538 0.9439160 0.9321055 0.8721351 0.9110335
## 4539 0.9439160 0.8864504 0.8791400 0.9110335
## 4540 0.8540864 0.8877722 0.8791400 0.9110335
## 4541 0.8540864 0.8148148 0.8791400 0.9110335
## 4542 0.8540864 0.9080000 0.8791400 0.9110335
## 4543 0.8540864 0.9321055 0.8721351 0.9110335
## 4544 0.8540864 0.9010727 0.8721351 0.9110335
## 4545 0.8540864 0.9010727 0.8791400 0.9110335
## 4546 0.8540864 0.9321055 0.8721351 0.9110335
## 4547 0.9439160 0.9321055 0.8791400 0.9110335
## 4548 0.8540864 0.8877722 0.8791400 0.9110335
## 4549 0.9439160 0.9321055 0.8791400 0.9110335
## 4550 0.8540864 0.8877722 0.8791400 0.9110335
## 4551 0.8540864 0.9321055 0.8721351 0.9110335
## 4552 0.8540864 0.8877722 0.8791400 0.9110335
## 4553 0.8540864 0.9010727 0.8791400 0.9110335
## 4554 0.8540864 0.9080000 0.8791400 0.9110335
## 4555 0.9439160 0.9321055 0.8791400 0.9110335
## 4556 0.8540864 0.8877722 0.8791400 0.9110335
## 4557 0.8540864 0.8877722 0.8791400 0.9110335
## 4558 0.9439160 0.9321055 0.8791400 0.9110335
## 4559 0.8540864 0.9080000 0.8791400 0.9110335
## 4560 0.9439160 0.8864504 0.8791400 0.9110335
## 4561 0.8540864 0.9321055 0.8791400 0.9110335
## 4562 0.9439160 0.9321055 0.8791400 0.9110335
## 4563 0.8540864 0.8877722 0.8791400 0.9110335
## 4564 0.8540864 0.9010727 0.8791400 0.9110335
## 4565 0.8540864 0.8877722 0.8791400 0.9110335
## 4566 0.8540864 0.5408163 0.8791400 0.9110335
## 4567 0.9439160 0.9080000 0.8791400 0.9110335
## 4568 0.8540864 0.8877722 0.8791400 0.9110335
## 4569 0.9439160 0.9321055 0.8791400 0.9110335
## 4570 0.8540864 0.9010727 0.8791400 0.9110335
## 4571 0.8540864 0.9080000 0.8791400 0.9110335
## 4572 0.8540864 0.9010727 0.8791400 0.9110335
## 4573 0.9439160 0.9321055 0.8791400 0.9110335
## 4574 0.9439160 0.8864504 0.8791400 0.9110335
## 4575 0.8540864 0.8877722 0.8791400 0.9110335
## 4576 0.8540864 0.9010727 0.8791400 0.9110335
## 4577 0.8540864 0.9321055 0.8791400 0.9110335
## 4578 0.9439160 0.8864504 0.8791400 0.9110335
## 4579 0.9439160 0.9321055 0.8791400 0.9110335
## 4580 0.8540864 0.8877722 0.8791400 0.9110335
## 4581 0.8540864 0.8877722 0.8791400 0.9110335
## 4582 0.8540864 0.8877722 0.8791400 0.9110335
## 4583 0.8540864 0.9010727 0.8791400 0.9110335
## 4584 0.8540864 0.9321055 0.8791400 0.9110335
## 4585 0.8540864 0.9080000 0.8791400 0.9110335
## 4586 0.9439160 0.9321055 0.8791400 0.9110335
## 4587 0.8540864 0.9080000 0.8791400 0.9110335
## 4588 0.8540864 0.9321055 0.8791400 0.9110335
## 4589 0.9439160 0.8864504 0.8791400 0.9110335
## 4590 0.8540864 0.9080000 0.8721351 0.9110335
## 4591 0.8540864 0.9080000 0.8791400 0.9110335
## 4592 0.8540864 0.9010727 0.8791400 0.9110335
## 4593 0.9439160 0.9321055 0.8791400 0.9110335
## 4594 0.8540864 0.9010727 0.8791400 0.9110335
## 4595 0.8540864 0.5408163 0.8791400 0.9110335
## 4596 0.9439160 0.9321055 0.8791400 0.9110335
## 4597 0.8540864 0.8877722 0.8791400 0.9110335
## 4598 0.9439160 0.9321055 0.8791400 0.9110335
## 4599 0.9439160 0.8864504 0.8791400 0.9110335
## 4600 0.8540864 0.5408163 0.8791400 0.9110335
## 4601 0.9439160 0.8864504 0.8791400 0.9110335
## 4602 0.8540864 0.8877722 0.8791400 0.9110335
## 4603 0.8540864 0.8877722 0.8791400 0.9110335
## 4604 0.9439160 0.9321055 0.8791400 0.9110335
## 4605 0.8540864 0.8877722 0.8791400 0.9110335
## 4606 0.8540864 0.9080000 0.8791400 0.9110335
## 4607 0.8540864 0.9321055 0.8791400 0.9110335
## 4608 0.8540864 0.8864504 0.8721351 0.9110335
## 4609 0.9439160 0.8864504 0.8791400 0.9110335
## 4610 0.8540864 0.9321055 0.8791400 0.9110335
## 4611 0.9439160 0.8864504 0.8791400 0.9110335
## 4612 0.8540864 0.8877722 0.8791400 0.9110335
## 4613 0.8540864 0.8877722 0.8791400 0.9110335
## 4614 0.9439160 0.9321055 0.8791400 0.9110335
## 4615 0.9439160 0.8864504 0.8791400 0.9110335
## 4616 0.8540864 0.9080000 0.8874696 0.9110335
## 4617 0.8540864 0.9080000 0.8791400 0.9110335
## 4618 0.9439160 0.9321055 0.8791400 0.9110335
## 4619 0.9439160 0.9321055 0.8791400 0.9110335
## 4620 0.8540864 0.8877722 0.8791400 0.9110335
## 4621 0.9439160 0.9321055 0.8791400 0.9110335
## 4622 0.8540864 0.8877722 0.8791400 0.9110335
## 4623 0.8540864 0.8877722 0.8791400 0.9110335
## 4624 0.8540864 0.9010727 0.8791400 0.9110335
## 4625 0.8540864 0.8877722 0.8791400 0.9110335
## 4626 0.8540864 0.8877722 0.8791400 0.9110335
## 4627 0.8540864 0.8877722 0.8791400 0.9110335
## 4628 0.9439160 0.9321055 0.8791400 0.9110335
## 4629 0.8540864 0.9080000 0.8791400 0.9110335
## 4630 0.8540864 0.8877722 0.8791400 0.9110335
## 4631 0.8540864 0.9321055 0.8791400 0.9110335
## 4632 0.9439160 0.9321055 0.8791400 0.9110335
## 4633 0.9439160 0.9321055 0.8791400 0.9110335
## 4634 0.8540864 0.9080000 0.8791400 0.9110335
## 4635 0.9439160 0.9080000 0.8791400 0.9110335
## 4636 0.8540864 0.9010727 0.8791400 0.9110335
## 4637 0.9439160 0.9321055 0.8791400 0.9110335
## 4638 0.8540864 0.9321055 0.8791400 0.9110335
## 4639 0.9439160 0.8864504 0.8791400 0.9110335
## 4640 0.8540864 0.9080000 0.8791400 0.9110335
## 4641 0.8540864 0.9080000 0.8791400 0.9110335
## 4642 0.8540864 0.9010727 0.8791400 0.9110335
## 4643 0.8540864 0.8877722 0.8791400 0.9110335
## 4644 0.8540864 0.9010727 0.8791400 0.9110335
## 4645 0.9439160 0.8877722 0.8791400 0.9110335
## 4646 0.8540864 0.8877722 0.8791400 0.9110335
## 4647 0.8540864 0.9080000 0.8791400 0.9110335
## 4648 0.9439160 0.9321055 0.8791400 0.9110335
## 4649 0.8540864 0.9010727 0.8791400 0.9110335
## 4650 0.8540864 0.9010727 0.8791400 0.9110335
## 4651 0.9439160 0.9010727 0.8791400 0.9110335
## 4652 0.9439160 0.9321055 0.8791400 0.9110335
## 4653 0.8540864 0.8877722 0.8791400 0.9110335
## 4654 0.8540864 0.9321055 0.8721351 0.9110335
## 4655 0.8540864 0.8877722 0.8791400 0.9110335
## 4656 0.9439160 0.9321055 0.8721351 0.9110335
## 4657 0.9439160 0.8864504 0.8791400 0.9110335
## 4658 0.8540864 0.8877722 0.8791400 0.9110335
## 4659 0.9439160 0.9010727 0.8791400 0.9110335
## 4660 0.8540864 0.8877722 0.8791400 0.9110335
## 4661 0.8540864 0.9321055 0.8791400 0.9110335
## 4662 0.8540864 0.8877722 0.8791400 0.9110335
## 4663 0.8540864 0.9321055 0.8791400 0.9110335
## 4664 0.9439160 0.8864504 0.8721351 0.9110335
## 4665 0.8540864 0.9080000 0.8791400 0.9110335
## 4666 0.8540864 0.8877722 0.8791400 0.9110335
## 4667 0.8540864 0.9080000 0.8791400 0.9110335
## 4668 0.9439160 0.8864504 0.8791400 0.9110335
## 4669 0.8540864 0.8877722 0.8791400 0.9110335
## 4670 0.8540864 0.8877722 0.8721351 0.9110335
## 4671 0.8540864 0.8877722 0.8791400 0.9110335
## 4672 0.8540864 0.8877722 0.8791400 0.9110335
## 4673 0.8540864 0.8877722 0.8874696 0.9110335
## 4674 0.9439160 0.9321055 0.8791400 0.9110335
## 4675 0.9439160 0.8864504 0.8791400 0.9110335
## 4676 0.9439160 0.9321055 0.8791400 0.9110335
## 4677 0.8540864 0.9010727 0.8791400 0.9110335
## 4678 0.8540864 0.8877722 0.8721351 0.9110335
## 4679 0.8540864 0.8877722 0.8721351 0.9110335
## 4680 0.8540864 0.9080000 0.8791400 0.9110335
## 4681 0.9439160 0.9321055 0.8791400 0.9110335
## 4682 0.9439160 0.9080000 0.8721351 0.9110335
## 4683 0.8540864 0.8148148 0.8874696 0.9110335
## 4684 0.8540864 0.4949495 0.8791400 0.9110335
## 4685 0.8540864 0.8877722 0.8791400 0.9110335
## 4686 0.8540864 0.8877722 0.8721351 0.9110335
## 4687 0.8540864 0.8148148 0.8721351 0.9110335
## 4688 0.8540864 0.9321055 0.8721351 0.9110335
## 4689 0.9439160 0.9321055 0.8721351 0.9110335
## 4690 0.8540864 0.8877722 0.8791400 0.9110335
## 4691 0.9439160 0.8864504 0.8791400 0.9110335
## 4692 0.9439160 0.9321055 0.8791400 0.9110335
## 4693 0.8540864 0.9080000 0.8791400 0.9110335
## 4694 0.8540864 0.8877722 0.8874696 0.9110335
## 4695 0.9439160 0.9321055 0.8721351 0.9110335
## 4696 0.8540864 0.9080000 0.8791400 0.9110335
## 4697 0.8540864 0.9010727 0.8791400 0.9110335
## 4698 0.9439160 0.9321055 0.8791400 0.9110335
## 4699 0.8540864 0.9080000 0.8791400 0.9110335
## 4700 0.9439160 0.8864504 0.8791400 0.9110335
## 4701 0.8540864 0.8877722 0.8791400 0.9110335
## 4702 0.9439160 0.8864504 0.8791400 0.9110335
## 4703 0.9439160 0.8864504 0.8721351 0.9110335
## 4704 0.8540864 0.9080000 0.8791400 0.9110335
## 4705 0.8540864 0.8877722 0.8791400 0.9110335
## 4706 0.8540864 0.8877722 0.8721351 0.9110335
## 4707 0.8540864 0.9080000 0.8791400 0.9110335
## 4708 0.8540864 0.9080000 0.8791400 0.9110335
## 4709 0.8540864 0.8148148 0.8721351 0.9110335
## 4710 0.8540864 0.9080000 0.8721351 0.9110335
## 4711 0.9439160 0.8864504 0.8791400 0.9110335
## 4712 0.8540864 0.8877722 0.8721351 0.9110335
## 4713 0.8540864 0.9321055 0.8791400 0.9110335
## 4714 0.9439160 0.9080000 0.8791400 0.9110335
## 4715 0.8540864 0.9080000 0.8791400 0.9110335
## 4716 0.8540864 0.9010727 0.8721351 0.9110335
## 4717 0.8540864 0.9080000 0.8791400 0.9110335
## 4718 0.8540864 0.9080000 0.8721351 0.9110335
## 4719 0.9439160 0.9321055 0.8721351 0.9110335
## 4720 0.8540864 0.8877722 0.8721351 0.9110335
## 4721 0.9439160 0.9080000 0.8791400 0.9110335
## 4722 0.8540864 0.9080000 0.8721351 0.9110335
## 4723 0.8540864 0.8877722 0.8721351 0.9110335
## 4724 0.8540864 0.9080000 0.8791400 0.9110335
## 4725 0.8540864 0.8877722 0.8721351 0.9110335
## 4726 0.8540864 0.9080000 0.8791400 0.9110335
## 4727 0.8540864 0.9080000 0.8791400 0.9110335
## 4728 0.8540864 0.8877722 0.8721351 0.9110335
## 4729 0.8540864 0.9080000 0.8791400 0.9110335
## 4730 0.8540864 0.9080000 0.8791400 0.9110335
## 4731 0.8540864 0.4949495 0.8721351 0.9110335
## 4732 0.8540864 0.9080000 0.8791400 0.9110335
## 4733 0.8540864 0.9321055 0.8721351 0.9110335
## 4734 0.8540864 0.8877722 0.8791400 0.9110335
## 4735 0.9439160 0.8864504 0.8721351 0.9110335
## 4736 0.8540864 0.9080000 0.8791400 0.9110335
## 4737 0.8540864 0.9080000 0.8874696 0.9110335
## 4738 0.9439160 0.9321055 0.8791400 0.9110335
## 4739 0.8540864 0.9080000 0.8791400 0.9110335
## 4740 0.8540864 0.8877722 0.8791400 0.9110335
## 4741 0.8540864 0.8877722 0.8791400 0.9110335
## 4742 0.8540864 0.9321055 0.8791400 0.9110335
## 4743 0.8540864 0.9080000 0.8791400 0.9110335
## 4744 0.9439160 0.8864504 0.8791400 0.9110335
## 4745 0.8540864 0.8877722 0.8721351 0.9110335
## 4746 0.8540864 0.9010727 0.8721351 0.9110335
## 4747 0.8540864 0.9080000 0.8791400 0.9110335
## 4748 0.8540864 0.9080000 0.8791400 0.9110335
## 4749 0.8540864 0.9080000 0.8721351 0.9110335
## 4750 0.9439160 0.9321055 0.8721351 0.9110335
## 4751 0.9439160 0.4949495 0.8791400 0.9110335
## 4752 0.8540864 0.8877722 0.8721351 0.9110335
## 4753 0.8540864 0.8877722 0.8791400 0.9110335
## 4754 0.8540864 0.4949495 0.8791400 0.9110335
## 4755 0.8540864 0.8877722 0.8791400 0.9110335
## 4756 0.8540864 0.8877722 0.8791400 0.9110335
## 4757 0.9439160 0.9321055 0.8791400 0.9110335
## 4758 0.9439160 0.9321055 0.8791400 0.9110335
## 4759 0.8540864 0.9080000 0.8791400 0.9110335
## 4760 0.9439160 0.9080000 0.8791400 0.9110335
## 4761 0.8540864 0.8877722 0.8791400 0.9110335
## 4762 0.9439160 0.8864504 0.8721351 0.9110335
## 4763 0.8540864 0.8877722 0.8791400 0.9110335
## 4764 0.8540864 0.8877722 0.8791400 0.9110335
## 4765 0.8540864 0.9080000 0.8791400 0.9110335
## 4766 0.8540864 0.9080000 0.8721351 0.9110335
## 4767 0.9439160 0.8864504 0.8791400 0.9110335
## 4768 0.8540864 0.9010727 0.8791400 0.9110335
## 4769 0.8540864 0.9080000 0.8721351 0.9110335
## 4770 0.8540864 0.8877722 0.8791400 0.9110335
## 4771 0.9439160 0.8864504 0.8721351 0.9110335
## 4772 0.9439160 0.9080000 0.8791400 0.9110335
## 4773 0.9439160 0.9321055 0.8721351 0.9110335
## 4774 0.8540864 0.9010727 0.8791400 0.9110335
## 4775 0.9439160 0.8864504 0.8874696 0.9110335
## 4776 0.8540864 0.9080000 0.8791400 0.9110335
## 4777 0.8540864 0.8877722 0.8721351 0.9110335
## 4778 0.8540864 0.9321055 0.8791400 0.9110335
## 4779 0.8540864 0.9080000 0.8791400 0.9110335
## 4780 0.8540864 0.8877722 0.8791400 0.9110335
## 4781 0.8540864 0.8877722 0.8791400 0.9110335
## 4782 0.9439160 0.9321055 0.8721351 0.9110335
## 4783 0.9439160 0.9321055 0.8791400 0.9110335
## 4784 0.8540864 0.8877722 0.8791400 0.9110335
## 4785 0.9439160 0.8864504 0.8721351 0.9110335
## 4786 0.8540864 0.8877722 0.8791400 0.9110335
## 4787 0.8540864 0.9321055 0.8791400 0.9110335
## 4788 0.8540864 0.9321055 0.8721351 0.9110335
## 4789 0.9439160 0.9080000 0.8721351 0.9110335
## 4790 0.8540864 0.9321055 0.8791400 0.9110335
## 4791 0.9439160 0.8864504 0.8791400 0.9110335
## 4792 0.8540864 0.9080000 0.8791400 0.9110335
## 4793 0.8540864 0.9080000 0.8721351 0.9110335
## 4794 0.9439160 0.9080000 0.8791400 0.9110335
## 4795 0.8540864 0.8877722 0.8791400 0.9110335
## 4796 0.9439160 0.8864504 0.8721351 0.9110335
## 4797 0.9439160 0.9321055 0.8721351 0.9110335
## 4798 0.8540864 0.9080000 0.8791400 0.9110335
## 4799 0.9439160 0.9321055 0.8791400 0.9110335
## 4800 0.8540864 0.9010727 0.8791400 0.9110335
## 4801 0.9439160 0.9080000 0.8791400 0.9110335
## 4802 0.8540864 0.9080000 0.8721351 0.9110335
## 4803 0.8540864 0.9321055 0.8791400 0.9110335
## 4804 0.9439160 0.8877722 0.8721351 0.9110335
## 4805 0.9439160 0.9080000 0.8791400 0.9110335
## 4806 0.8540864 0.9080000 0.8791400 0.9110335
## 4807 0.8540864 0.9010727 0.8791400 0.9110335
## 4808 0.9439160 0.9080000 0.8791400 0.9110335
## 4809 0.8540864 0.9321055 0.8721351 0.9110335
## 4810 0.8540864 0.8877722 0.8791400 0.9110335
## 4811 0.9439160 0.9080000 0.8791400 0.9110335
## 4812 0.9439160 0.9080000 0.8721351 0.9110335
## 4813 0.9439160 0.8864504 0.8791400 0.9110335
## 4814 0.8540864 0.9080000 0.8791400 0.9110335
## 4815 0.8540864 0.9080000 0.8791400 0.9110335
## 4816 0.9439160 0.9080000 0.8721351 0.9110335
## 4817 0.9439160 0.9321055 0.8791400 0.9110335
## 4818 0.8540864 0.8877722 0.8791400 0.9110335
## 4819 0.8540864 0.8877722 0.8874696 0.9110335
## 4820 0.8540864 0.9010727 0.8791400 0.9110335
## 4821 0.9439160 0.9321055 0.8721351 0.9110335
## 4822 0.8540864 0.8877722 0.8721351 0.9110335
## 4823 0.8540864 0.9080000 0.8791400 0.9110335
## 4824 0.9439160 0.8864504 0.8791400 0.9110335
## 4825 0.8540864 0.9080000 0.8721351 0.9110335
## 4826 0.9439160 0.9321055 0.8791400 0.9110335
## 4827 0.8540864 0.9080000 0.8791400 0.9110335
## 4828 0.8540864 0.8877722 0.8874696 0.9110335
## 4829 0.8540864 0.8877722 0.8791400 0.9110335
## 4830 0.9439160 0.9321055 0.8791400 0.9110335
## 4831 0.8540864 0.8877722 0.8721351 0.9110335
## 4832 0.8540864 0.8877722 0.8721351 0.9110335
## 4833 0.8540864 0.5408163 0.8874696 0.9110335
## 4834 0.9439160 0.9321055 0.8791400 0.9110335
## 4835 0.8540864 0.9321055 0.8721351 0.9110335
## 4836 0.8540864 0.9080000 0.8791400 0.9110335
## 4837 0.8540864 0.9080000 0.8791400 0.9110335
## 4838 0.8540864 0.9080000 0.8791400 0.9110335
## 4839 0.8540864 0.9321055 0.8791400 0.9110335
## 4840 0.8540864 0.9010727 0.8791400 0.9110335
## 4841 0.8540864 0.9080000 0.8721351 0.9110335
## 4842 0.8540864 0.9080000 0.8791400 0.9110335
## 4843 0.9439160 0.9321055 0.8791400 0.9110335
## 4844 0.8540864 0.9080000 0.8721351 0.9110335
## 4845 0.8540864 0.8877722 0.8721351 0.9110335
## 4846 0.8540864 0.8877722 0.8791400 0.9110335
## 4847 0.9439160 0.9321055 0.8791400 0.9110335
## 4848 0.9439160 0.9321055 0.8791400 0.9110335
## 4849 0.8540864 0.9010727 0.8791400 0.9110335
## 4850 0.8540864 0.9080000 0.8791400 0.9110335
## 4851 0.8540864 0.9080000 0.8791400 0.9110335
## 4852 0.8540864 0.9010727 0.8791400 0.9110335
## 4853 0.8540864 0.9321055 0.8791400 0.9110335
## 4854 0.8540864 0.8877722 0.8721351 0.9110335
## 4855 0.8540864 0.8877722 0.8791400 0.9110335
## 4856 0.8540864 0.9080000 0.8721351 0.9110335
## 4857 0.8540864 0.8877722 0.8721351 0.9110335
## 4858 0.8540864 0.9080000 0.8791400 0.9110335
## 4859 0.8540864 0.9010727 0.8721351 0.9110335
## 4860 0.9439160 0.9321055 0.8791400 0.9110335
## 4861 0.9439160 0.9321055 0.8721351 0.9110335
## 4862 0.8540864 0.9080000 0.8721351 0.9110335
## 4863 0.9439160 0.9321055 0.8791400 0.9110335
## 4864 0.8540864 0.9010727 0.8721351 0.9110335
## 4865 0.8540864 0.9080000 0.8791400 0.9110335
## 4866 0.8540864 0.8877722 0.8721351 0.9110335
## 4867 0.9439160 0.9321055 0.8721351 0.9110335
## 4868 0.8540864 0.9010727 0.8791400 0.9110335
## 4869 0.9439160 0.8864504 0.8791400 0.9110335
## 4870 0.8540864 0.8877722 0.8791400 0.9110335
## 4871 0.8540864 0.9321055 0.8791400 0.9110335
## 4872 0.8540864 0.9080000 0.8791400 0.9110335
## 4873 0.8540864 0.9321055 0.8721351 0.9110335
## 4874 0.9439160 0.9321055 0.8721351 0.9110335
## 4875 0.9439160 0.8864504 0.8721351 0.9110335
## 4876 0.9439160 0.9321055 0.8791400 0.9110335
## 4877 0.8540864 0.9080000 0.8791400 0.9110335
## 4878 0.8540864 0.9080000 0.8721351 0.9110335
## 4879 0.8540864 0.8877722 0.8721351 0.9110335
## 4880 0.8540864 0.9080000 0.8721351 0.9110335
## 4881 0.8540864 0.8877722 0.8791400 0.9110335
## 4882 0.8540864 0.8877722 0.8791400 0.9110335
## 4883 0.8540864 0.9010727 0.8791400 0.9110335
## 4884 0.8540864 0.8877722 0.8791400 0.9110335
## 4885 0.8540864 0.9080000 0.8721351 0.9110335
## 4886 0.8540864 0.8864504 0.8721351 0.9110335
## 4887 0.8540864 0.9321055 0.8721351 0.9110335
## 4888 0.9439160 0.9321055 0.8791400 0.9110335
## 4889 0.8540864 0.9080000 0.8721351 0.9110335
## 4890 0.8540864 0.8877722 0.8791400 0.9110335
## 4891 0.9439160 0.9321055 0.8791400 0.9110335
## 4892 0.8540864 0.9321055 0.8791400 0.9110335
## 4893 0.8540864 0.9080000 0.8791400 0.9110335
## 4894 0.8540864 0.8877722 0.8791400 0.9110335
## 4895 0.9439160 0.8864504 0.8791400 0.9110335
## 4896 0.8540864 0.9080000 0.8721351 0.9110335
## 4897 0.9439160 0.9080000 0.8721351 0.9110335
## 4898 0.8540864 0.8877722 0.8791400 0.9110335
## 4899 0.8540864 0.9010727 0.8874696 0.9110335
## 4900 0.9439160 0.8864504 0.8791400 0.9110335
## 4901 0.8540864 0.9321055 0.8791400 0.9110335
## 4902 0.8540864 0.9321055 0.8791400 0.9110335
## 4903 0.9439160 0.9080000 0.8791400 0.9110335
## 4904 0.9439160 0.8864504 0.8791400 0.9110335
## 4905 0.8540864 0.8877722 0.8791400 0.9110335
## 4906 0.8540864 0.9080000 0.8791400 0.9110335
## 4907 0.9439160 0.9321055 0.8721351 0.9110335
## 4908 0.8540864 0.8877722 0.8791400 0.9110335
## 4909 0.9439160 0.8864504 0.8721351 0.9110335
## 4910 0.8540864 0.9080000 0.8791400 0.9110335
## 4911 0.8540864 0.8877722 0.8721351 0.9110335
## 4912 0.8540864 0.9010727 0.8791400 0.9110335
## 4913 0.9439160 0.8864504 0.8721351 0.9110335
## 4914 0.9439160 0.8148148 0.8721351 0.9110335
## 4915 0.9439160 0.9321055 0.8791400 0.9110335
## 4916 0.8540864 0.9321055 0.8791400 0.9110335
## 4917 0.9439160 0.9321055 0.8791400 0.9110335
## 4918 0.8540864 0.9321055 0.8791400 0.9110335
## 4919 0.9439160 0.9321055 0.8791400 0.9110335
## 4920 0.8540864 0.9080000 0.8791400 0.9110335
## 4921 0.8540864 0.9080000 0.8791400 0.9110335
## 4922 0.8540864 0.9010727 0.8791400 0.9110335
## 4923 0.9439160 0.9321055 0.8791400 0.9110335
## 4924 0.8540864 0.9080000 0.8791400 0.9110335
## 4925 0.8540864 0.9080000 0.8791400 0.9110335
## 4926 0.9439160 0.8864504 0.8791400 0.9110335
## 4927 0.9439160 0.9321055 0.8721351 0.9110335
## 4928 0.8540864 0.8877722 0.8791400 0.9110335
## 4929 0.8540864 0.9010727 0.8791400 0.9110335
## 4930 0.8540864 0.8877722 0.8791400 0.9110335
## 4931 0.9439160 0.9321055 0.8791400 0.9110335
## 4932 0.9439160 0.8864504 0.8791400 0.9110335
## 4933 0.8540864 0.9080000 0.8721351 0.9110335
## 4934 0.8540864 0.8877722 0.8721351 0.9110335
## 4935 0.8540864 0.9080000 0.8721351 0.9110335
## 4936 0.9439160 0.9321055 0.8721351 0.9110335
## 4937 0.8540864 0.8877722 0.8721351 0.9110335
## 4938 0.9439160 0.9321055 0.8721351 0.9110335
## 4939 0.8540864 0.4949495 0.8791400 0.9110335
## 4940 0.9439160 0.8864504 0.8791400 0.9110335
## 4941 0.8540864 0.9080000 0.8791400 0.9110335
## 4942 0.8540864 0.9321055 0.8791400 0.9110335
## 4943 0.8540864 0.8877722 0.8791400 0.9110335
## 4944 0.8540864 0.9080000 0.8791400 0.9110335
## 4945 0.9439160 0.8864504 0.8721351 0.9110335
## 4946 0.8540864 0.9080000 0.8791400 0.9110335
## 4947 0.8540864 0.9080000 0.8721351 0.9110335
## 4948 0.9439160 0.9321055 0.8791400 0.9110335
## 4949 0.9439160 0.8864504 0.8721351 0.9110335
## 4950 0.9439160 0.8864504 0.8791400 0.9110335
## 4951 0.8540864 0.8877722 0.8791400 0.9110335
## 4952 0.8540864 0.8148148 0.8721351 0.9110335
## 4953 0.8540864 0.9080000 0.8721351 0.9110335
## 4954 0.8540864 0.8877722 0.8791400 0.9110335
## 4955 0.8540864 0.9080000 0.8791400 0.9110335
## 4956 0.8540864 0.9010727 0.8721351 0.9110335
## 4957 0.8540864 0.9080000 0.8721351 0.9110335
## 4958 0.9439160 0.8864504 0.8791400 0.9110335
## 4959 0.8540864 0.9321055 0.8721351 0.9110335
## 4960 0.8540864 0.9321055 0.8721351 0.9110335
## 4961 0.8540864 0.9010727 0.8721351 0.9110335
## 4962 0.8540864 0.9080000 0.8791400 0.9110335
## 4963 0.9439160 0.8864504 0.8791400 0.9110335
## 4964 0.9439160 0.9321055 0.8721351 0.9110335
## 4965 0.8540864 0.8877722 0.8791400 0.9110335
## 4966 0.9439160 0.9321055 0.8874696 0.9110335
## 4967 0.9439160 0.9321055 0.8791400 0.9110335
## 4968 0.9439160 0.9321055 0.8721351 0.9110335
## 4969 0.9439160 0.9321055 0.8791400 0.9110335
## 4970 0.8540864 0.9080000 0.8791400 0.9110335
## 4971 0.9439160 0.8864504 0.8874696 0.9110335
## 4972 0.8540864 0.8864504 0.8721351 0.9110335
## 4973 0.9439160 0.9321055 0.8721351 0.9110335
## 4974 0.8540864 0.9080000 0.8791400 0.9110335
## 4975 0.9439160 0.9080000 0.8791400 0.9110335
## 4976 0.9439160 0.9010727 0.8791400 0.9110335
## 4977 0.8540864 0.4949495 0.8721351 0.9110335
## 4978 0.8540864 0.9080000 0.8721351 0.9110335
## 4979 0.9439160 0.8864504 0.8721351 0.9110335
## 4980 0.9439160 0.8864504 0.8791400 0.9110335
## 4981 0.8540864 0.8877722 0.8791400 0.9110335
## 4982 0.8540864 0.9321055 0.8721351 0.9110335
## 4983 0.9439160 0.9321055 0.8791400 0.9110335
## 4984 0.8540864 0.8864504 0.8721351 0.9110335
## 4985 0.9439160 0.9321055 0.8721351 0.9110335
## 4986 0.8540864 0.9321055 0.8791400 0.9110335
## 4987 0.8540864 0.9010727 0.8791400 0.9110335
## 4988 0.8540864 0.9321055 0.8721351 0.9110335
## 4989 0.9439160 0.9080000 0.8791400 0.9110335
## 4990 0.8540864 0.9321055 0.8874696 0.9110335
## 4991 0.8540864 0.9080000 0.8721351 0.9110335
## 4992 0.9439160 0.9080000 0.8791400 0.9110335
## 4993 0.9439160 0.8864504 0.8721351 0.9110335
## 4994 0.9439160 0.8864504 0.8721351 0.9110335
## 4995 0.9439160 0.9321055 0.8721351 0.9110335
## 4996 0.8540864 0.9080000 0.8721351 0.9110335
## 4997 0.8540864 0.9321055 0.8791400 0.9110335
## 4998 0.9439160 0.8864504 0.8721351 0.9110335
## 4999 0.9439160 0.9080000 0.8791400 0.9110335
## [ reached 'max' / getOption("max.print") -- omitted 3238 rows ]
train_encoded <- train_encoded %>% select(-one_of(names(train_data %>% select_if(is.factor))))
## Warning: Unknown columns: `job`, `marital`, `education`, `default`, `housing`,
## `loan`, `contact`, `month`, `day_of_week`, `poutcome`, `y`
test_encoded <- test_encoded %>% select(-one_of(names(test_data %>% select_if(is.factor))))
## Warning: Unknown columns: `job`, `marital`, `education`, `default`, `housing`,
## `loan`, `contact`, `month`, `day_of_week`, `poutcome`, `y`
train_encoded
## age duration campaign pdays previous emp.var.rate cons.price.idx
## 1 49 121 1 999 1 -1.8 92.893
## 2 43 108 1 999 1 -2.9 92.963
## 3 37 294 2 999 1 -1.8 92.893
## 4 44 217 1 999 1 -1.8 92.893
## 5 33 441 5 999 1 -3.4 92.431
## 6 57 100 3 999 1 -1.8 92.893
## 7 49 47 3 999 1 -1.8 92.893
## 8 34 166 5 999 1 -1.8 92.893
## 9 32 402 1 999 2 -1.8 92.893
## 10 48 64 4 999 1 -1.8 92.893
## 11 40 53 1 999 1 -1.8 93.075
## 12 29 55 1 999 1 -0.1 93.200
## 13 55 45 7 999 1 -1.8 93.075
## 14 48 111 2 999 1 -0.1 93.200
## 15 30 263 1 999 2 -1.7 94.055
## 16 37 489 1 999 1 -1.8 93.876
## 17 60 618 1 999 1 -1.1 94.199
## 18 42 290 2 999 1 -1.8 93.075
## 19 23 236 4 999 1 -1.8 92.893
## 20 35 69 3 999 1 -1.8 92.893
## 21 36 83 1 999 1 -0.1 93.200
## 22 63 79 1 6 2 -2.9 92.201
## 23 47 398 1 999 1 -1.8 92.893
## 24 31 81 2 999 1 -2.9 92.963
## 25 28 169 3 999 1 -1.8 93.369
## 26 37 218 1 999 1 -1.8 93.075
## 27 36 490 3 999 2 -1.8 93.075
## 28 30 159 1 999 1 -1.8 92.893
## 29 49 164 1 999 1 -1.8 92.893
## 30 46 11 5 999 1 -1.8 92.893
## 31 50 134 1 999 1 -0.1 93.200
## 32 37 290 1 999 1 -1.8 92.893
## 33 52 442 2 999 1 -0.1 93.200
## 34 47 201 2 999 1 -1.8 92.893
## 35 36 70 1 999 1 -0.1 93.200
## 36 54 121 1 999 1 -1.8 92.893
## 37 33 206 2 999 1 -0.1 93.200
## 38 51 841 2 999 2 -1.1 94.199
## 39 32 78 2 999 1 -1.8 92.843
## 40 37 96 2 999 1 -0.1 93.200
## 41 33 353 2 999 1 -0.1 93.200
## 42 33 441 5 999 1 -3.4 92.431
## 43 41 113 2 999 1 -1.8 92.893
## 44 27 267 1 999 1 -1.8 92.893
## 45 55 284 1 999 1 -3.0 92.713
## 46 51 1462 2 999 1 -1.8 92.893
## 47 40 85 1 999 2 -1.8 92.893
## 48 27 284 1 999 1 -1.8 93.075
## 49 46 294 1 999 1 -0.1 93.200
## 50 49 141 1 999 1 -1.8 92.893
## 51 48 313 1 999 2 -1.8 92.893
## 52 48 79 2 999 1 -1.8 92.893
## 53 31 119 2 999 1 -1.8 92.893
## 54 25 209 1 999 1 -1.8 92.893
## 55 50 116 2 999 1 -0.1 93.200
## 56 27 401 1 999 1 -1.8 93.075
## 57 44 353 1 999 1 -0.1 93.200
## 58 36 98 1 999 2 -1.8 92.893
## 59 30 95 2 999 1 -1.8 92.893
## 60 34 63 1 999 1 -1.8 92.893
## 61 36 153 2 999 1 -2.9 92.201
## 62 33 119 2 999 1 -1.8 92.893
## 63 30 69 1 999 1 -3.0 92.713
## 64 25 81 1 999 1 -2.9 92.201
## 65 32 630 3 999 1 -1.8 92.893
## 66 30 74 1 999 1 -1.8 92.893
## 67 42 94 1 999 1 -1.8 93.075
## 68 76 103 1 999 1 -3.0 92.713
## 69 31 41 1 999 1 -0.1 93.200
## 70 41 268 1 999 1 -1.8 93.075
## 71 30 149 1 999 1 -1.8 92.893
## 72 33 492 1 12 2 -1.8 92.893
## 73 56 520 1 999 1 -1.8 92.893
## 74 38 136 2 999 1 -0.1 93.200
## 75 38 654 2 999 1 -1.8 92.893
## 76 39 44 2 999 1 -0.1 93.200
## 77 36 179 1 999 1 -1.8 92.893
## 78 31 55 1 999 1 -1.8 93.075
## 79 36 191 1 999 1 -1.8 92.893
## 80 30 1357 4 999 1 -1.8 92.893
## 81 41 272 1 999 1 -1.8 93.075
## 82 31 146 2 12 3 -1.1 94.601
## 83 52 294 1 999 1 -1.8 93.369
## 84 68 130 4 999 2 -1.1 94.601
## 85 30 241 2 999 1 -1.8 92.893
## 86 41 174 1 4 3 -1.7 94.027
## 87 35 79 1 999 1 -1.8 93.075
## 88 23 136 1 999 3 -2.9 92.201
## 89 32 206 2 999 1 -1.8 92.893
## 90 48 17 5 999 1 -1.8 92.893
## 91 31 387 2 999 1 -1.8 92.893
## 92 39 195 1 999 1 -1.8 92.893
## 93 28 687 2 999 1 -1.8 92.893
## 94 36 219 7 999 1 -0.1 93.200
## 95 54 204 1 999 1 -2.9 92.201
## 96 28 126 2 999 1 -1.8 92.893
## 97 76 344 1 999 1 -2.9 92.201
## 98 33 214 2 999 1 -0.1 93.200
## 99 63 146 1 999 1 -2.9 92.469
## 100 47 795 3 999 1 -1.8 93.075
## 101 37 253 2 999 1 -1.8 92.893
## 102 79 464 1 999 1 -1.7 94.215
## 103 74 309 4 999 3 -1.8 93.876
## 104 45 370 3 999 1 -1.8 93.075
## 105 35 466 2 999 2 -1.8 93.075
## 106 39 484 1 999 2 -1.8 93.075
## 107 30 288 1 999 1 -1.8 92.893
## 108 31 264 2 999 1 -0.1 93.200
## 109 37 439 2 999 1 -1.8 93.075
## 110 29 116 2 999 1 -3.0 92.713
## 111 50 98 2 999 1 -2.9 92.469
## 112 31 163 1 999 1 -2.9 92.963
## 113 31 54 1 999 1 -1.1 94.601
## 114 51 295 1 999 1 -1.8 92.893
## 115 56 252 1 999 2 -2.9 92.963
## 116 39 207 2 999 1 -1.8 92.893
## 117 47 437 1 999 1 -1.1 94.601
## 118 42 58 1 999 1 -0.1 93.200
## 119 50 302 2 999 1 -0.1 93.200
## 120 29 567 3 13 2 -1.8 93.876
## 121 36 104 3 999 1 -1.8 92.893
## 122 29 135 2 999 2 -1.8 92.893
## 123 31 8 4 999 1 -1.8 92.893
## 124 51 125 1 999 1 -0.1 93.200
## 125 24 133 3 999 2 -1.1 94.601
## 126 30 361 2 999 1 -0.1 93.200
## 127 54 171 3 999 1 -1.7 94.027
## 128 32 293 2 999 1 -1.8 93.075
## 129 27 133 2 999 1 -2.9 92.963
## 130 32 181 2 999 1 -1.8 92.893
## 131 37 696 1 999 1 -1.8 92.893
## 132 54 254 2 999 1 -1.8 92.893
## 133 46 32 1 999 1 -0.1 93.200
## 134 36 1132 1 999 1 -0.1 93.200
## 135 36 283 1 999 1 -1.8 92.893
## 136 35 304 1 999 1 -1.8 92.893
## 137 38 31 5 999 1 -1.8 92.893
## 138 26 362 2 999 1 -1.8 93.075
## 139 34 136 1 999 2 -2.9 92.963
## 140 58 74 2 999 1 -1.8 92.893
## 141 27 193 1 999 1 -1.7 94.055
## 142 34 217 6 999 1 -1.8 92.893
## 143 58 158 3 999 1 -0.1 93.200
## 144 33 165 1 999 1 -1.8 92.893
## 145 51 118 2 999 1 -0.1 93.200
## 146 29 118 2 999 1 -0.1 93.200
## 147 46 183 3 999 1 -1.8 93.075
## 148 59 739 2 999 1 -1.8 92.893
## 149 32 214 3 999 1 -1.8 92.893
## 150 34 7 6 999 1 -1.8 92.893
## 151 61 228 2 999 1 -1.8 93.876
## 152 60 781 4 999 2 -1.8 92.893
## 153 27 142 2 999 1 -1.8 92.893
## 154 41 288 3 999 2 -1.8 92.893
## 155 46 81 2 999 1 -1.8 93.075
## 156 48 377 5 999 1 -3.0 92.713
## 157 30 311 3 999 1 -0.1 93.200
## 158 34 211 2 999 1 -1.8 92.893
## 159 31 706 1 999 1 -1.8 93.075
## 160 43 249 2 999 1 -1.8 92.893
## 161 71 217 1 6 2 -2.9 92.201
## 162 48 456 1 999 1 -0.1 93.200
## 163 50 399 2 999 1 -1.8 93.075
## 164 39 346 1 999 1 -1.8 92.893
## 165 50 186 1 999 1 -0.1 93.200
## 166 47 16 8 6 2 -1.8 92.893
## 167 43 93 4 999 2 -1.8 92.893
## 168 43 288 3 999 1 -1.8 92.893
## 169 32 402 2 999 1 -1.8 92.893
## 170 43 372 1 999 1 -1.8 93.075
## 171 50 319 2 999 1 -0.1 93.200
## 172 23 77 1 999 1 -1.8 92.893
## 173 41 64 1 999 1 -1.8 92.893
## 174 36 141 1 999 2 -3.4 92.431
## 175 71 182 1 999 1 -3.0 92.713
## 176 36 183 1 999 1 -0.1 93.200
## 177 41 466 5 999 1 -1.8 93.075
## 178 38 126 1 7 4 -3.4 92.649
## 179 50 92 3 999 1 -3.4 92.379
## 180 34 106 1 999 1 -1.8 92.893
## 181 36 99 1 999 1 -0.1 93.200
## 182 80 411 1 999 1 -1.1 94.601
## 183 41 189 2 999 1 -1.8 92.893
## 184 62 68 1 999 1 -2.9 92.201
## 185 32 72 1 999 2 -1.8 92.893
## 186 46 318 2 999 1 -1.8 92.893
## 187 31 429 1 999 3 -1.8 93.876
## 188 36 566 2 999 1 -1.8 92.893
## 189 57 46 6 999 1 -1.8 92.893
## 190 50 381 1 999 1 -0.1 93.200
## 191 29 366 3 999 1 -0.1 93.200
## 192 40 307 4 999 2 -1.8 92.893
## 193 33 827 1 999 1 -1.8 93.075
## 194 31 310 2 999 1 -2.9 92.201
## 195 53 101 1 999 1 -1.8 92.893
## 196 40 308 1 999 1 -1.8 92.893
## 197 24 47 1 999 1 -1.8 92.893
## 198 27 99 2 999 1 -1.8 92.893
## 199 35 51 1 999 1 -0.1 93.200
## 200 36 133 1 999 2 -3.4 92.649
## 201 53 115 2 999 1 -0.1 93.200
## 202 49 404 6 999 1 -1.8 93.075
## 203 40 67 1 999 1 -0.1 93.200
## 204 33 153 1 999 1 -0.1 93.200
## 205 47 45 1 999 1 -0.1 93.200
## 206 38 1081 1 999 1 -0.1 93.200
## 207 34 140 2 999 1 -0.1 93.200
## 208 58 248 1 999 1 -1.8 92.893
## 209 52 327 2 999 1 -1.8 93.075
## 210 34 322 1 999 1 -1.8 92.893
## 211 32 772 2 999 1 -1.8 93.075
## 212 27 279 1 999 1 -1.8 92.893
## 213 25 136 1 999 1 -1.8 92.893
## 214 43 255 2 999 1 -1.8 92.893
## 215 30 232 2 999 1 -1.8 92.893
## 216 65 183 1 999 2 -1.7 94.215
## 217 48 83 1 999 1 -0.1 93.200
## 218 32 430 1 999 1 -2.9 92.963
## 219 34 12 1 999 1 -1.7 94.215
## 220 59 158 1 999 1 -1.8 92.893
## 221 34 70 1 999 1 -1.8 92.893
## 222 40 43 3 999 1 -1.8 93.075
## 223 39 124 1 999 1 -1.8 92.893
## 224 41 103 1 999 1 -1.8 92.893
## 225 22 194 2 999 3 -1.1 94.199
## 226 53 109 1 999 1 -1.8 93.369
## 227 51 396 4 999 1 -1.7 94.215
## 228 35 88 1 999 1 -2.9 92.201
## 229 39 177 1 999 1 -1.8 92.893
## 230 25 80 1 999 1 -1.8 92.893
## 231 44 65 1 999 1 -1.8 93.075
## 232 38 415 1 999 2 -3.0 92.713
## 233 29 57 1 999 1 -1.8 92.893
## 234 33 74 3 999 1 -1.8 92.893
## 235 36 225 2 999 1 -1.8 92.893
## 236 53 136 1 999 1 -1.8 92.893
## 237 36 220 1 999 1 -1.8 92.893
## 238 41 183 1 999 1 -1.8 93.075
## 239 43 153 1 999 2 -1.8 92.893
## 240 33 16 9 999 1 -1.8 92.893
## 241 33 961 2 999 1 -1.8 93.075
## 242 29 62 4 999 1 -1.8 92.893
## 243 48 201 3 999 1 -0.1 93.200
## 244 25 104 1 999 1 -1.8 93.075
## 245 61 263 1 999 1 -3.0 92.713
## 246 28 226 1 999 1 -1.8 92.893
## 247 33 100 1 999 1 -0.1 93.200
## 248 44 652 2 999 2 -1.8 92.893
## 249 21 173 11 9 2 -1.7 94.215
## 250 32 156 2 999 1 -1.1 94.199
## 251 30 166 1 999 1 -1.8 92.893
## 252 34 179 5 999 1 -3.4 92.649
## 253 41 297 1 999 1 -0.1 93.200
## 254 32 78 1 999 1 -1.8 92.893
## 255 34 350 2 999 1 -1.8 92.893
## 256 31 122 4 999 3 -3.4 92.649
## 257 50 77 4 999 1 -1.8 92.893
## 258 37 140 1 999 1 -0.1 93.200
## 259 62 215 2 999 1 -1.8 93.749
## 260 27 176 2 999 1 -1.8 92.893
## 261 37 284 1 999 1 -1.8 93.075
## 262 32 112 4 999 1 -2.9 92.963
## 263 30 1357 4 999 1 -1.8 92.893
## 264 34 344 1 999 2 -1.7 94.215
## 265 34 83 2 999 1 -0.1 93.200
## 266 34 185 2 999 1 -1.8 92.893
## 267 31 60 5 999 1 -1.8 92.893
## 268 59 66 1 999 1 -1.8 93.075
## 269 33 63 1 999 1 -1.8 92.893
## 270 24 65 1 999 2 -2.9 92.201
## 271 24 124 1 999 1 -2.9 92.963
## 272 26 136 3 999 1 -1.8 92.893
## 273 43 57 2 999 2 -1.8 92.893
## 274 67 201 1 999 1 -2.9 92.201
## 275 23 131 6 999 1 -1.8 93.075
## 276 30 332 2 13 2 -2.9 92.469
## 277 48 27 1 999 2 -1.8 93.075
## 278 61 196 1 999 1 -1.8 93.749
## 279 25 106 1 999 2 -1.8 92.893
## 280 39 45 1 999 1 -1.8 92.893
## 281 62 329 1 999 2 -1.1 94.767
## 282 29 538 2 999 2 -1.8 93.876
## 283 45 146 2 999 1 -1.8 93.876
## 284 50 100 1 999 1 -0.1 93.200
## 285 61 301 1 9 3 -3.4 92.649
## 286 56 1551 1 999 2 -3.4 92.379
## 287 29 170 1 999 1 -1.8 92.893
## 288 41 150 2 999 1 -1.8 92.893
## 289 42 216 1 999 1 -1.8 93.075
## 290 66 139 5 999 1 -1.8 93.075
## 291 37 175 1 999 1 -1.8 93.075
## 292 38 355 1 13 2 -1.8 93.369
## 293 42 86 1 999 1 -0.1 93.200
## 294 46 53 1 999 1 -1.8 93.075
## 295 45 905 1 999 1 -1.8 93.075
## 296 54 778 5 999 1 -1.8 92.893
## 297 45 257 2 999 1 -1.8 93.075
## 298 37 63 2 999 1 -0.1 93.200
## 299 35 95 1 999 1 -1.8 92.893
## 300 33 201 1 999 1 -1.8 92.893
## 301 46 11 5 999 2 -1.8 93.075
## 302 48 97 3 999 2 -1.8 92.893
## 303 54 169 1 999 1 -1.8 92.893
## 304 38 207 1 999 1 -1.8 92.893
## 305 56 62 2 999 1 -0.1 93.200
## 306 39 97 1 999 1 -1.8 92.893
## 307 71 250 2 999 2 -3.4 92.431
## 308 47 327 1 999 1 -1.8 92.893
## 309 36 55 1 999 1 -1.8 92.893
## 310 51 142 1 999 1 -1.8 92.893
## 311 29 125 1 999 1 -0.1 93.200
## 312 36 38 1 999 1 -0.1 93.200
## 313 39 256 1 999 1 -1.8 92.893
## 314 41 161 1 999 1 -1.8 93.075
## 315 35 381 1 999 1 -1.8 93.075
## 316 49 105 1 999 1 -1.8 92.893
## 317 22 484 1 999 2 -1.7 94.215
## 318 38 285 1 999 1 -1.8 93.075
## 319 40 128 1 999 1 -0.1 93.200
## 320 42 124 2 999 1 -1.8 92.893
## 321 57 22 4 999 1 -0.1 93.200
## 322 23 349 2 999 4 -1.1 94.199
## 323 30 171 1 999 1 -0.1 93.200
## 324 22 245 2 999 2 -1.8 92.893
## 325 49 86 1 999 1 -1.8 92.893
## 326 39 357 1 999 2 -1.8 92.893
## 327 37 92 1 999 1 -1.8 93.075
## 328 28 282 1 999 1 -1.8 92.893
## 329 33 85 2 999 1 -1.8 92.893
## 330 46 159 1 999 1 -1.8 92.893
## 331 39 209 2 999 1 -1.8 92.893
## 332 34 223 1 999 1 -0.1 93.200
## 333 41 288 1 999 2 -1.8 93.075
## 334 48 122 1 999 1 -1.8 92.893
## 335 44 414 1 999 1 -1.8 92.893
## 336 51 271 1 999 1 -0.1 93.200
## 337 24 590 1 999 1 -1.8 92.893
## 338 41 12 8 999 1 -1.8 92.893
## 339 41 120 4 999 1 -0.1 93.200
## 340 34 271 1 999 1 -1.8 92.893
## 341 38 1624 1 999 2 -1.8 93.075
## 342 52 877 2 999 1 -1.8 92.893
## 343 35 313 4 999 2 -2.9 92.201
## 344 31 200 1 999 1 -1.8 92.893
## 345 50 93 1 999 1 -0.1 93.200
## 346 61 106 2 999 1 -3.4 92.431
## 347 36 970 1 999 1 -1.8 93.075
## 348 52 89 2 999 1 -0.1 93.200
## 349 28 68 2 999 1 -1.8 92.893
## 350 33 340 1 999 1 -1.8 92.893
## 351 33 143 2 999 1 -0.1 93.200
## 352 31 82 2 999 1 -2.9 92.469
## 353 51 398 2 999 1 -1.8 92.893
## 354 40 136 3 999 1 -1.8 92.893
## 355 34 261 2 999 1 -1.8 92.893
## 356 49 136 2 999 1 -0.1 93.200
## 357 23 226 2 999 1 -1.1 94.601
## 358 28 444 2 999 1 -1.8 92.893
## 359 40 67 1 999 1 -0.1 93.200
## 360 37 116 4 999 1 -3.4 92.649
## 361 24 1594 1 999 1 -1.8 93.075
## 362 33 687 2 999 1 -1.8 92.893
## 363 48 25 4 999 1 -1.8 92.893
## 364 43 96 3 999 1 -2.9 92.469
## 365 43 167 2 999 1 -1.8 92.893
## 366 50 95 7 999 1 -2.9 92.963
## 367 34 310 2 999 2 -1.8 92.893
## 368 24 44 1 999 1 -2.9 92.201
## 369 41 145 1 999 1 -1.8 93.075
## 370 25 551 4 999 1 -2.9 92.963
## 371 48 86 2 999 1 -1.8 92.893
## 372 58 165 5 999 2 -1.8 92.893
## 373 42 62 1 999 1 -0.1 93.200
## 374 35 154 3 999 1 -1.8 92.893
## 375 33 273 1 999 1 -0.1 93.200
## 376 50 1285 2 999 1 -1.8 93.075
## 377 45 129 1 999 1 -2.9 92.963
## 378 36 232 1 999 1 -1.8 92.893
## 379 42 51 1 999 1 -1.8 92.893
## 380 28 87 4 999 1 -1.8 92.893
## 381 30 180 1 999 1 -0.1 93.200
## 382 44 104 4 999 1 -0.1 93.200
## 383 33 375 1 999 1 -0.1 93.200
## 384 42 81 4 999 1 -0.1 93.200
## 385 41 772 2 999 1 -1.8 92.893
## 386 36 267 1 999 1 -1.8 92.893
## 387 42 151 3 999 1 -0.1 93.200
## 388 33 755 3 999 1 -1.8 92.893
## 389 37 63 3 999 1 -1.8 92.893
## 390 30 389 2 999 1 -1.8 93.075
## 391 66 147 2 999 1 -2.9 92.201
## 392 40 317 1 999 1 -1.8 92.893
## 393 35 179 1 999 1 -1.1 94.199
## 394 59 58 1 999 1 -1.8 92.893
## 395 27 230 4 999 1 -1.8 92.893
## 396 39 222 1 999 1 -1.8 93.075
## 397 27 193 1 999 1 -1.8 93.075
## 398 41 412 1 999 1 -1.8 93.075
## 399 39 206 7 999 1 -1.1 94.199
## 400 36 125 2 999 1 -1.8 92.893
## 401 33 807 3 999 1 -1.8 92.893
## 402 56 457 1 999 1 -0.1 93.200
## 403 53 165 1 999 1 -1.8 93.075
## 404 49 188 1 999 1 -1.8 93.876
## 405 47 526 1 999 1 -2.9 92.201
## 406 33 99 1 999 2 -2.9 92.201
## 407 27 21 4 999 1 -1.8 93.075
## 408 46 193 1 999 1 -1.8 92.893
## 409 43 75 1 999 1 -0.1 93.200
## 410 34 93 2 999 1 -1.8 92.893
## 411 41 168 3 999 1 -1.8 93.075
## 412 36 215 1 999 1 -2.9 92.201
## 413 31 292 2 999 1 -1.8 93.369
## 414 44 18 3 999 1 -1.8 93.075
## 415 33 731 3 999 1 -1.8 92.893
## 416 36 138 2 999 1 -2.9 92.201
## 417 36 503 2 999 1 -1.8 92.893
## 418 38 155 2 999 1 -1.8 92.893
## 419 38 455 2 999 1 -1.8 92.893
## 420 23 104 1 999 2 -1.7 94.215
## 421 41 178 3 999 1 -1.8 92.893
## 422 76 122 4 999 1 -1.8 93.749
## 423 37 114 1 999 1 -0.1 93.200
## 424 47 306 3 999 1 -1.8 92.893
## 425 36 122 1 999 1 -1.8 93.075
## 426 60 198 3 999 1 -1.8 93.075
## 427 57 644 1 999 1 -1.8 92.893
## 428 24 45 4 999 1 -1.8 92.893
## 429 37 317 1 999 1 -1.8 92.893
## 430 18 600 2 999 3 -1.1 94.767
## 431 45 15 9 999 1 -1.8 92.893
## 432 33 398 2 999 1 -1.7 94.215
## 433 42 216 1 999 1 -1.8 93.075
## 434 30 138 1 999 1 -1.8 93.075
## 435 50 229 1 999 1 -3.0 92.713
## 436 33 23 3 999 1 -1.8 92.893
## 437 30 331 1 999 1 -1.8 93.075
## 438 40 580 1 999 1 -1.8 92.893
## 439 34 137 7 999 1 -1.8 92.893
## 440 28 477 2 999 1 -1.8 93.075
## 441 49 68 5 999 1 -1.8 93.075
## 442 33 165 1 999 1 -1.8 92.893
## 443 41 301 1 999 1 -1.8 93.075
## 444 33 15 1 999 2 -1.7 94.055
## 445 45 223 1 999 1 -1.8 92.893
## 446 27 176 1 999 1 -1.8 93.749
## 447 59 147 3 999 1 -1.8 93.075
## 448 55 133 1 999 1 -2.9 92.963
## 449 42 160 1 999 1 -1.8 92.893
## 450 36 246 1 999 1 -0.1 93.200
## 451 57 122 2 999 1 -3.4 92.379
## 452 35 234 1 999 1 -1.8 92.893
## 453 54 81 1 999 1 -1.8 92.893
## 454 47 391 1 999 1 -1.8 92.893
## 455 52 80 3 999 1 -2.9 92.963
## 456 34 340 2 999 1 -1.8 92.893
## 457 32 74 2 999 1 -0.1 93.200
## 458 45 62 2 999 1 -1.8 93.075
## 459 36 56 1 999 1 -1.8 92.893
## 460 51 131 2 999 4 -1.8 93.876
## 461 50 228 3 999 1 -1.8 93.075
## 462 34 181 1 999 1 -1.8 93.075
## 463 45 1579 1 999 1 -1.8 93.075
## 464 34 239 5 999 1 -1.8 92.893
## 465 35 317 2 999 1 -1.8 93.075
## 466 49 168 3 999 1 -1.8 92.893
## 467 37 171 2 999 1 -0.1 93.200
## 468 43 166 3 999 1 -0.1 93.200
## 469 80 411 1 999 1 -1.1 94.601
## 470 49 110 1 999 1 -0.1 93.200
## 471 31 84 1 999 1 -1.8 92.893
## 472 24 176 2 12 2 -1.7 94.055
## 473 42 304 1 999 1 -1.8 92.893
## 474 43 741 4 999 2 -1.1 94.767
## 475 45 109 2 999 1 -1.8 93.075
## 476 30 155 1 999 1 -1.8 92.893
## 477 29 207 2 999 1 -1.8 93.369
## 478 34 493 2 999 1 -0.1 93.200
## 479 37 304 7 999 1 -1.8 93.075
## 480 34 543 2 999 1 -1.8 93.075
## 481 28 119 4 999 1 -1.8 92.893
## 482 28 140 1 999 1 -2.9 92.201
## 483 52 513 13 14 2 -3.4 92.379
## 484 54 132 1 999 1 -1.8 92.893
## 485 49 362 1 999 1 -1.8 92.893
## 486 30 226 4 999 1 -1.8 92.893
## 487 37 43 1 999 1 -1.8 92.893
## 488 31 109 1 999 1 -2.9 92.201
## 489 47 57 2 999 1 -0.1 93.200
## 490 31 257 2 999 1 -1.8 93.075
## 491 49 378 1 999 1 -0.1 93.200
## 492 42 152 1 999 1 -1.8 92.893
## 493 32 242 3 999 1 -1.8 92.893
## 494 40 105 5 999 1 -0.1 93.200
## 495 47 506 2 999 2 -1.8 92.893
## 496 34 172 1 999 1 -1.8 92.893
## 497 33 410 1 999 1 -3.4 92.431
## 498 53 103 1 999 1 -3.4 92.379
## 499 40 80 1 999 1 -0.1 93.200
## 500 39 895 5 999 1 -1.8 92.893
## 501 34 10 7 999 1 -1.8 92.893
## 502 46 61 1 999 1 -0.1 93.200
## 503 46 90 2 999 1 -0.1 93.200
## 504 28 224 1 999 1 -1.8 93.075
## 505 29 340 2 999 1 -1.8 92.893
## 506 35 195 2 999 1 -1.8 92.893
## 507 79 464 1 999 1 -1.7 94.215
## 508 28 178 1 999 2 -1.7 94.215
## 509 32 92 2 999 1 -3.4 92.649
## 510 40 88 1 999 1 -1.8 92.893
## 511 55 164 1 999 1 -1.8 93.075
## 512 36 592 4 999 1 -1.8 93.075
## 513 27 400 5 999 1 -1.8 93.075
## 514 52 64 1 999 1 -0.1 93.200
## 515 42 486 1 999 1 -1.8 93.075
## 516 70 1962 1 999 2 -3.4 92.379
## 517 45 666 3 999 1 -1.8 93.075
## 518 34 234 1 999 1 -1.8 93.075
## 519 62 250 1 999 1 -2.9 92.201
## 520 39 1254 3 999 1 -1.8 92.893
## 521 34 80 1 999 1 -1.8 92.893
## 522 52 75 1 999 1 -0.1 93.200
## 523 55 247 1 999 1 -1.8 93.075
## 524 49 106 2 999 1 -0.1 93.200
## 525 58 304 2 999 1 -1.8 92.893
## 526 37 201 1 999 1 -0.1 93.200
## 527 46 187 3 999 1 -1.8 92.893
## 528 20 52 1 999 1 -1.7 94.055
## 529 38 654 2 999 1 -1.8 92.893
## 530 44 144 6 999 1 -0.1 93.200
## 531 43 408 1 999 1 -3.4 92.431
## 532 26 588 3 999 2 -1.7 94.215
## 533 41 100 2 999 1 -1.8 92.893
## 534 53 93 1 999 1 -1.8 93.369
## 535 34 157 3 999 1 -1.8 92.893
## 536 36 313 1 999 1 -1.8 93.075
## 537 49 179 1 999 1 -1.8 92.893
## 538 54 58 3 999 2 -1.8 93.075
## 539 46 268 1 999 1 -1.8 93.075
## 540 66 369 2 999 1 -1.1 94.601
## 541 33 168 1 999 1 -1.8 92.893
## 542 43 147 3 999 1 -1.8 93.075
## 543 27 512 1 20 4 -1.1 94.601
## 544 33 398 2 999 1 -1.7 94.215
## 545 37 171 1 999 1 -1.8 93.075
## 546 58 487 1 999 2 -3.4 92.649
## 547 55 189 2 999 1 -0.1 93.200
## 548 45 164 1 999 1 -0.1 93.200
## 549 44 151 1 999 1 -1.8 92.893
## 550 39 73 1 999 1 -1.8 93.075
## 551 31 126 2 999 1 -1.8 92.893
## 552 53 186 2 999 1 -1.8 92.893
## 553 48 1203 1 999 1 -1.8 92.893
## 554 27 291 1 999 3 -1.8 93.369
## 555 27 670 4 999 1 -1.8 92.893
## 556 33 121 2 999 1 -1.8 93.369
## 557 71 192 1 999 2 -1.7 94.027
## 558 27 356 2 999 1 -1.8 92.893
## 559 26 598 4 12 3 -1.7 94.055
## 560 44 104 1 999 1 -1.8 93.075
## 561 76 326 1 999 1 -1.7 94.055
## 562 30 147 3 999 1 -2.9 92.963
## 563 24 467 3 6 3 -1.1 94.767
## 564 52 81 2 999 1 -1.8 92.893
## 565 71 519 2 9 3 -1.7 94.215
## 566 75 543 9 999 1 -1.1 94.199
## 567 37 963 1 999 1 -0.1 93.200
## 568 24 200 1 6 4 -2.9 92.201
## 569 57 371 1 999 1 -1.8 92.893
## 570 31 174 2 999 1 -1.8 92.843
## 571 29 325 1 999 1 -1.8 92.893
## 572 34 406 1 999 1 -1.8 93.075
## 573 53 17 13 999 1 -1.8 92.893
## 574 33 132 2 999 1 -1.7 94.027
## 575 31 552 2 999 1 -1.8 92.893
## 576 23 60 1 999 1 -1.8 92.893
## 577 30 85 1 999 1 -0.1 93.200
## 578 35 349 1 999 3 -2.9 92.201
## 579 33 245 5 999 1 -1.8 92.893
## 580 49 110 6 999 3 -1.1 94.199
## 581 29 23 2 999 1 -0.1 93.200
## 582 38 69 1 999 1 -1.8 92.893
## 583 56 284 1 999 1 -1.8 93.075
## 584 19 192 1 999 1 -1.7 94.027
## 585 52 209 2 999 1 -3.4 92.649
## 586 29 206 1 999 1 -1.8 92.893
## 587 32 328 1 999 1 -2.9 92.201
## 588 43 60 1 999 1 -1.8 93.075
## 589 32 24 1 999 2 -1.8 93.075
## 590 38 515 1 999 1 -1.8 92.893
## 591 28 263 1 999 1 -1.8 92.893
## 592 41 316 1 999 1 -1.8 93.075
## 593 50 51 1 999 1 -1.8 92.893
## 594 32 144 2 999 1 -1.8 92.893
## 595 46 6 1 999 1 -1.8 92.893
## 596 47 242 1 999 1 -1.8 92.893
## 597 27 347 2 999 1 -1.8 92.893
## 598 41 466 5 999 1 -1.8 93.075
## 599 41 234 1 999 2 -1.8 92.893
## 600 30 82 2 999 1 -1.8 92.893
## 601 32 259 2 999 1 -1.8 93.075
## 602 26 215 1 999 1 -2.9 92.201
## 603 54 192 1 999 1 -1.8 92.893
## 604 45 460 2 999 1 -1.8 93.075
## 605 34 51 4 999 1 -2.9 92.469
## 606 43 105 1 999 1 -1.8 93.075
## 607 38 425 2 999 1 -0.1 93.200
## 608 50 183 1 999 1 -0.1 93.200
## 609 30 15 11 999 1 -1.8 92.893
## 610 36 96 2 999 1 -1.8 93.369
## 611 38 302 2 999 1 -1.8 93.075
## 612 36 565 1 999 1 -0.1 93.200
## 613 28 884 3 999 1 -1.8 92.893
## 614 42 178 5 999 1 -1.8 93.075
## 615 31 1010 2 999 1 -1.8 92.893
## 616 35 43 1 999 2 -1.8 93.876
## 617 61 106 2 999 1 -3.4 92.431
## 618 52 406 1 999 1 -3.0 92.713
## 619 33 496 2 999 1 -1.8 92.893
## 620 53 592 3 999 1 -2.9 92.963
## 621 39 741 4 999 1 -0.1 93.200
## 622 36 27 1 999 1 -1.8 92.893
## 623 35 523 1 999 1 -1.8 92.893
## 624 44 173 8 999 1 -1.8 92.893
## 625 35 152 2 999 1 -1.8 92.893
## 626 29 37 1 999 1 -2.9 92.963
## 627 38 61 2 999 2 -1.8 93.075
## 628 35 62 3 999 1 -3.0 92.713
## 629 52 191 2 999 1 -1.8 92.893
## 630 33 111 1 999 1 -0.1 93.200
## 631 29 161 1 999 1 -1.8 92.893
## 632 41 112 1 999 1 -1.8 93.075
## 633 31 704 1 999 1 -1.8 92.893
## 634 51 153 4 999 2 -1.8 92.893
## 635 36 1132 1 999 1 -0.1 93.200
## 636 34 53 2 999 1 -3.4 92.649
## 637 40 96 1 999 1 -1.8 92.893
## 638 34 154 3 999 1 -0.1 93.200
## 639 53 205 2 999 1 -1.8 92.893
## 640 43 246 1 999 1 -1.8 93.075
## 641 31 111 2 999 1 -0.1 93.200
## 642 38 86 1 999 1 -1.8 92.893
## 643 23 64 1 999 1 -1.8 92.893
## 644 26 707 1 999 1 -1.8 93.075
## 645 27 101 1 999 1 -1.8 92.893
## 646 37 124 1 999 1 -1.8 92.893
## 647 48 62 1 999 1 -1.8 92.893
## 648 29 134 2 999 1 -1.8 92.893
## 649 59 165 4 999 1 -1.8 92.893
## 650 45 204 2 999 1 -3.4 92.431
## 651 29 14 5 999 1 -1.8 92.893
## 652 53 196 2 999 1 -1.8 92.893
## 653 34 562 3 999 1 -1.8 93.369
## 654 58 237 4 999 2 -1.8 92.893
## 655 43 135 6 999 1 -1.8 92.893
## 656 50 204 2 999 1 -1.8 92.893
## 657 41 466 5 999 1 -1.8 93.075
## 658 63 131 4 999 2 -3.4 92.649
## 659 55 90 1 999 1 -1.8 92.893
## 660 33 101 2 999 3 -1.8 93.876
## 661 32 146 3 999 1 -1.8 92.893
## 662 31 241 1 999 1 -1.7 94.027
## 663 25 112 1 999 1 -2.9 92.469
## 664 28 83 2 999 3 -3.4 92.431
## 665 36 722 3 999 1 -0.1 93.200
## 666 51 83 1 6 2 -2.9 92.201
## 667 25 280 6 999 1 -2.9 92.963
## 668 35 163 2 999 1 -1.8 92.893
## 669 34 344 1 999 2 -1.7 94.215
## 670 53 146 2 999 1 -0.1 93.200
## 671 52 69 1 999 1 -1.8 92.893
## 672 27 64 3 999 1 -1.8 92.893
## 673 64 421 1 999 1 -3.0 92.713
## 674 34 155 1 999 1 -0.1 93.200
## 675 45 374 1 999 1 -1.8 93.876
## 676 48 78 1 999 1 -1.8 92.893
## 677 36 291 4 999 1 -1.8 93.075
## 678 42 262 1 999 1 -1.1 94.767
## 679 59 112 4 999 1 -3.0 92.713
## 680 35 176 1 999 2 -1.7 94.027
## 681 33 255 2 999 1 -1.8 92.893
## 682 29 178 2 15 2 -1.7 94.215
## 683 45 119 2 999 1 -1.8 93.075
## 684 31 40 1 999 1 -1.8 92.893
## 685 29 85 2 999 1 -1.8 92.893
## 686 21 68 1 999 1 -1.8 92.893
## 687 34 360 1 999 1 -1.8 93.369
## 688 33 54 2 999 1 -1.8 92.893
## 689 25 795 6 999 1 -1.8 92.893
## 690 37 74 1 999 1 -0.1 93.200
## 691 38 470 1 6 2 -2.9 92.201
## 692 21 513 3 999 1 -1.8 92.893
## 693 25 78 1 999 1 -2.9 92.201
## 694 59 232 2 999 1 -1.8 92.893
## 695 31 82 1 999 1 -0.1 93.200
## 696 59 190 2 999 1 -1.8 92.893
## 697 61 109 3 999 1 -1.7 94.215
## 698 36 46 2 999 1 -0.1 93.200
## 699 35 500 2 999 1 -1.8 92.893
## 700 58 214 4 999 2 -1.7 94.215
## 701 36 122 1 999 1 -2.9 92.469
## 702 46 504 1 999 1 -0.1 93.200
## 703 29 138 2 999 1 -1.8 92.893
## 704 45 170 1 999 1 -1.8 93.075
## 705 33 18 6 999 1 -1.8 92.893
## 706 31 33 1 999 1 -1.8 92.893
## 707 31 238 1 999 1 -1.8 92.893
## 708 63 137 1 999 1 -3.0 92.713
## 709 42 355 1 999 1 -3.4 92.431
## 710 25 566 1 999 1 -1.8 92.893
## 711 39 95 1 999 1 -1.8 92.893
## 712 35 191 2 999 1 -0.1 93.200
## 713 37 171 1 999 2 -1.8 92.893
## 714 24 290 1 999 1 -1.8 92.893
## 715 31 322 1 999 1 -1.8 92.893
## 716 37 270 2 999 1 -1.8 93.075
## 717 30 29 8 999 1 -1.8 92.893
## 718 36 90 1 999 1 -1.8 93.075
## 719 38 180 2 999 1 -0.1 93.200
## 720 44 147 3 999 1 -1.8 92.893
## 721 57 82 1 999 1 -1.8 93.075
## 722 31 224 1 9 2 -1.7 94.027
## 723 48 10 4 999 1 -1.8 92.893
## 724 30 68 1 999 1 -1.8 92.893
## 725 33 78 5 999 1 -1.8 92.893
## 726 36 215 1 999 1 -2.9 92.201
## 727 56 169 1 999 1 -1.8 92.893
## 728 60 700 3 999 1 -1.7 94.055
## 729 44 201 2 999 1 -1.8 93.876
## 730 35 29 3 999 1 -1.8 93.075
## 731 26 297 1 999 1 -1.8 93.075
## 732 46 48 1 999 1 -0.1 93.200
## 733 41 381 1 999 1 -1.8 92.893
## 734 38 253 1 999 1 -0.1 93.200
## 735 32 216 2 999 1 -1.8 92.893
## 736 24 173 1 999 3 -1.8 93.876
## 737 66 82 3 999 3 -2.9 92.201
## 738 39 106 4 16 2 -3.4 92.379
## 739 34 207 1 999 1 -1.8 92.893
## 740 35 28 3 999 1 -0.1 93.200
## 741 37 63 2 999 2 -1.8 93.075
## 742 35 370 1 999 1 -0.1 93.200
## 743 38 25 5 999 1 -1.8 92.893
## 744 30 282 2 999 1 -0.1 93.200
## 745 36 294 1 999 1 -1.8 93.075
## 746 34 93 1 999 1 -3.4 92.649
## 747 59 13 6 999 1 -1.8 92.893
## 748 33 503 3 999 1 -1.8 92.893
## 749 38 78 1 999 1 -1.8 92.893
## 750 42 163 1 999 1 -1.8 92.893
## 751 35 83 2 999 1 -1.8 92.893
## 752 57 113 2 999 1 -1.8 93.075
## 753 32 61 2 999 1 -0.1 93.200
## 754 44 170 2 999 1 -0.1 93.200
## 755 25 238 6 999 2 -1.8 92.893
## 756 60 579 2 999 1 -1.8 93.075
## 757 55 140 3 999 1 -1.8 93.075
## 758 39 305 1 999 1 -1.8 92.893
## 759 37 598 1 999 1 -1.8 93.075
## 760 33 167 6 999 1 -1.8 92.893
## 761 53 414 2 999 1 -1.8 93.075
## 762 33 410 1 999 1 -3.4 92.431
## 763 53 358 1 999 1 -1.8 92.893
## 764 49 35 1 999 1 -0.1 93.200
## 765 34 44 2 999 1 -1.8 92.893
## 766 53 242 3 999 1 -0.1 93.200
## 767 49 47 1 999 1 -0.1 93.200
## 768 27 167 2 999 1 -1.8 92.893
## 769 25 844 5 999 2 -1.7 94.215
## 770 31 171 2 999 1 -0.1 93.200
## 771 34 239 1 999 1 -1.8 92.893
## 772 34 40 1 999 1 -1.8 92.893
## 773 59 268 1 999 1 -3.4 92.431
## 774 30 89 2 999 1 -0.1 93.200
## 775 36 127 1 999 2 -1.1 94.199
## 776 30 197 5 999 1 -0.1 93.200
## 777 36 163 1 999 1 -1.8 93.075
## 778 57 873 1 999 1 -1.8 92.893
## 779 33 167 3 999 1 -1.8 92.893
## 780 37 195 2 999 1 -1.8 92.893
## 781 44 75 2 999 1 -0.1 93.200
## 782 29 79 2 999 1 -1.8 92.893
## 783 29 332 2 999 1 -1.8 92.893
## 784 36 105 1 999 1 -1.8 92.893
## 785 45 204 2 999 1 -3.4 92.431
## 786 37 185 1 999 1 -1.8 92.893
## 787 23 314 1 999 1 -1.8 93.075
## 788 25 11 7 999 1 -1.8 92.893
## 789 51 295 1 999 1 -1.8 92.893
## 790 47 469 2 999 1 -1.8 92.893
## 791 40 103 2 999 1 -1.8 92.893
## 792 34 180 1 999 2 -1.1 94.767
## 793 51 302 1 999 1 -1.8 92.893
## 794 33 87 1 999 1 -1.8 92.893
## 795 27 97 1 999 1 -1.8 92.893
## 796 60 272 1 10 3 -1.1 94.601
## 797 29 747 2 999 1 -1.8 92.893
## 798 27 266 2 999 1 -1.7 94.055
## 799 35 209 1 999 2 -3.4 92.649
## 800 30 196 1 17 2 -1.1 94.601
## 801 40 883 1 999 1 -2.9 92.963
## 802 26 62 1 999 1 -1.8 92.893
## 803 33 246 9 999 2 -1.1 94.199
## 804 22 194 2 999 3 -1.1 94.199
## 805 31 242 2 999 2 -1.8 92.893
## 806 40 140 2 999 2 -1.8 93.075
## 807 26 410 3 999 1 -1.8 92.893
## 808 77 155 1 999 1 -1.8 93.075
## 809 33 53 1 999 1 -2.9 92.963
## 810 60 99 1 999 1 -1.8 92.893
## 811 31 45 1 999 1 -0.1 93.200
## 812 39 72 1 999 1 -1.8 93.075
## 813 38 278 2 999 1 -1.8 93.075
## 814 49 115 1 999 1 -1.8 92.893
## 815 36 267 1 999 1 -1.8 92.893
## 816 29 87 6 999 1 -1.8 92.893
## 817 33 496 2 999 1 -1.8 92.893
## 818 58 184 1 999 1 -1.8 92.893
## 819 43 42 2 999 1 -0.1 93.200
## 820 46 275 1 999 1 -1.8 92.893
## 821 81 621 1 999 2 -1.1 94.601
## 822 46 151 3 999 1 -2.9 92.201
## 823 56 154 1 999 1 -1.8 92.893
## 824 29 278 2 999 1 -1.8 92.893
## 825 48 146 2 999 2 -1.8 92.893
## 826 34 415 4 999 1 -1.8 92.893
## 827 40 269 1 999 1 -2.9 92.963
## 828 31 596 1 999 1 -1.8 93.075
## 829 38 48 4 999 1 -1.8 92.893
## 830 55 526 4 999 1 -1.8 92.893
## 831 48 219 1 999 1 -0.1 93.200
## 832 34 725 2 8 2 -3.4 92.649
## 833 29 431 2 999 2 -2.9 92.963
## 834 51 84 1 999 1 -1.8 93.075
## 835 47 62 2 999 1 -0.1 93.200
## 836 54 84 5 999 2 -1.7 94.215
## 837 74 188 2 999 1 -2.9 92.201
## 838 53 583 2 999 1 -1.8 93.075
## 839 54 154 1 999 1 -2.9 92.469
## 840 39 195 5 999 1 -1.8 92.893
## 841 44 271 2 999 1 -1.8 93.075
## 842 36 62 2 999 1 -1.8 92.893
## 843 57 93 1 999 1 -1.8 92.893
## 844 29 538 2 999 2 -1.8 93.876
## 845 42 120 2 999 1 -1.8 92.893
## 846 74 204 3 999 1 -2.9 92.201
## 847 34 70 1 999 1 -1.8 93.075
## 848 25 173 6 999 1 -1.8 92.893
## 849 34 56 1 999 1 -1.8 92.893
## 850 41 434 3 999 1 -1.8 92.893
## 851 79 61 1 999 1 -2.9 92.963
## 852 30 647 2 999 1 -1.8 93.075
## 853 32 79 1 999 1 -1.8 92.893
## 854 29 895 1 999 1 -0.1 93.200
## 855 28 225 1 999 2 -2.9 92.201
## 856 41 66 1 999 1 -1.8 92.893
## 857 59 542 3 999 1 -1.8 93.075
## 858 30 75 1 999 1 -3.4 92.379
## 859 26 112 1 999 1 -3.4 92.649
## 860 35 143 1 999 1 -1.8 92.893
## 861 34 115 2 999 1 -2.9 92.201
## 862 45 221 2 999 1 -0.1 93.200
## 863 40 45 4 999 1 -1.8 93.075
## 864 50 99 1 999 1 -1.8 93.075
## 865 47 57 1 9 2 -1.8 92.893
## 866 39 281 2 999 1 -0.1 93.200
## 867 34 250 1 10 2 -1.7 94.027
## 868 51 159 1 999 1 -1.8 92.893
## 869 39 135 2 999 2 -1.1 94.601
## 870 40 124 4 999 1 -0.1 93.200
## 871 36 1132 1 999 1 -0.1 93.200
## 872 42 590 2 999 1 -1.8 93.075
## 873 35 253 1 999 1 -1.8 93.075
## 874 43 1529 1 999 1 -2.9 92.201
## 875 48 99 1 999 1 -1.8 92.893
## 876 37 445 1 999 2 -1.8 93.075
## 877 38 332 2 999 1 -1.8 93.075
## 878 30 258 2 999 1 -0.1 93.200
## 879 35 339 4 999 1 -1.8 92.893
## 880 29 104 1 999 1 -0.1 93.200
## 881 40 181 1 999 1 -0.1 93.200
## 882 39 53 3 999 1 -1.8 92.893
## 883 55 182 1 999 1 -0.1 93.200
## 884 32 133 2 999 1 -1.8 92.893
## 885 64 89 1 999 1 -2.9 92.201
## 886 45 204 2 999 1 -3.4 92.431
## 887 29 58 1 999 1 -0.1 93.200
## 888 72 128 2 999 1 -1.7 94.215
## 889 41 380 4 999 1 -1.8 92.893
## 890 29 402 1 999 1 -0.1 93.200
## 891 35 282 1 999 1 -1.8 92.893
## 892 31 318 3 999 1 -1.8 92.893
## 893 37 395 1 999 1 -1.8 92.893
## 894 52 164 1 999 1 -1.1 94.767
## 895 29 401 1 999 1 -1.8 92.893
## 896 33 45 2 999 1 -0.1 93.200
## 897 60 700 3 999 1 -1.7 94.055
## 898 32 757 1 999 1 -1.8 92.893
## 899 53 583 2 999 1 -1.8 93.075
## 900 38 357 2 999 1 -1.8 93.075
## 901 43 121 2 999 1 -1.8 92.893
## 902 34 543 1 999 1 -2.9 92.201
## 903 34 144 3 999 1 -1.8 92.893
## 904 37 159 2 999 1 -1.8 92.893
## 905 46 89 3 999 1 -1.8 93.075
## 906 26 707 1 999 1 -1.8 93.075
## 907 28 76 2 999 1 -1.8 92.893
## 908 48 17 5 999 1 -1.8 92.893
## 909 42 124 1 999 1 -0.1 93.200
## 910 56 175 1 999 1 -1.8 93.369
## 911 27 139 6 999 1 -1.8 93.369
## 912 47 234 1 999 1 -1.8 93.075
## 913 32 67 1 999 1 -0.1 93.200
## 914 34 304 1 999 1 -1.8 92.893
## 915 54 127 1 999 1 -0.1 93.200
## 916 28 182 2 999 1 -1.8 92.893
## 917 54 158 1 999 1 -0.1 93.200
## 918 40 158 2 999 1 -1.8 93.075
## 919 51 181 2 999 1 -1.1 94.601
## 920 40 377 3 999 1 -1.8 93.075
## 921 66 369 2 999 1 -1.1 94.601
## 922 35 285 2 999 1 -1.8 92.893
## 923 25 682 3 999 1 -1.8 92.893
## 924 54 72 2 999 1 -2.9 92.469
## 925 43 997 1 999 1 -1.8 93.075
## 926 33 281 1 999 1 -1.8 92.893
## 927 36 157 2 999 1 -1.8 92.893
## 928 30 586 1 999 1 -1.8 92.893
## 929 64 130 1 999 1 -3.4 92.431
## 930 32 295 1 999 1 -0.1 93.200
## 931 26 707 1 999 1 -1.8 93.075
## 932 38 515 1 999 1 -1.8 92.893
## 933 26 54 1 999 1 -1.8 92.893
## 934 33 49 2 999 1 -1.8 92.893
## 935 62 517 2 999 1 -2.9 92.201
## 936 33 110 1 999 1 -1.8 92.893
## 937 35 185 3 999 1 -1.8 93.075
## 938 34 109 3 999 1 -1.1 94.199
## 939 54 397 1 999 1 -1.8 92.893
## 940 39 163 2 999 1 -0.1 93.200
## 941 33 266 2 999 1 -1.8 92.893
## 942 79 260 1 999 1 -1.8 93.876
## 943 36 180 2 999 2 -1.8 92.893
## 944 32 149 1 999 1 -1.8 92.893
## 945 22 699 2 999 1 -1.8 93.749
## 946 30 213 2 999 1 -1.8 92.893
## 947 27 775 2 8 2 -3.4 92.649
## 948 38 72 1 999 1 -1.8 93.075
## 949 30 59 2 999 1 -0.1 93.200
## 950 34 259 2 999 2 -1.8 93.075
## 951 50 129 1 999 1 -0.1 93.200
## 952 40 18 5 999 1 -1.8 92.893
## 953 39 739 2 999 1 -1.8 92.893
## 954 43 18 5 999 1 -1.8 93.075
## 955 31 472 1 999 1 -1.8 92.893
## 956 30 197 1 999 1 -1.8 92.893
## 957 28 73 1 999 1 -2.9 92.963
## 958 46 270 2 999 1 -1.8 93.075
## 959 28 254 2 999 1 -1.8 93.075
## 960 39 166 3 999 1 -1.8 92.893
## 961 45 133 3 999 1 -3.4 92.649
## 962 37 71 1 999 1 -1.8 92.893
## 963 28 157 2 999 1 -1.8 93.369
## 964 46 163 2 999 1 -0.1 93.200
## 965 28 99 4 999 1 -1.8 92.893
## 966 42 324 7 999 1 -0.1 93.200
## 967 34 250 1 10 2 -1.7 94.027
## 968 32 49 2 999 1 -2.9 92.963
## 969 61 228 2 999 1 -1.8 93.876
## 970 46 173 1 999 1 -1.1 94.767
## 971 30 102 1 999 1 -3.4 92.431
## 972 32 1233 1 999 1 -3.4 92.649
## 973 29 135 3 999 1 -1.8 92.893
## 974 32 363 1 999 1 -1.8 92.893
## 975 32 485 1 999 1 -0.1 93.200
## 976 21 145 1 999 1 -1.1 94.199
## 977 31 165 3 999 1 -1.8 92.893
## 978 51 526 2 999 1 -1.8 93.075
## 979 36 82 2 999 1 -0.1 93.200
## 980 70 91 1 999 1 -1.8 92.843
## 981 33 100 1 999 1 -0.1 93.200
## 982 43 184 1 999 2 -1.8 92.893
## 983 35 214 1 999 1 -1.8 93.075
## 984 24 147 1 999 1 -2.9 92.201
## 985 42 243 1 999 1 -1.8 93.075
## 986 38 110 1 999 1 -0.1 93.200
## 987 27 90 4 999 1 -1.8 92.893
## 988 46 98 2 999 1 -1.8 92.893
## 989 53 141 2 999 1 -1.7 94.027
## 990 42 157 1 999 1 -1.8 93.075
## 991 40 253 1 999 1 -1.8 92.893
## 992 34 121 2 999 1 -3.4 92.649
## 993 38 855 2 999 1 -1.8 92.893
## 994 25 959 3 999 1 -1.8 92.893
## 995 29 126 2 999 1 -1.8 92.893
## 996 70 422 3 999 1 -1.8 92.843
## 997 27 58 3 999 1 -1.8 92.893
## 998 55 336 1 999 1 -1.8 92.893
## 999 34 151 1 999 1 -2.9 92.963
## 1000 36 349 1 999 1 -1.8 92.893
## 1001 53 63 2 999 1 -1.8 92.893
## 1002 38 515 1 999 1 -1.8 92.893
## 1003 31 404 3 11 2 -2.9 92.963
## 1004 50 460 1 15 2 -2.9 92.201
## 1005 29 567 3 999 1 -1.8 92.893
## 1006 38 82 1 999 1 -3.4 92.431
## 1007 57 224 2 999 1 -0.1 93.200
## 1008 35 66 1 999 1 -1.8 93.075
## 1009 36 285 1 999 1 -1.8 92.893
## 1010 21 280 1 7 2 -3.4 92.649
## 1011 38 95 3 999 1 -1.8 93.075
## 1012 41 191 4 999 1 -1.8 93.075
## 1013 28 192 1 999 1 -1.8 92.893
## 1014 24 136 1 999 2 -2.9 92.201
## 1015 28 454 6 999 1 -3.0 92.713
## 1016 71 214 1 999 1 -1.8 93.075
## 1017 34 11 6 999 1 -1.8 92.893
## 1018 45 239 2 999 1 -0.1 93.200
## 1019 40 243 2 999 1 -0.1 93.200
## 1020 39 187 1 999 1 -1.8 93.075
## 1021 35 25 6 999 1 -1.8 92.893
## 1022 41 223 4 999 1 -1.8 92.893
## 1023 33 116 2 999 1 -1.8 92.893
## 1024 50 177 2 999 1 -1.8 93.075
## 1025 27 459 1 999 1 -2.9 92.963
## 1026 40 222 2 999 1 -1.8 92.893
## 1027 37 304 1 999 1 -1.8 93.075
## 1028 33 109 1 999 2 -1.7 94.027
## 1029 35 66 1 999 1 -1.8 92.893
## 1030 45 106 1 999 1 -3.4 92.649
## 1031 54 57 2 999 1 -1.8 92.893
## 1032 58 70 1 999 1 -0.1 93.200
## 1033 31 122 1 999 1 -1.8 92.893
## 1034 58 308 1 999 1 -0.1 93.200
## 1035 29 245 6 999 1 -1.8 92.893
## 1036 55 371 3 999 2 -1.8 93.075
## 1037 27 173 2 6 2 -3.4 92.379
## 1038 36 108 6 999 1 -1.8 93.075
## 1039 43 114 1 999 1 -1.8 92.893
## 1040 29 88 1 999 2 -1.7 94.215
## 1041 30 131 3 999 1 -0.1 93.200
## 1042 37 255 6 999 1 -1.8 92.893
## 1043 19 220 1 999 1 -1.8 93.876
## 1044 31 180 3 999 2 -1.8 92.893
## 1045 36 592 4 999 1 -1.8 93.075
## 1046 29 87 2 999 1 -3.4 92.431
## 1047 65 207 3 999 1 -3.0 92.713
## 1048 36 54 1 999 2 -1.8 92.893
## 1049 48 103 1 999 1 -0.1 93.200
## 1050 38 1361 1 999 1 -2.9 92.963
## 1051 45 55 6 999 1 -3.4 92.379
## 1052 35 745 1 999 1 -1.8 92.893
## 1053 38 134 1 999 1 -1.8 92.893
## 1054 40 110 1 999 1 -0.1 93.200
## 1055 38 611 1 999 1 -1.8 93.075
## 1056 32 1145 1 999 1 -1.8 92.893
## 1057 45 44 1 999 1 -1.8 92.893
## 1058 25 90 1 999 2 -2.9 92.201
## 1059 24 133 2 999 1 -1.1 94.601
## 1060 35 98 2 7 2 -3.4 92.649
## 1061 39 130 1 999 1 -0.1 93.200
## 1062 58 266 1 999 1 -1.8 93.075
## 1063 85 462 1 999 1 -1.8 93.749
## 1064 36 414 2 999 1 -1.8 92.893
## 1065 34 162 1 999 1 -1.8 92.893
## 1066 66 63 1 999 1 -1.8 93.075
## 1067 39 110 3 999 1 -3.0 92.713
## 1068 51 55 1 999 1 -1.8 92.893
## 1069 31 149 1 999 1 -0.1 93.200
## 1070 59 340 1 999 1 -2.9 92.963
## 1071 40 88 2 999 2 -3.4 92.649
## 1072 66 881 3 999 1 -1.8 93.369
## 1073 42 15 5 999 1 -1.8 92.893
## 1074 35 90 1 999 1 -1.8 92.893
## 1075 43 386 3 999 1 -1.7 94.215
## 1076 35 112 1 999 1 -1.8 92.893
## 1077 56 125 2 999 1 -1.8 92.893
## 1078 54 402 1 999 1 -1.8 93.075
## 1079 34 36 1 999 1 -1.8 92.893
## 1080 33 224 2 999 1 -1.1 94.199
## 1081 40 51 1 999 1 -0.1 93.200
## 1082 33 147 1 999 1 -1.8 92.893
## 1083 35 88 1 999 1 -1.8 92.893
## 1084 22 84 1 999 1 -1.8 93.369
## 1085 55 895 2 999 1 -1.8 92.893
## 1086 30 111 2 999 1 -2.9 92.963
## 1087 44 120 2 999 1 -0.1 93.200
## 1088 29 153 1 999 1 -0.1 93.200
## 1089 48 576 1 999 1 -1.8 93.075
## 1090 22 163 4 999 1 -2.9 92.963
## 1091 38 106 1 999 1 -2.9 92.201
## 1092 32 205 2 999 1 -1.8 93.075
## 1093 30 252 1 999 1 -1.8 92.893
## 1094 31 104 1 999 1 -1.8 93.075
## 1095 30 370 2 999 1 -1.7 94.027
## 1096 31 243 2 999 1 -1.8 93.876
## 1097 50 161 1 999 1 -0.1 93.200
## 1098 27 113 2 999 2 -1.7 94.215
## 1099 45 184 2 999 1 -1.8 93.075
## 1100 32 6 6 999 1 -1.8 93.075
## 1101 33 83 3 999 1 -0.1 93.200
## 1102 24 748 6 999 1 -1.8 92.893
## 1103 47 208 4 999 1 -1.8 92.893
## 1104 50 258 1 999 1 -3.4 92.431
## 1105 36 156 1 999 1 -2.9 92.963
## 1106 28 111 1 999 1 -1.8 92.893
## 1107 42 355 1 999 1 -3.4 92.431
## 1108 24 65 3 999 1 -2.9 92.963
## 1109 33 377 1 999 1 -1.8 92.893
## 1110 35 446 1 999 1 -1.8 92.893
## 1111 24 151 7 999 1 -2.9 92.963
## 1112 32 542 3 999 1 -1.8 92.893
## 1113 30 167 1 999 1 -0.1 93.200
## 1114 32 103 1 999 1 -2.9 92.963
## 1115 64 146 1 999 1 -2.9 92.201
## 1116 58 142 2 999 1 -0.1 93.200
## 1117 50 202 1 999 1 -0.1 93.200
## 1118 24 125 2 999 1 -1.8 93.749
## 1119 50 340 2 999 1 -0.1 93.200
## 1120 32 78 1 999 1 -0.1 93.200
## 1121 35 137 1 999 1 -1.8 93.075
## 1122 51 31 1 999 1 -1.8 92.893
## 1123 38 515 1 999 1 -1.8 92.893
## 1124 37 489 1 999 1 -1.8 93.876
## 1125 46 171 1 999 1 -0.1 93.200
## 1126 32 137 2 999 1 -1.8 92.893
## 1127 36 191 2 999 1 -1.8 92.893
## 1128 41 181 1 999 1 -1.8 92.893
## 1129 54 94 3 999 1 -1.8 93.075
## 1130 41 18 4 999 1 -1.8 92.893
## 1131 33 71 1 999 1 -1.8 93.075
## 1132 26 140 9 999 1 -1.8 92.893
## 1133 26 96 1 999 1 -2.9 92.963
## 1134 42 458 3 9 2 -1.8 92.893
## 1135 31 138 4 999 1 -1.8 92.893
## 1136 39 31 2 999 1 -1.8 92.893
## 1137 59 140 2 999 1 -0.1 93.200
## 1138 53 350 5 999 1 -1.8 92.893
## 1139 39 552 3 999 1 -0.1 93.200
## 1140 47 245 1 999 1 -1.8 93.075
## 1141 76 336 1 999 1 -3.4 92.379
## 1142 32 240 1 999 1 -1.8 92.893
## 1143 43 661 4 999 1 -0.1 93.200
## 1144 34 49 1 999 1 -1.8 92.893
## 1145 54 1745 3 999 1 -3.4 92.431
## 1146 25 595 3 999 1 -2.9 92.963
## 1147 25 108 3 999 1 -1.8 93.075
## 1148 64 171 3 999 1 -2.9 92.201
## 1149 59 193 1 999 1 -3.0 92.713
## 1150 41 155 4 999 1 -1.8 92.893
## 1151 35 91 1 999 1 -0.1 93.200
## 1152 48 715 1 999 1 -1.8 93.075
## 1153 33 333 1 999 1 -1.8 92.893
## 1154 23 720 1 999 1 -1.8 92.893
## 1155 58 49 1 999 2 -3.4 92.431
## 1156 38 218 1 999 1 -1.8 92.893
## 1157 49 163 1 999 1 -0.1 93.200
## 1158 42 334 1 999 1 -1.8 92.893
## 1159 32 352 2 999 2 -2.9 92.201
## 1160 37 170 1 999 2 -1.8 92.893
## 1161 58 292 6 999 1 -2.9 92.469
## 1162 34 303 1 999 1 -0.1 93.200
## 1163 35 178 1 999 1 -0.1 93.200
## 1164 21 220 7 999 1 -1.7 94.215
## 1165 31 289 3 999 1 -1.8 93.075
## 1166 36 36 2 999 1 -1.8 93.075
## 1167 57 429 4 999 1 -1.8 92.893
## 1168 45 1405 1 6 2 -1.1 94.199
## 1169 35 200 4 999 1 -1.8 92.893
## 1170 33 40 6 999 1 -1.8 92.893
## 1171 32 18 8 999 1 -1.8 92.893
## 1172 35 209 1 999 2 -3.4 92.649
## 1173 38 262 2 999 1 -2.9 92.963
## 1174 43 623 2 999 2 -1.8 93.075
## 1175 65 197 2 999 1 -2.9 92.201
## 1176 44 239 1 999 2 -1.8 93.075
## 1177 31 1156 1 999 1 -1.8 93.075
## 1178 40 121 1 999 1 -2.9 92.201
## 1179 29 69 1 999 1 -2.9 92.201
## 1180 28 296 1 999 1 -1.8 92.893
## 1181 27 227 1 999 1 -1.8 93.075
## 1182 29 155 1 999 1 -2.9 92.963
## 1183 40 217 1 999 1 -1.8 92.893
## 1184 24 220 1 999 1 -1.8 92.893
## 1185 33 135 1 999 1 -1.8 93.075
## 1186 33 253 3 999 2 -1.8 93.075
## 1187 52 204 1 999 1 -1.8 93.075
## 1188 27 224 2 999 1 -1.8 92.893
## 1189 40 324 1 999 1 -1.8 93.075
## 1190 34 162 2 999 2 -1.1 94.767
## 1191 30 165 1 999 1 -1.8 93.876
## 1192 34 247 1 999 1 -1.8 92.893
## 1193 73 127 2 999 3 -3.4 92.431
## 1194 39 365 6 999 1 -1.8 92.893
## 1195 36 951 3 999 1 -1.8 92.893
## 1196 46 1166 3 999 1 -1.1 94.767
## 1197 28 154 2 999 1 -1.8 92.893
## 1198 45 78 1 999 1 -1.8 92.893
## 1199 54 87 1 999 1 -1.8 92.893
## 1200 32 206 1 999 1 -1.7 94.215
## 1201 49 165 1 999 1 -3.4 92.431
## 1202 29 443 7 999 1 -1.8 92.893
## 1203 29 328 4 999 1 -0.1 93.200
## 1204 36 59 1 999 1 -0.1 93.200
## 1205 40 176 1 999 1 -1.8 93.075
## 1206 36 339 1 999 1 -3.4 92.379
## 1207 44 308 1 999 1 -1.8 93.075
## 1208 53 202 3 999 1 -1.8 92.893
## 1209 32 266 1 999 1 -0.1 93.200
## 1210 31 126 2 999 2 -1.8 93.075
## 1211 51 130 2 999 2 -1.1 94.601
## 1212 31 183 1 999 1 -1.8 92.893
## 1213 65 207 3 999 1 -3.0 92.713
## 1214 38 62 3 999 1 -0.1 93.200
## 1215 30 195 1 999 1 -0.1 93.200
## 1216 52 115 1 999 1 -0.1 93.200
## 1217 46 428 2 999 3 -1.7 94.027
## 1218 33 78 2 999 1 -1.8 93.369
## 1219 26 76 2 999 1 -1.8 92.893
## 1220 37 26 1 999 1 -1.8 92.893
## 1221 46 609 1 999 1 -1.8 93.075
## 1222 29 118 1 999 1 -1.8 92.893
## 1223 40 401 1 999 1 -0.1 93.200
## 1224 34 541 3 999 1 -1.8 92.893
## 1225 39 74 1 999 1 -0.1 93.200
## 1226 48 228 1 999 1 -1.8 93.075
## 1227 37 148 1 999 2 -2.9 92.201
## 1228 28 453 1 999 1 -1.7 94.027
## 1229 49 364 1 999 1 -1.8 92.893
## 1230 30 88 1 999 1 -0.1 93.200
## 1231 33 275 1 999 1 -1.8 92.893
## 1232 36 1095 1 999 1 -1.8 93.075
## 1233 26 598 4 12 3 -1.7 94.055
## 1234 24 191 2 999 3 -1.1 94.199
## 1235 34 248 1 999 1 -1.8 92.893
## 1236 32 38 7 999 1 -1.8 92.893
## 1237 35 148 1 999 1 -1.8 92.893
## 1238 52 157 1 999 1 -1.8 93.075
## 1239 25 682 3 999 1 -1.8 92.893
## 1240 55 114 1 999 1 -1.8 92.893
## 1241 41 491 1 999 2 -1.8 92.893
## 1242 43 139 2 999 1 -0.1 93.200
## 1243 70 268 2 999 1 -1.8 93.749
## 1244 28 115 2 999 1 -1.8 93.075
## 1245 25 131 2 999 1 -1.8 93.749
## 1246 32 116 1 999 1 -1.8 93.075
## 1247 37 147 2 999 1 -1.8 92.893
## 1248 36 19 8 999 1 -1.8 92.893
## 1249 37 221 2 999 1 -1.8 92.893
## 1250 52 160 3 999 1 -0.1 93.200
## 1251 34 72 2 999 1 -0.1 93.200
## 1252 20 1472 1 999 3 -1.8 93.749
## 1253 33 414 1 9 3 -1.1 94.199
## 1254 49 118 1 999 1 -0.1 93.200
## 1255 32 375 2 999 2 -1.1 94.601
## 1256 49 324 2 999 1 -1.8 92.893
## 1257 33 118 2 999 1 -1.8 92.893
## 1258 28 66 1 999 1 -2.9 92.963
## 1259 37 71 3 999 1 -1.8 92.893
## 1260 30 73 1 999 1 -0.1 93.200
## 1261 52 54 2 999 1 -1.8 92.893
## 1262 41 800 2 999 1 -3.4 92.379
## 1263 53 168 2 999 1 -3.4 92.379
## 1264 61 196 1 999 1 -1.8 93.749
## 1265 29 86 2 999 1 -2.9 92.469
## 1266 26 215 1 999 1 -2.9 92.201
## 1267 39 99 2 999 2 -1.8 92.893
## 1268 45 158 1 999 1 -3.4 92.649
## 1269 33 105 4 999 1 -1.8 92.893
## 1270 30 64 2 999 1 -0.1 93.200
## 1271 40 224 1 999 1 -3.4 92.379
## 1272 52 161 1 999 1 -0.1 93.200
## 1273 36 217 1 999 1 -1.8 92.893
## 1274 35 25 1 999 1 -1.8 92.893
## 1275 38 190 5 999 1 -0.1 93.200
## 1276 62 105 3 999 1 -3.4 92.379
## 1277 51 79 1 999 1 -2.9 92.963
## 1278 38 351 2 999 1 -1.8 92.893
## 1279 29 226 3 999 1 -1.8 92.893
## 1280 56 163 2 999 1 -0.1 93.200
## 1281 27 244 1 999 1 -1.8 92.893
## 1282 47 129 3 999 2 -1.7 94.215
## 1283 29 98 2 999 1 -1.8 92.893
## 1284 43 47 1 999 1 -1.8 92.893
## 1285 26 707 1 999 1 -1.8 93.075
## 1286 53 100 1 999 1 -2.9 92.201
## 1287 45 362 1 999 2 -1.8 93.075
## 1288 33 492 1 12 2 -1.8 92.893
## 1289 34 182 2 999 1 -1.8 93.075
## 1290 34 281 1 999 2 -3.4 92.431
## 1291 52 551 1 999 3 -3.4 92.649
## 1292 49 204 1 999 1 -1.8 92.893
## 1293 23 268 5 999 1 -1.7 94.215
## 1294 45 165 3 999 1 -0.1 93.200
## 1295 59 8 6 999 1 -1.8 92.893
## 1296 44 223 1 999 1 -2.9 92.963
## 1297 70 1962 1 999 2 -3.4 92.379
## 1298 36 592 4 999 1 -1.8 93.075
## 1299 86 186 2 999 2 -1.8 93.369
## 1300 36 246 1 999 1 -1.8 92.893
## 1301 27 162 2 999 1 -1.8 92.893
## 1302 46 144 2 999 1 -3.4 92.379
## 1303 29 41 2 999 1 -1.8 92.893
## 1304 33 257 1 999 1 -2.9 92.201
## 1305 67 177 2 999 1 -2.9 92.963
## 1306 34 183 1 999 1 -1.8 93.075
## 1307 47 177 1 999 1 -1.8 92.893
## 1308 36 317 1 999 1 -1.8 92.893
## 1309 47 903 2 999 1 -1.8 93.075
## 1310 27 300 1 999 1 -1.8 92.893
## 1311 34 346 1 999 1 -1.7 94.215
## 1312 22 108 2 999 1 -1.8 93.075
## 1313 34 145 1 999 2 -1.8 93.876
## 1314 47 183 3 999 1 -0.1 93.200
## 1315 29 231 1 999 1 -1.8 92.843
## 1316 36 87 4 999 1 -1.8 92.893
## 1317 37 372 1 999 1 -0.1 93.200
## 1318 33 89 1 999 1 -2.9 92.963
## 1319 50 600 3 999 1 -0.1 93.200
## 1320 54 984 1 999 1 -1.8 92.893
## 1321 46 385 2 999 1 -1.8 93.075
## 1322 48 24 7 999 1 -1.8 92.893
## 1323 46 91 1 999 1 -1.8 93.075
## 1324 26 161 1 999 1 -1.8 92.893
## 1325 35 745 1 999 1 -1.8 92.893
## 1326 44 92 3 999 1 -1.8 93.075
## 1327 36 105 2 999 1 -0.1 93.200
## 1328 45 126 2 999 1 -0.1 93.200
## 1329 49 128 3 999 1 -1.8 92.893
## 1330 58 198 1 999 1 -1.1 94.199
## 1331 49 214 3 999 1 -1.8 92.893
## 1332 26 95 3 999 3 -1.7 94.027
## 1333 56 382 1 999 1 -1.8 93.369
## 1334 31 92 1 999 1 -1.8 93.075
## 1335 70 73 3 999 1 -2.9 92.201
## 1336 36 67 2 999 1 -0.1 93.200
## 1337 57 208 3 999 1 -0.1 93.200
## 1338 28 121 1 999 1 -1.8 93.075
## 1339 32 96 3 999 1 -3.4 92.649
## 1340 35 92 3 999 4 -1.1 94.767
## 1341 36 68 1 999 1 -0.1 93.200
## 1342 54 9 3 999 1 -0.1 93.200
## 1343 33 309 3 999 1 -0.1 93.200
## 1344 42 551 1 999 1 -1.8 92.893
## 1345 37 249 2 999 1 -3.4 92.431
## 1346 49 89 1 999 1 -1.8 92.893
## 1347 41 696 2 7 3 -3.4 92.649
## 1348 52 143 5 999 1 -3.4 92.649
## 1349 25 383 2 999 2 -1.7 94.055
## 1350 32 151 4 999 1 -1.8 93.075
## 1351 51 87 2 999 1 -0.1 93.200
## 1352 44 569 1 999 1 -1.8 92.893
## 1353 48 319 2 999 1 -0.1 93.200
## 1354 59 600 2 999 1 -1.8 92.893
## 1355 44 149 1 999 1 -0.1 93.200
## 1356 39 370 1 999 1 -1.8 93.075
## 1357 38 254 1 9 3 -1.1 94.601
## 1358 35 60 2 999 2 -1.8 92.893
## 1359 26 133 2 999 1 -3.4 92.431
## 1360 38 189 3 999 1 -1.8 93.075
## 1361 59 111 3 999 1 -1.8 93.075
## 1362 26 76 2 999 1 -2.9 92.963
## 1363 52 127 4 999 1 -0.1 93.200
## 1364 62 170 1 999 1 -3.4 92.379
## 1365 21 24 1 999 1 -1.8 92.893
## 1366 36 82 1 999 1 -0.1 93.200
## 1367 28 178 2 999 1 -1.8 92.893
## 1368 34 283 3 999 1 -1.8 92.893
## 1369 47 40 1 999 1 -1.8 93.075
## 1370 57 758 1 999 1 -1.8 92.893
## 1371 33 112 2 999 1 -1.8 92.893
## 1372 29 444 2 999 1 -1.8 92.893
## 1373 51 228 1 999 2 -1.1 94.199
## 1374 36 1434 2 999 1 -1.8 92.893
## 1375 41 319 2 999 1 -1.8 93.075
## 1376 41 426 1 999 1 -1.8 92.893
## 1377 31 41 1 999 1 -1.8 92.893
## 1378 52 147 1 999 1 -0.1 93.200
## 1379 32 172 1 999 1 -2.9 92.963
## 1380 27 238 1 999 2 -1.7 94.055
## 1381 51 122 1 999 1 -1.8 92.893
## 1382 50 460 1 15 2 -2.9 92.201
## 1383 45 66 1 999 1 -0.1 93.200
## 1384 43 393 1 999 1 -1.8 92.893
## 1385 31 50 2 999 1 -1.8 92.893
## 1386 39 149 1 999 1 -0.1 93.200
## 1387 31 128 1 999 1 -1.8 92.893
## 1388 31 39 2 999 1 -0.1 93.200
## 1389 33 191 1 999 2 -1.8 93.075
## 1390 31 22 7 999 1 -1.8 92.893
## 1391 32 327 1 999 1 -0.1 93.200
## 1392 66 810 3 999 2 -2.9 92.201
## 1393 40 388 2 999 1 -1.8 92.893
## 1394 49 172 2 9 2 -1.8 92.893
## 1395 38 541 1 999 1 -1.8 92.893
## 1396 30 34 1 999 1 -0.1 93.200
## 1397 27 80 1 999 1 -1.8 92.893
## 1398 30 79 4 999 1 -1.8 92.893
## 1399 53 169 1 999 1 -0.1 93.200
## 1400 29 135 3 999 1 -1.8 93.749
## 1401 31 172 2 999 1 -1.8 92.893
## 1402 23 267 1 999 2 -1.7 94.215
## 1403 35 129 1 999 1 -1.8 93.075
## 1404 32 103 3 999 1 -1.8 92.893
## 1405 33 1024 3 999 1 -1.8 92.893
## 1406 30 106 2 999 1 -0.1 93.200
## 1407 33 367 2 999 1 -1.8 92.893
## 1408 49 80 5 999 1 -0.1 93.200
## 1409 43 818 2 999 1 -1.8 93.075
## 1410 43 415 2 8 2 -3.0 92.713
## 1411 34 154 2 999 1 -1.8 92.893
## 1412 38 284 1 999 1 -1.8 93.075
## 1413 48 122 1 999 1 -0.1 93.200
## 1414 27 102 1 999 1 -1.8 92.893
## 1415 36 427 2 999 1 -1.8 93.075
## 1416 56 212 1 999 1 -0.1 93.200
## 1417 34 281 2 999 1 -1.8 92.893
## 1418 25 294 1 999 1 -3.4 92.431
## 1419 34 234 1 999 1 -1.8 92.893
## 1420 41 903 3 999 1 -0.1 93.200
## 1421 21 97 2 999 1 -1.8 92.893
## 1422 42 174 2 999 2 -1.8 93.075
## 1423 39 171 1 999 1 -1.8 92.893
## 1424 32 389 4 999 1 -1.8 93.876
## 1425 38 126 1 7 4 -3.4 92.649
## 1426 27 217 1 999 2 -3.4 92.649
## 1427 28 72 3 999 1 -1.8 92.893
## 1428 27 537 2 999 1 -2.9 92.469
## 1429 30 132 1 999 1 -1.8 92.893
## 1430 27 775 2 8 2 -3.4 92.649
## 1431 39 301 1 999 1 -1.8 92.893
## 1432 34 72 4 999 1 -1.8 92.893
## 1433 41 333 2 999 1 -1.8 92.893
## 1434 46 166 5 999 4 -1.8 93.749
## 1435 34 85 1 999 1 -1.8 93.075
## 1436 35 508 3 999 2 -1.8 92.893
## 1437 55 376 2 999 1 -1.8 93.075
## 1438 23 116 5 9 2 -3.4 92.649
## 1439 34 6 6 999 1 -1.8 92.893
## 1440 29 199 2 999 1 -1.8 92.893
## 1441 49 289 1 999 1 -1.8 93.075
## 1442 32 444 1 999 1 -3.4 92.379
## 1443 33 468 2 999 1 -1.8 92.893
## 1444 27 64 2 999 1 -1.8 92.893
## 1445 33 96 6 999 1 -1.8 92.893
## 1446 43 286 1 999 1 -1.8 92.893
## 1447 34 707 1 999 2 -1.8 93.075
## 1448 30 16 8 999 1 -1.8 92.893
## 1449 39 459 1 999 1 -2.9 92.963
## 1450 34 311 3 999 1 -1.8 92.893
## 1451 36 1347 2 999 1 -1.8 92.893
## 1452 49 805 2 999 1 -1.8 93.075
## 1453 42 80 1 999 1 -1.8 92.893
## 1454 19 205 1 999 1 -1.8 93.075
## 1455 28 133 4 999 1 -1.1 94.199
## 1456 48 224 3 999 2 -1.8 93.075
## 1457 36 592 2 999 1 -1.8 92.893
## 1458 23 92 1 999 1 -2.9 92.963
## 1459 44 318 1 999 1 -1.8 92.893
## 1460 55 284 1 999 1 -3.0 92.713
## 1461 37 188 4 999 1 -1.8 92.893
## 1462 32 322 2 999 1 -1.8 93.075
## 1463 51 280 2 999 1 -2.9 92.963
## 1464 31 213 1 999 1 -1.8 92.893
## 1465 35 130 3 999 1 -1.8 92.893
## 1466 35 311 1 999 1 -1.8 93.075
## 1467 29 106 1 999 1 -1.8 92.893
## 1468 55 131 2 999 1 -0.1 93.200
## 1469 25 92 1 999 2 -3.4 92.379
## 1470 31 117 2 999 1 -1.8 92.893
## 1471 23 270 3 999 1 -1.1 94.199
## 1472 50 146 1 999 1 -1.8 92.893
## 1473 40 247 2 999 1 -1.8 92.893
## 1474 40 169 1 999 1 -1.8 93.075
## 1475 37 93 1 999 1 -1.8 92.893
## 1476 39 120 1 999 1 -1.8 93.075
## 1477 30 275 1 999 5 -1.1 94.199
## 1478 58 128 1 999 1 -1.8 92.893
## 1479 57 203 2 999 1 -1.8 93.075
## 1480 30 169 2 999 1 -1.8 92.893
## 1481 31 270 1 999 1 -1.8 93.075
## 1482 40 524 3 999 1 -3.4 92.431
## 1483 38 426 2 999 1 -0.1 93.200
## 1484 40 124 3 999 1 -0.1 93.200
## 1485 57 259 1 999 1 -1.8 92.893
## 1486 26 191 1 999 1 -1.8 92.893
## 1487 27 314 2 999 1 -1.8 93.075
## 1488 52 285 2 999 1 -0.1 93.200
## 1489 24 252 1 999 1 -1.8 93.749
## 1490 80 720 5 999 1 -3.0 92.713
## 1491 41 371 2 999 1 -1.1 94.767
## 1492 20 532 1 999 1 -2.9 92.201
## 1493 66 369 2 999 1 -1.1 94.601
## 1494 37 262 2 999 1 -1.8 92.893
## 1495 70 167 2 999 1 -1.8 93.075
## 1496 35 371 1 999 1 -3.4 92.431
## 1497 40 957 1 999 1 -0.1 93.200
## 1498 33 637 4 999 1 -1.8 92.893
## 1499 24 109 1 999 1 -1.8 92.893
## 1500 41 121 1 999 1 -0.1 93.200
## 1501 32 84 2 999 1 -1.8 92.893
## 1502 31 427 1 999 1 -1.8 93.075
## 1503 28 824 1 999 2 -1.8 93.075
## 1504 37 1087 2 999 1 -1.8 93.075
## 1505 29 342 1 999 1 -1.8 92.893
## 1506 36 163 2 999 1 -0.1 93.200
## 1507 33 41 2 999 1 -0.1 93.200
## 1508 32 13 1 999 1 -1.7 94.055
## 1509 82 63 1 999 1 -3.4 92.431
## 1510 51 81 1 999 1 -1.8 93.075
## 1511 80 78 1 999 1 -3.4 92.431
## 1512 35 106 1 999 1 -1.8 92.893
## 1513 46 107 4 999 1 -1.8 92.893
## 1514 42 300 5 999 1 -1.8 92.893
## 1515 48 796 1 999 1 -1.8 92.893
## 1516 41 116 4 999 1 -1.8 92.893
## 1517 34 98 1 999 1 -0.1 93.200
## 1518 28 77 1 999 1 -1.8 92.893
## 1519 37 294 1 999 1 -1.7 94.215
## 1520 42 295 2 999 1 -0.1 93.200
## 1521 52 652 2 999 1 -0.1 93.200
## 1522 40 250 1 999 1 -1.8 93.075
## 1523 38 159 1 999 1 -1.8 92.893
## 1524 34 164 1 999 1 -0.1 93.200
## 1525 40 155 3 999 1 -1.8 93.075
## 1526 63 268 1 999 1 -3.4 92.379
## 1527 35 211 1 999 1 -1.8 92.893
## 1528 45 445 2 999 1 -1.8 92.893
## 1529 68 220 2 999 1 -1.7 94.055
## 1530 52 167 1 10 4 -2.9 92.201
## 1531 36 159 1 999 1 -1.8 92.893
## 1532 36 249 4 999 1 -1.8 92.893
## 1533 56 150 1 999 1 -3.4 92.649
## 1534 31 269 2 999 1 -3.4 92.431
## 1535 30 61 3 999 1 -0.1 93.200
## 1536 48 301 1 999 1 -0.1 93.200
## 1537 25 121 1 15 2 -2.9 92.201
## 1538 68 76 1 999 1 -3.4 92.431
## 1539 48 276 2 999 1 -1.8 92.893
## 1540 55 108 4 999 1 -0.1 93.200
## 1541 42 65 2 999 1 -0.1 93.200
## 1542 46 175 2 999 1 -1.8 92.893
## 1543 46 127 1 999 1 -1.8 92.893
## 1544 53 81 1 999 2 -2.9 92.201
## 1545 31 148 6 999 1 -0.1 93.200
## 1546 33 222 2 999 2 -2.9 92.201
## 1547 51 93 1 999 1 -0.1 93.200
## 1548 54 264 1 999 1 -1.8 92.893
## 1549 22 382 3 999 1 -1.8 92.893
## 1550 57 10 5 999 1 -1.8 92.893
## 1551 43 216 2 999 1 -1.8 93.075
## 1552 29 528 1 999 1 -1.8 92.893
## 1553 29 178 2 15 2 -1.7 94.215
## 1554 29 123 2 12 2 -1.1 94.601
## 1555 32 376 1 999 2 -3.4 92.431
## 1556 40 55 1 999 1 -0.1 93.200
## 1557 60 700 3 999 1 -1.7 94.055
## 1558 35 220 1 999 1 -1.8 92.893
## 1559 34 437 2 999 1 -1.8 92.893
## 1560 38 715 2 999 1 -1.8 93.075
## 1561 25 57 2 999 1 -2.9 92.963
## 1562 34 159 1 999 1 -1.8 92.893
## 1563 33 88 2 999 1 -0.1 93.200
## 1564 29 329 2 999 1 -1.8 93.075
## 1565 36 85 2 999 1 -1.8 92.893
## 1566 37 343 2 999 1 -1.8 93.075
## 1567 30 59 1 999 1 -3.4 92.431
## 1568 38 39 1 999 1 -0.1 93.798
## 1569 30 228 1 999 1 -0.1 93.200
## 1570 38 1624 1 999 2 -1.8 93.075
## 1571 32 177 1 999 1 -1.8 92.893
## 1572 60 174 2 25 2 -1.7 94.215
## 1573 50 408 1 999 1 -0.1 93.200
## 1574 37 608 2 12 2 -1.1 94.601
## 1575 55 77 1 999 1 -1.8 92.893
## 1576 23 380 2 999 1 -1.8 92.893
## 1577 26 119 1 999 1 -1.8 92.893
## 1578 36 490 3 999 2 -1.8 93.075
## 1579 23 370 1 999 1 -2.9 92.469
## 1580 39 206 1 999 1 -2.9 92.963
## 1581 32 188 1 999 1 -1.8 93.075
## 1582 33 337 1 999 1 -1.8 92.893
## 1583 20 625 1 999 1 -2.9 92.469
## 1584 37 31 7 999 1 -1.8 92.893
## 1585 74 369 1 999 1 -1.7 94.055
## 1586 36 159 2 999 1 -1.8 92.893
## 1587 40 72 1 999 1 -1.8 93.075
## 1588 55 197 3 999 1 -1.8 92.893
## 1589 35 16 6 999 1 -1.8 92.893
## 1590 53 251 4 999 1 -1.8 92.893
## 1591 26 135 4 999 1 -1.8 92.893
## 1592 24 91 1 999 1 -1.8 92.893
## 1593 39 82 2 999 1 -1.8 92.893
## 1594 64 102 1 999 1 -2.9 92.201
## 1595 51 214 2 999 1 -1.8 92.893
## 1596 21 968 1 13 2 -1.7 94.215
## 1597 40 58 1 999 1 -0.1 93.200
## 1598 40 274 1 999 1 -1.8 93.075
## 1599 50 587 2 999 1 -2.9 92.201
## 1600 46 226 1 999 1 -0.1 93.200
## 1601 39 168 1 999 1 -1.7 94.055
## 1602 42 456 2 999 1 -1.8 92.893
## 1603 51 841 2 999 2 -1.1 94.199
## 1604 36 220 2 999 1 -2.9 92.201
## 1605 33 339 1 999 1 -1.8 92.893
## 1606 31 88 1 999 1 -0.1 93.200
## 1607 40 131 2 999 1 -1.8 92.893
## 1608 34 362 1 999 1 -1.8 92.893
## 1609 35 280 1 999 1 -1.8 93.075
## 1610 39 198 2 999 1 -1.8 93.075
## 1611 38 24 1 999 1 -0.1 93.200
## 1612 60 186 3 999 1 -2.9 92.201
## 1613 51 314 1 999 1 -1.8 93.075
## 1614 48 111 2 999 1 -1.8 93.075
## 1615 32 104 1 999 1 -1.8 92.893
## 1616 34 132 2 999 1 -1.8 93.075
## 1617 46 207 2 999 1 -0.1 93.200
## 1618 42 185 1 7 3 -1.8 93.369
## 1619 32 247 1 6 3 -3.4 92.649
## 1620 36 141 1 999 1 -1.8 92.843
## 1621 29 268 1 999 1 -1.8 93.075
## 1622 53 348 6 999 2 -1.7 94.055
## 1623 36 197 1 999 1 -1.8 92.893
## 1624 58 145 1 999 2 -1.1 94.199
## 1625 28 244 1 999 1 -1.8 92.893
## 1626 48 288 1 999 1 -1.7 94.215
## 1627 53 730 1 999 1 -3.4 92.379
## 1628 43 108 6 999 1 -1.8 92.893
## 1629 47 639 3 999 1 -3.4 92.379
## 1630 40 1122 2 999 1 -0.1 93.200
## 1631 33 435 2 999 1 -1.8 92.893
## 1632 30 97 1 999 1 -1.8 92.893
## 1633 40 294 1 999 1 -1.8 93.075
## 1634 34 200 3 999 1 -1.8 92.893
## 1635 45 77 1 999 1 -1.8 92.893
## 1636 41 369 1 999 1 -0.1 93.200
## 1637 44 874 2 999 1 -1.7 94.055
## 1638 58 164 2 999 1 -0.1 93.200
## 1639 32 1233 1 999 1 -3.4 92.649
## 1640 35 60 1 999 1 -1.8 92.893
## 1641 41 203 1 999 1 -1.8 93.075
## 1642 34 542 4 999 1 -1.8 92.893
## 1643 49 17 8 999 1 -1.8 92.893
## 1644 33 318 1 999 1 -1.8 92.893
## 1645 41 102 2 999 1 -0.1 93.200
## 1646 34 123 1 999 1 -1.8 92.893
## 1647 50 247 1 999 1 -1.8 92.893
## 1648 40 326 1 999 1 -1.8 93.075
## 1649 40 171 1 999 1 -1.8 92.893
## 1650 28 189 1 999 1 -1.8 92.893
## 1651 42 190 2 999 1 -1.8 93.075
## 1652 59 383 4 999 1 -0.1 93.200
## 1653 59 97 2 999 1 -1.8 92.893
## 1654 28 48 3 999 1 -1.8 92.893
## 1655 42 122 1 999 1 -2.9 92.963
## 1656 47 142 4 999 1 -1.8 92.893
## 1657 57 486 2 999 1 -0.1 93.200
## 1658 38 222 2 999 1 -1.8 92.893
## 1659 78 173 2 999 1 -1.7 94.215
## 1660 36 65 1 999 1 -1.8 92.893
## 1661 37 64 3 999 1 -1.8 93.075
## 1662 33 332 4 999 1 -1.8 92.893
## 1663 39 301 1 999 1 -1.8 92.893
## 1664 34 265 1 999 1 -2.9 92.201
## 1665 33 383 3 999 1 -1.8 93.075
## 1666 39 222 2 999 1 -1.8 92.893
## 1667 30 175 1 999 1 -0.1 93.200
## 1668 33 295 1 999 1 -0.1 93.200
## 1669 47 103 1 999 1 -0.1 93.200
## 1670 30 585 4 999 1 -0.1 93.200
## 1671 32 157 4 999 1 -1.8 92.893
## 1672 38 170 2 999 1 -1.8 92.893
## 1673 27 88 1 999 1 -1.8 92.893
## 1674 36 101 1 999 1 -1.8 93.075
## 1675 33 442 2 999 3 -1.7 94.055
## 1676 26 371 2 999 2 -3.4 92.649
## 1677 30 77 1 999 1 -1.8 92.893
## 1678 49 169 1 999 1 -3.4 92.379
## 1679 51 67 6 6 3 -3.4 92.431
## 1680 74 239 3 999 1 -1.1 94.767
## 1681 29 315 2 999 1 -1.8 92.893
## 1682 45 329 1 999 1 -1.8 93.075
## 1683 43 611 1 999 1 -1.8 93.075
## 1684 59 86 1 999 2 -3.4 92.431
## 1685 54 461 2 999 1 -1.8 93.075
## 1686 68 1248 2 999 1 -3.4 92.649
## 1687 41 152 1 999 1 -1.8 92.893
## 1688 29 346 4 999 1 -0.1 93.200
## 1689 44 69 1 999 1 -1.8 92.893
## 1690 63 235 1 6 2 -2.9 92.201
## 1691 34 103 3 999 1 -0.1 93.200
## 1692 72 207 8 999 1 -2.9 92.201
## 1693 46 184 2 999 1 -0.1 93.200
## 1694 33 144 1 999 1 -2.9 92.963
## 1695 42 130 1 999 1 -1.8 93.075
## 1696 49 668 1 999 1 -1.8 92.893
## 1697 35 304 1 999 2 -1.7 94.215
## 1698 35 109 1 999 1 -1.8 92.893
## 1699 27 207 1 999 1 -1.8 92.893
## 1700 38 186 1 999 1 -1.8 92.893
## 1701 37 148 1 999 2 -2.9 92.201
## 1702 49 288 1 999 1 -0.1 93.200
## 1703 41 296 1 999 1 -1.8 92.893
## 1704 76 61 1 999 1 -2.9 92.201
## 1705 68 110 1 999 2 -2.9 92.201
## 1706 28 119 1 999 1 -2.9 92.201
## 1707 51 231 1 999 1 -1.8 92.893
## 1708 46 163 2 999 1 -1.8 93.075
## 1709 38 106 1 999 2 -1.7 94.055
## 1710 31 44 1 999 1 -0.1 93.200
## 1711 34 49 5 999 1 -1.8 93.075
## 1712 55 628 1 999 1 -1.8 93.075
## 1713 46 182 1 999 1 -1.8 92.893
## 1714 39 60 2 999 1 -0.1 93.200
## 1715 58 127 1 999 1 -1.8 92.893
## 1716 36 68 3 999 2 -1.8 93.075
## 1717 40 213 1 999 1 -1.8 92.893
## 1718 51 526 2 999 1 -1.8 93.075
## 1719 50 446 6 999 1 -1.8 92.893
## 1720 31 157 1 999 1 -1.8 92.893
## 1721 32 93 2 999 1 -1.8 92.843
## 1722 55 461 2 999 1 -1.8 93.075
## 1723 55 250 1 999 2 -3.4 92.431
## 1724 45 71 1 999 1 -0.1 93.200
## 1725 80 105 6 999 3 -1.8 93.075
## 1726 85 462 1 999 1 -1.8 93.749
## 1727 42 37 2 999 1 -1.8 92.893
## 1728 45 220 4 999 1 -0.1 93.200
## 1729 44 76 1 999 1 -0.1 93.200
## 1730 32 97 1 999 1 -1.8 92.893
## 1731 40 67 1 999 1 -1.8 92.893
## 1732 34 182 2 999 1 -0.1 93.200
## 1733 48 141 2 999 1 -0.1 93.200
## 1734 46 7 7 999 1 -1.8 92.893
## 1735 35 301 1 999 1 -1.8 92.893
## 1736 33 119 2 999 3 -1.8 93.369
## 1737 36 145 1 999 2 -1.8 92.893
## 1738 51 97 1 999 1 -2.9 92.469
## 1739 46 358 1 999 1 -0.1 93.200
## 1740 48 627 2 5 3 -1.8 93.075
## 1741 34 215 2 999 2 -1.8 92.893
## 1742 34 180 2 999 1 -1.8 93.075
## 1743 48 57 2 999 1 -1.8 92.893
## 1744 31 374 2 999 1 -1.8 92.893
## 1745 35 516 1 999 1 -1.8 92.893
## 1746 39 598 2 999 2 -1.8 93.075
## 1747 33 124 1 999 1 -1.8 92.893
## 1748 47 155 1 999 1 -3.0 92.713
## 1749 22 162 2 999 1 -2.9 92.201
## 1750 29 257 2 999 1 -3.4 92.649
## 1751 39 21 8 999 1 -1.8 92.893
## 1752 53 705 1 999 1 -2.9 92.963
## 1753 24 696 1 999 2 -2.9 92.963
## 1754 31 325 1 999 1 -1.8 92.893
## 1755 52 259 1 999 1 -3.4 92.649
## 1756 30 60 1 999 1 -1.8 92.893
## 1757 46 984 1 999 1 -1.8 92.893
## 1758 52 9 1 999 1 -1.7 94.215
## 1759 28 223 3 999 2 -1.1 94.767
## 1760 31 130 2 999 2 -1.8 92.893
## 1761 47 104 1 999 1 -0.1 93.200
## 1762 30 131 1 999 1 -1.7 94.055
## 1763 42 406 3 999 1 -1.8 93.075
## 1764 38 161 1 999 1 -1.8 92.893
## 1765 34 30 1 999 1 -1.8 92.893
## 1766 50 135 4 999 1 -1.7 94.055
## 1767 35 65 4 999 1 -1.8 92.893
## 1768 44 240 1 999 2 -1.8 93.075
## 1769 22 355 1 999 2 -1.7 94.055
## 1770 42 81 6 999 1 -0.1 93.200
## 1771 31 104 3 999 1 -1.8 92.893
## 1772 34 65 2 999 1 -1.8 92.893
## 1773 33 52 1 999 1 -1.8 92.893
## 1774 30 55 2 999 1 -1.8 92.893
## 1775 23 158 1 999 1 -1.8 92.893
## 1776 32 123 1 999 1 -2.9 92.963
## 1777 43 997 1 999 1 -1.8 93.075
## 1778 28 190 3 999 1 -2.9 92.201
## 1779 76 184 6 999 1 -3.0 92.713
## 1780 49 55 2 999 2 -1.8 92.893
## 1781 50 402 4 999 1 -0.1 93.200
## 1782 39 197 2 999 1 -1.8 92.893
## 1783 33 153 1 999 1 -1.8 93.075
## 1784 79 163 1 999 1 -2.9 92.963
## 1785 68 97 1 999 2 -3.0 92.713
## 1786 40 132 5 999 1 -1.8 92.893
## 1787 54 200 2 10 4 -1.1 94.767
## 1788 33 148 3 999 1 -0.1 93.200
## 1789 52 154 2 999 1 -1.8 92.893
## 1790 44 173 2 999 1 -1.8 92.893
## 1791 46 1210 4 999 1 -2.9 92.963
## 1792 32 223 1 999 1 -0.1 93.200
## 1793 50 241 2 999 1 -0.1 93.200
## 1794 39 159 1 999 1 -0.1 93.200
## 1795 51 51 2 999 1 -0.1 93.200
## 1796 47 151 2 999 1 -1.8 93.075
## 1797 39 381 1 999 1 -1.8 93.075
## 1798 41 135 1 999 1 -1.8 93.075
## 1799 28 185 1 999 1 -1.8 92.893
## 1800 45 111 2 999 1 -1.7 94.027
## 1801 47 258 1 999 1 -0.1 93.200
## 1802 25 312 2 999 2 -1.7 94.215
## 1803 40 414 2 999 3 -1.1 94.767
## 1804 34 137 1 999 1 -1.8 92.893
## 1805 36 109 1 999 1 -1.8 93.876
## 1806 37 295 1 999 1 -0.1 93.200
## 1807 30 144 1 999 1 -1.8 93.876
## 1808 32 250 2 999 1 -0.1 93.200
## 1809 22 221 1 999 1 -2.9 92.963
## 1810 34 58 2 999 1 -1.8 93.075
## 1811 59 1397 3 999 1 -1.8 93.749
## 1812 43 1011 1 999 1 -0.1 93.200
## 1813 33 162 1 999 1 -1.8 92.893
## 1814 24 113 2 999 2 -1.8 93.876
## 1815 33 410 1 999 1 -3.4 92.431
## 1816 58 154 1 999 1 -3.0 92.713
## 1817 36 419 2 999 1 -1.8 93.075
## 1818 46 692 4 999 1 -1.8 92.893
## 1819 41 373 2 999 1 -1.8 92.893
## 1820 50 91 2 999 1 -1.8 93.075
## 1821 35 96 2 999 1 -1.8 92.893
## 1822 33 254 1 999 2 -2.9 92.963
## 1823 43 175 1 999 1 -0.1 93.200
## 1824 31 66 1 999 1 -1.8 92.893
## 1825 34 122 1 999 1 -1.8 93.075
## 1826 52 437 1 999 1 -1.8 93.075
## 1827 32 292 2 999 1 -0.1 93.200
## 1828 48 96 3 999 1 -0.1 93.200
## 1829 32 88 1 999 1 -2.9 92.201
## 1830 39 85 1 999 1 -0.1 93.200
## 1831 45 269 3 999 1 -1.8 93.075
## 1832 57 149 5 999 1 -1.8 92.893
## 1833 35 327 2 999 1 -1.8 93.075
## 1834 29 229 2 999 1 -1.8 92.893
## 1835 46 191 2 999 1 -0.1 93.200
## 1836 34 111 1 999 1 -1.8 92.893
## 1837 51 201 3 999 1 -1.8 93.369
## 1838 41 273 1 999 1 -3.0 92.713
## 1839 35 339 1 999 1 -1.8 92.893
## 1840 39 148 1 999 1 -1.1 94.767
## 1841 42 361 1 999 1 -1.8 92.893
## 1842 32 546 3 999 1 -1.8 92.893
## 1843 34 58 2 999 1 -1.8 92.893
## 1844 39 11 1 999 1 -0.2 92.756
## 1845 37 114 4 999 2 -1.7 94.215
## 1846 49 277 4 999 1 -1.8 93.369
## 1847 35 156 1 999 2 -1.7 94.215
## 1848 52 437 4 999 1 -1.8 92.893
## 1849 36 273 2 999 1 -1.8 93.075
## 1850 54 206 6 999 1 -1.8 92.893
## 1851 37 679 1 999 1 -1.8 92.893
## 1852 32 279 1 999 1 -1.8 92.893
## 1853 47 399 2 999 1 -1.8 93.075
## 1854 31 53 3 999 1 -3.4 92.649
## 1855 37 56 2 999 1 -1.8 92.893
## 1856 32 184 1 9 3 -1.7 94.215
## 1857 23 145 2 999 1 -1.8 92.893
## 1858 33 1008 1 999 1 -1.8 92.893
## 1859 79 464 1 999 1 -1.7 94.215
## 1860 41 88 1 999 1 -1.8 92.893
## 1861 35 470 2 999 1 -0.1 93.200
## 1862 25 381 1 999 1 -3.4 92.649
## 1863 41 338 3 999 1 -1.8 93.876
## 1864 31 188 1 999 1 -1.8 92.893
## 1865 32 210 2 999 1 -2.9 92.963
## 1866 53 92 2 999 1 -1.8 92.893
## 1867 24 145 4 999 1 -1.8 92.893
## 1868 48 334 2 999 1 -1.8 92.893
## 1869 49 366 2 999 1 -3.4 92.649
## 1870 41 175 2 999 1 -1.8 92.893
## 1871 35 330 1 999 1 -1.8 92.893
## 1872 49 75 1 999 1 -2.9 92.201
## 1873 25 251 1 999 1 -1.1 94.601
## 1874 27 308 1 999 1 -1.8 92.893
## 1875 29 232 1 999 1 -0.1 93.200
## 1876 44 712 1 6 3 -1.7 94.055
## 1877 55 179 1 999 1 -0.1 93.200
## 1878 49 361 2 999 1 -1.8 93.369
## 1879 29 607 1 999 1 -1.8 92.893
## 1880 35 203 2 999 1 -1.8 92.893
## 1881 35 153 1 999 1 -1.8 92.893
## 1882 56 121 2 999 1 -1.8 93.075
## 1883 56 158 1 999 1 -1.8 93.749
## 1884 34 306 2 999 1 -1.8 92.893
## 1885 66 211 1 999 1 -1.7 94.215
## 1886 36 231 2 999 4 -1.8 93.369
## 1887 32 2184 2 999 1 -3.4 92.649
## 1888 65 253 2 999 1 -3.4 92.431
## 1889 37 291 8 999 1 -1.8 92.893
## 1890 50 139 1 999 1 -0.1 93.200
## 1891 34 121 2 999 1 -3.4 92.649
## 1892 43 448 2 999 1 -1.8 93.075
## 1893 39 174 1 999 1 -1.8 92.893
## 1894 37 322 1 999 1 -1.8 92.893
## 1895 39 47 1 999 1 -1.8 92.893
## 1896 48 152 4 999 1 -1.8 92.893
## 1897 37 66 1 999 1 -2.9 92.201
## 1898 65 161 2 999 1 -2.9 92.201
## 1899 38 74 2 999 1 -1.8 93.075
## 1900 51 89 1 999 1 -1.8 92.893
## 1901 45 171 2 999 1 -1.7 94.215
## 1902 26 22 8 999 1 -1.8 92.893
## 1903 32 303 2 999 1 -1.8 92.893
## 1904 32 651 1 999 1 -1.1 94.767
## 1905 39 22 8 999 1 -1.8 92.893
## 1906 35 352 2 999 1 -1.8 92.893
## 1907 35 113 1 999 1 -1.8 93.075
## 1908 32 313 2 999 1 -2.9 92.201
## 1909 32 293 5 999 1 -2.9 92.963
## 1910 37 12 5 999 1 -1.8 93.075
## 1911 33 146 1 999 1 -1.1 94.601
## 1912 35 130 3 999 1 -1.8 92.893
## 1913 44 217 3 999 1 -1.8 92.893
## 1914 42 114 7 999 1 -1.8 92.893
## 1915 28 71 2 999 1 -1.8 93.075
## 1916 42 428 3 999 1 -1.8 92.893
## 1917 31 60 1 999 1 -0.1 93.200
## 1918 27 309 2 999 1 -1.1 94.601
## 1919 55 88 1 999 1 -1.8 93.075
## 1920 36 951 3 999 1 -1.8 92.893
## 1921 46 329 2 9 4 -1.7 94.027
## 1922 27 775 2 8 2 -3.4 92.649
## 1923 52 44 2 999 2 -1.8 93.075
## 1924 38 17 7 999 1 -1.8 92.893
## 1925 37 202 2 999 1 -0.1 93.200
## 1926 27 670 4 999 1 -1.8 92.893
## 1927 29 350 1 999 1 -1.8 93.075
## 1928 40 53 1 999 1 -0.1 93.200
## 1929 54 112 1 999 2 -1.1 94.199
## 1930 38 180 2 999 1 -3.4 92.431
## 1931 32 157 2 999 1 -1.8 92.893
## 1932 31 207 5 999 1 -0.1 93.200
## 1933 38 139 2 999 3 -1.1 94.601
## 1934 35 60 1 999 1 -0.1 93.200
## 1935 35 334 2 999 1 -1.8 93.075
## 1936 26 115 2 999 1 -1.8 93.749
## 1937 37 617 1 999 1 -1.8 93.075
## 1938 34 86 3 999 1 -1.7 94.215
## 1939 42 132 6 999 1 -1.8 92.893
## 1940 46 116 2 999 1 -0.1 93.200
## 1941 50 93 3 999 1 -0.1 93.200
## 1942 27 59 1 999 1 -2.9 92.963
## 1943 34 369 2 999 1 -1.8 92.893
## 1944 31 66 2 999 1 -1.8 92.893
## 1945 39 195 3 999 1 -0.1 93.200
## 1946 38 172 2 999 1 -1.8 93.075
## 1947 48 82 1 999 1 -0.1 93.200
## 1948 26 9 7 999 1 -1.8 92.893
## 1949 32 83 1 999 1 -1.8 92.893
## 1950 33 79 1 999 1 -2.9 92.201
## 1951 43 305 1 999 1 -1.8 92.893
## 1952 31 451 1 999 1 -1.8 92.893
## 1953 31 588 2 999 1 -0.1 93.200
## 1954 27 340 1 999 1 -1.8 92.893
## 1955 38 112 1 999 1 -0.1 93.200
## 1956 41 79 1 999 1 -3.4 92.431
## 1957 29 1223 3 999 1 -1.8 92.893
## 1958 75 676 2 999 4 -1.7 94.027
## 1959 30 423 2 999 1 -0.1 93.200
## 1960 32 302 1 999 1 -0.1 93.200
## 1961 48 420 7 999 1 -1.8 92.893
## 1962 30 92 4 999 1 -1.8 92.893
## 1963 27 125 2 999 1 -1.8 92.893
## 1964 34 31 4 999 1 -1.8 93.075
## 1965 35 54 2 999 1 -1.8 92.893
## 1966 23 68 2 999 1 -1.8 92.893
## 1967 29 154 2 999 1 -1.8 93.369
## 1968 33 104 3 999 1 -0.1 93.200
## 1969 28 92 4 17 3 -1.1 94.601
## 1970 35 192 2 999 1 -3.4 92.649
## 1971 38 64 1 999 1 -0.1 93.200
## 1972 30 706 1 999 1 -0.1 93.200
## 1973 26 199 1 999 1 -1.8 92.893
## 1974 81 263 1 999 1 -3.4 92.649
## 1975 29 85 1 999 2 -1.8 93.876
## 1976 30 167 2 999 1 -1.8 92.893
## 1977 33 227 1 999 1 -1.8 92.893
## 1978 35 87 1 999 1 -1.8 92.893
## 1979 23 314 1 999 1 -1.8 93.075
## 1980 28 240 1 999 1 -1.8 92.893
## 1981 33 289 1 999 2 -2.9 92.201
## 1982 37 259 1 999 1 -1.8 92.893
## 1983 56 146 1 999 1 -2.9 92.963
## 1984 52 206 1 999 1 -2.9 92.201
## 1985 38 151 2 999 1 -1.8 92.893
## 1986 33 196 3 999 1 -1.8 93.369
## 1987 29 61 1 999 1 -1.8 92.893
## 1988 55 168 2 999 1 -1.8 92.893
## 1989 40 139 1 999 1 -1.8 93.075
## 1990 28 69 1 999 1 -2.9 92.963
## 1991 38 113 1 999 1 -1.8 92.843
## 1992 72 220 16 999 1 -1.7 94.027
## 1993 37 258 2 999 1 -3.4 92.649
## 1994 31 294 1 999 1 -1.8 92.893
## 1995 41 588 1 18 2 -1.8 93.876
## 1996 26 6 1 999 3 -1.7 94.027
## 1997 42 103 2 999 1 -1.8 92.893
## 1998 42 251 2 15 2 -2.9 92.201
## 1999 31 259 1 999 1 -0.1 93.200
## 2000 63 156 2 999 2 -3.4 92.379
## 2001 57 164 2 999 1 -1.8 92.893
## 2002 41 128 1 999 1 -1.8 92.893
## 2003 31 302 1 999 1 -1.8 92.893
## 2004 49 52 1 999 1 -0.1 93.200
## 2005 37 286 2 999 1 -1.8 92.893
## 2006 35 190 3 7 3 -3.4 92.649
## 2007 36 85 1 999 1 -0.1 93.200
## 2008 34 344 1 999 1 -1.8 93.075
## 2009 28 217 4 999 1 -1.8 92.893
## 2010 30 55 1 999 1 -1.8 92.893
## 2011 56 109 1 999 1 -0.1 93.200
## 2012 37 336 2 999 1 -1.8 92.893
## 2013 30 228 1 999 1 -1.8 92.893
## 2014 32 82 1 999 1 -1.8 93.075
## 2015 39 355 3 999 2 -1.8 93.075
## 2016 42 73 1 999 1 -1.8 93.075
## 2017 64 130 1 999 1 -3.4 92.431
## 2018 45 98 2 999 1 -1.8 92.893
## 2019 47 233 1 999 1 -0.1 93.200
## 2020 50 185 2 999 1 -0.1 93.200
## 2021 50 102 1 999 1 -2.9 92.963
## 2022 42 100 2 999 1 -0.1 93.200
## 2023 45 623 1 999 1 -0.1 93.200
## 2024 49 48 1 999 1 -1.8 93.075
## 2025 30 482 3 999 1 -0.1 93.200
## 2026 27 250 3 999 5 -1.7 94.027
## 2027 31 397 2 999 1 -1.7 94.027
## 2028 28 92 1 999 1 -1.8 92.893
## 2029 36 20 1 999 1 -0.1 93.200
## 2030 39 9 4 999 1 -1.8 92.893
## 2031 54 194 2 999 1 -1.8 92.893
## 2032 56 74 2 999 1 -0.1 93.200
## 2033 46 349 2 999 1 -1.8 92.893
## 2034 31 187 2 999 1 -1.8 92.893
## 2035 31 443 1 999 1 -1.8 92.893
## 2036 38 263 2 999 1 -1.8 93.075
## 2037 32 276 1 999 1 -0.1 93.200
## 2038 28 137 3 999 1 -1.8 92.893
## 2039 27 255 2 999 1 -2.9 92.201
## 2040 68 1248 2 999 1 -3.4 92.649
## 2041 45 204 2 999 1 -3.4 92.431
## 2042 30 331 1 999 1 -1.8 93.075
## 2043 54 104 1 999 1 -1.8 93.075
## 2044 37 425 1 999 1 -1.8 92.893
## 2045 29 207 2 999 1 -1.8 93.369
## 2046 32 78 1 999 1 -0.1 93.200
## 2047 57 609 2 999 1 -0.1 93.200
## 2048 62 123 1 999 1 -3.4 92.649
## 2049 45 102 1 999 1 -1.8 92.893
## 2050 31 315 1 999 1 -1.8 92.893
## 2051 25 137 1 999 1 -1.8 93.075
## 2052 32 6 1 999 1 -1.1 94.199
## 2053 38 118 2 999 1 -1.8 93.075
## 2054 33 272 5 999 1 -1.8 92.893
## 2055 54 408 1 999 1 -1.8 93.075
## 2056 24 135 1 999 1 -1.8 93.749
## 2057 30 83 1 999 2 -2.9 92.201
## 2058 53 262 1 999 2 -1.8 93.369
## 2059 25 655 3 999 1 -1.8 92.893
## 2060 47 101 1 999 1 -1.8 92.893
## 2061 38 154 3 17 3 -1.8 93.369
## 2062 31 150 1 999 1 -1.8 92.893
## 2063 25 110 1 999 1 -3.4 92.649
## 2064 41 202 2 999 1 -1.8 92.893
## 2065 27 217 1 999 2 -3.4 92.649
## 2066 37 107 1 999 1 -1.8 92.893
## 2067 30 151 2 999 1 -1.8 92.893
## 2068 45 335 2 999 1 -1.8 92.893
## 2069 41 593 2 999 1 -1.8 92.893
## 2070 44 217 1 999 1 -1.8 92.893
## 2071 36 92 2 999 1 -2.9 92.201
## 2072 44 263 1 999 1 -1.8 92.893
## 2073 41 256 3 999 1 -1.8 93.075
## 2074 47 53 4 999 1 -1.8 92.893
## 2075 50 151 2 6 2 -3.4 92.431
## 2076 32 151 2 999 1 -1.8 92.893
## 2077 29 64 3 999 1 -1.8 92.893
## 2078 40 8 2 999 1 -1.8 93.075
## 2079 59 247 2 999 1 -1.8 93.749
## 2080 49 86 1 999 1 -1.8 92.893
## 2081 34 241 1 999 1 -1.8 92.893
## 2082 39 325 1 999 2 -1.8 93.749
## 2083 85 462 1 999 1 -1.8 93.749
## 2084 47 281 2 999 1 -1.1 94.199
## 2085 30 158 1 999 1 -1.8 92.893
## 2086 57 69 3 999 1 -1.8 92.893
## 2087 24 202 1 999 3 -1.1 94.199
## 2088 32 166 3 12 2 -1.8 92.893
## 2089 29 62 3 999 1 -1.8 92.893
## 2090 52 26 5 999 1 -0.1 93.200
## 2091 31 158 1 999 1 -1.8 92.893
## 2092 33 89 2 999 1 -1.8 92.893
## 2093 41 251 1 999 1 -1.8 93.075
## 2094 39 44 1 999 1 -0.1 93.200
## 2095 32 102 4 999 2 -2.9 92.963
## 2096 43 43 1 999 1 -0.1 93.200
## 2097 35 316 1 999 1 -0.1 93.200
## 2098 30 164 2 999 1 -1.8 92.893
## 2099 52 97 3 999 1 -0.1 93.200
## 2100 49 23 6 999 1 -1.8 92.893
## 2101 33 175 1 999 1 -1.8 92.893
## 2102 38 194 2 999 1 -0.1 93.200
## 2103 31 182 2 999 2 -1.8 92.893
## 2104 51 43 2 999 1 -1.8 92.893
## 2105 44 635 3 999 1 -0.1 93.200
## 2106 57 497 2 999 1 -2.9 92.201
## 2107 28 73 1 999 1 -1.8 93.075
## 2108 33 637 4 999 1 -1.8 92.893
## 2109 50 801 1 999 1 -1.8 93.876
## 2110 26 298 2 999 2 -1.8 92.893
## 2111 33 134 1 999 1 -1.8 92.893
## 2112 43 997 1 999 1 -1.8 93.075
## 2113 38 391 3 999 1 -2.9 92.201
## 2114 33 147 1 999 1 -2.9 92.201
## 2115 32 205 4 999 1 -3.0 92.713
## 2116 37 78 1 999 1 -3.4 92.379
## 2117 44 241 1 999 1 -1.8 92.893
## 2118 53 431 1 999 1 -1.8 93.369
## 2119 52 211 7 999 1 -0.1 93.200
## 2120 32 262 2 999 1 -1.8 92.893
## 2121 64 130 1 999 1 -3.4 92.431
## 2122 23 60 1 999 1 -2.9 92.963
## 2123 34 101 4 999 1 -1.8 92.893
## 2124 46 211 2 999 1 -1.8 93.075
## 2125 65 161 2 999 1 -2.9 92.201
## 2126 53 70 1 999 1 -2.9 92.963
## 2127 31 829 1 999 1 -1.8 92.893
## 2128 46 245 2 999 1 -1.8 92.893
## 2129 44 75 1 999 1 -1.8 93.075
## 2130 26 38 1 999 1 -1.8 92.893
## 2131 49 97 3 999 1 -1.8 92.893
## 2132 76 284 1 999 1 -2.9 92.201
## 2133 35 147 4 999 1 -1.8 92.893
## 2134 65 208 3 999 1 -3.4 92.431
## 2135 38 136 1 999 1 -3.4 92.649
## 2136 48 263 2 999 1 -1.8 92.893
## 2137 37 323 2 999 1 -1.8 92.893
## 2138 46 39 1 999 1 -1.8 92.893
## 2139 33 110 1 999 1 -1.1 94.199
## 2140 36 210 1 999 1 -1.8 92.893
## 2141 31 170 1 999 1 -1.8 93.075
## 2142 58 549 5 999 2 -1.8 93.369
## 2143 35 222 2 999 1 -1.8 92.893
## 2144 24 524 1 999 1 -1.8 92.893
## 2145 31 238 1 999 1 -1.8 93.075
## 2146 41 103 2 999 1 -1.8 92.893
## 2147 32 158 2 999 1 -1.8 92.893
## 2148 34 191 1 999 1 -0.1 93.200
## 2149 31 50 2 999 1 -1.8 92.893
## 2150 62 515 2 999 2 -1.8 93.369
## 2151 23 314 1 999 1 -1.8 93.075
## 2152 39 75 1 999 1 -1.8 92.893
## 2153 37 247 1 999 1 -1.8 93.075
## 2154 34 126 2 999 2 -3.4 92.649
## 2155 32 26 1 999 1 -0.1 93.200
## 2156 41 192 1 999 1 -0.1 93.200
## 2157 31 400 1 999 1 -1.8 92.893
## 2158 44 536 2 999 1 -1.8 92.893
## 2159 75 229 1 999 2 -1.7 94.215
## 2160 30 285 3 999 1 -1.8 92.893
## 2161 37 93 3 999 1 -1.8 93.075
## 2162 57 429 4 999 1 -1.8 92.893
## 2163 21 258 4 999 1 -1.8 93.075
## 2164 51 46 4 999 1 -0.1 93.200
## 2165 40 246 4 999 1 -1.8 92.893
## 2166 35 101 2 999 1 -0.1 93.200
## 2167 32 196 3 999 1 -0.1 93.200
## 2168 36 402 2 999 1 -1.8 92.893
## 2169 21 136 1 999 1 -1.8 92.893
## 2170 66 810 3 999 2 -2.9 92.201
## 2171 58 98 4 999 2 -1.8 93.749
## 2172 39 640 1 999 1 -0.1 93.200
## 2173 51 254 2 999 1 -1.8 92.893
## 2174 31 246 1 999 1 -1.8 93.075
## 2175 41 17 3 999 2 -1.8 92.893
## 2176 44 383 1 999 1 -1.8 92.893
## 2177 17 182 2 999 2 -2.9 92.201
## 2178 32 237 2 999 1 -1.7 94.215
## 2179 38 161 1 999 1 -1.8 93.075
## 2180 28 35 3 999 1 -1.8 92.893
## 2181 46 335 3 999 2 -1.7 94.215
## 2182 46 354 2 999 1 -0.1 93.200
## 2183 18 110 1 999 2 -1.8 93.876
## 2184 54 79 2 999 1 -0.1 93.200
## 2185 34 156 2 999 1 -1.8 92.893
## 2186 39 186 4 999 1 -1.8 92.893
## 2187 50 209 1 8 3 -3.4 92.431
## 2188 38 391 3 999 1 -2.9 92.201
## 2189 72 119 9 999 1 -1.7 94.215
## 2190 53 122 3 999 1 -0.1 93.200
## 2191 44 15 4 999 2 -1.8 92.893
## 2192 36 111 3 999 1 -0.1 93.200
## 2193 44 37 1 999 1 -0.1 93.200
## 2194 42 251 1 999 1 -1.8 92.893
## 2195 38 279 3 999 1 -1.8 93.075
## 2196 43 137 3 999 1 -3.4 92.649
## 2197 39 128 2 999 1 -1.8 92.893
## 2198 45 614 1 999 1 -1.8 93.075
## 2199 57 283 1 999 1 -0.1 93.200
## 2200 33 96 2 999 1 -1.8 92.893
## 2201 32 98 1 999 1 -1.8 92.893
## 2202 35 257 1 999 1 -1.8 92.893
## 2203 23 119 1 999 1 -1.8 92.893
## 2204 40 687 1 999 1 -1.8 93.075
## 2205 27 147 2 999 1 -1.8 93.749
## 2206 33 1075 1 999 1 -1.8 92.893
## 2207 31 14 6 999 1 -1.8 92.893
## 2208 43 25 5 999 1 -1.8 92.893
## 2209 56 222 1 999 1 -1.8 93.075
## 2210 35 126 1 999 1 -2.9 92.963
## 2211 46 18 1 999 1 -1.1 94.767
## 2212 34 301 2 999 1 -1.8 92.893
## 2213 43 159 1 999 1 -3.4 92.379
## 2214 39 312 1 999 1 -1.8 92.893
## 2215 42 29 1 999 1 -1.8 92.893
## 2216 28 97 1 999 1 -1.8 93.749
## 2217 31 68 2 999 1 -0.1 93.200
## 2218 36 450 1 999 1 -1.8 93.075
## 2219 29 179 1 999 1 -0.1 93.200
## 2220 36 883 1 999 1 -1.7 94.055
## 2221 26 67 5 999 1 -2.9 92.469
## 2222 32 197 2 999 1 -2.9 92.963
## 2223 34 101 2 999 1 -1.8 92.893
## 2224 22 438 1 999 1 -3.4 92.431
## 2225 40 55 1 999 2 -2.9 92.201
## 2226 55 130 1 999 1 -1.8 92.893
## 2227 56 131 5 999 1 -2.9 92.201
## 2228 25 79 1 999 2 -1.1 94.601
## 2229 33 426 5 999 1 -1.8 93.075
## 2230 39 202 1 999 1 -1.7 94.215
## 2231 33 143 1 999 1 -0.1 93.200
## 2232 33 236 1 999 1 -1.8 93.075
## 2233 39 272 1 999 1 -1.8 92.893
## 2234 28 561 4 999 1 -1.8 92.893
## 2235 36 31 1 999 1 -1.8 92.893
## 2236 39 141 1 7 2 -3.4 92.431
## 2237 24 180 2 999 1 -3.4 92.649
## 2238 33 408 2 999 1 -1.8 92.893
## 2239 29 23 1 999 1 -1.8 92.893
## 2240 38 6 5 999 1 -1.8 92.893
## 2241 51 211 1 999 1 -1.8 92.893
## 2242 39 161 1 999 1 -1.8 93.075
## 2243 29 200 1 999 1 -1.8 92.893
## 2244 27 206 1 999 1 -1.8 92.893
## 2245 31 110 1 999 1 -0.1 93.200
## 2246 66 82 2 999 1 -1.8 92.893
## 2247 30 88 2 999 1 -0.1 93.200
## 2248 45 254 1 999 1 -1.8 93.876
## 2249 28 573 7 999 1 -1.8 92.893
## 2250 36 78 1 999 1 -3.4 92.431
## 2251 35 220 1 999 1 -0.1 93.200
## 2252 33 161 1 999 1 -1.1 94.199
## 2253 36 284 2 999 1 -1.8 92.893
## 2254 35 209 1 999 2 -3.4 92.649
## 2255 39 98 1 999 1 -1.8 92.893
## 2256 35 437 3 999 1 -1.8 92.893
## 2257 29 77 3 999 1 -3.0 92.713
## 2258 32 47 1 999 1 -0.1 93.200
## 2259 35 447 1 999 2 -1.1 94.199
## 2260 41 143 3 999 1 -0.1 93.200
## 2261 55 56 1 999 1 -1.8 92.893
## 2262 54 552 1 999 2 -1.8 92.893
## 2263 30 67 1 999 1 -1.8 92.893
## 2264 54 265 4 999 1 -1.8 92.893
## 2265 31 498 1 999 1 -3.4 92.649
## 2266 45 537 5 999 1 -1.8 92.893
## 2267 66 147 2 999 1 -2.9 92.201
## 2268 48 349 1 999 1 -1.8 92.893
## 2269 44 251 4 999 1 -1.8 93.075
## 2270 42 106 1 999 1 -1.8 92.893
## 2271 39 265 1 999 1 -1.8 92.843
## 2272 31 152 1 999 1 -1.8 92.893
## 2273 51 175 3 999 1 -0.1 93.200
## 2274 37 241 1 999 1 -1.8 93.075
## 2275 26 33 3 999 1 -1.8 92.893
## 2276 53 376 2 999 1 -1.8 92.893
## 2277 33 74 1 999 1 -1.8 92.893
## 2278 35 124 2 999 1 -1.8 92.893
## 2279 34 361 5 999 1 -1.8 92.893
## 2280 38 103 2 999 1 -0.1 93.200
## 2281 35 317 1 999 2 -1.1 94.199
## 2282 30 129 2 999 1 -1.8 92.893
## 2283 34 201 3 999 1 -0.1 93.200
## 2284 57 129 2 999 1 -1.8 92.893
## 2285 30 200 1 999 1 -0.1 93.200
## 2286 24 118 4 999 1 -1.8 92.893
## 2287 31 172 2 999 1 -1.8 92.893
## 2288 31 251 1 999 1 -0.1 93.200
## 2289 36 331 1 6 4 -1.1 94.199
## 2290 35 147 2 14 2 -2.9 92.469
## 2291 28 257 4 999 2 -1.8 93.369
## 2292 53 26 1 999 1 -1.8 93.075
## 2293 48 148 1 999 1 -0.1 93.200
## 2294 32 211 2 999 1 -1.8 92.893
## 2295 33 339 1 999 2 -1.8 93.749
## 2296 29 13 9 999 1 -1.8 92.893
## 2297 23 159 1 999 1 -2.9 92.963
## 2298 58 318 4 999 1 -2.9 92.469
## 2299 25 300 3 999 2 -1.8 92.893
## 2300 37 65 2 999 1 -1.8 92.893
## 2301 32 137 1 999 1 -0.1 93.200
## 2302 36 240 3 999 1 -0.1 93.200
## 2303 73 209 2 999 1 -1.8 93.369
## 2304 30 156 1 999 2 -2.9 92.201
## 2305 34 161 1 18 2 -1.1 94.199
## 2306 30 418 2 999 1 -1.8 92.893
## 2307 31 369 2 999 1 -1.8 92.893
## 2308 46 142 12 999 1 -1.8 93.075
## 2309 31 50 3 999 1 -1.8 92.893
## 2310 34 350 8 999 1 -1.8 92.893
## 2311 35 146 1 999 1 -1.8 92.893
## 2312 23 268 5 999 1 -1.7 94.215
## 2313 62 181 2 999 1 -1.8 92.893
## 2314 29 110 2 999 1 -1.7 94.215
## 2315 36 23 1 999 1 -1.8 92.893
## 2316 46 247 2 999 1 -1.8 92.893
## 2317 36 141 1 999 1 -1.8 92.893
## 2318 48 235 2 999 1 -1.8 93.075
## 2319 46 215 1 999 1 -2.9 92.963
## 2320 28 43 1 999 1 -1.8 92.893
## 2321 55 148 2 999 1 -1.8 93.749
## 2322 41 131 2 999 1 -3.4 92.649
## 2323 38 926 1 999 1 -1.8 93.075
## 2324 38 158 1 999 1 -1.8 92.893
## 2325 61 102 2 999 1 -1.8 93.369
## 2326 78 238 1 999 2 -1.1 94.199
## 2327 37 463 1 999 1 -1.8 93.075
## 2328 28 442 1 999 1 -1.8 92.893
## 2329 25 262 1 999 1 -1.8 92.893
## 2330 41 228 1 999 1 -1.1 94.199
## 2331 34 344 1 999 1 -1.8 93.075
## 2332 20 131 1 999 1 -2.9 92.201
## 2333 34 250 1 10 2 -1.7 94.027
## 2334 32 603 2 7 2 -1.8 92.893
## 2335 28 135 2 999 1 -1.8 92.893
## 2336 35 63 1 999 1 -1.8 92.893
## 2337 31 303 3 999 1 -1.8 92.893
## 2338 37 658 3 999 1 -0.1 93.200
## 2339 30 249 1 999 1 -1.8 92.893
## 2340 45 166 2 999 1 -1.8 92.893
## 2341 32 125 1 999 1 -1.8 92.893
## 2342 33 843 1 999 1 -1.8 92.893
## 2343 27 73 1 999 1 -1.8 92.893
## 2344 53 583 2 999 1 -1.8 93.075
## 2345 29 747 2 999 1 -1.8 92.893
## 2346 28 134 3 999 1 -1.8 92.893
## 2347 33 113 3 999 1 -1.8 93.749
## 2348 32 500 2 999 1 -0.1 93.200
## 2349 27 550 2 999 1 -1.8 92.893
## 2350 29 424 1 999 1 -3.4 92.431
## 2351 46 69 2 999 1 -2.9 92.963
## 2352 52 152 2 999 1 -1.8 93.075
## 2353 42 264 1 999 1 -1.8 93.075
## 2354 26 140 3 999 1 -1.8 92.893
## 2355 36 449 1 999 1 -0.1 93.200
## 2356 49 57 1 999 1 -1.8 92.893
## 2357 56 119 1 999 1 -0.1 93.200
## 2358 27 371 1 999 2 -1.8 93.369
## 2359 27 86 1 999 1 -1.8 92.893
## 2360 27 98 1 999 1 -1.8 93.075
## 2361 39 434 2 999 1 -1.7 94.055
## 2362 59 340 1 999 1 -2.9 92.963
## 2363 35 272 4 999 1 -1.8 92.893
## 2364 43 66 1 999 1 -1.8 92.893
## 2365 42 355 1 999 1 -3.4 92.431
## 2366 58 92 1 999 1 -3.4 92.431
## 2367 37 12 5 999 1 -0.1 93.200
## 2368 40 208 6 999 1 -1.8 92.893
## 2369 51 281 2 999 1 -0.1 93.200
## 2370 39 71 1 999 1 -0.1 93.200
## 2371 51 286 6 999 1 -0.1 93.200
## 2372 50 120 1 999 1 -0.1 93.200
## 2373 35 107 2 999 1 -1.8 92.893
## 2374 54 267 1 999 1 -1.8 93.075
## 2375 40 262 2 999 1 -2.9 92.201
## 2376 58 101 1 999 1 -1.8 92.893
## 2377 32 215 6 999 1 -0.1 93.200
## 2378 35 371 1 999 1 -3.4 92.431
## 2379 34 240 1 999 1 -1.8 93.075
## 2380 40 210 1 999 1 -1.8 93.075
## 2381 34 89 3 999 1 -0.1 93.200
## 2382 35 429 2 999 1 -1.8 92.893
## 2383 30 496 1 999 1 -1.8 92.893
## 2384 31 250 1 999 1 -0.1 93.200
## 2385 52 652 2 999 1 -0.1 93.200
## 2386 37 232 2 999 1 -1.8 92.893
## 2387 24 467 3 6 3 -1.1 94.767
## 2388 42 200 1 999 1 -0.1 93.200
## 2389 32 105 1 999 1 -0.1 93.200
## 2390 50 333 1 999 2 -1.8 93.876
## 2391 35 91 1 999 1 -1.8 92.893
## 2392 29 307 2 999 1 -3.4 92.379
## 2393 49 135 1 999 2 -1.8 92.893
## 2394 29 94 1 999 2 -3.4 92.431
## 2395 28 48 4 999 1 -1.8 93.075
## 2396 62 248 1 999 2 -1.7 94.215
## 2397 45 84 1 999 1 -1.8 92.893
## 2398 43 141 1 999 1 -1.8 92.893
## 2399 42 13 2 999 1 -1.8 92.893
## 2400 31 174 2 999 1 -1.8 92.843
## 2401 24 51 1 999 1 -1.8 92.893
## 2402 37 26 6 999 1 -1.8 92.893
## 2403 32 361 1 999 1 -1.8 93.075
## 2404 35 376 2 999 1 -1.8 92.893
## 2405 48 1203 1 999 1 -1.8 92.893
## 2406 44 921 2 999 1 -1.8 93.075
## 2407 37 459 2 999 2 -3.4 92.649
## 2408 44 288 1 999 1 -1.8 92.893
## 2409 34 303 1 999 1 -1.8 93.075
## 2410 40 264 2 999 1 -1.8 93.075
## 2411 32 164 1 999 3 -1.1 94.601
## 2412 38 123 1 999 1 -1.8 93.075
## 2413 41 256 2 999 1 -1.8 92.893
## 2414 49 37 1 999 1 -0.1 93.200
## 2415 40 397 2 999 1 -2.9 92.201
## 2416 70 61 6 999 1 -1.8 92.843
## 2417 29 281 4 999 1 -1.8 92.893
## 2418 32 208 1 999 1 -1.8 93.075
## 2419 39 44 1 999 1 -1.8 92.893
## 2420 23 370 1 999 1 -2.9 92.469
## 2421 27 217 1 999 1 -1.8 92.893
## 2422 27 347 2 999 1 -1.8 92.893
## 2423 44 712 1 6 3 -1.7 94.055
## 2424 50 36 3 999 1 -1.8 92.893
## 2425 51 154 3 999 1 -1.8 92.893
## 2426 30 68 2 999 1 -1.8 92.893
## 2427 37 196 2 999 1 -1.8 93.075
## 2428 53 184 1 999 1 -0.1 93.200
## 2429 32 18 1 999 1 -1.8 92.893
## 2430 46 130 2 999 1 -0.1 93.200
## 2431 61 106 2 999 1 -3.4 92.431
## 2432 44 659 1 999 1 -1.8 92.893
## 2433 39 894 2 999 1 -1.8 92.893
## 2434 31 465 1 999 1 -1.8 92.893
## 2435 55 72 1 999 1 -2.9 92.201
## 2436 56 225 2 999 1 -1.8 92.893
## 2437 35 212 1 999 2 -1.1 94.767
## 2438 29 150 2 999 1 -1.8 92.893
## 2439 34 456 2 999 1 -1.8 92.893
## 2440 51 314 4 999 1 -1.8 92.893
## 2441 26 200 2 999 1 -1.8 92.893
## 2442 38 240 1 999 1 -0.1 93.200
## 2443 30 221 1 999 1 -3.4 92.379
## 2444 34 89 4 999 1 -1.8 92.893
## 2445 51 626 1 999 1 -3.4 92.431
## 2446 46 984 1 999 1 -1.8 92.893
## 2447 29 81 3 999 1 -1.8 92.893
## 2448 70 837 2 999 1 -3.4 92.431
## 2449 33 9 3 999 1 -1.8 92.893
## 2450 49 277 4 999 1 -1.8 93.369
## 2451 25 959 3 999 1 -1.8 92.893
## 2452 29 158 1 13 3 -1.8 93.876
## 2453 29 96 2 999 1 -1.8 93.075
## 2454 55 548 1 999 1 -1.8 93.075
## 2455 40 69 2 999 2 -2.9 92.201
## 2456 44 127 1 999 1 -1.8 92.893
## 2457 28 718 1 999 1 -1.8 92.893
## 2458 31 84 1 999 1 -2.9 92.963
## 2459 24 292 1 999 1 -1.7 94.055
## 2460 35 69 2 999 1 -1.8 92.893
## 2461 35 184 1 999 1 -1.8 92.893
## 2462 49 128 1 999 1 -2.9 92.963
## 2463 81 161 1 999 1 -3.4 92.649
## 2464 35 76 1 999 1 -0.1 93.200
## 2465 26 217 2 999 1 -1.8 92.893
## 2466 37 135 1 999 2 -1.7 94.055
## 2467 31 12 10 999 1 -1.8 92.893
## 2468 33 95 4 999 1 -1.8 92.893
## 2469 28 75 1 999 1 -2.9 92.201
## 2470 40 99 1 999 1 -0.1 93.200
## 2471 52 165 1 999 1 -0.1 93.200
## 2472 34 411 3 999 1 -0.1 93.200
## 2473 31 148 2 999 1 -1.8 92.893
## 2474 42 615 1 999 1 -1.8 93.075
## 2475 41 239 2 999 1 -1.8 93.075
## 2476 29 462 1 999 1 -1.8 93.075
## 2477 37 208 1 999 1 -1.8 92.893
## 2478 37 170 3 999 1 -1.8 92.893
## 2479 36 127 2 999 1 -1.8 92.893
## 2480 37 17 6 999 1 -1.8 93.075
## 2481 36 293 3 999 1 -1.8 92.893
## 2482 34 483 1 999 1 -1.8 92.893
## 2483 31 157 4 999 1 -3.4 92.431
## 2484 51 35 1 999 1 -1.8 93.075
## 2485 38 141 2 999 2 -1.8 93.075
## 2486 28 190 3 999 1 -2.9 92.201
## 2487 45 61 2 999 1 -0.1 93.200
## 2488 41 75 1 999 1 -2.9 92.201
## 2489 34 122 2 999 1 -1.8 92.893
## 2490 70 185 3 999 1 -2.9 92.201
## 2491 85 462 1 999 1 -1.8 93.749
## 2492 24 1426 2 999 1 -1.8 93.075
## 2493 40 71 2 999 1 -0.1 93.200
## 2494 30 195 1 999 3 -1.1 94.601
## 2495 36 187 1 999 1 -1.8 92.893
## 2496 31 367 2 999 1 -3.0 92.713
## 2497 69 103 1 999 1 -3.4 92.431
## 2498 29 215 3 999 1 -1.8 92.893
## 2499 19 182 1 999 1 -1.1 94.767
## 2500 31 611 1 999 1 -1.8 92.893
## 2501 33 69 1 999 1 -0.1 93.200
## 2502 25 105 4 999 1 -2.9 92.963
## 2503 33 328 2 999 1 -1.8 92.893
## 2504 24 222 1 17 4 -1.1 94.199
## 2505 41 1135 3 999 1 -1.8 92.893
## 2506 33 349 2 999 1 -1.8 92.893
## 2507 29 113 1 999 1 -2.9 92.963
## 2508 56 39 4 999 1 -0.1 93.200
## 2509 47 258 1 999 1 -0.1 93.200
## 2510 45 427 4 999 1 -1.8 93.075
## 2511 45 19 1 999 1 -1.8 92.893
## 2512 31 105 4 999 1 -0.1 93.200
## 2513 42 544 3 999 1 -1.8 93.075
## 2514 34 319 2 999 1 -1.8 92.893
## 2515 31 207 1 999 1 -1.8 92.893
## 2516 28 118 1 999 2 -1.8 92.893
## 2517 56 230 2 999 1 -1.7 94.215
## 2518 24 104 1 999 1 -1.8 93.075
## 2519 26 551 1 999 1 -1.8 92.893
## 2520 29 178 1 999 1 -0.1 93.200
## 2521 45 236 1 999 1 -1.8 92.893
## 2522 58 173 1 999 2 -1.1 94.767
## 2523 30 592 3 999 1 -1.7 94.027
## 2524 40 317 1 999 1 -1.8 92.893
## 2525 56 44 1 999 1 -0.1 93.200
## 2526 44 115 1 999 1 -0.1 93.200
## 2527 34 76 2 999 1 -1.8 92.893
## 2528 38 5 1 999 1 -1.7 94.215
## 2529 43 274 3 999 1 -1.8 92.893
## 2530 35 67 2 999 1 -2.9 92.963
## 2531 42 361 1 999 1 -2.9 92.469
## 2532 33 101 2 999 1 -0.1 93.200
## 2533 77 144 8 999 2 -1.7 94.027
## 2534 37 214 8 999 1 -1.8 92.893
## 2535 35 181 2 999 1 -1.8 92.893
## 2536 35 67 1 999 1 -1.8 92.893
## 2537 35 337 1 999 2 -1.8 93.749
## 2538 19 203 1 999 3 -1.8 93.876
## 2539 63 317 1 999 1 -2.9 92.469
## 2540 54 229 5 999 1 -1.8 92.893
## 2541 32 183 2 999 1 -2.9 92.963
## 2542 60 170 2 999 1 -1.1 94.601
## 2543 33 143 2 999 1 -1.8 93.749
## 2544 47 333 1 999 1 -1.1 94.601
## 2545 38 532 1 999 1 -1.8 92.893
## 2546 54 172 5 999 1 -1.8 93.876
## 2547 38 42 1 999 1 -1.8 92.893
## 2548 41 252 1 999 1 -1.7 94.027
## 2549 55 217 3 999 1 -1.8 92.893
## 2550 37 447 2 999 1 -1.8 92.893
## 2551 31 239 3 999 1 -1.8 92.893
## 2552 35 52 1 999 1 -0.1 93.200
## 2553 33 519 2 999 2 -1.8 92.893
## 2554 37 608 2 12 2 -1.1 94.601
## 2555 34 146 1 999 1 -1.8 93.075
## 2556 36 450 1 999 1 -2.9 92.963
## 2557 57 22 2 999 1 -0.1 93.200
## 2558 34 69 1 999 1 -0.1 93.200
## 2559 75 109 1 999 1 -1.8 93.075
## 2560 29 396 1 999 1 -1.8 92.893
## 2561 32 254 4 999 1 -1.8 92.893
## 2562 34 344 1 999 1 -1.8 93.075
## 2563 31 17 5 999 1 -0.1 93.200
## 2564 32 691 2 14 4 -1.1 94.601
## 2565 40 699 2 999 1 -2.9 92.201
## 2566 63 279 1 999 1 -2.9 92.201
## 2567 59 91 1 999 1 -2.9 92.201
## 2568 34 62 2 999 1 -0.1 93.200
## 2569 26 75 2 999 1 -3.4 92.431
## 2570 57 79 1 999 1 -0.1 93.200
## 2571 52 241 4 999 3 -1.7 94.055
## 2572 41 1203 2 999 1 -1.8 93.075
## 2573 37 151 2 999 1 -0.1 93.200
## 2574 41 826 1 999 1 -2.9 92.469
## 2575 48 1203 1 999 1 -1.8 92.893
## 2576 54 252 2 999 1 -0.1 93.200
## 2577 31 163 2 999 1 -1.8 92.893
## 2578 53 124 1 999 1 -1.8 92.893
## 2579 31 298 1 999 1 -0.1 93.200
## 2580 28 106 1 999 1 -1.8 92.893
## 2581 47 816 1 999 1 -1.8 92.893
## 2582 54 300 5 999 1 -0.1 93.200
## 2583 42 158 3 999 1 -1.8 92.893
## 2584 46 50 1 999 1 -0.1 93.200
## 2585 30 104 1 999 2 -1.1 94.199
## 2586 33 114 1 999 1 -1.8 93.075
## 2587 34 323 3 999 1 -1.8 92.893
## 2588 37 90 2 999 2 -3.4 92.649
## 2589 27 282 1 999 1 -1.8 92.893
## 2590 45 67 3 999 1 -2.9 92.201
## 2591 38 415 1 999 2 -3.0 92.713
## 2592 33 293 5 999 1 -0.1 93.200
## 2593 32 85 2 999 1 -0.1 93.200
## 2594 40 368 6 999 1 -1.8 93.075
## 2595 29 86 1 999 1 -0.1 93.200
## 2596 51 53 5 999 1 -1.8 92.893
## 2597 50 189 2 999 1 -0.1 93.200
## 2598 34 97 1 999 1 -1.8 92.893
## 2599 45 58 1 999 1 -0.1 93.200
## 2600 33 92 2 999 1 -1.8 92.893
## 2601 38 126 1 7 4 -3.4 92.649
## 2602 39 189 1 999 1 -1.8 92.893
## 2603 37 119 1 999 3 -1.1 94.767
## 2604 34 186 1 999 1 -1.8 92.893
## 2605 38 131 1 999 1 -0.1 93.200
## 2606 51 120 2 999 1 -0.1 93.200
## 2607 37 175 5 999 1 -1.8 92.893
## 2608 36 55 1 999 1 -1.8 92.893
## 2609 28 69 1 999 1 -2.9 92.963
## 2610 32 92 1 999 1 -0.1 93.200
## 2611 33 113 2 999 1 -1.8 93.075
## 2612 27 152 1 999 1 -1.8 92.893
## 2613 34 113 2 999 2 -1.8 93.075
## 2614 40 236 1 999 1 -1.8 93.075
## 2615 37 42 1 999 1 -1.8 92.893
## 2616 27 665 3 999 1 -1.8 92.893
## 2617 33 472 1 999 1 -1.7 94.055
## 2618 53 280 2 999 1 -1.8 93.075
## 2619 39 222 3 999 1 -0.1 93.200
## 2620 60 443 2 999 2 -1.7 94.027
## 2621 59 85 1 999 1 -2.9 92.201
## 2622 34 406 4 999 1 -1.8 92.893
## 2623 31 45 1 999 1 -1.8 92.893
## 2624 33 496 2 999 1 -1.8 92.893
## 2625 55 543 3 999 1 -1.8 92.893
## 2626 41 588 1 18 2 -1.8 93.876
## 2627 37 516 2 999 1 -3.4 92.649
## 2628 43 121 1 999 1 -1.8 93.075
## 2629 28 111 1 999 1 -2.9 92.201
## 2630 26 175 1 999 1 -2.9 92.963
## 2631 29 1435 3 999 1 -0.1 93.200
## 2632 35 86 2 999 1 -0.1 93.200
## 2633 29 128 2 999 1 -0.1 93.200
## 2634 42 206 2 999 1 -1.8 92.893
## 2635 53 188 1 999 1 -1.8 92.893
## 2636 75 109 1 999 1 -1.8 93.075
## 2637 27 339 2 999 1 -1.8 92.893
## 2638 29 264 2 999 1 -1.8 92.893
## 2639 45 174 1 999 1 -1.8 92.893
## 2640 48 124 1 999 1 -1.8 93.075
## 2641 41 74 2 999 1 -1.8 93.075
## 2642 47 173 1 999 1 -1.8 92.893
## 2643 75 109 1 999 1 -1.8 93.075
## 2644 32 505 1 999 1 -0.1 93.200
## 2645 32 396 1 999 1 -1.8 92.893
## 2646 58 205 1 999 1 -1.8 92.893
## 2647 53 167 1 999 1 -1.8 92.893
## 2648 36 5 3 999 1 -1.8 93.075
## 2649 31 308 1 999 2 -1.7 94.027
## 2650 31 102 1 999 1 -1.8 93.075
## 2651 38 266 2 999 1 -1.8 92.893
## 2652 39 861 6 999 1 -1.8 93.075
## 2653 25 142 2 999 1 -2.9 92.201
## 2654 32 178 2 999 1 -3.4 92.649
## 2655 47 63 5 999 1 -2.9 92.963
## 2656 36 208 1 999 1 -1.8 92.893
## 2657 41 57 8 999 1 -0.1 93.200
## 2658 39 328 2 999 1 -0.1 93.200
## 2659 32 235 2 999 1 -1.8 92.893
## 2660 47 93 1 999 1 -0.1 93.200
## 2661 46 169 1 999 1 -1.8 93.075
## 2662 73 179 1 999 1 -1.8 92.843
## 2663 57 81 1 999 1 -1.8 93.075
## 2664 38 202 5 999 1 -1.8 93.075
## 2665 38 136 2 999 1 -1.8 92.893
## 2666 37 171 1 999 1 -0.1 93.200
## 2667 52 126 1 999 2 -1.8 93.075
## 2668 30 170 2 999 1 -1.8 93.075
## 2669 49 34 1 999 1 -0.1 93.200
## 2670 72 582 2 999 1 -1.7 94.215
## 2671 39 149 1 999 1 -1.8 92.893
## 2672 40 293 2 999 4 -1.1 94.767
## 2673 60 143 2 15 2 -1.7 94.027
## 2674 37 62 1 999 1 -1.8 93.075
## 2675 31 829 1 999 1 -1.8 92.893
## 2676 36 199 1 999 1 -1.8 92.893
## 2677 51 316 2 999 1 -1.8 92.893
## 2678 37 729 1 999 1 -1.1 94.199
## 2679 54 268 1 999 1 -1.1 94.601
## 2680 29 146 3 999 1 -0.1 93.200
## 2681 32 134 1 999 1 -1.8 92.893
## 2682 30 155 1 999 1 -1.8 92.893
## 2683 36 323 2 999 1 -1.8 93.075
## 2684 39 427 2 999 1 -1.8 92.893
## 2685 50 58 1 999 1 -0.1 93.200
## 2686 37 156 1 999 1 -1.8 93.075
## 2687 39 143 1 999 1 -1.8 92.893
## 2688 61 228 2 999 1 -1.8 93.876
## 2689 58 180 1 999 1 -0.1 93.200
## 2690 54 150 2 999 1 -0.1 93.200
## 2691 34 256 2 999 1 -1.1 94.601
## 2692 59 210 2 999 1 -2.9 92.201
## 2693 43 180 1 6 2 -2.9 92.201
## 2694 31 304 2 999 1 -1.8 92.893
## 2695 54 397 1 999 1 -1.8 92.893
## 2696 33 165 1 999 1 -1.8 92.893
## 2697 47 88 1 999 1 -0.1 93.200
## 2698 42 878 3 999 1 -1.8 92.893
## 2699 30 14 6 999 1 -1.8 92.893
## 2700 37 106 1 999 2 -1.8 93.876
## 2701 37 149 1 999 1 -1.8 92.893
## 2702 51 359 2 999 1 -0.1 93.200
## 2703 46 270 1 999 1 -1.8 92.893
## 2704 39 57 4 999 1 -0.1 93.200
## 2705 44 131 1 999 1 -1.8 92.893
## 2706 36 211 3 999 1 -1.8 92.893
## 2707 33 519 2 999 2 -1.8 92.893
## 2708 41 261 1 999 1 -1.8 92.893
## 2709 41 163 5 999 1 -1.8 92.893
## 2710 37 199 1 999 1 -1.8 92.893
## 2711 33 243 2 999 1 -1.8 93.075
## 2712 28 261 1 999 1 -1.7 94.027
## 2713 49 56 1 999 2 -3.4 92.431
## 2714 24 200 3 999 1 -1.8 93.075
## 2715 53 888 2 999 1 -0.1 93.200
## 2716 37 259 1 999 1 -0.1 93.200
## 2717 29 567 3 13 2 -1.8 93.876
## 2718 42 146 1 999 1 -1.8 92.893
## 2719 43 177 1 999 1 -3.4 92.649
## 2720 53 247 5 999 2 -1.8 93.369
## 2721 42 77 2 999 1 -1.8 92.893
## 2722 29 142 1 999 1 -0.1 93.200
## 2723 33 296 5 999 1 -1.8 92.893
## 2724 34 347 1 999 1 -1.8 92.893
## 2725 32 114 1 999 1 -1.8 93.075
## 2726 54 265 2 999 1 -1.8 92.893
## 2727 30 75 1 999 1 -1.8 92.893
## 2728 50 549 1 999 1 -1.8 92.893
## 2729 50 160 1 999 1 -2.9 92.963
## 2730 51 194 1 999 1 -1.8 92.893
## 2731 30 119 3 999 1 -1.8 92.893
## 2732 37 188 2 999 1 -0.1 93.200
## 2733 27 130 2 999 1 -2.9 92.201
## 2734 34 183 2 999 1 -0.1 93.200
## 2735 41 181 1 999 1 -2.9 92.469
## 2736 37 570 1 999 1 -3.4 92.431
## 2737 35 536 1 999 1 -1.8 92.893
## 2738 34 113 1 999 1 -0.1 93.200
## 2739 43 135 3 999 1 -1.8 92.893
## 2740 34 253 2 999 1 -1.8 92.843
## 2741 50 95 7 999 1 -2.9 92.963
## 2742 47 21 3 999 1 -0.1 93.200
## 2743 29 364 2 999 1 -1.8 92.893
## 2744 31 829 1 999 1 -1.8 92.893
## 2745 32 2184 2 999 1 -3.4 92.649
## 2746 80 242 1 999 2 -3.4 92.431
## 2747 35 229 1 999 1 -1.8 93.075
## 2748 72 207 8 999 1 -2.9 92.201
## 2749 78 234 1 999 1 -3.4 92.379
## 2750 47 222 1 999 1 -1.8 93.075
## 2751 34 149 2 999 1 -0.1 93.200
## 2752 44 58 1 999 1 -1.8 92.893
## 2753 36 184 2 999 1 -1.8 92.893
## 2754 34 159 1 999 1 -1.8 92.893
## 2755 57 265 5 999 1 -1.8 92.893
## 2756 31 97 2 999 1 -0.1 93.200
## 2757 39 199 1 999 1 -1.8 92.893
## 2758 34 82 1 999 1 -0.1 93.200
## 2759 29 76 1 999 2 -1.8 92.893
## 2760 37 68 1 999 1 -0.1 93.200
## 2761 26 215 1 999 1 -2.9 92.201
## 2762 57 199 2 999 1 -1.8 93.075
## 2763 36 146 1 999 1 -3.4 92.431
## 2764 24 352 2 999 1 -2.9 92.963
## 2765 36 253 3 999 1 -1.8 92.893
## 2766 29 90 1 999 1 -1.8 92.893
## 2767 37 104 2 999 1 -1.8 92.893
## 2768 78 234 1 999 1 -3.4 92.379
## 2769 85 462 1 999 1 -1.8 93.749
## 2770 40 54 1 999 1 -2.9 92.201
## 2771 50 67 1 999 1 -1.8 92.893
## 2772 40 202 3 999 1 -1.8 93.075
## 2773 30 1038 1 999 1 -1.8 92.893
## 2774 57 71 1 5 2 -2.9 92.201
## 2775 49 79 2 999 1 -0.1 93.200
## 2776 38 220 1 999 1 -1.8 93.075
## 2777 43 126 2 999 1 -1.8 92.893
## 2778 43 377 1 999 1 -1.7 94.215
## 2779 39 182 1 999 1 -1.8 93.075
## 2780 36 156 1 999 1 -1.8 92.893
## 2781 43 87 2 999 1 -1.8 93.075
## 2782 35 58 1 999 1 -1.8 93.075
## 2783 36 67 1 999 1 -1.8 92.893
## 2784 29 258 4 999 1 -1.8 92.893
## 2785 27 472 6 999 1 -1.8 92.893
## 2786 59 416 1 999 1 -1.8 93.075
## 2787 32 326 3 999 1 -1.8 92.893
## 2788 26 215 1 999 1 -2.9 92.201
## 2789 41 105 2 999 1 -0.1 93.200
## 2790 49 188 1 999 1 -0.1 93.200
## 2791 38 350 2 999 2 -1.8 92.843
## 2792 32 100 1 999 1 -0.1 93.200
## 2793 29 54 1 999 1 -1.8 92.893
## 2794 42 551 1 999 1 -1.8 92.893
## 2795 33 143 3 999 1 -1.8 92.893
## 2796 46 231 1 999 1 -1.8 92.893
## 2797 33 174 1 999 1 -0.1 93.200
## 2798 29 29 2 999 1 -1.8 92.893
## 2799 29 152 1 999 1 -1.8 92.893
## 2800 30 142 3 999 1 -1.8 92.893
## 2801 31 165 2 999 1 -0.1 93.200
## 2802 25 67 1 999 1 -2.9 92.963
## 2803 42 185 1 7 3 -1.8 93.369
## 2804 58 109 1 999 1 -1.8 92.893
## 2805 76 136 1 999 2 -1.1 94.199
## 2806 45 207 1 999 1 -1.8 92.893
## 2807 25 304 3 12 2 -1.8 92.893
## 2808 24 332 1 999 1 -1.8 93.075
## 2809 36 332 1 999 1 -3.4 92.431
## 2810 38 37 3 999 1 -1.8 92.893
## 2811 29 240 3 999 1 -1.8 92.893
## 2812 27 680 1 999 1 -1.8 92.893
## 2813 44 1210 2 999 1 -0.1 93.200
## 2814 35 345 2 999 1 -1.8 92.893
## 2815 27 282 4 999 1 -1.8 92.893
## 2816 39 120 1 999 1 -1.8 93.075
## 2817 83 257 1 999 3 -1.7 94.215
## 2818 31 215 1 999 1 -0.1 93.200
## 2819 32 209 2 999 1 -1.8 92.893
## 2820 53 61 2 999 1 -0.1 93.200
## 2821 43 1011 1 999 1 -0.1 93.200
## 2822 36 490 3 999 2 -1.8 93.075
## 2823 56 1573 2 999 1 -3.4 92.431
## 2824 30 155 2 999 1 -1.8 92.893
## 2825 40 77 1 999 1 -1.8 93.075
## 2826 48 61 7 999 1 -0.1 93.200
## 2827 37 80 1 999 1 -2.9 92.963
## 2828 33 358 2 999 1 -1.8 92.893
## 2829 34 121 1 999 1 -1.8 93.075
## 2830 38 26 1 999 2 -1.8 92.893
## 2831 31 84 1 999 1 -1.8 93.075
## 2832 43 73 2 999 1 -0.1 93.200
## 2833 34 205 3 999 1 -0.1 93.200
## 2834 36 50 1 999 1 -1.8 92.893
## 2835 44 144 2 999 1 -1.8 92.893
## 2836 54 335 1 999 1 -1.8 92.893
## 2837 79 464 1 999 1 -1.7 94.215
## 2838 58 154 1 999 1 -3.0 92.713
## 2839 50 146 1 999 1 -0.1 93.200
## 2840 35 444 1 999 1 -2.9 92.963
## 2841 37 326 5 999 2 -1.8 92.893
## 2842 57 674 2 999 1 -1.8 92.893
## 2843 68 1248 2 999 1 -3.4 92.649
## 2844 32 100 4 999 1 -1.8 92.893
## 2845 56 50 1 999 1 -1.8 92.893
## 2846 37 82 2 999 1 -1.8 92.893
## 2847 28 216 1 999 1 -1.8 92.893
## 2848 40 74 8 999 1 -1.8 92.893
## 2849 44 82 2 999 1 -1.8 92.893
## 2850 36 297 2 999 1 -1.8 92.893
## 2851 46 179 5 999 2 -1.8 93.075
## 2852 58 451 2 999 1 -1.8 92.893
## 2853 32 62 6 999 1 -1.8 92.893
## 2854 44 200 1 999 1 -0.1 93.200
## 2855 47 903 2 999 1 -1.8 93.075
## 2856 23 16 5 999 1 -1.8 92.893
## 2857 27 117 1 999 1 -1.8 92.893
## 2858 58 74 2 999 2 -1.8 92.893
## 2859 27 670 4 999 1 -1.8 92.893
## 2860 48 50 1 999 1 -0.1 93.200
## 2861 76 168 1 999 1 -1.8 93.876
## 2862 45 160 1 999 1 -1.8 92.893
## 2863 30 405 1 999 2 -1.8 92.893
## 2864 26 541 1 999 2 -1.1 94.601
## 2865 35 51 1 999 1 -0.1 93.200
## 2866 43 87 2 999 1 -1.8 93.075
## 2867 38 456 1 999 1 -1.8 93.075
## 2868 45 132 1 999 1 -1.8 92.893
## 2869 49 132 1 999 1 -1.8 92.893
## 2870 35 159 2 999 1 -0.1 93.200
## 2871 58 266 1 999 1 -1.8 93.075
## 2872 34 321 4 999 3 -1.8 93.876
## 2873 47 267 2 999 1 -1.8 93.075
## 2874 35 137 1 999 1 -1.8 92.893
## 2875 19 110 2 999 3 -3.0 92.713
## 2876 46 187 1 999 1 -0.1 93.200
## 2877 35 178 2 999 1 -1.8 92.893
## 2878 38 309 1 999 1 -1.8 92.893
## 2879 54 119 1 999 1 -0.1 93.200
## 2880 39 313 1 999 1 -1.8 92.893
## 2881 49 340 2 999 1 -0.1 93.200
## 2882 37 180 3 999 1 -1.8 92.893
## 2883 26 191 2 999 1 -1.8 92.893
## 2884 35 185 2 999 1 -0.1 93.200
## 2885 23 7 5 999 1 -1.8 92.893
## 2886 55 87 2 999 1 -1.8 93.075
## 2887 58 164 1 999 1 -3.4 92.431
## 2888 35 334 1 999 1 -1.8 92.893
## 2889 41 105 5 999 1 -0.1 93.200
## 2890 37 242 2 999 1 -0.1 93.200
## 2891 29 32 2 999 1 -1.8 93.075
## 2892 31 408 1 999 1 -0.1 93.200
## 2893 58 321 3 999 1 -0.1 93.200
## 2894 43 1388 7 999 1 -1.8 92.893
## 2895 41 163 1 999 1 -0.1 93.200
## 2896 34 41 1 999 1 -1.8 92.893
## 2897 59 324 2 999 1 -1.8 92.893
## 2898 29 34 1 999 1 -1.8 92.893
## 2899 33 637 4 999 1 -1.8 92.893
## 2900 35 414 2 999 1 -1.8 92.893
## 2901 35 209 1 999 2 -3.4 92.649
## 2902 33 5 1 999 1 -1.1 94.199
## 2903 70 90 3 999 1 -2.9 92.201
## 2904 28 62 2 999 1 -1.1 94.199
## 2905 31 7 11 999 1 -1.8 92.893
## 2906 50 126 2 999 1 -1.8 92.893
## 2907 52 423 1 999 1 -1.8 92.893
## 2908 45 384 1 999 1 -0.1 93.200
## 2909 38 13 4 999 1 -1.8 93.075
## 2910 43 107 3 999 1 -1.8 92.893
## 2911 47 113 2 999 1 -1.7 94.027
## 2912 58 144 2 999 1 -1.8 93.369
## 2913 58 487 1 999 2 -3.4 92.649
## 2914 24 467 3 6 3 -1.1 94.767
## 2915 55 129 2 999 1 -1.7 94.215
## 2916 35 280 2 999 1 -1.8 92.893
## 2917 74 184 2 14 2 -1.8 93.749
## 2918 32 693 5 999 1 -1.8 92.893
## 2919 36 133 1 999 1 -3.4 92.431
## 2920 35 523 2 999 1 -1.8 92.893
## 2921 34 17 4 999 1 -1.8 92.893
## 2922 32 101 2 999 1 -1.8 92.893
## 2923 32 813 2 999 1 -1.8 92.893
## 2924 44 113 1 999 1 -1.8 93.876
## 2925 27 124 2 999 1 -1.8 92.893
## 2926 47 225 4 999 1 -1.8 93.075
## 2927 29 43 4 999 1 -0.1 93.200
## 2928 34 163 1 999 1 -1.8 92.893
## 2929 53 166 1 999 1 -0.1 93.200
## 2930 51 841 2 999 2 -1.1 94.199
## 2931 38 697 2 999 1 -0.1 93.200
## 2932 45 116 2 999 1 -1.8 93.075
## 2933 64 427 1 999 1 -3.4 92.431
## 2934 31 208 1 999 1 -1.8 93.075
## 2935 27 313 1 999 1 -1.8 92.893
## 2936 22 162 2 999 1 -2.9 92.201
## 2937 35 173 1 999 1 -1.8 92.893
## 2938 27 99 6 999 1 -2.9 92.469
## 2939 46 159 2 999 1 -1.8 92.893
## 2940 66 881 3 999 1 -1.8 93.369
## 2941 57 334 2 999 1 -1.8 92.893
## 2942 40 234 5 999 1 -0.1 93.200
## 2943 34 905 1 999 1 -0.1 93.200
## 2944 53 705 1 999 1 -2.9 92.963
## 2945 29 302 1 999 1 -1.8 92.893
## 2946 49 145 1 999 1 -1.8 92.893
## 2947 38 515 1 999 1 -1.8 92.893
## 2948 50 475 6 999 1 -1.8 93.075
## 2949 34 346 1 999 1 -1.7 94.215
## 2950 29 54 1 999 1 -1.8 93.075
## 2951 52 211 1 999 1 -3.4 92.379
## 2952 39 483 1 999 1 -0.1 93.200
## 2953 52 6 1 999 1 -1.1 94.601
## 2954 42 55 1 999 1 -0.1 93.200
## 2955 56 80 3 999 1 -1.8 92.893
## 2956 58 164 5 999 1 -1.8 93.369
## 2957 33 289 1 999 1 -1.7 94.215
## 2958 33 194 1 999 1 -1.8 92.893
## 2959 47 74 6 999 2 -1.8 92.893
## 2960 28 65 3 999 1 -1.8 92.893
## 2961 59 240 3 999 1 -2.9 92.201
## 2962 21 259 1 999 1 -2.9 92.201
## 2963 45 29 6 999 1 -1.8 92.893
## 2964 33 205 1 999 1 -1.8 92.893
## 2965 41 364 1 999 1 -1.8 92.893
## 2966 29 232 1 999 1 -1.8 93.876
## 2967 35 92 2 999 1 -2.9 92.963
## 2968 40 317 1 999 1 -1.8 92.893
## 2969 44 283 1 999 2 -3.4 92.431
## 2970 55 123 2 999 1 -0.1 93.200
## 2971 36 300 1 999 1 -1.8 92.893
## 2972 81 170 2 999 1 -1.8 92.893
## 2973 32 56 1 999 1 -1.8 92.893
## 2974 67 68 4 999 1 -3.4 92.649
## 2975 48 95 1 999 1 -1.8 93.075
## 2976 30 1038 1 999 1 -1.8 92.893
## 2977 40 239 1 999 1 -1.8 92.893
## 2978 45 71 2 999 1 -0.1 93.200
## 2979 39 165 2 999 1 -1.7 94.055
## 2980 29 281 4 999 1 -1.8 92.893
## 2981 29 2129 1 999 1 -1.8 93.075
## 2982 34 111 2 999 1 -0.1 93.200
## 2983 66 147 2 999 1 -2.9 92.201
## 2984 57 187 1 999 1 -2.9 92.201
## 2985 54 39 1 999 1 -1.8 92.893
## 2986 58 398 2 999 1 -2.9 92.201
## 2987 57 114 2 999 1 -1.1 94.199
## 2988 42 103 2 999 1 -0.1 93.200
## 2989 36 85 1 999 1 -1.8 92.893
## 2990 30 62 4 999 1 -1.8 92.893
## 2991 35 404 1 999 1 -1.8 92.893
## 2992 26 235 1 999 1 -1.7 94.215
## 2993 52 38 2 999 1 -1.8 92.893
## 2994 39 124 3 999 2 -1.8 92.893
## 2995 38 508 1 999 1 -0.1 93.200
## 2996 40 825 6 999 1 -0.1 93.200
## 2997 27 127 3 999 1 -1.8 93.749
## 2998 30 268 5 10 2 -1.8 92.843
## 2999 44 130 1 999 1 -0.1 93.200
## 3000 36 104 1 999 2 -3.4 92.431
## 3001 36 267 1 999 1 -1.8 92.893
## 3002 47 583 2 999 1 -1.8 93.075
## 3003 30 316 1 999 1 -1.8 93.075
## 3004 32 61 4 999 1 -1.8 92.893
## 3005 31 39 1 999 1 -1.8 93.075
## 3006 45 96 2 999 1 -1.8 92.893
## 3007 34 138 1 999 1 -3.4 92.431
## 3008 49 277 4 999 1 -1.8 93.369
## 3009 47 234 2 999 1 -1.8 92.893
## 3010 33 37 2 999 1 -0.1 93.200
## 3011 41 155 1 999 1 -0.1 93.200
## 3012 42 42 2 999 1 -1.8 92.893
## 3013 32 68 10 999 1 -1.8 92.893
## 3014 52 10 7 999 1 -0.1 93.200
## 3015 32 74 2 999 1 -0.1 93.200
## 3016 46 248 1 999 1 -0.1 93.200
## 3017 81 263 1 999 1 -3.4 92.649
## 3018 46 199 2 999 2 -1.1 94.767
## 3019 28 101 2 999 2 -1.7 94.215
## 3020 27 217 1 999 2 -3.4 92.649
## 3021 43 69 1 999 1 -1.8 92.893
## 3022 39 171 2 999 1 -3.4 92.379
## 3023 38 31 3 999 1 -1.8 93.075
## 3024 36 191 1 999 1 -1.8 92.893
## 3025 46 125 1 999 1 -0.1 93.200
## 3026 30 218 1 999 1 -1.8 93.075
## 3027 36 187 1 999 1 -0.1 93.200
## 3028 29 101 5 999 1 -1.8 92.893
## 3029 39 239 1 999 1 -1.8 92.893
## 3030 29 479 1 999 1 -1.8 93.075
## 3031 29 241 2 999 1 -1.8 92.893
## 3032 44 223 2 999 1 -1.8 92.893
## 3033 33 48 2 999 1 -1.8 92.893
## 3034 33 787 10 999 1 -1.8 92.893
## 3035 51 254 1 999 1 -1.8 92.893
## 3036 37 300 1 999 2 -1.7 94.055
## 3037 35 262 3 999 1 -1.8 93.749
## 3038 34 155 4 999 1 -1.1 94.199
## 3039 31 87 3 999 1 -1.8 92.893
## 3040 35 425 2 999 1 -2.9 92.201
## 3041 30 210 1 999 1 -1.1 94.199
## 3042 52 20 5 999 1 -1.8 93.075
## 3043 32 135 3 999 1 -3.0 92.713
## 3044 35 90 2 999 1 -0.1 93.200
## 3045 28 442 1 999 1 -1.8 92.893
## 3046 60 133 6 999 2 -3.4 92.431
## 3047 48 99 3 999 1 -3.4 92.379
## 3048 34 104 2 999 1 -1.8 92.893
## 3049 60 599 1 999 1 -3.4 92.431
## 3050 31 78 1 999 1 -1.8 92.893
## 3051 35 986 1 7 3 -3.4 92.649
## 3052 29 419 1 999 1 -1.8 92.893
## 3053 27 94 2 999 1 -1.8 92.893
## 3054 37 49 3 999 1 -1.8 92.893
## 3055 36 38 1 999 2 -1.8 92.893
## 3056 56 104 1 999 1 -0.1 93.200
## 3057 20 190 2 999 1 -2.9 92.201
## 3058 33 731 3 999 1 -1.8 92.893
## 3059 29 122 1 999 2 -1.8 93.876
## 3060 31 43 1 999 1 -1.8 92.893
## 3061 37 180 2 999 1 -1.8 93.075
## 3062 42 104 3 999 1 -3.4 92.649
## 3063 52 139 2 999 1 -0.1 93.200
## 3064 24 362 1 999 1 -1.8 92.893
## 3065 31 156 1 999 1 -1.8 92.893
## 3066 31 239 1 999 1 -1.8 93.075
## 3067 49 74 1 999 1 -1.8 93.075
## 3068 31 424 2 999 2 -1.8 93.075
## 3069 32 65 1 999 1 -1.8 93.075
## 3070 54 639 2 999 1 -0.1 93.200
## 3071 48 121 4 999 1 -1.8 93.876
## 3072 31 187 1 999 1 -1.8 92.893
## 3073 36 96 1 999 1 -2.9 92.201
## 3074 52 130 2 999 1 -0.1 93.200
## 3075 47 138 1 999 1 -0.1 93.200
## 3076 38 149 2 999 1 -1.1 94.199
## 3077 51 97 6 6 4 -1.1 94.199
## 3078 49 85 4 999 1 -1.8 92.893
## 3079 35 104 4 999 1 -1.8 92.893
## 3080 36 320 1 999 2 -3.4 92.649
## 3081 35 82 5 999 1 -1.8 92.893
## 3082 43 48 2 999 1 -1.8 93.075
## 3083 32 132 1 999 1 -1.8 92.893
## 3084 36 291 1 999 1 -1.8 93.075
## 3085 34 340 2 999 1 -1.8 92.893
## 3086 48 214 1 999 1 -1.8 92.893
## 3087 61 238 2 999 2 -1.1 94.601
## 3088 38 518 2 999 1 -1.8 93.075
## 3089 46 403 1 999 1 -1.8 92.893
## 3090 39 187 1 999 1 -0.1 93.200
## 3091 30 242 4 999 1 -1.8 93.749
## 3092 38 52 2 999 1 -1.8 92.893
## 3093 48 56 1 999 1 -1.8 92.893
## 3094 38 174 3 999 1 -1.8 92.893
## 3095 33 392 1 999 1 -1.8 92.893
## 3096 49 48 1 999 1 -0.1 93.200
## 3097 32 128 3 999 2 -1.1 94.199
## 3098 46 174 1 999 1 -0.1 93.200
## 3099 55 687 1 999 2 -1.7 94.215
## 3100 30 332 1 999 1 -0.1 93.200
## 3101 43 79 1 999 1 -1.8 92.893
## 3102 30 340 3 999 1 -1.8 92.893
## 3103 26 81 1 999 1 -3.4 92.379
## 3104 37 17 1 999 1 -0.1 93.200
## 3105 40 151 4 999 1 -1.8 92.893
## 3106 62 220 3 999 1 -1.7 94.215
## 3107 37 435 2 999 1 -1.8 93.075
## 3108 32 161 2 999 1 -1.8 93.075
## 3109 43 157 7 999 1 -1.8 92.893
## 3110 34 64 1 999 1 -0.1 93.200
## 3111 35 371 1 999 1 -3.4 92.431
## 3112 31 299 2 999 1 -1.8 92.893
## 3113 40 43 1 999 1 -1.8 92.893
## 3114 25 159 2 10 4 -1.7 94.027
## 3115 34 54 1 999 1 -0.1 93.200
## 3116 51 228 2 999 1 -1.8 92.893
## 3117 35 82 2 999 1 -1.8 92.893
## 3118 32 162 4 999 1 -1.8 92.893
## 3119 20 250 1 999 1 -1.1 94.601
## 3120 25 261 1 999 1 -1.8 92.893
## 3121 31 131 1 999 1 -0.1 93.200
## 3122 39 172 2 999 1 -1.8 92.893
## 3123 48 151 1 999 1 -1.8 93.369
## 3124 44 55 1 999 2 -1.8 92.893
## 3125 33 519 2 999 2 -1.8 92.893
## 3126 36 342 1 999 2 -3.4 92.431
## 3127 37 89 1 999 1 -3.4 92.431
## 3128 31 611 1 999 1 -1.8 92.893
## 3129 35 263 1 999 1 -1.8 92.893
## 3130 26 61 4 999 1 -1.8 92.893
## 3131 36 1064 3 999 1 -1.8 93.075
## 3132 32 218 1 999 1 -1.8 93.075
## 3133 51 135 2 999 1 -2.9 92.469
## 3134 33 510 1 999 1 -1.1 94.767
## 3135 56 240 2 999 1 -1.8 92.893
## 3136 54 90 1 999 1 -2.9 92.201
## 3137 39 243 1 999 1 -1.8 92.893
## 3138 33 164 2 999 1 -1.8 92.893
## 3139 36 168 5 999 1 -1.8 92.893
## 3140 44 79 3 999 1 -1.8 92.893
## 3141 24 319 1 999 1 -2.9 92.201
## 3142 32 234 1 999 1 -0.1 93.200
## 3143 40 162 1 999 1 -2.9 92.201
## 3144 29 396 2 999 1 -1.8 92.893
## 3145 28 589 3 999 1 -3.4 92.379
## 3146 41 309 1 999 1 -1.8 92.893
## 3147 41 50 2 999 1 -1.8 93.075
## 3148 37 163 1 999 1 -3.4 92.649
## 3149 43 1084 1 999 1 -0.1 93.200
## 3150 39 68 1 999 1 -1.8 92.893
## 3151 35 169 1 999 1 -1.8 92.893
## 3152 45 150 3 999 1 -2.9 92.201
## 3153 42 455 2 999 1 -1.8 92.893
## 3154 31 160 2 999 1 -1.8 92.893
## 3155 32 343 6 999 1 -1.8 92.893
## 3156 52 9 5 999 1 -1.8 93.075
## 3157 41 1203 2 999 1 -1.8 93.075
## 3158 24 115 1 999 1 -2.9 92.469
## 3159 39 400 2 999 1 -1.8 92.893
## 3160 33 498 1 999 1 -1.8 92.893
## 3161 39 459 1 999 1 -2.9 92.963
## 3162 35 110 2 18 2 -1.1 94.199
## 3163 31 611 1 999 1 -1.8 92.893
## 3164 58 64 1 999 1 -0.1 93.200
## 3165 30 162 2 9 2 -1.1 94.199
## 3166 46 96 2 999 1 -1.8 92.893
## 3167 24 367 1 999 2 -1.1 94.199
## 3168 45 136 1 999 1 -0.1 93.200
## 3169 32 205 4 999 1 -3.0 92.713
## 3170 27 116 1 4 2 -3.4 92.649
## 3171 30 354 1 999 1 -1.8 92.893
## 3172 78 234 1 999 1 -3.4 92.379
## 3173 30 405 1 999 3 -1.1 94.199
## 3174 59 94 2 999 1 -1.8 92.893
## 3175 56 361 1 12 4 -1.7 94.027
## 3176 32 196 2 999 1 -1.8 92.893
## 3177 25 232 3 999 1 -1.8 93.749
## 3178 41 884 1 999 1 -1.8 93.075
## 3179 38 305 1 999 1 -0.1 93.200
## 3180 33 211 2 999 1 -1.8 93.075
## 3181 56 124 1 999 1 -0.1 93.200
## 3182 39 286 2 999 1 -1.8 93.075
## 3183 33 787 10 999 1 -1.8 92.893
## 3184 41 135 1 999 1 -0.1 93.200
## 3185 36 27 6 999 1 -1.8 92.893
## 3186 29 138 1 999 1 -0.1 93.200
## 3187 36 243 1 999 1 -2.9 92.469
## 3188 44 56 1 999 1 -1.8 93.075
## 3189 59 1397 3 999 1 -1.8 93.749
## 3190 28 155 1 999 1 -1.8 92.893
## 3191 25 72 2 999 1 -1.8 92.893
## 3192 39 273 4 999 1 -1.8 92.893
## 3193 38 311 1 999 1 -1.8 93.075
## 3194 44 804 2 999 1 -1.8 93.075
## 3195 39 83 1 999 1 -1.8 92.893
## 3196 30 105 1 999 1 -1.8 93.369
## 3197 43 36 5 999 1 -1.8 92.893
## 3198 33 557 1 999 1 -1.8 92.893
## 3199 46 382 1 999 1 -1.7 94.027
## 3200 49 49 1 999 1 -1.8 92.893
## 3201 31 829 1 999 1 -1.8 92.893
## 3202 64 79 4 999 2 -3.4 92.649
## 3203 47 253 1 999 1 -0.1 93.200
## 3204 26 716 3 999 1 -1.8 92.893
## 3205 39 91 1 999 1 -1.8 93.075
## 3206 27 411 6 999 1 -1.8 92.893
## 3207 43 303 1 999 1 -1.8 93.075
## 3208 35 172 2 999 1 -0.1 93.200
## 3209 39 445 2 999 1 -1.8 92.893
## 3210 45 182 2 999 1 -1.8 92.893
## 3211 34 291 1 999 1 -1.8 92.893
## 3212 44 133 2 999 1 -1.8 92.893
## 3213 28 267 1 999 1 -1.8 92.893
## 3214 29 144 1 999 1 -1.8 92.893
## 3215 48 166 1 999 1 -1.7 94.027
## 3216 27 253 1 999 1 -1.8 92.893
## 3217 32 309 3 999 1 -1.8 92.893
## 3218 35 266 1 999 1 -2.9 92.963
## 3219 67 218 1 999 1 -1.1 94.601
## 3220 38 270 4 999 1 -1.8 92.893
## 3221 60 481 1 999 1 -1.1 94.199
## 3222 36 331 1 6 4 -1.1 94.199
## 3223 44 159 2 999 1 -1.1 94.601
## 3224 28 217 1 999 1 -1.8 93.369
## 3225 48 355 5 999 1 -1.8 92.893
## 3226 58 315 3 999 1 -1.8 92.893
## 3227 51 502 1 999 2 -1.8 92.893
## 3228 26 75 10 999 2 -1.8 92.893
## 3229 33 105 1 999 1 -0.1 93.200
## 3230 36 87 1 999 2 -2.9 92.201
## 3231 27 129 4 999 1 -1.8 93.369
## 3232 50 278 6 999 1 -0.1 93.200
## 3233 30 1038 1 999 1 -1.8 92.893
## 3234 40 131 2 999 1 -0.1 93.200
## 3235 58 88 3 999 2 -1.8 93.369
## 3236 32 211 1 999 1 -1.8 92.893
## 3237 44 84 1 999 1 -1.8 92.893
## 3238 33 1075 1 999 1 -1.8 92.893
## 3239 50 63 3 999 1 -1.8 92.893
## 3240 45 319 1 999 3 -1.1 94.767
## 3241 38 306 1 999 1 -0.1 93.200
## 3242 31 204 2 999 1 -1.8 92.893
## 3243 28 257 4 999 2 -1.8 93.369
## 3244 47 58 1 999 1 -1.8 92.893
## 3245 34 195 2 999 1 -1.8 92.893
## 3246 38 172 1 999 1 -1.8 92.893
## 3247 34 121 2 999 1 -3.4 92.649
## 3248 27 384 1 9 2 -1.8 93.369
## 3249 50 136 2 999 1 -0.1 93.200
## 3250 34 442 2 999 1 -1.8 92.893
## 3251 27 184 1 999 1 -1.1 94.601
## 3252 23 70 3 999 1 -1.8 92.893
## 3253 32 134 1 999 1 -1.8 92.893
## 3254 26 176 2 999 1 -2.9 92.201
## 3255 41 102 2 999 1 -1.8 92.893
## 3256 46 490 3 999 4 -1.1 94.199
## 3257 29 88 1 999 2 -2.9 92.201
## 3258 69 93 1 999 1 -2.9 92.201
## 3259 30 124 2 999 1 -1.8 92.893
## 3260 81 161 1 999 1 -3.4 92.649
## 3261 33 157 2 15 3 -1.8 93.876
## 3262 34 407 3 8 3 -1.8 93.876
## 3263 26 176 2 999 1 -2.9 92.201
## 3264 49 135 2 999 1 -1.8 92.893
## 3265 36 193 2 999 1 -0.1 93.200
## 3266 30 399 2 999 1 -0.1 93.200
## 3267 38 559 1 999 1 -0.1 93.200
## 3268 19 207 2 999 1 -3.4 92.379
## 3269 48 301 1 999 2 -1.1 94.767
## 3270 41 69 1 999 1 -1.8 93.075
## 3271 36 327 3 999 1 -1.8 92.893
## 3272 80 411 1 999 1 -1.1 94.601
## 3273 40 96 2 999 1 -1.8 93.075
## 3274 58 159 1 999 1 -1.8 92.893
## 3275 46 221 2 999 1 -1.8 93.075
## 3276 42 237 2 999 1 -1.8 93.075
## 3277 33 306 4 999 1 -1.8 92.893
## 3278 53 228 1 999 1 -1.8 93.369
## 3279 29 133 1 999 1 -0.1 93.200
## 3280 35 520 3 999 2 -3.0 92.713
## 3281 41 150 2 999 1 -1.8 93.075
## 3282 35 134 1 999 1 -1.8 92.893
## 3283 33 109 1 999 1 -1.8 92.893
## 3284 52 632 1 999 1 -3.4 92.649
## 3285 33 410 2 999 1 -1.8 92.893
## 3286 37 322 2 999 1 -1.8 92.893
## 3287 29 366 3 999 1 -1.8 92.893
## 3288 33 397 1 999 2 -1.1 94.199
## 3289 29 168 4 999 1 -1.8 92.893
## 3290 32 73 2 999 1 -1.8 93.075
## 3291 30 232 2 999 1 -0.1 93.200
## 3292 33 273 2 999 1 -1.8 93.075
## 3293 35 73 1 999 1 -2.9 92.201
## 3294 71 232 1 999 2 -1.1 94.199
## 3295 49 187 5 999 1 -0.1 93.200
## 3296 49 300 3 999 1 -1.8 93.075
## 3297 33 61 2 6 2 -3.4 92.431
## 3298 82 79 2 999 2 -2.9 92.201
## 3299 44 120 1 999 1 -2.9 92.201
## 3300 72 238 2 999 1 -2.9 92.201
## 3301 31 396 1 999 1 -0.1 93.200
## 3302 35 66 1 13 2 -1.7 94.055
## 3303 33 87 2 999 2 -1.8 93.075
## 3304 61 228 2 999 1 -1.8 93.876
## 3305 58 198 2 999 2 -1.8 93.369
## 3306 41 108 2 999 1 -1.8 92.893
## 3307 31 273 2 999 1 -1.8 93.075
## 3308 44 428 2 999 1 -1.8 92.893
## 3309 26 440 5 999 2 -1.7 94.027
## 3310 25 124 1 999 1 -2.9 92.963
## 3311 43 152 3 999 1 -1.8 92.893
## 3312 35 608 1 9 2 -1.1 94.601
## 3313 60 357 2 999 1 -1.1 94.601
## 3314 50 587 2 999 1 -2.9 92.201
## 3315 54 72 4 999 1 -1.1 94.601
## 3316 56 181 2 9 2 -1.8 93.369
## 3317 34 248 1 999 1 -1.8 92.893
## 3318 48 89 1 999 1 -0.1 93.200
## 3319 29 720 1 6 2 -1.8 93.876
## 3320 47 178 3 999 1 -1.8 92.893
## 3321 34 409 1 999 1 -1.1 94.199
## 3322 49 237 1 999 2 -3.4 92.431
## 3323 53 145 2 999 1 -1.8 92.893
## 3324 24 303 1 999 1 -1.1 94.199
## 3325 37 155 1 999 1 -1.1 94.199
## 3326 34 71 1 999 1 -1.8 93.075
## 3327 34 11 1 999 1 -1.1 94.199
## 3328 40 130 1 7 2 -3.4 92.649
## 3329 28 148 1 999 2 -2.9 92.201
## 3330 32 142 1 999 1 -1.8 92.893
## 3331 23 143 2 999 1 -1.8 92.893
## 3332 37 125 1 999 1 -1.8 92.893
## 3333 49 668 1 999 1 -1.8 92.893
## 3334 29 116 2 999 1 -2.9 92.963
## 3335 26 535 1 999 1 -1.8 92.893
## 3336 63 134 3 999 1 -3.4 92.379
## 3337 30 34 2 999 1 -1.8 92.893
## 3338 33 61 2 999 1 -1.8 92.893
## 3339 78 203 1 999 1 -1.7 94.215
## 3340 35 100 1 999 1 -1.8 92.893
## 3341 34 96 3 999 1 -1.8 92.893
## 3342 30 186 4 999 1 -1.8 92.893
## 3343 31 91 1 999 1 -3.4 92.431
## 3344 75 1020 3 999 3 -1.1 94.601
## 3345 50 166 2 999 1 -1.8 92.893
## 3346 46 335 3 999 2 -1.7 94.215
## 3347 27 304 1 999 1 -1.8 92.893
## 3348 91 837 1 999 2 -3.4 92.379
## 3349 32 96 1 999 1 -3.4 92.431
## 3350 71 122 2 999 1 -1.8 92.893
## 3351 35 212 2 999 1 -1.8 92.893
## 3352 49 165 1 999 1 -1.8 92.893
## 3353 45 224 2 999 1 -1.8 92.893
## 3354 26 78 2 999 1 -2.9 92.963
## 3355 34 139 2 999 1 -1.8 92.893
## 3356 32 590 1 999 2 -2.9 92.469
## 3357 34 293 2 999 1 -1.8 92.893
## 3358 34 88 3 999 1 -1.8 92.893
## 3359 27 74 1 999 1 -1.8 92.893
## 3360 60 63 1 999 2 -3.4 92.379
## 3361 46 836 1 999 1 -0.1 93.200
## 3362 47 113 2 999 1 -1.7 94.027
## 3363 37 481 2 999 4 -1.7 94.027
## 3364 35 136 1 999 1 -1.8 92.893
## 3365 44 13 6 999 1 -1.8 92.893
## 3366 35 433 1 999 1 -0.1 93.200
## 3367 50 178 5 999 1 -1.8 92.893
## 3368 32 107 2 999 1 -2.9 92.201
## 3369 26 359 1 999 1 -1.8 93.369
## 3370 53 81 2 999 1 -0.1 93.200
## 3371 33 172 2 999 1 -1.8 92.893
## 3372 30 104 1 999 1 -3.4 92.649
## 3373 48 279 1 999 2 -1.8 93.369
## 3374 41 392 1 999 1 -0.1 93.200
## 3375 42 211 2 999 1 -1.8 93.075
## 3376 31 80 1 999 1 -1.8 92.893
## 3377 26 598 4 12 3 -1.7 94.055
## 3378 32 66 3 999 1 -1.8 92.893
## 3379 46 110 1 999 1 -0.1 93.200
## 3380 42 126 2 999 1 -0.1 93.200
## 3381 55 73 1 999 1 -0.1 93.200
## 3382 33 335 1 999 1 -1.8 93.075
## 3383 39 49 1 999 1 -1.8 92.893
## 3384 34 8 2 999 1 -1.8 92.893
## 3385 37 158 1 999 1 -1.8 93.369
## 3386 30 160 4 999 1 -1.8 92.893
## 3387 45 64 1 999 2 -3.4 92.379
## 3388 37 272 2 999 1 -1.8 92.893
## 3389 46 388 2 999 1 -1.8 92.893
## 3390 31 116 2 999 2 -1.8 92.893
## 3391 35 140 2 999 1 -0.1 93.200
## 3392 39 2219 1 999 1 -2.9 92.963
## 3393 28 466 2 999 1 -1.8 92.893
## 3394 37 148 1 999 2 -2.9 92.201
## 3395 26 277 2 999 1 -1.8 92.893
## 3396 40 632 1 999 1 -1.8 92.893
## 3397 33 49 2 999 1 -1.8 92.893
## 3398 30 94 1 999 2 -3.4 92.649
## 3399 33 33 7 999 1 -1.8 92.893
## 3400 53 59 1 999 1 -1.8 92.893
## 3401 44 1091 1 999 1 -1.8 93.075
## 3402 32 110 1 999 1 -1.8 92.893
## 3403 57 56 2 999 1 -0.1 93.200
## 3404 71 71 2 999 1 -3.4 92.649
## 3405 31 113 2 999 1 -0.1 93.200
## 3406 23 502 1 999 1 -1.1 94.199
## 3407 82 143 2 999 1 -1.1 94.199
## 3408 39 52 1 999 1 -1.7 94.055
## 3409 33 347 2 999 1 -1.8 92.893
## 3410 30 808 1 12 2 -1.1 94.199
## 3411 43 124 1 999 1 -1.8 92.893
## 3412 39 180 1 999 1 -0.1 93.200
## 3413 43 50 1 999 1 -1.8 92.893
## 3414 54 198 1 999 1 -1.8 92.893
## 3415 36 414 2 999 1 -1.8 92.893
## 3416 59 61 1 999 1 -1.8 92.893
## 3417 78 173 2 999 1 -1.7 94.215
## 3418 24 84 1 9 3 -3.4 92.649
## 3419 42 211 1 999 1 -1.1 94.199
## 3420 39 343 3 999 1 -1.8 92.893
## 3421 30 104 1 999 1 -1.8 92.893
## 3422 39 110 2 999 1 -1.8 92.893
## 3423 60 99 2 999 2 -3.4 92.379
## 3424 42 419 3 999 1 -1.1 94.767
## 3425 24 102 6 999 1 -1.8 93.075
## 3426 28 83 9 999 1 -1.8 92.893
## 3427 36 236 1 999 1 -1.8 92.893
## 3428 32 132 3 999 1 -1.7 94.055
## 3429 30 155 1 999 2 -1.8 92.893
## 3430 31 197 1 999 1 -1.8 92.893
## 3431 29 154 3 999 1 -0.1 93.200
## 3432 46 796 5 999 1 -0.1 93.200
## 3433 75 229 1 999 2 -1.7 94.215
## 3434 35 165 1 999 1 -1.7 94.215
## 3435 29 93 1 999 1 -0.1 93.200
## 3436 29 131 1 999 1 -1.8 92.893
## 3437 34 230 1 999 1 -1.1 94.767
## 3438 43 239 1 999 1 -1.8 93.075
## 3439 39 72 2 999 1 -1.8 93.075
## 3440 37 78 1 999 1 -1.8 92.893
## 3441 35 305 3 999 1 -2.9 92.201
## 3442 23 413 1 999 1 -1.8 92.893
## 3443 40 156 5 999 1 -1.8 92.893
## 3444 24 68 4 999 1 -1.8 92.893
## 3445 32 261 1 999 1 -1.8 92.893
## 3446 44 127 1 999 2 -1.1 94.199
## 3447 33 519 2 999 2 -1.8 92.893
## 3448 50 429 1 999 1 -1.8 92.893
## 3449 33 843 1 999 1 -1.8 92.893
## 3450 38 173 1 999 3 -1.1 94.199
## 3451 53 583 2 999 1 -1.8 93.075
## 3452 60 270 4 6 4 -1.7 94.027
## 3453 55 213 1 999 1 -1.8 93.075
## 3454 60 176 1 999 1 -1.7 94.027
## 3455 32 128 2 999 1 -1.1 94.767
## 3456 36 108 1 999 1 -1.8 92.893
## 3457 32 143 1 999 2 -1.1 94.601
## 3458 23 198 2 999 1 -1.8 92.893
## 3459 28 472 2 999 1 -1.8 92.893
## 3460 28 201 1 999 1 -1.8 92.893
## 3461 40 524 3 999 1 -3.4 92.431
## 3462 43 57 1 999 1 -0.1 93.200
## 3463 37 161 1 999 1 -1.8 93.749
## 3464 48 279 1 999 2 -1.8 93.369
## 3465 35 199 2 999 1 -1.8 93.075
## 3466 54 138 1 7 2 -3.4 92.649
## 3467 57 534 3 999 1 -1.8 93.075
## 3468 32 52 8 999 0 1.4 93.444
## 3469 54 455 3 999 0 -2.9 92.963
## 3470 68 177 1 999 0 -1.8 93.749
## 3471 46 9 13 999 0 1.4 94.465
## 3472 33 191 3 999 0 1.4 93.444
## 3473 44 274 1 999 0 -1.8 93.075
## 3474 41 376 2 999 0 -1.8 93.369
## 3475 29 277 1 999 0 1.4 93.918
## 3476 45 763 1 999 0 -1.8 92.893
## 3477 26 455 4 999 0 1.4 93.918
## 3478 33 95 3 999 0 -1.8 93.075
## 3479 36 71 3 999 0 1.4 93.444
## 3480 59 1330 3 999 0 1.4 93.918
## 3481 54 117 1 999 0 -1.8 93.075
## 3482 50 74 1 999 0 1.1 93.994
## 3483 49 59 2 999 0 1.4 93.918
## 3484 43 1534 2 999 0 1.1 93.994
## 3485 34 453 2 999 0 1.4 94.465
## 3486 52 137 11 999 0 1.4 93.918
## 3487 30 1161 26 999 0 1.4 93.918
## 3488 51 358 3 999 0 -0.1 93.200
## 3489 42 58 3 999 0 -1.8 92.893
## 3490 41 370 1 999 0 -1.8 93.075
## 3491 69 420 4 999 0 -2.9 92.201
## 3492 81 210 1 999 0 -3.4 92.379
## 3493 28 276 2 999 0 -2.9 92.201
## 3494 25 35 6 999 0 1.4 94.465
## 3495 25 78 16 999 0 1.4 93.918
## 3496 30 67 13 999 0 1.1 93.994
## 3497 32 24 1 999 0 1.4 94.465
## 3498 38 172 7 999 0 1.4 93.444
## 3499 35 93 4 999 0 1.4 93.444
## 3500 30 186 3 999 0 1.4 93.444
## 3501 36 71 1 999 0 1.1 93.994
## 3502 41 471 1 999 0 -1.8 93.075
## 3503 47 223 1 999 0 1.1 93.994
## 3504 36 239 2 999 0 -1.8 93.075
## 3505 55 659 2 999 0 1.4 93.918
## 3506 35 162 1 999 0 1.1 93.994
## 3507 41 38 2 999 0 -0.1 93.200
## 3508 37 314 2 999 0 1.4 93.918
## 3509 39 127 1 999 0 1.1 93.994
## 3510 49 194 2 999 0 1.4 93.444
## 3511 28 434 1 999 0 -1.8 92.893
## 3512 38 240 1 999 0 -1.8 92.893
## 3513 41 211 1 999 0 -1.8 92.893
## 3514 60 59 1 999 0 -3.4 92.431
## 3515 33 373 1 999 0 -1.8 93.369
## 3516 32 169 2 999 0 -2.9 92.201
## 3517 48 214 2 999 0 1.4 93.918
## 3518 33 105 3 999 0 1.4 93.918
## 3519 49 29 9 999 0 -0.1 93.200
## 3520 42 588 3 999 0 1.1 93.994
## 3521 25 174 1 999 0 1.1 93.994
## 3522 32 71 4 999 0 1.1 93.994
## 3523 32 215 1 999 0 1.4 94.465
## 3524 30 300 3 999 0 -1.8 93.876
## 3525 33 285 2 999 0 1.4 93.918
## 3526 31 219 1 999 0 1.1 93.994
## 3527 47 138 4 999 0 1.4 93.918
## 3528 41 194 2 999 0 -1.8 93.075
## 3529 36 470 2 999 0 1.4 93.918
## 3530 33 67 1 999 0 1.4 93.444
## 3531 55 334 1 999 0 1.1 93.994
## 3532 29 151 2 999 0 1.4 93.918
## 3533 47 237 1 999 0 1.1 93.994
## 3534 40 91 1 999 0 -3.4 92.379
## 3535 45 13 5 999 0 1.4 94.465
## 3536 52 393 1 999 0 1.1 93.994
## 3537 44 248 2 999 0 1.1 93.994
## 3538 50 133 1 999 0 1.1 93.994
## 3539 34 48 5 999 0 1.4 93.444
## 3540 42 243 1 999 0 -1.8 92.893
## 3541 22 156 2 999 0 -1.8 93.075
## 3542 39 55 2 999 0 1.4 93.444
## 3543 25 92 6 999 0 1.4 94.465
## 3544 41 307 9 999 0 1.4 93.444
## 3545 53 118 3 999 0 1.4 93.918
## 3546 32 267 1 999 0 -3.4 92.431
## 3547 28 148 2 999 0 1.1 93.994
## 3548 33 103 2 999 0 1.4 93.918
## 3549 51 64 1 999 0 1.4 93.918
## 3550 35 84 1 999 0 -1.8 93.075
## 3551 36 106 1 999 0 1.4 93.444
## 3552 43 88 6 999 0 1.1 93.994
## 3553 55 269 2 999 0 1.1 93.994
## 3554 50 93 1 999 0 -1.8 93.075
## 3555 39 49 1 999 0 1.4 93.444
## 3556 40 78 1 999 0 -1.8 93.075
## 3557 44 309 1 999 0 -1.8 92.893
## 3558 46 8 6 999 0 1.4 94.465
## 3559 25 601 1 999 0 1.1 93.994
## 3560 41 295 1 999 0 -1.8 92.893
## 3561 47 53 1 999 0 -1.8 93.075
## 3562 50 43 2 999 0 1.1 93.994
## 3563 31 297 1 999 0 -0.1 93.200
## 3564 36 66 4 999 0 1.4 93.444
## 3565 32 61 4 999 0 -1.8 92.893
## 3566 57 65 1 999 0 -0.1 93.200
## 3567 41 475 2 999 0 1.1 93.994
## 3568 49 58 1 999 0 -1.8 93.075
## 3569 32 82 1 999 0 1.4 94.465
## 3570 38 757 2 999 0 1.4 94.465
## 3571 54 149 1 999 0 1.4 93.918
## 3572 33 9 17 999 0 1.4 93.918
## 3573 59 142 1 999 0 1.4 93.918
## 3574 39 306 3 999 0 1.4 93.444
## 3575 31 168 2 999 0 1.4 93.918
## 3576 33 64 1 999 0 1.4 93.444
## 3577 36 171 11 999 0 1.4 93.444
## 3578 39 299 4 999 0 1.1 93.994
## 3579 56 149 4 999 0 -0.1 93.200
## 3580 50 742 1 999 0 -1.1 94.767
## 3581 36 214 2 999 0 -1.8 93.075
## 3582 41 313 4 999 0 1.4 93.444
## 3583 29 44 2 999 0 1.1 93.994
## 3584 38 219 1 999 0 1.1 93.994
## 3585 34 336 1 999 0 1.4 93.444
## 3586 48 211 2 999 0 1.1 93.994
## 3587 55 319 1 999 0 1.1 93.994
## 3588 45 117 2 999 0 1.4 93.918
## 3589 42 377 2 999 0 -1.8 93.075
## 3590 35 547 6 999 0 1.4 93.444
## 3591 39 363 2 999 0 1.1 93.994
## 3592 33 326 3 999 0 -1.8 93.075
## 3593 34 87 3 999 0 1.4 93.444
## 3594 45 124 1 999 0 1.4 94.465
## 3595 42 46 3 999 0 1.1 93.994
## 3596 32 84 2 999 0 -0.1 93.200
## 3597 50 166 2 999 0 -1.8 92.843
## 3598 41 359 1 999 0 -1.8 93.075
## 3599 33 42 7 999 0 1.4 94.465
## 3600 43 150 1 999 0 -1.8 93.075
## 3601 30 73 2 999 0 1.4 93.444
## 3602 39 97 2 999 0 1.4 94.465
## 3603 38 174 3 999 0 1.4 94.465
## 3604 29 151 2 999 0 1.4 93.918
## 3605 33 576 1 999 0 1.4 93.444
## 3606 40 198 1 999 0 1.4 93.918
## 3607 27 156 2 999 0 -1.8 93.075
## 3608 43 198 2 999 0 1.1 93.994
## 3609 37 128 1 999 0 -3.4 92.649
## 3610 58 186 1 999 0 -2.9 92.201
## 3611 56 185 2 999 0 1.1 93.994
## 3612 42 29 4 999 0 1.4 94.465
## 3613 36 17 4 999 0 -1.8 93.075
## 3614 39 124 1 999 0 -1.8 92.893
## 3615 29 94 1 999 0 1.4 93.444
## 3616 34 178 3 999 0 1.4 93.444
## 3617 31 87 2 999 0 1.1 93.994
## 3618 36 232 3 999 0 1.1 93.994
## 3619 56 319 3 999 0 1.1 93.994
## 3620 28 78 2 999 0 -1.8 92.893
## 3621 33 218 4 999 0 -1.8 92.893
## 3622 52 136 2 999 0 1.1 93.994
## 3623 35 130 2 999 0 -1.8 92.893
## 3624 56 39 8 999 0 1.4 94.465
## 3625 32 88 2 999 0 -0.1 93.200
## 3626 54 77 2 999 0 1.1 93.994
## 3627 61 176 2 999 0 -2.9 92.201
## 3628 34 1094 3 999 0 -1.8 92.893
## 3629 73 158 2 999 0 -3.4 92.379
## 3630 50 41 2 999 0 1.4 93.918
## 3631 29 166 1 999 0 1.4 93.918
## 3632 51 202 1 999 0 1.4 94.465
## 3633 23 104 2 999 0 -2.9 92.469
## 3634 30 252 2 999 0 1.4 93.918
## 3635 27 110 1 999 0 1.4 93.918
## 3636 45 202 2 999 0 1.1 93.994
## 3637 48 634 4 999 0 -0.1 93.200
## 3638 45 61 2 999 0 -1.8 92.893
## 3639 55 1303 1 999 0 -0.1 93.200
## 3640 50 206 1 999 0 -1.8 93.075
## 3641 39 48 10 999 0 1.4 94.465
## 3642 50 113 2 999 0 1.4 93.444
## 3643 33 137 1 999 0 1.1 93.994
## 3644 54 345 9 999 0 1.1 93.994
## 3645 47 177 3 999 0 1.4 94.465
## 3646 28 69 1 999 0 -1.8 93.075
## 3647 29 678 1 999 0 -1.8 93.075
## 3648 28 36 2 999 0 -2.9 92.201
## 3649 38 213 2 999 0 -0.1 93.200
## 3650 57 379 3 999 0 1.4 93.444
## 3651 56 283 1 999 0 -1.8 92.843
## 3652 48 154 2 999 0 1.4 93.918
## 3653 50 219 1 999 0 1.4 94.465
## 3654 31 253 2 999 0 1.1 93.994
## 3655 47 279 2 999 0 1.1 93.994
## 3656 52 2015 1 999 0 1.4 93.918
## 3657 36 19 11 999 0 1.4 94.465
## 3658 49 79 2 999 0 1.4 94.465
## 3659 53 121 2 999 0 1.1 93.994
## 3660 31 465 3 999 0 1.1 93.994
## 3661 58 74 5 999 0 1.4 94.465
## 3662 48 344 2 999 0 1.1 93.994
## 3663 52 347 2 999 0 1.4 93.918
## 3664 52 139 1 999 0 -0.1 93.200
## 3665 52 80 3 999 0 1.1 93.994
## 3666 42 321 1 999 0 1.4 93.444
## 3667 46 64 1 999 0 1.4 93.918
## 3668 29 667 3 999 0 -1.8 92.893
## 3669 33 15 1 999 0 -1.8 92.893
## 3670 30 637 1 999 0 -1.8 92.893
## 3671 54 107 1 999 0 1.4 93.444
## 3672 39 177 1 999 0 -1.8 93.075
## 3673 49 119 3 999 0 -1.8 93.075
## 3674 32 19 1 999 0 1.4 94.465
## 3675 38 119 4 999 0 1.4 93.444
## 3676 26 13 1 999 0 1.1 93.994
## 3677 52 227 1 999 0 1.4 93.918
## 3678 36 56 1 999 0 1.4 93.444
## 3679 37 126 14 999 0 1.4 94.465
## 3680 50 313 1 999 0 1.4 94.465
## 3681 35 123 3 999 0 1.4 93.444
## 3682 33 420 2 999 0 1.4 94.465
## 3683 48 90 3 999 0 1.4 93.444
## 3684 29 298 1 999 0 -1.8 92.893
## 3685 37 226 1 999 0 1.4 94.465
## 3686 39 45 1 999 0 -1.8 92.893
## 3687 55 315 1 999 0 1.4 94.465
## 3688 36 260 1 999 0 -2.9 92.201
## 3689 29 139 2 999 0 1.4 93.918
## 3690 34 649 1 999 0 -1.8 93.075
## 3691 35 119 1 999 0 -1.8 93.075
## 3692 37 216 2 999 0 1.4 93.918
## 3693 29 33 4 999 0 1.4 93.444
## 3694 47 362 1 999 0 1.4 93.444
## 3695 40 381 1 999 0 1.4 93.918
## 3696 39 433 3 999 0 1.1 93.994
## 3697 44 324 1 999 0 1.4 93.444
## 3698 45 222 9 999 0 1.1 93.994
## 3699 42 88 1 999 0 -1.8 93.075
## 3700 75 714 1 999 0 -2.9 92.201
## 3701 40 231 1 999 0 1.4 94.465
## 3702 37 283 3 999 0 1.4 94.465
## 3703 34 36 1 999 0 1.4 93.444
## 3704 38 151 1 999 0 -1.8 93.075
## 3705 38 50 3 999 0 1.4 94.465
## 3706 41 46 8 999 0 1.4 93.918
## 3707 32 583 2 999 0 -1.8 92.893
## 3708 50 20 2 999 0 1.4 94.465
## 3709 38 905 3 999 0 1.4 93.918
## 3710 75 95 4 999 0 -1.8 93.075
## 3711 31 73 1 999 0 1.4 93.444
## 3712 48 1850 1 999 0 1.4 93.918
## 3713 31 8 3 999 0 1.4 94.465
## 3714 29 484 1 999 0 -0.1 93.200
## 3715 43 67 2 999 0 1.4 94.465
## 3716 43 197 3 999 0 1.1 93.994
## 3717 38 104 1 999 0 1.1 93.994
## 3718 48 119 2 999 0 1.4 94.465
## 3719 33 53 1 999 0 1.1 93.994
## 3720 44 483 1 999 0 1.1 93.994
## 3721 46 119 1 999 0 1.4 93.444
## 3722 27 174 3 999 0 1.4 93.918
## 3723 47 63 1 999 0 1.1 93.994
## 3724 48 9 5 999 0 1.4 94.465
## 3725 55 103 1 999 0 1.4 93.444
## 3726 29 139 1 999 0 1.4 94.465
## 3727 27 102 1 999 0 1.1 93.994
## 3728 34 238 2 999 0 -1.8 93.075
## 3729 32 19 6 999 0 -1.8 92.893
## 3730 36 122 1 999 0 1.1 93.994
## 3731 46 277 1 999 0 1.4 93.918
## 3732 59 87 1 999 0 1.4 93.918
## 3733 28 227 1 999 0 1.4 94.465
## 3734 59 128 3 999 0 -1.8 93.075
## 3735 25 109 5 999 0 -1.8 92.893
## 3736 33 170 2 999 0 1.4 93.444
## 3737 54 18 1 999 0 -0.1 93.200
## 3738 41 591 6 999 0 1.4 94.465
## 3739 50 119 3 999 0 1.4 93.444
## 3740 35 61 2 999 0 1.4 93.444
## 3741 47 528 1 999 0 1.4 93.444
## 3742 53 195 6 999 0 -1.7 94.055
## 3743 57 471 2 999 0 1.4 94.465
## 3744 60 93 3 999 0 1.4 93.444
## 3745 51 375 2 999 0 1.4 94.465
## 3746 56 86 4 999 0 1.4 93.918
## 3747 34 176 2 999 0 1.1 93.994
## 3748 53 221 4 999 0 -1.8 92.893
## 3749 42 643 3 999 0 1.4 93.918
## 3750 44 378 2 999 0 1.4 93.444
## 3751 29 210 3 999 0 1.1 93.994
## 3752 51 80 1 999 0 1.4 93.444
## 3753 34 263 5 999 0 1.4 93.444
## 3754 39 254 1 999 0 1.1 93.994
## 3755 30 221 1 999 0 -0.1 93.200
## 3756 39 155 6 999 0 -1.8 92.893
## 3757 22 106 5 999 0 -1.8 92.893
## 3758 52 208 1 999 0 1.4 93.444
## 3759 37 132 2 999 0 1.4 93.444
## 3760 27 655 1 999 0 1.4 93.918
## 3761 41 351 1 999 0 -1.8 93.075
## 3762 34 429 1 999 0 -0.1 93.200
## 3763 41 476 1 999 0 -1.8 93.075
## 3764 45 19 2 999 0 1.1 93.994
## 3765 39 15 3 999 0 1.4 94.465
## 3766 50 215 3 999 0 1.4 93.444
## 3767 42 81 7 999 0 -0.1 93.200
## 3768 45 191 1 999 0 1.4 93.444
## 3769 34 69 5 999 0 -1.8 92.893
## 3770 24 61 2 999 0 1.4 93.918
## 3771 30 275 1 999 0 -2.9 92.963
## 3772 69 324 8 999 0 -3.4 92.379
## 3773 50 144 15 999 0 1.4 94.465
## 3774 58 239 1 999 0 1.4 93.444
## 3775 31 110 3 999 0 1.4 94.465
## 3776 40 117 2 999 0 1.4 93.444
## 3777 36 166 2 999 0 1.1 93.994
## 3778 43 463 1 999 0 1.4 93.918
## 3779 34 280 1 999 0 1.4 94.465
## 3780 40 18 1 999 0 1.4 94.465
## 3781 59 167 2 999 0 1.1 93.994
## 3782 31 978 1 999 0 1.4 93.918
## 3783 38 856 2 999 0 1.4 94.465
## 3784 37 364 2 999 0 -1.8 92.893
## 3785 33 230 1 999 0 1.1 93.994
## 3786 37 198 1 999 0 -1.7 94.055
## 3787 66 210 1 999 0 -1.8 92.893
## 3788 53 260 1 999 0 1.1 93.994
## 3789 41 93 1 999 0 1.4 93.444
## 3790 38 247 1 999 0 1.4 93.444
## 3791 58 570 2 999 0 1.4 94.465
## 3792 41 43 2 999 0 1.1 93.994
## 3793 54 129 5 999 0 1.4 93.444
## 3794 29 548 1 999 0 -1.8 92.893
## 3795 27 25 26 999 0 1.4 94.465
## 3796 48 601 1 999 0 1.1 93.994
## 3797 33 264 2 999 0 -1.8 92.893
## 3798 26 329 1 999 0 1.1 93.994
## 3799 47 145 1 999 0 -0.1 93.200
## 3800 31 73 1 999 0 -1.8 92.893
## 3801 40 353 2 999 0 1.4 93.918
## 3802 39 150 4 999 0 -0.1 93.200
## 3803 33 16 2 999 0 1.4 93.918
## 3804 40 2926 2 999 0 -1.8 93.075
## 3805 50 343 2 999 0 1.4 94.465
## 3806 46 28 3 999 0 1.1 93.994
## 3807 36 501 2 999 0 -1.8 92.893
## 3808 56 483 5 999 0 -1.8 93.876
## 3809 29 1143 4 999 0 -1.8 92.893
## 3810 43 231 3 999 0 -2.9 92.201
## 3811 31 7 1 999 0 1.1 93.994
## 3812 42 276 2 999 0 1.4 94.465
## 3813 52 163 2 999 0 1.4 93.918
## 3814 58 834 1 999 0 -1.8 93.075
## 3815 51 288 1 999 0 -0.1 93.200
## 3816 31 21 5 999 0 -1.8 93.075
## 3817 48 132 1 999 0 1.4 93.444
## 3818 52 109 1 999 0 1.4 93.444
## 3819 58 605 1 999 0 1.4 93.918
## 3820 56 11 5 999 0 -0.1 93.200
## 3821 38 572 1 999 0 1.4 93.444
## 3822 46 75 1 999 0 -0.1 93.200
## 3823 34 175 2 999 0 -1.8 92.893
## 3824 35 441 12 999 0 1.4 93.918
## 3825 40 87 3 999 0 1.4 94.465
## 3826 37 124 2 999 0 -0.1 93.200
## 3827 44 198 1 999 0 -1.8 92.893
## 3828 54 558 1 999 0 -0.1 93.200
## 3829 45 973 2 999 0 1.4 94.465
## 3830 43 129 3 999 0 1.1 93.994
## 3831 47 98 4 999 0 1.4 94.465
## 3832 47 165 3 999 0 1.4 93.918
## 3833 48 669 6 999 0 1.4 93.444
## 3834 37 92 2 999 0 1.4 93.918
## 3835 34 377 1 999 0 -1.8 93.075
## 3836 39 247 1 999 0 -1.8 92.893
## 3837 32 906 5 999 0 -1.8 92.893
## 3838 45 294 2 999 0 1.4 94.465
## 3839 38 101 3 999 0 1.4 93.918
## 3840 29 320 2 999 0 1.4 93.918
## 3841 50 49 9 999 0 1.4 93.444
## 3842 34 154 3 999 0 1.1 93.994
## 3843 31 40 1 999 0 1.4 94.465
## 3844 29 109 3 999 0 1.4 93.444
## 3845 33 72 1 999 0 1.4 93.918
## 3846 40 54 1 999 0 1.4 94.465
## 3847 24 595 2 999 0 1.4 93.918
## 3848 56 342 1 999 0 1.1 93.994
## 3849 54 268 6 999 0 1.4 93.918
## 3850 31 420 4 999 0 1.4 93.444
## 3851 24 241 1 999 0 1.1 93.994
## 3852 45 789 1 999 0 -0.1 93.200
## 3853 45 250 1 999 0 -1.8 92.893
## 3854 33 57 1 999 0 1.4 93.444
## 3855 42 59 3 999 0 1.4 94.465
## 3856 43 745 12 999 0 1.1 93.994
## 3857 34 659 1 999 0 1.1 93.994
## 3858 63 164 1 999 0 -1.8 93.749
## 3859 29 65 1 999 0 1.4 93.444
## 3860 55 155 1 999 0 -1.8 93.075
## 3861 45 61 4 999 0 1.4 94.465
## 3862 42 181 4 999 0 1.1 93.994
## 3863 43 70 3 999 0 1.4 94.465
## 3864 38 113 1 999 0 1.4 93.444
## 3865 24 111 3 999 0 1.4 94.465
## 3866 41 210 1 999 0 1.4 93.444
## 3867 84 106 4 999 0 -1.1 94.601
## 3868 38 345 1 999 0 1.4 93.444
## 3869 42 14 6 999 0 1.4 94.465
## 3870 37 129 2 999 0 1.1 93.994
## 3871 40 13 5 999 0 1.1 93.994
## 3872 33 148 2 999 0 -1.8 93.075
## 3873 31 15 4 999 0 1.4 94.465
## 3874 39 635 3 999 0 1.4 93.918
## 3875 38 1055 1 999 0 -0.1 93.200
## 3876 40 386 1 999 0 1.4 94.465
## 3877 29 323 1 999 0 -1.8 92.893
## 3878 57 205 8 999 0 1.1 93.994
## 3879 33 466 2 999 0 1.1 93.994
## 3880 32 13 4 999 0 1.4 94.465
## 3881 37 24 1 999 0 1.1 93.994
## 3882 36 248 1 999 0 1.4 93.444
## 3883 37 1134 5 999 0 1.4 93.918
## 3884 34 913 4 999 0 1.4 93.918
## 3885 41 146 2 999 0 1.4 93.918
## 3886 45 582 2 999 0 -1.8 93.075
## 3887 43 469 2 999 0 1.1 93.994
## 3888 32 57 4 999 0 1.4 93.918
## 3889 37 1010 3 999 0 -1.8 93.075
## 3890 35 98 1 999 0 -1.8 93.075
## 3891 38 213 5 999 0 -1.8 92.893
## 3892 52 11 12 999 0 1.4 94.465
## 3893 53 34 2 999 0 1.1 93.994
## 3894 47 215 1 999 0 1.4 93.444
## 3895 32 28 1 999 0 -1.8 92.893
## 3896 50 213 4 999 0 -1.8 92.893
## 3897 31 122 1 999 0 -2.9 92.201
## 3898 28 46 3 999 0 1.4 93.918
## 3899 37 103 2 999 0 -0.1 93.200
## 3900 56 197 3 999 0 1.1 93.994
## 3901 46 142 10 999 0 1.4 93.918
## 3902 44 453 3 999 0 1.4 93.444
## 3903 50 282 9 999 0 1.4 93.918
## 3904 32 197 1 999 0 1.1 93.994
## 3905 45 368 2 999 0 -2.9 92.201
## 3906 38 306 3 999 0 1.4 93.444
## 3907 23 104 2 999 0 -2.9 92.469
## 3908 26 394 2 999 0 1.1 93.994
## 3909 34 231 1 999 0 -1.1 94.199
## 3910 29 317 1 999 0 -1.8 92.893
## 3911 48 218 1 999 0 -0.1 93.200
## 3912 31 455 2 999 0 1.4 93.918
## 3913 33 58 1 999 0 1.4 93.444
## 3914 33 710 1 999 0 -0.1 93.200
## 3915 34 178 2 999 0 1.4 94.465
## 3916 34 179 3 999 0 -1.8 92.893
## 3917 48 18 7 999 0 1.4 93.918
## 3918 51 657 1 999 0 -2.9 92.963
## 3919 28 159 2 999 0 1.1 93.994
## 3920 31 58 3 999 0 1.4 93.444
## 3921 39 90 2 999 0 -1.7 94.215
## 3922 48 246 3 999 0 1.1 93.994
## 3923 34 479 3 999 0 1.4 94.465
## 3924 31 156 4 999 0 -1.8 92.893
## 3925 40 8 7 999 0 1.4 94.465
## 3926 27 3785 1 999 0 -1.7 94.027
## 3927 29 198 1 999 0 1.4 93.444
## 3928 55 94 1 999 0 1.4 93.444
## 3929 36 117 1 999 0 -1.8 93.075
## 3930 43 233 4 999 0 -1.8 92.893
## 3931 30 110 4 999 0 1.1 93.994
## 3932 36 303 3 999 0 1.4 93.918
## 3933 32 176 6 999 0 1.4 94.465
## 3934 38 11 3 999 0 1.4 94.465
## 3935 39 159 4 999 0 1.1 93.994
## 3936 31 61 2 999 0 1.4 93.918
## 3937 51 207 1 999 0 1.4 93.444
## 3938 34 20 1 999 0 1.1 93.994
## 3939 37 292 2 999 0 -1.8 93.075
## 3940 27 109 3 999 0 -1.8 92.893
## 3941 30 72 2 999 0 1.4 93.918
## 3942 33 134 1 999 0 1.1 93.994
## 3943 29 137 2 999 0 1.4 93.444
## 3944 58 412 1 999 0 -1.7 94.027
## 3945 33 24 10 999 0 1.4 93.444
## 3946 46 160 3 999 0 1.1 93.994
## 3947 45 800 2 999 0 1.4 93.918
## 3948 34 103 5 999 0 1.1 93.994
## 3949 29 130 1 999 0 -2.9 92.201
## 3950 19 121 5 999 0 -1.8 92.893
## 3951 57 294 2 999 0 -0.1 93.200
## 3952 29 83 4 999 0 -0.1 93.200
## 3953 41 519 1 999 0 1.4 93.444
## 3954 59 92 2 999 0 1.4 93.444
## 3955 48 700 1 999 0 1.1 93.994
## 3956 34 37 3 999 0 1.4 94.465
## 3957 48 237 5 999 0 1.4 93.918
## 3958 50 121 1 999 0 -1.8 93.075
## 3959 51 133 5 999 0 1.4 94.465
## 3960 58 203 2 999 0 1.4 94.465
## 3961 54 298 2 999 0 -0.1 93.200
## 3962 37 10 23 999 0 1.4 94.465
## 3963 56 196 2 999 0 1.4 93.918
## 3964 42 59 3 999 0 1.4 93.444
## 3965 53 579 1 999 0 1.1 93.994
## 3966 29 130 1 999 0 -2.9 92.201
## 3967 45 276 3 999 0 -1.8 92.893
## 3968 65 288 3 999 0 -1.8 93.369
## 3969 34 152 1 999 0 1.4 94.465
## 3970 35 30 4 999 0 1.4 93.444
## 3971 53 268 3 999 0 -0.1 93.200
## 3972 33 57 1 999 0 1.4 93.444
## 3973 50 28 8 999 0 1.4 94.465
## 3974 35 93 2 999 0 1.1 93.994
## 3975 37 282 1 999 0 -1.8 93.075
## 3976 51 228 2 999 0 1.1 93.994
## 3977 38 514 2 999 0 1.4 94.465
## 3978 43 304 2 999 0 1.4 94.465
## 3979 38 197 3 999 0 1.4 94.465
## 3980 30 171 4 999 0 1.4 93.918
## 3981 42 124 2 999 0 1.4 93.444
## 3982 33 152 1 999 0 -0.1 93.200
## 3983 47 426 1 999 0 1.4 93.918
## 3984 57 515 1 999 0 -1.8 93.075
## 3985 28 163 3 999 0 1.1 93.994
## 3986 41 216 2 999 0 1.1 93.994
## 3987 60 179 1 999 0 1.4 93.918
## 3988 33 330 1 999 0 1.4 94.465
## 3989 44 135 1 999 0 -1.8 92.893
## 3990 29 101 2 999 0 1.4 93.444
## 3991 39 474 3 999 0 -2.9 92.963
## 3992 58 75 7 999 0 1.4 93.444
## 3993 25 131 1 999 0 -1.1 94.199
## 3994 58 165 2 999 0 1.4 94.465
## 3995 33 73 2 999 0 -1.8 93.075
## 3996 33 84 2 999 0 1.1 93.994
## 3997 45 249 4 999 0 1.1 93.994
## 3998 36 314 2 999 0 1.4 93.444
## 3999 46 70 1 999 0 -1.8 92.893
## 4000 56 189 2 999 0 -1.1 94.767
## 4001 37 360 1 999 0 -1.8 93.075
## 4002 80 95 1 999 0 -1.8 92.843
## 4003 42 143 2 999 0 1.4 93.918
## 4004 57 958 2 999 0 1.4 93.444
## 4005 47 47 3 999 0 -1.8 92.893
## 4006 34 93 1 999 0 -1.8 92.843
## 4007 37 1311 2 999 0 -1.8 93.075
## 4008 45 301 1 999 0 -1.8 93.075
## 4009 36 89 2 999 0 1.1 93.994
## 4010 45 119 2 999 0 -1.8 93.075
## 4011 22 100 4 999 0 1.4 93.918
## 4012 71 188 3 999 0 -1.8 93.075
## 4013 39 11 8 999 0 -1.8 92.893
## 4014 41 211 3 999 0 1.1 93.994
## 4015 31 1573 5 999 0 1.4 94.465
## 4016 54 207 1 999 0 1.4 93.444
## 4017 41 244 1 999 0 1.4 94.465
## 4018 47 142 1 999 0 -1.8 92.893
## 4019 51 145 2 999 0 1.4 94.465
## 4020 32 891 4 999 0 1.1 93.994
## 4021 33 415 2 999 0 1.4 93.918
## 4022 40 85 3 999 0 1.4 94.465
## 4023 47 150 5 999 0 1.1 93.994
## 4024 41 8 31 999 0 1.4 94.465
## 4025 29 206 1 999 0 1.1 93.994
## 4026 35 34 2 999 0 1.4 94.465
## 4027 27 54 5 999 0 -1.8 92.893
## 4028 30 24 1 999 0 1.4 94.465
## 4029 35 179 1 999 0 -1.8 93.075
## 4030 37 116 3 999 0 -1.8 93.075
## 4031 22 64 2 999 0 1.4 93.918
## 4032 43 231 2 999 0 1.4 93.918
## 4033 43 246 1 999 0 1.1 93.994
## 4034 41 706 9 999 0 1.4 93.918
## 4035 32 155 4 999 0 1.4 93.918
## 4036 48 362 1 999 0 -0.1 93.200
## 4037 36 84 1 999 0 1.1 93.994
## 4038 49 105 2 999 0 -1.8 92.893
## 4039 31 350 2 999 0 -1.7 94.215
## 4040 27 231 2 999 0 1.1 93.994
## 4041 42 164 8 999 0 1.1 93.994
## 4042 27 784 1 999 0 1.4 93.918
## 4043 31 73 1 999 0 1.4 93.444
## 4044 40 63 6 999 0 1.4 93.918
## 4045 48 118 1 999 0 -0.1 93.200
## 4046 35 81 2 999 0 1.4 94.465
## 4047 34 115 1 999 0 -1.8 93.369
## 4048 22 382 1 999 0 -1.8 92.893
## 4049 31 122 4 999 0 1.4 93.444
## 4050 74 607 2 999 0 -1.8 93.369
## 4051 48 384 2 999 0 1.4 94.465
## 4052 39 397 1 999 0 -1.8 93.075
## 4053 35 358 1 999 0 1.4 94.465
## 4054 40 48 2 999 0 1.4 94.465
## 4055 30 187 11 999 0 -1.8 92.893
## 4056 46 105 4 999 0 1.1 93.994
## 4057 34 467 1 999 0 -0.1 93.200
## 4058 24 266 1 999 0 1.4 94.465
## 4059 58 153 4 999 0 1.4 94.465
## 4060 29 837 8 999 0 1.4 93.918
## 4061 29 359 1 999 0 1.4 94.465
## 4062 33 124 2 999 0 -1.8 93.075
## 4063 58 169 4 999 0 1.4 94.465
## 4064 38 198 1 999 0 1.1 93.994
## 4065 53 136 1 999 0 1.4 93.444
## 4066 28 134 3 999 0 -1.8 93.075
## 4067 27 141 1 999 0 1.4 94.465
## 4068 29 580 3 999 0 1.4 93.444
## 4069 55 142 1 999 0 -0.1 93.200
## 4070 34 643 1 999 0 1.4 93.444
## 4071 36 108 1 999 0 -1.8 92.893
## 4072 33 58 1 999 0 1.4 93.444
## 4073 42 163 1 999 0 1.4 93.918
## 4074 45 345 1 999 0 -1.8 93.075
## 4075 50 5 1 999 0 1.4 93.918
## 4076 29 139 2 999 0 1.4 94.465
## 4077 32 271 2 999 0 -1.8 92.843
## 4078 46 193 7 999 0 1.4 94.465
## 4079 57 74 1 999 0 -1.8 92.893
## 4080 55 180 1 999 0 -1.8 92.893
## 4081 29 433 4 999 0 1.4 94.465
## 4082 34 312 1 999 0 -3.4 92.649
## 4083 40 158 1 999 0 -0.1 93.200
## 4084 39 214 1 999 0 1.4 93.918
## 4085 52 346 3 999 0 1.1 93.994
## 4086 29 6 1 999 0 -1.7 94.027
## 4087 35 308 2 999 0 1.4 93.918
## 4088 56 41 1 999 0 1.4 93.918
## 4089 33 95 4 999 0 1.1 93.994
## 4090 53 1330 3 999 0 1.4 94.465
## 4091 33 685 5 999 0 1.4 94.465
## 4092 49 190 2 999 0 1.4 94.465
## 4093 35 1243 2 999 0 -1.8 92.893
## 4094 27 48 5 999 0 1.4 94.465
## 4095 31 172 5 999 0 1.4 93.444
## 4096 32 93 5 999 0 1.1 93.994
## 4097 37 68 1 999 0 -0.1 93.200
## 4098 37 222 6 999 0 -0.1 93.200
## 4099 56 129 3 999 0 1.4 94.465
## 4100 40 80 7 999 0 1.4 93.444
## 4101 42 1106 2 999 0 -3.4 92.431
## 4102 39 601 5 999 0 1.4 94.465
## 4103 43 266 1 999 0 1.1 93.994
## 4104 53 59 3 999 0 1.4 93.444
## 4105 36 468 4 999 0 1.4 93.918
## 4106 35 95 2 999 0 1.1 93.994
## 4107 58 152 3 999 0 1.4 94.465
## 4108 51 108 7 999 0 -0.1 93.200
## 4109 45 139 1 999 0 1.4 93.444
## 4110 31 75 1 999 0 -0.1 93.200
## 4111 29 121 4 999 0 1.4 94.465
## 4112 45 1210 1 999 0 1.4 94.465
## 4113 29 171 2 999 0 -0.1 93.200
## 4114 29 123 1 999 0 1.1 93.994
## 4115 73 179 1 999 0 -1.8 92.843
## 4116 26 107 2 999 0 1.1 93.994
## 4117 30 154 2 999 0 1.4 93.918
## 4118 59 362 8 999 0 1.4 93.918
## 4119 46 38 5 999 0 1.1 93.994
## 4120 35 226 1 999 0 -0.1 93.200
## 4121 42 57 1 999 0 -1.8 93.075
## 4122 35 772 1 999 0 1.4 93.918
## 4123 49 802 1 999 0 1.4 93.918
## 4124 37 523 3 999 0 1.1 93.994
## 4125 45 45 8 999 0 1.4 93.444
## 4126 29 190 2 999 0 -1.8 93.075
## 4127 31 101 4 999 0 1.4 93.444
## 4128 50 64 1 999 0 1.4 94.465
## 4129 30 282 2 999 0 1.1 93.994
## 4130 46 147 1 999 0 1.4 93.444
## 4131 37 316 2 999 0 1.4 94.465
## 4132 31 293 2 999 0 -1.8 92.893
## 4133 29 334 3 999 0 1.4 94.465
## 4134 37 159 3 999 0 -1.8 92.843
## 4135 42 235 1 999 0 1.4 93.444
## 4136 32 342 3 999 0 -1.8 93.075
## 4137 33 217 3 999 0 -1.7 94.215
## 4138 57 166 2 999 0 -2.9 92.963
## 4139 30 193 8 999 0 1.1 93.994
## 4140 34 553 3 999 0 1.1 93.994
## 4141 36 54 10 999 0 1.4 93.918
## 4142 32 50 1 999 0 -0.1 93.200
## 4143 27 146 4 999 0 -1.8 92.893
## 4144 30 197 1 999 0 1.4 93.444
## 4145 45 260 1 999 0 1.1 93.994
## 4146 35 1080 5 999 0 1.1 93.994
## 4147 41 1642 2 999 0 -1.8 92.893
## 4148 35 24 1 999 0 -0.1 93.200
## 4149 28 803 1 999 0 1.4 93.918
## 4150 45 78 9 999 0 1.1 93.994
## 4151 33 99 1 999 0 -1.8 92.893
## 4152 29 326 3 999 0 -2.9 92.469
## 4153 55 149 2 999 0 1.4 93.918
## 4154 34 108 1 999 0 1.4 93.918
## 4155 31 56 3 999 0 1.4 93.444
## 4156 38 103 1 999 0 1.4 93.444
## 4157 40 138 3 999 0 1.4 93.918
## 4158 19 72 4 999 0 -1.8 93.075
## 4159 41 167 1 999 0 1.4 93.444
## 4160 37 159 5 999 0 1.1 93.994
## 4161 31 91 2 999 0 1.4 93.444
## 4162 57 150 2 999 0 -0.1 93.200
## 4163 38 116 1 999 0 -2.9 92.201
## 4164 45 205 1 999 0 1.4 94.465
## 4165 39 104 1 999 0 1.4 93.918
## 4166 38 239 2 999 0 1.4 93.444
## 4167 40 90 4 999 0 1.4 93.444
## 4168 31 258 2 999 0 1.1 93.994
## 4169 58 18 2 999 0 1.4 94.465
## 4170 35 245 1 999 0 1.4 93.444
## 4171 53 121 2 999 0 1.4 93.918
## 4172 38 375 5 999 0 1.4 94.465
## 4173 49 147 1 999 0 1.1 93.994
## 4174 38 383 3 999 0 1.1 93.994
## 4175 55 518 3 999 0 -1.8 93.075
## 4176 35 431 3 999 0 1.4 93.918
## 4177 52 362 2 999 0 1.4 93.444
## 4178 49 235 1 999 0 1.4 93.918
## 4179 25 214 2 999 0 1.4 94.465
## 4180 47 329 3 999 0 1.1 93.994
## 4181 48 209 3 999 0 1.1 93.994
## 4182 36 140 1 999 0 -1.8 93.075
## 4183 51 81 1 999 0 -0.1 93.200
## 4184 33 164 5 999 0 1.1 93.994
## 4185 41 348 2 999 0 1.4 93.918
## 4186 30 70 1 999 0 1.4 93.918
## 4187 52 79 2 999 0 1.4 93.444
## 4188 41 643 3 999 0 -0.1 93.200
## 4189 38 516 6 999 0 -1.8 93.369
## 4190 57 168 4 999 0 -1.8 92.893
## 4191 82 125 2 999 0 -1.8 93.749
## 4192 30 153 5 999 0 1.4 93.444
## 4193 49 242 4 999 0 1.4 94.465
## 4194 33 11 6 999 0 1.4 94.465
## 4195 57 195 3 999 0 1.4 93.444
## 4196 50 634 1 999 0 -1.8 93.749
## 4197 55 93 2 999 0 -3.4 92.379
## 4198 54 320 1 999 0 1.4 93.918
## 4199 40 139 3 999 0 -0.1 93.200
## 4200 36 90 2 999 0 -0.1 93.200
## 4201 30 337 1 999 0 -0.1 93.200
## 4202 49 383 1 999 0 -1.8 93.075
## 4203 56 523 1 999 0 1.4 93.918
## 4204 33 38 3 999 0 1.4 93.444
## 4205 42 109 2 999 0 -0.1 93.200
## 4206 43 298 2 999 0 -0.1 93.200
## 4207 37 279 1 999 0 -1.8 92.893
## 4208 31 108 3 999 0 1.1 93.994
## 4209 42 361 2 999 0 1.4 93.444
## 4210 46 417 6 999 0 1.1 93.994
## 4211 56 87 4 999 0 1.4 93.918
## 4212 55 530 1 999 0 1.1 93.994
## 4213 27 70 1 999 0 1.1 93.994
## 4214 38 292 2 999 0 -1.8 93.369
## 4215 37 148 2 999 0 -2.9 92.201
## 4216 24 57 1 999 0 1.4 93.918
## 4217 40 356 4 999 0 -1.8 92.893
## 4218 51 99 1 999 0 1.4 93.444
## 4219 49 281 27 999 0 1.1 93.994
## 4220 39 43 8 999 0 1.4 94.465
## 4221 29 14 5 999 0 1.4 93.444
## 4222 53 531 3 999 0 -2.9 92.469
## 4223 30 100 3 999 0 1.1 93.994
## 4224 42 38 8 999 0 1.4 94.465
## 4225 41 134 2 999 0 1.4 93.918
## 4226 24 160 1 999 0 -3.4 92.431
## 4227 31 94 1 999 0 1.1 93.994
## 4228 40 42 2 999 0 1.4 94.465
## 4229 45 168 1 999 0 1.4 93.918
## 4230 36 157 3 999 0 -1.1 94.199
## 4231 33 203 1 999 0 -0.1 93.200
## 4232 38 257 3 999 0 1.4 93.444
## 4233 55 207 3 999 0 1.1 93.994
## 4234 36 659 1 999 0 -1.8 92.893
## 4235 57 194 24 999 0 1.4 93.918
## 4236 55 95 1 999 0 -1.8 92.893
## 4237 48 88 1 999 0 1.4 93.444
## 4238 55 1031 8 999 0 1.4 93.918
## 4239 26 140 3 999 0 1.4 93.918
## 4240 41 252 4 999 0 -1.1 94.767
## 4241 72 134 1 999 0 -2.9 92.963
## 4242 37 26 3 999 0 1.4 94.465
## 4243 31 173 1 999 0 1.4 93.444
## 4244 62 116 1 999 0 -2.9 92.201
## 4245 37 26 6 999 0 1.4 94.465
## 4246 30 122 1 999 0 1.4 93.444
## 4247 44 618 4 999 0 1.4 94.465
## 4248 38 195 1 999 0 -1.8 92.843
## 4249 34 229 1 999 0 -1.8 92.843
## 4250 31 72 6 999 0 1.4 94.465
## 4251 35 494 1 999 0 1.4 93.444
## 4252 49 150 2 999 0 1.4 93.918
## 4253 28 300 1 999 0 -1.8 92.843
## 4254 32 135 1 999 0 -1.8 93.075
## 4255 32 72 2 999 0 1.4 93.444
## 4256 40 8 3 999 0 -0.1 93.200
## 4257 49 11 10 999 0 -1.8 92.893
## 4258 36 9 2 999 0 1.4 94.465
## 4259 50 830 5 999 0 1.4 93.918
## 4260 30 483 1 999 0 1.4 93.918
## 4261 29 95 2 999 0 -2.9 92.963
## 4262 36 201 1 999 0 1.4 93.444
## 4263 37 22 6 999 0 -1.8 92.893
## 4264 37 181 3 999 0 -1.8 92.893
## 4265 46 306 1 999 0 1.4 93.444
## 4266 30 274 1 999 0 1.1 93.994
## 4267 56 236 8 999 0 1.4 93.918
## 4268 35 154 3 999 0 1.4 93.918
## 4269 32 211 3 999 0 -1.8 93.075
## 4270 46 86 1 999 0 1.4 94.465
## 4271 41 51 6 999 0 -1.8 93.075
## 4272 40 33 1 999 0 1.1 93.994
## 4273 39 138 1 999 0 -1.8 92.893
## 4274 40 316 2 999 0 -1.8 93.075
## 4275 57 92 9 999 0 1.4 93.444
## 4276 29 886 3 999 0 1.1 93.994
## 4277 44 83 6 999 0 1.4 93.444
## 4278 56 71 3 999 0 -0.1 93.200
## 4279 57 189 3 999 0 1.4 93.444
## 4280 38 168 3 999 0 -1.8 92.893
## 4281 55 160 3 999 0 -1.7 94.215
## 4282 46 218 2 999 0 1.1 93.994
## 4283 30 128 1 999 0 1.1 93.994
## 4284 37 132 1 999 0 -0.1 93.200
## 4285 54 263 1 999 0 -1.8 93.075
## 4286 33 16 18 999 0 1.4 94.465
## 4287 38 80 1 999 0 1.4 93.444
## 4288 30 51 1 999 0 1.4 94.465
## 4289 37 240 2 999 0 1.1 93.994
## 4290 36 114 3 999 0 1.4 93.444
## 4291 53 111 2 999 0 -1.8 93.075
## 4292 35 218 1 999 0 1.1 93.994
## 4293 44 115 2 999 0 1.1 93.994
## 4294 30 40 1 999 0 -1.8 93.075
## 4295 27 281 1 999 0 -1.8 93.369
## 4296 56 147 2 999 0 -0.1 93.200
## 4297 41 208 2 999 0 1.1 93.994
## 4298 26 712 4 999 0 -1.8 92.843
## 4299 34 160 3 999 0 1.4 94.465
## 4300 25 197 3 999 0 1.4 93.918
## 4301 34 107 1 999 0 1.4 93.444
## 4302 39 241 3 999 0 1.1 93.994
## 4303 35 90 1 999 0 1.4 93.918
## 4304 57 161 1 999 0 1.4 93.444
## 4305 44 41 1 999 0 1.4 93.444
## 4306 38 848 1 999 0 1.4 93.444
## 4307 32 144 1 999 0 1.4 93.918
## 4308 47 60 6 999 0 1.4 94.465
## 4309 60 576 1 999 0 1.1 93.994
## 4310 33 576 1 999 0 1.4 93.444
## 4311 21 153 1 999 0 -2.9 92.963
## 4312 34 232 2 999 0 1.4 94.465
## 4313 37 584 1 999 0 1.1 93.994
## 4314 32 314 3 999 0 1.1 93.994
## 4315 59 19 1 999 0 1.4 94.465
## 4316 40 156 3 999 0 1.4 94.465
## 4317 30 42 7 999 0 1.4 94.465
## 4318 36 572 2 999 0 -1.8 93.749
## 4319 58 176 1 999 0 -1.8 92.893
## 4320 53 204 1 999 0 1.1 93.994
## 4321 37 1081 2 999 0 1.4 93.918
## 4322 30 128 2 999 0 1.4 93.918
## 4323 31 138 1 999 0 1.4 93.444
## 4324 39 116 2 999 0 1.4 93.444
## 4325 42 295 1 999 0 1.4 93.918
## 4326 35 16 9 999 0 1.4 93.444
## 4327 25 214 2 999 0 1.1 93.994
## 4328 34 548 2 999 0 -2.9 92.963
## 4329 29 89 2 999 0 -2.9 92.963
## 4330 35 79 4 999 0 1.4 94.465
## 4331 32 482 2 999 0 -1.8 93.075
## 4332 38 214 2 999 0 1.1 93.994
## 4333 33 128 1 999 0 1.4 93.444
## 4334 58 1242 3 999 0 1.4 93.444
## 4335 36 118 3 999 0 1.4 93.918
## 4336 37 318 2 999 0 -1.8 93.075
## 4337 55 110 2 999 0 -0.1 93.200
## 4338 51 59 2 999 0 1.4 93.444
## 4339 34 143 3 999 0 -0.1 93.200
## 4340 60 120 3 999 0 1.4 93.918
## 4341 43 165 1 999 0 1.1 93.994
## 4342 55 80 2 999 0 1.4 93.444
## 4343 43 53 5 999 0 1.1 93.994
## 4344 34 147 1 999 0 1.4 93.444
## 4345 51 312 1 999 0 -0.1 93.200
## 4346 44 241 4 999 0 1.4 94.465
## 4347 35 166 5 999 0 1.4 93.444
## 4348 33 80 2 999 0 1.4 93.918
## 4349 48 237 1 999 0 -1.8 93.075
## 4350 52 10 3 999 0 1.4 94.465
## 4351 33 227 1 999 0 1.4 93.444
## 4352 37 72 3 999 0 1.1 93.994
## 4353 33 613 2 999 0 1.1 93.994
## 4354 31 149 5 999 0 -0.1 93.200
## 4355 32 123 3 999 0 1.4 94.465
## 4356 33 261 1 999 0 1.1 93.994
## 4357 30 235 1 999 0 1.4 93.444
## 4358 31 1081 2 999 0 1.4 93.918
## 4359 32 230 1 999 0 -2.9 92.201
## 4360 37 834 9 999 0 1.1 93.994
## 4361 52 264 3 999 0 1.4 93.918
## 4362 49 606 1 999 0 1.4 94.465
## 4363 38 286 1 999 0 1.4 93.918
## 4364 35 10 3 999 0 1.4 94.465
## 4365 31 385 7 999 0 1.1 93.994
## 4366 32 101 3 999 0 -0.1 93.200
## 4367 42 241 2 999 0 1.4 93.918
## 4368 32 110 1 999 0 1.4 93.918
## 4369 30 117 1 999 0 1.1 93.994
## 4370 37 309 4 999 0 -1.8 93.075
## 4371 25 11 7 999 0 1.4 94.465
## 4372 38 166 3 999 0 -1.8 92.843
## 4373 43 83 2 999 0 1.4 93.918
## 4374 30 85 2 999 0 1.4 93.918
## 4375 32 261 1 999 0 -0.1 93.200
## 4376 47 320 2 999 0 -2.9 92.469
## 4377 41 1044 3 999 0 1.4 93.918
## 4378 40 168 1 999 0 1.4 93.444
## 4379 37 432 1 999 0 -1.8 92.843
## 4380 40 95 1 999 0 1.4 93.444
## 4381 34 266 1 999 0 -1.8 92.843
## 4382 24 582 2 999 0 -1.8 92.893
## 4383 30 55 3 999 0 1.4 93.444
## 4384 30 103 1 999 0 -1.8 93.075
## 4385 45 117 2 999 0 1.4 93.444
## 4386 60 246 3 999 0 -1.8 93.075
## 4387 30 151 3 999 0 1.4 94.465
## 4388 58 422 1 999 0 1.1 93.994
## 4389 28 67 2 999 0 -2.9 92.469
## 4390 46 485 3 999 0 1.4 94.465
## 4391 35 873 5 999 0 1.4 93.444
## 4392 55 385 6 999 0 1.4 93.444
## 4393 56 113 3 999 0 1.4 93.918
## 4394 37 99 1 999 0 -2.9 92.963
## 4395 32 68 1 999 0 1.4 93.918
## 4396 30 242 3 999 0 1.1 93.994
## 4397 40 236 2 999 0 1.1 93.994
## 4398 42 504 1 999 0 1.4 93.918
## 4399 35 152 1 999 0 -0.1 93.200
## 4400 43 297 2 999 0 1.4 93.918
## 4401 31 161 5 999 0 -0.1 93.200
## 4402 46 193 1 999 0 -1.8 93.075
## 4403 34 186 2 999 0 1.4 94.465
## 4404 28 98 1 999 0 -1.8 93.075
## 4405 37 54 2 999 0 -1.8 93.075
## 4406 40 77 2 999 0 1.4 93.918
## 4407 58 121 2 999 0 -2.9 92.201
## 4408 40 322 3 999 0 1.4 94.465
## 4409 36 1027 2 999 0 -1.8 92.893
## 4410 53 258 18 999 0 1.4 94.465
## 4411 36 91 1 999 0 -1.8 93.075
## 4412 24 326 3 999 0 -1.8 93.075
## 4413 54 377 1 999 0 -0.1 93.200
## 4414 38 76 4 999 0 1.4 93.918
## 4415 32 73 6 999 0 1.4 93.444
## 4416 38 22 3 999 0 -1.8 92.893
## 4417 36 125 5 999 0 1.1 93.994
## 4418 43 110 1 999 0 1.4 93.918
## 4419 32 1181 9 999 0 -1.8 92.893
## 4420 25 89 1 999 0 1.1 93.994
## 4421 51 22 12 999 0 1.4 94.465
## 4422 41 68 3 999 0 -1.8 93.075
## 4423 44 93 8 999 0 1.4 93.444
## 4424 33 63 2 999 0 1.4 93.918
## 4425 55 9 6 999 0 1.4 94.465
## 4426 29 165 1 999 0 1.1 93.994
## 4427 55 171 2 999 0 -1.8 93.075
## 4428 47 97 2 999 0 1.4 93.444
## 4429 36 124 1 999 0 1.4 93.444
## 4430 36 72 1 999 0 -0.1 93.200
## 4431 54 840 3 999 0 -1.8 93.075
## 4432 53 9 4 999 0 1.4 94.465
## 4433 39 291 1 999 0 1.1 93.994
## 4434 30 183 1 999 0 1.4 93.444
## 4435 52 135 2 999 0 1.1 93.994
## 4436 41 234 2 999 0 1.1 93.994
## 4437 30 459 1 999 0 1.4 93.444
## 4438 33 119 1 999 0 -1.8 93.075
## 4439 35 141 2 999 0 -1.8 92.893
## 4440 29 97 2 999 0 1.4 93.444
## 4441 36 212 3 999 0 1.1 93.994
## 4442 34 655 2 999 0 -1.8 92.893
## 4443 81 166 3 999 0 -3.0 92.713
## 4444 30 1294 2 999 0 1.4 93.918
## 4445 31 295 3 999 0 1.4 93.444
## 4446 41 519 1 999 0 1.4 93.444
## 4447 21 551 1 999 0 -1.8 93.749
## 4448 37 97 1 999 0 1.1 93.994
## 4449 27 258 3 999 0 -2.9 92.469
## 4450 40 150 2 999 0 1.4 93.444
## 4451 37 186 3 999 0 -1.8 93.075
## 4452 39 77 5 999 0 1.4 94.465
## 4453 34 64 4 999 0 -1.8 92.893
## 4454 29 148 2 999 0 1.4 93.918
## 4455 38 52 2 999 0 -1.8 93.075
## 4456 34 85 4 999 0 1.4 94.465
## 4457 45 283 4 999 0 1.4 93.918
## 4458 46 1946 4 999 0 1.4 93.918
## 4459 41 193 1 999 0 1.4 93.444
## 4460 44 629 2 999 0 1.4 93.444
## 4461 57 179 2 999 0 1.4 93.918
## 4462 59 127 1 999 0 1.4 94.465
## 4463 29 232 2 999 0 -0.1 93.200
## 4464 57 40 1 999 0 -0.1 93.200
## 4465 50 442 2 999 0 1.4 94.465
## 4466 32 321 2 999 0 1.4 93.918
## 4467 30 322 1 999 0 1.1 93.994
## 4468 38 210 2 999 0 1.4 93.918
## 4469 59 135 9 999 0 1.1 93.994
## 4470 37 124 2 999 0 1.4 94.465
## 4471 31 202 2 999 0 1.4 94.465
## 4472 38 280 3 999 0 1.1 93.994
## 4473 44 442 1 999 0 -1.1 94.767
## 4474 56 136 1 999 0 1.1 93.994
## 4475 58 235 2 999 0 -1.8 92.893
## 4476 51 51 1 999 0 1.4 93.444
## 4477 32 219 2 999 0 -0.1 93.200
## 4478 36 47 1 999 0 1.1 93.994
## 4479 26 688 1 999 0 1.1 93.994
## 4480 34 110 1 999 0 -1.8 93.075
## 4481 35 212 2 999 0 -1.8 93.075
## 4482 45 26 11 999 0 1.4 94.465
## 4483 55 77 7 999 0 1.4 93.444
## 4484 45 194 2 999 0 1.4 93.918
## 4485 49 151 1 999 0 1.4 94.465
## 4486 39 192 2 999 0 1.4 93.444
## 4487 34 136 1 999 0 -1.8 92.843
## 4488 32 160 1 999 0 1.4 93.444
## 4489 21 528 3 999 0 1.4 93.918
## 4490 29 203 3 999 0 1.4 93.444
## 4491 40 501 3 999 0 -1.8 93.075
## 4492 44 70 2 999 0 1.1 93.994
## 4493 34 125 2 999 0 -1.8 92.893
## 4494 45 270 1 999 0 1.1 93.994
## 4495 44 85 6 999 0 1.4 93.444
## 4496 30 765 3 999 0 1.4 93.444
## 4497 33 35 3 999 0 1.4 93.444
## 4498 53 899 2 999 0 1.4 93.444
## 4499 34 108 1 999 0 -1.8 93.075
## 4500 42 491 1 999 0 1.4 94.465
## 4501 35 207 1 999 0 -0.1 93.200
## 4502 42 77 3 999 0 1.4 93.918
## 4503 37 97 2 999 0 1.1 93.994
## 4504 49 889 2 999 0 1.4 93.444
## 4505 51 228 4 999 0 -2.9 92.201
## 4506 47 216 1 999 0 1.4 93.444
## 4507 33 315 1 999 0 1.1 93.994
## 4508 41 57 2 999 0 -1.8 93.075
## 4509 58 44 2 999 0 -1.8 92.893
## 4510 29 97 1 999 0 1.4 93.444
## 4511 46 98 5 999 0 -0.1 93.200
## 4512 31 52 3 999 0 1.4 93.444
## 4513 39 31 1 999 0 1.4 93.444
## 4514 51 74 1 999 0 1.4 94.465
## 4515 37 76 2 999 0 -1.8 92.893
## 4516 28 184 2 999 0 1.1 93.994
## 4517 52 221 2 999 0 1.4 93.918
## 4518 37 132 1 999 0 -1.8 92.893
## 4519 39 156 7 999 0 -1.8 92.893
## 4520 29 365 3 999 0 -2.9 92.963
## 4521 38 102 1 999 0 1.4 94.465
## 4522 39 108 1 999 0 1.4 93.444
## 4523 39 239 2 999 0 -1.8 93.075
## 4524 42 20 5 999 0 1.4 94.465
## 4525 46 365 3 999 0 1.4 94.465
## 4526 29 156 1 999 0 1.4 93.444
## 4527 26 151 2 999 0 1.4 93.918
## 4528 51 436 3 999 0 1.1 93.994
## 4529 35 226 5 999 0 -1.8 92.893
## 4530 25 358 7 999 0 -1.8 92.893
## 4531 35 330 2 999 0 1.4 93.918
## 4532 25 147 10 999 0 1.4 93.918
## 4533 36 34 4 999 0 1.4 94.465
## 4534 45 98 5 999 0 1.4 93.444
## 4535 48 34 2 999 0 1.1 93.994
## 4536 51 41 28 999 0 1.4 94.465
## 4537 43 703 2 999 0 1.1 93.994
## 4538 41 22 2 999 0 1.1 93.994
## 4539 25 78 2 999 0 -3.0 92.713
## 4540 48 85 4 999 0 1.4 93.444
## 4541 36 109 2 999 0 1.1 93.994
## 4542 28 286 5 999 0 1.1 93.994
## 4543 41 211 2 999 0 1.4 93.918
## 4544 54 152 4 999 0 1.4 94.465
## 4545 37 204 1 999 0 1.4 93.444
## 4546 53 122 3 999 0 1.4 94.465
## 4547 32 107 2 999 0 1.4 93.918
## 4548 53 209 1 999 0 1.4 93.918
## 4549 35 14 9 999 0 1.4 94.465
## 4550 53 421 6 999 0 1.4 94.465
## 4551 47 897 5 999 0 1.1 93.994
## 4552 44 9 8 999 0 1.4 94.465
## 4553 59 79 1 999 0 1.4 93.444
## 4554 60 316 2 999 0 1.4 94.465
## 4555 57 160 1 999 0 1.4 93.444
## 4556 53 73 3 999 0 1.4 94.465
## 4557 32 63 5 999 0 -1.8 92.893
## 4558 56 188 9 999 0 1.4 93.918
## 4559 30 390 2 999 0 -2.9 92.201
## 4560 28 200 3 999 0 1.4 93.918
## 4561 36 214 2 999 0 1.4 93.918
## 4562 41 87 1 999 0 1.4 94.465
## 4563 29 69 2 999 0 -0.1 93.200
## 4564 30 154 6 999 0 1.4 94.465
## 4565 34 333 2 999 0 -1.8 93.075
## 4566 35 192 1 999 0 1.4 93.444
## 4567 37 658 2 999 0 1.4 93.918
## 4568 41 77 2 999 0 -1.8 92.893
## 4569 41 103 1 999 0 1.1 93.994
## 4570 48 71 8 999 0 1.4 93.444
## 4571 28 353 1 999 0 -2.9 92.963
## 4572 48 695 3 999 0 -0.1 93.200
## 4573 73 96 2 999 0 -3.4 92.379
## 4574 55 27 7 999 0 1.4 94.465
## 4575 51 507 1 999 0 1.4 93.918
## 4576 35 116 1 999 0 1.4 93.918
## 4577 42 400 6 999 0 1.4 93.918
## 4578 35 188 2 999 0 1.1 93.994
## 4579 32 224 1 999 0 -1.8 93.075
## 4580 48 425 2 999 0 1.4 93.918
## 4581 34 266 3 999 0 -1.8 92.893
## 4582 29 164 1 999 0 1.4 93.444
## 4583 51 141 3 999 0 1.4 93.918
## 4584 30 360 1 999 0 1.4 93.444
## 4585 60 11 5 999 0 1.4 94.465
## 4586 35 230 2 999 0 1.4 94.465
## 4587 45 334 4 999 0 1.4 93.444
## 4588 24 225 2 999 0 1.4 93.918
## 4589 51 527 2 999 0 1.4 94.465
## 4590 35 60 2 999 0 1.4 93.918
## 4591 34 346 5 999 0 1.4 93.444
## 4592 36 75 3 999 0 1.4 94.465
## 4593 38 321 1 999 0 -0.1 93.200
## 4594 30 147 2 999 0 1.4 93.444
## 4595 45 191 1 999 0 -1.8 93.075
## 4596 56 197 1 999 0 1.1 93.994
## 4597 41 91 13 999 0 1.4 93.918
## 4598 34 122 16 999 0 1.4 94.465
## 4599 60 144 1 999 0 1.4 93.918
## 4600 53 16 28 999 0 1.4 94.465
## 4601 46 245 1 999 0 1.4 94.465
## 4602 36 1093 1 999 0 1.4 94.465
## 4603 19 156 1 999 0 -1.8 93.075
## 4604 46 258 1 999 0 -2.9 92.201
## 4605 32 469 2 999 0 1.1 93.994
## 4606 35 473 2 999 0 -1.8 92.893
## 4607 32 213 2 999 0 1.1 93.994
## 4608 29 238 6 999 0 1.4 94.465
## 4609 31 50 1 999 0 -0.1 93.200
## 4610 41 206 1 999 0 1.1 93.994
## 4611 42 168 1 999 0 1.4 93.444
## 4612 25 178 7 999 0 1.4 94.465
## 4613 26 194 3 999 0 1.1 93.994
## 4614 34 26 1 999 0 -1.8 92.893
## 4615 55 48 1 999 0 -0.1 93.200
## 4616 45 243 1 999 0 1.4 93.444
## 4617 36 299 1 999 0 -1.8 93.075
## 4618 44 230 1 999 0 -1.8 93.075
## 4619 36 231 2 999 0 -1.8 93.075
## 4620 29 334 3 999 0 1.4 93.918
## 4621 36 140 1 999 0 -1.8 93.075
## 4622 32 462 1 999 0 -1.8 93.075
## 4623 31 114 1 999 0 1.1 93.994
## 4624 26 115 1 999 0 1.4 93.918
## 4625 44 143 1 999 0 1.4 94.465
## 4626 48 131 1 999 0 1.4 93.444
## 4627 54 208 1 999 0 1.1 93.994
## 4628 42 147 1 999 0 1.4 93.918
## 4629 51 289 3 999 0 -0.1 93.200
## 4630 35 203 1 999 0 -1.8 93.075
## 4631 45 93 1 999 0 1.4 93.444
## 4632 46 70 1 999 0 1.4 93.444
## 4633 52 173 2 999 0 -0.1 93.200
## 4634 32 240 1 999 0 1.4 93.918
## 4635 27 112 5 999 0 1.4 94.465
## 4636 53 100 1 999 0 -1.8 93.075
## 4637 29 14 4 999 0 -1.8 92.893
## 4638 38 59 3 999 0 1.4 94.465
## 4639 31 103 2 999 0 1.4 93.918
## 4640 44 93 8 999 0 1.1 93.994
## 4641 41 58 2 999 0 1.4 93.444
## 4642 34 70 2 999 0 -0.1 93.200
## 4643 34 15 3 999 0 -1.8 92.893
## 4644 29 288 3 999 0 1.1 93.994
## 4645 34 717 2 999 0 1.4 93.918
## 4646 35 274 8 999 0 1.1 93.994
## 4647 47 502 1 999 0 1.4 93.444
## 4648 53 367 1 999 0 -1.8 92.893
## 4649 41 114 3 999 0 -1.8 93.075
## 4650 56 665 1 999 0 1.1 93.994
## 4651 33 176 1 999 0 -1.8 92.893
## 4652 32 159 3 999 0 1.1 93.994
## 4653 40 28 3 999 0 1.1 93.994
## 4654 36 659 1 999 0 -1.8 92.893
## 4655 33 53 7 999 0 1.1 93.994
## 4656 35 134 2 999 0 -1.8 92.893
## 4657 26 173 1 999 0 -2.9 92.201
## 4658 43 250 2 999 0 1.4 93.918
## 4659 31 85 1 999 0 -1.8 93.075
## 4660 28 386 1 999 0 -1.8 92.893
## 4661 50 102 1 999 0 -0.1 93.200
## 4662 34 398 2 999 0 -1.8 92.893
## 4663 57 185 1 999 0 -1.8 93.075
## 4664 33 414 6 999 0 1.4 93.918
## 4665 35 38 1 999 0 -0.1 93.200
## 4666 42 8 2 999 0 1.4 94.465
## 4667 28 63 2 999 0 1.1 93.994
## 4668 42 85 1 999 0 -1.8 92.893
## 4669 37 416 2 999 0 -3.4 92.431
## 4670 34 253 1 999 0 -0.1 93.200
## 4671 43 21 1 999 0 1.1 93.994
## 4672 50 133 1 999 0 1.4 93.444
## 4673 38 111 1 999 0 1.4 93.444
## 4674 42 195 1 999 0 -0.1 93.200
## 4675 31 312 7 999 0 1.1 93.994
## 4676 30 129 2 999 0 1.4 93.444
## 4677 32 67 1 999 0 -1.8 92.893
## 4678 38 103 5 999 0 1.1 93.994
## 4679 37 43 1 999 0 -1.8 93.075
## 4680 32 124 1 999 0 1.4 93.444
## 4681 29 968 1 999 0 1.4 93.918
## 4682 27 494 1 999 0 1.4 93.918
## 4683 31 43 1 999 0 1.4 93.444
## 4684 45 462 4 999 0 -1.8 92.893
## 4685 56 508 1 999 0 1.4 93.918
## 4686 18 368 2 999 0 -3.4 92.431
## 4687 50 513 3 999 0 1.4 94.465
## 4688 44 1041 13 999 0 1.4 94.465
## 4689 28 144 2 999 0 -1.8 92.843
## 4690 37 179 2 999 0 1.1 93.994
## 4691 43 231 3 999 0 -2.9 92.201
## 4692 39 30 24 999 0 1.4 94.465
## 4693 56 83 1 999 0 1.4 93.444
## 4694 31 258 3 999 0 1.4 93.444
## 4695 29 286 3 999 0 1.4 93.918
## 4696 46 56 3 999 0 1.1 93.994
## 4697 39 127 1 999 0 1.1 93.994
## 4698 53 195 2 999 0 1.4 93.444
## 4699 34 196 2 999 0 1.4 93.918
## 4700 42 127 1 999 0 -0.1 93.200
## 4701 54 56 1 999 0 -0.1 93.200
## 4702 49 427 2 999 0 -1.8 92.893
## 4703 40 590 4 999 0 1.4 94.465
## 4704 82 506 2 999 0 -1.8 93.369
## 4705 54 271 2 999 0 1.4 93.918
## 4706 30 192 5 999 0 1.4 93.444
## 4707 56 84 3 999 0 1.4 93.918
## 4708 33 415 2 999 0 1.4 93.918
## 4709 57 698 1 999 0 -1.8 93.369
## 4710 42 322 1 999 0 1.4 94.465
## 4711 32 255 1 999 0 -2.9 92.963
## 4712 39 230 3 999 0 1.1 93.994
## 4713 40 716 2 999 0 1.4 94.465
## 4714 32 165 2 999 0 1.4 93.918
## 4715 46 473 2 999 0 1.4 94.465
## 4716 35 107 1 999 0 -1.8 93.075
## 4717 33 326 1 999 0 1.1 93.994
## 4718 33 59 2 999 0 1.4 93.444
## 4719 42 174 1 999 0 1.4 94.465
## 4720 69 346 3 999 0 -3.4 92.379
## 4721 39 208 2 999 0 1.1 93.994
## 4722 32 233 1 999 0 1.4 93.444
## 4723 51 197 6 999 0 1.4 94.465
## 4724 24 515 1 999 0 -1.8 93.075
## 4725 30 217 4 999 0 1.4 93.444
## 4726 56 390 2 999 0 1.1 93.994
## 4727 47 39 1 999 0 1.4 93.444
## 4728 36 329 2 999 0 -1.8 93.075
## 4729 48 345 2 999 0 -1.8 93.075
## 4730 31 207 1 999 0 -2.9 92.963
## 4731 43 512 6 999 0 1.1 93.994
## 4732 46 57 4 999 0 -1.8 93.075
## 4733 24 109 1 999 0 -2.9 92.963
## 4734 50 66 1 999 0 1.1 93.994
## 4735 45 298 1 999 0 1.1 93.994
## 4736 29 215 2 999 0 1.1 93.994
## 4737 30 118 1 999 0 1.4 93.444
## 4738 39 113 6 999 0 1.4 93.918
## 4739 30 393 2 999 0 1.1 93.994
## 4740 33 88 1 999 0 -1.8 92.893
## 4741 32 316 2 999 0 -1.8 92.893
## 4742 51 263 2 999 0 -2.9 92.963
## 4743 49 333 1 999 0 1.4 93.918
## 4744 29 88 4 999 0 1.4 93.444
## 4745 33 120 1 999 0 1.4 93.444
## 4746 42 148 1 999 0 1.1 93.994
## 4747 31 157 1 999 0 1.1 93.994
## 4748 34 198 2 999 0 -1.8 92.893
## 4749 29 104 10 999 0 -1.8 92.893
## 4750 35 25 1 999 0 1.1 93.994
## 4751 38 96 2 999 0 1.4 93.918
## 4752 53 244 2 999 0 -0.1 93.200
## 4753 47 135 3 999 0 1.1 93.994
## 4754 28 103 2 999 0 1.4 93.918
## 4755 26 72 3 999 0 1.4 94.465
## 4756 73 195 1 999 0 -1.7 94.027
## 4757 42 8 2 999 0 -0.1 93.200
## 4758 35 130 1 999 0 1.4 94.465
## 4759 25 29 1 999 0 -2.9 92.963
## 4760 37 127 3 999 0 1.4 93.918
## 4761 43 74 1 999 0 -0.1 93.200
## 4762 55 327 2 999 0 1.1 93.994
## 4763 56 217 1 999 0 -1.8 92.893
## 4764 39 638 9 999 0 1.4 94.465
## 4765 56 214 10 999 0 1.1 93.994
## 4766 32 123 16 999 0 1.4 93.918
## 4767 58 198 4 999 0 1.4 93.918
## 4768 31 961 2 999 0 1.4 93.444
## 4769 40 144 1 999 0 1.4 93.444
## 4770 39 513 2 999 0 1.4 94.465
## 4771 37 167 3 999 0 -1.8 92.893
## 4772 81 166 3 999 0 -3.0 92.713
## 4773 47 354 4 999 0 1.1 93.994
## 4774 53 91 10 999 0 1.4 93.918
## 4775 39 99 5 999 0 1.4 93.918
## 4776 29 104 1 999 0 1.4 93.444
## 4777 58 505 7 999 0 -0.1 93.200
## 4778 39 332 1 999 0 1.4 94.465
## 4779 41 145 24 999 0 1.4 94.465
## 4780 55 96 2 999 0 1.4 93.444
## 4781 35 319 2 999 0 1.4 94.465
## 4782 36 1222 5 999 0 1.1 93.994
## 4783 38 17 3 999 0 1.4 94.465
## 4784 35 85 2 999 0 1.1 93.994
## 4785 55 113 2 999 0 -2.9 92.963
## 4786 35 424 4 999 0 1.4 93.444
## 4787 57 208 1 999 0 -1.8 92.893
## 4788 41 262 2 999 0 1.4 94.465
## 4789 32 262 1 999 0 -0.1 93.200
## 4790 40 97 1 999 0 1.4 94.465
## 4791 58 281 1 999 0 1.1 93.994
## 4792 36 98 1 999 0 1.4 94.465
## 4793 20 232 2 999 0 -1.8 92.893
## 4794 33 315 2 999 0 1.4 93.444
## 4795 42 91 1 999 0 1.1 93.994
## 4796 63 273 1 999 0 -1.7 94.215
## 4797 36 112 3 999 0 1.4 94.465
## 4798 52 100 1 999 0 1.4 93.444
## 4799 53 236 1 999 0 1.4 93.444
## 4800 45 264 1 999 0 1.4 94.465
## 4801 37 181 2 999 0 -1.8 93.075
## 4802 32 171 1 999 0 1.1 93.994
## 4803 42 308 3 999 0 -1.8 92.893
## 4804 39 66 1 999 0 -0.1 93.200
## 4805 55 435 1 999 0 1.1 93.994
## 4806 25 216 2 999 0 1.4 93.918
## 4807 30 169 2 999 0 1.4 94.465
## 4808 37 177 1 999 0 1.4 93.444
## 4809 28 142 2 999 0 1.1 93.994
## 4810 36 104 1 999 0 -0.1 93.200
## 4811 30 79 4 999 0 1.1 93.994
## 4812 35 86 1 999 0 -1.8 93.075
## 4813 44 235 2 999 0 -0.1 93.200
## 4814 39 177 3 999 0 -1.8 93.075
## 4815 55 412 1 999 0 1.1 93.994
## 4816 40 253 2 999 0 1.4 94.465
## 4817 31 364 5 999 0 -1.8 92.893
## 4818 28 124 1 999 0 -1.8 92.843
## 4819 28 137 1 999 0 1.1 93.994
## 4820 57 127 3 999 0 -0.1 93.200
## 4821 45 398 1 999 0 1.4 94.465
## 4822 38 232 2 999 0 -1.8 93.075
## 4823 41 464 1 999 0 -1.8 93.075
## 4824 37 89 2 999 0 1.4 93.444
## 4825 30 83 5 999 0 1.4 94.465
## 4826 32 122 8 999 0 -1.8 92.893
## 4827 41 172 4 999 0 1.1 93.994
## 4828 55 7 3 999 0 1.4 94.465
## 4829 32 182 1 999 0 1.4 93.444
## 4830 46 111 1 999 0 1.1 93.994
## 4831 47 112 1 999 0 -1.8 93.075
## 4832 37 317 1 999 0 -1.8 93.075
## 4833 46 286 2 999 0 1.4 94.465
## 4834 46 81 1 999 0 -0.1 93.200
## 4835 36 75 1 999 0 1.4 93.444
## 4836 34 703 1 999 0 1.4 94.465
## 4837 25 48 4 999 0 1.1 93.994
## 4838 64 245 3 999 0 -1.7 94.027
## 4839 31 106 4 999 0 1.4 93.918
## 4840 41 45 1 999 0 1.1 93.994
## 4841 24 447 1 999 0 1.1 93.994
## 4842 37 612 3 999 0 -1.8 92.893
## 4843 47 181 1 999 0 -1.8 92.893
## 4844 52 467 5 999 0 1.1 93.994
## 4845 38 195 1 999 0 1.4 93.918
## 4846 30 255 2 999 0 -1.8 92.893
## 4847 60 65 2 999 0 -1.8 92.893
## 4848 33 220 6 999 0 -1.8 93.075
## 4849 37 51 1 999 0 1.1 93.994
## 4850 44 34 1 999 0 1.4 93.444
## 4851 32 515 3 999 0 1.4 93.444
## 4852 37 218 1 999 0 1.4 94.465
## 4853 29 83 3 999 0 1.4 94.465
## 4854 28 117 2 999 0 1.4 93.918
## 4855 32 168 1 999 0 -1.8 92.893
## 4856 29 666 1 999 0 -1.8 92.893
## 4857 43 23 23 999 0 1.4 94.465
## 4858 55 92 1 999 0 1.4 94.465
## 4859 32 1080 1 999 0 -1.8 93.075
## 4860 33 113 1 999 0 -2.9 92.963
## 4861 41 173 3 999 0 1.4 93.444
## 4862 24 109 11 999 0 -1.8 92.893
## 4863 33 71 2 999 0 -1.8 93.075
## 4864 29 8 7 999 0 -1.8 92.893
## 4865 35 94 4 999 0 1.4 94.465
## 4866 31 115 1 999 0 -0.1 93.200
## 4867 31 166 2 999 0 1.4 93.918
## 4868 26 49 3 999 0 -1.8 92.893
## 4869 46 622 1 999 0 -0.1 93.200
## 4870 32 261 13 999 0 1.4 93.918
## 4871 42 698 1 999 0 1.1 93.994
## 4872 32 1973 2 999 0 1.4 93.918
## 4873 51 204 4 999 0 1.1 93.994
## 4874 35 594 2 999 0 1.4 93.444
## 4875 27 238 1 999 0 1.4 93.918
## 4876 33 634 2 999 0 1.4 94.465
## 4877 44 592 4 999 0 1.1 93.994
## 4878 33 396 2 999 0 -1.8 92.893
## 4879 44 8 9 999 0 1.4 94.465
## 4880 53 39 1 999 0 1.4 93.444
## 4881 57 181 1 999 0 -0.1 93.200
## 4882 29 79 3 999 0 1.4 93.444
## 4883 30 509 2 999 0 1.1 93.994
## 4884 40 183 1 999 0 -1.7 94.027
## 4885 39 407 2 999 0 -1.8 93.075
## 4886 53 196 2 999 0 -1.7 94.027
## 4887 37 12 1 999 0 -0.2 92.756
## 4888 40 77 1 999 0 -1.8 92.893
## 4889 33 147 1 999 0 1.4 93.444
## 4890 31 106 1 999 0 -1.7 94.215
## 4891 49 198 1 999 0 -0.1 93.200
## 4892 37 52 1 999 0 -0.1 93.200
## 4893 27 279 1 999 0 -1.8 93.075
## 4894 31 222 7 999 0 1.4 93.918
## 4895 37 71 3 999 0 1.1 93.994
## 4896 52 239 2 999 0 1.4 93.444
## 4897 43 1422 10 999 0 1.4 94.465
## 4898 56 188 6 999 0 1.1 93.994
## 4899 39 135 1 999 0 1.1 93.994
## 4900 42 77 1 999 0 1.4 93.444
## 4901 34 59 7 999 0 -2.9 92.469
## 4902 59 1438 2 999 0 1.1 93.994
## 4903 29 397 1 999 0 -2.9 92.963
## 4904 48 246 2 999 0 1.4 93.918
## 4905 36 197 1 999 0 1.4 93.444
## 4906 42 148 3 999 0 1.4 93.444
## 4907 31 73 1 999 0 1.4 93.918
## 4908 75 83 3 999 0 -1.8 92.893
## 4909 48 94 3 999 0 -1.8 92.893
## 4910 40 811 1 999 0 1.1 93.994
## 4911 33 205 1 999 0 1.1 93.994
## 4912 35 178 1 999 0 1.4 93.918
## 4913 44 460 2 999 0 1.1 93.994
## 4914 31 76 4 999 0 1.4 93.444
## 4915 52 140 2 999 0 1.1 93.994
## 4916 53 291 1 999 0 -1.8 92.893
## 4917 31 298 2 999 0 1.4 94.465
## 4918 77 381 1 999 0 -3.4 92.649
## 4919 29 410 3 999 0 1.1 93.994
## 4920 44 215 1 999 0 1.4 94.465
## 4921 51 236 3 999 0 1.4 94.465
## 4922 29 48 2 999 0 -1.8 93.075
## 4923 56 168 4 999 0 1.4 94.465
## 4924 34 63 2 999 0 1.4 93.444
## 4925 57 19 4 999 0 1.4 94.465
## 4926 36 154 2 999 0 1.1 93.994
## 4927 53 164 1 999 0 -1.8 92.893
## 4928 34 1156 3 999 0 -1.8 93.075
## 4929 25 208 3 999 0 1.4 93.918
## 4930 50 329 1 999 0 -1.8 93.075
## 4931 57 199 4 999 0 1.4 93.444
## 4932 29 214 4 999 0 1.4 93.444
## 4933 35 189 1 999 0 1.4 93.444
## 4934 40 62 1 999 0 1.1 93.994
## 4935 38 64 2 999 0 1.4 93.444
## 4936 34 285 5 999 0 -1.8 92.893
## 4937 39 112 1 999 0 1.4 93.444
## 4938 35 461 1 999 0 1.1 93.994
## 4939 35 117 3 999 0 1.4 93.918
## 4940 37 3 3 999 0 1.1 93.994
## 4941 41 623 3 999 0 1.4 93.918
## 4942 33 241 3 999 0 1.4 94.465
## 4943 54 43 3 999 0 1.4 93.444
## 4944 30 245 4 999 0 1.1 93.994
## 4945 36 16 3 999 0 -1.8 92.893
## 4946 48 50 1 999 0 -1.8 93.075
## 4947 27 125 3 999 0 1.1 93.994
## 4948 46 966 1 999 0 -1.8 92.893
## 4949 54 113 2 999 0 -1.8 93.075
## 4950 30 355 2 999 0 1.1 93.994
## 4951 44 418 1 999 0 -1.8 93.075
## 4952 29 296 1 999 0 1.4 93.444
## 4953 50 121 2 999 0 1.1 93.994
## 4954 51 8 6 999 0 1.4 93.444
## 4955 35 212 1 999 0 -1.8 93.075
## 4956 34 126 4 999 0 1.4 93.918
## 4957 48 69 2 999 0 1.4 93.444
## 4958 41 101 1 999 0 1.4 93.918
## 4959 27 73 3 999 0 1.4 94.465
## 4960 36 89 1 999 0 -1.8 92.893
## 4961 37 355 2 999 0 1.1 93.994
## 4962 48 224 4 999 0 1.1 93.994
## 4963 48 16 10 999 0 1.4 93.444
## 4964 46 121 1 999 0 1.4 93.444
## 4965 35 107 3 999 0 1.1 93.994
## 4966 32 133 4 999 0 -1.8 92.893
## 4967 43 95 12 999 0 1.1 93.994
## 4968 22 51 4 999 0 -1.8 92.893
## 4969 45 59 1 999 0 -0.1 93.200
## 4970 34 198 2 999 0 1.4 94.465
## 4971 40 876 2 999 0 1.4 93.444
## 4972 48 248 1 999 0 1.1 93.994
## 4973 27 255 1 999 0 1.4 93.918
## 4974 58 269 1 999 0 1.4 94.465
## 4975 37 138 6 999 0 1.1 93.994
## 4976 30 141 1 999 0 1.4 93.444
## 4977 36 522 1 999 0 1.1 93.994
## 4978 70 70 3 999 0 -2.9 92.201
## 4979 42 175 3 999 0 1.4 94.465
## 4980 50 1195 2 999 0 -0.1 93.200
## 4981 30 26 6 999 0 -1.8 92.893
## 4982 24 107 1 999 0 -0.1 93.200
## 4983 51 17 3 999 0 1.4 94.465
## 4984 37 18 1 999 0 1.1 93.994
## 4985 50 213 1 999 0 1.4 93.444
## 4986 31 71 16 999 0 1.4 93.444
## 4987 32 121 4 999 0 1.4 94.465
## 4988 36 203 5 999 0 1.1 93.994
## 4989 39 380 1 999 0 1.1 93.994
## 4990 32 340 2 999 0 -1.8 93.075
## 4991 54 85 2 999 0 1.1 93.994
## 4992 36 777 2 999 0 -1.8 93.075
## 4993 40 235 1 999 0 1.4 94.465
## 4994 36 612 1 999 0 -1.8 92.893
## 4995 58 186 1 999 0 -2.9 92.201
## 4996 35 171 1 999 0 1.4 93.444
## 4997 58 68 3 999 0 1.4 93.444
## 4998 56 160 3 999 0 1.4 93.444
## 4999 39 175 1 999 0 -1.8 92.893
## cons.conf.idx euribor3m nr.employed job_encoded marital_encoded
## 1 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2 -40.8 1.260 5076.2 0.13296860 0.1006557
## 3 -46.2 1.270 5099.1 0.09310345 0.1088732
## 4 -46.2 1.250 5099.1 0.11473272 0.1006557
## 5 -26.9 0.740 5017.5 0.13296860 0.1400736
## 6 -46.2 1.266 5099.1 0.27285817 0.1006557
## 7 -46.2 1.244 5099.1 0.27285817 0.1006557
## 8 -46.2 1.291 5099.1 0.13296860 0.1006557
## 9 -46.2 1.313 5099.1 0.13296860 0.1006557
## 10 -46.2 1.291 5099.1 0.06836679 0.1006557
## 11 -47.1 1.405 5099.1 0.10609689 0.1400736
## 12 -42.0 4.153 5195.8 0.10609689 0.1088732
## 13 -47.1 1.405 5099.1 0.06776441 0.1006557
## 14 -42.0 4.076 5195.8 0.13296860 0.1006557
## 15 -39.8 0.767 4991.6 0.10609689 0.1400736
## 16 -40.0 0.699 5008.7 0.31059507 0.1088732
## 17 -37.5 0.879 4963.6 0.27285817 0.1006557
## 18 -47.1 1.435 5099.1 0.10875332 0.1006557
## 19 -46.2 1.250 5099.1 0.13296860 0.1400736
## 20 -46.2 1.250 5099.1 0.06836679 0.1006557
## 21 -42.0 4.120 5195.8 0.06836679 0.1006557
## 22 -31.4 0.821 5076.2 0.27285817 0.1006557
## 23 -46.2 1.244 5099.1 0.06776441 0.1006557
## 24 -40.8 1.260 5076.2 0.13296860 0.1006557
## 25 -34.8 0.649 5008.7 0.06776441 0.1400736
## 26 -47.1 1.410 5099.1 0.06836679 0.1006557
## 27 -47.1 1.435 5099.1 0.06836679 0.1006557
## 28 -46.2 1.327 5099.1 0.06836679 0.1400736
## 29 -46.2 1.313 5099.1 0.13296860 0.1088732
## 30 -46.2 1.244 5099.1 0.13296860 0.1400736
## 31 -42.0 4.191 5195.8 0.09310345 0.1006557
## 32 -46.2 1.327 5099.1 0.13296860 0.1006557
## 33 -42.0 4.120 5195.8 0.06836679 0.1006557
## 34 -46.2 1.266 5099.1 0.06776441 0.1006557
## 35 -42.0 4.076 5195.8 0.10609689 0.1006557
## 36 -46.2 1.327 5099.1 0.10609689 0.1400736
## 37 -42.0 4.076 5195.8 0.13296860 0.1400736
## 38 -37.5 0.882 4963.6 0.10609689 0.1006557
## 39 -50.0 1.703 5099.1 0.11473272 0.1400736
## 40 -42.0 4.153 5195.8 0.11473272 0.1006557
## 41 -42.0 4.021 5195.8 0.31059507 0.1400736
## 42 -26.9 0.740 5017.5 0.13296860 0.1400736
## 43 -46.2 1.244 5099.1 0.13296860 0.1006557
## 44 -46.2 1.266 5099.1 0.13296860 0.1006557
## 45 -33.0 0.720 5023.5 0.10609689 0.1006557
## 46 -46.2 1.266 5099.1 0.10609689 0.1006557
## 47 -46.2 1.313 5099.1 0.06776441 0.1006557
## 48 -47.1 1.410 5099.1 0.13296860 0.1400736
## 49 -42.0 4.021 5195.8 0.13296860 0.1400736
## 50 -46.2 1.266 5099.1 0.11473272 0.1400736
## 51 -46.2 1.327 5099.1 0.06836679 0.1006557
## 52 -46.2 1.334 5099.1 0.06836679 0.1006557
## 53 -46.2 1.281 5099.1 0.06836679 0.1006557
## 54 -46.2 1.334 5099.1 0.13296860 0.1400736
## 55 -42.0 4.191 5195.8 0.06836679 0.1006557
## 56 -47.1 1.405 5099.1 0.13296860 0.1400736
## 57 -42.0 4.191 5195.8 0.13296860 0.1006557
## 58 -46.2 1.327 5099.1 0.06836679 0.1006557
## 59 -46.2 1.354 5099.1 0.06776441 0.1400736
## 60 -46.2 1.313 5099.1 0.06836679 0.1006557
## 61 -31.4 0.884 5076.2 0.06836679 0.1006557
## 62 -46.2 1.266 5099.1 0.06836679 0.1006557
## 63 -33.0 0.717 5023.5 0.31059507 0.1400736
## 64 -31.4 0.825 5076.2 0.31059507 0.1400736
## 65 -46.2 1.281 5099.1 0.06836679 0.1006557
## 66 -46.2 1.266 5099.1 0.06776441 0.1400736
## 67 -47.1 1.365 5099.1 0.10609689 0.1006557
## 68 -33.0 0.712 5023.5 0.27285817 0.1006557
## 69 -42.0 4.153 5195.8 0.11473272 0.1006557
## 70 -47.1 1.435 5099.1 0.06836679 0.1006557
## 71 -46.2 1.327 5099.1 0.09310345 0.1088732
## 72 -46.2 1.266 5099.1 0.13296860 0.1400736
## 73 -46.2 1.250 5099.1 0.06836679 0.1006557
## 74 -42.0 4.191 5195.8 0.11473272 0.1088732
## 75 -46.2 1.281 5099.1 0.06836679 0.1400736
## 76 -42.0 4.076 5195.8 0.13296860 0.1400736
## 77 -46.2 1.344 5099.1 0.09310345 0.1006557
## 78 -47.1 1.405 5099.1 0.13510101 0.1400736
## 79 -46.2 1.327 5099.1 0.10609689 0.1006557
## 80 -46.2 1.250 5099.1 0.06836679 0.1006557
## 81 -47.1 1.435 5099.1 0.10609689 0.1006557
## 82 -49.5 0.982 4963.6 0.10609689 0.1006557
## 83 -34.8 0.646 5008.7 0.13296860 0.1006557
## 84 -49.5 1.000 4963.6 0.27285817 0.1088732
## 85 -46.2 1.266 5099.1 0.13296860 0.1400736
## 86 -38.3 0.905 4991.6 0.13296860 0.1088732
## 87 -47.1 1.405 5099.1 0.13296860 0.1400736
## 88 -31.4 0.881 5076.2 0.31059507 0.1400736
## 89 -46.2 1.291 5099.1 0.13296860 0.1400736
## 90 -46.2 1.244 5099.1 0.13296860 0.1088732
## 91 -46.2 1.344 5099.1 0.13296860 0.1006557
## 92 -46.2 1.327 5099.1 0.06836679 0.1006557
## 93 -46.2 1.334 5099.1 0.10609689 0.1400736
## 94 -42.0 4.076 5195.8 0.06836679 0.1400736
## 95 -31.4 0.849 5076.2 0.13296860 0.1006557
## 96 -46.2 1.250 5099.1 0.06776441 0.1400736
## 97 -31.4 0.873 5076.2 0.27285817 0.1006557
## 98 -42.0 4.076 5195.8 0.13296860 0.1088732
## 99 -33.6 1.072 5076.2 0.27285817 0.1088732
## 100 -47.1 1.405 5099.1 0.13296860 0.1006557
## 101 -46.2 1.327 5099.1 0.06836679 0.1006557
## 102 -40.3 0.822 4991.6 0.27285817 0.1006557
## 103 -40.0 0.699 5008.7 0.27285817 0.1006557
## 104 -47.1 1.410 5099.1 0.10609689 0.1400736
## 105 -47.1 1.435 5099.1 0.06776441 0.1006557
## 106 -47.1 1.479 5099.1 0.09310345 0.1006557
## 107 -46.2 1.299 5099.1 0.06776441 0.1400736
## 108 -42.0 4.021 5195.8 0.13296860 0.1400736
## 109 -47.1 1.479 5099.1 0.13296860 0.1006557
## 110 -33.0 0.709 5023.5 0.13296860 0.1006557
## 111 -33.6 1.044 5076.2 0.13296860 0.1006557
## 112 -40.8 1.262 5076.2 0.10609689 0.1400736
## 113 -49.5 0.982 4963.6 0.10609689 0.1400736
## 114 -46.2 1.299 5099.1 0.09310345 0.1006557
## 115 -40.8 1.260 5076.2 0.27285817 0.1006557
## 116 -46.2 1.327 5099.1 0.06836679 0.1006557
## 117 -49.5 0.972 4963.6 0.13296860 0.1006557
## 118 -42.0 4.021 5195.8 0.09310345 0.1006557
## 119 -42.0 4.021 5195.8 0.10609689 0.1006557
## 120 -40.0 0.684 5008.7 0.13296860 0.1006557
## 121 -46.2 1.291 5099.1 0.13296860 0.1400736
## 122 -46.2 1.299 5099.1 0.06836679 0.1006557
## 123 -46.2 1.266 5099.1 0.11473272 0.1400736
## 124 -42.0 4.153 5195.8 0.09310345 0.1006557
## 125 -49.5 1.008 4963.6 0.31059507 0.1400736
## 126 -42.0 4.076 5195.8 0.13296860 0.1006557
## 127 -38.3 0.894 4991.6 0.11473272 0.1006557
## 128 -47.1 1.483 5099.1 0.10609689 0.1400736
## 129 -40.8 1.235 5076.2 0.09310345 0.1400736
## 130 -46.2 1.291 5099.1 0.10609689 0.1400736
## 131 -46.2 1.344 5099.1 0.06836679 0.1006557
## 132 -46.2 1.299 5099.1 0.11473272 0.1006557
## 133 -42.0 4.153 5195.8 0.10875332 0.1006557
## 134 -42.0 4.153 5195.8 0.10609689 0.1400736
## 135 -46.2 1.344 5099.1 0.09310345 0.1006557
## 136 -46.2 1.327 5099.1 0.11473272 0.1006557
## 137 -46.2 1.250 5099.1 0.06836679 0.1088732
## 138 -47.1 1.405 5099.1 0.10609689 0.1400736
## 139 -40.8 1.262 5076.2 0.06776441 0.1006557
## 140 -46.2 1.313 5099.1 0.06836679 0.1006557
## 141 -39.8 0.739 4991.6 0.13296860 0.1400736
## 142 -46.2 1.250 5099.1 0.13296860 0.1400736
## 143 -42.0 4.021 5195.8 0.27285817 0.1006557
## 144 -46.2 1.291 5099.1 0.10609689 0.1400736
## 145 -42.0 4.153 5195.8 0.13296860 0.1006557
## 146 -42.0 4.021 5195.8 0.13296860 0.1400736
## 147 -47.1 1.405 5099.1 0.11473272 0.1006557
## 148 -46.2 1.250 5099.1 0.10609689 0.1006557
## 149 -46.2 1.299 5099.1 0.10609689 0.1400736
## 150 -46.2 1.250 5099.1 0.10609689 0.1088732
## 151 -40.0 0.682 5008.7 0.11473272 0.1006557
## 152 -46.2 1.250 5099.1 0.27285817 0.1088732
## 153 -46.2 1.291 5099.1 0.06776441 0.1006557
## 154 -46.2 1.313 5099.1 0.13296860 0.1006557
## 155 -47.1 1.405 5099.1 0.06776441 0.1088732
## 156 -33.0 0.718 5023.5 0.11473272 0.1006557
## 157 -42.0 4.076 5195.8 0.10875332 0.1400736
## 158 -46.2 1.344 5099.1 0.06836679 0.1006557
## 159 -47.1 1.365 5099.1 0.13296860 0.1400736
## 160 -46.2 1.281 5099.1 0.06836679 0.1006557
## 161 -31.4 0.851 5076.2 0.27285817 0.1400736
## 162 -42.0 4.021 5195.8 0.06836679 0.1088732
## 163 -47.1 1.483 5099.1 0.10875332 0.1400736
## 164 -46.2 1.313 5099.1 0.10609689 0.1006557
## 165 -42.0 4.191 5195.8 0.06836679 0.1006557
## 166 -46.2 1.266 5099.1 0.06836679 0.1088732
## 167 -46.2 1.327 5099.1 0.06836679 0.1006557
## 168 -46.2 1.313 5099.1 0.06836679 0.1006557
## 169 -46.2 1.281 5099.1 0.06776441 0.1400736
## 170 -47.1 1.405 5099.1 0.06836679 0.1006557
## 171 -42.0 4.153 5195.8 0.10609689 0.1006557
## 172 -46.2 1.270 5099.1 0.31059507 0.1400736
## 173 -46.2 1.334 5099.1 0.13296860 0.1006557
## 174 -26.9 0.739 5017.5 0.06776441 0.1006557
## 175 -33.0 0.714 5023.5 0.27285817 0.1006557
## 176 -42.0 4.021 5195.8 0.13296860 0.1006557
## 177 -47.1 1.423 5099.1 0.10609689 0.1006557
## 178 -30.1 0.714 5017.5 0.13296860 0.1006557
## 179 -29.8 0.768 5017.5 0.06836679 0.1006557
## 180 -46.2 1.250 5099.1 0.09484778 0.1006557
## 181 -42.0 4.153 5195.8 0.06836679 0.1006557
## 182 -49.5 1.025 4963.6 0.27285817 0.1006557
## 183 -46.2 1.334 5099.1 0.06836679 0.1006557
## 184 -31.4 0.851 5076.2 0.13296860 0.1006557
## 185 -46.2 1.344 5099.1 0.06836679 0.1006557
## 186 -46.2 1.313 5099.1 0.13296860 0.1006557
## 187 -40.0 0.695 5008.7 0.06776441 0.1400736
## 188 -46.2 1.244 5099.1 0.06776441 0.1400736
## 189 -46.2 1.244 5099.1 0.27285817 0.1088732
## 190 -42.0 4.021 5195.8 0.11473272 0.1006557
## 191 -42.0 4.153 5195.8 0.13510101 0.1088732
## 192 -46.2 1.344 5099.1 0.06836679 0.1006557
## 193 -47.1 1.410 5099.1 0.06836679 0.1006557
## 194 -31.4 0.883 5076.2 0.10609689 0.1088732
## 195 -46.2 1.250 5099.1 0.06776441 0.1006557
## 196 -46.2 1.313 5099.1 0.06776441 0.1006557
## 197 -46.2 1.266 5099.1 0.06776441 0.1400736
## 198 -46.2 1.281 5099.1 0.10609689 0.1400736
## 199 -42.0 4.153 5195.8 0.13510101 0.1400736
## 200 -30.1 0.715 5017.5 0.10875332 0.1088732
## 201 -42.0 4.076 5195.8 0.13296860 0.1088732
## 202 -47.1 1.405 5099.1 0.13296860 0.1006557
## 203 -42.0 4.153 5195.8 0.09310345 0.1006557
## 204 -42.0 4.076 5195.8 0.13510101 0.1400736
## 205 -42.0 4.021 5195.8 0.13296860 0.1006557
## 206 -42.0 4.191 5195.8 0.13296860 0.1400736
## 207 -42.0 4.153 5195.8 0.13296860 0.1006557
## 208 -46.2 1.244 5099.1 0.11473272 0.1006557
## 209 -47.1 1.435 5099.1 0.13296860 0.1006557
## 210 -46.2 1.313 5099.1 0.06836679 0.1006557
## 211 -47.1 1.410 5099.1 0.06836679 0.1006557
## 212 -46.2 1.327 5099.1 0.13296860 0.1006557
## 213 -46.2 1.266 5099.1 0.10609689 0.1006557
## 214 -46.2 1.281 5099.1 0.06836679 0.1006557
## 215 -46.2 1.299 5099.1 0.13296860 0.1400736
## 216 -40.3 0.889 4991.6 0.11473272 0.1006557
## 217 -42.0 4.153 5195.8 0.10609689 0.1088732
## 218 -40.8 1.262 5076.2 0.10609689 0.1400736
## 219 -40.3 0.782 4991.6 0.13296860 0.1006557
## 220 -46.2 1.291 5099.1 0.06776441 0.1088732
## 221 -46.2 1.327 5099.1 0.06776441 0.1006557
## 222 -47.1 1.453 5099.1 0.06836679 0.1006557
## 223 -46.2 1.250 5099.1 0.06836679 0.1006557
## 224 -46.2 1.313 5099.1 0.06776441 0.1400736
## 225 -37.5 0.882 4963.6 0.13296860 0.1400736
## 226 -34.8 0.646 5008.7 0.10609689 0.1006557
## 227 -40.3 0.899 4991.6 0.13296860 0.1006557
## 228 -31.4 0.883 5076.2 0.10875332 0.1006557
## 229 -46.2 1.334 5099.1 0.06836679 0.1006557
## 230 -46.2 1.266 5099.1 0.13296860 0.1400736
## 231 -47.1 1.405 5099.1 0.11473272 0.1006557
## 232 -33.0 0.721 5023.5 0.10609689 0.1006557
## 233 -46.2 1.291 5099.1 0.13296860 0.1006557
## 234 -46.2 1.281 5099.1 0.11473272 0.1006557
## 235 -46.2 1.281 5099.1 0.10609689 0.1400736
## 236 -46.2 1.250 5099.1 0.06776441 0.1006557
## 237 -46.2 1.344 5099.1 0.13296860 0.1400736
## 238 -47.1 1.453 5099.1 0.13296860 0.1006557
## 239 -46.2 1.334 5099.1 0.06836679 0.1006557
## 240 -46.2 1.250 5099.1 0.13296860 0.1400736
## 241 -47.1 1.372 5099.1 0.13296860 0.1400736
## 242 -46.2 1.266 5099.1 0.10609689 0.1400736
## 243 -42.0 4.120 5195.8 0.10609689 0.1006557
## 244 -47.1 1.365 5099.1 0.10609689 0.1400736
## 245 -33.0 0.715 5023.5 0.13296860 0.1006557
## 246 -46.2 1.266 5099.1 0.06836679 0.1400736
## 247 -42.0 4.120 5195.8 0.06776441 0.1088732
## 248 -46.2 1.327 5099.1 0.10875332 0.1088732
## 249 -40.3 0.810 4991.6 0.31059507 0.1400736
## 250 -37.5 0.879 4963.6 0.13296860 0.1006557
## 251 -46.2 1.281 5099.1 0.13296860 0.1006557
## 252 -30.1 0.722 5017.5 0.10609689 0.1006557
## 253 -42.0 4.191 5195.8 0.13296860 0.1006557
## 254 -46.2 1.266 5099.1 0.06776441 0.1400736
## 255 -46.2 1.334 5099.1 0.13296860 0.1006557
## 256 -30.1 0.714 5017.5 0.13296860 0.1400736
## 257 -46.2 1.291 5099.1 0.08955224 0.1006557
## 258 -42.0 4.120 5195.8 0.11473272 0.1006557
## 259 -34.6 0.645 5008.7 0.10609689 0.1006557
## 260 -46.2 1.291 5099.1 0.06836679 0.1400736
## 261 -47.1 1.410 5099.1 0.09310345 0.1006557
## 262 -40.8 1.224 5076.2 0.10609689 0.1006557
## 263 -46.2 1.250 5099.1 0.06836679 0.1006557
## 264 -40.3 0.810 4991.6 0.13296860 0.1006557
## 265 -42.0 4.153 5195.8 0.10609689 0.1088732
## 266 -46.2 1.344 5099.1 0.10609689 0.1006557
## 267 -46.2 1.266 5099.1 0.06836679 0.1400736
## 268 -47.1 1.410 5099.1 0.06836679 0.1006557
## 269 -46.2 1.327 5099.1 0.06776441 0.1006557
## 270 -31.4 0.825 5076.2 0.31059507 0.1400736
## 271 -40.8 1.206 5076.2 0.31059507 0.1400736
## 272 -46.2 1.250 5099.1 0.06836679 0.1006557
## 273 -46.2 1.327 5099.1 0.06776441 0.1006557
## 274 -31.4 0.883 5076.2 0.27285817 0.1006557
## 275 -47.1 1.405 5099.1 0.31059507 0.1400736
## 276 -33.6 0.908 5076.2 0.31059507 0.1400736
## 277 -47.1 1.365 5099.1 0.09310345 0.1006557
## 278 -34.6 0.638 5008.7 0.13296860 0.1006557
## 279 -46.2 1.354 5099.1 0.10609689 0.1006557
## 280 -46.2 1.327 5099.1 0.06776441 0.1006557
## 281 -50.8 1.031 4963.6 0.27285817 0.1006557
## 282 -40.0 0.699 5008.7 0.10609689 0.1006557
## 283 -40.0 0.697 5008.7 0.10609689 0.1400736
## 284 -42.0 4.153 5195.8 0.09310345 0.1006557
## 285 -30.1 0.714 5017.5 0.27285817 0.1006557
## 286 -29.8 0.762 5017.5 0.13510101 0.1006557
## 287 -46.2 1.299 5099.1 0.10609689 0.1400736
## 288 -46.2 1.344 5099.1 0.06836679 0.1006557
## 289 -47.1 1.423 5099.1 0.10875332 0.1006557
## 290 -47.1 1.415 5099.1 0.27285817 0.1006557
## 291 -47.1 1.405 5099.1 0.06776441 0.1006557
## 292 -34.8 0.655 5008.7 0.06836679 0.1400736
## 293 -42.0 4.191 5195.8 0.13296860 0.1400736
## 294 -47.1 1.405 5099.1 0.06776441 0.1006557
## 295 -47.1 1.479 5099.1 0.06836679 0.1006557
## 296 -46.2 1.250 5099.1 0.27285817 0.1088732
## 297 -47.1 1.410 5099.1 0.06836679 0.1006557
## 298 -42.0 4.076 5195.8 0.10609689 0.1006557
## 299 -46.2 1.281 5099.1 0.11473272 0.1006557
## 300 -46.2 1.266 5099.1 0.06776441 0.1400736
## 301 -47.1 1.405 5099.1 0.13296860 0.1006557
## 302 -46.2 1.264 5099.1 0.06776441 0.1006557
## 303 -46.2 1.250 5099.1 0.11473272 0.1006557
## 304 -46.2 1.334 5099.1 0.06836679 0.1400736
## 305 -42.0 4.021 5195.8 0.11473272 0.1006557
## 306 -46.2 1.244 5099.1 0.13296860 0.1400736
## 307 -26.9 0.754 5017.5 0.27285817 0.1006557
## 308 -46.2 1.334 5099.1 0.06836679 0.1006557
## 309 -46.2 1.266 5099.1 0.13296860 0.1006557
## 310 -46.2 1.344 5099.1 0.13296860 0.1006557
## 311 -42.0 4.076 5195.8 0.13296860 0.1166667
## 312 -42.0 4.191 5195.8 0.10609689 0.1006557
## 313 -46.2 1.291 5099.1 0.10609689 0.1400736
## 314 -47.1 1.453 5099.1 0.06836679 0.1006557
## 315 -47.1 1.453 5099.1 0.06836679 0.1006557
## 316 -46.2 1.327 5099.1 0.06836679 0.1006557
## 317 -40.3 0.870 4991.6 0.13296860 0.1400736
## 318 -47.1 1.405 5099.1 0.13296860 0.1400736
## 319 -42.0 4.191 5195.8 0.06836679 0.1006557
## 320 -46.2 1.299 5099.1 0.06836679 0.1006557
## 321 -42.0 4.021 5195.8 0.13296860 0.1088732
## 322 -37.5 0.879 4963.6 0.31059507 0.1400736
## 323 -42.0 4.076 5195.8 0.13296860 0.1400736
## 324 -46.2 1.266 5099.1 0.31059507 0.1400736
## 325 -46.2 1.299 5099.1 0.06776441 0.1006557
## 326 -46.2 1.291 5099.1 0.06836679 0.1400736
## 327 -47.1 1.405 5099.1 0.06776441 0.1088732
## 328 -46.2 1.266 5099.1 0.06836679 0.1400736
## 329 -46.2 1.281 5099.1 0.13296860 0.1006557
## 330 -46.2 1.334 5099.1 0.13296860 0.1006557
## 331 -46.2 1.344 5099.1 0.27285817 0.1088732
## 332 -42.0 4.076 5195.8 0.06836679 0.1006557
## 333 -47.1 1.483 5099.1 0.06836679 0.1006557
## 334 -46.2 1.281 5099.1 0.06836679 0.1006557
## 335 -46.2 1.266 5099.1 0.13296860 0.1006557
## 336 -42.0 4.153 5195.8 0.13296860 0.1006557
## 337 -46.2 1.299 5099.1 0.06776441 0.1400736
## 338 -46.2 1.299 5099.1 0.06836679 0.1006557
## 339 -42.0 4.076 5195.8 0.06836679 0.1400736
## 340 -46.2 1.291 5099.1 0.13296860 0.1400736
## 341 -47.1 1.405 5099.1 0.10609689 0.1006557
## 342 -46.2 1.266 5099.1 0.13296860 0.1006557
## 343 -31.4 0.869 5076.2 0.11473272 0.1006557
## 344 -46.2 1.354 5099.1 0.13296860 0.1088732
## 345 -42.0 4.191 5195.8 0.10609689 0.1006557
## 346 -26.9 0.722 5017.5 0.10609689 0.1006557
## 347 -47.1 1.365 5099.1 0.13296860 0.1006557
## 348 -42.0 4.191 5195.8 0.11473272 0.1088732
## 349 -46.2 1.299 5099.1 0.06836679 0.1006557
## 350 -46.2 1.299 5099.1 0.10609689 0.1400736
## 351 -42.0 4.153 5195.8 0.09310345 0.1006557
## 352 -33.6 1.044 5076.2 0.06776441 0.1400736
## 353 -46.2 1.344 5099.1 0.06776441 0.1088732
## 354 -46.2 1.334 5099.1 0.09484778 0.1088732
## 355 -46.2 1.313 5099.1 0.11473272 0.1400736
## 356 -42.0 4.021 5195.8 0.13510101 0.1400736
## 357 -49.5 1.032 4963.6 0.31059507 0.1400736
## 358 -46.2 1.266 5099.1 0.06836679 0.1006557
## 359 -42.0 4.153 5195.8 0.06836679 0.1088732
## 360 -30.1 0.719 5017.5 0.09310345 0.1088732
## 361 -47.1 1.423 5099.1 0.06776441 0.1400736
## 362 -46.2 1.244 5099.1 0.10609689 0.1400736
## 363 -46.2 1.281 5099.1 0.06836679 0.1006557
## 364 -33.6 1.048 5076.2 0.09310345 0.1400736
## 365 -46.2 1.344 5099.1 0.11473272 0.1006557
## 366 -40.8 1.268 5076.2 0.13296860 0.1006557
## 367 -46.2 1.313 5099.1 0.13296860 0.1006557
## 368 -31.4 0.849 5076.2 0.31059507 0.1400736
## 369 -47.1 1.405 5099.1 0.06836679 0.1006557
## 370 -40.8 1.252 5076.2 0.10609689 0.1006557
## 371 -46.2 1.266 5099.1 0.11473272 0.1088732
## 372 -46.2 1.266 5099.1 0.09310345 0.1088732
## 373 -42.0 4.191 5195.8 0.13296860 0.1006557
## 374 -46.2 1.313 5099.1 0.11473272 0.1006557
## 375 -42.0 4.153 5195.8 0.13296860 0.1006557
## 376 -47.1 1.410 5099.1 0.06836679 0.1006557
## 377 -40.8 1.266 5076.2 0.13510101 0.1006557
## 378 -46.2 1.313 5099.1 0.06836679 0.1006557
## 379 -46.2 1.334 5099.1 0.06836679 0.1006557
## 380 -46.2 1.344 5099.1 0.06776441 0.1400736
## 381 -42.0 4.076 5195.8 0.10609689 0.1006557
## 382 -42.0 4.076 5195.8 0.10875332 0.1006557
## 383 -42.0 4.120 5195.8 0.10609689 0.1400736
## 384 -42.0 4.191 5195.8 0.10875332 0.1006557
## 385 -46.2 1.299 5099.1 0.06776441 0.1400736
## 386 -46.2 1.354 5099.1 0.11473272 0.1006557
## 387 -42.0 4.191 5195.8 0.06836679 0.1088732
## 388 -46.2 1.327 5099.1 0.10609689 0.1006557
## 389 -46.2 1.250 5099.1 0.06836679 0.1006557
## 390 -47.1 1.415 5099.1 0.13296860 0.1006557
## 391 -31.4 0.879 5076.2 0.27285817 0.1006557
## 392 -46.2 1.259 5099.1 0.10609689 0.1400736
## 393 -37.5 0.881 4963.6 0.10875332 0.1400736
## 394 -46.2 1.250 5099.1 0.13296860 0.1088732
## 395 -46.2 1.266 5099.1 0.13296860 0.1400736
## 396 -47.1 1.405 5099.1 0.13296860 0.1006557
## 397 -47.1 1.365 5099.1 0.13296860 0.1400736
## 398 -47.1 1.405 5099.1 0.06836679 0.1006557
## 399 -37.5 0.884 4963.6 0.11473272 0.1006557
## 400 -46.2 1.334 5099.1 0.13296860 0.1400736
## 401 -46.2 1.291 5099.1 0.06836679 0.1400736
## 402 -42.0 4.120 5195.8 0.06776441 0.1088732
## 403 -47.1 1.405 5099.1 0.11473272 0.1088732
## 404 -40.0 0.699 5008.7 0.10609689 0.1006557
## 405 -31.4 0.883 5076.2 0.13296860 0.1006557
## 406 -31.4 0.881 5076.2 0.06836679 0.1006557
## 407 -47.1 1.405 5099.1 0.11473272 0.1400736
## 408 -46.2 1.344 5099.1 0.10609689 0.1006557
## 409 -42.0 4.191 5195.8 0.06776441 0.1006557
## 410 -46.2 1.266 5099.1 0.06836679 0.1400736
## 411 -47.1 1.405 5099.1 0.10609689 0.1006557
## 412 -31.4 0.881 5076.2 0.06776441 0.1006557
## 413 -34.8 0.655 5008.7 0.13296860 0.1088732
## 414 -47.1 1.410 5099.1 0.10609689 0.1088732
## 415 -46.2 1.291 5099.1 0.06836679 0.1400736
## 416 -31.4 0.873 5076.2 0.13296860 0.1006557
## 417 -46.2 1.334 5099.1 0.11473272 0.1006557
## 418 -46.2 1.281 5099.1 0.10875332 0.1006557
## 419 -46.2 1.313 5099.1 0.06836679 0.1400736
## 420 -40.3 0.881 4991.6 0.13296860 0.1400736
## 421 -46.2 1.291 5099.1 0.06836679 0.1006557
## 422 -34.6 0.638 5008.7 0.27285817 0.1006557
## 423 -42.0 4.153 5195.8 0.27285817 0.1088732
## 424 -46.2 1.250 5099.1 0.10609689 0.1088732
## 425 -47.1 1.405 5099.1 0.13296860 0.1400736
## 426 -47.1 1.405 5099.1 0.06836679 0.1006557
## 427 -46.2 1.334 5099.1 0.13296860 0.1006557
## 428 -46.2 1.270 5099.1 0.11473272 0.1400736
## 429 -46.2 1.334 5099.1 0.06776441 0.1006557
## 430 -50.8 1.049 4963.6 0.31059507 0.1400736
## 431 -46.2 1.244 5099.1 0.06776441 0.1088732
## 432 -40.3 0.802 4991.6 0.13296860 0.1006557
## 433 -47.1 1.423 5099.1 0.10875332 0.1006557
## 434 -47.1 1.405 5099.1 0.10875332 0.1006557
## 435 -33.0 0.717 5023.5 0.10609689 0.1006557
## 436 -46.2 1.250 5099.1 0.06836679 0.1400736
## 437 -47.1 1.435 5099.1 0.10875332 0.1400736
## 438 -46.2 1.266 5099.1 0.10609689 0.1006557
## 439 -46.2 1.250 5099.1 0.06836679 0.1400736
## 440 -47.1 1.483 5099.1 0.10609689 0.1400736
## 441 -47.1 1.405 5099.1 0.13510101 0.1006557
## 442 -46.2 1.266 5099.1 0.13296860 0.1006557
## 443 -47.1 1.415 5099.1 0.06776441 0.1006557
## 444 -39.8 0.727 4991.6 0.06836679 0.1006557
## 445 -46.2 1.281 5099.1 0.06836679 0.1400736
## 446 -34.6 0.635 5008.7 0.31059507 0.1400736
## 447 -47.1 1.365 5099.1 0.13296860 0.1006557
## 448 -40.8 1.268 5076.2 0.09484778 0.1006557
## 449 -46.2 1.250 5099.1 0.10875332 0.1006557
## 450 -42.0 4.153 5195.8 0.06836679 0.1006557
## 451 -29.8 0.773 5017.5 0.11473272 0.1006557
## 452 -46.2 1.327 5099.1 0.06836679 0.1006557
## 453 -46.2 1.266 5099.1 0.13296860 0.1088732
## 454 -46.2 1.266 5099.1 0.06836679 0.1006557
## 455 -40.8 1.262 5076.2 0.06776441 0.1088732
## 456 -46.2 1.250 5099.1 0.13296860 0.1006557
## 457 -42.0 4.153 5195.8 0.06776441 0.1088732
## 458 -47.1 1.435 5099.1 0.13296860 0.1400736
## 459 -46.2 1.327 5099.1 0.06836679 0.1006557
## 460 -40.0 0.697 5008.7 0.11473272 0.1006557
## 461 -47.1 1.405 5099.1 0.11473272 0.1006557
## 462 -47.1 1.405 5099.1 0.13510101 0.1006557
## 463 -47.1 1.410 5099.1 0.06776441 0.1088732
## 464 -46.2 1.299 5099.1 0.06836679 0.1006557
## 465 -47.1 1.405 5099.1 0.06836679 0.1006557
## 466 -46.2 1.327 5099.1 0.13296860 0.1088732
## 467 -42.0 4.076 5195.8 0.11473272 0.1006557
## 468 -42.0 4.153 5195.8 0.10609689 0.1006557
## 469 -49.5 1.025 4963.6 0.27285817 0.1006557
## 470 -42.0 4.021 5195.8 0.10875332 0.1006557
## 471 -46.2 1.334 5099.1 0.10609689 0.1400736
## 472 -39.8 0.729 4991.6 0.31059507 0.1400736
## 473 -46.2 1.327 5099.1 0.13296860 0.1088732
## 474 -50.8 1.040 4963.6 0.13296860 0.1088732
## 475 -47.1 1.435 5099.1 0.13296860 0.1006557
## 476 -46.2 1.327 5099.1 0.06836679 0.1006557
## 477 -34.8 0.652 5008.7 0.06836679 0.1400736
## 478 -42.0 4.076 5195.8 0.13296860 0.1088732
## 479 -47.1 1.405 5099.1 0.13296860 0.1006557
## 480 -47.1 1.445 5099.1 0.06776441 0.1006557
## 481 -46.2 1.250 5099.1 0.13296860 0.1400736
## 482 -31.4 0.881 5076.2 0.13296860 0.1006557
## 483 -29.8 0.819 5017.5 0.13296860 0.1006557
## 484 -46.2 1.334 5099.1 0.10609689 0.1088732
## 485 -46.2 1.266 5099.1 0.13296860 0.1400736
## 486 -46.2 1.281 5099.1 0.10609689 0.1006557
## 487 -46.2 1.291 5099.1 0.13296860 0.1006557
## 488 -31.4 0.861 5076.2 0.10609689 0.1006557
## 489 -42.0 4.021 5195.8 0.10609689 0.1006557
## 490 -47.1 1.410 5099.1 0.06836679 0.1006557
## 491 -42.0 4.021 5195.8 0.10609689 0.1006557
## 492 -46.2 1.250 5099.1 0.06776441 0.1006557
## 493 -46.2 1.327 5099.1 0.13296860 0.1006557
## 494 -42.0 4.021 5195.8 0.11473272 0.1006557
## 495 -46.2 1.313 5099.1 0.06776441 0.1006557
## 496 -46.2 1.327 5099.1 0.13296860 0.1400736
## 497 -26.9 0.722 5017.5 0.13296860 0.1400736
## 498 -29.8 0.770 5017.5 0.10609689 0.1006557
## 499 -42.0 4.191 5195.8 0.06836679 0.1006557
## 500 -46.2 1.250 5099.1 0.13296860 0.1006557
## 501 -46.2 1.250 5099.1 0.10875332 0.1400736
## 502 -42.0 4.191 5195.8 0.10609689 0.1006557
## 503 -42.0 4.191 5195.8 0.13510101 0.1006557
## 504 -47.1 1.405 5099.1 0.31059507 0.1006557
## 505 -46.2 1.313 5099.1 0.06836679 0.1400736
## 506 -46.2 1.327 5099.1 0.06776441 0.1400736
## 507 -40.3 0.822 4991.6 0.27285817 0.1006557
## 508 -40.3 0.846 4991.6 0.10875332 0.1400736
## 509 -30.1 0.718 5017.5 0.11473272 0.1400736
## 510 -46.2 1.334 5099.1 0.06836679 0.1006557
## 511 -47.1 1.483 5099.1 0.06836679 0.1088732
## 512 -47.1 1.435 5099.1 0.13296860 0.1400736
## 513 -47.1 1.405 5099.1 0.10609689 0.1400736
## 514 -42.0 4.021 5195.8 0.10609689 0.1006557
## 515 -47.1 1.405 5099.1 0.06836679 0.1006557
## 516 -29.8 0.770 5017.5 0.13296860 0.1006557
## 517 -47.1 1.405 5099.1 0.06836679 0.1006557
## 518 -47.1 1.410 5099.1 0.06836679 0.1006557
## 519 -31.4 0.854 5076.2 0.13510101 0.1006557
## 520 -46.2 1.327 5099.1 0.10609689 0.1006557
## 521 -46.2 1.313 5099.1 0.13296860 0.1400736
## 522 -42.0 4.153 5195.8 0.11473272 0.1006557
## 523 -47.1 1.405 5099.1 0.13296860 0.1006557
## 524 -42.0 4.076 5195.8 0.06776441 0.1006557
## 525 -46.2 1.344 5099.1 0.06836679 0.1400736
## 526 -42.0 4.153 5195.8 0.27285817 0.1088732
## 527 -46.2 1.313 5099.1 0.06776441 0.1006557
## 528 -39.8 0.702 4991.6 0.10609689 0.1400736
## 529 -46.2 1.281 5099.1 0.06836679 0.1400736
## 530 -42.0 4.021 5195.8 0.09484778 0.1006557
## 531 -26.9 0.744 5017.5 0.11473272 0.1400736
## 532 -40.3 0.899 4991.6 0.10609689 0.1400736
## 533 -46.2 1.334 5099.1 0.10875332 0.1006557
## 534 -34.8 0.643 5008.7 0.10609689 0.1006557
## 535 -46.2 1.334 5099.1 0.06836679 0.1006557
## 536 -47.1 1.405 5099.1 0.10875332 0.1006557
## 537 -46.2 1.291 5099.1 0.27285817 0.1006557
## 538 -47.1 1.405 5099.1 0.10609689 0.1006557
## 539 -47.1 1.405 5099.1 0.11473272 0.1006557
## 540 -49.5 0.972 4963.6 0.27285817 0.1006557
## 541 -46.2 1.344 5099.1 0.13296860 0.1006557
## 542 -47.1 1.405 5099.1 0.06836679 0.1006557
## 543 -49.5 0.972 4963.6 0.31059507 0.1400736
## 544 -40.3 0.802 4991.6 0.13296860 0.1006557
## 545 -47.1 1.405 5099.1 0.13296860 0.1006557
## 546 -30.1 0.716 5017.5 0.27285817 0.1006557
## 547 -42.0 4.021 5195.8 0.11473272 0.1006557
## 548 -42.0 4.021 5195.8 0.13296860 0.1088732
## 549 -46.2 1.250 5099.1 0.10875332 0.1006557
## 550 -47.1 1.483 5099.1 0.06836679 0.1006557
## 551 -46.2 1.244 5099.1 0.06836679 0.1400736
## 552 -46.2 1.299 5099.1 0.13296860 0.1006557
## 553 -46.2 1.291 5099.1 0.06836679 0.1400736
## 554 -34.8 0.639 5008.7 0.13296860 0.1400736
## 555 -46.2 1.250 5099.1 0.13296860 0.1006557
## 556 -34.8 0.649 5008.7 0.13296860 0.1006557
## 557 -38.3 0.899 4991.6 0.13296860 0.1006557
## 558 -46.2 1.327 5099.1 0.06776441 0.1400736
## 559 -39.8 0.767 4991.6 0.13296860 0.1006557
## 560 -47.1 1.466 5099.1 0.10609689 0.1006557
## 561 -39.8 0.702 4991.6 0.09484778 0.1006557
## 562 -40.8 1.262 5076.2 0.10875332 0.1400736
## 563 -50.8 1.049 4963.6 0.10609689 0.1400736
## 564 -46.2 1.313 5099.1 0.13296860 0.1006557
## 565 -40.3 0.899 4991.6 0.27285817 0.1006557
## 566 -37.5 0.883 4963.6 0.27285817 0.1006557
## 567 -42.0 4.153 5195.8 0.06836679 0.1088732
## 568 -31.4 0.849 5076.2 0.31059507 0.1400736
## 569 -46.2 1.299 5099.1 0.10609689 0.1006557
## 570 -50.0 1.560 5099.1 0.13296860 0.1088732
## 571 -46.2 1.313 5099.1 0.06836679 0.1400736
## 572 -47.1 1.405 5099.1 0.06836679 0.1088732
## 573 -46.2 1.281 5099.1 0.11473272 0.1006557
## 574 -38.3 0.898 4991.6 0.06776441 0.1400736
## 575 -46.2 1.299 5099.1 0.10609689 0.1400736
## 576 -46.2 1.281 5099.1 0.06836679 0.1400736
## 577 -42.0 4.076 5195.8 0.13296860 0.1400736
## 578 -31.4 0.883 5076.2 0.13296860 0.1006557
## 579 -46.2 1.327 5099.1 0.13296860 0.1006557
## 580 -37.5 0.883 4963.6 0.13296860 0.1006557
## 581 -42.0 4.076 5195.8 0.13296860 0.1400736
## 582 -46.2 1.291 5099.1 0.13296860 0.1006557
## 583 -47.1 1.365 5099.1 0.09310345 0.1006557
## 584 -38.3 0.904 4991.6 0.31059507 0.1400736
## 585 -30.1 0.722 5017.5 0.11473272 0.1006557
## 586 -46.2 1.344 5099.1 0.13296860 0.1400736
## 587 -31.4 0.854 5076.2 0.13296860 0.1006557
## 588 -47.1 1.410 5099.1 0.06776441 0.1006557
## 589 -47.1 1.405 5099.1 0.13296860 0.1006557
## 590 -46.2 1.291 5099.1 0.06776441 0.1400736
## 591 -46.2 1.327 5099.1 0.10609689 0.1400736
## 592 -47.1 1.410 5099.1 0.06836679 0.1006557
## 593 -46.2 1.327 5099.1 0.06836679 0.1006557
## 594 -46.2 1.313 5099.1 0.06836679 0.1006557
## 595 -46.2 1.250 5099.1 0.06776441 0.1006557
## 596 -46.2 1.344 5099.1 0.11473272 0.1006557
## 597 -46.2 1.327 5099.1 0.10609689 0.1006557
## 598 -47.1 1.423 5099.1 0.10609689 0.1006557
## 599 -46.2 1.344 5099.1 0.06836679 0.1006557
## 600 -46.2 1.334 5099.1 0.13296860 0.1400736
## 601 -47.1 1.435 5099.1 0.06836679 0.1006557
## 602 -31.4 0.859 5076.2 0.13296860 0.1400736
## 603 -46.2 1.250 5099.1 0.06836679 0.1006557
## 604 -47.1 1.405 5099.1 0.09484778 0.1006557
## 605 -33.6 0.908 5076.2 0.13296860 0.1006557
## 606 -47.1 1.435 5099.1 0.13296860 0.1088732
## 607 -42.0 4.153 5195.8 0.10609689 0.1400736
## 608 -42.0 4.021 5195.8 0.11473272 0.1088732
## 609 -46.2 1.266 5099.1 0.06836679 0.1006557
## 610 -34.8 0.639 5008.7 0.06836679 0.1088732
## 611 -47.1 1.410 5099.1 0.13296860 0.1006557
## 612 -42.0 4.120 5195.8 0.13296860 0.1400736
## 613 -46.2 1.266 5099.1 0.06836679 0.1400736
## 614 -47.1 1.405 5099.1 0.06836679 0.1006557
## 615 -46.2 1.244 5099.1 0.06836679 0.1400736
## 616 -40.0 0.699 5008.7 0.13510101 0.1006557
## 617 -26.9 0.722 5017.5 0.10609689 0.1006557
## 618 -33.0 0.710 5023.5 0.10609689 0.1006557
## 619 -46.2 1.281 5099.1 0.06836679 0.1006557
## 620 -40.8 1.260 5076.2 0.06836679 0.1006557
## 621 -42.0 4.153 5195.8 0.06836679 0.1006557
## 622 -46.2 1.327 5099.1 0.13296860 0.1400736
## 623 -46.2 1.344 5099.1 0.06836679 0.1088732
## 624 -46.2 1.291 5099.1 0.13296860 0.1088732
## 625 -46.2 1.313 5099.1 0.09310345 0.1006557
## 626 -40.8 1.260 5076.2 0.13296860 0.1006557
## 627 -47.1 1.405 5099.1 0.06836679 0.1006557
## 628 -33.0 0.707 5023.5 0.13510101 0.1006557
## 629 -46.2 1.281 5099.1 0.10609689 0.1088732
## 630 -42.0 4.153 5195.8 0.06836679 0.1006557
## 631 -46.2 1.266 5099.1 0.06776441 0.1006557
## 632 -47.1 1.405 5099.1 0.10875332 0.1006557
## 633 -46.2 1.313 5099.1 0.10875332 0.1006557
## 634 -46.2 1.313 5099.1 0.06836679 0.1006557
## 635 -42.0 4.153 5195.8 0.10609689 0.1400736
## 636 -30.1 0.722 5017.5 0.10609689 0.1006557
## 637 -46.2 1.266 5099.1 0.06776441 0.1088732
## 638 -42.0 4.076 5195.8 0.11473272 0.1006557
## 639 -46.2 1.291 5099.1 0.13510101 0.1006557
## 640 -47.1 1.405 5099.1 0.11473272 0.1006557
## 641 -42.0 4.153 5195.8 0.13510101 0.1006557
## 642 -46.2 1.327 5099.1 0.10609689 0.1006557
## 643 -46.2 1.266 5099.1 0.06776441 0.1400736
## 644 -47.1 1.479 5099.1 0.09310345 0.1400736
## 645 -46.2 1.327 5099.1 0.31059507 0.1400736
## 646 -46.2 1.291 5099.1 0.06776441 0.1006557
## 647 -46.2 1.291 5099.1 0.10609689 0.1088732
## 648 -46.2 1.299 5099.1 0.06836679 0.1400736
## 649 -46.2 1.266 5099.1 0.11473272 0.1006557
## 650 -26.9 0.742 5017.5 0.06836679 0.1400736
## 651 -46.2 1.313 5099.1 0.10609689 0.1088732
## 652 -46.2 1.291 5099.1 0.10609689 0.1400736
## 653 -34.8 0.654 5008.7 0.13296860 0.1006557
## 654 -46.2 1.344 5099.1 0.06776441 0.1088732
## 655 -46.2 1.281 5099.1 0.06836679 0.1006557
## 656 -46.2 1.299 5099.1 0.06776441 0.1006557
## 657 -47.1 1.423 5099.1 0.10609689 0.1006557
## 658 -30.1 0.715 5017.5 0.11473272 0.1006557
## 659 -46.2 1.299 5099.1 0.11473272 0.1006557
## 660 -40.0 0.699 5008.7 0.13296860 0.1006557
## 661 -46.2 1.291 5099.1 0.06776441 0.1006557
## 662 -38.3 0.886 4991.6 0.13296860 0.1400736
## 663 -33.6 1.044 5076.2 0.31059507 0.1400736
## 664 -26.9 0.728 5017.5 0.13296860 0.1400736
## 665 -42.0 4.153 5195.8 0.13296860 0.1006557
## 666 -31.4 0.838 5076.2 0.13296860 0.1088732
## 667 -40.8 1.235 5076.2 0.31059507 0.1400736
## 668 -46.2 1.281 5099.1 0.13296860 0.1006557
## 669 -40.3 0.810 4991.6 0.13296860 0.1006557
## 670 -42.0 4.153 5195.8 0.09310345 0.1006557
## 671 -46.2 1.327 5099.1 0.09310345 0.1006557
## 672 -46.2 1.266 5099.1 0.10609689 0.1400736
## 673 -33.0 0.720 5023.5 0.11473272 0.1088732
## 674 -42.0 4.120 5195.8 0.06776441 0.1400736
## 675 -40.0 0.695 5008.7 0.10875332 0.1006557
## 676 -46.2 1.334 5099.1 0.06836679 0.1006557
## 677 -47.1 1.405 5099.1 0.06776441 0.1006557
## 678 -50.8 1.046 4963.6 0.06776441 0.1088732
## 679 -33.0 0.700 5023.5 0.11473272 0.1006557
## 680 -38.3 0.899 4991.6 0.13296860 0.1006557
## 681 -46.2 1.266 5099.1 0.13296860 0.1400736
## 682 -40.3 0.876 4991.6 0.10609689 0.1400736
## 683 -47.1 1.423 5099.1 0.13296860 0.1400736
## 684 -46.2 1.244 5099.1 0.10609689 0.1088732
## 685 -46.2 1.313 5099.1 0.06836679 0.1400736
## 686 -46.2 1.291 5099.1 0.06776441 0.1400736
## 687 -34.8 0.636 5008.7 0.06836679 0.1400736
## 688 -46.2 1.291 5099.1 0.06836679 0.1006557
## 689 -46.2 1.313 5099.1 0.13296860 0.1400736
## 690 -42.0 4.191 5195.8 0.11473272 0.1088732
## 691 -31.4 0.821 5076.2 0.13296860 0.1006557
## 692 -46.2 1.281 5099.1 0.31059507 0.1400736
## 693 -31.4 0.869 5076.2 0.31059507 0.1400736
## 694 -46.2 1.334 5099.1 0.13296860 0.1006557
## 695 -42.0 4.120 5195.8 0.06776441 0.1006557
## 696 -46.2 1.327 5099.1 0.06836679 0.1006557
## 697 -40.3 0.889 4991.6 0.13296860 0.1006557
## 698 -42.0 4.076 5195.8 0.13510101 0.1006557
## 699 -46.2 1.250 5099.1 0.13296860 0.1006557
## 700 -40.3 0.810 4991.6 0.13296860 0.1006557
## 701 -33.6 1.059 5076.2 0.13296860 0.1006557
## 702 -42.0 4.191 5195.8 0.13296860 0.1006557
## 703 -46.2 1.250 5099.1 0.13296860 0.1400736
## 704 -47.1 1.405 5099.1 0.06836679 0.1006557
## 705 -46.2 1.266 5099.1 0.06836679 0.1088732
## 706 -46.2 1.250 5099.1 0.13296860 0.1400736
## 707 -46.2 1.313 5099.1 0.11473272 0.1006557
## 708 -33.0 0.706 5023.5 0.27285817 0.1006557
## 709 -26.9 0.731 5017.5 0.11473272 0.1006557
## 710 -46.2 1.266 5099.1 0.06776441 0.1400736
## 711 -46.2 1.334 5099.1 0.06836679 0.1088732
## 712 -42.0 4.076 5195.8 0.13296860 0.1400736
## 713 -46.2 1.313 5099.1 0.06836679 0.1006557
## 714 -46.2 1.281 5099.1 0.31059507 0.1400736
## 715 -46.2 1.334 5099.1 0.06776441 0.1006557
## 716 -47.1 1.365 5099.1 0.10875332 0.1400736
## 717 -46.2 1.266 5099.1 0.13296860 0.1400736
## 718 -47.1 1.410 5099.1 0.06836679 0.1006557
## 719 -42.0 4.153 5195.8 0.06836679 0.1006557
## 720 -46.2 1.299 5099.1 0.10609689 0.1006557
## 721 -47.1 1.415 5099.1 0.10609689 0.1006557
## 722 -38.3 0.899 4991.6 0.31059507 0.1400736
## 723 -46.2 1.354 5099.1 0.13510101 0.1006557
## 724 -46.2 1.313 5099.1 0.10609689 0.1400736
## 725 -46.2 1.291 5099.1 0.06836679 0.1400736
## 726 -31.4 0.881 5076.2 0.06776441 0.1006557
## 727 -46.2 1.250 5099.1 0.06776441 0.1006557
## 728 -39.8 0.723 4991.6 0.09484778 0.1006557
## 729 -40.0 0.682 5008.7 0.10609689 0.1006557
## 730 -47.1 1.405 5099.1 0.06836679 0.1006557
## 731 -47.1 1.479 5099.1 0.09310345 0.1400736
## 732 -42.0 4.191 5195.8 0.10875332 0.1006557
## 733 -46.2 1.344 5099.1 0.11473272 0.1400736
## 734 -42.0 4.191 5195.8 0.10609689 0.1400736
## 735 -46.2 1.313 5099.1 0.10609689 0.1400736
## 736 -40.0 0.672 5008.7 0.31059507 0.1400736
## 737 -31.4 0.854 5076.2 0.27285817 0.1006557
## 738 -29.8 0.819 5017.5 0.09310345 0.1006557
## 739 -46.2 1.334 5099.1 0.13296860 0.1088732
## 740 -42.0 4.021 5195.8 0.13296860 0.1088732
## 741 -47.1 1.410 5099.1 0.10609689 0.1400736
## 742 -42.0 4.076 5195.8 0.06836679 0.1400736
## 743 -46.2 1.327 5099.1 0.11473272 0.1006557
## 744 -42.0 4.076 5195.8 0.06776441 0.1006557
## 745 -47.1 1.405 5099.1 0.06776441 0.1006557
## 746 -30.1 0.714 5017.5 0.10609689 0.1006557
## 747 -46.2 1.354 5099.1 0.27285817 0.1006557
## 748 -46.2 1.299 5099.1 0.06776441 0.1400736
## 749 -46.2 1.250 5099.1 0.06776441 0.1088732
## 750 -46.2 1.313 5099.1 0.11473272 0.1088732
## 751 -46.2 1.299 5099.1 0.06836679 0.1400736
## 752 -47.1 1.405 5099.1 0.06776441 0.1006557
## 753 -42.0 4.153 5195.8 0.06836679 0.1006557
## 754 -42.0 4.153 5195.8 0.11473272 0.1006557
## 755 -46.2 1.313 5099.1 0.13296860 0.1400736
## 756 -47.1 1.405 5099.1 0.27285817 0.1006557
## 757 -47.1 1.415 5099.1 0.13296860 0.1006557
## 758 -46.2 1.334 5099.1 0.06776441 0.1400736
## 759 -47.1 1.405 5099.1 0.13296860 0.1006557
## 760 -46.2 1.266 5099.1 0.10609689 0.1400736
## 761 -47.1 1.405 5099.1 0.11473272 0.1088732
## 762 -26.9 0.722 5017.5 0.13296860 0.1400736
## 763 -46.2 1.250 5099.1 0.13296860 0.1006557
## 764 -42.0 4.021 5195.8 0.06836679 0.1006557
## 765 -46.2 1.313 5099.1 0.06836679 0.1006557
## 766 -42.0 4.191 5195.8 0.06836679 0.1006557
## 767 -42.0 4.120 5195.8 0.13296860 0.1088732
## 768 -46.2 1.250 5099.1 0.06836679 0.1400736
## 769 -40.3 0.896 4991.6 0.10875332 0.1400736
## 770 -42.0 4.153 5195.8 0.10609689 0.1400736
## 771 -46.2 1.281 5099.1 0.13296860 0.1400736
## 772 -46.2 1.299 5099.1 0.10609689 0.1006557
## 773 -26.9 0.743 5017.5 0.10609689 0.1006557
## 774 -42.0 4.153 5195.8 0.11473272 0.1006557
## 775 -37.5 0.881 4963.6 0.13296860 0.1006557
## 776 -42.0 4.076 5195.8 0.11473272 0.1400736
## 777 -47.1 1.405 5099.1 0.11473272 0.1006557
## 778 -46.2 1.327 5099.1 0.27285817 0.1006557
## 779 -46.2 1.334 5099.1 0.10609689 0.1006557
## 780 -46.2 1.299 5099.1 0.09310345 0.1006557
## 781 -42.0 4.120 5195.8 0.06776441 0.1400736
## 782 -46.2 1.250 5099.1 0.06776441 0.1400736
## 783 -46.2 1.266 5099.1 0.06776441 0.1400736
## 784 -46.2 1.299 5099.1 0.06776441 0.1006557
## 785 -26.9 0.742 5017.5 0.06836679 0.1400736
## 786 -46.2 1.244 5099.1 0.06836679 0.1006557
## 787 -47.1 1.405 5099.1 0.13296860 0.1400736
## 788 -46.2 1.250 5099.1 0.13296860 0.1400736
## 789 -46.2 1.327 5099.1 0.06776441 0.1088732
## 790 -46.2 1.344 5099.1 0.11473272 0.1006557
## 791 -46.2 1.291 5099.1 0.06836679 0.1006557
## 792 -50.8 1.031 4963.6 0.31059507 0.1400736
## 793 -46.2 1.266 5099.1 0.27285817 0.1006557
## 794 -46.2 1.266 5099.1 0.10609689 0.1006557
## 795 -46.2 1.266 5099.1 0.13296860 0.1400736
## 796 -49.5 0.972 4963.6 0.27285817 0.1006557
## 797 -46.2 1.281 5099.1 0.06776441 0.1006557
## 798 -39.8 0.748 4991.6 0.13296860 0.1400736
## 799 -30.1 0.715 5017.5 0.11473272 0.1006557
## 800 -49.5 1.037 4963.6 0.31059507 0.1400736
## 801 -40.8 1.215 5076.2 0.06836679 0.1006557
## 802 -46.2 1.250 5099.1 0.10609689 0.1400736
## 803 -37.5 0.879 4963.6 0.10609689 0.1400736
## 804 -37.5 0.882 4963.6 0.13296860 0.1400736
## 805 -46.2 1.334 5099.1 0.06836679 0.1006557
## 806 -47.1 1.435 5099.1 0.06776441 0.1006557
## 807 -46.2 1.244 5099.1 0.13296860 0.1400736
## 808 -47.1 1.365 5099.1 0.27285817 0.1088732
## 809 -40.8 1.262 5076.2 0.13296860 0.1400736
## 810 -46.2 1.250 5099.1 0.13296860 0.1088732
## 811 -42.0 4.076 5195.8 0.06776441 0.1400736
## 812 -47.1 1.405 5099.1 0.13296860 0.1400736
## 813 -47.1 1.466 5099.1 0.09310345 0.1006557
## 814 -46.2 1.334 5099.1 0.13296860 0.1006557
## 815 -46.2 1.354 5099.1 0.11473272 0.1006557
## 816 -46.2 1.244 5099.1 0.06776441 0.1006557
## 817 -46.2 1.281 5099.1 0.06836679 0.1006557
## 818 -46.2 1.281 5099.1 0.11473272 0.1006557
## 819 -42.0 4.191 5195.8 0.06836679 0.1400736
## 820 -46.2 1.313 5099.1 0.13296860 0.1088732
## 821 -49.5 1.016 4963.6 0.27285817 0.1006557
## 822 -31.4 0.884 5076.2 0.06836679 0.1006557
## 823 -46.2 1.281 5099.1 0.06836679 0.1088732
## 824 -46.2 1.291 5099.1 0.13296860 0.1006557
## 825 -46.2 1.327 5099.1 0.06836679 0.1006557
## 826 -46.2 1.250 5099.1 0.06836679 0.1400736
## 827 -40.8 1.262 5076.2 0.13296860 0.1006557
## 828 -47.1 1.479 5099.1 0.10609689 0.1400736
## 829 -46.2 1.250 5099.1 0.06836679 0.1006557
## 830 -46.2 1.281 5099.1 0.27285817 0.1088732
## 831 -42.0 4.191 5195.8 0.06836679 0.1088732
## 832 -30.1 0.722 5017.5 0.13296860 0.1400736
## 833 -40.8 1.260 5076.2 0.06776441 0.1400736
## 834 -47.1 1.479 5099.1 0.10609689 0.1088732
## 835 -42.0 4.153 5195.8 0.09310345 0.1088732
## 836 -40.3 0.861 4991.6 0.13296860 0.1006557
## 837 -31.4 0.851 5076.2 0.27285817 0.1006557
## 838 -47.1 1.466 5099.1 0.06836679 0.1006557
## 839 -33.6 1.072 5076.2 0.11473272 0.1006557
## 840 -46.2 1.299 5099.1 0.13296860 0.1006557
## 841 -47.1 1.466 5099.1 0.06836679 0.1006557
## 842 -46.2 1.327 5099.1 0.06776441 0.1006557
## 843 -46.2 1.327 5099.1 0.27285817 0.1006557
## 844 -40.0 0.699 5008.7 0.10609689 0.1006557
## 845 -46.2 1.299 5099.1 0.09310345 0.1006557
## 846 -31.4 0.873 5076.2 0.27285817 0.1006557
## 847 -47.1 1.405 5099.1 0.06836679 0.1006557
## 848 -46.2 1.266 5099.1 0.13296860 0.1400736
## 849 -46.2 1.299 5099.1 0.13296860 0.1166667
## 850 -46.2 1.327 5099.1 0.06836679 0.1006557
## 851 -40.8 1.262 5076.2 0.27285817 0.1006557
## 852 -47.1 1.410 5099.1 0.06776441 0.1006557
## 853 -46.2 1.291 5099.1 0.06776441 0.1400736
## 854 -42.0 4.076 5195.8 0.10609689 0.1400736
## 855 -31.4 0.883 5076.2 0.13296860 0.1400736
## 856 -46.2 1.281 5099.1 0.10609689 0.1006557
## 857 -47.1 1.453 5099.1 0.06776441 0.1006557
## 858 -29.8 0.750 5017.5 0.13510101 0.1400736
## 859 -30.1 0.719 5017.5 0.13296860 0.1006557
## 860 -46.2 1.327 5099.1 0.06836679 0.1006557
## 861 -31.4 0.879 5076.2 0.06836679 0.1006557
## 862 -42.0 4.120 5195.8 0.10609689 0.1006557
## 863 -47.1 1.405 5099.1 0.06836679 0.1006557
## 864 -47.1 1.410 5099.1 0.06836679 0.1006557
## 865 -46.2 1.244 5099.1 0.11473272 0.1006557
## 866 -42.0 4.076 5195.8 0.06836679 0.1006557
## 867 -38.3 0.900 4991.6 0.13296860 0.1006557
## 868 -46.2 1.266 5099.1 0.06836679 0.1006557
## 869 -49.5 0.972 4963.6 0.09484778 0.1006557
## 870 -42.0 4.021 5195.8 0.10609689 0.1400736
## 871 -42.0 4.153 5195.8 0.10609689 0.1400736
## 872 -47.1 1.466 5099.1 0.11473272 0.1006557
## 873 -47.1 1.453 5099.1 0.13510101 0.1088732
## 874 -31.4 0.884 5076.2 0.10875332 0.1088732
## 875 -46.2 1.291 5099.1 0.06836679 0.1006557
## 876 -47.1 1.479 5099.1 0.11473272 0.1006557
## 877 -47.1 1.466 5099.1 0.13296860 0.1400736
## 878 -42.0 4.021 5195.8 0.13296860 0.1400736
## 879 -46.2 1.291 5099.1 0.13296860 0.1400736
## 880 -42.0 4.021 5195.8 0.06776441 0.1400736
## 881 -42.0 4.153 5195.8 0.06836679 0.1006557
## 882 -46.2 1.281 5099.1 0.06836679 0.1400736
## 883 -42.0 4.021 5195.8 0.10609689 0.1006557
## 884 -46.2 1.244 5099.1 0.10875332 0.1006557
## 885 -31.4 0.849 5076.2 0.27285817 0.1006557
## 886 -26.9 0.742 5017.5 0.06836679 0.1400736
## 887 -42.0 4.191 5195.8 0.13296860 0.1006557
## 888 -40.3 0.870 4991.6 0.27285817 0.1006557
## 889 -46.2 1.313 5099.1 0.06776441 0.1088732
## 890 -42.0 4.120 5195.8 0.06776441 0.1400736
## 891 -46.2 1.327 5099.1 0.06836679 0.1006557
## 892 -46.2 1.281 5099.1 0.09310345 0.1400736
## 893 -46.2 1.313 5099.1 0.10875332 0.1006557
## 894 -50.8 1.048 4963.6 0.10609689 0.1006557
## 895 -46.2 1.334 5099.1 0.13296860 0.1400736
## 896 -42.0 4.153 5195.8 0.10609689 0.1006557
## 897 -39.8 0.723 4991.6 0.09484778 0.1006557
## 898 -46.2 1.250 5099.1 0.06836679 0.1006557
## 899 -47.1 1.466 5099.1 0.06836679 0.1006557
## 900 -47.1 1.466 5099.1 0.06836679 0.1006557
## 901 -46.2 1.281 5099.1 0.13296860 0.1006557
## 902 -31.4 0.859 5076.2 0.13296860 0.1400736
## 903 -46.2 1.266 5099.1 0.06836679 0.1006557
## 904 -46.2 1.327 5099.1 0.06836679 0.1400736
## 905 -47.1 1.405 5099.1 0.09310345 0.1400736
## 906 -47.1 1.479 5099.1 0.09310345 0.1400736
## 907 -46.2 1.291 5099.1 0.10609689 0.1400736
## 908 -46.2 1.344 5099.1 0.06776441 0.1006557
## 909 -42.0 4.191 5195.8 0.13296860 0.1400736
## 910 -34.8 0.634 5008.7 0.13296860 0.1400736
## 911 -34.8 0.652 5008.7 0.06776441 0.1400736
## 912 -47.1 1.405 5099.1 0.11473272 0.1006557
## 913 -42.0 4.076 5195.8 0.09310345 0.1400736
## 914 -46.2 1.299 5099.1 0.13296860 0.1166667
## 915 -42.0 4.153 5195.8 0.13510101 0.1006557
## 916 -46.2 1.313 5099.1 0.06836679 0.1006557
## 917 -42.0 4.191 5195.8 0.09484778 0.1400736
## 918 -47.1 1.415 5099.1 0.06836679 0.1400736
## 919 -49.5 0.987 4963.6 0.13296860 0.1006557
## 920 -47.1 1.466 5099.1 0.06776441 0.1006557
## 921 -49.5 0.972 4963.6 0.27285817 0.1006557
## 922 -46.2 1.299 5099.1 0.06836679 0.1006557
## 923 -46.2 1.313 5099.1 0.13296860 0.1400736
## 924 -33.6 0.908 5076.2 0.13296860 0.1006557
## 925 -47.1 1.405 5099.1 0.06836679 0.1006557
## 926 -46.2 1.281 5099.1 0.06776441 0.1400736
## 927 -46.2 1.266 5099.1 0.06836679 0.1006557
## 928 -46.2 1.266 5099.1 0.13296860 0.1006557
## 929 -26.9 0.730 5017.5 0.13296860 0.1006557
## 930 -42.0 4.120 5195.8 0.10609689 0.1400736
## 931 -47.1 1.479 5099.1 0.09310345 0.1400736
## 932 -46.2 1.291 5099.1 0.06776441 0.1400736
## 933 -46.2 1.327 5099.1 0.06836679 0.1400736
## 934 -46.2 1.327 5099.1 0.13296860 0.1400736
## 935 -31.4 0.825 5076.2 0.27285817 0.1006557
## 936 -46.2 1.266 5099.1 0.13296860 0.1006557
## 937 -47.1 1.405 5099.1 0.10609689 0.1006557
## 938 -37.5 0.882 4963.6 0.13510101 0.1006557
## 939 -46.2 1.264 5099.1 0.11473272 0.1006557
## 940 -42.0 4.021 5195.8 0.11473272 0.1006557
## 941 -46.2 1.291 5099.1 0.06836679 0.1400736
## 942 -40.0 0.697 5008.7 0.27285817 0.1006557
## 943 -46.2 1.281 5099.1 0.06836679 0.1006557
## 944 -46.2 1.266 5099.1 0.13296860 0.1400736
## 945 -34.6 0.644 5008.7 0.06776441 0.1400736
## 946 -46.2 1.299 5099.1 0.06776441 0.1400736
## 947 -30.1 0.715 5017.5 0.06836679 0.1400736
## 948 -47.1 1.405 5099.1 0.11473272 0.1088732
## 949 -42.0 4.120 5195.8 0.13296860 0.1088732
## 950 -47.1 1.423 5099.1 0.06836679 0.1400736
## 951 -42.0 4.153 5195.8 0.06776441 0.1006557
## 952 -46.2 1.244 5099.1 0.13296860 0.1400736
## 953 -46.2 1.327 5099.1 0.06776441 0.1006557
## 954 -47.1 1.405 5099.1 0.10609689 0.1088732
## 955 -46.2 1.299 5099.1 0.13296860 0.1088732
## 956 -46.2 1.250 5099.1 0.13296860 0.1400736
## 957 -40.8 1.260 5076.2 0.13296860 0.1006557
## 958 -47.1 1.405 5099.1 0.06776441 0.1006557
## 959 -47.1 1.483 5099.1 0.06836679 0.1400736
## 960 -46.2 1.327 5099.1 0.06836679 0.1006557
## 961 -30.1 0.715 5017.5 0.13296860 0.1400736
## 962 -46.2 1.266 5099.1 0.06836679 0.1006557
## 963 -34.8 0.636 5008.7 0.13296860 0.1400736
## 964 -42.0 4.153 5195.8 0.10609689 0.1006557
## 965 -46.2 1.266 5099.1 0.06776441 0.1400736
## 966 -42.0 4.076 5195.8 0.06776441 0.1006557
## 967 -38.3 0.900 4991.6 0.13296860 0.1006557
## 968 -40.8 1.244 5076.2 0.13296860 0.1400736
## 969 -40.0 0.682 5008.7 0.11473272 0.1006557
## 970 -50.8 1.046 4963.6 0.13296860 0.1400736
## 971 -26.9 0.733 5017.5 0.13296860 0.1400736
## 972 -30.1 0.720 5017.5 0.13296860 0.1400736
## 973 -46.2 1.250 5099.1 0.13296860 0.1400736
## 974 -46.2 1.281 5099.1 0.06776441 0.1400736
## 975 -42.0 4.076 5195.8 0.10609689 0.1400736
## 976 -37.5 0.878 4963.6 0.31059507 0.1400736
## 977 -46.2 1.250 5099.1 0.13296860 0.1400736
## 978 -47.1 1.365 5099.1 0.10609689 0.1006557
## 979 -42.0 4.153 5195.8 0.06836679 0.1400736
## 980 -50.0 1.538 5099.1 0.09484778 0.1006557
## 981 -42.0 4.153 5195.8 0.13296860 0.1400736
## 982 -46.2 1.344 5099.1 0.06836679 0.1006557
## 983 -47.1 1.405 5099.1 0.13296860 0.1088732
## 984 -31.4 0.851 5076.2 0.13296860 0.1400736
## 985 -47.1 1.410 5099.1 0.06776441 0.1006557
## 986 -42.0 4.120 5195.8 0.10609689 0.1088732
## 987 -46.2 1.354 5099.1 0.10609689 0.1400736
## 988 -46.2 1.244 5099.1 0.06836679 0.1006557
## 989 -38.3 0.898 4991.6 0.06776441 0.1006557
## 990 -47.1 1.453 5099.1 0.10609689 0.1088732
## 991 -46.2 1.259 5099.1 0.11473272 0.1006557
## 992 -30.1 0.722 5017.5 0.13296860 0.1400736
## 993 -46.2 1.327 5099.1 0.10609689 0.1400736
## 994 -46.2 1.266 5099.1 0.31059507 0.1400736
## 995 -46.2 1.281 5099.1 0.13296860 0.1006557
## 996 -50.0 1.629 5099.1 0.27285817 0.1006557
## 997 -46.2 1.291 5099.1 0.06776441 0.1006557
## 998 -46.2 1.244 5099.1 0.06776441 0.1006557
## 999 -40.8 1.266 5076.2 0.13296860 0.1400736
## 1000 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1001 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1002 -46.2 1.291 5099.1 0.06776441 0.1400736
## 1003 -40.8 1.252 5076.2 0.10609689 0.1006557
## 1004 -31.4 0.829 5076.2 0.13296860 0.1006557
## 1005 -46.2 1.299 5099.1 0.09310345 0.1006557
## 1006 -26.9 0.754 5017.5 0.13296860 0.1006557
## 1007 -42.0 4.076 5195.8 0.11473272 0.1006557
## 1008 -47.1 1.453 5099.1 0.13510101 0.1088732
## 1009 -46.2 1.313 5099.1 0.10609689 0.1006557
## 1010 -30.1 0.715 5017.5 0.31059507 0.1400736
## 1011 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1012 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1013 -46.2 1.244 5099.1 0.13296860 0.1400736
## 1014 -31.4 0.873 5076.2 0.31059507 0.1400736
## 1015 -33.0 0.710 5023.5 0.13296860 0.1400736
## 1016 -47.1 1.365 5099.1 0.27285817 0.1088732
## 1017 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1018 -42.0 4.021 5195.8 0.13296860 0.1088732
## 1019 -42.0 4.120 5195.8 0.10609689 0.1088732
## 1020 -47.1 1.479 5099.1 0.13296860 0.1088732
## 1021 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1022 -46.2 1.291 5099.1 0.09484778 0.1006557
## 1023 -46.2 1.334 5099.1 0.06836679 0.1400736
## 1024 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1025 -40.8 1.266 5076.2 0.13296860 0.1006557
## 1026 -46.2 1.299 5099.1 0.13296860 0.1400736
## 1027 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1028 -38.3 0.898 4991.6 0.13296860 0.1400736
## 1029 -46.2 1.327 5099.1 0.06776441 0.1400736
## 1030 -30.1 0.715 5017.5 0.13296860 0.1006557
## 1031 -46.2 1.334 5099.1 0.10609689 0.1088732
## 1032 -42.0 4.021 5195.8 0.13296860 0.1006557
## 1033 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1034 -42.0 4.120 5195.8 0.11473272 0.1088732
## 1035 -46.2 1.344 5099.1 0.13296860 0.1400736
## 1036 -47.1 1.466 5099.1 0.10609689 0.1006557
## 1037 -29.8 0.770 5017.5 0.13296860 0.1006557
## 1038 -47.1 1.423 5099.1 0.13296860 0.1006557
## 1039 -46.2 1.259 5099.1 0.09310345 0.1006557
## 1040 -40.3 0.835 4991.6 0.13296860 0.1006557
## 1041 -42.0 4.120 5195.8 0.06776441 0.1006557
## 1042 -46.2 1.327 5099.1 0.13296860 0.1400736
## 1043 -40.0 0.677 5008.7 0.31059507 0.1400736
## 1044 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1045 -47.1 1.435 5099.1 0.13296860 0.1400736
## 1046 -26.9 0.731 5017.5 0.13296860 0.1400736
## 1047 -33.0 0.715 5023.5 0.11473272 0.1006557
## 1048 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1049 -42.0 4.021 5195.8 0.06836679 0.1006557
## 1050 -40.8 1.260 5076.2 0.13296860 0.1088732
## 1051 -29.8 0.819 5017.5 0.13296860 0.1006557
## 1052 -46.2 1.266 5099.1 0.10609689 0.1400736
## 1053 -46.2 1.281 5099.1 0.13296860 0.1006557
## 1054 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1055 -47.1 1.405 5099.1 0.11473272 0.1088732
## 1056 -46.2 1.327 5099.1 0.13296860 0.1400736
## 1057 -46.2 1.270 5099.1 0.13296860 0.1088732
## 1058 -31.4 0.825 5076.2 0.31059507 0.1400736
## 1059 -49.5 0.972 4963.6 0.13296860 0.1400736
## 1060 -30.1 0.715 5017.5 0.13296860 0.1400736
## 1061 -42.0 4.191 5195.8 0.09484778 0.1006557
## 1062 -47.1 1.365 5099.1 0.27285817 0.1006557
## 1063 -34.6 0.642 5008.7 0.09484778 0.1006557
## 1064 -46.2 1.264 5099.1 0.10875332 0.1006557
## 1065 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1066 -47.1 1.405 5099.1 0.27285817 0.1006557
## 1067 -33.0 0.700 5023.5 0.13296860 0.1006557
## 1068 -46.2 1.250 5099.1 0.13296860 0.1006557
## 1069 -42.0 4.076 5195.8 0.10609689 0.1006557
## 1070 -40.8 1.260 5076.2 0.06836679 0.1006557
## 1071 -30.1 0.720 5017.5 0.13296860 0.1088732
## 1072 -34.8 0.646 5008.7 0.27285817 0.1006557
## 1073 -46.2 1.281 5099.1 0.13296860 0.1088732
## 1074 -46.2 1.299 5099.1 0.10609689 0.1006557
## 1075 -40.3 0.797 4991.6 0.10875332 0.1006557
## 1076 -46.2 1.266 5099.1 0.06836679 0.1006557
## 1077 -46.2 1.299 5099.1 0.06776441 0.1088732
## 1078 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1079 -46.2 1.334 5099.1 0.13296860 0.1400736
## 1080 -37.5 0.879 4963.6 0.13510101 0.1400736
## 1081 -42.0 4.153 5195.8 0.06776441 0.1006557
## 1082 -46.2 1.327 5099.1 0.13296860 0.1006557
## 1083 -46.2 1.244 5099.1 0.13296860 0.1088732
## 1084 -34.8 0.653 5008.7 0.31059507 0.1400736
## 1085 -46.2 1.327 5099.1 0.10609689 0.1006557
## 1086 -40.8 1.260 5076.2 0.13296860 0.1006557
## 1087 -42.0 4.153 5195.8 0.11473272 0.1400736
## 1088 -42.0 4.021 5195.8 0.10609689 0.1400736
## 1089 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1090 -40.8 1.268 5076.2 0.10609689 0.1400736
## 1091 -31.4 0.821 5076.2 0.13296860 0.1006557
## 1092 -47.1 1.479 5099.1 0.06836679 0.1006557
## 1093 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1094 -47.1 1.410 5099.1 0.06836679 0.1006557
## 1095 -38.3 0.904 4991.6 0.10875332 0.1400736
## 1096 -40.0 0.677 5008.7 0.31059507 0.1400736
## 1097 -42.0 4.076 5195.8 0.10609689 0.1006557
## 1098 -40.3 0.782 4991.6 0.13296860 0.1400736
## 1099 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1100 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1101 -42.0 4.076 5195.8 0.06776441 0.1006557
## 1102 -46.2 1.291 5099.1 0.13296860 0.1400736
## 1103 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1104 -26.9 0.754 5017.5 0.11473272 0.1006557
## 1105 -40.8 1.260 5076.2 0.11473272 0.1006557
## 1106 -46.2 1.266 5099.1 0.06836679 0.1400736
## 1107 -26.9 0.731 5017.5 0.11473272 0.1006557
## 1108 -40.8 1.244 5076.2 0.13296860 0.1400736
## 1109 -46.2 1.291 5099.1 0.10609689 0.1400736
## 1110 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1111 -40.8 1.244 5076.2 0.13296860 0.1400736
## 1112 -46.2 1.291 5099.1 0.10609689 0.1400736
## 1113 -42.0 4.076 5195.8 0.13296860 0.1006557
## 1114 -40.8 1.266 5076.2 0.13296860 0.1006557
## 1115 -31.4 0.849 5076.2 0.27285817 0.1006557
## 1116 -42.0 4.076 5195.8 0.11473272 0.1006557
## 1117 -42.0 4.021 5195.8 0.11473272 0.1088732
## 1118 -34.6 0.645 5008.7 0.06836679 0.1400736
## 1119 -42.0 4.076 5195.8 0.13296860 0.1400736
## 1120 -42.0 4.021 5195.8 0.13296860 0.1006557
## 1121 -47.1 1.410 5099.1 0.06776441 0.1006557
## 1122 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1123 -46.2 1.291 5099.1 0.06776441 0.1400736
## 1124 -40.0 0.699 5008.7 0.31059507 0.1088732
## 1125 -42.0 4.191 5195.8 0.10609689 0.1006557
## 1126 -46.2 1.250 5099.1 0.10609689 0.1400736
## 1127 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1128 -46.2 1.344 5099.1 0.13296860 0.1006557
## 1129 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1130 -46.2 1.244 5099.1 0.13296860 0.1400736
## 1131 -47.1 1.435 5099.1 0.10609689 0.1400736
## 1132 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1133 -40.8 1.260 5076.2 0.31059507 0.1400736
## 1134 -46.2 1.354 5099.1 0.13296860 0.1006557
## 1135 -46.2 1.250 5099.1 0.13296860 0.1400736
## 1136 -46.2 1.327 5099.1 0.10609689 0.1006557
## 1137 -42.0 4.021 5195.8 0.13296860 0.1006557
## 1138 -46.2 1.291 5099.1 0.10609689 0.1006557
## 1139 -42.0 4.021 5195.8 0.06776441 0.1006557
## 1140 -47.1 1.405 5099.1 0.11473272 0.1006557
## 1141 -29.8 0.773 5017.5 0.27285817 0.1006557
## 1142 -46.2 1.281 5099.1 0.10609689 0.1400736
## 1143 -42.0 4.076 5195.8 0.11473272 0.1006557
## 1144 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1145 -26.9 0.739 5017.5 0.09484778 0.1006557
## 1146 -40.8 1.260 5076.2 0.10609689 0.1006557
## 1147 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1148 -31.4 0.849 5076.2 0.27285817 0.1006557
## 1149 -33.0 0.706 5023.5 0.10875332 0.1006557
## 1150 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1151 -42.0 4.153 5195.8 0.10875332 0.1006557
## 1152 -47.1 1.405 5099.1 0.06776441 0.1088732
## 1153 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1154 -46.2 1.266 5099.1 0.06836679 0.1006557
## 1155 -26.9 0.742 5017.5 0.13510101 0.1006557
## 1156 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1157 -42.0 4.153 5195.8 0.13296860 0.1006557
## 1158 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1159 -31.4 0.884 5076.2 0.09310345 0.1006557
## 1160 -46.2 1.244 5099.1 0.06836679 0.1006557
## 1161 -33.6 0.903 5076.2 0.11473272 0.1006557
## 1162 -42.0 4.191 5195.8 0.13296860 0.1400736
## 1163 -42.0 4.120 5195.8 0.10609689 0.1400736
## 1164 -40.3 0.810 4991.6 0.31059507 0.1400736
## 1165 -47.1 1.405 5099.1 0.06776441 0.1400736
## 1166 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1167 -46.2 1.354 5099.1 0.09310345 0.1006557
## 1168 -37.5 0.879 4963.6 0.13510101 0.1006557
## 1169 -46.2 1.291 5099.1 0.13296860 0.1400736
## 1170 -46.2 1.313 5099.1 0.10609689 0.1006557
## 1171 -46.2 1.250 5099.1 0.13296860 0.1400736
## 1172 -30.1 0.715 5017.5 0.11473272 0.1006557
## 1173 -40.8 1.262 5076.2 0.09310345 0.1006557
## 1174 -47.1 1.415 5099.1 0.06836679 0.1006557
## 1175 -31.4 0.859 5076.2 0.27285817 0.1006557
## 1176 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1177 -47.1 1.410 5099.1 0.31059507 0.1400736
## 1178 -31.4 0.884 5076.2 0.11473272 0.1006557
## 1179 -31.4 0.851 5076.2 0.13296860 0.1006557
## 1180 -46.2 1.299 5099.1 0.10609689 0.1400736
## 1181 -47.1 1.400 5099.1 0.31059507 0.1400736
## 1182 -40.8 1.260 5076.2 0.13296860 0.1006557
## 1183 -46.2 1.313 5099.1 0.11473272 0.1400736
## 1184 -46.2 1.244 5099.1 0.13296860 0.1400736
## 1185 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1186 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1187 -47.1 1.410 5099.1 0.27285817 0.1006557
## 1188 -46.2 1.313 5099.1 0.10609689 0.1006557
## 1189 -47.1 1.410 5099.1 0.06836679 0.1006557
## 1190 -50.8 1.046 4963.6 0.10609689 0.1006557
## 1191 -40.0 0.668 5008.7 0.06836679 0.1400736
## 1192 -46.2 1.313 5099.1 0.13296860 0.1006557
## 1193 -26.9 0.731 5017.5 0.27285817 0.1088732
## 1194 -46.2 1.266 5099.1 0.11473272 0.1400736
## 1195 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1196 -50.8 1.046 4963.6 0.13296860 0.1400736
## 1197 -46.2 1.266 5099.1 0.10609689 0.1006557
## 1198 -46.2 1.259 5099.1 0.13296860 0.1006557
## 1199 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1200 -40.3 0.893 4991.6 0.13296860 0.1400736
## 1201 -26.9 0.739 5017.5 0.13296860 0.1400736
## 1202 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1203 -42.0 4.021 5195.8 0.10875332 0.1400736
## 1204 -42.0 4.153 5195.8 0.09484778 0.1088732
## 1205 -47.1 1.410 5099.1 0.09310345 0.1006557
## 1206 -29.8 0.773 5017.5 0.13296860 0.1400736
## 1207 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1208 -46.2 1.299 5099.1 0.13296860 0.1006557
## 1209 -42.0 4.153 5195.8 0.13296860 0.1006557
## 1210 -47.1 1.410 5099.1 0.06836679 0.1006557
## 1211 -49.5 0.982 4963.6 0.09484778 0.1006557
## 1212 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1213 -33.0 0.715 5023.5 0.11473272 0.1006557
## 1214 -42.0 4.120 5195.8 0.10609689 0.1006557
## 1215 -42.0 4.076 5195.8 0.06836679 0.1006557
## 1216 -42.0 4.021 5195.8 0.13510101 0.1006557
## 1217 -38.3 0.898 4991.6 0.13296860 0.1006557
## 1218 -34.8 0.650 5008.7 0.13296860 0.1006557
## 1219 -46.2 1.299 5099.1 0.13296860 0.1400736
## 1220 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1221 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1222 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1223 -42.0 4.021 5195.8 0.11473272 0.1006557
## 1224 -46.2 1.327 5099.1 0.06776441 0.1400736
## 1225 -42.0 4.191 5195.8 0.13510101 0.1006557
## 1226 -47.1 1.365 5099.1 0.13510101 0.1400736
## 1227 -31.4 0.859 5076.2 0.13296860 0.1006557
## 1228 -38.3 0.900 4991.6 0.31059507 0.1400736
## 1229 -46.2 1.313 5099.1 0.10609689 0.1006557
## 1230 -42.0 4.076 5195.8 0.10875332 0.1400736
## 1231 -46.2 1.281 5099.1 0.06836679 0.1400736
## 1232 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1233 -39.8 0.767 4991.6 0.13296860 0.1006557
## 1234 -37.5 0.886 4963.6 0.31059507 0.1400736
## 1235 -46.2 1.313 5099.1 0.13296860 0.1006557
## 1236 -46.2 1.250 5099.1 0.13296860 0.1400736
## 1237 -46.2 1.299 5099.1 0.10609689 0.1006557
## 1238 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1239 -46.2 1.313 5099.1 0.13296860 0.1400736
## 1240 -46.2 1.299 5099.1 0.27285817 0.1006557
## 1241 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1242 -42.0 4.191 5195.8 0.13296860 0.1006557
## 1243 -34.6 0.642 5008.7 0.27285817 0.1006557
## 1244 -47.1 1.365 5099.1 0.13296860 0.1006557
## 1245 -34.6 0.643 5008.7 0.10875332 0.1400736
## 1246 -47.1 1.365 5099.1 0.13296860 0.1006557
## 1247 -46.2 1.344 5099.1 0.11473272 0.1088732
## 1248 -46.2 1.266 5099.1 0.13296860 0.1400736
## 1249 -46.2 1.344 5099.1 0.11473272 0.1088732
## 1250 -42.0 4.021 5195.8 0.06776441 0.1006557
## 1251 -42.0 4.076 5195.8 0.13510101 0.1006557
## 1252 -34.6 0.645 5008.7 0.31059507 0.1400736
## 1253 -37.5 0.879 4963.6 0.10609689 0.1006557
## 1254 -42.0 4.021 5195.8 0.06836679 0.1006557
## 1255 -49.5 0.972 4963.6 0.06776441 0.1400736
## 1256 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1257 -46.2 1.344 5099.1 0.13296860 0.1006557
## 1258 -40.8 1.260 5076.2 0.11473272 0.1400736
## 1259 -46.2 1.250 5099.1 0.13296860 0.1400736
## 1260 -42.0 4.076 5195.8 0.06776441 0.1006557
## 1261 -46.2 1.244 5099.1 0.13296860 0.1088732
## 1262 -29.8 0.797 5017.5 0.13296860 0.1006557
## 1263 -29.8 0.741 5017.5 0.13296860 0.1088732
## 1264 -34.6 0.638 5008.7 0.13296860 0.1006557
## 1265 -33.6 1.072 5076.2 0.10609689 0.1006557
## 1266 -31.4 0.859 5076.2 0.13296860 0.1400736
## 1267 -46.2 1.354 5099.1 0.13296860 0.1006557
## 1268 -30.1 0.715 5017.5 0.13296860 0.1006557
## 1269 -46.2 1.334 5099.1 0.13296860 0.1006557
## 1270 -42.0 4.021 5195.8 0.13296860 0.1400736
## 1271 -29.8 0.809 5017.5 0.08955224 0.1400736
## 1272 -42.0 4.191 5195.8 0.13296860 0.1006557
## 1273 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1274 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1275 -42.0 4.076 5195.8 0.06836679 0.1006557
## 1276 -29.8 0.781 5017.5 0.27285817 0.1006557
## 1277 -40.8 1.260 5076.2 0.13510101 0.1006557
## 1278 -46.2 1.344 5099.1 0.10609689 0.1088732
## 1279 -46.2 1.299 5099.1 0.13296860 0.1088732
## 1280 -42.0 4.021 5195.8 0.27285817 0.1006557
## 1281 -46.2 1.266 5099.1 0.13296860 0.1006557
## 1282 -40.3 0.896 4991.6 0.13296860 0.1006557
## 1283 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1284 -46.2 1.299 5099.1 0.13296860 0.1088732
## 1285 -47.1 1.479 5099.1 0.09310345 0.1400736
## 1286 -31.4 0.883 5076.2 0.10609689 0.1006557
## 1287 -47.1 1.405 5099.1 0.11473272 0.1006557
## 1288 -46.2 1.266 5099.1 0.13296860 0.1400736
## 1289 -47.1 1.405 5099.1 0.09484778 0.1088732
## 1290 -26.9 0.730 5017.5 0.13296860 0.1006557
## 1291 -30.1 0.720 5017.5 0.13296860 0.1088732
## 1292 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1293 -40.3 0.846 4991.6 0.06836679 0.1400736
## 1294 -42.0 4.076 5195.8 0.11473272 0.1400736
## 1295 -46.2 1.266 5099.1 0.13296860 0.1088732
## 1296 -40.8 1.266 5076.2 0.09484778 0.1006557
## 1297 -29.8 0.770 5017.5 0.13296860 0.1006557
## 1298 -47.1 1.435 5099.1 0.13296860 0.1400736
## 1299 -34.8 0.635 5008.7 0.27285817 0.1006557
## 1300 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1301 -46.2 1.266 5099.1 0.13296860 0.1006557
## 1302 -29.8 0.809 5017.5 0.10609689 0.1006557
## 1303 -46.2 1.299 5099.1 0.13296860 0.1400736
## 1304 -31.4 0.869 5076.2 0.06836679 0.1400736
## 1305 -40.8 1.262 5076.2 0.13296860 0.1006557
## 1306 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1307 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1308 -46.2 1.334 5099.1 0.10609689 0.1400736
## 1309 -47.1 1.415 5099.1 0.13296860 0.1006557
## 1310 -46.2 1.291 5099.1 0.06836679 0.1400736
## 1311 -40.3 0.802 4991.6 0.13296860 0.1400736
## 1312 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1313 -40.0 0.695 5008.7 0.13296860 0.1006557
## 1314 -42.0 4.021 5195.8 0.10609689 0.1006557
## 1315 -50.0 1.663 5099.1 0.10875332 0.1006557
## 1316 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1317 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1318 -40.8 1.266 5076.2 0.13510101 0.1400736
## 1319 -42.0 4.076 5195.8 0.06836679 0.1006557
## 1320 -46.2 1.250 5099.1 0.06776441 0.1400736
## 1321 -47.1 1.435 5099.1 0.10609689 0.1400736
## 1322 -46.2 1.266 5099.1 0.06776441 0.1400736
## 1323 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1324 -46.2 1.266 5099.1 0.11473272 0.1400736
## 1325 -46.2 1.266 5099.1 0.10609689 0.1400736
## 1326 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1327 -42.0 4.076 5195.8 0.13296860 0.1400736
## 1328 -42.0 4.021 5195.8 0.06836679 0.1006557
## 1329 -46.2 1.299 5099.1 0.13296860 0.1088732
## 1330 -37.5 0.882 4963.6 0.09310345 0.1006557
## 1331 -46.2 1.344 5099.1 0.09310345 0.1006557
## 1332 -38.3 0.894 4991.6 0.31059507 0.1400736
## 1333 -34.8 0.634 5008.7 0.13296860 0.1400736
## 1334 -47.1 1.405 5099.1 0.11473272 0.1400736
## 1335 -31.4 0.843 5076.2 0.27285817 0.1006557
## 1336 -42.0 4.153 5195.8 0.06836679 0.1400736
## 1337 -42.0 4.021 5195.8 0.10875332 0.1006557
## 1338 -47.1 1.365 5099.1 0.31059507 0.1400736
## 1339 -30.1 0.716 5017.5 0.06836679 0.1006557
## 1340 -50.8 1.040 4963.6 0.13296860 0.1400736
## 1341 -42.0 4.191 5195.8 0.13510101 0.1088732
## 1342 -42.0 4.021 5195.8 0.10875332 0.1006557
## 1343 -42.0 4.191 5195.8 0.06836679 0.1006557
## 1344 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1345 -26.9 0.733 5017.5 0.13510101 0.1006557
## 1346 -46.2 1.334 5099.1 0.10609689 0.1006557
## 1347 -30.1 0.715 5017.5 0.11473272 0.1006557
## 1348 -30.1 0.715 5017.5 0.13296860 0.1088732
## 1349 -39.8 0.702 4991.6 0.06776441 0.1400736
## 1350 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1351 -42.0 4.120 5195.8 0.09310345 0.1006557
## 1352 -46.2 1.327 5099.1 0.10609689 0.1088732
## 1353 -42.0 4.153 5195.8 0.13296860 0.1006557
## 1354 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1355 -42.0 4.120 5195.8 0.13296860 0.1400736
## 1356 -47.1 1.410 5099.1 0.11473272 0.1400736
## 1357 -49.5 1.032 4963.6 0.10609689 0.1400736
## 1358 -46.2 1.270 5099.1 0.13296860 0.1006557
## 1359 -26.9 0.730 5017.5 0.13296860 0.1400736
## 1360 -47.1 1.365 5099.1 0.27285817 0.1088732
## 1361 -47.1 1.423 5099.1 0.06836679 0.1006557
## 1362 -40.8 1.268 5076.2 0.13296860 0.1400736
## 1363 -42.0 4.191 5195.8 0.11473272 0.1006557
## 1364 -29.8 0.770 5017.5 0.09310345 0.1006557
## 1365 -46.2 1.266 5099.1 0.31059507 0.1400736
## 1366 -42.0 4.153 5195.8 0.13296860 0.1400736
## 1367 -46.2 1.266 5099.1 0.10609689 0.1400736
## 1368 -46.2 1.313 5099.1 0.11473272 0.1006557
## 1369 -47.1 1.405 5099.1 0.13296860 0.1088732
## 1370 -46.2 1.299 5099.1 0.10609689 0.1006557
## 1371 -46.2 1.266 5099.1 0.11473272 0.1400736
## 1372 -46.2 1.281 5099.1 0.06836679 0.1088732
## 1373 -37.5 0.883 4963.6 0.13510101 0.1006557
## 1374 -46.2 1.244 5099.1 0.13296860 0.1006557
## 1375 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1376 -46.2 1.281 5099.1 0.06836679 0.1400736
## 1377 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1378 -42.0 4.191 5195.8 0.09310345 0.1006557
## 1379 -40.8 1.262 5076.2 0.06776441 0.1006557
## 1380 -39.8 0.761 4991.6 0.13510101 0.1400736
## 1381 -46.2 1.327 5099.1 0.06776441 0.1088732
## 1382 -31.4 0.829 5076.2 0.13296860 0.1006557
## 1383 -42.0 4.021 5195.8 0.06836679 0.1006557
## 1384 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1385 -46.2 1.327 5099.1 0.06776441 0.1400736
## 1386 -42.0 4.153 5195.8 0.13510101 0.1006557
## 1387 -46.2 1.270 5099.1 0.06836679 0.1006557
## 1388 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1389 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1390 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1391 -42.0 4.021 5195.8 0.10609689 0.1400736
## 1392 -31.4 0.879 5076.2 0.27285817 0.1166667
## 1393 -46.2 1.327 5099.1 0.06776441 0.1006557
## 1394 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1395 -46.2 1.281 5099.1 0.13296860 0.1006557
## 1396 -42.0 4.076 5195.8 0.13296860 0.1400736
## 1397 -46.2 1.299 5099.1 0.13296860 0.1400736
## 1398 -46.2 1.354 5099.1 0.10609689 0.1400736
## 1399 -42.0 4.191 5195.8 0.10875332 0.1006557
## 1400 -34.6 0.645 5008.7 0.10609689 0.1006557
## 1401 -46.2 1.266 5099.1 0.13296860 0.1006557
## 1402 -40.3 0.893 4991.6 0.31059507 0.1400736
## 1403 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1404 -46.2 1.334 5099.1 0.10609689 0.1088732
## 1405 -46.2 1.313 5099.1 0.13296860 0.1400736
## 1406 -42.0 4.076 5195.8 0.13296860 0.1400736
## 1407 -46.2 1.266 5099.1 0.06776441 0.1400736
## 1408 -42.0 4.076 5195.8 0.13296860 0.1088732
## 1409 -47.1 1.405 5099.1 0.11473272 0.1006557
## 1410 -33.0 0.717 5023.5 0.13296860 0.1006557
## 1411 -46.2 1.281 5099.1 0.06776441 0.1006557
## 1412 -47.1 1.445 5099.1 0.13296860 0.1006557
## 1413 -42.0 4.153 5195.8 0.13296860 0.1006557
## 1414 -46.2 1.266 5099.1 0.13296860 0.1006557
## 1415 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1416 -42.0 4.076 5195.8 0.09484778 0.1088732
## 1417 -46.2 1.299 5099.1 0.06836679 0.1400736
## 1418 -26.9 0.720 5017.5 0.31059507 0.1400736
## 1419 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1420 -42.0 4.021 5195.8 0.10609689 0.1400736
## 1421 -46.2 1.244 5099.1 0.31059507 0.1400736
## 1422 -47.1 1.410 5099.1 0.06836679 0.1006557
## 1423 -46.2 1.250 5099.1 0.10609689 0.1006557
## 1424 -40.0 0.684 5008.7 0.13296860 0.1006557
## 1425 -30.1 0.714 5017.5 0.13296860 0.1006557
## 1426 -30.1 0.720 5017.5 0.06836679 0.1400736
## 1427 -46.2 1.291 5099.1 0.13296860 0.1006557
## 1428 -33.6 1.029 5076.2 0.31059507 0.1400736
## 1429 -46.2 1.244 5099.1 0.06776441 0.1006557
## 1430 -30.1 0.715 5017.5 0.06836679 0.1400736
## 1431 -46.2 1.250 5099.1 0.13296860 0.1006557
## 1432 -46.2 1.281 5099.1 0.13296860 0.1006557
## 1433 -46.2 1.250 5099.1 0.13296860 0.1400736
## 1434 -34.6 0.645 5008.7 0.13296860 0.1006557
## 1435 -47.1 1.405 5099.1 0.09310345 0.1006557
## 1436 -46.2 1.299 5099.1 0.09310345 0.1006557
## 1437 -47.1 1.466 5099.1 0.10609689 0.1006557
## 1438 -30.1 0.714 5017.5 0.10609689 0.1400736
## 1439 -46.2 1.266 5099.1 0.06836679 0.1088732
## 1440 -46.2 1.250 5099.1 0.06836679 0.1088732
## 1441 -47.1 1.410 5099.1 0.11473272 0.1006557
## 1442 -29.8 0.809 5017.5 0.13296860 0.1006557
## 1443 -46.2 1.327 5099.1 0.06836679 0.1400736
## 1444 -46.2 1.354 5099.1 0.31059507 0.1400736
## 1445 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1446 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1447 -47.1 1.405 5099.1 0.06776441 0.1400736
## 1448 -46.2 1.250 5099.1 0.27285817 0.1400736
## 1449 -40.8 1.215 5076.2 0.13296860 0.1006557
## 1450 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1451 -46.2 1.334 5099.1 0.06836679 0.1400736
## 1452 -47.1 1.498 5099.1 0.13296860 0.1006557
## 1453 -46.2 1.344 5099.1 0.06836679 0.1006557
## 1454 -47.1 1.405 5099.1 0.31059507 0.1400736
## 1455 -37.5 0.879 4963.6 0.11473272 0.1400736
## 1456 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1457 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1458 -40.8 1.260 5076.2 0.13296860 0.1400736
## 1459 -46.2 1.313 5099.1 0.06776441 0.1400736
## 1460 -33.0 0.720 5023.5 0.10609689 0.1006557
## 1461 -46.2 1.291 5099.1 0.13296860 0.1006557
## 1462 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1463 -40.8 1.260 5076.2 0.13510101 0.1006557
## 1464 -46.2 1.244 5099.1 0.13296860 0.1006557
## 1465 -46.2 1.281 5099.1 0.06836679 0.1400736
## 1466 -47.1 1.435 5099.1 0.09310345 0.1006557
## 1467 -46.2 1.299 5099.1 0.13296860 0.1006557
## 1468 -42.0 4.076 5195.8 0.11473272 0.1088732
## 1469 -29.8 0.797 5017.5 0.06836679 0.1400736
## 1470 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1471 -37.5 0.879 4963.6 0.13296860 0.1400736
## 1472 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1473 -46.2 1.344 5099.1 0.11473272 0.1006557
## 1474 -47.1 1.445 5099.1 0.09484778 0.1006557
## 1475 -46.2 1.281 5099.1 0.06776441 0.1400736
## 1476 -47.1 1.445 5099.1 0.06836679 0.1006557
## 1477 -37.5 0.877 4963.6 0.10609689 0.1400736
## 1478 -46.2 1.299 5099.1 0.10609689 0.1088732
## 1479 -47.1 1.405 5099.1 0.27285817 0.1006557
## 1480 -46.2 1.250 5099.1 0.06836679 0.1400736
## 1481 -47.1 1.410 5099.1 0.10609689 0.1400736
## 1482 -26.9 0.724 5017.5 0.13296860 0.1006557
## 1483 -42.0 4.120 5195.8 0.06776441 0.1006557
## 1484 -42.0 4.021 5195.8 0.10609689 0.1006557
## 1485 -46.2 1.259 5099.1 0.13296860 0.1006557
## 1486 -46.2 1.291 5099.1 0.06776441 0.1400736
## 1487 -47.1 1.410 5099.1 0.13296860 0.1400736
## 1488 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1489 -34.6 0.646 5008.7 0.31059507 0.1400736
## 1490 -33.0 0.718 5023.5 0.27285817 0.1088732
## 1491 -50.8 1.039 4963.6 0.06836679 0.1006557
## 1492 -31.4 0.859 5076.2 0.31059507 0.1400736
## 1493 -49.5 0.972 4963.6 0.27285817 0.1006557
## 1494 -46.2 1.250 5099.1 0.11473272 0.1006557
## 1495 -47.1 1.415 5099.1 0.27285817 0.1006557
## 1496 -26.9 0.740 5017.5 0.13296860 0.1006557
## 1497 -42.0 4.021 5195.8 0.11473272 0.1006557
## 1498 -46.2 1.244 5099.1 0.09310345 0.1400736
## 1499 -46.2 1.266 5099.1 0.06836679 0.1400736
## 1500 -42.0 4.191 5195.8 0.06836679 0.1006557
## 1501 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1502 -47.1 1.410 5099.1 0.31059507 0.1400736
## 1503 -47.1 1.483 5099.1 0.10609689 0.1400736
## 1504 -47.1 1.410 5099.1 0.13296860 0.1006557
## 1505 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1506 -42.0 4.153 5195.8 0.09484778 0.1088732
## 1507 -42.0 4.021 5195.8 0.10609689 0.1400736
## 1508 -39.8 0.761 4991.6 0.06836679 0.1006557
## 1509 -26.9 0.744 5017.5 0.27285817 0.1006557
## 1510 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1511 -26.9 0.742 5017.5 0.27285817 0.1006557
## 1512 -46.2 1.327 5099.1 0.13296860 0.1400736
## 1513 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1514 -46.2 1.281 5099.1 0.06836679 0.1088732
## 1515 -46.2 1.259 5099.1 0.09310345 0.1006557
## 1516 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1517 -42.0 4.120 5195.8 0.13510101 0.1006557
## 1518 -46.2 1.299 5099.1 0.10609689 0.1400736
## 1519 -40.3 0.810 4991.6 0.13296860 0.1006557
## 1520 -42.0 4.191 5195.8 0.13296860 0.1088732
## 1521 -42.0 4.191 5195.8 0.06776441 0.1088732
## 1522 -47.1 1.405 5099.1 0.10609689 0.1400736
## 1523 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1524 -42.0 4.153 5195.8 0.06836679 0.1006557
## 1525 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1526 -29.8 0.809 5017.5 0.08955224 0.1006557
## 1527 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1528 -46.2 1.313 5099.1 0.10609689 0.1400736
## 1529 -39.8 0.742 4991.6 0.27285817 0.1006557
## 1530 -31.4 0.883 5076.2 0.11473272 0.1006557
## 1531 -46.2 1.313 5099.1 0.13296860 0.1006557
## 1532 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1533 -30.1 0.714 5017.5 0.06836679 0.1088732
## 1534 -26.9 0.722 5017.5 0.13296860 0.1006557
## 1535 -42.0 4.021 5195.8 0.09310345 0.1088732
## 1536 -42.0 4.076 5195.8 0.13296860 0.1006557
## 1537 -31.4 0.825 5076.2 0.31059507 0.1400736
## 1538 -26.9 0.740 5017.5 0.27285817 0.1006557
## 1539 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1540 -42.0 4.120 5195.8 0.11473272 0.1006557
## 1541 -42.0 4.191 5195.8 0.13296860 0.1006557
## 1542 -46.2 1.313 5099.1 0.13296860 0.1006557
## 1543 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1544 -31.4 0.821 5076.2 0.13296860 0.1006557
## 1545 -42.0 4.076 5195.8 0.06836679 0.1400736
## 1546 -31.4 0.879 5076.2 0.13296860 0.1400736
## 1547 -42.0 4.153 5195.8 0.06776441 0.1006557
## 1548 -46.2 1.250 5099.1 0.09310345 0.1006557
## 1549 -46.2 1.266 5099.1 0.31059507 0.1400736
## 1550 -46.2 1.250 5099.1 0.11473272 0.1006557
## 1551 -47.1 1.453 5099.1 0.13296860 0.1400736
## 1552 -46.2 1.281 5099.1 0.06836679 0.1400736
## 1553 -40.3 0.876 4991.6 0.10609689 0.1400736
## 1554 -49.5 0.977 4963.6 0.13296860 0.1400736
## 1555 -26.9 0.728 5017.5 0.13296860 0.1400736
## 1556 -42.0 4.153 5195.8 0.10875332 0.1006557
## 1557 -39.8 0.723 4991.6 0.09484778 0.1006557
## 1558 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1559 -46.2 1.299 5099.1 0.06776441 0.1006557
## 1560 -47.1 1.405 5099.1 0.13510101 0.1088732
## 1561 -40.8 1.268 5076.2 0.10875332 0.1006557
## 1562 -46.2 1.313 5099.1 0.13296860 0.1006557
## 1563 -42.0 4.076 5195.8 0.11473272 0.1400736
## 1564 -47.1 1.365 5099.1 0.11473272 0.1400736
## 1565 -46.2 1.291 5099.1 0.06836679 0.1400736
## 1566 -47.1 1.415 5099.1 0.10875332 0.1088732
## 1567 -26.9 0.737 5017.5 0.10609689 0.1006557
## 1568 -40.4 4.968 5195.8 0.06836679 0.1400736
## 1569 -42.0 4.153 5195.8 0.06836679 0.1400736
## 1570 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1571 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1572 -40.3 0.884 4991.6 0.13296860 0.1006557
## 1573 -42.0 4.191 5195.8 0.09310345 0.1006557
## 1574 -49.5 1.029 4963.6 0.06776441 0.1006557
## 1575 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1576 -46.2 1.244 5099.1 0.06836679 0.1400736
## 1577 -46.2 1.266 5099.1 0.11473272 0.1400736
## 1578 -47.1 1.435 5099.1 0.06836679 0.1006557
## 1579 -33.6 1.044 5076.2 0.31059507 0.1400736
## 1580 -40.8 1.266 5076.2 0.13296860 0.1006557
## 1581 -47.1 1.410 5099.1 0.06836679 0.1006557
## 1582 -46.2 1.291 5099.1 0.10875332 0.1400736
## 1583 -33.6 1.029 5076.2 0.31059507 0.1400736
## 1584 -46.2 1.281 5099.1 0.13296860 0.1088732
## 1585 -39.8 0.742 4991.6 0.27285817 0.1088732
## 1586 -46.2 1.264 5099.1 0.10875332 0.1006557
## 1587 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1588 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1589 -46.2 1.266 5099.1 0.10609689 0.1006557
## 1590 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1591 -46.2 1.266 5099.1 0.13296860 0.1400736
## 1592 -46.2 1.266 5099.1 0.06776441 0.1400736
## 1593 -46.2 1.334 5099.1 0.06836679 0.1400736
## 1594 -31.4 0.849 5076.2 0.27285817 0.1006557
## 1595 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1596 -40.3 0.810 4991.6 0.31059507 0.1400736
## 1597 -42.0 4.021 5195.8 0.06836679 0.1088732
## 1598 -47.1 1.498 5099.1 0.06836679 0.1400736
## 1599 -31.4 0.859 5076.2 0.13296860 0.1006557
## 1600 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1601 -39.8 0.720 4991.6 0.11473272 0.1006557
## 1602 -46.2 1.291 5099.1 0.06776441 0.1400736
## 1603 -37.5 0.882 4963.6 0.10609689 0.1006557
## 1604 -31.4 0.873 5076.2 0.13296860 0.1006557
## 1605 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1606 -42.0 4.120 5195.8 0.06776441 0.1400736
## 1607 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1608 -46.2 1.266 5099.1 0.13296860 0.1006557
## 1609 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1610 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1611 -42.0 4.076 5195.8 0.10875332 0.1006557
## 1612 -31.4 0.838 5076.2 0.09484778 0.1088732
## 1613 -47.1 1.479 5099.1 0.10609689 0.1088732
## 1614 -47.1 1.405 5099.1 0.06776441 0.1088732
## 1615 -46.2 1.327 5099.1 0.13296860 0.1006557
## 1616 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1617 -42.0 4.120 5195.8 0.13296860 0.1400736
## 1618 -34.8 0.652 5008.7 0.06836679 0.1006557
## 1619 -30.1 0.714 5017.5 0.10875332 0.1006557
## 1620 -50.0 1.538 5099.1 0.11473272 0.1006557
## 1621 -47.1 1.405 5099.1 0.09310345 0.1400736
## 1622 -39.8 0.754 4991.6 0.11473272 0.1088732
## 1623 -46.2 1.334 5099.1 0.06836679 0.1088732
## 1624 -37.5 0.882 4963.6 0.09310345 0.1006557
## 1625 -46.2 1.334 5099.1 0.10609689 0.1400736
## 1626 -40.3 0.876 4991.6 0.10609689 0.1006557
## 1627 -29.8 0.803 5017.5 0.10609689 0.1006557
## 1628 -46.2 1.299 5099.1 0.06776441 0.1088732
## 1629 -29.8 0.803 5017.5 0.13296860 0.1006557
## 1630 -42.0 4.153 5195.8 0.11473272 0.1006557
## 1631 -46.2 1.313 5099.1 0.06836679 0.1400736
## 1632 -46.2 1.244 5099.1 0.13296860 0.1006557
## 1633 -47.1 1.466 5099.1 0.06776441 0.1006557
## 1634 -46.2 1.250 5099.1 0.11473272 0.1088732
## 1635 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1636 -42.0 4.120 5195.8 0.13296860 0.1400736
## 1637 -39.8 0.715 4991.6 0.10609689 0.1006557
## 1638 -42.0 4.153 5195.8 0.09310345 0.1006557
## 1639 -30.1 0.720 5017.5 0.13296860 0.1400736
## 1640 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1641 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1642 -46.2 1.344 5099.1 0.06776441 0.1006557
## 1643 -46.2 1.244 5099.1 0.06836679 0.1088732
## 1644 -46.2 1.334 5099.1 0.10609689 0.1006557
## 1645 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1646 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1647 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1648 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1649 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1650 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1651 -47.1 1.405 5099.1 0.13296860 0.1088732
## 1652 -42.0 4.021 5195.8 0.10875332 0.1006557
## 1653 -46.2 1.327 5099.1 0.27285817 0.1088732
## 1654 -46.2 1.291 5099.1 0.06776441 0.1400736
## 1655 -40.8 1.099 5076.2 0.06776441 0.1006557
## 1656 -46.2 1.264 5099.1 0.13296860 0.1088732
## 1657 -42.0 4.153 5195.8 0.27285817 0.1006557
## 1658 -46.2 1.281 5099.1 0.06836679 0.1400736
## 1659 -40.3 0.870 4991.6 0.27285817 0.1006557
## 1660 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1661 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1662 -46.2 1.327 5099.1 0.13296860 0.1400736
## 1663 -46.2 1.250 5099.1 0.13296860 0.1088732
## 1664 -31.4 0.883 5076.2 0.13296860 0.1400736
## 1665 -47.1 1.410 5099.1 0.10609689 0.1006557
## 1666 -46.2 1.334 5099.1 0.13510101 0.1006557
## 1667 -42.0 4.120 5195.8 0.06836679 0.1006557
## 1668 -42.0 4.153 5195.8 0.09310345 0.1400736
## 1669 -42.0 4.153 5195.8 0.06776441 0.1006557
## 1670 -42.0 4.021 5195.8 0.31059507 0.1400736
## 1671 -46.2 1.264 5099.1 0.13296860 0.1400736
## 1672 -46.2 1.244 5099.1 0.10609689 0.1400736
## 1673 -46.2 1.266 5099.1 0.06776441 0.1400736
## 1674 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1675 -39.8 0.739 4991.6 0.11473272 0.1400736
## 1676 -30.1 0.715 5017.5 0.13296860 0.1400736
## 1677 -46.2 1.299 5099.1 0.06836679 0.1006557
## 1678 -29.8 0.768 5017.5 0.13510101 0.1006557
## 1679 -26.9 0.754 5017.5 0.10609689 0.1006557
## 1680 -50.8 1.028 4963.6 0.27285817 0.1006557
## 1681 -46.2 1.291 5099.1 0.13296860 0.1006557
## 1682 -47.1 1.453 5099.1 0.06776441 0.1006557
## 1683 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1684 -26.9 0.754 5017.5 0.10609689 0.1400736
## 1685 -47.1 1.410 5099.1 0.09310345 0.1088732
## 1686 -30.1 0.714 5017.5 0.27285817 0.1006557
## 1687 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1688 -42.0 4.021 5195.8 0.13296860 0.1400736
## 1689 -46.2 1.313 5099.1 0.11473272 0.1006557
## 1690 -31.4 0.884 5076.2 0.09484778 0.1006557
## 1691 -42.0 4.120 5195.8 0.10875332 0.1006557
## 1692 -31.4 0.825 5076.2 0.08955224 0.1006557
## 1693 -42.0 4.120 5195.8 0.13296860 0.1088732
## 1694 -40.8 1.266 5076.2 0.06776441 0.1400736
## 1695 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1696 -46.2 1.344 5099.1 0.13296860 0.1006557
## 1697 -40.3 0.896 4991.6 0.13296860 0.1006557
## 1698 -46.2 1.281 5099.1 0.10875332 0.1400736
## 1699 -46.2 1.299 5099.1 0.09310345 0.1006557
## 1700 -46.2 1.313 5099.1 0.10609689 0.1006557
## 1701 -31.4 0.859 5076.2 0.13296860 0.1006557
## 1702 -42.0 4.021 5195.8 0.13296860 0.1006557
## 1703 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1704 -31.4 0.849 5076.2 0.27285817 0.1006557
## 1705 -31.4 0.861 5076.2 0.27285817 0.1006557
## 1706 -31.4 0.881 5076.2 0.13296860 0.1400736
## 1707 -46.2 1.299 5099.1 0.09310345 0.1088732
## 1708 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1709 -39.8 0.707 4991.6 0.06836679 0.1006557
## 1710 -42.0 4.191 5195.8 0.10609689 0.1400736
## 1711 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1712 -47.1 1.445 5099.1 0.13296860 0.1088732
## 1713 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1714 -42.0 4.191 5195.8 0.13296860 0.1006557
## 1715 -46.2 1.344 5099.1 0.27285817 0.1006557
## 1716 -47.1 1.435 5099.1 0.13296860 0.1400736
## 1717 -46.2 1.244 5099.1 0.13296860 0.1400736
## 1718 -47.1 1.365 5099.1 0.10609689 0.1006557
## 1719 -46.2 1.327 5099.1 0.13296860 0.1006557
## 1720 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1721 -50.0 1.703 5099.1 0.11473272 0.1400736
## 1722 -47.1 1.423 5099.1 0.13296860 0.1400736
## 1723 -26.9 0.722 5017.5 0.27285817 0.1006557
## 1724 -42.0 4.076 5195.8 0.06836679 0.1400736
## 1725 -47.1 1.400 5099.1 0.06836679 0.1006557
## 1726 -34.6 0.642 5008.7 0.09484778 0.1006557
## 1727 -46.2 1.327 5099.1 0.13296860 0.1088732
## 1728 -42.0 4.191 5195.8 0.06836679 0.1088732
## 1729 -42.0 4.021 5195.8 0.06776441 0.1006557
## 1730 -46.2 1.266 5099.1 0.06776441 0.1088732
## 1731 -46.2 1.327 5099.1 0.06776441 0.1006557
## 1732 -42.0 4.120 5195.8 0.06836679 0.1006557
## 1733 -42.0 4.153 5195.8 0.10875332 0.1006557
## 1734 -46.2 1.244 5099.1 0.13296860 0.1088732
## 1735 -46.2 1.344 5099.1 0.10609689 0.1088732
## 1736 -34.8 0.649 5008.7 0.13296860 0.1006557
## 1737 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1738 -33.6 1.072 5076.2 0.09484778 0.1006557
## 1739 -42.0 4.076 5195.8 0.13296860 0.1006557
## 1740 -47.1 1.435 5099.1 0.06836679 0.1006557
## 1741 -46.2 1.334 5099.1 0.06776441 0.1006557
## 1742 -47.1 1.405 5099.1 0.10609689 0.1088732
## 1743 -46.2 1.250 5099.1 0.06836679 0.1006557
## 1744 -46.2 1.291 5099.1 0.13296860 0.1400736
## 1745 -46.2 1.291 5099.1 0.06776441 0.1166667
## 1746 -47.1 1.483 5099.1 0.06776441 0.1006557
## 1747 -46.2 1.299 5099.1 0.13296860 0.1006557
## 1748 -33.0 0.712 5023.5 0.09484778 0.1006557
## 1749 -31.4 0.861 5076.2 0.31059507 0.1400736
## 1750 -30.1 0.719 5017.5 0.10609689 0.1400736
## 1751 -46.2 1.250 5099.1 0.10609689 0.1088732
## 1752 -40.8 1.260 5076.2 0.10609689 0.1088732
## 1753 -40.8 1.262 5076.2 0.08955224 0.1400736
## 1754 -46.2 1.266 5099.1 0.13296860 0.1400736
## 1755 -30.1 0.714 5017.5 0.10609689 0.1006557
## 1756 -46.2 1.334 5099.1 0.13296860 0.1400736
## 1757 -46.2 1.334 5099.1 0.06776441 0.1006557
## 1758 -40.3 0.793 4991.6 0.13296860 0.1400736
## 1759 -50.8 1.048 4963.6 0.06776441 0.1006557
## 1760 -46.2 1.327 5099.1 0.11473272 0.1006557
## 1761 -42.0 4.191 5195.8 0.13296860 0.1088732
## 1762 -39.8 0.748 4991.6 0.10609689 0.1006557
## 1763 -47.1 1.405 5099.1 0.13296860 0.1006557
## 1764 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1765 -46.2 1.266 5099.1 0.10609689 0.1006557
## 1766 -39.8 0.761 4991.6 0.06836679 0.1006557
## 1767 -46.2 1.281 5099.1 0.13296860 0.1006557
## 1768 -47.1 1.479 5099.1 0.06776441 0.1006557
## 1769 -39.8 0.739 4991.6 0.31059507 0.1400736
## 1770 -42.0 4.021 5195.8 0.11473272 0.1006557
## 1771 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1772 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1773 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1774 -46.2 1.313 5099.1 0.06776441 0.1400736
## 1775 -46.2 1.244 5099.1 0.06836679 0.1400736
## 1776 -40.8 1.260 5076.2 0.10609689 0.1006557
## 1777 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1778 -31.4 0.869 5076.2 0.13510101 0.1006557
## 1779 -33.0 0.712 5023.5 0.27285817 0.1006557
## 1780 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1781 -42.0 4.021 5195.8 0.10609689 0.1006557
## 1782 -46.2 1.291 5099.1 0.13296860 0.1400736
## 1783 -47.1 1.405 5099.1 0.10609689 0.1088732
## 1784 -40.8 1.262 5076.2 0.27285817 0.1006557
## 1785 -33.0 0.712 5023.5 0.11473272 0.1006557
## 1786 -46.2 1.250 5099.1 0.09310345 0.1006557
## 1787 -50.8 1.041 4963.6 0.13510101 0.1006557
## 1788 -42.0 4.021 5195.8 0.13296860 0.1006557
## 1789 -46.2 1.313 5099.1 0.27285817 0.1088732
## 1790 -46.2 1.291 5099.1 0.13296860 0.1088732
## 1791 -40.8 1.262 5076.2 0.13510101 0.1006557
## 1792 -42.0 4.191 5195.8 0.10875332 0.1400736
## 1793 -42.0 4.153 5195.8 0.09310345 0.1006557
## 1794 -42.0 4.120 5195.8 0.10875332 0.1006557
## 1795 -42.0 4.021 5195.8 0.10609689 0.1006557
## 1796 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1797 -47.1 1.365 5099.1 0.10609689 0.1006557
## 1798 -47.1 1.405 5099.1 0.13510101 0.1006557
## 1799 -46.2 1.281 5099.1 0.10609689 0.1400736
## 1800 -38.3 0.896 4991.6 0.10609689 0.1006557
## 1801 -42.0 4.021 5195.8 0.10875332 0.1006557
## 1802 -40.3 0.810 4991.6 0.06776441 0.1400736
## 1803 -50.8 1.048 4963.6 0.10609689 0.1006557
## 1804 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1805 -40.0 0.677 5008.7 0.10609689 0.1006557
## 1806 -42.0 4.120 5195.8 0.11473272 0.1088732
## 1807 -40.0 0.682 5008.7 0.13296860 0.1400736
## 1808 -42.0 4.076 5195.8 0.13296860 0.1400736
## 1809 -40.8 1.260 5076.2 0.31059507 0.1400736
## 1810 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1811 -34.6 0.642 5008.7 0.06836679 0.1006557
## 1812 -42.0 4.120 5195.8 0.13296860 0.1400736
## 1813 -46.2 1.281 5099.1 0.13296860 0.1400736
## 1814 -40.0 0.682 5008.7 0.31059507 0.1400736
## 1815 -26.9 0.722 5017.5 0.13296860 0.1400736
## 1816 -33.0 0.720 5023.5 0.08955224 0.1006557
## 1817 -47.1 1.405 5099.1 0.10609689 0.1006557
## 1818 -46.2 1.291 5099.1 0.11473272 0.1006557
## 1819 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1820 -47.1 1.405 5099.1 0.10609689 0.1088732
## 1821 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1822 -40.8 1.260 5076.2 0.13296860 0.1400736
## 1823 -42.0 4.153 5195.8 0.06836679 0.1400736
## 1824 -46.2 1.281 5099.1 0.06776441 0.1400736
## 1825 -47.1 1.405 5099.1 0.10609689 0.1088732
## 1826 -47.1 1.415 5099.1 0.06836679 0.1006557
## 1827 -42.0 4.076 5195.8 0.06836679 0.1006557
## 1828 -42.0 4.021 5195.8 0.13296860 0.1088732
## 1829 -31.4 0.881 5076.2 0.13510101 0.1400736
## 1830 -42.0 4.191 5195.8 0.10875332 0.1006557
## 1831 -47.1 1.423 5099.1 0.06836679 0.1006557
## 1832 -46.2 1.291 5099.1 0.27285817 0.1088732
## 1833 -47.1 1.453 5099.1 0.13296860 0.1006557
## 1834 -46.2 1.244 5099.1 0.06776441 0.1400736
## 1835 -42.0 4.120 5195.8 0.11473272 0.1088732
## 1836 -46.2 1.266 5099.1 0.13296860 0.1006557
## 1837 -34.8 0.636 5008.7 0.13296860 0.1006557
## 1838 -33.0 0.707 5023.5 0.13296860 0.1400736
## 1839 -46.2 1.334 5099.1 0.10609689 0.1006557
## 1840 -50.8 1.050 4963.6 0.13296860 0.1006557
## 1841 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1842 -46.2 1.313 5099.1 0.13296860 0.1006557
## 1843 -46.2 1.291 5099.1 0.13296860 0.1006557
## 1844 -45.9 3.743 5176.3 0.09484778 0.1006557
## 1845 -40.3 0.782 4991.6 0.13296860 0.1400736
## 1846 -34.8 0.652 5008.7 0.06836679 0.1006557
## 1847 -40.3 0.802 4991.6 0.09310345 0.1400736
## 1848 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1849 -47.1 1.405 5099.1 0.09310345 0.1006557
## 1850 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1851 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1852 -46.2 1.299 5099.1 0.09484778 0.1400736
## 1853 -47.1 1.410 5099.1 0.13296860 0.1006557
## 1854 -30.1 0.714 5017.5 0.13296860 0.1400736
## 1855 -46.2 1.266 5099.1 0.10609689 0.1400736
## 1856 -40.3 0.861 4991.6 0.13296860 0.1400736
## 1857 -46.2 1.313 5099.1 0.31059507 0.1400736
## 1858 -46.2 1.244 5099.1 0.13510101 0.1006557
## 1859 -40.3 0.822 4991.6 0.27285817 0.1006557
## 1860 -46.2 1.313 5099.1 0.06836679 0.1088732
## 1861 -42.0 4.120 5195.8 0.10609689 0.1006557
## 1862 -30.1 0.714 5017.5 0.13296860 0.1400736
## 1863 -40.0 0.684 5008.7 0.13296860 0.1006557
## 1864 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1865 -40.8 1.266 5076.2 0.10609689 0.1006557
## 1866 -46.2 1.281 5099.1 0.11473272 0.1006557
## 1867 -46.2 1.250 5099.1 0.06776441 0.1400736
## 1868 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1869 -30.1 0.714 5017.5 0.13510101 0.1006557
## 1870 -46.2 1.291 5099.1 0.10609689 0.1400736
## 1871 -46.2 1.327 5099.1 0.06836679 0.1006557
## 1872 -31.4 0.883 5076.2 0.10609689 0.1006557
## 1873 -49.5 0.977 4963.6 0.06776441 0.1400736
## 1874 -46.2 1.327 5099.1 0.06836679 0.1400736
## 1875 -42.0 4.153 5195.8 0.11473272 0.1400736
## 1876 -39.8 0.715 4991.6 0.10609689 0.1006557
## 1877 -42.0 4.191 5195.8 0.13296860 0.1088732
## 1878 -34.8 0.635 5008.7 0.10609689 0.1088732
## 1879 -46.2 1.250 5099.1 0.06836679 0.1400736
## 1880 -46.2 1.334 5099.1 0.06836679 0.1088732
## 1881 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1882 -47.1 1.498 5099.1 0.09310345 0.1088732
## 1883 -34.6 0.635 5008.7 0.13296860 0.1400736
## 1884 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1885 -40.3 0.896 4991.6 0.27285817 0.1088732
## 1886 -34.8 0.635 5008.7 0.13296860 0.1400736
## 1887 -30.1 0.714 5017.5 0.13296860 0.1400736
## 1888 -26.9 0.728 5017.5 0.09484778 0.1006557
## 1889 -46.2 1.281 5099.1 0.13296860 0.1088732
## 1890 -42.0 4.120 5195.8 0.06836679 0.1006557
## 1891 -30.1 0.722 5017.5 0.13296860 0.1400736
## 1892 -47.1 1.435 5099.1 0.13296860 0.1088732
## 1893 -46.2 1.334 5099.1 0.10609689 0.1400736
## 1894 -46.2 1.291 5099.1 0.10609689 0.1400736
## 1895 -46.2 1.334 5099.1 0.06836679 0.1400736
## 1896 -46.2 1.334 5099.1 0.06836679 0.1006557
## 1897 -31.4 0.859 5076.2 0.13296860 0.1006557
## 1898 -31.4 0.884 5076.2 0.27285817 0.1006557
## 1899 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1900 -46.2 1.334 5099.1 0.09310345 0.1400736
## 1901 -40.3 0.884 4991.6 0.11473272 0.1006557
## 1902 -46.2 1.250 5099.1 0.10609689 0.1400736
## 1903 -46.2 1.250 5099.1 0.10609689 0.1400736
## 1904 -50.8 1.030 4963.6 0.13296860 0.1006557
## 1905 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1906 -46.2 1.291 5099.1 0.13296860 0.1400736
## 1907 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1908 -31.4 0.879 5076.2 0.10609689 0.1400736
## 1909 -40.8 1.224 5076.2 0.10609689 0.1006557
## 1910 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1911 -49.5 0.972 4963.6 0.06836679 0.1400736
## 1912 -46.2 1.354 5099.1 0.06776441 0.1006557
## 1913 -46.2 1.334 5099.1 0.13296860 0.1006557
## 1914 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1915 -47.1 1.410 5099.1 0.10609689 0.1400736
## 1916 -46.2 1.266 5099.1 0.06836679 0.1006557
## 1917 -42.0 4.191 5195.8 0.10875332 0.1006557
## 1918 -49.5 0.972 4963.6 0.31059507 0.1400736
## 1919 -47.1 1.392 5099.1 0.06776441 0.1088732
## 1920 -46.2 1.281 5099.1 0.06836679 0.1006557
## 1921 -38.3 0.904 4991.6 0.13296860 0.1400736
## 1922 -30.1 0.715 5017.5 0.06836679 0.1400736
## 1923 -47.1 1.405 5099.1 0.06776441 0.1006557
## 1924 -46.2 1.244 5099.1 0.10609689 0.1400736
## 1925 -42.0 4.120 5195.8 0.09310345 0.1006557
## 1926 -46.2 1.250 5099.1 0.13296860 0.1006557
## 1927 -47.1 1.410 5099.1 0.06836679 0.1400736
## 1928 -42.0 4.153 5195.8 0.10875332 0.1006557
## 1929 -37.5 0.878 4963.6 0.13296860 0.1088732
## 1930 -26.9 0.740 5017.5 0.13296860 0.1006557
## 1931 -46.2 1.250 5099.1 0.10609689 0.1400736
## 1932 -42.0 4.076 5195.8 0.10609689 0.1400736
## 1933 -49.5 1.016 4963.6 0.13296860 0.1088732
## 1934 -42.0 4.120 5195.8 0.09484778 0.1088732
## 1935 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1936 -34.6 0.659 5008.7 0.13296860 0.1400736
## 1937 -47.1 1.410 5099.1 0.13296860 0.1400736
## 1938 -40.3 0.840 4991.6 0.06776441 0.1006557
## 1939 -46.2 1.266 5099.1 0.06776441 0.1006557
## 1940 -42.0 4.021 5195.8 0.13296860 0.1400736
## 1941 -42.0 4.120 5195.8 0.13296860 0.1006557
## 1942 -40.8 1.262 5076.2 0.31059507 0.1006557
## 1943 -46.2 1.344 5099.1 0.06776441 0.1166667
## 1944 -46.2 1.266 5099.1 0.13296860 0.1088732
## 1945 -42.0 4.076 5195.8 0.09310345 0.1006557
## 1946 -47.1 1.453 5099.1 0.13296860 0.1088732
## 1947 -42.0 4.153 5195.8 0.10609689 0.1006557
## 1948 -46.2 1.299 5099.1 0.13296860 0.1400736
## 1949 -46.2 1.313 5099.1 0.06836679 0.1006557
## 1950 -31.4 0.881 5076.2 0.06836679 0.1006557
## 1951 -46.2 1.291 5099.1 0.13296860 0.1400736
## 1952 -46.2 1.266 5099.1 0.06836679 0.1400736
## 1953 -42.0 4.021 5195.8 0.06836679 0.1006557
## 1954 -46.2 1.313 5099.1 0.13296860 0.1400736
## 1955 -42.0 4.120 5195.8 0.06836679 0.1006557
## 1956 -26.9 0.739 5017.5 0.06836679 0.1006557
## 1957 -46.2 1.250 5099.1 0.06836679 0.1088732
## 1958 -38.3 0.899 4991.6 0.27285817 0.1006557
## 1959 -42.0 4.021 5195.8 0.06836679 0.1006557
## 1960 -42.0 4.191 5195.8 0.08955224 0.1400736
## 1961 -46.2 1.244 5099.1 0.06836679 0.1006557
## 1962 -46.2 1.250 5099.1 0.06836679 0.1400736
## 1963 -46.2 1.281 5099.1 0.06836679 0.1400736
## 1964 -47.1 1.405 5099.1 0.06836679 0.1006557
## 1965 -46.2 1.334 5099.1 0.10609689 0.1006557
## 1966 -46.2 1.250 5099.1 0.06836679 0.1400736
## 1967 -34.8 0.652 5008.7 0.11473272 0.1400736
## 1968 -42.0 4.076 5195.8 0.10609689 0.1088732
## 1969 -49.5 1.032 4963.6 0.13296860 0.1400736
## 1970 -30.1 0.714 5017.5 0.10609689 0.1400736
## 1971 -42.0 4.120 5195.8 0.11473272 0.1006557
## 1972 -42.0 4.120 5195.8 0.09310345 0.1006557
## 1973 -46.2 1.259 5099.1 0.10609689 0.1400736
## 1974 -30.1 0.715 5017.5 0.08955224 0.1088732
## 1975 -40.0 0.668 5008.7 0.13296860 0.1400736
## 1976 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1977 -46.2 1.250 5099.1 0.06776441 0.1006557
## 1978 -46.2 1.334 5099.1 0.06776441 0.1400736
## 1979 -47.1 1.405 5099.1 0.13296860 0.1400736
## 1980 -46.2 1.291 5099.1 0.10609689 0.1088732
## 1981 -31.4 0.884 5076.2 0.10609689 0.1400736
## 1982 -46.2 1.281 5099.1 0.13296860 0.1088732
## 1983 -40.8 1.268 5076.2 0.13296860 0.1006557
## 1984 -31.4 0.884 5076.2 0.11473272 0.1006557
## 1985 -46.2 1.291 5099.1 0.06836679 0.1006557
## 1986 -34.8 0.635 5008.7 0.13296860 0.1400736
## 1987 -46.2 1.250 5099.1 0.06836679 0.1400736
## 1988 -46.2 1.266 5099.1 0.13296860 0.1088732
## 1989 -47.1 1.405 5099.1 0.06836679 0.1400736
## 1990 -40.8 1.266 5076.2 0.13296860 0.1400736
## 1991 -50.0 1.687 5099.1 0.10609689 0.1006557
## 1992 -38.3 0.891 4991.6 0.27285817 0.1088732
## 1993 -30.1 0.719 5017.5 0.09310345 0.1088732
## 1994 -46.2 1.281 5099.1 0.11473272 0.1400736
## 1995 -40.0 0.695 5008.7 0.11473272 0.1006557
## 1996 -38.3 0.904 4991.6 0.06776441 0.1400736
## 1997 -46.2 1.327 5099.1 0.06776441 0.1006557
## 1998 -31.4 0.879 5076.2 0.11473272 0.1088732
## 1999 -42.0 4.153 5195.8 0.10609689 0.1400736
## 2000 -29.8 0.803 5017.5 0.11473272 0.1006557
## 2001 -46.2 1.281 5099.1 0.13296860 0.1006557
## 2002 -46.2 1.291 5099.1 0.09484778 0.1006557
## 2003 -46.2 1.313 5099.1 0.10875332 0.1400736
## 2004 -42.0 4.120 5195.8 0.06836679 0.1006557
## 2005 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2006 -30.1 0.716 5017.5 0.11473272 0.1006557
## 2007 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2008 -47.1 1.423 5099.1 0.13296860 0.1400736
## 2009 -46.2 1.244 5099.1 0.06776441 0.1088732
## 2010 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2011 -42.0 4.021 5195.8 0.13510101 0.1088732
## 2012 -46.2 1.266 5099.1 0.10609689 0.1400736
## 2013 -46.2 1.344 5099.1 0.11473272 0.1400736
## 2014 -47.1 1.405 5099.1 0.11473272 0.1400736
## 2015 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2016 -47.1 1.405 5099.1 0.06776441 0.1006557
## 2017 -26.9 0.730 5017.5 0.13296860 0.1006557
## 2018 -46.2 1.244 5099.1 0.06836679 0.1400736
## 2019 -42.0 4.153 5195.8 0.10609689 0.1006557
## 2020 -42.0 4.120 5195.8 0.09310345 0.1006557
## 2021 -40.8 1.252 5076.2 0.10875332 0.1006557
## 2022 -42.0 4.153 5195.8 0.10875332 0.1400736
## 2023 -42.0 4.191 5195.8 0.09310345 0.1006557
## 2024 -47.1 1.405 5099.1 0.09310345 0.1006557
## 2025 -42.0 4.120 5195.8 0.06776441 0.1006557
## 2026 -38.3 0.904 4991.6 0.10609689 0.1400736
## 2027 -38.3 0.898 4991.6 0.31059507 0.1400736
## 2028 -46.2 1.266 5099.1 0.06836679 0.1006557
## 2029 -42.0 4.120 5195.8 0.11473272 0.1006557
## 2030 -46.2 1.244 5099.1 0.13296860 0.1400736
## 2031 -46.2 1.299 5099.1 0.11473272 0.1006557
## 2032 -42.0 4.191 5195.8 0.11473272 0.1006557
## 2033 -46.2 1.291 5099.1 0.13296860 0.1006557
## 2034 -46.2 1.313 5099.1 0.10875332 0.1400736
## 2035 -46.2 1.299 5099.1 0.13296860 0.1006557
## 2036 -47.1 1.453 5099.1 0.06776441 0.1088732
## 2037 -42.0 4.076 5195.8 0.06836679 0.1400736
## 2038 -46.2 1.313 5099.1 0.06836679 0.1400736
## 2039 -31.4 0.873 5076.2 0.13296860 0.1400736
## 2040 -30.1 0.714 5017.5 0.27285817 0.1006557
## 2041 -26.9 0.742 5017.5 0.06836679 0.1400736
## 2042 -47.1 1.435 5099.1 0.10875332 0.1400736
## 2043 -47.1 1.410 5099.1 0.06836679 0.1006557
## 2044 -46.2 1.327 5099.1 0.13510101 0.1006557
## 2045 -34.8 0.652 5008.7 0.06836679 0.1400736
## 2046 -42.0 4.153 5195.8 0.10609689 0.1088732
## 2047 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2048 -30.1 0.719 5017.5 0.06836679 0.1006557
## 2049 -46.2 1.250 5099.1 0.27285817 0.1006557
## 2050 -46.2 1.281 5099.1 0.10875332 0.1006557
## 2051 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2052 -37.5 0.877 4963.6 0.13510101 0.1006557
## 2053 -47.1 1.410 5099.1 0.13296860 0.1006557
## 2054 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2055 -47.1 1.405 5099.1 0.06776441 0.1006557
## 2056 -34.6 0.645 5008.7 0.06836679 0.1400736
## 2057 -31.4 0.881 5076.2 0.13296860 0.1400736
## 2058 -34.8 0.654 5008.7 0.13296860 0.1088732
## 2059 -46.2 1.250 5099.1 0.06836679 0.1400736
## 2060 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2061 -34.8 0.653 5008.7 0.10609689 0.1400736
## 2062 -46.2 1.266 5099.1 0.13296860 0.1400736
## 2063 -30.1 0.714 5017.5 0.13296860 0.1006557
## 2064 -46.2 1.327 5099.1 0.13296860 0.1400736
## 2065 -30.1 0.720 5017.5 0.06836679 0.1400736
## 2066 -46.2 1.344 5099.1 0.11473272 0.1400736
## 2067 -46.2 1.266 5099.1 0.06836679 0.1400736
## 2068 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2069 -46.2 1.334 5099.1 0.13296860 0.1400736
## 2070 -46.2 1.244 5099.1 0.13296860 0.1006557
## 2071 -31.4 0.873 5076.2 0.10609689 0.1006557
## 2072 -46.2 1.313 5099.1 0.06776441 0.1006557
## 2073 -47.1 1.410 5099.1 0.06836679 0.1088732
## 2074 -46.2 1.244 5099.1 0.13296860 0.1400736
## 2075 -26.9 0.731 5017.5 0.11473272 0.1006557
## 2076 -46.2 1.281 5099.1 0.06776441 0.1400736
## 2077 -46.2 1.250 5099.1 0.13296860 0.1400736
## 2078 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2079 -34.6 0.644 5008.7 0.27285817 0.1088732
## 2080 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2081 -46.2 1.250 5099.1 0.06836679 0.1006557
## 2082 -34.6 0.646 5008.7 0.11473272 0.1006557
## 2083 -34.6 0.642 5008.7 0.09484778 0.1006557
## 2084 -37.5 0.884 4963.6 0.11473272 0.1006557
## 2085 -46.2 1.259 5099.1 0.13296860 0.1006557
## 2086 -46.2 1.291 5099.1 0.27285817 0.1088732
## 2087 -37.5 0.882 4963.6 0.06836679 0.1400736
## 2088 -46.2 1.264 5099.1 0.13296860 0.1006557
## 2089 -46.2 1.299 5099.1 0.06836679 0.1400736
## 2090 -42.0 4.076 5195.8 0.10875332 0.1088732
## 2091 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2092 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2093 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2094 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2095 -40.8 1.262 5076.2 0.13296860 0.1006557
## 2096 -42.0 4.021 5195.8 0.10609689 0.1006557
## 2097 -42.0 4.120 5195.8 0.09484778 0.1400736
## 2098 -46.2 1.266 5099.1 0.06836679 0.1006557
## 2099 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2100 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2101 -46.2 1.291 5099.1 0.10609689 0.1088732
## 2102 -42.0 4.120 5195.8 0.10609689 0.1006557
## 2103 -46.2 1.313 5099.1 0.06776441 0.1400736
## 2104 -46.2 1.327 5099.1 0.10875332 0.1006557
## 2105 -42.0 4.120 5195.8 0.06776441 0.1006557
## 2106 -31.4 0.843 5076.2 0.27285817 0.1006557
## 2107 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2108 -46.2 1.244 5099.1 0.09310345 0.1400736
## 2109 -40.0 0.682 5008.7 0.13296860 0.1006557
## 2110 -46.2 1.299 5099.1 0.06776441 0.1400736
## 2111 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2112 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2113 -31.4 0.869 5076.2 0.10875332 0.1088732
## 2114 -31.4 0.859 5076.2 0.13296860 0.1006557
## 2115 -33.0 0.706 5023.5 0.10875332 0.1400736
## 2116 -29.8 0.753 5017.5 0.08955224 0.1400736
## 2117 -46.2 1.344 5099.1 0.09310345 0.1006557
## 2118 -34.8 0.654 5008.7 0.13296860 0.1088732
## 2119 -42.0 4.021 5195.8 0.13510101 0.1006557
## 2120 -46.2 1.299 5099.1 0.13296860 0.1006557
## 2121 -26.9 0.730 5017.5 0.13296860 0.1006557
## 2122 -40.8 1.260 5076.2 0.13296860 0.1400736
## 2123 -46.2 1.250 5099.1 0.13296860 0.1400736
## 2124 -47.1 1.466 5099.1 0.06776441 0.1088732
## 2125 -31.4 0.884 5076.2 0.27285817 0.1006557
## 2126 -40.8 1.266 5076.2 0.13296860 0.1088732
## 2127 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2128 -46.2 1.327 5099.1 0.06836679 0.1400736
## 2129 -47.1 1.415 5099.1 0.10609689 0.1400736
## 2130 -46.2 1.281 5099.1 0.13296860 0.1400736
## 2131 -46.2 1.291 5099.1 0.13296860 0.1006557
## 2132 -31.4 0.873 5076.2 0.27285817 0.1006557
## 2133 -46.2 1.291 5099.1 0.13296860 0.1400736
## 2134 -26.9 0.739 5017.5 0.27285817 0.1006557
## 2135 -30.1 0.714 5017.5 0.13296860 0.1006557
## 2136 -46.2 1.299 5099.1 0.13296860 0.1088732
## 2137 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2138 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2139 -37.5 0.876 4963.6 0.10609689 0.1006557
## 2140 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2141 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2142 -34.8 0.646 5008.7 0.13296860 0.1006557
## 2143 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2144 -46.2 1.266 5099.1 0.06776441 0.1400736
## 2145 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2146 -46.2 1.313 5099.1 0.06836679 0.1400736
## 2147 -46.2 1.313 5099.1 0.10609689 0.1006557
## 2148 -42.0 4.120 5195.8 0.09310345 0.1400736
## 2149 -46.2 1.266 5099.1 0.09310345 0.1400736
## 2150 -34.8 0.635 5008.7 0.06836679 0.1006557
## 2151 -47.1 1.405 5099.1 0.13296860 0.1400736
## 2152 -46.2 1.299 5099.1 0.06836679 0.1400736
## 2153 -47.1 1.466 5099.1 0.10609689 0.1088732
## 2154 -30.1 0.716 5017.5 0.10609689 0.1006557
## 2155 -42.0 4.076 5195.8 0.10609689 0.1400736
## 2156 -42.0 4.120 5195.8 0.11473272 0.1006557
## 2157 -46.2 1.299 5099.1 0.06776441 0.1006557
## 2158 -46.2 1.244 5099.1 0.06836679 0.1400736
## 2159 -40.3 0.810 4991.6 0.27285817 0.1006557
## 2160 -46.2 1.291 5099.1 0.13296860 0.1006557
## 2161 -47.1 1.405 5099.1 0.06776441 0.1400736
## 2162 -46.2 1.354 5099.1 0.09310345 0.1006557
## 2163 -47.1 1.405 5099.1 0.31059507 0.1400736
## 2164 -42.0 4.021 5195.8 0.10875332 0.1006557
## 2165 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2166 -42.0 4.191 5195.8 0.06836679 0.1006557
## 2167 -42.0 4.120 5195.8 0.10609689 0.1006557
## 2168 -46.2 1.334 5099.1 0.13296860 0.1400736
## 2169 -46.2 1.266 5099.1 0.06776441 0.1400736
## 2170 -31.4 0.879 5076.2 0.27285817 0.1166667
## 2171 -34.6 0.644 5008.7 0.13296860 0.1006557
## 2172 -42.0 4.120 5195.8 0.13510101 0.1006557
## 2173 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2174 -47.1 1.410 5099.1 0.31059507 0.1400736
## 2175 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2176 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2177 -31.4 0.869 5076.2 0.31059507 0.1400736
## 2178 -40.3 0.861 4991.6 0.11473272 0.1400736
## 2179 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2180 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2181 -40.3 0.797 4991.6 0.13296860 0.1006557
## 2182 -42.0 4.153 5195.8 0.10875332 0.1006557
## 2183 -40.0 0.672 5008.7 0.31059507 0.1400736
## 2184 -42.0 4.153 5195.8 0.13296860 0.1088732
## 2185 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2186 -46.2 1.313 5099.1 0.06776441 0.1006557
## 2187 -26.9 0.740 5017.5 0.08955224 0.1006557
## 2188 -31.4 0.869 5076.2 0.10875332 0.1088732
## 2189 -40.3 0.822 4991.6 0.27285817 0.1006557
## 2190 -42.0 4.021 5195.8 0.06836679 0.1006557
## 2191 -46.2 1.354 5099.1 0.10875332 0.1006557
## 2192 -42.0 4.076 5195.8 0.06776441 0.1006557
## 2193 -42.0 4.120 5195.8 0.06776441 0.1006557
## 2194 -46.2 1.266 5099.1 0.13296860 0.1006557
## 2195 -47.1 1.410 5099.1 0.10609689 0.1088732
## 2196 -30.1 0.714 5017.5 0.10875332 0.1006557
## 2197 -46.2 1.250 5099.1 0.10609689 0.1088732
## 2198 -47.1 1.410 5099.1 0.06836679 0.1006557
## 2199 -42.0 4.021 5195.8 0.11473272 0.1006557
## 2200 -46.2 1.334 5099.1 0.13296860 0.1400736
## 2201 -46.2 1.250 5099.1 0.13296860 0.1400736
## 2202 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2203 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2204 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2205 -34.6 0.646 5008.7 0.31059507 0.1400736
## 2206 -46.2 1.266 5099.1 0.06836679 0.1400736
## 2207 -46.2 1.250 5099.1 0.10609689 0.1400736
## 2208 -46.2 1.250 5099.1 0.06836679 0.1088732
## 2209 -47.1 1.405 5099.1 0.10875332 0.1006557
## 2210 -40.8 1.262 5076.2 0.06776441 0.1006557
## 2211 -50.8 1.047 4963.6 0.13296860 0.1006557
## 2212 -46.2 1.299 5099.1 0.13296860 0.1006557
## 2213 -29.8 0.750 5017.5 0.06776441 0.1006557
## 2214 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2215 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2216 -34.6 0.663 5008.7 0.10609689 0.1400736
## 2217 -42.0 4.191 5195.8 0.06776441 0.1400736
## 2218 -47.1 1.405 5099.1 0.11473272 0.1006557
## 2219 -42.0 4.076 5195.8 0.10609689 0.1006557
## 2220 -39.8 0.739 4991.6 0.13296860 0.1400736
## 2221 -33.6 0.908 5076.2 0.10609689 0.1400736
## 2222 -40.8 1.281 5076.2 0.31059507 0.1400736
## 2223 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2224 -26.9 0.730 5017.5 0.31059507 0.1400736
## 2225 -31.4 0.843 5076.2 0.13296860 0.1006557
## 2226 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2227 -31.4 0.884 5076.2 0.09310345 0.1006557
## 2228 -49.5 0.977 4963.6 0.06776441 0.1400736
## 2229 -47.1 1.405 5099.1 0.13296860 0.1400736
## 2230 -40.3 0.810 4991.6 0.10609689 0.1006557
## 2231 -42.0 4.120 5195.8 0.11473272 0.1006557
## 2232 -47.1 1.435 5099.1 0.06776441 0.1006557
## 2233 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2234 -46.2 1.291 5099.1 0.06776441 0.1400736
## 2235 -46.2 1.327 5099.1 0.06836679 0.1006557
## 2236 -26.9 0.739 5017.5 0.10609689 0.1006557
## 2237 -30.1 0.722 5017.5 0.31059507 0.1400736
## 2238 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2239 -46.2 1.266 5099.1 0.06776441 0.1006557
## 2240 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2241 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2242 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2243 -46.2 1.291 5099.1 0.13296860 0.1400736
## 2244 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2245 -42.0 4.153 5195.8 0.10609689 0.1400736
## 2246 -46.2 1.270 5099.1 0.08955224 0.1088732
## 2247 -42.0 4.120 5195.8 0.06836679 0.1400736
## 2248 -40.0 0.692 5008.7 0.08955224 0.1006557
## 2249 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2250 -26.9 0.743 5017.5 0.13296860 0.1006557
## 2251 -42.0 4.153 5195.8 0.13296860 0.1088732
## 2252 -37.5 0.876 4963.6 0.10609689 0.1006557
## 2253 -46.2 1.244 5099.1 0.13296860 0.1006557
## 2254 -30.1 0.715 5017.5 0.11473272 0.1006557
## 2255 -46.2 1.244 5099.1 0.09310345 0.1006557
## 2256 -46.2 1.327 5099.1 0.11473272 0.1006557
## 2257 -33.0 0.709 5023.5 0.13296860 0.1006557
## 2258 -42.0 4.076 5195.8 0.10609689 0.1400736
## 2259 -37.5 0.878 4963.6 0.10609689 0.1006557
## 2260 -42.0 4.153 5195.8 0.13296860 0.1400736
## 2261 -46.2 1.313 5099.1 0.09310345 0.1088732
## 2262 -46.2 1.344 5099.1 0.11473272 0.1006557
## 2263 -46.2 1.250 5099.1 0.11473272 0.1006557
## 2264 -46.2 1.313 5099.1 0.10609689 0.1006557
## 2265 -30.1 0.714 5017.5 0.10609689 0.1006557
## 2266 -46.2 1.281 5099.1 0.13296860 0.1400736
## 2267 -31.4 0.879 5076.2 0.27285817 0.1006557
## 2268 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2269 -47.1 1.498 5099.1 0.13296860 0.1006557
## 2270 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2271 -50.0 1.510 5099.1 0.13296860 0.1006557
## 2272 -46.2 1.281 5099.1 0.06776441 0.1400736
## 2273 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2274 -47.1 1.435 5099.1 0.10609689 0.1088732
## 2275 -46.2 1.327 5099.1 0.13296860 0.1400736
## 2276 -46.2 1.327 5099.1 0.06836679 0.1006557
## 2277 -46.2 1.264 5099.1 0.13510101 0.1006557
## 2278 -46.2 1.281 5099.1 0.10609689 0.1006557
## 2279 -46.2 1.334 5099.1 0.09484778 0.1006557
## 2280 -42.0 4.076 5195.8 0.06836679 0.1006557
## 2281 -37.5 0.878 4963.6 0.10609689 0.1006557
## 2282 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2283 -42.0 4.153 5195.8 0.13296860 0.1006557
## 2284 -46.2 1.313 5099.1 0.11473272 0.1006557
## 2285 -42.0 4.153 5195.8 0.06776441 0.1006557
## 2286 -46.2 1.266 5099.1 0.13296860 0.1006557
## 2287 -46.2 1.266 5099.1 0.10609689 0.1006557
## 2288 -42.0 4.120 5195.8 0.06836679 0.1400736
## 2289 -37.5 0.876 4963.6 0.11473272 0.1006557
## 2290 -33.6 1.059 5076.2 0.13296860 0.1400736
## 2291 -34.8 0.650 5008.7 0.13296860 0.1400736
## 2292 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2293 -42.0 4.153 5195.8 0.13296860 0.1400736
## 2294 -46.2 1.291 5099.1 0.10609689 0.1400736
## 2295 -34.6 0.642 5008.7 0.13296860 0.1400736
## 2296 -46.2 1.250 5099.1 0.06836679 0.1400736
## 2297 -40.8 1.262 5076.2 0.06836679 0.1400736
## 2298 -33.6 1.059 5076.2 0.13296860 0.1006557
## 2299 -46.2 1.299 5099.1 0.06836679 0.1400736
## 2300 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2301 -42.0 4.191 5195.8 0.13296860 0.1400736
## 2302 -42.0 4.153 5195.8 0.11473272 0.1400736
## 2303 -34.8 0.646 5008.7 0.27285817 0.1006557
## 2304 -31.4 0.883 5076.2 0.13296860 0.1400736
## 2305 -37.5 0.886 4963.6 0.13296860 0.1006557
## 2306 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2307 -46.2 1.299 5099.1 0.06776441 0.1400736
## 2308 -47.1 1.405 5099.1 0.09310345 0.1400736
## 2309 -46.2 1.299 5099.1 0.10609689 0.1006557
## 2310 -46.2 1.250 5099.1 0.06836679 0.1088732
## 2311 -46.2 1.327 5099.1 0.06776441 0.1400736
## 2312 -40.3 0.846 4991.6 0.06836679 0.1400736
## 2313 -46.2 1.259 5099.1 0.10609689 0.1006557
## 2314 -40.3 0.889 4991.6 0.13296860 0.1400736
## 2315 -46.2 1.291 5099.1 0.13296860 0.1088732
## 2316 -46.2 1.327 5099.1 0.11473272 0.1006557
## 2317 -46.2 1.344 5099.1 0.06836679 0.1400736
## 2318 -47.1 1.410 5099.1 0.06776441 0.1088732
## 2319 -40.8 1.268 5076.2 0.10609689 0.1006557
## 2320 -46.2 1.281 5099.1 0.10609689 0.1400736
## 2321 -34.6 0.644 5008.7 0.10609689 0.1006557
## 2322 -30.1 0.722 5017.5 0.13296860 0.1400736
## 2323 -47.1 1.483 5099.1 0.13296860 0.1088732
## 2324 -46.2 1.327 5099.1 0.06836679 0.1088732
## 2325 -34.8 0.649 5008.7 0.10875332 0.1088732
## 2326 -37.5 0.884 4963.6 0.27285817 0.1088732
## 2327 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2328 -46.2 1.244 5099.1 0.13296860 0.1400736
## 2329 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2330 -37.5 0.879 4963.6 0.13296860 0.1006557
## 2331 -47.1 1.423 5099.1 0.13296860 0.1400736
## 2332 -31.4 0.879 5076.2 0.31059507 0.1400736
## 2333 -38.3 0.900 4991.6 0.13296860 0.1006557
## 2334 -46.2 1.327 5099.1 0.13296860 0.1400736
## 2335 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2336 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2337 -46.2 1.266 5099.1 0.06836679 0.1006557
## 2338 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2339 -46.2 1.299 5099.1 0.11473272 0.1006557
## 2340 -46.2 1.244 5099.1 0.06776441 0.1006557
## 2341 -46.2 1.266 5099.1 0.11473272 0.1006557
## 2342 -46.2 1.244 5099.1 0.13296860 0.1400736
## 2343 -46.2 1.266 5099.1 0.10875332 0.1400736
## 2344 -47.1 1.466 5099.1 0.06836679 0.1006557
## 2345 -46.2 1.281 5099.1 0.06776441 0.1006557
## 2346 -46.2 1.354 5099.1 0.10609689 0.1400736
## 2347 -34.6 0.644 5008.7 0.11473272 0.1400736
## 2348 -42.0 4.076 5195.8 0.11473272 0.1400736
## 2349 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2350 -26.9 0.728 5017.5 0.06776441 0.1006557
## 2351 -40.8 1.262 5076.2 0.09310345 0.1006557
## 2352 -47.1 1.435 5099.1 0.13296860 0.1006557
## 2353 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2354 -46.2 1.250 5099.1 0.09484778 0.1400736
## 2355 -42.0 4.663 5195.8 0.13296860 0.1006557
## 2356 -46.2 1.344 5099.1 0.13296860 0.1006557
## 2357 -42.0 4.021 5195.8 0.06776441 0.1006557
## 2358 -34.8 0.635 5008.7 0.13296860 0.1400736
## 2359 -46.2 1.264 5099.1 0.13296860 0.1006557
## 2360 -47.1 1.445 5099.1 0.13296860 0.1400736
## 2361 -39.8 0.702 4991.6 0.10609689 0.1006557
## 2362 -40.8 1.260 5076.2 0.06836679 0.1006557
## 2363 -46.2 1.281 5099.1 0.09310345 0.1006557
## 2364 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2365 -26.9 0.731 5017.5 0.11473272 0.1006557
## 2366 -26.9 0.737 5017.5 0.06836679 0.1006557
## 2367 -42.0 4.021 5195.8 0.09310345 0.1006557
## 2368 -46.2 1.291 5099.1 0.06776441 0.1400736
## 2369 -42.0 4.021 5195.8 0.10609689 0.1006557
## 2370 -42.0 4.191 5195.8 0.11473272 0.1006557
## 2371 -42.0 4.076 5195.8 0.13510101 0.1088732
## 2372 -42.0 4.191 5195.8 0.06836679 0.1006557
## 2373 -46.2 1.291 5099.1 0.13296860 0.1400736
## 2374 -47.1 1.365 5099.1 0.09484778 0.1006557
## 2375 -31.4 0.851 5076.2 0.13296860 0.1088732
## 2376 -46.2 1.327 5099.1 0.10609689 0.1088732
## 2377 -42.0 4.076 5195.8 0.06836679 0.1088732
## 2378 -26.9 0.740 5017.5 0.13296860 0.1006557
## 2379 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2380 -47.1 1.453 5099.1 0.10875332 0.1006557
## 2381 -42.0 4.120 5195.8 0.06776441 0.1006557
## 2382 -46.2 1.327 5099.1 0.06836679 0.1006557
## 2383 -46.2 1.344 5099.1 0.11473272 0.1400736
## 2384 -42.0 4.076 5195.8 0.13510101 0.1400736
## 2385 -42.0 4.191 5195.8 0.06776441 0.1088732
## 2386 -46.2 1.334 5099.1 0.13296860 0.1006557
## 2387 -50.8 1.049 4963.6 0.10609689 0.1400736
## 2388 -42.0 4.191 5195.8 0.10609689 0.1088732
## 2389 -42.0 4.153 5195.8 0.06776441 0.1006557
## 2390 -40.0 0.682 5008.7 0.13296860 0.1006557
## 2391 -46.2 1.327 5099.1 0.06836679 0.1006557
## 2392 -29.8 0.781 5017.5 0.13296860 0.1400736
## 2393 -46.2 1.266 5099.1 0.06836679 0.1006557
## 2394 -26.9 0.739 5017.5 0.11473272 0.1400736
## 2395 -47.1 1.410 5099.1 0.10609689 0.1400736
## 2396 -40.3 0.827 4991.6 0.10609689 0.1006557
## 2397 -46.2 1.313 5099.1 0.10609689 0.1088732
## 2398 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2399 -46.2 1.313 5099.1 0.11473272 0.1088732
## 2400 -50.0 1.560 5099.1 0.13296860 0.1088732
## 2401 -46.2 1.266 5099.1 0.06836679 0.1400736
## 2402 -46.2 1.250 5099.1 0.13296860 0.1400736
## 2403 -47.1 1.410 5099.1 0.13296860 0.1006557
## 2404 -46.2 1.334 5099.1 0.13296860 0.1006557
## 2405 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2406 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2407 -30.1 0.715 5017.5 0.06776441 0.1006557
## 2408 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2409 -47.1 1.445 5099.1 0.06776441 0.1088732
## 2410 -47.1 1.365 5099.1 0.06776441 0.1006557
## 2411 -49.5 0.942 4963.6 0.13296860 0.1400736
## 2412 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2413 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2414 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2415 -31.4 0.884 5076.2 0.13296860 0.1006557
## 2416 -50.0 1.629 5099.1 0.27285817 0.1006557
## 2417 -46.2 1.270 5099.1 0.11473272 0.1006557
## 2418 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2419 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2420 -33.6 1.044 5076.2 0.31059507 0.1400736
## 2421 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2422 -46.2 1.327 5099.1 0.10609689 0.1006557
## 2423 -39.8 0.715 4991.6 0.10609689 0.1006557
## 2424 -46.2 1.291 5099.1 0.10609689 0.1006557
## 2425 -46.2 1.327 5099.1 0.11473272 0.1088732
## 2426 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2427 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2428 -42.0 4.076 5195.8 0.11473272 0.1006557
## 2429 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2430 -42.0 4.191 5195.8 0.06836679 0.1006557
## 2431 -26.9 0.722 5017.5 0.10609689 0.1006557
## 2432 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2433 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2434 -46.2 1.334 5099.1 0.06836679 0.1400736
## 2435 -31.4 0.849 5076.2 0.11473272 0.1006557
## 2436 -46.2 1.327 5099.1 0.13296860 0.1006557
## 2437 -50.8 1.050 4963.6 0.06836679 0.1006557
## 2438 -46.2 1.299 5099.1 0.06776441 0.1088732
## 2439 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2440 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2441 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2442 -42.0 4.191 5195.8 0.10609689 0.1006557
## 2443 -29.8 0.797 5017.5 0.11473272 0.1006557
## 2444 -46.2 1.270 5099.1 0.13296860 0.1006557
## 2445 -26.9 0.737 5017.5 0.09310345 0.1006557
## 2446 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2447 -46.2 1.299 5099.1 0.13296860 0.1088732
## 2448 -26.9 0.743 5017.5 0.27285817 0.1006557
## 2449 -46.2 1.244 5099.1 0.09310345 0.1400736
## 2450 -34.8 0.652 5008.7 0.06836679 0.1006557
## 2451 -46.2 1.266 5099.1 0.31059507 0.1400736
## 2452 -40.0 0.701 5008.7 0.10609689 0.1400736
## 2453 -47.1 1.405 5099.1 0.31059507 0.1400736
## 2454 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2455 -31.4 0.821 5076.2 0.10609689 0.1006557
## 2456 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2457 -46.2 1.344 5099.1 0.06836679 0.1400736
## 2458 -40.8 1.266 5076.2 0.10609689 0.1006557
## 2459 -39.8 0.737 4991.6 0.31059507 0.1400736
## 2460 -46.2 1.299 5099.1 0.06776441 0.1006557
## 2461 -46.2 1.327 5099.1 0.06776441 0.1400736
## 2462 -40.8 1.266 5076.2 0.11473272 0.1006557
## 2463 -30.1 0.715 5017.5 0.08955224 0.1088732
## 2464 -42.0 4.076 5195.8 0.09310345 0.1006557
## 2465 -46.2 1.327 5099.1 0.13510101 0.1006557
## 2466 -39.8 0.719 4991.6 0.13296860 0.1006557
## 2467 -46.2 1.250 5099.1 0.10875332 0.1088732
## 2468 -46.2 1.291 5099.1 0.06776441 0.1006557
## 2469 -31.4 0.834 5076.2 0.13296860 0.1006557
## 2470 -42.0 4.191 5195.8 0.10609689 0.1400736
## 2471 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2472 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2473 -46.2 1.327 5099.1 0.13296860 0.1006557
## 2474 -47.1 1.453 5099.1 0.10609689 0.1088732
## 2475 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2476 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2477 -46.2 1.334 5099.1 0.13296860 0.1006557
## 2478 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2479 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2480 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2481 -46.2 1.313 5099.1 0.06776441 0.1400736
## 2482 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2483 -26.9 0.722 5017.5 0.09310345 0.1166667
## 2484 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2485 -47.1 1.415 5099.1 0.10609689 0.1088732
## 2486 -31.4 0.869 5076.2 0.13510101 0.1006557
## 2487 -42.0 4.191 5195.8 0.06836679 0.1400736
## 2488 -31.4 0.873 5076.2 0.06836679 0.1006557
## 2489 -46.2 1.344 5099.1 0.13296860 0.1006557
## 2490 -31.4 0.869 5076.2 0.27285817 0.1006557
## 2491 -34.6 0.642 5008.7 0.09484778 0.1006557
## 2492 -47.1 1.405 5099.1 0.06776441 0.1400736
## 2493 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2494 -49.5 0.977 4963.6 0.10609689 0.1400736
## 2495 -46.2 1.334 5099.1 0.09310345 0.1006557
## 2496 -33.0 0.709 5023.5 0.13296860 0.1006557
## 2497 -26.9 0.722 5017.5 0.27285817 0.1006557
## 2498 -46.2 1.334 5099.1 0.13296860 0.1400736
## 2499 -50.8 1.048 4963.6 0.31059507 0.1400736
## 2500 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2501 -42.0 4.120 5195.8 0.06776441 0.1006557
## 2502 -40.8 1.268 5076.2 0.10875332 0.1400736
## 2503 -46.2 1.313 5099.1 0.06836679 0.1400736
## 2504 -37.5 0.886 4963.6 0.31059507 0.1400736
## 2505 -46.2 1.327 5099.1 0.10875332 0.1006557
## 2506 -46.2 1.334 5099.1 0.09310345 0.1006557
## 2507 -40.8 1.260 5076.2 0.13296860 0.1006557
## 2508 -42.0 4.021 5195.8 0.06776441 0.1006557
## 2509 -42.0 4.120 5195.8 0.10609689 0.1006557
## 2510 -47.1 1.423 5099.1 0.06836679 0.1006557
## 2511 -46.2 1.327 5099.1 0.13296860 0.1400736
## 2512 -42.0 4.021 5195.8 0.10609689 0.1006557
## 2513 -47.1 1.405 5099.1 0.06776441 0.1400736
## 2514 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2515 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2516 -46.2 1.266 5099.1 0.13296860 0.1400736
## 2517 -40.3 0.870 4991.6 0.10609689 0.1006557
## 2518 -47.1 1.423 5099.1 0.06776441 0.1400736
## 2519 -46.2 1.327 5099.1 0.06776441 0.1400736
## 2520 -42.0 4.120 5195.8 0.06776441 0.1400736
## 2521 -46.2 1.334 5099.1 0.09484778 0.1006557
## 2522 -50.8 1.046 4963.6 0.13296860 0.1006557
## 2523 -38.3 0.899 4991.6 0.31059507 0.1400736
## 2524 -46.2 1.266 5099.1 0.06836679 0.1006557
## 2525 -42.0 4.153 5195.8 0.10609689 0.1006557
## 2526 -42.0 4.191 5195.8 0.27285817 0.1400736
## 2527 -46.2 1.313 5099.1 0.10875332 0.1400736
## 2528 -40.3 0.876 4991.6 0.13296860 0.1006557
## 2529 -46.2 1.327 5099.1 0.11473272 0.1400736
## 2530 -40.8 1.286 5076.2 0.06776441 0.1400736
## 2531 -33.6 1.029 5076.2 0.10609689 0.1006557
## 2532 -42.0 4.120 5195.8 0.13296860 0.1400736
## 2533 -38.3 0.903 4991.6 0.27285817 0.1006557
## 2534 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2535 -46.2 1.327 5099.1 0.10609689 0.1400736
## 2536 -46.2 1.281 5099.1 0.10609689 0.1006557
## 2537 -34.6 0.642 5008.7 0.13296860 0.1006557
## 2538 -40.0 0.668 5008.7 0.31059507 0.1400736
## 2539 -33.6 1.072 5076.2 0.27285817 0.1088732
## 2540 -46.2 1.299 5099.1 0.11473272 0.1006557
## 2541 -40.8 1.286 5076.2 0.09310345 0.1006557
## 2542 -49.5 1.043 4963.6 0.27285817 0.1006557
## 2543 -34.6 0.642 5008.7 0.13296860 0.1400736
## 2544 -49.5 1.000 4963.6 0.13296860 0.1400736
## 2545 -46.2 1.266 5099.1 0.06776441 0.1006557
## 2546 -40.0 0.682 5008.7 0.10609689 0.1006557
## 2547 -46.2 1.334 5099.1 0.06836679 0.1400736
## 2548 -38.3 0.905 4991.6 0.10609689 0.1088732
## 2549 -46.2 1.299 5099.1 0.10875332 0.1006557
## 2550 -46.2 1.327 5099.1 0.06776441 0.1006557
## 2551 -46.2 1.299 5099.1 0.13296860 0.1088732
## 2552 -42.0 4.153 5195.8 0.11473272 0.1400736
## 2553 -46.2 1.334 5099.1 0.10609689 0.1400736
## 2554 -49.5 1.029 4963.6 0.06776441 0.1006557
## 2555 -47.1 1.405 5099.1 0.10609689 0.1006557
## 2556 -40.8 1.266 5076.2 0.13510101 0.1006557
## 2557 -42.0 4.021 5195.8 0.11473272 0.1006557
## 2558 -42.0 4.076 5195.8 0.09310345 0.1006557
## 2559 -47.1 1.405 5099.1 0.27285817 0.1006557
## 2560 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2561 -46.2 1.291 5099.1 0.10609689 0.1400736
## 2562 -47.1 1.423 5099.1 0.13296860 0.1400736
## 2563 -42.0 4.120 5195.8 0.10609689 0.1006557
## 2564 -49.5 0.959 4963.6 0.10609689 0.1006557
## 2565 -31.4 0.879 5076.2 0.11473272 0.1006557
## 2566 -31.4 0.838 5076.2 0.10609689 0.1006557
## 2567 -31.4 0.883 5076.2 0.13296860 0.1088732
## 2568 -42.0 4.191 5195.8 0.06776441 0.1400736
## 2569 -26.9 0.742 5017.5 0.31059507 0.1400736
## 2570 -42.0 4.021 5195.8 0.13510101 0.1006557
## 2571 -39.8 0.767 4991.6 0.13296860 0.1006557
## 2572 -47.1 1.479 5099.1 0.13296860 0.1006557
## 2573 -42.0 4.191 5195.8 0.09310345 0.1006557
## 2574 -33.6 1.044 5076.2 0.13296860 0.1006557
## 2575 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2576 -42.0 4.120 5195.8 0.06836679 0.1006557
## 2577 -46.2 1.291 5099.1 0.10609689 0.1400736
## 2578 -46.2 1.334 5099.1 0.13296860 0.1006557
## 2579 -42.0 4.120 5195.8 0.10609689 0.1006557
## 2580 -46.2 1.266 5099.1 0.11473272 0.1400736
## 2581 -46.2 1.291 5099.1 0.13296860 0.1088732
## 2582 -42.0 4.120 5195.8 0.06836679 0.1006557
## 2583 -46.2 1.313 5099.1 0.09310345 0.1006557
## 2584 -42.0 4.153 5195.8 0.06836679 0.1006557
## 2585 -37.5 0.880 4963.6 0.31059507 0.1400736
## 2586 -47.1 1.405 5099.1 0.09484778 0.1400736
## 2587 -46.2 1.281 5099.1 0.11473272 0.1006557
## 2588 -30.1 0.719 5017.5 0.09310345 0.1088732
## 2589 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2590 -31.4 0.825 5076.2 0.06776441 0.1006557
## 2591 -33.0 0.721 5023.5 0.10609689 0.1006557
## 2592 -42.0 4.191 5195.8 0.10609689 0.1400736
## 2593 -42.0 4.021 5195.8 0.13296860 0.1400736
## 2594 -47.1 1.405 5099.1 0.06776441 0.1006557
## 2595 -42.0 4.245 5195.8 0.10875332 0.1006557
## 2596 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2597 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2598 -46.2 1.266 5099.1 0.09310345 0.1006557
## 2599 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2600 -46.2 1.334 5099.1 0.09310345 0.1006557
## 2601 -30.1 0.714 5017.5 0.13296860 0.1006557
## 2602 -46.2 1.291 5099.1 0.10609689 0.1400736
## 2603 -50.8 1.050 4963.6 0.10609689 0.1006557
## 2604 -46.2 1.264 5099.1 0.13296860 0.1006557
## 2605 -42.0 4.153 5195.8 0.10609689 0.1400736
## 2606 -42.0 4.120 5195.8 0.13510101 0.1088732
## 2607 -46.2 1.291 5099.1 0.06776441 0.1088732
## 2608 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2609 -40.8 1.266 5076.2 0.13296860 0.1400736
## 2610 -42.0 4.191 5195.8 0.13296860 0.1400736
## 2611 -47.1 1.365 5099.1 0.13296860 0.1006557
## 2612 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2613 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2614 -47.1 1.435 5099.1 0.10875332 0.1006557
## 2615 -46.2 1.344 5099.1 0.11473272 0.1400736
## 2616 -46.2 1.244 5099.1 0.06776441 0.1400736
## 2617 -39.8 0.720 4991.6 0.06776441 0.1006557
## 2618 -47.1 1.410 5099.1 0.11473272 0.1006557
## 2619 -42.0 4.120 5195.8 0.06776441 0.1088732
## 2620 -38.3 0.886 4991.6 0.27285817 0.1006557
## 2621 -31.4 0.883 5076.2 0.27285817 0.1006557
## 2622 -46.2 1.250 5099.1 0.06836679 0.1006557
## 2623 -46.2 1.327 5099.1 0.06776441 0.1088732
## 2624 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2625 -46.2 1.250 5099.1 0.10609689 0.1006557
## 2626 -40.0 0.695 5008.7 0.11473272 0.1006557
## 2627 -30.1 0.715 5017.5 0.06776441 0.1006557
## 2628 -47.1 1.415 5099.1 0.11473272 0.1006557
## 2629 -31.4 0.883 5076.2 0.31059507 0.1400736
## 2630 -40.8 1.260 5076.2 0.10609689 0.1400736
## 2631 -42.0 4.120 5195.8 0.13296860 0.1088732
## 2632 -42.0 4.153 5195.8 0.06836679 0.1006557
## 2633 -42.0 4.076 5195.8 0.10609689 0.1400736
## 2634 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2635 -46.2 1.250 5099.1 0.10609689 0.1088732
## 2636 -47.1 1.405 5099.1 0.27285817 0.1006557
## 2637 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2638 -46.2 1.259 5099.1 0.13296860 0.1166667
## 2639 -46.2 1.327 5099.1 0.10609689 0.1088732
## 2640 -47.1 1.405 5099.1 0.06776441 0.1088732
## 2641 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2642 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2643 -47.1 1.405 5099.1 0.27285817 0.1006557
## 2644 -42.0 4.076 5195.8 0.13296860 0.1088732
## 2645 -46.2 1.266 5099.1 0.11473272 0.1006557
## 2646 -46.2 1.281 5099.1 0.27285817 0.1006557
## 2647 -46.2 1.334 5099.1 0.10609689 0.1088732
## 2648 -47.1 1.405 5099.1 0.13296860 0.1006557
## 2649 -38.3 0.898 4991.6 0.10609689 0.1400736
## 2650 -47.1 1.410 5099.1 0.31059507 0.1400736
## 2651 -46.2 1.327 5099.1 0.13296860 0.1400736
## 2652 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2653 -31.4 0.869 5076.2 0.10609689 0.1400736
## 2654 -30.1 0.715 5017.5 0.13296860 0.1006557
## 2655 -40.8 1.224 5076.2 0.10609689 0.1006557
## 2656 -46.2 1.327 5099.1 0.10609689 0.1400736
## 2657 -42.0 4.021 5195.8 0.11473272 0.1088732
## 2658 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2659 -46.2 1.250 5099.1 0.13296860 0.1400736
## 2660 -42.0 4.120 5195.8 0.13296860 0.1006557
## 2661 -47.1 1.445 5099.1 0.06836679 0.1088732
## 2662 -50.0 1.687 5099.1 0.27285817 0.1006557
## 2663 -47.1 1.365 5099.1 0.27285817 0.1006557
## 2664 -47.1 1.400 5099.1 0.10609689 0.1400736
## 2665 -46.2 1.266 5099.1 0.09310345 0.1006557
## 2666 -42.0 4.120 5195.8 0.11473272 0.1400736
## 2667 -47.1 1.415 5099.1 0.09310345 0.1006557
## 2668 -47.1 1.405 5099.1 0.31059507 0.1400736
## 2669 -42.0 4.153 5195.8 0.06836679 0.1006557
## 2670 -40.3 0.822 4991.6 0.27285817 0.1006557
## 2671 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2672 -50.8 1.030 4963.6 0.11473272 0.1088732
## 2673 -38.3 0.896 4991.6 0.27285817 0.1006557
## 2674 -47.1 1.410 5099.1 0.10609689 0.1088732
## 2675 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2676 -46.2 1.334 5099.1 0.10609689 0.1400736
## 2677 -46.2 1.334 5099.1 0.13296860 0.1088732
## 2678 -37.5 0.886 4963.6 0.13296860 0.1006557
## 2679 -49.5 1.016 4963.6 0.06776441 0.1088732
## 2680 -42.0 4.120 5195.8 0.06776441 0.1400736
## 2681 -46.2 1.313 5099.1 0.10609689 0.1006557
## 2682 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2683 -47.1 1.405 5099.1 0.13296860 0.1088732
## 2684 -46.2 1.266 5099.1 0.11473272 0.1006557
## 2685 -42.0 4.021 5195.8 0.13510101 0.1006557
## 2686 -47.1 1.405 5099.1 0.13296860 0.1088732
## 2687 -46.2 1.281 5099.1 0.10609689 0.1400736
## 2688 -40.0 0.682 5008.7 0.11473272 0.1006557
## 2689 -42.0 4.153 5195.8 0.06836679 0.1006557
## 2690 -42.0 4.153 5195.8 0.09310345 0.1006557
## 2691 -49.5 1.025 4963.6 0.13296860 0.1088732
## 2692 -31.4 0.859 5076.2 0.11473272 0.1006557
## 2693 -31.4 0.869 5076.2 0.11473272 0.1006557
## 2694 -46.2 1.266 5099.1 0.06836679 0.1400736
## 2695 -46.2 1.264 5099.1 0.11473272 0.1006557
## 2696 -46.2 1.266 5099.1 0.13296860 0.1006557
## 2697 -42.0 4.120 5195.8 0.06836679 0.1006557
## 2698 -46.2 1.327 5099.1 0.13296860 0.1006557
## 2699 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2700 -40.0 0.668 5008.7 0.13296860 0.1006557
## 2701 -46.2 1.327 5099.1 0.31059507 0.1400736
## 2702 -42.0 4.120 5195.8 0.06836679 0.1006557
## 2703 -46.2 1.299 5099.1 0.13296860 0.1006557
## 2704 -42.0 4.191 5195.8 0.06836679 0.1006557
## 2705 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2706 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2707 -46.2 1.334 5099.1 0.10609689 0.1400736
## 2708 -46.2 1.313 5099.1 0.06836679 0.1400736
## 2709 -46.2 1.250 5099.1 0.11473272 0.1006557
## 2710 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2711 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2712 -38.3 0.899 4991.6 0.13510101 0.1400736
## 2713 -26.9 0.754 5017.5 0.10609689 0.1088732
## 2714 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2715 -42.0 4.076 5195.8 0.11473272 0.1006557
## 2716 -42.0 4.120 5195.8 0.11473272 0.1088732
## 2717 -40.0 0.684 5008.7 0.13296860 0.1006557
## 2718 -46.2 1.266 5099.1 0.11473272 0.1088732
## 2719 -30.1 0.714 5017.5 0.11473272 0.1006557
## 2720 -34.8 0.646 5008.7 0.10609689 0.1006557
## 2721 -46.2 1.281 5099.1 0.06776441 0.1006557
## 2722 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2723 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2724 -46.2 1.299 5099.1 0.10609689 0.1006557
## 2725 -47.1 1.410 5099.1 0.06836679 0.1006557
## 2726 -46.2 1.334 5099.1 0.11473272 0.1088732
## 2727 -46.2 1.299 5099.1 0.06776441 0.1400736
## 2728 -46.2 1.291 5099.1 0.09310345 0.1006557
## 2729 -40.8 1.260 5076.2 0.10609689 0.1400736
## 2730 -46.2 1.334 5099.1 0.13296860 0.1088732
## 2731 -46.2 1.281 5099.1 0.10609689 0.1400736
## 2732 -42.0 4.191 5195.8 0.11473272 0.1006557
## 2733 -31.4 0.861 5076.2 0.10875332 0.1400736
## 2734 -42.0 4.076 5195.8 0.10609689 0.1006557
## 2735 -33.6 1.029 5076.2 0.13296860 0.1006557
## 2736 -26.9 0.740 5017.5 0.11473272 0.1400736
## 2737 -46.2 1.291 5099.1 0.13296860 0.1400736
## 2738 -42.0 4.076 5195.8 0.10875332 0.1006557
## 2739 -46.2 1.266 5099.1 0.06836679 0.1006557
## 2740 -50.0 1.520 5099.1 0.10609689 0.1400736
## 2741 -40.8 1.268 5076.2 0.13296860 0.1006557
## 2742 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2743 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2744 -46.2 1.281 5099.1 0.06836679 0.1088732
## 2745 -30.1 0.714 5017.5 0.13296860 0.1400736
## 2746 -26.9 0.742 5017.5 0.27285817 0.1006557
## 2747 -47.1 1.445 5099.1 0.10609689 0.1088732
## 2748 -31.4 0.825 5076.2 0.08955224 0.1006557
## 2749 -29.8 0.781 5017.5 0.08955224 0.1006557
## 2750 -47.1 1.405 5099.1 0.10609689 0.1006557
## 2751 -42.0 4.120 5195.8 0.06776441 0.1400736
## 2752 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2753 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2754 -46.2 1.264 5099.1 0.13296860 0.1006557
## 2755 -46.2 1.327 5099.1 0.27285817 0.1088732
## 2756 -42.0 4.153 5195.8 0.13296860 0.1006557
## 2757 -46.2 1.327 5099.1 0.06776441 0.1400736
## 2758 -42.0 4.153 5195.8 0.10609689 0.1400736
## 2759 -46.2 1.344 5099.1 0.13296860 0.1400736
## 2760 -42.0 4.076 5195.8 0.09310345 0.1006557
## 2761 -31.4 0.859 5076.2 0.13296860 0.1400736
## 2762 -47.1 1.410 5099.1 0.27285817 0.1006557
## 2763 -26.9 0.742 5017.5 0.13296860 0.1400736
## 2764 -40.8 1.260 5076.2 0.13296860 0.1400736
## 2765 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2766 -46.2 1.344 5099.1 0.13296860 0.1400736
## 2767 -46.2 1.313 5099.1 0.13296860 0.1400736
## 2768 -29.8 0.781 5017.5 0.08955224 0.1006557
## 2769 -34.6 0.642 5008.7 0.09484778 0.1006557
## 2770 -31.4 0.884 5076.2 0.06836679 0.1088732
## 2771 -46.2 1.250 5099.1 0.06836679 0.1006557
## 2772 -47.1 1.405 5099.1 0.13296860 0.1400736
## 2773 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2774 -31.4 0.883 5076.2 0.11473272 0.1006557
## 2775 -42.0 4.191 5195.8 0.11473272 0.1006557
## 2776 -47.1 1.435 5099.1 0.06776441 0.1006557
## 2777 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2778 -40.3 0.861 4991.6 0.10609689 0.1088732
## 2779 -47.1 1.445 5099.1 0.06836679 0.1006557
## 2780 -46.2 1.244 5099.1 0.06836679 0.1006557
## 2781 -47.1 1.405 5099.1 0.11473272 0.1006557
## 2782 -47.1 1.365 5099.1 0.13296860 0.1400736
## 2783 -46.2 1.344 5099.1 0.10609689 0.1006557
## 2784 -46.2 1.299 5099.1 0.13296860 0.1400736
## 2785 -46.2 1.250 5099.1 0.06776441 0.1400736
## 2786 -47.1 1.405 5099.1 0.13296860 0.1088732
## 2787 -46.2 1.291 5099.1 0.11473272 0.1400736
## 2788 -31.4 0.859 5076.2 0.13296860 0.1400736
## 2789 -42.0 4.120 5195.8 0.09484778 0.1088732
## 2790 -42.0 4.153 5195.8 0.11473272 0.1006557
## 2791 -50.0 1.687 5099.1 0.10609689 0.1006557
## 2792 -42.0 4.120 5195.8 0.09310345 0.1006557
## 2793 -46.2 1.281 5099.1 0.13296860 0.1006557
## 2794 -46.2 1.250 5099.1 0.06776441 0.1006557
## 2795 -46.2 1.299 5099.1 0.06836679 0.1400736
## 2796 -46.2 1.299 5099.1 0.10609689 0.1006557
## 2797 -42.0 4.120 5195.8 0.10875332 0.1400736
## 2798 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2799 -46.2 1.281 5099.1 0.13296860 0.1400736
## 2800 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2801 -42.0 4.153 5195.8 0.10609689 0.1400736
## 2802 -40.8 1.266 5076.2 0.10609689 0.1006557
## 2803 -34.8 0.652 5008.7 0.06836679 0.1006557
## 2804 -46.2 1.281 5099.1 0.27285817 0.1006557
## 2805 -37.5 0.882 4963.6 0.27285817 0.1006557
## 2806 -46.2 1.291 5099.1 0.06776441 0.1006557
## 2807 -46.2 1.299 5099.1 0.10609689 0.1400736
## 2808 -47.1 1.405 5099.1 0.10609689 0.1088732
## 2809 -26.9 0.737 5017.5 0.11473272 0.1006557
## 2810 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2811 -46.2 1.281 5099.1 0.06776441 0.1400736
## 2812 -46.2 1.259 5099.1 0.13296860 0.1400736
## 2813 -42.0 4.191 5195.8 0.09310345 0.1006557
## 2814 -46.2 1.313 5099.1 0.11473272 0.1400736
## 2815 -46.2 1.250 5099.1 0.10609689 0.1400736
## 2816 -47.1 1.445 5099.1 0.06836679 0.1006557
## 2817 -40.3 0.797 4991.6 0.09484778 0.1088732
## 2818 -42.0 4.120 5195.8 0.10609689 0.1400736
## 2819 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2820 -42.0 4.076 5195.8 0.10875332 0.1400736
## 2821 -42.0 4.120 5195.8 0.13296860 0.1400736
## 2822 -47.1 1.435 5099.1 0.06836679 0.1006557
## 2823 -26.9 0.742 5017.5 0.13296860 0.1006557
## 2824 -46.2 1.299 5099.1 0.13296860 0.1400736
## 2825 -47.1 1.410 5099.1 0.11473272 0.1006557
## 2826 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2827 -40.8 1.262 5076.2 0.13296860 0.1006557
## 2828 -46.2 1.281 5099.1 0.13296860 0.1400736
## 2829 -47.1 1.483 5099.1 0.10609689 0.1400736
## 2830 -46.2 1.281 5099.1 0.10875332 0.1006557
## 2831 -47.1 1.453 5099.1 0.06836679 0.1006557
## 2832 -42.0 4.120 5195.8 0.11473272 0.1006557
## 2833 -42.0 4.021 5195.8 0.13296860 0.1006557
## 2834 -46.2 1.334 5099.1 0.11473272 0.1006557
## 2835 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2836 -46.2 1.344 5099.1 0.06776441 0.1088732
## 2837 -40.3 0.822 4991.6 0.27285817 0.1006557
## 2838 -33.0 0.720 5023.5 0.08955224 0.1006557
## 2839 -42.0 4.076 5195.8 0.11473272 0.1006557
## 2840 -40.8 1.262 5076.2 0.13296860 0.1006557
## 2841 -46.2 1.250 5099.1 0.13296860 0.1400736
## 2842 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2843 -30.1 0.714 5017.5 0.27285817 0.1006557
## 2844 -46.2 1.327 5099.1 0.13296860 0.1006557
## 2845 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2846 -46.2 1.313 5099.1 0.10875332 0.1400736
## 2847 -46.2 1.291 5099.1 0.13510101 0.1006557
## 2848 -46.2 1.344 5099.1 0.06776441 0.1006557
## 2849 -46.2 1.250 5099.1 0.06836679 0.1006557
## 2850 -46.2 1.344 5099.1 0.10609689 0.1006557
## 2851 -47.1 1.445 5099.1 0.06836679 0.1088732
## 2852 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2853 -46.2 1.327 5099.1 0.13296860 0.1006557
## 2854 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2855 -47.1 1.415 5099.1 0.13296860 0.1006557
## 2856 -46.2 1.250 5099.1 0.10609689 0.1400736
## 2857 -46.2 1.299 5099.1 0.09310345 0.1006557
## 2858 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2859 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2860 -42.0 4.191 5195.8 0.09310345 0.1006557
## 2861 -40.0 0.697 5008.7 0.27285817 0.1088732
## 2862 -46.2 1.250 5099.1 0.13296860 0.1006557
## 2863 -46.2 1.299 5099.1 0.06776441 0.1400736
## 2864 -49.5 0.959 4963.6 0.13296860 0.1400736
## 2865 -42.0 4.120 5195.8 0.06836679 0.1400736
## 2866 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2867 -47.1 1.405 5099.1 0.10609689 0.1400736
## 2868 -46.2 1.313 5099.1 0.13296860 0.1088732
## 2869 -46.2 1.266 5099.1 0.13296860 0.1400736
## 2870 -42.0 4.191 5195.8 0.06836679 0.1088732
## 2871 -47.1 1.365 5099.1 0.27285817 0.1006557
## 2872 -40.0 0.692 5008.7 0.13296860 0.1006557
## 2873 -47.1 1.405 5099.1 0.10609689 0.1006557
## 2874 -46.2 1.334 5099.1 0.10609689 0.1006557
## 2875 -33.0 0.712 5023.5 0.31059507 0.1400736
## 2876 -42.0 4.120 5195.8 0.06836679 0.1006557
## 2877 -46.2 1.344 5099.1 0.06776441 0.1006557
## 2878 -46.2 1.281 5099.1 0.06836679 0.1400736
## 2879 -42.0 4.153 5195.8 0.13296860 0.1400736
## 2880 -46.2 1.299 5099.1 0.06836679 0.1400736
## 2881 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2882 -46.2 1.244 5099.1 0.10875332 0.1400736
## 2883 -46.2 1.313 5099.1 0.06836679 0.1400736
## 2884 -42.0 4.120 5195.8 0.13296860 0.1006557
## 2885 -46.2 1.266 5099.1 0.13296860 0.1006557
## 2886 -47.1 1.405 5099.1 0.27285817 0.1006557
## 2887 -26.9 0.737 5017.5 0.06836679 0.1006557
## 2888 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2889 -42.0 4.153 5195.8 0.13296860 0.1400736
## 2890 -42.0 4.153 5195.8 0.11473272 0.1400736
## 2891 -47.1 1.405 5099.1 0.13296860 0.1400736
## 2892 -42.0 4.120 5195.8 0.13296860 0.1006557
## 2893 -42.0 4.021 5195.8 0.27285817 0.1088732
## 2894 -46.2 1.291 5099.1 0.10609689 0.1006557
## 2895 -42.0 4.191 5195.8 0.09310345 0.1006557
## 2896 -46.2 1.327 5099.1 0.06836679 0.1006557
## 2897 -46.2 1.313 5099.1 0.13296860 0.1006557
## 2898 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2899 -46.2 1.244 5099.1 0.09310345 0.1400736
## 2900 -46.2 1.313 5099.1 0.06836679 0.1006557
## 2901 -30.1 0.715 5017.5 0.11473272 0.1006557
## 2902 -37.5 0.879 4963.6 0.06776441 0.1006557
## 2903 -31.4 0.883 5076.2 0.09484778 0.1088732
## 2904 -37.5 0.878 4963.6 0.06836679 0.1400736
## 2905 -46.2 1.334 5099.1 0.13296860 0.1006557
## 2906 -46.2 1.244 5099.1 0.09484778 0.1006557
## 2907 -46.2 1.281 5099.1 0.13296860 0.1006557
## 2908 -42.0 4.120 5195.8 0.06836679 0.1088732
## 2909 -47.1 1.405 5099.1 0.09310345 0.1006557
## 2910 -46.2 1.291 5099.1 0.06836679 0.1400736
## 2911 -38.3 0.899 4991.6 0.06776441 0.1088732
## 2912 -34.8 0.646 5008.7 0.27285817 0.1006557
## 2913 -30.1 0.716 5017.5 0.27285817 0.1006557
## 2914 -50.8 1.049 4963.6 0.10609689 0.1400736
## 2915 -40.3 0.790 4991.6 0.13296860 0.1006557
## 2916 -46.2 1.291 5099.1 0.06836679 0.1006557
## 2917 -34.6 0.643 5008.7 0.27285817 0.1088732
## 2918 -46.2 1.250 5099.1 0.10609689 0.1400736
## 2919 -26.9 0.740 5017.5 0.13296860 0.1006557
## 2920 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2921 -46.2 1.334 5099.1 0.09484778 0.1006557
## 2922 -46.2 1.299 5099.1 0.09310345 0.1006557
## 2923 -46.2 1.344 5099.1 0.06836679 0.1400736
## 2924 -40.0 0.682 5008.7 0.10609689 0.1006557
## 2925 -46.2 1.334 5099.1 0.06776441 0.1400736
## 2926 -47.1 1.423 5099.1 0.06836679 0.1006557
## 2927 -42.0 4.076 5195.8 0.13296860 0.1400736
## 2928 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2929 -42.0 4.191 5195.8 0.06776441 0.1006557
## 2930 -37.5 0.882 4963.6 0.10609689 0.1006557
## 2931 -42.0 4.120 5195.8 0.13296860 0.1088732
## 2932 -47.1 1.405 5099.1 0.10609689 0.1006557
## 2933 -26.9 0.730 5017.5 0.13296860 0.1006557
## 2934 -47.1 1.453 5099.1 0.06836679 0.1006557
## 2935 -46.2 1.299 5099.1 0.13296860 0.1400736
## 2936 -31.4 0.861 5076.2 0.31059507 0.1400736
## 2937 -46.2 1.344 5099.1 0.06836679 0.1400736
## 2938 -33.6 0.908 5076.2 0.13296860 0.1006557
## 2939 -46.2 1.344 5099.1 0.11473272 0.1088732
## 2940 -34.8 0.646 5008.7 0.27285817 0.1006557
## 2941 -46.2 1.354 5099.1 0.10609689 0.1006557
## 2942 -42.0 4.021 5195.8 0.11473272 0.1006557
## 2943 -42.0 4.120 5195.8 0.10875332 0.1006557
## 2944 -40.8 1.260 5076.2 0.10609689 0.1088732
## 2945 -46.2 1.327 5099.1 0.06776441 0.1006557
## 2946 -46.2 1.344 5099.1 0.06836679 0.1006557
## 2947 -46.2 1.291 5099.1 0.06776441 0.1400736
## 2948 -47.1 1.466 5099.1 0.11473272 0.1088732
## 2949 -40.3 0.802 4991.6 0.13296860 0.1400736
## 2950 -47.1 1.405 5099.1 0.06836679 0.1006557
## 2951 -29.8 0.797 5017.5 0.10609689 0.1006557
## 2952 -42.0 4.191 5195.8 0.13510101 0.1006557
## 2953 -49.5 0.985 4963.6 0.10609689 0.1006557
## 2954 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2955 -46.2 1.244 5099.1 0.10609689 0.1400736
## 2956 -34.8 0.635 5008.7 0.06776441 0.1006557
## 2957 -40.3 0.827 4991.6 0.13296860 0.1400736
## 2958 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2959 -46.2 1.334 5099.1 0.06836679 0.1006557
## 2960 -46.2 1.327 5099.1 0.06776441 0.1006557
## 2961 -31.4 0.834 5076.2 0.10609689 0.1006557
## 2962 -31.4 0.884 5076.2 0.31059507 0.1400736
## 2963 -46.2 1.244 5099.1 0.06836679 0.1400736
## 2964 -46.2 1.334 5099.1 0.09310345 0.1006557
## 2965 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2966 -40.0 0.672 5008.7 0.13296860 0.1400736
## 2967 -40.8 1.260 5076.2 0.09310345 0.1088732
## 2968 -46.2 1.259 5099.1 0.10609689 0.1400736
## 2969 -26.9 0.739 5017.5 0.06836679 0.1006557
## 2970 -42.0 4.120 5195.8 0.13296860 0.1006557
## 2971 -46.2 1.281 5099.1 0.06836679 0.1006557
## 2972 -46.2 1.354 5099.1 0.27285817 0.1006557
## 2973 -46.2 1.327 5099.1 0.06776441 0.1006557
## 2974 -30.1 0.720 5017.5 0.10875332 0.1006557
## 2975 -47.1 1.445 5099.1 0.10609689 0.1006557
## 2976 -46.2 1.299 5099.1 0.06836679 0.1006557
## 2977 -46.2 1.313 5099.1 0.06776441 0.1400736
## 2978 -42.0 4.076 5195.8 0.06776441 0.1088732
## 2979 -39.8 0.702 4991.6 0.13296860 0.1006557
## 2980 -46.2 1.270 5099.1 0.11473272 0.1006557
## 2981 -47.1 1.445 5099.1 0.06836679 0.1400736
## 2982 -42.0 4.120 5195.8 0.11473272 0.1400736
## 2983 -31.4 0.879 5076.2 0.27285817 0.1006557
## 2984 -31.4 0.834 5076.2 0.27285817 0.1006557
## 2985 -46.2 1.334 5099.1 0.11473272 0.1088732
## 2986 -31.4 0.829 5076.2 0.27285817 0.1088732
## 2987 -37.5 0.884 4963.6 0.13296860 0.1006557
## 2988 -42.0 4.191 5195.8 0.10609689 0.1006557
## 2989 -46.2 1.299 5099.1 0.13296860 0.1400736
## 2990 -46.2 1.334 5099.1 0.13296860 0.1088732
## 2991 -46.2 1.334 5099.1 0.06776441 0.1006557
## 2992 -40.3 0.893 4991.6 0.31059507 0.1400736
## 2993 -46.2 1.281 5099.1 0.13296860 0.1006557
## 2994 -46.2 1.354 5099.1 0.06836679 0.1006557
## 2995 -42.0 4.191 5195.8 0.13296860 0.1006557
## 2996 -42.0 4.076 5195.8 0.09310345 0.1166667
## 2997 -34.6 0.638 5008.7 0.10609689 0.1400736
## 2998 -50.0 1.640 5099.1 0.31059507 0.1400736
## 2999 -42.0 4.191 5195.8 0.11473272 0.1006557
## 3000 -26.9 0.742 5017.5 0.13296860 0.1006557
## 3001 -46.2 1.354 5099.1 0.11473272 0.1006557
## 3002 -47.1 1.479 5099.1 0.06836679 0.1006557
## 3003 -47.1 1.365 5099.1 0.13296860 0.1006557
## 3004 -46.2 1.244 5099.1 0.11473272 0.1400736
## 3005 -47.1 1.410 5099.1 0.06836679 0.1006557
## 3006 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3007 -26.9 0.740 5017.5 0.10609689 0.1400736
## 3008 -34.8 0.652 5008.7 0.06836679 0.1006557
## 3009 -46.2 1.291 5099.1 0.06836679 0.1006557
## 3010 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3011 -42.0 4.191 5195.8 0.11473272 0.1006557
## 3012 -46.2 1.250 5099.1 0.06776441 0.1006557
## 3013 -46.2 1.291 5099.1 0.11473272 0.1400736
## 3014 -42.0 4.021 5195.8 0.10609689 0.1006557
## 3015 -42.0 4.076 5195.8 0.09310345 0.1400736
## 3016 -42.0 4.120 5195.8 0.11473272 0.1006557
## 3017 -30.1 0.715 5017.5 0.08955224 0.1088732
## 3018 -50.8 1.048 4963.6 0.13296860 0.1400736
## 3019 -40.3 0.827 4991.6 0.06836679 0.1400736
## 3020 -30.1 0.720 5017.5 0.06836679 0.1400736
## 3021 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3022 -29.8 0.803 5017.5 0.10609689 0.1006557
## 3023 -47.1 1.405 5099.1 0.10609689 0.1400736
## 3024 -46.2 1.281 5099.1 0.13296860 0.1088732
## 3025 -42.0 4.076 5195.8 0.10875332 0.1088732
## 3026 -47.1 1.405 5099.1 0.10609689 0.1400736
## 3027 -42.0 4.120 5195.8 0.10609689 0.1006557
## 3028 -46.2 1.281 5099.1 0.13296860 0.1006557
## 3029 -46.2 1.266 5099.1 0.10609689 0.1006557
## 3030 -47.1 1.498 5099.1 0.13296860 0.1400736
## 3031 -46.2 1.266 5099.1 0.13296860 0.1088732
## 3032 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3033 -46.2 1.334 5099.1 0.13296860 0.1006557
## 3034 -46.2 1.291 5099.1 0.06836679 0.1006557
## 3035 -46.2 1.334 5099.1 0.06836679 0.1006557
## 3036 -39.8 0.748 4991.6 0.10609689 0.1400736
## 3037 -34.6 0.663 5008.7 0.13296860 0.1006557
## 3038 -37.5 0.879 4963.6 0.10609689 0.1400736
## 3039 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3040 -31.4 0.883 5076.2 0.10609689 0.1006557
## 3041 -37.5 0.880 4963.6 0.11473272 0.1006557
## 3042 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3043 -33.0 0.715 5023.5 0.31059507 0.1006557
## 3044 -42.0 4.153 5195.8 0.10609689 0.1006557
## 3045 -46.2 1.244 5099.1 0.13296860 0.1400736
## 3046 -26.9 0.722 5017.5 0.10609689 0.1006557
## 3047 -29.8 0.819 5017.5 0.10609689 0.1006557
## 3048 -46.2 1.334 5099.1 0.09484778 0.1006557
## 3049 -26.9 0.739 5017.5 0.27285817 0.1006557
## 3050 -46.2 1.266 5099.1 0.11473272 0.1006557
## 3051 -30.1 0.714 5017.5 0.11473272 0.1006557
## 3052 -46.2 1.266 5099.1 0.06836679 0.1006557
## 3053 -46.2 1.281 5099.1 0.10609689 0.1400736
## 3054 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3055 -46.2 1.334 5099.1 0.11473272 0.1400736
## 3056 -42.0 4.120 5195.8 0.11473272 0.1006557
## 3057 -31.4 0.869 5076.2 0.31059507 0.1400736
## 3058 -46.2 1.291 5099.1 0.06836679 0.1400736
## 3059 -40.0 0.695 5008.7 0.06776441 0.1400736
## 3060 -46.2 1.291 5099.1 0.13296860 0.1400736
## 3061 -47.1 1.445 5099.1 0.06836679 0.1006557
## 3062 -30.1 0.714 5017.5 0.11473272 0.1006557
## 3063 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3064 -46.2 1.327 5099.1 0.31059507 0.1400736
## 3065 -46.2 1.281 5099.1 0.06836679 0.1088732
## 3066 -47.1 1.405 5099.1 0.13296860 0.1400736
## 3067 -47.1 1.479 5099.1 0.10875332 0.1088732
## 3068 -47.1 1.423 5099.1 0.06836679 0.1400736
## 3069 -47.1 1.479 5099.1 0.06776441 0.1006557
## 3070 -42.0 4.021 5195.8 0.13296860 0.1088732
## 3071 -40.0 0.672 5008.7 0.13296860 0.1400736
## 3072 -46.2 1.299 5099.1 0.10609689 0.1400736
## 3073 -31.4 0.849 5076.2 0.13296860 0.1006557
## 3074 -42.0 4.120 5195.8 0.13296860 0.1006557
## 3075 -42.0 4.191 5195.8 0.13296860 0.1006557
## 3076 -37.5 0.880 4963.6 0.11473272 0.1006557
## 3077 -37.5 0.884 4963.6 0.10609689 0.1006557
## 3078 -46.2 1.291 5099.1 0.06836679 0.1006557
## 3079 -46.2 1.313 5099.1 0.06776441 0.1006557
## 3080 -30.1 0.715 5017.5 0.06836679 0.1006557
## 3081 -46.2 1.281 5099.1 0.13296860 0.1400736
## 3082 -47.1 1.405 5099.1 0.11473272 0.1006557
## 3083 -46.2 1.327 5099.1 0.13296860 0.1006557
## 3084 -47.1 1.445 5099.1 0.09484778 0.1006557
## 3085 -46.2 1.281 5099.1 0.10875332 0.1400736
## 3086 -46.2 1.266 5099.1 0.06836679 0.1006557
## 3087 -49.5 1.016 4963.6 0.09484778 0.1006557
## 3088 -47.1 1.445 5099.1 0.13296860 0.1006557
## 3089 -46.2 1.334 5099.1 0.06776441 0.1088732
## 3090 -42.0 4.191 5195.8 0.13510101 0.1006557
## 3091 -34.6 0.663 5008.7 0.11473272 0.1006557
## 3092 -46.2 1.250 5099.1 0.06776441 0.1088732
## 3093 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3094 -46.2 1.327 5099.1 0.10609689 0.1006557
## 3095 -46.2 1.313 5099.1 0.06836679 0.1400736
## 3096 -42.0 4.153 5195.8 0.06776441 0.1006557
## 3097 -37.5 0.884 4963.6 0.06776441 0.1400736
## 3098 -42.0 4.191 5195.8 0.13296860 0.1006557
## 3099 -40.3 0.790 4991.6 0.13296860 0.1006557
## 3100 -42.0 4.120 5195.8 0.06836679 0.1006557
## 3101 -46.2 1.281 5099.1 0.10875332 0.1400736
## 3102 -46.2 1.266 5099.1 0.06836679 0.1400736
## 3103 -29.8 0.809 5017.5 0.31059507 0.1400736
## 3104 -42.0 4.191 5195.8 0.09310345 0.1006557
## 3105 -46.2 1.313 5099.1 0.06776441 0.1006557
## 3106 -40.3 0.827 4991.6 0.10609689 0.1006557
## 3107 -47.1 1.435 5099.1 0.06836679 0.1088732
## 3108 -47.1 1.498 5099.1 0.06836679 0.1006557
## 3109 -46.2 1.344 5099.1 0.06836679 0.1088732
## 3110 -42.0 4.153 5195.8 0.06836679 0.1006557
## 3111 -26.9 0.740 5017.5 0.13296860 0.1006557
## 3112 -46.2 1.281 5099.1 0.13296860 0.1400736
## 3113 -46.2 1.344 5099.1 0.13296860 0.1400736
## 3114 -38.3 0.898 4991.6 0.31059507 0.1400736
## 3115 -42.0 4.153 5195.8 0.06836679 0.1006557
## 3116 -46.2 1.299 5099.1 0.13296860 0.1006557
## 3117 -46.2 1.299 5099.1 0.13296860 0.1088732
## 3118 -46.2 1.266 5099.1 0.11473272 0.1400736
## 3119 -49.5 0.982 4963.6 0.31059507 0.1400736
## 3120 -46.2 1.299 5099.1 0.13296860 0.1006557
## 3121 -42.0 4.120 5195.8 0.10609689 0.1400736
## 3122 -46.2 1.250 5099.1 0.06836679 0.1088732
## 3123 -34.8 0.646 5008.7 0.13510101 0.1006557
## 3124 -46.2 1.299 5099.1 0.13296860 0.1006557
## 3125 -46.2 1.334 5099.1 0.10609689 0.1400736
## 3126 -26.9 0.739 5017.5 0.13296860 0.1006557
## 3127 -26.9 0.744 5017.5 0.09484778 0.1400736
## 3128 -46.2 1.334 5099.1 0.06776441 0.1006557
## 3129 -46.2 1.266 5099.1 0.06836679 0.1006557
## 3130 -46.2 1.281 5099.1 0.31059507 0.1400736
## 3131 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3132 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3133 -33.6 1.072 5076.2 0.10609689 0.1006557
## 3134 -50.8 1.035 4963.6 0.13296860 0.1006557
## 3135 -46.2 1.299 5099.1 0.11473272 0.1006557
## 3136 -31.4 0.849 5076.2 0.10609689 0.1088732
## 3137 -46.2 1.291 5099.1 0.06836679 0.1400736
## 3138 -46.2 1.354 5099.1 0.06836679 0.1006557
## 3139 -46.2 1.291 5099.1 0.13296860 0.1400736
## 3140 -46.2 1.244 5099.1 0.11473272 0.1088732
## 3141 -31.4 0.869 5076.2 0.31059507 0.1400736
## 3142 -42.0 4.120 5195.8 0.10609689 0.1006557
## 3143 -31.4 0.884 5076.2 0.11473272 0.1006557
## 3144 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3145 -29.8 0.797 5017.5 0.13296860 0.1006557
## 3146 -46.2 1.334 5099.1 0.06836679 0.1006557
## 3147 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3148 -30.1 0.714 5017.5 0.09310345 0.1006557
## 3149 -42.0 4.120 5195.8 0.11473272 0.1006557
## 3150 -46.2 1.334 5099.1 0.13296860 0.1400736
## 3151 -46.2 1.259 5099.1 0.10609689 0.1088732
## 3152 -31.4 0.873 5076.2 0.13296860 0.1088732
## 3153 -46.2 1.291 5099.1 0.10875332 0.1088732
## 3154 -46.2 1.344 5099.1 0.06836679 0.1088732
## 3155 -46.2 1.291 5099.1 0.06836679 0.1400736
## 3156 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3157 -47.1 1.479 5099.1 0.13296860 0.1006557
## 3158 -33.6 1.029 5076.2 0.31059507 0.1400736
## 3159 -46.2 1.299 5099.1 0.06836679 0.1006557
## 3160 -46.2 1.313 5099.1 0.13296860 0.1400736
## 3161 -40.8 1.215 5076.2 0.13296860 0.1006557
## 3162 -37.5 0.886 4963.6 0.13296860 0.1006557
## 3163 -46.2 1.334 5099.1 0.06776441 0.1006557
## 3164 -42.0 4.153 5195.8 0.06836679 0.1006557
## 3165 -37.5 0.879 4963.6 0.31059507 0.1400736
## 3166 -46.2 1.334 5099.1 0.06776441 0.1088732
## 3167 -37.5 0.886 4963.6 0.31059507 0.1400736
## 3168 -42.0 4.120 5195.8 0.10609689 0.1088732
## 3169 -33.0 0.706 5023.5 0.10875332 0.1400736
## 3170 -30.1 0.714 5017.5 0.13296860 0.1006557
## 3171 -46.2 1.281 5099.1 0.06776441 0.1006557
## 3172 -29.8 0.781 5017.5 0.08955224 0.1006557
## 3173 -37.5 0.878 4963.6 0.06776441 0.1400736
## 3174 -46.2 1.266 5099.1 0.10875332 0.1006557
## 3175 -38.3 0.904 4991.6 0.06836679 0.1088732
## 3176 -46.2 1.327 5099.1 0.06836679 0.1006557
## 3177 -34.6 0.643 5008.7 0.10875332 0.1400736
## 3178 -47.1 1.410 5099.1 0.10875332 0.1006557
## 3179 -42.0 4.120 5195.8 0.13296860 0.1400736
## 3180 -47.1 1.405 5099.1 0.10609689 0.1006557
## 3181 -42.0 4.153 5195.8 0.13296860 0.1006557
## 3182 -47.1 1.405 5099.1 0.06776441 0.1088732
## 3183 -46.2 1.291 5099.1 0.06836679 0.1006557
## 3184 -42.0 4.021 5195.8 0.10609689 0.1006557
## 3185 -46.2 1.291 5099.1 0.06776441 0.1400736
## 3186 -42.0 4.120 5195.8 0.11473272 0.1006557
## 3187 -33.6 1.029 5076.2 0.10609689 0.1400736
## 3188 -47.1 1.415 5099.1 0.10609689 0.1006557
## 3189 -34.6 0.642 5008.7 0.06836679 0.1006557
## 3190 -46.2 1.281 5099.1 0.06836679 0.1400736
## 3191 -46.2 1.250 5099.1 0.06836679 0.1400736
## 3192 -46.2 1.313 5099.1 0.13296860 0.1400736
## 3193 -47.1 1.453 5099.1 0.06776441 0.1088732
## 3194 -47.1 1.410 5099.1 0.13296860 0.1400736
## 3195 -46.2 1.291 5099.1 0.10609689 0.1400736
## 3196 -34.8 0.655 5008.7 0.10609689 0.1006557
## 3197 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3198 -46.2 1.313 5099.1 0.06776441 0.1400736
## 3199 -38.3 0.904 4991.6 0.10609689 0.1006557
## 3200 -46.2 1.313 5099.1 0.06836679 0.1400736
## 3201 -46.2 1.281 5099.1 0.06836679 0.1088732
## 3202 -30.1 0.714 5017.5 0.27285817 0.1006557
## 3203 -42.0 4.153 5195.8 0.09484778 0.1088732
## 3204 -46.2 1.354 5099.1 0.31059507 0.1400736
## 3205 -47.1 1.453 5099.1 0.06836679 0.1006557
## 3206 -46.2 1.250 5099.1 0.10609689 0.1400736
## 3207 -47.1 1.483 5099.1 0.06776441 0.1088732
## 3208 -42.0 4.153 5195.8 0.06836679 0.1006557
## 3209 -46.2 1.334 5099.1 0.10609689 0.1088732
## 3210 -46.2 1.327 5099.1 0.13296860 0.1006557
## 3211 -46.2 1.313 5099.1 0.13296860 0.1400736
## 3212 -46.2 1.266 5099.1 0.06836679 0.1006557
## 3213 -46.2 1.299 5099.1 0.06836679 0.1006557
## 3214 -46.2 1.250 5099.1 0.06836679 0.1088732
## 3215 -38.3 0.898 4991.6 0.10875332 0.1088732
## 3216 -46.2 1.334 5099.1 0.31059507 0.1400736
## 3217 -46.2 1.334 5099.1 0.06776441 0.1006557
## 3218 -40.8 1.260 5076.2 0.13296860 0.1400736
## 3219 -49.5 1.008 4963.6 0.27285817 0.1088732
## 3220 -46.2 1.334 5099.1 0.10875332 0.1006557
## 3221 -37.5 0.886 4963.6 0.13296860 0.1088732
## 3222 -37.5 0.876 4963.6 0.11473272 0.1006557
## 3223 -49.5 1.000 4963.6 0.10609689 0.1006557
## 3224 -34.8 0.651 5008.7 0.10875332 0.1400736
## 3225 -46.2 1.291 5099.1 0.13296860 0.1088732
## 3226 -46.2 1.250 5099.1 0.13296860 0.1088732
## 3227 -46.2 1.327 5099.1 0.06776441 0.1088732
## 3228 -46.2 1.250 5099.1 0.09310345 0.1006557
## 3229 -42.0 4.153 5195.8 0.06776441 0.1400736
## 3230 -31.4 0.879 5076.2 0.13296860 0.1400736
## 3231 -34.8 0.650 5008.7 0.10609689 0.1400736
## 3232 -42.0 4.076 5195.8 0.13510101 0.1166667
## 3233 -46.2 1.299 5099.1 0.06836679 0.1006557
## 3234 -42.0 4.153 5195.8 0.11473272 0.1006557
## 3235 -34.8 0.635 5008.7 0.06776441 0.1006557
## 3236 -46.2 1.313 5099.1 0.06836679 0.1400736
## 3237 -46.2 1.344 5099.1 0.09310345 0.1006557
## 3238 -46.2 1.266 5099.1 0.06836679 0.1400736
## 3239 -46.2 1.291 5099.1 0.11473272 0.1088732
## 3240 -50.8 1.049 4963.6 0.13296860 0.1006557
## 3241 -42.0 4.021 5195.8 0.06776441 0.1006557
## 3242 -46.2 1.266 5099.1 0.06836679 0.1006557
## 3243 -34.8 0.650 5008.7 0.13296860 0.1400736
## 3244 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3245 -46.2 1.281 5099.1 0.13296860 0.1400736
## 3246 -46.2 1.281 5099.1 0.10609689 0.1006557
## 3247 -30.1 0.722 5017.5 0.13296860 0.1400736
## 3248 -34.8 0.646 5008.7 0.06776441 0.1400736
## 3249 -42.0 4.120 5195.8 0.09484778 0.1088732
## 3250 -46.2 1.344 5099.1 0.13296860 0.1006557
## 3251 -49.5 1.043 4963.6 0.10609689 0.1400736
## 3252 -46.2 1.266 5099.1 0.13296860 0.1400736
## 3253 -46.2 1.281 5099.1 0.06836679 0.1400736
## 3254 -31.4 0.883 5076.2 0.31059507 0.1400736
## 3255 -46.2 1.250 5099.1 0.06836679 0.1400736
## 3256 -37.5 0.883 4963.6 0.13296860 0.1006557
## 3257 -31.4 0.881 5076.2 0.13296860 0.1400736
## 3258 -31.4 0.883 5076.2 0.09310345 0.1006557
## 3259 -46.2 1.250 5099.1 0.10609689 0.1400736
## 3260 -30.1 0.715 5017.5 0.08955224 0.1088732
## 3261 -40.0 0.685 5008.7 0.13296860 0.1006557
## 3262 -40.0 0.695 5008.7 0.13296860 0.1006557
## 3263 -31.4 0.883 5076.2 0.31059507 0.1400736
## 3264 -46.2 1.334 5099.1 0.13296860 0.1400736
## 3265 -42.0 4.191 5195.8 0.06776441 0.1006557
## 3266 -42.0 4.076 5195.8 0.10609689 0.1400736
## 3267 -42.0 4.120 5195.8 0.06836679 0.1006557
## 3268 -29.8 0.813 5017.5 0.31059507 0.1400736
## 3269 -50.8 1.049 4963.6 0.13296860 0.1006557
## 3270 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3271 -46.2 1.250 5099.1 0.10609689 0.1088732
## 3272 -49.5 1.025 4963.6 0.27285817 0.1006557
## 3273 -47.1 1.405 5099.1 0.11473272 0.1006557
## 3274 -46.2 1.344 5099.1 0.27285817 0.1006557
## 3275 -47.1 1.435 5099.1 0.10609689 0.1400736
## 3276 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3277 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3278 -34.8 0.650 5008.7 0.13296860 0.1088732
## 3279 -42.0 4.120 5195.8 0.06836679 0.1006557
## 3280 -33.0 0.707 5023.5 0.06836679 0.1006557
## 3281 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3282 -46.2 1.327 5099.1 0.06836679 0.1006557
## 3283 -46.2 1.299 5099.1 0.13296860 0.1006557
## 3284 -30.1 0.714 5017.5 0.10609689 0.1006557
## 3285 -46.2 1.299 5099.1 0.06836679 0.1400736
## 3286 -46.2 1.334 5099.1 0.09484778 0.1006557
## 3287 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3288 -37.5 0.879 4963.6 0.13296860 0.1006557
## 3289 -46.2 1.281 5099.1 0.06836679 0.1088732
## 3290 -47.1 1.365 5099.1 0.06836679 0.1006557
## 3291 -42.0 4.076 5195.8 0.06836679 0.1400736
## 3292 -47.1 1.479 5099.1 0.09310345 0.1006557
## 3293 -31.4 0.873 5076.2 0.13296860 0.1400736
## 3294 -37.5 0.886 4963.6 0.27285817 0.1006557
## 3295 -42.0 4.120 5195.8 0.11473272 0.1088732
## 3296 -47.1 1.405 5099.1 0.06776441 0.1088732
## 3297 -26.9 0.731 5017.5 0.13296860 0.1400736
## 3298 -31.4 0.881 5076.2 0.27285817 0.1006557
## 3299 -31.4 0.879 5076.2 0.13296860 0.1006557
## 3300 -31.4 0.873 5076.2 0.27285817 0.1088732
## 3301 -42.0 4.191 5195.8 0.10609689 0.1400736
## 3302 -39.8 0.739 4991.6 0.10609689 0.1088732
## 3303 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3304 -40.0 0.682 5008.7 0.11473272 0.1006557
## 3305 -34.8 0.635 5008.7 0.06776441 0.1006557
## 3306 -46.2 1.244 5099.1 0.10609689 0.1400736
## 3307 -47.1 1.405 5099.1 0.09310345 0.1006557
## 3308 -46.2 1.327 5099.1 0.06776441 0.1006557
## 3309 -38.3 0.904 4991.6 0.13296860 0.1400736
## 3310 -40.8 1.260 5076.2 0.10609689 0.1400736
## 3311 -46.2 1.291 5099.1 0.13296860 0.1006557
## 3312 -49.5 0.959 4963.6 0.10609689 0.1006557
## 3313 -49.5 0.985 4963.6 0.27285817 0.1006557
## 3314 -31.4 0.859 5076.2 0.13296860 0.1006557
## 3315 -49.5 0.987 4963.6 0.10875332 0.1006557
## 3316 -34.8 0.644 5008.7 0.27285817 0.1006557
## 3317 -46.2 1.299 5099.1 0.06836679 0.1006557
## 3318 -42.0 4.076 5195.8 0.10609689 0.1088732
## 3319 -40.0 0.672 5008.7 0.13296860 0.1400736
## 3320 -46.2 1.291 5099.1 0.06836679 0.1088732
## 3321 -37.5 0.877 4963.6 0.13296860 0.1006557
## 3322 -26.9 0.754 5017.5 0.10609689 0.1088732
## 3323 -46.2 1.299 5099.1 0.10875332 0.1006557
## 3324 -37.5 0.879 4963.6 0.13296860 0.1400736
## 3325 -37.5 0.878 4963.6 0.13296860 0.1006557
## 3326 -47.1 1.405 5099.1 0.13510101 0.1006557
## 3327 -37.5 0.882 4963.6 0.06776441 0.1088732
## 3328 -30.1 0.714 5017.5 0.10609689 0.1400736
## 3329 -31.4 0.861 5076.2 0.13296860 0.1400736
## 3330 -46.2 1.327 5099.1 0.13296860 0.1006557
## 3331 -46.2 1.266 5099.1 0.31059507 0.1400736
## 3332 -46.2 1.327 5099.1 0.06836679 0.1006557
## 3333 -46.2 1.344 5099.1 0.13296860 0.1006557
## 3334 -40.8 1.260 5076.2 0.06776441 0.1400736
## 3335 -46.2 1.266 5099.1 0.06836679 0.1400736
## 3336 -29.8 0.768 5017.5 0.27285817 0.1006557
## 3337 -46.2 1.291 5099.1 0.10875332 0.1006557
## 3338 -46.2 1.291 5099.1 0.09484778 0.1006557
## 3339 -40.3 0.840 4991.6 0.27285817 0.1006557
## 3340 -46.2 1.291 5099.1 0.06836679 0.1006557
## 3341 -46.2 1.327 5099.1 0.06836679 0.1006557
## 3342 -46.2 1.313 5099.1 0.06776441 0.1088732
## 3343 -26.9 0.730 5017.5 0.10875332 0.1400736
## 3344 -49.5 0.959 4963.6 0.27285817 0.1006557
## 3345 -46.2 1.344 5099.1 0.06836679 0.1006557
## 3346 -40.3 0.797 4991.6 0.13296860 0.1006557
## 3347 -46.2 1.299 5099.1 0.06776441 0.1006557
## 3348 -29.8 0.781 5017.5 0.27285817 0.1006557
## 3349 -26.9 0.728 5017.5 0.10609689 0.1400736
## 3350 -46.2 1.259 5099.1 0.09484778 0.1006557
## 3351 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3352 -46.2 1.299 5099.1 0.06776441 0.1006557
## 3353 -46.2 1.291 5099.1 0.06836679 0.1006557
## 3354 -40.8 1.260 5076.2 0.31059507 0.1400736
## 3355 -46.2 1.334 5099.1 0.13296860 0.1166667
## 3356 -33.6 1.072 5076.2 0.10875332 0.1400736
## 3357 -46.2 1.266 5099.1 0.13296860 0.1006557
## 3358 -46.2 1.344 5099.1 0.13296860 0.1006557
## 3359 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3360 -29.8 0.743 5017.5 0.27285817 0.1088732
## 3361 -42.0 4.191 5195.8 0.10875332 0.1006557
## 3362 -38.3 0.899 4991.6 0.06776441 0.1088732
## 3363 -38.3 0.899 4991.6 0.10609689 0.1400736
## 3364 -46.2 1.354 5099.1 0.06776441 0.1006557
## 3365 -46.2 1.299 5099.1 0.10609689 0.1006557
## 3366 -42.0 4.120 5195.8 0.10609689 0.1400736
## 3367 -46.2 1.334 5099.1 0.06776441 0.1088732
## 3368 -31.4 0.881 5076.2 0.10609689 0.1400736
## 3369 -34.8 0.643 5008.7 0.13296860 0.1006557
## 3370 -42.0 4.076 5195.8 0.10609689 0.1006557
## 3371 -46.2 1.266 5099.1 0.06836679 0.1006557
## 3372 -30.1 0.714 5017.5 0.13296860 0.1006557
## 3373 -34.8 0.646 5008.7 0.13510101 0.1006557
## 3374 -42.0 4.120 5195.8 0.13296860 0.1006557
## 3375 -47.1 1.405 5099.1 0.06776441 0.1088732
## 3376 -46.2 1.281 5099.1 0.13296860 0.1400736
## 3377 -39.8 0.767 4991.6 0.13296860 0.1006557
## 3378 -46.2 1.299 5099.1 0.10875332 0.1400736
## 3379 -42.0 4.191 5195.8 0.10609689 0.1006557
## 3380 -42.0 4.191 5195.8 0.10609689 0.1006557
## 3381 -42.0 4.191 5195.8 0.13296860 0.1006557
## 3382 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3383 -46.2 1.299 5099.1 0.06776441 0.1006557
## 3384 -46.2 1.250 5099.1 0.10609689 0.1400736
## 3385 -34.8 0.637 5008.7 0.06836679 0.1006557
## 3386 -46.2 1.354 5099.1 0.13296860 0.1400736
## 3387 -29.8 0.741 5017.5 0.13296860 0.1006557
## 3388 -46.2 1.344 5099.1 0.13296860 0.1006557
## 3389 -46.2 1.281 5099.1 0.09484778 0.1400736
## 3390 -46.2 1.334 5099.1 0.06836679 0.1400736
## 3391 -42.0 4.153 5195.8 0.13296860 0.1006557
## 3392 -40.8 1.260 5076.2 0.13296860 0.1006557
## 3393 -46.2 1.344 5099.1 0.06776441 0.1400736
## 3394 -31.4 0.859 5076.2 0.13296860 0.1006557
## 3395 -46.2 1.281 5099.1 0.31059507 0.1400736
## 3396 -46.2 1.266 5099.1 0.06776441 0.1088732
## 3397 -46.2 1.334 5099.1 0.13296860 0.1006557
## 3398 -30.1 0.714 5017.5 0.06836679 0.1400736
## 3399 -46.2 1.266 5099.1 0.06836679 0.1400736
## 3400 -46.2 1.334 5099.1 0.13296860 0.1006557
## 3401 -47.1 1.479 5099.1 0.11473272 0.1088732
## 3402 -46.2 1.244 5099.1 0.13296860 0.1006557
## 3403 -42.0 4.021 5195.8 0.06776441 0.1006557
## 3404 -30.1 0.715 5017.5 0.27285817 0.1006557
## 3405 -42.0 4.191 5195.8 0.10875332 0.1400736
## 3406 -37.5 0.879 4963.6 0.31059507 0.1400736
## 3407 -37.5 0.879 4963.6 0.27285817 0.1088732
## 3408 -39.8 0.742 4991.6 0.13296860 0.1006557
## 3409 -46.2 1.354 5099.1 0.06776441 0.1006557
## 3410 -37.5 0.877 4963.6 0.10609689 0.1400736
## 3411 -46.2 1.334 5099.1 0.11473272 0.1006557
## 3412 -42.0 4.120 5195.8 0.10609689 0.1400736
## 3413 -46.2 1.327 5099.1 0.06836679 0.1006557
## 3414 -46.2 1.344 5099.1 0.11473272 0.1006557
## 3415 -46.2 1.264 5099.1 0.10875332 0.1006557
## 3416 -46.2 1.266 5099.1 0.10875332 0.1006557
## 3417 -40.3 0.870 4991.6 0.27285817 0.1006557
## 3418 -30.1 0.716 5017.5 0.13296860 0.1400736
## 3419 -37.5 0.886 4963.6 0.13296860 0.1088732
## 3420 -46.2 1.334 5099.1 0.06836679 0.1006557
## 3421 -46.2 1.327 5099.1 0.13296860 0.1400736
## 3422 -46.2 1.334 5099.1 0.06836679 0.1006557
## 3423 -29.8 0.768 5017.5 0.27285817 0.1088732
## 3424 -50.8 1.041 4963.6 0.13296860 0.1006557
## 3425 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3426 -46.2 1.344 5099.1 0.06776441 0.1400736
## 3427 -46.2 1.344 5099.1 0.13296860 0.1088732
## 3428 -39.8 0.754 4991.6 0.10609689 0.1006557
## 3429 -46.2 1.266 5099.1 0.31059507 0.1166667
## 3430 -46.2 1.313 5099.1 0.06836679 0.1400736
## 3431 -42.0 4.153 5195.8 0.10609689 0.1006557
## 3432 -42.0 4.021 5195.8 0.10609689 0.1088732
## 3433 -40.3 0.810 4991.6 0.27285817 0.1006557
## 3434 -40.3 0.782 4991.6 0.11473272 0.1006557
## 3435 -42.0 4.076 5195.8 0.10609689 0.1400736
## 3436 -46.2 1.281 5099.1 0.13296860 0.1400736
## 3437 -50.8 1.050 4963.6 0.13296860 0.1006557
## 3438 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3439 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3440 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3441 -31.4 0.879 5076.2 0.06836679 0.1400736
## 3442 -46.2 1.281 5099.1 0.06836679 0.1006557
## 3443 -46.2 1.281 5099.1 0.10609689 0.1006557
## 3444 -46.2 1.250 5099.1 0.06776441 0.1400736
## 3445 -46.2 1.299 5099.1 0.06836679 0.1006557
## 3446 -37.5 0.880 4963.6 0.11473272 0.1006557
## 3447 -46.2 1.334 5099.1 0.10609689 0.1400736
## 3448 -46.2 1.327 5099.1 0.06776441 0.1088732
## 3449 -46.2 1.244 5099.1 0.13296860 0.1400736
## 3450 -37.5 0.884 4963.6 0.10609689 0.1006557
## 3451 -47.1 1.466 5099.1 0.06836679 0.1006557
## 3452 -38.3 0.905 4991.6 0.09484778 0.1006557
## 3453 -47.1 1.479 5099.1 0.27285817 0.1006557
## 3454 -38.3 0.899 4991.6 0.06836679 0.1006557
## 3455 -50.8 1.048 4963.6 0.13296860 0.1400736
## 3456 -46.2 1.344 5099.1 0.06836679 0.1400736
## 3457 -49.5 0.942 4963.6 0.13296860 0.1400736
## 3458 -46.2 1.266 5099.1 0.10609689 0.1400736
## 3459 -46.2 1.291 5099.1 0.10609689 0.1006557
## 3460 -46.2 1.281 5099.1 0.13296860 0.1006557
## 3461 -26.9 0.724 5017.5 0.13296860 0.1006557
## 3462 -42.0 4.120 5195.8 0.11473272 0.1006557
## 3463 -34.6 0.642 5008.7 0.11473272 0.1400736
## 3464 -34.8 0.646 5008.7 0.13510101 0.1006557
## 3465 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3466 -30.1 0.719 5017.5 0.06836679 0.1006557
## 3467 -47.1 1.405 5099.1 0.10875332 0.1006557
## 3468 -36.1 4.966 5228.1 0.13296860 0.1006557
## 3469 -40.8 1.268 5076.2 0.13296860 0.1006557
## 3470 -34.6 0.644 5008.7 0.27285817 0.1006557
## 3471 -41.8 4.959 5228.1 0.06836679 0.1088732
## 3472 -36.1 4.965 5228.1 0.11473272 0.1006557
## 3473 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3474 -34.8 0.653 5008.7 0.13296860 0.1088732
## 3475 -42.7 4.957 5228.1 0.13296860 0.1400736
## 3476 -46.2 1.313 5099.1 0.10609689 0.1400736
## 3477 -42.7 4.960 5228.1 0.13296860 0.1006557
## 3478 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3479 -36.1 4.964 5228.1 0.13296860 0.1400736
## 3480 -42.7 4.962 5228.1 0.27285817 0.1006557
## 3481 -47.1 1.479 5099.1 0.09484778 0.1006557
## 3482 -36.4 4.859 5191.0 0.06836679 0.1006557
## 3483 -42.7 4.963 5228.1 0.13296860 0.1006557
## 3484 -36.4 4.855 5191.0 0.06836679 0.1006557
## 3485 -41.8 4.967 5228.1 0.06776441 0.1006557
## 3486 -42.7 4.962 5228.1 0.06836679 0.1400736
## 3487 -42.7 4.962 5228.1 0.10609689 0.1006557
## 3488 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3489 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3490 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3491 -31.4 0.843 5076.2 0.09484778 0.1006557
## 3492 -29.8 0.741 5017.5 0.27285817 0.1006557
## 3493 -31.4 0.869 5076.2 0.13510101 0.1006557
## 3494 -41.8 4.960 5228.1 0.10609689 0.1400736
## 3495 -42.7 4.960 5228.1 0.06836679 0.1006557
## 3496 -36.4 4.857 5191.0 0.09484778 0.1006557
## 3497 -41.8 4.967 5228.1 0.06836679 0.1006557
## 3498 -36.1 4.966 5228.1 0.13296860 0.1006557
## 3499 -36.1 4.963 5228.1 0.11473272 0.1006557
## 3500 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3501 -36.4 4.855 5191.0 0.10875332 0.1006557
## 3502 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3503 -36.4 4.857 5191.0 0.06836679 0.1088732
## 3504 -47.1 1.405 5099.1 0.10609689 0.1006557
## 3505 -42.7 4.963 5228.1 0.27285817 0.1006557
## 3506 -36.4 4.864 5191.0 0.13296860 0.1400736
## 3507 -42.0 4.021 5195.8 0.10609689 0.1006557
## 3508 -42.7 4.963 5228.1 0.10609689 0.1006557
## 3509 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3510 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3511 -46.2 1.244 5099.1 0.13510101 0.1400736
## 3512 -46.2 1.313 5099.1 0.13296860 0.1006557
## 3513 -46.2 1.313 5099.1 0.06836679 0.1400736
## 3514 -26.9 0.720 5017.5 0.27285817 0.1006557
## 3515 -34.8 0.653 5008.7 0.09310345 0.1400736
## 3516 -31.4 0.881 5076.2 0.10609689 0.1400736
## 3517 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3518 -42.7 4.962 5228.1 0.10875332 0.1006557
## 3519 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3520 -36.4 4.859 5191.0 0.06836679 0.1006557
## 3521 -36.4 4.857 5191.0 0.10609689 0.1400736
## 3522 -36.4 4.855 5191.0 0.13510101 0.1006557
## 3523 -41.8 4.865 5228.1 0.13296860 0.1400736
## 3524 -40.0 0.682 5008.7 0.31059507 0.1400736
## 3525 -42.7 4.962 5228.1 0.09310345 0.1006557
## 3526 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3527 -42.7 4.962 5228.1 0.06836679 0.1006557
## 3528 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3529 -42.7 4.963 5228.1 0.06836679 0.1400736
## 3530 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3531 -36.4 4.857 5191.0 0.06836679 0.1006557
## 3532 -42.7 4.963 5228.1 0.13296860 0.1400736
## 3533 -36.4 4.855 5191.0 0.13510101 0.1006557
## 3534 -29.8 0.773 5017.5 0.13510101 0.1006557
## 3535 -41.8 4.967 5228.1 0.09310345 0.1006557
## 3536 -36.4 4.855 5191.0 0.11473272 0.1006557
## 3537 -36.4 4.859 5191.0 0.10875332 0.1400736
## 3538 -36.4 4.857 5191.0 0.06836679 0.1006557
## 3539 -36.1 4.963 5228.1 0.10609689 0.1006557
## 3540 -46.2 1.313 5099.1 0.13296860 0.1088732
## 3541 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3542 -36.1 4.964 5228.1 0.10609689 0.1006557
## 3543 -41.8 4.961 5228.1 0.10609689 0.1400736
## 3544 -36.1 4.963 5228.1 0.10609689 0.1006557
## 3545 -42.7 4.962 5228.1 0.10609689 0.1006557
## 3546 -26.9 0.730 5017.5 0.08955224 0.1400736
## 3547 -36.4 4.859 5191.0 0.06776441 0.1400736
## 3548 -42.7 4.963 5228.1 0.06836679 0.1400736
## 3549 -42.7 4.959 5228.1 0.27285817 0.1006557
## 3550 -47.1 1.405 5099.1 0.06776441 0.1006557
## 3551 -36.1 4.963 5228.1 0.13296860 0.1400736
## 3552 -36.4 4.859 5191.0 0.13296860 0.1088732
## 3553 -36.4 4.857 5191.0 0.06836679 0.1006557
## 3554 -47.1 1.405 5099.1 0.10609689 0.1006557
## 3555 -36.1 4.966 5228.1 0.10609689 0.1006557
## 3556 -47.1 1.405 5099.1 0.06776441 0.1006557
## 3557 -46.2 1.299 5099.1 0.06836679 0.1006557
## 3558 -41.8 4.959 5228.1 0.09310345 0.1006557
## 3559 -36.4 4.859 5191.0 0.06776441 0.1088732
## 3560 -46.2 1.244 5099.1 0.06836679 0.1006557
## 3561 -47.1 1.405 5099.1 0.10609689 0.1088732
## 3562 -36.4 4.864 5191.0 0.06836679 0.1006557
## 3563 -42.0 4.021 5195.8 0.31059507 0.1006557
## 3564 -36.1 4.964 5228.1 0.10609689 0.1400736
## 3565 -46.2 1.250 5099.1 0.13296860 0.1400736
## 3566 -42.0 4.021 5195.8 0.13296860 0.1088732
## 3567 -36.4 4.859 5191.0 0.06836679 0.1006557
## 3568 -47.1 1.405 5099.1 0.11473272 0.1006557
## 3569 -41.8 4.967 5228.1 0.10609689 0.1006557
## 3570 -41.8 4.960 5228.1 0.13296860 0.1006557
## 3571 -42.7 4.962 5228.1 0.10609689 0.1006557
## 3572 -42.7 4.960 5228.1 0.10609689 0.1006557
## 3573 -42.7 4.957 5228.1 0.11473272 0.1006557
## 3574 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3575 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3576 -36.1 4.964 5228.1 0.13296860 0.1400736
## 3577 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3578 -36.4 4.859 5191.0 0.13296860 0.1006557
## 3579 -42.0 4.021 5195.8 0.13296860 0.1088732
## 3580 -50.8 1.050 4963.6 0.06836679 0.1088732
## 3581 -47.1 1.405 5099.1 0.10875332 0.1006557
## 3582 -36.1 4.964 5228.1 0.10875332 0.1006557
## 3583 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3584 -36.4 4.864 5191.0 0.06836679 0.1400736
## 3585 -36.1 4.964 5228.1 0.10609689 0.1088732
## 3586 -36.4 4.855 5191.0 0.06836679 0.1006557
## 3587 -36.4 4.864 5191.0 0.08955224 0.1006557
## 3588 -42.7 4.957 5228.1 0.09484778 0.1006557
## 3589 -47.1 1.405 5099.1 0.13296860 0.1400736
## 3590 -36.1 4.963 5228.1 0.13296860 0.1400736
## 3591 -36.4 4.857 5191.0 0.10609689 0.1088732
## 3592 -47.1 1.405 5099.1 0.13296860 0.1400736
## 3593 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3594 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3595 -36.4 4.864 5191.0 0.10609689 0.1088732
## 3596 -42.0 4.021 5195.8 0.09310345 0.1400736
## 3597 -50.0 1.640 5099.1 0.13510101 0.1166667
## 3598 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3599 -41.8 4.959 5228.1 0.11473272 0.1006557
## 3600 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3601 -36.1 4.964 5228.1 0.10609689 0.1400736
## 3602 -41.8 4.947 5228.1 0.06776441 0.1006557
## 3603 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3604 -42.7 4.962 5228.1 0.06776441 0.1006557
## 3605 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3606 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3607 -47.1 1.405 5099.1 0.13296860 0.1400736
## 3608 -36.4 4.857 5191.0 0.13296860 0.1088732
## 3609 -30.1 0.722 5017.5 0.06836679 0.1400736
## 3610 -31.4 0.869 5076.2 0.06836679 0.1088732
## 3611 -36.4 4.855 5191.0 0.06776441 0.1088732
## 3612 -41.8 4.967 5228.1 0.10609689 0.1400736
## 3613 -47.1 1.405 5099.1 0.10609689 0.1006557
## 3614 -46.2 1.250 5099.1 0.09310345 0.1400736
## 3615 -36.1 4.966 5228.1 0.10609689 0.1006557
## 3616 -36.1 4.966 5228.1 0.13296860 0.1088732
## 3617 -36.4 4.857 5191.0 0.13296860 0.1400736
## 3618 -36.4 4.857 5191.0 0.10609689 0.1006557
## 3619 -36.4 4.857 5191.0 0.27285817 0.1006557
## 3620 -46.2 1.250 5099.1 0.09310345 0.1006557
## 3621 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3622 -36.4 4.859 5191.0 0.06836679 0.1006557
## 3623 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3624 -41.8 4.959 5228.1 0.10609689 0.1088732
## 3625 -42.0 4.076 5195.8 0.13296860 0.1006557
## 3626 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3627 -31.4 0.869 5076.2 0.27285817 0.1006557
## 3628 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3629 -29.8 0.773 5017.5 0.27285817 0.1006557
## 3630 -42.7 4.963 5228.1 0.10609689 0.1088732
## 3631 -42.7 4.963 5228.1 0.10609689 0.1006557
## 3632 -41.8 4.958 5228.1 0.13296860 0.1400736
## 3633 -33.6 1.007 5076.2 0.06836679 0.1400736
## 3634 -42.7 4.963 5228.1 0.06776441 0.1400736
## 3635 -42.7 4.957 5228.1 0.06776441 0.1006557
## 3636 -36.4 4.855 5191.0 0.06836679 0.1006557
## 3637 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3638 -46.2 1.250 5099.1 0.09310345 0.1088732
## 3639 -42.0 4.191 5195.8 0.06836679 0.1006557
## 3640 -47.1 1.405 5099.1 0.11473272 0.1006557
## 3641 -41.8 4.959 5228.1 0.06776441 0.1400736
## 3642 -36.1 4.963 5228.1 0.06776441 0.1006557
## 3643 -36.4 4.864 5191.0 0.13296860 0.1006557
## 3644 -36.4 4.855 5191.0 0.11473272 0.1006557
## 3645 -41.8 4.959 5228.1 0.06776441 0.1006557
## 3646 -47.1 1.405 5099.1 0.13296860 0.1400736
## 3647 -47.1 1.405 5099.1 0.13296860 0.1400736
## 3648 -31.4 0.825 5076.2 0.31059507 0.1400736
## 3649 -42.0 4.021 5195.8 0.06836679 0.1006557
## 3650 -36.1 4.964 5228.1 0.06836679 0.1006557
## 3651 -50.0 1.531 5099.1 0.06836679 0.1006557
## 3652 -42.7 4.963 5228.1 0.13296860 0.1006557
## 3653 -41.8 4.967 5228.1 0.13296860 0.1006557
## 3654 -36.4 4.860 5191.0 0.06776441 0.1006557
## 3655 -36.4 4.859 5191.0 0.13296860 0.1006557
## 3656 -42.7 4.962 5228.1 0.06836679 0.1006557
## 3657 -41.8 4.959 5228.1 0.09484778 0.1006557
## 3658 -41.8 4.967 5228.1 0.10609689 0.1006557
## 3659 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3660 -36.4 4.864 5191.0 0.13296860 0.1006557
## 3661 -41.8 4.959 5228.1 0.27285817 0.1006557
## 3662 -36.4 4.859 5191.0 0.08955224 0.1006557
## 3663 -42.7 4.963 5228.1 0.09484778 0.1006557
## 3664 -42.0 4.076 5195.8 0.10875332 0.1400736
## 3665 -36.4 4.864 5191.0 0.06836679 0.1400736
## 3666 -36.1 4.966 5228.1 0.10609689 0.1006557
## 3667 -42.7 4.959 5228.1 0.06776441 0.1006557
## 3668 -46.2 1.250 5099.1 0.06836679 0.1088732
## 3669 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3670 -46.2 1.250 5099.1 0.11473272 0.1400736
## 3671 -36.1 4.966 5228.1 0.13296860 0.1006557
## 3672 -47.1 1.405 5099.1 0.11473272 0.1006557
## 3673 -47.1 1.405 5099.1 0.10609689 0.1006557
## 3674 -41.8 4.967 5228.1 0.13510101 0.1088732
## 3675 -36.1 4.964 5228.1 0.13296860 0.1088732
## 3676 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3677 -42.7 4.962 5228.1 0.06836679 0.1006557
## 3678 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3679 -41.8 4.959 5228.1 0.13296860 0.1006557
## 3680 -41.8 4.967 5228.1 0.10875332 0.1006557
## 3681 -36.1 4.965 5228.1 0.11473272 0.1088732
## 3682 -41.8 4.967 5228.1 0.06836679 0.1006557
## 3683 -36.1 4.964 5228.1 0.10875332 0.1006557
## 3684 -46.2 1.250 5099.1 0.13510101 0.1006557
## 3685 -41.8 4.961 5228.1 0.10609689 0.1006557
## 3686 -46.2 1.250 5099.1 0.13296860 0.1006557
## 3687 -41.8 4.967 5228.1 0.06776441 0.1006557
## 3688 -31.4 0.869 5076.2 0.13510101 0.1400736
## 3689 -42.7 4.963 5228.1 0.13296860 0.1400736
## 3690 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3691 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3692 -42.7 4.963 5228.1 0.06836679 0.1006557
## 3693 -36.1 4.964 5228.1 0.13296860 0.1400736
## 3694 -36.1 4.964 5228.1 0.06776441 0.1006557
## 3695 -42.7 4.960 5228.1 0.13296860 0.1400736
## 3696 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3697 -36.1 4.966 5228.1 0.06776441 0.1006557
## 3698 -36.4 4.864 5191.0 0.06836679 0.1006557
## 3699 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3700 -31.4 0.881 5076.2 0.27285817 0.1006557
## 3701 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3702 -41.8 4.959 5228.1 0.06776441 0.1006557
## 3703 -36.1 4.963 5228.1 0.10609689 0.1006557
## 3704 -47.1 1.405 5099.1 0.06776441 0.1006557
## 3705 -41.8 4.959 5228.1 0.13296860 0.1088732
## 3706 -42.7 4.957 5228.1 0.10875332 0.1006557
## 3707 -46.2 1.313 5099.1 0.06776441 0.1400736
## 3708 -41.8 4.959 5228.1 0.09310345 0.1006557
## 3709 -42.7 4.957 5228.1 0.06776441 0.1006557
## 3710 -47.1 1.405 5099.1 0.09484778 0.1088732
## 3711 -36.1 4.964 5228.1 0.10609689 0.1400736
## 3712 -42.7 4.962 5228.1 0.13510101 0.1006557
## 3713 -41.8 4.959 5228.1 0.09310345 0.1400736
## 3714 -42.0 4.021 5195.8 0.10609689 0.1400736
## 3715 -41.8 4.959 5228.1 0.10609689 0.1006557
## 3716 -36.4 4.864 5191.0 0.13296860 0.1006557
## 3717 -36.4 4.857 5191.0 0.09310345 0.1006557
## 3718 -41.8 4.960 5228.1 0.13510101 0.1088732
## 3719 -36.4 4.857 5191.0 0.06836679 0.1006557
## 3720 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3721 -36.1 4.964 5228.1 0.06836679 0.1006557
## 3722 -42.7 4.962 5228.1 0.11473272 0.1006557
## 3723 -36.4 4.857 5191.0 0.11473272 0.1088732
## 3724 -41.8 4.959 5228.1 0.27285817 0.1006557
## 3725 -36.1 4.963 5228.1 0.08955224 0.1006557
## 3726 -41.8 4.959 5228.1 0.06836679 0.1400736
## 3727 -36.4 4.859 5191.0 0.06776441 0.1006557
## 3728 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3729 -46.2 1.250 5099.1 0.06836679 0.1400736
## 3730 -36.4 4.855 5191.0 0.13510101 0.1400736
## 3731 -42.7 4.957 5228.1 0.06836679 0.1006557
## 3732 -42.7 4.962 5228.1 0.27285817 0.1088732
## 3733 -41.8 4.967 5228.1 0.13296860 0.1400736
## 3734 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3735 -46.2 1.250 5099.1 0.06836679 0.1400736
## 3736 -36.1 4.970 5228.1 0.10609689 0.1088732
## 3737 -42.0 4.021 5195.8 0.27285817 0.1006557
## 3738 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3739 -36.1 4.966 5228.1 0.06836679 0.1006557
## 3740 -36.1 4.963 5228.1 0.10609689 0.1006557
## 3741 -36.1 4.964 5228.1 0.06776441 0.1006557
## 3742 -39.8 0.748 4991.6 0.09484778 0.1006557
## 3743 -41.8 4.959 5228.1 0.27285817 0.1006557
## 3744 -36.1 4.965 5228.1 0.06836679 0.1006557
## 3745 -41.8 4.959 5228.1 0.13510101 0.1006557
## 3746 -42.7 4.962 5228.1 0.10609689 0.1006557
## 3747 -36.4 4.855 5191.0 0.13296860 0.1400736
## 3748 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3749 -42.7 4.960 5228.1 0.10875332 0.1088732
## 3750 -36.1 4.970 5228.1 0.06836679 0.1006557
## 3751 -36.4 4.855 5191.0 0.13296860 0.1400736
## 3752 -36.1 4.963 5228.1 0.13296860 0.1088732
## 3753 -36.1 4.966 5228.1 0.13296860 0.1088732
## 3754 -36.4 4.855 5191.0 0.13510101 0.1400736
## 3755 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3756 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3757 -46.2 1.244 5099.1 0.10609689 0.1400736
## 3758 -36.1 4.964 5228.1 0.09484778 0.1006557
## 3759 -36.1 4.964 5228.1 0.11473272 0.1006557
## 3760 -42.7 4.958 5228.1 0.06836679 0.1006557
## 3761 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3762 -42.0 4.021 5195.8 0.09310345 0.1006557
## 3763 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3764 -36.4 4.857 5191.0 0.11473272 0.1088732
## 3765 -41.8 4.959 5228.1 0.06836679 0.1400736
## 3766 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3767 -42.0 4.021 5195.8 0.10609689 0.1006557
## 3768 -36.1 4.966 5228.1 0.06836679 0.1006557
## 3769 -46.2 1.250 5099.1 0.13296860 0.1400736
## 3770 -42.7 4.962 5228.1 0.10875332 0.1400736
## 3771 -40.8 1.268 5076.2 0.13296860 0.1400736
## 3772 -29.8 0.773 5017.5 0.27285817 0.1006557
## 3773 -41.8 4.967 5228.1 0.06836679 0.1006557
## 3774 -36.1 4.964 5228.1 0.27285817 0.1006557
## 3775 -41.8 4.959 5228.1 0.06836679 0.1400736
## 3776 -36.1 4.966 5228.1 0.10609689 0.1400736
## 3777 -36.4 4.859 5191.0 0.06776441 0.1006557
## 3778 -42.7 4.962 5228.1 0.06776441 0.1006557
## 3779 -41.8 4.959 5228.1 0.11473272 0.1006557
## 3780 -41.8 4.967 5228.1 0.10609689 0.1006557
## 3781 -36.4 4.864 5191.0 0.06836679 0.1088732
## 3782 -42.7 4.957 5228.1 0.13296860 0.1400736
## 3783 -41.8 4.947 5228.1 0.06836679 0.1400736
## 3784 -46.2 1.313 5099.1 0.13296860 0.1006557
## 3785 -36.4 4.859 5191.0 0.13296860 0.1006557
## 3786 -39.8 0.754 4991.6 0.13510101 0.1006557
## 3787 -46.2 1.259 5099.1 0.09484778 0.1006557
## 3788 -36.4 4.857 5191.0 0.10609689 0.1006557
## 3789 -36.1 4.966 5228.1 0.10609689 0.1088732
## 3790 -36.1 4.963 5228.1 0.11473272 0.1088732
## 3791 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3792 -36.4 4.855 5191.0 0.06836679 0.1006557
## 3793 -36.1 4.966 5228.1 0.06836679 0.1006557
## 3794 -46.2 1.313 5099.1 0.06776441 0.1088732
## 3795 -41.8 4.959 5228.1 0.06776441 0.1400736
## 3796 -36.4 4.857 5191.0 0.10609689 0.1006557
## 3797 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3798 -36.4 4.859 5191.0 0.13296860 0.1400736
## 3799 -42.0 4.406 5195.8 0.31059507 0.1400736
## 3800 -46.2 1.250 5099.1 0.06836679 0.1400736
## 3801 -42.7 4.960 5228.1 0.10875332 0.1006557
## 3802 -42.0 4.021 5195.8 0.09484778 0.1006557
## 3803 -42.7 4.963 5228.1 0.13296860 0.1006557
## 3804 -47.1 1.405 5099.1 0.09484778 0.1006557
## 3805 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3806 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3807 -46.2 1.313 5099.1 0.06776441 0.1400736
## 3808 -40.0 0.682 5008.7 0.10609689 0.1006557
## 3809 -46.2 1.299 5099.1 0.31059507 0.1400736
## 3810 -31.4 0.881 5076.2 0.13296860 0.1400736
## 3811 -36.4 4.857 5191.0 0.10609689 0.1400736
## 3812 -41.8 4.865 5228.1 0.06776441 0.1006557
## 3813 -42.7 4.963 5228.1 0.10609689 0.1006557
## 3814 -47.1 1.405 5099.1 0.13510101 0.1006557
## 3815 -42.0 4.021 5195.8 0.11473272 0.1006557
## 3816 -47.1 1.405 5099.1 0.10609689 0.1400736
## 3817 -36.1 4.965 5228.1 0.09484778 0.1006557
## 3818 -36.1 4.966 5228.1 0.06836679 0.1006557
## 3819 -42.7 4.962 5228.1 0.27285817 0.1006557
## 3820 -42.0 4.021 5195.8 0.13296860 0.1088732
## 3821 -36.1 4.964 5228.1 0.10609689 0.1400736
## 3822 -42.0 4.021 5195.8 0.10609689 0.1088732
## 3823 -46.2 1.313 5099.1 0.11473272 0.1400736
## 3824 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3825 -41.8 4.959 5228.1 0.10609689 0.1400736
## 3826 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3827 -46.2 1.250 5099.1 0.06836679 0.1006557
## 3828 -42.0 4.021 5195.8 0.13296860 0.1088732
## 3829 -41.8 4.959 5228.1 0.13296860 0.1006557
## 3830 -36.4 4.864 5191.0 0.13296860 0.1006557
## 3831 -41.8 4.865 5228.1 0.06836679 0.1006557
## 3832 -42.7 4.957 5228.1 0.10609689 0.1006557
## 3833 -36.1 4.963 5228.1 0.06836679 0.1006557
## 3834 -42.7 4.957 5228.1 0.09310345 0.1400736
## 3835 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3836 -46.2 1.313 5099.1 0.06836679 0.1088732
## 3837 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3838 -41.8 4.959 5228.1 0.11473272 0.1400736
## 3839 -42.7 4.962 5228.1 0.13296860 0.1088732
## 3840 -42.7 4.957 5228.1 0.06776441 0.1400736
## 3841 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3842 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3843 -41.8 4.959 5228.1 0.09484778 0.1006557
## 3844 -36.1 4.965 5228.1 0.13296860 0.1400736
## 3845 -42.7 4.957 5228.1 0.11473272 0.1400736
## 3846 -41.8 4.959 5228.1 0.09310345 0.1088732
## 3847 -42.7 4.960 5228.1 0.13296860 0.1400736
## 3848 -36.4 4.855 5191.0 0.06836679 0.1006557
## 3849 -42.7 4.961 5228.1 0.09310345 0.1088732
## 3850 -36.1 4.966 5228.1 0.13510101 0.1006557
## 3851 -36.4 4.859 5191.0 0.06776441 0.1006557
## 3852 -42.0 4.191 5195.8 0.11473272 0.1006557
## 3853 -46.2 1.250 5099.1 0.06776441 0.1006557
## 3854 -36.1 4.963 5228.1 0.10609689 0.1400736
## 3855 -41.8 4.967 5228.1 0.10875332 0.1006557
## 3856 -36.4 4.864 5191.0 0.06836679 0.1006557
## 3857 -36.4 4.864 5191.0 0.06776441 0.1006557
## 3858 -34.6 0.645 5008.7 0.09484778 0.1006557
## 3859 -36.1 4.964 5228.1 0.13296860 0.1400736
## 3860 -47.1 1.405 5099.1 0.13296860 0.1006557
## 3861 -41.8 4.959 5228.1 0.08955224 0.1006557
## 3862 -36.4 4.864 5191.0 0.06836679 0.1088732
## 3863 -41.8 4.865 5228.1 0.10609689 0.1400736
## 3864 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3865 -41.8 4.947 5228.1 0.10609689 0.1400736
## 3866 -36.1 4.963 5228.1 0.10609689 0.1006557
## 3867 -49.5 0.993 4963.6 0.27285817 0.1088732
## 3868 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3869 -41.8 4.959 5228.1 0.13296860 0.1088732
## 3870 -36.4 4.855 5191.0 0.09310345 0.1400736
## 3871 -36.4 4.857 5191.0 0.06836679 0.1006557
## 3872 -47.1 1.405 5099.1 0.10609689 0.1400736
## 3873 -41.8 4.959 5228.1 0.11473272 0.1400736
## 3874 -42.7 4.957 5228.1 0.06836679 0.1006557
## 3875 -42.0 4.021 5195.8 0.06836679 0.1006557
## 3876 -41.8 4.967 5228.1 0.06776441 0.1088732
## 3877 -46.2 1.313 5099.1 0.06776441 0.1088732
## 3878 -36.4 4.857 5191.0 0.27285817 0.1006557
## 3879 -36.4 4.857 5191.0 0.06776441 0.1400736
## 3880 -41.8 4.959 5228.1 0.06776441 0.1400736
## 3881 -36.4 4.855 5191.0 0.10875332 0.1006557
## 3882 -36.1 4.966 5228.1 0.10609689 0.1006557
## 3883 -42.7 4.960 5228.1 0.10609689 0.1088732
## 3884 -42.7 4.957 5228.1 0.06836679 0.1006557
## 3885 -42.7 4.963 5228.1 0.06776441 0.1006557
## 3886 -47.1 1.479 5099.1 0.06836679 0.1006557
## 3887 -36.4 4.857 5191.0 0.06836679 0.1006557
## 3888 -42.7 4.962 5228.1 0.09310345 0.1088732
## 3889 -47.1 1.405 5099.1 0.06776441 0.1006557
## 3890 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3891 -46.2 1.313 5099.1 0.13296860 0.1006557
## 3892 -41.8 4.959 5228.1 0.27285817 0.1006557
## 3893 -36.4 4.857 5191.0 0.06836679 0.1088732
## 3894 -36.1 4.964 5228.1 0.10609689 0.1006557
## 3895 -46.2 1.299 5099.1 0.10609689 0.1400736
## 3896 -46.2 1.313 5099.1 0.06836679 0.1006557
## 3897 -31.4 0.861 5076.2 0.13296860 0.1400736
## 3898 -42.7 4.959 5228.1 0.13296860 0.1400736
## 3899 -42.0 4.021 5195.8 0.13296860 0.1400736
## 3900 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3901 -42.7 4.957 5228.1 0.13296860 0.1400736
## 3902 -36.1 4.966 5228.1 0.13296860 0.1006557
## 3903 -42.7 4.962 5228.1 0.06836679 0.1006557
## 3904 -36.4 4.864 5191.0 0.06836679 0.1006557
## 3905 -31.4 0.825 5076.2 0.10609689 0.1006557
## 3906 -36.1 4.966 5228.1 0.10609689 0.1006557
## 3907 -33.6 1.007 5076.2 0.06836679 0.1400736
## 3908 -36.4 4.858 5191.0 0.06776441 0.1006557
## 3909 -37.5 0.879 4963.6 0.10609689 0.1400736
## 3910 -46.2 1.250 5099.1 0.13510101 0.1006557
## 3911 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3912 -42.7 4.963 5228.1 0.06776441 0.1400736
## 3913 -36.1 4.966 5228.1 0.13296860 0.1006557
## 3914 -42.0 4.021 5195.8 0.10609689 0.1400736
## 3915 -41.8 4.967 5228.1 0.13296860 0.1006557
## 3916 -46.2 1.291 5099.1 0.13296860 0.1006557
## 3917 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3918 -40.8 1.268 5076.2 0.10609689 0.1400736
## 3919 -36.4 4.857 5191.0 0.06836679 0.1400736
## 3920 -36.1 4.964 5228.1 0.11473272 0.1006557
## 3921 -40.3 0.896 4991.6 0.13510101 0.1400736
## 3922 -36.4 4.857 5191.0 0.06836679 0.1088732
## 3923 -41.8 4.865 5228.1 0.06836679 0.1006557
## 3924 -46.2 1.250 5099.1 0.13296860 0.1400736
## 3925 -41.8 4.959 5228.1 0.06836679 0.1400736
## 3926 -38.3 0.888 4991.6 0.13296860 0.1400736
## 3927 -36.1 4.964 5228.1 0.10609689 0.1400736
## 3928 -36.1 4.963 5228.1 0.06836679 0.1006557
## 3929 -47.1 1.405 5099.1 0.13296860 0.1088732
## 3930 -46.2 1.250 5099.1 0.09310345 0.1006557
## 3931 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3932 -42.7 4.962 5228.1 0.06776441 0.1006557
## 3933 -41.8 4.961 5228.1 0.13296860 0.1400736
## 3934 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3935 -36.4 4.864 5191.0 0.06836679 0.1006557
## 3936 -42.7 4.963 5228.1 0.13296860 0.1400736
## 3937 -36.1 4.966 5228.1 0.06836679 0.1006557
## 3938 -36.4 4.855 5191.0 0.13296860 0.1006557
## 3939 -47.1 1.405 5099.1 0.10609689 0.1006557
## 3940 -46.2 1.250 5099.1 0.13296860 0.1006557
## 3941 -42.7 4.963 5228.1 0.13296860 0.1400736
## 3942 -36.4 4.857 5191.0 0.13296860 0.1006557
## 3943 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3944 -38.3 0.904 4991.6 0.11473272 0.1006557
## 3945 -36.1 4.963 5228.1 0.13296860 0.1006557
## 3946 -36.4 4.857 5191.0 0.09310345 0.1006557
## 3947 -42.7 4.962 5228.1 0.13296860 0.1088732
## 3948 -36.4 4.864 5191.0 0.06776441 0.1006557
## 3949 -31.4 0.881 5076.2 0.13296860 0.1400736
## 3950 -46.2 1.354 5099.1 0.31059507 0.1400736
## 3951 -42.0 4.021 5195.8 0.10609689 0.1006557
## 3952 -42.0 4.021 5195.8 0.11473272 0.1006557
## 3953 -36.1 4.966 5228.1 0.10609689 0.1088732
## 3954 -36.1 4.964 5228.1 0.27285817 0.1006557
## 3955 -36.4 4.857 5191.0 0.10609689 0.1006557
## 3956 -41.8 4.959 5228.1 0.11473272 0.1006557
## 3957 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3958 -47.1 1.479 5099.1 0.13296860 0.1006557
## 3959 -41.8 4.947 5228.1 0.06776441 0.1006557
## 3960 -41.8 4.961 5228.1 0.13296860 0.1400736
## 3961 -42.0 4.021 5195.8 0.13296860 0.1006557
## 3962 -41.8 4.959 5228.1 0.11473272 0.1006557
## 3963 -42.7 4.963 5228.1 0.10609689 0.1006557
## 3964 -36.1 4.966 5228.1 0.10875332 0.1006557
## 3965 -36.4 4.858 5191.0 0.10609689 0.1006557
## 3966 -31.4 0.881 5076.2 0.13296860 0.1400736
## 3967 -46.2 1.299 5099.1 0.13296860 0.1400736
## 3968 -34.8 0.636 5008.7 0.09484778 0.1088732
## 3969 -41.8 4.967 5228.1 0.13510101 0.1006557
## 3970 -36.1 4.964 5228.1 0.10609689 0.1400736
## 3971 -42.0 4.021 5195.8 0.27285817 0.1006557
## 3972 -36.1 4.964 5228.1 0.13296860 0.1006557
## 3973 -41.8 4.959 5228.1 0.11473272 0.1006557
## 3974 -36.4 4.855 5191.0 0.10609689 0.1088732
## 3975 -47.1 1.405 5099.1 0.06836679 0.1400736
## 3976 -36.4 4.859 5191.0 0.06836679 0.1006557
## 3977 -41.8 4.967 5228.1 0.13296860 0.1006557
## 3978 -41.8 4.967 5228.1 0.11473272 0.1006557
## 3979 -41.8 4.967 5228.1 0.11473272 0.1006557
## 3980 -42.7 4.962 5228.1 0.13296860 0.1400736
## 3981 -36.1 4.966 5228.1 0.10609689 0.1006557
## 3982 -42.0 4.021 5195.8 0.13296860 0.1400736
## 3983 -42.7 4.962 5228.1 0.13296860 0.1006557
## 3984 -47.1 1.405 5099.1 0.06836679 0.1006557
## 3985 -36.4 4.864 5191.0 0.13296860 0.1400736
## 3986 -36.4 4.857 5191.0 0.10609689 0.1006557
## 3987 -42.7 4.957 5228.1 0.13296860 0.1088732
## 3988 -41.8 4.967 5228.1 0.10875332 0.1006557
## 3989 -46.2 1.259 5099.1 0.10609689 0.1006557
## 3990 -36.1 4.964 5228.1 0.13296860 0.1400736
## 3991 -40.8 1.224 5076.2 0.31059507 0.1400736
## 3992 -36.1 4.964 5228.1 0.10609689 0.1088732
## 3993 -37.5 0.882 4963.6 0.31059507 0.1400736
## 3994 -41.8 4.959 5228.1 0.06836679 0.1006557
## 3995 -47.1 1.405 5099.1 0.06776441 0.1400736
## 3996 -36.4 4.859 5191.0 0.06836679 0.1400736
## 3997 -36.4 4.857 5191.0 0.09310345 0.1006557
## 3998 -36.1 4.964 5228.1 0.10609689 0.1006557
## 3999 -46.2 1.264 5099.1 0.13296860 0.1400736
## 4000 -50.8 1.028 4963.6 0.27285817 0.1006557
## 4001 -47.1 1.405 5099.1 0.06836679 0.1400736
## 4002 -50.0 1.520 5099.1 0.27285817 0.1006557
## 4003 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4004 -36.1 4.970 5228.1 0.13296860 0.1006557
## 4005 -46.2 1.250 5099.1 0.06776441 0.1088732
## 4006 -50.0 1.629 5099.1 0.10609689 0.1006557
## 4007 -47.1 1.405 5099.1 0.13296860 0.1088732
## 4008 -47.1 1.405 5099.1 0.06776441 0.1400736
## 4009 -36.4 4.859 5191.0 0.13296860 0.1006557
## 4010 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4011 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4012 -47.1 1.405 5099.1 0.27285817 0.1400736
## 4013 -46.2 1.244 5099.1 0.10875332 0.1006557
## 4014 -36.4 4.857 5191.0 0.06776441 0.1088732
## 4015 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4016 -36.1 4.964 5228.1 0.06836679 0.1006557
## 4017 -41.8 4.947 5228.1 0.06836679 0.1006557
## 4018 -46.2 1.250 5099.1 0.06776441 0.1006557
## 4019 -41.8 4.967 5228.1 0.10875332 0.1006557
## 4020 -36.4 4.864 5191.0 0.13296860 0.1400736
## 4021 -42.7 4.957 5228.1 0.11473272 0.1400736
## 4022 -41.8 4.967 5228.1 0.13296860 0.1006557
## 4023 -36.4 4.864 5191.0 0.10609689 0.1006557
## 4024 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4025 -36.4 4.857 5191.0 0.13296860 0.1006557
## 4026 -41.8 4.967 5228.1 0.10609689 0.1006557
## 4027 -46.2 1.250 5099.1 0.06776441 0.1400736
## 4028 -41.8 4.967 5228.1 0.06776441 0.1006557
## 4029 -47.1 1.405 5099.1 0.06776441 0.1400736
## 4030 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4031 -42.7 4.957 5228.1 0.13296860 0.1400736
## 4032 -42.7 4.962 5228.1 0.13296860 0.1006557
## 4033 -36.4 4.864 5191.0 0.09484778 0.1006557
## 4034 -42.7 4.957 5228.1 0.13296860 0.1400736
## 4035 -42.7 4.962 5228.1 0.09310345 0.1088732
## 4036 -42.0 4.021 5195.8 0.10609689 0.1006557
## 4037 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4038 -46.2 1.259 5099.1 0.13296860 0.1006557
## 4039 -40.3 0.885 4991.6 0.31059507 0.1400736
## 4040 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4041 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4042 -42.7 4.962 5228.1 0.10609689 0.1400736
## 4043 -36.1 4.963 5228.1 0.10875332 0.1006557
## 4044 -42.7 4.960 5228.1 0.06836679 0.1006557
## 4045 -42.0 4.021 5195.8 0.11473272 0.1006557
## 4046 -41.8 4.967 5228.1 0.06836679 0.1088732
## 4047 -34.8 0.653 5008.7 0.06836679 0.1006557
## 4048 -46.2 1.250 5099.1 0.10609689 0.1400736
## 4049 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4050 -34.8 0.653 5008.7 0.27285817 0.1006557
## 4051 -41.8 4.967 5228.1 0.11473272 0.1006557
## 4052 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4053 -41.8 4.967 5228.1 0.13296860 0.1400736
## 4054 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4055 -46.2 1.250 5099.1 0.06776441 0.1400736
## 4056 -36.4 4.857 5191.0 0.13296860 0.1400736
## 4057 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4058 -41.8 4.960 5228.1 0.13510101 0.1006557
## 4059 -41.8 4.967 5228.1 0.09484778 0.1006557
## 4060 -42.7 4.957 5228.1 0.13296860 0.1400736
## 4061 -41.8 4.960 5228.1 0.13296860 0.1400736
## 4062 -47.1 1.405 5099.1 0.10609689 0.1400736
## 4063 -41.8 4.959 5228.1 0.27285817 0.1088732
## 4064 -36.4 4.864 5191.0 0.13296860 0.1400736
## 4065 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4066 -47.1 1.405 5099.1 0.06776441 0.1006557
## 4067 -41.8 4.947 5228.1 0.13296860 0.1400736
## 4068 -36.1 4.966 5228.1 0.10609689 0.1400736
## 4069 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4070 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4071 -46.2 1.313 5099.1 0.06776441 0.1006557
## 4072 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4073 -42.7 4.962 5228.1 0.13296860 0.1400736
## 4074 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4075 -42.7 4.959 5228.1 0.06836679 0.1006557
## 4076 -41.8 4.947 5228.1 0.06836679 0.1006557
## 4077 -50.0 1.531 5099.1 0.13296860 0.1400736
## 4078 -41.8 4.967 5228.1 0.13296860 0.1006557
## 4079 -46.2 1.299 5099.1 0.10609689 0.1006557
## 4080 -46.2 1.354 5099.1 0.10609689 0.1006557
## 4081 -41.8 4.947 5228.1 0.13296860 0.1400736
## 4082 -30.1 0.716 5017.5 0.10609689 0.1006557
## 4083 -42.0 4.191 5195.8 0.13296860 0.1400736
## 4084 -42.7 4.962 5228.1 0.13296860 0.1006557
## 4085 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4086 -38.3 0.890 4991.6 0.06776441 0.1400736
## 4087 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4088 -42.7 4.957 5228.1 0.13296860 0.1006557
## 4089 -36.4 4.857 5191.0 0.11473272 0.1006557
## 4090 -41.8 4.967 5228.1 0.13296860 0.1088732
## 4091 -41.8 4.865 5228.1 0.06836679 0.1006557
## 4092 -41.8 4.967 5228.1 0.09484778 0.1006557
## 4093 -46.2 1.313 5099.1 0.10875332 0.1400736
## 4094 -41.8 4.959 5228.1 0.09310345 0.1400736
## 4095 -36.1 4.966 5228.1 0.09484778 0.1006557
## 4096 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4097 -42.0 4.021 5195.8 0.06836679 0.1006557
## 4098 -42.0 4.021 5195.8 0.10609689 0.1006557
## 4099 -41.8 4.959 5228.1 0.10875332 0.1006557
## 4100 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4101 -26.9 0.743 5017.5 0.11473272 0.1400736
## 4102 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4103 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4104 -36.1 4.963 5228.1 0.10875332 0.1006557
## 4105 -42.7 4.962 5228.1 0.06776441 0.1006557
## 4106 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4107 -41.8 4.959 5228.1 0.27285817 0.1088732
## 4108 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4109 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4110 -42.0 4.021 5195.8 0.13296860 0.1400736
## 4111 -41.8 4.947 5228.1 0.06776441 0.1006557
## 4112 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4113 -42.0 4.021 5195.8 0.06776441 0.1400736
## 4114 -36.4 4.855 5191.0 0.11473272 0.1400736
## 4115 -50.0 1.531 5099.1 0.27285817 0.1006557
## 4116 -36.4 4.858 5191.0 0.13510101 0.1006557
## 4117 -42.7 4.963 5228.1 0.13510101 0.1006557
## 4118 -42.7 4.962 5228.1 0.27285817 0.1088732
## 4119 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4120 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4121 -47.1 1.405 5099.1 0.13296860 0.1088732
## 4122 -42.7 4.963 5228.1 0.11473272 0.1006557
## 4123 -42.7 4.963 5228.1 0.27285817 0.1400736
## 4124 -36.4 4.859 5191.0 0.06776441 0.1006557
## 4125 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4126 -47.1 1.405 5099.1 0.11473272 0.1400736
## 4127 -36.1 4.964 5228.1 0.10609689 0.1088732
## 4128 -41.8 4.967 5228.1 0.10609689 0.1006557
## 4129 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4130 -36.1 4.964 5228.1 0.06776441 0.1006557
## 4131 -41.8 4.967 5228.1 0.09310345 0.1006557
## 4132 -46.2 1.259 5099.1 0.06776441 0.1400736
## 4133 -41.8 4.967 5228.1 0.06776441 0.1400736
## 4134 -50.0 1.687 5099.1 0.13296860 0.1006557
## 4135 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4136 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4137 -40.3 0.790 4991.6 0.13296860 0.1006557
## 4138 -40.8 1.266 5076.2 0.27285817 0.1006557
## 4139 -36.4 4.859 5191.0 0.10609689 0.1006557
## 4140 -36.4 4.864 5191.0 0.09484778 0.1088732
## 4141 -42.7 4.960 5228.1 0.06836679 0.1400736
## 4142 -42.0 4.021 5195.8 0.10609689 0.1088732
## 4143 -46.2 1.250 5099.1 0.06836679 0.1400736
## 4144 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4145 -36.4 4.857 5191.0 0.11473272 0.1006557
## 4146 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4147 -46.2 1.313 5099.1 0.06776441 0.1400736
## 4148 -42.0 4.223 5195.8 0.11473272 0.1006557
## 4149 -42.7 4.962 5228.1 0.06836679 0.1400736
## 4150 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4151 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4152 -33.6 0.996 5076.2 0.10609689 0.1400736
## 4153 -42.7 4.963 5228.1 0.09310345 0.1006557
## 4154 -42.7 4.957 5228.1 0.13296860 0.1400736
## 4155 -36.1 4.963 5228.1 0.10609689 0.1088732
## 4156 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4157 -42.7 4.959 5228.1 0.06836679 0.1088732
## 4158 -47.1 1.405 5099.1 0.31059507 0.1400736
## 4159 -36.1 4.966 5228.1 0.10609689 0.1088732
## 4160 -36.4 4.857 5191.0 0.13296860 0.1400736
## 4161 -36.1 4.963 5228.1 0.10609689 0.1400736
## 4162 -42.0 4.021 5195.8 0.06836679 0.1006557
## 4163 -31.4 0.881 5076.2 0.13296860 0.1400736
## 4164 -41.8 4.961 5228.1 0.13296860 0.1088732
## 4165 -42.7 4.959 5228.1 0.13296860 0.1006557
## 4166 -36.1 4.963 5228.1 0.10609689 0.1400736
## 4167 -36.1 4.963 5228.1 0.13296860 0.1088732
## 4168 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4169 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4170 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4171 -42.7 4.957 5228.1 0.06776441 0.1088732
## 4172 -41.8 4.959 5228.1 0.10875332 0.1400736
## 4173 -36.4 4.859 5191.0 0.06836679 0.1006557
## 4174 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4175 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4176 -42.7 4.963 5228.1 0.13296860 0.1400736
## 4177 -36.1 4.966 5228.1 0.06836679 0.1006557
## 4178 -42.7 4.959 5228.1 0.06836679 0.1006557
## 4179 -41.8 4.865 5228.1 0.10609689 0.1088732
## 4180 -36.4 4.859 5191.0 0.09310345 0.1006557
## 4181 -36.4 4.857 5191.0 0.09484778 0.1088732
## 4182 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4183 -42.0 4.191 5195.8 0.10609689 0.1088732
## 4184 -36.4 4.855 5191.0 0.06836679 0.1400736
## 4185 -42.7 4.963 5228.1 0.06776441 0.1006557
## 4186 -42.7 4.957 5228.1 0.13296860 0.1006557
## 4187 -36.1 4.964 5228.1 0.06776441 0.1006557
## 4188 -42.0 4.021 5195.8 0.06836679 0.1400736
## 4189 -34.8 0.639 5008.7 0.31059507 0.1400736
## 4190 -46.2 1.291 5099.1 0.06836679 0.1006557
## 4191 -34.6 0.643 5008.7 0.27285817 0.1088732
## 4192 -36.1 4.966 5228.1 0.10609689 0.1400736
## 4193 -41.8 4.961 5228.1 0.06836679 0.1006557
## 4194 -41.8 4.959 5228.1 0.13510101 0.1006557
## 4195 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4196 -34.6 0.644 5008.7 0.10609689 0.1400736
## 4197 -29.8 0.803 5017.5 0.13296860 0.1400736
## 4198 -42.7 4.960 5228.1 0.27285817 0.1006557
## 4199 -42.0 4.021 5195.8 0.11473272 0.1400736
## 4200 -42.0 4.021 5195.8 0.13296860 0.1400736
## 4201 -42.0 4.021 5195.8 0.13296860 0.1400736
## 4202 -47.1 1.479 5099.1 0.06776441 0.1006557
## 4203 -42.7 4.959 5228.1 0.10875332 0.1006557
## 4204 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4205 -42.0 4.191 5195.8 0.06836679 0.1006557
## 4206 -42.0 4.021 5195.8 0.06776441 0.1400736
## 4207 -46.2 1.313 5099.1 0.06776441 0.1400736
## 4208 -36.4 4.857 5191.0 0.09310345 0.1006557
## 4209 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4210 -36.4 4.857 5191.0 0.10609689 0.1400736
## 4211 -42.7 4.962 5228.1 0.06776441 0.1006557
## 4212 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4213 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4214 -34.8 0.653 5008.7 0.10609689 0.1400736
## 4215 -31.4 0.869 5076.2 0.09310345 0.1006557
## 4216 -42.7 4.963 5228.1 0.31059507 0.1400736
## 4217 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4218 -36.1 4.964 5228.1 0.06836679 0.1006557
## 4219 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4220 -41.8 4.959 5228.1 0.09310345 0.1006557
## 4221 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4222 -33.6 1.059 5076.2 0.10609689 0.1006557
## 4223 -36.4 4.864 5191.0 0.13296860 0.1400736
## 4224 -41.8 4.959 5228.1 0.09484778 0.1006557
## 4225 -42.7 4.963 5228.1 0.10875332 0.1006557
## 4226 -26.9 0.720 5017.5 0.06836679 0.1006557
## 4227 -36.4 4.859 5191.0 0.10609689 0.1006557
## 4228 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4229 -42.7 4.957 5228.1 0.06836679 0.1088732
## 4230 -37.5 0.879 4963.6 0.13296860 0.1088732
## 4231 -42.0 4.021 5195.8 0.10875332 0.1400736
## 4232 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4233 -36.4 4.858 5191.0 0.06776441 0.1088732
## 4234 -46.2 1.250 5099.1 0.10609689 0.1006557
## 4235 -42.7 4.962 5228.1 0.13296860 0.1006557
## 4236 -46.2 1.250 5099.1 0.06776441 0.1006557
## 4237 -36.1 4.963 5228.1 0.06776441 0.1006557
## 4238 -42.7 4.962 5228.1 0.27285817 0.1006557
## 4239 -42.7 4.957 5228.1 0.13296860 0.1400736
## 4240 -50.8 1.040 4963.6 0.13296860 0.1006557
## 4241 -40.8 1.266 5076.2 0.13296860 0.1006557
## 4242 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4243 -36.1 4.964 5228.1 0.10609689 0.1088732
## 4244 -31.4 0.849 5076.2 0.13296860 0.1006557
## 4245 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4246 -36.1 4.964 5228.1 0.11473272 0.1006557
## 4247 -41.8 4.959 5228.1 0.06776441 0.1006557
## 4248 -50.0 1.726 5099.1 0.10609689 0.1006557
## 4249 -50.0 1.726 5099.1 0.10609689 0.1400736
## 4250 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4251 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4252 -42.7 4.962 5228.1 0.11473272 0.1006557
## 4253 -50.0 1.531 5099.1 0.13296860 0.1400736
## 4254 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4255 -36.1 4.964 5228.1 0.10609689 0.1088732
## 4256 -42.0 4.021 5195.8 0.06776441 0.1400736
## 4257 -46.2 1.244 5099.1 0.06836679 0.1088732
## 4258 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4259 -42.7 4.960 5228.1 0.10609689 0.1006557
## 4260 -42.7 4.957 5228.1 0.13296860 0.1006557
## 4261 -40.8 1.268 5076.2 0.31059507 0.1400736
## 4262 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4263 -46.2 1.250 5099.1 0.13296860 0.1006557
## 4264 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4265 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4266 -36.4 4.864 5191.0 0.06776441 0.1006557
## 4267 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4268 -42.7 4.962 5228.1 0.10609689 0.1400736
## 4269 -47.1 1.405 5099.1 0.10875332 0.1006557
## 4270 -41.8 4.967 5228.1 0.09310345 0.1006557
## 4271 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4272 -36.4 4.859 5191.0 0.06836679 0.1006557
## 4273 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4274 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4275 -36.1 4.964 5228.1 0.27285817 0.1006557
## 4276 -36.4 4.864 5191.0 0.10609689 0.1006557
## 4277 -36.1 4.964 5228.1 0.06776441 0.1006557
## 4278 -42.0 4.021 5195.8 0.10609689 0.1006557
## 4279 -36.1 4.966 5228.1 0.27285817 0.1006557
## 4280 -46.2 1.299 5099.1 0.06836679 0.1088732
## 4281 -40.3 0.896 4991.6 0.06776441 0.1088732
## 4282 -36.4 4.859 5191.0 0.06836679 0.1006557
## 4283 -36.4 4.855 5191.0 0.06836679 0.1400736
## 4284 -42.0 4.223 5195.8 0.13296860 0.1088732
## 4285 -47.1 1.405 5099.1 0.27285817 0.1006557
## 4286 -41.8 4.959 5228.1 0.06836679 0.1400736
## 4287 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4288 -41.8 4.967 5228.1 0.06776441 0.1006557
## 4289 -36.4 4.857 5191.0 0.06836679 0.1400736
## 4290 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4291 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4292 -36.4 4.857 5191.0 0.13296860 0.1400736
## 4293 -36.4 4.855 5191.0 0.06776441 0.1088732
## 4294 -47.1 1.405 5099.1 0.06776441 0.1400736
## 4295 -34.8 0.636 5008.7 0.10875332 0.1400736
## 4296 -42.0 4.153 5195.8 0.13296860 0.1006557
## 4297 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4298 -50.0 1.811 5099.1 0.31059507 0.1400736
## 4299 -41.8 4.959 5228.1 0.06776441 0.1006557
## 4300 -42.7 4.957 5228.1 0.10609689 0.1006557
## 4301 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4302 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4303 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4304 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4305 -36.1 4.966 5228.1 0.11473272 0.1006557
## 4306 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4307 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4308 -41.8 4.959 5228.1 0.06776441 0.1088732
## 4309 -36.4 4.855 5191.0 0.27285817 0.1006557
## 4310 -36.1 4.964 5228.1 0.13296860 0.1006557
## 4311 -40.8 1.268 5076.2 0.06836679 0.1400736
## 4312 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4313 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4314 -36.4 4.857 5191.0 0.09310345 0.1006557
## 4315 -41.8 4.959 5228.1 0.09310345 0.1006557
## 4316 -41.8 4.959 5228.1 0.09310345 0.1006557
## 4317 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4318 -34.6 0.663 5008.7 0.06836679 0.1006557
## 4319 -46.2 1.244 5099.1 0.06836679 0.1006557
## 4320 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4321 -42.7 4.963 5228.1 0.06836679 0.1400736
## 4322 -42.7 4.963 5228.1 0.13296860 0.1006557
## 4323 -36.1 4.966 5228.1 0.09310345 0.1006557
## 4324 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4325 -42.7 4.962 5228.1 0.13296860 0.1400736
## 4326 -36.1 4.964 5228.1 0.10875332 0.1006557
## 4327 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4328 -40.8 1.268 5076.2 0.13296860 0.1400736
## 4329 -40.8 1.268 5076.2 0.06776441 0.1006557
## 4330 -41.8 4.959 5228.1 0.09310345 0.1006557
## 4331 -47.1 1.479 5099.1 0.06836679 0.1006557
## 4332 -36.4 4.855 5191.0 0.10609689 0.1400736
## 4333 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4334 -36.1 4.966 5228.1 0.10875332 0.1006557
## 4335 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4336 -47.1 1.405 5099.1 0.10609689 0.1088732
## 4337 -42.0 4.021 5195.8 0.09310345 0.1088732
## 4338 -36.1 4.963 5228.1 0.13296860 0.1088732
## 4339 -42.0 4.021 5195.8 0.06776441 0.1400736
## 4340 -42.7 4.960 5228.1 0.27285817 0.1006557
## 4341 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4342 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4343 -36.4 4.864 5191.0 0.10609689 0.1006557
## 4344 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4345 -42.0 4.021 5195.8 0.06836679 0.1006557
## 4346 -41.8 4.959 5228.1 0.09310345 0.1006557
## 4347 -36.1 4.964 5228.1 0.13296860 0.1006557
## 4348 -42.7 4.963 5228.1 0.13296860 0.1006557
## 4349 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4350 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4351 -36.1 4.964 5228.1 0.13296860 0.1006557
## 4352 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4353 -36.4 4.864 5191.0 0.10609689 0.1400736
## 4354 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4355 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4356 -36.4 4.855 5191.0 0.11473272 0.1400736
## 4357 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4358 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4359 -31.4 0.869 5076.2 0.06836679 0.1006557
## 4360 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4361 -42.7 4.963 5228.1 0.06776441 0.1006557
## 4362 -41.8 4.959 5228.1 0.13296860 0.1088732
## 4363 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4364 -41.8 4.959 5228.1 0.31059507 0.1400736
## 4365 -36.4 4.859 5191.0 0.11473272 0.1006557
## 4366 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4367 -42.7 4.963 5228.1 0.10609689 0.1088732
## 4368 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4369 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4370 -47.1 1.479 5099.1 0.13296860 0.1006557
## 4371 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4372 -50.0 1.726 5099.1 0.10609689 0.1006557
## 4373 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4374 -42.7 4.963 5228.1 0.13296860 0.1006557
## 4375 -42.0 4.021 5195.8 0.31059507 0.1400736
## 4376 -33.6 1.059 5076.2 0.10609689 0.1006557
## 4377 -42.7 4.959 5228.1 0.11473272 0.1006557
## 4378 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4379 -50.0 1.640 5099.1 0.13510101 0.1400736
## 4380 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4381 -50.0 1.726 5099.1 0.10609689 0.1400736
## 4382 -46.2 1.250 5099.1 0.10609689 0.1400736
## 4383 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4384 -47.1 1.479 5099.1 0.10609689 0.1006557
## 4385 -36.1 4.964 5228.1 0.06776441 0.1006557
## 4386 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4387 -41.8 4.865 5228.1 0.06776441 0.1006557
## 4388 -36.4 4.864 5191.0 0.06836679 0.1006557
## 4389 -33.6 1.059 5076.2 0.13296860 0.1400736
## 4390 -41.8 4.959 5228.1 0.09310345 0.1088732
## 4391 -36.1 4.964 5228.1 0.11473272 0.1006557
## 4392 -36.1 4.964 5228.1 0.06836679 0.1006557
## 4393 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4394 -40.8 1.268 5076.2 0.31059507 0.1400736
## 4395 -42.7 4.959 5228.1 0.09484778 0.1006557
## 4396 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4397 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4398 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4399 -42.0 4.021 5195.8 0.11473272 0.1006557
## 4400 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4401 -42.0 4.021 5195.8 0.10609689 0.1006557
## 4402 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4403 -41.8 4.967 5228.1 0.13296860 0.1006557
## 4404 -47.1 1.405 5099.1 0.31059507 0.1006557
## 4405 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4406 -42.7 4.960 5228.1 0.11473272 0.1006557
## 4407 -31.4 0.881 5076.2 0.13296860 0.1006557
## 4408 -41.8 4.947 5228.1 0.06836679 0.1006557
## 4409 -46.2 1.244 5099.1 0.06836679 0.1006557
## 4410 -41.8 4.959 5228.1 0.08955224 0.1006557
## 4411 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4412 -47.1 1.479 5099.1 0.10609689 0.1400736
## 4413 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4414 -42.7 4.962 5228.1 0.31059507 0.1400736
## 4415 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4416 -46.2 1.244 5099.1 0.13296860 0.1400736
## 4417 -36.4 4.858 5191.0 0.06836679 0.1400736
## 4418 -42.7 4.962 5228.1 0.13296860 0.1400736
## 4419 -46.2 1.250 5099.1 0.13296860 0.1400736
## 4420 -36.4 4.857 5191.0 0.06776441 0.1006557
## 4421 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4422 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4423 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4424 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4425 -41.8 4.959 5228.1 0.13510101 0.1088732
## 4426 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4427 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4428 -36.1 4.966 5228.1 0.10875332 0.1006557
## 4429 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4430 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4431 -47.1 1.405 5099.1 0.27285817 0.1006557
## 4432 -41.8 4.959 5228.1 0.06776441 0.1006557
## 4433 -36.4 4.859 5191.0 0.10875332 0.1006557
## 4434 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4435 -36.4 4.864 5191.0 0.10875332 0.1006557
## 4436 -36.4 4.859 5191.0 0.06836679 0.1088732
## 4437 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4438 -47.1 1.479 5099.1 0.06776441 0.1088732
## 4439 -46.2 1.313 5099.1 0.13296860 0.1006557
## 4440 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4441 -36.4 4.864 5191.0 0.10875332 0.1088732
## 4442 -46.2 1.250 5099.1 0.13296860 0.1400736
## 4443 -33.0 0.714 5023.5 0.27285817 0.1088732
## 4444 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4445 -36.1 4.964 5228.1 0.06836679 0.1006557
## 4446 -36.1 4.966 5228.1 0.10609689 0.1088732
## 4447 -34.6 0.663 5008.7 0.31059507 0.1400736
## 4448 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4449 -33.6 0.944 5076.2 0.10609689 0.1400736
## 4450 -36.1 4.966 5228.1 0.10609689 0.1400736
## 4451 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4452 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4453 -46.2 1.250 5099.1 0.10609689 0.1088732
## 4454 -42.7 4.960 5228.1 0.13510101 0.1088732
## 4455 -47.1 1.405 5099.1 0.06776441 0.1006557
## 4456 -41.8 4.967 5228.1 0.09310345 0.1400736
## 4457 -42.7 4.962 5228.1 0.13296860 0.1006557
## 4458 -42.7 4.962 5228.1 0.10609689 0.1088732
## 4459 -36.1 4.963 5228.1 0.11473272 0.1006557
## 4460 -36.1 4.966 5228.1 0.06776441 0.1006557
## 4461 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4462 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4463 -42.0 4.021 5195.8 0.31059507 0.1400736
## 4464 -42.0 4.191 5195.8 0.27285817 0.1006557
## 4465 -41.8 4.967 5228.1 0.11473272 0.1006557
## 4466 -42.7 4.963 5228.1 0.10609689 0.1006557
## 4467 -36.4 4.855 5191.0 0.06836679 0.1400736
## 4468 -42.7 4.963 5228.1 0.10609689 0.1400736
## 4469 -36.4 4.864 5191.0 0.10609689 0.1006557
## 4470 -41.8 4.947 5228.1 0.06836679 0.1006557
## 4471 -41.8 4.959 5228.1 0.06776441 0.1400736
## 4472 -36.4 4.857 5191.0 0.06836679 0.1400736
## 4473 -50.8 1.028 4963.6 0.10609689 0.1006557
## 4474 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4475 -46.2 1.259 5099.1 0.27285817 0.1006557
## 4476 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4477 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4478 -36.4 4.859 5191.0 0.06776441 0.1006557
## 4479 -36.4 4.859 5191.0 0.06836679 0.1400736
## 4480 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4481 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4482 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4483 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4484 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4485 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4486 -36.1 4.964 5228.1 0.09484778 0.1006557
## 4487 -50.0 1.726 5099.1 0.10609689 0.1400736
## 4488 -36.1 4.964 5228.1 0.11473272 0.1006557
## 4489 -42.7 4.957 5228.1 0.13296860 0.1006557
## 4490 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4491 -47.1 1.405 5099.1 0.06776441 0.1088732
## 4492 -36.4 4.864 5191.0 0.11473272 0.1088732
## 4493 -46.2 1.313 5099.1 0.06776441 0.1006557
## 4494 -36.4 4.857 5191.0 0.06776441 0.1400736
## 4495 -36.1 4.966 5228.1 0.13296860 0.1088732
## 4496 -36.1 4.966 5228.1 0.06836679 0.1006557
## 4497 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4498 -36.1 4.966 5228.1 0.09310345 0.1006557
## 4499 -47.1 1.405 5099.1 0.09310345 0.1006557
## 4500 -41.8 4.967 5228.1 0.09310345 0.1400736
## 4501 -42.0 4.021 5195.8 0.11473272 0.1006557
## 4502 -42.7 4.962 5228.1 0.10609689 0.1006557
## 4503 -36.4 4.864 5191.0 0.11473272 0.1006557
## 4504 -36.1 4.966 5228.1 0.06776441 0.1006557
## 4505 -31.4 0.849 5076.2 0.11473272 0.1006557
## 4506 -36.1 4.970 5228.1 0.09310345 0.1006557
## 4507 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4508 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4509 -46.2 1.250 5099.1 0.06776441 0.1006557
## 4510 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4511 -42.0 4.021 5195.8 0.10609689 0.1006557
## 4512 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4513 -36.1 4.966 5228.1 0.11473272 0.1006557
## 4514 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4515 -46.2 1.250 5099.1 0.06836679 0.1400736
## 4516 -36.4 4.864 5191.0 0.10609689 0.1400736
## 4517 -42.7 4.963 5228.1 0.10609689 0.1006557
## 4518 -46.2 1.313 5099.1 0.10609689 0.1006557
## 4519 -46.2 1.299 5099.1 0.13296860 0.1006557
## 4520 -40.8 1.268 5076.2 0.10609689 0.1006557
## 4521 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4522 -36.1 4.966 5228.1 0.11473272 0.1006557
## 4523 -47.1 1.479 5099.1 0.06836679 0.1006557
## 4524 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4525 -41.8 4.959 5228.1 0.10609689 0.1088732
## 4526 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4527 -42.7 4.960 5228.1 0.06836679 0.1400736
## 4528 -36.4 4.864 5191.0 0.06836679 0.1006557
## 4529 -46.2 1.313 5099.1 0.10609689 0.1006557
## 4530 -46.2 1.250 5099.1 0.06836679 0.1400736
## 4531 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4532 -42.7 4.963 5228.1 0.13510101 0.1006557
## 4533 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4534 -36.1 4.964 5228.1 0.13510101 0.1006557
## 4535 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4536 -41.8 4.959 5228.1 0.06776441 0.1006557
## 4537 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4538 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4539 -33.0 0.718 5023.5 0.13296860 0.1400736
## 4540 -36.1 4.963 5228.1 0.06836679 0.1006557
## 4541 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4542 -36.4 4.855 5191.0 0.13296860 0.1400736
## 4543 -42.7 4.963 5228.1 0.06776441 0.1006557
## 4544 -41.8 4.961 5228.1 0.09484778 0.1006557
## 4545 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4546 -41.8 4.967 5228.1 0.13296860 0.1006557
## 4547 -42.7 4.963 5228.1 0.10609689 0.1006557
## 4548 -42.7 4.962 5228.1 0.10609689 0.1006557
## 4549 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4550 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4551 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4552 -41.8 4.959 5228.1 0.13510101 0.1006557
## 4553 -36.1 4.964 5228.1 0.27285817 0.1006557
## 4554 -41.8 4.961 5228.1 0.11473272 0.1006557
## 4555 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4556 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4557 -46.2 1.291 5099.1 0.13296860 0.1400736
## 4558 -42.7 4.962 5228.1 0.13296860 0.1006557
## 4559 -31.4 0.881 5076.2 0.10875332 0.1006557
## 4560 -42.7 4.962 5228.1 0.06776441 0.1006557
## 4561 -42.7 4.960 5228.1 0.06836679 0.1006557
## 4562 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4563 -42.0 4.021 5195.8 0.06836679 0.1400736
## 4564 -41.8 4.947 5228.1 0.10609689 0.1006557
## 4565 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4566 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4567 -42.7 4.957 5228.1 0.09310345 0.1006557
## 4568 -46.2 1.313 5099.1 0.06776441 0.1400736
## 4569 -36.4 4.859 5191.0 0.10609689 0.1400736
## 4570 -36.1 4.966 5228.1 0.09484778 0.1006557
## 4571 -40.8 1.266 5076.2 0.13296860 0.1400736
## 4572 -42.0 4.021 5195.8 0.10609689 0.1006557
## 4573 -29.8 0.773 5017.5 0.27285817 0.1006557
## 4574 -41.8 4.959 5228.1 0.08955224 0.1006557
## 4575 -42.7 4.962 5228.1 0.06776441 0.1006557
## 4576 -42.7 4.963 5228.1 0.06776441 0.1400736
## 4577 -42.7 4.957 5228.1 0.09310345 0.1006557
## 4578 -36.4 4.864 5191.0 0.06836679 0.1006557
## 4579 -47.1 1.479 5099.1 0.06836679 0.1006557
## 4580 -42.7 4.959 5228.1 0.06836679 0.1006557
## 4581 -46.2 1.250 5099.1 0.13296860 0.1400736
## 4582 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4583 -42.7 4.962 5228.1 0.09310345 0.1006557
## 4584 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4585 -41.8 4.959 5228.1 0.10875332 0.1400736
## 4586 -41.8 4.967 5228.1 0.13296860 0.1006557
## 4587 -36.1 4.966 5228.1 0.11473272 0.1006557
## 4588 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4589 -41.8 4.967 5228.1 0.10609689 0.1006557
## 4590 -42.7 4.963 5228.1 0.13296860 0.1400736
## 4591 -36.1 4.964 5228.1 0.10609689 0.1088732
## 4592 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4593 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4594 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4595 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4596 -36.4 4.859 5191.0 0.06836679 0.1006557
## 4597 -42.7 4.962 5228.1 0.08955224 0.1166667
## 4598 -41.8 4.967 5228.1 0.13296860 0.1400736
## 4599 -42.7 4.957 5228.1 0.13296860 0.1088732
## 4600 -41.8 4.959 5228.1 0.10609689 0.1088732
## 4601 -41.8 4.865 5228.1 0.09310345 0.1006557
## 4602 -41.8 4.960 5228.1 0.10609689 0.1006557
## 4603 -47.1 1.405 5099.1 0.31059507 0.1400736
## 4604 -31.4 0.881 5076.2 0.09484778 0.1006557
## 4605 -36.4 4.859 5191.0 0.06836679 0.1006557
## 4606 -46.2 1.313 5099.1 0.06776441 0.1400736
## 4607 -36.4 4.855 5191.0 0.06776441 0.1006557
## 4608 -41.8 4.961 5228.1 0.10875332 0.1006557
## 4609 -42.0 4.021 5195.8 0.13296860 0.1400736
## 4610 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4611 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4612 -41.8 4.960 5228.1 0.10875332 0.1400736
## 4613 -36.4 4.855 5191.0 0.09310345 0.1006557
## 4614 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4615 -42.0 4.021 5195.8 0.09310345 0.1088732
## 4616 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4617 -47.1 1.405 5099.1 0.09310345 0.1006557
## 4618 -47.1 1.479 5099.1 0.11473272 0.1088732
## 4619 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4620 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4621 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4622 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4623 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4624 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4625 -41.8 4.864 5228.1 0.13296860 0.1400736
## 4626 -36.1 4.963 5228.1 0.06776441 0.1006557
## 4627 -36.4 4.857 5191.0 0.06836679 0.1088732
## 4628 -42.7 4.957 5228.1 0.13296860 0.1006557
## 4629 -42.0 4.021 5195.8 0.11473272 0.1006557
## 4630 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4631 -36.1 4.964 5228.1 0.09484778 0.1006557
## 4632 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4633 -42.0 4.191 5195.8 0.11473272 0.1006557
## 4634 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4635 -41.8 4.967 5228.1 0.10609689 0.1400736
## 4636 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4637 -46.2 1.250 5099.1 0.06836679 0.1006557
## 4638 -41.8 4.967 5228.1 0.10609689 0.1400736
## 4639 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4640 -36.4 4.857 5191.0 0.11473272 0.1006557
## 4641 -36.1 4.970 5228.1 0.10609689 0.1006557
## 4642 -42.0 4.021 5195.8 0.13296860 0.1400736
## 4643 -46.2 1.250 5099.1 0.06776441 0.1006557
## 4644 -36.4 4.857 5191.0 0.13296860 0.1006557
## 4645 -42.7 4.963 5228.1 0.06776441 0.1400736
## 4646 -36.4 4.859 5191.0 0.10609689 0.1006557
## 4647 -36.1 4.966 5228.1 0.06776441 0.1006557
## 4648 -46.2 1.354 5099.1 0.13296860 0.1088732
## 4649 -47.1 1.405 5099.1 0.13296860 0.1088732
## 4650 -36.4 4.857 5191.0 0.27285817 0.1006557
## 4651 -46.2 1.313 5099.1 0.13296860 0.1006557
## 4652 -36.4 4.857 5191.0 0.11473272 0.1006557
## 4653 -36.4 4.864 5191.0 0.13296860 0.1400736
## 4654 -46.2 1.250 5099.1 0.10609689 0.1006557
## 4655 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4656 -46.2 1.250 5099.1 0.06836679 0.1400736
## 4657 -31.4 0.825 5076.2 0.31059507 0.1400736
## 4658 -42.7 4.960 5228.1 0.13296860 0.1006557
## 4659 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4660 -46.2 1.250 5099.1 0.10875332 0.1400736
## 4661 -42.0 4.021 5195.8 0.06836679 0.1088732
## 4662 -46.2 1.313 5099.1 0.13296860 0.1400736
## 4663 -47.1 1.405 5099.1 0.06776441 0.1006557
## 4664 -42.7 4.957 5228.1 0.10609689 0.1006557
## 4665 -42.0 4.191 5195.8 0.13296860 0.1088732
## 4666 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4667 -36.4 4.857 5191.0 0.13296860 0.1006557
## 4668 -46.2 1.264 5099.1 0.10609689 0.1006557
## 4669 -26.9 0.720 5017.5 0.13296860 0.1400736
## 4670 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4671 -36.4 4.857 5191.0 0.06776441 0.1400736
## 4672 -36.1 4.966 5228.1 0.13510101 0.1006557
## 4673 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4674 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4675 -36.4 4.864 5191.0 0.06836679 0.1400736
## 4676 -36.1 4.966 5228.1 0.13296860 0.1088732
## 4677 -46.2 1.344 5099.1 0.10609689 0.1006557
## 4678 -36.4 4.864 5191.0 0.10875332 0.1006557
## 4679 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4680 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4681 -42.7 4.957 5228.1 0.11473272 0.1400736
## 4682 -42.7 4.957 5228.1 0.13296860 0.1006557
## 4683 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4684 -46.2 1.250 5099.1 0.09310345 0.1088732
## 4685 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4686 -26.9 0.720 5017.5 0.31059507 0.1400736
## 4687 -41.8 4.947 5228.1 0.13296860 0.1006557
## 4688 -41.8 4.967 5228.1 0.10875332 0.1088732
## 4689 -50.0 1.531 5099.1 0.13296860 0.1400736
## 4690 -36.4 4.855 5191.0 0.10875332 0.1400736
## 4691 -31.4 0.881 5076.2 0.13296860 0.1400736
## 4692 -41.8 4.967 5228.1 0.11473272 0.1006557
## 4693 -36.1 4.964 5228.1 0.27285817 0.1006557
## 4694 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4695 -42.7 4.959 5228.1 0.09310345 0.1006557
## 4696 -36.4 4.859 5191.0 0.06776441 0.1088732
## 4697 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4698 -36.1 4.963 5228.1 0.06836679 0.1006557
## 4699 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4700 -42.0 4.191 5195.8 0.09310345 0.1006557
## 4701 -42.0 4.191 5195.8 0.06776441 0.1006557
## 4702 -46.2 1.250 5099.1 0.09310345 0.1088732
## 4703 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4704 -34.8 0.646 5008.7 0.27285817 0.1006557
## 4705 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4706 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4707 -42.7 4.962 5228.1 0.10609689 0.1006557
## 4708 -42.7 4.957 5228.1 0.11473272 0.1400736
## 4709 -34.8 0.636 5008.7 0.06836679 0.1006557
## 4710 -41.8 4.967 5228.1 0.09484778 0.1400736
## 4711 -40.8 1.268 5076.2 0.13296860 0.1400736
## 4712 -36.4 4.859 5191.0 0.13296860 0.1006557
## 4713 -41.8 4.959 5228.1 0.10875332 0.1006557
## 4714 -42.7 4.959 5228.1 0.06836679 0.1400736
## 4715 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4716 -47.1 1.405 5099.1 0.06776441 0.1088732
## 4717 -36.4 4.859 5191.0 0.06776441 0.1400736
## 4718 -36.1 4.963 5228.1 0.13510101 0.1006557
## 4719 -41.8 4.967 5228.1 0.06776441 0.1006557
## 4720 -29.8 0.773 5017.5 0.27285817 0.1006557
## 4721 -36.4 4.864 5191.0 0.13296860 0.1006557
## 4722 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4723 -41.8 4.959 5228.1 0.06836679 0.1088732
## 4724 -47.1 1.405 5099.1 0.06776441 0.1400736
## 4725 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4726 -36.4 4.855 5191.0 0.09484778 0.1088732
## 4727 -36.1 4.965 5228.1 0.13296860 0.1006557
## 4728 -47.1 1.479 5099.1 0.06836679 0.1006557
## 4729 -47.1 1.479 5099.1 0.13296860 0.1006557
## 4730 -40.8 1.268 5076.2 0.10875332 0.1006557
## 4731 -36.4 4.859 5191.0 0.06836679 0.1006557
## 4732 -47.1 1.479 5099.1 0.11473272 0.1006557
## 4733 -40.8 1.268 5076.2 0.31059507 0.1400736
## 4734 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4735 -36.4 4.858 5191.0 0.06776441 0.1006557
## 4736 -36.4 4.855 5191.0 0.13296860 0.1006557
## 4737 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4738 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4739 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4740 -46.2 1.313 5099.1 0.06776441 0.1006557
## 4741 -46.2 1.313 5099.1 0.11473272 0.1006557
## 4742 -40.8 1.268 5076.2 0.13296860 0.1400736
## 4743 -42.7 4.959 5228.1 0.06836679 0.1006557
## 4744 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4745 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4746 -36.4 4.858 5191.0 0.09310345 0.1006557
## 4747 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4748 -46.2 1.313 5099.1 0.13296860 0.1006557
## 4749 -46.2 1.250 5099.1 0.13296860 0.1400736
## 4750 -36.4 4.859 5191.0 0.09484778 0.1006557
## 4751 -42.7 4.959 5228.1 0.06776441 0.1400736
## 4752 -42.0 4.153 5195.8 0.11473272 0.1006557
## 4753 -36.4 4.864 5191.0 0.10609689 0.1006557
## 4754 -42.7 4.957 5228.1 0.06836679 0.1400736
## 4755 -41.8 4.865 5228.1 0.11473272 0.1400736
## 4756 -38.3 0.904 4991.6 0.27285817 0.1088732
## 4757 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4758 -41.8 4.865 5228.1 0.06836679 0.1088732
## 4759 -40.8 1.260 5076.2 0.10609689 0.1400736
## 4760 -42.7 4.957 5228.1 0.10609689 0.1006557
## 4761 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4762 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4763 -46.2 1.250 5099.1 0.06776441 0.1006557
## 4764 -41.8 4.959 5228.1 0.13510101 0.1088732
## 4765 -36.4 4.856 5191.0 0.06836679 0.1006557
## 4766 -42.7 4.962 5228.1 0.09310345 0.1088732
## 4767 -42.7 4.962 5228.1 0.06836679 0.1006557
## 4768 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4769 -36.1 4.965 5228.1 0.13296860 0.1088732
## 4770 -41.8 4.959 5228.1 0.09310345 0.1006557
## 4771 -46.2 1.250 5099.1 0.06776441 0.1088732
## 4772 -33.0 0.714 5023.5 0.27285817 0.1088732
## 4773 -36.4 4.857 5191.0 0.09310345 0.1088732
## 4774 -42.7 4.957 5228.1 0.11473272 0.1006557
## 4775 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4776 -36.1 4.966 5228.1 0.10609689 0.1400736
## 4777 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4778 -41.8 4.961 5228.1 0.06776441 0.1400736
## 4779 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4780 -36.1 4.963 5228.1 0.27285817 0.1006557
## 4781 -41.8 4.967 5228.1 0.06836679 0.1400736
## 4782 -36.4 4.857 5191.0 0.06776441 0.1400736
## 4783 -41.8 4.959 5228.1 0.06776441 0.1006557
## 4784 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4785 -40.8 1.266 5076.2 0.27285817 0.1088732
## 4786 -36.1 4.966 5228.1 0.10609689 0.1088732
## 4787 -46.2 1.313 5099.1 0.27285817 0.1400736
## 4788 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4789 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4790 -41.8 4.967 5228.1 0.13296860 0.1400736
## 4791 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4792 -41.8 4.961 5228.1 0.13296860 0.1400736
## 4793 -46.2 1.250 5099.1 0.10609689 0.1400736
## 4794 -36.1 4.963 5228.1 0.13296860 0.1006557
## 4795 -36.4 4.859 5191.0 0.13296860 0.1400736
## 4796 -40.3 0.896 4991.6 0.27285817 0.1006557
## 4797 -41.8 4.959 5228.1 0.13296860 0.1088732
## 4798 -36.1 4.966 5228.1 0.06836679 0.1006557
## 4799 -36.1 4.966 5228.1 0.06776441 0.1006557
## 4800 -41.8 4.967 5228.1 0.13510101 0.1006557
## 4801 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4802 -36.4 4.864 5191.0 0.06836679 0.1400736
## 4803 -46.2 1.313 5099.1 0.13296860 0.1088732
## 4804 -42.0 4.191 5195.8 0.13296860 0.1006557
## 4805 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4806 -42.7 4.957 5228.1 0.10609689 0.1400736
## 4807 -41.8 4.947 5228.1 0.06836679 0.1400736
## 4808 -36.1 4.964 5228.1 0.10875332 0.1006557
## 4809 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4810 -42.0 4.191 5195.8 0.09310345 0.1006557
## 4811 -36.4 4.855 5191.0 0.06836679 0.1006557
## 4812 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4813 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4814 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4815 -36.4 4.855 5191.0 0.13296860 0.1088732
## 4816 -41.8 4.959 5228.1 0.09484778 0.1400736
## 4817 -46.2 1.313 5099.1 0.13296860 0.1006557
## 4818 -50.0 1.531 5099.1 0.10875332 0.1400736
## 4819 -36.4 4.857 5191.0 0.06836679 0.1400736
## 4820 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4821 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4822 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4823 -47.1 1.405 5099.1 0.06776441 0.1006557
## 4824 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4825 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4826 -46.2 1.250 5099.1 0.06836679 0.1006557
## 4827 -36.4 4.859 5191.0 0.11473272 0.1006557
## 4828 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4829 -36.1 4.964 5228.1 0.10609689 0.1400736
## 4830 -36.4 4.859 5191.0 0.06776441 0.1006557
## 4831 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4832 -47.1 1.405 5099.1 0.06776441 0.1006557
## 4833 -41.8 4.967 5228.1 0.06836679 0.1006557
## 4834 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4835 -36.1 4.966 5228.1 0.13296860 0.1006557
## 4836 -41.8 4.960 5228.1 0.13296860 0.1006557
## 4837 -36.4 4.864 5191.0 0.13296860 0.1400736
## 4838 -38.3 0.905 4991.6 0.27285817 0.1006557
## 4839 -42.7 4.962 5228.1 0.11473272 0.1006557
## 4840 -36.4 4.855 5191.0 0.13296860 0.1400736
## 4841 -36.4 4.864 5191.0 0.10609689 0.1400736
## 4842 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4843 -46.2 1.250 5099.1 0.06836679 0.1006557
## 4844 -36.4 4.857 5191.0 0.11473272 0.1006557
## 4845 -42.7 4.961 5228.1 0.13510101 0.1006557
## 4846 -46.2 1.250 5099.1 0.06776441 0.1400736
## 4847 -46.2 1.313 5099.1 0.11473272 0.1006557
## 4848 -47.1 1.405 5099.1 0.13296860 0.1006557
## 4849 -36.4 4.859 5191.0 0.13296860 0.1006557
## 4850 -36.1 4.966 5228.1 0.06776441 0.1006557
## 4851 -36.1 4.966 5228.1 0.10609689 0.1088732
## 4852 -41.8 4.961 5228.1 0.10609689 0.1006557
## 4853 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4854 -42.7 4.963 5228.1 0.06776441 0.1006557
## 4855 -46.2 1.313 5099.1 0.10609689 0.1088732
## 4856 -46.2 1.299 5099.1 0.06836679 0.1006557
## 4857 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4858 -41.8 4.967 5228.1 0.13296860 0.1006557
## 4859 -47.1 1.405 5099.1 0.06836679 0.1400736
## 4860 -40.8 1.268 5076.2 0.13296860 0.1400736
## 4861 -36.1 4.964 5228.1 0.10875332 0.1006557
## 4862 -46.2 1.250 5099.1 0.10609689 0.1400736
## 4863 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4864 -46.2 1.250 5099.1 0.06836679 0.1006557
## 4865 -41.8 4.961 5228.1 0.10609689 0.1400736
## 4866 -42.0 4.021 5195.8 0.13510101 0.1400736
## 4867 -42.7 4.957 5228.1 0.10609689 0.1006557
## 4868 -46.2 1.250 5099.1 0.06836679 0.1400736
## 4869 -42.0 4.191 5195.8 0.13296860 0.1006557
## 4870 -42.7 4.963 5228.1 0.06836679 0.1088732
## 4871 -36.4 4.859 5191.0 0.27285817 0.1006557
## 4872 -42.7 4.963 5228.1 0.10609689 0.1006557
## 4873 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4874 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4875 -42.7 4.962 5228.1 0.10609689 0.1400736
## 4876 -41.8 4.947 5228.1 0.10609689 0.1400736
## 4877 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4878 -46.2 1.313 5099.1 0.13296860 0.1006557
## 4879 -41.8 4.959 5228.1 0.10609689 0.1400736
## 4880 -36.1 4.963 5228.1 0.10875332 0.1006557
## 4881 -42.0 4.021 5195.8 0.13296860 0.1006557
## 4882 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4883 -36.4 4.859 5191.0 0.10875332 0.1006557
## 4884 -38.3 0.898 4991.6 0.11473272 0.1088732
## 4885 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4886 -38.3 0.898 4991.6 0.06776441 0.1006557
## 4887 -45.9 3.563 5176.3 0.13296860 0.1006557
## 4888 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4889 -36.1 4.966 5228.1 0.09484778 0.1006557
## 4890 -40.3 0.861 4991.6 0.13296860 0.1006557
## 4891 -42.0 4.021 5195.8 0.10875332 0.1006557
## 4892 -42.0 4.191 5195.8 0.13296860 0.1006557
## 4893 -47.1 1.405 5099.1 0.13510101 0.1400736
## 4894 -42.7 4.963 5228.1 0.09310345 0.1088732
## 4895 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4896 -36.1 4.964 5228.1 0.09484778 0.1006557
## 4897 -41.8 4.959 5228.1 0.13296860 0.1006557
## 4898 -36.4 4.857 5191.0 0.27285817 0.1088732
## 4899 -36.4 4.855 5191.0 0.10609689 0.1088732
## 4900 -36.1 4.963 5228.1 0.13296860 0.1088732
## 4901 -33.6 1.059 5076.2 0.13296860 0.1006557
## 4902 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4903 -40.8 1.268 5076.2 0.10609689 0.1006557
## 4904 -42.7 4.962 5228.1 0.13296860 0.1088732
## 4905 -36.1 4.966 5228.1 0.10609689 0.1006557
## 4906 -36.1 4.966 5228.1 0.10875332 0.1006557
## 4907 -42.7 4.957 5228.1 0.06776441 0.1088732
## 4908 -46.2 1.259 5099.1 0.27285817 0.1088732
## 4909 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4910 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4911 -36.4 4.855 5191.0 0.10609689 0.1006557
## 4912 -42.7 4.959 5228.1 0.06836679 0.1006557
## 4913 -36.4 4.855 5191.0 0.06776441 0.1006557
## 4914 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4915 -36.4 4.864 5191.0 0.10875332 0.1400736
## 4916 -46.2 1.313 5099.1 0.13296860 0.1006557
## 4917 -41.8 4.967 5228.1 0.13510101 0.1006557
## 4918 -30.1 0.714 5017.5 0.27285817 0.1006557
## 4919 -36.4 4.859 5191.0 0.10609689 0.1006557
## 4920 -41.8 4.967 5228.1 0.11473272 0.1400736
## 4921 -41.8 4.959 5228.1 0.11473272 0.1006557
## 4922 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4923 -41.8 4.967 5228.1 0.10609689 0.1006557
## 4924 -36.1 4.966 5228.1 0.13296860 0.1088732
## 4925 -41.8 4.959 5228.1 0.06836679 0.1006557
## 4926 -36.4 4.857 5191.0 0.06836679 0.1400736
## 4927 -46.2 1.250 5099.1 0.13296860 0.1088732
## 4928 -47.1 1.405 5099.1 0.10609689 0.1006557
## 4929 -42.7 4.960 5228.1 0.06776441 0.1400736
## 4930 -47.1 1.405 5099.1 0.11473272 0.1006557
## 4931 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4932 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4933 -36.1 4.966 5228.1 0.09484778 0.1006557
## 4934 -36.4 4.855 5191.0 0.09484778 0.1006557
## 4935 -36.1 4.963 5228.1 0.10609689 0.1088732
## 4936 -46.2 1.250 5099.1 0.06836679 0.1006557
## 4937 -36.1 4.970 5228.1 0.10609689 0.1400736
## 4938 -36.4 4.864 5191.0 0.06836679 0.1088732
## 4939 -42.7 4.963 5228.1 0.06836679 0.1006557
## 4940 -36.4 4.857 5191.0 0.13296860 0.1006557
## 4941 -42.7 4.957 5228.1 0.06836679 0.1006557
## 4942 -41.8 4.959 5228.1 0.10609689 0.1400736
## 4943 -36.1 4.965 5228.1 0.06836679 0.1006557
## 4944 -36.4 4.857 5191.0 0.06836679 0.1400736
## 4945 -46.2 1.250 5099.1 0.11473272 0.1006557
## 4946 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4947 -36.4 4.857 5191.0 0.10609689 0.1006557
## 4948 -46.2 1.299 5099.1 0.11473272 0.1006557
## 4949 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4950 -36.4 4.859 5191.0 0.13296860 0.1006557
## 4951 -47.1 1.405 5099.1 0.06836679 0.1006557
## 4952 -36.1 4.964 5228.1 0.13296860 0.1400736
## 4953 -36.4 4.859 5191.0 0.10609689 0.1006557
## 4954 -36.1 4.963 5228.1 0.10875332 0.1006557
## 4955 -47.1 1.405 5099.1 0.06836679 0.1088732
## 4956 -42.7 4.959 5228.1 0.13296860 0.1006557
## 4957 -36.1 4.970 5228.1 0.06836679 0.1006557
## 4958 -42.7 4.959 5228.1 0.09310345 0.1006557
## 4959 -41.8 4.959 5228.1 0.06776441 0.1006557
## 4960 -46.2 1.259 5099.1 0.13296860 0.1006557
## 4961 -36.4 4.864 5191.0 0.13296860 0.1400736
## 4962 -36.4 4.864 5191.0 0.13296860 0.1088732
## 4963 -36.1 4.963 5228.1 0.06836679 0.1006557
## 4964 -36.1 4.970 5228.1 0.09484778 0.1006557
## 4965 -36.4 4.864 5191.0 0.10609689 0.1006557
## 4966 -46.2 1.250 5099.1 0.06776441 0.1088732
## 4967 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4968 -46.2 1.250 5099.1 0.06776441 0.1400736
## 4969 -42.0 4.021 5195.8 0.13296860 0.1088732
## 4970 -41.8 4.947 5228.1 0.13296860 0.1006557
## 4971 -36.1 4.966 5228.1 0.13296860 0.1400736
## 4972 -36.4 4.859 5191.0 0.10609689 0.1006557
## 4973 -42.7 4.961 5228.1 0.13296860 0.1400736
## 4974 -41.8 4.947 5228.1 0.10609689 0.1006557
## 4975 -36.4 4.857 5191.0 0.09484778 0.1006557
## 4976 -36.1 4.963 5228.1 0.13296860 0.1400736
## 4977 -36.4 4.864 5191.0 0.06836679 0.1400736
## 4978 -31.4 0.869 5076.2 0.27285817 0.1006557
## 4979 -41.8 4.961 5228.1 0.06836679 0.1006557
## 4980 -42.0 4.021 5195.8 0.06776441 0.1400736
## 4981 -46.2 1.250 5099.1 0.10609689 0.1400736
## 4982 -42.0 4.406 5195.8 0.11473272 0.1400736
## 4983 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4984 -36.4 4.855 5191.0 0.13296860 0.1088732
## 4985 -36.1 4.964 5228.1 0.10609689 0.1006557
## 4986 -36.1 4.963 5228.1 0.10609689 0.1400736
## 4987 -41.8 4.967 5228.1 0.13296860 0.1400736
## 4988 -36.4 4.857 5191.0 0.06836679 0.1006557
## 4989 -36.4 4.855 5191.0 0.13510101 0.1006557
## 4990 -47.1 1.405 5099.1 0.06776441 0.1006557
## 4991 -36.4 4.857 5191.0 0.06776441 0.1400736
## 4992 -47.1 1.405 5099.1 0.13296860 0.1400736
## 4993 -41.8 4.959 5228.1 0.10609689 0.1006557
## 4994 -46.2 1.313 5099.1 0.06836679 0.1006557
## 4995 -31.4 0.869 5076.2 0.06836679 0.1088732
## 4996 -36.1 4.963 5228.1 0.10609689 0.1006557
## 4997 -36.1 4.963 5228.1 0.27285817 0.1006557
## 4998 -36.1 4.965 5228.1 0.06836679 0.1006557
## 4999 -46.2 1.250 5099.1 0.13296860 0.1006557
## education_encoded default_encoded housing_encoded loan_encoded
## 1 0.11364176 0.12859229 0.1168756 0.1054972
## 2 0.13781392 0.12859229 0.1082367 0.1142069
## 3 0.13781392 0.12859229 0.1168756 0.1142069
## 4 0.13781392 0.12859229 0.1168756 0.1142069
## 5 0.13781392 0.12859229 0.1082367 0.1142069
## 6 0.07666667 0.12859229 0.1082367 0.1142069
## 7 0.10650888 0.12859229 0.1082367 0.1142069
## 8 0.10650888 0.12859229 0.1082367 0.1142069
## 9 0.13781392 0.12859229 0.1082367 0.1142069
## 10 0.07843137 0.12859229 0.1168756 0.1054972
## 11 0.11364176 0.12859229 0.1168756 0.1142069
## 12 0.11364176 0.12859229 0.1082367 0.1142069
## 13 0.10650888 0.05274566 0.1168756 0.1142069
## 14 0.13781392 0.12859229 0.1168756 0.1142069
## 15 0.13781392 0.12859229 0.1168756 0.1142069
## 16 0.13781392 0.12859229 0.1168756 0.1142069
## 17 0.11364176 0.12859229 0.1082367 0.1142069
## 18 0.13781392 0.12859229 0.1168756 0.1142069
## 19 0.10650888 0.12859229 0.1168756 0.1142069
## 20 0.07666667 0.12859229 0.1082367 0.1142069
## 21 0.07666667 0.05274566 0.1082367 0.1142069
## 22 0.13781392 0.12859229 0.1168756 0.1142069
## 23 0.10650888 0.12859229 0.1168756 0.1054972
## 24 0.13781392 0.12859229 0.1082367 0.1142069
## 25 0.11364176 0.12859229 0.1168756 0.1142069
## 26 0.07843137 0.12859229 0.1168756 0.1142069
## 27 0.07843137 0.12859229 0.1168756 0.1142069
## 28 0.07666667 0.12859229 0.1082367 0.1142069
## 29 0.13781392 0.12859229 0.1168756 0.1142069
## 30 0.13781392 0.12859229 0.1168756 0.1054972
## 31 0.13781392 0.12859229 0.1082367 0.1142069
## 32 0.10650888 0.12859229 0.1168756 0.1142069
## 33 0.11364176 0.05274566 0.1168756 0.1142069
## 34 0.07666667 0.12859229 0.1168756 0.1142069
## 35 0.11364176 0.12859229 0.1082367 0.1142069
## 36 0.13781392 0.12859229 0.1168756 0.1054972
## 37 0.13781392 0.12859229 0.1082367 0.1142069
## 38 0.11364176 0.12859229 0.1168756 0.1142069
## 39 0.13781392 0.12859229 0.1168756 0.1142069
## 40 0.13781392 0.12859229 0.1082367 0.1142069
## 41 0.13958482 0.12859229 0.1168756 0.1142069
## 42 0.13781392 0.12859229 0.1082367 0.1142069
## 43 0.13781392 0.05274566 0.1082367 0.1142069
## 44 0.11364176 0.12859229 0.1168756 0.1142069
## 45 0.10650888 0.12859229 0.1168756 0.1142069
## 46 0.11364176 0.12859229 0.1040100 0.1040100
## 47 0.10978875 0.05274566 0.1168756 0.1142069
## 48 0.10650888 0.12859229 0.1082367 0.1142069
## 49 0.10650888 0.12859229 0.1168756 0.1142069
## 50 0.13781392 0.12859229 0.1168756 0.1054972
## 51 0.10978875 0.12859229 0.1040100 0.1040100
## 52 0.10978875 0.12859229 0.1082367 0.1142069
## 53 0.07843137 0.05274566 0.1168756 0.1054972
## 54 0.13781392 0.12859229 0.1168756 0.1142069
## 55 0.07666667 0.12859229 0.1168756 0.1142069
## 56 0.13781392 0.12859229 0.1168756 0.1142069
## 57 0.11364176 0.12859229 0.1082367 0.1142069
## 58 0.07843137 0.12859229 0.1168756 0.1142069
## 59 0.10650888 0.12859229 0.1168756 0.1054972
## 60 0.07843137 0.12859229 0.1082367 0.1142069
## 61 0.07843137 0.12859229 0.1082367 0.1142069
## 62 0.11364176 0.12859229 0.1082367 0.1142069
## 63 0.13958482 0.12859229 0.1082367 0.1142069
## 64 0.13958482 0.05274566 0.1168756 0.1142069
## 65 0.07666667 0.05274566 0.1082367 0.1142069
## 66 0.10650888 0.12859229 0.1168756 0.1142069
## 67 0.11364176 0.12859229 0.1082367 0.1142069
## 68 0.13781392 0.12859229 0.1082367 0.1142069
## 69 0.13781392 0.12859229 0.1168756 0.1054972
## 70 0.07843137 0.12859229 0.1040100 0.1040100
## 71 0.07666667 0.12859229 0.1082367 0.1054972
## 72 0.10650888 0.12859229 0.1082367 0.1142069
## 73 0.07843137 0.05274566 0.1168756 0.1142069
## 74 0.13781392 0.12859229 0.1082367 0.1142069
## 75 0.07843137 0.12859229 0.1082367 0.1142069
## 76 0.10650888 0.12859229 0.1168756 0.1054972
## 77 0.10650888 0.12859229 0.1082367 0.1142069
## 78 0.07843137 0.12859229 0.1168756 0.1142069
## 79 0.11364176 0.12859229 0.1168756 0.1142069
## 80 0.11364176 0.12859229 0.1082367 0.1142069
## 81 0.13781392 0.05274566 0.1082367 0.1054972
## 82 0.13781392 0.12859229 0.1082367 0.1142069
## 83 0.13781392 0.12859229 0.1168756 0.1142069
## 84 0.10650888 0.12859229 0.1168756 0.1142069
## 85 0.13781392 0.12859229 0.1168756 0.1142069
## 86 0.10650888 0.12859229 0.1168756 0.1142069
## 87 0.07843137 0.12859229 0.1168756 0.1142069
## 88 0.10650888 0.12859229 0.1168756 0.1142069
## 89 0.13781392 0.12859229 0.1168756 0.1142069
## 90 0.13781392 0.12859229 0.1082367 0.1142069
## 91 0.10650888 0.12859229 0.1168756 0.1142069
## 92 0.07666667 0.12859229 0.1168756 0.1054972
## 93 0.11364176 0.12859229 0.1082367 0.1142069
## 94 0.07666667 0.12859229 0.1082367 0.1142069
## 95 0.13781392 0.12859229 0.1168756 0.1054972
## 96 0.07843137 0.12859229 0.1082367 0.1054972
## 97 0.13781392 0.12859229 0.1168756 0.1142069
## 98 0.13781392 0.12859229 0.1168756 0.1142069
## 99 0.13781392 0.12859229 0.1168756 0.1054972
## 100 0.07843137 0.12859229 0.1168756 0.1054972
## 101 0.07666667 0.12859229 0.1082367 0.1142069
## 102 0.10978875 0.12859229 0.1082367 0.1054972
## 103 0.11364176 0.12859229 0.1082367 0.1142069
## 104 0.11364176 0.12859229 0.1082367 0.1142069
## 105 0.10650888 0.12859229 0.1168756 0.1142069
## 106 0.10650888 0.12859229 0.1082367 0.1142069
## 107 0.10650888 0.12859229 0.1168756 0.1142069
## 108 0.13781392 0.12859229 0.1082367 0.1142069
## 109 0.10650888 0.12859229 0.1168756 0.1142069
## 110 0.13781392 0.12859229 0.1168756 0.1142069
## 111 0.10650888 0.12859229 0.1168756 0.1142069
## 112 0.11364176 0.12859229 0.1082367 0.1142069
## 113 0.11364176 0.12859229 0.1168756 0.1142069
## 114 0.11364176 0.05274566 0.1082367 0.1142069
## 115 0.13781392 0.12859229 0.1168756 0.1142069
## 116 0.10650888 0.05274566 0.1082367 0.1142069
## 117 0.10650888 0.12859229 0.1168756 0.1142069
## 118 0.13781392 0.12859229 0.1168756 0.1142069
## 119 0.13781392 0.12859229 0.1082367 0.1142069
## 120 0.13781392 0.12859229 0.1168756 0.1054972
## 121 0.13781392 0.12859229 0.1168756 0.1142069
## 122 0.07843137 0.12859229 0.1168756 0.1142069
## 123 0.13781392 0.12859229 0.1168756 0.1142069
## 124 0.07843137 0.12859229 0.1082367 0.1142069
## 125 0.11364176 0.12859229 0.1082367 0.1054972
## 126 0.10650888 0.12859229 0.1082367 0.1142069
## 127 0.10650888 0.12859229 0.1082367 0.1142069
## 128 0.13781392 0.12859229 0.1168756 0.1142069
## 129 0.13781392 0.12859229 0.1082367 0.1142069
## 130 0.13781392 0.12859229 0.1168756 0.1054972
## 131 0.13958482 0.12859229 0.1168756 0.1142069
## 132 0.10650888 0.05274566 0.1168756 0.1142069
## 133 0.07666667 0.05274566 0.1168756 0.1142069
## 134 0.11364176 0.12859229 0.1168756 0.1142069
## 135 0.10650888 0.12859229 0.1168756 0.1142069
## 136 0.13781392 0.12859229 0.1082367 0.1142069
## 137 0.10978875 0.05274566 0.1082367 0.1142069
## 138 0.11364176 0.12859229 0.1168756 0.1142069
## 139 0.10650888 0.12859229 0.1168756 0.1142069
## 140 0.07843137 0.12859229 0.1082367 0.1142069
## 141 0.10650888 0.12859229 0.1168756 0.1142069
## 142 0.10650888 0.12859229 0.1168756 0.1142069
## 143 0.11364176 0.05274566 0.1082367 0.1142069
## 144 0.13781392 0.12859229 0.1168756 0.1142069
## 145 0.10650888 0.12859229 0.1082367 0.1054972
## 146 0.13781392 0.12859229 0.1168756 0.1142069
## 147 0.13781392 0.05274566 0.1082367 0.1142069
## 148 0.13958482 0.05274566 0.1082367 0.1142069
## 149 0.11364176 0.12859229 0.1168756 0.1054972
## 150 0.11364176 0.12859229 0.1168756 0.1142069
## 151 0.13781392 0.12859229 0.1082367 0.1142069
## 152 0.10650888 0.05274566 0.1082367 0.1142069
## 153 0.07666667 0.12859229 0.1082367 0.1142069
## 154 0.13781392 0.05274566 0.1168756 0.1142069
## 155 0.10650888 0.05274566 0.1168756 0.1142069
## 156 0.13781392 0.12859229 0.1168756 0.1142069
## 157 0.13781392 0.12859229 0.1168756 0.1142069
## 158 0.10978875 0.12859229 0.1082367 0.1142069
## 159 0.10650888 0.12859229 0.1082367 0.1142069
## 160 0.10978875 0.05274566 0.1082367 0.1142069
## 161 0.13781392 0.12859229 0.1168756 0.1142069
## 162 0.10978875 0.12859229 0.1168756 0.1142069
## 163 0.07843137 0.12859229 0.1082367 0.1142069
## 164 0.11364176 0.12859229 0.1168756 0.1142069
## 165 0.07843137 0.12859229 0.1168756 0.1054972
## 166 0.07843137 0.12859229 0.1082367 0.1142069
## 167 0.07843137 0.12859229 0.1168756 0.1142069
## 168 0.07843137 0.05274566 0.1168756 0.1142069
## 169 0.10650888 0.12859229 0.1082367 0.1142069
## 170 0.07666667 0.12859229 0.1168756 0.1142069
## 171 0.11364176 0.12859229 0.1040100 0.1040100
## 172 0.10650888 0.12859229 0.1168756 0.1142069
## 173 0.10650888 0.12859229 0.1082367 0.1142069
## 174 0.10650888 0.12859229 0.1082367 0.1142069
## 175 0.13958482 0.12859229 0.1168756 0.1054972
## 176 0.07666667 0.12859229 0.1168756 0.1054972
## 177 0.11364176 0.12859229 0.1168756 0.1142069
## 178 0.13781392 0.12859229 0.1082367 0.1142069
## 179 0.07666667 0.12859229 0.1168756 0.1142069
## 180 0.10650888 0.05274566 0.1168756 0.1142069
## 181 0.07843137 0.12859229 0.1168756 0.1142069
## 182 0.11364176 0.12859229 0.1168756 0.1142069
## 183 0.07666667 0.12859229 0.1168756 0.1142069
## 184 0.13781392 0.12859229 0.1082367 0.1142069
## 185 0.07843137 0.12859229 0.1168756 0.1142069
## 186 0.10650888 0.12859229 0.1082367 0.1142069
## 187 0.07843137 0.12859229 0.1040100 0.1040100
## 188 0.10650888 0.12859229 0.1168756 0.1142069
## 189 0.13781392 0.12859229 0.1082367 0.1142069
## 190 0.11364176 0.12859229 0.1168756 0.1142069
## 191 0.13781392 0.12859229 0.1168756 0.1142069
## 192 0.07843137 0.05274566 0.1082367 0.1142069
## 193 0.07843137 0.12859229 0.1168756 0.1142069
## 194 0.11364176 0.12859229 0.1168756 0.1142069
## 195 0.07666667 0.12859229 0.1082367 0.1142069
## 196 0.10978875 0.05274566 0.1082367 0.1142069
## 197 0.10650888 0.12859229 0.1082367 0.1142069
## 198 0.11364176 0.12859229 0.1082367 0.1142069
## 199 0.07666667 0.05274566 0.1168756 0.1142069
## 200 0.07843137 0.12859229 0.1082367 0.1142069
## 201 0.10650888 0.12859229 0.1168756 0.1142069
## 202 0.13781392 0.12859229 0.1168756 0.1142069
## 203 0.07843137 0.12859229 0.1168756 0.1142069
## 204 0.13781392 0.12859229 0.1082367 0.1142069
## 205 0.13781392 0.12859229 0.1168756 0.1142069
## 206 0.07843137 0.12859229 0.1168756 0.1142069
## 207 0.13781392 0.12859229 0.1082367 0.1142069
## 208 0.13781392 0.12859229 0.1082367 0.1142069
## 209 0.13781392 0.12859229 0.1168756 0.1142069
## 210 0.07843137 0.12859229 0.1082367 0.1142069
## 211 0.10978875 0.12859229 0.1082367 0.1142069
## 212 0.10650888 0.12859229 0.1082367 0.1054972
## 213 0.13781392 0.12859229 0.1082367 0.1054972
## 214 0.10978875 0.12859229 0.1168756 0.1142069
## 215 0.13781392 0.12859229 0.1168756 0.1142069
## 216 0.13781392 0.12859229 0.1168756 0.1142069
## 217 0.11364176 0.12859229 0.1040100 0.1040100
## 218 0.10650888 0.12859229 0.1082367 0.1142069
## 219 0.10650888 0.12859229 0.1168756 0.1142069
## 220 0.07666667 0.12859229 0.1168756 0.1142069
## 221 0.13781392 0.12859229 0.1082367 0.1142069
## 222 0.10650888 0.12859229 0.1082367 0.1142069
## 223 0.07666667 0.05274566 0.1082367 0.1142069
## 224 0.10650888 0.12859229 0.1082367 0.1142069
## 225 0.13781392 0.12859229 0.1168756 0.1142069
## 226 0.11364176 0.12859229 0.1168756 0.1054972
## 227 0.13781392 0.12859229 0.1082367 0.1142069
## 228 0.13781392 0.12859229 0.1168756 0.1142069
## 229 0.11364176 0.12859229 0.1168756 0.1142069
## 230 0.13781392 0.12859229 0.1082367 0.1142069
## 231 0.11364176 0.12859229 0.1082367 0.1142069
## 232 0.13781392 0.12859229 0.1082367 0.1142069
## 233 0.10650888 0.12859229 0.1168756 0.1142069
## 234 0.13781392 0.12859229 0.1168756 0.1054972
## 235 0.11364176 0.12859229 0.1168756 0.1142069
## 236 0.13781392 0.12859229 0.1082367 0.1142069
## 237 0.10650888 0.12859229 0.1168756 0.1142069
## 238 0.13781392 0.12859229 0.1168756 0.1142069
## 239 0.10978875 0.05274566 0.1082367 0.1054972
## 240 0.10650888 0.12859229 0.1082367 0.1142069
## 241 0.10650888 0.12859229 0.1168756 0.1142069
## 242 0.10650888 0.12859229 0.1082367 0.1142069
## 243 0.11364176 0.12859229 0.1082367 0.1142069
## 244 0.11364176 0.12859229 0.1168756 0.1054972
## 245 0.13781392 0.12859229 0.1082367 0.1142069
## 246 0.07843137 0.12859229 0.1168756 0.1142069
## 247 0.10650888 0.12859229 0.1168756 0.1142069
## 248 0.11364176 0.12859229 0.1168756 0.1142069
## 249 0.13958482 0.12859229 0.1168756 0.1054972
## 250 0.10650888 0.12859229 0.1168756 0.1142069
## 251 0.10650888 0.12859229 0.1082367 0.1142069
## 252 0.11364176 0.12859229 0.1168756 0.1142069
## 253 0.10650888 0.12859229 0.1082367 0.1142069
## 254 0.07843137 0.12859229 0.1168756 0.1142069
## 255 0.10650888 0.12859229 0.1082367 0.1142069
## 256 0.10650888 0.12859229 0.1082367 0.1142069
## 257 0.10978875 0.05274566 0.1082367 0.1054972
## 258 0.13781392 0.12859229 0.1168756 0.1142069
## 259 0.13958482 0.12859229 0.1168756 0.1142069
## 260 0.10978875 0.12859229 0.1082367 0.1142069
## 261 0.11364176 0.12859229 0.1082367 0.1142069
## 262 0.10650888 0.12859229 0.1082367 0.1054972
## 263 0.11364176 0.12859229 0.1082367 0.1142069
## 264 0.13781392 0.12859229 0.1168756 0.1142069
## 265 0.11364176 0.12859229 0.1168756 0.1142069
## 266 0.11364176 0.12859229 0.1168756 0.1142069
## 267 0.11364176 0.12859229 0.1168756 0.1142069
## 268 0.07843137 0.12859229 0.1168756 0.1142069
## 269 0.10650888 0.12859229 0.1082367 0.1142069
## 270 0.10650888 0.12859229 0.1082367 0.1142069
## 271 0.13958482 0.12859229 0.1168756 0.1054972
## 272 0.07843137 0.12859229 0.1082367 0.1142069
## 273 0.10650888 0.12859229 0.1082367 0.1142069
## 274 0.13781392 0.12859229 0.1082367 0.1142069
## 275 0.13781392 0.12859229 0.1040100 0.1040100
## 276 0.13781392 0.12859229 0.1082367 0.1142069
## 277 0.13781392 0.12859229 0.1082367 0.1142069
## 278 0.10650888 0.12859229 0.1168756 0.1142069
## 279 0.13781392 0.12859229 0.1082367 0.1142069
## 280 0.10650888 0.12859229 0.1168756 0.1142069
## 281 0.13781392 0.12859229 0.1168756 0.1142069
## 282 0.11364176 0.12859229 0.1082367 0.1142069
## 283 0.13781392 0.12859229 0.1082367 0.1142069
## 284 0.07843137 0.12859229 0.1168756 0.1142069
## 285 0.10978875 0.12859229 0.1168756 0.1142069
## 286 0.11364176 0.12859229 0.1082367 0.1142069
## 287 0.07843137 0.12859229 0.1168756 0.1142069
## 288 0.07666667 0.12859229 0.1168756 0.1142069
## 289 0.13781392 0.12859229 0.1168756 0.1142069
## 290 0.10978875 0.12859229 0.1082367 0.1054972
## 291 0.10650888 0.12859229 0.1082367 0.1054972
## 292 0.10650888 0.12859229 0.1168756 0.1142069
## 293 0.10650888 0.12859229 0.1168756 0.1142069
## 294 0.10650888 0.12859229 0.1082367 0.1142069
## 295 0.10978875 0.05274566 0.1168756 0.1142069
## 296 0.13781392 0.12859229 0.1168756 0.1142069
## 297 0.10978875 0.12859229 0.1082367 0.1142069
## 298 0.11364176 0.12859229 0.1168756 0.1142069
## 299 0.10650888 0.12859229 0.1168756 0.1142069
## 300 0.10650888 0.12859229 0.1168756 0.1142069
## 301 0.10650888 0.05274566 0.1082367 0.1142069
## 302 0.10650888 0.12859229 0.1082367 0.1142069
## 303 0.13781392 0.12859229 0.1082367 0.1142069
## 304 0.10978875 0.12859229 0.1082367 0.1142069
## 305 0.07843137 0.12859229 0.1168756 0.1054972
## 306 0.11364176 0.12859229 0.1168756 0.1142069
## 307 0.10978875 0.12859229 0.1082367 0.1142069
## 308 0.10650888 0.12859229 0.1082367 0.1142069
## 309 0.11364176 0.12859229 0.1082367 0.1142069
## 310 0.10978875 0.05274566 0.1082367 0.1142069
## 311 0.11364176 0.12859229 0.1168756 0.1142069
## 312 0.10650888 0.12859229 0.1168756 0.1142069
## 313 0.11364176 0.12859229 0.1168756 0.1142069
## 314 0.07843137 0.12859229 0.1082367 0.1142069
## 315 0.07843137 0.12859229 0.1082367 0.1142069
## 316 0.07843137 0.12859229 0.1168756 0.1142069
## 317 0.13781392 0.12859229 0.1168756 0.1142069
## 318 0.13781392 0.12859229 0.1168756 0.1142069
## 319 0.07666667 0.12859229 0.1082367 0.1142069
## 320 0.10978875 0.12859229 0.1082367 0.1142069
## 321 0.13781392 0.05274566 0.1082367 0.1142069
## 322 0.13781392 0.12859229 0.1168756 0.1142069
## 323 0.13781392 0.12859229 0.1168756 0.1142069
## 324 0.10650888 0.12859229 0.1082367 0.1142069
## 325 0.10650888 0.12859229 0.1082367 0.1142069
## 326 0.07666667 0.12859229 0.1168756 0.1142069
## 327 0.10650888 0.05274566 0.1168756 0.1054972
## 328 0.10978875 0.12859229 0.1082367 0.1142069
## 329 0.10650888 0.12859229 0.1168756 0.1054972
## 330 0.10650888 0.12859229 0.1082367 0.1142069
## 331 0.10978875 0.12859229 0.1168756 0.1054972
## 332 0.10978875 0.12859229 0.1082367 0.1142069
## 333 0.10978875 0.05274566 0.1168756 0.1054972
## 334 0.07666667 0.12859229 0.1168756 0.1142069
## 335 0.07843137 0.05274566 0.1168756 0.1054972
## 336 0.10650888 0.12859229 0.1082367 0.1054972
## 337 0.10650888 0.12859229 0.1168756 0.1054972
## 338 0.07666667 0.05274566 0.1168756 0.1142069
## 339 0.07843137 0.12859229 0.1082367 0.1142069
## 340 0.13781392 0.12859229 0.1082367 0.1142069
## 341 0.11364176 0.05274566 0.1082367 0.1142069
## 342 0.13781392 0.05274566 0.1082367 0.1142069
## 343 0.10650888 0.12859229 0.1168756 0.1054972
## 344 0.13781392 0.12859229 0.1082367 0.1142069
## 345 0.10650888 0.12859229 0.1082367 0.1142069
## 346 0.11364176 0.12859229 0.1082367 0.1142069
## 347 0.13781392 0.12859229 0.1168756 0.1142069
## 348 0.13781392 0.12859229 0.1168756 0.1142069
## 349 0.07666667 0.05274566 0.1082367 0.1142069
## 350 0.13781392 0.12859229 0.1168756 0.1142069
## 351 0.10650888 0.12859229 0.1082367 0.1142069
## 352 0.13781392 0.12859229 0.1082367 0.1142069
## 353 0.10650888 0.05274566 0.1082367 0.1142069
## 354 0.10650888 0.12859229 0.1168756 0.1142069
## 355 0.13781392 0.12859229 0.1082367 0.1142069
## 356 0.10650888 0.12859229 0.1168756 0.1142069
## 357 0.10650888 0.12859229 0.1168756 0.1142069
## 358 0.07843137 0.05274566 0.1168756 0.1142069
## 359 0.07843137 0.12859229 0.1168756 0.1142069
## 360 0.10650888 0.12859229 0.1082367 0.1142069
## 361 0.10650888 0.12859229 0.1168756 0.1142069
## 362 0.11364176 0.12859229 0.1082367 0.1142069
## 363 0.07666667 0.12859229 0.1082367 0.1142069
## 364 0.13958482 0.12859229 0.1082367 0.1142069
## 365 0.13781392 0.05274566 0.1082367 0.1142069
## 366 0.13781392 0.12859229 0.1168756 0.1142069
## 367 0.10650888 0.05274566 0.1168756 0.1142069
## 368 0.10650888 0.12859229 0.1168756 0.1054972
## 369 0.10978875 0.05274566 0.1168756 0.1142069
## 370 0.11364176 0.12859229 0.1168756 0.1142069
## 371 0.13781392 0.05274566 0.1082367 0.1142069
## 372 0.11364176 0.12859229 0.1168756 0.1142069
## 373 0.13781392 0.12859229 0.1082367 0.1142069
## 374 0.11364176 0.12859229 0.1040100 0.1040100
## 375 0.10650888 0.12859229 0.1168756 0.1142069
## 376 0.07843137 0.05274566 0.1168756 0.1142069
## 377 0.07843137 0.12859229 0.1168756 0.1142069
## 378 0.10650888 0.12859229 0.1168756 0.1142069
## 379 0.07843137 0.12859229 0.1082367 0.1142069
## 380 0.13958482 0.12859229 0.1168756 0.1142069
## 381 0.13781392 0.12859229 0.1082367 0.1054972
## 382 0.07843137 0.12859229 0.1168756 0.1142069
## 383 0.10650888 0.12859229 0.1168756 0.1142069
## 384 0.13781392 0.05274566 0.1082367 0.1142069
## 385 0.10650888 0.05274566 0.1040100 0.1040100
## 386 0.13781392 0.12859229 0.1168756 0.1142069
## 387 0.07843137 0.12859229 0.1168756 0.1054972
## 388 0.13781392 0.12859229 0.1168756 0.1142069
## 389 0.07666667 0.12859229 0.1082367 0.1142069
## 390 0.13781392 0.12859229 0.1082367 0.1054972
## 391 0.13958482 0.12859229 0.1082367 0.1142069
## 392 0.11364176 0.12859229 0.1168756 0.1142069
## 393 0.13781392 0.12859229 0.1168756 0.1054972
## 394 0.13781392 0.12859229 0.1082367 0.1142069
## 395 0.07843137 0.12859229 0.1168756 0.1142069
## 396 0.10650888 0.05274566 0.1168756 0.1142069
## 397 0.13781392 0.12859229 0.1168756 0.1142069
## 398 0.07666667 0.12859229 0.1082367 0.1142069
## 399 0.13781392 0.12859229 0.1168756 0.1054972
## 400 0.07666667 0.12859229 0.1168756 0.1142069
## 401 0.10978875 0.12859229 0.1082367 0.1054972
## 402 0.10650888 0.05274566 0.1168756 0.1054972
## 403 0.13781392 0.05274566 0.1168756 0.1142069
## 404 0.13781392 0.12859229 0.1082367 0.1142069
## 405 0.13781392 0.12859229 0.1168756 0.1142069
## 406 0.07843137 0.12859229 0.1082367 0.1142069
## 407 0.13781392 0.12859229 0.1168756 0.1054972
## 408 0.11364176 0.12859229 0.1168756 0.1142069
## 409 0.10978875 0.12859229 0.1082367 0.1142069
## 410 0.10978875 0.05274566 0.1168756 0.1142069
## 411 0.11364176 0.12859229 0.1168756 0.1054972
## 412 0.07843137 0.12859229 0.1168756 0.1142069
## 413 0.11364176 0.12859229 0.1168756 0.1142069
## 414 0.11364176 0.05274566 0.1168756 0.1142069
## 415 0.07666667 0.12859229 0.1168756 0.1142069
## 416 0.13781392 0.12859229 0.1082367 0.1142069
## 417 0.07843137 0.12859229 0.1168756 0.1142069
## 418 0.07843137 0.12859229 0.1168756 0.1142069
## 419 0.10650888 0.12859229 0.1082367 0.1142069
## 420 0.13781392 0.12859229 0.1168756 0.1142069
## 421 0.07666667 0.05274566 0.1082367 0.1054972
## 422 0.10978875 0.12859229 0.1082367 0.1142069
## 423 0.07843137 0.05274566 0.1082367 0.1142069
## 424 0.13781392 0.12859229 0.1082367 0.1142069
## 425 0.11364176 0.12859229 0.1082367 0.1142069
## 426 0.10978875 0.05274566 0.1082367 0.1142069
## 427 0.10650888 0.12859229 0.1082367 0.1142069
## 428 0.13781392 0.12859229 0.1168756 0.1142069
## 429 0.10650888 0.12859229 0.1082367 0.1142069
## 430 0.13958482 0.12859229 0.1168756 0.1142069
## 431 0.10650888 0.12859229 0.1082367 0.1142069
## 432 0.10650888 0.12859229 0.1168756 0.1054972
## 433 0.13781392 0.12859229 0.1168756 0.1142069
## 434 0.13781392 0.12859229 0.1082367 0.1054972
## 435 0.10650888 0.12859229 0.1168756 0.1142069
## 436 0.10978875 0.12859229 0.1168756 0.1142069
## 437 0.13781392 0.12859229 0.1168756 0.1142069
## 438 0.11364176 0.12859229 0.1168756 0.1142069
## 439 0.07843137 0.12859229 0.1082367 0.1142069
## 440 0.11364176 0.12859229 0.1168756 0.1142069
## 441 0.07666667 0.05274566 0.1082367 0.1142069
## 442 0.13781392 0.12859229 0.1168756 0.1142069
## 443 0.10650888 0.12859229 0.1168756 0.1054972
## 444 0.07843137 0.12859229 0.1168756 0.1142069
## 445 0.10978875 0.12859229 0.1082367 0.1142069
## 446 0.13958482 0.12859229 0.1168756 0.1142069
## 447 0.10650888 0.12859229 0.1168756 0.1142069
## 448 0.13958482 0.12859229 0.1082367 0.1142069
## 449 0.11364176 0.05274566 0.1082367 0.1142069
## 450 0.07666667 0.12859229 0.1082367 0.1142069
## 451 0.10978875 0.12859229 0.1168756 0.1142069
## 452 0.07843137 0.05274566 0.1082367 0.1142069
## 453 0.11364176 0.12859229 0.1168756 0.1142069
## 454 0.10978875 0.05274566 0.1082367 0.1142069
## 455 0.10978875 0.12859229 0.1168756 0.1142069
## 456 0.10650888 0.12859229 0.1168756 0.1142069
## 457 0.10650888 0.12859229 0.1168756 0.1142069
## 458 0.13958482 0.12859229 0.1168756 0.1142069
## 459 0.07843137 0.12859229 0.1082367 0.1142069
## 460 0.13781392 0.12859229 0.1168756 0.1142069
## 461 0.13781392 0.12859229 0.1168756 0.1054972
## 462 0.07843137 0.05274566 0.1082367 0.1142069
## 463 0.10978875 0.12859229 0.1082367 0.1054972
## 464 0.07843137 0.12859229 0.1082367 0.1142069
## 465 0.11364176 0.12859229 0.1082367 0.1142069
## 466 0.10650888 0.12859229 0.1168756 0.1142069
## 467 0.13958482 0.12859229 0.1082367 0.1142069
## 468 0.11364176 0.12859229 0.1168756 0.1142069
## 469 0.11364176 0.12859229 0.1168756 0.1142069
## 470 0.13781392 0.05274566 0.1168756 0.1142069
## 471 0.13958482 0.12859229 0.1168756 0.1142069
## 472 0.10650888 0.12859229 0.1082367 0.1054972
## 473 0.10650888 0.12859229 0.1168756 0.1142069
## 474 0.13781392 0.12859229 0.1168756 0.1142069
## 475 0.10650888 0.12859229 0.1082367 0.1054972
## 476 0.07843137 0.12859229 0.1040100 0.1040100
## 477 0.11364176 0.12859229 0.1082367 0.1054972
## 478 0.13781392 0.12859229 0.1082367 0.1142069
## 479 0.07843137 0.12859229 0.1168756 0.1142069
## 480 0.10650888 0.12859229 0.1082367 0.1142069
## 481 0.13781392 0.12859229 0.1168756 0.1142069
## 482 0.13781392 0.12859229 0.1168756 0.1142069
## 483 0.13958482 0.12859229 0.1082367 0.1142069
## 484 0.13781392 0.12859229 0.1168756 0.1142069
## 485 0.13781392 0.12859229 0.1082367 0.1142069
## 486 0.07843137 0.12859229 0.1082367 0.1142069
## 487 0.13781392 0.12859229 0.1168756 0.1054972
## 488 0.13781392 0.12859229 0.1082367 0.1142069
## 489 0.13958482 0.05274566 0.1168756 0.1142069
## 490 0.07843137 0.12859229 0.1168756 0.1142069
## 491 0.10978875 0.12859229 0.1082367 0.1142069
## 492 0.07843137 0.12859229 0.1168756 0.1142069
## 493 0.13781392 0.12859229 0.1168756 0.1142069
## 494 0.10650888 0.12859229 0.1082367 0.1054972
## 495 0.10650888 0.12859229 0.1082367 0.1054972
## 496 0.13958482 0.12859229 0.1168756 0.1142069
## 497 0.13781392 0.12859229 0.1082367 0.1142069
## 498 0.11364176 0.12859229 0.1082367 0.1142069
## 499 0.11364176 0.12859229 0.1082367 0.1054972
## 500 0.13781392 0.12859229 0.1082367 0.1142069
## 501 0.11364176 0.12859229 0.1168756 0.1142069
## 502 0.11364176 0.12859229 0.1168756 0.1142069
## 503 0.13781392 0.12859229 0.1082367 0.1142069
## 504 0.13781392 0.05274566 0.1082367 0.1142069
## 505 0.10978875 0.05274566 0.1168756 0.1142069
## 506 0.10650888 0.12859229 0.1082367 0.1054972
## 507 0.10978875 0.12859229 0.1082367 0.1054972
## 508 0.13781392 0.12859229 0.1082367 0.1142069
## 509 0.13781392 0.12859229 0.1168756 0.1054972
## 510 0.13958482 0.12859229 0.1168756 0.1142069
## 511 0.10978875 0.05274566 0.1168756 0.1142069
## 512 0.13781392 0.12859229 0.1168756 0.1142069
## 513 0.13781392 0.12859229 0.1082367 0.1054972
## 514 0.11364176 0.12859229 0.1168756 0.1142069
## 515 0.10978875 0.12859229 0.1168756 0.1142069
## 516 0.10978875 0.12859229 0.1082367 0.1142069
## 517 0.13958482 0.12859229 0.1168756 0.1142069
## 518 0.07843137 0.12859229 0.1082367 0.1142069
## 519 0.10650888 0.12859229 0.1168756 0.1142069
## 520 0.11364176 0.12859229 0.1168756 0.1142069
## 521 0.10650888 0.12859229 0.1168756 0.1142069
## 522 0.10650888 0.12859229 0.1168756 0.1142069
## 523 0.13781392 0.12859229 0.1168756 0.1142069
## 524 0.10978875 0.12859229 0.1082367 0.1142069
## 525 0.10978875 0.05274566 0.1082367 0.1142069
## 526 0.07843137 0.05274566 0.1168756 0.1142069
## 527 0.10978875 0.12859229 0.1168756 0.1142069
## 528 0.11364176 0.12859229 0.1168756 0.1142069
## 529 0.07843137 0.12859229 0.1082367 0.1142069
## 530 0.10650888 0.12859229 0.1082367 0.1142069
## 531 0.13781392 0.12859229 0.1082367 0.1142069
## 532 0.11364176 0.12859229 0.1082367 0.1142069
## 533 0.13958482 0.05274566 0.1082367 0.1142069
## 534 0.13958482 0.12859229 0.1082367 0.1142069
## 535 0.07843137 0.12859229 0.1168756 0.1142069
## 536 0.07843137 0.12859229 0.1168756 0.1142069
## 537 0.10978875 0.05274566 0.1082367 0.1142069
## 538 0.10650888 0.12859229 0.1082367 0.1142069
## 539 0.13781392 0.05274566 0.1168756 0.1142069
## 540 0.10978875 0.12859229 0.1168756 0.1142069
## 541 0.10650888 0.05274566 0.1082367 0.1142069
## 542 0.07843137 0.12859229 0.1082367 0.1054972
## 543 0.13958482 0.12859229 0.1168756 0.1142069
## 544 0.10650888 0.12859229 0.1168756 0.1054972
## 545 0.10650888 0.12859229 0.1168756 0.1054972
## 546 0.10978875 0.12859229 0.1168756 0.1142069
## 547 0.07843137 0.12859229 0.1082367 0.1142069
## 548 0.13781392 0.12859229 0.1168756 0.1142069
## 549 0.13781392 0.12859229 0.1168756 0.1142069
## 550 0.07843137 0.12859229 0.1082367 0.1142069
## 551 0.10650888 0.12859229 0.1168756 0.1142069
## 552 0.10650888 0.12859229 0.1168756 0.1054972
## 553 0.10978875 0.12859229 0.1168756 0.1142069
## 554 0.13958482 0.12859229 0.1082367 0.1142069
## 555 0.13781392 0.12859229 0.1168756 0.1142069
## 556 0.13781392 0.12859229 0.1082367 0.1142069
## 557 0.10978875 0.12859229 0.1168756 0.1142069
## 558 0.10650888 0.12859229 0.1168756 0.1054972
## 559 0.10650888 0.12859229 0.1082367 0.1142069
## 560 0.13958482 0.12859229 0.1168756 0.1142069
## 561 0.10978875 0.12859229 0.1168756 0.1142069
## 562 0.13781392 0.12859229 0.1082367 0.1142069
## 563 0.13781392 0.12859229 0.1168756 0.1054972
## 564 0.10650888 0.12859229 0.1168756 0.1054972
## 565 0.10978875 0.12859229 0.1168756 0.1142069
## 566 0.07843137 0.12859229 0.1082367 0.1142069
## 567 0.07666667 0.12859229 0.1168756 0.1054972
## 568 0.10650888 0.12859229 0.1168756 0.1142069
## 569 0.10650888 0.12859229 0.1082367 0.1054972
## 570 0.13781392 0.12859229 0.1168756 0.1054972
## 571 0.10978875 0.05274566 0.1168756 0.1142069
## 572 0.10978875 0.12859229 0.1168756 0.1142069
## 573 0.13781392 0.12859229 0.1168756 0.1142069
## 574 0.10650888 0.12859229 0.1168756 0.1142069
## 575 0.10650888 0.12859229 0.1082367 0.1142069
## 576 0.07843137 0.12859229 0.1168756 0.1142069
## 577 0.13781392 0.12859229 0.1082367 0.1142069
## 578 0.13781392 0.12859229 0.1082367 0.1054972
## 579 0.13781392 0.12859229 0.1082367 0.1142069
## 580 0.13781392 0.12859229 0.1082367 0.1142069
## 581 0.10650888 0.12859229 0.1168756 0.1142069
## 582 0.07843137 0.12859229 0.1168756 0.1142069
## 583 0.13781392 0.12859229 0.1082367 0.1142069
## 584 0.13958482 0.12859229 0.1082367 0.1142069
## 585 0.07666667 0.12859229 0.1082367 0.1142069
## 586 0.13781392 0.12859229 0.1082367 0.1142069
## 587 0.13781392 0.12859229 0.1168756 0.1142069
## 588 0.10650888 0.12859229 0.1082367 0.1142069
## 589 0.10650888 0.12859229 0.1168756 0.1054972
## 590 0.07843137 0.12859229 0.1082367 0.1054972
## 591 0.07843137 0.12859229 0.1168756 0.1142069
## 592 0.10978875 0.12859229 0.1082367 0.1142069
## 593 0.11364176 0.05274566 0.1168756 0.1142069
## 594 0.07843137 0.12859229 0.1168756 0.1142069
## 595 0.10650888 0.05274566 0.1168756 0.1142069
## 596 0.13781392 0.12859229 0.1082367 0.1142069
## 597 0.11364176 0.12859229 0.1082367 0.1142069
## 598 0.11364176 0.12859229 0.1168756 0.1142069
## 599 0.10978875 0.12859229 0.1168756 0.1142069
## 600 0.13781392 0.12859229 0.1082367 0.1142069
## 601 0.10650888 0.12859229 0.1168756 0.1142069
## 602 0.13781392 0.12859229 0.1168756 0.1142069
## 603 0.10978875 0.12859229 0.1168756 0.1054972
## 604 0.13781392 0.12859229 0.1168756 0.1142069
## 605 0.13781392 0.12859229 0.1082367 0.1054972
## 606 0.10650888 0.12859229 0.1040100 0.1040100
## 607 0.07843137 0.12859229 0.1168756 0.1142069
## 608 0.13781392 0.12859229 0.1168756 0.1142069
## 609 0.07843137 0.12859229 0.1168756 0.1142069
## 610 0.10650888 0.12859229 0.1082367 0.1142069
## 611 0.10650888 0.12859229 0.1168756 0.1142069
## 612 0.13781392 0.12859229 0.1168756 0.1142069
## 613 0.07843137 0.05274566 0.1082367 0.1142069
## 614 0.10650888 0.12859229 0.1082367 0.1054972
## 615 0.07843137 0.12859229 0.1168756 0.1142069
## 616 0.10650888 0.12859229 0.1168756 0.1142069
## 617 0.11364176 0.12859229 0.1082367 0.1142069
## 618 0.10650888 0.12859229 0.1082367 0.1142069
## 619 0.10978875 0.12859229 0.1082367 0.1054972
## 620 0.07666667 0.12859229 0.1082367 0.1142069
## 621 0.07843137 0.12859229 0.1168756 0.1142069
## 622 0.10650888 0.12859229 0.1168756 0.1142069
## 623 0.07843137 0.12859229 0.1168756 0.1142069
## 624 0.10650888 0.12859229 0.1168756 0.1142069
## 625 0.13781392 0.12859229 0.1168756 0.1054972
## 626 0.10650888 0.12859229 0.1168756 0.1142069
## 627 0.07843137 0.05274566 0.1082367 0.1054972
## 628 0.11364176 0.12859229 0.1168756 0.1054972
## 629 0.10650888 0.12859229 0.1082367 0.1054972
## 630 0.07843137 0.12859229 0.1040100 0.1040100
## 631 0.10650888 0.05274566 0.1168756 0.1142069
## 632 0.07843137 0.12859229 0.1082367 0.1142069
## 633 0.13781392 0.12859229 0.1082367 0.1142069
## 634 0.13781392 0.12859229 0.1082367 0.1142069
## 635 0.11364176 0.12859229 0.1168756 0.1142069
## 636 0.11364176 0.12859229 0.1168756 0.1142069
## 637 0.10650888 0.12859229 0.1082367 0.1142069
## 638 0.13781392 0.12859229 0.1082367 0.1142069
## 639 0.07843137 0.05274566 0.1082367 0.1142069
## 640 0.13781392 0.12859229 0.1082367 0.1142069
## 641 0.10650888 0.00000000 0.1082367 0.1142069
## 642 0.13781392 0.12859229 0.1040100 0.1040100
## 643 0.07843137 0.12859229 0.1168756 0.1142069
## 644 0.10650888 0.12859229 0.1168756 0.1142069
## 645 0.10650888 0.12859229 0.1168756 0.1142069
## 646 0.10650888 0.12859229 0.1082367 0.1142069
## 647 0.07843137 0.05274566 0.1168756 0.1142069
## 648 0.10650888 0.12859229 0.1168756 0.1142069
## 649 0.10978875 0.05274566 0.1040100 0.1040100
## 650 0.07843137 0.12859229 0.1082367 0.1054972
## 651 0.11364176 0.05274566 0.1168756 0.1142069
## 652 0.11364176 0.05274566 0.1082367 0.1142069
## 653 0.11364176 0.12859229 0.1168756 0.1142069
## 654 0.10650888 0.05274566 0.1168756 0.1142069
## 655 0.10978875 0.12859229 0.1168756 0.1054972
## 656 0.10650888 0.05274566 0.1082367 0.1142069
## 657 0.11364176 0.12859229 0.1168756 0.1142069
## 658 0.10978875 0.05274566 0.1168756 0.1142069
## 659 0.13781392 0.12859229 0.1168756 0.1142069
## 660 0.13781392 0.12859229 0.1168756 0.1142069
## 661 0.11364176 0.12859229 0.1168756 0.1142069
## 662 0.10650888 0.12859229 0.1082367 0.1142069
## 663 0.10650888 0.12859229 0.1168756 0.1142069
## 664 0.10650888 0.12859229 0.1168756 0.1142069
## 665 0.10650888 0.12859229 0.1168756 0.1142069
## 666 0.10650888 0.12859229 0.1082367 0.1142069
## 667 0.13781392 0.12859229 0.1082367 0.1054972
## 668 0.10650888 0.12859229 0.1168756 0.1142069
## 669 0.13781392 0.12859229 0.1168756 0.1142069
## 670 0.07843137 0.12859229 0.1168756 0.1142069
## 671 0.10650888 0.12859229 0.1168756 0.1142069
## 672 0.10650888 0.12859229 0.1082367 0.1142069
## 673 0.13781392 0.12859229 0.1082367 0.1054972
## 674 0.10650888 0.12859229 0.1082367 0.1142069
## 675 0.10650888 0.12859229 0.1082367 0.1142069
## 676 0.10978875 0.05274566 0.1082367 0.1142069
## 677 0.10650888 0.12859229 0.1082367 0.1142069
## 678 0.13781392 0.12859229 0.1040100 0.1040100
## 679 0.13781392 0.12859229 0.1082367 0.1142069
## 680 0.13781392 0.12859229 0.1168756 0.1054972
## 681 0.13781392 0.12859229 0.1168756 0.1054972
## 682 0.11364176 0.12859229 0.1082367 0.1054972
## 683 0.07843137 0.12859229 0.1168756 0.1054972
## 684 0.10650888 0.12859229 0.1082367 0.1142069
## 685 0.07843137 0.05274566 0.1082367 0.1142069
## 686 0.10650888 0.12859229 0.1082367 0.1142069
## 687 0.13958482 0.12859229 0.1168756 0.1142069
## 688 0.07843137 0.05274566 0.1082367 0.1054972
## 689 0.10650888 0.12859229 0.1168756 0.1054972
## 690 0.13958482 0.12859229 0.1082367 0.1054972
## 691 0.10650888 0.12859229 0.1168756 0.1142069
## 692 0.10650888 0.12859229 0.1082367 0.1142069
## 693 0.10650888 0.12859229 0.1168756 0.1142069
## 694 0.10650888 0.12859229 0.1082367 0.1142069
## 695 0.10650888 0.05274566 0.1168756 0.1142069
## 696 0.10978875 0.12859229 0.1082367 0.1142069
## 697 0.13958482 0.12859229 0.1168756 0.1054972
## 698 0.07666667 0.12859229 0.1168756 0.1142069
## 699 0.10650888 0.05274566 0.1168756 0.1142069
## 700 0.10650888 0.12859229 0.1168756 0.1142069
## 701 0.10650888 0.12859229 0.1168756 0.1142069
## 702 0.10650888 0.12859229 0.1082367 0.1142069
## 703 0.10650888 0.12859229 0.1082367 0.1142069
## 704 0.07666667 0.12859229 0.1168756 0.1142069
## 705 0.07843137 0.12859229 0.1082367 0.1054972
## 706 0.13781392 0.12859229 0.1168756 0.1142069
## 707 0.13781392 0.12859229 0.1082367 0.1142069
## 708 0.11364176 0.12859229 0.1082367 0.1142069
## 709 0.13781392 0.12859229 0.1168756 0.1142069
## 710 0.10650888 0.12859229 0.1082367 0.1142069
## 711 0.07843137 0.05274566 0.1082367 0.1142069
## 712 0.13781392 0.12859229 0.1168756 0.1142069
## 713 0.10650888 0.12859229 0.1082367 0.1142069
## 714 0.10650888 0.05274566 0.1168756 0.1142069
## 715 0.10650888 0.12859229 0.1168756 0.1142069
## 716 0.13781392 0.12859229 0.1168756 0.1142069
## 717 0.10650888 0.12859229 0.1168756 0.1142069
## 718 0.13958482 0.12859229 0.1168756 0.1054972
## 719 0.07843137 0.12859229 0.1082367 0.1142069
## 720 0.11364176 0.12859229 0.1168756 0.1142069
## 721 0.10650888 0.12859229 0.1168756 0.1142069
## 722 0.13781392 0.12859229 0.1082367 0.1142069
## 723 0.11364176 0.12859229 0.1168756 0.1054972
## 724 0.11364176 0.12859229 0.1168756 0.1142069
## 725 0.07666667 0.12859229 0.1168756 0.1142069
## 726 0.07843137 0.12859229 0.1168756 0.1142069
## 727 0.10650888 0.05274566 0.1168756 0.1142069
## 728 0.10978875 0.12859229 0.1168756 0.1142069
## 729 0.13781392 0.12859229 0.1082367 0.1054972
## 730 0.10650888 0.05274566 0.1082367 0.1142069
## 731 0.10650888 0.12859229 0.1082367 0.1054972
## 732 0.07843137 0.05274566 0.1082367 0.1142069
## 733 0.07843137 0.12859229 0.1082367 0.1142069
## 734 0.11364176 0.12859229 0.1168756 0.1142069
## 735 0.13781392 0.12859229 0.1082367 0.1142069
## 736 0.10650888 0.12859229 0.1168756 0.1142069
## 737 0.10978875 0.12859229 0.1168756 0.1054972
## 738 0.07666667 0.12859229 0.1082367 0.1142069
## 739 0.13781392 0.12859229 0.1082367 0.1142069
## 740 0.13781392 0.12859229 0.1168756 0.1142069
## 741 0.10650888 0.12859229 0.1168756 0.1142069
## 742 0.07666667 0.12859229 0.1082367 0.1142069
## 743 0.13958482 0.12859229 0.1082367 0.1142069
## 744 0.10650888 0.12859229 0.1168756 0.1054972
## 745 0.10650888 0.05274566 0.1168756 0.1054972
## 746 0.11364176 0.12859229 0.1168756 0.1142069
## 747 0.10978875 0.12859229 0.1082367 0.1142069
## 748 0.10650888 0.12859229 0.1082367 0.1142069
## 749 0.10650888 0.12859229 0.1082367 0.1142069
## 750 0.10650888 0.12859229 0.1168756 0.1142069
## 751 0.07843137 0.05274566 0.1168756 0.1142069
## 752 0.10650888 0.12859229 0.1168756 0.1142069
## 753 0.07843137 0.12859229 0.1168756 0.1142069
## 754 0.13781392 0.12859229 0.1168756 0.1142069
## 755 0.10650888 0.12859229 0.1168756 0.1142069
## 756 0.07666667 0.12859229 0.1168756 0.1142069
## 757 0.10650888 0.12859229 0.1168756 0.1142069
## 758 0.10650888 0.12859229 0.1168756 0.1142069
## 759 0.10650888 0.12859229 0.1168756 0.1142069
## 760 0.07843137 0.12859229 0.1082367 0.1142069
## 761 0.13781392 0.05274566 0.1082367 0.1142069
## 762 0.13781392 0.12859229 0.1082367 0.1142069
## 763 0.10650888 0.12859229 0.1168756 0.1142069
## 764 0.07843137 0.12859229 0.1168756 0.1142069
## 765 0.13781392 0.12859229 0.1168756 0.1142069
## 766 0.11364176 0.12859229 0.1168756 0.1142069
## 767 0.10650888 0.12859229 0.1168756 0.1142069
## 768 0.07843137 0.12859229 0.1082367 0.1142069
## 769 0.13958482 0.12859229 0.1040100 0.1040100
## 770 0.13781392 0.12859229 0.1082367 0.1142069
## 771 0.10650888 0.12859229 0.1168756 0.1142069
## 772 0.10650888 0.12859229 0.1082367 0.1142069
## 773 0.13781392 0.12859229 0.1082367 0.1142069
## 774 0.13781392 0.12859229 0.1082367 0.1054972
## 775 0.13781392 0.12859229 0.1168756 0.1142069
## 776 0.13781392 0.12859229 0.1082367 0.1142069
## 777 0.13781392 0.12859229 0.1168756 0.1054972
## 778 0.07666667 0.12859229 0.1082367 0.1142069
## 779 0.11364176 0.05274566 0.1082367 0.1142069
## 780 0.07843137 0.12859229 0.1168756 0.1142069
## 781 0.10650888 0.12859229 0.1082367 0.1142069
## 782 0.07843137 0.12859229 0.1168756 0.1142069
## 783 0.10650888 0.12859229 0.1168756 0.1142069
## 784 0.13781392 0.12859229 0.1168756 0.1142069
## 785 0.07843137 0.12859229 0.1082367 0.1054972
## 786 0.11364176 0.12859229 0.1168756 0.1142069
## 787 0.13781392 0.12859229 0.1082367 0.1142069
## 788 0.13781392 0.12859229 0.1168756 0.1142069
## 789 0.10650888 0.05274566 0.1168756 0.1142069
## 790 0.13781392 0.12859229 0.1168756 0.1142069
## 791 0.10978875 0.12859229 0.1168756 0.1054972
## 792 0.13958482 0.12859229 0.1168756 0.1142069
## 793 0.10650888 0.12859229 0.1168756 0.1142069
## 794 0.13781392 0.12859229 0.1082367 0.1142069
## 795 0.13781392 0.12859229 0.1168756 0.1142069
## 796 0.10978875 0.12859229 0.1040100 0.1040100
## 797 0.10650888 0.12859229 0.1082367 0.1054972
## 798 0.13781392 0.12859229 0.1168756 0.1142069
## 799 0.13781392 0.12859229 0.1168756 0.1142069
## 800 0.10650888 0.12859229 0.1168756 0.1142069
## 801 0.11364176 0.12859229 0.1082367 0.1142069
## 802 0.07843137 0.12859229 0.1082367 0.1142069
## 803 0.11364176 0.12859229 0.1168756 0.1142069
## 804 0.13781392 0.12859229 0.1168756 0.1142069
## 805 0.07843137 0.05274566 0.1082367 0.1142069
## 806 0.07666667 0.05274566 0.1082367 0.1142069
## 807 0.13781392 0.12859229 0.1168756 0.1142069
## 808 0.10978875 0.12859229 0.1082367 0.1142069
## 809 0.10650888 0.12859229 0.1082367 0.1142069
## 810 0.10650888 0.05274566 0.1168756 0.1142069
## 811 0.10650888 0.12859229 0.1168756 0.1142069
## 812 0.13781392 0.12859229 0.1168756 0.1142069
## 813 0.11364176 0.12859229 0.1168756 0.1054972
## 814 0.10650888 0.12859229 0.1168756 0.1142069
## 815 0.13781392 0.12859229 0.1168756 0.1142069
## 816 0.10650888 0.12859229 0.1168756 0.1142069
## 817 0.10978875 0.12859229 0.1082367 0.1054972
## 818 0.10978875 0.12859229 0.1168756 0.1054972
## 819 0.10978875 0.12859229 0.1168756 0.1142069
## 820 0.07843137 0.12859229 0.1168756 0.1142069
## 821 0.10978875 0.12859229 0.1168756 0.1142069
## 822 0.11364176 0.12859229 0.1082367 0.1142069
## 823 0.07666667 0.05274566 0.1082367 0.1142069
## 824 0.10650888 0.12859229 0.1082367 0.1142069
## 825 0.11364176 0.12859229 0.1082367 0.1142069
## 826 0.07666667 0.05274566 0.1168756 0.1142069
## 827 0.13781392 0.12859229 0.1082367 0.1142069
## 828 0.10650888 0.12859229 0.1168756 0.1142069
## 829 0.10978875 0.05274566 0.1168756 0.1142069
## 830 0.10978875 0.05274566 0.1082367 0.1142069
## 831 0.11364176 0.12859229 0.1168756 0.1142069
## 832 0.10650888 0.12859229 0.1168756 0.1142069
## 833 0.10650888 0.12859229 0.1168756 0.1054972
## 834 0.11364176 0.12859229 0.1168756 0.1054972
## 835 0.13781392 0.12859229 0.1082367 0.1142069
## 836 0.13781392 0.12859229 0.1082367 0.1054972
## 837 0.07843137 0.12859229 0.1082367 0.1142069
## 838 0.10978875 0.05274566 0.1168756 0.1142069
## 839 0.13958482 0.12859229 0.1168756 0.1142069
## 840 0.13781392 0.12859229 0.1082367 0.1142069
## 841 0.10650888 0.12859229 0.1082367 0.1142069
## 842 0.10650888 0.12859229 0.1082367 0.1142069
## 843 0.07666667 0.12859229 0.1082367 0.1054972
## 844 0.11364176 0.12859229 0.1082367 0.1142069
## 845 0.10978875 0.05274566 0.1082367 0.1142069
## 846 0.11364176 0.12859229 0.1168756 0.1142069
## 847 0.07843137 0.12859229 0.1168756 0.1142069
## 848 0.10650888 0.12859229 0.1168756 0.1142069
## 849 0.13781392 0.12859229 0.1168756 0.1054972
## 850 0.07843137 0.12859229 0.1168756 0.1142069
## 851 0.10650888 0.12859229 0.1040100 0.1040100
## 852 0.10650888 0.12859229 0.1082367 0.1142069
## 853 0.13781392 0.12859229 0.1168756 0.1142069
## 854 0.11364176 0.05274566 0.1168756 0.1054972
## 855 0.13781392 0.12859229 0.1082367 0.1142069
## 856 0.07843137 0.12859229 0.1168756 0.1142069
## 857 0.10650888 0.12859229 0.1168756 0.1142069
## 858 0.10650888 0.12859229 0.1168756 0.1142069
## 859 0.10650888 0.12859229 0.1082367 0.1054972
## 860 0.07666667 0.05274566 0.1168756 0.1142069
## 861 0.10650888 0.12859229 0.1168756 0.1142069
## 862 0.13781392 0.12859229 0.1082367 0.1142069
## 863 0.10978875 0.12859229 0.1168756 0.1054972
## 864 0.07843137 0.05274566 0.1168756 0.1142069
## 865 0.10650888 0.12859229 0.1082367 0.1142069
## 866 0.07843137 0.12859229 0.1082367 0.1142069
## 867 0.13781392 0.12859229 0.1168756 0.1142069
## 868 0.10978875 0.12859229 0.1082367 0.1142069
## 869 0.10978875 0.12859229 0.1168756 0.1142069
## 870 0.13781392 0.12859229 0.1082367 0.1142069
## 871 0.11364176 0.12859229 0.1168756 0.1142069
## 872 0.13958482 0.12859229 0.1168756 0.1142069
## 873 0.13781392 0.12859229 0.1082367 0.1142069
## 874 0.13781392 0.12859229 0.1082367 0.1142069
## 875 0.07843137 0.12859229 0.1168756 0.1054972
## 876 0.10650888 0.12859229 0.1168756 0.1142069
## 877 0.10650888 0.12859229 0.1168756 0.1142069
## 878 0.13781392 0.12859229 0.1082367 0.1142069
## 879 0.10650888 0.12859229 0.1082367 0.1142069
## 880 0.10650888 0.12859229 0.1168756 0.1142069
## 881 0.10978875 0.12859229 0.1082367 0.1142069
## 882 0.13781392 0.12859229 0.1168756 0.1142069
## 883 0.11364176 0.12859229 0.1082367 0.1142069
## 884 0.13781392 0.12859229 0.1082367 0.1054972
## 885 0.13958482 0.12859229 0.1168756 0.1054972
## 886 0.07843137 0.12859229 0.1082367 0.1054972
## 887 0.10650888 0.12859229 0.1168756 0.1054972
## 888 0.10978875 0.12859229 0.1168756 0.1142069
## 889 0.10650888 0.12859229 0.1168756 0.1142069
## 890 0.10650888 0.12859229 0.1168756 0.1142069
## 891 0.07843137 0.05274566 0.1168756 0.1142069
## 892 0.13781392 0.12859229 0.1168756 0.1142069
## 893 0.13781392 0.12859229 0.1082367 0.1142069
## 894 0.13781392 0.12859229 0.1082367 0.1142069
## 895 0.13781392 0.12859229 0.1082367 0.1142069
## 896 0.11364176 0.12859229 0.1082367 0.1142069
## 897 0.10978875 0.12859229 0.1168756 0.1142069
## 898 0.11364176 0.12859229 0.1168756 0.1142069
## 899 0.10978875 0.05274566 0.1168756 0.1142069
## 900 0.07843137 0.12859229 0.1082367 0.1142069
## 901 0.10650888 0.12859229 0.1168756 0.1142069
## 902 0.13781392 0.12859229 0.1082367 0.1054972
## 903 0.10650888 0.12859229 0.1082367 0.1142069
## 904 0.13781392 0.05274566 0.1082367 0.1142069
## 905 0.13781392 0.12859229 0.1082367 0.1142069
## 906 0.10650888 0.12859229 0.1168756 0.1142069
## 907 0.07843137 0.12859229 0.1168756 0.1142069
## 908 0.10978875 0.12859229 0.1082367 0.1142069
## 909 0.10650888 0.12859229 0.1168756 0.1142069
## 910 0.13781392 0.12859229 0.1168756 0.1142069
## 911 0.13781392 0.12859229 0.1082367 0.1142069
## 912 0.10650888 0.12859229 0.1040100 0.1040100
## 913 0.13781392 0.12859229 0.1082367 0.1054972
## 914 0.13781392 0.12859229 0.1168756 0.1142069
## 915 0.07843137 0.12859229 0.1168756 0.1142069
## 916 0.07843137 0.05274566 0.1082367 0.1142069
## 917 0.07843137 0.05274566 0.1082367 0.1142069
## 918 0.10978875 0.05274566 0.1082367 0.1142069
## 919 0.10650888 0.12859229 0.1082367 0.1054972
## 920 0.10650888 0.12859229 0.1082367 0.1142069
## 921 0.10978875 0.12859229 0.1168756 0.1142069
## 922 0.10978875 0.12859229 0.1082367 0.1054972
## 923 0.10650888 0.12859229 0.1082367 0.1142069
## 924 0.13781392 0.12859229 0.1168756 0.1142069
## 925 0.10650888 0.12859229 0.1082367 0.1142069
## 926 0.10650888 0.12859229 0.1168756 0.1142069
## 927 0.07666667 0.12859229 0.1168756 0.1054972
## 928 0.07666667 0.12859229 0.1082367 0.1142069
## 929 0.10650888 0.12859229 0.1168756 0.1142069
## 930 0.11364176 0.12859229 0.1082367 0.1142069
## 931 0.10650888 0.12859229 0.1168756 0.1142069
## 932 0.07843137 0.12859229 0.1082367 0.1054972
## 933 0.10978875 0.12859229 0.1082367 0.1054972
## 934 0.13781392 0.12859229 0.1082367 0.1054972
## 935 0.11364176 0.12859229 0.1168756 0.1054972
## 936 0.11364176 0.12859229 0.1040100 0.1040100
## 937 0.13781392 0.12859229 0.1168756 0.1142069
## 938 0.13781392 0.12859229 0.1082367 0.1142069
## 939 0.13781392 0.12859229 0.1082367 0.1142069
## 940 0.10650888 0.12859229 0.1082367 0.1142069
## 941 0.10978875 0.12859229 0.1168756 0.1142069
## 942 0.07843137 0.12859229 0.1168756 0.1054972
## 943 0.07843137 0.12859229 0.1168756 0.1142069
## 944 0.10650888 0.12859229 0.1168756 0.1142069
## 945 0.10650888 0.12859229 0.1082367 0.1142069
## 946 0.10650888 0.12859229 0.1168756 0.1142069
## 947 0.10650888 0.12859229 0.1082367 0.1142069
## 948 0.13781392 0.12859229 0.1082367 0.1054972
## 949 0.10650888 0.12859229 0.1082367 0.1142069
## 950 0.10650888 0.12859229 0.1082367 0.1142069
## 951 0.10650888 0.12859229 0.1168756 0.1142069
## 952 0.10650888 0.12859229 0.1082367 0.1142069
## 953 0.10650888 0.12859229 0.1168756 0.1142069
## 954 0.11364176 0.05274566 0.1168756 0.1142069
## 955 0.10650888 0.12859229 0.1168756 0.1142069
## 956 0.13781392 0.12859229 0.1082367 0.1142069
## 957 0.13781392 0.12859229 0.1168756 0.1142069
## 958 0.10650888 0.05274566 0.1082367 0.1142069
## 959 0.10650888 0.12859229 0.1168756 0.1142069
## 960 0.10978875 0.12859229 0.1082367 0.1142069
## 961 0.13781392 0.12859229 0.1040100 0.1040100
## 962 0.10650888 0.05274566 0.1168756 0.1142069
## 963 0.13781392 0.12859229 0.1082367 0.1142069
## 964 0.11364176 0.12859229 0.1168756 0.1142069
## 965 0.10650888 0.12859229 0.1082367 0.1142069
## 966 0.07666667 0.12859229 0.1082367 0.1142069
## 967 0.13781392 0.12859229 0.1168756 0.1142069
## 968 0.13781392 0.12859229 0.1168756 0.1054972
## 969 0.13781392 0.12859229 0.1082367 0.1142069
## 970 0.13781392 0.12859229 0.1082367 0.1054972
## 971 0.13781392 0.12859229 0.1082367 0.1054972
## 972 0.10650888 0.12859229 0.1082367 0.1142069
## 973 0.07666667 0.12859229 0.1168756 0.1142069
## 974 0.10650888 0.12859229 0.1040100 0.1040100
## 975 0.13781392 0.12859229 0.1082367 0.1142069
## 976 0.13958482 0.12859229 0.1082367 0.1142069
## 977 0.13781392 0.12859229 0.1168756 0.1142069
## 978 0.13781392 0.12859229 0.1168756 0.1142069
## 979 0.07843137 0.12859229 0.1168756 0.1142069
## 980 0.10978875 0.12859229 0.1082367 0.1142069
## 981 0.13781392 0.12859229 0.1082367 0.1142069
## 982 0.10978875 0.12859229 0.1082367 0.1142069
## 983 0.10650888 0.12859229 0.1040100 0.1040100
## 984 0.13781392 0.12859229 0.1082367 0.1142069
## 985 0.10650888 0.05274566 0.1168756 0.1054972
## 986 0.10650888 0.12859229 0.1168756 0.1142069
## 987 0.13781392 0.12859229 0.1168756 0.1142069
## 988 0.07843137 0.12859229 0.1168756 0.1142069
## 989 0.07843137 0.12859229 0.1168756 0.1142069
## 990 0.11364176 0.12859229 0.1168756 0.1142069
## 991 0.10650888 0.12859229 0.1082367 0.1142069
## 992 0.10650888 0.12859229 0.1168756 0.1142069
## 993 0.11364176 0.12859229 0.1168756 0.1142069
## 994 0.10650888 0.12859229 0.1168756 0.1142069
## 995 0.13781392 0.12859229 0.1168756 0.1142069
## 996 0.10978875 0.12859229 0.1082367 0.1142069
## 997 0.10650888 0.12859229 0.1168756 0.1142069
## 998 0.10650888 0.12859229 0.1082367 0.1142069
## 999 0.13781392 0.12859229 0.1082367 0.1142069
## 1000 0.13958482 0.12859229 0.1168756 0.1142069
## 1001 0.10978875 0.05274566 0.1040100 0.1040100
## 1002 0.07843137 0.12859229 0.1082367 0.1054972
## 1003 0.11364176 0.12859229 0.1168756 0.1142069
## 1004 0.13781392 0.12859229 0.1082367 0.1054972
## 1005 0.10978875 0.05274566 0.1082367 0.1142069
## 1006 0.10650888 0.12859229 0.1168756 0.1142069
## 1007 0.11364176 0.05274566 0.1168756 0.1142069
## 1008 0.13781392 0.12859229 0.1168756 0.1054972
## 1009 0.13781392 0.12859229 0.1168756 0.1142069
## 1010 0.10650888 0.12859229 0.1082367 0.1142069
## 1011 0.10650888 0.12859229 0.1082367 0.1142069
## 1012 0.10978875 0.12859229 0.1082367 0.1142069
## 1013 0.13781392 0.12859229 0.1082367 0.1142069
## 1014 0.10650888 0.12859229 0.1082367 0.1142069
## 1015 0.13781392 0.12859229 0.1168756 0.1054972
## 1016 0.10978875 0.12859229 0.1082367 0.1054972
## 1017 0.10978875 0.05274566 0.1082367 0.1142069
## 1018 0.11364176 0.12859229 0.1168756 0.1142069
## 1019 0.10650888 0.12859229 0.1168756 0.1054972
## 1020 0.13781392 0.12859229 0.1082367 0.1142069
## 1021 0.07843137 0.12859229 0.1082367 0.1142069
## 1022 0.07666667 0.12859229 0.1168756 0.1142069
## 1023 0.07843137 0.12859229 0.1168756 0.1142069
## 1024 0.10650888 0.12859229 0.1082367 0.1142069
## 1025 0.13781392 0.12859229 0.1040100 0.1040100
## 1026 0.10650888 0.05274566 0.1168756 0.1142069
## 1027 0.11364176 0.12859229 0.1168756 0.1142069
## 1028 0.13781392 0.12859229 0.1168756 0.1054972
## 1029 0.10650888 0.12859229 0.1168756 0.1142069
## 1030 0.13781392 0.12859229 0.1082367 0.1054972
## 1031 0.13781392 0.12859229 0.1168756 0.1142069
## 1032 0.13781392 0.12859229 0.1082367 0.1142069
## 1033 0.07843137 0.12859229 0.1168756 0.1142069
## 1034 0.10650888 0.12859229 0.1168756 0.1142069
## 1035 0.13781392 0.12859229 0.1082367 0.1142069
## 1036 0.11364176 0.12859229 0.1168756 0.1142069
## 1037 0.13781392 0.12859229 0.1168756 0.1142069
## 1038 0.13781392 0.12859229 0.1082367 0.1142069
## 1039 0.11364176 0.12859229 0.1168756 0.1054972
## 1040 0.13781392 0.12859229 0.1168756 0.1142069
## 1041 0.10650888 0.12859229 0.1082367 0.1142069
## 1042 0.13781392 0.12859229 0.1168756 0.1142069
## 1043 0.10978875 0.12859229 0.1168756 0.1142069
## 1044 0.07843137 0.12859229 0.1168756 0.1142069
## 1045 0.13781392 0.12859229 0.1168756 0.1142069
## 1046 0.13781392 0.12859229 0.1082367 0.1142069
## 1047 0.13958482 0.12859229 0.1168756 0.1142069
## 1048 0.07666667 0.05274566 0.1082367 0.1142069
## 1049 0.10978875 0.05274566 0.1082367 0.1054972
## 1050 0.10650888 0.12859229 0.1168756 0.1142069
## 1051 0.13781392 0.12859229 0.1040100 0.1040100
## 1052 0.13958482 0.12859229 0.1082367 0.1142069
## 1053 0.13781392 0.12859229 0.1168756 0.1054972
## 1054 0.11364176 0.12859229 0.1168756 0.1142069
## 1055 0.13781392 0.12859229 0.1082367 0.1142069
## 1056 0.11364176 0.12859229 0.1082367 0.1142069
## 1057 0.11364176 0.12859229 0.1168756 0.1054972
## 1058 0.13958482 0.05274566 0.1168756 0.1142069
## 1059 0.10650888 0.12859229 0.1168756 0.1142069
## 1060 0.10650888 0.12859229 0.1082367 0.1054972
## 1061 0.07843137 0.12859229 0.1168756 0.1142069
## 1062 0.10978875 0.12859229 0.1082367 0.1142069
## 1063 0.10978875 0.05274566 0.1168756 0.1142069
## 1064 0.13781392 0.12859229 0.1168756 0.1142069
## 1065 0.07666667 0.12859229 0.1168756 0.1142069
## 1066 0.10978875 0.12859229 0.1168756 0.1142069
## 1067 0.10650888 0.12859229 0.1168756 0.1142069
## 1068 0.10650888 0.12859229 0.1082367 0.1054972
## 1069 0.10650888 0.12859229 0.1082367 0.1142069
## 1070 0.10978875 0.05274566 0.1082367 0.1142069
## 1071 0.13781392 0.12859229 0.1082367 0.1142069
## 1072 0.10650888 0.12859229 0.1040100 0.1040100
## 1073 0.10650888 0.12859229 0.1168756 0.1142069
## 1074 0.11364176 0.12859229 0.1168756 0.1142069
## 1075 0.13781392 0.12859229 0.1082367 0.1142069
## 1076 0.07666667 0.12859229 0.1082367 0.1142069
## 1077 0.10650888 0.05274566 0.1168756 0.1142069
## 1078 0.10650888 0.05274566 0.1082367 0.1142069
## 1079 0.13781392 0.12859229 0.1168756 0.1142069
## 1080 0.13958482 0.12859229 0.1168756 0.1142069
## 1081 0.10650888 0.12859229 0.1082367 0.1142069
## 1082 0.10650888 0.12859229 0.1082367 0.1054972
## 1083 0.10650888 0.12859229 0.1168756 0.1142069
## 1084 0.07843137 0.12859229 0.1082367 0.1142069
## 1085 0.13781392 0.12859229 0.1168756 0.1054972
## 1086 0.07843137 0.12859229 0.1168756 0.1142069
## 1087 0.13781392 0.12859229 0.1168756 0.1142069
## 1088 0.13781392 0.12859229 0.1168756 0.1142069
## 1089 0.07666667 0.05274566 0.1082367 0.1142069
## 1090 0.13781392 0.12859229 0.1168756 0.1142069
## 1091 0.10650888 0.12859229 0.1168756 0.1142069
## 1092 0.07666667 0.12859229 0.1168756 0.1054972
## 1093 0.10978875 0.12859229 0.1082367 0.1142069
## 1094 0.07843137 0.12859229 0.1082367 0.1142069
## 1095 0.13781392 0.12859229 0.1082367 0.1142069
## 1096 0.13958482 0.12859229 0.1082367 0.1142069
## 1097 0.11364176 0.12859229 0.1168756 0.1142069
## 1098 0.10650888 0.12859229 0.1082367 0.1142069
## 1099 0.10650888 0.05274566 0.1168756 0.1142069
## 1100 0.10650888 0.12859229 0.1168756 0.1054972
## 1101 0.10650888 0.05274566 0.1168756 0.1142069
## 1102 0.10650888 0.05274566 0.1082367 0.1142069
## 1103 0.07666667 0.05274566 0.1168756 0.1142069
## 1104 0.13781392 0.12859229 0.1168756 0.1142069
## 1105 0.13781392 0.12859229 0.1168756 0.1142069
## 1106 0.07843137 0.12859229 0.1082367 0.1142069
## 1107 0.13781392 0.12859229 0.1168756 0.1142069
## 1108 0.13781392 0.12859229 0.1168756 0.1142069
## 1109 0.11364176 0.12859229 0.1168756 0.1142069
## 1110 0.13958482 0.12859229 0.1082367 0.1142069
## 1111 0.13781392 0.12859229 0.1168756 0.1142069
## 1112 0.13781392 0.12859229 0.1082367 0.1054972
## 1113 0.10650888 0.12859229 0.1168756 0.1142069
## 1114 0.13781392 0.12859229 0.1168756 0.1142069
## 1115 0.13781392 0.12859229 0.1168756 0.1054972
## 1116 0.13958482 0.12859229 0.1082367 0.1142069
## 1117 0.13781392 0.12859229 0.1082367 0.1142069
## 1118 0.10650888 0.12859229 0.1082367 0.1142069
## 1119 0.13781392 0.12859229 0.1168756 0.1054972
## 1120 0.13781392 0.12859229 0.1168756 0.1142069
## 1121 0.10650888 0.12859229 0.1168756 0.1142069
## 1122 0.07843137 0.05274566 0.1168756 0.1142069
## 1123 0.07843137 0.12859229 0.1082367 0.1054972
## 1124 0.13781392 0.12859229 0.1168756 0.1142069
## 1125 0.10650888 0.12859229 0.1168756 0.1142069
## 1126 0.13781392 0.12859229 0.1082367 0.1054972
## 1127 0.07843137 0.12859229 0.1082367 0.1142069
## 1128 0.10650888 0.12859229 0.1168756 0.1142069
## 1129 0.10650888 0.12859229 0.1168756 0.1142069
## 1130 0.10650888 0.12859229 0.1082367 0.1142069
## 1131 0.13781392 0.12859229 0.1168756 0.1142069
## 1132 0.10650888 0.12859229 0.1168756 0.1142069
## 1133 0.11364176 0.12859229 0.1168756 0.1142069
## 1134 0.11364176 0.12859229 0.1168756 0.1142069
## 1135 0.13781392 0.12859229 0.1168756 0.1054972
## 1136 0.11364176 0.12859229 0.1082367 0.1142069
## 1137 0.13781392 0.05274566 0.1082367 0.1142069
## 1138 0.11364176 0.12859229 0.1082367 0.1142069
## 1139 0.10650888 0.12859229 0.1168756 0.1142069
## 1140 0.10650888 0.12859229 0.1082367 0.1054972
## 1141 0.13781392 0.12859229 0.1168756 0.1142069
## 1142 0.10650888 0.12859229 0.1168756 0.1142069
## 1143 0.13781392 0.12859229 0.1168756 0.1142069
## 1144 0.10650888 0.12859229 0.1168756 0.1142069
## 1145 0.11364176 0.12859229 0.1082367 0.1142069
## 1146 0.11364176 0.12859229 0.1082367 0.1142069
## 1147 0.10650888 0.12859229 0.1168756 0.1142069
## 1148 0.13958482 0.12859229 0.1168756 0.1142069
## 1149 0.13781392 0.12859229 0.1082367 0.1142069
## 1150 0.07843137 0.12859229 0.1168756 0.1142069
## 1151 0.11364176 0.12859229 0.1168756 0.1142069
## 1152 0.10650888 0.12859229 0.1082367 0.1142069
## 1153 0.10650888 0.12859229 0.1040100 0.1040100
## 1154 0.10978875 0.12859229 0.1082367 0.1142069
## 1155 0.07843137 0.12859229 0.1082367 0.1054972
## 1156 0.11364176 0.12859229 0.1082367 0.1142069
## 1157 0.13781392 0.12859229 0.1082367 0.1142069
## 1158 0.07843137 0.12859229 0.1082367 0.1142069
## 1159 0.13958482 0.12859229 0.1082367 0.1142069
## 1160 0.10978875 0.05274566 0.1168756 0.1142069
## 1161 0.13781392 0.12859229 0.1082367 0.1142069
## 1162 0.10650888 0.12859229 0.1082367 0.1142069
## 1163 0.07843137 0.12859229 0.1082367 0.1142069
## 1164 0.13958482 0.12859229 0.1082367 0.1142069
## 1165 0.10650888 0.12859229 0.1168756 0.1054972
## 1166 0.11364176 0.05274566 0.1082367 0.1142069
## 1167 0.07843137 0.12859229 0.1168756 0.1142069
## 1168 0.11364176 0.05274566 0.1082367 0.1142069
## 1169 0.10650888 0.12859229 0.1168756 0.1054972
## 1170 0.11364176 0.12859229 0.1082367 0.1054972
## 1171 0.13781392 0.12859229 0.1168756 0.1142069
## 1172 0.13781392 0.12859229 0.1168756 0.1142069
## 1173 0.11364176 0.12859229 0.1168756 0.1054972
## 1174 0.07666667 0.12859229 0.1082367 0.1142069
## 1175 0.10978875 0.12859229 0.1168756 0.1142069
## 1176 0.07666667 0.12859229 0.1082367 0.1142069
## 1177 0.13958482 0.05274566 0.1168756 0.1142069
## 1178 0.13781392 0.12859229 0.1082367 0.1054972
## 1179 0.13781392 0.12859229 0.1168756 0.1142069
## 1180 0.11364176 0.12859229 0.1168756 0.1142069
## 1181 0.13781392 0.12859229 0.1082367 0.1142069
## 1182 0.10650888 0.12859229 0.1082367 0.1142069
## 1183 0.13781392 0.12859229 0.1082367 0.1054972
## 1184 0.13781392 0.05274566 0.1082367 0.1142069
## 1185 0.07843137 0.12859229 0.1168756 0.1142069
## 1186 0.07843137 0.12859229 0.1168756 0.1142069
## 1187 0.10978875 0.05274566 0.1082367 0.1142069
## 1188 0.11364176 0.12859229 0.1082367 0.1054972
## 1189 0.07843137 0.05274566 0.1168756 0.1142069
## 1190 0.13958482 0.12859229 0.1168756 0.1142069
## 1191 0.11364176 0.12859229 0.1082367 0.1142069
## 1192 0.13781392 0.12859229 0.1082367 0.1142069
## 1193 0.10978875 0.12859229 0.1168756 0.1142069
## 1194 0.10650888 0.12859229 0.1082367 0.1054972
## 1195 0.07843137 0.05274566 0.1082367 0.1142069
## 1196 0.13781392 0.12859229 0.1168756 0.1142069
## 1197 0.13781392 0.12859229 0.1082367 0.1142069
## 1198 0.13958482 0.12859229 0.1082367 0.1142069
## 1199 0.10978875 0.05274566 0.1082367 0.1142069
## 1200 0.13781392 0.12859229 0.1168756 0.1142069
## 1201 0.10650888 0.12859229 0.1082367 0.1142069
## 1202 0.10650888 0.12859229 0.1168756 0.1142069
## 1203 0.13781392 0.12859229 0.1168756 0.1142069
## 1204 0.07843137 0.12859229 0.1168756 0.1142069
## 1205 0.11364176 0.05274566 0.1168756 0.1142069
## 1206 0.13781392 0.12859229 0.1168756 0.1142069
## 1207 0.10978875 0.12859229 0.1040100 0.1040100
## 1208 0.13781392 0.12859229 0.1168756 0.1142069
## 1209 0.13781392 0.12859229 0.1168756 0.1142069
## 1210 0.07843137 0.12859229 0.1168756 0.1054972
## 1211 0.10978875 0.12859229 0.1082367 0.1142069
## 1212 0.07843137 0.12859229 0.1082367 0.1054972
## 1213 0.13958482 0.12859229 0.1168756 0.1142069
## 1214 0.11364176 0.12859229 0.1082367 0.1142069
## 1215 0.07666667 0.12859229 0.1168756 0.1054972
## 1216 0.13781392 0.12859229 0.1082367 0.1142069
## 1217 0.10650888 0.12859229 0.1082367 0.1142069
## 1218 0.13781392 0.12859229 0.1082367 0.1054972
## 1219 0.13781392 0.12859229 0.1168756 0.1142069
## 1220 0.10650888 0.12859229 0.1168756 0.1142069
## 1221 0.11364176 0.12859229 0.1082367 0.1142069
## 1222 0.07843137 0.12859229 0.1082367 0.1054972
## 1223 0.13781392 0.12859229 0.1168756 0.1142069
## 1224 0.10650888 0.12859229 0.1168756 0.1142069
## 1225 0.13781392 0.05274566 0.1168756 0.1142069
## 1226 0.07843137 0.12859229 0.1168756 0.1142069
## 1227 0.13781392 0.12859229 0.1168756 0.1142069
## 1228 0.13958482 0.05274566 0.1168756 0.1142069
## 1229 0.11364176 0.12859229 0.1168756 0.1142069
## 1230 0.13781392 0.12859229 0.1168756 0.1142069
## 1231 0.13781392 0.05274566 0.1082367 0.1142069
## 1232 0.11364176 0.12859229 0.1168756 0.1142069
## 1233 0.10650888 0.12859229 0.1082367 0.1142069
## 1234 0.13958482 0.12859229 0.1168756 0.1142069
## 1235 0.07843137 0.12859229 0.1040100 0.1040100
## 1236 0.13958482 0.12859229 0.1168756 0.1054972
## 1237 0.11364176 0.12859229 0.1168756 0.1142069
## 1238 0.07666667 0.12859229 0.1082367 0.1142069
## 1239 0.10650888 0.12859229 0.1082367 0.1142069
## 1240 0.07843137 0.05274566 0.1082367 0.1142069
## 1241 0.07843137 0.12859229 0.1082367 0.1142069
## 1242 0.13781392 0.12859229 0.1168756 0.1142069
## 1243 0.10978875 0.12859229 0.1168756 0.1142069
## 1244 0.13781392 0.12859229 0.1082367 0.1142069
## 1245 0.13958482 0.12859229 0.1082367 0.1142069
## 1246 0.13781392 0.12859229 0.1168756 0.1142069
## 1247 0.13958482 0.12859229 0.1168756 0.1142069
## 1248 0.13781392 0.12859229 0.1168756 0.1142069
## 1249 0.13958482 0.12859229 0.1168756 0.1142069
## 1250 0.07843137 0.05274566 0.1168756 0.1142069
## 1251 0.10650888 0.12859229 0.1040100 0.1040100
## 1252 0.10650888 0.12859229 0.1082367 0.1142069
## 1253 0.13958482 0.12859229 0.1168756 0.1054972
## 1254 0.07666667 0.12859229 0.1168756 0.1142069
## 1255 0.13781392 0.12859229 0.1168756 0.1142069
## 1256 0.07843137 0.12859229 0.1082367 0.1142069
## 1257 0.07843137 0.12859229 0.1168756 0.1142069
## 1258 0.13781392 0.12859229 0.1168756 0.1142069
## 1259 0.10650888 0.12859229 0.1082367 0.1054972
## 1260 0.10650888 0.05274566 0.1168756 0.1142069
## 1261 0.10650888 0.12859229 0.1168756 0.1142069
## 1262 0.13781392 0.12859229 0.1082367 0.1142069
## 1263 0.13781392 0.12859229 0.1168756 0.1054972
## 1264 0.10650888 0.12859229 0.1168756 0.1142069
## 1265 0.11364176 0.12859229 0.1082367 0.1142069
## 1266 0.13781392 0.12859229 0.1168756 0.1142069
## 1267 0.10650888 0.12859229 0.1040100 0.1040100
## 1268 0.13781392 0.12859229 0.1082367 0.1054972
## 1269 0.10650888 0.12859229 0.1082367 0.1142069
## 1270 0.10650888 0.12859229 0.1082367 0.1054972
## 1271 0.13958482 0.12859229 0.1082367 0.1142069
## 1272 0.13781392 0.12859229 0.1168756 0.1054972
## 1273 0.07666667 0.12859229 0.1168756 0.1142069
## 1274 0.10650888 0.12859229 0.1168756 0.1142069
## 1275 0.10978875 0.12859229 0.1082367 0.1142069
## 1276 0.13781392 0.12859229 0.1168756 0.1142069
## 1277 0.07666667 0.12859229 0.1168756 0.1142069
## 1278 0.11364176 0.12859229 0.1168756 0.1054972
## 1279 0.07843137 0.12859229 0.1168756 0.1142069
## 1280 0.10978875 0.12859229 0.1082367 0.1142069
## 1281 0.10650888 0.12859229 0.1082367 0.1142069
## 1282 0.13781392 0.12859229 0.1168756 0.1054972
## 1283 0.07843137 0.12859229 0.1168756 0.1054972
## 1284 0.07843137 0.12859229 0.1168756 0.1142069
## 1285 0.10650888 0.12859229 0.1168756 0.1142069
## 1286 0.11364176 0.12859229 0.1168756 0.1142069
## 1287 0.13781392 0.12859229 0.1168756 0.1054972
## 1288 0.10650888 0.12859229 0.1082367 0.1142069
## 1289 0.13781392 0.12859229 0.1040100 0.1040100
## 1290 0.13781392 0.12859229 0.1082367 0.1142069
## 1291 0.13781392 0.12859229 0.1168756 0.1142069
## 1292 0.07843137 0.05274566 0.1082367 0.1054972
## 1293 0.07843137 0.12859229 0.1168756 0.1142069
## 1294 0.07843137 0.12859229 0.1168756 0.1142069
## 1295 0.07843137 0.12859229 0.1168756 0.1142069
## 1296 0.13781392 0.12859229 0.1082367 0.1142069
## 1297 0.10978875 0.12859229 0.1082367 0.1142069
## 1298 0.13781392 0.12859229 0.1168756 0.1142069
## 1299 0.10978875 0.05274566 0.1168756 0.1142069
## 1300 0.10978875 0.05274566 0.1082367 0.1142069
## 1301 0.11364176 0.12859229 0.1168756 0.1054972
## 1302 0.11364176 0.12859229 0.1168756 0.1054972
## 1303 0.10650888 0.12859229 0.1168756 0.1142069
## 1304 0.07843137 0.12859229 0.1082367 0.1142069
## 1305 0.10978875 0.05274566 0.1168756 0.1142069
## 1306 0.10650888 0.12859229 0.1168756 0.1142069
## 1307 0.10978875 0.12859229 0.1168756 0.1142069
## 1308 0.13781392 0.12859229 0.1168756 0.1142069
## 1309 0.10650888 0.12859229 0.1168756 0.1142069
## 1310 0.10978875 0.12859229 0.1082367 0.1142069
## 1311 0.10650888 0.12859229 0.1082367 0.1142069
## 1312 0.10650888 0.12859229 0.1082367 0.1054972
## 1313 0.13781392 0.12859229 0.1082367 0.1142069
## 1314 0.10650888 0.05274566 0.1168756 0.1142069
## 1315 0.13781392 0.12859229 0.1168756 0.1054972
## 1316 0.10650888 0.12859229 0.1082367 0.1142069
## 1317 0.11364176 0.12859229 0.1082367 0.1142069
## 1318 0.13781392 0.12859229 0.1082367 0.1142069
## 1319 0.11364176 0.12859229 0.1082367 0.1142069
## 1320 0.07666667 0.05274566 0.1082367 0.1142069
## 1321 0.07843137 0.12859229 0.1082367 0.1142069
## 1322 0.10978875 0.05274566 0.1168756 0.1142069
## 1323 0.10650888 0.12859229 0.1082367 0.1142069
## 1324 0.13781392 0.12859229 0.1168756 0.1054972
## 1325 0.13958482 0.12859229 0.1082367 0.1142069
## 1326 0.10978875 0.12859229 0.1082367 0.1142069
## 1327 0.13781392 0.12859229 0.1082367 0.1142069
## 1328 0.07843137 0.12859229 0.1082367 0.1142069
## 1329 0.10650888 0.12859229 0.1082367 0.1142069
## 1330 0.10650888 0.12859229 0.1168756 0.1142069
## 1331 0.10650888 0.12859229 0.1168756 0.1054972
## 1332 0.10650888 0.12859229 0.1082367 0.1142069
## 1333 0.13781392 0.12859229 0.1168756 0.1142069
## 1334 0.13781392 0.12859229 0.1168756 0.1142069
## 1335 0.13781392 0.12859229 0.1168756 0.1142069
## 1336 0.07843137 0.12859229 0.1168756 0.1142069
## 1337 0.13781392 0.12859229 0.1168756 0.1142069
## 1338 0.10650888 0.12859229 0.1168756 0.1142069
## 1339 0.10978875 0.12859229 0.1082367 0.1142069
## 1340 0.11364176 0.12859229 0.1168756 0.1142069
## 1341 0.10650888 0.12859229 0.1168756 0.1054972
## 1342 0.13781392 0.05274566 0.1082367 0.1142069
## 1343 0.07843137 0.12859229 0.1168756 0.1142069
## 1344 0.10650888 0.12859229 0.1082367 0.1142069
## 1345 0.13781392 0.12859229 0.1168756 0.1142069
## 1346 0.13781392 0.12859229 0.1168756 0.1142069
## 1347 0.13781392 0.12859229 0.1082367 0.1142069
## 1348 0.13781392 0.12859229 0.1040100 0.1040100
## 1349 0.13958482 0.12859229 0.1168756 0.1142069
## 1350 0.10650888 0.12859229 0.1082367 0.1142069
## 1351 0.13781392 0.12859229 0.1082367 0.1142069
## 1352 0.11364176 0.12859229 0.1082367 0.1142069
## 1353 0.13958482 0.05274566 0.1082367 0.1142069
## 1354 0.07843137 0.12859229 0.1082367 0.1142069
## 1355 0.10650888 0.12859229 0.1168756 0.1142069
## 1356 0.13781392 0.05274566 0.1082367 0.1142069
## 1357 0.13781392 0.12859229 0.1168756 0.1142069
## 1358 0.10650888 0.12859229 0.1168756 0.1142069
## 1359 0.13781392 0.12859229 0.1082367 0.1142069
## 1360 0.07843137 0.05274566 0.1168756 0.1142069
## 1361 0.07843137 0.12859229 0.1082367 0.1142069
## 1362 0.10650888 0.12859229 0.1082367 0.1142069
## 1363 0.13781392 0.12859229 0.1082367 0.1142069
## 1364 0.13781392 0.12859229 0.1082367 0.1142069
## 1365 0.10650888 0.12859229 0.1082367 0.1142069
## 1366 0.13781392 0.12859229 0.1168756 0.1142069
## 1367 0.13781392 0.12859229 0.1168756 0.1054972
## 1368 0.13781392 0.12859229 0.1168756 0.1142069
## 1369 0.13781392 0.12859229 0.1168756 0.1142069
## 1370 0.10650888 0.12859229 0.1168756 0.1142069
## 1371 0.13781392 0.12859229 0.1168756 0.1142069
## 1372 0.07843137 0.12859229 0.1168756 0.1054972
## 1373 0.10650888 0.12859229 0.1040100 0.1040100
## 1374 0.10650888 0.05274566 0.1168756 0.1142069
## 1375 0.10650888 0.12859229 0.1082367 0.1142069
## 1376 0.10978875 0.05274566 0.1168756 0.1142069
## 1377 0.07666667 0.05274566 0.1082367 0.1142069
## 1378 0.07843137 0.12859229 0.1040100 0.1040100
## 1379 0.10650888 0.12859229 0.1040100 0.1040100
## 1380 0.10978875 0.12859229 0.1082367 0.1142069
## 1381 0.07666667 0.12859229 0.1082367 0.1054972
## 1382 0.13781392 0.12859229 0.1082367 0.1054972
## 1383 0.07843137 0.12859229 0.1168756 0.1142069
## 1384 0.07666667 0.12859229 0.1168756 0.1142069
## 1385 0.10650888 0.12859229 0.1082367 0.1054972
## 1386 0.07843137 0.05274566 0.1082367 0.1142069
## 1387 0.10978875 0.12859229 0.1082367 0.1142069
## 1388 0.13781392 0.12859229 0.1168756 0.1142069
## 1389 0.10650888 0.12859229 0.1168756 0.1142069
## 1390 0.07843137 0.12859229 0.1168756 0.1142069
## 1391 0.13781392 0.12859229 0.1168756 0.1142069
## 1392 0.07843137 0.12859229 0.1168756 0.1142069
## 1393 0.10650888 0.05274566 0.1082367 0.1142069
## 1394 0.07843137 0.12859229 0.1082367 0.1142069
## 1395 0.13781392 0.12859229 0.1168756 0.1142069
## 1396 0.13781392 0.12859229 0.1168756 0.1142069
## 1397 0.13781392 0.12859229 0.1168756 0.1054972
## 1398 0.11364176 0.12859229 0.1082367 0.1142069
## 1399 0.07843137 0.12859229 0.1168756 0.1142069
## 1400 0.13781392 0.12859229 0.1082367 0.1142069
## 1401 0.10650888 0.12859229 0.1082367 0.1142069
## 1402 0.13958482 0.12859229 0.1082367 0.1142069
## 1403 0.13781392 0.12859229 0.1168756 0.1142069
## 1404 0.07843137 0.12859229 0.1168756 0.1054972
## 1405 0.13781392 0.12859229 0.1168756 0.1054972
## 1406 0.07843137 0.12859229 0.1082367 0.1142069
## 1407 0.10650888 0.12859229 0.1168756 0.1142069
## 1408 0.11364176 0.12859229 0.1082367 0.1142069
## 1409 0.13781392 0.12859229 0.1168756 0.1142069
## 1410 0.10650888 0.12859229 0.1082367 0.1054972
## 1411 0.13781392 0.12859229 0.1168756 0.1142069
## 1412 0.10650888 0.12859229 0.1082367 0.1054972
## 1413 0.13781392 0.12859229 0.1168756 0.1054972
## 1414 0.11364176 0.12859229 0.1168756 0.1142069
## 1415 0.07666667 0.12859229 0.1082367 0.1142069
## 1416 0.10978875 0.12859229 0.1168756 0.1142069
## 1417 0.07843137 0.12859229 0.1082367 0.1142069
## 1418 0.10650888 0.12859229 0.1082367 0.1142069
## 1419 0.13781392 0.12859229 0.1168756 0.1142069
## 1420 0.13781392 0.12859229 0.1082367 0.1142069
## 1421 0.10650888 0.12859229 0.1082367 0.1142069
## 1422 0.10978875 0.12859229 0.1168756 0.1142069
## 1423 0.13958482 0.12859229 0.1168756 0.1054972
## 1424 0.13781392 0.12859229 0.1082367 0.1142069
## 1425 0.13781392 0.12859229 0.1082367 0.1142069
## 1426 0.07843137 0.12859229 0.1082367 0.1142069
## 1427 0.13781392 0.12859229 0.1082367 0.1142069
## 1428 0.10650888 0.12859229 0.1082367 0.1054972
## 1429 0.13781392 0.12859229 0.1040100 0.1040100
## 1430 0.10650888 0.12859229 0.1082367 0.1142069
## 1431 0.13781392 0.12859229 0.1082367 0.1142069
## 1432 0.13781392 0.12859229 0.1082367 0.1054972
## 1433 0.10650888 0.12859229 0.1168756 0.1142069
## 1434 0.10650888 0.12859229 0.1168756 0.1142069
## 1435 0.13781392 0.12859229 0.1082367 0.1142069
## 1436 0.10650888 0.12859229 0.1168756 0.1142069
## 1437 0.11364176 0.12859229 0.1082367 0.1142069
## 1438 0.11364176 0.12859229 0.1168756 0.1142069
## 1439 0.07843137 0.05274566 0.1168756 0.1142069
## 1440 0.10650888 0.12859229 0.1082367 0.1142069
## 1441 0.13781392 0.12859229 0.1082367 0.1142069
## 1442 0.13781392 0.12859229 0.1082367 0.1142069
## 1443 0.07843137 0.12859229 0.1168756 0.1054972
## 1444 0.10650888 0.12859229 0.1082367 0.1142069
## 1445 0.13781392 0.12859229 0.1168756 0.1054972
## 1446 0.07666667 0.12859229 0.1168756 0.1142069
## 1447 0.10650888 0.12859229 0.1082367 0.1142069
## 1448 0.07843137 0.12859229 0.1082367 0.1142069
## 1449 0.13781392 0.12859229 0.1082367 0.1142069
## 1450 0.07843137 0.12859229 0.1168756 0.1142069
## 1451 0.10650888 0.12859229 0.1082367 0.1054972
## 1452 0.07666667 0.12859229 0.1168756 0.1142069
## 1453 0.07843137 0.12859229 0.1082367 0.1142069
## 1454 0.13958482 0.12859229 0.1168756 0.1142069
## 1455 0.13781392 0.12859229 0.1082367 0.1142069
## 1456 0.10978875 0.12859229 0.1168756 0.1142069
## 1457 0.07666667 0.12859229 0.1082367 0.1142069
## 1458 0.10650888 0.12859229 0.1082367 0.1142069
## 1459 0.10650888 0.12859229 0.1082367 0.1142069
## 1460 0.10650888 0.12859229 0.1168756 0.1142069
## 1461 0.10650888 0.12859229 0.1168756 0.1142069
## 1462 0.11364176 0.12859229 0.1082367 0.1142069
## 1463 0.07666667 0.12859229 0.1082367 0.1142069
## 1464 0.13781392 0.12859229 0.1082367 0.1142069
## 1465 0.10978875 0.05274566 0.1168756 0.1142069
## 1466 0.13781392 0.05274566 0.1168756 0.1142069
## 1467 0.10650888 0.12859229 0.1168756 0.1142069
## 1468 0.13781392 0.12859229 0.1082367 0.1142069
## 1469 0.07843137 0.12859229 0.1082367 0.1142069
## 1470 0.07843137 0.12859229 0.1168756 0.1142069
## 1471 0.13781392 0.12859229 0.1082367 0.1142069
## 1472 0.10978875 0.12859229 0.1168756 0.1142069
## 1473 0.11364176 0.12859229 0.1040100 0.1040100
## 1474 0.07843137 0.12859229 0.1168756 0.1054972
## 1475 0.07666667 0.12859229 0.1168756 0.1142069
## 1476 0.07843137 0.05274566 0.1168756 0.1054972
## 1477 0.11364176 0.12859229 0.1082367 0.1142069
## 1478 0.07843137 0.12859229 0.1082367 0.1142069
## 1479 0.07666667 0.05274566 0.1082367 0.1142069
## 1480 0.07843137 0.12859229 0.1168756 0.1142069
## 1481 0.11364176 0.12859229 0.1168756 0.1142069
## 1482 0.10650888 0.12859229 0.1082367 0.1142069
## 1483 0.10650888 0.12859229 0.1082367 0.1142069
## 1484 0.13781392 0.12859229 0.1168756 0.1142069
## 1485 0.07666667 0.12859229 0.1082367 0.1142069
## 1486 0.07843137 0.05274566 0.1168756 0.1142069
## 1487 0.10650888 0.12859229 0.1082367 0.1142069
## 1488 0.11364176 0.12859229 0.1168756 0.1054972
## 1489 0.07843137 0.12859229 0.1168756 0.1142069
## 1490 0.10978875 0.12859229 0.1082367 0.1054972
## 1491 0.07843137 0.12859229 0.1168756 0.1142069
## 1492 0.10650888 0.12859229 0.1168756 0.1142069
## 1493 0.10978875 0.12859229 0.1168756 0.1142069
## 1494 0.13781392 0.12859229 0.1082367 0.1142069
## 1495 0.10978875 0.12859229 0.1082367 0.1142069
## 1496 0.13781392 0.12859229 0.1082367 0.1142069
## 1497 0.13781392 0.12859229 0.1168756 0.1054972
## 1498 0.13781392 0.12859229 0.1082367 0.1142069
## 1499 0.10978875 0.12859229 0.1168756 0.1054972
## 1500 0.10650888 0.05274566 0.1168756 0.1142069
## 1501 0.13781392 0.12859229 0.1168756 0.1054972
## 1502 0.13958482 0.05274566 0.1168756 0.1142069
## 1503 0.11364176 0.12859229 0.1168756 0.1142069
## 1504 0.11364176 0.12859229 0.1168756 0.1142069
## 1505 0.07666667 0.12859229 0.1082367 0.1142069
## 1506 0.10978875 0.12859229 0.1168756 0.1142069
## 1507 0.10650888 0.12859229 0.1168756 0.1142069
## 1508 0.10978875 0.12859229 0.1168756 0.1142069
## 1509 0.13781392 0.12859229 0.1168756 0.1054972
## 1510 0.07843137 0.05274566 0.1168756 0.1142069
## 1511 0.10978875 0.12859229 0.1168756 0.1054972
## 1512 0.10650888 0.12859229 0.1168756 0.1054972
## 1513 0.10650888 0.12859229 0.1082367 0.1142069
## 1514 0.07843137 0.12859229 0.1082367 0.1054972
## 1515 0.13781392 0.12859229 0.1168756 0.1142069
## 1516 0.10650888 0.12859229 0.1082367 0.1142069
## 1517 0.10978875 0.05274566 0.1168756 0.1142069
## 1518 0.11364176 0.12859229 0.1168756 0.1142069
## 1519 0.10650888 0.12859229 0.1040100 0.1040100
## 1520 0.10650888 0.12859229 0.1040100 0.1040100
## 1521 0.10650888 0.05274566 0.1168756 0.1054972
## 1522 0.11364176 0.12859229 0.1168756 0.1142069
## 1523 0.07843137 0.12859229 0.1082367 0.1054972
## 1524 0.11364176 0.12859229 0.1082367 0.1142069
## 1525 0.07666667 0.05274566 0.1168756 0.1142069
## 1526 0.13958482 0.12859229 0.1168756 0.1142069
## 1527 0.07843137 0.12859229 0.1082367 0.1142069
## 1528 0.13781392 0.12859229 0.1082367 0.1142069
## 1529 0.10978875 0.12859229 0.1168756 0.1142069
## 1530 0.10650888 0.12859229 0.1168756 0.1054972
## 1531 0.07843137 0.12859229 0.1082367 0.1142069
## 1532 0.13958482 0.12859229 0.1082367 0.1142069
## 1533 0.10978875 0.12859229 0.1082367 0.1142069
## 1534 0.10650888 0.12859229 0.1168756 0.1142069
## 1535 0.10650888 0.12859229 0.1082367 0.1142069
## 1536 0.13781392 0.12859229 0.1082367 0.1142069
## 1537 0.13958482 0.05274566 0.1168756 0.1142069
## 1538 0.11364176 0.12859229 0.1082367 0.1142069
## 1539 0.07843137 0.12859229 0.1082367 0.1054972
## 1540 0.13781392 0.12859229 0.1082367 0.1142069
## 1541 0.13781392 0.12859229 0.1168756 0.1142069
## 1542 0.07843137 0.05274566 0.1082367 0.1142069
## 1543 0.10978875 0.12859229 0.1168756 0.1142069
## 1544 0.13781392 0.12859229 0.1168756 0.1142069
## 1545 0.10978875 0.12859229 0.1082367 0.1142069
## 1546 0.13781392 0.12859229 0.1168756 0.1142069
## 1547 0.07843137 0.12859229 0.1082367 0.1142069
## 1548 0.10650888 0.12859229 0.1168756 0.1142069
## 1549 0.10650888 0.12859229 0.1168756 0.1054972
## 1550 0.10978875 0.05274566 0.1168756 0.1142069
## 1551 0.10650888 0.12859229 0.1082367 0.1142069
## 1552 0.07843137 0.12859229 0.1168756 0.1142069
## 1553 0.11364176 0.12859229 0.1082367 0.1054972
## 1554 0.13781392 0.12859229 0.1082367 0.1142069
## 1555 0.13781392 0.12859229 0.1168756 0.1142069
## 1556 0.07843137 0.12859229 0.1082367 0.1142069
## 1557 0.10978875 0.12859229 0.1168756 0.1142069
## 1558 0.10978875 0.12859229 0.1168756 0.1142069
## 1559 0.07843137 0.12859229 0.1168756 0.1054972
## 1560 0.10650888 0.12859229 0.1168756 0.1054972
## 1561 0.13781392 0.12859229 0.1168756 0.1142069
## 1562 0.13781392 0.12859229 0.1168756 0.1142069
## 1563 0.13781392 0.12859229 0.1168756 0.1142069
## 1564 0.10650888 0.12859229 0.1168756 0.1142069
## 1565 0.13781392 0.12859229 0.1168756 0.1142069
## 1566 0.07843137 0.12859229 0.1168756 0.1142069
## 1567 0.11364176 0.12859229 0.1168756 0.1142069
## 1568 0.13958482 0.12859229 0.1168756 0.1142069
## 1569 0.10650888 0.12859229 0.1168756 0.1054972
## 1570 0.11364176 0.05274566 0.1082367 0.1142069
## 1571 0.07843137 0.12859229 0.1082367 0.1142069
## 1572 0.07843137 0.12859229 0.1082367 0.1142069
## 1573 0.13781392 0.12859229 0.1082367 0.1142069
## 1574 0.10650888 0.12859229 0.1168756 0.1054972
## 1575 0.11364176 0.12859229 0.1168756 0.1142069
## 1576 0.10650888 0.12859229 0.1082367 0.1142069
## 1577 0.13781392 0.12859229 0.1168756 0.1142069
## 1578 0.07843137 0.12859229 0.1168756 0.1142069
## 1579 0.10650888 0.12859229 0.1082367 0.1142069
## 1580 0.13781392 0.12859229 0.1168756 0.1142069
## 1581 0.07843137 0.12859229 0.1168756 0.1142069
## 1582 0.10650888 0.12859229 0.1168756 0.1142069
## 1583 0.10650888 0.12859229 0.1082367 0.1142069
## 1584 0.13781392 0.05274566 0.1168756 0.1142069
## 1585 0.10978875 0.12859229 0.1082367 0.1142069
## 1586 0.13781392 0.12859229 0.1082367 0.1054972
## 1587 0.10650888 0.12859229 0.1168756 0.1142069
## 1588 0.11364176 0.12859229 0.1168756 0.1054972
## 1589 0.11364176 0.12859229 0.1168756 0.1142069
## 1590 0.11364176 0.05274566 0.1168756 0.1142069
## 1591 0.13781392 0.12859229 0.1082367 0.1142069
## 1592 0.10650888 0.12859229 0.1082367 0.1054972
## 1593 0.07843137 0.05274566 0.1168756 0.1142069
## 1594 0.13781392 0.12859229 0.1082367 0.1142069
## 1595 0.10978875 0.05274566 0.1082367 0.1142069
## 1596 0.13958482 0.12859229 0.1168756 0.1142069
## 1597 0.10978875 0.12859229 0.1168756 0.1142069
## 1598 0.07843137 0.12859229 0.1082367 0.1142069
## 1599 0.13781392 0.12859229 0.1082367 0.1142069
## 1600 0.07843137 0.12859229 0.1168756 0.1142069
## 1601 0.13781392 0.12859229 0.1082367 0.1142069
## 1602 0.10650888 0.12859229 0.1168756 0.1142069
## 1603 0.11364176 0.12859229 0.1168756 0.1142069
## 1604 0.13781392 0.12859229 0.1168756 0.1054972
## 1605 0.07843137 0.12859229 0.1082367 0.1142069
## 1606 0.10650888 0.12859229 0.1168756 0.1142069
## 1607 0.07843137 0.05274566 0.1168756 0.1054972
## 1608 0.10650888 0.12859229 0.1082367 0.1142069
## 1609 0.10650888 0.12859229 0.1082367 0.1142069
## 1610 0.13781392 0.12859229 0.1040100 0.1040100
## 1611 0.11364176 0.12859229 0.1082367 0.1142069
## 1612 0.11364176 0.12859229 0.1168756 0.1142069
## 1613 0.11364176 0.12859229 0.1168756 0.1142069
## 1614 0.10650888 0.12859229 0.1168756 0.1054972
## 1615 0.10650888 0.12859229 0.1082367 0.1142069
## 1616 0.11364176 0.12859229 0.1082367 0.1142069
## 1617 0.10650888 0.12859229 0.1168756 0.1142069
## 1618 0.07666667 0.12859229 0.1168756 0.1054972
## 1619 0.13781392 0.12859229 0.1168756 0.1142069
## 1620 0.13781392 0.12859229 0.1168756 0.1142069
## 1621 0.13781392 0.12859229 0.1168756 0.1054972
## 1622 0.13781392 0.12859229 0.1168756 0.1142069
## 1623 0.07666667 0.12859229 0.1168756 0.1142069
## 1624 0.10650888 0.12859229 0.1082367 0.1142069
## 1625 0.11364176 0.12859229 0.1168756 0.1142069
## 1626 0.11364176 0.12859229 0.1082367 0.1142069
## 1627 0.11364176 0.12859229 0.1168756 0.1054972
## 1628 0.11364176 0.12859229 0.1082367 0.1142069
## 1629 0.13781392 0.12859229 0.1082367 0.1142069
## 1630 0.13781392 0.12859229 0.1082367 0.1142069
## 1631 0.10650888 0.12859229 0.1168756 0.1142069
## 1632 0.07843137 0.12859229 0.1168756 0.1054972
## 1633 0.13958482 0.05274566 0.1082367 0.1142069
## 1634 0.13958482 0.12859229 0.1168756 0.1142069
## 1635 0.10978875 0.12859229 0.1082367 0.1142069
## 1636 0.13781392 0.12859229 0.1168756 0.1142069
## 1637 0.13781392 0.12859229 0.1082367 0.1142069
## 1638 0.10978875 0.12859229 0.1082367 0.1054972
## 1639 0.10650888 0.12859229 0.1082367 0.1142069
## 1640 0.13781392 0.05274566 0.1082367 0.1142069
## 1641 0.13958482 0.05274566 0.1082367 0.1142069
## 1642 0.10650888 0.12859229 0.1082367 0.1142069
## 1643 0.11364176 0.12859229 0.1082367 0.1142069
## 1644 0.11364176 0.12859229 0.1168756 0.1142069
## 1645 0.07843137 0.12859229 0.1168756 0.1142069
## 1646 0.13958482 0.12859229 0.1168756 0.1142069
## 1647 0.11364176 0.12859229 0.1168756 0.1142069
## 1648 0.10650888 0.12859229 0.1168756 0.1142069
## 1649 0.07666667 0.05274566 0.1082367 0.1142069
## 1650 0.10650888 0.12859229 0.1168756 0.1054972
## 1651 0.10650888 0.12859229 0.1082367 0.1142069
## 1652 0.11364176 0.05274566 0.1082367 0.1142069
## 1653 0.10650888 0.05274566 0.1082367 0.1142069
## 1654 0.10650888 0.12859229 0.1040100 0.1040100
## 1655 0.13781392 0.12859229 0.1040100 0.1040100
## 1656 0.10650888 0.12859229 0.1168756 0.1142069
## 1657 0.10650888 0.12859229 0.1082367 0.1142069
## 1658 0.07843137 0.12859229 0.1082367 0.1054972
## 1659 0.10978875 0.12859229 0.1168756 0.1142069
## 1660 0.07843137 0.12859229 0.1168756 0.1142069
## 1661 0.10978875 0.05274566 0.1082367 0.1054972
## 1662 0.13781392 0.12859229 0.1168756 0.1142069
## 1663 0.10650888 0.12859229 0.1082367 0.1054972
## 1664 0.13781392 0.12859229 0.1168756 0.1054972
## 1665 0.11364176 0.12859229 0.1082367 0.1054972
## 1666 0.07843137 0.12859229 0.1168756 0.1142069
## 1667 0.07843137 0.12859229 0.1168756 0.1142069
## 1668 0.13781392 0.12859229 0.1168756 0.1142069
## 1669 0.10650888 0.12859229 0.1168756 0.1142069
## 1670 0.13781392 0.12859229 0.1082367 0.1142069
## 1671 0.13781392 0.05274566 0.1168756 0.1142069
## 1672 0.11364176 0.12859229 0.1082367 0.1142069
## 1673 0.10650888 0.12859229 0.1168756 0.1142069
## 1674 0.10650888 0.12859229 0.1168756 0.1142069
## 1675 0.13781392 0.12859229 0.1168756 0.1142069
## 1676 0.10650888 0.12859229 0.1082367 0.1142069
## 1677 0.07666667 0.12859229 0.1168756 0.1142069
## 1678 0.10650888 0.12859229 0.1082367 0.1142069
## 1679 0.11364176 0.12859229 0.1168756 0.1142069
## 1680 0.11364176 0.12859229 0.1168756 0.1142069
## 1681 0.10650888 0.12859229 0.1082367 0.1142069
## 1682 0.11364176 0.12859229 0.1082367 0.1142069
## 1683 0.07666667 0.12859229 0.1168756 0.1142069
## 1684 0.07666667 0.12859229 0.1082367 0.1142069
## 1685 0.13958482 0.12859229 0.1082367 0.1054972
## 1686 0.10650888 0.12859229 0.1082367 0.1142069
## 1687 0.07843137 0.12859229 0.1168756 0.1142069
## 1688 0.11364176 0.12859229 0.1082367 0.1142069
## 1689 0.13781392 0.12859229 0.1168756 0.1142069
## 1690 0.10978875 0.12859229 0.1168756 0.1142069
## 1691 0.11364176 0.12859229 0.1168756 0.1142069
## 1692 0.13958482 0.12859229 0.1168756 0.1054972
## 1693 0.13781392 0.12859229 0.1168756 0.1054972
## 1694 0.10650888 0.12859229 0.1082367 0.1142069
## 1695 0.13958482 0.12859229 0.1168756 0.1142069
## 1696 0.10650888 0.12859229 0.1168756 0.1142069
## 1697 0.13781392 0.12859229 0.1168756 0.1142069
## 1698 0.10650888 0.12859229 0.1168756 0.1142069
## 1699 0.13781392 0.12859229 0.1168756 0.1142069
## 1700 0.13781392 0.12859229 0.1082367 0.1142069
## 1701 0.13781392 0.12859229 0.1168756 0.1142069
## 1702 0.13958482 0.12859229 0.1082367 0.1142069
## 1703 0.10978875 0.05274566 0.1082367 0.1142069
## 1704 0.10978875 0.12859229 0.1082367 0.1142069
## 1705 0.10978875 0.12859229 0.1082367 0.1142069
## 1706 0.13781392 0.12859229 0.1168756 0.1142069
## 1707 0.13781392 0.12859229 0.1168756 0.1142069
## 1708 0.10978875 0.12859229 0.1040100 0.1040100
## 1709 0.07666667 0.12859229 0.1168756 0.1142069
## 1710 0.10650888 0.12859229 0.1082367 0.1142069
## 1711 0.07843137 0.05274566 0.1082367 0.1054972
## 1712 0.13781392 0.12859229 0.1168756 0.1142069
## 1713 0.10650888 0.12859229 0.1168756 0.1142069
## 1714 0.13958482 0.12859229 0.1168756 0.1054972
## 1715 0.10650888 0.05274566 0.1082367 0.1142069
## 1716 0.13781392 0.12859229 0.1168756 0.1142069
## 1717 0.10650888 0.12859229 0.1168756 0.1142069
## 1718 0.13781392 0.12859229 0.1168756 0.1142069
## 1719 0.07843137 0.12859229 0.1040100 0.1040100
## 1720 0.13781392 0.12859229 0.1168756 0.1142069
## 1721 0.13781392 0.12859229 0.1082367 0.1142069
## 1722 0.10650888 0.12859229 0.1168756 0.1142069
## 1723 0.10978875 0.12859229 0.1082367 0.1142069
## 1724 0.10650888 0.12859229 0.1082367 0.1142069
## 1725 0.10650888 0.12859229 0.1082367 0.1142069
## 1726 0.10978875 0.05274566 0.1168756 0.1142069
## 1727 0.11364176 0.12859229 0.1082367 0.1142069
## 1728 0.07843137 0.05274566 0.1082367 0.1142069
## 1729 0.10650888 0.05274566 0.1168756 0.1142069
## 1730 0.10650888 0.12859229 0.1082367 0.1142069
## 1731 0.10650888 0.05274566 0.1082367 0.1142069
## 1732 0.07666667 0.05274566 0.1168756 0.1054972
## 1733 0.13781392 0.12859229 0.1168756 0.1142069
## 1734 0.07666667 0.12859229 0.1082367 0.1142069
## 1735 0.11364176 0.12859229 0.1082367 0.1142069
## 1736 0.13781392 0.12859229 0.1082367 0.1142069
## 1737 0.10650888 0.12859229 0.1168756 0.1142069
## 1738 0.10978875 0.12859229 0.1168756 0.1054972
## 1739 0.13781392 0.12859229 0.1082367 0.1142069
## 1740 0.10978875 0.05274566 0.1168756 0.1142069
## 1741 0.10650888 0.12859229 0.1082367 0.1142069
## 1742 0.11364176 0.12859229 0.1168756 0.1054972
## 1743 0.07843137 0.12859229 0.1168756 0.1142069
## 1744 0.13781392 0.12859229 0.1168756 0.1142069
## 1745 0.10650888 0.12859229 0.1082367 0.1142069
## 1746 0.10650888 0.12859229 0.1082367 0.1142069
## 1747 0.10650888 0.12859229 0.1168756 0.1054972
## 1748 0.07843137 0.12859229 0.1168756 0.1142069
## 1749 0.11364176 0.12859229 0.1168756 0.1142069
## 1750 0.11364176 0.12859229 0.1040100 0.1040100
## 1751 0.10650888 0.12859229 0.1168756 0.1142069
## 1752 0.13781392 0.12859229 0.1082367 0.1142069
## 1753 0.13781392 0.12859229 0.1168756 0.1054972
## 1754 0.10650888 0.12859229 0.1082367 0.1142069
## 1755 0.11364176 0.12859229 0.1168756 0.1142069
## 1756 0.13781392 0.12859229 0.1168756 0.1142069
## 1757 0.07843137 0.12859229 0.1082367 0.1142069
## 1758 0.10650888 0.12859229 0.1082367 0.1142069
## 1759 0.10650888 0.12859229 0.1168756 0.1142069
## 1760 0.13781392 0.12859229 0.1082367 0.1054972
## 1761 0.11364176 0.12859229 0.1082367 0.1142069
## 1762 0.13781392 0.12859229 0.1082367 0.1054972
## 1763 0.07843137 0.12859229 0.1082367 0.1142069
## 1764 0.10978875 0.12859229 0.1082367 0.1142069
## 1765 0.11364176 0.12859229 0.1168756 0.1142069
## 1766 0.10978875 0.12859229 0.1082367 0.1142069
## 1767 0.13781392 0.12859229 0.1082367 0.1054972
## 1768 0.10650888 0.12859229 0.1168756 0.1142069
## 1769 0.10650888 0.12859229 0.1168756 0.1142069
## 1770 0.07666667 0.12859229 0.1168756 0.1054972
## 1771 0.07666667 0.12859229 0.1082367 0.1142069
## 1772 0.11364176 0.05274566 0.1082367 0.1142069
## 1773 0.07843137 0.12859229 0.1082367 0.1142069
## 1774 0.10650888 0.05274566 0.1168756 0.1142069
## 1775 0.10650888 0.12859229 0.1168756 0.1142069
## 1776 0.13781392 0.12859229 0.1168756 0.1142069
## 1777 0.10650888 0.12859229 0.1082367 0.1142069
## 1778 0.11364176 0.12859229 0.1168756 0.1142069
## 1779 0.13781392 0.12859229 0.1040100 0.1040100
## 1780 0.07843137 0.05274566 0.1082367 0.1142069
## 1781 0.11364176 0.12859229 0.1082367 0.1142069
## 1782 0.10650888 0.12859229 0.1082367 0.1142069
## 1783 0.11364176 0.12859229 0.1168756 0.1142069
## 1784 0.10650888 0.12859229 0.1168756 0.1054972
## 1785 0.07843137 0.12859229 0.1168756 0.1142069
## 1786 0.10650888 0.12859229 0.1082367 0.1142069
## 1787 0.11364176 0.12859229 0.1168756 0.1142069
## 1788 0.13781392 0.12859229 0.1168756 0.1142069
## 1789 0.07666667 0.12859229 0.1082367 0.1142069
## 1790 0.10650888 0.12859229 0.1168756 0.1142069
## 1791 0.07843137 0.12859229 0.1168756 0.1054972
## 1792 0.10650888 0.12859229 0.1168756 0.1142069
## 1793 0.07843137 0.12859229 0.1168756 0.1142069
## 1794 0.10978875 0.05274566 0.1082367 0.1142069
## 1795 0.11364176 0.12859229 0.1168756 0.1142069
## 1796 0.07843137 0.12859229 0.1168756 0.1142069
## 1797 0.11364176 0.12859229 0.1168756 0.1142069
## 1798 0.07843137 0.05274566 0.1082367 0.1142069
## 1799 0.11364176 0.12859229 0.1168756 0.1142069
## 1800 0.13781392 0.12859229 0.1082367 0.1142069
## 1801 0.07843137 0.05274566 0.1168756 0.1142069
## 1802 0.10650888 0.12859229 0.1168756 0.1142069
## 1803 0.07843137 0.12859229 0.1168756 0.1142069
## 1804 0.07666667 0.12859229 0.1082367 0.1054972
## 1805 0.11364176 0.12859229 0.1168756 0.1142069
## 1806 0.13781392 0.12859229 0.1082367 0.1142069
## 1807 0.10650888 0.12859229 0.1168756 0.1142069
## 1808 0.13781392 0.12859229 0.1082367 0.1054972
## 1809 0.10650888 0.12859229 0.1168756 0.1054972
## 1810 0.13781392 0.12859229 0.1168756 0.1142069
## 1811 0.10978875 0.12859229 0.1082367 0.1142069
## 1812 0.10650888 0.12859229 0.1082367 0.1142069
## 1813 0.10650888 0.12859229 0.1168756 0.1142069
## 1814 0.10650888 0.12859229 0.1168756 0.1142069
## 1815 0.13781392 0.12859229 0.1082367 0.1142069
## 1816 0.07843137 0.12859229 0.1168756 0.1142069
## 1817 0.07843137 0.12859229 0.1168756 0.1142069
## 1818 0.10650888 0.05274566 0.1082367 0.1142069
## 1819 0.13958482 0.12859229 0.1082367 0.1054972
## 1820 0.07843137 0.12859229 0.1168756 0.1142069
## 1821 0.07666667 0.12859229 0.1082367 0.1142069
## 1822 0.13781392 0.12859229 0.1082367 0.1142069
## 1823 0.10978875 0.12859229 0.1168756 0.1142069
## 1824 0.10650888 0.12859229 0.1168756 0.1142069
## 1825 0.11364176 0.12859229 0.1168756 0.1142069
## 1826 0.10978875 0.12859229 0.1168756 0.1142069
## 1827 0.10978875 0.05274566 0.1168756 0.1142069
## 1828 0.13781392 0.12859229 0.1168756 0.1142069
## 1829 0.13781392 0.12859229 0.1168756 0.1142069
## 1830 0.13781392 0.12859229 0.1082367 0.1142069
## 1831 0.07843137 0.05274566 0.1168756 0.1142069
## 1832 0.07843137 0.12859229 0.1168756 0.1142069
## 1833 0.10650888 0.12859229 0.1082367 0.1142069
## 1834 0.10650888 0.12859229 0.1168756 0.1142069
## 1835 0.10650888 0.12859229 0.1168756 0.1142069
## 1836 0.13781392 0.12859229 0.1082367 0.1142069
## 1837 0.13781392 0.12859229 0.1168756 0.1054972
## 1838 0.13781392 0.12859229 0.1168756 0.1054972
## 1839 0.11364176 0.12859229 0.1082367 0.1142069
## 1840 0.10650888 0.12859229 0.1082367 0.1142069
## 1841 0.10978875 0.12859229 0.1168756 0.1142069
## 1842 0.13781392 0.12859229 0.1082367 0.1142069
## 1843 0.10650888 0.12859229 0.1168756 0.1142069
## 1844 0.10978875 0.12859229 0.1168756 0.1142069
## 1845 0.10650888 0.12859229 0.1168756 0.1054972
## 1846 0.07843137 0.05274566 0.1168756 0.1142069
## 1847 0.13781392 0.12859229 0.1168756 0.1142069
## 1848 0.10978875 0.12859229 0.1082367 0.1142069
## 1849 0.07843137 0.12859229 0.1168756 0.1142069
## 1850 0.10978875 0.12859229 0.1082367 0.1142069
## 1851 0.07666667 0.05274566 0.1168756 0.1142069
## 1852 0.07843137 0.12859229 0.1168756 0.1142069
## 1853 0.07666667 0.05274566 0.1168756 0.1142069
## 1854 0.10650888 0.12859229 0.1082367 0.1142069
## 1855 0.11364176 0.12859229 0.1168756 0.1142069
## 1856 0.13781392 0.12859229 0.1082367 0.1142069
## 1857 0.07843137 0.12859229 0.1082367 0.1142069
## 1858 0.10978875 0.12859229 0.1082367 0.1142069
## 1859 0.10978875 0.12859229 0.1082367 0.1054972
## 1860 0.07843137 0.12859229 0.1168756 0.1142069
## 1861 0.10650888 0.12859229 0.1082367 0.1054972
## 1862 0.13958482 0.12859229 0.1168756 0.1142069
## 1863 0.13781392 0.12859229 0.1168756 0.1142069
## 1864 0.07666667 0.05274566 0.1082367 0.1142069
## 1865 0.11364176 0.12859229 0.1040100 0.1040100
## 1866 0.13781392 0.12859229 0.1168756 0.1142069
## 1867 0.10650888 0.12859229 0.1082367 0.1142069
## 1868 0.07666667 0.05274566 0.1168756 0.1142069
## 1869 0.11364176 0.12859229 0.1168756 0.1054972
## 1870 0.11364176 0.12859229 0.1168756 0.1142069
## 1871 0.10978875 0.05274566 0.1168756 0.1142069
## 1872 0.11364176 0.12859229 0.1168756 0.1142069
## 1873 0.10650888 0.12859229 0.1082367 0.1142069
## 1874 0.10650888 0.12859229 0.1082367 0.1054972
## 1875 0.13781392 0.12859229 0.1082367 0.1142069
## 1876 0.13781392 0.12859229 0.1168756 0.1142069
## 1877 0.10650888 0.12859229 0.1168756 0.1142069
## 1878 0.11364176 0.12859229 0.1168756 0.1142069
## 1879 0.07843137 0.12859229 0.1168756 0.1142069
## 1880 0.07843137 0.12859229 0.1168756 0.1142069
## 1881 0.07843137 0.05274566 0.1168756 0.1054972
## 1882 0.13781392 0.12859229 0.1040100 0.1040100
## 1883 0.13781392 0.12859229 0.1082367 0.1054972
## 1884 0.07666667 0.05274566 0.1168756 0.1142069
## 1885 0.10650888 0.12859229 0.1082367 0.1142069
## 1886 0.13781392 0.12859229 0.1168756 0.1142069
## 1887 0.13781392 0.12859229 0.1168756 0.1142069
## 1888 0.10978875 0.12859229 0.1168756 0.1142069
## 1889 0.13781392 0.05274566 0.1168756 0.1142069
## 1890 0.10978875 0.12859229 0.1168756 0.1142069
## 1891 0.10650888 0.12859229 0.1168756 0.1142069
## 1892 0.10650888 0.12859229 0.1168756 0.1142069
## 1893 0.11364176 0.12859229 0.1082367 0.1142069
## 1894 0.13781392 0.12859229 0.1168756 0.1142069
## 1895 0.07666667 0.05274566 0.1082367 0.1142069
## 1896 0.07666667 0.05274566 0.1082367 0.1054972
## 1897 0.13781392 0.12859229 0.1082367 0.1054972
## 1898 0.07666667 0.12859229 0.1082367 0.1142069
## 1899 0.10650888 0.12859229 0.1168756 0.1142069
## 1900 0.07843137 0.12859229 0.1082367 0.1054972
## 1901 0.13781392 0.12859229 0.1082367 0.1054972
## 1902 0.11364176 0.12859229 0.1082367 0.1142069
## 1903 0.11364176 0.12859229 0.1082367 0.1142069
## 1904 0.13781392 0.12859229 0.1082367 0.1142069
## 1905 0.10650888 0.12859229 0.1168756 0.1142069
## 1906 0.10650888 0.12859229 0.1168756 0.1054972
## 1907 0.07666667 0.12859229 0.1168756 0.1142069
## 1908 0.11364176 0.12859229 0.1082367 0.1142069
## 1909 0.10650888 0.12859229 0.1168756 0.1142069
## 1910 0.11364176 0.12859229 0.1168756 0.1142069
## 1911 0.10978875 0.12859229 0.1168756 0.1142069
## 1912 0.10650888 0.12859229 0.1082367 0.1142069
## 1913 0.07843137 0.05274566 0.1082367 0.1142069
## 1914 0.07843137 0.12859229 0.1168756 0.1142069
## 1915 0.11364176 0.12859229 0.1040100 0.1040100
## 1916 0.13958482 0.05274566 0.1082367 0.1054972
## 1917 0.13781392 0.12859229 0.1168756 0.1054972
## 1918 0.13958482 0.12859229 0.1168756 0.1142069
## 1919 0.11364176 0.12859229 0.1082367 0.1142069
## 1920 0.07843137 0.05274566 0.1082367 0.1142069
## 1921 0.10650888 0.12859229 0.1082367 0.1142069
## 1922 0.10650888 0.12859229 0.1082367 0.1142069
## 1923 0.07666667 0.12859229 0.1082367 0.1054972
## 1924 0.11364176 0.12859229 0.1168756 0.1142069
## 1925 0.13781392 0.12859229 0.1082367 0.1142069
## 1926 0.13781392 0.12859229 0.1168756 0.1142069
## 1927 0.07843137 0.12859229 0.1040100 0.1040100
## 1928 0.07843137 0.05274566 0.1082367 0.1142069
## 1929 0.13781392 0.12859229 0.1168756 0.1142069
## 1930 0.13781392 0.12859229 0.1082367 0.1142069
## 1931 0.13958482 0.12859229 0.1168756 0.1054972
## 1932 0.11364176 0.12859229 0.1168756 0.1142069
## 1933 0.07843137 0.12859229 0.1082367 0.1142069
## 1934 0.07843137 0.12859229 0.1082367 0.1142069
## 1935 0.13781392 0.12859229 0.1168756 0.1142069
## 1936 0.13781392 0.12859229 0.1168756 0.1142069
## 1937 0.10650888 0.12859229 0.1082367 0.1142069
## 1938 0.07843137 0.12859229 0.1168756 0.1054972
## 1939 0.10650888 0.12859229 0.1168756 0.1142069
## 1940 0.10650888 0.12859229 0.1168756 0.1054972
## 1941 0.10650888 0.12859229 0.1082367 0.1142069
## 1942 0.13781392 0.12859229 0.1082367 0.1142069
## 1943 0.10650888 0.12859229 0.1168756 0.1054972
## 1944 0.10650888 0.12859229 0.1168756 0.1142069
## 1945 0.11364176 0.12859229 0.1168756 0.1142069
## 1946 0.10650888 0.12859229 0.1082367 0.1142069
## 1947 0.13781392 0.12859229 0.1168756 0.1142069
## 1948 0.13781392 0.12859229 0.1168756 0.1054972
## 1949 0.07843137 0.05274566 0.1168756 0.1142069
## 1950 0.07843137 0.12859229 0.1082367 0.1142069
## 1951 0.13781392 0.12859229 0.1168756 0.1142069
## 1952 0.10650888 0.12859229 0.1082367 0.1142069
## 1953 0.07666667 0.12859229 0.1082367 0.1142069
## 1954 0.10650888 0.12859229 0.1168756 0.1142069
## 1955 0.07843137 0.12859229 0.1168756 0.1142069
## 1956 0.07843137 0.12859229 0.1082367 0.1142069
## 1957 0.10978875 0.12859229 0.1168756 0.1142069
## 1958 0.13958482 0.12859229 0.1082367 0.1142069
## 1959 0.07843137 0.12859229 0.1168756 0.1142069
## 1960 0.07843137 0.12859229 0.1168756 0.1142069
## 1961 0.10978875 0.12859229 0.1082367 0.1142069
## 1962 0.07666667 0.12859229 0.1082367 0.1142069
## 1963 0.13958482 0.12859229 0.1168756 0.1142069
## 1964 0.07843137 0.12859229 0.1082367 0.1142069
## 1965 0.11364176 0.12859229 0.1168756 0.1142069
## 1966 0.13958482 0.12859229 0.1082367 0.1142069
## 1967 0.13781392 0.12859229 0.1168756 0.1142069
## 1968 0.11364176 0.12859229 0.1168756 0.1142069
## 1969 0.13781392 0.12859229 0.1168756 0.1142069
## 1970 0.11364176 0.12859229 0.1168756 0.1142069
## 1971 0.13781392 0.12859229 0.1168756 0.1142069
## 1972 0.10650888 0.12859229 0.1082367 0.1142069
## 1973 0.13781392 0.12859229 0.1082367 0.1142069
## 1974 0.13958482 0.05274566 0.1168756 0.1142069
## 1975 0.13781392 0.12859229 0.1082367 0.1142069
## 1976 0.07843137 0.12859229 0.1168756 0.1142069
## 1977 0.10650888 0.12859229 0.1168756 0.1142069
## 1978 0.10650888 0.12859229 0.1168756 0.1142069
## 1979 0.13781392 0.12859229 0.1082367 0.1142069
## 1980 0.11364176 0.12859229 0.1082367 0.1142069
## 1981 0.07843137 0.12859229 0.1168756 0.1054972
## 1982 0.13781392 0.05274566 0.1168756 0.1142069
## 1983 0.07843137 0.12859229 0.1168756 0.1142069
## 1984 0.13781392 0.12859229 0.1082367 0.1142069
## 1985 0.10650888 0.05274566 0.1168756 0.1142069
## 1986 0.13958482 0.12859229 0.1082367 0.1142069
## 1987 0.13958482 0.12859229 0.1168756 0.1142069
## 1988 0.13781392 0.05274566 0.1082367 0.1142069
## 1989 0.07666667 0.05274566 0.1082367 0.1142069
## 1990 0.13781392 0.12859229 0.1082367 0.1142069
## 1991 0.13781392 0.12859229 0.1168756 0.1054972
## 1992 0.13781392 0.12859229 0.1082367 0.1142069
## 1993 0.10650888 0.12859229 0.1168756 0.1054972
## 1994 0.13781392 0.12859229 0.1168756 0.1142069
## 1995 0.13958482 0.12859229 0.1168756 0.1142069
## 1996 0.10650888 0.12859229 0.1082367 0.1142069
## 1997 0.11364176 0.12859229 0.1168756 0.1142069
## 1998 0.13958482 0.12859229 0.1082367 0.1142069
## 1999 0.13781392 0.12859229 0.1082367 0.1142069
## 2000 0.13958482 0.12859229 0.1168756 0.1142069
## 2001 0.10978875 0.05274566 0.1168756 0.1142069
## 2002 0.10978875 0.12859229 0.1168756 0.1142069
## 2003 0.13781392 0.12859229 0.1082367 0.1142069
## 2004 0.07843137 0.05274566 0.1168756 0.1142069
## 2005 0.13781392 0.12859229 0.1168756 0.1142069
## 2006 0.13781392 0.12859229 0.1082367 0.1142069
## 2007 0.13781392 0.12859229 0.1168756 0.1142069
## 2008 0.13781392 0.12859229 0.1082367 0.1142069
## 2009 0.10650888 0.12859229 0.1168756 0.1142069
## 2010 0.07843137 0.12859229 0.1168756 0.1142069
## 2011 0.10650888 0.05274566 0.1168756 0.1142069
## 2012 0.13781392 0.12859229 0.1082367 0.1142069
## 2013 0.13781392 0.12859229 0.1168756 0.1054972
## 2014 0.13781392 0.12859229 0.1082367 0.1142069
## 2015 0.13781392 0.12859229 0.1082367 0.1142069
## 2016 0.10650888 0.12859229 0.1168756 0.1054972
## 2017 0.10650888 0.12859229 0.1168756 0.1142069
## 2018 0.10650888 0.05274566 0.1168756 0.1142069
## 2019 0.11364176 0.12859229 0.1082367 0.1142069
## 2020 0.13781392 0.12859229 0.1168756 0.1142069
## 2021 0.11364176 0.12859229 0.1168756 0.1142069
## 2022 0.10978875 0.12859229 0.1168756 0.1142069
## 2023 0.10650888 0.12859229 0.1082367 0.1142069
## 2024 0.13781392 0.12859229 0.1168756 0.1142069
## 2025 0.11364176 0.12859229 0.1168756 0.1142069
## 2026 0.13781392 0.12859229 0.1168756 0.1142069
## 2027 0.13958482 0.12859229 0.1082367 0.1142069
## 2028 0.07843137 0.05274566 0.1082367 0.1142069
## 2029 0.13781392 0.12859229 0.1168756 0.1142069
## 2030 0.13781392 0.12859229 0.1168756 0.1054972
## 2031 0.10650888 0.05274566 0.1082367 0.1142069
## 2032 0.11364176 0.12859229 0.1082367 0.1142069
## 2033 0.07843137 0.05274566 0.1082367 0.1142069
## 2034 0.10650888 0.12859229 0.1168756 0.1142069
## 2035 0.13781392 0.12859229 0.1168756 0.1142069
## 2036 0.10650888 0.05274566 0.1168756 0.1142069
## 2037 0.07843137 0.12859229 0.1168756 0.1142069
## 2038 0.07843137 0.12859229 0.1082367 0.1142069
## 2039 0.10650888 0.12859229 0.1082367 0.1054972
## 2040 0.10650888 0.12859229 0.1082367 0.1142069
## 2041 0.07843137 0.12859229 0.1082367 0.1054972
## 2042 0.13781392 0.12859229 0.1168756 0.1142069
## 2043 0.10978875 0.12859229 0.1082367 0.1142069
## 2044 0.07666667 0.12859229 0.1168756 0.1142069
## 2045 0.11364176 0.12859229 0.1082367 0.1054972
## 2046 0.11364176 0.12859229 0.1168756 0.1142069
## 2047 0.13781392 0.12859229 0.1168756 0.1054972
## 2048 0.10978875 0.12859229 0.1082367 0.1142069
## 2049 0.07666667 0.05274566 0.1082367 0.1054972
## 2050 0.07843137 0.12859229 0.1082367 0.1142069
## 2051 0.13781392 0.12859229 0.1168756 0.1142069
## 2052 0.10650888 0.12859229 0.1082367 0.1142069
## 2053 0.10650888 0.12859229 0.1168756 0.1142069
## 2054 0.10650888 0.05274566 0.1082367 0.1142069
## 2055 0.10650888 0.05274566 0.1082367 0.1142069
## 2056 0.10650888 0.12859229 0.1168756 0.1142069
## 2057 0.13781392 0.12859229 0.1168756 0.1142069
## 2058 0.13781392 0.12859229 0.1168756 0.1142069
## 2059 0.07843137 0.12859229 0.1168756 0.1142069
## 2060 0.10978875 0.05274566 0.1168756 0.1142069
## 2061 0.10650888 0.12859229 0.1082367 0.1142069
## 2062 0.10650888 0.12859229 0.1168756 0.1142069
## 2063 0.13958482 0.12859229 0.1082367 0.1142069
## 2064 0.10650888 0.12859229 0.1082367 0.1142069
## 2065 0.07843137 0.12859229 0.1082367 0.1142069
## 2066 0.13781392 0.12859229 0.1082367 0.1142069
## 2067 0.07843137 0.12859229 0.1082367 0.1142069
## 2068 0.10978875 0.05274566 0.1168756 0.1142069
## 2069 0.13781392 0.12859229 0.1082367 0.1054972
## 2070 0.07666667 0.12859229 0.1082367 0.1142069
## 2071 0.11364176 0.12859229 0.1168756 0.1142069
## 2072 0.10650888 0.12859229 0.1082367 0.1142069
## 2073 0.10978875 0.12859229 0.1168756 0.1142069
## 2074 0.13781392 0.12859229 0.1082367 0.1142069
## 2075 0.07843137 0.12859229 0.1082367 0.1142069
## 2076 0.10650888 0.12859229 0.1082367 0.1142069
## 2077 0.10650888 0.12859229 0.1082367 0.1142069
## 2078 0.11364176 0.12859229 0.1168756 0.1142069
## 2079 0.10650888 0.12859229 0.1168756 0.1142069
## 2080 0.07843137 0.12859229 0.1168756 0.1142069
## 2081 0.07843137 0.12859229 0.1082367 0.1142069
## 2082 0.13781392 0.12859229 0.1082367 0.1142069
## 2083 0.10978875 0.05274566 0.1168756 0.1142069
## 2084 0.13781392 0.12859229 0.1168756 0.1142069
## 2085 0.13781392 0.12859229 0.1168756 0.1142069
## 2086 0.07843137 0.12859229 0.1168756 0.1142069
## 2087 0.10650888 0.12859229 0.1168756 0.1142069
## 2088 0.13781392 0.12859229 0.1082367 0.1142069
## 2089 0.10650888 0.12859229 0.1168756 0.1142069
## 2090 0.07843137 0.12859229 0.1168756 0.1142069
## 2091 0.10978875 0.12859229 0.1168756 0.1142069
## 2092 0.10650888 0.12859229 0.1168756 0.1142069
## 2093 0.07843137 0.05274566 0.1082367 0.1054972
## 2094 0.13781392 0.12859229 0.1168756 0.1142069
## 2095 0.13781392 0.12859229 0.1168756 0.1054972
## 2096 0.13781392 0.12859229 0.1082367 0.1054972
## 2097 0.10978875 0.05274566 0.1040100 0.1040100
## 2098 0.07666667 0.12859229 0.1082367 0.1142069
## 2099 0.07666667 0.12859229 0.1168756 0.1142069
## 2100 0.07843137 0.05274566 0.1168756 0.1142069
## 2101 0.10650888 0.12859229 0.1168756 0.1142069
## 2102 0.11364176 0.12859229 0.1082367 0.1142069
## 2103 0.10650888 0.05274566 0.1082367 0.1142069
## 2104 0.10650888 0.12859229 0.1168756 0.1142069
## 2105 0.10650888 0.12859229 0.1082367 0.1142069
## 2106 0.13781392 0.12859229 0.1082367 0.1142069
## 2107 0.13781392 0.12859229 0.1168756 0.1142069
## 2108 0.13781392 0.12859229 0.1082367 0.1142069
## 2109 0.13781392 0.12859229 0.1040100 0.1040100
## 2110 0.10650888 0.12859229 0.1082367 0.1142069
## 2111 0.07666667 0.12859229 0.1168756 0.1142069
## 2112 0.10650888 0.12859229 0.1082367 0.1142069
## 2113 0.10650888 0.12859229 0.1082367 0.1142069
## 2114 0.10650888 0.12859229 0.1082367 0.1142069
## 2115 0.13781392 0.12859229 0.1168756 0.1142069
## 2116 0.13781392 0.12859229 0.1168756 0.1054972
## 2117 0.10978875 0.12859229 0.1040100 0.1040100
## 2118 0.13781392 0.12859229 0.1168756 0.1054972
## 2119 0.13781392 0.12859229 0.1168756 0.1142069
## 2120 0.07666667 0.12859229 0.1168756 0.1142069
## 2121 0.10650888 0.12859229 0.1168756 0.1142069
## 2122 0.13781392 0.12859229 0.1082367 0.1142069
## 2123 0.13781392 0.12859229 0.1082367 0.1142069
## 2124 0.10650888 0.12859229 0.1082367 0.1142069
## 2125 0.07666667 0.12859229 0.1082367 0.1142069
## 2126 0.10650888 0.12859229 0.1168756 0.1142069
## 2127 0.10650888 0.12859229 0.1168756 0.1142069
## 2128 0.07666667 0.05274566 0.1082367 0.1054972
## 2129 0.11364176 0.12859229 0.1168756 0.1142069
## 2130 0.10650888 0.12859229 0.1168756 0.1142069
## 2131 0.10650888 0.12859229 0.1082367 0.1142069
## 2132 0.07666667 0.12859229 0.1082367 0.1054972
## 2133 0.10650888 0.12859229 0.1082367 0.1142069
## 2134 0.13958482 0.12859229 0.1040100 0.1040100
## 2135 0.10650888 0.12859229 0.1168756 0.1142069
## 2136 0.10650888 0.05274566 0.1082367 0.1142069
## 2137 0.10650888 0.05274566 0.1082367 0.1142069
## 2138 0.10650888 0.12859229 0.1168756 0.1142069
## 2139 0.13781392 0.12859229 0.1168756 0.1142069
## 2140 0.07843137 0.05274566 0.1168756 0.1142069
## 2141 0.11364176 0.12859229 0.1168756 0.1142069
## 2142 0.13781392 0.12859229 0.1168756 0.1142069
## 2143 0.07843137 0.12859229 0.1168756 0.1142069
## 2144 0.10650888 0.12859229 0.1082367 0.1142069
## 2145 0.10650888 0.12859229 0.1082367 0.1142069
## 2146 0.07666667 0.05274566 0.1082367 0.1142069
## 2147 0.11364176 0.12859229 0.1082367 0.1142069
## 2148 0.07843137 0.12859229 0.1082367 0.1142069
## 2149 0.13781392 0.12859229 0.1082367 0.1142069
## 2150 0.13958482 0.12859229 0.1082367 0.1142069
## 2151 0.13781392 0.12859229 0.1082367 0.1142069
## 2152 0.07843137 0.12859229 0.1168756 0.1054972
## 2153 0.07843137 0.12859229 0.1168756 0.1142069
## 2154 0.07843137 0.12859229 0.1168756 0.1142069
## 2155 0.13781392 0.12859229 0.1040100 0.1040100
## 2156 0.13781392 0.12859229 0.1082367 0.1142069
## 2157 0.07843137 0.12859229 0.1082367 0.1142069
## 2158 0.07843137 0.12859229 0.1168756 0.1142069
## 2159 0.13781392 0.12859229 0.1168756 0.1142069
## 2160 0.13781392 0.12859229 0.1082367 0.1142069
## 2161 0.11364176 0.12859229 0.1168756 0.1142069
## 2162 0.07843137 0.12859229 0.1168756 0.1142069
## 2163 0.10650888 0.12859229 0.1082367 0.1142069
## 2164 0.13781392 0.05274566 0.1082367 0.1142069
## 2165 0.10650888 0.12859229 0.1082367 0.1142069
## 2166 0.07843137 0.12859229 0.1168756 0.1142069
## 2167 0.11364176 0.12859229 0.1168756 0.1054972
## 2168 0.07666667 0.12859229 0.1168756 0.1142069
## 2169 0.10650888 0.12859229 0.1168756 0.1142069
## 2170 0.07843137 0.12859229 0.1168756 0.1142069
## 2171 0.11364176 0.12859229 0.1168756 0.1142069
## 2172 0.07843137 0.12859229 0.1168756 0.1142069
## 2173 0.10978875 0.12859229 0.1082367 0.1142069
## 2174 0.13958482 0.05274566 0.1082367 0.1054972
## 2175 0.10978875 0.05274566 0.1082367 0.1054972
## 2176 0.07843137 0.12859229 0.1168756 0.1142069
## 2177 0.07843137 0.12859229 0.1168756 0.1142069
## 2178 0.13781392 0.12859229 0.1082367 0.1142069
## 2179 0.10650888 0.12859229 0.1082367 0.1142069
## 2180 0.10650888 0.12859229 0.1082367 0.1142069
## 2181 0.10650888 0.12859229 0.1168756 0.1142069
## 2182 0.10978875 0.12859229 0.1082367 0.1142069
## 2183 0.13958482 0.12859229 0.1082367 0.1142069
## 2184 0.13781392 0.12859229 0.1168756 0.1142069
## 2185 0.07843137 0.12859229 0.1082367 0.1142069
## 2186 0.10650888 0.05274566 0.1168756 0.1054972
## 2187 0.13958482 0.12859229 0.1082367 0.1142069
## 2188 0.10650888 0.12859229 0.1082367 0.1142069
## 2189 0.10978875 0.12859229 0.1168756 0.1142069
## 2190 0.10978875 0.12859229 0.1082367 0.1142069
## 2191 0.10650888 0.12859229 0.1082367 0.1054972
## 2192 0.10650888 0.12859229 0.1168756 0.1142069
## 2193 0.10650888 0.12859229 0.1082367 0.1142069
## 2194 0.13781392 0.12859229 0.1168756 0.1142069
## 2195 0.10650888 0.12859229 0.1168756 0.1054972
## 2196 0.10650888 0.12859229 0.1082367 0.1142069
## 2197 0.11364176 0.12859229 0.1168756 0.1142069
## 2198 0.13958482 0.12859229 0.1168756 0.1054972
## 2199 0.13781392 0.12859229 0.1168756 0.1054972
## 2200 0.13781392 0.12859229 0.1168756 0.1142069
## 2201 0.13781392 0.12859229 0.1168756 0.1142069
## 2202 0.10650888 0.05274566 0.1082367 0.1142069
## 2203 0.07843137 0.12859229 0.1168756 0.1142069
## 2204 0.10978875 0.12859229 0.1082367 0.1142069
## 2205 0.13781392 0.12859229 0.1168756 0.1054972
## 2206 0.07843137 0.05274566 0.1082367 0.1142069
## 2207 0.13781392 0.12859229 0.1168756 0.1142069
## 2208 0.07843137 0.05274566 0.1168756 0.1054972
## 2209 0.13781392 0.12859229 0.1168756 0.1142069
## 2210 0.10650888 0.12859229 0.1168756 0.1054972
## 2211 0.07843137 0.12859229 0.1168756 0.1142069
## 2212 0.13781392 0.12859229 0.1168756 0.1142069
## 2213 0.07666667 0.12859229 0.1082367 0.1142069
## 2214 0.10650888 0.12859229 0.1168756 0.1054972
## 2215 0.07666667 0.05274566 0.1082367 0.1054972
## 2216 0.13781392 0.12859229 0.1082367 0.1054972
## 2217 0.10650888 0.05274566 0.1082367 0.1142069
## 2218 0.13781392 0.12859229 0.1082367 0.1142069
## 2219 0.11364176 0.12859229 0.1082367 0.1142069
## 2220 0.13781392 0.12859229 0.1168756 0.1142069
## 2221 0.13781392 0.12859229 0.1082367 0.1054972
## 2222 0.13781392 0.12859229 0.1168756 0.1142069
## 2223 0.10978875 0.12859229 0.1082367 0.1054972
## 2224 0.07843137 0.12859229 0.1082367 0.1142069
## 2225 0.13781392 0.12859229 0.1168756 0.1142069
## 2226 0.10978875 0.05274566 0.1082367 0.1142069
## 2227 0.10650888 0.12859229 0.1168756 0.1142069
## 2228 0.10650888 0.12859229 0.1082367 0.1142069
## 2229 0.13781392 0.12859229 0.1082367 0.1142069
## 2230 0.11364176 0.12859229 0.1168756 0.1142069
## 2231 0.13781392 0.12859229 0.1082367 0.1142069
## 2232 0.10650888 0.12859229 0.1168756 0.1142069
## 2233 0.10978875 0.12859229 0.1082367 0.1142069
## 2234 0.10650888 0.12859229 0.1082367 0.1142069
## 2235 0.07843137 0.12859229 0.1168756 0.1142069
## 2236 0.13781392 0.12859229 0.1168756 0.1142069
## 2237 0.11364176 0.12859229 0.1082367 0.1142069
## 2238 0.07843137 0.05274566 0.1168756 0.1142069
## 2239 0.10650888 0.05274566 0.1168756 0.1142069
## 2240 0.10650888 0.12859229 0.1168756 0.1142069
## 2241 0.07666667 0.05274566 0.1168756 0.1142069
## 2242 0.13781392 0.12859229 0.1168756 0.1142069
## 2243 0.11364176 0.12859229 0.1168756 0.1142069
## 2244 0.10978875 0.12859229 0.1168756 0.1142069
## 2245 0.13781392 0.12859229 0.1082367 0.1142069
## 2246 0.13958482 0.05274566 0.1168756 0.1142069
## 2247 0.07843137 0.12859229 0.1082367 0.1142069
## 2248 0.13781392 0.12859229 0.1168756 0.1142069
## 2249 0.11364176 0.05274566 0.1168756 0.1142069
## 2250 0.13781392 0.12859229 0.1168756 0.1054972
## 2251 0.13781392 0.12859229 0.1168756 0.1142069
## 2252 0.13781392 0.12859229 0.1168756 0.1142069
## 2253 0.10650888 0.05274566 0.1168756 0.1142069
## 2254 0.13781392 0.12859229 0.1168756 0.1142069
## 2255 0.13781392 0.05274566 0.1168756 0.1142069
## 2256 0.13781392 0.12859229 0.1082367 0.1142069
## 2257 0.13781392 0.12859229 0.1082367 0.1142069
## 2258 0.13781392 0.12859229 0.1168756 0.1142069
## 2259 0.11364176 0.12859229 0.1168756 0.1142069
## 2260 0.10650888 0.12859229 0.1082367 0.1142069
## 2261 0.13781392 0.05274566 0.1082367 0.1142069
## 2262 0.13781392 0.12859229 0.1168756 0.1054972
## 2263 0.13781392 0.12859229 0.1082367 0.1142069
## 2264 0.13781392 0.05274566 0.1168756 0.1142069
## 2265 0.13958482 0.12859229 0.1082367 0.1142069
## 2266 0.10650888 0.05274566 0.1082367 0.1142069
## 2267 0.13958482 0.12859229 0.1082367 0.1142069
## 2268 0.07666667 0.12859229 0.1082367 0.1142069
## 2269 0.13958482 0.12859229 0.1082367 0.1142069
## 2270 0.10650888 0.12859229 0.1168756 0.1142069
## 2271 0.10650888 0.05274566 0.1168756 0.1142069
## 2272 0.10650888 0.12859229 0.1168756 0.1142069
## 2273 0.13781392 0.12859229 0.1168756 0.1054972
## 2274 0.11364176 0.12859229 0.1168756 0.1142069
## 2275 0.07843137 0.05274566 0.1168756 0.1142069
## 2276 0.07843137 0.12859229 0.1082367 0.1142069
## 2277 0.10650888 0.12859229 0.1168756 0.1142069
## 2278 0.11364176 0.12859229 0.1082367 0.1142069
## 2279 0.10650888 0.05274566 0.1082367 0.1142069
## 2280 0.10978875 0.12859229 0.1168756 0.1142069
## 2281 0.11364176 0.12859229 0.1168756 0.1142069
## 2282 0.13781392 0.12859229 0.1168756 0.1142069
## 2283 0.10650888 0.12859229 0.1082367 0.1142069
## 2284 0.10650888 0.12859229 0.1168756 0.1142069
## 2285 0.10650888 0.12859229 0.1082367 0.1142069
## 2286 0.10650888 0.12859229 0.1168756 0.1142069
## 2287 0.13781392 0.12859229 0.1168756 0.1054972
## 2288 0.10650888 0.12859229 0.1168756 0.1142069
## 2289 0.13781392 0.12859229 0.1040100 0.1040100
## 2290 0.10650888 0.12859229 0.1168756 0.1142069
## 2291 0.13781392 0.12859229 0.1168756 0.1142069
## 2292 0.07843137 0.12859229 0.1082367 0.1054972
## 2293 0.13781392 0.12859229 0.1082367 0.1142069
## 2294 0.13781392 0.12859229 0.1168756 0.1142069
## 2295 0.13781392 0.12859229 0.1082367 0.1142069
## 2296 0.10978875 0.12859229 0.1168756 0.1142069
## 2297 0.07843137 0.12859229 0.1082367 0.1142069
## 2298 0.10650888 0.12859229 0.1168756 0.1142069
## 2299 0.10650888 0.05274566 0.1168756 0.1142069
## 2300 0.07843137 0.12859229 0.1082367 0.1142069
## 2301 0.13781392 0.12859229 0.1082367 0.1142069
## 2302 0.13781392 0.12859229 0.1168756 0.1142069
## 2303 0.10978875 0.12859229 0.1168756 0.1142069
## 2304 0.13781392 0.12859229 0.1082367 0.1142069
## 2305 0.13781392 0.12859229 0.1168756 0.1142069
## 2306 0.13781392 0.12859229 0.1082367 0.1142069
## 2307 0.10650888 0.12859229 0.1082367 0.1054972
## 2308 0.13781392 0.12859229 0.1168756 0.1054972
## 2309 0.13781392 0.12859229 0.1168756 0.1142069
## 2310 0.07843137 0.12859229 0.1168756 0.1142069
## 2311 0.10650888 0.12859229 0.1082367 0.1142069
## 2312 0.07843137 0.12859229 0.1168756 0.1142069
## 2313 0.11364176 0.12859229 0.1168756 0.1142069
## 2314 0.13781392 0.12859229 0.1168756 0.1142069
## 2315 0.10650888 0.12859229 0.1082367 0.1142069
## 2316 0.13781392 0.12859229 0.1168756 0.1142069
## 2317 0.07666667 0.05274566 0.1082367 0.1142069
## 2318 0.10650888 0.05274566 0.1082367 0.1142069
## 2319 0.11364176 0.12859229 0.1082367 0.1142069
## 2320 0.11364176 0.12859229 0.1168756 0.1054972
## 2321 0.11364176 0.12859229 0.1168756 0.1142069
## 2322 0.10650888 0.12859229 0.1082367 0.1142069
## 2323 0.07666667 0.05274566 0.1168756 0.1142069
## 2324 0.10650888 0.12859229 0.1168756 0.1142069
## 2325 0.13781392 0.12859229 0.1082367 0.1142069
## 2326 0.10650888 0.12859229 0.1082367 0.1142069
## 2327 0.10650888 0.12859229 0.1082367 0.1054972
## 2328 0.13781392 0.12859229 0.1168756 0.1142069
## 2329 0.10650888 0.12859229 0.1168756 0.1142069
## 2330 0.13958482 0.12859229 0.1168756 0.1142069
## 2331 0.13781392 0.12859229 0.1082367 0.1142069
## 2332 0.10978875 0.12859229 0.1168756 0.1142069
## 2333 0.13781392 0.12859229 0.1168756 0.1142069
## 2334 0.11364176 0.12859229 0.1168756 0.1142069
## 2335 0.10978875 0.12859229 0.1082367 0.1054972
## 2336 0.07843137 0.12859229 0.1168756 0.1142069
## 2337 0.11364176 0.12859229 0.1168756 0.1142069
## 2338 0.13781392 0.12859229 0.1082367 0.1142069
## 2339 0.13781392 0.12859229 0.1168756 0.1142069
## 2340 0.10650888 0.12859229 0.1082367 0.1142069
## 2341 0.11364176 0.12859229 0.1082367 0.1142069
## 2342 0.11364176 0.12859229 0.1082367 0.1142069
## 2343 0.13781392 0.12859229 0.1168756 0.1054972
## 2344 0.10978875 0.05274566 0.1168756 0.1142069
## 2345 0.10650888 0.12859229 0.1082367 0.1054972
## 2346 0.10650888 0.12859229 0.1168756 0.1142069
## 2347 0.13781392 0.12859229 0.1082367 0.1142069
## 2348 0.13781392 0.12859229 0.1082367 0.1142069
## 2349 0.07666667 0.12859229 0.1082367 0.1142069
## 2350 0.10650888 0.12859229 0.1082367 0.1142069
## 2351 0.10650888 0.12859229 0.1082367 0.1142069
## 2352 0.10650888 0.12859229 0.1168756 0.1142069
## 2353 0.10978875 0.05274566 0.1082367 0.1142069
## 2354 0.13958482 0.12859229 0.1168756 0.1054972
## 2355 0.13781392 0.12859229 0.1168756 0.1142069
## 2356 0.10650888 0.12859229 0.1082367 0.1142069
## 2357 0.10978875 0.05274566 0.1168756 0.1054972
## 2358 0.13781392 0.12859229 0.1168756 0.1142069
## 2359 0.13781392 0.12859229 0.1082367 0.1054972
## 2360 0.13781392 0.12859229 0.1168756 0.1054972
## 2361 0.13781392 0.12859229 0.1082367 0.1054972
## 2362 0.10978875 0.05274566 0.1082367 0.1142069
## 2363 0.13781392 0.12859229 0.1168756 0.1142069
## 2364 0.07843137 0.12859229 0.1168756 0.1142069
## 2365 0.13781392 0.12859229 0.1168756 0.1142069
## 2366 0.07843137 0.12859229 0.1168756 0.1142069
## 2367 0.13781392 0.12859229 0.1168756 0.1142069
## 2368 0.10650888 0.12859229 0.1168756 0.1142069
## 2369 0.11364176 0.05274566 0.1082367 0.1142069
## 2370 0.13781392 0.12859229 0.1082367 0.1142069
## 2371 0.13781392 0.12859229 0.1082367 0.1142069
## 2372 0.07666667 0.05274566 0.1082367 0.1054972
## 2373 0.10650888 0.12859229 0.1082367 0.1142069
## 2374 0.10650888 0.12859229 0.1168756 0.1054972
## 2375 0.10650888 0.12859229 0.1168756 0.1142069
## 2376 0.13781392 0.12859229 0.1082367 0.1142069
## 2377 0.07843137 0.12859229 0.1168756 0.1054972
## 2378 0.13781392 0.12859229 0.1082367 0.1142069
## 2379 0.07843137 0.12859229 0.1168756 0.1142069
## 2380 0.11364176 0.05274566 0.1082367 0.1142069
## 2381 0.10650888 0.12859229 0.1082367 0.1142069
## 2382 0.07666667 0.12859229 0.1168756 0.1142069
## 2383 0.13781392 0.12859229 0.1082367 0.1054972
## 2384 0.11364176 0.12859229 0.1082367 0.1142069
## 2385 0.10650888 0.05274566 0.1168756 0.1054972
## 2386 0.13781392 0.12859229 0.1082367 0.1142069
## 2387 0.13781392 0.12859229 0.1168756 0.1054972
## 2388 0.11364176 0.12859229 0.1082367 0.1142069
## 2389 0.10650888 0.12859229 0.1168756 0.1142069
## 2390 0.10650888 0.12859229 0.1168756 0.1142069
## 2391 0.07843137 0.05274566 0.1082367 0.1142069
## 2392 0.13781392 0.12859229 0.1168756 0.1142069
## 2393 0.07843137 0.12859229 0.1082367 0.1142069
## 2394 0.13781392 0.12859229 0.1082367 0.1142069
## 2395 0.10650888 0.12859229 0.1168756 0.1054972
## 2396 0.13958482 0.12859229 0.1168756 0.1142069
## 2397 0.13781392 0.05274566 0.1168756 0.1142069
## 2398 0.10650888 0.12859229 0.1168756 0.1142069
## 2399 0.10650888 0.12859229 0.1082367 0.1142069
## 2400 0.13781392 0.12859229 0.1168756 0.1054972
## 2401 0.07843137 0.12859229 0.1082367 0.1054972
## 2402 0.10650888 0.12859229 0.1168756 0.1142069
## 2403 0.13781392 0.12859229 0.1168756 0.1142069
## 2404 0.13781392 0.12859229 0.1168756 0.1142069
## 2405 0.10978875 0.12859229 0.1168756 0.1142069
## 2406 0.10650888 0.12859229 0.1168756 0.1142069
## 2407 0.10650888 0.12859229 0.1082367 0.1142069
## 2408 0.07666667 0.12859229 0.1082367 0.1142069
## 2409 0.10650888 0.12859229 0.1168756 0.1054972
## 2410 0.07843137 0.12859229 0.1168756 0.1142069
## 2411 0.13781392 0.12859229 0.1168756 0.1142069
## 2412 0.11364176 0.12859229 0.1082367 0.1054972
## 2413 0.07843137 0.05274566 0.1168756 0.1142069
## 2414 0.13781392 0.12859229 0.1168756 0.1142069
## 2415 0.13781392 0.12859229 0.1082367 0.1142069
## 2416 0.10978875 0.12859229 0.1168756 0.1142069
## 2417 0.13781392 0.12859229 0.1168756 0.1142069
## 2418 0.07843137 0.12859229 0.1082367 0.1142069
## 2419 0.10978875 0.12859229 0.1082367 0.1142069
## 2420 0.10650888 0.12859229 0.1082367 0.1142069
## 2421 0.07843137 0.12859229 0.1168756 0.1142069
## 2422 0.11364176 0.12859229 0.1082367 0.1142069
## 2423 0.13781392 0.12859229 0.1168756 0.1142069
## 2424 0.07666667 0.05274566 0.1082367 0.1142069
## 2425 0.13781392 0.12859229 0.1168756 0.1142069
## 2426 0.07843137 0.12859229 0.1168756 0.1142069
## 2427 0.10650888 0.12859229 0.1168756 0.1142069
## 2428 0.10650888 0.12859229 0.1082367 0.1142069
## 2429 0.07843137 0.12859229 0.1082367 0.1142069
## 2430 0.07843137 0.12859229 0.1168756 0.1142069
## 2431 0.11364176 0.12859229 0.1082367 0.1142069
## 2432 0.10978875 0.05274566 0.1082367 0.1142069
## 2433 0.13781392 0.12859229 0.1168756 0.1142069
## 2434 0.10650888 0.12859229 0.1082367 0.1142069
## 2435 0.13781392 0.12859229 0.1082367 0.1142069
## 2436 0.07843137 0.12859229 0.1082367 0.1054972
## 2437 0.07843137 0.12859229 0.1168756 0.1142069
## 2438 0.10650888 0.12859229 0.1082367 0.1142069
## 2439 0.13781392 0.12859229 0.1168756 0.1142069
## 2440 0.07843137 0.12859229 0.1168756 0.1142069
## 2441 0.07843137 0.12859229 0.1168756 0.1142069
## 2442 0.11364176 0.12859229 0.1168756 0.1142069
## 2443 0.13781392 0.12859229 0.1168756 0.1142069
## 2444 0.13781392 0.12859229 0.1082367 0.1142069
## 2445 0.10978875 0.12859229 0.1082367 0.1142069
## 2446 0.07843137 0.12859229 0.1082367 0.1142069
## 2447 0.07843137 0.12859229 0.1082367 0.1142069
## 2448 0.13781392 0.12859229 0.1168756 0.1142069
## 2449 0.13781392 0.12859229 0.1168756 0.1142069
## 2450 0.07843137 0.05274566 0.1168756 0.1142069
## 2451 0.10650888 0.12859229 0.1168756 0.1142069
## 2452 0.10650888 0.12859229 0.1082367 0.1142069
## 2453 0.11364176 0.12859229 0.1168756 0.1142069
## 2454 0.10978875 0.12859229 0.1168756 0.1142069
## 2455 0.10650888 0.12859229 0.1168756 0.1142069
## 2456 0.10650888 0.12859229 0.1082367 0.1142069
## 2457 0.07843137 0.05274566 0.1082367 0.1142069
## 2458 0.13958482 0.12859229 0.1168756 0.1142069
## 2459 0.10650888 0.12859229 0.1082367 0.1142069
## 2460 0.07843137 0.05274566 0.1082367 0.1142069
## 2461 0.10650888 0.12859229 0.1082367 0.1054972
## 2462 0.13781392 0.12859229 0.1168756 0.1142069
## 2463 0.13958482 0.05274566 0.1168756 0.1142069
## 2464 0.13781392 0.05274566 0.1168756 0.1142069
## 2465 0.07843137 0.12859229 0.1168756 0.1054972
## 2466 0.13781392 0.12859229 0.1168756 0.1142069
## 2467 0.07843137 0.12859229 0.1168756 0.1142069
## 2468 0.07666667 0.12859229 0.1168756 0.1054972
## 2469 0.13781392 0.12859229 0.1168756 0.1142069
## 2470 0.07843137 0.05274566 0.1168756 0.1054972
## 2471 0.10650888 0.12859229 0.1082367 0.1142069
## 2472 0.13781392 0.12859229 0.1168756 0.1054972
## 2473 0.13781392 0.12859229 0.1168756 0.1054972
## 2474 0.11364176 0.12859229 0.1082367 0.1142069
## 2475 0.10650888 0.12859229 0.1082367 0.1054972
## 2476 0.13781392 0.12859229 0.1040100 0.1040100
## 2477 0.13781392 0.12859229 0.1082367 0.1142069
## 2478 0.07843137 0.05274566 0.1040100 0.1040100
## 2479 0.07666667 0.12859229 0.1168756 0.1142069
## 2480 0.10978875 0.05274566 0.1168756 0.1054972
## 2481 0.07843137 0.12859229 0.1168756 0.1142069
## 2482 0.07843137 0.12859229 0.1168756 0.1142069
## 2483 0.13781392 0.12859229 0.1168756 0.1142069
## 2484 0.07843137 0.05274566 0.1168756 0.1142069
## 2485 0.13781392 0.12859229 0.1082367 0.1142069
## 2486 0.11364176 0.12859229 0.1168756 0.1142069
## 2487 0.07843137 0.12859229 0.1168756 0.1054972
## 2488 0.07843137 0.12859229 0.1082367 0.1142069
## 2489 0.13781392 0.12859229 0.1168756 0.1142069
## 2490 0.11364176 0.12859229 0.1082367 0.1142069
## 2491 0.10978875 0.05274566 0.1168756 0.1142069
## 2492 0.10650888 0.12859229 0.1082367 0.1054972
## 2493 0.13781392 0.12859229 0.1082367 0.1142069
## 2494 0.13958482 0.12859229 0.1168756 0.1054972
## 2495 0.13781392 0.12859229 0.1168756 0.1142069
## 2496 0.11364176 0.12859229 0.1082367 0.1054972
## 2497 0.11364176 0.12859229 0.1082367 0.1054972
## 2498 0.13781392 0.12859229 0.1168756 0.1142069
## 2499 0.07843137 0.12859229 0.1168756 0.1142069
## 2500 0.10650888 0.12859229 0.1168756 0.1142069
## 2501 0.10650888 0.12859229 0.1168756 0.1054972
## 2502 0.13781392 0.12859229 0.1082367 0.1142069
## 2503 0.10978875 0.12859229 0.1082367 0.1054972
## 2504 0.13958482 0.12859229 0.1168756 0.1142069
## 2505 0.07843137 0.12859229 0.1168756 0.1142069
## 2506 0.07843137 0.12859229 0.1082367 0.1142069
## 2507 0.13781392 0.12859229 0.1040100 0.1040100
## 2508 0.10978875 0.05274566 0.1168756 0.1142069
## 2509 0.13781392 0.12859229 0.1082367 0.1142069
## 2510 0.07843137 0.05274566 0.1168756 0.1142069
## 2511 0.10650888 0.12859229 0.1168756 0.1142069
## 2512 0.13781392 0.12859229 0.1168756 0.1142069
## 2513 0.10650888 0.12859229 0.1082367 0.1142069
## 2514 0.07666667 0.12859229 0.1082367 0.1142069
## 2515 0.10650888 0.12859229 0.1168756 0.1142069
## 2516 0.13781392 0.12859229 0.1082367 0.1142069
## 2517 0.11364176 0.12859229 0.1082367 0.1142069
## 2518 0.10650888 0.12859229 0.1168756 0.1142069
## 2519 0.13781392 0.12859229 0.1168756 0.1142069
## 2520 0.10650888 0.12859229 0.1168756 0.1142069
## 2521 0.07666667 0.12859229 0.1168756 0.1142069
## 2522 0.10650888 0.12859229 0.1168756 0.1142069
## 2523 0.10650888 0.12859229 0.1082367 0.1142069
## 2524 0.07843137 0.12859229 0.1168756 0.1142069
## 2525 0.11364176 0.05274566 0.1040100 0.1040100
## 2526 0.07843137 0.12859229 0.1082367 0.1142069
## 2527 0.11364176 0.12859229 0.1168756 0.1142069
## 2528 0.10650888 0.12859229 0.1082367 0.1142069
## 2529 0.13781392 0.12859229 0.1040100 0.1040100
## 2530 0.13781392 0.12859229 0.1040100 0.1040100
## 2531 0.13781392 0.12859229 0.1082367 0.1142069
## 2532 0.13781392 0.12859229 0.1168756 0.1142069
## 2533 0.13958482 0.12859229 0.1082367 0.1142069
## 2534 0.07843137 0.12859229 0.1082367 0.1142069
## 2535 0.11364176 0.12859229 0.1082367 0.1054972
## 2536 0.11364176 0.12859229 0.1168756 0.1142069
## 2537 0.13781392 0.12859229 0.1168756 0.1142069
## 2538 0.07843137 0.12859229 0.1168756 0.1142069
## 2539 0.13781392 0.12859229 0.1082367 0.1054972
## 2540 0.10650888 0.05274566 0.1082367 0.1142069
## 2541 0.10978875 0.12859229 0.1168756 0.1142069
## 2542 0.11364176 0.12859229 0.1082367 0.1054972
## 2543 0.13781392 0.12859229 0.1168756 0.1142069
## 2544 0.13781392 0.12859229 0.1168756 0.1142069
## 2545 0.10650888 0.12859229 0.1168756 0.1142069
## 2546 0.13781392 0.12859229 0.1168756 0.1142069
## 2547 0.07666667 0.05274566 0.1082367 0.1054972
## 2548 0.13781392 0.12859229 0.1168756 0.1142069
## 2549 0.13781392 0.05274566 0.1082367 0.1142069
## 2550 0.07843137 0.12859229 0.1082367 0.1054972
## 2551 0.13781392 0.12859229 0.1082367 0.1142069
## 2552 0.10650888 0.12859229 0.1168756 0.1142069
## 2553 0.11364176 0.12859229 0.1168756 0.1142069
## 2554 0.10650888 0.12859229 0.1168756 0.1054972
## 2555 0.13781392 0.12859229 0.1082367 0.1142069
## 2556 0.13781392 0.05274566 0.1168756 0.1142069
## 2557 0.13781392 0.05274566 0.1168756 0.1054972
## 2558 0.13781392 0.12859229 0.1168756 0.1142069
## 2559 0.10978875 0.12859229 0.1082367 0.1142069
## 2560 0.07843137 0.12859229 0.1168756 0.1142069
## 2561 0.13781392 0.05274566 0.1168756 0.1142069
## 2562 0.13781392 0.12859229 0.1082367 0.1142069
## 2563 0.07843137 0.12859229 0.1168756 0.1142069
## 2564 0.11364176 0.12859229 0.1082367 0.1142069
## 2565 0.13781392 0.12859229 0.1040100 0.1040100
## 2566 0.13958482 0.12859229 0.1168756 0.1142069
## 2567 0.11364176 0.12859229 0.1168756 0.1142069
## 2568 0.10650888 0.12859229 0.1082367 0.1142069
## 2569 0.07843137 0.12859229 0.1168756 0.1142069
## 2570 0.13781392 0.12859229 0.1168756 0.1054972
## 2571 0.13781392 0.12859229 0.1168756 0.1054972
## 2572 0.07666667 0.12859229 0.1082367 0.1142069
## 2573 0.13781392 0.05274566 0.1168756 0.1142069
## 2574 0.13781392 0.12859229 0.1168756 0.1142069
## 2575 0.10978875 0.12859229 0.1168756 0.1142069
## 2576 0.10978875 0.12859229 0.1168756 0.1142069
## 2577 0.11364176 0.12859229 0.1082367 0.1142069
## 2578 0.13781392 0.05274566 0.1168756 0.1142069
## 2579 0.13781392 0.12859229 0.1082367 0.1142069
## 2580 0.07843137 0.12859229 0.1168756 0.1142069
## 2581 0.10650888 0.12859229 0.1168756 0.1142069
## 2582 0.07666667 0.05274566 0.1082367 0.1142069
## 2583 0.07666667 0.12859229 0.1168756 0.1054972
## 2584 0.07843137 0.12859229 0.1168756 0.1142069
## 2585 0.11364176 0.12859229 0.1082367 0.1142069
## 2586 0.10650888 0.05274566 0.1168756 0.1054972
## 2587 0.13781392 0.12859229 0.1082367 0.1142069
## 2588 0.10650888 0.12859229 0.1082367 0.1142069
## 2589 0.07843137 0.12859229 0.1168756 0.1142069
## 2590 0.10650888 0.12859229 0.1168756 0.1142069
## 2591 0.13781392 0.12859229 0.1082367 0.1142069
## 2592 0.13781392 0.12859229 0.1082367 0.1142069
## 2593 0.13781392 0.12859229 0.1082367 0.1142069
## 2594 0.10650888 0.12859229 0.1082367 0.1142069
## 2595 0.13781392 0.12859229 0.1168756 0.1142069
## 2596 0.07843137 0.12859229 0.1082367 0.1142069
## 2597 0.13781392 0.12859229 0.1168756 0.1054972
## 2598 0.10650888 0.12859229 0.1168756 0.1054972
## 2599 0.10650888 0.12859229 0.1168756 0.1142069
## 2600 0.13781392 0.05274566 0.1168756 0.1142069
## 2601 0.13781392 0.12859229 0.1082367 0.1142069
## 2602 0.11364176 0.12859229 0.1082367 0.1142069
## 2603 0.13781392 0.12859229 0.1082367 0.1142069
## 2604 0.13781392 0.12859229 0.1168756 0.1142069
## 2605 0.13781392 0.12859229 0.1082367 0.1142069
## 2606 0.13781392 0.05274566 0.1168756 0.1142069
## 2607 0.07666667 0.12859229 0.1082367 0.1142069
## 2608 0.07843137 0.12859229 0.1168756 0.1054972
## 2609 0.13781392 0.12859229 0.1082367 0.1142069
## 2610 0.10650888 0.12859229 0.1168756 0.1142069
## 2611 0.10650888 0.12859229 0.1082367 0.1142069
## 2612 0.10650888 0.12859229 0.1168756 0.1142069
## 2613 0.10650888 0.12859229 0.1168756 0.1142069
## 2614 0.13781392 0.12859229 0.1168756 0.1142069
## 2615 0.13781392 0.12859229 0.1168756 0.1142069
## 2616 0.10650888 0.12859229 0.1168756 0.1054972
## 2617 0.10650888 0.12859229 0.1082367 0.1142069
## 2618 0.10650888 0.12859229 0.1168756 0.1142069
## 2619 0.10650888 0.12859229 0.1168756 0.1142069
## 2620 0.10650888 0.12859229 0.1168756 0.1142069
## 2621 0.10650888 0.12859229 0.1168756 0.1142069
## 2622 0.11364176 0.12859229 0.1168756 0.1142069
## 2623 0.10650888 0.05274566 0.1082367 0.1142069
## 2624 0.10978875 0.12859229 0.1082367 0.1054972
## 2625 0.11364176 0.12859229 0.1082367 0.1054972
## 2626 0.13958482 0.12859229 0.1168756 0.1142069
## 2627 0.10650888 0.12859229 0.1082367 0.1142069
## 2628 0.07666667 0.12859229 0.1082367 0.1142069
## 2629 0.13958482 0.12859229 0.1168756 0.1142069
## 2630 0.11364176 0.12859229 0.1082367 0.1142069
## 2631 0.11364176 0.12859229 0.1082367 0.1054972
## 2632 0.07666667 0.12859229 0.1082367 0.1142069
## 2633 0.11364176 0.05274566 0.1082367 0.1142069
## 2634 0.10978875 0.12859229 0.1082367 0.1142069
## 2635 0.11364176 0.12859229 0.1168756 0.1142069
## 2636 0.10978875 0.12859229 0.1082367 0.1142069
## 2637 0.07843137 0.12859229 0.1168756 0.1142069
## 2638 0.13781392 0.12859229 0.1082367 0.1142069
## 2639 0.10650888 0.12859229 0.1168756 0.1142069
## 2640 0.10650888 0.12859229 0.1040100 0.1040100
## 2641 0.11364176 0.05274566 0.1168756 0.1142069
## 2642 0.10978875 0.05274566 0.1168756 0.1142069
## 2643 0.10978875 0.12859229 0.1082367 0.1142069
## 2644 0.13781392 0.12859229 0.1168756 0.1142069
## 2645 0.10650888 0.12859229 0.1040100 0.1040100
## 2646 0.10978875 0.05274566 0.1168756 0.1142069
## 2647 0.13781392 0.12859229 0.1168756 0.1142069
## 2648 0.13781392 0.12859229 0.1168756 0.1142069
## 2649 0.13958482 0.12859229 0.1082367 0.1142069
## 2650 0.13958482 0.05274566 0.1082367 0.1142069
## 2651 0.13781392 0.12859229 0.1082367 0.1054972
## 2652 0.13781392 0.12859229 0.1168756 0.1054972
## 2653 0.13781392 0.12859229 0.1168756 0.1142069
## 2654 0.13781392 0.12859229 0.1082367 0.1142069
## 2655 0.11364176 0.12859229 0.1168756 0.1142069
## 2656 0.10650888 0.12859229 0.1168756 0.1142069
## 2657 0.13781392 0.12859229 0.1082367 0.1142069
## 2658 0.10650888 0.12859229 0.1082367 0.1142069
## 2659 0.13958482 0.12859229 0.1168756 0.1142069
## 2660 0.13781392 0.12859229 0.1168756 0.1142069
## 2661 0.07843137 0.12859229 0.1082367 0.1142069
## 2662 0.13781392 0.12859229 0.1168756 0.1142069
## 2663 0.13781392 0.12859229 0.1082367 0.1142069
## 2664 0.13781392 0.12859229 0.1082367 0.1142069
## 2665 0.13781392 0.12859229 0.1082367 0.1142069
## 2666 0.13781392 0.12859229 0.1168756 0.1142069
## 2667 0.13781392 0.12859229 0.1168756 0.1142069
## 2668 0.11364176 0.12859229 0.1082367 0.1054972
## 2669 0.10978875 0.12859229 0.1082367 0.1142069
## 2670 0.10978875 0.12859229 0.1168756 0.1142069
## 2671 0.11364176 0.12859229 0.1082367 0.1142069
## 2672 0.13781392 0.12859229 0.1168756 0.1142069
## 2673 0.10978875 0.12859229 0.1082367 0.1142069
## 2674 0.11364176 0.12859229 0.1168756 0.1142069
## 2675 0.10650888 0.12859229 0.1168756 0.1142069
## 2676 0.11364176 0.12859229 0.1082367 0.1142069
## 2677 0.10650888 0.12859229 0.1168756 0.1054972
## 2678 0.13781392 0.12859229 0.1168756 0.1142069
## 2679 0.10650888 0.12859229 0.1082367 0.1142069
## 2680 0.10650888 0.12859229 0.1168756 0.1142069
## 2681 0.10650888 0.12859229 0.1082367 0.1142069
## 2682 0.07843137 0.05274566 0.1082367 0.1142069
## 2683 0.10650888 0.12859229 0.1168756 0.1142069
## 2684 0.10978875 0.05274566 0.1168756 0.1142069
## 2685 0.11364176 0.12859229 0.1168756 0.1142069
## 2686 0.10650888 0.12859229 0.1082367 0.1142069
## 2687 0.11364176 0.12859229 0.1082367 0.1142069
## 2688 0.13781392 0.12859229 0.1082367 0.1142069
## 2689 0.07843137 0.12859229 0.1168756 0.1142069
## 2690 0.10978875 0.12859229 0.1168756 0.1142069
## 2691 0.13781392 0.12859229 0.1040100 0.1040100
## 2692 0.13781392 0.12859229 0.1168756 0.1142069
## 2693 0.07843137 0.12859229 0.1168756 0.1142069
## 2694 0.07843137 0.12859229 0.1082367 0.1142069
## 2695 0.13781392 0.12859229 0.1082367 0.1142069
## 2696 0.13781392 0.12859229 0.1168756 0.1142069
## 2697 0.07843137 0.12859229 0.1168756 0.1142069
## 2698 0.10650888 0.12859229 0.1040100 0.1040100
## 2699 0.07843137 0.12859229 0.1168756 0.1142069
## 2700 0.13781392 0.12859229 0.1082367 0.1142069
## 2701 0.13781392 0.05274566 0.1082367 0.1142069
## 2702 0.07843137 0.12859229 0.1168756 0.1142069
## 2703 0.07666667 0.05274566 0.1082367 0.1054972
## 2704 0.07843137 0.12859229 0.1168756 0.1142069
## 2705 0.10650888 0.12859229 0.1082367 0.1142069
## 2706 0.07843137 0.05274566 0.1082367 0.1142069
## 2707 0.11364176 0.12859229 0.1168756 0.1142069
## 2708 0.07666667 0.05274566 0.1168756 0.1142069
## 2709 0.13958482 0.12859229 0.1168756 0.1142069
## 2710 0.10978875 0.12859229 0.1082367 0.1054972
## 2711 0.07843137 0.05274566 0.1082367 0.1054972
## 2712 0.07843137 0.12859229 0.1082367 0.1054972
## 2713 0.13958482 0.12859229 0.1082367 0.1142069
## 2714 0.11364176 0.12859229 0.1168756 0.1142069
## 2715 0.13781392 0.12859229 0.1168756 0.1142069
## 2716 0.13781392 0.12859229 0.1168756 0.1142069
## 2717 0.13781392 0.12859229 0.1168756 0.1054972
## 2718 0.13781392 0.12859229 0.1168756 0.1142069
## 2719 0.10650888 0.12859229 0.1168756 0.1142069
## 2720 0.11364176 0.12859229 0.1168756 0.1142069
## 2721 0.10650888 0.12859229 0.1168756 0.1054972
## 2722 0.13781392 0.12859229 0.1082367 0.1142069
## 2723 0.10650888 0.05274566 0.1082367 0.1054972
## 2724 0.10650888 0.12859229 0.1082367 0.1142069
## 2725 0.07843137 0.12859229 0.1168756 0.1142069
## 2726 0.13781392 0.12859229 0.1168756 0.1054972
## 2727 0.10650888 0.12859229 0.1082367 0.1142069
## 2728 0.13781392 0.12859229 0.1082367 0.1142069
## 2729 0.11364176 0.12859229 0.1168756 0.1054972
## 2730 0.11364176 0.12859229 0.1082367 0.1142069
## 2731 0.13781392 0.12859229 0.1168756 0.1142069
## 2732 0.10650888 0.12859229 0.1168756 0.1142069
## 2733 0.13781392 0.12859229 0.1040100 0.1040100
## 2734 0.13781392 0.12859229 0.1082367 0.1142069
## 2735 0.13781392 0.12859229 0.1168756 0.1142069
## 2736 0.13781392 0.12859229 0.1082367 0.1142069
## 2737 0.13781392 0.12859229 0.1168756 0.1142069
## 2738 0.16666667 0.12859229 0.1168756 0.1142069
## 2739 0.10978875 0.12859229 0.1168756 0.1142069
## 2740 0.13781392 0.12859229 0.1168756 0.1142069
## 2741 0.13781392 0.12859229 0.1168756 0.1142069
## 2742 0.10650888 0.12859229 0.1082367 0.1142069
## 2743 0.07843137 0.12859229 0.1082367 0.1142069
## 2744 0.10650888 0.12859229 0.1168756 0.1142069
## 2745 0.13781392 0.12859229 0.1168756 0.1142069
## 2746 0.10978875 0.12859229 0.1082367 0.1142069
## 2747 0.11364176 0.12859229 0.1168756 0.1142069
## 2748 0.13958482 0.12859229 0.1168756 0.1054972
## 2749 0.13958482 0.12859229 0.1168756 0.1142069
## 2750 0.10650888 0.05274566 0.1082367 0.1142069
## 2751 0.10650888 0.12859229 0.1168756 0.1142069
## 2752 0.07843137 0.12859229 0.1168756 0.1142069
## 2753 0.07843137 0.12859229 0.1168756 0.1142069
## 2754 0.13781392 0.12859229 0.1168756 0.1142069
## 2755 0.10650888 0.12859229 0.1168756 0.1054972
## 2756 0.10650888 0.12859229 0.1168756 0.1142069
## 2757 0.11364176 0.05274566 0.1168756 0.1142069
## 2758 0.13781392 0.12859229 0.1168756 0.1142069
## 2759 0.13781392 0.12859229 0.1168756 0.1054972
## 2760 0.10650888 0.05274566 0.1082367 0.1142069
## 2761 0.13781392 0.12859229 0.1168756 0.1142069
## 2762 0.10978875 0.12859229 0.1082367 0.1142069
## 2763 0.13781392 0.12859229 0.1082367 0.1142069
## 2764 0.10650888 0.12859229 0.1082367 0.1142069
## 2765 0.07843137 0.12859229 0.1082367 0.1142069
## 2766 0.13781392 0.12859229 0.1168756 0.1142069
## 2767 0.13781392 0.12859229 0.1082367 0.1142069
## 2768 0.13958482 0.12859229 0.1168756 0.1142069
## 2769 0.10978875 0.05274566 0.1168756 0.1142069
## 2770 0.07843137 0.12859229 0.1082367 0.1142069
## 2771 0.10978875 0.12859229 0.1082367 0.1142069
## 2772 0.10650888 0.12859229 0.1168756 0.1142069
## 2773 0.07843137 0.12859229 0.1168756 0.1142069
## 2774 0.13781392 0.12859229 0.1168756 0.1142069
## 2775 0.10650888 0.05274566 0.1168756 0.1142069
## 2776 0.07843137 0.12859229 0.1168756 0.1142069
## 2777 0.10650888 0.12859229 0.1168756 0.1142069
## 2778 0.13958482 0.12859229 0.1082367 0.1142069
## 2779 0.07843137 0.12859229 0.1168756 0.1142069
## 2780 0.07843137 0.12859229 0.1168756 0.1142069
## 2781 0.13781392 0.12859229 0.1168756 0.1142069
## 2782 0.13781392 0.12859229 0.1168756 0.1054972
## 2783 0.07843137 0.12859229 0.1168756 0.1054972
## 2784 0.07843137 0.12859229 0.1168756 0.1142069
## 2785 0.10650888 0.12859229 0.1082367 0.1142069
## 2786 0.13781392 0.12859229 0.1168756 0.1142069
## 2787 0.13781392 0.05274566 0.1168756 0.1054972
## 2788 0.13781392 0.12859229 0.1168756 0.1142069
## 2789 0.13781392 0.12859229 0.1082367 0.1142069
## 2790 0.13781392 0.12859229 0.1082367 0.1142069
## 2791 0.13781392 0.12859229 0.1082367 0.1142069
## 2792 0.10650888 0.12859229 0.1168756 0.1142069
## 2793 0.10650888 0.12859229 0.1082367 0.1142069
## 2794 0.10650888 0.12859229 0.1082367 0.1142069
## 2795 0.07843137 0.05274566 0.1168756 0.1054972
## 2796 0.13781392 0.12859229 0.1168756 0.1142069
## 2797 0.10978875 0.12859229 0.1082367 0.1142069
## 2798 0.07843137 0.12859229 0.1168756 0.1142069
## 2799 0.13781392 0.12859229 0.1168756 0.1142069
## 2800 0.10978875 0.05274566 0.1082367 0.1142069
## 2801 0.11364176 0.12859229 0.1082367 0.1142069
## 2802 0.13781392 0.12859229 0.1082367 0.1142069
## 2803 0.07666667 0.12859229 0.1168756 0.1054972
## 2804 0.13781392 0.12859229 0.1082367 0.1142069
## 2805 0.10978875 0.12859229 0.1168756 0.1142069
## 2806 0.07666667 0.12859229 0.1082367 0.1142069
## 2807 0.13781392 0.12859229 0.1082367 0.1054972
## 2808 0.11364176 0.12859229 0.1082367 0.1142069
## 2809 0.07666667 0.12859229 0.1168756 0.1142069
## 2810 0.11364176 0.12859229 0.1168756 0.1142069
## 2811 0.10650888 0.12859229 0.1168756 0.1142069
## 2812 0.13781392 0.12859229 0.1168756 0.1142069
## 2813 0.13781392 0.12859229 0.1168756 0.1142069
## 2814 0.10650888 0.12859229 0.1168756 0.1142069
## 2815 0.11364176 0.12859229 0.1168756 0.1142069
## 2816 0.07843137 0.12859229 0.1168756 0.1142069
## 2817 0.10978875 0.12859229 0.1168756 0.1054972
## 2818 0.11364176 0.12859229 0.1082367 0.1142069
## 2819 0.13781392 0.12859229 0.1082367 0.1142069
## 2820 0.13781392 0.12859229 0.1082367 0.1054972
## 2821 0.10650888 0.12859229 0.1082367 0.1142069
## 2822 0.07843137 0.12859229 0.1168756 0.1142069
## 2823 0.07843137 0.12859229 0.1168756 0.1142069
## 2824 0.13781392 0.12859229 0.1082367 0.1142069
## 2825 0.07666667 0.12859229 0.1168756 0.1142069
## 2826 0.13781392 0.12859229 0.1082367 0.1142069
## 2827 0.13781392 0.12859229 0.1168756 0.1142069
## 2828 0.13781392 0.12859229 0.1168756 0.1142069
## 2829 0.11364176 0.12859229 0.1082367 0.1142069
## 2830 0.07843137 0.12859229 0.1168756 0.1142069
## 2831 0.07843137 0.12859229 0.1082367 0.1142069
## 2832 0.13781392 0.12859229 0.1082367 0.1054972
## 2833 0.13781392 0.12859229 0.1082367 0.1142069
## 2834 0.07843137 0.12859229 0.1082367 0.1142069
## 2835 0.07843137 0.05274566 0.1168756 0.1142069
## 2836 0.13781392 0.12859229 0.1168756 0.1142069
## 2837 0.10978875 0.12859229 0.1082367 0.1054972
## 2838 0.07843137 0.12859229 0.1168756 0.1142069
## 2839 0.13781392 0.12859229 0.1082367 0.1142069
## 2840 0.10650888 0.12859229 0.1168756 0.1054972
## 2841 0.10650888 0.12859229 0.1168756 0.1142069
## 2842 0.10978875 0.12859229 0.1082367 0.1142069
## 2843 0.10650888 0.12859229 0.1082367 0.1142069
## 2844 0.13781392 0.12859229 0.1168756 0.1142069
## 2845 0.07843137 0.12859229 0.1082367 0.1142069
## 2846 0.07843137 0.12859229 0.1168756 0.1142069
## 2847 0.10650888 0.05274566 0.1082367 0.1142069
## 2848 0.10650888 0.12859229 0.1082367 0.1142069
## 2849 0.10978875 0.12859229 0.1082367 0.1142069
## 2850 0.07843137 0.12859229 0.1168756 0.1142069
## 2851 0.07666667 0.05274566 0.1082367 0.1142069
## 2852 0.10978875 0.05274566 0.1168756 0.1142069
## 2853 0.13781392 0.12859229 0.1168756 0.1142069
## 2854 0.11364176 0.12859229 0.1082367 0.1142069
## 2855 0.10650888 0.12859229 0.1168756 0.1142069
## 2856 0.10650888 0.12859229 0.1168756 0.1142069
## 2857 0.13781392 0.12859229 0.1082367 0.1054972
## 2858 0.10978875 0.05274566 0.1168756 0.1054972
## 2859 0.13781392 0.12859229 0.1168756 0.1142069
## 2860 0.13781392 0.05274566 0.1168756 0.1142069
## 2861 0.10978875 0.12859229 0.1168756 0.1142069
## 2862 0.13781392 0.12859229 0.1168756 0.1142069
## 2863 0.10650888 0.12859229 0.1168756 0.1054972
## 2864 0.13781392 0.12859229 0.1082367 0.1142069
## 2865 0.11364176 0.12859229 0.1168756 0.1054972
## 2866 0.07666667 0.12859229 0.1082367 0.1142069
## 2867 0.13781392 0.12859229 0.1168756 0.1142069
## 2868 0.11364176 0.12859229 0.1082367 0.1054972
## 2869 0.13781392 0.12859229 0.1082367 0.1142069
## 2870 0.10650888 0.12859229 0.1082367 0.1054972
## 2871 0.10978875 0.12859229 0.1082367 0.1142069
## 2872 0.10650888 0.12859229 0.1168756 0.1142069
## 2873 0.10650888 0.05274566 0.1082367 0.1142069
## 2874 0.11364176 0.12859229 0.1168756 0.1054972
## 2875 0.10650888 0.12859229 0.1168756 0.1142069
## 2876 0.07843137 0.12859229 0.1168756 0.1142069
## 2877 0.07666667 0.05274566 0.1082367 0.1142069
## 2878 0.07666667 0.12859229 0.1168756 0.1054972
## 2879 0.13781392 0.12859229 0.1168756 0.1142069
## 2880 0.07843137 0.12859229 0.1168756 0.1142069
## 2881 0.13781392 0.12859229 0.1168756 0.1054972
## 2882 0.10978875 0.12859229 0.1168756 0.1142069
## 2883 0.07666667 0.12859229 0.1168756 0.1054972
## 2884 0.13781392 0.12859229 0.1168756 0.1142069
## 2885 0.10650888 0.12859229 0.1082367 0.1054972
## 2886 0.10650888 0.05274566 0.1168756 0.1142069
## 2887 0.07843137 0.12859229 0.1168756 0.1142069
## 2888 0.07843137 0.12859229 0.1082367 0.1142069
## 2889 0.13781392 0.12859229 0.1168756 0.1142069
## 2890 0.13781392 0.12859229 0.1168756 0.1142069
## 2891 0.10650888 0.12859229 0.1168756 0.1142069
## 2892 0.13781392 0.12859229 0.1168756 0.1054972
## 2893 0.11364176 0.12859229 0.1168756 0.1142069
## 2894 0.10978875 0.12859229 0.1168756 0.1142069
## 2895 0.13781392 0.12859229 0.1168756 0.1142069
## 2896 0.07843137 0.05274566 0.1168756 0.1142069
## 2897 0.13781392 0.12859229 0.1168756 0.1142069
## 2898 0.07843137 0.12859229 0.1168756 0.1054972
## 2899 0.13781392 0.12859229 0.1082367 0.1142069
## 2900 0.07843137 0.05274566 0.1082367 0.1142069
## 2901 0.13781392 0.12859229 0.1168756 0.1142069
## 2902 0.11364176 0.12859229 0.1082367 0.1142069
## 2903 0.10978875 0.12859229 0.1082367 0.1142069
## 2904 0.13781392 0.12859229 0.1168756 0.1142069
## 2905 0.13958482 0.12859229 0.1168756 0.1142069
## 2906 0.07843137 0.12859229 0.1168756 0.1142069
## 2907 0.07843137 0.12859229 0.1082367 0.1142069
## 2908 0.07843137 0.12859229 0.1168756 0.1142069
## 2909 0.07843137 0.12859229 0.1168756 0.1142069
## 2910 0.10650888 0.05274566 0.1168756 0.1142069
## 2911 0.13958482 0.12859229 0.1168756 0.1142069
## 2912 0.13781392 0.12859229 0.1168756 0.1142069
## 2913 0.10978875 0.12859229 0.1168756 0.1142069
## 2914 0.13781392 0.12859229 0.1168756 0.1054972
## 2915 0.13781392 0.12859229 0.1168756 0.1054972
## 2916 0.07843137 0.12859229 0.1082367 0.1142069
## 2917 0.10978875 0.12859229 0.1082367 0.1054972
## 2918 0.13781392 0.12859229 0.1168756 0.1054972
## 2919 0.13781392 0.12859229 0.1168756 0.1142069
## 2920 0.07843137 0.12859229 0.1168756 0.1142069
## 2921 0.10650888 0.05274566 0.1168756 0.1054972
## 2922 0.10650888 0.12859229 0.1168756 0.1142069
## 2923 0.10978875 0.12859229 0.1168756 0.1142069
## 2924 0.13781392 0.12859229 0.1082367 0.1142069
## 2925 0.10650888 0.05274566 0.1168756 0.1142069
## 2926 0.11364176 0.12859229 0.1168756 0.1142069
## 2927 0.13781392 0.12859229 0.1168756 0.1054972
## 2928 0.13958482 0.12859229 0.1168756 0.1142069
## 2929 0.10650888 0.12859229 0.1082367 0.1142069
## 2930 0.11364176 0.12859229 0.1168756 0.1142069
## 2931 0.13781392 0.05274566 0.1168756 0.1142069
## 2932 0.10650888 0.12859229 0.1168756 0.1142069
## 2933 0.10650888 0.12859229 0.1168756 0.1142069
## 2934 0.07843137 0.05274566 0.1168756 0.1142069
## 2935 0.10650888 0.12859229 0.1168756 0.1142069
## 2936 0.11364176 0.12859229 0.1168756 0.1142069
## 2937 0.10650888 0.12859229 0.1168756 0.1142069
## 2938 0.13781392 0.12859229 0.1082367 0.1054972
## 2939 0.11364176 0.12859229 0.1082367 0.1142069
## 2940 0.10650888 0.12859229 0.1040100 0.1040100
## 2941 0.13781392 0.12859229 0.1168756 0.1142069
## 2942 0.13781392 0.12859229 0.1082367 0.1142069
## 2943 0.13781392 0.12859229 0.1168756 0.1142069
## 2944 0.13781392 0.12859229 0.1082367 0.1142069
## 2945 0.07843137 0.12859229 0.1168756 0.1142069
## 2946 0.11364176 0.12859229 0.1168756 0.1054972
## 2947 0.07843137 0.12859229 0.1082367 0.1054972
## 2948 0.13781392 0.05274566 0.1082367 0.1142069
## 2949 0.10650888 0.12859229 0.1082367 0.1142069
## 2950 0.07843137 0.05274566 0.1082367 0.1142069
## 2951 0.11364176 0.12859229 0.1168756 0.1054972
## 2952 0.11364176 0.12859229 0.1168756 0.1142069
## 2953 0.13781392 0.12859229 0.1168756 0.1142069
## 2954 0.13958482 0.12859229 0.1082367 0.1142069
## 2955 0.11364176 0.12859229 0.1168756 0.1142069
## 2956 0.10650888 0.12859229 0.1168756 0.1142069
## 2957 0.13781392 0.12859229 0.1168756 0.1142069
## 2958 0.07843137 0.12859229 0.1168756 0.1142069
## 2959 0.07843137 0.12859229 0.1168756 0.1054972
## 2960 0.07843137 0.05274566 0.1168756 0.1054972
## 2961 0.11364176 0.12859229 0.1168756 0.1142069
## 2962 0.10650888 0.12859229 0.1082367 0.1142069
## 2963 0.10650888 0.05274566 0.1168756 0.1142069
## 2964 0.13781392 0.05274566 0.1082367 0.1142069
## 2965 0.07843137 0.12859229 0.1168756 0.1142069
## 2966 0.13781392 0.12859229 0.1168756 0.1142069
## 2967 0.13781392 0.12859229 0.1168756 0.1142069
## 2968 0.11364176 0.12859229 0.1168756 0.1142069
## 2969 0.11364176 0.12859229 0.1082367 0.1142069
## 2970 0.13781392 0.12859229 0.1082367 0.1142069
## 2971 0.10978875 0.05274566 0.1168756 0.1142069
## 2972 0.07843137 0.12859229 0.1082367 0.1142069
## 2973 0.10650888 0.05274566 0.1082367 0.1142069
## 2974 0.13781392 0.12859229 0.1168756 0.1142069
## 2975 0.11364176 0.12859229 0.1082367 0.1142069
## 2976 0.07843137 0.12859229 0.1168756 0.1142069
## 2977 0.10650888 0.05274566 0.1082367 0.1142069
## 2978 0.10650888 0.12859229 0.1082367 0.1142069
## 2979 0.10650888 0.12859229 0.1168756 0.1142069
## 2980 0.13781392 0.12859229 0.1168756 0.1142069
## 2981 0.10650888 0.12859229 0.1168756 0.1054972
## 2982 0.13781392 0.12859229 0.1168756 0.1142069
## 2983 0.13958482 0.12859229 0.1082367 0.1142069
## 2984 0.13781392 0.12859229 0.1168756 0.1142069
## 2985 0.13781392 0.12859229 0.1168756 0.1054972
## 2986 0.10650888 0.12859229 0.1082367 0.1142069
## 2987 0.07843137 0.12859229 0.1082367 0.1142069
## 2988 0.10650888 0.12859229 0.1082367 0.1142069
## 2989 0.13781392 0.12859229 0.1168756 0.1142069
## 2990 0.10650888 0.12859229 0.1168756 0.1142069
## 2991 0.10650888 0.05274566 0.1168756 0.1142069
## 2992 0.10650888 0.12859229 0.1082367 0.1142069
## 2993 0.07843137 0.12859229 0.1168756 0.1142069
## 2994 0.07843137 0.12859229 0.1082367 0.1054972
## 2995 0.07843137 0.05274566 0.1168756 0.1142069
## 2996 0.10650888 0.12859229 0.1168756 0.1054972
## 2997 0.11364176 0.12859229 0.1082367 0.1142069
## 2998 0.10650888 0.12859229 0.1082367 0.1142069
## 2999 0.13781392 0.12859229 0.1168756 0.1142069
## 3000 0.13781392 0.12859229 0.1168756 0.1142069
## 3001 0.13781392 0.12859229 0.1168756 0.1142069
## 3002 0.07843137 0.12859229 0.1082367 0.1054972
## 3003 0.13781392 0.12859229 0.1168756 0.1142069
## 3004 0.13781392 0.05274566 0.1168756 0.1142069
## 3005 0.10978875 0.12859229 0.1168756 0.1142069
## 3006 0.07843137 0.12859229 0.1082367 0.1142069
## 3007 0.11364176 0.12859229 0.1082367 0.1142069
## 3008 0.07843137 0.05274566 0.1168756 0.1142069
## 3009 0.07843137 0.12859229 0.1082367 0.1142069
## 3010 0.13781392 0.12859229 0.1168756 0.1142069
## 3011 0.13781392 0.12859229 0.1168756 0.1142069
## 3012 0.07843137 0.12859229 0.1082367 0.1142069
## 3013 0.11364176 0.12859229 0.1168756 0.1142069
## 3014 0.07843137 0.12859229 0.1082367 0.1142069
## 3015 0.13781392 0.12859229 0.1168756 0.1054972
## 3016 0.13958482 0.12859229 0.1168756 0.1142069
## 3017 0.13958482 0.05274566 0.1168756 0.1142069
## 3018 0.10650888 0.12859229 0.1168756 0.1142069
## 3019 0.10650888 0.12859229 0.1082367 0.1054972
## 3020 0.07843137 0.12859229 0.1082367 0.1142069
## 3021 0.10978875 0.12859229 0.1082367 0.1054972
## 3022 0.07843137 0.12859229 0.1082367 0.1142069
## 3023 0.13781392 0.12859229 0.1168756 0.1142069
## 3024 0.10650888 0.12859229 0.1168756 0.1142069
## 3025 0.07843137 0.05274566 0.1040100 0.1040100
## 3026 0.10650888 0.12859229 0.1168756 0.1142069
## 3027 0.10650888 0.12859229 0.1082367 0.1142069
## 3028 0.13781392 0.12859229 0.1082367 0.1142069
## 3029 0.11364176 0.12859229 0.1082367 0.1142069
## 3030 0.13781392 0.12859229 0.1082367 0.1142069
## 3031 0.13781392 0.12859229 0.1168756 0.1142069
## 3032 0.10650888 0.12859229 0.1168756 0.1142069
## 3033 0.10650888 0.12859229 0.1168756 0.1142069
## 3034 0.10650888 0.12859229 0.1168756 0.1142069
## 3035 0.07843137 0.05274566 0.1168756 0.1142069
## 3036 0.13781392 0.12859229 0.1168756 0.1142069
## 3037 0.13781392 0.12859229 0.1082367 0.1054972
## 3038 0.13781392 0.12859229 0.1082367 0.1142069
## 3039 0.07843137 0.05274566 0.1168756 0.1054972
## 3040 0.13781392 0.12859229 0.1168756 0.1142069
## 3041 0.13781392 0.12859229 0.1040100 0.1040100
## 3042 0.07843137 0.12859229 0.1168756 0.1054972
## 3043 0.10650888 0.12859229 0.1168756 0.1142069
## 3044 0.13781392 0.12859229 0.1082367 0.1142069
## 3045 0.13781392 0.12859229 0.1168756 0.1142069
## 3046 0.10978875 0.12859229 0.1168756 0.1142069
## 3047 0.07843137 0.12859229 0.1082367 0.1142069
## 3048 0.10650888 0.05274566 0.1082367 0.1142069
## 3049 0.10978875 0.12859229 0.1082367 0.1142069
## 3050 0.10650888 0.12859229 0.1168756 0.1142069
## 3051 0.13781392 0.12859229 0.1082367 0.1142069
## 3052 0.07843137 0.12859229 0.1168756 0.1054972
## 3053 0.11364176 0.12859229 0.1168756 0.1054972
## 3054 0.07843137 0.12859229 0.1082367 0.1142069
## 3055 0.13781392 0.12859229 0.1168756 0.1142069
## 3056 0.13781392 0.12859229 0.1168756 0.1054972
## 3057 0.10650888 0.12859229 0.1082367 0.1142069
## 3058 0.07666667 0.12859229 0.1168756 0.1142069
## 3059 0.10650888 0.12859229 0.1168756 0.1142069
## 3060 0.13781392 0.12859229 0.1082367 0.1142069
## 3061 0.10978875 0.12859229 0.1082367 0.1142069
## 3062 0.13781392 0.12859229 0.1168756 0.1142069
## 3063 0.10650888 0.12859229 0.1168756 0.1142069
## 3064 0.13781392 0.12859229 0.1168756 0.1142069
## 3065 0.10650888 0.12859229 0.1082367 0.1142069
## 3066 0.13781392 0.12859229 0.1168756 0.1142069
## 3067 0.13958482 0.05274566 0.1168756 0.1142069
## 3068 0.13958482 0.12859229 0.1082367 0.1142069
## 3069 0.10650888 0.12859229 0.1082367 0.1142069
## 3070 0.10650888 0.12859229 0.1082367 0.1142069
## 3071 0.13781392 0.12859229 0.1168756 0.1142069
## 3072 0.11364176 0.12859229 0.1168756 0.1054972
## 3073 0.13781392 0.12859229 0.1168756 0.1054972
## 3074 0.10650888 0.12859229 0.1168756 0.1142069
## 3075 0.13781392 0.12859229 0.1168756 0.1142069
## 3076 0.13781392 0.12859229 0.1082367 0.1142069
## 3077 0.13781392 0.12859229 0.1168756 0.1142069
## 3078 0.07666667 0.05274566 0.1168756 0.1142069
## 3079 0.10650888 0.12859229 0.1168756 0.1142069
## 3080 0.07843137 0.12859229 0.1168756 0.1142069
## 3081 0.10650888 0.12859229 0.1168756 0.1142069
## 3082 0.13781392 0.12859229 0.1082367 0.1142069
## 3083 0.10650888 0.12859229 0.1168756 0.1142069
## 3084 0.07843137 0.12859229 0.1168756 0.1142069
## 3085 0.13781392 0.12859229 0.1082367 0.1142069
## 3086 0.07843137 0.12859229 0.1082367 0.1142069
## 3087 0.10978875 0.12859229 0.1168756 0.1142069
## 3088 0.10650888 0.12859229 0.1082367 0.1142069
## 3089 0.07843137 0.12859229 0.1168756 0.1142069
## 3090 0.11364176 0.12859229 0.1168756 0.1142069
## 3091 0.13781392 0.12859229 0.1168756 0.1142069
## 3092 0.10650888 0.12859229 0.1168756 0.1142069
## 3093 0.07843137 0.12859229 0.1082367 0.1054972
## 3094 0.13781392 0.12859229 0.1168756 0.1142069
## 3095 0.07843137 0.12859229 0.1168756 0.1142069
## 3096 0.10650888 0.12859229 0.1082367 0.1142069
## 3097 0.13781392 0.12859229 0.1082367 0.1142069
## 3098 0.13781392 0.05274566 0.1082367 0.1142069
## 3099 0.13781392 0.12859229 0.1168756 0.1142069
## 3100 0.11364176 0.12859229 0.1082367 0.1142069
## 3101 0.10650888 0.05274566 0.1082367 0.1142069
## 3102 0.07843137 0.12859229 0.1168756 0.1142069
## 3103 0.13958482 0.12859229 0.1082367 0.1142069
## 3104 0.13781392 0.05274566 0.1168756 0.1142069
## 3105 0.10650888 0.12859229 0.1168756 0.1142069
## 3106 0.13958482 0.12859229 0.1040100 0.1040100
## 3107 0.07843137 0.05274566 0.1168756 0.1142069
## 3108 0.07843137 0.12859229 0.1082367 0.1142069
## 3109 0.10978875 0.12859229 0.1040100 0.1040100
## 3110 0.11364176 0.12859229 0.1168756 0.1054972
## 3111 0.13781392 0.12859229 0.1082367 0.1142069
## 3112 0.10650888 0.12859229 0.1082367 0.1142069
## 3113 0.11364176 0.12859229 0.1168756 0.1142069
## 3114 0.10650888 0.12859229 0.1082367 0.1142069
## 3115 0.07843137 0.12859229 0.1082367 0.1142069
## 3116 0.07666667 0.12859229 0.1082367 0.1054972
## 3117 0.10650888 0.12859229 0.1168756 0.1054972
## 3118 0.13781392 0.12859229 0.1082367 0.1142069
## 3119 0.13958482 0.12859229 0.1082367 0.1142069
## 3120 0.10650888 0.12859229 0.1082367 0.1142069
## 3121 0.07843137 0.05274566 0.1168756 0.1054972
## 3122 0.10650888 0.05274566 0.1082367 0.1054972
## 3123 0.13781392 0.12859229 0.1082367 0.1054972
## 3124 0.07843137 0.12859229 0.1168756 0.1142069
## 3125 0.11364176 0.12859229 0.1168756 0.1142069
## 3126 0.13781392 0.12859229 0.1082367 0.1142069
## 3127 0.13781392 0.12859229 0.1168756 0.1142069
## 3128 0.10650888 0.12859229 0.1168756 0.1142069
## 3129 0.07666667 0.05274566 0.1168756 0.1054972
## 3130 0.10650888 0.12859229 0.1168756 0.1054972
## 3131 0.07843137 0.12859229 0.1168756 0.1142069
## 3132 0.10650888 0.12859229 0.1168756 0.1054972
## 3133 0.11364176 0.12859229 0.1168756 0.1142069
## 3134 0.13781392 0.12859229 0.1168756 0.1142069
## 3135 0.11364176 0.12859229 0.1168756 0.1142069
## 3136 0.13781392 0.12859229 0.1082367 0.1142069
## 3137 0.10978875 0.12859229 0.1168756 0.1142069
## 3138 0.10650888 0.05274566 0.1168756 0.1054972
## 3139 0.13781392 0.12859229 0.1082367 0.1142069
## 3140 0.13781392 0.12859229 0.1082367 0.1142069
## 3141 0.10650888 0.05274566 0.1168756 0.1142069
## 3142 0.13781392 0.12859229 0.1082367 0.1054972
## 3143 0.13781392 0.12859229 0.1082367 0.1142069
## 3144 0.07843137 0.12859229 0.1168756 0.1054972
## 3145 0.13781392 0.12859229 0.1168756 0.1054972
## 3146 0.07843137 0.12859229 0.1082367 0.1142069
## 3147 0.13958482 0.05274566 0.1168756 0.1142069
## 3148 0.13781392 0.12859229 0.1168756 0.1142069
## 3149 0.13781392 0.12859229 0.1168756 0.1054972
## 3150 0.13781392 0.12859229 0.1082367 0.1142069
## 3151 0.11364176 0.12859229 0.1082367 0.1142069
## 3152 0.13781392 0.12859229 0.1168756 0.1142069
## 3153 0.10650888 0.12859229 0.1168756 0.1142069
## 3154 0.07843137 0.12859229 0.1168756 0.1142069
## 3155 0.11364176 0.12859229 0.1082367 0.1142069
## 3156 0.07843137 0.12859229 0.1168756 0.1054972
## 3157 0.07666667 0.12859229 0.1082367 0.1142069
## 3158 0.10650888 0.12859229 0.1082367 0.1142069
## 3159 0.07843137 0.05274566 0.1168756 0.1142069
## 3160 0.13781392 0.12859229 0.1040100 0.1040100
## 3161 0.13781392 0.12859229 0.1082367 0.1142069
## 3162 0.13781392 0.12859229 0.1168756 0.1142069
## 3163 0.10650888 0.12859229 0.1168756 0.1142069
## 3164 0.07843137 0.12859229 0.1082367 0.1142069
## 3165 0.11364176 0.12859229 0.1082367 0.1142069
## 3166 0.07843137 0.12859229 0.1082367 0.1142069
## 3167 0.13958482 0.12859229 0.1168756 0.1142069
## 3168 0.11364176 0.05274566 0.1168756 0.1054972
## 3169 0.13781392 0.12859229 0.1168756 0.1142069
## 3170 0.10650888 0.12859229 0.1082367 0.1142069
## 3171 0.10650888 0.12859229 0.1082367 0.1142069
## 3172 0.13958482 0.12859229 0.1168756 0.1142069
## 3173 0.10650888 0.12859229 0.1168756 0.1142069
## 3174 0.13781392 0.12859229 0.1082367 0.1142069
## 3175 0.10978875 0.12859229 0.1168756 0.1142069
## 3176 0.11364176 0.05274566 0.1168756 0.1142069
## 3177 0.13958482 0.12859229 0.1082367 0.1142069
## 3178 0.13781392 0.12859229 0.1168756 0.1142069
## 3179 0.13781392 0.12859229 0.1168756 0.1142069
## 3180 0.10650888 0.12859229 0.1082367 0.1142069
## 3181 0.11364176 0.12859229 0.1168756 0.1142069
## 3182 0.07666667 0.12859229 0.1082367 0.1142069
## 3183 0.10650888 0.12859229 0.1168756 0.1142069
## 3184 0.13781392 0.12859229 0.1168756 0.1054972
## 3185 0.10650888 0.05274566 0.1168756 0.1142069
## 3186 0.13781392 0.12859229 0.1082367 0.1142069
## 3187 0.10650888 0.12859229 0.1168756 0.1142069
## 3188 0.11364176 0.12859229 0.1168756 0.1142069
## 3189 0.10978875 0.12859229 0.1082367 0.1142069
## 3190 0.07843137 0.12859229 0.1082367 0.1142069
## 3191 0.07843137 0.12859229 0.1082367 0.1142069
## 3192 0.13781392 0.12859229 0.1168756 0.1142069
## 3193 0.10650888 0.05274566 0.1082367 0.1142069
## 3194 0.10650888 0.12859229 0.1168756 0.1142069
## 3195 0.11364176 0.12859229 0.1168756 0.1142069
## 3196 0.11364176 0.12859229 0.1168756 0.1142069
## 3197 0.07666667 0.12859229 0.1082367 0.1142069
## 3198 0.10650888 0.12859229 0.1168756 0.1142069
## 3199 0.11364176 0.12859229 0.1082367 0.1142069
## 3200 0.13958482 0.05274566 0.1168756 0.1142069
## 3201 0.10650888 0.12859229 0.1168756 0.1142069
## 3202 0.10650888 0.12859229 0.1168756 0.1142069
## 3203 0.11364176 0.12859229 0.1082367 0.1054972
## 3204 0.10650888 0.12859229 0.1082367 0.1142069
## 3205 0.10978875 0.12859229 0.1082367 0.1142069
## 3206 0.11364176 0.12859229 0.1082367 0.1142069
## 3207 0.10650888 0.05274566 0.1168756 0.1142069
## 3208 0.11364176 0.12859229 0.1168756 0.1142069
## 3209 0.11364176 0.12859229 0.1082367 0.1054972
## 3210 0.10650888 0.12859229 0.1168756 0.1142069
## 3211 0.10650888 0.12859229 0.1168756 0.1142069
## 3212 0.11364176 0.12859229 0.1168756 0.1054972
## 3213 0.07843137 0.05274566 0.1040100 0.1040100
## 3214 0.10650888 0.12859229 0.1168756 0.1142069
## 3215 0.13781392 0.12859229 0.1082367 0.1142069
## 3216 0.13781392 0.12859229 0.1082367 0.1142069
## 3217 0.10650888 0.12859229 0.1168756 0.1142069
## 3218 0.13781392 0.12859229 0.1168756 0.1142069
## 3219 0.10978875 0.12859229 0.1168756 0.1142069
## 3220 0.07843137 0.12859229 0.1082367 0.1142069
## 3221 0.11364176 0.12859229 0.1168756 0.1142069
## 3222 0.13781392 0.12859229 0.1040100 0.1040100
## 3223 0.10650888 0.12859229 0.1168756 0.1054972
## 3224 0.13781392 0.12859229 0.1168756 0.1054972
## 3225 0.13781392 0.12859229 0.1082367 0.1142069
## 3226 0.10650888 0.05274566 0.1082367 0.1142069
## 3227 0.10650888 0.12859229 0.1082367 0.1142069
## 3228 0.11364176 0.12859229 0.1082367 0.1142069
## 3229 0.10650888 0.12859229 0.1082367 0.1142069
## 3230 0.13781392 0.12859229 0.1168756 0.1142069
## 3231 0.13781392 0.12859229 0.1168756 0.1142069
## 3232 0.07843137 0.12859229 0.1082367 0.1142069
## 3233 0.07843137 0.12859229 0.1168756 0.1142069
## 3234 0.13781392 0.12859229 0.1082367 0.1142069
## 3235 0.10650888 0.12859229 0.1168756 0.1142069
## 3236 0.07666667 0.12859229 0.1168756 0.1142069
## 3237 0.10978875 0.12859229 0.1040100 0.1040100
## 3238 0.07843137 0.05274566 0.1082367 0.1142069
## 3239 0.13781392 0.12859229 0.1082367 0.1142069
## 3240 0.13781392 0.12859229 0.1082367 0.1142069
## 3241 0.10650888 0.12859229 0.1168756 0.1142069
## 3242 0.10978875 0.12859229 0.1082367 0.1054972
## 3243 0.13781392 0.12859229 0.1168756 0.1142069
## 3244 0.10650888 0.12859229 0.1168756 0.1142069
## 3245 0.10650888 0.12859229 0.1168756 0.1142069
## 3246 0.13781392 0.12859229 0.1168756 0.1142069
## 3247 0.10650888 0.12859229 0.1168756 0.1142069
## 3248 0.10650888 0.12859229 0.1168756 0.1054972
## 3249 0.10650888 0.12859229 0.1082367 0.1142069
## 3250 0.13781392 0.12859229 0.1168756 0.1142069
## 3251 0.13781392 0.12859229 0.1168756 0.1142069
## 3252 0.10650888 0.12859229 0.1168756 0.1142069
## 3253 0.07843137 0.05274566 0.1168756 0.1142069
## 3254 0.11364176 0.12859229 0.1168756 0.1142069
## 3255 0.07843137 0.12859229 0.1082367 0.1142069
## 3256 0.07843137 0.12859229 0.1040100 0.1040100
## 3257 0.10650888 0.12859229 0.1082367 0.1142069
## 3258 0.13781392 0.12859229 0.1168756 0.1142069
## 3259 0.10650888 0.12859229 0.1168756 0.1054972
## 3260 0.13958482 0.05274566 0.1168756 0.1142069
## 3261 0.13781392 0.12859229 0.1082367 0.1142069
## 3262 0.13781392 0.12859229 0.1168756 0.1142069
## 3263 0.11364176 0.12859229 0.1168756 0.1142069
## 3264 0.07666667 0.05274566 0.1082367 0.1142069
## 3265 0.10650888 0.12859229 0.1168756 0.1142069
## 3266 0.13781392 0.12859229 0.1082367 0.1054972
## 3267 0.07843137 0.12859229 0.1082367 0.1142069
## 3268 0.07843137 0.12859229 0.1168756 0.1142069
## 3269 0.10650888 0.12859229 0.1082367 0.1142069
## 3270 0.07843137 0.12859229 0.1168756 0.1142069
## 3271 0.11364176 0.12859229 0.1040100 0.1040100
## 3272 0.11364176 0.12859229 0.1168756 0.1142069
## 3273 0.13781392 0.12859229 0.1168756 0.1142069
## 3274 0.10650888 0.05274566 0.1168756 0.1142069
## 3275 0.07843137 0.12859229 0.1082367 0.1142069
## 3276 0.13781392 0.12859229 0.1168756 0.1142069
## 3277 0.07666667 0.05274566 0.1168756 0.1054972
## 3278 0.13781392 0.12859229 0.1168756 0.1142069
## 3279 0.07843137 0.12859229 0.1168756 0.1054972
## 3280 0.07843137 0.12859229 0.1082367 0.1054972
## 3281 0.10978875 0.05274566 0.1168756 0.1142069
## 3282 0.07843137 0.12859229 0.1082367 0.1142069
## 3283 0.10650888 0.12859229 0.1168756 0.1054972
## 3284 0.11364176 0.12859229 0.1168756 0.1142069
## 3285 0.07843137 0.12859229 0.1082367 0.1142069
## 3286 0.07666667 0.05274566 0.1082367 0.1142069
## 3287 0.07843137 0.12859229 0.1082367 0.1142069
## 3288 0.13781392 0.12859229 0.1082367 0.1054972
## 3289 0.07843137 0.12859229 0.1168756 0.1142069
## 3290 0.11364176 0.05274566 0.1168756 0.1142069
## 3291 0.10650888 0.12859229 0.1082367 0.1142069
## 3292 0.10650888 0.12859229 0.1168756 0.1142069
## 3293 0.10650888 0.12859229 0.1082367 0.1054972
## 3294 0.10650888 0.12859229 0.1168756 0.1142069
## 3295 0.13781392 0.12859229 0.1082367 0.1054972
## 3296 0.10650888 0.12859229 0.1082367 0.1142069
## 3297 0.10650888 0.12859229 0.1168756 0.1142069
## 3298 0.13781392 0.12859229 0.1082367 0.1142069
## 3299 0.13781392 0.12859229 0.1082367 0.1142069
## 3300 0.10978875 0.12859229 0.1168756 0.1054972
## 3301 0.13781392 0.12859229 0.1168756 0.1142069
## 3302 0.11364176 0.12859229 0.1082367 0.1142069
## 3303 0.10650888 0.12859229 0.1082367 0.1142069
## 3304 0.13781392 0.12859229 0.1082367 0.1142069
## 3305 0.10650888 0.12859229 0.1082367 0.1142069
## 3306 0.10650888 0.12859229 0.1168756 0.1142069
## 3307 0.13781392 0.05274566 0.1168756 0.1142069
## 3308 0.11364176 0.05274566 0.1168756 0.1142069
## 3309 0.13781392 0.12859229 0.1082367 0.1142069
## 3310 0.13781392 0.12859229 0.1168756 0.1054972
## 3311 0.10650888 0.12859229 0.1168756 0.1142069
## 3312 0.11364176 0.12859229 0.1168756 0.1054972
## 3313 0.10978875 0.12859229 0.1168756 0.1142069
## 3314 0.13781392 0.12859229 0.1082367 0.1142069
## 3315 0.13781392 0.12859229 0.1168756 0.1142069
## 3316 0.10978875 0.12859229 0.1082367 0.1142069
## 3317 0.07843137 0.12859229 0.1082367 0.1142069
## 3318 0.11364176 0.12859229 0.1168756 0.1142069
## 3319 0.13781392 0.12859229 0.1082367 0.1142069
## 3320 0.10978875 0.05274566 0.1082367 0.1142069
## 3321 0.11364176 0.12859229 0.1168756 0.1054972
## 3322 0.13958482 0.12859229 0.1082367 0.1142069
## 3323 0.10978875 0.05274566 0.1168756 0.1142069
## 3324 0.13781392 0.12859229 0.1082367 0.1142069
## 3325 0.10650888 0.12859229 0.1168756 0.1142069
## 3326 0.07843137 0.05274566 0.1168756 0.1142069
## 3327 0.10650888 0.12859229 0.1168756 0.1142069
## 3328 0.13781392 0.12859229 0.1082367 0.1142069
## 3329 0.13781392 0.12859229 0.1040100 0.1040100
## 3330 0.10650888 0.12859229 0.1082367 0.1054972
## 3331 0.10650888 0.12859229 0.1168756 0.1142069
## 3332 0.10978875 0.12859229 0.1168756 0.1142069
## 3333 0.10650888 0.12859229 0.1168756 0.1142069
## 3334 0.10650888 0.12859229 0.1082367 0.1142069
## 3335 0.07843137 0.12859229 0.1168756 0.1142069
## 3336 0.11364176 0.12859229 0.1082367 0.1142069
## 3337 0.11364176 0.12859229 0.1082367 0.1142069
## 3338 0.07843137 0.12859229 0.1168756 0.1142069
## 3339 0.13958482 0.12859229 0.1168756 0.1142069
## 3340 0.07843137 0.12859229 0.1168756 0.1054972
## 3341 0.07843137 0.12859229 0.1168756 0.1054972
## 3342 0.10650888 0.12859229 0.1040100 0.1040100
## 3343 0.13781392 0.12859229 0.1168756 0.1142069
## 3344 0.10978875 0.12859229 0.1168756 0.1142069
## 3345 0.10978875 0.12859229 0.1082367 0.1142069
## 3346 0.10650888 0.12859229 0.1168756 0.1142069
## 3347 0.07843137 0.12859229 0.1168756 0.1054972
## 3348 0.13781392 0.12859229 0.1168756 0.1054972
## 3349 0.13781392 0.12859229 0.1082367 0.1142069
## 3350 0.13958482 0.12859229 0.1168756 0.1142069
## 3351 0.07666667 0.12859229 0.1082367 0.1142069
## 3352 0.10650888 0.12859229 0.1168756 0.1142069
## 3353 0.10978875 0.12859229 0.1168756 0.1142069
## 3354 0.13781392 0.05274566 0.1082367 0.1142069
## 3355 0.13781392 0.12859229 0.1082367 0.1142069
## 3356 0.13781392 0.12859229 0.1082367 0.1142069
## 3357 0.13781392 0.12859229 0.1168756 0.1142069
## 3358 0.13781392 0.12859229 0.1168756 0.1142069
## 3359 0.10650888 0.12859229 0.1040100 0.1040100
## 3360 0.11364176 0.12859229 0.1168756 0.1142069
## 3361 0.07843137 0.05274566 0.1082367 0.1054972
## 3362 0.13958482 0.12859229 0.1168756 0.1142069
## 3363 0.13781392 0.12859229 0.1168756 0.1142069
## 3364 0.07666667 0.12859229 0.1168756 0.1142069
## 3365 0.11364176 0.12859229 0.1082367 0.1142069
## 3366 0.07843137 0.12859229 0.1082367 0.1142069
## 3367 0.10650888 0.12859229 0.1082367 0.1054972
## 3368 0.11364176 0.12859229 0.1168756 0.1142069
## 3369 0.13958482 0.12859229 0.1082367 0.1142069
## 3370 0.11364176 0.12859229 0.1082367 0.1142069
## 3371 0.07666667 0.12859229 0.1168756 0.1054972
## 3372 0.10650888 0.12859229 0.1040100 0.1040100
## 3373 0.13781392 0.12859229 0.1168756 0.1142069
## 3374 0.13781392 0.12859229 0.1082367 0.1142069
## 3375 0.13958482 0.12859229 0.1082367 0.1142069
## 3376 0.07843137 0.12859229 0.1082367 0.1142069
## 3377 0.10650888 0.12859229 0.1082367 0.1142069
## 3378 0.13781392 0.12859229 0.1168756 0.1142069
## 3379 0.11364176 0.12859229 0.1168756 0.1142069
## 3380 0.11364176 0.12859229 0.1168756 0.1054972
## 3381 0.10650888 0.05274566 0.1082367 0.1142069
## 3382 0.07843137 0.05274566 0.1168756 0.1142069
## 3383 0.10650888 0.12859229 0.1168756 0.1142069
## 3384 0.11364176 0.12859229 0.1168756 0.1142069
## 3385 0.07843137 0.12859229 0.1168756 0.1142069
## 3386 0.13781392 0.12859229 0.1168756 0.1142069
## 3387 0.13781392 0.12859229 0.1168756 0.1142069
## 3388 0.07843137 0.12859229 0.1168756 0.1142069
## 3389 0.07843137 0.05274566 0.1082367 0.1142069
## 3390 0.10650888 0.12859229 0.1168756 0.1142069
## 3391 0.10650888 0.12859229 0.1082367 0.1054972
## 3392 0.13781392 0.12859229 0.1082367 0.1142069
## 3393 0.13958482 0.12859229 0.1082367 0.1142069
## 3394 0.13781392 0.12859229 0.1168756 0.1142069
## 3395 0.10650888 0.12859229 0.1168756 0.1142069
## 3396 0.10650888 0.12859229 0.1082367 0.1054972
## 3397 0.10650888 0.12859229 0.1168756 0.1142069
## 3398 0.10650888 0.12859229 0.1082367 0.1142069
## 3399 0.10650888 0.12859229 0.1168756 0.1054972
## 3400 0.13781392 0.05274566 0.1168756 0.1142069
## 3401 0.13781392 0.12859229 0.1082367 0.1142069
## 3402 0.13781392 0.12859229 0.1168756 0.1054972
## 3403 0.13958482 0.12859229 0.1168756 0.1142069
## 3404 0.10978875 0.12859229 0.1082367 0.1142069
## 3405 0.13781392 0.12859229 0.1168756 0.1142069
## 3406 0.07843137 0.12859229 0.1168756 0.1142069
## 3407 0.10978875 0.12859229 0.1168756 0.1142069
## 3408 0.13781392 0.12859229 0.1168756 0.1142069
## 3409 0.10650888 0.12859229 0.1082367 0.1054972
## 3410 0.11364176 0.12859229 0.1040100 0.1040100
## 3411 0.13781392 0.12859229 0.1168756 0.1142069
## 3412 0.11364176 0.12859229 0.1168756 0.1142069
## 3413 0.10978875 0.05274566 0.1082367 0.1054972
## 3414 0.13781392 0.12859229 0.1168756 0.1054972
## 3415 0.13781392 0.12859229 0.1168756 0.1142069
## 3416 0.13781392 0.12859229 0.1168756 0.1142069
## 3417 0.10978875 0.12859229 0.1168756 0.1142069
## 3418 0.13781392 0.12859229 0.1168756 0.1142069
## 3419 0.13781392 0.12859229 0.1168756 0.1142069
## 3420 0.07843137 0.05274566 0.1082367 0.1054972
## 3421 0.11364176 0.12859229 0.1168756 0.1054972
## 3422 0.07666667 0.12859229 0.1082367 0.1142069
## 3423 0.10650888 0.12859229 0.1082367 0.1142069
## 3424 0.13781392 0.12859229 0.1168756 0.1142069
## 3425 0.11364176 0.12859229 0.1168756 0.1142069
## 3426 0.13958482 0.12859229 0.1168756 0.1142069
## 3427 0.10650888 0.12859229 0.1168756 0.1142069
## 3428 0.13781392 0.12859229 0.1082367 0.1142069
## 3429 0.07843137 0.12859229 0.1082367 0.1142069
## 3430 0.10650888 0.12859229 0.1168756 0.1142069
## 3431 0.11364176 0.12859229 0.1082367 0.1142069
## 3432 0.13781392 0.12859229 0.1168756 0.1142069
## 3433 0.13781392 0.12859229 0.1168756 0.1142069
## 3434 0.13781392 0.12859229 0.1168756 0.1054972
## 3435 0.13781392 0.12859229 0.1168756 0.1142069
## 3436 0.10650888 0.12859229 0.1082367 0.1142069
## 3437 0.13781392 0.12859229 0.1082367 0.1142069
## 3438 0.10650888 0.05274566 0.1040100 0.1040100
## 3439 0.13781392 0.12859229 0.1082367 0.1054972
## 3440 0.07666667 0.12859229 0.1082367 0.1142069
## 3441 0.07843137 0.12859229 0.1082367 0.1142069
## 3442 0.07843137 0.12859229 0.1168756 0.1142069
## 3443 0.07666667 0.12859229 0.1168756 0.1142069
## 3444 0.07843137 0.12859229 0.1168756 0.1054972
## 3445 0.07666667 0.12859229 0.1168756 0.1054972
## 3446 0.13781392 0.12859229 0.1082367 0.1054972
## 3447 0.11364176 0.12859229 0.1168756 0.1142069
## 3448 0.07843137 0.12859229 0.1168756 0.1142069
## 3449 0.11364176 0.12859229 0.1082367 0.1142069
## 3450 0.13781392 0.12859229 0.1168756 0.1142069
## 3451 0.10978875 0.05274566 0.1168756 0.1142069
## 3452 0.10978875 0.12859229 0.1082367 0.1142069
## 3453 0.10650888 0.12859229 0.1168756 0.1142069
## 3454 0.10978875 0.12859229 0.1168756 0.1142069
## 3455 0.10650888 0.12859229 0.1168756 0.1142069
## 3456 0.07666667 0.05274566 0.1168756 0.1142069
## 3457 0.13781392 0.12859229 0.1082367 0.1142069
## 3458 0.10650888 0.12859229 0.1082367 0.1142069
## 3459 0.07843137 0.12859229 0.1082367 0.1142069
## 3460 0.10650888 0.12859229 0.1168756 0.1142069
## 3461 0.10650888 0.12859229 0.1082367 0.1142069
## 3462 0.13781392 0.12859229 0.1168756 0.1142069
## 3463 0.13781392 0.12859229 0.1082367 0.1142069
## 3464 0.13781392 0.12859229 0.1168756 0.1142069
## 3465 0.10978875 0.12859229 0.1168756 0.1142069
## 3466 0.07843137 0.12859229 0.1082367 0.1142069
## 3467 0.10978875 0.12859229 0.1168756 0.1142069
## 3468 0.10650888 0.12859229 0.1082367 0.1142069
## 3469 0.10650888 0.12859229 0.1082367 0.1142069
## 3470 0.10978875 0.12859229 0.1168756 0.1142069
## 3471 0.07666667 0.12859229 0.1168756 0.1054972
## 3472 0.13781392 0.12859229 0.1082367 0.1142069
## 3473 0.13781392 0.12859229 0.1168756 0.1054972
## 3474 0.13781392 0.12859229 0.1168756 0.1142069
## 3475 0.13781392 0.12859229 0.1082367 0.1142069
## 3476 0.13781392 0.12859229 0.1082367 0.1142069
## 3477 0.10650888 0.12859229 0.1082367 0.1142069
## 3478 0.10978875 0.12859229 0.1082367 0.1142069
## 3479 0.13781392 0.12859229 0.1082367 0.1142069
## 3480 0.07843137 0.05274566 0.1082367 0.1142069
## 3481 0.13958482 0.12859229 0.1168756 0.1142069
## 3482 0.10978875 0.05274566 0.1168756 0.1142069
## 3483 0.10650888 0.12859229 0.1168756 0.1142069
## 3484 0.10978875 0.12859229 0.1168756 0.1142069
## 3485 0.10650888 0.05274566 0.1082367 0.1142069
## 3486 0.13958482 0.05274566 0.1082367 0.1054972
## 3487 0.10650888 0.12859229 0.1082367 0.1142069
## 3488 0.13781392 0.12859229 0.1168756 0.1142069
## 3489 0.10978875 0.12859229 0.1168756 0.1142069
## 3490 0.11364176 0.05274566 0.1082367 0.1142069
## 3491 0.10978875 0.12859229 0.1082367 0.1142069
## 3492 0.10978875 0.12859229 0.1168756 0.1142069
## 3493 0.11364176 0.12859229 0.1082367 0.1142069
## 3494 0.13781392 0.12859229 0.1168756 0.1054972
## 3495 0.07843137 0.12859229 0.1168756 0.1142069
## 3496 0.10650888 0.05274566 0.1168756 0.1142069
## 3497 0.11364176 0.12859229 0.1082367 0.1142069
## 3498 0.13781392 0.12859229 0.1168756 0.1142069
## 3499 0.13781392 0.12859229 0.1168756 0.1142069
## 3500 0.13781392 0.12859229 0.1082367 0.1142069
## 3501 0.13781392 0.12859229 0.1082367 0.1142069
## 3502 0.10650888 0.12859229 0.1082367 0.1142069
## 3503 0.10978875 0.12859229 0.1082367 0.1142069
## 3504 0.11364176 0.12859229 0.1082367 0.1054972
## 3505 0.13781392 0.12859229 0.1082367 0.1142069
## 3506 0.10650888 0.12859229 0.1082367 0.1142069
## 3507 0.13781392 0.12859229 0.1168756 0.1054972
## 3508 0.11364176 0.12859229 0.1168756 0.1142069
## 3509 0.13781392 0.12859229 0.1168756 0.1142069
## 3510 0.10650888 0.12859229 0.1168756 0.1142069
## 3511 0.13781392 0.12859229 0.1168756 0.1142069
## 3512 0.10650888 0.12859229 0.1082367 0.1142069
## 3513 0.07666667 0.05274566 0.1082367 0.1142069
## 3514 0.10978875 0.05274566 0.1168756 0.1142069
## 3515 0.11364176 0.12859229 0.1168756 0.1142069
## 3516 0.11364176 0.12859229 0.1082367 0.1142069
## 3517 0.10650888 0.12859229 0.1168756 0.1054972
## 3518 0.13781392 0.12859229 0.1168756 0.1142069
## 3519 0.13958482 0.12859229 0.1168756 0.1142069
## 3520 0.10978875 0.05274566 0.1168756 0.1054972
## 3521 0.13781392 0.12859229 0.1168756 0.1142069
## 3522 0.07843137 0.12859229 0.1082367 0.1142069
## 3523 0.13781392 0.12859229 0.1040100 0.1040100
## 3524 0.10650888 0.12859229 0.1082367 0.1142069
## 3525 0.13781392 0.12859229 0.1168756 0.1054972
## 3526 0.13781392 0.05274566 0.1168756 0.1142069
## 3527 0.07666667 0.05274566 0.1168756 0.1054972
## 3528 0.10978875 0.05274566 0.1168756 0.1142069
## 3529 0.10650888 0.12859229 0.1082367 0.1142069
## 3530 0.13781392 0.12859229 0.1082367 0.1142069
## 3531 0.10978875 0.05274566 0.1168756 0.1142069
## 3532 0.10650888 0.12859229 0.1168756 0.1142069
## 3533 0.10650888 0.05274566 0.1168756 0.1142069
## 3534 0.11364176 0.12859229 0.1082367 0.1054972
## 3535 0.13781392 0.05274566 0.1082367 0.1142069
## 3536 0.11364176 0.12859229 0.1082367 0.1142069
## 3537 0.07666667 0.05274566 0.1168756 0.1142069
## 3538 0.10978875 0.05274566 0.1168756 0.1142069
## 3539 0.10650888 0.05274566 0.1168756 0.1142069
## 3540 0.13781392 0.12859229 0.1168756 0.1142069
## 3541 0.10650888 0.12859229 0.1168756 0.1054972
## 3542 0.11364176 0.12859229 0.1082367 0.1054972
## 3543 0.13781392 0.12859229 0.1082367 0.1142069
## 3544 0.11364176 0.12859229 0.1168756 0.1142069
## 3545 0.11364176 0.05274566 0.1082367 0.1054972
## 3546 0.10650888 0.12859229 0.1168756 0.1142069
## 3547 0.07843137 0.12859229 0.1168756 0.1142069
## 3548 0.07666667 0.05274566 0.1168756 0.1054972
## 3549 0.07843137 0.05274566 0.1082367 0.1142069
## 3550 0.10650888 0.12859229 0.1168756 0.1142069
## 3551 0.13781392 0.12859229 0.1168756 0.1142069
## 3552 0.10650888 0.12859229 0.1168756 0.1142069
## 3553 0.10978875 0.05274566 0.1082367 0.1142069
## 3554 0.11364176 0.12859229 0.1082367 0.1142069
## 3555 0.11364176 0.05274566 0.1082367 0.1142069
## 3556 0.10650888 0.05274566 0.1168756 0.1142069
## 3557 0.07843137 0.12859229 0.1168756 0.1142069
## 3558 0.13781392 0.05274566 0.1082367 0.1142069
## 3559 0.10978875 0.12859229 0.1168756 0.1142069
## 3560 0.07843137 0.12859229 0.1168756 0.1142069
## 3561 0.13781392 0.12859229 0.1082367 0.1142069
## 3562 0.07843137 0.12859229 0.1082367 0.1142069
## 3563 0.10650888 0.12859229 0.1082367 0.1142069
## 3564 0.11364176 0.12859229 0.1082367 0.1054972
## 3565 0.13781392 0.12859229 0.1082367 0.1142069
## 3566 0.13781392 0.05274566 0.1168756 0.1054972
## 3567 0.07843137 0.05274566 0.1082367 0.1142069
## 3568 0.13781392 0.12859229 0.1168756 0.1142069
## 3569 0.07843137 0.12859229 0.1082367 0.1142069
## 3570 0.13781392 0.12859229 0.1082367 0.1142069
## 3571 0.11364176 0.12859229 0.1168756 0.1142069
## 3572 0.11364176 0.12859229 0.1168756 0.1142069
## 3573 0.07843137 0.05274566 0.1168756 0.1142069
## 3574 0.11364176 0.12859229 0.1082367 0.1142069
## 3575 0.10650888 0.12859229 0.1082367 0.1142069
## 3576 0.13781392 0.12859229 0.1168756 0.1054972
## 3577 0.10650888 0.12859229 0.1168756 0.1142069
## 3578 0.11364176 0.12859229 0.1082367 0.1142069
## 3579 0.13781392 0.12859229 0.1082367 0.1142069
## 3580 0.11364176 0.12859229 0.1168756 0.1142069
## 3581 0.07843137 0.12859229 0.1082367 0.1142069
## 3582 0.07843137 0.12859229 0.1168756 0.1142069
## 3583 0.10650888 0.12859229 0.1168756 0.1142069
## 3584 0.07843137 0.12859229 0.1168756 0.1142069
## 3585 0.11364176 0.12859229 0.1082367 0.1142069
## 3586 0.07666667 0.12859229 0.1168756 0.1142069
## 3587 0.13958482 0.05274566 0.1082367 0.1142069
## 3588 0.13781392 0.05274566 0.1168756 0.1142069
## 3589 0.10650888 0.12859229 0.1082367 0.1142069
## 3590 0.13781392 0.12859229 0.1168756 0.1142069
## 3591 0.11364176 0.12859229 0.1168756 0.1142069
## 3592 0.13781392 0.12859229 0.1082367 0.1142069
## 3593 0.13781392 0.12859229 0.1168756 0.1054972
## 3594 0.07843137 0.12859229 0.1082367 0.1054972
## 3595 0.13781392 0.12859229 0.1168756 0.1142069
## 3596 0.07843137 0.12859229 0.1082367 0.1142069
## 3597 0.13781392 0.12859229 0.1082367 0.1142069
## 3598 0.10978875 0.05274566 0.1168756 0.1142069
## 3599 0.13781392 0.12859229 0.1082367 0.1054972
## 3600 0.07666667 0.12859229 0.1082367 0.1054972
## 3601 0.11364176 0.12859229 0.1082367 0.1142069
## 3602 0.07843137 0.05274566 0.1082367 0.1142069
## 3603 0.10978875 0.05274566 0.1082367 0.1142069
## 3604 0.10650888 0.12859229 0.1168756 0.1054972
## 3605 0.13781392 0.12859229 0.1168756 0.1142069
## 3606 0.13781392 0.12859229 0.1168756 0.1142069
## 3607 0.13781392 0.12859229 0.1168756 0.1142069
## 3608 0.10650888 0.12859229 0.1082367 0.1142069
## 3609 0.10650888 0.12859229 0.1168756 0.1142069
## 3610 0.10978875 0.12859229 0.1082367 0.1142069
## 3611 0.10650888 0.05274566 0.1082367 0.1142069
## 3612 0.11364176 0.05274566 0.1082367 0.1142069
## 3613 0.11364176 0.12859229 0.1168756 0.1142069
## 3614 0.13781392 0.12859229 0.1082367 0.1142069
## 3615 0.11364176 0.12859229 0.1168756 0.1142069
## 3616 0.10650888 0.12859229 0.1082367 0.1142069
## 3617 0.07843137 0.12859229 0.1168756 0.1142069
## 3618 0.11364176 0.12859229 0.1168756 0.1142069
## 3619 0.10650888 0.05274566 0.1082367 0.1142069
## 3620 0.07843137 0.05274566 0.1168756 0.1142069
## 3621 0.07666667 0.12859229 0.1082367 0.1142069
## 3622 0.10978875 0.12859229 0.1082367 0.1142069
## 3623 0.10650888 0.12859229 0.1168756 0.1142069
## 3624 0.07843137 0.12859229 0.1168756 0.1142069
## 3625 0.11364176 0.12859229 0.1168756 0.1142069
## 3626 0.10978875 0.05274566 0.1082367 0.1142069
## 3627 0.07843137 0.12859229 0.1168756 0.1142069
## 3628 0.10978875 0.05274566 0.1168756 0.1142069
## 3629 0.10978875 0.12859229 0.1168756 0.1142069
## 3630 0.11364176 0.12859229 0.1168756 0.1142069
## 3631 0.13958482 0.12859229 0.1168756 0.1142069
## 3632 0.07666667 0.12859229 0.1082367 0.1142069
## 3633 0.10650888 0.12859229 0.1082367 0.1142069
## 3634 0.10650888 0.12859229 0.1168756 0.1142069
## 3635 0.10650888 0.12859229 0.1168756 0.1142069
## 3636 0.07843137 0.12859229 0.1168756 0.1142069
## 3637 0.13781392 0.12859229 0.1082367 0.1142069
## 3638 0.13781392 0.12859229 0.1040100 0.1040100
## 3639 0.07843137 0.12859229 0.1082367 0.1142069
## 3640 0.13781392 0.12859229 0.1168756 0.1054972
## 3641 0.10650888 0.12859229 0.1082367 0.1142069
## 3642 0.07843137 0.05274566 0.1168756 0.1142069
## 3643 0.13958482 0.12859229 0.1040100 0.1040100
## 3644 0.10978875 0.05274566 0.1082367 0.1142069
## 3645 0.10650888 0.05274566 0.1168756 0.1142069
## 3646 0.13781392 0.12859229 0.1082367 0.1142069
## 3647 0.13781392 0.12859229 0.1082367 0.1142069
## 3648 0.11364176 0.12859229 0.1082367 0.1142069
## 3649 0.07666667 0.05274566 0.1168756 0.1054972
## 3650 0.10978875 0.05274566 0.1082367 0.1142069
## 3651 0.10978875 0.12859229 0.1168756 0.1142069
## 3652 0.13781392 0.12859229 0.1168756 0.1054972
## 3653 0.10650888 0.12859229 0.1082367 0.1054972
## 3654 0.10650888 0.12859229 0.1082367 0.1142069
## 3655 0.10650888 0.12859229 0.1082367 0.1142069
## 3656 0.10978875 0.05274566 0.1168756 0.1142069
## 3657 0.10650888 0.12859229 0.1168756 0.1142069
## 3658 0.11364176 0.12859229 0.1168756 0.1142069
## 3659 0.07843137 0.12859229 0.1082367 0.1142069
## 3660 0.07843137 0.12859229 0.1168756 0.1142069
## 3661 0.11364176 0.05274566 0.1082367 0.1142069
## 3662 0.10978875 0.05274566 0.1082367 0.1142069
## 3663 0.10978875 0.12859229 0.1082367 0.1142069
## 3664 0.11364176 0.12859229 0.1082367 0.1054972
## 3665 0.13958482 0.05274566 0.1082367 0.1142069
## 3666 0.13781392 0.12859229 0.1082367 0.1142069
## 3667 0.10650888 0.12859229 0.1168756 0.1142069
## 3668 0.10978875 0.12859229 0.1082367 0.1142069
## 3669 0.11364176 0.12859229 0.1168756 0.1142069
## 3670 0.13781392 0.12859229 0.1168756 0.1142069
## 3671 0.10650888 0.12859229 0.1168756 0.1142069
## 3672 0.07666667 0.12859229 0.1168756 0.1142069
## 3673 0.13958482 0.12859229 0.1082367 0.1142069
## 3674 0.10978875 0.12859229 0.1082367 0.1054972
## 3675 0.13781392 0.12859229 0.1168756 0.1142069
## 3676 0.13781392 0.12859229 0.1168756 0.1054972
## 3677 0.13958482 0.05274566 0.1082367 0.1142069
## 3678 0.11364176 0.12859229 0.1168756 0.1142069
## 3679 0.07666667 0.12859229 0.1082367 0.1142069
## 3680 0.10978875 0.05274566 0.1168756 0.1142069
## 3681 0.13781392 0.12859229 0.1040100 0.1040100
## 3682 0.10978875 0.05274566 0.1082367 0.1142069
## 3683 0.10650888 0.12859229 0.1082367 0.1142069
## 3684 0.13781392 0.12859229 0.1168756 0.1054972
## 3685 0.07843137 0.12859229 0.1082367 0.1142069
## 3686 0.13781392 0.12859229 0.1168756 0.1142069
## 3687 0.10650888 0.05274566 0.1168756 0.1142069
## 3688 0.13781392 0.12859229 0.1082367 0.1142069
## 3689 0.10650888 0.05274566 0.1168756 0.1142069
## 3690 0.13781392 0.12859229 0.1168756 0.1142069
## 3691 0.10978875 0.12859229 0.1168756 0.1142069
## 3692 0.07843137 0.05274566 0.1168756 0.1142069
## 3693 0.13781392 0.12859229 0.1168756 0.1054972
## 3694 0.10650888 0.05274566 0.1082367 0.1142069
## 3695 0.07843137 0.12859229 0.1168756 0.1142069
## 3696 0.10650888 0.12859229 0.1168756 0.1142069
## 3697 0.10650888 0.05274566 0.1168756 0.1054972
## 3698 0.07843137 0.05274566 0.1082367 0.1142069
## 3699 0.10650888 0.12859229 0.1168756 0.1142069
## 3700 0.10978875 0.12859229 0.1082367 0.1054972
## 3701 0.07843137 0.12859229 0.1082367 0.1142069
## 3702 0.10650888 0.12859229 0.1040100 0.1040100
## 3703 0.11364176 0.12859229 0.1168756 0.1142069
## 3704 0.10650888 0.12859229 0.1082367 0.1142069
## 3705 0.13781392 0.12859229 0.1082367 0.1142069
## 3706 0.07843137 0.05274566 0.1082367 0.1142069
## 3707 0.10650888 0.12859229 0.1168756 0.1142069
## 3708 0.10978875 0.12859229 0.1082367 0.1142069
## 3709 0.10650888 0.12859229 0.1082367 0.1142069
## 3710 0.10978875 0.12859229 0.1082367 0.1142069
## 3711 0.11364176 0.12859229 0.1168756 0.1054972
## 3712 0.07666667 0.12859229 0.1082367 0.1142069
## 3713 0.07666667 0.05274566 0.1168756 0.1054972
## 3714 0.10650888 0.12859229 0.1168756 0.1054972
## 3715 0.07843137 0.12859229 0.1082367 0.1142069
## 3716 0.13781392 0.12859229 0.1082367 0.1142069
## 3717 0.07843137 0.12859229 0.1082367 0.1142069
## 3718 0.10978875 0.12859229 0.1082367 0.1054972
## 3719 0.11364176 0.12859229 0.1082367 0.1142069
## 3720 0.10650888 0.12859229 0.1168756 0.1054972
## 3721 0.07666667 0.12859229 0.1168756 0.1142069
## 3722 0.07843137 0.12859229 0.1082367 0.1054972
## 3723 0.13781392 0.12859229 0.1082367 0.1142069
## 3724 0.13958482 0.05274566 0.1168756 0.1142069
## 3725 0.13958482 0.05274566 0.1168756 0.1142069
## 3726 0.07843137 0.12859229 0.1082367 0.1142069
## 3727 0.10650888 0.12859229 0.1168756 0.1142069
## 3728 0.10650888 0.12859229 0.1168756 0.1054972
## 3729 0.07666667 0.05274566 0.1082367 0.1142069
## 3730 0.10978875 0.05274566 0.1082367 0.1142069
## 3731 0.10978875 0.05274566 0.1168756 0.1142069
## 3732 0.13781392 0.12859229 0.1082367 0.1142069
## 3733 0.13781392 0.12859229 0.1082367 0.1142069
## 3734 0.13781392 0.12859229 0.1168756 0.1142069
## 3735 0.07666667 0.05274566 0.1168756 0.1142069
## 3736 0.11364176 0.12859229 0.1168756 0.1142069
## 3737 0.10978875 0.12859229 0.1082367 0.1142069
## 3738 0.11364176 0.12859229 0.1168756 0.1142069
## 3739 0.10978875 0.05274566 0.1168756 0.1142069
## 3740 0.10650888 0.12859229 0.1040100 0.1040100
## 3741 0.10650888 0.05274566 0.1168756 0.1142069
## 3742 0.10650888 0.12859229 0.1168756 0.1142069
## 3743 0.10650888 0.12859229 0.1168756 0.1054972
## 3744 0.13958482 0.12859229 0.1082367 0.1142069
## 3745 0.07843137 0.05274566 0.1082367 0.1142069
## 3746 0.13958482 0.05274566 0.1168756 0.1142069
## 3747 0.10650888 0.12859229 0.1082367 0.1142069
## 3748 0.11364176 0.12859229 0.1168756 0.1142069
## 3749 0.13781392 0.05274566 0.1168756 0.1142069
## 3750 0.07843137 0.12859229 0.1168756 0.1142069
## 3751 0.07843137 0.05274566 0.1082367 0.1142069
## 3752 0.13781392 0.05274566 0.1082367 0.1142069
## 3753 0.10650888 0.12859229 0.1168756 0.1142069
## 3754 0.07843137 0.05274566 0.1168756 0.1142069
## 3755 0.13781392 0.12859229 0.1082367 0.1142069
## 3756 0.10978875 0.12859229 0.1040100 0.1040100
## 3757 0.13958482 0.12859229 0.1168756 0.1142069
## 3758 0.07666667 0.12859229 0.1168756 0.1142069
## 3759 0.10650888 0.12859229 0.1082367 0.1142069
## 3760 0.07843137 0.12859229 0.1082367 0.1054972
## 3761 0.07843137 0.12859229 0.1082367 0.1054972
## 3762 0.10650888 0.12859229 0.1082367 0.1054972
## 3763 0.13781392 0.12859229 0.1082367 0.1142069
## 3764 0.13781392 0.12859229 0.1082367 0.1142069
## 3765 0.10978875 0.05274566 0.1082367 0.1142069
## 3766 0.07843137 0.12859229 0.1082367 0.1142069
## 3767 0.13781392 0.12859229 0.1168756 0.1142069
## 3768 0.10978875 0.05274566 0.1082367 0.1142069
## 3769 0.13781392 0.12859229 0.1168756 0.1142069
## 3770 0.11364176 0.12859229 0.1168756 0.1142069
## 3771 0.13781392 0.12859229 0.1082367 0.1142069
## 3772 0.13781392 0.12859229 0.1168756 0.1142069
## 3773 0.10978875 0.05274566 0.1168756 0.1054972
## 3774 0.10978875 0.12859229 0.1168756 0.1142069
## 3775 0.10978875 0.12859229 0.1082367 0.1142069
## 3776 0.13781392 0.12859229 0.1168756 0.1142069
## 3777 0.07843137 0.05274566 0.1082367 0.1142069
## 3778 0.07666667 0.05274566 0.1082367 0.1142069
## 3779 0.13781392 0.12859229 0.1168756 0.1142069
## 3780 0.11364176 0.12859229 0.1082367 0.1142069
## 3781 0.10978875 0.12859229 0.1082367 0.1142069
## 3782 0.07843137 0.12859229 0.1082367 0.1142069
## 3783 0.10650888 0.05274566 0.1168756 0.1142069
## 3784 0.13781392 0.12859229 0.1168756 0.1054972
## 3785 0.10650888 0.12859229 0.1168756 0.1054972
## 3786 0.13781392 0.05274566 0.1082367 0.1142069
## 3787 0.10650888 0.12859229 0.1168756 0.1142069
## 3788 0.11364176 0.12859229 0.1082367 0.1142069
## 3789 0.13781392 0.12859229 0.1168756 0.1142069
## 3790 0.13781392 0.12859229 0.1082367 0.1142069
## 3791 0.10978875 0.05274566 0.1168756 0.1142069
## 3792 0.10978875 0.12859229 0.1082367 0.1142069
## 3793 0.07843137 0.12859229 0.1168756 0.1142069
## 3794 0.10650888 0.12859229 0.1168756 0.1142069
## 3795 0.10650888 0.05274566 0.1168756 0.1054972
## 3796 0.10650888 0.12859229 0.1082367 0.1142069
## 3797 0.07843137 0.12859229 0.1168756 0.1142069
## 3798 0.13781392 0.05274566 0.1082367 0.1142069
## 3799 0.13958482 0.12859229 0.1040100 0.1040100
## 3800 0.10978875 0.05274566 0.1168756 0.1142069
## 3801 0.10650888 0.12859229 0.1082367 0.1142069
## 3802 0.07843137 0.12859229 0.1168756 0.1142069
## 3803 0.10650888 0.12859229 0.1082367 0.1142069
## 3804 0.07666667 0.05274566 0.1040100 0.1040100
## 3805 0.07843137 0.05274566 0.1168756 0.1142069
## 3806 0.13781392 0.12859229 0.1168756 0.1142069
## 3807 0.07843137 0.12859229 0.1168756 0.1142069
## 3808 0.11364176 0.12859229 0.1168756 0.1142069
## 3809 0.13958482 0.12859229 0.1082367 0.1142069
## 3810 0.10650888 0.12859229 0.1168756 0.1142069
## 3811 0.13781392 0.12859229 0.1168756 0.1142069
## 3812 0.10650888 0.12859229 0.1082367 0.1142069
## 3813 0.11364176 0.12859229 0.1082367 0.1054972
## 3814 0.07843137 0.05274566 0.1082367 0.1142069
## 3815 0.13781392 0.12859229 0.1168756 0.1142069
## 3816 0.11364176 0.12859229 0.1168756 0.1142069
## 3817 0.10978875 0.12859229 0.1168756 0.1142069
## 3818 0.10978875 0.12859229 0.1082367 0.1142069
## 3819 0.11364176 0.12859229 0.1168756 0.1054972
## 3820 0.13781392 0.12859229 0.1168756 0.1142069
## 3821 0.13781392 0.12859229 0.1168756 0.1054972
## 3822 0.13781392 0.12859229 0.1168756 0.1142069
## 3823 0.13781392 0.12859229 0.1168756 0.1142069
## 3824 0.10650888 0.12859229 0.1082367 0.1142069
## 3825 0.11364176 0.12859229 0.1168756 0.1142069
## 3826 0.13781392 0.12859229 0.1168756 0.1142069
## 3827 0.10650888 0.12859229 0.1168756 0.1142069
## 3828 0.13781392 0.05274566 0.1082367 0.1142069
## 3829 0.07843137 0.05274566 0.1082367 0.1142069
## 3830 0.13781392 0.12859229 0.1082367 0.1142069
## 3831 0.13958482 0.05274566 0.1168756 0.1142069
## 3832 0.11364176 0.12859229 0.1168756 0.1142069
## 3833 0.10978875 0.12859229 0.1168756 0.1142069
## 3834 0.11364176 0.12859229 0.1168756 0.1142069
## 3835 0.11364176 0.12859229 0.1168756 0.1142069
## 3836 0.07843137 0.12859229 0.1168756 0.1142069
## 3837 0.10978875 0.12859229 0.1168756 0.1142069
## 3838 0.07843137 0.12859229 0.1168756 0.1142069
## 3839 0.13781392 0.12859229 0.1082367 0.1142069
## 3840 0.10650888 0.12859229 0.1082367 0.1142069
## 3841 0.07843137 0.12859229 0.1040100 0.1040100
## 3842 0.13781392 0.12859229 0.1168756 0.1142069
## 3843 0.10978875 0.05274566 0.1040100 0.1040100
## 3844 0.13781392 0.12859229 0.1168756 0.1142069
## 3845 0.13781392 0.12859229 0.1168756 0.1142069
## 3846 0.13781392 0.12859229 0.1168756 0.1054972
## 3847 0.10650888 0.12859229 0.1168756 0.1142069
## 3848 0.07666667 0.05274566 0.1082367 0.1142069
## 3849 0.10650888 0.05274566 0.1082367 0.1054972
## 3850 0.13781392 0.12859229 0.1168756 0.1142069
## 3851 0.10650888 0.12859229 0.1082367 0.1054972
## 3852 0.13781392 0.12859229 0.1168756 0.1054972
## 3853 0.10650888 0.05274566 0.1168756 0.1142069
## 3854 0.13781392 0.12859229 0.1082367 0.1142069
## 3855 0.13781392 0.12859229 0.1168756 0.1142069
## 3856 0.10978875 0.05274566 0.1082367 0.1142069
## 3857 0.10650888 0.12859229 0.1082367 0.1054972
## 3858 0.07843137 0.12859229 0.1168756 0.1142069
## 3859 0.13781392 0.12859229 0.1168756 0.1142069
## 3860 0.10978875 0.12859229 0.1082367 0.1142069
## 3861 0.13958482 0.12859229 0.1082367 0.1142069
## 3862 0.10978875 0.12859229 0.1082367 0.1142069
## 3863 0.11364176 0.12859229 0.1168756 0.1142069
## 3864 0.13781392 0.12859229 0.1168756 0.1142069
## 3865 0.07843137 0.12859229 0.1082367 0.1142069
## 3866 0.10650888 0.12859229 0.1082367 0.1054972
## 3867 0.10978875 0.05274566 0.1168756 0.1142069
## 3868 0.13781392 0.12859229 0.1168756 0.1142069
## 3869 0.13781392 0.12859229 0.1168756 0.1142069
## 3870 0.13781392 0.12859229 0.1082367 0.1142069
## 3871 0.07666667 0.05274566 0.1168756 0.1054972
## 3872 0.11364176 0.12859229 0.1082367 0.1142069
## 3873 0.13781392 0.05274566 0.1168756 0.1142069
## 3874 0.07843137 0.12859229 0.1168756 0.1142069
## 3875 0.07666667 0.05274566 0.1168756 0.1142069
## 3876 0.07666667 0.12859229 0.1082367 0.1054972
## 3877 0.10650888 0.12859229 0.1168756 0.1142069
## 3878 0.13958482 0.05274566 0.1082367 0.1142069
## 3879 0.10650888 0.12859229 0.1168756 0.1142069
## 3880 0.10650888 0.12859229 0.1082367 0.1142069
## 3881 0.07843137 0.12859229 0.1168756 0.1054972
## 3882 0.13781392 0.12859229 0.1040100 0.1040100
## 3883 0.11364176 0.05274566 0.1168756 0.1142069
## 3884 0.07843137 0.05274566 0.1168756 0.1142069
## 3885 0.11364176 0.12859229 0.1082367 0.1054972
## 3886 0.07843137 0.05274566 0.1168756 0.1142069
## 3887 0.10978875 0.12859229 0.1168756 0.1142069
## 3888 0.13781392 0.12859229 0.1168756 0.1054972
## 3889 0.10650888 0.12859229 0.1082367 0.1142069
## 3890 0.10978875 0.12859229 0.1168756 0.1142069
## 3891 0.10650888 0.12859229 0.1168756 0.1142069
## 3892 0.13781392 0.12859229 0.1168756 0.1142069
## 3893 0.10978875 0.12859229 0.1168756 0.1142069
## 3894 0.13781392 0.05274566 0.1082367 0.1142069
## 3895 0.10650888 0.12859229 0.1082367 0.1142069
## 3896 0.10978875 0.12859229 0.1168756 0.1142069
## 3897 0.13781392 0.12859229 0.1082367 0.1142069
## 3898 0.13781392 0.12859229 0.1082367 0.1142069
## 3899 0.10650888 0.12859229 0.1168756 0.1142069
## 3900 0.10650888 0.12859229 0.1168756 0.1054972
## 3901 0.13781392 0.12859229 0.1082367 0.1142069
## 3902 0.10650888 0.05274566 0.1168756 0.1142069
## 3903 0.07843137 0.05274566 0.1168756 0.1142069
## 3904 0.07843137 0.12859229 0.1082367 0.1142069
## 3905 0.10650888 0.12859229 0.1168756 0.1142069
## 3906 0.13781392 0.12859229 0.1168756 0.1142069
## 3907 0.10650888 0.12859229 0.1082367 0.1142069
## 3908 0.10650888 0.12859229 0.1082367 0.1142069
## 3909 0.13781392 0.12859229 0.1082367 0.1054972
## 3910 0.13781392 0.12859229 0.1168756 0.1142069
## 3911 0.13781392 0.12859229 0.1082367 0.1142069
## 3912 0.10650888 0.12859229 0.1168756 0.1142069
## 3913 0.13781392 0.12859229 0.1082367 0.1142069
## 3914 0.13781392 0.12859229 0.1168756 0.1054972
## 3915 0.13781392 0.12859229 0.1082367 0.1142069
## 3916 0.10650888 0.12859229 0.1168756 0.1054972
## 3917 0.10650888 0.12859229 0.1082367 0.1054972
## 3918 0.13781392 0.12859229 0.1082367 0.1142069
## 3919 0.07666667 0.05274566 0.1040100 0.1040100
## 3920 0.13781392 0.12859229 0.1082367 0.1142069
## 3921 0.10650888 0.12859229 0.1168756 0.1142069
## 3922 0.07843137 0.12859229 0.1168756 0.1054972
## 3923 0.07666667 0.05274566 0.1082367 0.1142069
## 3924 0.07843137 0.12859229 0.1168756 0.1054972
## 3925 0.13958482 0.05274566 0.1168756 0.1142069
## 3926 0.10650888 0.12859229 0.1082367 0.1142069
## 3927 0.11364176 0.12859229 0.1082367 0.1142069
## 3928 0.10978875 0.12859229 0.1082367 0.1142069
## 3929 0.10650888 0.12859229 0.1168756 0.1142069
## 3930 0.11364176 0.12859229 0.1082367 0.1142069
## 3931 0.10650888 0.12859229 0.1168756 0.1142069
## 3932 0.10650888 0.12859229 0.1168756 0.1142069
## 3933 0.13781392 0.12859229 0.1168756 0.1054972
## 3934 0.10978875 0.12859229 0.1168756 0.1054972
## 3935 0.10978875 0.12859229 0.1168756 0.1142069
## 3936 0.10650888 0.05274566 0.1082367 0.1142069
## 3937 0.10978875 0.05274566 0.1168756 0.1142069
## 3938 0.10650888 0.12859229 0.1168756 0.1054972
## 3939 0.11364176 0.12859229 0.1082367 0.1142069
## 3940 0.11364176 0.12859229 0.1168756 0.1142069
## 3941 0.10650888 0.12859229 0.1168756 0.1142069
## 3942 0.13958482 0.12859229 0.1168756 0.1142069
## 3943 0.13781392 0.12859229 0.1168756 0.1142069
## 3944 0.13781392 0.12859229 0.1082367 0.1142069
## 3945 0.13781392 0.12859229 0.1168756 0.1142069
## 3946 0.13958482 0.05274566 0.1168756 0.1142069
## 3947 0.10650888 0.12859229 0.1168756 0.1142069
## 3948 0.10650888 0.12859229 0.1082367 0.1142069
## 3949 0.10650888 0.12859229 0.1082367 0.1142069
## 3950 0.13958482 0.12859229 0.1168756 0.1142069
## 3951 0.11364176 0.12859229 0.1168756 0.1142069
## 3952 0.13781392 0.12859229 0.1082367 0.1142069
## 3953 0.13781392 0.12859229 0.1082367 0.1142069
## 3954 0.10978875 0.05274566 0.1168756 0.1142069
## 3955 0.10650888 0.12859229 0.1082367 0.1142069
## 3956 0.13781392 0.12859229 0.1168756 0.1142069
## 3957 0.10650888 0.12859229 0.1168756 0.1142069
## 3958 0.13958482 0.12859229 0.1168756 0.1142069
## 3959 0.10650888 0.12859229 0.1040100 0.1040100
## 3960 0.11364176 0.05274566 0.1082367 0.1142069
## 3961 0.13781392 0.05274566 0.1082367 0.1142069
## 3962 0.13781392 0.05274566 0.1082367 0.1142069
## 3963 0.11364176 0.12859229 0.1082367 0.1142069
## 3964 0.13781392 0.12859229 0.1168756 0.1142069
## 3965 0.11364176 0.05274566 0.1168756 0.1054972
## 3966 0.10650888 0.12859229 0.1082367 0.1142069
## 3967 0.10650888 0.12859229 0.1168756 0.1142069
## 3968 0.10978875 0.05274566 0.1082367 0.1142069
## 3969 0.07666667 0.05274566 0.1082367 0.1054972
## 3970 0.11364176 0.12859229 0.1082367 0.1054972
## 3971 0.10650888 0.12859229 0.1082367 0.1142069
## 3972 0.13781392 0.12859229 0.1040100 0.1040100
## 3973 0.10650888 0.05274566 0.1082367 0.1142069
## 3974 0.10650888 0.12859229 0.1082367 0.1142069
## 3975 0.07843137 0.12859229 0.1082367 0.1142069
## 3976 0.07843137 0.05274566 0.1082367 0.1142069
## 3977 0.07843137 0.05274566 0.1168756 0.1142069
## 3978 0.10650888 0.12859229 0.1168756 0.1054972
## 3979 0.13781392 0.12859229 0.1082367 0.1142069
## 3980 0.13781392 0.12859229 0.1082367 0.1142069
## 3981 0.13781392 0.12859229 0.1082367 0.1054972
## 3982 0.13781392 0.12859229 0.1168756 0.1142069
## 3983 0.07666667 0.12859229 0.1168756 0.1142069
## 3984 0.07843137 0.12859229 0.1082367 0.1142069
## 3985 0.13781392 0.12859229 0.1168756 0.1054972
## 3986 0.11364176 0.12859229 0.1082367 0.1142069
## 3987 0.10650888 0.12859229 0.1168756 0.1142069
## 3988 0.07843137 0.12859229 0.1082367 0.1142069
## 3989 0.11364176 0.12859229 0.1168756 0.1142069
## 3990 0.13781392 0.12859229 0.1168756 0.1142069
## 3991 0.13958482 0.12859229 0.1168756 0.1142069
## 3992 0.11364176 0.12859229 0.1082367 0.1142069
## 3993 0.13781392 0.12859229 0.1168756 0.1054972
## 3994 0.10978875 0.12859229 0.1168756 0.1142069
## 3995 0.10650888 0.12859229 0.1168756 0.1142069
## 3996 0.07843137 0.05274566 0.1168756 0.1054972
## 3997 0.07843137 0.12859229 0.1082367 0.1142069
## 3998 0.11364176 0.05274566 0.1168756 0.1142069
## 3999 0.13781392 0.12859229 0.1082367 0.1142069
## 4000 0.13781392 0.12859229 0.1168756 0.1142069
## 4001 0.11364176 0.12859229 0.1082367 0.1142069
## 4002 0.10978875 0.05274566 0.1082367 0.1142069
## 4003 0.07843137 0.12859229 0.1082367 0.1142069
## 4004 0.10650888 0.12859229 0.1082367 0.1142069
## 4005 0.10650888 0.12859229 0.1168756 0.1142069
## 4006 0.11364176 0.12859229 0.1168756 0.1142069
## 4007 0.10650888 0.12859229 0.1168756 0.1142069
## 4008 0.13958482 0.12859229 0.1082367 0.1142069
## 4009 0.07843137 0.12859229 0.1082367 0.1142069
## 4010 0.13958482 0.12859229 0.1082367 0.1142069
## 4011 0.07666667 0.12859229 0.1082367 0.1142069
## 4012 0.13958482 0.12859229 0.1168756 0.1142069
## 4013 0.10650888 0.12859229 0.1082367 0.1142069
## 4014 0.13958482 0.12859229 0.1082367 0.1142069
## 4015 0.07666667 0.12859229 0.1082367 0.1142069
## 4016 0.07843137 0.05274566 0.1082367 0.1142069
## 4017 0.11364176 0.05274566 0.1082367 0.1054972
## 4018 0.10650888 0.12859229 0.1168756 0.1142069
## 4019 0.13781392 0.05274566 0.1082367 0.1142069
## 4020 0.10650888 0.12859229 0.1168756 0.1142069
## 4021 0.13781392 0.12859229 0.1168756 0.1142069
## 4022 0.10650888 0.05274566 0.1168756 0.1142069
## 4023 0.07843137 0.12859229 0.1082367 0.1142069
## 4024 0.07843137 0.05274566 0.1082367 0.1142069
## 4025 0.10650888 0.12859229 0.1082367 0.1142069
## 4026 0.11364176 0.05274566 0.1168756 0.1142069
## 4027 0.10650888 0.05274566 0.1082367 0.1142069
## 4028 0.10650888 0.05274566 0.1082367 0.1142069
## 4029 0.10650888 0.12859229 0.1168756 0.1142069
## 4030 0.07843137 0.12859229 0.1082367 0.1054972
## 4031 0.10650888 0.12859229 0.1168756 0.1142069
## 4032 0.10650888 0.12859229 0.1168756 0.1142069
## 4033 0.10978875 0.05274566 0.1082367 0.1142069
## 4034 0.13781392 0.12859229 0.1168756 0.1142069
## 4035 0.13781392 0.12859229 0.1082367 0.1142069
## 4036 0.10978875 0.05274566 0.1082367 0.1142069
## 4037 0.11364176 0.12859229 0.1168756 0.1142069
## 4038 0.13781392 0.12859229 0.1168756 0.1142069
## 4039 0.13781392 0.12859229 0.1168756 0.1054972
## 4040 0.07843137 0.12859229 0.1168756 0.1142069
## 4041 0.07843137 0.12859229 0.1168756 0.1142069
## 4042 0.10650888 0.12859229 0.1168756 0.1142069
## 4043 0.13781392 0.12859229 0.1168756 0.1142069
## 4044 0.07666667 0.12859229 0.1082367 0.1142069
## 4045 0.13781392 0.12859229 0.1168756 0.1142069
## 4046 0.07666667 0.05274566 0.1082367 0.1142069
## 4047 0.10650888 0.12859229 0.1168756 0.1142069
## 4048 0.13781392 0.12859229 0.1082367 0.1142069
## 4049 0.11364176 0.12859229 0.1168756 0.1142069
## 4050 0.13958482 0.12859229 0.1082367 0.1054972
## 4051 0.07843137 0.12859229 0.1168756 0.1142069
## 4052 0.13781392 0.12859229 0.1040100 0.1040100
## 4053 0.13781392 0.12859229 0.1168756 0.1142069
## 4054 0.10978875 0.05274566 0.1082367 0.1142069
## 4055 0.10650888 0.12859229 0.1168756 0.1142069
## 4056 0.13781392 0.12859229 0.1082367 0.1054972
## 4057 0.13781392 0.12859229 0.1082367 0.1142069
## 4058 0.13781392 0.12859229 0.1168756 0.1142069
## 4059 0.10650888 0.05274566 0.1040100 0.1040100
## 4060 0.13781392 0.05274566 0.1168756 0.1142069
## 4061 0.13781392 0.12859229 0.1168756 0.1142069
## 4062 0.10650888 0.12859229 0.1082367 0.1142069
## 4063 0.11364176 0.05274566 0.1168756 0.1142069
## 4064 0.13781392 0.12859229 0.1168756 0.1142069
## 4065 0.11364176 0.12859229 0.1082367 0.1142069
## 4066 0.10650888 0.12859229 0.1082367 0.1142069
## 4067 0.11364176 0.12859229 0.1168756 0.1054972
## 4068 0.10650888 0.12859229 0.1168756 0.1142069
## 4069 0.13958482 0.05274566 0.1082367 0.1142069
## 4070 0.13781392 0.12859229 0.1168756 0.1142069
## 4071 0.10650888 0.05274566 0.1168756 0.1054972
## 4072 0.11364176 0.12859229 0.1168756 0.1142069
## 4073 0.10650888 0.12859229 0.1082367 0.1142069
## 4074 0.13781392 0.12859229 0.1168756 0.1142069
## 4075 0.10978875 0.05274566 0.1082367 0.1054972
## 4076 0.13958482 0.05274566 0.1082367 0.1142069
## 4077 0.13781392 0.12859229 0.1168756 0.1142069
## 4078 0.13781392 0.12859229 0.1168756 0.1142069
## 4079 0.10650888 0.12859229 0.1168756 0.1142069
## 4080 0.07843137 0.05274566 0.1082367 0.1142069
## 4081 0.10650888 0.12859229 0.1082367 0.1142069
## 4082 0.13781392 0.12859229 0.1168756 0.1142069
## 4083 0.10650888 0.05274566 0.1168756 0.1142069
## 4084 0.10650888 0.12859229 0.1168756 0.1142069
## 4085 0.07843137 0.05274566 0.1168756 0.1142069
## 4086 0.13781392 0.12859229 0.1168756 0.1142069
## 4087 0.10978875 0.12859229 0.1082367 0.1142069
## 4088 0.13781392 0.12859229 0.1040100 0.1040100
## 4089 0.13781392 0.12859229 0.1168756 0.1142069
## 4090 0.13781392 0.12859229 0.1082367 0.1142069
## 4091 0.07666667 0.12859229 0.1168756 0.1142069
## 4092 0.10978875 0.05274566 0.1168756 0.1142069
## 4093 0.13781392 0.12859229 0.1082367 0.1142069
## 4094 0.13781392 0.12859229 0.1082367 0.1142069
## 4095 0.10978875 0.12859229 0.1082367 0.1142069
## 4096 0.13781392 0.12859229 0.1168756 0.1142069
## 4097 0.07666667 0.12859229 0.1082367 0.1142069
## 4098 0.11364176 0.05274566 0.1168756 0.1142069
## 4099 0.13781392 0.12859229 0.1082367 0.1142069
## 4100 0.11364176 0.12859229 0.1082367 0.1142069
## 4101 0.13781392 0.12859229 0.1082367 0.1142069
## 4102 0.13781392 0.12859229 0.1082367 0.1142069
## 4103 0.13781392 0.05274566 0.1082367 0.1142069
## 4104 0.13781392 0.12859229 0.1082367 0.1142069
## 4105 0.10650888 0.12859229 0.1082367 0.1142069
## 4106 0.11364176 0.12859229 0.1168756 0.1054972
## 4107 0.13781392 0.12859229 0.1168756 0.1142069
## 4108 0.10650888 0.12859229 0.1168756 0.1142069
## 4109 0.11364176 0.12859229 0.1168756 0.1142069
## 4110 0.13781392 0.12859229 0.1168756 0.1054972
## 4111 0.10650888 0.12859229 0.1168756 0.1054972
## 4112 0.07843137 0.05274566 0.1082367 0.1054972
## 4113 0.10650888 0.12859229 0.1168756 0.1142069
## 4114 0.13781392 0.12859229 0.1168756 0.1142069
## 4115 0.13781392 0.12859229 0.1168756 0.1142069
## 4116 0.10650888 0.12859229 0.1168756 0.1142069
## 4117 0.07843137 0.12859229 0.1082367 0.1142069
## 4118 0.07843137 0.05274566 0.1168756 0.1142069
## 4119 0.13781392 0.05274566 0.1082367 0.1142069
## 4120 0.13781392 0.12859229 0.1168756 0.1142069
## 4121 0.10650888 0.12859229 0.1168756 0.1054972
## 4122 0.13781392 0.12859229 0.1168756 0.1054972
## 4123 0.10978875 0.05274566 0.1082367 0.1142069
## 4124 0.10650888 0.12859229 0.1082367 0.1142069
## 4125 0.10650888 0.12859229 0.1168756 0.1142069
## 4126 0.13781392 0.12859229 0.1082367 0.1142069
## 4127 0.10650888 0.12859229 0.1082367 0.1142069
## 4128 0.11364176 0.12859229 0.1082367 0.1054972
## 4129 0.13781392 0.12859229 0.1082367 0.1142069
## 4130 0.13958482 0.12859229 0.1168756 0.1054972
## 4131 0.13781392 0.12859229 0.1168756 0.1142069
## 4132 0.10650888 0.12859229 0.1082367 0.1142069
## 4133 0.10650888 0.05274566 0.1168756 0.1142069
## 4134 0.13781392 0.12859229 0.1168756 0.1054972
## 4135 0.13781392 0.12859229 0.1040100 0.1040100
## 4136 0.07843137 0.12859229 0.1082367 0.1142069
## 4137 0.13781392 0.12859229 0.1168756 0.1054972
## 4138 0.11364176 0.12859229 0.1168756 0.1142069
## 4139 0.13781392 0.12859229 0.1168756 0.1142069
## 4140 0.10650888 0.12859229 0.1082367 0.1142069
## 4141 0.07843137 0.05274566 0.1082367 0.1142069
## 4142 0.10650888 0.12859229 0.1082367 0.1142069
## 4143 0.07666667 0.12859229 0.1082367 0.1054972
## 4144 0.13781392 0.12859229 0.1082367 0.1054972
## 4145 0.13958482 0.05274566 0.1168756 0.1054972
## 4146 0.10650888 0.12859229 0.1168756 0.1142069
## 4147 0.10650888 0.12859229 0.1082367 0.1142069
## 4148 0.13781392 0.12859229 0.1168756 0.1142069
## 4149 0.07843137 0.12859229 0.1082367 0.1142069
## 4150 0.10650888 0.12859229 0.1168756 0.1142069
## 4151 0.07843137 0.12859229 0.1168756 0.1054972
## 4152 0.13958482 0.12859229 0.1168756 0.1054972
## 4153 0.11364176 0.05274566 0.1082367 0.1142069
## 4154 0.10650888 0.12859229 0.1168756 0.1142069
## 4155 0.13781392 0.12859229 0.1168756 0.1142069
## 4156 0.13781392 0.12859229 0.1082367 0.1142069
## 4157 0.07666667 0.05274566 0.1040100 0.1040100
## 4158 0.13958482 0.12859229 0.1168756 0.1054972
## 4159 0.13781392 0.12859229 0.1168756 0.1142069
## 4160 0.10650888 0.05274566 0.1168756 0.1142069
## 4161 0.11364176 0.12859229 0.1168756 0.1142069
## 4162 0.07843137 0.05274566 0.1082367 0.1054972
## 4163 0.13781392 0.12859229 0.1168756 0.1142069
## 4164 0.13781392 0.05274566 0.1168756 0.1142069
## 4165 0.13781392 0.12859229 0.1082367 0.1142069
## 4166 0.13781392 0.05274566 0.1168756 0.1142069
## 4167 0.11364176 0.12859229 0.1168756 0.1054972
## 4168 0.11364176 0.12859229 0.1082367 0.1142069
## 4169 0.11364176 0.05274566 0.1082367 0.1142069
## 4170 0.13781392 0.12859229 0.1082367 0.1142069
## 4171 0.07843137 0.12859229 0.1168756 0.1142069
## 4172 0.07843137 0.05274566 0.1168756 0.1054972
## 4173 0.10978875 0.05274566 0.1168756 0.1142069
## 4174 0.10978875 0.05274566 0.1168756 0.1054972
## 4175 0.10650888 0.12859229 0.1082367 0.1142069
## 4176 0.07843137 0.12859229 0.1168756 0.1142069
## 4177 0.10978875 0.12859229 0.1168756 0.1142069
## 4178 0.07843137 0.12859229 0.1082367 0.1142069
## 4179 0.13781392 0.12859229 0.1168756 0.1142069
## 4180 0.13781392 0.12859229 0.1168756 0.1142069
## 4181 0.10978875 0.05274566 0.1082367 0.1054972
## 4182 0.10650888 0.12859229 0.1082367 0.1142069
## 4183 0.10650888 0.12859229 0.1168756 0.1142069
## 4184 0.10650888 0.12859229 0.1082367 0.1142069
## 4185 0.11364176 0.12859229 0.1168756 0.1054972
## 4186 0.13781392 0.12859229 0.1082367 0.1142069
## 4187 0.10650888 0.05274566 0.1168756 0.1142069
## 4188 0.07843137 0.05274566 0.1082367 0.1142069
## 4189 0.13958482 0.12859229 0.1082367 0.1142069
## 4190 0.07666667 0.05274566 0.1168756 0.1142069
## 4191 0.10978875 0.12859229 0.1168756 0.1054972
## 4192 0.11364176 0.12859229 0.1082367 0.1142069
## 4193 0.07843137 0.12859229 0.1040100 0.1040100
## 4194 0.07843137 0.12859229 0.1082367 0.1142069
## 4195 0.11364176 0.05274566 0.1168756 0.1142069
## 4196 0.13781392 0.12859229 0.1168756 0.1142069
## 4197 0.13781392 0.12859229 0.1168756 0.1142069
## 4198 0.10978875 0.05274566 0.1168756 0.1054972
## 4199 0.13781392 0.12859229 0.1082367 0.1142069
## 4200 0.10650888 0.12859229 0.1168756 0.1142069
## 4201 0.10650888 0.12859229 0.1168756 0.1142069
## 4202 0.07666667 0.12859229 0.1082367 0.1054972
## 4203 0.07843137 0.05274566 0.1082367 0.1142069
## 4204 0.13781392 0.12859229 0.1082367 0.1142069
## 4205 0.10978875 0.05274566 0.1168756 0.1142069
## 4206 0.10650888 0.05274566 0.1082367 0.1142069
## 4207 0.11364176 0.12859229 0.1168756 0.1142069
## 4208 0.07666667 0.12859229 0.1168756 0.1142069
## 4209 0.13781392 0.12859229 0.1082367 0.1142069
## 4210 0.13781392 0.12859229 0.1168756 0.1142069
## 4211 0.10650888 0.12859229 0.1082367 0.1054972
## 4212 0.11364176 0.05274566 0.1168756 0.1142069
## 4213 0.13781392 0.12859229 0.1168756 0.1142069
## 4214 0.10650888 0.12859229 0.1168756 0.1142069
## 4215 0.07666667 0.12859229 0.1168756 0.1142069
## 4216 0.10978875 0.12859229 0.1168756 0.1054972
## 4217 0.07666667 0.05274566 0.1168756 0.1142069
## 4218 0.10978875 0.05274566 0.1082367 0.1142069
## 4219 0.07843137 0.05274566 0.1168756 0.1142069
## 4220 0.11364176 0.12859229 0.1168756 0.1142069
## 4221 0.13781392 0.12859229 0.1082367 0.1054972
## 4222 0.10650888 0.12859229 0.1168756 0.1142069
## 4223 0.10650888 0.12859229 0.1168756 0.1142069
## 4224 0.10978875 0.05274566 0.1168756 0.1142069
## 4225 0.07843137 0.12859229 0.1082367 0.1142069
## 4226 0.07843137 0.12859229 0.1168756 0.1142069
## 4227 0.13781392 0.12859229 0.1082367 0.1142069
## 4228 0.10650888 0.12859229 0.1082367 0.1142069
## 4229 0.10978875 0.05274566 0.1168756 0.1142069
## 4230 0.13781392 0.12859229 0.1168756 0.1054972
## 4231 0.13781392 0.12859229 0.1168756 0.1054972
## 4232 0.13781392 0.05274566 0.1082367 0.1142069
## 4233 0.10650888 0.12859229 0.1082367 0.1054972
## 4234 0.10650888 0.12859229 0.1168756 0.1054972
## 4235 0.13781392 0.05274566 0.1168756 0.1142069
## 4236 0.10650888 0.12859229 0.1082367 0.1142069
## 4237 0.10650888 0.05274566 0.1082367 0.1142069
## 4238 0.11364176 0.12859229 0.1168756 0.1142069
## 4239 0.10650888 0.12859229 0.1082367 0.1142069
## 4240 0.13781392 0.12859229 0.1168756 0.1142069
## 4241 0.13781392 0.12859229 0.1168756 0.1142069
## 4242 0.10978875 0.12859229 0.1082367 0.1142069
## 4243 0.11364176 0.12859229 0.1168756 0.1142069
## 4244 0.13781392 0.12859229 0.1168756 0.1142069
## 4245 0.11364176 0.12859229 0.1082367 0.1142069
## 4246 0.13781392 0.12859229 0.1082367 0.1142069
## 4247 0.10650888 0.12859229 0.1168756 0.1142069
## 4248 0.11364176 0.12859229 0.1082367 0.1054972
## 4249 0.11364176 0.12859229 0.1082367 0.1142069
## 4250 0.10978875 0.12859229 0.1082367 0.1142069
## 4251 0.13781392 0.12859229 0.1168756 0.1142069
## 4252 0.13781392 0.12859229 0.1168756 0.1142069
## 4253 0.10650888 0.12859229 0.1168756 0.1142069
## 4254 0.07843137 0.12859229 0.1082367 0.1142069
## 4255 0.10650888 0.12859229 0.1082367 0.1142069
## 4256 0.10650888 0.05274566 0.1082367 0.1142069
## 4257 0.11364176 0.12859229 0.1168756 0.1142069
## 4258 0.11364176 0.05274566 0.1168756 0.1142069
## 4259 0.11364176 0.12859229 0.1082367 0.1142069
## 4260 0.13781392 0.12859229 0.1082367 0.1142069
## 4261 0.11364176 0.12859229 0.1082367 0.1142069
## 4262 0.11364176 0.05274566 0.1082367 0.1142069
## 4263 0.10650888 0.12859229 0.1168756 0.1142069
## 4264 0.10650888 0.05274566 0.1168756 0.1142069
## 4265 0.10650888 0.12859229 0.1168756 0.1142069
## 4266 0.10650888 0.12859229 0.1082367 0.1142069
## 4267 0.07843137 0.05274566 0.1082367 0.1142069
## 4268 0.11364176 0.12859229 0.1168756 0.1142069
## 4269 0.07666667 0.12859229 0.1082367 0.1142069
## 4270 0.13958482 0.05274566 0.1168756 0.1142069
## 4271 0.11364176 0.12859229 0.1168756 0.1142069
## 4272 0.07666667 0.05274566 0.1082367 0.1142069
## 4273 0.07666667 0.12859229 0.1082367 0.1142069
## 4274 0.11364176 0.12859229 0.1082367 0.1142069
## 4275 0.10650888 0.12859229 0.1082367 0.1142069
## 4276 0.11364176 0.12859229 0.1082367 0.1142069
## 4277 0.07843137 0.12859229 0.1168756 0.1054972
## 4278 0.11364176 0.12859229 0.1168756 0.1142069
## 4279 0.07843137 0.05274566 0.1168756 0.1142069
## 4280 0.10978875 0.05274566 0.1082367 0.1142069
## 4281 0.10650888 0.12859229 0.1168756 0.1142069
## 4282 0.10978875 0.12859229 0.1168756 0.1142069
## 4283 0.07843137 0.12859229 0.1168756 0.1142069
## 4284 0.13781392 0.12859229 0.1082367 0.1054972
## 4285 0.10978875 0.12859229 0.1168756 0.1142069
## 4286 0.07843137 0.12859229 0.1082367 0.1142069
## 4287 0.13781392 0.12859229 0.1168756 0.1142069
## 4288 0.10650888 0.12859229 0.1168756 0.1142069
## 4289 0.07843137 0.12859229 0.1168756 0.1142069
## 4290 0.13781392 0.12859229 0.1040100 0.1040100
## 4291 0.13781392 0.12859229 0.1168756 0.1142069
## 4292 0.13781392 0.12859229 0.1168756 0.1054972
## 4293 0.10650888 0.05274566 0.1168756 0.1142069
## 4294 0.10650888 0.05274566 0.1168756 0.1142069
## 4295 0.13781392 0.12859229 0.1082367 0.1142069
## 4296 0.13781392 0.12859229 0.1168756 0.1054972
## 4297 0.07843137 0.05274566 0.1168756 0.1142069
## 4298 0.07843137 0.12859229 0.1168756 0.1142069
## 4299 0.10650888 0.12859229 0.1082367 0.1142069
## 4300 0.11364176 0.12859229 0.1082367 0.1142069
## 4301 0.10650888 0.12859229 0.1168756 0.1142069
## 4302 0.13781392 0.12859229 0.1168756 0.1142069
## 4303 0.07843137 0.05274566 0.1082367 0.1142069
## 4304 0.13781392 0.05274566 0.1168756 0.1142069
## 4305 0.10650888 0.05274566 0.1168756 0.1142069
## 4306 0.11364176 0.12859229 0.1168756 0.1142069
## 4307 0.07843137 0.05274566 0.1168756 0.1142069
## 4308 0.10978875 0.12859229 0.1168756 0.1142069
## 4309 0.13781392 0.05274566 0.1168756 0.1142069
## 4310 0.13781392 0.12859229 0.1168756 0.1142069
## 4311 0.10978875 0.12859229 0.1082367 0.1142069
## 4312 0.07843137 0.12859229 0.1168756 0.1142069
## 4313 0.10650888 0.12859229 0.1168756 0.1142069
## 4314 0.10650888 0.05274566 0.1168756 0.1142069
## 4315 0.13781392 0.05274566 0.1082367 0.1142069
## 4316 0.07843137 0.12859229 0.1168756 0.1142069
## 4317 0.13781392 0.12859229 0.1168756 0.1054972
## 4318 0.13958482 0.12859229 0.1168756 0.1142069
## 4319 0.10650888 0.05274566 0.1082367 0.1142069
## 4320 0.11364176 0.05274566 0.1168756 0.1142069
## 4321 0.07843137 0.05274566 0.1082367 0.1142069
## 4322 0.13781392 0.12859229 0.1082367 0.1142069
## 4323 0.13781392 0.12859229 0.1168756 0.1142069
## 4324 0.13781392 0.05274566 0.1040100 0.1040100
## 4325 0.10650888 0.12859229 0.1082367 0.1054972
## 4326 0.07843137 0.12859229 0.1082367 0.1142069
## 4327 0.07843137 0.12859229 0.1168756 0.1142069
## 4328 0.10650888 0.12859229 0.1082367 0.1142069
## 4329 0.13781392 0.12859229 0.1082367 0.1054972
## 4330 0.13781392 0.12859229 0.1082367 0.1142069
## 4331 0.07843137 0.12859229 0.1168756 0.1054972
## 4332 0.11364176 0.12859229 0.1082367 0.1142069
## 4333 0.13781392 0.05274566 0.1168756 0.1054972
## 4334 0.13781392 0.12859229 0.1082367 0.1142069
## 4335 0.07843137 0.12859229 0.1082367 0.1054972
## 4336 0.10650888 0.12859229 0.1082367 0.1054972
## 4337 0.13781392 0.12859229 0.1082367 0.1142069
## 4338 0.13781392 0.05274566 0.1082367 0.1142069
## 4339 0.07843137 0.12859229 0.1168756 0.1142069
## 4340 0.13781392 0.12859229 0.1168756 0.1142069
## 4341 0.13781392 0.05274566 0.1168756 0.1142069
## 4342 0.13781392 0.05274566 0.1082367 0.1054972
## 4343 0.11364176 0.05274566 0.1168756 0.1142069
## 4344 0.13781392 0.12859229 0.1082367 0.1142069
## 4345 0.07843137 0.05274566 0.1168756 0.1142069
## 4346 0.07843137 0.12859229 0.1082367 0.1142069
## 4347 0.13781392 0.12859229 0.1082367 0.1142069
## 4348 0.10650888 0.12859229 0.1168756 0.1142069
## 4349 0.13781392 0.12859229 0.1168756 0.1142069
## 4350 0.13781392 0.05274566 0.1082367 0.1142069
## 4351 0.13781392 0.12859229 0.1040100 0.1040100
## 4352 0.10978875 0.05274566 0.1082367 0.1142069
## 4353 0.11364176 0.05274566 0.1168756 0.1142069
## 4354 0.13781392 0.12859229 0.1168756 0.1142069
## 4355 0.07843137 0.12859229 0.1168756 0.1142069
## 4356 0.13781392 0.12859229 0.1082367 0.1142069
## 4357 0.13781392 0.12859229 0.1082367 0.1142069
## 4358 0.07843137 0.12859229 0.1168756 0.1054972
## 4359 0.07843137 0.12859229 0.1168756 0.1054972
## 4360 0.11364176 0.12859229 0.1168756 0.1142069
## 4361 0.10978875 0.12859229 0.1168756 0.1142069
## 4362 0.13781392 0.12859229 0.1168756 0.1142069
## 4363 0.07843137 0.12859229 0.1082367 0.1142069
## 4364 0.13781392 0.05274566 0.1082367 0.1142069
## 4365 0.10650888 0.12859229 0.1082367 0.1142069
## 4366 0.13781392 0.12859229 0.1168756 0.1142069
## 4367 0.13781392 0.12859229 0.1082367 0.1054972
## 4368 0.10978875 0.12859229 0.1082367 0.1142069
## 4369 0.07843137 0.12859229 0.1168756 0.1054972
## 4370 0.13781392 0.12859229 0.1168756 0.1142069
## 4371 0.07843137 0.05274566 0.1082367 0.1142069
## 4372 0.11364176 0.12859229 0.1168756 0.1142069
## 4373 0.07843137 0.12859229 0.1168756 0.1142069
## 4374 0.13781392 0.12859229 0.1168756 0.1054972
## 4375 0.11364176 0.12859229 0.1168756 0.1054972
## 4376 0.11364176 0.12859229 0.1082367 0.1142069
## 4377 0.13781392 0.12859229 0.1168756 0.1142069
## 4378 0.11364176 0.12859229 0.1082367 0.1142069
## 4379 0.13781392 0.12859229 0.1168756 0.1142069
## 4380 0.11364176 0.05274566 0.1168756 0.1142069
## 4381 0.11364176 0.12859229 0.1168756 0.1142069
## 4382 0.11364176 0.12859229 0.1082367 0.1142069
## 4383 0.13781392 0.12859229 0.1168756 0.1142069
## 4384 0.13781392 0.12859229 0.1168756 0.1142069
## 4385 0.10978875 0.05274566 0.1082367 0.1142069
## 4386 0.13781392 0.12859229 0.1082367 0.1142069
## 4387 0.10650888 0.12859229 0.1082367 0.1142069
## 4388 0.10978875 0.05274566 0.1168756 0.1054972
## 4389 0.13781392 0.12859229 0.1168756 0.1142069
## 4390 0.10650888 0.12859229 0.1082367 0.1142069
## 4391 0.13781392 0.12859229 0.1082367 0.1054972
## 4392 0.07843137 0.05274566 0.1082367 0.1142069
## 4393 0.07843137 0.05274566 0.1168756 0.1142069
## 4394 0.13958482 0.12859229 0.1082367 0.1142069
## 4395 0.07666667 0.12859229 0.1082367 0.1142069
## 4396 0.13781392 0.12859229 0.1168756 0.1142069
## 4397 0.07843137 0.12859229 0.1168756 0.1142069
## 4398 0.10978875 0.12859229 0.1082367 0.1142069
## 4399 0.13781392 0.12859229 0.1168756 0.1142069
## 4400 0.10650888 0.12859229 0.1082367 0.1142069
## 4401 0.11364176 0.12859229 0.1082367 0.1054972
## 4402 0.13958482 0.12859229 0.1082367 0.1142069
## 4403 0.13781392 0.12859229 0.1168756 0.1142069
## 4404 0.13781392 0.05274566 0.1168756 0.1142069
## 4405 0.11364176 0.12859229 0.1082367 0.1142069
## 4406 0.13781392 0.12859229 0.1082367 0.1142069
## 4407 0.13781392 0.12859229 0.1082367 0.1142069
## 4408 0.10978875 0.12859229 0.1168756 0.1054972
## 4409 0.10978875 0.05274566 0.1168756 0.1142069
## 4410 0.13958482 0.12859229 0.1082367 0.1142069
## 4411 0.07666667 0.12859229 0.1168756 0.1054972
## 4412 0.13781392 0.12859229 0.1168756 0.1142069
## 4413 0.10650888 0.12859229 0.1082367 0.1054972
## 4414 0.13958482 0.05274566 0.1168756 0.1054972
## 4415 0.10650888 0.05274566 0.1168756 0.1142069
## 4416 0.10650888 0.12859229 0.1082367 0.1142069
## 4417 0.07843137 0.05274566 0.1082367 0.1142069
## 4418 0.10650888 0.12859229 0.1168756 0.1142069
## 4419 0.10650888 0.12859229 0.1082367 0.1142069
## 4420 0.10650888 0.05274566 0.1082367 0.1142069
## 4421 0.10650888 0.12859229 0.1082367 0.1142069
## 4422 0.10650888 0.12859229 0.1082367 0.1142069
## 4423 0.10650888 0.05274566 0.1082367 0.1142069
## 4424 0.07666667 0.05274566 0.1168756 0.1142069
## 4425 0.07843137 0.12859229 0.1082367 0.1142069
## 4426 0.13781392 0.12859229 0.1082367 0.1142069
## 4427 0.13781392 0.12859229 0.1082367 0.1142069
## 4428 0.07843137 0.12859229 0.1168756 0.1142069
## 4429 0.13781392 0.12859229 0.1168756 0.1142069
## 4430 0.07666667 0.12859229 0.1168756 0.1142069
## 4431 0.10978875 0.12859229 0.1168756 0.1142069
## 4432 0.07843137 0.05274566 0.1168756 0.1142069
## 4433 0.10650888 0.12859229 0.1168756 0.1142069
## 4434 0.13781392 0.12859229 0.1168756 0.1142069
## 4435 0.13781392 0.12859229 0.1168756 0.1142069
## 4436 0.07666667 0.12859229 0.1040100 0.1040100
## 4437 0.13781392 0.12859229 0.1082367 0.1142069
## 4438 0.10650888 0.12859229 0.1082367 0.1054972
## 4439 0.10650888 0.12859229 0.1168756 0.1142069
## 4440 0.13781392 0.05274566 0.1082367 0.1142069
## 4441 0.10978875 0.12859229 0.1082367 0.1142069
## 4442 0.10650888 0.12859229 0.1168756 0.1142069
## 4443 0.10978875 0.12859229 0.1168756 0.1142069
## 4444 0.07843137 0.12859229 0.1168756 0.1142069
## 4445 0.10978875 0.12859229 0.1168756 0.1142069
## 4446 0.13781392 0.12859229 0.1082367 0.1142069
## 4447 0.10650888 0.12859229 0.1168756 0.1142069
## 4448 0.10650888 0.12859229 0.1040100 0.1040100
## 4449 0.13781392 0.12859229 0.1168756 0.1142069
## 4450 0.13781392 0.12859229 0.1168756 0.1054972
## 4451 0.07843137 0.12859229 0.1168756 0.1142069
## 4452 0.10650888 0.12859229 0.1168756 0.1142069
## 4453 0.11364176 0.12859229 0.1082367 0.1142069
## 4454 0.13781392 0.12859229 0.1168756 0.1142069
## 4455 0.10650888 0.12859229 0.1082367 0.1142069
## 4456 0.11364176 0.12859229 0.1082367 0.1054972
## 4457 0.10650888 0.12859229 0.1168756 0.1054972
## 4458 0.13781392 0.05274566 0.1168756 0.1142069
## 4459 0.13781392 0.12859229 0.1168756 0.1142069
## 4460 0.10650888 0.05274566 0.1168756 0.1142069
## 4461 0.10978875 0.05274566 0.1082367 0.1142069
## 4462 0.07666667 0.12859229 0.1168756 0.1142069
## 4463 0.11364176 0.12859229 0.1082367 0.1142069
## 4464 0.10978875 0.05274566 0.1082367 0.1142069
## 4465 0.13781392 0.05274566 0.1082367 0.1142069
## 4466 0.07843137 0.12859229 0.1168756 0.1142069
## 4467 0.07843137 0.12859229 0.1168756 0.1142069
## 4468 0.13781392 0.12859229 0.1168756 0.1142069
## 4469 0.07843137 0.12859229 0.1082367 0.1142069
## 4470 0.10978875 0.05274566 0.1082367 0.1142069
## 4471 0.11364176 0.12859229 0.1168756 0.1142069
## 4472 0.10650888 0.12859229 0.1082367 0.1142069
## 4473 0.11364176 0.12859229 0.1082367 0.1142069
## 4474 0.10978875 0.05274566 0.1082367 0.1142069
## 4475 0.07843137 0.12859229 0.1082367 0.1054972
## 4476 0.13781392 0.12859229 0.1168756 0.1142069
## 4477 0.10650888 0.12859229 0.1082367 0.1142069
## 4478 0.10650888 0.05274566 0.1168756 0.1142069
## 4479 0.07843137 0.12859229 0.1082367 0.1142069
## 4480 0.07843137 0.12859229 0.1082367 0.1142069
## 4481 0.10978875 0.05274566 0.1082367 0.1142069
## 4482 0.07666667 0.05274566 0.1168756 0.1142069
## 4483 0.11364176 0.12859229 0.1168756 0.1142069
## 4484 0.10978875 0.12859229 0.1082367 0.1142069
## 4485 0.10978875 0.05274566 0.1082367 0.1142069
## 4486 0.11364176 0.12859229 0.1168756 0.1142069
## 4487 0.11364176 0.12859229 0.1168756 0.1054972
## 4488 0.10650888 0.12859229 0.1082367 0.1142069
## 4489 0.13958482 0.12859229 0.1168756 0.1142069
## 4490 0.13781392 0.12859229 0.1168756 0.1054972
## 4491 0.10650888 0.12859229 0.1168756 0.1142069
## 4492 0.07843137 0.05274566 0.1082367 0.1142069
## 4493 0.10650888 0.12859229 0.1082367 0.1142069
## 4494 0.07843137 0.05274566 0.1168756 0.1142069
## 4495 0.13781392 0.12859229 0.1082367 0.1142069
## 4496 0.10650888 0.12859229 0.1168756 0.1142069
## 4497 0.13781392 0.12859229 0.1082367 0.1142069
## 4498 0.13781392 0.12859229 0.1168756 0.1142069
## 4499 0.13781392 0.12859229 0.1168756 0.1054972
## 4500 0.13781392 0.12859229 0.1168756 0.1142069
## 4501 0.13781392 0.12859229 0.1082367 0.1142069
## 4502 0.11364176 0.05274566 0.1168756 0.1142069
## 4503 0.13781392 0.12859229 0.1168756 0.1142069
## 4504 0.10650888 0.05274566 0.1168756 0.1142069
## 4505 0.10650888 0.12859229 0.1168756 0.1054972
## 4506 0.13781392 0.12859229 0.1168756 0.1054972
## 4507 0.07843137 0.12859229 0.1168756 0.1142069
## 4508 0.10650888 0.12859229 0.1082367 0.1054972
## 4509 0.07666667 0.12859229 0.1168756 0.1142069
## 4510 0.13781392 0.12859229 0.1082367 0.1142069
## 4511 0.11364176 0.12859229 0.1082367 0.1054972
## 4512 0.13781392 0.12859229 0.1082367 0.1142069
## 4513 0.13781392 0.12859229 0.1082367 0.1142069
## 4514 0.13781392 0.12859229 0.1168756 0.1142069
## 4515 0.07666667 0.12859229 0.1168756 0.1142069
## 4516 0.10650888 0.12859229 0.1082367 0.1142069
## 4517 0.11364176 0.12859229 0.1082367 0.1142069
## 4518 0.11364176 0.12859229 0.1168756 0.1054972
## 4519 0.13781392 0.12859229 0.1168756 0.1142069
## 4520 0.10650888 0.12859229 0.1168756 0.1142069
## 4521 0.10650888 0.05274566 0.1040100 0.1040100
## 4522 0.13781392 0.12859229 0.1082367 0.1142069
## 4523 0.07666667 0.12859229 0.1082367 0.1142069
## 4524 0.10650888 0.12859229 0.1082367 0.1142069
## 4525 0.11364176 0.05274566 0.1168756 0.1142069
## 4526 0.13781392 0.05274566 0.1168756 0.1142069
## 4527 0.07843137 0.12859229 0.1168756 0.1054972
## 4528 0.13958482 0.05274566 0.1168756 0.1142069
## 4529 0.11364176 0.12859229 0.1168756 0.1142069
## 4530 0.07666667 0.12859229 0.1168756 0.1142069
## 4531 0.07843137 0.12859229 0.1168756 0.1142069
## 4532 0.10650888 0.05274566 0.1040100 0.1040100
## 4533 0.07843137 0.12859229 0.1168756 0.1054972
## 4534 0.11364176 0.12859229 0.1168756 0.1054972
## 4535 0.11364176 0.05274566 0.1168756 0.1142069
## 4536 0.10650888 0.05274566 0.1168756 0.1142069
## 4537 0.11364176 0.12859229 0.1082367 0.1054972
## 4538 0.11364176 0.12859229 0.1082367 0.1054972
## 4539 0.13781392 0.12859229 0.1082367 0.1142069
## 4540 0.07666667 0.12859229 0.1082367 0.1142069
## 4541 0.07666667 0.05274566 0.1168756 0.1142069
## 4542 0.13781392 0.12859229 0.1168756 0.1142069
## 4543 0.11364176 0.12859229 0.1168756 0.1142069
## 4544 0.11364176 0.12859229 0.1168756 0.1142069
## 4545 0.10650888 0.05274566 0.1082367 0.1142069
## 4546 0.07843137 0.12859229 0.1082367 0.1142069
## 4547 0.13958482 0.12859229 0.1168756 0.1142069
## 4548 0.11364176 0.05274566 0.1082367 0.1142069
## 4549 0.10650888 0.12859229 0.1168756 0.1054972
## 4550 0.11364176 0.05274566 0.1082367 0.1142069
## 4551 0.10978875 0.05274566 0.1168756 0.1142069
## 4552 0.07843137 0.12859229 0.1082367 0.1142069
## 4553 0.13958482 0.12859229 0.1168756 0.1054972
## 4554 0.13781392 0.12859229 0.1082367 0.1142069
## 4555 0.11364176 0.12859229 0.1168756 0.1142069
## 4556 0.13781392 0.12859229 0.1168756 0.1142069
## 4557 0.13781392 0.12859229 0.1082367 0.1142069
## 4558 0.13781392 0.12859229 0.1082367 0.1054972
## 4559 0.13781392 0.12859229 0.1168756 0.1054972
## 4560 0.10650888 0.12859229 0.1082367 0.1054972
## 4561 0.07666667 0.05274566 0.1168756 0.1142069
## 4562 0.13781392 0.12859229 0.1168756 0.1054972
## 4563 0.07666667 0.12859229 0.1082367 0.1142069
## 4564 0.10650888 0.12859229 0.1082367 0.1142069
## 4565 0.07843137 0.12859229 0.1168756 0.1142069
## 4566 0.11364176 0.12859229 0.1082367 0.1142069
## 4567 0.07843137 0.05274566 0.1168756 0.1142069
## 4568 0.10650888 0.05274566 0.1168756 0.1142069
## 4569 0.11364176 0.12859229 0.1168756 0.1142069
## 4570 0.07666667 0.05274566 0.1082367 0.1142069
## 4571 0.13781392 0.12859229 0.1168756 0.1142069
## 4572 0.11364176 0.12859229 0.1168756 0.1054972
## 4573 0.10978875 0.12859229 0.1168756 0.1142069
## 4574 0.10978875 0.05274566 0.1082367 0.1142069
## 4575 0.10650888 0.05274566 0.1168756 0.1142069
## 4576 0.10650888 0.12859229 0.1168756 0.1142069
## 4577 0.13781392 0.05274566 0.1082367 0.1142069
## 4578 0.07843137 0.12859229 0.1168756 0.1142069
## 4579 0.07843137 0.12859229 0.1168756 0.1142069
## 4580 0.10978875 0.12859229 0.1082367 0.1054972
## 4581 0.13781392 0.12859229 0.1168756 0.1142069
## 4582 0.13781392 0.12859229 0.1082367 0.1054972
## 4583 0.07666667 0.05274566 0.1082367 0.1142069
## 4584 0.13781392 0.12859229 0.1082367 0.1142069
## 4585 0.07843137 0.05274566 0.1168756 0.1142069
## 4586 0.13781392 0.12859229 0.1082367 0.1142069
## 4587 0.13781392 0.12859229 0.1168756 0.1142069
## 4588 0.07843137 0.12859229 0.1082367 0.1142069
## 4589 0.07666667 0.05274566 0.1082367 0.1142069
## 4590 0.13781392 0.12859229 0.1082367 0.1142069
## 4591 0.11364176 0.12859229 0.1168756 0.1142069
## 4592 0.07843137 0.12859229 0.1082367 0.1054972
## 4593 0.10650888 0.12859229 0.1168756 0.1142069
## 4594 0.13781392 0.12859229 0.1082367 0.1142069
## 4595 0.10650888 0.12859229 0.1082367 0.1142069
## 4596 0.10978875 0.05274566 0.1168756 0.1142069
## 4597 0.13958482 0.12859229 0.1168756 0.1142069
## 4598 0.10650888 0.12859229 0.1168756 0.1142069
## 4599 0.10650888 0.12859229 0.1168756 0.1142069
## 4600 0.13781392 0.12859229 0.1168756 0.1142069
## 4601 0.07843137 0.12859229 0.1082367 0.1142069
## 4602 0.13781392 0.12859229 0.1082367 0.1142069
## 4603 0.13958482 0.12859229 0.1168756 0.1142069
## 4604 0.10650888 0.12859229 0.1168756 0.1142069
## 4605 0.10978875 0.05274566 0.1168756 0.1142069
## 4606 0.10650888 0.12859229 0.1168756 0.1142069
## 4607 0.10650888 0.12859229 0.1082367 0.1142069
## 4608 0.10650888 0.12859229 0.1082367 0.1142069
## 4609 0.10650888 0.12859229 0.1168756 0.1054972
## 4610 0.13781392 0.12859229 0.1082367 0.1142069
## 4611 0.13781392 0.12859229 0.1168756 0.1142069
## 4612 0.13781392 0.12859229 0.1082367 0.1142069
## 4613 0.13958482 0.12859229 0.1082367 0.1142069
## 4614 0.07843137 0.12859229 0.1168756 0.1142069
## 4615 0.13781392 0.12859229 0.1082367 0.1142069
## 4616 0.10650888 0.12859229 0.1168756 0.1054972
## 4617 0.07843137 0.12859229 0.1082367 0.1142069
## 4618 0.13781392 0.12859229 0.1168756 0.1142069
## 4619 0.13958482 0.12859229 0.1082367 0.1142069
## 4620 0.07843137 0.12859229 0.1082367 0.1142069
## 4621 0.10650888 0.12859229 0.1168756 0.1142069
## 4622 0.07843137 0.12859229 0.1082367 0.1142069
## 4623 0.11364176 0.12859229 0.1082367 0.1142069
## 4624 0.10650888 0.12859229 0.1168756 0.1142069
## 4625 0.13781392 0.12859229 0.1082367 0.1054972
## 4626 0.07666667 0.05274566 0.1168756 0.1142069
## 4627 0.10978875 0.12859229 0.1082367 0.1142069
## 4628 0.13781392 0.12859229 0.1082367 0.1142069
## 4629 0.13781392 0.12859229 0.1168756 0.1142069
## 4630 0.13781392 0.12859229 0.1082367 0.1142069
## 4631 0.13958482 0.05274566 0.1168756 0.1054972
## 4632 0.13958482 0.12859229 0.1168756 0.1142069
## 4633 0.13781392 0.12859229 0.1168756 0.1054972
## 4634 0.07843137 0.05274566 0.1040100 0.1040100
## 4635 0.11364176 0.12859229 0.1082367 0.1142069
## 4636 0.07666667 0.12859229 0.1168756 0.1142069
## 4637 0.07843137 0.12859229 0.1168756 0.1142069
## 4638 0.11364176 0.12859229 0.1040100 0.1040100
## 4639 0.07666667 0.12859229 0.1082367 0.1142069
## 4640 0.13781392 0.12859229 0.1082367 0.1054972
## 4641 0.13781392 0.12859229 0.1168756 0.1054972
## 4642 0.13781392 0.12859229 0.1082367 0.1142069
## 4643 0.10650888 0.12859229 0.1168756 0.1142069
## 4644 0.10650888 0.12859229 0.1082367 0.1142069
## 4645 0.10650888 0.05274566 0.1082367 0.1142069
## 4646 0.11364176 0.12859229 0.1082367 0.1142069
## 4647 0.10650888 0.12859229 0.1168756 0.1054972
## 4648 0.13781392 0.12859229 0.1168756 0.1142069
## 4649 0.10650888 0.12859229 0.1168756 0.1142069
## 4650 0.10978875 0.12859229 0.1168756 0.1142069
## 4651 0.10650888 0.12859229 0.1168756 0.1142069
## 4652 0.13781392 0.12859229 0.1082367 0.1142069
## 4653 0.13781392 0.12859229 0.1168756 0.1142069
## 4654 0.10650888 0.12859229 0.1168756 0.1054972
## 4655 0.10650888 0.12859229 0.1168756 0.1142069
## 4656 0.07843137 0.12859229 0.1168756 0.1142069
## 4657 0.13781392 0.12859229 0.1082367 0.1054972
## 4658 0.10650888 0.12859229 0.1168756 0.1142069
## 4659 0.13781392 0.12859229 0.1082367 0.1054972
## 4660 0.13781392 0.12859229 0.1082367 0.1142069
## 4661 0.11364176 0.12859229 0.1168756 0.1142069
## 4662 0.13781392 0.12859229 0.1082367 0.1054972
## 4663 0.07843137 0.05274566 0.1168756 0.1142069
## 4664 0.11364176 0.12859229 0.1082367 0.1054972
## 4665 0.10650888 0.12859229 0.1168756 0.1142069
## 4666 0.07666667 0.05274566 0.1082367 0.1142069
## 4667 0.13781392 0.12859229 0.1082367 0.1142069
## 4668 0.11364176 0.12859229 0.1082367 0.1142069
## 4669 0.13781392 0.12859229 0.1082367 0.1142069
## 4670 0.13781392 0.12859229 0.1040100 0.1040100
## 4671 0.10650888 0.05274566 0.1082367 0.1142069
## 4672 0.11364176 0.05274566 0.1168756 0.1142069
## 4673 0.13781392 0.12859229 0.1082367 0.1142069
## 4674 0.13781392 0.12859229 0.1168756 0.1142069
## 4675 0.07843137 0.05274566 0.1082367 0.1142069
## 4676 0.13781392 0.12859229 0.1082367 0.1142069
## 4677 0.10650888 0.12859229 0.1168756 0.1142069
## 4678 0.07843137 0.12859229 0.1168756 0.1142069
## 4679 0.07843137 0.12859229 0.1168756 0.1054972
## 4680 0.13781392 0.12859229 0.1168756 0.1142069
## 4681 0.07843137 0.12859229 0.1082367 0.1054972
## 4682 0.13781392 0.12859229 0.1168756 0.1142069
## 4683 0.13781392 0.12859229 0.1168756 0.1142069
## 4684 0.13781392 0.12859229 0.1082367 0.1142069
## 4685 0.10978875 0.05274566 0.1168756 0.1142069
## 4686 0.07666667 0.12859229 0.1082367 0.1054972
## 4687 0.10650888 0.12859229 0.1082367 0.1142069
## 4688 0.10650888 0.12859229 0.1168756 0.1142069
## 4689 0.10650888 0.12859229 0.1082367 0.1142069
## 4690 0.13781392 0.05274566 0.1168756 0.1142069
## 4691 0.10650888 0.12859229 0.1168756 0.1142069
## 4692 0.13781392 0.12859229 0.1168756 0.1142069
## 4693 0.13958482 0.12859229 0.1082367 0.1142069
## 4694 0.13781392 0.12859229 0.1168756 0.1142069
## 4695 0.07666667 0.12859229 0.1168756 0.1054972
## 4696 0.10650888 0.12859229 0.1082367 0.1142069
## 4697 0.07843137 0.12859229 0.1082367 0.1142069
## 4698 0.07843137 0.12859229 0.1168756 0.1142069
## 4699 0.07843137 0.05274566 0.1082367 0.1054972
## 4700 0.10978875 0.12859229 0.1168756 0.1142069
## 4701 0.10650888 0.12859229 0.1168756 0.1142069
## 4702 0.07843137 0.12859229 0.1168756 0.1142069
## 4703 0.10650888 0.12859229 0.1082367 0.1142069
## 4704 0.11364176 0.12859229 0.1168756 0.1142069
## 4705 0.10978875 0.12859229 0.1082367 0.1142069
## 4706 0.13781392 0.12859229 0.1082367 0.1142069
## 4707 0.13958482 0.05274566 0.1168756 0.1054972
## 4708 0.13781392 0.12859229 0.1168756 0.1142069
## 4709 0.07843137 0.12859229 0.1082367 0.1142069
## 4710 0.10978875 0.12859229 0.1082367 0.1142069
## 4711 0.13781392 0.12859229 0.1082367 0.1142069
## 4712 0.13781392 0.12859229 0.1082367 0.1142069
## 4713 0.11364176 0.12859229 0.1168756 0.1054972
## 4714 0.10650888 0.12859229 0.1082367 0.1142069
## 4715 0.10978875 0.12859229 0.1082367 0.1142069
## 4716 0.10650888 0.12859229 0.1168756 0.1054972
## 4717 0.10650888 0.12859229 0.1082367 0.1142069
## 4718 0.13781392 0.12859229 0.1168756 0.1142069
## 4719 0.10650888 0.12859229 0.1168756 0.1142069
## 4720 0.10650888 0.12859229 0.1082367 0.1142069
## 4721 0.13781392 0.12859229 0.1082367 0.1142069
## 4722 0.13781392 0.12859229 0.1168756 0.1142069
## 4723 0.13958482 0.05274566 0.1082367 0.1142069
## 4724 0.10650888 0.12859229 0.1168756 0.1142069
## 4725 0.13781392 0.12859229 0.1168756 0.1142069
## 4726 0.10650888 0.12859229 0.1082367 0.1142069
## 4727 0.13781392 0.05274566 0.1168756 0.1142069
## 4728 0.07843137 0.12859229 0.1040100 0.1040100
## 4729 0.10650888 0.12859229 0.1082367 0.1142069
## 4730 0.13781392 0.12859229 0.1168756 0.1142069
## 4731 0.13958482 0.05274566 0.1082367 0.1142069
## 4732 0.10650888 0.05274566 0.1168756 0.1142069
## 4733 0.10650888 0.12859229 0.1168756 0.1142069
## 4734 0.07666667 0.05274566 0.1082367 0.1142069
## 4735 0.07843137 0.12859229 0.1082367 0.1054972
## 4736 0.10650888 0.12859229 0.1082367 0.1142069
## 4737 0.13781392 0.12859229 0.1168756 0.1142069
## 4738 0.07843137 0.12859229 0.1168756 0.1142069
## 4739 0.11364176 0.12859229 0.1082367 0.1054972
## 4740 0.10650888 0.12859229 0.1168756 0.1142069
## 4741 0.13781392 0.12859229 0.1082367 0.1142069
## 4742 0.13781392 0.12859229 0.1168756 0.1054972
## 4743 0.07843137 0.12859229 0.1168756 0.1142069
## 4744 0.13781392 0.12859229 0.1168756 0.1142069
## 4745 0.13781392 0.12859229 0.1082367 0.1142069
## 4746 0.13781392 0.12859229 0.1082367 0.1142069
## 4747 0.10978875 0.12859229 0.1082367 0.1142069
## 4748 0.13781392 0.12859229 0.1168756 0.1142069
## 4749 0.13781392 0.05274566 0.1168756 0.1142069
## 4750 0.10978875 0.12859229 0.1082367 0.1142069
## 4751 0.10650888 0.12859229 0.1082367 0.1142069
## 4752 0.13781392 0.12859229 0.1168756 0.1142069
## 4753 0.11364176 0.12859229 0.1082367 0.1142069
## 4754 0.07843137 0.12859229 0.1168756 0.1142069
## 4755 0.13781392 0.12859229 0.1082367 0.1142069
## 4756 0.10978875 0.05274566 0.1168756 0.1142069
## 4757 0.10650888 0.12859229 0.1168756 0.1142069
## 4758 0.10978875 0.05274566 0.1168756 0.1142069
## 4759 0.11364176 0.12859229 0.1168756 0.1142069
## 4760 0.11364176 0.12859229 0.1082367 0.1142069
## 4761 0.10650888 0.12859229 0.1082367 0.1054972
## 4762 0.07843137 0.05274566 0.1168756 0.1142069
## 4763 0.10650888 0.05274566 0.1082367 0.1142069
## 4764 0.07843137 0.05274566 0.1082367 0.1142069
## 4765 0.10978875 0.05274566 0.1168756 0.1142069
## 4766 0.13781392 0.12859229 0.1082367 0.1142069
## 4767 0.10978875 0.05274566 0.1168756 0.1142069
## 4768 0.13781392 0.12859229 0.1168756 0.1142069
## 4769 0.13781392 0.12859229 0.1082367 0.1142069
## 4770 0.13781392 0.12859229 0.1168756 0.1142069
## 4771 0.10978875 0.12859229 0.1082367 0.1142069
## 4772 0.10978875 0.12859229 0.1168756 0.1142069
## 4773 0.13781392 0.12859229 0.1168756 0.1142069
## 4774 0.10650888 0.12859229 0.1082367 0.1142069
## 4775 0.07843137 0.12859229 0.1168756 0.1054972
## 4776 0.10650888 0.12859229 0.1082367 0.1142069
## 4777 0.10978875 0.12859229 0.1082367 0.1142069
## 4778 0.10650888 0.05274566 0.1168756 0.1142069
## 4779 0.10650888 0.12859229 0.1168756 0.1142069
## 4780 0.07843137 0.12859229 0.1168756 0.1142069
## 4781 0.07666667 0.12859229 0.1082367 0.1142069
## 4782 0.07666667 0.05274566 0.1168756 0.1142069
## 4783 0.07843137 0.12859229 0.1040100 0.1040100
## 4784 0.13958482 0.12859229 0.1168756 0.1142069
## 4785 0.13781392 0.12859229 0.1168756 0.1142069
## 4786 0.11364176 0.12859229 0.1082367 0.1142069
## 4787 0.13781392 0.12859229 0.1082367 0.1142069
## 4788 0.10978875 0.12859229 0.1168756 0.1142069
## 4789 0.13781392 0.12859229 0.1168756 0.1142069
## 4790 0.10650888 0.12859229 0.1082367 0.1142069
## 4791 0.10978875 0.12859229 0.1168756 0.1142069
## 4792 0.10650888 0.12859229 0.1082367 0.1142069
## 4793 0.11364176 0.05274566 0.1082367 0.1142069
## 4794 0.13781392 0.12859229 0.1168756 0.1142069
## 4795 0.13781392 0.12859229 0.1168756 0.1142069
## 4796 0.10978875 0.12859229 0.1082367 0.1142069
## 4797 0.13781392 0.12859229 0.1168756 0.1142069
## 4798 0.07666667 0.12859229 0.1168756 0.1142069
## 4799 0.10650888 0.12859229 0.1168756 0.1142069
## 4800 0.10978875 0.12859229 0.1168756 0.1054972
## 4801 0.11364176 0.12859229 0.1082367 0.1142069
## 4802 0.07843137 0.12859229 0.1082367 0.1142069
## 4803 0.13781392 0.12859229 0.1082367 0.1142069
## 4804 0.13958482 0.12859229 0.1082367 0.1142069
## 4805 0.13781392 0.12859229 0.1082367 0.1142069
## 4806 0.13781392 0.12859229 0.1082367 0.1142069
## 4807 0.07666667 0.05274566 0.1168756 0.1142069
## 4808 0.13781392 0.12859229 0.1168756 0.1142069
## 4809 0.07666667 0.05274566 0.1082367 0.1142069
## 4810 0.10650888 0.12859229 0.1168756 0.1142069
## 4811 0.07843137 0.12859229 0.1168756 0.1142069
## 4812 0.11364176 0.12859229 0.1168756 0.1142069
## 4813 0.13781392 0.12859229 0.1168756 0.1142069
## 4814 0.13781392 0.12859229 0.1082367 0.1054972
## 4815 0.13781392 0.12859229 0.1168756 0.1142069
## 4816 0.13781392 0.12859229 0.1168756 0.1142069
## 4817 0.10650888 0.12859229 0.1168756 0.1142069
## 4818 0.13781392 0.12859229 0.1168756 0.1142069
## 4819 0.07843137 0.05274566 0.1082367 0.1054972
## 4820 0.13781392 0.12859229 0.1082367 0.1142069
## 4821 0.13781392 0.12859229 0.1168756 0.1142069
## 4822 0.11364176 0.05274566 0.1082367 0.1142069
## 4823 0.10650888 0.12859229 0.1082367 0.1142069
## 4824 0.13781392 0.12859229 0.1082367 0.1142069
## 4825 0.10978875 0.05274566 0.1168756 0.1142069
## 4826 0.07843137 0.12859229 0.1082367 0.1142069
## 4827 0.13781392 0.12859229 0.1082367 0.1142069
## 4828 0.10650888 0.12859229 0.1168756 0.1142069
## 4829 0.13781392 0.12859229 0.1082367 0.1142069
## 4830 0.10650888 0.05274566 0.1168756 0.1142069
## 4831 0.07843137 0.12859229 0.1082367 0.1142069
## 4832 0.10650888 0.12859229 0.1168756 0.1142069
## 4833 0.11364176 0.12859229 0.1082367 0.1142069
## 4834 0.13781392 0.12859229 0.1168756 0.1142069
## 4835 0.11364176 0.12859229 0.1082367 0.1142069
## 4836 0.13781392 0.12859229 0.1082367 0.1142069
## 4837 0.13958482 0.12859229 0.1082367 0.1142069
## 4838 0.10978875 0.12859229 0.1040100 0.1040100
## 4839 0.13781392 0.12859229 0.1168756 0.1142069
## 4840 0.13781392 0.12859229 0.1082367 0.1142069
## 4841 0.11364176 0.05274566 0.1168756 0.1054972
## 4842 0.07843137 0.12859229 0.1082367 0.1142069
## 4843 0.10650888 0.12859229 0.1168756 0.1142069
## 4844 0.13781392 0.05274566 0.1082367 0.1142069
## 4845 0.10978875 0.05274566 0.1082367 0.1142069
## 4846 0.10650888 0.12859229 0.1168756 0.1054972
## 4847 0.10978875 0.05274566 0.1082367 0.1142069
## 4848 0.10650888 0.05274566 0.1082367 0.1142069
## 4849 0.13781392 0.12859229 0.1082367 0.1142069
## 4850 0.10650888 0.05274566 0.1168756 0.1054972
## 4851 0.13781392 0.12859229 0.1168756 0.1054972
## 4852 0.11364176 0.05274566 0.1168756 0.1142069
## 4853 0.13958482 0.12859229 0.1040100 0.1040100
## 4854 0.10650888 0.12859229 0.1082367 0.1142069
## 4855 0.11364176 0.12859229 0.1082367 0.1054972
## 4856 0.07843137 0.12859229 0.1168756 0.1142069
## 4857 0.07843137 0.05274566 0.1082367 0.1142069
## 4858 0.10650888 0.12859229 0.1040100 0.1040100
## 4859 0.10650888 0.12859229 0.1168756 0.1142069
## 4860 0.13781392 0.12859229 0.1082367 0.1142069
## 4861 0.07843137 0.12859229 0.1082367 0.1054972
## 4862 0.07843137 0.12859229 0.1168756 0.1142069
## 4863 0.07843137 0.12859229 0.1082367 0.1054972
## 4864 0.07666667 0.12859229 0.1040100 0.1040100
## 4865 0.10650888 0.12859229 0.1082367 0.1142069
## 4866 0.10978875 0.12859229 0.1168756 0.1054972
## 4867 0.13781392 0.12859229 0.1168756 0.1142069
## 4868 0.10650888 0.12859229 0.1082367 0.1142069
## 4869 0.10650888 0.12859229 0.1168756 0.1142069
## 4870 0.11364176 0.12859229 0.1082367 0.1142069
## 4871 0.07843137 0.05274566 0.1082367 0.1142069
## 4872 0.13958482 0.12859229 0.1168756 0.1054972
## 4873 0.07843137 0.05274566 0.1082367 0.1142069
## 4874 0.11364176 0.12859229 0.1082367 0.1142069
## 4875 0.13958482 0.12859229 0.1168756 0.1142069
## 4876 0.11364176 0.12859229 0.1082367 0.1142069
## 4877 0.10650888 0.12859229 0.1168756 0.1142069
## 4878 0.10650888 0.12859229 0.1082367 0.1142069
## 4879 0.07666667 0.05274566 0.1082367 0.1142069
## 4880 0.13781392 0.12859229 0.1082367 0.1142069
## 4881 0.13781392 0.12859229 0.1168756 0.1142069
## 4882 0.13781392 0.12859229 0.1168756 0.1142069
## 4883 0.07843137 0.12859229 0.1168756 0.1142069
## 4884 0.13781392 0.12859229 0.1082367 0.1142069
## 4885 0.07843137 0.12859229 0.1082367 0.1142069
## 4886 0.07843137 0.12859229 0.1168756 0.1142069
## 4887 0.10650888 0.12859229 0.1168756 0.1142069
## 4888 0.10978875 0.12859229 0.1082367 0.1142069
## 4889 0.07843137 0.12859229 0.1168756 0.1142069
## 4890 0.13781392 0.12859229 0.1082367 0.1142069
## 4891 0.13781392 0.05274566 0.1168756 0.1054972
## 4892 0.13781392 0.12859229 0.1082367 0.1142069
## 4893 0.07843137 0.12859229 0.1168756 0.1142069
## 4894 0.13781392 0.12859229 0.1082367 0.1142069
## 4895 0.07843137 0.12859229 0.1082367 0.1142069
## 4896 0.13958482 0.12859229 0.1168756 0.1142069
## 4897 0.10650888 0.12859229 0.1082367 0.1142069
## 4898 0.10978875 0.12859229 0.1168756 0.1054972
## 4899 0.11364176 0.12859229 0.1168756 0.1142069
## 4900 0.13781392 0.12859229 0.1168756 0.1142069
## 4901 0.10650888 0.12859229 0.1082367 0.1142069
## 4902 0.11364176 0.12859229 0.1168756 0.1142069
## 4903 0.10650888 0.12859229 0.1082367 0.1142069
## 4904 0.13781392 0.05274566 0.1168756 0.1142069
## 4905 0.11364176 0.12859229 0.1168756 0.1142069
## 4906 0.13781392 0.12859229 0.1082367 0.1142069
## 4907 0.10650888 0.05274566 0.1168756 0.1142069
## 4908 0.10978875 0.12859229 0.1168756 0.1054972
## 4909 0.10978875 0.12859229 0.1082367 0.1142069
## 4910 0.07843137 0.12859229 0.1168756 0.1142069
## 4911 0.11364176 0.12859229 0.1082367 0.1142069
## 4912 0.10978875 0.12859229 0.1168756 0.1142069
## 4913 0.10650888 0.12859229 0.1082367 0.1142069
## 4914 0.13781392 0.12859229 0.1168756 0.1142069
## 4915 0.13781392 0.05274566 0.1168756 0.1054972
## 4916 0.10650888 0.12859229 0.1168756 0.1142069
## 4917 0.13781392 0.12859229 0.1082367 0.1142069
## 4918 0.13958482 0.12859229 0.1168756 0.1142069
## 4919 0.13781392 0.12859229 0.1082367 0.1142069
## 4920 0.13781392 0.05274566 0.1082367 0.1142069
## 4921 0.13781392 0.12859229 0.1168756 0.1142069
## 4922 0.13781392 0.12859229 0.1082367 0.1142069
## 4923 0.11364176 0.05274566 0.1082367 0.1054972
## 4924 0.10650888 0.12859229 0.1168756 0.1054972
## 4925 0.10978875 0.12859229 0.1082367 0.1142069
## 4926 0.10650888 0.12859229 0.1082367 0.1054972
## 4927 0.07843137 0.12859229 0.1082367 0.1054972
## 4928 0.11364176 0.12859229 0.1082367 0.1142069
## 4929 0.10650888 0.12859229 0.1168756 0.1054972
## 4930 0.07843137 0.12859229 0.1168756 0.1142069
## 4931 0.11364176 0.05274566 0.1082367 0.1142069
## 4932 0.13781392 0.12859229 0.1168756 0.1142069
## 4933 0.13781392 0.05274566 0.1082367 0.1054972
## 4934 0.10978875 0.12859229 0.1168756 0.1054972
## 4935 0.11364176 0.12859229 0.1168756 0.1142069
## 4936 0.10978875 0.05274566 0.1168756 0.1142069
## 4937 0.13781392 0.12859229 0.1168756 0.1142069
## 4938 0.07843137 0.12859229 0.1168756 0.1142069
## 4939 0.07843137 0.05274566 0.1082367 0.1142069
## 4940 0.10650888 0.12859229 0.1082367 0.1054972
## 4941 0.10978875 0.12859229 0.1082367 0.1142069
## 4942 0.11364176 0.12859229 0.1082367 0.1054972
## 4943 0.10978875 0.12859229 0.1168756 0.1142069
## 4944 0.13781392 0.12859229 0.1082367 0.1142069
## 4945 0.13781392 0.12859229 0.1168756 0.1054972
## 4946 0.07843137 0.12859229 0.1082367 0.1142069
## 4947 0.13781392 0.12859229 0.1082367 0.1142069
## 4948 0.07666667 0.12859229 0.1082367 0.1142069
## 4949 0.13958482 0.05274566 0.1168756 0.1142069
## 4950 0.13781392 0.12859229 0.1168756 0.1142069
## 4951 0.07843137 0.05274566 0.1168756 0.1054972
## 4952 0.13781392 0.12859229 0.1168756 0.1142069
## 4953 0.11364176 0.12859229 0.1082367 0.1142069
## 4954 0.10650888 0.12859229 0.1168756 0.1142069
## 4955 0.07666667 0.12859229 0.1168756 0.1142069
## 4956 0.13781392 0.12859229 0.1168756 0.1142069
## 4957 0.10978875 0.05274566 0.1168756 0.1142069
## 4958 0.10978875 0.12859229 0.1082367 0.1142069
## 4959 0.10650888 0.05274566 0.1082367 0.1142069
## 4960 0.11364176 0.12859229 0.1168756 0.1054972
## 4961 0.13781392 0.12859229 0.1168756 0.1142069
## 4962 0.13781392 0.12859229 0.1168756 0.1142069
## 4963 0.13958482 0.12859229 0.1168756 0.1142069
## 4964 0.10650888 0.12859229 0.1168756 0.1142069
## 4965 0.07666667 0.12859229 0.1082367 0.1142069
## 4966 0.10650888 0.05274566 0.1168756 0.1142069
## 4967 0.11364176 0.12859229 0.1082367 0.1054972
## 4968 0.10650888 0.12859229 0.1082367 0.1142069
## 4969 0.13781392 0.12859229 0.1082367 0.1054972
## 4970 0.13781392 0.12859229 0.1082367 0.1142069
## 4971 0.13781392 0.05274566 0.1168756 0.1142069
## 4972 0.11364176 0.05274566 0.1168756 0.1142069
## 4973 0.13781392 0.05274566 0.1168756 0.1054972
## 4974 0.10978875 0.05274566 0.1168756 0.1054972
## 4975 0.10650888 0.12859229 0.1082367 0.1142069
## 4976 0.13781392 0.12859229 0.1168756 0.1142069
## 4977 0.07843137 0.12859229 0.1082367 0.1142069
## 4978 0.11364176 0.12859229 0.1082367 0.1142069
## 4979 0.07843137 0.05274566 0.1168756 0.1142069
## 4980 0.10650888 0.12859229 0.1168756 0.1142069
## 4981 0.11364176 0.12859229 0.1168756 0.1142069
## 4982 0.13781392 0.12859229 0.1082367 0.1054972
## 4983 0.13958482 0.12859229 0.1168756 0.1142069
## 4984 0.13781392 0.12859229 0.1082367 0.1142069
## 4985 0.13781392 0.05274566 0.1168756 0.1142069
## 4986 0.11364176 0.12859229 0.1082367 0.1142069
## 4987 0.13781392 0.12859229 0.1040100 0.1040100
## 4988 0.07666667 0.12859229 0.1082367 0.1142069
## 4989 0.10650888 0.12859229 0.1168756 0.1142069
## 4990 0.10650888 0.12859229 0.1082367 0.1054972
## 4991 0.10650888 0.05274566 0.1082367 0.1142069
## 4992 0.10650888 0.12859229 0.1168756 0.1142069
## 4993 0.07843137 0.12859229 0.1168756 0.1142069
## 4994 0.10978875 0.05274566 0.1082367 0.1142069
## 4995 0.10978875 0.12859229 0.1082367 0.1142069
## 4996 0.10650888 0.12859229 0.1040100 0.1040100
## 4997 0.10978875 0.12859229 0.1168756 0.1142069
## 4998 0.13958482 0.12859229 0.1082367 0.1142069
## 4999 0.13781392 0.12859229 0.1168756 0.1142069
## contact_encoded month_encoded day_of_week_encoded poutcome_encoded
## 1 0.14806335 0.06243174 0.11410336 0.14969714
## 2 0.14806335 0.09967090 0.09814869 0.14969714
## 3 0.14806335 0.06243174 0.12152375 0.14969714
## 4 0.14806335 0.06243174 0.10667727 0.14969714
## 5 0.14806335 0.45296167 0.12152375 0.14969714
## 6 0.14806335 0.06243174 0.12152375 0.14969714
## 7 0.14806335 0.06243174 0.09814869 0.14969714
## 8 0.14806335 0.06243174 0.11410336 0.14969714
## 9 0.14806335 0.06243174 0.10667727 0.14969714
## 10 0.14806335 0.06243174 0.11410336 0.14969714
## 11 0.14806335 0.21582397 0.10667727 0.14969714
## 12 0.14806335 0.09932349 0.11410336 0.14969714
## 13 0.14806335 0.21582397 0.10667727 0.14969714
## 14 0.14806335 0.09932349 0.12152375 0.14969714
## 15 0.05072162 0.09967090 0.12272101 0.14969714
## 16 0.14806335 0.06243174 0.12152375 0.14969714
## 17 0.05072162 0.43750000 0.10667727 0.14969714
## 18 0.14806335 0.21582397 0.12152375 0.14969714
## 19 0.14806335 0.06243174 0.10667727 0.14969714
## 20 0.14806335 0.06243174 0.10667727 0.14969714
## 21 0.14806335 0.09932349 0.12272101 0.14969714
## 22 0.14806335 0.10363527 0.09814869 0.14969714
## 23 0.14806335 0.06243174 0.09814869 0.14969714
## 24 0.14806335 0.09967090 0.12152375 0.14969714
## 25 0.14806335 0.51535088 0.10667727 0.14969714
## 26 0.14806335 0.21582397 0.12152375 0.14969714
## 27 0.14806335 0.21582397 0.12152375 0.14969714
## 28 0.14806335 0.06243174 0.12152375 0.14969714
## 29 0.14806335 0.06243174 0.10667727 0.14969714
## 30 0.14806335 0.06243174 0.09814869 0.14969714
## 31 0.14806335 0.09932349 0.09814869 0.14969714
## 32 0.14806335 0.06243174 0.12152375 0.14969714
## 33 0.14806335 0.09932349 0.12272101 0.14969714
## 34 0.14806335 0.06243174 0.12152375 0.14969714
## 35 0.14806335 0.09932349 0.12152375 0.14969714
## 36 0.14806335 0.06243174 0.12152375 0.14969714
## 37 0.14806335 0.09932349 0.12152375 0.14969714
## 38 0.14806335 0.43750000 0.09814869 0.14969714
## 39 0.14806335 0.51535088 0.09814869 0.14969714
## 40 0.14806335 0.09932349 0.11410336 0.14969714
## 41 0.14806335 0.09932349 0.10667727 0.14969714
## 42 0.14806335 0.45296167 0.12152375 0.14969714
## 43 0.14806335 0.06243174 0.09814869 0.14969714
## 44 0.14806335 0.06243174 0.12152375 0.14969714
## 45 0.14806335 0.48076923 0.12152375 0.14969714
## 46 0.14806335 0.06243174 0.12152375 0.14969714
## 47 0.14806335 0.06243174 0.10667727 0.14969714
## 48 0.14806335 0.21582397 0.12152375 0.14969714
## 49 0.14806335 0.09932349 0.10667727 0.14969714
## 50 0.14806335 0.06243174 0.11410336 0.14969714
## 51 0.14806335 0.06243174 0.12152375 0.14969714
## 52 0.14806335 0.06243174 0.12272101 0.14969714
## 53 0.14806335 0.06243174 0.12272101 0.14969714
## 54 0.14806335 0.06243174 0.12272101 0.14969714
## 55 0.14806335 0.09932349 0.09814869 0.14969714
## 56 0.14806335 0.21582397 0.10667727 0.14969714
## 57 0.14806335 0.09932349 0.09814869 0.14969714
## 58 0.14806335 0.06243174 0.12152375 0.14969714
## 59 0.14806335 0.06243174 0.09814869 0.14969714
## 60 0.14806335 0.06243174 0.10667727 0.14969714
## 61 0.14806335 0.10363527 0.09814869 0.14969714
## 62 0.14806335 0.06243174 0.12152375 0.14969714
## 63 0.14806335 0.48076923 0.09814869 0.14969714
## 64 0.14806335 0.10363527 0.10667727 0.14969714
## 65 0.05072162 0.06243174 0.12272101 0.14969714
## 66 0.14806335 0.06243174 0.12152375 0.14969714
## 67 0.14806335 0.21582397 0.12152375 0.14969714
## 68 0.14806335 0.48076923 0.12152375 0.14969714
## 69 0.14806335 0.09932349 0.11410336 0.14969714
## 70 0.14806335 0.21582397 0.12152375 0.14969714
## 71 0.14806335 0.06243174 0.12152375 0.14969714
## 72 0.14806335 0.06243174 0.12152375 0.14969714
## 73 0.14806335 0.06243174 0.10667727 0.14969714
## 74 0.14806335 0.09932349 0.09814869 0.14969714
## 75 0.14806335 0.06243174 0.12272101 0.14969714
## 76 0.14806335 0.09932349 0.12152375 0.14969714
## 77 0.14806335 0.06243174 0.11410336 0.14969714
## 78 0.14806335 0.21582397 0.10667727 0.14969714
## 79 0.14806335 0.06243174 0.12152375 0.14969714
## 80 0.14806335 0.06243174 0.10667727 0.14969714
## 81 0.14806335 0.21582397 0.12152375 0.14969714
## 82 0.14806335 0.45296167 0.11410336 0.14969714
## 83 0.05072162 0.51535088 0.11410336 0.14969714
## 84 0.14806335 0.45296167 0.09814869 0.14969714
## 85 0.14806335 0.06243174 0.12152375 0.14969714
## 86 0.14806335 0.10363527 0.10667727 0.14969714
## 87 0.14806335 0.21582397 0.09814869 0.14969714
## 88 0.14806335 0.10363527 0.10667727 0.14969714
## 89 0.14806335 0.06243174 0.11410336 0.14969714
## 90 0.14806335 0.06243174 0.09814869 0.14969714
## 91 0.14806335 0.06243174 0.11410336 0.14969714
## 92 0.14806335 0.06243174 0.12152375 0.14969714
## 93 0.14806335 0.06243174 0.12272101 0.14969714
## 94 0.14806335 0.09932349 0.12152375 0.14969714
## 95 0.14806335 0.10363527 0.10667727 0.14969714
## 96 0.14806335 0.06243174 0.10667727 0.14969714
## 97 0.14806335 0.10363527 0.12152375 0.14969714
## 98 0.14806335 0.09932349 0.12152375 0.14969714
## 99 0.14806335 0.09293746 0.12152375 0.14969714
## 100 0.14806335 0.21582397 0.10667727 0.14969714
## 101 0.14806335 0.06243174 0.12152375 0.14969714
## 102 0.14806335 0.09293746 0.10667727 0.14969714
## 103 0.14806335 0.06243174 0.10667727 0.14969714
## 104 0.14806335 0.21582397 0.12152375 0.14969714
## 105 0.14806335 0.21582397 0.12152375 0.14969714
## 106 0.14806335 0.21582397 0.10667727 0.14969714
## 107 0.14806335 0.06243174 0.09814869 0.14969714
## 108 0.14806335 0.09932349 0.10667727 0.14969714
## 109 0.14806335 0.21582397 0.10667727 0.14969714
## 110 0.14806335 0.48076923 0.09814869 0.14969714
## 111 0.14806335 0.09293746 0.11410336 0.14969714
## 112 0.14806335 0.09967090 0.11410336 0.14969714
## 113 0.05072162 0.45296167 0.11410336 0.14969714
## 114 0.14806335 0.06243174 0.09814869 0.14969714
## 115 0.14806335 0.09967090 0.12272101 0.14969714
## 116 0.14806335 0.06243174 0.12152375 0.14969714
## 117 0.14806335 0.45296167 0.10667727 0.14969714
## 118 0.14806335 0.09932349 0.10667727 0.14969714
## 119 0.14806335 0.09932349 0.10667727 0.14969714
## 120 0.14806335 0.06243174 0.10667727 0.14969714
## 121 0.14806335 0.06243174 0.11410336 0.14969714
## 122 0.14806335 0.06243174 0.09814869 0.14969714
## 123 0.14806335 0.06243174 0.12152375 0.14969714
## 124 0.14806335 0.09932349 0.11410336 0.14969714
## 125 0.14806335 0.45296167 0.11410336 0.14969714
## 126 0.14806335 0.09932349 0.12152375 0.14969714
## 127 0.14806335 0.10363527 0.12272101 0.14969714
## 128 0.14806335 0.21582397 0.12152375 0.14969714
## 129 0.14806335 0.09967090 0.12152375 0.14969714
## 130 0.14806335 0.06243174 0.11410336 0.14969714
## 131 0.14806335 0.06243174 0.11410336 0.14969714
## 132 0.14806335 0.06243174 0.09814869 0.14969714
## 133 0.14806335 0.09932349 0.11410336 0.14969714
## 134 0.14806335 0.09932349 0.11410336 0.14969714
## 135 0.14806335 0.06243174 0.11410336 0.14969714
## 136 0.14806335 0.06243174 0.12152375 0.14969714
## 137 0.14806335 0.06243174 0.10667727 0.14969714
## 138 0.14806335 0.21582397 0.10667727 0.14969714
## 139 0.14806335 0.09967090 0.11410336 0.14969714
## 140 0.14806335 0.06243174 0.10667727 0.14969714
## 141 0.05072162 0.09967090 0.12272101 0.14969714
## 142 0.14806335 0.06243174 0.10667727 0.14969714
## 143 0.14806335 0.09932349 0.10667727 0.14969714
## 144 0.14806335 0.06243174 0.11410336 0.14969714
## 145 0.14806335 0.09932349 0.11410336 0.14969714
## 146 0.14806335 0.09932349 0.10667727 0.14969714
## 147 0.14806335 0.21582397 0.10667727 0.14969714
## 148 0.14806335 0.06243174 0.10667727 0.14969714
## 149 0.14806335 0.06243174 0.09814869 0.14969714
## 150 0.14806335 0.06243174 0.10667727 0.14969714
## 151 0.14806335 0.06243174 0.12272101 0.14969714
## 152 0.14806335 0.06243174 0.10667727 0.14969714
## 153 0.14806335 0.06243174 0.11410336 0.14969714
## 154 0.05072162 0.06243174 0.10667727 0.14969714
## 155 0.14806335 0.21582397 0.09814869 0.14969714
## 156 0.14806335 0.48076923 0.10667727 0.14969714
## 157 0.14806335 0.09932349 0.12152375 0.14969714
## 158 0.14806335 0.06243174 0.11410336 0.14969714
## 159 0.14806335 0.21582397 0.12152375 0.14969714
## 160 0.14806335 0.06243174 0.12272101 0.14969714
## 161 0.14806335 0.10363527 0.12152375 0.14969714
## 162 0.14806335 0.09932349 0.10667727 0.14969714
## 163 0.14806335 0.21582397 0.12152375 0.14969714
## 164 0.14806335 0.06243174 0.10667727 0.14969714
## 165 0.14806335 0.09932349 0.09814869 0.14969714
## 166 0.14806335 0.06243174 0.12152375 0.14969714
## 167 0.14806335 0.06243174 0.12152375 0.14969714
## 168 0.14806335 0.06243174 0.10667727 0.14969714
## 169 0.14806335 0.06243174 0.12272101 0.14969714
## 170 0.14806335 0.21582397 0.10667727 0.14969714
## 171 0.14806335 0.09932349 0.11410336 0.14969714
## 172 0.14806335 0.06243174 0.12152375 0.14969714
## 173 0.14806335 0.06243174 0.12272101 0.14969714
## 174 0.14806335 0.45296167 0.10667727 0.14969714
## 175 0.14806335 0.48076923 0.12152375 0.14969714
## 176 0.14806335 0.09932349 0.10667727 0.14969714
## 177 0.14806335 0.21582397 0.11410336 0.14969714
## 178 0.14806335 0.09932349 0.12152375 0.14969714
## 179 0.14806335 0.43750000 0.12272101 0.14969714
## 180 0.14806335 0.06243174 0.10667727 0.14969714
## 181 0.14806335 0.09932349 0.11410336 0.14969714
## 182 0.14806335 0.45296167 0.12152375 0.14969714
## 183 0.14806335 0.06243174 0.12272101 0.14969714
## 184 0.14806335 0.10363527 0.12152375 0.14969714
## 185 0.14806335 0.06243174 0.11410336 0.14969714
## 186 0.14806335 0.06243174 0.10667727 0.14969714
## 187 0.14806335 0.06243174 0.10667727 0.14969714
## 188 0.14806335 0.06243174 0.09814869 0.14969714
## 189 0.14806335 0.06243174 0.09814869 0.14969714
## 190 0.14806335 0.09932349 0.10667727 0.14969714
## 191 0.05072162 0.09932349 0.11410336 0.14969714
## 192 0.14806335 0.06243174 0.11410336 0.14969714
## 193 0.14806335 0.21582397 0.12152375 0.14969714
## 194 0.14806335 0.10363527 0.12152375 0.14969714
## 195 0.14806335 0.06243174 0.10667727 0.14969714
## 196 0.14806335 0.06243174 0.10667727 0.14969714
## 197 0.14806335 0.06243174 0.12152375 0.14969714
## 198 0.05072162 0.06243174 0.12272101 0.14969714
## 199 0.14806335 0.09932349 0.11410336 0.14969714
## 200 0.14806335 0.09932349 0.12272101 0.14969714
## 201 0.14806335 0.09932349 0.12152375 0.14969714
## 202 0.14806335 0.21582397 0.09814869 0.14969714
## 203 0.14806335 0.09932349 0.11410336 0.14969714
## 204 0.14806335 0.09932349 0.12152375 0.14969714
## 205 0.14806335 0.09932349 0.10667727 0.14969714
## 206 0.14806335 0.09932349 0.09814869 0.14969714
## 207 0.14806335 0.09932349 0.11410336 0.14969714
## 208 0.14806335 0.06243174 0.09814869 0.14969714
## 209 0.05072162 0.21582397 0.12152375 0.14969714
## 210 0.14806335 0.06243174 0.10667727 0.14969714
## 211 0.14806335 0.21582397 0.12152375 0.14969714
## 212 0.14806335 0.06243174 0.12152375 0.14969714
## 213 0.14806335 0.06243174 0.12152375 0.14969714
## 214 0.14806335 0.06243174 0.12272101 0.14969714
## 215 0.14806335 0.06243174 0.09814869 0.14969714
## 216 0.14806335 0.09293746 0.09814869 0.14969714
## 217 0.14806335 0.09932349 0.11410336 0.14969714
## 218 0.14806335 0.09967090 0.11410336 0.14969714
## 219 0.05072162 0.09293746 0.12152375 0.14969714
## 220 0.14806335 0.06243174 0.11410336 0.14969714
## 221 0.14806335 0.06243174 0.12152375 0.14969714
## 222 0.14806335 0.21582397 0.11410336 0.14969714
## 223 0.14806335 0.06243174 0.10667727 0.14969714
## 224 0.14806335 0.06243174 0.10667727 0.14969714
## 225 0.14806335 0.43750000 0.09814869 0.14969714
## 226 0.14806335 0.51535088 0.09814869 0.14969714
## 227 0.14806335 0.09293746 0.12152375 0.14969714
## 228 0.05072162 0.10363527 0.11410336 0.14969714
## 229 0.14806335 0.06243174 0.12272101 0.14969714
## 230 0.14806335 0.06243174 0.11410336 0.14969714
## 231 0.14806335 0.21582397 0.10667727 0.14969714
## 232 0.14806335 0.48076923 0.12272101 0.14969714
## 233 0.14806335 0.06243174 0.11410336 0.14969714
## 234 0.14806335 0.06243174 0.12272101 0.14969714
## 235 0.14806335 0.06243174 0.12272101 0.14969714
## 236 0.14806335 0.06243174 0.10667727 0.14969714
## 237 0.14806335 0.06243174 0.11410336 0.14969714
## 238 0.14806335 0.21582397 0.11410336 0.14969714
## 239 0.14806335 0.06243174 0.12272101 0.14969714
## 240 0.14806335 0.06243174 0.10667727 0.14969714
## 241 0.14806335 0.21582397 0.12272101 0.14969714
## 242 0.14806335 0.06243174 0.12152375 0.14969714
## 243 0.14806335 0.09932349 0.12272101 0.14969714
## 244 0.14806335 0.21582397 0.12152375 0.14969714
## 245 0.14806335 0.48076923 0.09814869 0.14969714
## 246 0.14806335 0.06243174 0.12152375 0.14969714
## 247 0.14806335 0.09932349 0.12272101 0.14969714
## 248 0.14806335 0.06243174 0.12152375 0.14969714
## 249 0.14806335 0.09293746 0.12152375 0.14969714
## 250 0.14806335 0.43750000 0.09814869 0.14969714
## 251 0.14806335 0.06243174 0.12272101 0.14969714
## 252 0.05072162 0.09932349 0.09814869 0.14969714
## 253 0.14806335 0.09932349 0.09814869 0.14969714
## 254 0.14806335 0.06243174 0.12152375 0.14969714
## 255 0.14806335 0.06243174 0.12272101 0.14969714
## 256 0.14806335 0.09932349 0.10667727 0.14969714
## 257 0.14806335 0.06243174 0.11410336 0.14969714
## 258 0.14806335 0.09932349 0.12272101 0.14969714
## 259 0.14806335 0.21582397 0.10667727 0.14969714
## 260 0.14806335 0.06243174 0.11410336 0.14969714
## 261 0.14806335 0.21582397 0.12152375 0.14969714
## 262 0.14806335 0.09967090 0.10667727 0.14969714
## 263 0.14806335 0.06243174 0.10667727 0.14969714
## 264 0.14806335 0.09293746 0.12152375 0.14969714
## 265 0.14806335 0.09932349 0.11410336 0.14969714
## 266 0.14806335 0.06243174 0.11410336 0.14969714
## 267 0.14806335 0.06243174 0.12152375 0.14969714
## 268 0.14806335 0.21582397 0.12152375 0.14969714
## 269 0.05072162 0.06243174 0.12152375 0.14969714
## 270 0.14806335 0.10363527 0.10667727 0.14969714
## 271 0.14806335 0.09967090 0.11410336 0.14969714
## 272 0.14806335 0.06243174 0.10667727 0.14969714
## 273 0.14806335 0.06243174 0.12152375 0.14969714
## 274 0.14806335 0.10363527 0.11410336 0.14969714
## 275 0.14806335 0.21582397 0.09814869 0.14969714
## 276 0.14806335 0.09293746 0.11410336 0.14969714
## 277 0.14806335 0.21582397 0.12152375 0.14969714
## 278 0.14806335 0.21582397 0.11410336 0.14969714
## 279 0.14806335 0.06243174 0.09814869 0.14969714
## 280 0.05072162 0.06243174 0.12152375 0.14969714
## 281 0.14806335 0.09932349 0.12152375 0.14969714
## 282 0.14806335 0.06243174 0.10667727 0.14969714
## 283 0.14806335 0.06243174 0.11410336 0.14969714
## 284 0.14806335 0.09932349 0.11410336 0.14969714
## 285 0.14806335 0.09932349 0.09814869 0.14969714
## 286 0.14806335 0.43750000 0.10667727 0.14969714
## 287 0.14806335 0.06243174 0.09814869 0.14969714
## 288 0.14806335 0.06243174 0.11410336 0.14969714
## 289 0.14806335 0.21582397 0.11410336 0.14969714
## 290 0.14806335 0.21582397 0.12272101 0.14969714
## 291 0.14806335 0.21582397 0.10667727 0.14969714
## 292 0.14806335 0.51535088 0.12272101 0.14969714
## 293 0.14806335 0.09932349 0.09814869 0.14969714
## 294 0.14806335 0.21582397 0.09814869 0.14969714
## 295 0.14806335 0.21582397 0.10667727 0.14969714
## 296 0.14806335 0.06243174 0.10667727 0.14969714
## 297 0.14806335 0.21582397 0.12152375 0.14969714
## 298 0.14806335 0.09932349 0.12152375 0.14969714
## 299 0.14806335 0.06243174 0.12272101 0.14969714
## 300 0.14806335 0.06243174 0.12152375 0.14969714
## 301 0.14806335 0.21582397 0.09814869 0.14969714
## 302 0.14806335 0.06243174 0.09814869 0.14969714
## 303 0.14806335 0.06243174 0.10667727 0.14969714
## 304 0.14806335 0.06243174 0.12272101 0.14969714
## 305 0.14806335 0.09932349 0.10667727 0.14969714
## 306 0.14806335 0.06243174 0.09814869 0.14969714
## 307 0.14806335 0.45296167 0.12152375 0.14969714
## 308 0.14806335 0.06243174 0.12272101 0.14969714
## 309 0.14806335 0.06243174 0.11410336 0.14969714
## 310 0.14806335 0.06243174 0.11410336 0.14969714
## 311 0.14806335 0.09932349 0.12152375 0.14969714
## 312 0.14806335 0.09932349 0.09814869 0.14969714
## 313 0.14806335 0.06243174 0.11410336 0.14969714
## 314 0.14806335 0.21582397 0.11410336 0.14969714
## 315 0.14806335 0.21582397 0.11410336 0.14969714
## 316 0.14806335 0.06243174 0.12152375 0.14969714
## 317 0.05072162 0.09293746 0.09814869 0.14969714
## 318 0.14806335 0.21582397 0.09814869 0.14969714
## 319 0.14806335 0.09932349 0.09814869 0.14969714
## 320 0.14806335 0.06243174 0.09814869 0.14969714
## 321 0.14806335 0.09932349 0.10667727 0.14969714
## 322 0.14806335 0.43750000 0.10667727 0.14969714
## 323 0.14806335 0.09932349 0.12152375 0.14969714
## 324 0.14806335 0.06243174 0.11410336 0.14969714
## 325 0.05072162 0.06243174 0.09814869 0.14969714
## 326 0.14806335 0.06243174 0.11410336 0.14969714
## 327 0.14806335 0.21582397 0.09814869 0.14969714
## 328 0.14806335 0.06243174 0.12152375 0.14969714
## 329 0.14806335 0.06243174 0.12272101 0.14969714
## 330 0.14806335 0.06243174 0.12272101 0.14969714
## 331 0.14806335 0.06243174 0.11410336 0.14969714
## 332 0.14806335 0.09932349 0.12152375 0.14969714
## 333 0.14806335 0.21582397 0.12152375 0.14969714
## 334 0.14806335 0.06243174 0.12272101 0.14969714
## 335 0.14806335 0.06243174 0.12152375 0.14969714
## 336 0.14806335 0.09932349 0.11410336 0.14969714
## 337 0.14806335 0.06243174 0.09814869 0.14969714
## 338 0.14806335 0.06243174 0.09814869 0.14969714
## 339 0.14806335 0.09932349 0.12152375 0.14969714
## 340 0.14806335 0.06243174 0.11410336 0.14969714
## 341 0.14806335 0.21582397 0.10667727 0.14969714
## 342 0.14806335 0.06243174 0.12152375 0.14969714
## 343 0.14806335 0.10363527 0.10667727 0.14969714
## 344 0.14806335 0.06243174 0.09814869 0.14969714
## 345 0.14806335 0.09932349 0.09814869 0.14969714
## 346 0.14806335 0.45296167 0.12152375 0.14969714
## 347 0.14806335 0.21582397 0.12152375 0.14969714
## 348 0.14806335 0.09932349 0.09814869 0.14969714
## 349 0.14806335 0.06243174 0.09814869 0.14969714
## 350 0.14806335 0.06243174 0.09814869 0.14969714
## 351 0.14806335 0.09932349 0.11410336 0.14969714
## 352 0.05072162 0.09293746 0.11410336 0.14969714
## 353 0.14806335 0.06243174 0.11410336 0.14969714
## 354 0.14806335 0.06243174 0.12272101 0.14969714
## 355 0.14806335 0.06243174 0.10667727 0.14969714
## 356 0.05072162 0.09932349 0.10667727 0.14969714
## 357 0.14806335 0.45296167 0.09814869 0.14969714
## 358 0.14806335 0.06243174 0.12152375 0.14969714
## 359 0.14806335 0.09932349 0.11410336 0.14969714
## 360 0.14806335 0.09932349 0.12272101 0.14969714
## 361 0.14806335 0.21582397 0.11410336 0.14969714
## 362 0.14806335 0.06243174 0.09814869 0.14969714
## 363 0.05072162 0.06243174 0.12272101 0.14969714
## 364 0.14806335 0.09293746 0.09814869 0.14969714
## 365 0.14806335 0.06243174 0.11410336 0.14969714
## 366 0.14806335 0.09967090 0.10667727 0.14969714
## 367 0.14806335 0.06243174 0.10667727 0.14969714
## 368 0.14806335 0.10363527 0.10667727 0.14969714
## 369 0.14806335 0.21582397 0.10667727 0.14969714
## 370 0.14806335 0.09967090 0.11410336 0.14969714
## 371 0.14806335 0.06243174 0.12152375 0.14969714
## 372 0.14806335 0.06243174 0.12152375 0.14969714
## 373 0.14806335 0.09932349 0.09814869 0.14969714
## 374 0.14806335 0.06243174 0.10667727 0.14969714
## 375 0.14806335 0.09932349 0.11410336 0.14969714
## 376 0.14806335 0.21582397 0.12152375 0.14969714
## 377 0.14806335 0.09967090 0.09814869 0.14969714
## 378 0.14806335 0.06243174 0.10667727 0.14969714
## 379 0.14806335 0.06243174 0.12272101 0.14969714
## 380 0.14806335 0.06243174 0.11410336 0.14969714
## 381 0.14806335 0.09932349 0.12152375 0.14969714
## 382 0.14806335 0.09932349 0.12152375 0.14969714
## 383 0.14806335 0.09932349 0.12272101 0.14969714
## 384 0.14806335 0.09932349 0.09814869 0.14969714
## 385 0.14806335 0.06243174 0.09814869 0.14969714
## 386 0.14806335 0.06243174 0.09814869 0.14969714
## 387 0.14806335 0.09932349 0.09814869 0.14969714
## 388 0.05072162 0.06243174 0.12152375 0.14969714
## 389 0.14806335 0.06243174 0.10667727 0.14969714
## 390 0.14806335 0.21582397 0.12272101 0.14969714
## 391 0.14806335 0.10363527 0.12272101 0.14969714
## 392 0.14806335 0.06243174 0.10667727 0.14969714
## 393 0.14806335 0.43750000 0.11410336 0.14969714
## 394 0.14806335 0.06243174 0.10667727 0.14969714
## 395 0.05072162 0.06243174 0.12152375 0.14969714
## 396 0.14806335 0.21582397 0.10667727 0.14969714
## 397 0.14806335 0.21582397 0.12152375 0.14969714
## 398 0.14806335 0.21582397 0.10667727 0.14969714
## 399 0.14806335 0.43750000 0.12152375 0.14969714
## 400 0.05072162 0.06243174 0.12272101 0.14969714
## 401 0.14806335 0.06243174 0.11410336 0.14969714
## 402 0.14806335 0.09932349 0.12272101 0.14969714
## 403 0.14806335 0.21582397 0.09814869 0.14969714
## 404 0.14806335 0.06243174 0.12152375 0.14969714
## 405 0.14806335 0.10363527 0.11410336 0.14969714
## 406 0.14806335 0.10363527 0.10667727 0.14969714
## 407 0.14806335 0.21582397 0.09814869 0.14969714
## 408 0.05072162 0.06243174 0.11410336 0.14969714
## 409 0.14806335 0.09932349 0.09814869 0.14969714
## 410 0.14806335 0.06243174 0.12152375 0.14969714
## 411 0.14806335 0.21582397 0.09814869 0.14969714
## 412 0.14806335 0.10363527 0.10667727 0.14969714
## 413 0.14806335 0.51535088 0.11410336 0.14969714
## 414 0.14806335 0.21582397 0.12152375 0.14969714
## 415 0.14806335 0.06243174 0.11410336 0.14969714
## 416 0.14806335 0.10363527 0.12152375 0.14969714
## 417 0.14806335 0.06243174 0.12272101 0.14969714
## 418 0.14806335 0.06243174 0.12272101 0.14969714
## 419 0.14806335 0.06243174 0.10667727 0.14969714
## 420 0.14806335 0.09293746 0.12272101 0.14969714
## 421 0.14806335 0.06243174 0.11410336 0.14969714
## 422 0.14806335 0.21582397 0.11410336 0.14969714
## 423 0.05072162 0.09932349 0.11410336 0.14969714
## 424 0.14806335 0.06243174 0.10667727 0.14969714
## 425 0.14806335 0.21582397 0.10667727 0.14969714
## 426 0.14806335 0.21582397 0.09814869 0.14969714
## 427 0.14806335 0.06243174 0.12272101 0.14969714
## 428 0.14806335 0.06243174 0.12152375 0.14969714
## 429 0.14806335 0.06243174 0.12272101 0.14969714
## 430 0.14806335 0.09932349 0.11410336 0.14969714
## 431 0.14806335 0.06243174 0.09814869 0.14969714
## 432 0.05072162 0.09293746 0.12272101 0.14969714
## 433 0.14806335 0.21582397 0.11410336 0.14969714
## 434 0.14806335 0.21582397 0.10667727 0.14969714
## 435 0.14806335 0.48076923 0.09814869 0.14969714
## 436 0.05072162 0.06243174 0.10667727 0.14969714
## 437 0.14806335 0.21582397 0.12152375 0.14969714
## 438 0.14806335 0.06243174 0.12152375 0.14969714
## 439 0.05072162 0.06243174 0.10667727 0.14969714
## 440 0.14806335 0.21582397 0.12152375 0.14969714
## 441 0.14806335 0.21582397 0.09814869 0.14969714
## 442 0.14806335 0.06243174 0.11410336 0.14969714
## 443 0.14806335 0.21582397 0.12272101 0.14969714
## 444 0.05072162 0.09967090 0.12272101 0.14969714
## 445 0.14806335 0.06243174 0.12272101 0.14969714
## 446 0.14806335 0.21582397 0.12152375 0.14969714
## 447 0.14806335 0.21582397 0.12152375 0.14969714
## 448 0.14806335 0.09967090 0.10667727 0.14969714
## 449 0.14806335 0.06243174 0.10667727 0.14969714
## 450 0.14806335 0.09932349 0.11410336 0.14969714
## 451 0.14806335 0.43750000 0.10667727 0.14969714
## 452 0.14806335 0.06243174 0.12152375 0.14969714
## 453 0.14806335 0.06243174 0.11410336 0.14969714
## 454 0.05072162 0.06243174 0.12152375 0.14969714
## 455 0.14806335 0.09967090 0.11410336 0.14969714
## 456 0.14806335 0.06243174 0.10667727 0.14969714
## 457 0.14806335 0.09932349 0.11410336 0.14969714
## 458 0.14806335 0.21582397 0.12152375 0.14969714
## 459 0.14806335 0.06243174 0.12152375 0.14969714
## 460 0.14806335 0.06243174 0.09814869 0.14969714
## 461 0.14806335 0.21582397 0.09814869 0.14969714
## 462 0.14806335 0.21582397 0.10667727 0.14969714
## 463 0.14806335 0.21582397 0.12152375 0.14969714
## 464 0.14806335 0.06243174 0.09814869 0.14969714
## 465 0.14806335 0.21582397 0.10667727 0.14969714
## 466 0.14806335 0.06243174 0.12152375 0.14969714
## 467 0.14806335 0.09932349 0.12152375 0.14969714
## 468 0.14806335 0.09932349 0.11410336 0.14969714
## 469 0.14806335 0.45296167 0.12152375 0.14969714
## 470 0.14806335 0.09932349 0.10667727 0.14969714
## 471 0.14806335 0.06243174 0.12272101 0.14969714
## 472 0.14806335 0.09967090 0.12152375 0.14969714
## 473 0.14806335 0.06243174 0.12152375 0.14969714
## 474 0.14806335 0.09932349 0.10667727 0.14969714
## 475 0.14806335 0.21582397 0.12152375 0.14969714
## 476 0.14806335 0.06243174 0.12152375 0.14969714
## 477 0.14806335 0.51535088 0.11410336 0.14969714
## 478 0.14806335 0.09932349 0.12152375 0.14969714
## 479 0.14806335 0.21582397 0.09814869 0.14969714
## 480 0.14806335 0.21582397 0.12272101 0.14969714
## 481 0.14806335 0.06243174 0.10667727 0.14969714
## 482 0.14806335 0.10363527 0.10667727 0.14969714
## 483 0.05072162 0.43750000 0.11410336 0.14969714
## 484 0.14806335 0.06243174 0.12272101 0.14969714
## 485 0.14806335 0.06243174 0.11410336 0.14969714
## 486 0.14806335 0.06243174 0.12272101 0.14969714
## 487 0.14806335 0.06243174 0.11410336 0.14969714
## 488 0.14806335 0.10363527 0.09814869 0.14969714
## 489 0.14806335 0.09932349 0.10667727 0.14969714
## 490 0.14806335 0.21582397 0.12152375 0.14969714
## 491 0.14806335 0.09932349 0.10667727 0.14969714
## 492 0.14806335 0.06243174 0.10667727 0.14969714
## 493 0.14806335 0.06243174 0.12152375 0.14969714
## 494 0.14806335 0.09932349 0.10667727 0.14969714
## 495 0.14806335 0.06243174 0.10667727 0.14969714
## 496 0.14806335 0.06243174 0.12152375 0.14969714
## 497 0.14806335 0.45296167 0.12152375 0.14969714
## 498 0.14806335 0.43750000 0.11410336 0.14969714
## 499 0.14806335 0.09932349 0.09814869 0.14969714
## 500 0.14806335 0.06243174 0.10667727 0.14969714
## 501 0.05072162 0.06243174 0.10667727 0.14969714
## 502 0.14806335 0.09932349 0.09814869 0.14969714
## 503 0.14806335 0.09932349 0.09814869 0.14969714
## 504 0.14806335 0.21582397 0.10667727 0.14969714
## 505 0.14806335 0.06243174 0.10667727 0.14969714
## 506 0.14806335 0.06243174 0.12152375 0.14969714
## 507 0.14806335 0.09293746 0.10667727 0.14969714
## 508 0.14806335 0.09293746 0.12152375 0.14969714
## 509 0.14806335 0.09932349 0.10667727 0.14969714
## 510 0.14806335 0.06243174 0.12272101 0.14969714
## 511 0.14806335 0.21582397 0.12152375 0.14969714
## 512 0.14806335 0.21582397 0.12152375 0.14969714
## 513 0.14806335 0.21582397 0.09814869 0.14969714
## 514 0.14806335 0.09932349 0.10667727 0.14969714
## 515 0.14806335 0.21582397 0.10667727 0.14969714
## 516 0.14806335 0.43750000 0.11410336 0.14969714
## 517 0.14806335 0.21582397 0.10667727 0.14969714
## 518 0.14806335 0.21582397 0.12152375 0.14969714
## 519 0.14806335 0.10363527 0.12272101 0.14969714
## 520 0.14806335 0.06243174 0.12152375 0.14969714
## 521 0.14806335 0.06243174 0.10667727 0.14969714
## 522 0.14806335 0.09932349 0.11410336 0.14969714
## 523 0.14806335 0.21582397 0.09814869 0.14969714
## 524 0.14806335 0.09932349 0.12152375 0.14969714
## 525 0.14806335 0.06243174 0.11410336 0.14969714
## 526 0.14806335 0.09932349 0.11410336 0.14969714
## 527 0.14806335 0.06243174 0.10667727 0.14969714
## 528 0.05072162 0.09967090 0.11410336 0.14969714
## 529 0.14806335 0.06243174 0.12272101 0.14969714
## 530 0.14806335 0.09932349 0.10667727 0.14969714
## 531 0.14806335 0.45296167 0.11410336 0.14969714
## 532 0.14806335 0.09293746 0.12152375 0.14969714
## 533 0.14806335 0.06243174 0.12272101 0.14969714
## 534 0.14806335 0.51535088 0.12152375 0.14969714
## 535 0.14806335 0.06243174 0.12272101 0.14969714
## 536 0.14806335 0.21582397 0.10667727 0.14969714
## 537 0.14806335 0.06243174 0.11410336 0.14969714
## 538 0.14806335 0.21582397 0.09814869 0.14969714
## 539 0.14806335 0.21582397 0.10667727 0.14969714
## 540 0.05072162 0.45296167 0.10667727 0.14969714
## 541 0.14806335 0.06243174 0.11410336 0.14969714
## 542 0.14806335 0.21582397 0.10667727 0.14969714
## 543 0.14806335 0.45296167 0.10667727 0.14969714
## 544 0.05072162 0.09293746 0.12272101 0.14969714
## 545 0.14806335 0.21582397 0.10667727 0.14969714
## 546 0.14806335 0.09932349 0.12272101 0.14969714
## 547 0.14806335 0.09932349 0.10667727 0.14969714
## 548 0.14806335 0.09932349 0.10667727 0.14969714
## 549 0.14806335 0.06243174 0.10667727 0.14969714
## 550 0.14806335 0.21582397 0.12152375 0.14969714
## 551 0.14806335 0.06243174 0.09814869 0.14969714
## 552 0.14806335 0.06243174 0.09814869 0.14969714
## 553 0.14806335 0.06243174 0.11410336 0.14969714
## 554 0.14806335 0.51535088 0.09814869 0.14969714
## 555 0.14806335 0.06243174 0.10667727 0.14969714
## 556 0.14806335 0.51535088 0.10667727 0.14969714
## 557 0.14806335 0.10363527 0.12152375 0.14969714
## 558 0.14806335 0.06243174 0.12152375 0.14969714
## 559 0.14806335 0.09967090 0.12272101 0.14969714
## 560 0.14806335 0.21582397 0.09814869 0.14969714
## 561 0.14806335 0.09967090 0.11410336 0.14969714
## 562 0.14806335 0.09967090 0.11410336 0.14969714
## 563 0.14806335 0.09932349 0.11410336 0.14969714
## 564 0.14806335 0.06243174 0.10667727 0.14969714
## 565 0.14806335 0.09293746 0.12152375 0.14969714
## 566 0.05072162 0.43750000 0.10667727 0.14969714
## 567 0.14806335 0.09932349 0.11410336 0.14969714
## 568 0.14806335 0.10363527 0.10667727 0.14969714
## 569 0.14806335 0.06243174 0.09814869 0.14969714
## 570 0.14806335 0.51535088 0.09814869 0.14969714
## 571 0.14806335 0.06243174 0.10667727 0.14969714
## 572 0.14806335 0.21582397 0.10667727 0.14969714
## 573 0.14806335 0.06243174 0.12272101 0.14969714
## 574 0.14806335 0.10363527 0.09814869 0.14969714
## 575 0.14806335 0.06243174 0.09814869 0.14969714
## 576 0.05072162 0.06243174 0.12272101 0.14969714
## 577 0.14806335 0.09932349 0.12152375 0.14969714
## 578 0.14806335 0.10363527 0.11410336 0.14969714
## 579 0.14806335 0.06243174 0.12152375 0.14969714
## 580 0.14806335 0.43750000 0.10667727 0.14969714
## 581 0.14806335 0.09932349 0.12152375 0.14969714
## 582 0.14806335 0.06243174 0.11410336 0.14969714
## 583 0.14806335 0.21582397 0.12152375 0.14969714
## 584 0.14806335 0.10363527 0.11410336 0.14969714
## 585 0.14806335 0.09932349 0.09814869 0.14969714
## 586 0.14806335 0.06243174 0.11410336 0.14969714
## 587 0.05072162 0.10363527 0.12272101 0.14969714
## 588 0.14806335 0.21582397 0.12152375 0.14969714
## 589 0.05072162 0.21582397 0.09814869 0.14969714
## 590 0.14806335 0.06243174 0.11410336 0.14969714
## 591 0.14806335 0.06243174 0.12152375 0.14969714
## 592 0.14806335 0.21582397 0.12152375 0.14969714
## 593 0.14806335 0.06243174 0.12152375 0.14969714
## 594 0.14806335 0.06243174 0.10667727 0.14969714
## 595 0.14806335 0.06243174 0.10667727 0.14969714
## 596 0.14806335 0.06243174 0.11410336 0.14969714
## 597 0.14806335 0.06243174 0.12152375 0.14969714
## 598 0.14806335 0.21582397 0.11410336 0.14969714
## 599 0.14806335 0.06243174 0.11410336 0.14969714
## 600 0.14806335 0.06243174 0.12272101 0.14969714
## 601 0.14806335 0.21582397 0.12152375 0.14969714
## 602 0.05072162 0.10363527 0.11410336 0.14969714
## 603 0.14806335 0.06243174 0.10667727 0.14969714
## 604 0.05072162 0.21582397 0.10667727 0.14969714
## 605 0.14806335 0.09293746 0.11410336 0.14969714
## 606 0.14806335 0.21582397 0.12152375 0.14969714
## 607 0.14806335 0.09932349 0.11410336 0.14969714
## 608 0.14806335 0.09932349 0.10667727 0.14969714
## 609 0.14806335 0.06243174 0.12152375 0.14969714
## 610 0.14806335 0.51535088 0.09814869 0.14969714
## 611 0.14806335 0.21582397 0.12152375 0.14969714
## 612 0.14806335 0.09932349 0.12272101 0.14969714
## 613 0.14806335 0.06243174 0.12152375 0.14969714
## 614 0.14806335 0.21582397 0.09814869 0.14969714
## 615 0.14806335 0.06243174 0.09814869 0.14969714
## 616 0.05072162 0.06243174 0.10667727 0.14969714
## 617 0.14806335 0.45296167 0.12152375 0.14969714
## 618 0.14806335 0.48076923 0.10667727 0.14969714
## 619 0.14806335 0.06243174 0.12272101 0.14969714
## 620 0.14806335 0.09967090 0.12152375 0.14969714
## 621 0.14806335 0.09932349 0.11410336 0.14969714
## 622 0.14806335 0.06243174 0.12152375 0.14969714
## 623 0.14806335 0.06243174 0.11410336 0.14969714
## 624 0.14806335 0.06243174 0.11410336 0.14969714
## 625 0.14806335 0.06243174 0.10667727 0.14969714
## 626 0.14806335 0.09967090 0.12272101 0.14969714
## 627 0.14806335 0.21582397 0.10667727 0.14969714
## 628 0.14806335 0.48076923 0.12152375 0.14969714
## 629 0.14806335 0.06243174 0.12272101 0.14969714
## 630 0.14806335 0.09932349 0.11410336 0.14969714
## 631 0.14806335 0.06243174 0.12152375 0.14969714
## 632 0.14806335 0.21582397 0.10667727 0.14969714
## 633 0.14806335 0.06243174 0.10667727 0.14969714
## 634 0.14806335 0.06243174 0.10667727 0.14969714
## 635 0.14806335 0.09932349 0.11410336 0.14969714
## 636 0.14806335 0.09932349 0.09814869 0.14969714
## 637 0.14806335 0.06243174 0.12152375 0.14969714
## 638 0.14806335 0.09932349 0.12152375 0.14969714
## 639 0.14806335 0.06243174 0.11410336 0.14969714
## 640 0.14806335 0.21582397 0.09814869 0.14969714
## 641 0.14806335 0.09932349 0.11410336 0.14969714
## 642 0.14806335 0.06243174 0.12152375 0.14969714
## 643 0.14806335 0.06243174 0.12152375 0.14969714
## 644 0.14806335 0.21582397 0.10667727 0.14969714
## 645 0.14806335 0.06243174 0.12152375 0.14969714
## 646 0.14806335 0.06243174 0.11410336 0.14969714
## 647 0.14806335 0.06243174 0.11410336 0.14969714
## 648 0.14806335 0.06243174 0.09814869 0.14969714
## 649 0.14806335 0.06243174 0.12152375 0.14969714
## 650 0.14806335 0.45296167 0.11410336 0.14969714
## 651 0.14806335 0.06243174 0.10667727 0.14969714
## 652 0.14806335 0.06243174 0.11410336 0.14969714
## 653 0.14806335 0.51535088 0.12152375 0.14969714
## 654 0.14806335 0.06243174 0.11410336 0.14969714
## 655 0.14806335 0.06243174 0.12272101 0.14969714
## 656 0.14806335 0.06243174 0.09814869 0.14969714
## 657 0.14806335 0.21582397 0.11410336 0.14969714
## 658 0.14806335 0.09932349 0.11410336 0.14969714
## 659 0.14806335 0.06243174 0.09814869 0.14969714
## 660 0.14806335 0.06243174 0.10667727 0.14969714
## 661 0.14806335 0.06243174 0.11410336 0.14969714
## 662 0.14806335 0.10363527 0.11410336 0.14969714
## 663 0.14806335 0.09293746 0.11410336 0.14969714
## 664 0.14806335 0.45296167 0.11410336 0.14969714
## 665 0.14806335 0.09932349 0.11410336 0.14969714
## 666 0.14806335 0.10363527 0.11410336 0.14969714
## 667 0.05072162 0.09967090 0.12152375 0.14969714
## 668 0.14806335 0.06243174 0.12272101 0.14969714
## 669 0.14806335 0.09293746 0.12152375 0.14969714
## 670 0.14806335 0.09932349 0.11410336 0.14969714
## 671 0.14806335 0.06243174 0.12152375 0.14969714
## 672 0.14806335 0.06243174 0.12152375 0.14969714
## 673 0.14806335 0.48076923 0.12152375 0.14969714
## 674 0.14806335 0.09932349 0.12272101 0.14969714
## 675 0.14806335 0.06243174 0.10667727 0.14969714
## 676 0.14806335 0.06243174 0.12272101 0.14969714
## 677 0.14806335 0.21582397 0.10667727 0.14969714
## 678 0.14806335 0.09932349 0.11410336 0.14969714
## 679 0.14806335 0.48076923 0.12152375 0.14969714
## 680 0.14806335 0.10363527 0.12152375 0.14969714
## 681 0.14806335 0.06243174 0.12152375 0.14969714
## 682 0.14806335 0.09293746 0.11410336 0.14969714
## 683 0.14806335 0.21582397 0.11410336 0.14969714
## 684 0.14806335 0.06243174 0.09814869 0.14969714
## 685 0.14806335 0.06243174 0.10667727 0.14969714
## 686 0.14806335 0.06243174 0.11410336 0.14969714
## 687 0.14806335 0.51535088 0.10667727 0.14969714
## 688 0.14806335 0.06243174 0.11410336 0.14969714
## 689 0.14806335 0.06243174 0.10667727 0.14969714
## 690 0.14806335 0.09932349 0.09814869 0.14969714
## 691 0.14806335 0.10363527 0.09814869 0.14969714
## 692 0.14806335 0.06243174 0.12272101 0.14969714
## 693 0.14806335 0.10363527 0.10667727 0.14969714
## 694 0.14806335 0.06243174 0.12272101 0.14969714
## 695 0.14806335 0.09932349 0.12272101 0.14969714
## 696 0.14806335 0.06243174 0.12152375 0.14969714
## 697 0.14806335 0.09293746 0.09814869 0.14969714
## 698 0.14806335 0.09932349 0.12152375 0.14969714
## 699 0.14806335 0.06243174 0.10667727 0.14969714
## 700 0.14806335 0.09293746 0.12152375 0.14969714
## 701 0.14806335 0.09293746 0.10667727 0.14969714
## 702 0.14806335 0.09932349 0.09814869 0.14969714
## 703 0.14806335 0.06243174 0.10667727 0.14969714
## 704 0.14806335 0.21582397 0.09814869 0.14969714
## 705 0.05072162 0.06243174 0.12152375 0.14969714
## 706 0.14806335 0.06243174 0.10667727 0.14969714
## 707 0.14806335 0.06243174 0.10667727 0.14969714
## 708 0.14806335 0.48076923 0.09814869 0.14969714
## 709 0.14806335 0.45296167 0.09814869 0.14969714
## 710 0.14806335 0.06243174 0.12152375 0.14969714
## 711 0.14806335 0.06243174 0.12272101 0.14969714
## 712 0.14806335 0.09932349 0.12152375 0.14969714
## 713 0.14806335 0.06243174 0.10667727 0.14969714
## 714 0.14806335 0.06243174 0.12272101 0.14969714
## 715 0.14806335 0.06243174 0.12272101 0.14969714
## 716 0.14806335 0.21582397 0.12152375 0.14969714
## 717 0.14806335 0.06243174 0.12152375 0.14969714
## 718 0.14806335 0.21582397 0.12152375 0.14969714
## 719 0.14806335 0.09932349 0.11410336 0.14969714
## 720 0.14806335 0.06243174 0.09814869 0.14969714
## 721 0.14806335 0.21582397 0.12272101 0.14969714
## 722 0.14806335 0.10363527 0.11410336 0.14969714
## 723 0.14806335 0.06243174 0.09814869 0.14969714
## 724 0.14806335 0.06243174 0.10667727 0.14969714
## 725 0.14806335 0.06243174 0.11410336 0.14969714
## 726 0.14806335 0.10363527 0.10667727 0.14969714
## 727 0.14806335 0.06243174 0.10667727 0.14969714
## 728 0.14806335 0.09967090 0.11410336 0.14969714
## 729 0.05072162 0.06243174 0.10667727 0.14969714
## 730 0.14806335 0.21582397 0.09814869 0.14969714
## 731 0.14806335 0.21582397 0.10667727 0.14969714
## 732 0.14806335 0.09932349 0.09814869 0.14969714
## 733 0.14806335 0.06243174 0.11410336 0.14969714
## 734 0.14806335 0.09932349 0.09814869 0.14969714
## 735 0.14806335 0.06243174 0.10667727 0.14969714
## 736 0.14806335 0.06243174 0.12272101 0.14969714
## 737 0.05072162 0.10363527 0.12272101 0.14969714
## 738 0.14806335 0.43750000 0.11410336 0.14969714
## 739 0.14806335 0.06243174 0.12272101 0.14969714
## 740 0.14806335 0.09932349 0.10667727 0.14969714
## 741 0.05072162 0.21582397 0.12152375 0.14969714
## 742 0.14806335 0.09932349 0.12152375 0.14969714
## 743 0.05072162 0.06243174 0.12152375 0.14969714
## 744 0.14806335 0.09932349 0.12152375 0.14969714
## 745 0.14806335 0.21582397 0.10667727 0.14969714
## 746 0.14806335 0.09932349 0.09814869 0.14969714
## 747 0.14806335 0.06243174 0.09814869 0.14969714
## 748 0.14806335 0.06243174 0.09814869 0.14969714
## 749 0.14806335 0.06243174 0.10667727 0.14969714
## 750 0.14806335 0.06243174 0.10667727 0.14969714
## 751 0.14806335 0.06243174 0.09814869 0.14969714
## 752 0.14806335 0.21582397 0.09814869 0.14969714
## 753 0.14806335 0.09932349 0.11410336 0.14969714
## 754 0.14806335 0.09932349 0.11410336 0.14969714
## 755 0.14806335 0.06243174 0.10667727 0.14969714
## 756 0.14806335 0.21582397 0.09814869 0.14969714
## 757 0.14806335 0.21582397 0.12272101 0.14969714
## 758 0.14806335 0.06243174 0.12272101 0.14969714
## 759 0.14806335 0.21582397 0.10667727 0.14969714
## 760 0.05072162 0.06243174 0.12152375 0.14969714
## 761 0.14806335 0.21582397 0.09814869 0.14969714
## 762 0.14806335 0.45296167 0.12152375 0.14969714
## 763 0.14806335 0.06243174 0.10667727 0.14969714
## 764 0.14806335 0.09932349 0.10667727 0.14969714
## 765 0.14806335 0.06243174 0.10667727 0.14969714
## 766 0.14806335 0.09932349 0.09814869 0.14969714
## 767 0.14806335 0.09932349 0.12272101 0.14969714
## 768 0.14806335 0.06243174 0.10667727 0.14969714
## 769 0.14806335 0.09293746 0.12272101 0.14969714
## 770 0.14806335 0.09932349 0.11410336 0.14969714
## 771 0.14806335 0.06243174 0.12272101 0.14969714
## 772 0.14806335 0.06243174 0.09814869 0.14969714
## 773 0.14806335 0.45296167 0.09814869 0.14969714
## 774 0.14806335 0.09932349 0.11410336 0.14969714
## 775 0.14806335 0.43750000 0.11410336 0.14969714
## 776 0.14806335 0.09932349 0.12152375 0.14969714
## 777 0.14806335 0.21582397 0.09814869 0.14969714
## 778 0.14806335 0.06243174 0.12152375 0.14969714
## 779 0.14806335 0.06243174 0.12272101 0.14969714
## 780 0.14806335 0.06243174 0.09814869 0.14969714
## 781 0.14806335 0.09932349 0.12272101 0.14969714
## 782 0.14806335 0.06243174 0.10667727 0.14969714
## 783 0.14806335 0.06243174 0.12152375 0.14969714
## 784 0.14806335 0.06243174 0.09814869 0.14969714
## 785 0.14806335 0.45296167 0.11410336 0.14969714
## 786 0.14806335 0.06243174 0.09814869 0.14969714
## 787 0.14806335 0.21582397 0.12272101 0.14969714
## 788 0.14806335 0.06243174 0.10667727 0.14969714
## 789 0.14806335 0.06243174 0.12152375 0.14969714
## 790 0.14806335 0.06243174 0.11410336 0.14969714
## 791 0.14806335 0.06243174 0.11410336 0.14969714
## 792 0.14806335 0.09932349 0.12152375 0.14969714
## 793 0.14806335 0.06243174 0.11410336 0.14969714
## 794 0.14806335 0.06243174 0.11410336 0.14969714
## 795 0.14806335 0.06243174 0.12152375 0.14969714
## 796 0.14806335 0.45296167 0.10667727 0.14969714
## 797 0.14806335 0.06243174 0.12272101 0.14969714
## 798 0.14806335 0.09967090 0.10667727 0.14969714
## 799 0.14806335 0.09932349 0.11410336 0.14969714
## 800 0.14806335 0.45296167 0.11410336 0.14969714
## 801 0.05072162 0.09967090 0.09814869 0.14969714
## 802 0.14806335 0.06243174 0.10667727 0.14969714
## 803 0.14806335 0.43750000 0.10667727 0.14969714
## 804 0.14806335 0.43750000 0.09814869 0.14969714
## 805 0.14806335 0.06243174 0.12272101 0.14969714
## 806 0.14806335 0.21582397 0.12152375 0.14969714
## 807 0.14806335 0.06243174 0.09814869 0.14969714
## 808 0.14806335 0.21582397 0.12152375 0.14969714
## 809 0.14806335 0.09967090 0.11410336 0.14969714
## 810 0.14806335 0.06243174 0.10667727 0.14969714
## 811 0.14806335 0.09932349 0.12152375 0.14969714
## 812 0.14806335 0.21582397 0.09814869 0.14969714
## 813 0.14806335 0.21582397 0.09814869 0.14969714
## 814 0.14806335 0.06243174 0.12272101 0.14969714
## 815 0.14806335 0.06243174 0.09814869 0.14969714
## 816 0.05072162 0.06243174 0.09814869 0.14969714
## 817 0.14806335 0.06243174 0.12272101 0.14969714
## 818 0.14806335 0.06243174 0.12272101 0.14969714
## 819 0.14806335 0.09932349 0.09814869 0.14969714
## 820 0.14806335 0.06243174 0.10667727 0.14969714
## 821 0.14806335 0.45296167 0.12272101 0.14969714
## 822 0.05072162 0.10363527 0.09814869 0.14969714
## 823 0.14806335 0.06243174 0.12272101 0.14969714
## 824 0.14806335 0.06243174 0.11410336 0.14969714
## 825 0.14806335 0.06243174 0.12152375 0.14969714
## 826 0.14806335 0.06243174 0.10667727 0.14969714
## 827 0.14806335 0.09967090 0.11410336 0.14969714
## 828 0.14806335 0.21582397 0.10667727 0.14969714
## 829 0.14806335 0.06243174 0.10667727 0.14969714
## 830 0.14806335 0.06243174 0.12272101 0.14969714
## 831 0.14806335 0.09932349 0.09814869 0.14969714
## 832 0.14806335 0.09932349 0.09814869 0.14969714
## 833 0.14806335 0.09967090 0.12272101 0.14969714
## 834 0.14806335 0.21582397 0.10667727 0.14969714
## 835 0.14806335 0.09932349 0.11410336 0.14969714
## 836 0.14806335 0.09293746 0.10667727 0.14969714
## 837 0.14806335 0.10363527 0.12152375 0.14969714
## 838 0.14806335 0.21582397 0.09814869 0.14969714
## 839 0.14806335 0.09293746 0.12152375 0.14969714
## 840 0.14806335 0.06243174 0.09814869 0.14969714
## 841 0.14806335 0.21582397 0.09814869 0.14969714
## 842 0.14806335 0.06243174 0.12152375 0.14969714
## 843 0.14806335 0.06243174 0.12152375 0.14969714
## 844 0.14806335 0.06243174 0.10667727 0.14969714
## 845 0.14806335 0.06243174 0.09814869 0.14969714
## 846 0.14806335 0.10363527 0.12152375 0.14969714
## 847 0.14806335 0.21582397 0.10667727 0.14969714
## 848 0.14806335 0.06243174 0.12152375 0.14969714
## 849 0.14806335 0.06243174 0.09814869 0.14969714
## 850 0.14806335 0.06243174 0.12152375 0.14969714
## 851 0.14806335 0.09967090 0.11410336 0.14969714
## 852 0.14806335 0.21582397 0.12152375 0.14969714
## 853 0.14806335 0.06243174 0.11410336 0.14969714
## 854 0.14806335 0.09932349 0.12152375 0.14969714
## 855 0.14806335 0.10363527 0.11410336 0.14969714
## 856 0.14806335 0.06243174 0.12272101 0.14969714
## 857 0.14806335 0.21582397 0.11410336 0.14969714
## 858 0.14806335 0.43750000 0.11410336 0.14969714
## 859 0.14806335 0.09932349 0.12272101 0.14969714
## 860 0.14806335 0.06243174 0.12152375 0.14969714
## 861 0.14806335 0.10363527 0.12272101 0.14969714
## 862 0.14806335 0.09932349 0.12272101 0.14969714
## 863 0.14806335 0.21582397 0.09814869 0.14969714
## 864 0.14806335 0.21582397 0.12152375 0.14969714
## 865 0.14806335 0.06243174 0.09814869 0.14969714
## 866 0.05072162 0.09932349 0.12152375 0.14969714
## 867 0.14806335 0.10363527 0.12272101 0.14969714
## 868 0.14806335 0.06243174 0.12152375 0.14969714
## 869 0.14806335 0.45296167 0.10667727 0.14969714
## 870 0.14806335 0.09932349 0.10667727 0.14969714
## 871 0.14806335 0.09932349 0.11410336 0.14969714
## 872 0.14806335 0.21582397 0.09814869 0.14969714
## 873 0.14806335 0.21582397 0.11410336 0.14969714
## 874 0.14806335 0.10363527 0.09814869 0.14969714
## 875 0.14806335 0.06243174 0.11410336 0.14969714
## 876 0.14806335 0.21582397 0.10667727 0.14969714
## 877 0.14806335 0.21582397 0.09814869 0.14969714
## 878 0.14806335 0.09932349 0.10667727 0.14969714
## 879 0.05072162 0.06243174 0.11410336 0.14969714
## 880 0.14806335 0.09932349 0.10667727 0.14969714
## 881 0.14806335 0.09932349 0.11410336 0.14969714
## 882 0.14806335 0.06243174 0.12272101 0.14969714
## 883 0.14806335 0.09932349 0.10667727 0.14969714
## 884 0.14806335 0.06243174 0.09814869 0.14969714
## 885 0.14806335 0.10363527 0.10667727 0.14969714
## 886 0.14806335 0.45296167 0.11410336 0.14969714
## 887 0.14806335 0.09932349 0.09814869 0.14969714
## 888 0.14806335 0.09293746 0.09814869 0.14969714
## 889 0.14806335 0.06243174 0.10667727 0.14969714
## 890 0.14806335 0.09932349 0.12272101 0.14969714
## 891 0.14806335 0.06243174 0.12152375 0.14969714
## 892 0.14806335 0.06243174 0.12272101 0.14969714
## 893 0.14806335 0.06243174 0.10667727 0.14969714
## 894 0.14806335 0.09932349 0.12272101 0.14969714
## 895 0.14806335 0.06243174 0.12272101 0.14969714
## 896 0.14806335 0.09932349 0.11410336 0.14969714
## 897 0.14806335 0.09967090 0.11410336 0.14969714
## 898 0.14806335 0.06243174 0.10667727 0.14969714
## 899 0.14806335 0.21582397 0.09814869 0.14969714
## 900 0.14806335 0.21582397 0.09814869 0.14969714
## 901 0.05072162 0.06243174 0.12272101 0.14969714
## 902 0.14806335 0.10363527 0.11410336 0.14969714
## 903 0.14806335 0.06243174 0.12152375 0.14969714
## 904 0.14806335 0.06243174 0.12152375 0.14969714
## 905 0.14806335 0.21582397 0.09814869 0.14969714
## 906 0.14806335 0.21582397 0.10667727 0.14969714
## 907 0.14806335 0.06243174 0.11410336 0.14969714
## 908 0.14806335 0.06243174 0.11410336 0.14969714
## 909 0.14806335 0.09932349 0.09814869 0.14969714
## 910 0.14806335 0.51535088 0.12272101 0.14969714
## 911 0.14806335 0.51535088 0.09814869 0.14969714
## 912 0.14806335 0.21582397 0.10667727 0.14969714
## 913 0.14806335 0.09932349 0.12152375 0.14969714
## 914 0.14806335 0.06243174 0.09814869 0.14969714
## 915 0.14806335 0.09932349 0.11410336 0.14969714
## 916 0.14806335 0.06243174 0.10667727 0.14969714
## 917 0.14806335 0.09932349 0.09814869 0.14969714
## 918 0.14806335 0.21582397 0.12272101 0.14969714
## 919 0.14806335 0.45296167 0.12152375 0.14969714
## 920 0.14806335 0.21582397 0.09814869 0.14969714
## 921 0.05072162 0.45296167 0.10667727 0.14969714
## 922 0.14806335 0.06243174 0.09814869 0.14969714
## 923 0.14806335 0.06243174 0.10667727 0.14969714
## 924 0.14806335 0.09293746 0.11410336 0.14969714
## 925 0.14806335 0.21582397 0.10667727 0.14969714
## 926 0.14806335 0.06243174 0.12272101 0.14969714
## 927 0.14806335 0.06243174 0.12152375 0.14969714
## 928 0.14806335 0.06243174 0.12152375 0.14969714
## 929 0.14806335 0.45296167 0.10667727 0.14969714
## 930 0.14806335 0.09932349 0.12272101 0.14969714
## 931 0.14806335 0.21582397 0.10667727 0.14969714
## 932 0.14806335 0.06243174 0.11410336 0.14969714
## 933 0.14806335 0.06243174 0.12152375 0.14969714
## 934 0.14806335 0.06243174 0.12152375 0.14969714
## 935 0.14806335 0.10363527 0.10667727 0.14969714
## 936 0.14806335 0.06243174 0.12152375 0.14969714
## 937 0.14806335 0.21582397 0.09814869 0.14969714
## 938 0.14806335 0.43750000 0.09814869 0.14969714
## 939 0.14806335 0.06243174 0.09814869 0.14969714
## 940 0.14806335 0.09932349 0.10667727 0.14969714
## 941 0.14806335 0.06243174 0.11410336 0.14969714
## 942 0.14806335 0.06243174 0.09814869 0.14969714
## 943 0.14806335 0.06243174 0.12272101 0.14969714
## 944 0.14806335 0.06243174 0.12152375 0.14969714
## 945 0.14806335 0.21582397 0.12152375 0.14969714
## 946 0.14806335 0.06243174 0.09814869 0.14969714
## 947 0.14806335 0.09932349 0.11410336 0.14969714
## 948 0.14806335 0.21582397 0.09814869 0.14969714
## 949 0.14806335 0.09932349 0.12272101 0.14969714
## 950 0.14806335 0.21582397 0.11410336 0.14969714
## 951 0.14806335 0.09932349 0.11410336 0.14969714
## 952 0.14806335 0.06243174 0.09814869 0.14969714
## 953 0.14806335 0.06243174 0.12152375 0.14969714
## 954 0.05072162 0.21582397 0.09814869 0.14969714
## 955 0.14806335 0.06243174 0.09814869 0.14969714
## 956 0.14806335 0.06243174 0.10667727 0.14969714
## 957 0.14806335 0.09967090 0.12152375 0.14969714
## 958 0.14806335 0.21582397 0.09814869 0.14969714
## 959 0.14806335 0.21582397 0.12152375 0.14969714
## 960 0.14806335 0.06243174 0.12152375 0.14969714
## 961 0.14806335 0.09932349 0.11410336 0.14969714
## 962 0.14806335 0.06243174 0.12152375 0.14969714
## 963 0.14806335 0.51535088 0.10667727 0.14969714
## 964 0.14806335 0.09932349 0.11410336 0.14969714
## 965 0.14806335 0.06243174 0.12152375 0.14969714
## 966 0.14806335 0.09932349 0.12152375 0.14969714
## 967 0.14806335 0.10363527 0.12272101 0.14969714
## 968 0.14806335 0.09967090 0.12272101 0.14969714
## 969 0.14806335 0.06243174 0.12272101 0.14969714
## 970 0.14806335 0.09932349 0.11410336 0.14969714
## 971 0.14806335 0.45296167 0.12152375 0.14969714
## 972 0.14806335 0.09932349 0.11410336 0.14969714
## 973 0.14806335 0.06243174 0.10667727 0.14969714
## 974 0.14806335 0.06243174 0.12272101 0.14969714
## 975 0.14806335 0.09932349 0.12152375 0.14969714
## 976 0.14806335 0.43750000 0.12152375 0.14969714
## 977 0.14806335 0.06243174 0.10667727 0.14969714
## 978 0.14806335 0.21582397 0.12152375 0.14969714
## 979 0.14806335 0.09932349 0.11410336 0.14969714
## 980 0.14806335 0.51535088 0.12152375 0.14969714
## 981 0.14806335 0.09932349 0.11410336 0.14969714
## 982 0.14806335 0.06243174 0.11410336 0.14969714
## 983 0.14806335 0.21582397 0.09814869 0.14969714
## 984 0.14806335 0.10363527 0.12152375 0.14969714
## 985 0.14806335 0.21582397 0.12152375 0.14969714
## 986 0.14806335 0.09932349 0.12272101 0.14969714
## 987 0.14806335 0.06243174 0.09814869 0.14969714
## 988 0.14806335 0.06243174 0.09814869 0.14969714
## 989 0.05072162 0.10363527 0.09814869 0.14969714
## 990 0.14806335 0.21582397 0.11410336 0.14969714
## 991 0.14806335 0.06243174 0.10667727 0.14969714
## 992 0.14806335 0.09932349 0.09814869 0.14969714
## 993 0.14806335 0.06243174 0.12152375 0.14969714
## 994 0.14806335 0.06243174 0.12152375 0.14969714
## 995 0.14806335 0.06243174 0.12272101 0.14969714
## 996 0.14806335 0.51535088 0.09814869 0.14969714
## 997 0.14806335 0.06243174 0.11410336 0.14969714
## 998 0.14806335 0.06243174 0.09814869 0.14969714
## 999 0.14806335 0.09967090 0.09814869 0.14969714
## 1000 0.14806335 0.06243174 0.12152375 0.14969714
## 1001 0.14806335 0.06243174 0.09814869 0.14969714
## 1002 0.14806335 0.06243174 0.11410336 0.14969714
## 1003 0.14806335 0.09967090 0.11410336 0.14969714
## 1004 0.14806335 0.10363527 0.12152375 0.14969714
## 1005 0.05072162 0.06243174 0.09814869 0.14969714
## 1006 0.14806335 0.45296167 0.12152375 0.14969714
## 1007 0.14806335 0.09932349 0.12152375 0.14969714
## 1008 0.14806335 0.21582397 0.11410336 0.14969714
## 1009 0.14806335 0.06243174 0.10667727 0.14969714
## 1010 0.14806335 0.09932349 0.11410336 0.14969714
## 1011 0.14806335 0.21582397 0.09814869 0.14969714
## 1012 0.14806335 0.21582397 0.10667727 0.14969714
## 1013 0.14806335 0.06243174 0.09814869 0.14969714
## 1014 0.14806335 0.10363527 0.12152375 0.14969714
## 1015 0.14806335 0.48076923 0.10667727 0.14969714
## 1016 0.14806335 0.21582397 0.12152375 0.14969714
## 1017 0.14806335 0.06243174 0.10667727 0.14969714
## 1018 0.14806335 0.09932349 0.10667727 0.14969714
## 1019 0.14806335 0.09932349 0.12272101 0.14969714
## 1020 0.14806335 0.21582397 0.10667727 0.14969714
## 1021 0.14806335 0.06243174 0.10667727 0.14969714
## 1022 0.14806335 0.06243174 0.11410336 0.14969714
## 1023 0.14806335 0.06243174 0.12272101 0.14969714
## 1024 0.14806335 0.21582397 0.09814869 0.14969714
## 1025 0.14806335 0.09967090 0.09814869 0.14969714
## 1026 0.14806335 0.06243174 0.09814869 0.14969714
## 1027 0.14806335 0.21582397 0.09814869 0.14969714
## 1028 0.05072162 0.10363527 0.09814869 0.14969714
## 1029 0.14806335 0.06243174 0.12152375 0.14969714
## 1030 0.14806335 0.09932349 0.12272101 0.14969714
## 1031 0.14806335 0.06243174 0.12272101 0.14969714
## 1032 0.14806335 0.09932349 0.10667727 0.14969714
## 1033 0.14806335 0.06243174 0.10667727 0.14969714
## 1034 0.14806335 0.09932349 0.12272101 0.14969714
## 1035 0.14806335 0.06243174 0.11410336 0.14969714
## 1036 0.14806335 0.21582397 0.09814869 0.14969714
## 1037 0.14806335 0.43750000 0.11410336 0.14969714
## 1038 0.14806335 0.21582397 0.11410336 0.14969714
## 1039 0.14806335 0.06243174 0.10667727 0.14969714
## 1040 0.14806335 0.09293746 0.11410336 0.14969714
## 1041 0.14806335 0.09932349 0.12272101 0.14969714
## 1042 0.14806335 0.06243174 0.12152375 0.14969714
## 1043 0.14806335 0.06243174 0.12152375 0.14969714
## 1044 0.14806335 0.06243174 0.11410336 0.14969714
## 1045 0.14806335 0.21582397 0.12152375 0.14969714
## 1046 0.14806335 0.45296167 0.09814869 0.14969714
## 1047 0.05072162 0.48076923 0.12272101 0.14969714
## 1048 0.14806335 0.06243174 0.12272101 0.14969714
## 1049 0.14806335 0.09932349 0.10667727 0.14969714
## 1050 0.14806335 0.09967090 0.12272101 0.14969714
## 1051 0.14806335 0.43750000 0.11410336 0.14969714
## 1052 0.14806335 0.06243174 0.12152375 0.14969714
## 1053 0.14806335 0.06243174 0.12272101 0.14969714
## 1054 0.14806335 0.09932349 0.11410336 0.14969714
## 1055 0.14806335 0.21582397 0.09814869 0.14969714
## 1056 0.14806335 0.06243174 0.12152375 0.14969714
## 1057 0.05072162 0.06243174 0.12152375 0.14969714
## 1058 0.14806335 0.10363527 0.10667727 0.14969714
## 1059 0.14806335 0.45296167 0.10667727 0.14969714
## 1060 0.14806335 0.09932349 0.12272101 0.14969714
## 1061 0.14806335 0.09932349 0.09814869 0.14969714
## 1062 0.14806335 0.21582397 0.12152375 0.14969714
## 1063 0.14806335 0.21582397 0.11410336 0.14969714
## 1064 0.14806335 0.06243174 0.09814869 0.14969714
## 1065 0.14806335 0.06243174 0.11410336 0.14969714
## 1066 0.14806335 0.21582397 0.11410336 0.14969714
## 1067 0.14806335 0.48076923 0.12272101 0.14969714
## 1068 0.14806335 0.06243174 0.10667727 0.14969714
## 1069 0.14806335 0.09932349 0.12152375 0.14969714
## 1070 0.14806335 0.09967090 0.12272101 0.14969714
## 1071 0.14806335 0.09932349 0.11410336 0.14969714
## 1072 0.14806335 0.51535088 0.11410336 0.14969714
## 1073 0.05072162 0.06243174 0.12272101 0.14969714
## 1074 0.14806335 0.06243174 0.09814869 0.14969714
## 1075 0.14806335 0.09293746 0.11410336 0.14969714
## 1076 0.14806335 0.06243174 0.12152375 0.14969714
## 1077 0.14806335 0.06243174 0.09814869 0.14969714
## 1078 0.14806335 0.21582397 0.10667727 0.14969714
## 1079 0.14806335 0.06243174 0.12272101 0.14969714
## 1080 0.14806335 0.43750000 0.10667727 0.14969714
## 1081 0.14806335 0.09932349 0.11410336 0.14969714
## 1082 0.14806335 0.06243174 0.12152375 0.14969714
## 1083 0.14806335 0.06243174 0.09814869 0.14969714
## 1084 0.14806335 0.51535088 0.10667727 0.14969714
## 1085 0.14806335 0.06243174 0.12152375 0.14969714
## 1086 0.14806335 0.09967090 0.12152375 0.14969714
## 1087 0.14806335 0.09932349 0.11410336 0.14969714
## 1088 0.14806335 0.09932349 0.10667727 0.14969714
## 1089 0.14806335 0.21582397 0.10667727 0.14969714
## 1090 0.14806335 0.09967090 0.10667727 0.14969714
## 1091 0.14806335 0.10363527 0.09814869 0.14969714
## 1092 0.14806335 0.21582397 0.10667727 0.14969714
## 1093 0.14806335 0.06243174 0.12152375 0.14969714
## 1094 0.14806335 0.21582397 0.12152375 0.14969714
## 1095 0.14806335 0.10363527 0.09814869 0.14969714
## 1096 0.14806335 0.06243174 0.12152375 0.14969714
## 1097 0.14806335 0.09932349 0.12152375 0.14969714
## 1098 0.14806335 0.09293746 0.12152375 0.14969714
## 1099 0.14806335 0.21582397 0.09814869 0.14969714
## 1100 0.14806335 0.21582397 0.09814869 0.14969714
## 1101 0.14806335 0.09932349 0.12152375 0.14969714
## 1102 0.05072162 0.06243174 0.11410336 0.14969714
## 1103 0.14806335 0.06243174 0.09814869 0.14969714
## 1104 0.05072162 0.45296167 0.12152375 0.14969714
## 1105 0.14806335 0.09967090 0.12152375 0.14969714
## 1106 0.14806335 0.06243174 0.12152375 0.14969714
## 1107 0.14806335 0.45296167 0.09814869 0.14969714
## 1108 0.14806335 0.09967090 0.12272101 0.14969714
## 1109 0.14806335 0.06243174 0.11410336 0.14969714
## 1110 0.14806335 0.06243174 0.12152375 0.14969714
## 1111 0.14806335 0.09967090 0.12272101 0.14969714
## 1112 0.14806335 0.06243174 0.11410336 0.14969714
## 1113 0.14806335 0.09932349 0.12152375 0.14969714
## 1114 0.14806335 0.09967090 0.09814869 0.14969714
## 1115 0.14806335 0.10363527 0.10667727 0.14969714
## 1116 0.14806335 0.09932349 0.12152375 0.14969714
## 1117 0.14806335 0.09932349 0.10667727 0.14969714
## 1118 0.14806335 0.21582397 0.09814869 0.14969714
## 1119 0.14806335 0.09932349 0.12152375 0.14969714
## 1120 0.14806335 0.09932349 0.10667727 0.14969714
## 1121 0.14806335 0.21582397 0.12152375 0.14969714
## 1122 0.14806335 0.06243174 0.10667727 0.14969714
## 1123 0.14806335 0.06243174 0.11410336 0.14969714
## 1124 0.14806335 0.06243174 0.12152375 0.14969714
## 1125 0.14806335 0.09932349 0.09814869 0.14969714
## 1126 0.14806335 0.06243174 0.10667727 0.14969714
## 1127 0.05072162 0.06243174 0.10667727 0.14969714
## 1128 0.14806335 0.06243174 0.11410336 0.14969714
## 1129 0.14806335 0.21582397 0.09814869 0.14969714
## 1130 0.14806335 0.06243174 0.09814869 0.14969714
## 1131 0.14806335 0.21582397 0.12152375 0.14969714
## 1132 0.14806335 0.06243174 0.10667727 0.14969714
## 1133 0.14806335 0.09967090 0.12272101 0.14969714
## 1134 0.14806335 0.06243174 0.09814869 0.14969714
## 1135 0.14806335 0.06243174 0.10667727 0.14969714
## 1136 0.14806335 0.06243174 0.12152375 0.14969714
## 1137 0.14806335 0.09932349 0.10667727 0.14969714
## 1138 0.14806335 0.06243174 0.11410336 0.14969714
## 1139 0.14806335 0.09932349 0.10667727 0.14969714
## 1140 0.14806335 0.21582397 0.10667727 0.14969714
## 1141 0.14806335 0.43750000 0.10667727 0.14969714
## 1142 0.14806335 0.06243174 0.12272101 0.14969714
## 1143 0.14806335 0.09932349 0.12152375 0.14969714
## 1144 0.14806335 0.06243174 0.10667727 0.14969714
## 1145 0.05072162 0.45296167 0.09814869 0.14969714
## 1146 0.14806335 0.09967090 0.12272101 0.14969714
## 1147 0.14806335 0.21582397 0.12272101 0.14969714
## 1148 0.14806335 0.10363527 0.10667727 0.14969714
## 1149 0.14806335 0.48076923 0.09814869 0.14969714
## 1150 0.14806335 0.06243174 0.11410336 0.14969714
## 1151 0.14806335 0.09932349 0.11410336 0.14969714
## 1152 0.14806335 0.21582397 0.09814869 0.14969714
## 1153 0.14806335 0.06243174 0.10667727 0.14969714
## 1154 0.14806335 0.06243174 0.12152375 0.14969714
## 1155 0.14806335 0.45296167 0.11410336 0.14969714
## 1156 0.14806335 0.06243174 0.10667727 0.14969714
## 1157 0.14806335 0.09932349 0.11410336 0.14969714
## 1158 0.14806335 0.06243174 0.11410336 0.14969714
## 1159 0.14806335 0.10363527 0.09814869 0.14969714
## 1160 0.14806335 0.06243174 0.09814869 0.14969714
## 1161 0.14806335 0.09293746 0.12272101 0.14969714
## 1162 0.14806335 0.09932349 0.09814869 0.14969714
## 1163 0.14806335 0.09932349 0.12272101 0.14969714
## 1164 0.05072162 0.09293746 0.12152375 0.14969714
## 1165 0.14806335 0.21582397 0.09814869 0.14969714
## 1166 0.14806335 0.21582397 0.09814869 0.14969714
## 1167 0.14806335 0.06243174 0.09814869 0.14969714
## 1168 0.05072162 0.43750000 0.12152375 0.14969714
## 1169 0.14806335 0.06243174 0.11410336 0.14969714
## 1170 0.14806335 0.06243174 0.10667727 0.14969714
## 1171 0.14806335 0.06243174 0.10667727 0.14969714
## 1172 0.14806335 0.09932349 0.11410336 0.14969714
## 1173 0.14806335 0.09967090 0.11410336 0.14969714
## 1174 0.14806335 0.21582397 0.12272101 0.14969714
## 1175 0.14806335 0.10363527 0.11410336 0.14969714
## 1176 0.14806335 0.21582397 0.10667727 0.14969714
## 1177 0.14806335 0.21582397 0.12152375 0.14969714
## 1178 0.14806335 0.10363527 0.09814869 0.14969714
## 1179 0.14806335 0.10363527 0.12152375 0.14969714
## 1180 0.05072162 0.06243174 0.09814869 0.14969714
## 1181 0.14806335 0.21582397 0.10667727 0.14969714
## 1182 0.14806335 0.09967090 0.09814869 0.14969714
## 1183 0.14806335 0.06243174 0.10667727 0.14969714
## 1184 0.14806335 0.06243174 0.09814869 0.14969714
## 1185 0.14806335 0.21582397 0.10667727 0.14969714
## 1186 0.14806335 0.21582397 0.09814869 0.14969714
## 1187 0.14806335 0.21582397 0.12152375 0.14969714
## 1188 0.14806335 0.06243174 0.10667727 0.14969714
## 1189 0.14806335 0.21582397 0.12152375 0.14969714
## 1190 0.14806335 0.09932349 0.11410336 0.14969714
## 1191 0.14806335 0.06243174 0.11410336 0.14969714
## 1192 0.14806335 0.06243174 0.10667727 0.14969714
## 1193 0.14806335 0.45296167 0.09814869 0.14969714
## 1194 0.14806335 0.06243174 0.12152375 0.14969714
## 1195 0.14806335 0.06243174 0.12272101 0.14969714
## 1196 0.14806335 0.09932349 0.11410336 0.14969714
## 1197 0.05072162 0.06243174 0.12152375 0.14969714
## 1198 0.14806335 0.06243174 0.10667727 0.14969714
## 1199 0.14806335 0.06243174 0.10667727 0.14969714
## 1200 0.14806335 0.09293746 0.11410336 0.14969714
## 1201 0.14806335 0.45296167 0.10667727 0.14969714
## 1202 0.14806335 0.06243174 0.12272101 0.14969714
## 1203 0.14806335 0.09932349 0.10667727 0.14969714
## 1204 0.14806335 0.09932349 0.11410336 0.14969714
## 1205 0.14806335 0.21582397 0.12152375 0.14969714
## 1206 0.14806335 0.43750000 0.10667727 0.14969714
## 1207 0.14806335 0.21582397 0.09814869 0.14969714
## 1208 0.14806335 0.06243174 0.09814869 0.14969714
## 1209 0.14806335 0.09932349 0.11410336 0.14969714
## 1210 0.14806335 0.21582397 0.12152375 0.14969714
## 1211 0.14806335 0.45296167 0.11410336 0.14969714
## 1212 0.14806335 0.06243174 0.11410336 0.14969714
## 1213 0.05072162 0.48076923 0.12272101 0.14969714
## 1214 0.14806335 0.09932349 0.12272101 0.14969714
## 1215 0.14806335 0.09932349 0.12152375 0.14969714
## 1216 0.14806335 0.09932349 0.10667727 0.14969714
## 1217 0.14806335 0.10363527 0.09814869 0.14969714
## 1218 0.05072162 0.51535088 0.12152375 0.14969714
## 1219 0.14806335 0.06243174 0.09814869 0.14969714
## 1220 0.05072162 0.06243174 0.10667727 0.14969714
## 1221 0.14806335 0.21582397 0.10667727 0.14969714
## 1222 0.14806335 0.06243174 0.12272101 0.14969714
## 1223 0.14806335 0.09932349 0.10667727 0.14969714
## 1224 0.14806335 0.06243174 0.12152375 0.14969714
## 1225 0.14806335 0.09932349 0.09814869 0.14969714
## 1226 0.14806335 0.21582397 0.12152375 0.14969714
## 1227 0.14806335 0.10363527 0.11410336 0.14969714
## 1228 0.14806335 0.10363527 0.12272101 0.14969714
## 1229 0.14806335 0.06243174 0.10667727 0.14969714
## 1230 0.14806335 0.09932349 0.12152375 0.14969714
## 1231 0.14806335 0.06243174 0.12272101 0.14969714
## 1232 0.14806335 0.21582397 0.10667727 0.14969714
## 1233 0.14806335 0.09967090 0.12272101 0.14969714
## 1234 0.14806335 0.43750000 0.12272101 0.14969714
## 1235 0.14806335 0.06243174 0.10667727 0.14969714
## 1236 0.14806335 0.06243174 0.10667727 0.14969714
## 1237 0.14806335 0.06243174 0.09814869 0.14969714
## 1238 0.14806335 0.21582397 0.09814869 0.14969714
## 1239 0.14806335 0.06243174 0.10667727 0.14969714
## 1240 0.05072162 0.06243174 0.09814869 0.14969714
## 1241 0.14806335 0.06243174 0.10667727 0.14969714
## 1242 0.14806335 0.09932349 0.09814869 0.14969714
## 1243 0.05072162 0.21582397 0.11410336 0.14969714
## 1244 0.14806335 0.21582397 0.12152375 0.14969714
## 1245 0.14806335 0.21582397 0.09814869 0.14969714
## 1246 0.14806335 0.21582397 0.12152375 0.14969714
## 1247 0.14806335 0.06243174 0.11410336 0.14969714
## 1248 0.14806335 0.06243174 0.12152375 0.14969714
## 1249 0.14806335 0.06243174 0.11410336 0.14969714
## 1250 0.14806335 0.09932349 0.10667727 0.14969714
## 1251 0.14806335 0.09932349 0.12152375 0.14969714
## 1252 0.14806335 0.21582397 0.09814869 0.14969714
## 1253 0.14806335 0.43750000 0.12152375 0.14969714
## 1254 0.14806335 0.09932349 0.10667727 0.14969714
## 1255 0.14806335 0.45296167 0.10667727 0.14969714
## 1256 0.14806335 0.06243174 0.12152375 0.14969714
## 1257 0.14806335 0.06243174 0.11410336 0.14969714
## 1258 0.14806335 0.09967090 0.12152375 0.14969714
## 1259 0.14806335 0.06243174 0.10667727 0.14969714
## 1260 0.14806335 0.09932349 0.12152375 0.14969714
## 1261 0.05072162 0.06243174 0.09814869 0.14969714
## 1262 0.14806335 0.43750000 0.09814869 0.14969714
## 1263 0.14806335 0.43750000 0.10667727 0.14969714
## 1264 0.14806335 0.21582397 0.11410336 0.14969714
## 1265 0.14806335 0.09293746 0.12152375 0.14969714
## 1266 0.05072162 0.10363527 0.11410336 0.14969714
## 1267 0.14806335 0.06243174 0.09814869 0.14969714
## 1268 0.14806335 0.09932349 0.12272101 0.14969714
## 1269 0.14806335 0.06243174 0.12272101 0.14969714
## 1270 0.14806335 0.09932349 0.10667727 0.14969714
## 1271 0.14806335 0.43750000 0.12152375 0.14969714
## 1272 0.14806335 0.09932349 0.09814869 0.14969714
## 1273 0.14806335 0.06243174 0.12272101 0.14969714
## 1274 0.14806335 0.06243174 0.11410336 0.14969714
## 1275 0.14806335 0.09932349 0.12152375 0.14969714
## 1276 0.14806335 0.43750000 0.12272101 0.14969714
## 1277 0.14806335 0.09967090 0.12152375 0.14969714
## 1278 0.14806335 0.06243174 0.11410336 0.14969714
## 1279 0.14806335 0.06243174 0.09814869 0.14969714
## 1280 0.14806335 0.09932349 0.10667727 0.14969714
## 1281 0.14806335 0.06243174 0.12152375 0.14969714
## 1282 0.14806335 0.09293746 0.12272101 0.14969714
## 1283 0.14806335 0.06243174 0.12272101 0.14969714
## 1284 0.14806335 0.06243174 0.09814869 0.14969714
## 1285 0.14806335 0.21582397 0.10667727 0.14969714
## 1286 0.14806335 0.10363527 0.12152375 0.14969714
## 1287 0.14806335 0.21582397 0.10667727 0.14969714
## 1288 0.14806335 0.06243174 0.12152375 0.14969714
## 1289 0.14806335 0.21582397 0.10667727 0.14969714
## 1290 0.14806335 0.45296167 0.10667727 0.14969714
## 1291 0.14806335 0.09932349 0.11410336 0.14969714
## 1292 0.14806335 0.06243174 0.09814869 0.14969714
## 1293 0.14806335 0.09293746 0.12152375 0.14969714
## 1294 0.14806335 0.09932349 0.12152375 0.14969714
## 1295 0.14806335 0.06243174 0.12152375 0.14969714
## 1296 0.14806335 0.09967090 0.09814869 0.14969714
## 1297 0.14806335 0.43750000 0.11410336 0.14969714
## 1298 0.14806335 0.21582397 0.12152375 0.14969714
## 1299 0.14806335 0.51535088 0.11410336 0.14969714
## 1300 0.14806335 0.06243174 0.11410336 0.14969714
## 1301 0.14806335 0.06243174 0.12152375 0.14969714
## 1302 0.14806335 0.43750000 0.12152375 0.14969714
## 1303 0.05072162 0.06243174 0.09814869 0.14969714
## 1304 0.14806335 0.10363527 0.10667727 0.14969714
## 1305 0.14806335 0.09967090 0.11410336 0.14969714
## 1306 0.14806335 0.21582397 0.10667727 0.14969714
## 1307 0.14806335 0.06243174 0.12272101 0.14969714
## 1308 0.14806335 0.06243174 0.12272101 0.14969714
## 1309 0.14806335 0.21582397 0.12272101 0.14969714
## 1310 0.14806335 0.06243174 0.11410336 0.14969714
## 1311 0.14806335 0.09293746 0.12272101 0.14969714
## 1312 0.14806335 0.21582397 0.10667727 0.14969714
## 1313 0.14806335 0.06243174 0.10667727 0.14969714
## 1314 0.14806335 0.09932349 0.10667727 0.14969714
## 1315 0.14806335 0.51535088 0.12272101 0.14969714
## 1316 0.14806335 0.06243174 0.11410336 0.14969714
## 1317 0.14806335 0.09932349 0.11410336 0.14969714
## 1318 0.05072162 0.09967090 0.09814869 0.14969714
## 1319 0.14806335 0.09932349 0.12152375 0.14969714
## 1320 0.14806335 0.06243174 0.10667727 0.14969714
## 1321 0.14806335 0.21582397 0.12152375 0.14969714
## 1322 0.14806335 0.06243174 0.12152375 0.14969714
## 1323 0.14806335 0.21582397 0.09814869 0.14969714
## 1324 0.14806335 0.06243174 0.12152375 0.14969714
## 1325 0.14806335 0.06243174 0.12152375 0.14969714
## 1326 0.14806335 0.21582397 0.09814869 0.14969714
## 1327 0.14806335 0.09932349 0.12152375 0.14969714
## 1328 0.14806335 0.09932349 0.10667727 0.14969714
## 1329 0.14806335 0.06243174 0.09814869 0.14969714
## 1330 0.14806335 0.43750000 0.09814869 0.14969714
## 1331 0.14806335 0.06243174 0.11410336 0.14969714
## 1332 0.14806335 0.10363527 0.12272101 0.14969714
## 1333 0.14806335 0.51535088 0.12272101 0.14969714
## 1334 0.14806335 0.21582397 0.09814869 0.14969714
## 1335 0.14806335 0.10363527 0.09814869 0.14969714
## 1336 0.14806335 0.09932349 0.11410336 0.14969714
## 1337 0.14806335 0.09932349 0.10667727 0.14969714
## 1338 0.14806335 0.21582397 0.12152375 0.14969714
## 1339 0.14806335 0.09932349 0.12152375 0.14969714
## 1340 0.14806335 0.09932349 0.10667727 0.14969714
## 1341 0.14806335 0.09932349 0.09814869 0.14969714
## 1342 0.14806335 0.09932349 0.10667727 0.14969714
## 1343 0.05072162 0.09932349 0.09814869 0.14969714
## 1344 0.14806335 0.06243174 0.10667727 0.14969714
## 1345 0.14806335 0.45296167 0.12152375 0.14969714
## 1346 0.14806335 0.06243174 0.12272101 0.14969714
## 1347 0.14806335 0.09932349 0.09814869 0.14969714
## 1348 0.14806335 0.09932349 0.11410336 0.14969714
## 1349 0.14806335 0.09967090 0.11410336 0.14969714
## 1350 0.14806335 0.21582397 0.10667727 0.14969714
## 1351 0.14806335 0.09932349 0.12272101 0.14969714
## 1352 0.14806335 0.06243174 0.12152375 0.14969714
## 1353 0.14806335 0.09932349 0.11410336 0.14969714
## 1354 0.14806335 0.06243174 0.12152375 0.14969714
## 1355 0.14806335 0.09932349 0.12272101 0.14969714
## 1356 0.14806335 0.21582397 0.12152375 0.14969714
## 1357 0.05072162 0.45296167 0.09814869 0.14969714
## 1358 0.14806335 0.06243174 0.12152375 0.14969714
## 1359 0.14806335 0.45296167 0.10667727 0.14969714
## 1360 0.14806335 0.21582397 0.12152375 0.14969714
## 1361 0.05072162 0.21582397 0.11410336 0.14969714
## 1362 0.14806335 0.09967090 0.10667727 0.14969714
## 1363 0.05072162 0.09932349 0.09814869 0.14969714
## 1364 0.14806335 0.43750000 0.11410336 0.14969714
## 1365 0.14806335 0.06243174 0.12152375 0.14969714
## 1366 0.14806335 0.09932349 0.11410336 0.14969714
## 1367 0.14806335 0.06243174 0.12152375 0.14969714
## 1368 0.05072162 0.06243174 0.10667727 0.14969714
## 1369 0.14806335 0.21582397 0.09814869 0.14969714
## 1370 0.14806335 0.06243174 0.09814869 0.14969714
## 1371 0.05072162 0.06243174 0.12152375 0.14969714
## 1372 0.14806335 0.06243174 0.12272101 0.14969714
## 1373 0.05072162 0.43750000 0.10667727 0.14969714
## 1374 0.14806335 0.06243174 0.09814869 0.14969714
## 1375 0.14806335 0.21582397 0.09814869 0.14969714
## 1376 0.14806335 0.06243174 0.12272101 0.14969714
## 1377 0.14806335 0.06243174 0.10667727 0.14969714
## 1378 0.05072162 0.09932349 0.09814869 0.14969714
## 1379 0.14806335 0.09967090 0.11410336 0.14969714
## 1380 0.14806335 0.09967090 0.11410336 0.14969714
## 1381 0.14806335 0.06243174 0.12152375 0.14969714
## 1382 0.14806335 0.10363527 0.12152375 0.14969714
## 1383 0.14806335 0.09932349 0.10667727 0.14969714
## 1384 0.14806335 0.06243174 0.12152375 0.14969714
## 1385 0.14806335 0.06243174 0.12152375 0.14969714
## 1386 0.14806335 0.09932349 0.11410336 0.14969714
## 1387 0.14806335 0.06243174 0.12272101 0.14969714
## 1388 0.14806335 0.09932349 0.11410336 0.14969714
## 1389 0.14806335 0.21582397 0.10667727 0.14969714
## 1390 0.05072162 0.06243174 0.10667727 0.14969714
## 1391 0.14806335 0.09932349 0.10667727 0.14969714
## 1392 0.14806335 0.10363527 0.12272101 0.14969714
## 1393 0.14806335 0.06243174 0.12152375 0.14969714
## 1394 0.14806335 0.06243174 0.10667727 0.14969714
## 1395 0.14806335 0.06243174 0.12272101 0.14969714
## 1396 0.14806335 0.09932349 0.12152375 0.14969714
## 1397 0.14806335 0.06243174 0.09814869 0.14969714
## 1398 0.14806335 0.06243174 0.09814869 0.14969714
## 1399 0.14806335 0.09932349 0.09814869 0.14969714
## 1400 0.14806335 0.21582397 0.09814869 0.14969714
## 1401 0.14806335 0.06243174 0.12152375 0.14969714
## 1402 0.14806335 0.09293746 0.11410336 0.14969714
## 1403 0.14806335 0.21582397 0.09814869 0.14969714
## 1404 0.14806335 0.06243174 0.12272101 0.14969714
## 1405 0.14806335 0.06243174 0.10667727 0.14969714
## 1406 0.14806335 0.09932349 0.12152375 0.14969714
## 1407 0.14806335 0.06243174 0.12152375 0.14969714
## 1408 0.14806335 0.09932349 0.12152375 0.14969714
## 1409 0.14806335 0.21582397 0.09814869 0.14969714
## 1410 0.14806335 0.48076923 0.09814869 0.14969714
## 1411 0.14806335 0.06243174 0.12272101 0.14969714
## 1412 0.14806335 0.21582397 0.12272101 0.14969714
## 1413 0.14806335 0.09932349 0.11410336 0.14969714
## 1414 0.14806335 0.06243174 0.12152375 0.14969714
## 1415 0.14806335 0.21582397 0.10667727 0.14969714
## 1416 0.14806335 0.09932349 0.12152375 0.14969714
## 1417 0.14806335 0.06243174 0.09814869 0.14969714
## 1418 0.14806335 0.45296167 0.10667727 0.14969714
## 1419 0.14806335 0.06243174 0.12272101 0.14969714
## 1420 0.14806335 0.09932349 0.10667727 0.14969714
## 1421 0.14806335 0.06243174 0.09814869 0.14969714
## 1422 0.14806335 0.21582397 0.12152375 0.14969714
## 1423 0.14806335 0.06243174 0.10667727 0.14969714
## 1424 0.05072162 0.06243174 0.10667727 0.14969714
## 1425 0.14806335 0.09932349 0.12152375 0.14969714
## 1426 0.14806335 0.09932349 0.11410336 0.14969714
## 1427 0.14806335 0.06243174 0.11410336 0.14969714
## 1428 0.14806335 0.09293746 0.12272101 0.14969714
## 1429 0.14806335 0.06243174 0.09814869 0.14969714
## 1430 0.14806335 0.09932349 0.11410336 0.14969714
## 1431 0.14806335 0.06243174 0.10667727 0.14969714
## 1432 0.14806335 0.06243174 0.12272101 0.14969714
## 1433 0.14806335 0.06243174 0.10667727 0.14969714
## 1434 0.14806335 0.21582397 0.09814869 0.14969714
## 1435 0.14806335 0.21582397 0.10667727 0.14969714
## 1436 0.14806335 0.06243174 0.09814869 0.14969714
## 1437 0.14806335 0.21582397 0.09814869 0.14969714
## 1438 0.14806335 0.09932349 0.12152375 0.14969714
## 1439 0.14806335 0.06243174 0.12152375 0.14969714
## 1440 0.14806335 0.06243174 0.10667727 0.14969714
## 1441 0.14806335 0.21582397 0.12152375 0.14969714
## 1442 0.14806335 0.43750000 0.12152375 0.14969714
## 1443 0.14806335 0.06243174 0.12152375 0.14969714
## 1444 0.14806335 0.06243174 0.09814869 0.14969714
## 1445 0.14806335 0.06243174 0.12272101 0.14969714
## 1446 0.14806335 0.06243174 0.11410336 0.14969714
## 1447 0.14806335 0.21582397 0.10667727 0.14969714
## 1448 0.14806335 0.06243174 0.10667727 0.14969714
## 1449 0.14806335 0.09967090 0.09814869 0.14969714
## 1450 0.14806335 0.06243174 0.12272101 0.14969714
## 1451 0.14806335 0.06243174 0.12272101 0.14969714
## 1452 0.14806335 0.21582397 0.12272101 0.14969714
## 1453 0.14806335 0.06243174 0.11410336 0.14969714
## 1454 0.14806335 0.21582397 0.09814869 0.14969714
## 1455 0.14806335 0.43750000 0.10667727 0.14969714
## 1456 0.14806335 0.21582397 0.10667727 0.14969714
## 1457 0.14806335 0.06243174 0.12152375 0.14969714
## 1458 0.14806335 0.09967090 0.09814869 0.14969714
## 1459 0.14806335 0.06243174 0.10667727 0.14969714
## 1460 0.14806335 0.48076923 0.12152375 0.14969714
## 1461 0.14806335 0.06243174 0.11410336 0.14969714
## 1462 0.14806335 0.21582397 0.09814869 0.14969714
## 1463 0.14806335 0.09967090 0.12152375 0.14969714
## 1464 0.14806335 0.06243174 0.09814869 0.14969714
## 1465 0.14806335 0.06243174 0.12272101 0.14969714
## 1466 0.14806335 0.21582397 0.12152375 0.14969714
## 1467 0.14806335 0.06243174 0.09814869 0.14969714
## 1468 0.14806335 0.09932349 0.12152375 0.14969714
## 1469 0.14806335 0.43750000 0.09814869 0.14969714
## 1470 0.14806335 0.06243174 0.12272101 0.14969714
## 1471 0.14806335 0.43750000 0.12152375 0.14969714
## 1472 0.14806335 0.06243174 0.12272101 0.14969714
## 1473 0.14806335 0.06243174 0.11410336 0.14969714
## 1474 0.05072162 0.21582397 0.12272101 0.14969714
## 1475 0.14806335 0.06243174 0.12272101 0.14969714
## 1476 0.14806335 0.21582397 0.12272101 0.14969714
## 1477 0.14806335 0.43750000 0.11410336 0.14969714
## 1478 0.14806335 0.06243174 0.09814869 0.14969714
## 1479 0.14806335 0.21582397 0.10667727 0.14969714
## 1480 0.14806335 0.06243174 0.10667727 0.14969714
## 1481 0.14806335 0.21582397 0.12152375 0.14969714
## 1482 0.14806335 0.45296167 0.12272101 0.14969714
## 1483 0.14806335 0.09932349 0.12272101 0.14969714
## 1484 0.14806335 0.09932349 0.10667727 0.14969714
## 1485 0.14806335 0.06243174 0.10667727 0.14969714
## 1486 0.14806335 0.06243174 0.11410336 0.14969714
## 1487 0.14806335 0.21582397 0.12152375 0.14969714
## 1488 0.05072162 0.09932349 0.11410336 0.14969714
## 1489 0.14806335 0.21582397 0.11410336 0.14969714
## 1490 0.14806335 0.48076923 0.10667727 0.14969714
## 1491 0.14806335 0.09932349 0.09814869 0.14969714
## 1492 0.14806335 0.10363527 0.11410336 0.14969714
## 1493 0.05072162 0.45296167 0.10667727 0.14969714
## 1494 0.14806335 0.06243174 0.10667727 0.14969714
## 1495 0.14806335 0.21582397 0.12272101 0.14969714
## 1496 0.14806335 0.45296167 0.12272101 0.14969714
## 1497 0.14806335 0.09932349 0.10667727 0.14969714
## 1498 0.14806335 0.06243174 0.09814869 0.14969714
## 1499 0.14806335 0.06243174 0.12152375 0.14969714
## 1500 0.14806335 0.09932349 0.09814869 0.14969714
## 1501 0.14806335 0.06243174 0.12272101 0.14969714
## 1502 0.14806335 0.21582397 0.12152375 0.14969714
## 1503 0.14806335 0.21582397 0.12152375 0.14969714
## 1504 0.14806335 0.21582397 0.12152375 0.14969714
## 1505 0.14806335 0.06243174 0.11410336 0.14969714
## 1506 0.14806335 0.09932349 0.11410336 0.14969714
## 1507 0.14806335 0.09932349 0.10667727 0.14969714
## 1508 0.05072162 0.09967090 0.11410336 0.14969714
## 1509 0.14806335 0.45296167 0.11410336 0.14969714
## 1510 0.14806335 0.21582397 0.10667727 0.14969714
## 1511 0.14806335 0.45296167 0.11410336 0.14969714
## 1512 0.14806335 0.06243174 0.12152375 0.14969714
## 1513 0.14806335 0.06243174 0.12152375 0.14969714
## 1514 0.14806335 0.06243174 0.12272101 0.14969714
## 1515 0.14806335 0.06243174 0.10667727 0.14969714
## 1516 0.14806335 0.06243174 0.12152375 0.14969714
## 1517 0.14806335 0.09932349 0.12272101 0.14969714
## 1518 0.14806335 0.06243174 0.09814869 0.14969714
## 1519 0.14806335 0.09293746 0.12152375 0.14969714
## 1520 0.14806335 0.09932349 0.09814869 0.14969714
## 1521 0.14806335 0.09932349 0.09814869 0.14969714
## 1522 0.14806335 0.21582397 0.09814869 0.14969714
## 1523 0.05072162 0.06243174 0.09814869 0.14969714
## 1524 0.14806335 0.09932349 0.11410336 0.14969714
## 1525 0.14806335 0.21582397 0.10667727 0.14969714
## 1526 0.14806335 0.43750000 0.12152375 0.14969714
## 1527 0.14806335 0.06243174 0.10667727 0.14969714
## 1528 0.14806335 0.06243174 0.10667727 0.14969714
## 1529 0.14806335 0.09967090 0.12152375 0.14969714
## 1530 0.14806335 0.10363527 0.11410336 0.14969714
## 1531 0.14806335 0.06243174 0.10667727 0.14969714
## 1532 0.14806335 0.06243174 0.12152375 0.14969714
## 1533 0.14806335 0.09932349 0.12152375 0.14969714
## 1534 0.14806335 0.45296167 0.12152375 0.14969714
## 1535 0.05072162 0.09932349 0.10667727 0.14969714
## 1536 0.14806335 0.09932349 0.12152375 0.14969714
## 1537 0.14806335 0.10363527 0.10667727 0.14969714
## 1538 0.14806335 0.45296167 0.12152375 0.14969714
## 1539 0.14806335 0.06243174 0.11410336 0.14969714
## 1540 0.14806335 0.09932349 0.12272101 0.14969714
## 1541 0.14806335 0.09932349 0.09814869 0.14969714
## 1542 0.14806335 0.06243174 0.10667727 0.14969714
## 1543 0.14806335 0.06243174 0.12152375 0.14969714
## 1544 0.14806335 0.10363527 0.09814869 0.14969714
## 1545 0.14806335 0.09932349 0.12152375 0.14969714
## 1546 0.14806335 0.10363527 0.12272101 0.14969714
## 1547 0.14806335 0.09932349 0.11410336 0.14969714
## 1548 0.14806335 0.06243174 0.10667727 0.14969714
## 1549 0.05072162 0.06243174 0.12152375 0.14969714
## 1550 0.14806335 0.06243174 0.10667727 0.14969714
## 1551 0.14806335 0.21582397 0.11410336 0.14969714
## 1552 0.14806335 0.06243174 0.12272101 0.14969714
## 1553 0.14806335 0.09293746 0.11410336 0.14969714
## 1554 0.14806335 0.45296167 0.09814869 0.14969714
## 1555 0.05072162 0.45296167 0.11410336 0.14969714
## 1556 0.14806335 0.09932349 0.11410336 0.14969714
## 1557 0.14806335 0.09967090 0.11410336 0.14969714
## 1558 0.14806335 0.06243174 0.09814869 0.14969714
## 1559 0.05072162 0.06243174 0.09814869 0.14969714
## 1560 0.14806335 0.21582397 0.10667727 0.14969714
## 1561 0.14806335 0.09967090 0.10667727 0.14969714
## 1562 0.14806335 0.06243174 0.10667727 0.14969714
## 1563 0.05072162 0.09932349 0.12152375 0.14969714
## 1564 0.14806335 0.21582397 0.12152375 0.14969714
## 1565 0.14806335 0.06243174 0.11410336 0.14969714
## 1566 0.14806335 0.21582397 0.12272101 0.14969714
## 1567 0.14806335 0.45296167 0.11410336 0.14969714
## 1568 0.05072162 0.45296167 0.11410336 0.14969714
## 1569 0.05072162 0.09932349 0.11410336 0.14969714
## 1570 0.14806335 0.21582397 0.10667727 0.14969714
## 1571 0.14806335 0.06243174 0.09814869 0.14969714
## 1572 0.14806335 0.09293746 0.12152375 0.14969714
## 1573 0.14806335 0.09932349 0.09814869 0.14969714
## 1574 0.14806335 0.45296167 0.10667727 0.14969714
## 1575 0.14806335 0.06243174 0.10667727 0.14969714
## 1576 0.14806335 0.06243174 0.09814869 0.14969714
## 1577 0.14806335 0.06243174 0.12152375 0.14969714
## 1578 0.14806335 0.21582397 0.12152375 0.14969714
## 1579 0.14806335 0.09293746 0.11410336 0.14969714
## 1580 0.14806335 0.09967090 0.09814869 0.14969714
## 1581 0.14806335 0.21582397 0.12152375 0.14969714
## 1582 0.14806335 0.06243174 0.11410336 0.14969714
## 1583 0.14806335 0.09293746 0.12272101 0.14969714
## 1584 0.14806335 0.06243174 0.12272101 0.14969714
## 1585 0.05072162 0.09967090 0.12152375 0.14969714
## 1586 0.14806335 0.06243174 0.09814869 0.14969714
## 1587 0.14806335 0.21582397 0.09814869 0.14969714
## 1588 0.14806335 0.06243174 0.10667727 0.14969714
## 1589 0.14806335 0.06243174 0.12152375 0.14969714
## 1590 0.14806335 0.06243174 0.12272101 0.14969714
## 1591 0.14806335 0.06243174 0.11410336 0.14969714
## 1592 0.14806335 0.06243174 0.12152375 0.14969714
## 1593 0.14806335 0.06243174 0.12272101 0.14969714
## 1594 0.14806335 0.10363527 0.10667727 0.14969714
## 1595 0.14806335 0.06243174 0.09814869 0.14969714
## 1596 0.14806335 0.09293746 0.12152375 0.14969714
## 1597 0.14806335 0.09932349 0.10667727 0.14969714
## 1598 0.14806335 0.21582397 0.12272101 0.14969714
## 1599 0.14806335 0.10363527 0.11410336 0.14969714
## 1600 0.14806335 0.09932349 0.11410336 0.14969714
## 1601 0.14806335 0.09967090 0.09814869 0.14969714
## 1602 0.14806335 0.06243174 0.11410336 0.14969714
## 1603 0.14806335 0.43750000 0.09814869 0.14969714
## 1604 0.14806335 0.10363527 0.12152375 0.14969714
## 1605 0.14806335 0.06243174 0.10667727 0.14969714
## 1606 0.05072162 0.09932349 0.12272101 0.14969714
## 1607 0.14806335 0.06243174 0.12272101 0.14969714
## 1608 0.14806335 0.06243174 0.12152375 0.14969714
## 1609 0.14806335 0.21582397 0.10667727 0.14969714
## 1610 0.14806335 0.21582397 0.10667727 0.14969714
## 1611 0.14806335 0.09932349 0.12152375 0.14969714
## 1612 0.14806335 0.10363527 0.11410336 0.14969714
## 1613 0.14806335 0.21582397 0.10667727 0.14969714
## 1614 0.14806335 0.21582397 0.09814869 0.14969714
## 1615 0.14806335 0.06243174 0.12152375 0.14969714
## 1616 0.14806335 0.21582397 0.10667727 0.14969714
## 1617 0.05072162 0.09932349 0.12272101 0.14969714
## 1618 0.14806335 0.51535088 0.11410336 0.14969714
## 1619 0.14806335 0.09932349 0.12152375 0.14969714
## 1620 0.14806335 0.51535088 0.12152375 0.14969714
## 1621 0.14806335 0.21582397 0.10667727 0.14969714
## 1622 0.14806335 0.09967090 0.09814869 0.14969714
## 1623 0.14806335 0.06243174 0.12272101 0.14969714
## 1624 0.14806335 0.43750000 0.09814869 0.14969714
## 1625 0.14806335 0.06243174 0.12272101 0.14969714
## 1626 0.14806335 0.09293746 0.11410336 0.14969714
## 1627 0.14806335 0.43750000 0.10667727 0.14969714
## 1628 0.14806335 0.06243174 0.09814869 0.14969714
## 1629 0.14806335 0.43750000 0.10667727 0.14969714
## 1630 0.14806335 0.09932349 0.11410336 0.14969714
## 1631 0.14806335 0.06243174 0.10667727 0.14969714
## 1632 0.14806335 0.06243174 0.09814869 0.14969714
## 1633 0.14806335 0.21582397 0.09814869 0.14969714
## 1634 0.14806335 0.06243174 0.10667727 0.14969714
## 1635 0.14806335 0.06243174 0.11410336 0.14969714
## 1636 0.14806335 0.09932349 0.12272101 0.14969714
## 1637 0.14806335 0.09967090 0.12272101 0.14969714
## 1638 0.14806335 0.09932349 0.11410336 0.14969714
## 1639 0.14806335 0.09932349 0.11410336 0.14969714
## 1640 0.14806335 0.06243174 0.12272101 0.14969714
## 1641 0.14806335 0.21582397 0.10667727 0.14969714
## 1642 0.14806335 0.06243174 0.11410336 0.14969714
## 1643 0.14806335 0.06243174 0.09814869 0.14969714
## 1644 0.14806335 0.06243174 0.12272101 0.14969714
## 1645 0.05072162 0.09932349 0.11410336 0.14969714
## 1646 0.14806335 0.06243174 0.12272101 0.14969714
## 1647 0.14806335 0.06243174 0.12152375 0.14969714
## 1648 0.14806335 0.21582397 0.10667727 0.14969714
## 1649 0.14806335 0.06243174 0.10667727 0.14969714
## 1650 0.14806335 0.06243174 0.12152375 0.14969714
## 1651 0.14806335 0.21582397 0.09814869 0.14969714
## 1652 0.14806335 0.09932349 0.10667727 0.14969714
## 1653 0.14806335 0.06243174 0.12152375 0.14969714
## 1654 0.14806335 0.06243174 0.11410336 0.14969714
## 1655 0.14806335 0.09967090 0.11410336 0.14969714
## 1656 0.14806335 0.06243174 0.09814869 0.14969714
## 1657 0.14806335 0.09932349 0.11410336 0.14969714
## 1658 0.14806335 0.06243174 0.12272101 0.14969714
## 1659 0.14806335 0.09293746 0.09814869 0.14969714
## 1660 0.05072162 0.06243174 0.09814869 0.14969714
## 1661 0.14806335 0.21582397 0.09814869 0.14969714
## 1662 0.14806335 0.06243174 0.12152375 0.14969714
## 1663 0.14806335 0.06243174 0.10667727 0.14969714
## 1664 0.14806335 0.10363527 0.11410336 0.14969714
## 1665 0.14806335 0.21582397 0.12152375 0.14969714
## 1666 0.14806335 0.06243174 0.12272101 0.14969714
## 1667 0.14806335 0.09932349 0.12272101 0.14969714
## 1668 0.14806335 0.09932349 0.11410336 0.14969714
## 1669 0.14806335 0.09932349 0.11410336 0.14969714
## 1670 0.14806335 0.09932349 0.10667727 0.14969714
## 1671 0.14806335 0.06243174 0.09814869 0.14969714
## 1672 0.14806335 0.06243174 0.09814869 0.14969714
## 1673 0.14806335 0.06243174 0.12152375 0.14969714
## 1674 0.14806335 0.21582397 0.10667727 0.14969714
## 1675 0.14806335 0.09967090 0.12272101 0.14969714
## 1676 0.14806335 0.09932349 0.09814869 0.14969714
## 1677 0.14806335 0.06243174 0.09814869 0.14969714
## 1678 0.14806335 0.43750000 0.12272101 0.14969714
## 1679 0.14806335 0.45296167 0.12152375 0.14969714
## 1680 0.14806335 0.09932349 0.10667727 0.14969714
## 1681 0.14806335 0.06243174 0.11410336 0.14969714
## 1682 0.14806335 0.21582397 0.11410336 0.14969714
## 1683 0.14806335 0.21582397 0.10667727 0.14969714
## 1684 0.14806335 0.45296167 0.12152375 0.14969714
## 1685 0.14806335 0.21582397 0.12152375 0.14969714
## 1686 0.14806335 0.09932349 0.09814869 0.14969714
## 1687 0.14806335 0.06243174 0.12272101 0.14969714
## 1688 0.05072162 0.09932349 0.10667727 0.14969714
## 1689 0.14806335 0.06243174 0.10667727 0.14969714
## 1690 0.05072162 0.10363527 0.09814869 0.14969714
## 1691 0.14806335 0.09932349 0.12272101 0.14969714
## 1692 0.14806335 0.10363527 0.10667727 0.14969714
## 1693 0.14806335 0.09932349 0.12272101 0.14969714
## 1694 0.14806335 0.09967090 0.09814869 0.14969714
## 1695 0.14806335 0.21582397 0.10667727 0.14969714
## 1696 0.14806335 0.06243174 0.11410336 0.14969714
## 1697 0.05072162 0.09293746 0.10667727 0.14969714
## 1698 0.14806335 0.06243174 0.12272101 0.14969714
## 1699 0.14806335 0.06243174 0.09814869 0.14969714
## 1700 0.14806335 0.06243174 0.10667727 0.14969714
## 1701 0.14806335 0.10363527 0.11410336 0.14969714
## 1702 0.14806335 0.09932349 0.10667727 0.14969714
## 1703 0.14806335 0.06243174 0.12272101 0.14969714
## 1704 0.14806335 0.10363527 0.10667727 0.14969714
## 1705 0.14806335 0.10363527 0.09814869 0.14969714
## 1706 0.14806335 0.10363527 0.10667727 0.14969714
## 1707 0.05072162 0.06243174 0.09814869 0.14969714
## 1708 0.14806335 0.21582397 0.10667727 0.14969714
## 1709 0.14806335 0.09967090 0.10667727 0.14969714
## 1710 0.14806335 0.09932349 0.09814869 0.14969714
## 1711 0.14806335 0.21582397 0.09814869 0.14969714
## 1712 0.14806335 0.21582397 0.12272101 0.14969714
## 1713 0.14806335 0.06243174 0.12152375 0.14969714
## 1714 0.14806335 0.09932349 0.09814869 0.14969714
## 1715 0.14806335 0.06243174 0.11410336 0.14969714
## 1716 0.14806335 0.21582397 0.12152375 0.14969714
## 1717 0.14806335 0.06243174 0.09814869 0.14969714
## 1718 0.14806335 0.21582397 0.12152375 0.14969714
## 1719 0.14806335 0.06243174 0.12152375 0.14969714
## 1720 0.14806335 0.06243174 0.12272101 0.14969714
## 1721 0.14806335 0.51535088 0.09814869 0.14969714
## 1722 0.14806335 0.21582397 0.11410336 0.14969714
## 1723 0.14806335 0.45296167 0.12152375 0.14969714
## 1724 0.14806335 0.09932349 0.12152375 0.14969714
## 1725 0.14806335 0.21582397 0.10667727 0.14969714
## 1726 0.14806335 0.21582397 0.11410336 0.14969714
## 1727 0.14806335 0.06243174 0.12152375 0.14969714
## 1728 0.14806335 0.09932349 0.09814869 0.14969714
## 1729 0.05072162 0.09932349 0.10667727 0.14969714
## 1730 0.14806335 0.06243174 0.12152375 0.14969714
## 1731 0.14806335 0.06243174 0.12152375 0.14969714
## 1732 0.14806335 0.09932349 0.12272101 0.14969714
## 1733 0.14806335 0.09932349 0.11410336 0.14969714
## 1734 0.14806335 0.06243174 0.09814869 0.14969714
## 1735 0.14806335 0.06243174 0.11410336 0.14969714
## 1736 0.14806335 0.51535088 0.10667727 0.14969714
## 1737 0.14806335 0.06243174 0.11410336 0.14969714
## 1738 0.14806335 0.09293746 0.12152375 0.14969714
## 1739 0.14806335 0.09932349 0.12152375 0.14969714
## 1740 0.14806335 0.21582397 0.12152375 0.14969714
## 1741 0.14806335 0.06243174 0.12272101 0.14969714
## 1742 0.14806335 0.21582397 0.10667727 0.14969714
## 1743 0.14806335 0.06243174 0.10667727 0.14969714
## 1744 0.14806335 0.06243174 0.11410336 0.14969714
## 1745 0.14806335 0.06243174 0.11410336 0.14969714
## 1746 0.14806335 0.21582397 0.12152375 0.14969714
## 1747 0.14806335 0.06243174 0.09814869 0.14969714
## 1748 0.14806335 0.48076923 0.12152375 0.14969714
## 1749 0.14806335 0.10363527 0.09814869 0.14969714
## 1750 0.14806335 0.09932349 0.12272101 0.14969714
## 1751 0.14806335 0.06243174 0.10667727 0.14969714
## 1752 0.14806335 0.09967090 0.12272101 0.14969714
## 1753 0.14806335 0.09967090 0.11410336 0.14969714
## 1754 0.14806335 0.06243174 0.12152375 0.14969714
## 1755 0.14806335 0.09932349 0.10667727 0.14969714
## 1756 0.14806335 0.06243174 0.12272101 0.14969714
## 1757 0.14806335 0.06243174 0.12272101 0.14969714
## 1758 0.05072162 0.09293746 0.09814869 0.14969714
## 1759 0.14806335 0.09932349 0.12272101 0.14969714
## 1760 0.14806335 0.06243174 0.12152375 0.14969714
## 1761 0.14806335 0.09932349 0.09814869 0.14969714
## 1762 0.14806335 0.09967090 0.10667727 0.14969714
## 1763 0.05072162 0.21582397 0.09814869 0.14969714
## 1764 0.14806335 0.06243174 0.12272101 0.14969714
## 1765 0.14806335 0.06243174 0.12152375 0.14969714
## 1766 0.14806335 0.09967090 0.11410336 0.14969714
## 1767 0.05072162 0.06243174 0.12272101 0.14969714
## 1768 0.14806335 0.21582397 0.10667727 0.14969714
## 1769 0.05072162 0.09967090 0.12272101 0.14969714
## 1770 0.14806335 0.09932349 0.10667727 0.14969714
## 1771 0.14806335 0.06243174 0.11410336 0.14969714
## 1772 0.14806335 0.06243174 0.12272101 0.14969714
## 1773 0.14806335 0.06243174 0.10667727 0.14969714
## 1774 0.14806335 0.06243174 0.10667727 0.14969714
## 1775 0.14806335 0.06243174 0.09814869 0.14969714
## 1776 0.14806335 0.09967090 0.12272101 0.14969714
## 1777 0.14806335 0.21582397 0.10667727 0.14969714
## 1778 0.14806335 0.10363527 0.10667727 0.14969714
## 1779 0.14806335 0.48076923 0.12152375 0.14969714
## 1780 0.14806335 0.06243174 0.11410336 0.14969714
## 1781 0.14806335 0.09932349 0.10667727 0.14969714
## 1782 0.14806335 0.06243174 0.11410336 0.14969714
## 1783 0.14806335 0.21582397 0.09814869 0.14969714
## 1784 0.14806335 0.09967090 0.11410336 0.14969714
## 1785 0.14806335 0.48076923 0.12152375 0.14969714
## 1786 0.14806335 0.06243174 0.10667727 0.14969714
## 1787 0.05072162 0.09932349 0.12152375 0.14969714
## 1788 0.05072162 0.09932349 0.10667727 0.14969714
## 1789 0.14806335 0.06243174 0.10667727 0.14969714
## 1790 0.14806335 0.06243174 0.11410336 0.14969714
## 1791 0.14806335 0.09967090 0.11410336 0.14969714
## 1792 0.14806335 0.09932349 0.09814869 0.14969714
## 1793 0.14806335 0.09932349 0.11410336 0.14969714
## 1794 0.14806335 0.09932349 0.12272101 0.14969714
## 1795 0.14806335 0.09932349 0.10667727 0.14969714
## 1796 0.14806335 0.21582397 0.09814869 0.14969714
## 1797 0.14806335 0.21582397 0.12152375 0.14969714
## 1798 0.14806335 0.21582397 0.10667727 0.14969714
## 1799 0.05072162 0.06243174 0.12272101 0.14969714
## 1800 0.14806335 0.10363527 0.09814869 0.14969714
## 1801 0.14806335 0.09932349 0.10667727 0.14969714
## 1802 0.05072162 0.09293746 0.12152375 0.14969714
## 1803 0.14806335 0.09932349 0.09814869 0.14969714
## 1804 0.05072162 0.06243174 0.12272101 0.14969714
## 1805 0.14806335 0.06243174 0.12152375 0.14969714
## 1806 0.14806335 0.09932349 0.12272101 0.14969714
## 1807 0.14806335 0.06243174 0.12272101 0.14969714
## 1808 0.14806335 0.09932349 0.12152375 0.14969714
## 1809 0.14806335 0.09967090 0.12152375 0.14969714
## 1810 0.14806335 0.21582397 0.09814869 0.14969714
## 1811 0.14806335 0.21582397 0.09814869 0.14969714
## 1812 0.14806335 0.09932349 0.12272101 0.14969714
## 1813 0.14806335 0.06243174 0.12272101 0.14969714
## 1814 0.14806335 0.06243174 0.11410336 0.14969714
## 1815 0.14806335 0.45296167 0.12152375 0.14969714
## 1816 0.14806335 0.48076923 0.12152375 0.14969714
## 1817 0.14806335 0.21582397 0.09814869 0.14969714
## 1818 0.14806335 0.06243174 0.11410336 0.14969714
## 1819 0.14806335 0.06243174 0.12152375 0.14969714
## 1820 0.14806335 0.21582397 0.12272101 0.14969714
## 1821 0.14806335 0.06243174 0.12272101 0.14969714
## 1822 0.14806335 0.09967090 0.12272101 0.14969714
## 1823 0.14806335 0.09932349 0.11410336 0.14969714
## 1824 0.14806335 0.06243174 0.12272101 0.14969714
## 1825 0.14806335 0.21582397 0.10667727 0.14969714
## 1826 0.14806335 0.21582397 0.12272101 0.14969714
## 1827 0.14806335 0.09932349 0.12152375 0.14969714
## 1828 0.14806335 0.09932349 0.10667727 0.14969714
## 1829 0.14806335 0.10363527 0.10667727 0.14969714
## 1830 0.14806335 0.09932349 0.09814869 0.14969714
## 1831 0.14806335 0.21582397 0.11410336 0.14969714
## 1832 0.05072162 0.06243174 0.11410336 0.14969714
## 1833 0.14806335 0.21582397 0.11410336 0.14969714
## 1834 0.14806335 0.06243174 0.09814869 0.14969714
## 1835 0.14806335 0.09932349 0.12272101 0.14969714
## 1836 0.14806335 0.06243174 0.11410336 0.14969714
## 1837 0.14806335 0.51535088 0.10667727 0.14969714
## 1838 0.05072162 0.48076923 0.12152375 0.14969714
## 1839 0.14806335 0.06243174 0.12272101 0.14969714
## 1840 0.14806335 0.09932349 0.09814869 0.14969714
## 1841 0.14806335 0.06243174 0.12272101 0.14969714
## 1842 0.05072162 0.06243174 0.10667727 0.14969714
## 1843 0.05072162 0.06243174 0.11410336 0.14969714
## 1844 0.05072162 0.48076923 0.12272101 0.14969714
## 1845 0.14806335 0.09293746 0.12152375 0.14969714
## 1846 0.14806335 0.51535088 0.09814869 0.14969714
## 1847 0.14806335 0.09293746 0.12272101 0.14969714
## 1848 0.14806335 0.06243174 0.12272101 0.14969714
## 1849 0.14806335 0.21582397 0.10667727 0.14969714
## 1850 0.05072162 0.06243174 0.11410336 0.14969714
## 1851 0.14806335 0.06243174 0.10667727 0.14969714
## 1852 0.14806335 0.06243174 0.09814869 0.14969714
## 1853 0.14806335 0.21582397 0.12152375 0.14969714
## 1854 0.05072162 0.09932349 0.10667727 0.14969714
## 1855 0.14806335 0.06243174 0.12152375 0.14969714
## 1856 0.14806335 0.09293746 0.10667727 0.14969714
## 1857 0.14806335 0.06243174 0.10667727 0.14969714
## 1858 0.14806335 0.06243174 0.09814869 0.14969714
## 1859 0.14806335 0.09293746 0.10667727 0.14969714
## 1860 0.14806335 0.06243174 0.10667727 0.14969714
## 1861 0.14806335 0.09932349 0.12272101 0.14969714
## 1862 0.14806335 0.09932349 0.09814869 0.14969714
## 1863 0.05072162 0.06243174 0.10667727 0.14969714
## 1864 0.14806335 0.06243174 0.12272101 0.14969714
## 1865 0.14806335 0.09967090 0.09814869 0.14969714
## 1866 0.14806335 0.06243174 0.12272101 0.14969714
## 1867 0.14806335 0.06243174 0.10667727 0.14969714
## 1868 0.14806335 0.06243174 0.12272101 0.14969714
## 1869 0.14806335 0.09932349 0.12152375 0.14969714
## 1870 0.14806335 0.06243174 0.11410336 0.14969714
## 1871 0.14806335 0.06243174 0.12152375 0.14969714
## 1872 0.14806335 0.10363527 0.11410336 0.14969714
## 1873 0.14806335 0.45296167 0.09814869 0.14969714
## 1874 0.14806335 0.06243174 0.12152375 0.14969714
## 1875 0.14806335 0.09932349 0.11410336 0.14969714
## 1876 0.05072162 0.09967090 0.12272101 0.14969714
## 1877 0.14806335 0.09932349 0.09814869 0.14969714
## 1878 0.14806335 0.51535088 0.11410336 0.14969714
## 1879 0.14806335 0.06243174 0.10667727 0.14969714
## 1880 0.14806335 0.06243174 0.12272101 0.14969714
## 1881 0.14806335 0.06243174 0.10667727 0.14969714
## 1882 0.14806335 0.21582397 0.12272101 0.14969714
## 1883 0.14806335 0.21582397 0.12152375 0.14969714
## 1884 0.14806335 0.06243174 0.11410336 0.14969714
## 1885 0.14806335 0.09293746 0.12272101 0.14969714
## 1886 0.14806335 0.51535088 0.09814869 0.14969714
## 1887 0.05072162 0.09932349 0.10667727 0.14969714
## 1888 0.14806335 0.45296167 0.11410336 0.14969714
## 1889 0.14806335 0.06243174 0.12272101 0.14969714
## 1890 0.14806335 0.09932349 0.12272101 0.14969714
## 1891 0.14806335 0.09932349 0.09814869 0.14969714
## 1892 0.14806335 0.21582397 0.12152375 0.14969714
## 1893 0.14806335 0.06243174 0.12272101 0.14969714
## 1894 0.14806335 0.06243174 0.11410336 0.14969714
## 1895 0.14806335 0.06243174 0.12272101 0.14969714
## 1896 0.14806335 0.06243174 0.12272101 0.14969714
## 1897 0.14806335 0.10363527 0.11410336 0.14969714
## 1898 0.14806335 0.10363527 0.09814869 0.14969714
## 1899 0.14806335 0.21582397 0.10667727 0.14969714
## 1900 0.14806335 0.06243174 0.12272101 0.14969714
## 1901 0.05072162 0.09293746 0.12152375 0.14969714
## 1902 0.14806335 0.06243174 0.10667727 0.14969714
## 1903 0.14806335 0.06243174 0.10667727 0.14969714
## 1904 0.05072162 0.09932349 0.12272101 0.14969714
## 1905 0.14806335 0.06243174 0.12152375 0.14969714
## 1906 0.05072162 0.06243174 0.11410336 0.14969714
## 1907 0.14806335 0.21582397 0.10667727 0.14969714
## 1908 0.14806335 0.10363527 0.12272101 0.14969714
## 1909 0.05072162 0.09967090 0.10667727 0.14969714
## 1910 0.14806335 0.21582397 0.09814869 0.14969714
## 1911 0.14806335 0.45296167 0.10667727 0.14969714
## 1912 0.14806335 0.06243174 0.09814869 0.14969714
## 1913 0.14806335 0.06243174 0.12272101 0.14969714
## 1914 0.14806335 0.06243174 0.10667727 0.14969714
## 1915 0.14806335 0.21582397 0.12152375 0.14969714
## 1916 0.14806335 0.06243174 0.12152375 0.14969714
## 1917 0.14806335 0.09932349 0.09814869 0.14969714
## 1918 0.14806335 0.45296167 0.10667727 0.14969714
## 1919 0.14806335 0.21582397 0.09814869 0.14969714
## 1920 0.14806335 0.06243174 0.12272101 0.14969714
## 1921 0.14806335 0.10363527 0.12152375 0.14969714
## 1922 0.14806335 0.09932349 0.11410336 0.14969714
## 1923 0.14806335 0.21582397 0.09814869 0.14969714
## 1924 0.14806335 0.06243174 0.09814869 0.14969714
## 1925 0.05072162 0.09932349 0.12272101 0.14969714
## 1926 0.14806335 0.06243174 0.10667727 0.14969714
## 1927 0.14806335 0.21582397 0.12152375 0.14969714
## 1928 0.14806335 0.09932349 0.11410336 0.14969714
## 1929 0.14806335 0.43750000 0.12152375 0.14969714
## 1930 0.14806335 0.45296167 0.12272101 0.14969714
## 1931 0.14806335 0.06243174 0.10667727 0.14969714
## 1932 0.14806335 0.09932349 0.12152375 0.14969714
## 1933 0.14806335 0.45296167 0.12272101 0.14969714
## 1934 0.14806335 0.09932349 0.12272101 0.14969714
## 1935 0.14806335 0.21582397 0.10667727 0.14969714
## 1936 0.14806335 0.21582397 0.12152375 0.14969714
## 1937 0.14806335 0.21582397 0.12152375 0.14969714
## 1938 0.14806335 0.09293746 0.12272101 0.14969714
## 1939 0.14806335 0.06243174 0.11410336 0.14969714
## 1940 0.14806335 0.09932349 0.10667727 0.14969714
## 1941 0.14806335 0.09932349 0.12272101 0.14969714
## 1942 0.14806335 0.09967090 0.11410336 0.14969714
## 1943 0.14806335 0.06243174 0.11410336 0.14969714
## 1944 0.14806335 0.06243174 0.12152375 0.14969714
## 1945 0.14806335 0.09932349 0.12152375 0.14969714
## 1946 0.14806335 0.21582397 0.11410336 0.14969714
## 1947 0.14806335 0.09932349 0.11410336 0.14969714
## 1948 0.14806335 0.06243174 0.09814869 0.14969714
## 1949 0.14806335 0.06243174 0.10667727 0.14969714
## 1950 0.14806335 0.10363527 0.10667727 0.14969714
## 1951 0.14806335 0.06243174 0.11410336 0.14969714
## 1952 0.14806335 0.06243174 0.12152375 0.14969714
## 1953 0.14806335 0.09932349 0.10667727 0.14969714
## 1954 0.14806335 0.06243174 0.10667727 0.14969714
## 1955 0.14806335 0.09932349 0.12272101 0.14969714
## 1956 0.14806335 0.45296167 0.09814869 0.14969714
## 1957 0.14806335 0.06243174 0.10667727 0.14969714
## 1958 0.05072162 0.10363527 0.11410336 0.14969714
## 1959 0.14806335 0.09932349 0.10667727 0.14969714
## 1960 0.05072162 0.09932349 0.09814869 0.14969714
## 1961 0.14806335 0.06243174 0.09814869 0.14969714
## 1962 0.14806335 0.06243174 0.10667727 0.14969714
## 1963 0.05072162 0.06243174 0.12272101 0.14969714
## 1964 0.14806335 0.21582397 0.09814869 0.14969714
## 1965 0.14806335 0.06243174 0.12272101 0.14969714
## 1966 0.14806335 0.06243174 0.10667727 0.14969714
## 1967 0.14806335 0.51535088 0.09814869 0.14969714
## 1968 0.14806335 0.09932349 0.12152375 0.14969714
## 1969 0.14806335 0.45296167 0.09814869 0.14969714
## 1970 0.14806335 0.09932349 0.12152375 0.14969714
## 1971 0.14806335 0.09932349 0.12272101 0.14969714
## 1972 0.14806335 0.09932349 0.12272101 0.14969714
## 1973 0.14806335 0.06243174 0.10667727 0.14969714
## 1974 0.14806335 0.09932349 0.09814869 0.14969714
## 1975 0.14806335 0.06243174 0.11410336 0.14969714
## 1976 0.14806335 0.06243174 0.11410336 0.14969714
## 1977 0.14806335 0.06243174 0.10667727 0.14969714
## 1978 0.14806335 0.06243174 0.12272101 0.14969714
## 1979 0.14806335 0.21582397 0.12272101 0.14969714
## 1980 0.14806335 0.06243174 0.11410336 0.14969714
## 1981 0.14806335 0.10363527 0.09814869 0.14969714
## 1982 0.14806335 0.06243174 0.12272101 0.14969714
## 1983 0.14806335 0.09967090 0.10667727 0.14969714
## 1984 0.14806335 0.10363527 0.12272101 0.14969714
## 1985 0.14806335 0.06243174 0.11410336 0.14969714
## 1986 0.14806335 0.51535088 0.12152375 0.14969714
## 1987 0.14806335 0.06243174 0.10667727 0.14969714
## 1988 0.14806335 0.06243174 0.12152375 0.14969714
## 1989 0.14806335 0.21582397 0.10667727 0.14969714
## 1990 0.14806335 0.09967090 0.09814869 0.14969714
## 1991 0.14806335 0.51535088 0.11410336 0.14969714
## 1992 0.14806335 0.10363527 0.09814869 0.14969714
## 1993 0.14806335 0.09932349 0.12272101 0.14969714
## 1994 0.14806335 0.06243174 0.12272101 0.14969714
## 1995 0.14806335 0.06243174 0.10667727 0.14969714
## 1996 0.05072162 0.10363527 0.09814869 0.14969714
## 1997 0.14806335 0.06243174 0.12152375 0.14969714
## 1998 0.14806335 0.10363527 0.12272101 0.14969714
## 1999 0.14806335 0.09932349 0.11410336 0.14969714
## 2000 0.14806335 0.43750000 0.10667727 0.14969714
## 2001 0.14806335 0.06243174 0.12272101 0.14969714
## 2002 0.14806335 0.06243174 0.11410336 0.14969714
## 2003 0.14806335 0.06243174 0.10667727 0.14969714
## 2004 0.14806335 0.09932349 0.12272101 0.14969714
## 2005 0.14806335 0.06243174 0.10667727 0.14969714
## 2006 0.14806335 0.09932349 0.11410336 0.14969714
## 2007 0.14806335 0.09932349 0.10667727 0.14969714
## 2008 0.14806335 0.21582397 0.11410336 0.14969714
## 2009 0.14806335 0.06243174 0.09814869 0.14969714
## 2010 0.14806335 0.06243174 0.09814869 0.14969714
## 2011 0.14806335 0.09932349 0.10667727 0.14969714
## 2012 0.14806335 0.06243174 0.12152375 0.14969714
## 2013 0.14806335 0.06243174 0.11410336 0.14969714
## 2014 0.14806335 0.21582397 0.10667727 0.14969714
## 2015 0.14806335 0.21582397 0.09814869 0.14969714
## 2016 0.05072162 0.21582397 0.10667727 0.14969714
## 2017 0.14806335 0.45296167 0.10667727 0.14969714
## 2018 0.14806335 0.06243174 0.09814869 0.14969714
## 2019 0.14806335 0.09932349 0.11410336 0.14969714
## 2020 0.14806335 0.09932349 0.12272101 0.14969714
## 2021 0.14806335 0.09967090 0.11410336 0.14969714
## 2022 0.14806335 0.09932349 0.11410336 0.14969714
## 2023 0.14806335 0.09932349 0.09814869 0.14969714
## 2024 0.14806335 0.21582397 0.09814869 0.14969714
## 2025 0.14806335 0.09932349 0.12272101 0.14969714
## 2026 0.14806335 0.10363527 0.12152375 0.14969714
## 2027 0.14806335 0.10363527 0.09814869 0.14969714
## 2028 0.14806335 0.06243174 0.12152375 0.14969714
## 2029 0.14806335 0.09932349 0.12272101 0.14969714
## 2030 0.14806335 0.06243174 0.09814869 0.14969714
## 2031 0.14806335 0.06243174 0.09814869 0.14969714
## 2032 0.14806335 0.09932349 0.09814869 0.14969714
## 2033 0.14806335 0.06243174 0.11410336 0.14969714
## 2034 0.14806335 0.06243174 0.10667727 0.14969714
## 2035 0.14806335 0.06243174 0.09814869 0.14969714
## 2036 0.14806335 0.21582397 0.11410336 0.14969714
## 2037 0.14806335 0.09932349 0.12152375 0.14969714
## 2038 0.14806335 0.06243174 0.10667727 0.14969714
## 2039 0.14806335 0.10363527 0.12152375 0.14969714
## 2040 0.14806335 0.09932349 0.09814869 0.14969714
## 2041 0.14806335 0.45296167 0.11410336 0.14969714
## 2042 0.14806335 0.21582397 0.12152375 0.14969714
## 2043 0.14806335 0.21582397 0.12152375 0.14969714
## 2044 0.14806335 0.06243174 0.12152375 0.14969714
## 2045 0.14806335 0.51535088 0.11410336 0.14969714
## 2046 0.14806335 0.09932349 0.11410336 0.14969714
## 2047 0.14806335 0.09932349 0.11410336 0.14969714
## 2048 0.14806335 0.09932349 0.09814869 0.14969714
## 2049 0.14806335 0.06243174 0.10667727 0.14969714
## 2050 0.14806335 0.06243174 0.12272101 0.14969714
## 2051 0.14806335 0.21582397 0.09814869 0.14969714
## 2052 0.05072162 0.43750000 0.11410336 0.14969714
## 2053 0.14806335 0.21582397 0.12152375 0.14969714
## 2054 0.14806335 0.06243174 0.11410336 0.14969714
## 2055 0.14806335 0.21582397 0.10667727 0.14969714
## 2056 0.14806335 0.21582397 0.09814869 0.14969714
## 2057 0.14806335 0.10363527 0.10667727 0.14969714
## 2058 0.05072162 0.51535088 0.12152375 0.14969714
## 2059 0.14806335 0.06243174 0.10667727 0.14969714
## 2060 0.14806335 0.06243174 0.09814869 0.14969714
## 2061 0.14806335 0.51535088 0.10667727 0.14969714
## 2062 0.14806335 0.06243174 0.12152375 0.14969714
## 2063 0.14806335 0.09932349 0.12152375 0.14969714
## 2064 0.05072162 0.06243174 0.12152375 0.14969714
## 2065 0.14806335 0.09932349 0.11410336 0.14969714
## 2066 0.14806335 0.06243174 0.11410336 0.14969714
## 2067 0.14806335 0.06243174 0.12152375 0.14969714
## 2068 0.14806335 0.06243174 0.11410336 0.14969714
## 2069 0.14806335 0.06243174 0.12272101 0.14969714
## 2070 0.14806335 0.06243174 0.09814869 0.14969714
## 2071 0.14806335 0.10363527 0.12152375 0.14969714
## 2072 0.14806335 0.06243174 0.10667727 0.14969714
## 2073 0.14806335 0.21582397 0.12152375 0.14969714
## 2074 0.14806335 0.06243174 0.09814869 0.14969714
## 2075 0.14806335 0.45296167 0.09814869 0.14969714
## 2076 0.14806335 0.06243174 0.12272101 0.14969714
## 2077 0.14806335 0.06243174 0.10667727 0.14969714
## 2078 0.14806335 0.21582397 0.09814869 0.14969714
## 2079 0.14806335 0.21582397 0.12152375 0.14969714
## 2080 0.14806335 0.06243174 0.10667727 0.14969714
## 2081 0.14806335 0.06243174 0.10667727 0.14969714
## 2082 0.05072162 0.21582397 0.11410336 0.14969714
## 2083 0.14806335 0.21582397 0.11410336 0.14969714
## 2084 0.14806335 0.43750000 0.12152375 0.14969714
## 2085 0.14806335 0.06243174 0.10667727 0.14969714
## 2086 0.14806335 0.06243174 0.11410336 0.14969714
## 2087 0.14806335 0.43750000 0.09814869 0.14969714
## 2088 0.14806335 0.06243174 0.09814869 0.14969714
## 2089 0.14806335 0.06243174 0.09814869 0.14969714
## 2090 0.14806335 0.09932349 0.12152375 0.14969714
## 2091 0.14806335 0.06243174 0.12272101 0.14969714
## 2092 0.14806335 0.06243174 0.12272101 0.14969714
## 2093 0.14806335 0.21582397 0.10667727 0.14969714
## 2094 0.14806335 0.09932349 0.09814869 0.14969714
## 2095 0.14806335 0.09967090 0.11410336 0.14969714
## 2096 0.14806335 0.09932349 0.10667727 0.14969714
## 2097 0.14806335 0.09932349 0.12272101 0.14969714
## 2098 0.14806335 0.06243174 0.12152375 0.14969714
## 2099 0.14806335 0.09932349 0.11410336 0.14969714
## 2100 0.14806335 0.06243174 0.11410336 0.14969714
## 2101 0.14806335 0.06243174 0.11410336 0.14969714
## 2102 0.14806335 0.09932349 0.12272101 0.14969714
## 2103 0.14806335 0.06243174 0.10667727 0.14969714
## 2104 0.14806335 0.06243174 0.12152375 0.14969714
## 2105 0.14806335 0.09932349 0.12272101 0.14969714
## 2106 0.14806335 0.10363527 0.09814869 0.14969714
## 2107 0.14806335 0.21582397 0.10667727 0.14969714
## 2108 0.14806335 0.06243174 0.09814869 0.14969714
## 2109 0.14806335 0.06243174 0.12272101 0.14969714
## 2110 0.14806335 0.06243174 0.09814869 0.14969714
## 2111 0.14806335 0.06243174 0.12272101 0.14969714
## 2112 0.14806335 0.21582397 0.10667727 0.14969714
## 2113 0.14806335 0.10363527 0.10667727 0.14969714
## 2114 0.14806335 0.10363527 0.11410336 0.14969714
## 2115 0.14806335 0.48076923 0.09814869 0.14969714
## 2116 0.14806335 0.43750000 0.12272101 0.14969714
## 2117 0.14806335 0.06243174 0.11410336 0.14969714
## 2118 0.14806335 0.51535088 0.12152375 0.14969714
## 2119 0.14806335 0.09932349 0.10667727 0.14969714
## 2120 0.14806335 0.06243174 0.09814869 0.14969714
## 2121 0.14806335 0.45296167 0.10667727 0.14969714
## 2122 0.14806335 0.09967090 0.09814869 0.14969714
## 2123 0.14806335 0.06243174 0.10667727 0.14969714
## 2124 0.14806335 0.21582397 0.09814869 0.14969714
## 2125 0.14806335 0.10363527 0.09814869 0.14969714
## 2126 0.14806335 0.09967090 0.09814869 0.14969714
## 2127 0.14806335 0.06243174 0.12272101 0.14969714
## 2128 0.14806335 0.06243174 0.12152375 0.14969714
## 2129 0.14806335 0.21582397 0.12272101 0.14969714
## 2130 0.14806335 0.06243174 0.12272101 0.14969714
## 2131 0.14806335 0.06243174 0.11410336 0.14969714
## 2132 0.14806335 0.10363527 0.12152375 0.14969714
## 2133 0.14806335 0.06243174 0.11410336 0.14969714
## 2134 0.05072162 0.45296167 0.09814869 0.14969714
## 2135 0.14806335 0.09932349 0.09814869 0.14969714
## 2136 0.14806335 0.06243174 0.09814869 0.14969714
## 2137 0.14806335 0.06243174 0.10667727 0.14969714
## 2138 0.14806335 0.06243174 0.10667727 0.14969714
## 2139 0.14806335 0.43750000 0.12272101 0.14969714
## 2140 0.14806335 0.06243174 0.12272101 0.14969714
## 2141 0.14806335 0.21582397 0.09814869 0.14969714
## 2142 0.14806335 0.51535088 0.09814869 0.14969714
## 2143 0.14806335 0.06243174 0.12272101 0.14969714
## 2144 0.14806335 0.06243174 0.12152375 0.14969714
## 2145 0.14806335 0.21582397 0.10667727 0.14969714
## 2146 0.14806335 0.06243174 0.10667727 0.14969714
## 2147 0.14806335 0.06243174 0.10667727 0.14969714
## 2148 0.14806335 0.09932349 0.12272101 0.14969714
## 2149 0.14806335 0.06243174 0.12152375 0.14969714
## 2150 0.14806335 0.51535088 0.09814869 0.14969714
## 2151 0.14806335 0.21582397 0.12272101 0.14969714
## 2152 0.14806335 0.06243174 0.09814869 0.14969714
## 2153 0.14806335 0.21582397 0.09814869 0.14969714
## 2154 0.14806335 0.09932349 0.10667727 0.14969714
## 2155 0.14806335 0.09932349 0.12152375 0.14969714
## 2156 0.14806335 0.09932349 0.12272101 0.14969714
## 2157 0.14806335 0.06243174 0.09814869 0.14969714
## 2158 0.14806335 0.06243174 0.09814869 0.14969714
## 2159 0.14806335 0.09293746 0.12152375 0.14969714
## 2160 0.14806335 0.06243174 0.11410336 0.14969714
## 2161 0.14806335 0.21582397 0.09814869 0.14969714
## 2162 0.14806335 0.06243174 0.09814869 0.14969714
## 2163 0.14806335 0.21582397 0.09814869 0.14969714
## 2164 0.14806335 0.09932349 0.10667727 0.14969714
## 2165 0.14806335 0.06243174 0.12272101 0.14969714
## 2166 0.14806335 0.09932349 0.09814869 0.14969714
## 2167 0.05072162 0.09932349 0.12272101 0.14969714
## 2168 0.14806335 0.06243174 0.12272101 0.14969714
## 2169 0.14806335 0.06243174 0.12152375 0.14969714
## 2170 0.14806335 0.10363527 0.12272101 0.14969714
## 2171 0.14806335 0.21582397 0.12152375 0.14969714
## 2172 0.14806335 0.09932349 0.12272101 0.14969714
## 2173 0.14806335 0.06243174 0.12272101 0.14969714
## 2174 0.14806335 0.21582397 0.12152375 0.14969714
## 2175 0.14806335 0.06243174 0.12272101 0.14969714
## 2176 0.14806335 0.06243174 0.10667727 0.14969714
## 2177 0.14806335 0.10363527 0.10667727 0.14969714
## 2178 0.14806335 0.09293746 0.10667727 0.14969714
## 2179 0.14806335 0.21582397 0.10667727 0.14969714
## 2180 0.14806335 0.06243174 0.10667727 0.14969714
## 2181 0.14806335 0.09293746 0.11410336 0.14969714
## 2182 0.14806335 0.09932349 0.11410336 0.14969714
## 2183 0.05072162 0.06243174 0.12272101 0.14969714
## 2184 0.14806335 0.09932349 0.11410336 0.14969714
## 2185 0.14806335 0.06243174 0.12272101 0.14969714
## 2186 0.05072162 0.06243174 0.10667727 0.14969714
## 2187 0.14806335 0.45296167 0.12272101 0.14969714
## 2188 0.14806335 0.10363527 0.10667727 0.14969714
## 2189 0.14806335 0.09293746 0.10667727 0.14969714
## 2190 0.14806335 0.09932349 0.10667727 0.14969714
## 2191 0.14806335 0.06243174 0.09814869 0.14969714
## 2192 0.14806335 0.09932349 0.12152375 0.14969714
## 2193 0.14806335 0.09932349 0.12272101 0.14969714
## 2194 0.14806335 0.06243174 0.11410336 0.14969714
## 2195 0.14806335 0.21582397 0.12152375 0.14969714
## 2196 0.14806335 0.09932349 0.09814869 0.14969714
## 2197 0.14806335 0.06243174 0.10667727 0.14969714
## 2198 0.14806335 0.21582397 0.12152375 0.14969714
## 2199 0.14806335 0.09932349 0.10667727 0.14969714
## 2200 0.14806335 0.06243174 0.12272101 0.14969714
## 2201 0.14806335 0.06243174 0.10667727 0.14969714
## 2202 0.14806335 0.06243174 0.12272101 0.14969714
## 2203 0.14806335 0.06243174 0.11410336 0.14969714
## 2204 0.14806335 0.21582397 0.09814869 0.14969714
## 2205 0.14806335 0.21582397 0.11410336 0.14969714
## 2206 0.14806335 0.06243174 0.12152375 0.14969714
## 2207 0.05072162 0.06243174 0.10667727 0.14969714
## 2208 0.14806335 0.06243174 0.10667727 0.14969714
## 2209 0.14806335 0.21582397 0.09814869 0.14969714
## 2210 0.14806335 0.09967090 0.11410336 0.14969714
## 2211 0.05072162 0.09932349 0.11410336 0.14969714
## 2212 0.14806335 0.06243174 0.09814869 0.14969714
## 2213 0.14806335 0.43750000 0.11410336 0.14969714
## 2214 0.14806335 0.06243174 0.12272101 0.14969714
## 2215 0.14806335 0.06243174 0.12272101 0.14969714
## 2216 0.14806335 0.21582397 0.10667727 0.14969714
## 2217 0.14806335 0.09932349 0.09814869 0.14969714
## 2218 0.14806335 0.21582397 0.09814869 0.14969714
## 2219 0.14806335 0.09932349 0.12152375 0.14969714
## 2220 0.14806335 0.09967090 0.12272101 0.14969714
## 2221 0.14806335 0.09293746 0.11410336 0.14969714
## 2222 0.14806335 0.09967090 0.09814869 0.14969714
## 2223 0.05072162 0.06243174 0.11410336 0.14969714
## 2224 0.14806335 0.45296167 0.10667727 0.14969714
## 2225 0.14806335 0.10363527 0.09814869 0.14969714
## 2226 0.14806335 0.06243174 0.12272101 0.14969714
## 2227 0.14806335 0.10363527 0.12272101 0.14969714
## 2228 0.14806335 0.45296167 0.09814869 0.14969714
## 2229 0.14806335 0.21582397 0.10667727 0.14969714
## 2230 0.14806335 0.09293746 0.12152375 0.14969714
## 2231 0.14806335 0.09932349 0.12272101 0.14969714
## 2232 0.14806335 0.21582397 0.12152375 0.14969714
## 2233 0.14806335 0.06243174 0.12272101 0.14969714
## 2234 0.14806335 0.06243174 0.11410336 0.14969714
## 2235 0.14806335 0.06243174 0.12152375 0.14969714
## 2236 0.14806335 0.45296167 0.10667727 0.14969714
## 2237 0.14806335 0.09932349 0.09814869 0.14969714
## 2238 0.05072162 0.06243174 0.11410336 0.14969714
## 2239 0.14806335 0.06243174 0.12152375 0.14969714
## 2240 0.14806335 0.06243174 0.10667727 0.14969714
## 2241 0.14806335 0.06243174 0.11410336 0.14969714
## 2242 0.14806335 0.21582397 0.10667727 0.14969714
## 2243 0.14806335 0.06243174 0.11410336 0.14969714
## 2244 0.14806335 0.06243174 0.11410336 0.14969714
## 2245 0.14806335 0.09932349 0.11410336 0.14969714
## 2246 0.14806335 0.06243174 0.12272101 0.14969714
## 2247 0.14806335 0.09932349 0.12272101 0.14969714
## 2248 0.14806335 0.06243174 0.12152375 0.14969714
## 2249 0.14806335 0.06243174 0.12272101 0.14969714
## 2250 0.14806335 0.45296167 0.09814869 0.14969714
## 2251 0.14806335 0.09932349 0.11410336 0.14969714
## 2252 0.05072162 0.43750000 0.12272101 0.14969714
## 2253 0.14806335 0.06243174 0.09814869 0.14969714
## 2254 0.14806335 0.09932349 0.11410336 0.14969714
## 2255 0.14806335 0.06243174 0.09814869 0.14969714
## 2256 0.14806335 0.06243174 0.12152375 0.14969714
## 2257 0.14806335 0.48076923 0.09814869 0.14969714
## 2258 0.05072162 0.09932349 0.12152375 0.14969714
## 2259 0.14806335 0.43750000 0.12152375 0.14969714
## 2260 0.14806335 0.09932349 0.11410336 0.14969714
## 2261 0.14806335 0.06243174 0.10667727 0.14969714
## 2262 0.14806335 0.06243174 0.11410336 0.14969714
## 2263 0.14806335 0.06243174 0.10667727 0.14969714
## 2264 0.05072162 0.06243174 0.10667727 0.14969714
## 2265 0.14806335 0.09932349 0.10667727 0.14969714
## 2266 0.14806335 0.06243174 0.12272101 0.14969714
## 2267 0.14806335 0.10363527 0.12272101 0.14969714
## 2268 0.14806335 0.06243174 0.12272101 0.14969714
## 2269 0.14806335 0.21582397 0.12272101 0.14969714
## 2270 0.14806335 0.06243174 0.10667727 0.14969714
## 2271 0.14806335 0.51535088 0.11410336 0.14969714
## 2272 0.14806335 0.06243174 0.12272101 0.14969714
## 2273 0.14806335 0.09932349 0.10667727 0.14969714
## 2274 0.14806335 0.21582397 0.12152375 0.14969714
## 2275 0.14806335 0.06243174 0.12152375 0.14969714
## 2276 0.05072162 0.06243174 0.12152375 0.14969714
## 2277 0.14806335 0.06243174 0.09814869 0.14969714
## 2278 0.14806335 0.06243174 0.12272101 0.14969714
## 2279 0.14806335 0.06243174 0.12272101 0.14969714
## 2280 0.14806335 0.09932349 0.12152375 0.14969714
## 2281 0.14806335 0.43750000 0.12152375 0.14969714
## 2282 0.14806335 0.06243174 0.10667727 0.14969714
## 2283 0.14806335 0.09932349 0.11410336 0.14969714
## 2284 0.14806335 0.06243174 0.10667727 0.14969714
## 2285 0.14806335 0.09932349 0.11410336 0.14969714
## 2286 0.14806335 0.06243174 0.12152375 0.14969714
## 2287 0.14806335 0.06243174 0.12152375 0.14969714
## 2288 0.14806335 0.09932349 0.12272101 0.14969714
## 2289 0.14806335 0.43750000 0.12272101 0.14969714
## 2290 0.14806335 0.09293746 0.10667727 0.14969714
## 2291 0.14806335 0.51535088 0.12152375 0.14969714
## 2292 0.05072162 0.21582397 0.10667727 0.14969714
## 2293 0.14806335 0.09932349 0.11410336 0.14969714
## 2294 0.14806335 0.06243174 0.11410336 0.14969714
## 2295 0.14806335 0.21582397 0.09814869 0.14969714
## 2296 0.14806335 0.06243174 0.10667727 0.14969714
## 2297 0.14806335 0.09967090 0.11410336 0.14969714
## 2298 0.14806335 0.09293746 0.10667727 0.14969714
## 2299 0.05072162 0.06243174 0.09814869 0.14969714
## 2300 0.14806335 0.06243174 0.10667727 0.14969714
## 2301 0.14806335 0.09932349 0.09814869 0.14969714
## 2302 0.14806335 0.09932349 0.11410336 0.14969714
## 2303 0.14806335 0.51535088 0.09814869 0.14969714
## 2304 0.14806335 0.10363527 0.11410336 0.14969714
## 2305 0.14806335 0.43750000 0.12272101 0.14969714
## 2306 0.14806335 0.06243174 0.10667727 0.14969714
## 2307 0.14806335 0.06243174 0.09814869 0.14969714
## 2308 0.14806335 0.21582397 0.09814869 0.14969714
## 2309 0.14806335 0.06243174 0.09814869 0.14969714
## 2310 0.05072162 0.06243174 0.10667727 0.14969714
## 2311 0.14806335 0.06243174 0.12152375 0.14969714
## 2312 0.14806335 0.09293746 0.12152375 0.14969714
## 2313 0.14806335 0.06243174 0.10667727 0.14969714
## 2314 0.14806335 0.09293746 0.09814869 0.14969714
## 2315 0.14806335 0.06243174 0.11410336 0.14969714
## 2316 0.14806335 0.06243174 0.12152375 0.14969714
## 2317 0.14806335 0.06243174 0.11410336 0.14969714
## 2318 0.14806335 0.21582397 0.12152375 0.14969714
## 2319 0.05072162 0.09967090 0.10667727 0.14969714
## 2320 0.05072162 0.06243174 0.12272101 0.14969714
## 2321 0.14806335 0.21582397 0.10667727 0.14969714
## 2322 0.14806335 0.09932349 0.09814869 0.14969714
## 2323 0.14806335 0.21582397 0.12152375 0.14969714
## 2324 0.14806335 0.06243174 0.12152375 0.14969714
## 2325 0.14806335 0.51535088 0.10667727 0.14969714
## 2326 0.14806335 0.43750000 0.12152375 0.14969714
## 2327 0.14806335 0.21582397 0.10667727 0.14969714
## 2328 0.14806335 0.06243174 0.09814869 0.14969714
## 2329 0.14806335 0.06243174 0.12272101 0.14969714
## 2330 0.14806335 0.43750000 0.12152375 0.14969714
## 2331 0.14806335 0.21582397 0.11410336 0.14969714
## 2332 0.14806335 0.10363527 0.12272101 0.14969714
## 2333 0.14806335 0.10363527 0.12272101 0.14969714
## 2334 0.14806335 0.06243174 0.12152375 0.14969714
## 2335 0.14806335 0.06243174 0.12272101 0.14969714
## 2336 0.14806335 0.06243174 0.10667727 0.14969714
## 2337 0.14806335 0.06243174 0.12152375 0.14969714
## 2338 0.14806335 0.09932349 0.11410336 0.14969714
## 2339 0.14806335 0.06243174 0.09814869 0.14969714
## 2340 0.14806335 0.06243174 0.09814869 0.14969714
## 2341 0.14806335 0.06243174 0.12152375 0.14969714
## 2342 0.14806335 0.06243174 0.09814869 0.14969714
## 2343 0.14806335 0.06243174 0.12152375 0.14969714
## 2344 0.14806335 0.21582397 0.09814869 0.14969714
## 2345 0.14806335 0.06243174 0.12272101 0.14969714
## 2346 0.14806335 0.06243174 0.09814869 0.14969714
## 2347 0.14806335 0.21582397 0.11410336 0.14969714
## 2348 0.14806335 0.09932349 0.12152375 0.14969714
## 2349 0.14806335 0.06243174 0.10667727 0.14969714
## 2350 0.14806335 0.45296167 0.11410336 0.14969714
## 2351 0.14806335 0.09967090 0.11410336 0.14969714
## 2352 0.14806335 0.21582397 0.12152375 0.14969714
## 2353 0.14806335 0.21582397 0.10667727 0.14969714
## 2354 0.14806335 0.06243174 0.10667727 0.14969714
## 2355 0.05072162 0.09932349 0.12272101 0.14969714
## 2356 0.14806335 0.06243174 0.11410336 0.14969714
## 2357 0.14806335 0.09932349 0.10667727 0.14969714
## 2358 0.14806335 0.51535088 0.11410336 0.14969714
## 2359 0.05072162 0.06243174 0.09814869 0.14969714
## 2360 0.14806335 0.21582397 0.12272101 0.14969714
## 2361 0.14806335 0.09967090 0.11410336 0.14969714
## 2362 0.14806335 0.09967090 0.12272101 0.14969714
## 2363 0.14806335 0.06243174 0.12272101 0.14969714
## 2364 0.14806335 0.06243174 0.10667727 0.14969714
## 2365 0.14806335 0.45296167 0.09814869 0.14969714
## 2366 0.14806335 0.45296167 0.11410336 0.14969714
## 2367 0.14806335 0.09932349 0.10667727 0.14969714
## 2368 0.14806335 0.06243174 0.11410336 0.14969714
## 2369 0.14806335 0.09932349 0.10667727 0.14969714
## 2370 0.14806335 0.09932349 0.09814869 0.14969714
## 2371 0.14806335 0.09932349 0.12152375 0.14969714
## 2372 0.14806335 0.09932349 0.09814869 0.14969714
## 2373 0.14806335 0.06243174 0.11410336 0.14969714
## 2374 0.14806335 0.21582397 0.12152375 0.14969714
## 2375 0.14806335 0.10363527 0.12152375 0.14969714
## 2376 0.14806335 0.06243174 0.12152375 0.14969714
## 2377 0.14806335 0.09932349 0.12152375 0.14969714
## 2378 0.14806335 0.45296167 0.12272101 0.14969714
## 2379 0.14806335 0.21582397 0.09814869 0.14969714
## 2380 0.14806335 0.21582397 0.11410336 0.14969714
## 2381 0.14806335 0.09932349 0.12272101 0.14969714
## 2382 0.14806335 0.06243174 0.12152375 0.14969714
## 2383 0.14806335 0.06243174 0.11410336 0.14969714
## 2384 0.14806335 0.09932349 0.12152375 0.14969714
## 2385 0.14806335 0.09932349 0.09814869 0.14969714
## 2386 0.14806335 0.06243174 0.12272101 0.14969714
## 2387 0.14806335 0.09932349 0.11410336 0.14969714
## 2388 0.14806335 0.09932349 0.09814869 0.14969714
## 2389 0.14806335 0.09932349 0.11410336 0.14969714
## 2390 0.14806335 0.06243174 0.12272101 0.14969714
## 2391 0.14806335 0.06243174 0.12152375 0.14969714
## 2392 0.14806335 0.43750000 0.12272101 0.14969714
## 2393 0.14806335 0.06243174 0.11410336 0.14969714
## 2394 0.14806335 0.45296167 0.09814869 0.14969714
## 2395 0.14806335 0.21582397 0.12152375 0.14969714
## 2396 0.14806335 0.09293746 0.09814869 0.14969714
## 2397 0.14806335 0.06243174 0.10667727 0.14969714
## 2398 0.14806335 0.06243174 0.10667727 0.14969714
## 2399 0.14806335 0.06243174 0.10667727 0.14969714
## 2400 0.14806335 0.51535088 0.09814869 0.14969714
## 2401 0.14806335 0.06243174 0.12152375 0.14969714
## 2402 0.05072162 0.06243174 0.10667727 0.14969714
## 2403 0.14806335 0.21582397 0.12152375 0.14969714
## 2404 0.14806335 0.06243174 0.12272101 0.14969714
## 2405 0.14806335 0.06243174 0.11410336 0.14969714
## 2406 0.14806335 0.21582397 0.10667727 0.14969714
## 2407 0.14806335 0.09932349 0.12272101 0.14969714
## 2408 0.14806335 0.06243174 0.12272101 0.14969714
## 2409 0.14806335 0.21582397 0.12272101 0.14969714
## 2410 0.14806335 0.21582397 0.12152375 0.14969714
## 2411 0.14806335 0.45296167 0.10667727 0.14969714
## 2412 0.14806335 0.21582397 0.09814869 0.14969714
## 2413 0.14806335 0.06243174 0.12272101 0.14969714
## 2414 0.14806335 0.09932349 0.11410336 0.14969714
## 2415 0.14806335 0.10363527 0.12272101 0.14969714
## 2416 0.14806335 0.51535088 0.09814869 0.14969714
## 2417 0.14806335 0.06243174 0.12272101 0.14969714
## 2418 0.14806335 0.21582397 0.10667727 0.14969714
## 2419 0.14806335 0.06243174 0.12272101 0.14969714
## 2420 0.14806335 0.09293746 0.11410336 0.14969714
## 2421 0.05072162 0.06243174 0.11410336 0.14969714
## 2422 0.14806335 0.06243174 0.12152375 0.14969714
## 2423 0.05072162 0.09967090 0.12272101 0.14969714
## 2424 0.14806335 0.06243174 0.11410336 0.14969714
## 2425 0.14806335 0.06243174 0.12152375 0.14969714
## 2426 0.14806335 0.06243174 0.12272101 0.14969714
## 2427 0.14806335 0.21582397 0.09814869 0.14969714
## 2428 0.14806335 0.09932349 0.12152375 0.14969714
## 2429 0.14806335 0.06243174 0.10667727 0.14969714
## 2430 0.14806335 0.09932349 0.09814869 0.14969714
## 2431 0.14806335 0.45296167 0.12152375 0.14969714
## 2432 0.14806335 0.06243174 0.11410336 0.14969714
## 2433 0.14806335 0.06243174 0.10667727 0.14969714
## 2434 0.14806335 0.06243174 0.12272101 0.14969714
## 2435 0.14806335 0.10363527 0.10667727 0.14969714
## 2436 0.14806335 0.06243174 0.12152375 0.14969714
## 2437 0.14806335 0.09932349 0.09814869 0.14969714
## 2438 0.14806335 0.06243174 0.09814869 0.14969714
## 2439 0.14806335 0.06243174 0.10667727 0.14969714
## 2440 0.14806335 0.06243174 0.12272101 0.14969714
## 2441 0.14806335 0.06243174 0.12272101 0.14969714
## 2442 0.14806335 0.09932349 0.09814869 0.14969714
## 2443 0.05072162 0.43750000 0.09814869 0.14969714
## 2444 0.14806335 0.06243174 0.12272101 0.14969714
## 2445 0.14806335 0.45296167 0.11410336 0.14969714
## 2446 0.14806335 0.06243174 0.12272101 0.14969714
## 2447 0.14806335 0.06243174 0.09814869 0.14969714
## 2448 0.14806335 0.45296167 0.09814869 0.14969714
## 2449 0.14806335 0.06243174 0.09814869 0.14969714
## 2450 0.14806335 0.51535088 0.09814869 0.14969714
## 2451 0.14806335 0.06243174 0.12152375 0.14969714
## 2452 0.14806335 0.06243174 0.09814869 0.14969714
## 2453 0.14806335 0.21582397 0.10667727 0.14969714
## 2454 0.14806335 0.21582397 0.10667727 0.14969714
## 2455 0.14806335 0.10363527 0.09814869 0.14969714
## 2456 0.14806335 0.06243174 0.10667727 0.14969714
## 2457 0.14806335 0.06243174 0.11410336 0.14969714
## 2458 0.14806335 0.09967090 0.09814869 0.14969714
## 2459 0.14806335 0.09967090 0.11410336 0.14969714
## 2460 0.14806335 0.06243174 0.09814869 0.14969714
## 2461 0.14806335 0.06243174 0.12152375 0.14969714
## 2462 0.14806335 0.09967090 0.09814869 0.14969714
## 2463 0.14806335 0.09932349 0.09814869 0.14969714
## 2464 0.14806335 0.09932349 0.12152375 0.14969714
## 2465 0.14806335 0.06243174 0.12152375 0.14969714
## 2466 0.14806335 0.09967090 0.10667727 0.14969714
## 2467 0.14806335 0.06243174 0.10667727 0.14969714
## 2468 0.14806335 0.06243174 0.11410336 0.14969714
## 2469 0.14806335 0.10363527 0.12272101 0.14969714
## 2470 0.14806335 0.09932349 0.09814869 0.14969714
## 2471 0.14806335 0.09932349 0.10667727 0.14969714
## 2472 0.14806335 0.09932349 0.11410336 0.14969714
## 2473 0.14806335 0.06243174 0.12152375 0.14969714
## 2474 0.14806335 0.21582397 0.11410336 0.14969714
## 2475 0.14806335 0.21582397 0.09814869 0.14969714
## 2476 0.14806335 0.21582397 0.10667727 0.14969714
## 2477 0.14806335 0.06243174 0.12272101 0.14969714
## 2478 0.14806335 0.06243174 0.09814869 0.14969714
## 2479 0.14806335 0.06243174 0.09814869 0.14969714
## 2480 0.14806335 0.21582397 0.09814869 0.14969714
## 2481 0.14806335 0.06243174 0.10667727 0.14969714
## 2482 0.14806335 0.06243174 0.11410336 0.14969714
## 2483 0.05072162 0.45296167 0.12152375 0.14969714
## 2484 0.14806335 0.21582397 0.10667727 0.14969714
## 2485 0.14806335 0.21582397 0.12272101 0.14969714
## 2486 0.14806335 0.10363527 0.10667727 0.14969714
## 2487 0.14806335 0.09932349 0.09814869 0.14969714
## 2488 0.14806335 0.10363527 0.12152375 0.14969714
## 2489 0.14806335 0.06243174 0.11410336 0.14969714
## 2490 0.14806335 0.10363527 0.10667727 0.14969714
## 2491 0.14806335 0.21582397 0.11410336 0.14969714
## 2492 0.14806335 0.21582397 0.10667727 0.14969714
## 2493 0.14806335 0.09932349 0.10667727 0.14969714
## 2494 0.14806335 0.45296167 0.09814869 0.14969714
## 2495 0.14806335 0.06243174 0.12272101 0.14969714
## 2496 0.14806335 0.48076923 0.09814869 0.14969714
## 2497 0.14806335 0.45296167 0.12152375 0.14969714
## 2498 0.14806335 0.06243174 0.12272101 0.14969714
## 2499 0.14806335 0.09932349 0.12272101 0.14969714
## 2500 0.14806335 0.06243174 0.12272101 0.14969714
## 2501 0.14806335 0.09932349 0.12272101 0.14969714
## 2502 0.14806335 0.09967090 0.10667727 0.14969714
## 2503 0.14806335 0.06243174 0.10667727 0.14969714
## 2504 0.14806335 0.43750000 0.12272101 0.14969714
## 2505 0.14806335 0.06243174 0.12152375 0.14969714
## 2506 0.14806335 0.06243174 0.12272101 0.14969714
## 2507 0.14806335 0.09967090 0.12272101 0.14969714
## 2508 0.14806335 0.09932349 0.10667727 0.14969714
## 2509 0.14806335 0.09932349 0.12272101 0.14969714
## 2510 0.14806335 0.21582397 0.11410336 0.14969714
## 2511 0.14806335 0.06243174 0.12152375 0.14969714
## 2512 0.14806335 0.09932349 0.10667727 0.14969714
## 2513 0.14806335 0.21582397 0.10667727 0.14969714
## 2514 0.14806335 0.06243174 0.11410336 0.14969714
## 2515 0.14806335 0.06243174 0.12272101 0.14969714
## 2516 0.14806335 0.06243174 0.11410336 0.14969714
## 2517 0.14806335 0.09293746 0.09814869 0.14969714
## 2518 0.05072162 0.21582397 0.11410336 0.14969714
## 2519 0.14806335 0.06243174 0.12152375 0.14969714
## 2520 0.14806335 0.09932349 0.12272101 0.14969714
## 2521 0.14806335 0.06243174 0.12272101 0.14969714
## 2522 0.14806335 0.09932349 0.11410336 0.14969714
## 2523 0.14806335 0.10363527 0.11410336 0.14969714
## 2524 0.14806335 0.06243174 0.12152375 0.14969714
## 2525 0.14806335 0.09932349 0.11410336 0.14969714
## 2526 0.14806335 0.09932349 0.09814869 0.14969714
## 2527 0.14806335 0.06243174 0.10667727 0.14969714
## 2528 0.05072162 0.09293746 0.11410336 0.14969714
## 2529 0.14806335 0.06243174 0.12152375 0.14969714
## 2530 0.14806335 0.09967090 0.11410336 0.14969714
## 2531 0.14806335 0.09293746 0.12272101 0.14969714
## 2532 0.14806335 0.09932349 0.12272101 0.14969714
## 2533 0.14806335 0.10363527 0.12272101 0.14969714
## 2534 0.14806335 0.06243174 0.09814869 0.14969714
## 2535 0.14806335 0.06243174 0.12152375 0.14969714
## 2536 0.05072162 0.06243174 0.12272101 0.14969714
## 2537 0.14806335 0.21582397 0.09814869 0.14969714
## 2538 0.14806335 0.06243174 0.11410336 0.14969714
## 2539 0.14806335 0.09293746 0.12152375 0.14969714
## 2540 0.14806335 0.06243174 0.09814869 0.14969714
## 2541 0.14806335 0.09967090 0.11410336 0.14969714
## 2542 0.14806335 0.45296167 0.12272101 0.14969714
## 2543 0.14806335 0.21582397 0.09814869 0.14969714
## 2544 0.14806335 0.45296167 0.09814869 0.14969714
## 2545 0.14806335 0.06243174 0.12152375 0.14969714
## 2546 0.05072162 0.06243174 0.11410336 0.14969714
## 2547 0.14806335 0.06243174 0.12272101 0.14969714
## 2548 0.14806335 0.10363527 0.10667727 0.14969714
## 2549 0.14806335 0.06243174 0.09814869 0.14969714
## 2550 0.14806335 0.06243174 0.12152375 0.14969714
## 2551 0.14806335 0.06243174 0.09814869 0.14969714
## 2552 0.14806335 0.09932349 0.11410336 0.14969714
## 2553 0.14806335 0.06243174 0.12272101 0.14969714
## 2554 0.14806335 0.45296167 0.10667727 0.14969714
## 2555 0.14806335 0.21582397 0.10667727 0.14969714
## 2556 0.14806335 0.09967090 0.09814869 0.14969714
## 2557 0.14806335 0.09932349 0.10667727 0.14969714
## 2558 0.14806335 0.09932349 0.12152375 0.14969714
## 2559 0.14806335 0.21582397 0.11410336 0.14969714
## 2560 0.14806335 0.06243174 0.11410336 0.14969714
## 2561 0.14806335 0.06243174 0.11410336 0.14969714
## 2562 0.14806335 0.21582397 0.11410336 0.14969714
## 2563 0.14806335 0.09932349 0.12272101 0.14969714
## 2564 0.14806335 0.45296167 0.12272101 0.14969714
## 2565 0.14806335 0.10363527 0.12272101 0.14969714
## 2566 0.14806335 0.10363527 0.11410336 0.14969714
## 2567 0.05072162 0.10363527 0.11410336 0.14969714
## 2568 0.05072162 0.09932349 0.09814869 0.14969714
## 2569 0.14806335 0.45296167 0.11410336 0.14969714
## 2570 0.14806335 0.09932349 0.10667727 0.14969714
## 2571 0.14806335 0.09967090 0.12272101 0.14969714
## 2572 0.14806335 0.21582397 0.10667727 0.14969714
## 2573 0.14806335 0.09932349 0.09814869 0.14969714
## 2574 0.14806335 0.09293746 0.11410336 0.14969714
## 2575 0.14806335 0.06243174 0.11410336 0.14969714
## 2576 0.14806335 0.09932349 0.12272101 0.14969714
## 2577 0.14806335 0.06243174 0.11410336 0.14969714
## 2578 0.14806335 0.06243174 0.12272101 0.14969714
## 2579 0.14806335 0.09932349 0.12272101 0.14969714
## 2580 0.14806335 0.06243174 0.12152375 0.14969714
## 2581 0.14806335 0.06243174 0.11410336 0.14969714
## 2582 0.14806335 0.09932349 0.12272101 0.14969714
## 2583 0.14806335 0.06243174 0.10667727 0.14969714
## 2584 0.14806335 0.09932349 0.11410336 0.14969714
## 2585 0.14806335 0.43750000 0.11410336 0.14969714
## 2586 0.14806335 0.21582397 0.09814869 0.14969714
## 2587 0.14806335 0.06243174 0.12272101 0.14969714
## 2588 0.14806335 0.09932349 0.12272101 0.14969714
## 2589 0.14806335 0.06243174 0.12272101 0.14969714
## 2590 0.14806335 0.10363527 0.10667727 0.14969714
## 2591 0.14806335 0.48076923 0.12272101 0.14969714
## 2592 0.05072162 0.09932349 0.09814869 0.14969714
## 2593 0.14806335 0.09932349 0.10667727 0.14969714
## 2594 0.14806335 0.21582397 0.10667727 0.14969714
## 2595 0.05072162 0.09932349 0.12152375 0.14969714
## 2596 0.14806335 0.06243174 0.12272101 0.14969714
## 2597 0.14806335 0.09932349 0.10667727 0.14969714
## 2598 0.14806335 0.06243174 0.12152375 0.14969714
## 2599 0.14806335 0.09932349 0.09814869 0.14969714
## 2600 0.14806335 0.06243174 0.12272101 0.14969714
## 2601 0.14806335 0.09932349 0.12152375 0.14969714
## 2602 0.14806335 0.06243174 0.11410336 0.14969714
## 2603 0.14806335 0.09932349 0.09814869 0.14969714
## 2604 0.14806335 0.06243174 0.09814869 0.14969714
## 2605 0.14806335 0.09932349 0.11410336 0.14969714
## 2606 0.14806335 0.09932349 0.12272101 0.14969714
## 2607 0.05072162 0.06243174 0.11410336 0.14969714
## 2608 0.14806335 0.06243174 0.12272101 0.14969714
## 2609 0.14806335 0.09967090 0.09814869 0.14969714
## 2610 0.14806335 0.09932349 0.09814869 0.14969714
## 2611 0.14806335 0.21582397 0.12152375 0.14969714
## 2612 0.14806335 0.06243174 0.12272101 0.14969714
## 2613 0.14806335 0.21582397 0.10667727 0.14969714
## 2614 0.14806335 0.21582397 0.12152375 0.14969714
## 2615 0.14806335 0.06243174 0.11410336 0.14969714
## 2616 0.14806335 0.06243174 0.09814869 0.14969714
## 2617 0.14806335 0.09967090 0.09814869 0.14969714
## 2618 0.14806335 0.21582397 0.12152375 0.14969714
## 2619 0.14806335 0.09932349 0.12272101 0.14969714
## 2620 0.14806335 0.10363527 0.11410336 0.14969714
## 2621 0.14806335 0.10363527 0.11410336 0.14969714
## 2622 0.14806335 0.06243174 0.10667727 0.14969714
## 2623 0.14806335 0.06243174 0.12152375 0.14969714
## 2624 0.14806335 0.06243174 0.12272101 0.14969714
## 2625 0.14806335 0.06243174 0.10667727 0.14969714
## 2626 0.14806335 0.06243174 0.10667727 0.14969714
## 2627 0.14806335 0.09932349 0.12272101 0.14969714
## 2628 0.14806335 0.21582397 0.12272101 0.14969714
## 2629 0.14806335 0.10363527 0.12152375 0.14969714
## 2630 0.14806335 0.09967090 0.09814869 0.14969714
## 2631 0.14806335 0.09932349 0.12272101 0.14969714
## 2632 0.14806335 0.09932349 0.11410336 0.14969714
## 2633 0.14806335 0.09932349 0.12152375 0.14969714
## 2634 0.14806335 0.06243174 0.12272101 0.14969714
## 2635 0.14806335 0.06243174 0.10667727 0.14969714
## 2636 0.14806335 0.21582397 0.11410336 0.14969714
## 2637 0.14806335 0.06243174 0.11410336 0.14969714
## 2638 0.14806335 0.06243174 0.10667727 0.14969714
## 2639 0.14806335 0.06243174 0.12152375 0.14969714
## 2640 0.14806335 0.21582397 0.09814869 0.14969714
## 2641 0.14806335 0.21582397 0.10667727 0.14969714
## 2642 0.14806335 0.06243174 0.10667727 0.14969714
## 2643 0.14806335 0.21582397 0.11410336 0.14969714
## 2644 0.14806335 0.09932349 0.12152375 0.14969714
## 2645 0.14806335 0.06243174 0.12152375 0.14969714
## 2646 0.14806335 0.06243174 0.12272101 0.14969714
## 2647 0.14806335 0.06243174 0.12272101 0.14969714
## 2648 0.05072162 0.21582397 0.09814869 0.14969714
## 2649 0.14806335 0.10363527 0.09814869 0.14969714
## 2650 0.14806335 0.21582397 0.12152375 0.14969714
## 2651 0.14806335 0.06243174 0.12152375 0.14969714
## 2652 0.14806335 0.21582397 0.09814869 0.14969714
## 2653 0.14806335 0.10363527 0.10667727 0.14969714
## 2654 0.14806335 0.09932349 0.09814869 0.14969714
## 2655 0.14806335 0.09967090 0.10667727 0.14969714
## 2656 0.14806335 0.06243174 0.12152375 0.14969714
## 2657 0.14806335 0.09932349 0.10667727 0.14969714
## 2658 0.14806335 0.09932349 0.11410336 0.14969714
## 2659 0.14806335 0.06243174 0.10667727 0.14969714
## 2660 0.14806335 0.09932349 0.12272101 0.14969714
## 2661 0.14806335 0.21582397 0.12272101 0.14969714
## 2662 0.14806335 0.51535088 0.11410336 0.14969714
## 2663 0.14806335 0.21582397 0.12152375 0.14969714
## 2664 0.14806335 0.21582397 0.10667727 0.14969714
## 2665 0.14806335 0.06243174 0.12152375 0.14969714
## 2666 0.14806335 0.09932349 0.12272101 0.14969714
## 2667 0.14806335 0.21582397 0.12272101 0.14969714
## 2668 0.14806335 0.21582397 0.10667727 0.14969714
## 2669 0.14806335 0.09932349 0.11410336 0.14969714
## 2670 0.14806335 0.09293746 0.10667727 0.14969714
## 2671 0.14806335 0.06243174 0.09814869 0.14969714
## 2672 0.14806335 0.09932349 0.12272101 0.14969714
## 2673 0.14806335 0.10363527 0.09814869 0.14969714
## 2674 0.14806335 0.21582397 0.12152375 0.14969714
## 2675 0.14806335 0.06243174 0.12272101 0.14969714
## 2676 0.14806335 0.06243174 0.12272101 0.14969714
## 2677 0.14806335 0.06243174 0.12272101 0.14969714
## 2678 0.14806335 0.43750000 0.12272101 0.14969714
## 2679 0.14806335 0.45296167 0.12272101 0.14969714
## 2680 0.14806335 0.09932349 0.12272101 0.14969714
## 2681 0.14806335 0.06243174 0.10667727 0.14969714
## 2682 0.14806335 0.06243174 0.12272101 0.14969714
## 2683 0.14806335 0.21582397 0.10667727 0.14969714
## 2684 0.05072162 0.06243174 0.12152375 0.14969714
## 2685 0.14806335 0.09932349 0.10667727 0.14969714
## 2686 0.14806335 0.21582397 0.10667727 0.14969714
## 2687 0.14806335 0.06243174 0.12272101 0.14969714
## 2688 0.14806335 0.06243174 0.12272101 0.14969714
## 2689 0.14806335 0.09932349 0.11410336 0.14969714
## 2690 0.14806335 0.09932349 0.11410336 0.14969714
## 2691 0.14806335 0.45296167 0.12152375 0.14969714
## 2692 0.14806335 0.10363527 0.11410336 0.14969714
## 2693 0.14806335 0.10363527 0.10667727 0.14969714
## 2694 0.14806335 0.06243174 0.12152375 0.14969714
## 2695 0.14806335 0.06243174 0.09814869 0.14969714
## 2696 0.14806335 0.06243174 0.11410336 0.14969714
## 2697 0.14806335 0.09932349 0.12272101 0.14969714
## 2698 0.14806335 0.06243174 0.12152375 0.14969714
## 2699 0.14806335 0.06243174 0.12272101 0.14969714
## 2700 0.14806335 0.06243174 0.11410336 0.14969714
## 2701 0.05072162 0.06243174 0.12152375 0.14969714
## 2702 0.14806335 0.09932349 0.12272101 0.14969714
## 2703 0.14806335 0.06243174 0.09814869 0.14969714
## 2704 0.14806335 0.09932349 0.09814869 0.14969714
## 2705 0.14806335 0.06243174 0.10667727 0.14969714
## 2706 0.14806335 0.06243174 0.12272101 0.14969714
## 2707 0.14806335 0.06243174 0.12272101 0.14969714
## 2708 0.14806335 0.06243174 0.10667727 0.14969714
## 2709 0.14806335 0.06243174 0.10667727 0.14969714
## 2710 0.14806335 0.06243174 0.12272101 0.14969714
## 2711 0.14806335 0.21582397 0.09814869 0.14969714
## 2712 0.14806335 0.10363527 0.11410336 0.14969714
## 2713 0.14806335 0.45296167 0.12152375 0.14969714
## 2714 0.14806335 0.21582397 0.09814869 0.14969714
## 2715 0.14806335 0.09932349 0.12152375 0.14969714
## 2716 0.14806335 0.09932349 0.12272101 0.14969714
## 2717 0.14806335 0.06243174 0.10667727 0.14969714
## 2718 0.14806335 0.06243174 0.12152375 0.14969714
## 2719 0.14806335 0.09932349 0.12152375 0.14969714
## 2720 0.05072162 0.51535088 0.09814869 0.14969714
## 2721 0.14806335 0.06243174 0.12272101 0.14969714
## 2722 0.14806335 0.09932349 0.09814869 0.14969714
## 2723 0.14806335 0.06243174 0.10667727 0.14969714
## 2724 0.14806335 0.06243174 0.09814869 0.14969714
## 2725 0.14806335 0.21582397 0.12152375 0.14969714
## 2726 0.14806335 0.06243174 0.12272101 0.14969714
## 2727 0.14806335 0.06243174 0.09814869 0.14969714
## 2728 0.14806335 0.06243174 0.11410336 0.14969714
## 2729 0.14806335 0.09967090 0.12152375 0.14969714
## 2730 0.14806335 0.06243174 0.12272101 0.14969714
## 2731 0.05072162 0.06243174 0.12272101 0.14969714
## 2732 0.05072162 0.09932349 0.09814869 0.14969714
## 2733 0.14806335 0.10363527 0.09814869 0.14969714
## 2734 0.14806335 0.09932349 0.12152375 0.14969714
## 2735 0.14806335 0.09293746 0.12272101 0.14969714
## 2736 0.14806335 0.45296167 0.12152375 0.14969714
## 2737 0.14806335 0.06243174 0.11410336 0.14969714
## 2738 0.14806335 0.09932349 0.12152375 0.14969714
## 2739 0.14806335 0.06243174 0.12152375 0.14969714
## 2740 0.14806335 0.51535088 0.09814869 0.14969714
## 2741 0.14806335 0.09967090 0.10667727 0.14969714
## 2742 0.14806335 0.09932349 0.10667727 0.14969714
## 2743 0.14806335 0.06243174 0.12272101 0.14969714
## 2744 0.14806335 0.06243174 0.12272101 0.14969714
## 2745 0.05072162 0.09932349 0.10667727 0.14969714
## 2746 0.14806335 0.45296167 0.11410336 0.14969714
## 2747 0.14806335 0.21582397 0.12272101 0.14969714
## 2748 0.14806335 0.10363527 0.10667727 0.14969714
## 2749 0.14806335 0.43750000 0.12272101 0.14969714
## 2750 0.14806335 0.21582397 0.09814869 0.14969714
## 2751 0.14806335 0.09932349 0.12272101 0.14969714
## 2752 0.14806335 0.06243174 0.09814869 0.14969714
## 2753 0.14806335 0.06243174 0.12272101 0.14969714
## 2754 0.14806335 0.06243174 0.09814869 0.14969714
## 2755 0.14806335 0.06243174 0.12152375 0.14969714
## 2756 0.14806335 0.09932349 0.11410336 0.14969714
## 2757 0.14806335 0.06243174 0.12152375 0.14969714
## 2758 0.14806335 0.09932349 0.11410336 0.14969714
## 2759 0.14806335 0.06243174 0.11410336 0.14969714
## 2760 0.14806335 0.09932349 0.12152375 0.14969714
## 2761 0.05072162 0.10363527 0.11410336 0.14969714
## 2762 0.14806335 0.21582397 0.12152375 0.14969714
## 2763 0.14806335 0.45296167 0.12272101 0.14969714
## 2764 0.14806335 0.09967090 0.12152375 0.14969714
## 2765 0.14806335 0.06243174 0.11410336 0.14969714
## 2766 0.14806335 0.06243174 0.11410336 0.14969714
## 2767 0.14806335 0.06243174 0.10667727 0.14969714
## 2768 0.14806335 0.43750000 0.12272101 0.14969714
## 2769 0.14806335 0.21582397 0.11410336 0.14969714
## 2770 0.14806335 0.10363527 0.09814869 0.14969714
## 2771 0.14806335 0.06243174 0.10667727 0.14969714
## 2772 0.14806335 0.21582397 0.10667727 0.14969714
## 2773 0.14806335 0.06243174 0.09814869 0.14969714
## 2774 0.14806335 0.10363527 0.11410336 0.14969714
## 2775 0.14806335 0.09932349 0.09814869 0.14969714
## 2776 0.14806335 0.21582397 0.12152375 0.14969714
## 2777 0.14806335 0.06243174 0.10667727 0.14969714
## 2778 0.14806335 0.09293746 0.10667727 0.14969714
## 2779 0.14806335 0.21582397 0.12272101 0.14969714
## 2780 0.14806335 0.06243174 0.09814869 0.14969714
## 2781 0.14806335 0.21582397 0.09814869 0.14969714
## 2782 0.14806335 0.21582397 0.12152375 0.14969714
## 2783 0.14806335 0.06243174 0.11410336 0.14969714
## 2784 0.14806335 0.06243174 0.09814869 0.14969714
## 2785 0.14806335 0.06243174 0.10667727 0.14969714
## 2786 0.14806335 0.21582397 0.10667727 0.14969714
## 2787 0.05072162 0.06243174 0.11410336 0.14969714
## 2788 0.05072162 0.10363527 0.11410336 0.14969714
## 2789 0.14806335 0.09932349 0.12272101 0.14969714
## 2790 0.14806335 0.09932349 0.11410336 0.14969714
## 2791 0.14806335 0.51535088 0.11410336 0.14969714
## 2792 0.14806335 0.09932349 0.12272101 0.14969714
## 2793 0.14806335 0.06243174 0.12272101 0.14969714
## 2794 0.14806335 0.06243174 0.10667727 0.14969714
## 2795 0.14806335 0.06243174 0.09814869 0.14969714
## 2796 0.14806335 0.06243174 0.09814869 0.14969714
## 2797 0.14806335 0.09932349 0.12272101 0.14969714
## 2798 0.05072162 0.06243174 0.11410336 0.14969714
## 2799 0.14806335 0.06243174 0.12272101 0.14969714
## 2800 0.05072162 0.06243174 0.10667727 0.14969714
## 2801 0.14806335 0.09932349 0.11410336 0.14969714
## 2802 0.14806335 0.09967090 0.09814869 0.14969714
## 2803 0.14806335 0.51535088 0.11410336 0.14969714
## 2804 0.14806335 0.06243174 0.12272101 0.14969714
## 2805 0.14806335 0.43750000 0.09814869 0.14969714
## 2806 0.14806335 0.06243174 0.11410336 0.14969714
## 2807 0.14806335 0.06243174 0.09814869 0.14969714
## 2808 0.14806335 0.21582397 0.10667727 0.14969714
## 2809 0.14806335 0.45296167 0.11410336 0.14969714
## 2810 0.05072162 0.06243174 0.10667727 0.14969714
## 2811 0.14806335 0.06243174 0.12272101 0.14969714
## 2812 0.14806335 0.06243174 0.10667727 0.14969714
## 2813 0.14806335 0.09932349 0.09814869 0.14969714
## 2814 0.14806335 0.06243174 0.10667727 0.14969714
## 2815 0.14806335 0.06243174 0.10667727 0.14969714
## 2816 0.14806335 0.21582397 0.12272101 0.14969714
## 2817 0.14806335 0.09293746 0.11410336 0.14969714
## 2818 0.14806335 0.09932349 0.12272101 0.14969714
## 2819 0.14806335 0.06243174 0.10667727 0.14969714
## 2820 0.14806335 0.09932349 0.12152375 0.14969714
## 2821 0.14806335 0.09932349 0.12272101 0.14969714
## 2822 0.14806335 0.21582397 0.12152375 0.14969714
## 2823 0.14806335 0.45296167 0.11410336 0.14969714
## 2824 0.14806335 0.06243174 0.09814869 0.14969714
## 2825 0.14806335 0.21582397 0.12152375 0.14969714
## 2826 0.14806335 0.09932349 0.10667727 0.14969714
## 2827 0.14806335 0.09967090 0.11410336 0.14969714
## 2828 0.14806335 0.06243174 0.12272101 0.14969714
## 2829 0.14806335 0.21582397 0.12152375 0.14969714
## 2830 0.05072162 0.06243174 0.12272101 0.14969714
## 2831 0.14806335 0.21582397 0.11410336 0.14969714
## 2832 0.14806335 0.09932349 0.12272101 0.14969714
## 2833 0.05072162 0.09932349 0.10667727 0.14969714
## 2834 0.14806335 0.06243174 0.12272101 0.14969714
## 2835 0.14806335 0.06243174 0.09814869 0.14969714
## 2836 0.14806335 0.06243174 0.11410336 0.14969714
## 2837 0.14806335 0.09293746 0.10667727 0.14969714
## 2838 0.14806335 0.48076923 0.12152375 0.14969714
## 2839 0.14806335 0.09932349 0.12152375 0.14969714
## 2840 0.14806335 0.09967090 0.11410336 0.14969714
## 2841 0.14806335 0.06243174 0.10667727 0.14969714
## 2842 0.14806335 0.06243174 0.11410336 0.14969714
## 2843 0.14806335 0.09932349 0.09814869 0.14969714
## 2844 0.14806335 0.06243174 0.12152375 0.14969714
## 2845 0.14806335 0.06243174 0.10667727 0.14969714
## 2846 0.14806335 0.06243174 0.10667727 0.14969714
## 2847 0.14806335 0.06243174 0.11410336 0.14969714
## 2848 0.14806335 0.06243174 0.11410336 0.14969714
## 2849 0.14806335 0.06243174 0.10667727 0.14969714
## 2850 0.14806335 0.06243174 0.11410336 0.14969714
## 2851 0.14806335 0.21582397 0.12272101 0.14969714
## 2852 0.14806335 0.06243174 0.11410336 0.14969714
## 2853 0.14806335 0.06243174 0.12152375 0.14969714
## 2854 0.14806335 0.09932349 0.09814869 0.14969714
## 2855 0.14806335 0.21582397 0.12272101 0.14969714
## 2856 0.14806335 0.06243174 0.10667727 0.14969714
## 2857 0.14806335 0.06243174 0.09814869 0.14969714
## 2858 0.14806335 0.06243174 0.12272101 0.14969714
## 2859 0.14806335 0.06243174 0.10667727 0.14969714
## 2860 0.14806335 0.09932349 0.09814869 0.14969714
## 2861 0.14806335 0.06243174 0.09814869 0.14969714
## 2862 0.14806335 0.06243174 0.10667727 0.14969714
## 2863 0.14806335 0.06243174 0.09814869 0.14969714
## 2864 0.05072162 0.45296167 0.12272101 0.14969714
## 2865 0.14806335 0.09932349 0.12272101 0.14969714
## 2866 0.14806335 0.21582397 0.09814869 0.14969714
## 2867 0.14806335 0.21582397 0.10667727 0.14969714
## 2868 0.14806335 0.06243174 0.10667727 0.14969714
## 2869 0.14806335 0.06243174 0.11410336 0.14969714
## 2870 0.14806335 0.09932349 0.09814869 0.14969714
## 2871 0.14806335 0.21582397 0.12152375 0.14969714
## 2872 0.14806335 0.06243174 0.12152375 0.14969714
## 2873 0.14806335 0.21582397 0.09814869 0.14969714
## 2874 0.14806335 0.06243174 0.12272101 0.14969714
## 2875 0.14806335 0.48076923 0.12152375 0.14969714
## 2876 0.14806335 0.09932349 0.12272101 0.14969714
## 2877 0.14806335 0.06243174 0.11410336 0.14969714
## 2878 0.14806335 0.06243174 0.12272101 0.14969714
## 2879 0.14806335 0.09932349 0.11410336 0.14969714
## 2880 0.14806335 0.06243174 0.09814869 0.14969714
## 2881 0.05072162 0.09932349 0.09814869 0.14969714
## 2882 0.14806335 0.06243174 0.09814869 0.14969714
## 2883 0.14806335 0.06243174 0.10667727 0.14969714
## 2884 0.14806335 0.09932349 0.12272101 0.14969714
## 2885 0.14806335 0.06243174 0.12152375 0.14969714
## 2886 0.14806335 0.21582397 0.10667727 0.14969714
## 2887 0.14806335 0.45296167 0.11410336 0.14969714
## 2888 0.14806335 0.06243174 0.11410336 0.14969714
## 2889 0.14806335 0.09932349 0.11410336 0.14969714
## 2890 0.14806335 0.09932349 0.11410336 0.14969714
## 2891 0.05072162 0.21582397 0.09814869 0.14969714
## 2892 0.14806335 0.09932349 0.12272101 0.14969714
## 2893 0.14806335 0.09932349 0.10667727 0.14969714
## 2894 0.05072162 0.06243174 0.11410336 0.14969714
## 2895 0.14806335 0.09932349 0.09814869 0.14969714
## 2896 0.14806335 0.06243174 0.12152375 0.14969714
## 2897 0.14806335 0.06243174 0.10667727 0.14969714
## 2898 0.14806335 0.06243174 0.09814869 0.14969714
## 2899 0.14806335 0.06243174 0.09814869 0.14969714
## 2900 0.14806335 0.06243174 0.10667727 0.14969714
## 2901 0.14806335 0.09932349 0.11410336 0.14969714
## 2902 0.05072162 0.43750000 0.09814869 0.14969714
## 2903 0.05072162 0.10363527 0.11410336 0.14969714
## 2904 0.14806335 0.43750000 0.12152375 0.14969714
## 2905 0.14806335 0.06243174 0.12272101 0.14969714
## 2906 0.14806335 0.06243174 0.09814869 0.14969714
## 2907 0.14806335 0.06243174 0.12272101 0.14969714
## 2908 0.14806335 0.09932349 0.12272101 0.14969714
## 2909 0.14806335 0.21582397 0.09814869 0.14969714
## 2910 0.14806335 0.06243174 0.11410336 0.14969714
## 2911 0.14806335 0.10363527 0.11410336 0.14969714
## 2912 0.14806335 0.51535088 0.09814869 0.14969714
## 2913 0.14806335 0.09932349 0.12272101 0.14969714
## 2914 0.14806335 0.09932349 0.11410336 0.14969714
## 2915 0.14806335 0.09293746 0.10667727 0.14969714
## 2916 0.14806335 0.06243174 0.11410336 0.14969714
## 2917 0.14806335 0.21582397 0.09814869 0.14969714
## 2918 0.14806335 0.06243174 0.10667727 0.14969714
## 2919 0.14806335 0.45296167 0.12272101 0.14969714
## 2920 0.14806335 0.06243174 0.12272101 0.14969714
## 2921 0.14806335 0.06243174 0.12272101 0.14969714
## 2922 0.14806335 0.06243174 0.09814869 0.14969714
## 2923 0.14806335 0.06243174 0.11410336 0.14969714
## 2924 0.14806335 0.06243174 0.10667727 0.14969714
## 2925 0.14806335 0.06243174 0.12272101 0.14969714
## 2926 0.14806335 0.21582397 0.11410336 0.14969714
## 2927 0.14806335 0.09932349 0.12152375 0.14969714
## 2928 0.14806335 0.06243174 0.11410336 0.14969714
## 2929 0.14806335 0.09932349 0.09814869 0.14969714
## 2930 0.14806335 0.43750000 0.09814869 0.14969714
## 2931 0.14806335 0.09932349 0.12272101 0.14969714
## 2932 0.14806335 0.21582397 0.09814869 0.14969714
## 2933 0.14806335 0.45296167 0.10667727 0.14969714
## 2934 0.14806335 0.21582397 0.11410336 0.14969714
## 2935 0.14806335 0.06243174 0.09814869 0.14969714
## 2936 0.14806335 0.10363527 0.09814869 0.14969714
## 2937 0.14806335 0.06243174 0.11410336 0.14969714
## 2938 0.14806335 0.09293746 0.11410336 0.14969714
## 2939 0.14806335 0.06243174 0.11410336 0.14969714
## 2940 0.14806335 0.51535088 0.11410336 0.14969714
## 2941 0.14806335 0.06243174 0.09814869 0.14969714
## 2942 0.14806335 0.09932349 0.10667727 0.14969714
## 2943 0.14806335 0.09932349 0.12272101 0.14969714
## 2944 0.14806335 0.09967090 0.12272101 0.14969714
## 2945 0.14806335 0.06243174 0.12152375 0.14969714
## 2946 0.14806335 0.06243174 0.11410336 0.14969714
## 2947 0.14806335 0.06243174 0.11410336 0.14969714
## 2948 0.05072162 0.21582397 0.09814869 0.14969714
## 2949 0.14806335 0.09293746 0.12272101 0.14969714
## 2950 0.14806335 0.21582397 0.09814869 0.14969714
## 2951 0.14806335 0.43750000 0.09814869 0.14969714
## 2952 0.14806335 0.09932349 0.09814869 0.14969714
## 2953 0.05072162 0.45296167 0.12272101 0.14969714
## 2954 0.14806335 0.09932349 0.09814869 0.14969714
## 2955 0.14806335 0.06243174 0.09814869 0.14969714
## 2956 0.14806335 0.51535088 0.09814869 0.14969714
## 2957 0.14806335 0.09293746 0.09814869 0.14969714
## 2958 0.05072162 0.06243174 0.09814869 0.14969714
## 2959 0.14806335 0.06243174 0.12272101 0.14969714
## 2960 0.14806335 0.06243174 0.12152375 0.14969714
## 2961 0.05072162 0.10363527 0.12272101 0.14969714
## 2962 0.14806335 0.10363527 0.11410336 0.14969714
## 2963 0.14806335 0.06243174 0.09814869 0.14969714
## 2964 0.14806335 0.06243174 0.12272101 0.14969714
## 2965 0.14806335 0.06243174 0.12272101 0.14969714
## 2966 0.14806335 0.06243174 0.12272101 0.14969714
## 2967 0.14806335 0.09967090 0.09814869 0.14969714
## 2968 0.14806335 0.06243174 0.10667727 0.14969714
## 2969 0.14806335 0.45296167 0.10667727 0.14969714
## 2970 0.14806335 0.09932349 0.12272101 0.14969714
## 2971 0.14806335 0.06243174 0.12272101 0.14969714
## 2972 0.14806335 0.06243174 0.09814869 0.14969714
## 2973 0.14806335 0.06243174 0.12152375 0.14969714
## 2974 0.14806335 0.09932349 0.11410336 0.14969714
## 2975 0.14806335 0.21582397 0.12272101 0.14969714
## 2976 0.14806335 0.06243174 0.09814869 0.14969714
## 2977 0.14806335 0.06243174 0.10667727 0.14969714
## 2978 0.14806335 0.09932349 0.12152375 0.14969714
## 2979 0.14806335 0.09967090 0.11410336 0.14969714
## 2980 0.14806335 0.06243174 0.12272101 0.14969714
## 2981 0.14806335 0.21582397 0.12272101 0.14969714
## 2982 0.05072162 0.09932349 0.12272101 0.14969714
## 2983 0.14806335 0.10363527 0.12272101 0.14969714
## 2984 0.14806335 0.10363527 0.12272101 0.14969714
## 2985 0.05072162 0.06243174 0.12272101 0.14969714
## 2986 0.14806335 0.10363527 0.12152375 0.14969714
## 2987 0.14806335 0.43750000 0.12152375 0.14969714
## 2988 0.14806335 0.09932349 0.09814869 0.14969714
## 2989 0.14806335 0.06243174 0.09814869 0.14969714
## 2990 0.05072162 0.06243174 0.12272101 0.14969714
## 2991 0.14806335 0.06243174 0.12272101 0.14969714
## 2992 0.14806335 0.09293746 0.11410336 0.14969714
## 2993 0.14806335 0.06243174 0.12272101 0.14969714
## 2994 0.14806335 0.06243174 0.09814869 0.14969714
## 2995 0.14806335 0.09932349 0.09814869 0.14969714
## 2996 0.14806335 0.09932349 0.12152375 0.14969714
## 2997 0.14806335 0.21582397 0.11410336 0.14969714
## 2998 0.14806335 0.51535088 0.10667727 0.14969714
## 2999 0.14806335 0.09932349 0.09814869 0.14969714
## 3000 0.14806335 0.45296167 0.12272101 0.14969714
## 3001 0.14806335 0.06243174 0.09814869 0.14969714
## 3002 0.14806335 0.21582397 0.10667727 0.14969714
## 3003 0.14806335 0.21582397 0.12152375 0.14969714
## 3004 0.14806335 0.06243174 0.09814869 0.14969714
## 3005 0.14806335 0.21582397 0.12152375 0.14969714
## 3006 0.14806335 0.06243174 0.12272101 0.14969714
## 3007 0.14806335 0.45296167 0.12152375 0.14969714
## 3008 0.14806335 0.51535088 0.09814869 0.14969714
## 3009 0.14806335 0.06243174 0.11410336 0.14969714
## 3010 0.14806335 0.09932349 0.10667727 0.14969714
## 3011 0.14806335 0.09932349 0.09814869 0.14969714
## 3012 0.14806335 0.06243174 0.10667727 0.14969714
## 3013 0.14806335 0.06243174 0.11410336 0.14969714
## 3014 0.14806335 0.09932349 0.10667727 0.14969714
## 3015 0.14806335 0.09932349 0.12152375 0.14969714
## 3016 0.14806335 0.09932349 0.12272101 0.14969714
## 3017 0.14806335 0.09932349 0.09814869 0.14969714
## 3018 0.14806335 0.09932349 0.09814869 0.14969714
## 3019 0.14806335 0.09293746 0.09814869 0.14969714
## 3020 0.14806335 0.09932349 0.11410336 0.14969714
## 3021 0.14806335 0.06243174 0.12272101 0.14969714
## 3022 0.14806335 0.43750000 0.10667727 0.14969714
## 3023 0.14806335 0.21582397 0.10667727 0.14969714
## 3024 0.14806335 0.06243174 0.12272101 0.14969714
## 3025 0.14806335 0.09932349 0.12152375 0.14969714
## 3026 0.14806335 0.21582397 0.10667727 0.14969714
## 3027 0.14806335 0.09932349 0.12272101 0.14969714
## 3028 0.14806335 0.06243174 0.12272101 0.14969714
## 3029 0.14806335 0.06243174 0.12152375 0.14969714
## 3030 0.14806335 0.21582397 0.12272101 0.14969714
## 3031 0.14806335 0.06243174 0.12152375 0.14969714
## 3032 0.14806335 0.06243174 0.10667727 0.14969714
## 3033 0.05072162 0.06243174 0.12272101 0.14969714
## 3034 0.14806335 0.06243174 0.11410336 0.14969714
## 3035 0.14806335 0.06243174 0.12272101 0.14969714
## 3036 0.14806335 0.09967090 0.10667727 0.14969714
## 3037 0.14806335 0.21582397 0.10667727 0.14969714
## 3038 0.14806335 0.43750000 0.10667727 0.14969714
## 3039 0.14806335 0.06243174 0.12272101 0.14969714
## 3040 0.14806335 0.10363527 0.11410336 0.14969714
## 3041 0.14806335 0.43750000 0.12272101 0.14969714
## 3042 0.14806335 0.21582397 0.09814869 0.14969714
## 3043 0.05072162 0.48076923 0.12272101 0.14969714
## 3044 0.14806335 0.09932349 0.11410336 0.14969714
## 3045 0.14806335 0.06243174 0.09814869 0.14969714
## 3046 0.14806335 0.45296167 0.12152375 0.14969714
## 3047 0.14806335 0.43750000 0.11410336 0.14969714
## 3048 0.14806335 0.06243174 0.12272101 0.14969714
## 3049 0.14806335 0.45296167 0.09814869 0.14969714
## 3050 0.14806335 0.06243174 0.11410336 0.14969714
## 3051 0.05072162 0.09932349 0.09814869 0.14969714
## 3052 0.14806335 0.06243174 0.12152375 0.14969714
## 3053 0.14806335 0.06243174 0.12272101 0.14969714
## 3054 0.14806335 0.06243174 0.12272101 0.14969714
## 3055 0.14806335 0.06243174 0.12272101 0.14969714
## 3056 0.14806335 0.09932349 0.12272101 0.14969714
## 3057 0.14806335 0.10363527 0.10667727 0.14969714
## 3058 0.14806335 0.06243174 0.11410336 0.14969714
## 3059 0.14806335 0.06243174 0.10667727 0.14969714
## 3060 0.14806335 0.06243174 0.11410336 0.14969714
## 3061 0.14806335 0.21582397 0.12272101 0.14969714
## 3062 0.14806335 0.09932349 0.09814869 0.14969714
## 3063 0.14806335 0.09932349 0.10667727 0.14969714
## 3064 0.14806335 0.06243174 0.12152375 0.14969714
## 3065 0.14806335 0.06243174 0.12272101 0.14969714
## 3066 0.14806335 0.21582397 0.09814869 0.14969714
## 3067 0.14806335 0.21582397 0.10667727 0.14969714
## 3068 0.14806335 0.21582397 0.11410336 0.14969714
## 3069 0.14806335 0.21582397 0.10667727 0.14969714
## 3070 0.14806335 0.09932349 0.10667727 0.14969714
## 3071 0.14806335 0.06243174 0.12272101 0.14969714
## 3072 0.14806335 0.06243174 0.09814869 0.14969714
## 3073 0.14806335 0.10363527 0.10667727 0.14969714
## 3074 0.14806335 0.09932349 0.12272101 0.14969714
## 3075 0.14806335 0.09932349 0.09814869 0.14969714
## 3076 0.14806335 0.43750000 0.12272101 0.14969714
## 3077 0.14806335 0.43750000 0.12152375 0.14969714
## 3078 0.14806335 0.06243174 0.11410336 0.14969714
## 3079 0.14806335 0.06243174 0.10667727 0.14969714
## 3080 0.14806335 0.09932349 0.11410336 0.14969714
## 3081 0.14806335 0.06243174 0.12272101 0.14969714
## 3082 0.14806335 0.21582397 0.09814869 0.14969714
## 3083 0.14806335 0.06243174 0.12152375 0.14969714
## 3084 0.14806335 0.21582397 0.12272101 0.14969714
## 3085 0.14806335 0.06243174 0.12272101 0.14969714
## 3086 0.14806335 0.06243174 0.12152375 0.14969714
## 3087 0.05072162 0.45296167 0.12272101 0.14969714
## 3088 0.14806335 0.21582397 0.12272101 0.14969714
## 3089 0.14806335 0.06243174 0.12272101 0.14969714
## 3090 0.14806335 0.09932349 0.09814869 0.14969714
## 3091 0.14806335 0.21582397 0.10667727 0.14969714
## 3092 0.14806335 0.06243174 0.10667727 0.14969714
## 3093 0.14806335 0.06243174 0.10667727 0.14969714
## 3094 0.14806335 0.06243174 0.12152375 0.14969714
## 3095 0.14806335 0.06243174 0.10667727 0.14969714
## 3096 0.14806335 0.09932349 0.11410336 0.14969714
## 3097 0.14806335 0.43750000 0.12152375 0.14969714
## 3098 0.14806335 0.09932349 0.09814869 0.14969714
## 3099 0.14806335 0.09293746 0.10667727 0.14969714
## 3100 0.14806335 0.09932349 0.12272101 0.14969714
## 3101 0.14806335 0.06243174 0.12272101 0.14969714
## 3102 0.14806335 0.06243174 0.12152375 0.14969714
## 3103 0.14806335 0.43750000 0.12152375 0.14969714
## 3104 0.05072162 0.09932349 0.09814869 0.14969714
## 3105 0.14806335 0.06243174 0.10667727 0.14969714
## 3106 0.14806335 0.09293746 0.09814869 0.14969714
## 3107 0.14806335 0.21582397 0.12152375 0.14969714
## 3108 0.14806335 0.21582397 0.12272101 0.14969714
## 3109 0.14806335 0.06243174 0.11410336 0.14969714
## 3110 0.14806335 0.09932349 0.11410336 0.14969714
## 3111 0.14806335 0.45296167 0.12272101 0.14969714
## 3112 0.14806335 0.06243174 0.12272101 0.14969714
## 3113 0.14806335 0.06243174 0.11410336 0.14969714
## 3114 0.14806335 0.10363527 0.09814869 0.14969714
## 3115 0.14806335 0.09932349 0.11410336 0.14969714
## 3116 0.14806335 0.06243174 0.09814869 0.14969714
## 3117 0.05072162 0.06243174 0.09814869 0.14969714
## 3118 0.14806335 0.06243174 0.12152375 0.14969714
## 3119 0.05072162 0.45296167 0.11410336 0.14969714
## 3120 0.14806335 0.06243174 0.09814869 0.14969714
## 3121 0.14806335 0.09932349 0.12272101 0.14969714
## 3122 0.14806335 0.06243174 0.10667727 0.14969714
## 3123 0.14806335 0.51535088 0.09814869 0.14969714
## 3124 0.14806335 0.06243174 0.09814869 0.14969714
## 3125 0.14806335 0.06243174 0.12272101 0.14969714
## 3126 0.14806335 0.45296167 0.10667727 0.14969714
## 3127 0.14806335 0.45296167 0.11410336 0.14969714
## 3128 0.14806335 0.06243174 0.12272101 0.14969714
## 3129 0.14806335 0.06243174 0.12152375 0.14969714
## 3130 0.05072162 0.06243174 0.12272101 0.14969714
## 3131 0.14806335 0.21582397 0.10667727 0.14969714
## 3132 0.14806335 0.21582397 0.10667727 0.14969714
## 3133 0.14806335 0.09293746 0.12152375 0.14969714
## 3134 0.14806335 0.09932349 0.11410336 0.14969714
## 3135 0.14806335 0.06243174 0.09814869 0.14969714
## 3136 0.14806335 0.10363527 0.10667727 0.14969714
## 3137 0.14806335 0.06243174 0.11410336 0.14969714
## 3138 0.14806335 0.06243174 0.09814869 0.14969714
## 3139 0.05072162 0.06243174 0.11410336 0.14969714
## 3140 0.14806335 0.06243174 0.09814869 0.14969714
## 3141 0.14806335 0.10363527 0.10667727 0.14969714
## 3142 0.14806335 0.09932349 0.12272101 0.14969714
## 3143 0.14806335 0.10363527 0.09814869 0.14969714
## 3144 0.14806335 0.06243174 0.12272101 0.14969714
## 3145 0.14806335 0.43750000 0.09814869 0.14969714
## 3146 0.14806335 0.06243174 0.12272101 0.14969714
## 3147 0.14806335 0.21582397 0.10667727 0.14969714
## 3148 0.14806335 0.09932349 0.09814869 0.14969714
## 3149 0.14806335 0.09932349 0.12272101 0.14969714
## 3150 0.14806335 0.06243174 0.12272101 0.14969714
## 3151 0.14806335 0.06243174 0.10667727 0.14969714
## 3152 0.14806335 0.10363527 0.12152375 0.14969714
## 3153 0.14806335 0.06243174 0.11410336 0.14969714
## 3154 0.14806335 0.06243174 0.11410336 0.14969714
## 3155 0.14806335 0.06243174 0.11410336 0.14969714
## 3156 0.14806335 0.21582397 0.09814869 0.14969714
## 3157 0.14806335 0.21582397 0.10667727 0.14969714
## 3158 0.14806335 0.09293746 0.12272101 0.14969714
## 3159 0.14806335 0.06243174 0.09814869 0.14969714
## 3160 0.14806335 0.06243174 0.10667727 0.14969714
## 3161 0.14806335 0.09967090 0.09814869 0.14969714
## 3162 0.14806335 0.43750000 0.12272101 0.14969714
## 3163 0.14806335 0.06243174 0.12272101 0.14969714
## 3164 0.14806335 0.09932349 0.11410336 0.14969714
## 3165 0.14806335 0.43750000 0.09814869 0.14969714
## 3166 0.14806335 0.06243174 0.12272101 0.14969714
## 3167 0.14806335 0.43750000 0.12272101 0.14969714
## 3168 0.14806335 0.09932349 0.12272101 0.14969714
## 3169 0.14806335 0.48076923 0.09814869 0.14969714
## 3170 0.14806335 0.09932349 0.09814869 0.14969714
## 3171 0.14806335 0.06243174 0.12272101 0.14969714
## 3172 0.14806335 0.43750000 0.12272101 0.14969714
## 3173 0.14806335 0.43750000 0.12152375 0.14969714
## 3174 0.14806335 0.06243174 0.11410336 0.14969714
## 3175 0.05072162 0.10363527 0.09814869 0.14969714
## 3176 0.14806335 0.06243174 0.12152375 0.14969714
## 3177 0.14806335 0.21582397 0.09814869 0.14969714
## 3178 0.14806335 0.21582397 0.12152375 0.14969714
## 3179 0.14806335 0.09932349 0.12272101 0.14969714
## 3180 0.14806335 0.21582397 0.09814869 0.14969714
## 3181 0.14806335 0.09932349 0.11410336 0.14969714
## 3182 0.14806335 0.21582397 0.10667727 0.14969714
## 3183 0.14806335 0.06243174 0.11410336 0.14969714
## 3184 0.14806335 0.09932349 0.10667727 0.14969714
## 3185 0.14806335 0.06243174 0.11410336 0.14969714
## 3186 0.14806335 0.09932349 0.12272101 0.14969714
## 3187 0.14806335 0.09293746 0.12272101 0.14969714
## 3188 0.14806335 0.21582397 0.12272101 0.14969714
## 3189 0.14806335 0.21582397 0.09814869 0.14969714
## 3190 0.14806335 0.06243174 0.12272101 0.14969714
## 3191 0.14806335 0.06243174 0.10667727 0.14969714
## 3192 0.14806335 0.06243174 0.10667727 0.14969714
## 3193 0.14806335 0.21582397 0.11410336 0.14969714
## 3194 0.14806335 0.21582397 0.12152375 0.14969714
## 3195 0.14806335 0.06243174 0.11410336 0.14969714
## 3196 0.14806335 0.51535088 0.11410336 0.14969714
## 3197 0.14806335 0.06243174 0.10667727 0.14969714
## 3198 0.14806335 0.06243174 0.10667727 0.14969714
## 3199 0.14806335 0.10363527 0.12152375 0.14969714
## 3200 0.14806335 0.06243174 0.10667727 0.14969714
## 3201 0.14806335 0.06243174 0.12272101 0.14969714
## 3202 0.14806335 0.09932349 0.09814869 0.14969714
## 3203 0.14806335 0.09932349 0.11410336 0.14969714
## 3204 0.14806335 0.06243174 0.09814869 0.14969714
## 3205 0.14806335 0.21582397 0.11410336 0.14969714
## 3206 0.14806335 0.06243174 0.10667727 0.14969714
## 3207 0.14806335 0.21582397 0.12152375 0.14969714
## 3208 0.14806335 0.09932349 0.11410336 0.14969714
## 3209 0.14806335 0.06243174 0.12272101 0.14969714
## 3210 0.14806335 0.06243174 0.12152375 0.14969714
## 3211 0.14806335 0.06243174 0.10667727 0.14969714
## 3212 0.14806335 0.06243174 0.11410336 0.14969714
## 3213 0.05072162 0.06243174 0.09814869 0.14969714
## 3214 0.14806335 0.06243174 0.10667727 0.14969714
## 3215 0.14806335 0.10363527 0.10667727 0.14969714
## 3216 0.14806335 0.06243174 0.12272101 0.14969714
## 3217 0.05072162 0.06243174 0.12272101 0.14969714
## 3218 0.14806335 0.09967090 0.12272101 0.14969714
## 3219 0.14806335 0.45296167 0.11410336 0.14969714
## 3220 0.14806335 0.06243174 0.12272101 0.14969714
## 3221 0.14806335 0.43750000 0.12272101 0.14969714
## 3222 0.14806335 0.43750000 0.12272101 0.14969714
## 3223 0.14806335 0.45296167 0.09814869 0.14969714
## 3224 0.14806335 0.51535088 0.12272101 0.14969714
## 3225 0.05072162 0.06243174 0.11410336 0.14969714
## 3226 0.14806335 0.06243174 0.10667727 0.14969714
## 3227 0.14806335 0.06243174 0.12152375 0.14969714
## 3228 0.05072162 0.06243174 0.10667727 0.14969714
## 3229 0.14806335 0.09932349 0.11410336 0.14969714
## 3230 0.14806335 0.10363527 0.12272101 0.14969714
## 3231 0.14806335 0.51535088 0.12152375 0.14969714
## 3232 0.05072162 0.09932349 0.12152375 0.14969714
## 3233 0.14806335 0.06243174 0.09814869 0.14969714
## 3234 0.14806335 0.09932349 0.11410336 0.14969714
## 3235 0.14806335 0.51535088 0.09814869 0.14969714
## 3236 0.14806335 0.06243174 0.10667727 0.14969714
## 3237 0.14806335 0.06243174 0.11410336 0.14969714
## 3238 0.14806335 0.06243174 0.12152375 0.14969714
## 3239 0.05072162 0.06243174 0.11410336 0.14969714
## 3240 0.14806335 0.09932349 0.10667727 0.14969714
## 3241 0.14806335 0.09932349 0.10667727 0.14969714
## 3242 0.14806335 0.06243174 0.12152375 0.14969714
## 3243 0.14806335 0.51535088 0.12152375 0.14969714
## 3244 0.14806335 0.06243174 0.10667727 0.14969714
## 3245 0.14806335 0.06243174 0.12272101 0.14969714
## 3246 0.14806335 0.06243174 0.12272101 0.14969714
## 3247 0.14806335 0.09932349 0.09814869 0.14969714
## 3248 0.14806335 0.51535088 0.11410336 0.14969714
## 3249 0.14806335 0.09932349 0.12272101 0.14969714
## 3250 0.14806335 0.06243174 0.11410336 0.14969714
## 3251 0.14806335 0.45296167 0.12272101 0.14969714
## 3252 0.14806335 0.06243174 0.12152375 0.14969714
## 3253 0.05072162 0.06243174 0.12272101 0.14969714
## 3254 0.14806335 0.10363527 0.11410336 0.14969714
## 3255 0.14806335 0.06243174 0.10667727 0.14969714
## 3256 0.14806335 0.43750000 0.10667727 0.14969714
## 3257 0.14806335 0.10363527 0.10667727 0.14969714
## 3258 0.14806335 0.10363527 0.11410336 0.14969714
## 3259 0.14806335 0.06243174 0.10667727 0.14969714
## 3260 0.14806335 0.09932349 0.09814869 0.14969714
## 3261 0.14806335 0.06243174 0.09814869 0.14969714
## 3262 0.14806335 0.06243174 0.10667727 0.14969714
## 3263 0.14806335 0.10363527 0.11410336 0.14969714
## 3264 0.14806335 0.06243174 0.12272101 0.14969714
## 3265 0.14806335 0.09932349 0.09814869 0.14969714
## 3266 0.14806335 0.09932349 0.12152375 0.14969714
## 3267 0.14806335 0.09932349 0.12272101 0.14969714
## 3268 0.14806335 0.43750000 0.12272101 0.14969714
## 3269 0.05072162 0.09932349 0.11410336 0.14969714
## 3270 0.14806335 0.21582397 0.10667727 0.14969714
## 3271 0.14806335 0.06243174 0.10667727 0.14969714
## 3272 0.14806335 0.45296167 0.12152375 0.14969714
## 3273 0.14806335 0.21582397 0.09814869 0.14969714
## 3274 0.14806335 0.06243174 0.11410336 0.14969714
## 3275 0.14806335 0.21582397 0.12152375 0.14969714
## 3276 0.14806335 0.21582397 0.10667727 0.14969714
## 3277 0.14806335 0.06243174 0.10667727 0.14969714
## 3278 0.14806335 0.51535088 0.12152375 0.14969714
## 3279 0.14806335 0.09932349 0.12272101 0.14969714
## 3280 0.14806335 0.48076923 0.12152375 0.14969714
## 3281 0.14806335 0.21582397 0.10667727 0.14969714
## 3282 0.14806335 0.06243174 0.12152375 0.14969714
## 3283 0.14806335 0.06243174 0.09814869 0.14969714
## 3284 0.14806335 0.09932349 0.10667727 0.14969714
## 3285 0.14806335 0.06243174 0.09814869 0.14969714
## 3286 0.14806335 0.06243174 0.12272101 0.14969714
## 3287 0.14806335 0.06243174 0.12272101 0.14969714
## 3288 0.14806335 0.43750000 0.12272101 0.14969714
## 3289 0.14806335 0.06243174 0.12272101 0.14969714
## 3290 0.14806335 0.21582397 0.12152375 0.14969714
## 3291 0.14806335 0.09932349 0.12152375 0.14969714
## 3292 0.14806335 0.21582397 0.10667727 0.14969714
## 3293 0.14806335 0.10363527 0.12152375 0.14969714
## 3294 0.05072162 0.43750000 0.12272101 0.14969714
## 3295 0.14806335 0.09932349 0.12272101 0.14969714
## 3296 0.14806335 0.21582397 0.10667727 0.14969714
## 3297 0.14806335 0.45296167 0.09814869 0.14969714
## 3298 0.14806335 0.10363527 0.10667727 0.14969714
## 3299 0.14806335 0.10363527 0.12272101 0.14969714
## 3300 0.14806335 0.10363527 0.12152375 0.14969714
## 3301 0.14806335 0.09932349 0.09814869 0.14969714
## 3302 0.14806335 0.09967090 0.12272101 0.14969714
## 3303 0.14806335 0.21582397 0.09814869 0.14969714
## 3304 0.14806335 0.06243174 0.12272101 0.14969714
## 3305 0.14806335 0.51535088 0.09814869 0.14969714
## 3306 0.14806335 0.06243174 0.09814869 0.14969714
## 3307 0.14806335 0.21582397 0.10667727 0.14969714
## 3308 0.14806335 0.06243174 0.12152375 0.14969714
## 3309 0.05072162 0.10363527 0.09814869 0.14969714
## 3310 0.14806335 0.09967090 0.12272101 0.14969714
## 3311 0.14806335 0.06243174 0.11410336 0.14969714
## 3312 0.14806335 0.45296167 0.12272101 0.14969714
## 3313 0.14806335 0.45296167 0.12272101 0.14969714
## 3314 0.14806335 0.10363527 0.11410336 0.14969714
## 3315 0.14806335 0.45296167 0.12152375 0.14969714
## 3316 0.14806335 0.51535088 0.12272101 0.14969714
## 3317 0.14806335 0.06243174 0.09814869 0.14969714
## 3318 0.14806335 0.09932349 0.12152375 0.14969714
## 3319 0.14806335 0.06243174 0.12272101 0.14969714
## 3320 0.14806335 0.06243174 0.11410336 0.14969714
## 3321 0.14806335 0.43750000 0.11410336 0.14969714
## 3322 0.14806335 0.45296167 0.12152375 0.14969714
## 3323 0.14806335 0.06243174 0.09814869 0.14969714
## 3324 0.14806335 0.43750000 0.12152375 0.14969714
## 3325 0.14806335 0.43750000 0.12152375 0.14969714
## 3326 0.14806335 0.21582397 0.10667727 0.14969714
## 3327 0.05072162 0.43750000 0.09814869 0.14969714
## 3328 0.14806335 0.09932349 0.09814869 0.14969714
## 3329 0.14806335 0.10363527 0.09814869 0.14969714
## 3330 0.14806335 0.06243174 0.12152375 0.14969714
## 3331 0.14806335 0.06243174 0.12152375 0.14969714
## 3332 0.14806335 0.06243174 0.12152375 0.14969714
## 3333 0.14806335 0.06243174 0.11410336 0.14969714
## 3334 0.05072162 0.09967090 0.12272101 0.14969714
## 3335 0.14806335 0.06243174 0.12152375 0.14969714
## 3336 0.05072162 0.43750000 0.12272101 0.14969714
## 3337 0.14806335 0.06243174 0.11410336 0.14969714
## 3338 0.14806335 0.06243174 0.11410336 0.14969714
## 3339 0.14806335 0.09293746 0.12272101 0.14969714
## 3340 0.14806335 0.06243174 0.11410336 0.14969714
## 3341 0.14806335 0.06243174 0.12152375 0.14969714
## 3342 0.14806335 0.06243174 0.10667727 0.14969714
## 3343 0.14806335 0.45296167 0.10667727 0.14969714
## 3344 0.14806335 0.45296167 0.12272101 0.14969714
## 3345 0.14806335 0.06243174 0.11410336 0.14969714
## 3346 0.14806335 0.09293746 0.11410336 0.14969714
## 3347 0.14806335 0.06243174 0.09814869 0.14969714
## 3348 0.14806335 0.43750000 0.12272101 0.14969714
## 3349 0.14806335 0.45296167 0.11410336 0.14969714
## 3350 0.14806335 0.06243174 0.10667727 0.14969714
## 3351 0.14806335 0.06243174 0.10667727 0.14969714
## 3352 0.14806335 0.06243174 0.09814869 0.14969714
## 3353 0.14806335 0.06243174 0.11410336 0.14969714
## 3354 0.14806335 0.09967090 0.12272101 0.14969714
## 3355 0.14806335 0.06243174 0.12272101 0.14969714
## 3356 0.14806335 0.09293746 0.12152375 0.14969714
## 3357 0.14806335 0.06243174 0.12152375 0.14969714
## 3358 0.14806335 0.06243174 0.11410336 0.14969714
## 3359 0.14806335 0.06243174 0.12272101 0.14969714
## 3360 0.14806335 0.43750000 0.12152375 0.14969714
## 3361 0.14806335 0.09932349 0.09814869 0.14969714
## 3362 0.14806335 0.10363527 0.11410336 0.14969714
## 3363 0.14806335 0.10363527 0.11410336 0.14969714
## 3364 0.14806335 0.06243174 0.09814869 0.14969714
## 3365 0.14806335 0.06243174 0.09814869 0.14969714
## 3366 0.05072162 0.09932349 0.12272101 0.14969714
## 3367 0.14806335 0.06243174 0.12272101 0.14969714
## 3368 0.05072162 0.10363527 0.10667727 0.14969714
## 3369 0.14806335 0.51535088 0.12152375 0.14969714
## 3370 0.14806335 0.09932349 0.12152375 0.14969714
## 3371 0.14806335 0.06243174 0.12152375 0.14969714
## 3372 0.14806335 0.09932349 0.09814869 0.14969714
## 3373 0.14806335 0.51535088 0.11410336 0.14969714
## 3374 0.14806335 0.09932349 0.12272101 0.14969714
## 3375 0.14806335 0.21582397 0.10667727 0.14969714
## 3376 0.05072162 0.06243174 0.12272101 0.14969714
## 3377 0.14806335 0.09967090 0.12272101 0.14969714
## 3378 0.14806335 0.06243174 0.09814869 0.14969714
## 3379 0.14806335 0.09932349 0.09814869 0.14969714
## 3380 0.14806335 0.09932349 0.09814869 0.14969714
## 3381 0.14806335 0.09932349 0.09814869 0.14969714
## 3382 0.14806335 0.21582397 0.09814869 0.14969714
## 3383 0.14806335 0.06243174 0.09814869 0.14969714
## 3384 0.14806335 0.06243174 0.10667727 0.14969714
## 3385 0.14806335 0.51535088 0.11410336 0.14969714
## 3386 0.14806335 0.06243174 0.09814869 0.14969714
## 3387 0.14806335 0.43750000 0.10667727 0.14969714
## 3388 0.14806335 0.06243174 0.11410336 0.14969714
## 3389 0.14806335 0.06243174 0.12272101 0.14969714
## 3390 0.14806335 0.06243174 0.12272101 0.14969714
## 3391 0.14806335 0.09932349 0.11410336 0.14969714
## 3392 0.14806335 0.09967090 0.12272101 0.14969714
## 3393 0.14806335 0.06243174 0.11410336 0.14969714
## 3394 0.14806335 0.10363527 0.11410336 0.14969714
## 3395 0.14806335 0.06243174 0.12272101 0.14969714
## 3396 0.14806335 0.06243174 0.12152375 0.14969714
## 3397 0.14806335 0.06243174 0.12272101 0.14969714
## 3398 0.14806335 0.09932349 0.09814869 0.14969714
## 3399 0.05072162 0.06243174 0.12152375 0.14969714
## 3400 0.14806335 0.06243174 0.12272101 0.14969714
## 3401 0.14806335 0.21582397 0.10667727 0.14969714
## 3402 0.14806335 0.06243174 0.09814869 0.14969714
## 3403 0.14806335 0.09932349 0.10667727 0.14969714
## 3404 0.14806335 0.09932349 0.11410336 0.14969714
## 3405 0.14806335 0.09932349 0.09814869 0.14969714
## 3406 0.14806335 0.43750000 0.09814869 0.14969714
## 3407 0.14806335 0.43750000 0.12152375 0.14969714
## 3408 0.05072162 0.09967090 0.12152375 0.14969714
## 3409 0.14806335 0.06243174 0.09814869 0.14969714
## 3410 0.05072162 0.43750000 0.11410336 0.14969714
## 3411 0.14806335 0.06243174 0.12272101 0.14969714
## 3412 0.14806335 0.09932349 0.12272101 0.14969714
## 3413 0.14806335 0.06243174 0.12152375 0.14969714
## 3414 0.14806335 0.06243174 0.11410336 0.14969714
## 3415 0.14806335 0.06243174 0.09814869 0.14969714
## 3416 0.14806335 0.06243174 0.11410336 0.14969714
## 3417 0.14806335 0.09293746 0.09814869 0.14969714
## 3418 0.14806335 0.09932349 0.12272101 0.14969714
## 3419 0.14806335 0.43750000 0.12272101 0.14969714
## 3420 0.14806335 0.06243174 0.12272101 0.14969714
## 3421 0.14806335 0.06243174 0.12152375 0.14969714
## 3422 0.14806335 0.06243174 0.12272101 0.14969714
## 3423 0.14806335 0.43750000 0.12272101 0.14969714
## 3424 0.14806335 0.09932349 0.12152375 0.14969714
## 3425 0.14806335 0.21582397 0.09814869 0.14969714
## 3426 0.14806335 0.06243174 0.11410336 0.14969714
## 3427 0.14806335 0.06243174 0.11410336 0.14969714
## 3428 0.14806335 0.09967090 0.09814869 0.14969714
## 3429 0.14806335 0.06243174 0.12152375 0.14969714
## 3430 0.14806335 0.06243174 0.10667727 0.14969714
## 3431 0.14806335 0.09932349 0.11410336 0.14969714
## 3432 0.14806335 0.09932349 0.10667727 0.14969714
## 3433 0.14806335 0.09293746 0.12152375 0.14969714
## 3434 0.05072162 0.09293746 0.12152375 0.14969714
## 3435 0.14806335 0.09932349 0.12152375 0.14969714
## 3436 0.14806335 0.06243174 0.12272101 0.14969714
## 3437 0.14806335 0.09932349 0.09814869 0.14969714
## 3438 0.14806335 0.21582397 0.10667727 0.14969714
## 3439 0.14806335 0.21582397 0.10667727 0.14969714
## 3440 0.14806335 0.06243174 0.10667727 0.14969714
## 3441 0.14806335 0.10363527 0.12272101 0.14969714
## 3442 0.14806335 0.06243174 0.12272101 0.14969714
## 3443 0.14806335 0.06243174 0.12272101 0.14969714
## 3444 0.14806335 0.06243174 0.10667727 0.14969714
## 3445 0.14806335 0.06243174 0.09814869 0.14969714
## 3446 0.14806335 0.43750000 0.12272101 0.14969714
## 3447 0.14806335 0.06243174 0.12272101 0.14969714
## 3448 0.14806335 0.06243174 0.12152375 0.14969714
## 3449 0.14806335 0.06243174 0.09814869 0.14969714
## 3450 0.05072162 0.43750000 0.12152375 0.14969714
## 3451 0.14806335 0.21582397 0.09814869 0.14969714
## 3452 0.14806335 0.10363527 0.10667727 0.14969714
## 3453 0.14806335 0.21582397 0.10667727 0.14969714
## 3454 0.14806335 0.10363527 0.12152375 0.14969714
## 3455 0.14806335 0.09932349 0.09814869 0.14969714
## 3456 0.14806335 0.06243174 0.11410336 0.14969714
## 3457 0.14806335 0.45296167 0.10667727 0.14969714
## 3458 0.14806335 0.06243174 0.12152375 0.14969714
## 3459 0.05072162 0.06243174 0.11410336 0.14969714
## 3460 0.14806335 0.06243174 0.12272101 0.14969714
## 3461 0.14806335 0.45296167 0.12272101 0.14969714
## 3462 0.14806335 0.09932349 0.12272101 0.14969714
## 3463 0.14806335 0.21582397 0.09814869 0.14969714
## 3464 0.14806335 0.51535088 0.11410336 0.14969714
## 3465 0.14806335 0.21582397 0.10667727 0.14969714
## 3466 0.14806335 0.09932349 0.12272101 0.14969714
## 3467 0.05072162 0.21582397 0.09814869 0.14969714
## 3468 0.14806335 0.10363527 0.10667727 0.08671274
## 3469 0.14806335 0.09967090 0.10667727 0.08671274
## 3470 0.14806335 0.21582397 0.10667727 0.08671274
## 3471 0.05072162 0.09967090 0.10667727 0.08671274
## 3472 0.14806335 0.10363527 0.09814869 0.08671274
## 3473 0.14806335 0.21582397 0.10667727 0.08671274
## 3474 0.14806335 0.51535088 0.10667727 0.08671274
## 3475 0.05072162 0.09293746 0.10667727 0.08671274
## 3476 0.14806335 0.06243174 0.10667727 0.08671274
## 3477 0.14806335 0.09293746 0.09814869 0.08671274
## 3478 0.14806335 0.21582397 0.10667727 0.08671274
## 3479 0.14806335 0.10363527 0.10667727 0.08671274
## 3480 0.14806335 0.09293746 0.10667727 0.08671274
## 3481 0.14806335 0.21582397 0.10667727 0.08671274
## 3482 0.05072162 0.06243174 0.10667727 0.08671274
## 3483 0.14806335 0.09293746 0.10667727 0.08671274
## 3484 0.05072162 0.06243174 0.10667727 0.08671274
## 3485 0.05072162 0.09967090 0.10667727 0.08671274
## 3486 0.14806335 0.09293746 0.10667727 0.08671274
## 3487 0.14806335 0.09293746 0.10667727 0.08671274
## 3488 0.14806335 0.09932349 0.10667727 0.08671274
## 3489 0.14806335 0.06243174 0.10667727 0.08671274
## 3490 0.14806335 0.21582397 0.10667727 0.08671274
## 3491 0.05072162 0.10363527 0.09814869 0.08671274
## 3492 0.14806335 0.43750000 0.10667727 0.08671274
## 3493 0.14806335 0.10363527 0.10667727 0.08671274
## 3494 0.05072162 0.09967090 0.09814869 0.08671274
## 3495 0.14806335 0.09293746 0.09814869 0.08671274
## 3496 0.05072162 0.06243174 0.10667727 0.08671274
## 3497 0.05072162 0.09967090 0.10667727 0.08671274
## 3498 0.14806335 0.10363527 0.10667727 0.08671274
## 3499 0.14806335 0.10363527 0.10667727 0.08671274
## 3500 0.14806335 0.10363527 0.10667727 0.08671274
## 3501 0.05072162 0.06243174 0.10667727 0.08671274
## 3502 0.14806335 0.21582397 0.10667727 0.08671274
## 3503 0.05072162 0.06243174 0.10667727 0.08671274
## 3504 0.14806335 0.21582397 0.10667727 0.08671274
## 3505 0.14806335 0.09293746 0.10667727 0.08671274
## 3506 0.05072162 0.06243174 0.10667727 0.08671274
## 3507 0.14806335 0.09932349 0.10667727 0.08671274
## 3508 0.14806335 0.09293746 0.10667727 0.08671274
## 3509 0.05072162 0.06243174 0.10667727 0.08671274
## 3510 0.14806335 0.10363527 0.09814869 0.08671274
## 3511 0.14806335 0.06243174 0.09814869 0.08671274
## 3512 0.14806335 0.06243174 0.10667727 0.08671274
## 3513 0.14806335 0.06243174 0.10667727 0.08671274
## 3514 0.14806335 0.45296167 0.10667727 0.08671274
## 3515 0.14806335 0.51535088 0.10667727 0.08671274
## 3516 0.14806335 0.10363527 0.10667727 0.08671274
## 3517 0.05072162 0.09293746 0.10667727 0.08671274
## 3518 0.05072162 0.09293746 0.09814869 0.08671274
## 3519 0.05072162 0.09932349 0.10667727 0.08671274
## 3520 0.05072162 0.06243174 0.10667727 0.08671274
## 3521 0.05072162 0.06243174 0.09814869 0.08671274
## 3522 0.05072162 0.06243174 0.10667727 0.08671274
## 3523 0.05072162 0.09967090 0.09814869 0.08671274
## 3524 0.05072162 0.06243174 0.10667727 0.08671274
## 3525 0.14806335 0.09293746 0.09814869 0.08671274
## 3526 0.05072162 0.06243174 0.09814869 0.08671274
## 3527 0.14806335 0.09293746 0.10667727 0.08671274
## 3528 0.14806335 0.21582397 0.10667727 0.08671274
## 3529 0.05072162 0.09293746 0.10667727 0.08671274
## 3530 0.14806335 0.10363527 0.10667727 0.08671274
## 3531 0.05072162 0.06243174 0.10667727 0.08671274
## 3532 0.14806335 0.09293746 0.10667727 0.08671274
## 3533 0.05072162 0.06243174 0.10667727 0.08671274
## 3534 0.05072162 0.43750000 0.10667727 0.08671274
## 3535 0.05072162 0.09967090 0.10667727 0.08671274
## 3536 0.05072162 0.06243174 0.10667727 0.08671274
## 3537 0.05072162 0.06243174 0.10667727 0.08671274
## 3538 0.05072162 0.06243174 0.09814869 0.08671274
## 3539 0.14806335 0.10363527 0.09814869 0.08671274
## 3540 0.14806335 0.06243174 0.10667727 0.08671274
## 3541 0.14806335 0.21582397 0.10667727 0.08671274
## 3542 0.14806335 0.10363527 0.10667727 0.08671274
## 3543 0.05072162 0.09967090 0.09814869 0.08671274
## 3544 0.14806335 0.10363527 0.10667727 0.08671274
## 3545 0.14806335 0.09293746 0.10667727 0.08671274
## 3546 0.14806335 0.45296167 0.10667727 0.08671274
## 3547 0.05072162 0.06243174 0.10667727 0.08671274
## 3548 0.14806335 0.09293746 0.10667727 0.08671274
## 3549 0.14806335 0.09293746 0.10667727 0.08671274
## 3550 0.14806335 0.21582397 0.10667727 0.08671274
## 3551 0.14806335 0.10363527 0.10667727 0.08671274
## 3552 0.05072162 0.06243174 0.10667727 0.08671274
## 3553 0.05072162 0.06243174 0.09814869 0.08671274
## 3554 0.14806335 0.21582397 0.10667727 0.08671274
## 3555 0.14806335 0.10363527 0.10667727 0.08671274
## 3556 0.14806335 0.21582397 0.09814869 0.08671274
## 3557 0.14806335 0.06243174 0.09814869 0.08671274
## 3558 0.05072162 0.09967090 0.10667727 0.08671274
## 3559 0.05072162 0.06243174 0.10667727 0.08671274
## 3560 0.14806335 0.06243174 0.09814869 0.08671274
## 3561 0.14806335 0.21582397 0.10667727 0.08671274
## 3562 0.05072162 0.06243174 0.10667727 0.08671274
## 3563 0.14806335 0.09932349 0.10667727 0.08671274
## 3564 0.14806335 0.10363527 0.10667727 0.08671274
## 3565 0.14806335 0.06243174 0.10667727 0.08671274
## 3566 0.14806335 0.09932349 0.10667727 0.08671274
## 3567 0.05072162 0.06243174 0.10667727 0.08671274
## 3568 0.14806335 0.21582397 0.10667727 0.08671274
## 3569 0.05072162 0.09967090 0.10667727 0.08671274
## 3570 0.05072162 0.09967090 0.09814869 0.08671274
## 3571 0.05072162 0.09293746 0.10667727 0.08671274
## 3572 0.05072162 0.09293746 0.09814869 0.08671274
## 3573 0.14806335 0.09293746 0.10667727 0.08671274
## 3574 0.14806335 0.10363527 0.10667727 0.08671274
## 3575 0.14806335 0.09293746 0.10667727 0.08671274
## 3576 0.14806335 0.10363527 0.10667727 0.08671274
## 3577 0.14806335 0.10363527 0.10667727 0.08671274
## 3578 0.05072162 0.06243174 0.10667727 0.08671274
## 3579 0.14806335 0.09932349 0.10667727 0.08671274
## 3580 0.14806335 0.09932349 0.09814869 0.08671274
## 3581 0.14806335 0.21582397 0.10667727 0.08671274
## 3582 0.14806335 0.10363527 0.10667727 0.08671274
## 3583 0.05072162 0.06243174 0.10667727 0.08671274
## 3584 0.05072162 0.06243174 0.10667727 0.08671274
## 3585 0.05072162 0.10363527 0.10667727 0.08671274
## 3586 0.05072162 0.06243174 0.12152375 0.08671274
## 3587 0.05072162 0.06243174 0.10667727 0.08671274
## 3588 0.14806335 0.09293746 0.10667727 0.08671274
## 3589 0.14806335 0.21582397 0.10667727 0.08671274
## 3590 0.14806335 0.10363527 0.09814869 0.08671274
## 3591 0.05072162 0.06243174 0.10667727 0.08671274
## 3592 0.14806335 0.21582397 0.10667727 0.08671274
## 3593 0.14806335 0.10363527 0.09814869 0.08671274
## 3594 0.05072162 0.09967090 0.10667727 0.08671274
## 3595 0.05072162 0.06243174 0.10667727 0.08671274
## 3596 0.14806335 0.09932349 0.10667727 0.08671274
## 3597 0.14806335 0.51535088 0.10667727 0.08671274
## 3598 0.14806335 0.21582397 0.10667727 0.08671274
## 3599 0.05072162 0.09967090 0.10667727 0.08671274
## 3600 0.14806335 0.21582397 0.10667727 0.08671274
## 3601 0.14806335 0.10363527 0.10667727 0.08671274
## 3602 0.05072162 0.09967090 0.10667727 0.08671274
## 3603 0.05072162 0.09967090 0.10667727 0.08671274
## 3604 0.14806335 0.09293746 0.09814869 0.08671274
## 3605 0.14806335 0.10363527 0.10667727 0.08671274
## 3606 0.14806335 0.09293746 0.10667727 0.08671274
## 3607 0.14806335 0.21582397 0.10667727 0.08671274
## 3608 0.05072162 0.06243174 0.10667727 0.08671274
## 3609 0.14806335 0.09932349 0.09814869 0.08671274
## 3610 0.14806335 0.10363527 0.10667727 0.08671274
## 3611 0.05072162 0.06243174 0.10667727 0.08671274
## 3612 0.05072162 0.09967090 0.10667727 0.08671274
## 3613 0.14806335 0.21582397 0.10667727 0.08671274
## 3614 0.14806335 0.06243174 0.10667727 0.08671274
## 3615 0.14806335 0.10363527 0.10667727 0.08671274
## 3616 0.14806335 0.10363527 0.10667727 0.08671274
## 3617 0.05072162 0.06243174 0.09814869 0.08671274
## 3618 0.05072162 0.06243174 0.09814869 0.08671274
## 3619 0.05072162 0.06243174 0.10667727 0.08671274
## 3620 0.14806335 0.06243174 0.10667727 0.08671274
## 3621 0.14806335 0.06243174 0.10667727 0.08671274
## 3622 0.05072162 0.06243174 0.10667727 0.08671274
## 3623 0.14806335 0.06243174 0.10667727 0.08671274
## 3624 0.05072162 0.09967090 0.10667727 0.08671274
## 3625 0.14806335 0.09932349 0.12152375 0.08671274
## 3626 0.05072162 0.06243174 0.10667727 0.08671274
## 3627 0.05072162 0.10363527 0.10667727 0.08671274
## 3628 0.14806335 0.06243174 0.10667727 0.08671274
## 3629 0.14806335 0.43750000 0.10667727 0.08671274
## 3630 0.05072162 0.09293746 0.10667727 0.08671274
## 3631 0.14806335 0.09293746 0.10667727 0.08671274
## 3632 0.05072162 0.09967090 0.12152375 0.08671274
## 3633 0.14806335 0.09293746 0.10667727 0.08671274
## 3634 0.14806335 0.09293746 0.10667727 0.08671274
## 3635 0.14806335 0.09293746 0.10667727 0.08671274
## 3636 0.05072162 0.06243174 0.10667727 0.08671274
## 3637 0.14806335 0.09932349 0.10667727 0.08671274
## 3638 0.14806335 0.06243174 0.10667727 0.08671274
## 3639 0.14806335 0.09932349 0.09814869 0.08671274
## 3640 0.14806335 0.21582397 0.10667727 0.08671274
## 3641 0.05072162 0.09967090 0.10667727 0.08671274
## 3642 0.14806335 0.10363527 0.09814869 0.08671274
## 3643 0.05072162 0.06243174 0.10667727 0.08671274
## 3644 0.05072162 0.06243174 0.10667727 0.08671274
## 3645 0.05072162 0.09967090 0.10667727 0.08671274
## 3646 0.14806335 0.21582397 0.10667727 0.08671274
## 3647 0.14806335 0.21582397 0.10667727 0.08671274
## 3648 0.14806335 0.10363527 0.10667727 0.08671274
## 3649 0.14806335 0.09932349 0.10667727 0.08671274
## 3650 0.14806335 0.10363527 0.10667727 0.08671274
## 3651 0.14806335 0.51535088 0.10667727 0.08671274
## 3652 0.14806335 0.09293746 0.10667727 0.08671274
## 3653 0.05072162 0.09967090 0.10667727 0.08671274
## 3654 0.05072162 0.06243174 0.12152375 0.08671274
## 3655 0.05072162 0.06243174 0.10667727 0.08671274
## 3656 0.14806335 0.09293746 0.10667727 0.08671274
## 3657 0.05072162 0.09967090 0.10667727 0.08671274
## 3658 0.05072162 0.09967090 0.10667727 0.08671274
## 3659 0.05072162 0.06243174 0.10667727 0.08671274
## 3660 0.05072162 0.06243174 0.10667727 0.08671274
## 3661 0.05072162 0.09967090 0.10667727 0.08671274
## 3662 0.05072162 0.06243174 0.10667727 0.08671274
## 3663 0.14806335 0.09293746 0.10667727 0.08671274
## 3664 0.14806335 0.09932349 0.12152375 0.08671274
## 3665 0.05072162 0.06243174 0.10667727 0.08671274
## 3666 0.14806335 0.10363527 0.10667727 0.08671274
## 3667 0.05072162 0.09293746 0.10667727 0.08671274
## 3668 0.14806335 0.06243174 0.10667727 0.08671274
## 3669 0.05072162 0.06243174 0.10667727 0.08671274
## 3670 0.14806335 0.06243174 0.10667727 0.08671274
## 3671 0.14806335 0.10363527 0.10667727 0.08671274
## 3672 0.14806335 0.21582397 0.10667727 0.08671274
## 3673 0.14806335 0.21582397 0.10667727 0.08671274
## 3674 0.05072162 0.09967090 0.10667727 0.08671274
## 3675 0.14806335 0.10363527 0.10667727 0.08671274
## 3676 0.05072162 0.06243174 0.10667727 0.08671274
## 3677 0.14806335 0.09293746 0.10667727 0.08671274
## 3678 0.14806335 0.10363527 0.10667727 0.08671274
## 3679 0.05072162 0.09967090 0.10667727 0.08671274
## 3680 0.05072162 0.09967090 0.10667727 0.08671274
## 3681 0.14806335 0.10363527 0.09814869 0.08671274
## 3682 0.05072162 0.09967090 0.10667727 0.08671274
## 3683 0.14806335 0.10363527 0.10667727 0.08671274
## 3684 0.14806335 0.06243174 0.10667727 0.08671274
## 3685 0.05072162 0.09967090 0.09814869 0.08671274
## 3686 0.14806335 0.06243174 0.10667727 0.08671274
## 3687 0.05072162 0.09967090 0.10667727 0.08671274
## 3688 0.14806335 0.10363527 0.10667727 0.08671274
## 3689 0.14806335 0.09293746 0.10667727 0.08671274
## 3690 0.14806335 0.21582397 0.10667727 0.08671274
## 3691 0.14806335 0.21582397 0.10667727 0.08671274
## 3692 0.14806335 0.09293746 0.10667727 0.08671274
## 3693 0.14806335 0.10363527 0.10667727 0.08671274
## 3694 0.14806335 0.10363527 0.10667727 0.08671274
## 3695 0.14806335 0.09293746 0.09814869 0.08671274
## 3696 0.05072162 0.06243174 0.10667727 0.08671274
## 3697 0.14806335 0.10363527 0.10667727 0.08671274
## 3698 0.05072162 0.06243174 0.10667727 0.08671274
## 3699 0.14806335 0.21582397 0.10667727 0.08671274
## 3700 0.14806335 0.10363527 0.10667727 0.08671274
## 3701 0.05072162 0.09967090 0.10667727 0.08671274
## 3702 0.05072162 0.09967090 0.10667727 0.08671274
## 3703 0.14806335 0.10363527 0.10667727 0.08671274
## 3704 0.14806335 0.21582397 0.10667727 0.08671274
## 3705 0.05072162 0.09967090 0.10667727 0.08671274
## 3706 0.14806335 0.09293746 0.10667727 0.08671274
## 3707 0.14806335 0.06243174 0.10667727 0.08671274
## 3708 0.05072162 0.09967090 0.10667727 0.08671274
## 3709 0.14806335 0.09293746 0.10667727 0.08671274
## 3710 0.14806335 0.21582397 0.10667727 0.08671274
## 3711 0.14806335 0.10363527 0.10667727 0.08671274
## 3712 0.14806335 0.09293746 0.12152375 0.08671274
## 3713 0.05072162 0.09967090 0.10667727 0.08671274
## 3714 0.14806335 0.09932349 0.10667727 0.08671274
## 3715 0.05072162 0.09967090 0.10667727 0.08671274
## 3716 0.05072162 0.06243174 0.10667727 0.08671274
## 3717 0.05072162 0.06243174 0.10667727 0.08671274
## 3718 0.05072162 0.09967090 0.09814869 0.08671274
## 3719 0.05072162 0.06243174 0.09814869 0.08671274
## 3720 0.05072162 0.06243174 0.09814869 0.08671274
## 3721 0.14806335 0.10363527 0.10667727 0.08671274
## 3722 0.14806335 0.09293746 0.09814869 0.08671274
## 3723 0.05072162 0.06243174 0.10667727 0.08671274
## 3724 0.05072162 0.09967090 0.10667727 0.08671274
## 3725 0.14806335 0.10363527 0.10667727 0.08671274
## 3726 0.05072162 0.09967090 0.10667727 0.08671274
## 3727 0.05072162 0.06243174 0.10667727 0.08671274
## 3728 0.14806335 0.21582397 0.10667727 0.08671274
## 3729 0.14806335 0.06243174 0.10667727 0.08671274
## 3730 0.05072162 0.06243174 0.10667727 0.08671274
## 3731 0.14806335 0.09293746 0.10667727 0.08671274
## 3732 0.05072162 0.09293746 0.10667727 0.08671274
## 3733 0.05072162 0.09967090 0.10667727 0.08671274
## 3734 0.14806335 0.21582397 0.10667727 0.08671274
## 3735 0.14806335 0.06243174 0.10667727 0.08671274
## 3736 0.14806335 0.10363527 0.09814869 0.08671274
## 3737 0.14806335 0.09932349 0.10667727 0.08671274
## 3738 0.05072162 0.09967090 0.10667727 0.08671274
## 3739 0.14806335 0.10363527 0.10667727 0.08671274
## 3740 0.14806335 0.10363527 0.10667727 0.08671274
## 3741 0.14806335 0.10363527 0.10667727 0.08671274
## 3742 0.14806335 0.09967090 0.10667727 0.08671274
## 3743 0.05072162 0.09967090 0.10667727 0.08671274
## 3744 0.14806335 0.10363527 0.09814869 0.08671274
## 3745 0.05072162 0.09967090 0.10667727 0.08671274
## 3746 0.14806335 0.09293746 0.10667727 0.08671274
## 3747 0.05072162 0.06243174 0.10667727 0.08671274
## 3748 0.14806335 0.06243174 0.10667727 0.08671274
## 3749 0.14806335 0.09293746 0.09814869 0.08671274
## 3750 0.14806335 0.10363527 0.09814869 0.08671274
## 3751 0.05072162 0.06243174 0.10667727 0.08671274
## 3752 0.14806335 0.10363527 0.10667727 0.08671274
## 3753 0.14806335 0.10363527 0.10667727 0.08671274
## 3754 0.05072162 0.06243174 0.10667727 0.08671274
## 3755 0.14806335 0.09932349 0.10667727 0.08671274
## 3756 0.05072162 0.06243174 0.10667727 0.08671274
## 3757 0.14806335 0.06243174 0.09814869 0.08671274
## 3758 0.14806335 0.10363527 0.10667727 0.08671274
## 3759 0.14806335 0.10363527 0.10667727 0.08671274
## 3760 0.14806335 0.09293746 0.12152375 0.08671274
## 3761 0.14806335 0.21582397 0.10667727 0.08671274
## 3762 0.14806335 0.09932349 0.10667727 0.08671274
## 3763 0.14806335 0.21582397 0.10667727 0.08671274
## 3764 0.05072162 0.06243174 0.09814869 0.08671274
## 3765 0.05072162 0.09967090 0.10667727 0.08671274
## 3766 0.14806335 0.10363527 0.10667727 0.08671274
## 3767 0.05072162 0.09932349 0.10667727 0.08671274
## 3768 0.14806335 0.10363527 0.10667727 0.08671274
## 3769 0.14806335 0.06243174 0.10667727 0.08671274
## 3770 0.14806335 0.09293746 0.09814869 0.08671274
## 3771 0.14806335 0.09967090 0.10667727 0.08671274
## 3772 0.14806335 0.43750000 0.10667727 0.08671274
## 3773 0.05072162 0.09967090 0.10667727 0.08671274
## 3774 0.14806335 0.10363527 0.10667727 0.08671274
## 3775 0.05072162 0.09967090 0.10667727 0.08671274
## 3776 0.14806335 0.10363527 0.10667727 0.08671274
## 3777 0.05072162 0.06243174 0.10667727 0.08671274
## 3778 0.14806335 0.09293746 0.09814869 0.08671274
## 3779 0.05072162 0.09967090 0.10667727 0.08671274
## 3780 0.05072162 0.09967090 0.10667727 0.08671274
## 3781 0.05072162 0.06243174 0.10667727 0.08671274
## 3782 0.14806335 0.09293746 0.10667727 0.08671274
## 3783 0.05072162 0.09967090 0.10667727 0.08671274
## 3784 0.14806335 0.06243174 0.10667727 0.08671274
## 3785 0.05072162 0.06243174 0.10667727 0.08671274
## 3786 0.05072162 0.09967090 0.09814869 0.08671274
## 3787 0.14806335 0.06243174 0.10667727 0.08671274
## 3788 0.05072162 0.06243174 0.10667727 0.08671274
## 3789 0.14806335 0.10363527 0.10667727 0.08671274
## 3790 0.05072162 0.10363527 0.10667727 0.08671274
## 3791 0.05072162 0.09967090 0.10667727 0.08671274
## 3792 0.05072162 0.06243174 0.10667727 0.08671274
## 3793 0.14806335 0.10363527 0.10667727 0.08671274
## 3794 0.14806335 0.06243174 0.10667727 0.08671274
## 3795 0.05072162 0.09967090 0.10667727 0.08671274
## 3796 0.05072162 0.06243174 0.10667727 0.08671274
## 3797 0.14806335 0.06243174 0.10667727 0.08671274
## 3798 0.05072162 0.06243174 0.10667727 0.08671274
## 3799 0.05072162 0.09932349 0.09814869 0.08671274
## 3800 0.14806335 0.06243174 0.10667727 0.08671274
## 3801 0.14806335 0.09293746 0.09814869 0.08671274
## 3802 0.14806335 0.09932349 0.10667727 0.08671274
## 3803 0.14806335 0.09293746 0.10667727 0.08671274
## 3804 0.14806335 0.21582397 0.10667727 0.08671274
## 3805 0.05072162 0.09967090 0.10667727 0.08671274
## 3806 0.05072162 0.06243174 0.10667727 0.08671274
## 3807 0.14806335 0.06243174 0.10667727 0.08671274
## 3808 0.05072162 0.06243174 0.09814869 0.08671274
## 3809 0.05072162 0.06243174 0.09814869 0.08671274
## 3810 0.14806335 0.10363527 0.10667727 0.08671274
## 3811 0.05072162 0.06243174 0.10667727 0.08671274
## 3812 0.05072162 0.09967090 0.09814869 0.08671274
## 3813 0.14806335 0.09293746 0.10667727 0.08671274
## 3814 0.14806335 0.21582397 0.10667727 0.08671274
## 3815 0.05072162 0.09932349 0.10667727 0.08671274
## 3816 0.14806335 0.21582397 0.09814869 0.08671274
## 3817 0.14806335 0.10363527 0.09814869 0.08671274
## 3818 0.14806335 0.10363527 0.10667727 0.08671274
## 3819 0.14806335 0.09293746 0.10667727 0.08671274
## 3820 0.14806335 0.09932349 0.10667727 0.08671274
## 3821 0.14806335 0.10363527 0.10667727 0.08671274
## 3822 0.14806335 0.09932349 0.10667727 0.08671274
## 3823 0.14806335 0.06243174 0.10667727 0.08671274
## 3824 0.14806335 0.09293746 0.10667727 0.08671274
## 3825 0.05072162 0.09967090 0.10667727 0.08671274
## 3826 0.14806335 0.09932349 0.10667727 0.08671274
## 3827 0.14806335 0.06243174 0.10667727 0.08671274
## 3828 0.14806335 0.09932349 0.10667727 0.08671274
## 3829 0.05072162 0.09967090 0.10667727 0.08671274
## 3830 0.05072162 0.06243174 0.10667727 0.08671274
## 3831 0.05072162 0.09967090 0.09814869 0.08671274
## 3832 0.14806335 0.09293746 0.10667727 0.08671274
## 3833 0.14806335 0.10363527 0.10667727 0.08671274
## 3834 0.14806335 0.09293746 0.10667727 0.08671274
## 3835 0.14806335 0.21582397 0.10667727 0.08671274
## 3836 0.14806335 0.06243174 0.10667727 0.08671274
## 3837 0.14806335 0.06243174 0.10667727 0.08671274
## 3838 0.05072162 0.09967090 0.10667727 0.08671274
## 3839 0.14806335 0.09293746 0.09814869 0.08671274
## 3840 0.14806335 0.09293746 0.10667727 0.08671274
## 3841 0.14806335 0.10363527 0.10667727 0.08671274
## 3842 0.05072162 0.06243174 0.10667727 0.08671274
## 3843 0.05072162 0.09967090 0.10667727 0.08671274
## 3844 0.14806335 0.10363527 0.09814869 0.08671274
## 3845 0.14806335 0.09293746 0.10667727 0.08671274
## 3846 0.05072162 0.09967090 0.10667727 0.08671274
## 3847 0.14806335 0.09293746 0.09814869 0.08671274
## 3848 0.05072162 0.06243174 0.10667727 0.08671274
## 3849 0.14806335 0.09293746 0.11410336 0.08671274
## 3850 0.14806335 0.10363527 0.10667727 0.08671274
## 3851 0.05072162 0.06243174 0.10667727 0.08671274
## 3852 0.14806335 0.09932349 0.09814869 0.08671274
## 3853 0.14806335 0.06243174 0.10667727 0.08671274
## 3854 0.05072162 0.10363527 0.10667727 0.08671274
## 3855 0.05072162 0.09967090 0.10667727 0.08671274
## 3856 0.05072162 0.06243174 0.10667727 0.08671274
## 3857 0.05072162 0.06243174 0.10667727 0.08671274
## 3858 0.14806335 0.21582397 0.10667727 0.08671274
## 3859 0.14806335 0.10363527 0.10667727 0.08671274
## 3860 0.14806335 0.21582397 0.10667727 0.08671274
## 3861 0.05072162 0.09967090 0.10667727 0.08671274
## 3862 0.05072162 0.06243174 0.10667727 0.08671274
## 3863 0.05072162 0.09967090 0.09814869 0.08671274
## 3864 0.14806335 0.10363527 0.10667727 0.08671274
## 3865 0.05072162 0.09967090 0.10667727 0.08671274
## 3866 0.14806335 0.10363527 0.10667727 0.08671274
## 3867 0.14806335 0.45296167 0.10667727 0.08671274
## 3868 0.14806335 0.10363527 0.10667727 0.08671274
## 3869 0.05072162 0.09967090 0.10667727 0.08671274
## 3870 0.05072162 0.06243174 0.10667727 0.08671274
## 3871 0.05072162 0.06243174 0.10667727 0.08671274
## 3872 0.14806335 0.21582397 0.09814869 0.08671274
## 3873 0.05072162 0.09967090 0.10667727 0.08671274
## 3874 0.14806335 0.09293746 0.10667727 0.08671274
## 3875 0.14806335 0.09932349 0.10667727 0.08671274
## 3876 0.05072162 0.09967090 0.10667727 0.08671274
## 3877 0.14806335 0.06243174 0.10667727 0.08671274
## 3878 0.05072162 0.06243174 0.11410336 0.08671274
## 3879 0.05072162 0.06243174 0.10667727 0.08671274
## 3880 0.05072162 0.09967090 0.10667727 0.08671274
## 3881 0.05072162 0.06243174 0.10667727 0.08671274
## 3882 0.14806335 0.10363527 0.10667727 0.08671274
## 3883 0.14806335 0.09293746 0.09814869 0.08671274
## 3884 0.14806335 0.09293746 0.10667727 0.08671274
## 3885 0.14806335 0.09293746 0.10667727 0.08671274
## 3886 0.14806335 0.21582397 0.10667727 0.08671274
## 3887 0.05072162 0.06243174 0.10667727 0.08671274
## 3888 0.14806335 0.09293746 0.10667727 0.08671274
## 3889 0.14806335 0.21582397 0.09814869 0.08671274
## 3890 0.14806335 0.21582397 0.10667727 0.08671274
## 3891 0.14806335 0.06243174 0.10667727 0.08671274
## 3892 0.05072162 0.09967090 0.10667727 0.08671274
## 3893 0.05072162 0.06243174 0.10667727 0.08671274
## 3894 0.14806335 0.10363527 0.10667727 0.08671274
## 3895 0.05072162 0.06243174 0.09814869 0.08671274
## 3896 0.05072162 0.06243174 0.10667727 0.08671274
## 3897 0.05072162 0.10363527 0.09814869 0.08671274
## 3898 0.05072162 0.09293746 0.10667727 0.08671274
## 3899 0.14806335 0.09932349 0.10667727 0.08671274
## 3900 0.05072162 0.06243174 0.09814869 0.08671274
## 3901 0.14806335 0.09293746 0.10667727 0.08671274
## 3902 0.14806335 0.10363527 0.10667727 0.08671274
## 3903 0.05072162 0.09293746 0.10667727 0.08671274
## 3904 0.05072162 0.06243174 0.10667727 0.08671274
## 3905 0.14806335 0.10363527 0.10667727 0.08671274
## 3906 0.14806335 0.10363527 0.10667727 0.08671274
## 3907 0.14806335 0.09293746 0.10667727 0.08671274
## 3908 0.05072162 0.06243174 0.09814869 0.08671274
## 3909 0.05072162 0.43750000 0.10667727 0.08671274
## 3910 0.14806335 0.06243174 0.10667727 0.08671274
## 3911 0.14806335 0.09932349 0.10667727 0.08671274
## 3912 0.14806335 0.09293746 0.10667727 0.08671274
## 3913 0.14806335 0.10363527 0.10667727 0.08671274
## 3914 0.14806335 0.09932349 0.10667727 0.08671274
## 3915 0.05072162 0.09967090 0.10667727 0.08671274
## 3916 0.14806335 0.06243174 0.11410336 0.08671274
## 3917 0.14806335 0.09293746 0.10667727 0.08671274
## 3918 0.14806335 0.09967090 0.10667727 0.08671274
## 3919 0.05072162 0.06243174 0.10667727 0.08671274
## 3920 0.14806335 0.10363527 0.10667727 0.08671274
## 3921 0.14806335 0.09293746 0.10667727 0.08671274
## 3922 0.05072162 0.06243174 0.10667727 0.08671274
## 3923 0.05072162 0.09967090 0.09814869 0.08671274
## 3924 0.14806335 0.06243174 0.10667727 0.08671274
## 3925 0.05072162 0.09967090 0.10667727 0.08671274
## 3926 0.05072162 0.10363527 0.10667727 0.08671274
## 3927 0.14806335 0.10363527 0.10667727 0.08671274
## 3928 0.14806335 0.10363527 0.10667727 0.08671274
## 3929 0.14806335 0.21582397 0.10667727 0.08671274
## 3930 0.14806335 0.06243174 0.10667727 0.08671274
## 3931 0.05072162 0.06243174 0.10667727 0.08671274
## 3932 0.14806335 0.09293746 0.10667727 0.08671274
## 3933 0.05072162 0.09967090 0.09814869 0.08671274
## 3934 0.05072162 0.09967090 0.10667727 0.08671274
## 3935 0.05072162 0.06243174 0.10667727 0.08671274
## 3936 0.05072162 0.09293746 0.10667727 0.08671274
## 3937 0.14806335 0.10363527 0.10667727 0.08671274
## 3938 0.05072162 0.06243174 0.10667727 0.08671274
## 3939 0.14806335 0.21582397 0.10667727 0.08671274
## 3940 0.14806335 0.06243174 0.10667727 0.08671274
## 3941 0.14806335 0.09293746 0.10667727 0.08671274
## 3942 0.05072162 0.06243174 0.10667727 0.08671274
## 3943 0.14806335 0.10363527 0.10667727 0.08671274
## 3944 0.14806335 0.10363527 0.11410336 0.08671274
## 3945 0.14806335 0.10363527 0.10667727 0.08671274
## 3946 0.05072162 0.06243174 0.10667727 0.08671274
## 3947 0.14806335 0.09293746 0.10667727 0.08671274
## 3948 0.05072162 0.06243174 0.10667727 0.08671274
## 3949 0.14806335 0.10363527 0.10667727 0.08671274
## 3950 0.14806335 0.06243174 0.09814869 0.08671274
## 3951 0.14806335 0.09932349 0.10667727 0.08671274
## 3952 0.14806335 0.09932349 0.10667727 0.08671274
## 3953 0.14806335 0.10363527 0.10667727 0.08671274
## 3954 0.14806335 0.10363527 0.10667727 0.08671274
## 3955 0.05072162 0.06243174 0.10667727 0.08671274
## 3956 0.05072162 0.09967090 0.10667727 0.08671274
## 3957 0.14806335 0.09293746 0.10667727 0.08671274
## 3958 0.14806335 0.21582397 0.10667727 0.08671274
## 3959 0.05072162 0.09967090 0.10667727 0.08671274
## 3960 0.05072162 0.09967090 0.11410336 0.08671274
## 3961 0.14806335 0.09932349 0.10667727 0.08671274
## 3962 0.05072162 0.09967090 0.10667727 0.08671274
## 3963 0.14806335 0.09293746 0.10667727 0.08671274
## 3964 0.14806335 0.10363527 0.10667727 0.08671274
## 3965 0.05072162 0.06243174 0.09814869 0.08671274
## 3966 0.14806335 0.10363527 0.10667727 0.08671274
## 3967 0.14806335 0.06243174 0.09814869 0.08671274
## 3968 0.14806335 0.51535088 0.10667727 0.08671274
## 3969 0.05072162 0.09967090 0.10667727 0.08671274
## 3970 0.14806335 0.10363527 0.10667727 0.08671274
## 3971 0.14806335 0.09932349 0.10667727 0.08671274
## 3972 0.14806335 0.10363527 0.10667727 0.08671274
## 3973 0.05072162 0.09967090 0.10667727 0.08671274
## 3974 0.05072162 0.06243174 0.10667727 0.08671274
## 3975 0.14806335 0.21582397 0.10667727 0.08671274
## 3976 0.05072162 0.06243174 0.10667727 0.08671274
## 3977 0.05072162 0.09967090 0.10667727 0.08671274
## 3978 0.05072162 0.09967090 0.10667727 0.08671274
## 3979 0.05072162 0.09967090 0.10667727 0.08671274
## 3980 0.14806335 0.09293746 0.09814869 0.08671274
## 3981 0.14806335 0.10363527 0.10667727 0.08671274
## 3982 0.14806335 0.09932349 0.10667727 0.08671274
## 3983 0.14806335 0.09293746 0.10667727 0.08671274
## 3984 0.14806335 0.21582397 0.10667727 0.08671274
## 3985 0.05072162 0.06243174 0.10667727 0.08671274
## 3986 0.05072162 0.06243174 0.10667727 0.08671274
## 3987 0.14806335 0.09293746 0.10667727 0.08671274
## 3988 0.05072162 0.09967090 0.10667727 0.08671274
## 3989 0.14806335 0.06243174 0.10667727 0.08671274
## 3990 0.14806335 0.10363527 0.10667727 0.08671274
## 3991 0.14806335 0.09967090 0.10667727 0.08671274
## 3992 0.14806335 0.10363527 0.10667727 0.08671274
## 3993 0.05072162 0.43750000 0.09814869 0.08671274
## 3994 0.05072162 0.09967090 0.10667727 0.08671274
## 3995 0.14806335 0.21582397 0.10667727 0.08671274
## 3996 0.05072162 0.06243174 0.10667727 0.08671274
## 3997 0.05072162 0.06243174 0.09814869 0.08671274
## 3998 0.14806335 0.10363527 0.10667727 0.08671274
## 3999 0.14806335 0.06243174 0.09814869 0.08671274
## 4000 0.14806335 0.09932349 0.10667727 0.08671274
## 4001 0.14806335 0.21582397 0.10667727 0.08671274
## 4002 0.14806335 0.51535088 0.09814869 0.08671274
## 4003 0.14806335 0.09293746 0.10667727 0.08671274
## 4004 0.14806335 0.10363527 0.09814869 0.08671274
## 4005 0.14806335 0.06243174 0.10667727 0.08671274
## 4006 0.14806335 0.51535088 0.09814869 0.08671274
## 4007 0.14806335 0.21582397 0.10667727 0.08671274
## 4008 0.14806335 0.21582397 0.10667727 0.08671274
## 4009 0.05072162 0.06243174 0.10667727 0.08671274
## 4010 0.14806335 0.21582397 0.10667727 0.08671274
## 4011 0.14806335 0.09293746 0.10667727 0.08671274
## 4012 0.14806335 0.21582397 0.10667727 0.08671274
## 4013 0.14806335 0.06243174 0.09814869 0.08671274
## 4014 0.05072162 0.06243174 0.10667727 0.08671274
## 4015 0.05072162 0.09967090 0.10667727 0.08671274
## 4016 0.14806335 0.10363527 0.10667727 0.08671274
## 4017 0.05072162 0.09967090 0.10667727 0.08671274
## 4018 0.14806335 0.06243174 0.10667727 0.08671274
## 4019 0.05072162 0.09967090 0.10667727 0.08671274
## 4020 0.05072162 0.06243174 0.10667727 0.08671274
## 4021 0.14806335 0.09293746 0.10667727 0.08671274
## 4022 0.05072162 0.09967090 0.10667727 0.08671274
## 4023 0.05072162 0.06243174 0.10667727 0.08671274
## 4024 0.05072162 0.09967090 0.10667727 0.08671274
## 4025 0.05072162 0.06243174 0.10667727 0.08671274
## 4026 0.05072162 0.09967090 0.10667727 0.08671274
## 4027 0.14806335 0.06243174 0.10667727 0.08671274
## 4028 0.05072162 0.09967090 0.10667727 0.08671274
## 4029 0.14806335 0.21582397 0.10667727 0.08671274
## 4030 0.14806335 0.21582397 0.09814869 0.08671274
## 4031 0.14806335 0.09293746 0.10667727 0.08671274
## 4032 0.14806335 0.09293746 0.09814869 0.08671274
## 4033 0.05072162 0.06243174 0.10667727 0.08671274
## 4034 0.14806335 0.09293746 0.10667727 0.08671274
## 4035 0.14806335 0.09293746 0.10667727 0.08671274
## 4036 0.14806335 0.09932349 0.10667727 0.08671274
## 4037 0.05072162 0.06243174 0.10667727 0.08671274
## 4038 0.14806335 0.06243174 0.10667727 0.08671274
## 4039 0.14806335 0.09293746 0.10667727 0.08671274
## 4040 0.05072162 0.06243174 0.10667727 0.08671274
## 4041 0.05072162 0.06243174 0.10667727 0.08671274
## 4042 0.14806335 0.09293746 0.10667727 0.08671274
## 4043 0.14806335 0.10363527 0.10667727 0.08671274
## 4044 0.05072162 0.09293746 0.09814869 0.08671274
## 4045 0.14806335 0.09932349 0.10667727 0.08671274
## 4046 0.05072162 0.09967090 0.10667727 0.08671274
## 4047 0.14806335 0.51535088 0.10667727 0.08671274
## 4048 0.14806335 0.06243174 0.10667727 0.08671274
## 4049 0.14806335 0.10363527 0.10667727 0.08671274
## 4050 0.14806335 0.51535088 0.10667727 0.08671274
## 4051 0.05072162 0.09967090 0.10667727 0.08671274
## 4052 0.14806335 0.21582397 0.10667727 0.08671274
## 4053 0.05072162 0.09967090 0.10667727 0.08671274
## 4054 0.05072162 0.09967090 0.10667727 0.08671274
## 4055 0.14806335 0.06243174 0.10667727 0.08671274
## 4056 0.05072162 0.06243174 0.10667727 0.08671274
## 4057 0.14806335 0.09932349 0.10667727 0.08671274
## 4058 0.05072162 0.09967090 0.09814869 0.08671274
## 4059 0.05072162 0.09967090 0.10667727 0.08671274
## 4060 0.14806335 0.09293746 0.10667727 0.08671274
## 4061 0.05072162 0.09967090 0.09814869 0.08671274
## 4062 0.14806335 0.21582397 0.10667727 0.08671274
## 4063 0.05072162 0.09967090 0.10667727 0.08671274
## 4064 0.05072162 0.06243174 0.10667727 0.08671274
## 4065 0.14806335 0.10363527 0.10667727 0.08671274
## 4066 0.14806335 0.21582397 0.10667727 0.08671274
## 4067 0.05072162 0.09967090 0.10667727 0.08671274
## 4068 0.14806335 0.10363527 0.10667727 0.08671274
## 4069 0.14806335 0.09932349 0.10667727 0.08671274
## 4070 0.14806335 0.10363527 0.10667727 0.08671274
## 4071 0.14806335 0.06243174 0.10667727 0.08671274
## 4072 0.05072162 0.10363527 0.10667727 0.08671274
## 4073 0.14806335 0.09293746 0.10667727 0.08671274
## 4074 0.14806335 0.21582397 0.10667727 0.08671274
## 4075 0.05072162 0.09293746 0.10667727 0.08671274
## 4076 0.05072162 0.09967090 0.10667727 0.08671274
## 4077 0.14806335 0.51535088 0.10667727 0.08671274
## 4078 0.05072162 0.09967090 0.10667727 0.08671274
## 4079 0.14806335 0.06243174 0.09814869 0.08671274
## 4080 0.14806335 0.06243174 0.09814869 0.08671274
## 4081 0.05072162 0.09967090 0.10667727 0.08671274
## 4082 0.14806335 0.09932349 0.10667727 0.08671274
## 4083 0.14806335 0.09932349 0.09814869 0.08671274
## 4084 0.14806335 0.09293746 0.10667727 0.08671274
## 4085 0.05072162 0.06243174 0.10667727 0.08671274
## 4086 0.05072162 0.10363527 0.10667727 0.08671274
## 4087 0.14806335 0.09293746 0.10667727 0.08671274
## 4088 0.14806335 0.09293746 0.10667727 0.08671274
## 4089 0.05072162 0.06243174 0.10667727 0.08671274
## 4090 0.05072162 0.09967090 0.10667727 0.08671274
## 4091 0.05072162 0.09967090 0.09814869 0.08671274
## 4092 0.05072162 0.09967090 0.10667727 0.08671274
## 4093 0.14806335 0.06243174 0.10667727 0.08671274
## 4094 0.05072162 0.09967090 0.10667727 0.08671274
## 4095 0.14806335 0.10363527 0.10667727 0.08671274
## 4096 0.05072162 0.06243174 0.10667727 0.08671274
## 4097 0.14806335 0.09932349 0.10667727 0.08671274
## 4098 0.14806335 0.09932349 0.10667727 0.08671274
## 4099 0.05072162 0.09967090 0.10667727 0.08671274
## 4100 0.14806335 0.10363527 0.09814869 0.08671274
## 4101 0.14806335 0.45296167 0.10667727 0.08671274
## 4102 0.05072162 0.09967090 0.10667727 0.08671274
## 4103 0.05072162 0.06243174 0.10667727 0.08671274
## 4104 0.14806335 0.10363527 0.10667727 0.08671274
## 4105 0.14806335 0.09293746 0.10667727 0.08671274
## 4106 0.05072162 0.06243174 0.10667727 0.08671274
## 4107 0.05072162 0.09967090 0.10667727 0.08671274
## 4108 0.14806335 0.09932349 0.10667727 0.08671274
## 4109 0.14806335 0.10363527 0.10667727 0.08671274
## 4110 0.14806335 0.09932349 0.10667727 0.08671274
## 4111 0.05072162 0.09967090 0.10667727 0.08671274
## 4112 0.05072162 0.09967090 0.10667727 0.08671274
## 4113 0.14806335 0.09932349 0.10667727 0.08671274
## 4114 0.05072162 0.06243174 0.10667727 0.08671274
## 4115 0.14806335 0.51535088 0.10667727 0.08671274
## 4116 0.05072162 0.06243174 0.09814869 0.08671274
## 4117 0.14806335 0.09293746 0.10667727 0.08671274
## 4118 0.05072162 0.09293746 0.10667727 0.08671274
## 4119 0.05072162 0.06243174 0.10667727 0.08671274
## 4120 0.14806335 0.09932349 0.10667727 0.08671274
## 4121 0.14806335 0.21582397 0.10667727 0.08671274
## 4122 0.14806335 0.09293746 0.10667727 0.08671274
## 4123 0.14806335 0.09293746 0.10667727 0.08671274
## 4124 0.05072162 0.06243174 0.10667727 0.08671274
## 4125 0.14806335 0.10363527 0.10667727 0.08671274
## 4126 0.14806335 0.21582397 0.09814869 0.08671274
## 4127 0.14806335 0.10363527 0.10667727 0.08671274
## 4128 0.05072162 0.09967090 0.10667727 0.08671274
## 4129 0.05072162 0.06243174 0.10667727 0.08671274
## 4130 0.14806335 0.10363527 0.10667727 0.08671274
## 4131 0.05072162 0.09967090 0.10667727 0.08671274
## 4132 0.14806335 0.06243174 0.10667727 0.08671274
## 4133 0.05072162 0.09967090 0.10667727 0.08671274
## 4134 0.14806335 0.51535088 0.11410336 0.08671274
## 4135 0.14806335 0.10363527 0.10667727 0.08671274
## 4136 0.14806335 0.21582397 0.10667727 0.08671274
## 4137 0.14806335 0.09293746 0.10667727 0.08671274
## 4138 0.14806335 0.09967090 0.09814869 0.08671274
## 4139 0.05072162 0.06243174 0.10667727 0.08671274
## 4140 0.05072162 0.06243174 0.10667727 0.08671274
## 4141 0.14806335 0.09293746 0.09814869 0.08671274
## 4142 0.14806335 0.09932349 0.10667727 0.08671274
## 4143 0.05072162 0.06243174 0.10667727 0.08671274
## 4144 0.14806335 0.10363527 0.10667727 0.08671274
## 4145 0.05072162 0.06243174 0.10667727 0.08671274
## 4146 0.05072162 0.06243174 0.10667727 0.08671274
## 4147 0.14806335 0.06243174 0.10667727 0.08671274
## 4148 0.05072162 0.09932349 0.10667727 0.08671274
## 4149 0.14806335 0.09293746 0.10667727 0.08671274
## 4150 0.05072162 0.06243174 0.10667727 0.08671274
## 4151 0.14806335 0.06243174 0.10667727 0.08671274
## 4152 0.14806335 0.09293746 0.09814869 0.08671274
## 4153 0.14806335 0.09293746 0.10667727 0.08671274
## 4154 0.14806335 0.09293746 0.10667727 0.08671274
## 4155 0.14806335 0.10363527 0.10667727 0.08671274
## 4156 0.14806335 0.10363527 0.10667727 0.08671274
## 4157 0.14806335 0.09293746 0.10667727 0.08671274
## 4158 0.14806335 0.21582397 0.10667727 0.08671274
## 4159 0.14806335 0.10363527 0.10667727 0.08671274
## 4160 0.05072162 0.06243174 0.10667727 0.08671274
## 4161 0.14806335 0.10363527 0.10667727 0.08671274
## 4162 0.14806335 0.09932349 0.10667727 0.08671274
## 4163 0.14806335 0.10363527 0.10667727 0.08671274
## 4164 0.05072162 0.09967090 0.11410336 0.08671274
## 4165 0.05072162 0.09293746 0.10667727 0.08671274
## 4166 0.14806335 0.10363527 0.10667727 0.08671274
## 4167 0.14806335 0.10363527 0.10667727 0.08671274
## 4168 0.05072162 0.06243174 0.10667727 0.08671274
## 4169 0.05072162 0.09967090 0.10667727 0.08671274
## 4170 0.14806335 0.10363527 0.10667727 0.08671274
## 4171 0.14806335 0.09293746 0.10667727 0.08671274
## 4172 0.05072162 0.09967090 0.10667727 0.08671274
## 4173 0.05072162 0.06243174 0.10667727 0.08671274
## 4174 0.05072162 0.06243174 0.10667727 0.08671274
## 4175 0.14806335 0.21582397 0.10667727 0.08671274
## 4176 0.14806335 0.09293746 0.10667727 0.08671274
## 4177 0.14806335 0.10363527 0.10667727 0.08671274
## 4178 0.05072162 0.09293746 0.10667727 0.08671274
## 4179 0.05072162 0.09967090 0.09814869 0.08671274
## 4180 0.05072162 0.06243174 0.10667727 0.08671274
## 4181 0.05072162 0.06243174 0.10667727 0.08671274
## 4182 0.14806335 0.21582397 0.10667727 0.08671274
## 4183 0.14806335 0.09932349 0.09814869 0.08671274
## 4184 0.05072162 0.06243174 0.10667727 0.08671274
## 4185 0.14806335 0.09293746 0.10667727 0.08671274
## 4186 0.14806335 0.09293746 0.10667727 0.08671274
## 4187 0.14806335 0.10363527 0.10667727 0.08671274
## 4188 0.14806335 0.09932349 0.10667727 0.08671274
## 4189 0.14806335 0.51535088 0.09814869 0.08671274
## 4190 0.14806335 0.06243174 0.11410336 0.08671274
## 4191 0.14806335 0.21582397 0.09814869 0.08671274
## 4192 0.14806335 0.10363527 0.10667727 0.08671274
## 4193 0.05072162 0.09967090 0.09814869 0.08671274
## 4194 0.05072162 0.09967090 0.10667727 0.08671274
## 4195 0.14806335 0.10363527 0.10667727 0.08671274
## 4196 0.05072162 0.21582397 0.10667727 0.08671274
## 4197 0.14806335 0.43750000 0.10667727 0.08671274
## 4198 0.14806335 0.09293746 0.09814869 0.08671274
## 4199 0.14806335 0.09932349 0.10667727 0.08671274
## 4200 0.14806335 0.09932349 0.10667727 0.08671274
## 4201 0.14806335 0.09932349 0.10667727 0.08671274
## 4202 0.14806335 0.21582397 0.10667727 0.08671274
## 4203 0.05072162 0.09293746 0.10667727 0.08671274
## 4204 0.14806335 0.10363527 0.10667727 0.08671274
## 4205 0.14806335 0.09932349 0.09814869 0.08671274
## 4206 0.14806335 0.09932349 0.10667727 0.08671274
## 4207 0.14806335 0.06243174 0.10667727 0.08671274
## 4208 0.05072162 0.06243174 0.10667727 0.08671274
## 4209 0.14806335 0.10363527 0.10667727 0.08671274
## 4210 0.05072162 0.06243174 0.10667727 0.08671274
## 4211 0.14806335 0.09293746 0.10667727 0.08671274
## 4212 0.05072162 0.06243174 0.10667727 0.08671274
## 4213 0.05072162 0.06243174 0.10667727 0.08671274
## 4214 0.14806335 0.51535088 0.10667727 0.08671274
## 4215 0.14806335 0.10363527 0.10667727 0.08671274
## 4216 0.05072162 0.09293746 0.10667727 0.08671274
## 4217 0.14806335 0.06243174 0.10667727 0.08671274
## 4218 0.14806335 0.10363527 0.10667727 0.08671274
## 4219 0.05072162 0.06243174 0.10667727 0.08671274
## 4220 0.05072162 0.09967090 0.10667727 0.08671274
## 4221 0.14806335 0.10363527 0.10667727 0.08671274
## 4222 0.14806335 0.09293746 0.10667727 0.08671274
## 4223 0.05072162 0.06243174 0.10667727 0.08671274
## 4224 0.05072162 0.09967090 0.10667727 0.08671274
## 4225 0.14806335 0.09293746 0.10667727 0.08671274
## 4226 0.14806335 0.45296167 0.10667727 0.08671274
## 4227 0.05072162 0.06243174 0.10667727 0.08671274
## 4228 0.05072162 0.09967090 0.10667727 0.08671274
## 4229 0.05072162 0.09293746 0.10667727 0.08671274
## 4230 0.14806335 0.43750000 0.10667727 0.08671274
## 4231 0.14806335 0.09932349 0.10667727 0.08671274
## 4232 0.14806335 0.10363527 0.10667727 0.08671274
## 4233 0.05072162 0.06243174 0.09814869 0.08671274
## 4234 0.14806335 0.06243174 0.10667727 0.08671274
## 4235 0.14806335 0.09293746 0.09814869 0.08671274
## 4236 0.14806335 0.06243174 0.10667727 0.08671274
## 4237 0.14806335 0.10363527 0.10667727 0.08671274
## 4238 0.14806335 0.09293746 0.10667727 0.08671274
## 4239 0.14806335 0.09293746 0.10667727 0.08671274
## 4240 0.14806335 0.09932349 0.10667727 0.08671274
## 4241 0.14806335 0.09967090 0.09814869 0.08671274
## 4242 0.05072162 0.09967090 0.10667727 0.08671274
## 4243 0.14806335 0.10363527 0.10667727 0.08671274
## 4244 0.14806335 0.10363527 0.10667727 0.08671274
## 4245 0.05072162 0.09967090 0.10667727 0.08671274
## 4246 0.14806335 0.10363527 0.10667727 0.08671274
## 4247 0.05072162 0.09967090 0.10667727 0.08671274
## 4248 0.14806335 0.51535088 0.10667727 0.08671274
## 4249 0.14806335 0.51535088 0.10667727 0.08671274
## 4250 0.05072162 0.09967090 0.10667727 0.08671274
## 4251 0.14806335 0.10363527 0.10667727 0.08671274
## 4252 0.05072162 0.09293746 0.10667727 0.08671274
## 4253 0.14806335 0.51535088 0.10667727 0.08671274
## 4254 0.14806335 0.21582397 0.10667727 0.08671274
## 4255 0.14806335 0.10363527 0.10667727 0.08671274
## 4256 0.14806335 0.09932349 0.10667727 0.08671274
## 4257 0.14806335 0.06243174 0.09814869 0.08671274
## 4258 0.05072162 0.09967090 0.10667727 0.08671274
## 4259 0.14806335 0.09293746 0.09814869 0.08671274
## 4260 0.14806335 0.09293746 0.10667727 0.08671274
## 4261 0.14806335 0.09967090 0.10667727 0.08671274
## 4262 0.14806335 0.10363527 0.10667727 0.08671274
## 4263 0.14806335 0.06243174 0.10667727 0.08671274
## 4264 0.14806335 0.06243174 0.10667727 0.08671274
## 4265 0.14806335 0.10363527 0.10667727 0.08671274
## 4266 0.05072162 0.06243174 0.10667727 0.08671274
## 4267 0.14806335 0.09293746 0.10667727 0.08671274
## 4268 0.14806335 0.09293746 0.09814869 0.08671274
## 4269 0.14806335 0.21582397 0.10667727 0.08671274
## 4270 0.05072162 0.09967090 0.10667727 0.08671274
## 4271 0.14806335 0.21582397 0.10667727 0.08671274
## 4272 0.05072162 0.06243174 0.10667727 0.08671274
## 4273 0.14806335 0.06243174 0.10667727 0.08671274
## 4274 0.14806335 0.21582397 0.10667727 0.08671274
## 4275 0.14806335 0.10363527 0.10667727 0.08671274
## 4276 0.05072162 0.06243174 0.10667727 0.08671274
## 4277 0.14806335 0.10363527 0.10667727 0.08671274
## 4278 0.14806335 0.09932349 0.10667727 0.08671274
## 4279 0.14806335 0.10363527 0.10667727 0.08671274
## 4280 0.05072162 0.06243174 0.09814869 0.08671274
## 4281 0.14806335 0.09293746 0.10667727 0.08671274
## 4282 0.05072162 0.06243174 0.10667727 0.08671274
## 4283 0.05072162 0.06243174 0.10667727 0.08671274
## 4284 0.14806335 0.09932349 0.10667727 0.08671274
## 4285 0.14806335 0.21582397 0.10667727 0.08671274
## 4286 0.05072162 0.09967090 0.10667727 0.08671274
## 4287 0.14806335 0.10363527 0.10667727 0.08671274
## 4288 0.05072162 0.09967090 0.10667727 0.08671274
## 4289 0.05072162 0.06243174 0.10667727 0.08671274
## 4290 0.14806335 0.10363527 0.10667727 0.08671274
## 4291 0.14806335 0.21582397 0.10667727 0.08671274
## 4292 0.05072162 0.06243174 0.10667727 0.08671274
## 4293 0.05072162 0.06243174 0.10667727 0.08671274
## 4294 0.05072162 0.21582397 0.10667727 0.08671274
## 4295 0.14806335 0.51535088 0.10667727 0.08671274
## 4296 0.14806335 0.09932349 0.11410336 0.08671274
## 4297 0.05072162 0.06243174 0.10667727 0.08671274
## 4298 0.14806335 0.51535088 0.09814869 0.08671274
## 4299 0.05072162 0.09967090 0.10667727 0.08671274
## 4300 0.14806335 0.09293746 0.10667727 0.08671274
## 4301 0.14806335 0.10363527 0.10667727 0.08671274
## 4302 0.05072162 0.06243174 0.09814869 0.08671274
## 4303 0.14806335 0.09293746 0.10667727 0.08671274
## 4304 0.14806335 0.10363527 0.10667727 0.08671274
## 4305 0.14806335 0.10363527 0.10667727 0.08671274
## 4306 0.14806335 0.10363527 0.10667727 0.08671274
## 4307 0.14806335 0.09293746 0.10667727 0.08671274
## 4308 0.05072162 0.09967090 0.10667727 0.08671274
## 4309 0.05072162 0.06243174 0.10667727 0.08671274
## 4310 0.14806335 0.10363527 0.10667727 0.08671274
## 4311 0.05072162 0.09967090 0.10667727 0.08671274
## 4312 0.05072162 0.09967090 0.10667727 0.08671274
## 4313 0.05072162 0.06243174 0.10667727 0.08671274
## 4314 0.05072162 0.06243174 0.10667727 0.08671274
## 4315 0.05072162 0.09967090 0.10667727 0.08671274
## 4316 0.05072162 0.09967090 0.10667727 0.08671274
## 4317 0.05072162 0.09967090 0.10667727 0.08671274
## 4318 0.14806335 0.21582397 0.10667727 0.08671274
## 4319 0.14806335 0.06243174 0.09814869 0.08671274
## 4320 0.05072162 0.06243174 0.10667727 0.08671274
## 4321 0.14806335 0.09293746 0.10667727 0.08671274
## 4322 0.14806335 0.09293746 0.10667727 0.08671274
## 4323 0.14806335 0.10363527 0.10667727 0.08671274
## 4324 0.14806335 0.10363527 0.10667727 0.08671274
## 4325 0.14806335 0.09293746 0.10667727 0.08671274
## 4326 0.05072162 0.10363527 0.10667727 0.08671274
## 4327 0.05072162 0.06243174 0.10667727 0.08671274
## 4328 0.14806335 0.09967090 0.10667727 0.08671274
## 4329 0.14806335 0.09967090 0.10667727 0.08671274
## 4330 0.05072162 0.09967090 0.10667727 0.08671274
## 4331 0.14806335 0.21582397 0.10667727 0.08671274
## 4332 0.05072162 0.06243174 0.10667727 0.08671274
## 4333 0.14806335 0.10363527 0.10667727 0.08671274
## 4334 0.14806335 0.10363527 0.10667727 0.08671274
## 4335 0.14806335 0.09293746 0.10667727 0.08671274
## 4336 0.05072162 0.21582397 0.10667727 0.08671274
## 4337 0.14806335 0.09932349 0.10667727 0.08671274
## 4338 0.14806335 0.10363527 0.10667727 0.08671274
## 4339 0.14806335 0.09932349 0.10667727 0.08671274
## 4340 0.14806335 0.09293746 0.09814869 0.08671274
## 4341 0.05072162 0.06243174 0.10667727 0.08671274
## 4342 0.14806335 0.10363527 0.10667727 0.08671274
## 4343 0.05072162 0.06243174 0.10667727 0.08671274
## 4344 0.14806335 0.10363527 0.10667727 0.08671274
## 4345 0.14806335 0.09932349 0.10667727 0.08671274
## 4346 0.05072162 0.09967090 0.10667727 0.08671274
## 4347 0.14806335 0.10363527 0.10667727 0.08671274
## 4348 0.14806335 0.09293746 0.10667727 0.08671274
## 4349 0.14806335 0.21582397 0.10667727 0.08671274
## 4350 0.05072162 0.09967090 0.10667727 0.08671274
## 4351 0.14806335 0.10363527 0.10667727 0.08671274
## 4352 0.05072162 0.06243174 0.10667727 0.08671274
## 4353 0.05072162 0.06243174 0.10667727 0.08671274
## 4354 0.14806335 0.09932349 0.10667727 0.08671274
## 4355 0.05072162 0.09967090 0.10667727 0.08671274
## 4356 0.05072162 0.06243174 0.10667727 0.08671274
## 4357 0.14806335 0.10363527 0.10667727 0.08671274
## 4358 0.14806335 0.09293746 0.10667727 0.08671274
## 4359 0.14806335 0.10363527 0.10667727 0.08671274
## 4360 0.05072162 0.06243174 0.10667727 0.08671274
## 4361 0.14806335 0.09293746 0.10667727 0.08671274
## 4362 0.05072162 0.09967090 0.10667727 0.08671274
## 4363 0.14806335 0.09293746 0.10667727 0.08671274
## 4364 0.05072162 0.09967090 0.10667727 0.08671274
## 4365 0.05072162 0.06243174 0.10667727 0.08671274
## 4366 0.14806335 0.09932349 0.10667727 0.08671274
## 4367 0.14806335 0.09293746 0.10667727 0.08671274
## 4368 0.05072162 0.09293746 0.10667727 0.08671274
## 4369 0.05072162 0.06243174 0.10667727 0.08671274
## 4370 0.05072162 0.21582397 0.10667727 0.08671274
## 4371 0.05072162 0.09967090 0.10667727 0.08671274
## 4372 0.14806335 0.51535088 0.10667727 0.08671274
## 4373 0.14806335 0.09293746 0.10667727 0.08671274
## 4374 0.14806335 0.09293746 0.10667727 0.08671274
## 4375 0.14806335 0.09932349 0.10667727 0.08671274
## 4376 0.05072162 0.09293746 0.10667727 0.08671274
## 4377 0.14806335 0.09293746 0.10667727 0.08671274
## 4378 0.14806335 0.10363527 0.10667727 0.08671274
## 4379 0.14806335 0.51535088 0.10667727 0.08671274
## 4380 0.14806335 0.10363527 0.10667727 0.08671274
## 4381 0.14806335 0.51535088 0.10667727 0.08671274
## 4382 0.14806335 0.06243174 0.10667727 0.08671274
## 4383 0.14806335 0.10363527 0.10667727 0.08671274
## 4384 0.14806335 0.21582397 0.10667727 0.08671274
## 4385 0.14806335 0.10363527 0.10667727 0.08671274
## 4386 0.14806335 0.21582397 0.10667727 0.08671274
## 4387 0.05072162 0.09967090 0.09814869 0.08671274
## 4388 0.05072162 0.06243174 0.10667727 0.08671274
## 4389 0.14806335 0.09293746 0.10667727 0.08671274
## 4390 0.05072162 0.09967090 0.10667727 0.08671274
## 4391 0.14806335 0.10363527 0.10667727 0.08671274
## 4392 0.14806335 0.10363527 0.10667727 0.08671274
## 4393 0.14806335 0.09293746 0.10667727 0.08671274
## 4394 0.14806335 0.09967090 0.10667727 0.08671274
## 4395 0.05072162 0.09293746 0.10667727 0.08671274
## 4396 0.05072162 0.06243174 0.10667727 0.08671274
## 4397 0.05072162 0.06243174 0.10667727 0.08671274
## 4398 0.14806335 0.09293746 0.10667727 0.08671274
## 4399 0.14806335 0.09932349 0.10667727 0.08671274
## 4400 0.14806335 0.09293746 0.10667727 0.08671274
## 4401 0.14806335 0.09932349 0.10667727 0.08671274
## 4402 0.14806335 0.21582397 0.10667727 0.08671274
## 4403 0.05072162 0.09967090 0.10667727 0.08671274
## 4404 0.05072162 0.21582397 0.10667727 0.08671274
## 4405 0.14806335 0.21582397 0.10667727 0.08671274
## 4406 0.14806335 0.09293746 0.09814869 0.08671274
## 4407 0.05072162 0.10363527 0.10667727 0.08671274
## 4408 0.05072162 0.09967090 0.09814869 0.08671274
## 4409 0.14806335 0.06243174 0.09814869 0.08671274
## 4410 0.05072162 0.09967090 0.10667727 0.08671274
## 4411 0.14806335 0.21582397 0.10667727 0.08671274
## 4412 0.14806335 0.21582397 0.10667727 0.08671274
## 4413 0.14806335 0.09932349 0.10667727 0.08671274
## 4414 0.14806335 0.09293746 0.09814869 0.08671274
## 4415 0.14806335 0.10363527 0.09814869 0.08671274
## 4416 0.14806335 0.06243174 0.09814869 0.08671274
## 4417 0.05072162 0.06243174 0.09814869 0.08671274
## 4418 0.14806335 0.09293746 0.10667727 0.08671274
## 4419 0.14806335 0.06243174 0.10667727 0.08671274
## 4420 0.05072162 0.06243174 0.10667727 0.08671274
## 4421 0.05072162 0.09967090 0.10667727 0.08671274
## 4422 0.14806335 0.21582397 0.10667727 0.08671274
## 4423 0.14806335 0.10363527 0.10667727 0.08671274
## 4424 0.14806335 0.09293746 0.10667727 0.08671274
## 4425 0.05072162 0.09967090 0.10667727 0.08671274
## 4426 0.05072162 0.06243174 0.10667727 0.08671274
## 4427 0.14806335 0.21582397 0.10667727 0.08671274
## 4428 0.14806335 0.10363527 0.10667727 0.08671274
## 4429 0.14806335 0.10363527 0.10667727 0.08671274
## 4430 0.14806335 0.09932349 0.10667727 0.08671274
## 4431 0.14806335 0.21582397 0.10667727 0.08671274
## 4432 0.05072162 0.09967090 0.10667727 0.08671274
## 4433 0.05072162 0.06243174 0.10667727 0.08671274
## 4434 0.14806335 0.10363527 0.10667727 0.08671274
## 4435 0.05072162 0.06243174 0.10667727 0.08671274
## 4436 0.05072162 0.06243174 0.10667727 0.08671274
## 4437 0.14806335 0.10363527 0.10667727 0.08671274
## 4438 0.05072162 0.21582397 0.10667727 0.08671274
## 4439 0.14806335 0.06243174 0.10667727 0.08671274
## 4440 0.14806335 0.10363527 0.10667727 0.08671274
## 4441 0.05072162 0.06243174 0.10667727 0.08671274
## 4442 0.14806335 0.06243174 0.10667727 0.08671274
## 4443 0.14806335 0.48076923 0.10667727 0.08671274
## 4444 0.14806335 0.09293746 0.10667727 0.08671274
## 4445 0.05072162 0.10363527 0.10667727 0.08671274
## 4446 0.14806335 0.10363527 0.10667727 0.08671274
## 4447 0.14806335 0.21582397 0.10667727 0.08671274
## 4448 0.05072162 0.06243174 0.10667727 0.08671274
## 4449 0.14806335 0.09293746 0.09814869 0.08671274
## 4450 0.14806335 0.10363527 0.10667727 0.08671274
## 4451 0.14806335 0.21582397 0.09814869 0.08671274
## 4452 0.05072162 0.09967090 0.10667727 0.08671274
## 4453 0.14806335 0.06243174 0.10667727 0.08671274
## 4454 0.14806335 0.09293746 0.09814869 0.08671274
## 4455 0.14806335 0.21582397 0.10667727 0.08671274
## 4456 0.05072162 0.09967090 0.10667727 0.08671274
## 4457 0.14806335 0.09293746 0.09814869 0.08671274
## 4458 0.05072162 0.09293746 0.10667727 0.08671274
## 4459 0.14806335 0.10363527 0.10667727 0.08671274
## 4460 0.14806335 0.10363527 0.10667727 0.08671274
## 4461 0.14806335 0.09293746 0.10667727 0.08671274
## 4462 0.05072162 0.09967090 0.10667727 0.08671274
## 4463 0.05072162 0.09932349 0.10667727 0.08671274
## 4464 0.05072162 0.09932349 0.09814869 0.08671274
## 4465 0.05072162 0.09967090 0.10667727 0.08671274
## 4466 0.05072162 0.09293746 0.10667727 0.08671274
## 4467 0.05072162 0.06243174 0.10667727 0.08671274
## 4468 0.14806335 0.09293746 0.10667727 0.08671274
## 4469 0.05072162 0.06243174 0.10667727 0.08671274
## 4470 0.05072162 0.09967090 0.10667727 0.08671274
## 4471 0.05072162 0.09967090 0.10667727 0.08671274
## 4472 0.05072162 0.06243174 0.11410336 0.08671274
## 4473 0.14806335 0.09932349 0.10667727 0.08671274
## 4474 0.05072162 0.06243174 0.09814869 0.08671274
## 4475 0.14806335 0.06243174 0.10667727 0.08671274
## 4476 0.14806335 0.10363527 0.10667727 0.08671274
## 4477 0.14806335 0.09932349 0.10667727 0.08671274
## 4478 0.05072162 0.06243174 0.10667727 0.08671274
## 4479 0.05072162 0.06243174 0.10667727 0.08671274
## 4480 0.14806335 0.21582397 0.09814869 0.08671274
## 4481 0.14806335 0.21582397 0.09814869 0.08671274
## 4482 0.05072162 0.09967090 0.10667727 0.08671274
## 4483 0.05072162 0.10363527 0.10667727 0.08671274
## 4484 0.14806335 0.09293746 0.10667727 0.08671274
## 4485 0.05072162 0.09967090 0.10667727 0.08671274
## 4486 0.14806335 0.10363527 0.10667727 0.08671274
## 4487 0.14806335 0.51535088 0.10667727 0.08671274
## 4488 0.14806335 0.10363527 0.10667727 0.08671274
## 4489 0.14806335 0.09293746 0.10667727 0.08671274
## 4490 0.14806335 0.10363527 0.10667727 0.08671274
## 4491 0.05072162 0.21582397 0.10667727 0.08671274
## 4492 0.05072162 0.06243174 0.10667727 0.08671274
## 4493 0.05072162 0.06243174 0.10667727 0.08671274
## 4494 0.05072162 0.06243174 0.10667727 0.08671274
## 4495 0.14806335 0.10363527 0.10667727 0.08671274
## 4496 0.14806335 0.10363527 0.10667727 0.08671274
## 4497 0.14806335 0.10363527 0.10667727 0.08671274
## 4498 0.14806335 0.10363527 0.10667727 0.08671274
## 4499 0.14806335 0.21582397 0.10667727 0.08671274
## 4500 0.05072162 0.09967090 0.10667727 0.08671274
## 4501 0.14806335 0.09932349 0.10667727 0.08671274
## 4502 0.14806335 0.09293746 0.09814869 0.08671274
## 4503 0.05072162 0.06243174 0.10667727 0.08671274
## 4504 0.14806335 0.10363527 0.10667727 0.08671274
## 4505 0.14806335 0.10363527 0.10667727 0.08671274
## 4506 0.14806335 0.10363527 0.09814869 0.08671274
## 4507 0.05072162 0.06243174 0.09814869 0.08671274
## 4508 0.14806335 0.21582397 0.10667727 0.08671274
## 4509 0.14806335 0.06243174 0.10667727 0.08671274
## 4510 0.14806335 0.10363527 0.10667727 0.08671274
## 4511 0.14806335 0.09932349 0.10667727 0.08671274
## 4512 0.14806335 0.10363527 0.10667727 0.08671274
## 4513 0.14806335 0.10363527 0.10667727 0.08671274
## 4514 0.05072162 0.09967090 0.10667727 0.08671274
## 4515 0.14806335 0.06243174 0.10667727 0.08671274
## 4516 0.05072162 0.06243174 0.10667727 0.08671274
## 4517 0.14806335 0.09293746 0.10667727 0.08671274
## 4518 0.14806335 0.06243174 0.10667727 0.08671274
## 4519 0.14806335 0.06243174 0.09814869 0.08671274
## 4520 0.14806335 0.09967090 0.10667727 0.08671274
## 4521 0.05072162 0.09967090 0.10667727 0.08671274
## 4522 0.14806335 0.10363527 0.10667727 0.08671274
## 4523 0.14806335 0.21582397 0.10667727 0.08671274
## 4524 0.05072162 0.09967090 0.10667727 0.08671274
## 4525 0.05072162 0.09967090 0.10667727 0.08671274
## 4526 0.14806335 0.10363527 0.10667727 0.08671274
## 4527 0.14806335 0.09293746 0.09814869 0.08671274
## 4528 0.05072162 0.06243174 0.10667727 0.08671274
## 4529 0.14806335 0.06243174 0.10667727 0.08671274
## 4530 0.14806335 0.06243174 0.10667727 0.08671274
## 4531 0.14806335 0.09293746 0.09814869 0.08671274
## 4532 0.14806335 0.09293746 0.10667727 0.08671274
## 4533 0.05072162 0.09967090 0.10667727 0.08671274
## 4534 0.14806335 0.10363527 0.10667727 0.08671274
## 4535 0.05072162 0.06243174 0.10667727 0.08671274
## 4536 0.05072162 0.09967090 0.10667727 0.08671274
## 4537 0.05072162 0.06243174 0.10667727 0.08671274
## 4538 0.05072162 0.06243174 0.10667727 0.08671274
## 4539 0.14806335 0.48076923 0.10667727 0.08671274
## 4540 0.14806335 0.10363527 0.10667727 0.08671274
## 4541 0.05072162 0.06243174 0.10667727 0.08671274
## 4542 0.05072162 0.06243174 0.10667727 0.08671274
## 4543 0.14806335 0.09293746 0.10667727 0.08671274
## 4544 0.05072162 0.09967090 0.09814869 0.08671274
## 4545 0.14806335 0.10363527 0.11410336 0.08671274
## 4546 0.05072162 0.09967090 0.10667727 0.08671274
## 4547 0.14806335 0.09293746 0.10667727 0.08671274
## 4548 0.14806335 0.09293746 0.10667727 0.08671274
## 4549 0.05072162 0.09967090 0.10667727 0.08671274
## 4550 0.05072162 0.09967090 0.10667727 0.08671274
## 4551 0.05072162 0.06243174 0.09814869 0.08671274
## 4552 0.05072162 0.09967090 0.10667727 0.08671274
## 4553 0.14806335 0.10363527 0.10667727 0.08671274
## 4554 0.05072162 0.09967090 0.09814869 0.08671274
## 4555 0.14806335 0.10363527 0.10667727 0.08671274
## 4556 0.05072162 0.09967090 0.10667727 0.08671274
## 4557 0.14806335 0.06243174 0.11410336 0.08671274
## 4558 0.14806335 0.09293746 0.10667727 0.08671274
## 4559 0.14806335 0.10363527 0.10667727 0.08671274
## 4560 0.14806335 0.09293746 0.10667727 0.08671274
## 4561 0.14806335 0.09293746 0.09814869 0.08671274
## 4562 0.05072162 0.09967090 0.10667727 0.08671274
## 4563 0.05072162 0.09932349 0.10667727 0.08671274
## 4564 0.05072162 0.09967090 0.10667727 0.08671274
## 4565 0.14806335 0.21582397 0.10667727 0.08671274
## 4566 0.14806335 0.10363527 0.09814869 0.08671274
## 4567 0.14806335 0.09293746 0.10667727 0.08671274
## 4568 0.14806335 0.06243174 0.10667727 0.08671274
## 4569 0.05072162 0.06243174 0.10667727 0.08671274
## 4570 0.14806335 0.10363527 0.10667727 0.08671274
## 4571 0.14806335 0.09967090 0.09814869 0.08671274
## 4572 0.14806335 0.09932349 0.10667727 0.08671274
## 4573 0.14806335 0.43750000 0.10667727 0.08671274
## 4574 0.05072162 0.09967090 0.10667727 0.08671274
## 4575 0.14806335 0.09293746 0.10667727 0.08671274
## 4576 0.14806335 0.09293746 0.10667727 0.08671274
## 4577 0.14806335 0.09293746 0.10667727 0.08671274
## 4578 0.05072162 0.06243174 0.10667727 0.08671274
## 4579 0.14806335 0.21582397 0.10667727 0.08671274
## 4580 0.14806335 0.09293746 0.10667727 0.08671274
## 4581 0.14806335 0.06243174 0.10667727 0.08671274
## 4582 0.14806335 0.10363527 0.10667727 0.08671274
## 4583 0.14806335 0.09293746 0.10667727 0.08671274
## 4584 0.14806335 0.10363527 0.10667727 0.08671274
## 4585 0.05072162 0.09967090 0.10667727 0.08671274
## 4586 0.05072162 0.09967090 0.10667727 0.08671274
## 4587 0.14806335 0.10363527 0.10667727 0.08671274
## 4588 0.14806335 0.09293746 0.10667727 0.08671274
## 4589 0.05072162 0.09967090 0.10667727 0.08671274
## 4590 0.14806335 0.09293746 0.10667727 0.08671274
## 4591 0.14806335 0.10363527 0.10667727 0.08671274
## 4592 0.05072162 0.09967090 0.10667727 0.08671274
## 4593 0.14806335 0.09932349 0.10667727 0.08671274
## 4594 0.14806335 0.10363527 0.10667727 0.08671274
## 4595 0.14806335 0.21582397 0.10667727 0.08671274
## 4596 0.05072162 0.06243174 0.10667727 0.08671274
## 4597 0.14806335 0.09293746 0.09814869 0.08671274
## 4598 0.05072162 0.09967090 0.10667727 0.08671274
## 4599 0.14806335 0.09293746 0.10667727 0.08671274
## 4600 0.05072162 0.09967090 0.10667727 0.08671274
## 4601 0.05072162 0.09967090 0.09814869 0.08671274
## 4602 0.05072162 0.09967090 0.09814869 0.08671274
## 4603 0.14806335 0.21582397 0.10667727 0.08671274
## 4604 0.14806335 0.10363527 0.10667727 0.08671274
## 4605 0.05072162 0.06243174 0.10667727 0.08671274
## 4606 0.05072162 0.06243174 0.10667727 0.08671274
## 4607 0.05072162 0.06243174 0.10667727 0.08671274
## 4608 0.05072162 0.09967090 0.09814869 0.08671274
## 4609 0.14806335 0.09932349 0.10667727 0.08671274
## 4610 0.05072162 0.06243174 0.10667727 0.08671274
## 4611 0.14806335 0.10363527 0.10667727 0.08671274
## 4612 0.05072162 0.09967090 0.09814869 0.08671274
## 4613 0.05072162 0.06243174 0.10667727 0.08671274
## 4614 0.05072162 0.06243174 0.10667727 0.08671274
## 4615 0.14806335 0.09932349 0.10667727 0.08671274
## 4616 0.14806335 0.10363527 0.10667727 0.08671274
## 4617 0.14806335 0.21582397 0.10667727 0.08671274
## 4618 0.14806335 0.21582397 0.10667727 0.08671274
## 4619 0.14806335 0.21582397 0.10667727 0.08671274
## 4620 0.14806335 0.09293746 0.09814869 0.08671274
## 4621 0.14806335 0.21582397 0.10667727 0.08671274
## 4622 0.14806335 0.21582397 0.10667727 0.08671274
## 4623 0.05072162 0.06243174 0.10667727 0.08671274
## 4624 0.14806335 0.09293746 0.10667727 0.08671274
## 4625 0.05072162 0.09967090 0.11410336 0.08671274
## 4626 0.14806335 0.10363527 0.10667727 0.08671274
## 4627 0.05072162 0.06243174 0.09814869 0.08671274
## 4628 0.14806335 0.09293746 0.10667727 0.08671274
## 4629 0.14806335 0.09932349 0.10667727 0.08671274
## 4630 0.14806335 0.21582397 0.10667727 0.08671274
## 4631 0.14806335 0.10363527 0.10667727 0.08671274
## 4632 0.14806335 0.10363527 0.10667727 0.08671274
## 4633 0.14806335 0.09932349 0.09814869 0.08671274
## 4634 0.14806335 0.09293746 0.10667727 0.08671274
## 4635 0.05072162 0.09967090 0.10667727 0.08671274
## 4636 0.14806335 0.21582397 0.10667727 0.08671274
## 4637 0.14806335 0.06243174 0.10667727 0.08671274
## 4638 0.05072162 0.09967090 0.10667727 0.08671274
## 4639 0.14806335 0.09293746 0.10667727 0.08671274
## 4640 0.05072162 0.06243174 0.10667727 0.08671274
## 4641 0.14806335 0.10363527 0.09814869 0.08671274
## 4642 0.14806335 0.09932349 0.10667727 0.08671274
## 4643 0.14806335 0.06243174 0.10667727 0.08671274
## 4644 0.05072162 0.06243174 0.10667727 0.08671274
## 4645 0.14806335 0.09293746 0.10667727 0.08671274
## 4646 0.05072162 0.06243174 0.10667727 0.08671274
## 4647 0.14806335 0.10363527 0.10667727 0.08671274
## 4648 0.14806335 0.06243174 0.09814869 0.08671274
## 4649 0.14806335 0.21582397 0.10667727 0.08671274
## 4650 0.05072162 0.06243174 0.10667727 0.08671274
## 4651 0.14806335 0.06243174 0.10667727 0.08671274
## 4652 0.05072162 0.06243174 0.10667727 0.08671274
## 4653 0.05072162 0.06243174 0.10667727 0.08671274
## 4654 0.14806335 0.06243174 0.10667727 0.08671274
## 4655 0.05072162 0.06243174 0.10667727 0.08671274
## 4656 0.14806335 0.06243174 0.10667727 0.08671274
## 4657 0.14806335 0.10363527 0.10667727 0.08671274
## 4658 0.14806335 0.09293746 0.09814869 0.08671274
## 4659 0.14806335 0.21582397 0.10667727 0.08671274
## 4660 0.14806335 0.06243174 0.10667727 0.08671274
## 4661 0.14806335 0.09932349 0.10667727 0.08671274
## 4662 0.14806335 0.06243174 0.10667727 0.08671274
## 4663 0.14806335 0.21582397 0.10667727 0.08671274
## 4664 0.14806335 0.09293746 0.10667727 0.08671274
## 4665 0.14806335 0.09932349 0.09814869 0.08671274
## 4666 0.05072162 0.09967090 0.10667727 0.08671274
## 4667 0.05072162 0.06243174 0.10667727 0.08671274
## 4668 0.14806335 0.06243174 0.09814869 0.08671274
## 4669 0.14806335 0.45296167 0.10667727 0.08671274
## 4670 0.14806335 0.09932349 0.10667727 0.08671274
## 4671 0.05072162 0.06243174 0.09814869 0.08671274
## 4672 0.14806335 0.10363527 0.10667727 0.08671274
## 4673 0.14806335 0.10363527 0.10667727 0.08671274
## 4674 0.14806335 0.09932349 0.10667727 0.08671274
## 4675 0.05072162 0.06243174 0.10667727 0.08671274
## 4676 0.14806335 0.10363527 0.10667727 0.08671274
## 4677 0.14806335 0.06243174 0.11410336 0.08671274
## 4678 0.05072162 0.06243174 0.10667727 0.08671274
## 4679 0.14806335 0.21582397 0.10667727 0.08671274
## 4680 0.14806335 0.10363527 0.10667727 0.08671274
## 4681 0.14806335 0.09293746 0.10667727 0.08671274
## 4682 0.14806335 0.09293746 0.10667727 0.08671274
## 4683 0.05072162 0.10363527 0.10667727 0.08671274
## 4684 0.05072162 0.06243174 0.10667727 0.08671274
## 4685 0.14806335 0.09293746 0.10667727 0.08671274
## 4686 0.14806335 0.45296167 0.10667727 0.08671274
## 4687 0.05072162 0.09967090 0.10667727 0.08671274
## 4688 0.05072162 0.09967090 0.10667727 0.08671274
## 4689 0.14806335 0.51535088 0.10667727 0.08671274
## 4690 0.05072162 0.06243174 0.10667727 0.08671274
## 4691 0.14806335 0.10363527 0.10667727 0.08671274
## 4692 0.05072162 0.09967090 0.10667727 0.08671274
## 4693 0.14806335 0.10363527 0.10667727 0.08671274
## 4694 0.14806335 0.10363527 0.10667727 0.08671274
## 4695 0.05072162 0.09293746 0.10667727 0.08671274
## 4696 0.05072162 0.06243174 0.10667727 0.08671274
## 4697 0.05072162 0.06243174 0.10667727 0.08671274
## 4698 0.14806335 0.10363527 0.09814869 0.08671274
## 4699 0.14806335 0.09293746 0.10667727 0.08671274
## 4700 0.14806335 0.09932349 0.09814869 0.08671274
## 4701 0.05072162 0.09932349 0.09814869 0.08671274
## 4702 0.14806335 0.06243174 0.10667727 0.08671274
## 4703 0.05072162 0.09967090 0.10667727 0.08671274
## 4704 0.05072162 0.51535088 0.09814869 0.08671274
## 4705 0.14806335 0.09293746 0.10667727 0.08671274
## 4706 0.14806335 0.10363527 0.10667727 0.08671274
## 4707 0.14806335 0.09293746 0.10667727 0.08671274
## 4708 0.14806335 0.09293746 0.10667727 0.08671274
## 4709 0.14806335 0.51535088 0.10667727 0.08671274
## 4710 0.05072162 0.09967090 0.10667727 0.08671274
## 4711 0.14806335 0.09967090 0.10667727 0.08671274
## 4712 0.05072162 0.06243174 0.10667727 0.08671274
## 4713 0.05072162 0.09967090 0.10667727 0.08671274
## 4714 0.05072162 0.09293746 0.10667727 0.08671274
## 4715 0.05072162 0.09967090 0.10667727 0.08671274
## 4716 0.14806335 0.21582397 0.10667727 0.08671274
## 4717 0.05072162 0.06243174 0.10667727 0.08671274
## 4718 0.14806335 0.10363527 0.10667727 0.08671274
## 4719 0.05072162 0.09967090 0.10667727 0.08671274
## 4720 0.14806335 0.43750000 0.10667727 0.08671274
## 4721 0.05072162 0.06243174 0.10667727 0.08671274
## 4722 0.14806335 0.10363527 0.10667727 0.08671274
## 4723 0.05072162 0.09967090 0.10667727 0.08671274
## 4724 0.14806335 0.21582397 0.10667727 0.08671274
## 4725 0.14806335 0.10363527 0.10667727 0.08671274
## 4726 0.05072162 0.06243174 0.10667727 0.08671274
## 4727 0.14806335 0.10363527 0.09814869 0.08671274
## 4728 0.14806335 0.21582397 0.10667727 0.08671274
## 4729 0.14806335 0.21582397 0.10667727 0.08671274
## 4730 0.14806335 0.09967090 0.10667727 0.08671274
## 4731 0.05072162 0.06243174 0.10667727 0.08671274
## 4732 0.14806335 0.21582397 0.10667727 0.08671274
## 4733 0.05072162 0.09967090 0.10667727 0.08671274
## 4734 0.05072162 0.06243174 0.10667727 0.08671274
## 4735 0.05072162 0.06243174 0.09814869 0.08671274
## 4736 0.05072162 0.06243174 0.10667727 0.08671274
## 4737 0.14806335 0.10363527 0.10667727 0.08671274
## 4738 0.14806335 0.09293746 0.10667727 0.08671274
## 4739 0.05072162 0.06243174 0.10667727 0.08671274
## 4740 0.14806335 0.06243174 0.10667727 0.08671274
## 4741 0.14806335 0.06243174 0.10667727 0.08671274
## 4742 0.14806335 0.09967090 0.10667727 0.08671274
## 4743 0.05072162 0.09293746 0.10667727 0.08671274
## 4744 0.14806335 0.10363527 0.10667727 0.08671274
## 4745 0.05072162 0.10363527 0.10667727 0.08671274
## 4746 0.05072162 0.06243174 0.09814869 0.08671274
## 4747 0.05072162 0.06243174 0.10667727 0.08671274
## 4748 0.14806335 0.06243174 0.10667727 0.08671274
## 4749 0.14806335 0.06243174 0.10667727 0.08671274
## 4750 0.05072162 0.06243174 0.10667727 0.08671274
## 4751 0.05072162 0.09293746 0.10667727 0.08671274
## 4752 0.14806335 0.09932349 0.11410336 0.08671274
## 4753 0.05072162 0.06243174 0.10667727 0.08671274
## 4754 0.14806335 0.09293746 0.10667727 0.08671274
## 4755 0.05072162 0.09967090 0.09814869 0.08671274
## 4756 0.05072162 0.10363527 0.09814869 0.08671274
## 4757 0.14806335 0.09932349 0.10667727 0.08671274
## 4758 0.05072162 0.09967090 0.09814869 0.08671274
## 4759 0.14806335 0.09967090 0.09814869 0.08671274
## 4760 0.14806335 0.09293746 0.10667727 0.08671274
## 4761 0.14806335 0.09932349 0.10667727 0.08671274
## 4762 0.05072162 0.06243174 0.10667727 0.08671274
## 4763 0.14806335 0.06243174 0.10667727 0.08671274
## 4764 0.05072162 0.09967090 0.10667727 0.08671274
## 4765 0.05072162 0.06243174 0.11410336 0.08671274
## 4766 0.14806335 0.09293746 0.10667727 0.08671274
## 4767 0.14806335 0.09293746 0.10667727 0.08671274
## 4768 0.14806335 0.10363527 0.10667727 0.08671274
## 4769 0.14806335 0.10363527 0.09814869 0.08671274
## 4770 0.05072162 0.09967090 0.10667727 0.08671274
## 4771 0.14806335 0.06243174 0.10667727 0.08671274
## 4772 0.14806335 0.48076923 0.10667727 0.08671274
## 4773 0.05072162 0.06243174 0.10667727 0.08671274
## 4774 0.14806335 0.09293746 0.10667727 0.08671274
## 4775 0.05072162 0.09293746 0.10667727 0.08671274
## 4776 0.14806335 0.10363527 0.10667727 0.08671274
## 4777 0.14806335 0.09932349 0.10667727 0.08671274
## 4778 0.05072162 0.09967090 0.09814869 0.08671274
## 4779 0.05072162 0.09967090 0.10667727 0.08671274
## 4780 0.14806335 0.10363527 0.10667727 0.08671274
## 4781 0.05072162 0.09967090 0.10667727 0.08671274
## 4782 0.05072162 0.06243174 0.10667727 0.08671274
## 4783 0.05072162 0.09967090 0.10667727 0.08671274
## 4784 0.05072162 0.06243174 0.09814869 0.08671274
## 4785 0.14806335 0.09967090 0.09814869 0.08671274
## 4786 0.14806335 0.10363527 0.10667727 0.08671274
## 4787 0.14806335 0.06243174 0.10667727 0.08671274
## 4788 0.05072162 0.09967090 0.10667727 0.08671274
## 4789 0.14806335 0.09932349 0.10667727 0.08671274
## 4790 0.05072162 0.09967090 0.10667727 0.08671274
## 4791 0.05072162 0.06243174 0.10667727 0.08671274
## 4792 0.05072162 0.09967090 0.09814869 0.08671274
## 4793 0.14806335 0.06243174 0.10667727 0.08671274
## 4794 0.14806335 0.10363527 0.09814869 0.08671274
## 4795 0.05072162 0.06243174 0.10667727 0.08671274
## 4796 0.14806335 0.09293746 0.10667727 0.08671274
## 4797 0.05072162 0.09967090 0.10667727 0.08671274
## 4798 0.14806335 0.10363527 0.10667727 0.08671274
## 4799 0.14806335 0.10363527 0.10667727 0.08671274
## 4800 0.05072162 0.09967090 0.10667727 0.08671274
## 4801 0.14806335 0.21582397 0.10667727 0.08671274
## 4802 0.05072162 0.06243174 0.10667727 0.08671274
## 4803 0.14806335 0.06243174 0.10667727 0.08671274
## 4804 0.14806335 0.09932349 0.09814869 0.08671274
## 4805 0.05072162 0.06243174 0.10667727 0.08671274
## 4806 0.14806335 0.09293746 0.10667727 0.08671274
## 4807 0.05072162 0.09967090 0.10667727 0.08671274
## 4808 0.14806335 0.10363527 0.10667727 0.08671274
## 4809 0.05072162 0.06243174 0.10667727 0.08671274
## 4810 0.05072162 0.09932349 0.09814869 0.08671274
## 4811 0.05072162 0.06243174 0.10667727 0.08671274
## 4812 0.14806335 0.21582397 0.10667727 0.08671274
## 4813 0.14806335 0.09932349 0.10667727 0.08671274
## 4814 0.14806335 0.21582397 0.10667727 0.08671274
## 4815 0.05072162 0.06243174 0.10667727 0.08671274
## 4816 0.05072162 0.09967090 0.10667727 0.08671274
## 4817 0.14806335 0.06243174 0.10667727 0.08671274
## 4818 0.05072162 0.51535088 0.10667727 0.08671274
## 4819 0.05072162 0.06243174 0.10667727 0.08671274
## 4820 0.14806335 0.09932349 0.10667727 0.08671274
## 4821 0.05072162 0.09967090 0.10667727 0.08671274
## 4822 0.14806335 0.21582397 0.10667727 0.08671274
## 4823 0.14806335 0.21582397 0.10667727 0.08671274
## 4824 0.14806335 0.10363527 0.10667727 0.08671274
## 4825 0.05072162 0.09967090 0.10667727 0.08671274
## 4826 0.14806335 0.06243174 0.10667727 0.08671274
## 4827 0.05072162 0.06243174 0.10667727 0.08671274
## 4828 0.05072162 0.09967090 0.10667727 0.08671274
## 4829 0.14806335 0.10363527 0.10667727 0.08671274
## 4830 0.05072162 0.06243174 0.10667727 0.08671274
## 4831 0.14806335 0.21582397 0.10667727 0.08671274
## 4832 0.14806335 0.21582397 0.10667727 0.08671274
## 4833 0.05072162 0.09967090 0.10667727 0.08671274
## 4834 0.14806335 0.09932349 0.10667727 0.08671274
## 4835 0.14806335 0.10363527 0.10667727 0.08671274
## 4836 0.05072162 0.09967090 0.09814869 0.08671274
## 4837 0.05072162 0.06243174 0.10667727 0.08671274
## 4838 0.05072162 0.10363527 0.10667727 0.08671274
## 4839 0.14806335 0.09293746 0.09814869 0.08671274
## 4840 0.05072162 0.06243174 0.10667727 0.08671274
## 4841 0.05072162 0.06243174 0.10667727 0.08671274
## 4842 0.14806335 0.06243174 0.10667727 0.08671274
## 4843 0.14806335 0.06243174 0.10667727 0.08671274
## 4844 0.05072162 0.06243174 0.09814869 0.08671274
## 4845 0.14806335 0.09293746 0.11410336 0.08671274
## 4846 0.14806335 0.06243174 0.10667727 0.08671274
## 4847 0.14806335 0.06243174 0.10667727 0.08671274
## 4848 0.14806335 0.21582397 0.10667727 0.08671274
## 4849 0.05072162 0.06243174 0.10667727 0.08671274
## 4850 0.14806335 0.10363527 0.10667727 0.08671274
## 4851 0.14806335 0.10363527 0.10667727 0.08671274
## 4852 0.05072162 0.09967090 0.09814869 0.08671274
## 4853 0.05072162 0.09967090 0.10667727 0.08671274
## 4854 0.14806335 0.09293746 0.10667727 0.08671274
## 4855 0.14806335 0.06243174 0.10667727 0.08671274
## 4856 0.14806335 0.06243174 0.09814869 0.08671274
## 4857 0.05072162 0.09967090 0.10667727 0.08671274
## 4858 0.05072162 0.09967090 0.10667727 0.08671274
## 4859 0.14806335 0.21582397 0.10667727 0.08671274
## 4860 0.05072162 0.09967090 0.10667727 0.08671274
## 4861 0.14806335 0.10363527 0.10667727 0.08671274
## 4862 0.14806335 0.06243174 0.10667727 0.08671274
## 4863 0.14806335 0.21582397 0.10667727 0.08671274
## 4864 0.05072162 0.06243174 0.10667727 0.08671274
## 4865 0.05072162 0.09967090 0.09814869 0.08671274
## 4866 0.14806335 0.09932349 0.10667727 0.08671274
## 4867 0.14806335 0.09293746 0.10667727 0.08671274
## 4868 0.14806335 0.06243174 0.10667727 0.08671274
## 4869 0.14806335 0.09932349 0.09814869 0.08671274
## 4870 0.14806335 0.09293746 0.10667727 0.08671274
## 4871 0.05072162 0.06243174 0.10667727 0.08671274
## 4872 0.14806335 0.09293746 0.10667727 0.08671274
## 4873 0.05072162 0.06243174 0.10667727 0.08671274
## 4874 0.14806335 0.10363527 0.09814869 0.08671274
## 4875 0.14806335 0.09293746 0.10667727 0.08671274
## 4876 0.05072162 0.09967090 0.10667727 0.08671274
## 4877 0.05072162 0.06243174 0.09814869 0.08671274
## 4878 0.05072162 0.06243174 0.10667727 0.08671274
## 4879 0.05072162 0.09967090 0.10667727 0.08671274
## 4880 0.14806335 0.10363527 0.10667727 0.08671274
## 4881 0.14806335 0.09932349 0.10667727 0.08671274
## 4882 0.14806335 0.10363527 0.10667727 0.08671274
## 4883 0.05072162 0.06243174 0.10667727 0.08671274
## 4884 0.14806335 0.10363527 0.10667727 0.08671274
## 4885 0.14806335 0.21582397 0.10667727 0.08671274
## 4886 0.14806335 0.10363527 0.09814869 0.08671274
## 4887 0.05072162 0.48076923 0.10667727 0.08671274
## 4888 0.14806335 0.06243174 0.10667727 0.08671274
## 4889 0.14806335 0.10363527 0.10667727 0.08671274
## 4890 0.14806335 0.09293746 0.10667727 0.08671274
## 4891 0.14806335 0.09932349 0.10667727 0.08671274
## 4892 0.14806335 0.09932349 0.09814869 0.08671274
## 4893 0.14806335 0.21582397 0.10667727 0.08671274
## 4894 0.14806335 0.09293746 0.10667727 0.08671274
## 4895 0.05072162 0.06243174 0.10667727 0.08671274
## 4896 0.14806335 0.10363527 0.10667727 0.08671274
## 4897 0.05072162 0.09967090 0.10667727 0.08671274
## 4898 0.05072162 0.06243174 0.10667727 0.08671274
## 4899 0.05072162 0.06243174 0.10667727 0.08671274
## 4900 0.14806335 0.10363527 0.10667727 0.08671274
## 4901 0.14806335 0.09293746 0.10667727 0.08671274
## 4902 0.05072162 0.06243174 0.10667727 0.08671274
## 4903 0.14806335 0.09967090 0.10667727 0.08671274
## 4904 0.14806335 0.09293746 0.10667727 0.08671274
## 4905 0.14806335 0.10363527 0.10667727 0.08671274
## 4906 0.14806335 0.10363527 0.10667727 0.08671274
## 4907 0.14806335 0.09293746 0.10667727 0.08671274
## 4908 0.14806335 0.06243174 0.10667727 0.08671274
## 4909 0.14806335 0.06243174 0.10667727 0.08671274
## 4910 0.05072162 0.06243174 0.10667727 0.08671274
## 4911 0.05072162 0.06243174 0.10667727 0.08671274
## 4912 0.05072162 0.09293746 0.10667727 0.08671274
## 4913 0.05072162 0.06243174 0.10667727 0.08671274
## 4914 0.14806335 0.10363527 0.10667727 0.08671274
## 4915 0.05072162 0.06243174 0.10667727 0.08671274
## 4916 0.14806335 0.06243174 0.10667727 0.08671274
## 4917 0.05072162 0.09967090 0.10667727 0.08671274
## 4918 0.14806335 0.09932349 0.10667727 0.08671274
## 4919 0.05072162 0.06243174 0.10667727 0.08671274
## 4920 0.05072162 0.09967090 0.10667727 0.08671274
## 4921 0.05072162 0.09967090 0.10667727 0.08671274
## 4922 0.05072162 0.21582397 0.10667727 0.08671274
## 4923 0.05072162 0.09967090 0.10667727 0.08671274
## 4924 0.14806335 0.10363527 0.10667727 0.08671274
## 4925 0.05072162 0.09967090 0.10667727 0.08671274
## 4926 0.05072162 0.06243174 0.10667727 0.08671274
## 4927 0.14806335 0.06243174 0.10667727 0.08671274
## 4928 0.14806335 0.21582397 0.09814869 0.08671274
## 4929 0.14806335 0.09293746 0.09814869 0.08671274
## 4930 0.14806335 0.21582397 0.10667727 0.08671274
## 4931 0.14806335 0.10363527 0.10667727 0.08671274
## 4932 0.14806335 0.10363527 0.10667727 0.08671274
## 4933 0.14806335 0.10363527 0.10667727 0.08671274
## 4934 0.05072162 0.06243174 0.10667727 0.08671274
## 4935 0.14806335 0.10363527 0.10667727 0.08671274
## 4936 0.14806335 0.06243174 0.10667727 0.08671274
## 4937 0.14806335 0.10363527 0.09814869 0.08671274
## 4938 0.05072162 0.06243174 0.10667727 0.08671274
## 4939 0.14806335 0.09293746 0.10667727 0.08671274
## 4940 0.05072162 0.06243174 0.10667727 0.08671274
## 4941 0.14806335 0.09293746 0.10667727 0.08671274
## 4942 0.05072162 0.09967090 0.10667727 0.08671274
## 4943 0.14806335 0.10363527 0.09814869 0.08671274
## 4944 0.05072162 0.06243174 0.10667727 0.08671274
## 4945 0.05072162 0.06243174 0.10667727 0.08671274
## 4946 0.14806335 0.21582397 0.10667727 0.08671274
## 4947 0.05072162 0.06243174 0.10667727 0.08671274
## 4948 0.14806335 0.06243174 0.09814869 0.08671274
## 4949 0.14806335 0.21582397 0.10667727 0.08671274
## 4950 0.05072162 0.06243174 0.10667727 0.08671274
## 4951 0.14806335 0.21582397 0.10667727 0.08671274
## 4952 0.14806335 0.10363527 0.10667727 0.08671274
## 4953 0.05072162 0.06243174 0.10667727 0.08671274
## 4954 0.14806335 0.10363527 0.10667727 0.08671274
## 4955 0.14806335 0.21582397 0.10667727 0.08671274
## 4956 0.05072162 0.09293746 0.10667727 0.08671274
## 4957 0.14806335 0.10363527 0.09814869 0.08671274
## 4958 0.05072162 0.09293746 0.10667727 0.08671274
## 4959 0.05072162 0.09967090 0.10667727 0.08671274
## 4960 0.14806335 0.06243174 0.10667727 0.08671274
## 4961 0.05072162 0.06243174 0.10667727 0.08671274
## 4962 0.05072162 0.06243174 0.10667727 0.08671274
## 4963 0.14806335 0.10363527 0.09814869 0.08671274
## 4964 0.14806335 0.10363527 0.09814869 0.08671274
## 4965 0.05072162 0.06243174 0.10667727 0.08671274
## 4966 0.14806335 0.06243174 0.10667727 0.08671274
## 4967 0.05072162 0.06243174 0.10667727 0.08671274
## 4968 0.14806335 0.06243174 0.10667727 0.08671274
## 4969 0.14806335 0.09932349 0.10667727 0.08671274
## 4970 0.05072162 0.09967090 0.10667727 0.08671274
## 4971 0.14806335 0.10363527 0.10667727 0.08671274
## 4972 0.05072162 0.06243174 0.10667727 0.08671274
## 4973 0.14806335 0.09293746 0.11410336 0.08671274
## 4974 0.05072162 0.09967090 0.10667727 0.08671274
## 4975 0.05072162 0.06243174 0.10667727 0.08671274
## 4976 0.14806335 0.10363527 0.10667727 0.08671274
## 4977 0.05072162 0.06243174 0.10667727 0.08671274
## 4978 0.14806335 0.10363527 0.10667727 0.08671274
## 4979 0.05072162 0.09967090 0.09814869 0.08671274
## 4980 0.14806335 0.09932349 0.10667727 0.08671274
## 4981 0.14806335 0.06243174 0.10667727 0.08671274
## 4982 0.05072162 0.09932349 0.09814869 0.08671274
## 4983 0.05072162 0.09967090 0.10667727 0.08671274
## 4984 0.05072162 0.06243174 0.10667727 0.08671274
## 4985 0.14806335 0.10363527 0.10667727 0.08671274
## 4986 0.14806335 0.10363527 0.10667727 0.08671274
## 4987 0.05072162 0.09967090 0.10667727 0.08671274
## 4988 0.05072162 0.06243174 0.10667727 0.08671274
## 4989 0.05072162 0.06243174 0.10667727 0.08671274
## 4990 0.14806335 0.21582397 0.10667727 0.08671274
## 4991 0.05072162 0.06243174 0.10667727 0.08671274
## 4992 0.05072162 0.21582397 0.10667727 0.08671274
## 4993 0.05072162 0.09967090 0.10667727 0.08671274
## 4994 0.14806335 0.06243174 0.10667727 0.08671274
## 4995 0.14806335 0.10363527 0.10667727 0.08671274
## 4996 0.14806335 0.10363527 0.10667727 0.08671274
## 4997 0.14806335 0.10363527 0.10667727 0.08671274
## 4998 0.14806335 0.10363527 0.09814869 0.08671274
## 4999 0.14806335 0.06243174 0.10667727 0.08671274
## [ reached 'max' / getOption("max.print") -- omitted 27952 rows ]
test_encoded
## age duration campaign pdays previous emp.var.rate cons.price.idx
## 1 35 70 2 999 1 -1.8 92.893
## 2 24 1042 5 999 3 -1.1 94.199
## 3 40 88 1 999 1 -1.8 93.075
## 4 36 174 1 999 1 -1.8 92.893
## 5 47 934 2 999 1 -1.8 92.893
## 6 26 245 9 999 1 -1.8 92.893
## 7 65 80 1 999 1 -2.9 92.201
## 8 25 92 1 999 1 -1.8 93.075
## 9 59 332 2 999 1 -1.8 93.075
## 10 38 55 1 999 1 -1.8 92.893
## 11 45 845 1 999 2 -3.4 92.431
## 12 29 78 2 999 1 -1.8 92.893
## 13 31 319 1 999 1 -0.1 93.200
## 14 43 195 3 999 1 -1.8 92.893
## 15 56 362 2 999 2 -1.8 93.075
## 16 37 105 1 999 1 -1.8 92.893
## 17 24 7 4 999 1 -1.8 92.893
## 18 48 90 3 999 1 -1.8 93.075
## 19 29 145 1 999 1 -1.8 92.893
## 20 41 97 1 999 1 -1.8 92.893
## 21 46 201 6 999 1 -1.8 93.075
## 22 35 211 2 999 1 -0.1 93.200
## 23 37 466 1 999 1 -1.8 92.893
## 24 40 180 1 999 1 -0.1 93.200
## 25 26 135 1 999 2 -1.8 92.893
## 26 36 265 1 999 1 -1.7 94.055
## 27 41 77 3 999 1 -0.1 93.200
## 28 34 107 1 999 1 -1.8 92.893
## 29 38 78 2 999 1 -1.8 92.893
## 30 50 1326 6 999 1 -1.8 92.893
## 31 29 67 4 999 1 -1.8 92.893
## 32 38 37 1 999 1 -1.8 93.075
## 33 30 173 2 15 4 -1.1 94.199
## 34 33 125 1 999 2 -1.8 92.893
## 35 35 75 1 999 1 -1.8 92.893
## 36 55 519 1 999 1 -1.8 93.075
## 37 32 137 1 999 1 -1.8 92.893
## 38 38 192 1 999 1 -1.8 92.893
## 39 42 98 2 999 1 -1.8 92.893
## 40 78 631 2 999 2 -3.4 92.431
## 41 46 308 1 999 1 -0.1 93.200
## 42 38 81 3 999 1 -1.8 92.893
## 43 48 207 3 999 1 -2.9 92.201
## 44 53 383 2 999 1 -1.8 92.893
## 45 63 150 1 999 1 -1.8 93.075
## 46 47 642 2 999 1 -1.8 93.075
## 47 36 287 2 999 1 -1.8 92.893
## 48 77 318 1 9 4 -1.7 94.027
## 49 50 609 2 999 1 -0.1 93.200
## 50 68 88 1 999 2 -3.4 92.431
## 51 48 136 1 999 1 -2.9 92.963
## 52 43 192 2 999 1 -1.8 93.075
## 53 47 253 2 999 1 -1.8 92.893
## 54 30 143 1 999 1 -1.8 93.075
## 55 31 208 2 999 1 -1.8 92.893
## 56 29 16 6 999 1 -1.8 92.893
## 57 27 398 4 999 1 -2.9 92.201
## 58 41 774 2 999 1 -1.8 93.075
## 59 44 542 3 999 2 -1.8 93.075
## 60 34 364 2 999 1 -1.8 93.369
## 61 38 469 1 999 1 -1.8 92.893
## 62 84 267 1 999 1 -1.8 93.876
## 63 83 74 1 3 3 -1.8 92.893
## 64 50 124 5 999 1 -3.4 92.649
## 65 37 13 4 999 1 -0.1 93.200
## 66 40 147 1 999 1 -0.1 93.200
## 67 36 142 2 999 1 -1.8 93.075
## 68 26 284 3 999 1 -1.1 94.199
## 69 33 137 2 999 1 -1.8 92.893
## 70 26 196 1 9 3 -1.7 94.215
## 71 58 1359 3 999 1 -1.8 92.893
## 72 44 174 5 999 1 -1.8 92.893
## 73 43 22 8 999 1 -1.8 92.893
## 74 29 149 1 999 1 -1.8 92.893
## 75 34 162 2 999 1 -1.8 92.893
## 76 33 169 3 999 1 -1.8 92.893
## 77 37 137 1 999 1 -1.1 94.767
## 78 29 1410 1 999 1 -1.8 93.075
## 79 40 154 1 999 1 -2.9 92.963
## 80 32 340 2 999 1 -1.8 92.893
## 81 51 334 2 6 4 -1.1 94.767
## 82 56 83 3 999 1 -1.8 93.075
## 83 42 513 1 999 2 -1.7 94.215
## 84 43 190 1 999 1 -0.1 93.200
## 85 36 316 2 999 1 -1.8 93.075
## 86 44 188 1 999 1 -1.8 92.893
## 87 42 166 2 999 1 -0.1 93.200
## 88 31 80 1 999 1 -1.8 92.893
## 89 50 123 1 999 1 -0.1 93.200
## 90 41 243 1 999 2 -1.8 92.893
## 91 33 90 4 999 1 -0.1 93.200
## 92 55 177 5 999 1 -2.9 92.963
## 93 47 219 1 999 1 -1.8 92.893
## 94 45 5 1 999 1 -1.7 94.027
## 95 30 127 2 999 1 -0.1 93.200
## 96 55 45 2 999 1 -0.1 93.200
## 97 20 137 3 999 3 -1.1 94.601
## 98 48 85 1 999 1 -1.8 93.075
## 99 47 87 2 999 1 -1.8 92.893
## 100 29 273 3 999 2 -1.1 94.199
## 101 34 237 1 999 1 -2.9 92.201
## 102 31 211 6 999 1 -1.8 92.893
## 103 76 126 1 999 1 -1.7 94.027
## 104 28 333 1 999 1 -1.8 93.075
## 105 39 714 1 999 1 -0.1 93.200
## 106 51 1267 1 999 1 -1.8 93.876
## 107 35 143 1 999 1 -1.8 92.893
## 108 41 53 1 999 1 -1.8 93.075
## 109 37 497 5 999 2 -1.8 92.893
## 110 37 194 2 999 1 -1.8 93.369
## 111 59 8 1 999 1 -1.7 94.055
## 112 28 20 1 999 1 -0.1 93.200
## 113 24 676 2 999 1 -3.4 92.431
## 114 77 84 2 999 1 -2.9 92.963
## 115 34 1221 2 999 1 -1.8 92.893
## 116 27 191 2 999 1 -1.8 93.075
## 117 37 84 1 999 1 -3.4 92.649
## 118 46 456 1 999 1 -1.8 92.893
## 119 58 135 1 999 2 -1.8 93.369
## 120 42 158 1 999 1 -2.9 92.201
## 121 45 99 3 999 1 -1.8 93.075
## 122 27 48 2 999 1 -1.8 93.075
## 123 31 151 2 999 1 -1.8 92.893
## 124 61 69 1 999 1 -2.9 92.201
## 125 29 98 1 999 1 -2.9 92.201
## 126 36 67 4 999 1 -1.8 92.893
## 127 58 22 4 999 1 -0.1 93.200
## 128 54 616 3 999 1 -0.1 93.200
## 129 39 233 1 999 1 -1.8 92.893
## 130 37 81 2 999 1 -1.8 92.893
## 131 36 248 1 999 1 -2.9 92.963
## 132 29 134 2 9 2 -3.4 92.649
## 133 32 712 1 3 2 -2.9 92.963
## 134 33 19 8 999 1 -1.8 92.893
## 135 66 296 1 999 1 -1.7 94.215
## 136 43 443 1 999 1 -1.8 93.075
## 137 60 83 1 999 1 -1.8 92.893
## 138 51 166 7 999 1 -2.9 92.469
## 139 46 244 3 999 1 -1.8 93.075
## 140 39 504 2 999 1 -0.1 93.200
## 141 34 238 1 999 1 -1.8 93.075
## 142 35 768 2 999 2 -2.9 92.201
## 143 34 127 1 999 1 -0.1 93.200
## 144 29 85 1 999 1 -3.4 92.649
## 145 35 250 1 999 1 -2.9 92.201
## 146 34 353 6 999 1 -1.8 92.893
## 147 27 234 6 999 1 -1.8 92.893
## 148 39 305 2 999 1 -1.8 93.075
## 149 40 173 6 999 1 -1.7 94.027
## 150 56 219 2 999 1 -0.1 93.200
## 151 36 91 2 999 1 -0.1 93.200
## 152 21 326 2 999 1 -1.7 94.027
## 153 50 249 3 999 1 -1.8 93.075
## 154 29 386 2 999 1 -1.8 93.075
## 155 42 90 4 999 1 -0.1 93.200
## 156 37 78 4 999 1 -1.8 92.893
## 157 33 135 1 999 1 -1.8 92.893
## 158 35 130 1 999 1 -1.8 92.893
## 159 33 147 2 999 1 -1.8 92.893
## 160 36 208 12 999 1 -1.8 93.075
## 161 26 78 4 999 1 -1.8 92.843
## 162 52 161 1 999 1 -0.1 93.200
## 163 40 192 4 999 1 -1.8 92.893
## 164 57 45 1 999 1 -1.8 93.075
## 165 42 173 1 999 1 -0.1 93.200
## 166 41 246 1 999 1 -1.8 93.075
## 167 41 118 1 999 1 -2.9 92.963
## 168 20 162 4 999 1 -1.8 93.075
## 169 59 210 3 999 2 -1.7 94.215
## 170 29 69 3 999 1 -1.8 92.893
## 171 55 553 2 3 4 -2.9 92.963
## 172 49 568 1 999 1 -1.8 92.893
## 173 75 293 2 999 1 -1.8 93.369
## 174 30 102 3 999 1 -1.8 92.893
## 175 46 154 8 999 1 -1.8 93.075
## 176 74 156 1 999 1 -2.9 92.201
## 177 36 100 1 999 1 -1.8 92.893
## 178 32 144 5 999 1 -1.8 92.893
## 179 34 66 1 999 1 -0.1 93.200
## 180 78 319 2 999 1 -3.4 92.649
## 181 57 57 7 999 1 -0.1 93.200
## 182 40 140 4 999 1 -1.8 93.075
## 183 47 343 4 999 1 -1.8 92.893
## 184 35 225 7 999 1 -1.8 92.893
## 185 50 600 2 999 1 -0.1 93.200
## 186 54 219 3 999 1 -1.1 94.601
## 187 56 414 1 999 1 -3.4 92.649
## 188 44 276 2 999 1 -1.8 93.075
## 189 42 474 2 999 1 -1.8 92.893
## 190 31 551 3 999 1 -1.8 93.075
## 191 34 573 1 999 1 -1.8 92.893
## 192 18 269 1 999 1 -3.0 92.713
## 193 29 99 2 999 1 -3.4 92.431
## 194 43 352 1 999 1 -0.1 93.200
## 195 27 415 1 999 1 -1.8 92.893
## 196 31 196 2 999 1 -1.8 92.893
## 197 49 86 1 999 1 -1.8 92.893
## 198 56 290 3 999 1 -1.8 92.893
## 199 51 324 1 999 1 -0.1 93.200
## 200 34 340 1 999 1 -1.8 93.075
## 201 36 38 1 999 1 -1.8 92.893
## 202 46 309 1 999 1 -1.8 93.075
## 203 32 297 1 999 2 -2.9 92.963
## 204 22 267 2 999 1 -1.8 92.893
## 205 39 530 1 999 1 -0.1 93.200
## 206 22 84 1 999 2 -1.1 94.199
## 207 32 197 1 999 1 -1.7 94.055
## 208 44 175 2 999 2 -2.9 92.201
## 209 30 92 1 999 1 -0.1 93.200
## 210 36 62 1 999 1 -2.9 92.201
## 211 33 44 1 999 1 -1.8 92.893
## 212 45 201 1 999 1 -0.1 93.200
## 213 52 157 2 999 1 -1.8 92.893
## 214 52 121 1 999 1 -1.8 92.893
## 215 45 90 1 999 1 -0.1 93.200
## 216 27 185 5 999 2 -1.7 94.215
## 217 35 77 3 999 1 -1.8 93.075
## 218 47 226 1 999 1 -1.8 93.075
## 219 53 464 2 999 1 -0.1 93.200
## 220 46 200 2 999 1 -2.9 92.963
## 221 34 447 1 999 1 -1.7 94.027
## 222 50 51 5 999 1 -0.1 93.200
## 223 49 434 1 999 1 -3.4 92.431
## 224 34 332 3 999 1 -1.7 94.215
## 225 46 293 1 999 1 -1.8 92.893
## 226 31 51 8 999 1 -0.1 93.200
## 227 34 225 1 999 1 -1.8 92.893
## 228 51 72 2 999 1 -2.9 92.201
## 229 45 479 1 999 1 -1.8 93.075
## 230 35 244 2 999 1 -3.4 92.649
## 231 41 54 1 999 1 -0.1 93.200
## 232 55 99 1 999 1 -3.4 92.649
## 233 58 240 2 999 1 -0.1 93.200
## 234 74 307 1 999 1 -2.9 92.201
## 235 35 502 1 999 1 -1.8 92.893
## 236 37 73 4 999 1 -0.1 93.200
## 237 54 49 2 999 1 -3.4 92.379
## 238 38 299 1 999 1 -1.8 92.893
## 239 33 216 1 999 1 -1.8 92.893
## 240 40 52 1 999 1 -0.1 93.200
## 241 59 511 3 999 1 -3.4 92.431
## 242 59 378 2 999 1 -2.9 92.201
## 243 33 900 2 999 2 -1.8 93.075
## 244 26 204 2 999 1 -2.9 92.201
## 245 30 422 1 999 1 -1.8 92.893
## 246 50 718 4 999 3 -1.1 94.199
## 247 34 217 1 999 1 -1.8 92.893
## 248 29 112 4 999 1 -1.8 92.893
## 249 31 629 1 999 1 -1.8 92.893
## 250 47 159 1 999 1 -3.4 92.379
## 251 24 255 1 999 1 -1.8 93.075
## 252 67 341 4 999 1 -3.4 92.649
## 253 24 860 2 9 2 -1.7 94.215
## 254 53 470 2 999 2 -1.8 92.893
## 255 24 107 1 999 1 -1.8 93.075
## 256 59 1207 4 999 1 -1.7 94.055
## 257 53 367 6 999 1 -1.8 92.893
## 258 47 377 1 999 1 -1.8 92.893
## 259 40 91 2 999 1 -1.8 93.075
## 260 46 333 2 999 1 -0.1 93.200
## 261 27 136 5 999 1 -1.8 92.893
## 262 46 83 2 12 2 -1.1 94.601
## 263 26 102 2 999 1 -2.9 92.201
## 264 30 200 1 999 1 -1.7 94.027
## 265 44 16 3 999 1 -1.8 93.075
## 266 48 301 1 999 1 -3.4 92.431
## 267 35 117 3 999 1 -1.8 92.893
## 268 35 255 2 999 1 -1.8 92.893
## 269 38 351 1 999 1 -1.8 93.075
## 270 48 1337 4 999 1 -0.1 93.200
## 271 50 118 2 999 1 -1.8 92.893
## 272 37 76 1 999 1 -1.8 93.075
## 273 27 179 1 999 1 -1.7 94.215
## 274 36 73 3 999 1 -1.8 93.075
## 275 31 115 3 999 1 -1.8 92.893
## 276 37 143 2 999 1 -1.8 92.893
## 277 23 76 2 999 1 -1.7 94.215
## 278 44 267 4 999 1 -1.8 92.893
## 279 78 754 2 3 2 -1.8 92.893
## 280 28 343 2 999 1 -2.9 92.201
## 281 35 206 1 999 1 -1.8 92.893
## 282 40 215 1 999 1 -0.1 93.200
## 283 39 103 1 999 2 -1.8 92.893
## 284 46 78 2 999 1 -0.1 93.200
## 285 30 176 2 999 1 -1.8 92.893
## 286 27 253 1 999 2 -1.1 94.601
## 287 34 156 3 999 2 -1.7 94.215
## 288 23 136 3 999 1 -1.8 92.893
## 289 30 7 6 999 1 -1.8 93.075
## 290 52 198 1 999 1 -1.8 92.893
## 291 33 204 3 999 1 -1.8 92.893
## 292 40 165 1 999 1 -0.1 93.200
## 293 47 118 2 999 1 -1.8 92.893
## 294 30 208 1 999 1 -1.8 92.893
## 295 57 117 2 999 1 -0.1 93.200
## 296 26 251 1 999 1 -1.7 94.215
## 297 30 86 2 999 1 -1.8 92.893
## 298 24 66 1 999 1 -1.8 92.893
## 299 38 258 1 999 1 -1.8 93.075
## 300 27 471 2 999 1 -1.8 92.893
## 301 43 426 1 999 1 -1.8 92.893
## 302 43 249 3 999 1 -0.1 93.200
## 303 29 468 2 999 1 -1.8 92.893
## 304 33 113 1 999 1 -0.1 93.200
## 305 31 68 1 999 1 -0.1 93.200
## 306 20 240 1 999 1 -1.8 93.749
## 307 78 591 1 999 1 -1.8 93.369
## 308 30 87 4 999 1 -1.8 93.075
## 309 47 53 1 999 1 -1.8 93.075
## 310 30 120 3 999 1 -2.9 92.201
## 311 33 122 1 999 1 -0.1 93.200
## 312 36 242 1 999 1 -0.1 93.200
## 313 53 242 1 999 1 -3.4 92.649
## 314 62 113 1 999 1 -3.4 92.649
## 315 38 96 6 999 1 -1.8 92.893
## 316 39 248 1 999 1 -1.8 92.893
## 317 34 95 1 999 1 -1.8 92.893
## 318 22 154 2 999 1 -3.4 92.431
## 319 53 758 2 999 2 -1.8 93.749
## 320 37 1138 2 999 1 -1.8 93.075
## 321 31 59 1 999 1 -1.8 92.893
## 322 36 20 8 999 1 -1.8 92.893
## 323 33 235 2 999 1 -1.8 92.893
## 324 32 115 1 999 1 -0.1 93.200
## 325 27 109 1 999 1 -3.0 92.713
## 326 37 72 1 999 1 -1.8 92.893
## 327 48 296 1 16 3 -1.7 94.027
## 328 34 131 1 999 1 -3.4 92.431
## 329 32 319 1 999 1 -1.8 92.893
## 330 26 211 2 999 1 -1.8 92.893
## 331 26 639 3 999 1 -1.8 92.893
## 332 34 612 1 999 2 -1.8 92.893
## 333 54 222 1 999 1 -1.1 94.767
## 334 34 139 6 999 1 -0.1 93.200
## 335 31 868 3 18 3 -1.7 94.027
## 336 55 233 1 999 2 -3.4 92.431
## 337 38 456 1 999 1 -1.8 92.893
## 338 38 184 1 999 1 -1.8 92.893
## 339 37 108 2 999 1 -1.8 92.893
## 340 24 69 2 999 2 -1.8 92.893
## 341 36 160 1 999 1 -0.1 93.200
## 342 36 146 3 999 1 -1.8 92.893
## 343 56 566 1 7 2 -3.4 92.649
## 344 33 201 1 999 1 -1.8 92.893
## 345 46 765 1 999 1 -1.8 92.893
## 346 37 494 4 999 3 -1.7 94.215
## 347 35 59 2 999 1 -1.8 93.075
## 348 53 172 2 999 1 -1.8 92.893
## 349 31 906 1 999 1 -0.1 93.200
## 350 60 193 1 999 1 -1.8 92.893
## 351 40 143 3 999 1 -2.9 92.963
## 352 63 198 1 999 1 -1.8 93.075
## 353 32 36 9 999 1 -1.8 92.893
## 354 47 182 1 999 1 -3.4 92.649
## 355 29 314 2 999 1 -0.1 93.200
## 356 42 164 2 999 1 -0.1 93.200
## 357 42 64 2 999 1 -1.8 92.893
## 358 34 351 7 999 1 -1.8 92.893
## 359 46 119 1 999 1 -0.1 93.200
## 360 54 105 1 999 1 -1.8 93.075
## 361 56 517 3 999 1 -1.8 92.893
## 362 39 103 1 999 1 -1.8 92.893
## 363 34 133 1 999 1 -1.8 92.893
## 364 56 67 6 999 1 -0.1 93.200
## 365 33 193 1 999 1 -3.4 92.431
## 366 47 182 2 999 6 -1.7 94.027
## 367 42 271 1 999 1 -1.8 93.749
## 368 28 188 1 999 1 -2.9 92.963
## 369 34 83 2 999 1 -1.8 92.893
## 370 37 11 8 999 1 -1.8 92.893
## 371 31 91 1 999 1 -1.7 94.215
## 372 36 343 2 999 1 -3.4 92.431
## 373 30 22 1 999 1 -1.8 92.893
## 374 30 287 1 999 1 -1.8 92.893
## 375 39 71 5 999 1 -1.8 92.893
## 376 24 122 2 999 1 -2.9 92.963
## 377 38 202 3 999 1 -1.8 92.893
## 378 23 308 2 999 1 -1.8 92.843
## 379 46 65 1 999 1 -3.4 92.431
## 380 73 273 2 999 1 -1.7 94.027
## 381 42 228 2 999 1 -1.8 92.893
## 382 38 155 1 999 1 -1.8 92.893
## 383 31 190 1 999 1 -0.1 93.200
## 384 39 223 2 999 1 -1.8 92.893
## 385 19 380 1 999 1 -3.4 92.649
## 386 29 22 1 999 2 -1.8 93.075
## 387 34 14 5 999 1 -1.8 92.893
## 388 45 272 1 999 1 -1.8 92.893
## 389 38 234 2 999 1 -1.8 92.893
## 390 39 1007 3 999 1 -1.8 93.075
## 391 30 61 3 999 1 -1.8 92.893
## 392 51 1032 10 999 1 -0.1 93.200
## 393 29 198 2 999 2 -1.8 92.893
## 394 31 127 3 999 1 -2.9 92.963
## 395 52 291 1 999 1 -1.8 93.075
## 396 60 604 1 999 1 -1.1 94.601
## 397 48 260 2 999 1 -2.9 92.201
## 398 45 174 1 999 1 -1.8 93.075
## 399 30 195 3 999 1 -1.8 92.893
## 400 33 90 2 999 1 -0.1 93.200
## 401 34 362 2 999 1 -1.8 92.893
## 402 35 832 1 999 1 -1.8 92.893
## 403 31 107 1 999 2 -3.4 92.649
## 404 47 239 2 999 1 -1.8 93.075
## 405 28 359 1 999 2 -2.9 92.963
## 406 36 69 4 999 1 -3.4 92.649
## 407 40 456 1 999 1 -1.8 93.075
## 408 31 582 2 999 1 -1.8 92.893
## 409 48 267 2 999 1 -1.8 93.075
## 410 27 162 2 999 2 -2.9 92.963
## 411 32 213 1 999 1 -1.8 92.893
## 412 38 334 6 999 1 -1.8 92.893
## 413 35 77 2 999 1 -0.1 93.200
## 414 32 1307 3 999 1 -0.1 93.200
## 415 52 172 1 999 1 -0.1 93.200
## 416 36 279 1 999 1 -1.8 92.893
## 417 38 110 1 999 1 -1.8 93.075
## 418 65 253 1 999 2 -3.4 92.649
## 419 34 104 1 999 1 -1.8 92.893
## 420 34 143 1 999 1 -1.8 93.075
## 421 37 347 1 999 1 -0.1 93.200
## 422 67 89 5 999 1 -2.9 92.201
## 423 35 70 1 999 1 -0.1 93.200
## 424 24 175 1 999 1 -1.8 92.893
## 425 55 139 2 999 1 -1.8 92.893
## 426 25 152 4 999 1 -1.8 92.893
## 427 36 148 1 999 2 -1.8 93.369
## 428 35 12 6 999 1 -1.8 92.893
## 429 68 201 1 999 1 -3.4 92.379
## 430 27 154 1 999 1 -1.8 92.893
## 431 29 133 1 999 1 -1.8 92.893
## 432 30 180 3 999 1 -1.8 93.075
## 433 38 118 1 999 1 -1.8 92.893
## 434 47 119 1 999 4 -1.7 94.055
## 435 53 157 4 999 1 -1.8 92.893
## 436 44 150 3 999 2 -1.8 92.893
## 437 50 75 2 999 1 -0.1 93.200
## 438 32 249 1 999 1 -0.1 93.200
## 439 32 49 2 999 1 -0.1 93.200
## 440 33 32 1 999 1 -1.8 92.893
## 441 48 1032 3 999 2 -1.8 93.075
## 442 50 1365 2 999 1 -1.8 93.075
## 443 30 334 4 999 2 -1.7 94.215
## 444 37 364 1 999 1 -3.4 92.431
## 445 25 169 2 999 1 -2.9 92.201
## 446 44 31 1 999 1 -1.8 92.893
## 447 27 161 1 999 3 -1.1 94.601
## 448 31 48 4 999 1 -1.8 92.893
## 449 36 158 1 999 1 -1.8 92.893
## 450 30 221 2 999 1 -1.1 94.199
## 451 61 245 4 999 1 -1.8 93.075
## 452 70 122 1 14 3 -1.1 94.601
## 453 47 115 1 999 1 -1.8 92.893
## 454 38 365 1 999 1 -1.8 92.893
## 455 71 137 1 999 1 -3.4 92.431
## 456 26 189 2 999 1 -1.8 92.893
## 457 42 7 5 999 2 -1.8 92.893
## 458 44 67 2 999 1 -0.1 93.200
## 459 35 378 2 999 1 -1.8 92.893
## 460 43 279 1 999 1 -1.8 92.893
## 461 60 104 1 999 1 -3.4 92.379
## 462 28 81 1 999 1 -1.8 92.893
## 463 57 75 1 999 1 -0.1 93.200
## 464 37 635 1 999 1 -0.1 93.200
## 465 51 178 2 999 1 -0.1 93.200
## 466 39 952 2 999 1 -1.8 93.075
## 467 32 230 1 999 1 -1.8 93.075
## 468 55 9 2 999 2 -1.8 92.893
## 469 25 581 3 999 2 -1.8 93.876
## 470 35 242 2 999 1 -1.1 94.199
## 471 32 128 1 999 1 -1.8 92.893
## 472 50 699 1 999 1 -2.9 92.963
## 473 41 233 4 999 1 -0.1 93.200
## 474 33 223 1 999 1 -1.8 92.893
## 475 36 102 6 999 1 -1.8 92.893
## 476 36 90 1 999 2 -2.9 92.201
## 477 52 698 5 999 1 -1.8 93.876
## 478 84 220 2 999 2 -1.8 93.749
## 479 38 276 1 999 1 -1.8 92.893
## 480 30 143 1 999 1 -1.8 92.893
## 481 63 510 2 999 1 -3.0 92.713
## 482 48 193 4 999 1 -0.1 93.200
## 483 39 200 1 999 1 -2.9 92.201
## 484 56 277 1 999 1 -3.4 92.379
## 485 29 225 2 999 1 -0.1 93.200
## 486 26 99 1 999 1 -2.9 92.201
## 487 50 48 1 999 1 -0.1 93.200
## 488 42 164 3 999 1 -0.1 93.200
## 489 33 585 2 999 1 -1.8 92.893
## 490 18 256 2 7 2 -3.4 92.649
## 491 72 1 1 999 1 -1.1 94.199
## 492 36 245 1 999 1 -1.8 92.893
## 493 35 185 2 999 1 -1.8 92.893
## 494 30 156 1 999 1 -1.7 94.027
## 495 44 574 1 999 1 -1.8 93.075
## 496 35 827 1 999 1 -1.8 92.893
## 497 50 79 1 999 1 -0.1 93.200
## 498 33 199 7 999 1 -1.8 92.893
## 499 29 177 4 999 1 -1.8 92.893
## 500 37 654 1 999 1 -2.9 92.963
## 501 33 176 1 999 1 -0.1 93.200
## 502 42 221 1 999 2 -1.8 92.893
## 503 50 189 1 999 1 -0.1 93.200
## 504 33 192 1 999 1 -1.8 93.876
## 505 63 167 1 999 1 -3.4 92.379
## 506 37 84 2 999 2 -1.8 92.893
## 507 34 219 4 999 1 -1.8 92.893
## 508 37 312 3 999 1 -0.1 93.200
## 509 31 284 3 999 1 -1.8 92.893
## 510 48 517 2 999 1 -0.1 93.200
## 511 45 268 1 999 1 -1.8 93.075
## 512 51 541 2 999 1 -1.8 93.075
## 513 45 140 3 999 1 -3.4 92.649
## 514 37 66 1 999 1 -1.8 92.893
## 515 29 38 2 999 1 -0.1 93.200
## 516 29 473 2 999 1 -1.8 93.075
## 517 37 143 3 999 1 -1.8 92.893
## 518 47 22 1 999 1 -1.8 92.893
## 519 57 149 1 999 1 -2.9 92.201
## 520 44 134 1 999 1 -1.7 94.055
## 521 40 430 2 999 1 -1.8 92.893
## 522 36 65 1 999 1 -1.8 92.893
## 523 33 225 3 999 1 -1.8 92.893
## 524 46 417 2 999 2 -1.8 93.075
## 525 51 153 1 999 1 -1.8 92.893
## 526 33 234 1 999 1 -1.8 92.893
## 527 44 130 1 999 1 -0.1 93.200
## 528 49 330 2 999 1 -1.8 92.893
## 529 39 209 5 999 1 -1.8 92.893
## 530 34 210 2 999 1 -1.8 92.893
## 531 40 277 2 999 1 -1.8 93.075
## 532 37 115 2 999 1 -1.8 93.075
## 533 32 134 2 999 1 -1.8 92.893
## 534 28 154 1 999 2 -1.7 94.215
## 535 31 779 2 999 1 -0.1 93.200
## 536 29 147 1 999 2 -1.7 94.055
## 537 68 237 7 999 2 -1.8 93.876
## 538 35 233 1 999 1 -1.8 92.893
## 539 24 576 4 999 1 -1.8 92.893
## 540 26 176 2 999 1 -1.8 92.893
## 541 32 96 1 999 3 -3.4 92.431
## 542 79 104 1 999 2 -1.8 93.876
## 543 52 152 3 999 1 -1.8 92.893
## 544 58 127 1 999 1 -0.1 93.200
## 545 41 306 3 999 1 -1.8 92.893
## 546 46 182 6 999 1 -2.9 92.201
## 547 54 333 1 999 1 -1.8 92.893
## 548 50 389 1 999 1 -0.1 93.200
## 549 31 209 1 999 2 -1.7 94.027
## 550 40 21 1 999 1 -1.1 94.199
## 551 33 178 8 999 1 -1.8 92.893
## 552 32 134 1 999 1 -1.8 92.893
## 553 33 397 2 999 1 -1.8 93.075
## 554 44 272 2 999 1 -1.8 93.075
## 555 66 667 1 999 1 -1.1 94.199
## 556 34 473 1 999 1 -1.8 93.075
## 557 36 668 3 999 1 -1.8 93.075
## 558 39 208 3 999 1 -1.8 93.749
## 559 28 225 1 999 1 -1.8 92.893
## 560 53 107 1 999 1 -0.1 93.200
## 561 27 196 3 999 1 -1.8 92.893
## 562 46 245 2 999 4 -1.7 94.027
## 563 28 93 3 11 2 -1.8 93.075
## 564 48 591 1 999 1 -0.1 93.200
## 565 52 429 3 999 1 -1.8 92.893
## 566 43 131 2 999 1 -1.8 93.075
## 567 37 462 1 999 1 -1.8 92.893
## 568 51 133 1 999 1 -2.9 92.201
## 569 29 128 3 999 1 -1.8 92.893
## 570 41 105 1 999 1 -1.8 92.893
## 571 46 125 3 999 1 -1.8 93.075
## 572 27 267 1 999 1 -1.8 92.893
## 573 36 97 2 999 1 -1.8 92.893
## 574 43 200 2 999 1 -1.8 92.893
## 575 26 81 1 7 4 -1.8 93.369
## 576 30 520 3 999 1 -1.8 93.075
## 577 41 261 1 999 1 -1.8 92.893
## 578 52 7 7 999 1 -1.8 92.893
## 579 20 74 2 999 1 -2.9 92.963
## 580 70 325 1 999 2 -3.0 92.713
## 581 41 528 3 999 1 -1.8 93.075
## 582 37 94 2 999 1 -0.1 93.200
## 583 26 355 1 999 1 -1.1 94.199
## 584 26 45 2 999 2 -1.8 92.893
## 585 43 99 2 999 1 -1.8 92.893
## 586 81 279 1 999 4 -1.7 94.055
## 587 30 848 1 999 1 -1.8 92.893
## 588 29 315 2 999 1 -0.1 93.200
## 589 45 79 1 999 1 -1.8 93.075
## 590 45 190 1 999 1 -1.8 92.893
## 591 40 265 1 999 1 -1.8 92.893
## 592 39 363 1 999 1 -1.8 92.893
## 593 52 110 1 999 1 -1.8 92.893
## 594 38 137 4 999 1 -0.1 93.200
## 595 43 154 3 999 1 -0.1 93.200
## 596 33 210 2 999 1 -1.8 92.893
## 597 47 65 1 999 1 -0.1 93.200
## 598 45 104 4 999 1 -0.1 93.200
## 599 66 177 1 999 1 -1.8 93.369
## 600 44 310 1 999 1 -1.1 94.601
## 601 55 113 1 999 1 -0.1 93.200
## 602 53 405 1 999 1 -0.1 93.200
## 603 35 293 2 999 1 -0.1 93.200
## 604 37 588 1 999 1 -0.1 93.200
## 605 34 320 3 999 1 -1.8 92.893
## 606 38 923 1 999 1 -2.9 92.201
## 607 46 584 1 999 1 -0.1 93.200
## 608 24 316 3 999 1 -1.7 94.215
## 609 29 774 2 999 1 -1.8 92.893
## 610 57 200 6 999 1 -1.8 92.893
## 611 46 84 3 999 1 -1.8 92.893
## 612 69 153 4 999 1 -1.8 93.075
## 613 37 238 2 999 1 -1.8 92.893
## 614 37 445 1 999 1 -1.8 92.893
## 615 27 41 3 999 1 -1.8 92.893
## 616 49 171 1 999 1 -1.8 93.075
## 617 44 580 1 999 1 -1.8 93.075
## 618 22 256 3 999 1 -1.7 94.215
## 619 35 207 1 999 1 -1.8 93.075
## 620 29 41 2 999 1 -1.8 92.893
## 621 38 141 1 999 2 -1.8 93.075
## 622 42 92 1 999 1 -1.8 92.893
## 623 37 55 2 999 1 -0.1 93.200
## 624 33 486 1 999 2 -1.7 94.027
## 625 31 66 4 999 1 -1.8 92.893
## 626 32 293 2 999 2 -1.8 92.893
## 627 53 205 2 999 1 -0.1 93.200
## 628 52 177 2 11 3 -1.8 93.369
## 629 38 72 2 999 1 -1.8 92.893
## 630 38 135 1 999 2 -3.4 92.431
## 631 32 145 2 999 1 -0.1 93.200
## 632 38 101 1 999 1 -1.8 93.075
## 633 33 291 1 999 3 -1.1 94.601
## 634 26 358 1 9 2 -3.4 92.649
## 635 33 110 1 999 2 -3.4 92.431
## 636 24 174 1 999 1 -1.8 92.893
## 637 33 397 1 999 2 -1.8 92.893
## 638 48 105 1 999 1 -0.1 93.200
## 639 32 195 3 999 1 -1.8 92.893
## 640 48 89 1 999 1 -0.1 93.200
## 641 35 86 3 999 1 -0.1 93.200
## 642 32 154 3 999 1 -0.1 93.200
## 643 30 24 6 999 1 -1.8 92.893
## 644 29 212 1 999 1 -1.8 92.893
## 645 23 250 4 999 1 -1.7 94.215
## 646 38 266 1 999 1 -1.8 92.893
## 647 28 152 1 999 1 -1.8 93.369
## 648 33 238 1 999 1 -1.8 92.893
## 649 36 114 1 999 1 -0.1 93.200
## 650 29 854 2 999 1 -1.8 92.893
## 651 26 279 2 999 1 -1.8 92.893
## 652 33 101 4 999 2 -2.9 92.201
## 653 42 96 1 999 1 -2.9 92.201
## 654 30 599 4 999 1 -0.1 93.200
## 655 46 162 1 999 1 -0.1 93.200
## 656 44 119 2 999 1 -0.1 93.200
## 657 27 99 7 999 1 -1.8 92.893
## 658 28 457 2 999 1 -1.8 93.876
## 659 38 360 1 999 1 -1.8 92.893
## 660 32 62 1 999 1 -1.8 93.075
## 661 28 343 1 999 1 -1.8 92.893
## 662 36 74 3 999 1 -1.8 92.893
## 663 58 159 2 999 1 -1.8 92.893
## 664 33 495 1 999 1 -1.8 92.893
## 665 30 11 15 999 1 -1.8 92.893
## 666 57 148 4 999 1 -1.8 92.893
## 667 35 276 1 999 1 -0.1 93.200
## 668 54 82 1 999 1 -0.1 93.200
## 669 32 74 2 999 2 -1.1 94.767
## 670 34 36 2 999 1 -1.8 93.075
## 671 32 517 1 999 1 -1.8 92.893
## 672 38 612 1 999 1 -1.8 93.075
## 673 58 358 2 999 1 -1.8 92.893
## 674 50 241 2 999 1 -1.8 93.075
## 675 33 145 1 999 1 -1.8 92.893
## 676 36 40 2 999 1 -0.1 93.200
## 677 40 124 1 999 1 -1.8 93.075
## 678 28 165 1 999 1 -1.8 92.893
## 679 31 114 1 999 1 -1.8 92.893
## 680 27 9 5 999 1 -1.8 92.893
## 681 36 166 2 999 1 -0.1 93.200
## 682 66 43 1 999 2 -2.9 92.201
## 683 54 139 3 999 1 -1.8 92.893
## 684 25 516 1 13 2 -1.7 94.055
## 685 54 150 1 999 1 -0.1 93.200
## 686 31 161 5 999 1 -1.8 92.893
## 687 41 57 1 999 1 -1.8 92.893
## 688 58 110 2 999 1 -0.1 93.200
## 689 55 133 3 999 1 -1.8 92.893
## 690 50 157 1 999 1 -1.8 92.893
## 691 39 171 2 999 1 -0.1 93.200
## 692 44 225 3 999 2 -1.8 93.075
## 693 65 117 1 999 2 -1.7 94.215
## 694 59 381 1 999 1 -1.8 93.075
## 695 26 165 2 999 1 -1.8 92.893
## 696 35 138 1 999 1 -1.8 93.369
## 697 34 90 2 999 1 -1.8 93.075
## 698 33 220 1 999 1 -0.1 93.200
## 699 86 237 1 999 1 -3.4 92.649
## 700 39 148 2 999 1 -0.1 93.200
## 701 42 98 2 999 1 -1.8 92.893
## 702 32 53 1 999 1 -1.8 92.893
## 703 31 56 1 999 1 -1.8 92.893
## 704 49 181 4 999 1 -1.8 92.893
## 705 37 553 1 999 1 -1.8 92.893
## 706 44 492 1 999 2 -1.7 94.027
## 707 34 47 2 999 1 -1.8 92.893
## 708 38 1022 1 999 1 -1.8 92.893
## 709 35 197 4 999 1 -0.1 93.200
## 710 29 43 8 999 1 -1.8 92.893
## 711 30 157 1 999 1 -0.1 93.200
## 712 38 106 3 999 1 -0.1 93.200
## 713 31 90 1 999 1 -1.8 92.893
## 714 27 222 3 999 1 -3.4 92.649
## 715 55 113 2 999 1 -0.1 93.200
## 716 49 231 2 999 1 -1.8 92.893
## 717 30 109 1 999 1 -0.1 93.200
## 718 33 323 2 999 1 -1.8 92.893
## 719 34 601 2 999 1 -1.8 92.893
## 720 44 358 1 999 1 -1.8 92.893
## 721 29 209 1 999 1 -0.1 93.200
## 722 47 5 7 999 1 -1.8 92.893
## 723 33 364 1 999 1 -1.8 92.893
## 724 50 743 1 999 1 -0.1 93.200
## 725 81 158 1 999 1 -1.1 94.601
## 726 49 464 2 999 1 -2.9 92.201
## 727 46 205 1 999 1 -1.8 92.893
## 728 55 163 1 999 1 -1.8 92.893
## 729 34 251 1 999 2 -1.8 93.369
## 730 35 26 4 999 2 -1.8 93.075
## 731 42 675 4 999 1 -0.1 93.200
## 732 27 22 6 999 1 -1.8 92.893
## 733 53 160 7 999 1 -1.8 92.893
## 734 74 239 2 999 1 -2.9 92.201
## 735 54 53 1 999 1 -0.1 93.200
## 736 38 110 1 999 1 -1.8 93.075
## 737 29 292 1 999 1 -1.7 94.055
## 738 43 608 1 999 1 -1.8 93.075
## 739 24 190 1 999 1 -2.9 92.963
## 740 59 206 1 999 1 -2.9 92.201
## 741 35 86 1 999 1 -3.4 92.431
## 742 28 23 1 999 1 -1.8 92.893
## 743 34 263 1 999 1 -1.8 92.893
## 744 36 147 2 999 1 -1.8 92.893
## 745 60 107 1 999 1 -1.8 92.893
## 746 37 346 1 999 2 -1.8 92.893
## 747 45 215 1 999 1 -1.8 92.893
## 748 29 139 1 999 1 -1.8 92.893
## 749 33 670 2 999 1 -1.8 92.893
## 750 34 23 1 999 1 -1.7 94.215
## 751 45 288 1 999 1 -1.8 92.893
## 752 36 42 2 999 1 -1.8 92.893
## 753 24 263 1 999 1 -2.9 92.963
## 754 34 146 1 999 1 -1.8 92.893
## 755 44 253 1 999 1 -1.8 93.075
## 756 64 104 1 999 2 -1.8 93.075
## 757 51 224 2 999 1 -0.1 93.200
## 758 41 140 1 999 1 -0.1 93.200
## 759 54 139 4 999 1 -0.1 93.200
## 760 28 224 1 999 1 -1.8 92.893
## 761 45 165 1 999 3 -1.8 93.876
## 762 32 47 1 999 1 -1.8 93.075
## 763 32 158 2 999 1 -0.1 93.200
## 764 37 179 2 999 1 -2.9 92.201
## 765 55 14 8 999 2 -1.8 92.893
## 766 70 213 1 999 1 -3.4 92.379
## 767 31 215 2 999 1 -1.8 92.893
## 768 25 252 3 999 1 -1.8 93.369
## 769 51 176 1 999 1 -1.1 94.767
## 770 38 113 1 999 1 -3.4 92.379
## 771 32 191 2 19 2 -1.1 94.767
## 772 35 281 2 999 1 -1.8 92.893
## 773 33 204 1 999 1 -1.8 92.893
## 774 33 281 3 999 1 -1.8 92.893
## 775 48 220 2 999 1 -1.8 93.749
## 776 26 92 1 999 1 -3.4 92.431
## 777 48 294 1 999 1 -3.4 92.431
## 778 73 79 1 999 1 -1.8 93.075
## 779 18 271 1 999 1 -1.8 92.893
## 780 56 427 2 999 1 -1.7 94.215
## 781 75 191 1 999 1 -3.4 92.379
## 782 52 297 1 999 2 -3.4 92.431
## 783 54 487 3 999 2 -1.1 94.601
## 784 30 136 2 999 1 -0.1 93.200
## 785 59 383 2 999 2 -1.1 94.601
## 786 23 370 1 999 1 -1.8 92.893
## 787 68 500 2 999 1 -3.4 92.379
## 788 49 222 4 999 1 -1.8 92.893
## 789 34 201 1 5 3 -3.4 92.431
## 790 45 197 1 999 1 -1.8 92.893
## 791 57 595 3 999 1 -1.8 93.749
## 792 40 182 2 999 1 -1.8 92.893
## 793 58 224 2 999 1 -0.1 93.200
## 794 55 1440 1 999 1 -1.1 94.199
## 795 31 104 1 999 1 -0.1 93.200
## 796 42 175 1 999 1 -1.8 92.893
## 797 63 47 1 999 1 -2.9 92.201
## 798 35 273 2 999 1 -0.1 93.200
## 799 66 141 4 999 2 -1.8 93.369
## 800 31 62 1 999 1 -0.1 93.200
## 801 38 65 1 999 1 -2.9 92.963
## 802 64 248 1 999 2 -2.9 92.201
## 803 34 71 5 999 1 -1.8 92.893
## 804 21 142 3 999 1 -1.8 92.893
## 805 42 201 1 999 1 -1.8 92.893
## 806 57 275 2 999 1 -1.8 93.075
## 807 45 316 2 999 2 -1.1 94.601
## 808 18 561 1 17 2 -1.7 94.027
## 809 39 10 6 999 1 -0.1 93.200
## 810 94 134 1 999 1 -3.4 92.649
## 811 40 178 5 999 1 -0.1 93.200
## 812 52 181 2 999 1 -1.8 93.075
## 813 32 358 2 999 1 -1.8 92.893
## 814 47 408 2 999 2 -1.8 92.893
## 815 28 226 3 999 1 -1.7 94.027
## 816 41 97 1 999 2 -1.8 92.893
## 817 36 106 1 999 1 -0.1 93.200
## 818 51 119 1 999 1 -0.1 93.200
## 819 60 290 1 999 1 -3.4 92.431
## 820 30 398 2 999 0 1.4 93.444
## 821 57 58 2 999 0 -0.1 93.200
## 822 37 301 1 999 0 -1.8 92.893
## 823 24 93 5 999 0 -1.8 92.843
## 824 30 254 1 999 0 1.4 93.444
## 825 45 133 1 999 0 -1.8 92.893
## 826 51 547 3 999 0 1.4 93.444
## 827 44 14 3 999 0 -1.8 92.893
## 828 52 161 4 999 0 1.4 93.444
## 829 36 153 4 999 0 1.4 93.444
## 830 25 553 1 999 0 -2.9 92.201
## 831 30 445 1 999 0 1.4 93.444
## 832 31 267 4 999 0 1.1 93.994
## 833 44 175 11 999 0 1.4 93.918
## 834 41 160 6 999 0 1.1 93.994
## 835 38 183 1 999 0 -1.8 93.075
## 836 36 338 4 999 0 1.1 93.994
## 837 48 36 5 999 0 1.4 94.465
## 838 54 261 3 999 0 1.4 93.918
## 839 36 264 6 999 0 1.4 94.465
## 840 37 92 1 999 0 1.1 93.994
## 841 47 92 1 999 0 -1.8 93.075
## 842 38 9 1 999 0 -1.8 93.075
## 843 57 293 1 999 0 1.1 93.994
## 844 43 121 2 999 0 -1.8 93.075
## 845 41 343 2 999 0 -1.8 93.075
## 846 40 625 3 999 0 -1.8 93.075
## 847 53 456 1 999 0 -1.8 92.893
## 848 36 139 1 999 0 -1.8 92.893
## 849 36 172 2 999 0 1.4 93.918
## 850 25 299 3 999 0 -1.8 92.893
## 851 29 86 2 999 0 1.4 94.465
## 852 47 168 2 999 0 -1.8 92.893
## 853 64 693 2 999 0 -1.8 93.075
## 854 33 730 5 999 0 -1.8 92.893
## 855 31 1123 2 999 0 1.4 93.444
## 856 32 194 3 999 0 -1.8 92.893
## 857 42 134 2 999 0 1.1 93.994
## 858 24 126 2 999 0 1.4 93.918
## 859 43 141 4 999 0 -1.8 93.075
## 860 34 172 1 999 0 -1.8 93.075
## 861 47 251 3 999 0 1.1 93.994
## 862 26 36 2 999 0 -1.8 92.893
## 863 33 729 1 999 0 -1.8 92.893
## 864 41 911 2 999 0 1.4 93.918
## 865 46 138 1 999 0 1.1 93.994
## 866 28 498 2 999 0 1.1 93.994
## 867 28 330 2 999 0 1.4 93.918
## 868 48 105 3 999 0 -1.8 93.075
## 869 37 99 2 999 0 -1.8 93.075
## 870 37 851 2 999 0 1.1 93.994
## 871 31 35 3 999 0 1.4 93.918
## 872 30 285 1 999 0 -1.8 93.075
## 873 54 173 1 999 0 -1.8 92.893
## 874 32 709 1 999 0 -1.8 93.075
## 875 36 381 2 999 0 1.1 93.994
## 876 35 536 1 999 0 1.4 93.918
## 877 39 541 7 999 0 1.4 93.918
## 878 30 222 6 999 0 -1.8 92.893
## 879 40 316 3 999 0 1.1 93.994
## 880 56 340 1 999 0 1.1 93.994
## 881 42 231 1 999 0 1.4 93.444
## 882 57 251 1 999 0 1.1 93.994
## 883 38 131 2 999 0 -1.8 93.075
## 884 38 346 1 999 0 1.1 93.994
## 885 31 13 15 999 0 1.4 94.465
## 886 34 225 2 999 0 1.4 93.918
## 887 32 82 3 999 0 1.1 93.994
## 888 37 253 2 999 0 1.1 93.994
## 889 34 191 2 999 0 1.4 94.465
## 890 42 133 1 999 0 -0.1 93.200
## 891 47 463 2 999 0 1.1 93.994
## 892 26 230 2 999 0 -2.9 92.963
## 893 36 49 1 999 0 -1.8 92.893
## 894 39 38 3 999 0 1.4 94.465
## 895 57 1193 5 999 0 1.1 93.994
## 896 38 256 2 999 0 -1.1 94.199
## 897 35 65 1 999 0 1.1 93.994
## 898 33 656 1 999 0 -1.8 92.893
## 899 34 416 1 999 0 -1.8 93.075
## 900 47 251 2 999 0 1.4 93.444
## 901 55 49 1 999 0 1.4 93.918
## 902 36 322 2 999 0 -1.8 93.075
## 903 53 771 1 999 0 -1.8 93.075
## 904 48 115 4 999 0 1.1 93.994
## 905 48 63 1 999 0 1.4 94.465
## 906 37 460 8 999 0 1.4 94.465
## 907 29 58 1 999 0 1.4 93.444
## 908 32 1291 3 999 0 1.4 94.465
## 909 49 112 2 999 0 1.4 93.444
## 910 52 355 2 999 0 1.1 93.994
## 911 40 360 1 999 0 1.1 93.994
## 912 37 205 6 999 0 1.1 93.994
## 913 55 23 2 999 0 1.4 94.465
## 914 48 52 1 999 0 1.4 94.465
## 915 28 102 2 999 0 1.4 93.918
## 916 40 105 1 999 0 1.4 93.444
## 917 47 249 1 999 0 1.1 93.994
## 918 37 139 1 999 0 1.4 93.444
## 919 38 301 2 999 0 -1.8 93.075
## 920 47 108 1 999 0 1.4 94.465
## 921 44 18 2 999 0 1.4 93.918
## 922 44 175 2 999 0 1.4 94.465
## 923 31 93 1 999 0 1.1 93.994
## 924 30 127 1 999 0 1.4 94.465
## 925 37 131 3 999 0 -1.8 92.893
## 926 45 297 1 999 0 1.4 93.918
## 927 33 240 2 999 0 -0.1 93.200
## 928 34 204 5 999 0 -1.8 93.075
## 929 52 85 8 999 0 1.4 93.444
## 930 42 107 4 999 0 1.4 93.918
## 931 40 162 1 999 0 1.4 94.465
## 932 44 194 3 999 0 1.1 93.994
## 933 40 82 2 999 0 1.1 93.994
## 934 43 61 2 999 0 -0.1 93.200
## 935 45 637 1 999 0 -1.8 93.075
## 936 34 144 4 999 0 -1.8 92.893
## 937 37 246 2 999 0 1.1 93.994
## 938 32 44 1 999 0 1.4 93.918
## 939 26 199 1 999 0 1.4 93.918
## 940 44 262 4 999 0 1.4 93.444
## 941 36 262 1 999 0 1.4 93.918
## 942 26 123 2 999 0 1.1 93.994
## 943 47 63 2 999 0 1.4 94.465
## 944 59 117 2 999 0 1.4 93.444
## 945 53 127 3 999 0 1.4 93.918
## 946 33 555 1 999 0 1.1 93.994
## 947 43 151 6 999 0 1.4 94.465
## 948 36 191 1 999 0 1.4 93.918
## 949 44 25 6 999 0 1.4 94.465
## 950 28 278 2 999 0 1.4 93.918
## 951 47 67 1 999 0 1.4 93.918
## 952 51 99 3 999 0 -1.8 92.893
## 953 50 160 6 999 0 1.4 93.444
## 954 19 452 3 999 0 -1.8 93.075
## 955 37 94 7 999 0 1.4 94.465
## 956 52 306 1 999 0 1.1 93.994
## 957 35 121 1 999 0 -1.8 92.893
## 958 32 133 1 999 0 1.4 93.918
## 959 33 69 14 999 0 1.4 93.444
## 960 41 788 6 999 0 1.4 93.918
## 961 34 306 3 999 0 1.1 93.994
## 962 29 36 1 999 0 1.4 93.444
## 963 33 392 3 999 0 -1.8 93.075
## 964 57 100 1 999 0 -1.8 92.893
## 965 27 100 2 999 0 1.4 93.918
## 966 54 343 4 999 0 1.4 93.444
## 967 44 275 2 999 0 -0.1 93.200
## 968 55 129 3 999 0 1.4 93.918
## 969 36 148 2 999 0 1.1 93.994
## 970 39 255 1 999 0 1.4 93.444
## 971 25 835 1 999 0 1.4 93.918
## 972 39 67 2 999 0 1.4 93.918
## 973 36 355 4 999 0 1.4 94.465
## 974 28 5 1 999 0 -1.1 94.199
## 975 33 136 2 999 0 1.1 93.994
## 976 44 293 2 999 0 1.1 93.994
## 977 31 106 2 999 0 -0.1 93.200
## 978 49 152 1 999 0 1.4 93.918
## 979 44 289 1 999 0 1.4 94.465
## 980 30 117 2 999 0 1.4 93.918
## 981 43 425 1 999 0 1.1 93.994
## 982 29 76 2 999 0 1.1 93.994
## 983 35 115 1 999 0 -1.8 93.075
## 984 31 16 8 999 0 1.4 94.465
## 985 34 415 4 999 0 1.4 94.465
## 986 42 82 4 999 0 -1.8 93.075
## 987 44 75 1 999 0 1.1 93.994
## 988 51 115 2 999 0 -2.9 92.201
## 989 58 38 2 999 0 1.1 93.994
## 990 41 150 3 999 0 -1.8 92.893
## 991 35 14 21 999 0 1.4 94.465
## 992 40 154 1 999 0 -0.1 93.200
## 993 47 109 1 999 0 1.4 93.444
## 994 49 189 1 999 0 1.1 93.994
## 995 42 385 3 999 0 -1.8 92.893
## 996 44 10 4 999 0 1.4 94.465
## 997 37 475 3 999 0 -1.8 92.893
## 998 36 268 1 999 0 -1.8 92.893
## 999 43 320 3 999 0 1.1 93.994
## 1000 39 137 1 999 0 -1.8 93.075
## 1001 39 212 1 999 0 1.4 94.465
## 1002 42 26 1 999 0 1.4 94.465
## 1003 29 351 2 999 0 1.4 93.918
## 1004 32 617 4 999 0 1.1 93.994
## 1005 30 244 7 999 0 -2.9 92.963
## 1006 34 80 1 999 0 1.4 93.444
## 1007 36 53 4 999 0 -1.8 92.893
## 1008 38 91 2 999 0 1.1 93.994
## 1009 67 116 2 999 0 -1.1 94.199
## 1010 30 346 2 999 0 -1.8 93.075
## 1011 51 190 2 999 0 1.4 93.918
## 1012 57 102 4 999 0 1.4 93.918
## 1013 38 59 4 999 0 1.4 93.918
## 1014 42 277 3 999 0 1.4 93.444
## 1015 42 400 2 999 0 1.4 93.918
## 1016 53 351 1 999 0 -1.8 93.075
## 1017 44 163 2 999 0 1.1 93.994
## 1018 58 67 1 999 0 -1.8 92.893
## 1019 32 152 5 999 0 -1.8 92.893
## 1020 33 82 3 999 0 -1.8 92.893
## 1021 28 239 3 999 0 1.1 93.994
## 1022 54 203 1 999 0 1.4 93.918
## 1023 50 337 2 999 0 1.4 93.918
## 1024 58 180 6 999 0 1.4 94.465
## 1025 31 141 2 999 0 1.4 93.918
## 1026 58 218 1 999 0 1.4 94.465
## 1027 27 187 1 999 0 1.1 93.994
## 1028 35 91 1 999 0 1.4 93.444
## 1029 35 936 1 999 0 1.4 93.918
## 1030 27 149 1 999 0 1.4 93.918
## 1031 30 358 2 999 0 1.4 93.444
## 1032 36 82 4 999 0 1.4 94.465
## 1033 36 85 1 999 0 -1.8 92.893
## 1034 45 83 2 999 0 1.4 93.444
## 1035 73 135 1 999 0 -2.9 92.201
## 1036 26 353 2 999 0 1.1 93.994
## 1037 46 1649 2 999 0 1.4 93.918
## 1038 53 817 2 999 0 1.4 93.918
## 1039 46 43 1 999 0 1.1 93.994
## 1040 69 359 5 999 0 -1.7 94.055
## 1041 33 398 2 999 0 1.4 94.465
## 1042 58 528 1 999 0 1.4 93.444
## 1043 35 103 1 999 0 1.4 94.465
## 1044 34 15 9 999 0 -1.8 92.893
## 1045 52 151 1 999 0 1.4 93.444
## 1046 31 308 2 999 0 -1.8 93.075
## 1047 37 129 4 999 0 -1.8 92.893
## 1048 22 143 5 999 0 1.4 93.918
## 1049 48 290 5 999 0 1.1 93.994
## 1050 37 13 11 999 0 -1.8 92.893
## 1051 51 246 1 999 0 1.4 93.444
## 1052 26 378 1 999 0 -1.8 93.075
## 1053 26 120 6 999 0 1.1 93.994
## 1054 34 133 2 999 0 1.4 93.918
## 1055 32 221 2 999 0 1.4 93.918
## 1056 48 334 1 999 0 1.4 94.465
## 1057 44 345 1 999 0 -1.8 93.075
## 1058 41 82 2 999 0 1.4 94.465
## 1059 50 519 2 999 0 1.4 94.465
## 1060 39 306 1 999 0 -1.8 93.075
## 1061 46 407 1 999 0 1.4 93.918
## 1062 51 509 1 999 0 -2.9 92.963
## 1063 29 24 1 999 0 -2.9 92.963
## 1064 54 47 2 999 0 1.4 94.465
## 1065 51 78 1 999 0 1.4 93.918
## 1066 46 134 4 999 0 1.1 93.994
## 1067 52 541 5 999 0 1.1 93.994
## 1068 38 188 2 999 0 1.4 93.918
## 1069 49 448 5 999 0 1.4 93.444
## 1070 25 255 1 999 0 -2.9 92.201
## 1071 53 395 2 999 0 -0.1 93.200
## 1072 39 232 1 999 0 1.1 93.994
## 1073 34 131 2 999 0 -1.8 92.893
## 1074 32 82 5 999 0 1.4 93.444
## 1075 37 50 1 999 0 1.4 94.465
## 1076 41 385 3 999 0 1.4 93.918
## 1077 58 173 3 999 0 1.4 93.444
## 1078 45 636 3 999 0 -1.8 93.075
## 1079 38 202 1 999 0 -0.1 93.200
## 1080 41 325 1 999 0 -2.9 92.201
## 1081 32 531 1 999 0 -1.8 93.075
## 1082 55 357 1 999 0 1.4 93.918
## 1083 31 109 1 999 0 1.4 93.444
## 1084 45 126 5 999 0 1.4 94.465
## 1085 41 212 1 999 0 -1.8 93.075
## 1086 46 306 1 999 0 1.1 93.994
## 1087 29 48 1 999 0 -1.8 92.893
## 1088 57 554 2 999 0 -1.8 92.893
## 1089 27 46 2 999 0 1.4 94.465
## 1090 36 206 2 999 0 1.4 94.465
## 1091 38 57 1 999 0 1.1 93.994
## 1092 45 215 2 999 0 1.4 93.444
## 1093 33 56 2 999 0 1.4 93.444
## 1094 33 727 2 999 0 -1.8 93.075
## 1095 30 159 2 999 0 1.4 93.918
## 1096 39 23 1 999 0 1.4 94.465
## 1097 29 268 1 999 0 1.4 93.444
## 1098 30 648 1 999 0 -0.1 93.200
## 1099 27 80 4 999 0 -1.8 92.893
## 1100 24 292 1 999 0 -2.9 92.201
## 1101 44 142 2 999 0 1.1 93.994
## 1102 29 142 2 999 0 1.4 93.444
## 1103 33 405 2 999 0 -1.8 93.075
## 1104 52 87 5 999 0 1.4 93.918
## 1105 29 319 4 999 0 1.4 94.465
## 1106 26 174 2 999 0 1.4 93.918
## 1107 44 627 1 999 0 1.1 93.994
## 1108 27 162 2 999 0 1.1 93.994
## 1109 38 58 1 999 0 1.1 93.994
## 1110 51 277 3 999 0 1.1 93.994
## 1111 48 329 1 999 0 1.4 94.465
## 1112 37 136 1 999 0 1.1 93.994
## 1113 36 336 2 999 0 1.1 93.994
## 1114 33 335 3 999 0 1.4 93.444
## 1115 41 253 2 999 0 1.1 93.994
## 1116 51 956 1 999 0 -1.8 92.893
## 1117 58 89 3 999 0 1.4 93.444
## 1118 41 201 6 999 0 1.4 94.465
## 1119 57 44 3 999 0 -0.1 93.200
## 1120 39 344 1 999 0 -1.8 93.075
## 1121 39 184 2 999 0 1.4 93.918
## 1122 32 101 2 999 0 1.1 93.994
## 1123 30 153 2 999 0 1.4 94.465
## 1124 48 34 3 999 0 1.1 93.994
## 1125 36 865 1 999 0 1.1 93.994
## 1126 43 377 1 999 0 1.4 93.918
## 1127 52 67 2 999 0 1.1 93.994
## 1128 42 81 1 999 0 1.1 93.994
## 1129 30 159 1 999 0 -1.8 92.893
## 1130 42 126 3 999 0 1.4 93.918
## 1131 34 247 3 999 0 1.1 93.994
## 1132 56 35 1 999 0 1.4 94.465
## 1133 43 168 2 999 0 1.1 93.994
## 1134 29 88 1 999 0 1.4 93.444
## 1135 26 277 2 999 0 1.1 93.994
## 1136 29 161 3 999 0 -0.1 93.200
## 1137 32 80 4 999 0 1.4 94.465
## 1138 43 90 2 999 0 1.4 93.444
## 1139 32 65 5 999 0 -1.8 92.893
## 1140 57 137 7 999 0 1.4 93.918
## 1141 60 297 2 999 0 1.4 93.918
## 1142 41 116 1 999 0 1.4 93.444
## 1143 30 361 1 999 0 1.4 94.465
## 1144 49 832 2 999 0 -1.8 93.075
## 1145 38 764 2 999 0 1.4 93.918
## 1146 52 123 1 999 0 -0.1 93.200
## 1147 36 249 2 999 0 1.4 93.918
## 1148 42 145 2 999 0 1.1 93.994
## 1149 29 29 1 999 0 1.4 94.465
## 1150 38 79 1 999 0 -0.1 93.200
## 1151 41 513 3 999 0 1.4 94.465
## 1152 46 354 2 999 0 1.4 94.465
## 1153 47 84 3 999 0 1.4 93.918
## 1154 31 65 3 999 0 -3.4 92.649
## 1155 64 239 4 999 0 -1.7 94.027
## 1156 53 13 5 999 0 1.4 94.465
## 1157 33 61 3 999 0 1.4 94.465
## 1158 36 469 3 999 0 -1.8 93.075
## 1159 30 90 1 999 0 1.4 93.444
## 1160 56 79 3 999 0 1.4 94.465
## 1161 40 274 2 999 0 1.4 94.465
## 1162 55 133 8 999 0 -1.8 92.893
## 1163 39 653 4 999 0 1.4 93.918
## 1164 36 486 2 999 0 -1.8 93.075
## 1165 53 133 1 999 0 -1.8 92.893
## 1166 56 471 2 999 0 1.4 94.465
## 1167 33 135 2 999 0 1.1 93.994
## 1168 51 80 1 999 0 1.4 93.444
## 1169 50 132 1 999 0 1.1 93.994
## 1170 43 16 7 999 0 1.4 94.465
## 1171 29 170 5 999 0 -1.8 93.075
## 1172 51 86 1 999 0 1.4 93.444
## 1173 41 407 4 999 0 -0.1 93.200
## 1174 57 111 1 999 0 1.1 93.994
## 1175 53 56 1 999 0 -1.8 92.893
## 1176 46 739 1 999 0 1.4 93.444
## 1177 37 47 1 999 0 -0.1 93.200
## 1178 38 143 1 999 0 -1.8 93.075
## 1179 53 80 5 999 0 1.4 94.465
## 1180 36 193 3 999 0 1.4 94.465
## 1181 38 132 1 999 0 -1.8 92.893
## 1182 45 215 3 999 0 1.4 93.444
## 1183 37 6 5 999 0 -0.1 93.200
## 1184 41 911 2 999 0 1.1 93.994
## 1185 56 522 1 999 0 1.4 93.918
## 1186 35 471 2 999 0 1.1 93.994
## 1187 58 250 1 999 0 1.4 94.465
## 1188 27 103 1 999 0 1.4 94.465
## 1189 30 158 2 999 0 1.4 94.465
## 1190 29 274 3 999 0 1.4 93.918
## 1191 31 175 2 999 0 1.4 93.918
## 1192 39 10 7 999 0 -0.1 93.200
## 1193 32 47 1 999 0 -1.7 94.027
## 1194 39 67 3 999 0 1.1 93.994
## 1195 45 994 1 999 0 1.4 93.444
## 1196 42 516 5 999 0 1.4 94.465
## 1197 56 21 20 999 0 1.4 94.465
## 1198 62 141 2 999 0 -3.0 92.713
## 1199 45 27 2 999 0 1.4 93.444
## 1200 31 96 2 999 0 1.4 93.444
## 1201 38 693 3 999 0 1.4 94.465
## 1202 60 60 2 999 0 1.4 93.444
## 1203 29 112 1 999 0 1.4 93.444
## 1204 31 716 3 999 0 -1.1 94.601
## 1205 37 647 2 999 0 -1.8 93.075
## 1206 33 419 1 999 0 -1.8 93.075
## 1207 50 145 4 999 0 1.1 93.994
## 1208 31 127 1 999 0 1.1 93.994
## 1209 57 360 13 999 0 1.4 93.918
## 1210 28 133 4 999 0 1.1 93.994
## 1211 32 518 3 999 0 1.4 93.918
## 1212 43 14 9 999 0 -0.1 93.200
## 1213 31 39 3 999 0 -2.9 92.963
## 1214 28 237 4 999 0 -1.8 92.893
## 1215 42 353 1 999 0 1.4 93.444
## 1216 27 212 1 999 0 -1.8 93.369
## 1217 58 80 3 999 0 1.4 94.465
## 1218 24 159 1 999 0 1.4 93.918
## 1219 32 177 2 999 0 -1.8 92.893
## 1220 49 4 1 999 0 -1.7 94.027
## 1221 38 47 1 999 0 1.4 93.918
## 1222 25 277 1 999 0 -1.8 92.843
## 1223 41 191 1 999 0 1.4 93.444
## 1224 39 479 2 999 0 -1.8 93.075
## 1225 36 136 1 999 0 1.1 93.994
## 1226 26 200 3 999 0 1.4 93.918
## 1227 58 186 2 999 0 -0.1 93.200
## 1228 27 101 12 999 0 -1.8 92.843
## 1229 33 11 21 999 0 1.4 94.465
## 1230 37 17 7 999 0 1.4 93.444
## 1231 28 140 11 999 0 -2.9 92.201
## 1232 30 253 1 999 0 1.4 93.918
## 1233 29 152 1 999 0 1.4 93.444
## 1234 68 330 3 999 0 -1.8 93.749
## 1235 33 98 2 999 0 1.4 93.918
## 1236 35 296 2 999 0 -1.8 92.893
## 1237 41 150 6 999 0 1.1 93.994
## 1238 34 104 3 999 0 -1.8 93.075
## 1239 44 238 3 999 0 1.4 93.918
## 1240 54 250 1 999 0 -1.8 92.893
## 1241 35 301 2 999 0 -1.8 92.893
## 1242 33 84 4 999 0 1.1 93.994
## 1243 42 29 4 999 0 1.1 93.994
## 1244 28 315 3 999 0 1.1 93.994
## 1245 31 202 3 999 0 -1.1 94.767
## 1246 34 544 3 999 0 -1.8 92.843
## 1247 44 247 3 999 0 1.4 94.465
## 1248 34 763 1 999 0 -1.8 92.893
## 1249 45 131 1 999 0 1.1 93.994
## 1250 59 94 1 999 0 1.4 93.444
## 1251 30 104 6 999 0 1.1 93.994
## 1252 34 138 2 999 0 -0.1 93.200
## 1253 49 25 1 999 0 1.4 94.465
## 1254 31 80 4 999 0 -1.8 92.893
## 1255 42 46 4 999 0 -1.8 93.075
## 1256 44 170 2 999 0 1.4 93.918
## 1257 50 452 2 999 0 1.4 93.918
## 1258 45 924 3 999 0 1.4 94.465
## 1259 35 263 6 999 0 -0.1 93.200
## 1260 45 234 1 999 0 1.4 93.444
## 1261 46 195 1 999 0 1.4 93.444
## 1262 24 1193 2 999 0 1.1 93.994
## 1263 42 41 1 999 0 1.4 93.444
## 1264 43 1242 2 999 0 1.4 93.918
## 1265 42 123 2 999 0 1.4 93.918
## 1266 45 420 1 999 0 1.4 93.918
## 1267 35 529 1 999 0 -0.1 93.200
## 1268 34 381 3 999 0 1.4 94.465
## 1269 24 86 1 999 0 1.1 93.994
## 1270 30 96 1 999 0 1.4 93.918
## 1271 27 96 2 999 0 -2.9 92.963
## 1272 54 62 1 999 0 -0.1 93.200
## 1273 42 40 1 999 0 1.4 93.444
## 1274 38 56 1 999 0 1.4 94.465
## 1275 38 220 2 999 0 1.4 94.465
## 1276 32 120 2 999 0 -1.8 92.893
## 1277 29 215 1 999 0 -0.1 93.200
## 1278 40 30 4 999 0 1.4 94.465
## 1279 45 239 1 999 0 1.1 93.994
## 1280 38 224 5 999 0 1.1 93.994
## 1281 29 107 1 999 0 -2.9 92.201
## 1282 52 682 10 999 0 1.4 93.918
## 1283 52 160 1 999 0 1.4 94.465
## 1284 51 241 4 999 0 1.4 93.444
## 1285 32 191 2 999 0 1.4 93.918
## 1286 49 838 1 999 0 1.4 94.465
## 1287 33 125 1 999 0 1.4 93.444
## 1288 56 661 4 999 0 1.4 93.918
## 1289 32 1366 1 999 0 1.4 93.444
## 1290 59 28 1 999 0 1.4 93.444
## 1291 50 88 5 999 0 1.1 93.994
## 1292 33 179 2 999 0 1.1 93.994
## 1293 58 182 1 999 0 -1.8 92.893
## 1294 26 37 4 999 0 1.4 93.918
## 1295 36 172 1 999 0 1.4 93.444
## 1296 45 124 3 999 0 1.4 94.465
## 1297 41 12 5 999 0 -0.1 93.200
## 1298 47 180 1 999 0 1.4 94.465
## 1299 55 386 2 999 0 -1.8 93.075
## 1300 54 257 1 999 0 1.4 93.444
## 1301 58 901 1 999 0 -1.8 92.893
## 1302 52 173 7 999 0 1.4 93.444
## 1303 53 23 3 999 0 1.4 94.465
## 1304 49 339 1 999 0 -2.9 92.963
## 1305 32 1162 2 999 0 -0.1 93.200
## 1306 34 83 2 999 0 -1.8 93.075
## 1307 26 676 3 999 0 -1.8 92.893
## 1308 47 229 1 999 0 1.1 93.994
## 1309 46 258 5 999 0 1.1 93.994
## 1310 36 10 5 999 0 -1.8 92.893
## 1311 35 516 1 999 0 -1.7 94.055
## 1312 30 307 2 999 0 -0.1 93.200
## 1313 55 105 1 999 0 1.4 93.444
## 1314 31 173 2 999 0 1.4 93.918
## 1315 73 305 1 999 0 -2.9 92.201
## 1316 34 128 3 999 0 -1.8 92.893
## 1317 32 309 3 999 0 1.4 93.444
## 1318 45 106 1 999 0 -1.8 93.075
## 1319 26 175 2 999 0 -2.9 92.963
## 1320 40 148 1 999 0 1.1 93.994
## 1321 32 87 1 999 0 -2.9 92.201
## 1322 25 304 2 999 0 1.1 93.994
## 1323 55 44 4 999 0 1.4 94.465
## 1324 32 1692 2 999 0 1.1 93.994
## 1325 50 146 1 999 0 1.4 93.918
## 1326 58 48 2 999 0 1.4 93.444
## 1327 45 328 1 999 0 1.4 93.918
## 1328 55 188 3 999 0 1.4 93.444
## 1329 42 46 1 999 0 1.4 93.918
## 1330 32 800 5 999 0 -1.8 92.893
## 1331 29 121 1 999 0 -2.9 92.201
## 1332 32 280 1 999 0 1.1 93.994
## 1333 28 159 1 999 0 1.4 93.918
## 1334 30 114 2 999 0 1.1 93.994
## 1335 63 107 3 999 0 -2.9 92.201
## 1336 33 127 1 999 0 1.1 93.994
## 1337 28 20 3 999 0 1.4 94.465
## 1338 30 40 1 999 0 1.4 94.465
## 1339 37 17 8 999 0 -1.8 92.893
## 1340 48 274 2 999 0 1.1 93.994
## 1341 46 852 9 999 0 1.4 93.918
## 1342 32 174 1 999 0 1.4 94.465
## 1343 56 422 1 999 0 -1.8 93.075
## 1344 27 408 2 999 0 1.1 93.994
## 1345 31 7 1 999 0 -1.7 94.215
## 1346 28 30 18 999 0 1.1 93.994
## 1347 32 59 3 999 0 1.1 93.994
## 1348 26 203 1 999 0 1.1 93.994
## 1349 53 139 1 999 0 -2.9 92.201
## 1350 45 64 2 999 0 1.4 93.918
## 1351 29 132 5 999 0 1.1 93.994
## 1352 56 51 19 999 0 1.4 94.465
## 1353 52 96 2 999 0 -0.1 93.200
## 1354 38 62 1 999 0 -1.8 93.075
## 1355 28 663 3 999 0 1.1 93.994
## 1356 21 493 2 999 0 -2.9 92.963
## 1357 46 413 5 999 0 -2.9 92.469
## 1358 54 95 1 999 0 1.4 93.444
## 1359 35 193 1 999 0 1.4 93.444
## 1360 31 136 1 999 0 1.4 93.444
## 1361 36 476 3 999 0 1.1 93.994
## 1362 42 99 3 999 0 1.1 93.994
## 1363 34 201 4 999 0 1.4 93.444
## 1364 57 529 4 999 0 1.1 93.994
## 1365 32 166 3 999 0 1.4 93.444
## 1366 43 818 2 999 0 1.4 94.465
## 1367 36 49 5 999 0 1.4 94.465
## 1368 37 262 2 999 0 1.4 94.465
## 1369 38 87 1 999 0 1.4 93.444
## 1370 44 140 5 999 0 1.4 93.444
## 1371 30 50 4 999 0 1.4 93.918
## 1372 47 115 2 999 0 -1.8 93.075
## 1373 42 136 4 999 0 1.4 93.918
## 1374 57 134 2 999 0 -0.1 93.200
## 1375 42 125 3 999 0 1.1 93.994
## 1376 53 327 2 999 0 1.1 93.994
## 1377 44 903 4 999 0 -1.8 92.893
## 1378 34 79 2 999 0 -0.1 93.200
## 1379 31 87 2 999 0 1.4 93.918
## 1380 48 99 2 999 0 1.4 93.918
## 1381 31 1319 2 999 0 1.4 93.918
## 1382 33 70 1 999 0 -1.8 92.893
## 1383 33 576 1 999 0 1.1 93.994
## 1384 23 557 2 999 0 1.1 93.994
## 1385 28 453 3 999 0 1.4 93.918
## 1386 52 145 1 999 0 1.1 93.994
## 1387 45 179 4 999 0 -0.1 93.200
## 1388 32 96 3 999 0 1.1 93.994
## 1389 37 183 2 999 0 -3.4 92.431
## 1390 48 190 1 999 0 -1.8 93.075
## 1391 32 65 2 999 0 1.4 94.465
## 1392 53 61 4 999 0 -0.1 93.200
## 1393 34 1245 19 999 0 1.1 93.994
## 1394 58 155 5 999 0 1.4 93.444
## 1395 47 48 1 999 0 1.4 94.465
## 1396 34 183 1 999 0 -1.8 92.893
## 1397 46 116 6 999 0 1.1 93.994
## 1398 41 342 1 999 0 -1.8 93.749
## 1399 57 117 2 999 0 1.1 93.994
## 1400 52 258 3 999 0 -1.8 92.893
## 1401 35 360 2 999 0 1.4 94.465
## 1402 52 107 3 999 0 1.1 93.994
## 1403 47 384 6 999 0 1.4 93.444
## 1404 56 177 5 999 0 1.4 93.918
## 1405 43 255 1 999 0 -2.9 92.201
## 1406 47 152 5 999 0 1.4 93.444
## 1407 47 37 3 999 0 1.4 94.465
## 1408 35 229 3 999 0 -1.8 93.075
## 1409 56 520 2 999 0 -1.8 92.893
## 1410 60 154 5 999 0 1.4 93.444
## 1411 39 297 1 999 0 -1.8 93.075
## 1412 47 1161 3 999 0 1.1 93.994
## 1413 39 337 1 999 0 1.4 93.918
## 1414 38 167 2 999 0 1.4 94.465
## 1415 23 58 1 999 0 -1.8 92.893
## 1416 46 24 4 999 0 1.4 94.465
## 1417 69 240 1 999 0 -3.4 92.379
## 1418 40 775 1 999 0 -1.8 93.075
## 1419 59 135 2 999 0 1.4 94.465
## 1420 35 348 4 999 0 -1.8 92.893
## 1421 51 70 1 999 0 1.4 93.444
## 1422 42 14 15 999 0 1.1 93.994
## 1423 48 360 1 999 0 1.1 93.994
## 1424 33 105 2 999 0 -3.4 92.379
## 1425 44 735 1 999 0 1.4 93.918
## 1426 30 252 1 999 0 1.4 93.918
## 1427 64 173 2 999 0 -1.8 93.075
## 1428 37 180 2 999 0 -1.8 93.075
## 1429 31 191 3 999 0 1.4 94.465
## 1430 49 70 3 999 0 1.4 93.918
## 1431 36 111 4 999 0 1.4 94.465
## 1432 33 191 1 999 0 1.4 93.918
## 1433 48 88 4 999 0 1.4 93.918
## 1434 35 169 2 999 0 1.1 93.994
## 1435 50 502 2 999 0 1.4 93.918
## 1436 45 182 1 999 0 1.1 93.994
## 1437 45 35 3 999 0 1.1 93.994
## 1438 29 487 3 999 0 1.4 93.918
## 1439 59 150 2 999 0 1.4 93.918
## 1440 37 140 5 999 0 1.4 94.465
## 1441 32 54 1 999 0 -1.8 93.075
## 1442 46 28 8 999 0 1.1 93.994
## 1443 43 118 1 999 0 1.4 93.918
## 1444 37 286 1 999 0 1.1 93.994
## 1445 34 95 1 999 0 1.4 94.465
## 1446 35 88 5 999 0 1.1 93.994
## 1447 38 158 3 999 0 1.1 93.994
## 1448 41 326 3 999 0 1.4 93.444
## 1449 56 757 2 999 0 -0.1 93.200
## 1450 33 137 3 999 0 -2.9 92.963
## 1451 22 184 4 999 0 1.4 94.465
## 1452 50 604 4 999 0 1.4 93.444
## 1453 37 31 1 999 0 1.4 94.465
## 1454 31 173 1 999 0 1.4 93.918
## 1455 33 184 2 999 0 1.4 93.918
## 1456 51 150 1 999 0 1.4 93.444
## 1457 34 193 1 999 0 1.4 93.444
## 1458 36 298 3 999 0 1.1 93.994
## 1459 48 121 1 999 0 1.1 93.994
## 1460 35 283 1 999 0 1.4 93.918
## 1461 28 161 3 999 0 1.1 93.994
## 1462 32 324 2 999 0 1.1 93.994
## 1463 32 73 4 999 0 -1.8 92.893
## 1464 31 323 4 999 0 1.1 93.994
## 1465 55 258 1 999 0 1.4 93.918
## 1466 45 194 2 999 0 1.4 93.918
## 1467 30 408 1 999 0 1.1 93.994
## 1468 49 115 20 999 0 1.4 94.465
## 1469 33 80 1 999 0 -1.7 94.055
## 1470 35 116 1 999 0 1.1 93.994
## 1471 44 109 4 999 0 1.4 94.465
## 1472 44 84 2 999 0 1.4 93.444
## 1473 28 83 2 999 0 1.4 93.918
## 1474 60 24 11 999 0 1.4 93.444
## 1475 32 247 1 999 0 1.1 93.994
## 1476 34 302 2 999 0 1.4 94.465
## 1477 50 455 4 999 0 1.4 93.444
## 1478 53 15 2 999 0 -0.1 93.200
## 1479 34 114 5 999 0 -0.1 93.200
## 1480 31 143 1 999 0 1.4 93.918
## 1481 34 157 2 999 0 -1.8 93.075
## 1482 33 227 2 999 0 1.1 93.994
## 1483 47 365 3 999 0 1.4 93.918
## 1484 31 1106 3 999 0 1.1 93.994
## 1485 30 121 1 999 0 1.4 93.918
## 1486 38 772 1 999 0 1.1 93.994
## 1487 29 754 1 999 0 -1.8 93.075
## 1488 30 191 28 999 0 1.4 94.465
## 1489 47 167 1 999 0 1.4 93.444
## 1490 40 320 1 999 0 -1.8 92.893
## 1491 32 189 3 999 0 -1.8 92.893
## 1492 25 96 3 999 0 1.4 93.918
## 1493 33 436 4 999 0 1.4 93.918
## 1494 38 39 1 999 0 -1.8 92.893
## 1495 21 127 2 999 0 1.4 93.918
## 1496 35 237 3 999 0 1.1 93.994
## 1497 56 159 4 999 0 1.4 93.918
## 1498 54 296 1 999 0 1.1 93.994
## 1499 32 51 2 999 0 -0.1 93.200
## 1500 42 24 1 999 0 1.4 94.465
## 1501 48 788 2 999 0 1.1 93.994
## 1502 52 188 1 999 0 1.4 94.465
## 1503 35 179 21 999 0 1.4 94.465
## 1504 49 110 1 999 0 1.1 93.994
## 1505 36 78 2 999 0 -1.8 93.075
## 1506 39 107 1 999 0 -0.1 93.200
## 1507 40 182 2 999 0 -1.8 92.893
## 1508 56 188 14 999 0 1.4 93.918
## 1509 28 73 2 999 0 1.4 94.465
## 1510 22 34 10 999 0 -1.8 92.893
## 1511 29 803 1 999 0 1.1 93.994
## 1512 39 215 3 999 0 1.4 93.444
## 1513 26 182 2 999 0 -1.8 92.893
## 1514 51 409 2 999 0 1.4 94.465
## 1515 25 294 1 999 0 -1.8 92.843
## 1516 26 34 3 999 0 1.4 93.918
## 1517 55 41 3 999 0 1.1 93.994
## 1518 29 55 5 999 0 1.4 94.465
## 1519 58 186 2 999 0 -1.8 92.893
## 1520 46 257 1 999 0 1.4 93.918
## 1521 49 104 1 999 0 1.4 93.444
## 1522 39 274 9 999 0 1.4 94.465
## 1523 40 144 2 999 0 1.4 93.444
## 1524 41 97 3 999 0 1.4 93.444
## 1525 42 45 22 999 0 1.4 94.465
## 1526 33 247 2 999 0 1.4 93.444
## 1527 40 83 3 999 0 1.1 93.994
## 1528 35 213 2 999 0 1.4 93.918
## 1529 40 10 3 999 0 -0.1 93.200
## 1530 45 117 1 999 0 1.1 93.994
## 1531 55 1199 3 999 0 -0.1 93.200
## 1532 35 100 2 999 0 1.1 93.994
## 1533 44 172 1 999 0 1.1 93.994
## 1534 31 40 2 999 0 1.4 94.465
## 1535 23 1144 3 999 0 1.1 93.994
## 1536 54 235 1 999 0 1.1 93.994
## 1537 37 79 1 999 0 1.1 93.994
## 1538 37 23 1 999 0 1.4 93.918
## 1539 48 162 2 999 0 -0.1 93.200
## 1540 42 89 1 999 0 1.4 94.465
## 1541 32 209 3 999 0 1.1 93.994
## 1542 46 359 1 999 0 1.4 93.918
## 1543 41 357 1 999 0 1.4 93.918
## 1544 31 742 2 999 0 1.4 93.444
## 1545 48 253 1 999 0 1.1 93.994
## 1546 57 6 7 999 0 -0.1 93.200
## 1547 33 248 2 999 0 1.4 94.465
## 1548 38 166 3 999 0 1.1 93.994
## 1549 34 377 1 999 0 -1.8 92.893
## 1550 25 73 2 999 0 -1.8 92.893
## 1551 42 140 2 999 0 1.4 94.465
## 1552 44 369 1 999 0 1.4 93.918
## 1553 32 307 3 999 0 1.4 94.465
## 1554 54 326 2 999 0 -0.1 93.200
## 1555 38 71 1 999 0 -0.1 93.200
## 1556 33 436 2 999 0 1.4 93.444
## 1557 56 49 2 999 0 1.4 94.465
## 1558 28 65 2 999 0 -1.8 93.075
## 1559 35 157 1 999 0 1.4 93.918
## 1560 33 208 3 999 0 -1.8 92.893
## 1561 55 106 3 999 0 1.4 93.918
## 1562 44 122 1 999 0 1.4 93.444
## 1563 40 37 2 999 0 1.4 94.465
## 1564 42 112 2 999 0 1.4 93.918
## 1565 58 129 2 999 0 1.4 93.444
## 1566 50 98 17 999 0 1.1 93.994
## 1567 41 709 5 999 0 -1.8 92.893
## 1568 29 161 12 999 0 1.1 93.994
## 1569 62 172 4 999 0 -2.9 92.201
## 1570 25 21 2 999 0 -1.8 92.893
## 1571 40 1087 2 999 0 1.1 93.994
## 1572 31 90 2 999 0 1.1 93.994
## 1573 57 784 1 999 0 1.4 93.444
## 1574 32 309 5 999 0 1.4 93.444
## 1575 40 237 1 999 0 -1.8 92.893
## 1576 27 630 2 999 0 -2.9 92.201
## 1577 53 528 1 999 0 -0.1 93.200
## 1578 47 622 2 999 0 1.1 93.994
## 1579 42 98 1 999 0 1.4 93.918
## 1580 58 90 1 999 0 -1.8 92.893
## 1581 59 435 4 999 0 1.4 94.465
## 1582 34 69 1 999 0 1.1 93.994
## 1583 43 257 3 999 0 1.1 93.994
## 1584 33 286 2 999 0 1.4 93.918
## 1585 35 171 1 999 0 -0.1 93.200
## 1586 39 224 1 999 0 1.4 93.444
## 1587 28 557 1 999 0 1.1 93.994
## 1588 41 66 1 999 0 1.4 94.465
## 1589 39 368 2 999 0 1.4 94.465
## 1590 24 276 1 999 0 -2.9 92.201
## 1591 52 151 3 999 0 1.1 93.994
## 1592 50 893 3 999 0 1.1 93.994
## 1593 59 424 1 999 0 1.1 93.994
## 1594 24 138 2 999 0 1.4 93.918
## 1595 42 9 9 999 0 -1.8 92.893
## 1596 42 180 3 999 0 1.4 94.465
## 1597 30 168 4 999 0 -1.8 92.893
## 1598 34 426 2 999 0 1.4 94.465
## 1599 44 185 3 999 0 1.4 93.918
## 1600 29 43 1 999 0 -0.1 93.200
## 1601 37 912 1 999 0 1.1 93.994
## 1602 25 72 2 999 0 1.1 93.994
## 1603 35 76 12 999 0 1.4 94.465
## 1604 35 46 10 999 0 1.4 94.465
## 1605 32 180 2 999 0 1.1 93.994
## 1606 34 176 1 999 0 1.4 94.465
## 1607 51 28 4 999 0 -0.1 93.200
## 1608 45 211 3 999 0 1.4 93.444
## 1609 52 303 2 999 0 -2.9 92.963
## 1610 36 165 3 999 0 -1.8 93.075
## 1611 26 175 14 999 0 1.4 94.465
## 1612 40 277 3 999 0 1.1 93.994
## 1613 44 48 4 999 0 -0.1 93.200
## 1614 32 219 2 999 0 1.4 93.444
## 1615 39 159 1 999 0 1.1 93.994
## 1616 46 82 2 999 0 -0.1 93.200
## 1617 35 8 3 999 0 -0.1 93.200
## 1618 29 206 1 999 0 -1.8 92.893
## 1619 37 43 11 999 0 1.4 93.918
## 1620 53 206 3 999 0 -1.8 92.893
## 1621 39 346 4 999 0 1.1 93.994
## 1622 44 113 1 999 0 1.4 94.465
## 1623 30 173 4 999 0 -1.8 92.893
## 1624 56 94 7 999 0 -0.1 93.200
## 1625 36 245 5 999 0 -1.8 93.075
## 1626 37 78 13 999 0 1.1 93.994
## 1627 28 265 1 999 0 1.1 93.994
## 1628 30 169 1 999 0 -1.8 92.893
## 1629 56 308 2 999 0 -2.9 92.469
## 1630 30 12 14 999 0 1.4 94.465
## 1631 27 186 2 999 0 1.4 93.918
## 1632 46 140 1 999 0 1.1 93.994
## 1633 29 125 1 999 0 1.1 93.994
## 1634 42 10 3 999 0 -0.1 93.200
## 1635 31 76 1 999 0 -3.4 92.431
## 1636 32 44 1 999 0 -1.8 92.893
## 1637 51 153 1 999 0 1.1 93.994
## 1638 30 812 1 999 0 1.4 93.918
## 1639 52 401 1 999 0 -1.8 92.893
## 1640 53 51 2 999 0 1.4 94.465
## 1641 38 353 2 999 0 1.1 93.994
## 1642 31 22 12 999 0 1.4 94.465
## 1643 46 106 1 999 0 1.1 93.994
## 1644 37 115 1 999 0 1.4 93.444
## 1645 34 210 1 999 0 -1.8 93.075
## 1646 36 81 1 999 0 1.4 93.444
## 1647 55 186 2 999 0 -2.9 92.963
## 1648 50 85 4 999 0 1.1 93.994
## 1649 49 183 2 999 0 1.4 94.465
## 1650 48 29 2 999 0 1.4 94.465
## 1651 34 171 2 999 0 -1.8 93.075
## 1652 31 351 3 999 0 1.4 93.444
## 1653 41 70 1 999 0 1.1 93.994
## 1654 39 496 4 999 0 1.1 93.994
## 1655 37 145 1 999 0 -2.9 92.963
## 1656 23 13 8 999 0 -1.8 92.893
## 1657 52 70 4 999 0 -1.8 93.075
## 1658 40 117 2 999 0 1.1 93.994
## 1659 33 69 2 999 0 1.4 93.918
## 1660 37 210 1 999 0 -1.8 92.893
## 1661 36 297 1 999 0 1.1 93.994
## 1662 24 34 7 999 0 -1.8 92.893
## 1663 39 53 1 999 0 -1.8 92.893
## 1664 33 111 1 999 0 1.4 93.444
## 1665 53 373 1 999 0 1.4 94.465
## 1666 28 65 13 999 0 1.1 93.994
## 1667 33 38 5 999 0 1.4 94.465
## 1668 27 106 5 999 0 1.4 94.465
## 1669 28 462 1 999 0 -3.4 92.431
## 1670 32 891 4 999 0 1.4 93.918
## 1671 42 591 3 999 0 1.4 93.918
## 1672 56 75 4 999 0 1.4 94.465
## 1673 56 11 5 999 0 1.4 94.465
## 1674 34 6 1 999 0 -1.1 94.601
## 1675 53 317 1 999 0 1.1 93.994
## 1676 32 92 2 999 0 1.1 93.994
## 1677 34 76 1 999 0 -1.8 93.075
## 1678 41 213 2 999 0 1.4 94.465
## 1679 31 298 3 999 0 1.1 93.994
## 1680 41 153 2 999 0 1.1 93.994
## 1681 24 113 1 999 0 1.4 94.465
## 1682 30 1015 1 999 0 -1.8 92.893
## 1683 63 91 2 999 0 -3.4 92.431
## 1684 47 216 3 999 0 1.1 93.994
## 1685 42 456 2 999 0 1.1 93.994
## 1686 38 24 5 999 0 1.4 94.465
## 1687 48 312 3 999 0 -1.8 92.893
## 1688 35 11 2 999 0 -0.1 93.200
## 1689 50 430 1 999 0 -0.1 93.200
## 1690 41 41 1 999 0 -1.8 93.075
## 1691 30 154 1 999 0 1.1 93.994
## 1692 38 30 7 999 0 -1.8 92.893
## 1693 43 99 5 999 0 1.4 93.444
## 1694 45 386 3 999 0 1.4 93.918
## 1695 37 640 3 999 0 1.4 93.918
## 1696 35 348 4 999 0 -1.8 92.893
## 1697 36 235 1 999 0 -1.8 93.075
## 1698 34 73 1 999 0 1.4 94.465
## 1699 46 3253 1 999 0 -0.1 93.798
## 1700 54 86 2 999 0 1.4 93.918
## 1701 34 483 3 999 0 1.4 93.918
## 1702 41 184 4 999 0 -1.8 93.075
## 1703 34 207 4 999 0 1.1 93.994
## 1704 29 1007 6 999 0 -2.9 92.469
## 1705 31 596 1 999 0 1.4 93.918
## 1706 23 50 5 999 0 -1.8 92.893
## 1707 33 233 1 999 0 -3.4 92.431
## 1708 26 138 1 999 0 1.1 93.994
## 1709 35 710 1 999 0 1.1 93.994
## 1710 45 155 1 999 0 -2.9 92.963
## 1711 55 190 2 999 0 -1.8 92.893
## 1712 29 257 1 999 0 -1.8 93.369
## 1713 29 130 2 999 0 1.4 93.918
## 1714 57 850 3 999 0 1.4 94.465
## 1715 43 105 3 999 0 1.4 93.918
## 1716 40 133 1 999 0 -1.8 93.075
## 1717 38 46 2 999 0 1.1 93.994
## 1718 34 197 4 999 0 1.1 93.994
## 1719 33 57 3 999 0 1.4 93.444
## 1720 45 49 1 999 0 1.4 93.918
## 1721 47 135 1 999 0 -0.1 93.200
## 1722 32 172 3 999 0 1.4 93.918
## 1723 47 310 3 999 0 1.4 93.444
## 1724 21 149 1 999 0 -3.4 92.431
## 1725 37 288 2 999 0 -1.8 92.893
## 1726 45 275 1 999 0 1.1 93.994
## 1727 38 271 1 999 0 -0.1 93.200
## 1728 23 374 1 999 0 -3.4 92.431
## 1729 26 442 12 999 0 1.4 93.918
## 1730 43 48 1 999 0 -1.8 92.893
## 1731 44 570 4 999 0 -0.1 93.200
## 1732 56 621 4 999 0 1.1 93.994
## 1733 33 157 1 999 0 1.4 93.444
## 1734 40 181 2 999 0 1.4 94.465
## 1735 28 316 4 999 0 -2.9 92.469
## 1736 37 122 5 999 0 1.1 93.994
## 1737 58 72 30 999 0 1.4 93.918
## 1738 52 854 2 999 0 1.1 93.994
## 1739 37 107 1 999 0 1.1 93.994
## 1740 39 79 4 999 0 -0.1 93.200
## 1741 57 255 2 999 0 1.1 93.994
## 1742 52 172 1 999 0 1.4 93.444
## 1743 28 207 1 999 0 1.1 93.994
## 1744 48 109 2 999 0 1.4 93.444
## 1745 49 1980 2 999 0 1.1 93.994
## 1746 29 24 11 999 0 1.4 94.465
## 1747 30 251 1 999 0 1.1 93.994
## 1748 41 160 2 999 0 1.1 93.994
## 1749 35 176 4 999 0 1.4 94.465
## 1750 26 100 2 999 0 -1.8 93.075
## 1751 50 213 4 999 0 -1.8 92.893
## 1752 30 41 2 999 0 1.4 93.918
## 1753 39 155 2 999 0 1.4 93.444
## 1754 39 92 1 999 0 1.4 94.465
## 1755 52 83 4 999 0 1.1 93.994
## 1756 30 345 2 999 0 -0.1 93.200
## 1757 38 98 1 999 0 -1.8 92.893
## 1758 37 28 1 999 0 1.4 94.465
## 1759 37 252 6 999 0 1.4 93.918
## 1760 37 89 2 999 0 1.4 93.444
## 1761 32 109 3 999 0 1.4 93.918
## 1762 45 174 1 999 0 -0.1 93.200
## 1763 38 173 2 999 0 1.4 94.465
## 1764 51 243 3 999 0 1.1 93.994
## 1765 25 446 3 999 0 1.4 94.465
## 1766 44 734 2 999 0 1.4 93.444
## 1767 38 512 1 999 0 1.1 93.994
## 1768 29 256 1 999 0 1.1 93.994
## 1769 37 138 4 999 0 1.1 93.994
## 1770 50 257 1 999 0 -1.8 93.075
## 1771 36 61 1 999 0 1.4 94.465
## 1772 43 157 1 999 0 -1.8 92.893
## 1773 53 168 3 999 0 1.1 93.994
## 1774 42 123 1 999 0 1.1 93.994
## 1775 38 438 1 999 0 1.1 93.994
## 1776 48 175 1 999 0 1.4 93.444
## 1777 29 289 2 999 0 -2.9 92.201
## 1778 38 153 4 999 0 1.1 93.994
## 1779 47 256 8 999 0 1.4 94.465
## 1780 49 532 3 999 0 -1.8 92.893
## 1781 31 85 2 999 0 1.4 93.918
## 1782 52 1104 2 999 0 -3.4 92.379
## 1783 42 277 2 999 0 -1.8 93.075
## 1784 35 107 1 999 0 1.4 93.444
## 1785 27 198 1 999 0 1.4 93.918
## 1786 55 122 1 999 0 1.4 93.444
## 1787 51 202 1 999 0 1.1 93.994
## 1788 35 123 4 999 0 1.1 93.994
## 1789 53 199 1 999 0 1.4 93.918
## 1790 33 78 3 999 0 1.4 94.465
## 1791 47 107 1 999 0 1.1 93.994
## 1792 58 165 2 999 0 1.4 93.918
## 1793 32 200 2 999 0 1.4 93.444
## 1794 76 113 1 999 0 -3.4 92.379
## 1795 44 65 5 999 0 1.4 93.918
## 1796 44 173 1 999 0 1.4 94.465
## 1797 31 180 1 999 0 1.4 93.444
## 1798 64 252 4 999 0 -2.9 92.201
## 1799 20 1503 11 999 0 1.4 93.918
## 1800 28 52 2 999 0 -1.8 92.893
## 1801 31 111 1 999 0 1.4 93.918
## 1802 31 210 1 999 0 -3.4 92.379
## 1803 39 272 1 999 0 -1.8 92.893
## 1804 36 254 7 999 0 -0.1 93.200
## 1805 35 13 9 999 0 -1.8 92.893
## 1806 52 36 2 999 0 1.4 93.444
## 1807 53 565 1 999 0 1.4 93.444
## 1808 53 120 1 999 0 1.4 93.918
## 1809 31 275 1 999 0 1.4 93.444
## 1810 29 58 3 999 0 -1.8 92.893
## 1811 59 25 8 999 0 1.4 94.465
## 1812 33 178 2 999 0 1.1 93.994
## 1813 47 216 3 999 0 1.4 94.465
## 1814 50 130 7 999 0 1.4 93.918
## 1815 25 763 1 999 0 1.1 93.994
## 1816 54 28 6 999 0 1.4 94.465
## 1817 39 97 3 999 0 1.1 93.994
## 1818 39 212 1 999 0 1.1 93.994
## 1819 28 325 1 999 0 1.4 94.465
## 1820 36 393 5 999 0 1.4 93.918
## 1821 45 171 1 999 0 1.1 93.994
## 1822 44 580 7 999 0 1.4 93.918
## 1823 29 760 1 999 0 -1.8 92.893
## 1824 32 91 4 999 0 -1.8 92.893
## 1825 47 549 1 999 0 1.4 93.444
## 1826 40 17 10 999 0 1.4 94.465
## 1827 51 368 5 999 0 1.1 93.994
## 1828 47 11 4 999 0 1.4 94.465
## 1829 40 1013 2 999 0 -1.8 93.075
## 1830 45 271 1 999 0 -1.8 92.893
## 1831 28 71 1 999 0 1.1 93.994
## 1832 54 552 1 999 0 1.4 94.465
## 1833 41 23 7 999 0 1.4 94.465
## 1834 48 409 2 999 0 -2.9 92.469
## 1835 19 1161 5 999 0 -1.8 93.075
## 1836 36 194 2 999 0 1.4 93.444
## 1837 34 288 12 999 0 1.4 94.465
## 1838 39 470 24 999 0 1.4 93.918
## 1839 33 120 1 999 0 1.4 93.444
## 1840 47 61 3 999 0 1.4 93.444
## 1841 46 492 3 999 0 1.4 93.444
## 1842 30 201 1 999 0 1.4 93.444
## 1843 33 274 2 999 0 1.1 93.994
## 1844 59 281 2 999 0 1.1 93.994
## 1845 54 398 5 999 0 1.1 93.994
## 1846 26 305 2 999 0 1.1 93.994
## 1847 50 20 1 999 0 -0.1 93.200
## 1848 36 230 3 999 0 -0.1 93.200
## 1849 54 67 2 999 0 1.1 93.994
## 1850 51 127 1 999 0 -1.8 92.893
## 1851 44 534 2 999 0 -0.1 93.200
## 1852 53 241 1 999 0 1.1 93.994
## 1853 53 141 1 999 0 1.1 93.994
## 1854 55 203 1 999 0 1.4 93.444
## 1855 37 33 3 999 0 -0.1 93.200
## 1856 49 161 5 999 0 1.4 93.918
## 1857 48 21 1 999 0 1.4 93.444
## 1858 34 22 1 999 0 -1.7 94.027
## 1859 46 177 1 999 0 1.4 93.444
## 1860 22 1073 1 999 0 1.1 93.994
## 1861 38 323 1 999 0 1.1 93.994
## 1862 41 23 1 999 0 -1.7 94.055
## 1863 25 191 1 999 0 -2.9 92.963
## 1864 35 56 2 999 0 -3.4 92.379
## 1865 31 35 1 999 0 -1.7 94.055
## 1866 25 139 3 999 0 1.1 93.994
## 1867 51 328 7 999 0 1.1 93.994
## 1868 38 278 1 999 0 1.4 94.465
## 1869 36 122 1 999 0 1.4 94.465
## 1870 53 509 3 999 0 -1.8 92.893
## 1871 32 432 2 999 0 1.1 93.994
## 1872 25 247 1 999 0 1.1 93.994
## 1873 36 157 4 999 0 -1.8 92.893
## 1874 36 210 2 999 0 1.4 93.444
## 1875 36 267 3 999 0 -1.8 92.893
## 1876 50 1003 1 999 0 1.1 93.994
## 1877 52 88 3 999 0 1.4 93.444
## 1878 58 470 1 999 0 -2.9 92.963
## 1879 57 12 5 999 0 1.4 94.465
## 1880 59 62 3 999 0 1.4 94.465
## 1881 42 249 4 999 0 -0.1 93.200
## 1882 70 94 4 999 0 -2.9 92.201
## 1883 39 173 2 999 0 -1.8 92.893
## 1884 30 144 1 999 0 1.1 93.994
## 1885 54 144 1 999 0 1.1 93.994
## 1886 44 1169 1 999 0 1.4 93.918
## 1887 50 704 2 999 0 -1.8 93.075
## 1888 29 354 1 999 0 -1.8 93.075
## 1889 29 56 2 999 0 1.4 94.465
## 1890 49 24 1 999 0 1.1 93.994
## 1891 41 10 5 999 0 -1.8 92.893
## 1892 44 311 1 999 0 -0.1 93.200
## 1893 30 94 2 999 0 1.4 93.918
## 1894 44 18 6 999 0 1.4 94.465
## 1895 48 276 1 999 0 1.4 93.918
## 1896 36 224 1 999 0 1.1 93.994
## 1897 48 75 2 999 0 1.4 94.465
## 1898 44 390 2 999 0 1.4 93.444
## 1899 26 619 2 999 0 1.1 93.994
## 1900 31 208 1 999 0 1.4 94.465
## 1901 28 8 9 999 0 -1.8 92.893
## 1902 33 12 3 999 0 1.4 94.465
## 1903 42 1098 2 999 0 1.4 94.465
## 1904 59 118 2 999 0 1.1 93.994
## 1905 46 696 10 999 0 -3.0 92.713
## 1906 32 168 1 999 0 1.4 93.918
## 1907 54 193 2 999 0 -1.8 92.893
## 1908 48 168 2 999 0 -0.1 93.200
## 1909 30 131 2 999 0 1.4 93.444
## 1910 36 381 1 999 0 1.4 93.918
## 1911 38 117 1 999 0 1.4 93.444
## 1912 58 483 2 999 0 -1.8 93.075
## 1913 47 53 1 999 0 -1.8 93.075
## 1914 51 302 1 999 0 -2.9 92.963
## 1915 42 95 1 999 0 1.1 93.994
## 1916 35 1145 4 999 0 -0.1 93.200
## 1917 24 12 6 999 0 -1.8 92.893
## 1918 29 187 2 999 0 1.4 93.918
## 1919 44 10 7 999 0 -0.1 93.200
## 1920 39 543 2 999 0 1.4 93.918
## 1921 36 41 3 999 0 1.4 94.465
## 1922 30 96 2 999 0 1.1 93.994
## 1923 44 111 1 999 0 1.4 93.444
## 1924 54 53 1 999 0 1.4 94.465
## 1925 42 583 1 999 0 1.1 93.994
## 1926 38 50 3 999 0 1.1 93.994
## 1927 46 488 4 999 0 1.4 93.918
## 1928 39 241 1 999 0 1.1 93.994
## 1929 44 189 2 999 0 1.1 93.994
## 1930 41 144 4 999 0 1.1 93.994
## 1931 31 597 17 999 0 1.1 93.994
## 1932 37 1236 2 999 0 1.1 93.994
## 1933 54 163 3 999 0 1.4 93.918
## 1934 40 762 3 999 0 1.1 93.994
## 1935 47 230 1 999 0 1.1 93.994
## 1936 39 156 3 999 0 -1.8 93.075
## 1937 47 499 2 999 0 -1.8 93.075
## 1938 53 45 1 999 0 -1.8 92.893
## 1939 43 315 2 999 0 -1.8 93.075
## 1940 25 1068 3 999 0 -1.8 92.893
## 1941 31 214 4 999 0 -1.8 93.876
## 1942 47 64 3 999 0 -0.1 93.200
## 1943 39 157 2 999 0 1.4 94.465
## 1944 26 120 6 999 0 1.4 94.465
## 1945 34 365 1 999 0 -1.8 93.075
## 1946 27 244 2 999 0 1.4 94.465
## 1947 62 201 4 999 0 -1.7 94.055
## 1948 45 278 1 999 0 -1.8 93.075
## 1949 49 81 2 999 0 1.4 93.918
## 1950 44 135 2 999 0 -0.1 93.200
## 1951 33 548 2 999 0 1.4 93.918
## 1952 30 60 3 999 0 1.4 93.444
## 1953 60 241 2 999 0 1.4 93.918
## 1954 34 234 1 999 0 1.1 93.994
## 1955 31 255 2 999 0 1.4 93.918
## 1956 56 72 1 999 0 -0.1 93.200
## 1957 52 324 1 999 0 1.4 93.918
## 1958 46 897 1 999 0 1.1 93.994
## 1959 34 141 2 999 0 -1.8 93.075
## 1960 41 91 3 999 0 1.1 93.994
## 1961 41 109 1 999 0 1.1 93.994
## 1962 27 329 1 999 0 -2.9 92.963
## 1963 50 193 2 999 0 1.1 93.994
## 1964 37 34 3 999 0 1.4 94.465
## 1965 59 370 2 999 0 1.4 93.444
## 1966 39 219 4 999 0 1.1 93.994
## 1967 33 317 2 999 0 -1.8 92.893
## 1968 26 482 2 999 0 -2.9 92.201
## 1969 57 174 6 999 0 1.4 93.918
## 1970 48 211 2 999 0 1.1 93.994
## 1971 34 273 1 999 0 -1.8 92.893
## 1972 54 168 5 999 0 1.4 93.918
## 1973 57 59 1 999 0 -0.1 93.200
## 1974 29 215 2 999 0 -1.8 92.893
## 1975 42 855 3 999 0 -0.1 93.200
## 1976 40 52 1 999 0 -1.8 92.893
## 1977 38 293 6 999 0 1.1 93.994
## 1978 43 158 1 999 0 -0.1 93.200
## 1979 37 71 1 999 0 1.1 93.994
## 1980 40 48 5 999 0 1.1 93.994
## 1981 35 692 3 999 0 -1.8 92.893
## 1982 59 64 1 999 0 1.4 94.465
## 1983 30 374 12 999 0 1.4 93.444
## 1984 43 62 6 999 0 -0.1 93.200
## 1985 51 495 1 999 0 -1.8 92.893
## 1986 38 331 6 999 0 1.1 93.994
## 1987 41 639 2 999 0 1.4 94.465
## 1988 25 121 3 999 0 -1.8 92.893
## 1989 41 556 1 999 0 1.1 93.994
## 1990 42 1606 1 999 0 -0.1 93.200
## 1991 29 321 2 999 0 -1.8 93.075
## 1992 59 150 2 999 0 1.4 93.918
## 1993 27 238 2 999 0 1.4 93.918
## 1994 51 137 4 999 0 1.4 93.918
## 1995 35 91 1 999 0 1.4 93.918
## 1996 43 40 1 999 0 -0.1 93.200
## 1997 55 885 1 999 0 1.4 94.465
## 1998 39 47 4 999 0 -0.1 93.200
## 1999 34 134 2 999 0 -1.8 92.893
## 2000 59 113 1 999 0 1.1 93.994
## 2001 32 160 1 999 0 1.1 93.994
## 2002 27 182 2 999 0 1.1 93.994
## 2003 43 618 2 999 0 1.1 93.994
## 2004 51 155 2 999 0 -0.1 93.200
## 2005 36 226 1 999 0 1.4 93.918
## 2006 39 389 1 999 0 1.4 94.465
## 2007 51 296 2 999 0 1.1 93.994
## 2008 45 225 1 999 0 1.1 93.994
## 2009 32 212 2 999 0 1.4 93.918
## 2010 33 58 2 999 0 1.1 93.994
## 2011 25 12 7 999 0 -1.8 92.893
## 2012 35 208 3 999 0 1.1 93.994
## 2013 30 90 1 999 0 -1.8 92.893
## 2014 26 168 3 999 0 1.4 94.465
## 2015 54 14 1 999 0 -1.8 93.075
## 2016 25 50 1 999 0 -2.9 92.201
## 2017 49 133 5 999 0 1.4 93.918
## 2018 38 73 1 999 0 1.4 93.444
## 2019 34 185 1 999 0 -1.8 93.075
## 2020 36 45 3 999 0 1.1 93.994
## 2021 38 75 1 999 0 -1.8 92.893
## 2022 36 170 2 999 0 1.4 94.465
## 2023 34 54 1 999 0 -0.1 93.200
## 2024 27 86 4 999 0 1.1 93.994
## 2025 46 297 1 999 0 1.1 93.994
## 2026 47 138 3 999 0 1.4 93.918
## 2027 60 155 2 999 0 1.4 93.444
## 2028 39 935 3 999 0 1.1 93.994
## 2029 35 333 1 999 0 1.4 93.918
## 2030 40 17 21 999 0 1.4 94.465
## 2031 51 838 3 999 0 -1.8 93.075
## 2032 38 38 6 999 0 1.4 94.465
## 2033 45 120 2 999 0 -0.1 93.200
## 2034 35 219 1 999 0 1.1 93.994
## 2035 61 266 5 999 0 -1.8 93.075
## 2036 34 19 7 999 0 -1.8 92.893
## 2037 47 207 1 999 0 1.4 93.444
## 2038 53 228 6 999 0 -0.1 93.200
## 2039 24 456 1 999 0 -2.9 92.201
## 2040 36 90 1 999 0 1.1 93.994
## 2041 44 133 1 999 0 -2.9 92.963
## 2042 43 226 1 999 0 1.4 93.918
## 2043 55 252 1 999 0 -0.1 93.200
## 2044 37 383 1 999 0 1.4 93.918
## 2045 32 219 1 999 0 1.4 94.465
## 2046 34 229 5 999 0 1.1 93.994
## 2047 41 242 1 999 0 -1.8 92.893
## 2048 31 451 4 999 0 1.1 93.994
## 2049 49 36 2 999 0 -0.1 93.200
## 2050 55 243 2 999 0 1.4 93.918
## 2051 37 379 1 999 0 1.1 93.994
## 2052 32 147 2 999 0 1.4 93.918
## 2053 47 86 3 999 0 1.4 93.444
## 2054 56 383 1 999 0 1.4 93.918
## 2055 25 114 2 999 0 -1.8 92.893
## 2056 40 304 3 999 0 1.4 93.918
## 2057 54 83 2 999 0 1.4 93.918
## 2058 26 11 7 999 0 -1.8 92.893
## 2059 36 167 1 999 0 1.4 93.444
## 2060 35 285 1 999 0 -1.8 93.075
## 2061 30 39 2 999 0 1.4 93.918
## 2062 34 142 2 999 0 -1.8 92.893
## 2063 36 413 2 999 0 -1.8 93.075
## 2064 46 157 3 999 0 1.1 93.994
## 2065 39 46 1 999 0 1.1 93.994
## 2066 25 274 2 999 0 1.1 93.994
## 2067 59 9 5 999 0 1.4 94.465
## 2068 58 106 1 999 0 1.1 93.994
## 2069 32 102 2 999 0 1.4 94.465
## 2070 40 283 11 999 0 1.1 93.994
## 2071 58 92 1 999 0 -2.9 92.201
## 2072 51 399 3 999 0 1.4 94.465
## 2073 29 223 5 999 0 -1.8 92.893
## 2074 58 75 2 999 0 1.4 93.444
## 2075 47 191 3 999 0 -1.8 92.893
## 2076 27 412 6 999 0 1.1 93.994
## 2077 49 136 2 999 0 -3.4 92.431
## 2078 33 702 1 999 0 1.4 93.444
## 2079 34 81 2 999 0 -1.8 92.893
## 2080 52 203 1 999 0 1.1 93.994
## 2081 32 361 1 999 0 1.1 93.994
## 2082 36 84 3 999 0 1.1 93.994
## 2083 31 112 7 999 0 -3.4 92.379
## 2084 48 664 3 999 0 -0.1 93.200
## 2085 30 243 2 999 0 -1.8 92.893
## 2086 53 252 1 999 0 1.1 93.994
## 2087 46 11 6 999 0 -1.8 92.893
## 2088 28 143 1 999 0 1.1 93.994
## 2089 46 174 2 999 0 1.4 94.465
## 2090 55 197 1 999 0 1.1 93.994
## 2091 37 132 1 999 0 1.1 93.994
## 2092 27 352 1 999 0 1.4 93.918
## 2093 40 260 2 999 0 1.4 93.918
## 2094 47 604 2 999 0 1.1 93.994
## 2095 53 891 2 999 0 1.4 93.918
## 2096 36 239 1 999 0 -1.8 92.893
## 2097 26 117 1 999 0 1.4 93.918
## 2098 26 536 2 999 0 1.1 93.994
## 2099 31 55 12 999 0 1.4 94.465
## 2100 53 300 2 999 0 1.4 93.444
## 2101 56 302 1 999 0 -1.8 92.893
## 2102 29 104 2 999 0 -1.8 92.893
## 2103 48 136 1 999 0 1.1 93.994
## 2104 39 126 2 999 0 1.1 93.994
## 2105 30 13 3 999 0 -0.1 93.200
## 2106 49 464 2 999 0 1.4 94.465
## 2107 42 386 2 999 0 1.4 93.444
## 2108 39 57 1 999 0 1.4 93.444
## 2109 34 130 1 999 0 -1.8 93.075
## 2110 50 206 1 999 0 -0.1 93.200
## 2111 39 55 1 999 0 -1.8 93.075
## 2112 24 106 1 999 0 -1.1 94.767
## 2113 32 6 4 999 0 -1.8 92.893
## 2114 46 133 1 999 0 1.1 93.994
## 2115 48 251 3 999 0 1.4 93.444
## 2116 28 76 2 999 0 1.4 93.918
## 2117 33 84 3 999 0 1.1 93.994
## 2118 53 74 2 999 0 -1.8 92.893
## 2119 54 611 2 999 0 1.1 93.994
## 2120 23 14 5 999 0 -1.8 92.893
## 2121 45 90 3 999 0 1.4 93.444
## 2122 51 163 5 999 0 1.4 93.918
## 2123 33 82 1 999 0 1.4 93.444
## 2124 34 64 1 999 0 1.4 94.465
## 2125 27 628 1 999 0 -1.8 92.893
## 2126 32 136 1 999 0 1.4 93.444
## 2127 59 152 4 999 0 -3.4 92.431
## 2128 47 341 1 999 0 -1.8 92.893
## 2129 39 36 6 999 0 -1.8 92.893
## 2130 27 264 1 999 0 -3.4 92.649
## 2131 39 846 2 999 0 -1.8 92.893
## 2132 40 123 4 999 0 1.4 94.465
## 2133 43 169 1 999 0 1.4 93.918
## 2134 50 762 2 999 0 1.4 93.444
## 2135 53 63 3 999 0 1.4 94.465
## 2136 46 1135 2 999 0 1.1 93.994
## 2137 37 188 1 999 0 1.4 93.444
## 2138 37 415 1 999 0 1.1 93.994
## 2139 50 118 5 999 0 1.4 93.444
## 2140 35 773 2 999 0 1.4 93.444
## 2141 52 118 2 999 0 1.4 93.918
## 2142 35 451 1 999 0 1.4 93.918
## 2143 29 171 1 999 0 1.1 93.994
## 2144 34 549 2 999 0 -0.1 93.200
## 2145 50 855 2 999 0 1.1 93.994
## 2146 51 9 5 999 0 -0.1 93.200
## 2147 41 114 2 999 0 -1.8 92.893
## 2148 52 97 1 999 0 1.1 93.994
## 2149 30 89 4 999 0 1.4 93.918
## 2150 56 13 40 999 0 1.4 94.465
## 2151 37 354 2 999 0 -1.8 92.893
## 2152 25 64 2 999 0 -1.8 92.893
## 2153 29 239 2 999 0 -1.8 92.893
## 2154 37 43 2 999 0 1.4 94.465
## 2155 38 206 1 999 0 1.1 93.994
## 2156 38 287 4 999 0 1.1 93.994
## 2157 41 89 2 999 0 1.4 93.918
## 2158 44 262 2 999 0 -1.8 92.893
## 2159 41 198 1 999 0 -1.8 92.893
## 2160 45 166 12 999 0 1.1 93.994
## 2161 64 151 3 999 0 -1.1 94.767
## 2162 32 213 1 999 0 1.4 94.465
## 2163 45 164 4 999 0 -1.8 93.075
## 2164 26 127 7 999 0 1.4 93.918
## 2165 54 92 1 999 0 1.1 93.994
## 2166 40 255 6 999 0 1.1 93.994
## 2167 51 305 6 999 0 -0.1 93.200
## 2168 78 177 2 999 0 -3.4 92.431
## 2169 26 22 1 999 0 1.4 93.918
## 2170 45 333 2 999 0 1.1 93.994
## 2171 56 153 1 999 0 -1.8 93.075
## 2172 35 198 1 999 0 -1.8 92.893
## 2173 38 460 4 999 0 1.4 94.465
## 2174 33 103 1 999 0 -1.8 92.893
## 2175 25 243 3 999 0 -1.8 92.843
## 2176 45 191 1 999 0 1.1 93.994
## 2177 56 481 2 999 0 -0.1 93.200
## 2178 36 89 1 999 0 -1.8 92.893
## 2179 51 13 4 999 0 -0.1 93.200
## 2180 70 144 1 999 0 -3.4 92.379
## 2181 24 54 4 999 0 -1.8 92.893
## 2182 27 131 3 999 0 -1.8 92.893
## 2183 50 63 1 999 0 1.1 93.994
## 2184 38 127 6 999 0 1.4 94.465
## 2185 45 22 1 999 0 -0.1 93.200
## 2186 51 586 1 999 0 1.4 93.444
## 2187 31 218 1 999 0 1.1 93.994
## 2188 27 818 1 999 0 1.4 93.918
## 2189 42 93 2 999 0 1.4 94.465
## 2190 35 219 2 999 0 -1.8 92.893
## 2191 47 57 2 999 0 1.4 93.444
## 2192 53 199 2 999 0 1.1 93.994
## 2193 55 68 2 999 0 -0.1 93.200
## 2194 47 64 2 999 0 1.4 93.918
## 2195 46 134 3 999 0 1.1 93.994
## 2196 31 100 3 999 0 1.4 94.465
## 2197 29 289 2 999 0 1.4 93.918
## 2198 44 45 1 999 0 1.4 94.465
## 2199 34 251 2 999 0 -0.1 93.200
## 2200 29 206 1 999 0 -0.1 93.200
## 2201 52 553 2 999 0 1.1 93.994
## 2202 55 87 1 999 0 -1.8 92.893
## 2203 58 685 2 999 0 -1.8 92.893
## 2204 30 129 2 999 0 1.1 93.994
## 2205 39 364 2 999 0 -1.8 92.893
## 2206 43 284 4 999 0 1.1 93.994
## 2207 27 35 1 999 0 -1.1 94.199
## 2208 57 126 1 999 0 -0.1 93.200
## 2209 36 560 3 999 0 1.4 94.465
## 2210 28 296 2 999 0 -1.8 92.843
## 2211 36 11 3 999 0 1.4 94.465
## 2212 46 118 1 999 0 1.1 93.994
## 2213 32 129 1 999 0 1.1 93.994
## 2214 30 225 2 999 0 -0.1 93.200
## 2215 49 68 1 999 0 1.4 94.465
## 2216 35 143 1 999 0 1.4 94.465
## 2217 35 145 2 999 0 1.4 93.918
## 2218 50 106 1 999 0 1.1 93.994
## 2219 47 78 1 999 0 1.4 93.918
## 2220 33 595 2 999 0 1.4 93.918
## 2221 53 137 2 999 0 -0.1 93.200
## 2222 34 116 2 999 0 1.1 93.994
## 2223 40 215 1 999 0 1.1 93.994
## 2224 27 112 1 999 0 1.4 93.918
## 2225 56 310 1 999 0 -1.8 92.893
## 2226 33 209 1 999 0 1.4 93.918
## 2227 37 56 2 999 0 -0.1 93.200
## 2228 52 127 2 999 0 -0.1 93.200
## 2229 23 35 1 999 0 -1.8 93.876
## 2230 54 94 1 999 0 1.4 93.918
## 2231 48 122 6 999 0 1.4 93.444
## 2232 25 130 4 999 0 1.1 93.994
## 2233 33 106 2 999 0 1.4 93.444
## 2234 56 569 1 999 0 1.4 93.918
## 2235 53 1221 1 999 0 -0.1 93.200
## 2236 57 325 2 999 0 1.1 93.994
## 2237 25 1127 3 999 0 1.4 93.918
## 2238 53 164 1 999 0 1.4 94.465
## 2239 31 63 1 999 0 -0.1 93.200
## 2240 30 28 18 999 0 1.1 93.994
## 2241 32 53 3 999 0 -1.8 92.893
## 2242 34 298 1 999 0 1.4 93.444
## 2243 45 255 3 999 0 1.1 93.994
## 2244 35 13 3 999 0 1.4 94.465
## 2245 31 138 1 999 0 1.4 93.444
## 2246 55 270 1 999 0 -0.1 93.200
## 2247 42 890 2 999 0 -1.8 93.075
## 2248 53 125 2 999 0 -0.1 93.200
## 2249 33 483 3 999 0 1.1 93.994
## 2250 42 185 3 999 0 1.1 93.994
## 2251 53 319 3 999 0 -0.1 93.200
## 2252 58 49 1 999 0 1.4 93.918
## 2253 49 168 1 999 0 -1.8 92.893
## 2254 27 226 1 999 0 1.4 93.918
## 2255 34 290 2 999 0 -3.4 92.379
## 2256 52 221 2 999 0 -0.1 93.200
## 2257 47 140 3 999 0 -0.1 93.200
## 2258 57 59 2 999 0 1.4 94.465
## 2259 39 128 2 999 0 1.1 93.994
## 2260 30 78 2 999 0 1.4 94.465
## 2261 31 54 2 999 0 -0.1 93.200
## 2262 59 35 1 999 0 1.1 93.994
## 2263 54 186 3 999 0 1.4 94.465
## 2264 53 203 1 999 0 1.1 93.994
## 2265 47 7 1 999 0 -1.8 93.876
## 2266 54 75 2 999 0 -1.8 92.893
## 2267 51 116 3 999 0 -2.9 92.469
## 2268 37 833 8 999 0 1.1 93.994
## 2269 53 74 1 999 0 1.4 93.444
## 2270 46 595 1 999 0 -0.1 93.200
## 2271 30 1164 2 999 0 1.4 93.918
## 2272 35 159 9 999 0 1.4 94.465
## 2273 34 343 2 999 0 1.4 93.444
## 2274 42 275 2 999 0 1.1 93.994
## 2275 33 290 1 999 0 -1.8 92.893
## 2276 30 14 5 999 0 -0.1 93.200
## 2277 50 705 1 999 0 -0.1 93.200
## 2278 21 279 2 999 0 -1.8 92.893
## 2279 58 226 1 999 0 1.1 93.994
## 2280 37 103 3 999 0 1.4 93.444
## 2281 35 25 14 999 0 1.1 93.994
## 2282 29 729 1 999 0 -0.1 93.200
## 2283 49 731 4 999 0 1.1 93.994
## 2284 31 522 1 999 0 1.4 93.918
## 2285 34 123 3 999 0 1.4 93.918
## 2286 47 94 2 999 0 1.4 93.444
## 2287 35 165 2 999 0 1.4 93.918
## 2288 46 98 1 999 0 1.4 94.465
## 2289 40 73 1 999 0 1.4 93.444
## 2290 27 104 1 999 0 1.1 93.994
## 2291 41 106 3 999 0 1.4 93.444
## 2292 39 163 2 999 0 1.4 94.465
## 2293 53 59 3 999 0 -1.8 93.075
## 2294 42 574 6 999 0 1.1 93.994
## 2295 41 206 2 999 0 1.1 93.994
## 2296 28 166 4 999 0 -1.8 92.893
## 2297 52 84 3 999 0 1.1 93.994
## 2298 42 311 6 999 0 1.4 93.918
## 2299 29 35 3 999 0 1.4 93.918
## 2300 46 132 1 999 0 1.1 93.994
## 2301 38 79 2 999 0 1.4 93.444
## 2302 41 244 2 999 0 -2.9 92.963
## 2303 58 59 3 999 0 1.4 93.444
## 2304 51 484 1 999 0 1.4 93.918
## 2305 41 193 2 999 0 1.1 93.994
## 2306 34 171 4 999 0 -1.8 92.843
## 2307 38 610 1 999 0 1.1 93.994
## 2308 40 170 1 999 0 1.4 94.465
## 2309 41 323 1 999 0 1.4 93.444
## 2310 37 391 1 999 0 1.1 93.994
## 2311 35 149 1 999 0 1.1 93.994
## 2312 29 40 7 999 0 1.1 93.994
## 2313 56 117 8 999 0 1.4 93.918
## 2314 56 142 4 999 0 1.4 93.444
## 2315 31 131 4 999 0 1.1 93.994
## 2316 46 178 3 999 0 1.4 93.918
## 2317 33 70 1 999 0 1.1 93.994
## 2318 33 211 2 999 0 1.1 93.994
## 2319 32 17 9 999 0 -1.8 92.893
## 2320 59 664 7 999 0 1.4 93.918
## 2321 51 208 2 999 0 1.1 93.994
## 2322 58 467 4 999 0 1.1 93.994
## 2323 36 59 8 999 0 1.4 94.465
## 2324 29 164 1 999 0 -1.8 92.893
## 2325 36 178 1 999 0 1.4 94.465
## 2326 29 45 1 999 0 1.4 94.465
## 2327 39 80 1 999 0 1.4 93.444
## 2328 31 306 1 999 0 -0.1 93.200
## 2329 31 109 1 999 0 1.1 93.994
## 2330 40 147 3 999 0 -0.1 93.200
## 2331 37 351 2 999 0 1.4 94.465
## 2332 31 170 3 999 0 1.4 93.444
## 2333 42 372 3 999 0 1.4 94.465
## 2334 39 399 2 999 0 1.1 93.994
## 2335 36 166 1 999 0 1.4 94.465
## 2336 37 274 5 999 0 1.4 93.918
## 2337 56 26 2 999 0 1.1 93.994
## 2338 26 374 1 999 0 -1.1 94.199
## 2339 44 536 1 999 0 1.1 93.994
## 2340 27 530 2 999 0 1.1 93.994
## 2341 30 109 2 999 0 1.4 93.444
## 2342 28 251 5 999 0 1.4 93.918
## 2343 25 324 1 999 0 1.1 93.994
## 2344 31 41 1 999 0 -0.1 93.200
## 2345 54 87 13 999 0 1.4 94.465
## 2346 32 240 1 999 0 -1.8 92.893
## 2347 38 763 6 999 0 1.1 93.994
## 2348 40 144 1 999 0 -0.1 93.200
## 2349 36 12 2 999 0 1.1 93.994
## 2350 34 22 5 999 0 1.4 94.465
## 2351 50 595 2 999 0 -0.1 93.200
## 2352 38 224 3 999 0 1.4 93.918
## 2353 44 181 1 999 0 1.1 93.994
## 2354 35 724 12 999 0 1.4 93.444
## 2355 29 124 42 999 0 1.1 93.994
## 2356 28 64 1 999 0 -1.8 93.075
## 2357 34 305 2 999 0 -1.8 93.075
## 2358 46 138 9 999 0 1.4 94.465
## 2359 34 122 3 999 0 -1.8 93.075
## 2360 28 52 3 999 0 1.1 93.994
## 2361 39 156 5 999 0 1.4 94.465
## 2362 34 7 5 999 0 -1.8 93.075
## 2363 52 314 2 999 0 1.1 93.994
## 2364 60 174 1 999 0 1.4 93.444
## 2365 48 163 2 999 0 1.4 94.465
## 2366 40 144 2 999 0 -1.8 93.075
## 2367 30 165 4 999 0 1.1 93.994
## 2368 55 252 4 999 0 1.1 93.994
## 2369 46 196 3 999 0 -1.8 92.893
## 2370 37 666 1 999 0 -1.8 93.075
## 2371 47 80 2 999 0 1.4 93.444
## 2372 58 75 2 999 0 -1.8 93.075
## 2373 29 300 1 999 0 -2.9 92.201
## 2374 31 712 1 999 0 -1.8 92.893
## 2375 46 149 11 999 0 1.4 93.918
## 2376 60 338 2 999 0 -1.1 94.601
## 2377 52 44 1 999 0 -1.8 93.075
## 2378 43 90 6 999 0 1.4 93.918
## 2379 32 195 7 999 0 1.4 93.444
## 2380 57 507 1 999 0 1.1 93.994
## 2381 37 500 1 999 0 1.4 93.918
## 2382 32 23 1 999 0 1.1 93.994
## 2383 32 433 3 999 0 1.4 93.444
## 2384 41 213 2 999 0 1.1 93.994
## 2385 39 658 2 999 0 1.4 94.465
## 2386 38 64 1 999 0 -0.1 93.200
## 2387 28 288 1 999 0 1.4 94.465
## 2388 50 104 1 999 0 1.4 93.444
## 2389 43 21 5 999 0 -1.8 93.075
## 2390 45 95 4 999 0 1.4 93.444
## 2391 48 122 5 999 0 1.4 93.918
## 2392 34 231 3 999 0 -1.8 93.075
## 2393 50 79 3 999 0 1.4 93.444
## 2394 47 571 1 999 0 1.1 93.994
## 2395 58 469 2 999 0 1.4 94.465
## 2396 41 71 1 999 0 1.4 93.444
## 2397 38 293 3 999 0 -1.1 94.601
## 2398 41 33 5 999 0 -1.8 92.893
## 2399 31 271 2 999 0 1.4 94.465
## 2400 25 432 3 999 0 -1.8 92.893
## 2401 40 638 3 999 0 1.4 93.918
## 2402 50 272 2 999 0 1.4 93.444
## 2403 49 26 18 999 0 1.4 94.465
## 2404 38 15 9 999 0 -1.8 92.893
## 2405 67 270 2 999 0 -3.4 92.431
## 2406 40 493 2 999 0 1.4 94.465
## 2407 50 166 2 999 0 1.4 93.444
## 2408 56 240 1 999 0 1.4 93.444
## 2409 36 302 1 999 0 1.4 94.465
## 2410 45 696 2 999 0 -0.1 93.200
## 2411 44 104 1 999 0 -1.8 92.893
## 2412 33 129 2 999 0 1.4 93.444
## 2413 36 80 3 999 0 1.4 94.465
## 2414 53 60 1 999 0 1.4 93.918
## 2415 42 73 1 999 0 -0.1 93.200
## 2416 36 18 5 999 0 -1.8 93.075
## 2417 35 372 1 999 0 1.4 93.444
## 2418 29 116 1 999 0 -1.8 93.075
## 2419 29 245 1 999 0 -1.8 93.075
## 2420 28 125 2 999 0 1.4 94.465
## 2421 40 275 1 999 0 -1.8 93.075
## 2422 31 690 2 999 0 1.4 94.465
## 2423 49 161 4 999 0 1.4 93.444
## 2424 39 135 3 999 0 1.4 94.465
## 2425 43 123 1 999 0 -2.9 92.201
## 2426 41 120 1 999 0 1.4 93.918
## 2427 47 97 1 999 0 1.4 93.444
## 2428 41 686 1 999 0 -1.8 92.893
## 2429 73 128 2 999 0 -1.8 93.075
## 2430 54 71 4 999 0 1.4 94.465
## 2431 26 796 1 999 0 -3.0 92.713
## 2432 34 1622 2 999 0 1.1 93.994
## 2433 43 118 8 999 0 1.4 93.918
## 2434 39 52 1 999 0 1.1 93.994
## 2435 29 113 4 999 0 1.4 93.918
## 2436 49 76 5 999 0 1.4 93.444
## 2437 43 76 5 999 0 1.4 93.918
## 2438 34 162 3 999 0 1.4 93.918
## 2439 28 218 1 999 0 -1.8 93.075
## 2440 37 83 1 999 0 1.4 94.465
## 2441 38 204 1 999 0 1.1 93.994
## 2442 41 101 2 999 0 1.4 93.444
## 2443 39 65 2 999 0 1.4 93.918
## 2444 55 93 1 999 0 1.4 93.918
## 2445 35 60 3 999 0 1.1 93.994
## 2446 33 87 1 999 0 -3.4 92.431
## 2447 35 187 3 999 0 1.4 93.918
## 2448 33 136 1 999 0 1.4 94.465
## 2449 27 36 1 999 0 -1.7 94.027
## 2450 55 154 3 999 0 -3.4 92.649
## 2451 39 357 2 999 0 1.4 93.444
## 2452 31 199 6 999 0 -1.8 93.075
## 2453 46 378 3 999 0 1.4 93.444
## 2454 30 225 2 999 0 1.4 94.465
## 2455 43 149 6 999 0 1.1 93.994
## 2456 26 57 1 999 0 -1.8 92.893
## 2457 26 124 3 999 0 1.4 93.918
## 2458 40 81 2 999 0 1.4 93.918
## 2459 47 171 1 999 0 1.4 93.918
## 2460 47 21 1 999 0 -1.8 92.893
## 2461 47 139 3 999 0 1.4 93.444
## 2462 35 90 3 999 0 1.4 93.444
## 2463 59 108 7 999 0 1.4 93.918
## 2464 51 135 1 999 0 1.1 93.994
## 2465 24 468 8 999 0 1.4 94.465
## 2466 45 1068 1 999 0 1.4 94.465
## 2467 42 75 3 999 0 1.4 93.918
## 2468 28 78 5 999 0 1.4 94.465
## 2469 34 498 2 999 0 -1.8 92.893
## 2470 34 140 4 999 0 1.4 93.444
## 2471 37 69 1 999 0 -1.8 92.893
## 2472 32 322 3 999 0 1.4 93.918
## 2473 39 316 1 999 0 1.4 93.444
## 2474 48 90 1 999 0 -0.1 93.200
## 2475 41 73 1 999 0 -0.1 93.798
## 2476 46 386 2 999 0 -1.8 92.893
## 2477 45 201 1 999 0 -2.9 92.963
## 2478 45 98 3 999 0 1.4 93.918
## 2479 29 164 2 999 0 1.4 94.465
## 2480 48 65 3 999 0 1.4 94.465
## 2481 43 475 4 999 0 1.4 93.918
## 2482 34 206 6 999 0 1.4 93.918
## 2483 31 239 3 999 0 -1.7 94.027
## 2484 49 1042 1 999 0 1.1 93.994
## 2485 31 334 3 999 0 1.4 93.918
## 2486 35 200 3 999 0 1.4 94.465
## 2487 42 174 1 999 0 -1.8 92.893
## 2488 43 390 1 999 0 -1.8 93.075
## 2489 34 164 5 999 0 1.4 93.918
## 2490 36 98 1 999 0 1.1 93.994
## 2491 56 270 1 999 0 1.4 93.444
## 2492 47 449 1 999 0 1.1 93.994
## 2493 43 24 3 999 0 1.4 93.918
## 2494 29 187 3 999 0 1.4 94.465
## 2495 55 330 2 999 0 -0.1 93.200
## 2496 39 713 2 999 0 -1.7 94.055
## 2497 28 299 2 999 0 -1.8 92.893
## 2498 35 201 3 999 0 -1.8 93.075
## 2499 32 119 4 999 0 1.4 93.444
## 2500 55 342 2 999 0 1.4 93.918
## 2501 33 457 3 999 0 1.4 93.918
## 2502 23 360 3 999 0 1.4 93.918
## 2503 45 84 1 999 0 1.4 93.444
## 2504 44 242 1 999 0 1.4 93.918
## 2505 34 299 3 999 0 1.4 93.444
## 2506 47 140 4 999 0 1.4 93.918
## 2507 46 488 2 999 0 1.4 93.444
## 2508 25 521 1 999 0 1.4 93.918
## 2509 30 104 3 999 0 1.4 93.444
## 2510 36 233 7 999 0 1.4 93.444
## 2511 37 13 5 999 0 -1.8 93.075
## 2512 46 766 2 999 0 -1.8 93.075
## 2513 23 69 3 999 0 1.4 93.918
## 2514 33 177 2 999 0 1.4 93.444
## 2515 31 92 5 999 0 1.4 94.465
## 2516 39 84 4 999 0 1.4 93.918
## 2517 35 107 5 999 0 1.4 93.918
## 2518 36 389 1 999 0 1.1 93.994
## 2519 52 116 1 999 0 1.4 94.465
## 2520 52 81 6 999 0 1.4 93.918
## 2521 29 140 1 999 0 1.4 93.444
## 2522 30 162 1 999 0 -1.8 93.075
## 2523 38 147 2 999 0 1.1 93.994
## 2524 42 227 6 999 0 1.4 93.918
## 2525 40 137 3 999 0 1.4 93.918
## 2526 55 394 2 999 0 1.4 94.465
## 2527 46 341 3 999 0 1.4 93.918
## 2528 33 554 1 999 0 1.4 93.918
## 2529 38 118 6 999 0 1.1 93.994
## 2530 38 55 5 999 0 1.4 93.918
## 2531 58 236 10 999 0 1.1 93.994
## 2532 31 98 1 999 0 1.4 93.444
## 2533 45 129 1 999 0 -1.8 93.075
## 2534 37 124 1 999 0 1.1 93.994
## 2535 48 441 2 999 0 1.4 93.444
## 2536 36 110 4 999 0 -1.8 92.893
## 2537 37 275 6 999 0 1.4 93.444
## 2538 51 293 7 999 0 1.4 93.918
## 2539 27 33 5 999 0 -1.8 92.893
## 2540 34 263 8 999 0 1.4 94.465
## 2541 31 93 4 999 0 1.1 93.994
## 2542 39 104 1 999 0 1.1 93.994
## 2543 34 230 3 999 0 1.4 93.444
## 2544 40 102 1 999 0 1.1 93.994
## 2545 36 379 2 999 0 1.1 93.994
## 2546 52 130 5 999 0 -2.9 92.963
## 2547 43 410 3 999 0 1.1 93.994
## 2548 55 106 6 999 0 1.4 93.444
## 2549 58 324 1 999 0 -1.7 94.027
## 2550 42 49 2 999 0 1.4 93.918
## 2551 30 235 5 999 0 -3.4 92.649
## 2552 24 357 1 999 0 1.4 93.918
## 2553 54 44 8 999 0 -1.8 92.893
## 2554 36 262 1 999 0 1.1 93.994
## 2555 34 163 1 999 0 -1.8 93.075
## 2556 59 91 4 999 0 1.4 93.918
## 2557 36 63 1 999 0 1.4 93.918
## 2558 44 669 1 999 0 -0.1 93.200
## 2559 49 145 1 999 0 1.1 93.994
## 2560 39 193 1 999 0 1.1 93.994
## 2561 31 230 4 999 0 1.4 93.444
## 2562 30 342 9 999 0 1.4 93.918
## 2563 38 111 2 999 0 -1.8 92.843
## 2564 57 45 5 999 0 1.1 93.994
## 2565 33 199 1 999 0 1.4 93.918
## 2566 26 74 6 999 0 1.4 93.918
## 2567 36 95 2 999 0 1.4 93.918
## 2568 35 87 1 999 0 1.4 93.444
## 2569 34 200 2 999 0 -1.7 94.027
## 2570 34 178 1 999 0 1.4 94.465
## 2571 50 98 3 999 0 -1.8 93.075
## 2572 55 88 2 999 0 1.4 93.444
## 2573 30 57 1 999 0 -1.8 92.893
## 2574 41 653 2 999 0 1.4 93.444
## 2575 42 570 3 999 0 -2.9 92.963
## 2576 28 187 3 999 0 1.4 93.918
## 2577 35 424 2 999 0 -1.8 92.893
## 2578 44 2035 4 999 0 -1.7 94.027
## 2579 33 220 4 999 0 1.4 94.465
## 2580 40 215 2 999 0 1.1 93.994
## 2581 31 318 2 999 0 -1.7 94.027
## 2582 30 220 6 999 0 1.4 93.918
## 2583 49 164 1 999 0 -2.9 92.963
## 2584 44 123 2 999 0 1.1 93.994
## 2585 36 46 3 999 0 1.4 93.444
## 2586 23 115 1 999 0 -1.8 92.893
## 2587 21 114 2 999 0 -1.8 92.843
## 2588 43 114 2 999 0 1.1 93.994
## 2589 25 437 2 999 0 -2.9 92.963
## 2590 40 314 1 999 0 -1.8 93.075
## 2591 29 224 3 999 0 -1.8 92.893
## 2592 44 389 2 999 0 1.4 93.444
## 2593 41 247 2 999 0 1.4 93.444
## 2594 47 118 6 999 0 1.1 93.994
## 2595 31 1099 2 999 0 1.4 93.444
## 2596 56 122 1 999 0 1.4 93.918
## 2597 48 121 1 999 0 1.1 93.994
## 2598 49 69 11 999 0 1.4 93.918
## 2599 38 72 3 999 0 1.4 93.918
## 2600 53 91 3 999 0 1.4 94.465
## 2601 37 345 2 999 0 -1.8 93.075
## 2602 35 217 1 999 0 1.1 93.994
## 2603 34 1238 1 999 0 1.4 93.444
## 2604 54 564 5 999 0 -1.8 93.876
## 2605 38 200 2 999 0 1.1 93.994
## 2606 53 82 4 999 0 -1.8 92.893
## 2607 30 324 2 999 0 -1.1 94.767
## 2608 41 294 3 999 0 1.4 94.465
## 2609 35 135 1 999 0 1.1 93.994
## 2610 34 251 3 999 0 -1.7 94.215
## 2611 32 92 5 999 0 1.4 93.444
## 2612 28 689 3 999 0 1.4 94.465
## 2613 43 183 3 999 0 1.4 93.918
## 2614 42 93 1 999 0 -0.1 93.200
## 2615 39 670 3 999 0 1.4 94.465
## 2616 39 721 3 999 0 1.4 94.465
## 2617 41 82 2 999 0 1.4 93.918
## 2618 44 28 1 999 0 -1.8 92.893
## 2619 35 207 3 999 0 1.4 93.444
## 2620 40 68 3 999 0 1.4 93.918
## 2621 54 50 4 999 0 1.4 93.918
## 2622 41 75 1 999 0 1.4 93.444
## 2623 37 92 1 999 0 1.4 93.918
## 2624 24 341 3 999 0 1.4 94.465
## 2625 45 141 3 999 0 1.4 93.444
## 2626 39 733 3 999 0 1.4 93.918
## 2627 47 99 22 999 0 1.1 93.994
## 2628 67 70 22 999 0 -1.8 92.843
## 2629 52 748 3 999 0 1.1 93.994
## 2630 33 469 2 999 0 1.1 93.994
## 2631 45 92 12 999 0 1.4 93.444
## 2632 42 223 2 999 0 1.4 93.444
## 2633 30 189 1 999 0 -1.8 92.893
## 2634 33 643 1 999 0 1.1 93.994
## 2635 52 410 1 999 0 1.4 93.918
## 2636 49 91 3 999 0 1.4 93.918
## 2637 44 234 1 999 0 1.4 93.918
## 2638 57 611 2 999 0 1.1 93.994
## 2639 34 432 1 999 0 1.4 93.444
## 2640 53 119 3 999 0 1.4 93.444
## 2641 44 122 2 999 0 1.4 93.918
## 2642 23 202 1 999 0 1.4 94.465
## 2643 31 643 3 999 0 -1.8 93.075
## 2644 34 98 4 999 0 1.4 93.444
## 2645 56 170 5 999 0 -1.1 94.601
## 2646 27 510 6 999 0 1.4 93.918
## 2647 33 119 2 999 0 1.4 93.444
## 2648 32 11 9 999 0 1.4 93.444
## 2649 45 103 4 999 0 1.1 93.994
## 2650 50 92 1 999 0 -0.1 93.200
## 2651 29 74 1 999 0 -2.9 92.963
## 2652 35 68 21 999 0 1.4 94.465
## 2653 49 565 1 999 0 1.4 93.444
## 2654 50 68 3 999 0 1.4 93.444
## 2655 59 233 2 999 0 -1.8 92.893
## 2656 55 136 3 999 0 1.4 93.918
## 2657 52 165 5 999 0 1.4 93.918
## 2658 42 359 5 999 0 -1.8 92.893
## 2659 37 331 1 999 0 1.4 93.444
## 2660 33 457 1 999 0 -1.8 92.893
## 2661 26 347 1 999 0 -3.4 92.649
## 2662 36 258 3 999 0 1.4 93.444
## 2663 48 132 3 999 0 -1.8 93.075
## 2664 26 175 5 999 0 -1.8 92.843
## 2665 48 223 2 999 0 -1.8 93.075
## 2666 43 268 1 999 0 -1.8 93.075
## 2667 46 290 2 999 0 1.1 93.994
## 2668 81 90 4 999 0 -1.7 94.027
## 2669 47 357 1 999 0 1.4 93.918
## 2670 45 177 1 999 0 1.4 93.444
## 2671 55 199 1 999 0 1.4 93.918
## 2672 34 180 1 999 0 -1.8 92.893
## 2673 41 97 1 999 0 -3.4 92.379
## 2674 34 96 1 999 0 -1.8 93.075
## 2675 29 209 2 999 0 1.4 93.444
## 2676 42 116 2 999 0 -0.1 93.200
## 2677 42 442 8 999 0 1.4 94.465
## 2678 34 239 3 999 0 1.4 93.444
## 2679 48 214 1 999 0 1.4 93.918
## 2680 57 78 3 999 0 1.1 93.994
## 2681 60 98 1 999 0 -3.4 92.431
## 2682 39 63 1 999 0 -0.1 93.200
## 2683 39 272 2 999 0 -0.1 93.200
## 2684 34 210 2 999 0 1.1 93.994
## 2685 47 68 2 999 0 -1.8 93.075
## 2686 36 56 2 999 0 1.4 93.444
## 2687 26 114 2 999 0 1.4 93.918
## 2688 58 74 2 999 0 1.4 93.444
## 2689 47 256 4 999 0 1.1 93.994
## 2690 38 337 3 999 0 -3.4 92.649
## 2691 43 547 3 999 0 1.4 93.918
## 2692 33 110 2 999 0 1.1 93.994
## 2693 50 143 1 999 0 1.4 93.918
## 2694 35 690 1 999 0 -0.1 93.200
## 2695 46 470 2 999 0 1.1 93.994
## 2696 57 75 5 999 0 1.4 94.465
## 2697 36 165 1 999 0 1.1 93.994
## 2698 36 719 2 999 0 1.4 93.918
## 2699 64 294 3 999 0 -2.9 92.963
## 2700 49 173 4 999 0 -1.8 93.075
## 2701 28 387 2 999 0 1.4 93.918
## 2702 26 84 7 999 0 -1.8 92.893
## 2703 47 506 1 999 0 1.4 93.444
## 2704 24 375 2 999 0 -1.8 93.876
## 2705 55 89 13 999 0 1.4 93.918
## 2706 28 177 5 999 0 1.4 94.465
## 2707 50 205 2 999 0 1.4 94.465
## 2708 60 155 4 999 0 1.4 94.465
## 2709 33 546 2 999 0 1.4 93.918
## 2710 47 118 1 999 0 1.1 93.994
## 2711 45 591 1 999 0 -0.1 93.200
## 2712 19 206 1 999 0 -1.8 93.075
## 2713 38 26 3 999 0 1.1 93.994
## 2714 56 103 2 999 0 1.1 93.994
## 2715 51 1070 1 999 0 -0.1 93.200
## 2716 36 44 3 999 0 1.4 93.918
## 2717 34 28 5 999 0 -1.8 93.075
## 2718 30 88 2 999 0 1.4 94.465
## 2719 33 143 1 999 0 -1.8 93.749
## 2720 38 730 8 999 0 1.4 93.918
## 2721 33 200 1 999 0 -0.1 93.200
## 2722 41 238 1 999 0 -2.9 92.963
## 2723 35 144 2 999 0 1.4 94.465
## 2724 44 31 3 999 0 1.4 93.918
## 2725 59 113 2 999 0 1.4 93.444
## 2726 54 175 3 999 0 -3.4 92.649
## 2727 38 166 3 999 0 1.4 94.465
## 2728 35 386 1 999 0 -1.8 92.893
## 2729 36 214 3 999 0 1.1 93.994
## 2730 58 332 2 999 0 1.4 93.918
## 2731 31 90 1 999 0 -0.1 93.200
## 2732 54 54 1 999 0 -1.8 92.893
## 2733 47 58 1 999 0 -0.1 93.200
## 2734 24 337 4 999 0 1.4 93.918
## 2735 47 83 4 999 0 1.4 93.918
## 2736 53 249 2 999 0 -1.8 93.075
## 2737 32 87 1 999 0 -1.8 92.893
## 2738 30 71 1 999 0 1.4 94.465
## 2739 33 324 4 999 0 -1.8 92.893
## 2740 53 261 4 999 0 -1.8 93.369
## 2741 25 68 1 999 0 1.4 93.918
## 2742 81 617 2 999 0 -1.8 92.893
## 2743 36 194 2 999 0 1.4 93.918
## 2744 44 758 2 999 0 1.4 93.444
## 2745 39 501 1 999 0 -0.1 93.200
## 2746 35 90 2 999 0 1.4 93.444
## 2747 53 121 2 999 0 1.4 93.918
## 2748 41 101 3 999 0 -1.7 94.215
## 2749 37 250 2 999 0 1.4 94.465
## 2750 39 249 4 999 0 1.1 93.994
## 2751 45 413 2 999 0 1.4 93.444
## 2752 32 508 3 999 0 1.4 93.444
## 2753 40 49 1 999 0 1.4 94.465
## 2754 44 239 1 999 0 -1.8 92.843
## 2755 39 179 2 999 0 1.4 93.918
## 2756 39 258 1 999 0 1.4 94.465
## 2757 47 130 3 999 0 1.4 93.918
## 2758 49 334 3 999 0 -3.0 92.713
## 2759 35 63 1 999 0 -1.8 93.075
## 2760 25 159 1 999 0 1.4 93.918
## 2761 42 159 1 999 0 1.4 93.444
## 2762 50 47 4 999 0 1.4 93.918
## 2763 33 130 3 999 0 -0.1 93.200
## 2764 30 40 1 999 0 1.1 93.994
## 2765 36 246 3 999 0 1.4 93.444
## 2766 51 326 2 999 0 -0.1 93.200
## 2767 39 290 2 999 0 1.1 93.994
## 2768 56 123 3 999 0 1.4 93.918
## 2769 42 141 3 999 0 1.4 93.918
## 2770 36 48 2 999 0 -0.1 93.200
## 2771 39 1063 5 999 0 -1.8 92.893
## 2772 45 73 1 999 0 -0.1 93.200
## 2773 36 86 4 999 0 1.4 93.444
## 2774 27 250 3 999 0 1.4 93.918
## 2775 57 644 1 999 0 1.4 93.918
## 2776 35 142 2 999 0 1.4 93.444
## 2777 31 88 6 999 0 1.1 93.994
## 2778 40 63 3 999 0 1.1 93.994
## 2779 46 500 5 999 0 1.4 93.918
## 2780 46 144 3 999 0 1.1 93.994
## 2781 60 144 1 999 0 1.4 93.444
## 2782 26 8 2 999 0 1.1 93.994
## 2783 52 197 2 999 0 1.4 93.444
## 2784 27 316 1 999 0 1.4 93.918
## 2785 47 955 4 999 0 1.4 94.465
## 2786 46 431 1 999 0 -1.8 92.893
## 2787 31 173 1 999 0 -1.8 92.893
## 2788 38 431 4 999 0 1.4 93.444
## 2789 33 169 1 999 0 -1.8 93.749
## 2790 41 145 4 999 0 1.4 93.444
## 2791 46 143 1 999 0 -1.8 92.893
## 2792 33 115 1 999 0 1.4 93.444
## 2793 57 161 2 999 0 -2.9 92.963
## 2794 40 226 1 999 0 -1.8 93.075
## 2795 45 8 7 999 0 -1.8 92.893
## 2796 42 1088 14 999 0 1.4 93.918
## 2797 42 362 3 999 0 1.4 94.465
## 2798 34 252 4 999 0 1.4 93.918
## 2799 36 211 2 999 0 1.1 93.994
## 2800 46 502 5 999 0 1.4 94.465
## 2801 29 104 2 999 0 1.4 93.918
## 2802 43 265 4 999 0 1.4 93.918
## 2803 39 241 5 999 0 1.4 94.465
## 2804 57 374 5 999 0 1.4 93.918
## 2805 51 601 3 999 0 -1.8 92.893
## 2806 30 142 2 999 0 1.4 93.444
## 2807 54 56 3 999 0 1.4 93.918
## 2808 38 79 3 999 0 1.4 93.444
## 2809 39 791 3 999 0 -1.1 94.199
## 2810 45 307 1 999 0 1.4 93.918
## 2811 39 93 4 999 0 1.4 93.444
## 2812 26 320 2 999 0 -1.8 92.893
## 2813 31 143 2 999 0 1.4 93.444
## 2814 40 177 4 999 0 1.1 93.994
## 2815 44 299 4 999 0 1.4 94.465
## 2816 30 618 3 999 0 1.4 93.444
## 2817 49 252 1 999 0 1.1 93.994
## 2818 42 181 3 999 0 1.1 93.994
## 2819 41 339 8 999 0 1.4 93.918
## 2820 55 178 2 999 0 -1.8 92.893
## 2821 37 172 1 999 0 1.1 93.994
## 2822 33 89 3 999 0 1.1 93.994
## 2823 51 359 1 999 0 1.4 93.918
## 2824 48 106 1 999 0 -0.1 93.200
## 2825 56 215 1 999 0 1.4 94.465
## 2826 47 72 3 999 0 -1.8 93.075
## 2827 35 747 1 999 0 -0.1 93.200
## 2828 48 113 1 999 0 1.4 94.465
## 2829 47 148 1 999 0 1.4 93.918
## 2830 29 333 2 999 0 1.4 93.918
## 2831 53 313 2 999 0 1.4 94.465
## 2832 39 200 2 999 0 1.4 94.465
## 2833 38 98 5 999 0 -1.8 92.893
## 2834 30 184 2 999 0 1.4 93.918
## 2835 41 640 3 999 0 1.4 94.465
## 2836 53 64 5 999 0 1.4 93.444
## 2837 31 160 3 999 0 1.4 93.918
## 2838 32 8 7 999 0 -1.8 92.893
## 2839 28 333 1 999 0 -1.8 92.893
## 2840 46 471 3 999 0 -1.8 92.893
## 2841 48 9 6 999 0 1.4 93.444
## 2842 36 314 4 999 0 1.4 93.918
## 2843 34 562 3 999 0 1.4 94.465
## 2844 44 153 1 999 0 1.4 94.465
## 2845 45 26 15 999 0 1.4 93.444
## 2846 34 263 1 999 0 1.1 93.994
## 2847 59 228 6 999 0 -1.8 92.893
## 2848 27 200 6 999 0 -1.7 94.215
## 2849 59 484 1 999 0 1.4 94.465
## 2850 30 385 2 999 0 -3.4 92.431
## 2851 32 75 2 999 0 -1.8 92.843
## 2852 46 222 1 999 0 -1.8 93.075
## 2853 40 162 4 999 0 1.1 93.994
## 2854 35 114 5 999 0 1.4 94.465
## 2855 30 149 3 999 0 1.4 93.918
## 2856 57 11 4 999 0 -1.8 92.893
## 2857 42 124 2 999 0 1.4 94.465
## 2858 37 213 1 999 0 -2.9 92.201
## 2859 41 116 3 999 0 1.4 94.465
## 2860 28 273 5 999 0 1.4 94.465
## 2861 33 108 2 999 0 -1.8 93.075
## 2862 30 394 1 999 0 1.4 94.465
## 2863 32 70 1 999 0 1.4 94.465
## 2864 51 8 4 999 0 -1.8 92.893
## 2865 33 895 12 999 0 -1.8 92.893
## 2866 32 87 4 999 0 1.4 93.444
## 2867 27 11 4 999 0 -1.8 92.893
## 2868 33 111 2 999 0 1.4 93.918
## 2869 59 56 5 999 0 1.4 93.444
## 2870 44 115 1 999 0 1.1 93.994
## 2871 46 88 1 999 0 1.4 94.465
## 2872 69 92 1 999 0 -1.8 93.075
## 2873 59 86 3 999 0 1.4 93.918
## 2874 42 91 5 999 0 1.4 93.444
## 2875 34 90 4 999 0 -1.8 92.893
## 2876 33 66 1 999 0 1.4 93.918
## 2877 42 154 5 999 0 1.4 93.918
## 2878 55 199 4 999 0 1.4 93.444
## 2879 59 69 3 999 0 -1.8 93.075
## 2880 56 746 2 999 0 1.4 94.465
## 2881 42 173 2 999 0 1.1 93.994
## 2882 48 694 2 999 0 -0.1 93.200
## 2883 44 400 1 999 0 -1.8 93.075
## 2884 40 206 10 999 0 1.4 93.918
## 2885 26 901 1 999 0 1.4 94.465
## 2886 38 61 1 999 0 -0.1 93.200
## 2887 28 187 1 999 0 -1.8 93.075
## 2888 20 267 2 999 0 -1.8 92.843
## 2889 58 279 2 999 0 -0.1 93.200
## 2890 58 129 4 999 0 1.4 94.465
## 2891 42 298 4 999 0 1.4 94.465
## 2892 44 126 1 999 0 1.4 93.918
## 2893 37 113 3 999 0 1.1 93.994
## 2894 48 25 2 999 0 -1.8 93.075
## 2895 54 158 2 999 0 -1.8 93.749
## 2896 42 295 1 999 0 -0.1 93.200
## 2897 41 27 1 999 0 1.1 93.994
## 2898 44 136 1 999 0 1.4 93.918
## 2899 48 158 2 999 0 1.1 93.994
## 2900 31 93 2 999 0 1.4 93.444
## 2901 48 136 2 999 0 1.1 93.994
## 2902 58 157 5 999 0 1.4 93.444
## 2903 32 156 1 999 0 1.4 94.465
## 2904 41 440 1 999 0 1.4 94.465
## 2905 34 193 1 999 0 1.4 93.918
## 2906 57 506 2 999 0 1.1 93.994
## 2907 42 125 2 999 0 1.1 93.994
## 2908 35 386 1 999 0 -1.8 92.893
## 2909 48 348 2 999 0 1.4 93.444
## 2910 22 79 3 999 0 1.4 93.918
## 2911 56 247 2 999 0 1.4 93.918
## 2912 56 234 2 999 0 1.4 93.918
## 2913 51 59 2 999 0 -1.8 92.893
## 2914 57 88 2 999 0 1.4 93.444
## 2915 33 90 3 999 0 1.4 93.444
## 2916 43 93 3 999 0 1.1 93.994
## 2917 46 285 1 999 0 1.1 93.994
## 2918 40 69 2 999 0 -0.1 93.200
## 2919 55 385 1 999 0 1.1 93.994
## 2920 46 218 2 999 0 1.1 93.994
## 2921 46 151 2 999 0 1.4 93.918
## 2922 41 60 2 999 0 -0.1 93.200
## 2923 38 606 3 999 0 1.4 93.444
## 2924 31 44 1 999 0 -0.1 93.200
## 2925 36 54 5 999 0 -2.9 92.201
## 2926 38 125 3 999 0 1.4 93.444
## 2927 38 464 1 999 0 1.4 94.465
## 2928 38 85 1 999 0 1.1 93.994
## 2929 31 237 1 999 0 1.1 93.994
## 2930 35 165 5 999 0 1.1 93.994
## 2931 46 125 1 999 0 1.1 93.994
## 2932 57 365 4 999 0 1.4 93.444
## 2933 45 581 1 999 0 -0.1 93.200
## 2934 44 259 1 999 0 1.1 93.994
## 2935 39 123 3 999 0 1.4 93.918
## 2936 52 534 1 999 0 -0.1 93.200
## 2937 39 97 3 999 0 1.4 93.918
## 2938 54 56 4 999 0 1.4 93.444
## 2939 38 112 1 999 0 -0.1 93.200
## 2940 43 445 2 999 0 -1.8 92.893
## 2941 42 178 2 999 0 1.4 93.444
## 2942 26 589 1 999 0 1.4 94.465
## 2943 39 71 1 999 0 1.4 93.918
## 2944 43 32 2 999 0 1.4 93.918
## 2945 39 399 3 999 0 1.1 93.994
## 2946 50 98 3 999 0 1.4 93.444
## 2947 37 416 8 999 0 1.4 93.918
## 2948 68 80 3 999 0 -3.4 92.379
## 2949 44 787 1 999 0 1.4 93.444
## 2950 36 339 1 999 0 -1.8 93.075
## 2951 55 381 4 999 0 1.4 93.444
## 2952 52 147 1 999 0 -0.1 93.200
## 2953 31 274 2 999 0 -1.8 92.893
## 2954 54 57 4 999 0 1.4 93.918
## 2955 35 184 5 999 0 1.4 94.465
## 2956 29 415 2 999 0 -1.8 93.075
## 2957 41 123 1 999 0 -1.8 92.893
## 2958 29 122 2 999 0 1.4 93.444
## 2959 38 167 1 999 0 -2.9 92.201
## 2960 32 108 1 999 0 -2.9 92.963
## 2961 60 526 2 999 0 1.4 94.465
## 2962 49 142 2 999 0 1.4 93.444
## 2963 30 37 2 999 0 1.4 93.444
## 2964 55 232 3 999 0 -1.8 93.075
## 2965 40 131 2 999 0 1.1 93.994
## 2966 39 432 2 999 0 -1.8 92.893
## 2967 38 28 3 999 0 1.1 93.994
## 2968 38 280 10 999 0 1.4 93.444
## 2969 38 85 3 999 0 1.1 93.994
## 2970 35 70 6 999 0 1.1 93.994
## 2971 30 224 1 999 0 -1.8 93.075
## 2972 52 67 5 999 0 -1.8 93.075
## 2973 37 124 2 999 0 1.4 93.444
## 2974 45 177 1 999 0 1.1 93.994
## 2975 42 234 5 999 0 -1.8 93.075
## 2976 34 89 1 999 0 -2.9 92.201
## 2977 30 296 1 999 0 -1.8 92.893
## 2978 39 207 1 999 0 1.4 94.465
## 2979 25 215 1 999 0 -1.7 94.027
## 2980 37 210 1 999 0 -0.1 93.200
## 2981 58 224 1 999 0 1.4 93.918
## 2982 34 68 3 999 0 1.4 93.444
## 2983 40 91 1 999 0 1.4 94.465
## 2984 42 57 2 999 0 1.4 93.444
## 2985 35 180 3 999 0 1.4 93.918
## 2986 41 144 2 999 0 1.1 93.994
## 2987 56 298 1 999 0 1.4 93.918
## 2988 55 164 7 999 0 1.4 93.918
## 2989 36 128 1 999 0 1.4 94.465
## 2990 38 276 2 999 0 -1.8 93.075
## 2991 27 147 3 999 0 1.1 93.994
## 2992 57 40 1 999 0 1.4 93.918
## 2993 28 444 1 999 0 -1.8 93.075
## 2994 34 155 1 999 0 -0.1 93.200
## 2995 46 679 1 999 0 -3.0 92.713
## 2996 42 124 1 999 0 -0.1 93.200
## 2997 47 68 1 999 0 1.1 93.994
## 2998 30 83 4 999 0 1.4 94.465
## 2999 46 446 1 999 0 1.4 93.918
## 3000 39 751 2 999 0 1.4 93.918
## 3001 38 102 5 999 0 1.4 93.444
## 3002 46 8 1 999 0 -0.1 93.200
## 3003 35 203 6 999 0 1.4 93.444
## 3004 35 194 1 999 0 1.1 93.994
## 3005 46 357 2 999 0 -1.8 93.075
## 3006 46 194 5 999 0 1.1 93.994
## 3007 43 97 6 999 0 1.4 93.918
## 3008 26 125 2 999 0 1.4 93.918
## 3009 34 174 1 999 0 1.1 93.994
## 3010 40 893 1 999 0 -3.0 92.713
## 3011 29 264 2 999 0 -3.0 92.713
## 3012 21 264 1 999 0 -1.8 93.075
## 3013 54 155 2 999 0 1.1 93.994
## 3014 40 349 2 999 0 1.4 94.465
## 3015 52 777 4 999 0 1.4 94.465
## 3016 34 275 3 999 0 -1.8 92.893
## 3017 35 123 5 999 0 1.4 93.918
## 3018 49 44 1 999 0 -1.8 93.075
## 3019 55 123 1 999 0 1.4 93.444
## 3020 33 51 7 999 0 1.4 93.918
## 3021 40 62 2 999 0 1.4 93.918
## 3022 55 555 5 999 0 1.4 94.465
## 3023 46 87 3 999 0 1.4 93.918
## 3024 37 110 2 999 0 1.4 93.444
## 3025 42 127 2 999 0 -1.8 93.075
## 3026 53 303 1 999 0 1.1 93.994
## 3027 50 199 1 999 0 -0.1 93.200
## 3028 43 507 1 999 0 1.4 93.918
## 3029 32 388 4 999 0 1.4 93.444
## 3030 22 100 1 999 0 1.4 93.918
## 3031 29 255 1 999 0 1.4 94.465
## 3032 24 640 2 999 0 -1.8 93.075
## 3033 27 111 3 999 0 1.4 93.918
## 3034 34 468 1 999 0 1.4 93.444
## 3035 49 364 1 999 0 1.1 93.994
## 3036 35 188 6 999 0 1.1 93.994
## 3037 42 120 1 999 0 -0.1 93.200
## 3038 36 54 1 999 0 -1.8 92.893
## 3039 39 908 3 999 0 1.4 93.918
## 3040 42 259 8 999 0 1.4 93.918
## 3041 36 274 2 999 0 -1.8 93.075
## 3042 45 461 1 999 0 1.1 93.994
## 3043 45 107 2 999 0 1.1 93.994
## 3044 37 110 5 999 0 1.4 93.918
## 3045 44 135 3 999 0 1.4 93.444
## 3046 31 107 2 999 0 -0.1 93.200
## 3047 58 454 2 999 0 1.4 93.444
## 3048 33 197 4 999 0 1.4 93.444
## 3049 49 97 1 999 0 1.4 93.918
## 3050 45 272 1 999 0 1.4 93.444
## 3051 36 127 2 999 0 1.1 93.994
## 3052 43 170 2 999 0 -0.1 93.200
## 3053 34 90 2 999 0 1.4 93.444
## 3054 40 46 1 999 0 1.1 93.994
## 3055 58 129 2 999 0 1.4 93.444
## 3056 57 313 1 999 0 1.4 93.918
## 3057 52 910 2 999 0 1.4 94.465
## 3058 39 188 1 999 0 1.4 93.918
## 3059 53 215 2 999 0 1.1 93.994
## 3060 36 225 2 999 0 1.1 93.994
## 3061 34 97 9 999 0 1.1 93.994
## 3062 31 344 4 999 0 -1.8 92.893
## 3063 41 347 1 999 0 -1.8 93.075
## 3064 47 20 18 999 0 1.4 93.918
## 3065 42 2372 3 999 0 1.4 93.444
## 3066 29 565 1 999 0 -1.8 92.893
## 3067 32 114 1 999 0 -1.8 92.893
## 3068 33 182 2 999 0 1.4 94.465
## 3069 24 220 1 999 0 -2.9 92.963
## 3070 40 179 1 999 0 -1.8 93.075
## 3071 34 197 1 999 0 1.4 94.465
## 3072 45 9 4 999 0 -1.8 92.893
## 3073 52 491 3 999 0 1.4 93.918
## 3074 35 109 1 999 0 -1.8 92.893
## 3075 36 148 6 999 0 1.4 93.918
## 3076 49 97 1 999 0 -1.8 93.075
## 3077 60 368 2 999 0 1.4 93.444
## 3078 52 97 3 999 0 1.4 93.918
## 3079 46 243 4 999 0 -1.8 92.893
## 3080 44 398 7 999 0 1.1 93.994
## 3081 40 107 1 999 0 -0.1 93.200
## 3082 34 75 1 999 0 -3.4 92.649
## 3083 43 246 2 999 0 1.4 94.465
## 3084 53 313 4 999 0 1.4 93.444
## 3085 37 88 4 999 0 1.4 94.465
## 3086 29 128 1 999 0 -2.9 92.963
## 3087 42 485 2 999 0 1.4 93.918
## 3088 40 104 4 999 0 1.4 94.465
## 3089 34 138 8 999 0 -1.8 92.843
## 3090 55 5 3 999 0 1.1 93.994
## 3091 31 99 7 999 0 1.4 93.444
## 3092 32 386 2 999 0 -1.8 93.075
## 3093 33 16 5 999 0 -1.8 92.893
## 3094 40 189 1 999 0 1.4 93.918
## 3095 47 163 3 999 0 1.4 93.444
## 3096 37 387 1 999 0 -0.1 93.200
## 3097 31 111 1 999 0 1.4 93.918
## 3098 32 128 1 999 0 1.4 93.918
## 3099 36 90 2 999 0 1.1 93.994
## 3100 54 490 12 999 0 1.4 94.465
## 3101 32 116 1 999 0 -1.8 92.843
## 3102 40 60 2 999 0 1.4 94.465
## 3103 55 431 1 999 0 1.4 94.465
## 3104 49 225 1 999 0 1.4 94.465
## 3105 27 384 1 999 0 -1.8 93.075
## 3106 32 746 1 999 0 1.1 93.994
## 3107 32 96 6 999 0 -1.8 92.843
## 3108 51 159 1 999 0 1.4 94.465
## 3109 35 447 3 999 0 1.4 93.918
## 3110 45 79 1 999 0 1.1 93.994
## 3111 32 21 12 999 0 -1.8 92.893
## 3112 55 342 1 999 0 1.1 93.994
## 3113 39 6 4 999 0 -1.8 92.893
## 3114 37 326 3 999 0 -1.8 93.075
## 3115 46 59 8 999 0 1.4 93.918
## 3116 41 17 24 999 0 1.4 93.918
## 3117 31 1248 3 999 0 1.4 94.465
## 3118 35 463 2 999 0 1.4 93.444
## 3119 39 266 1 999 0 1.4 93.918
## 3120 28 535 2 999 0 1.4 93.918
## 3121 39 217 3 999 0 1.4 93.444
## 3122 43 181 2 999 0 1.1 93.994
## 3123 37 459 1 999 0 -3.4 92.649
## 3124 37 126 1 999 0 1.4 93.444
## 3125 32 98 3 999 0 1.4 93.444
## 3126 22 224 1 999 0 -1.8 93.075
## 3127 29 223 3 999 0 1.4 93.918
## 3128 40 354 7 999 0 1.4 94.465
## 3129 59 39 1 999 0 1.4 93.918
## 3130 49 36 4 999 0 1.4 93.444
## 3131 43 92 1 999 0 -0.1 93.200
## 3132 38 165 2 999 0 1.1 93.994
## 3133 28 102 2 999 0 1.4 94.465
## 3134 39 612 1 999 0 -1.8 92.893
## 3135 40 68 2 999 0 1.4 93.918
## 3136 37 115 4 999 0 1.1 93.994
## 3137 49 80 1 999 0 -0.1 93.200
## 3138 40 154 3 999 0 1.4 94.465
## 3139 45 170 2 999 0 1.1 93.994
## 3140 35 368 6 999 0 1.1 93.994
## 3141 53 372 2 999 0 -1.8 93.075
## 3142 36 1174 1 999 0 -1.8 93.075
## 3143 37 85 8 999 0 1.4 94.465
## 3144 27 262 3 999 0 -1.7 94.055
## 3145 44 78 3 999 0 1.4 94.465
## 3146 27 164 3 999 0 1.4 93.918
## 3147 39 135 1 999 0 1.1 93.994
## 3148 36 7 3 999 0 -1.8 93.075
## 3149 35 369 1 999 0 1.1 93.994
## 3150 53 67 3 999 0 -1.8 93.075
## 3151 39 79 2 999 0 1.4 93.918
## 3152 31 201 3 999 0 -1.8 93.075
## 3153 32 366 2 999 0 -1.8 92.893
## 3154 38 241 2 999 0 1.1 93.994
## 3155 38 857 2 999 0 1.4 93.918
## 3156 25 612 7 999 0 -1.8 92.893
## 3157 50 144 1 999 0 1.4 93.918
## 3158 55 86 7 999 0 1.1 93.994
## 3159 32 105 1 999 0 -1.8 93.075
## 3160 28 200 2 999 0 -1.8 92.893
## 3161 22 110 7 999 0 1.4 93.918
## 3162 52 130 1 999 0 1.1 93.994
## 3163 37 131 3 999 0 -1.8 93.075
## 3164 59 337 4 999 0 1.4 93.444
## 3165 30 13 27 999 0 1.4 93.918
## 3166 39 87 1 999 0 1.4 94.465
## 3167 23 132 1 999 0 -1.8 93.075
## 3168 57 496 1 999 0 1.4 93.918
## 3169 32 155 2 999 0 1.1 93.994
## 3170 19 213 3 999 0 -1.8 93.075
## 3171 33 139 3 999 0 -0.1 93.200
## 3172 65 145 2 999 0 -2.9 92.963
## 3173 31 413 1 999 0 1.4 93.444
## 3174 32 112 1 999 0 1.1 93.994
## 3175 55 124 3 999 0 -0.1 93.200
## 3176 58 849 2 999 0 1.1 93.994
## 3177 33 73 4 999 0 -1.8 93.075
## 3178 26 158 5 999 0 -1.8 92.893
## 3179 46 550 3 999 0 1.4 94.465
## 3180 32 165 4 999 0 -0.1 93.200
## 3181 35 55 3 999 0 1.1 93.994
## 3182 27 125 1 999 0 -0.1 93.200
## 3183 27 294 2 999 0 -1.8 93.075
## 3184 42 388 1 999 0 1.4 93.918
## 3185 36 280 1 999 0 1.4 93.444
## 3186 32 217 1 999 0 1.4 93.444
## 3187 31 433 2 999 0 -1.8 92.893
## 3188 22 767 12 999 0 1.4 93.918
## 3189 38 123 1 999 0 1.4 94.465
## 3190 44 208 1 999 0 -1.8 92.893
## 3191 40 81 5 999 0 1.4 93.918
## 3192 36 256 1 999 0 1.1 93.994
## 3193 36 37 1 999 0 1.4 94.465
## 3194 41 106 1 999 0 1.4 93.918
## 3195 44 53 1 999 0 1.4 93.918
## 3196 30 270 3 999 0 1.4 93.918
## 3197 51 151 4 999 0 1.4 93.918
## 3198 28 240 1 999 0 -1.8 92.893
## 3199 29 337 3 999 0 -0.1 93.200
## 3200 35 114 1 999 0 -1.8 93.075
## 3201 56 95 1 999 0 -1.8 93.075
## 3202 54 832 18 999 0 1.4 94.465
## 3203 32 83 1 999 0 -1.8 93.075
## 3204 33 68 9 999 0 1.4 93.444
## 3205 49 626 3 999 0 1.4 93.918
## 3206 40 146 1 999 0 -0.1 93.200
## 3207 46 173 1 999 0 -0.1 93.200
## 3208 33 356 1 999 0 1.4 93.918
## 3209 55 158 1 999 0 -1.8 93.075
## 3210 51 19 14 999 0 1.4 93.918
## 3211 42 110 3 999 0 1.4 93.918
## 3212 31 115 16 999 0 -1.8 93.075
## 3213 36 133 4 999 0 1.1 93.994
## 3214 41 127 6 999 0 1.4 94.465
## 3215 36 139 3 999 0 -0.1 93.200
## 3216 39 364 2 999 0 1.1 93.994
## 3217 45 671 2 999 0 1.4 93.444
## 3218 38 54 1 999 0 -1.8 93.075
## 3219 35 95 3 999 0 1.1 93.994
## 3220 30 63 3 999 0 -1.8 92.893
## 3221 52 104 1 999 0 -0.1 93.200
## 3222 39 436 2 999 0 1.4 93.444
## 3223 51 596 3 999 0 1.4 93.918
## 3224 28 318 2 999 0 1.1 93.994
## 3225 59 306 1 999 0 1.4 93.918
## 3226 54 53 3 999 0 1.4 93.444
## 3227 37 96 1 999 0 1.4 94.465
## 3228 35 63 5 999 0 1.1 93.994
## 3229 57 932 2 999 0 1.4 93.444
## 3230 32 67 2 999 0 1.4 93.918
## 3231 33 167 1 999 0 -1.8 92.893
## 3232 35 228 1 999 0 1.4 93.444
## 3233 28 442 1 999 0 -1.8 93.075
## 3234 36 239 4 999 0 1.1 93.994
## 3235 57 215 3 999 0 1.4 94.465
## 3236 41 120 5 999 0 1.1 93.994
## 3237 30 463 2 999 0 1.4 93.918
## 3238 47 89 2 999 0 1.4 93.444
## 3239 35 1336 4 999 0 1.4 93.918
## 3240 40 102 5 999 0 1.4 93.918
## 3241 54 178 4 999 0 1.4 93.918
## 3242 54 313 1 999 0 1.4 93.918
## 3243 44 240 2 999 0 1.4 93.444
## 3244 23 200 1 999 0 -1.8 92.893
## 3245 40 111 2 999 0 -0.1 93.200
## 3246 34 593 2 999 0 1.1 93.994
## 3247 29 210 2 999 0 -1.8 93.075
## 3248 50 273 1 999 0 1.4 93.444
## 3249 31 282 1 999 0 -0.1 93.200
## 3250 23 821 3 999 0 1.4 93.918
## 3251 39 525 1 999 0 -1.8 92.893
## 3252 43 245 1 999 0 1.4 93.918
## 3253 30 903 4 999 0 1.4 93.918
## 3254 69 355 3 999 0 -3.4 92.649
## 3255 53 154 3 999 0 1.4 94.465
## 3256 43 487 1 999 0 1.4 94.465
## 3257 36 120 1 999 0 1.4 93.444
## 3258 83 75 2 999 0 -3.4 92.379
## 3259 32 188 4 999 0 1.4 94.465
## 3260 32 805 2 999 0 1.4 94.465
## 3261 29 201 2 999 0 1.4 93.444
## 3262 29 441 4 999 0 -0.1 93.200
## 3263 43 88 4 999 0 1.4 93.918
## 3264 52 51 1 999 0 -1.8 92.893
## 3265 37 103 2 999 0 1.4 93.444
## 3266 71 349 1 999 0 -1.8 93.075
## 3267 48 669 1 999 0 -3.4 92.379
## 3268 42 230 6 999 0 -1.8 92.893
## 3269 32 232 2 999 0 -1.8 92.893
## 3270 41 60 2 999 0 -1.8 93.075
## 3271 39 303 3 999 0 -1.8 92.893
## 3272 28 101 2 999 0 1.1 93.994
## 3273 23 633 1 999 0 1.1 93.994
## 3274 35 419 2 999 0 -2.9 92.201
## 3275 41 367 3 999 0 1.4 94.465
## 3276 38 67 2 999 0 1.4 93.444
## 3277 43 209 2 999 0 -1.8 92.893
## 3278 29 145 4 999 0 1.4 94.465
## 3279 43 65 4 999 0 1.4 93.918
## 3280 57 89 2 999 0 -0.1 93.200
## 3281 33 148 1 999 0 1.1 93.994
## 3282 33 35 2 999 0 1.4 93.918
## 3283 37 247 3 999 0 1.4 93.918
## 3284 59 459 7 999 0 1.4 93.918
## 3285 31 313 2 999 0 1.1 93.994
## 3286 24 477 1 999 0 -1.8 93.075
## 3287 57 836 1 999 0 -1.8 93.075
## 3288 50 20 3 999 0 1.4 93.444
## 3289 48 349 2 999 0 1.4 94.465
## 3290 35 365 1 999 0 -3.4 92.649
## 3291 32 540 2 999 0 -2.9 92.201
## 3292 42 217 4 999 0 1.4 94.465
## 3293 29 133 5 999 0 1.4 93.444
## 3294 40 40 9 999 0 1.4 93.444
## 3295 44 634 1 999 0 -3.4 92.431
## 3296 25 422 2 999 0 1.4 93.918
## 3297 31 196 3 999 0 1.4 93.918
## 3298 32 188 2 999 0 1.4 94.465
## 3299 26 190 1 999 0 -1.8 93.075
## 3300 36 165 2 999 0 1.4 93.444
## 3301 31 370 3 999 0 -1.8 93.075
## 3302 44 107 3 999 0 1.4 93.918
## 3303 30 360 2 999 0 1.4 94.465
## 3304 48 903 1 999 0 1.4 93.918
## 3305 56 364 1 999 0 1.1 93.994
## 3306 56 379 1 999 0 1.1 93.994
## 3307 37 391 1 999 0 1.1 93.994
## 3308 36 59 1 999 0 -1.8 92.893
## 3309 40 433 1 999 0 -1.8 92.893
## 3310 45 149 1 999 0 -0.1 93.200
## 3311 46 75 1 999 0 -1.8 93.075
## 3312 30 228 1 999 0 1.4 93.918
## 3313 34 81 2 999 0 1.4 93.444
## 3314 40 154 1 999 0 1.4 93.918
## 3315 56 228 2 999 0 1.4 93.444
## 3316 29 1042 2 999 0 -1.8 93.075
## 3317 45 102 4 999 0 -0.1 93.200
## 3318 23 270 3 999 0 -2.9 92.469
## 3319 45 452 2 999 0 -1.8 93.075
## 3320 31 160 5 999 0 1.4 93.918
## 3321 52 259 3 999 0 1.1 93.994
## 3322 36 311 2 999 0 1.4 94.465
## 3323 28 243 2 999 0 1.4 94.465
## 3324 33 392 1 999 0 1.1 93.994
## 3325 41 124 4 999 0 1.4 93.444
## 3326 28 964 1 999 0 1.4 93.918
## 3327 50 1463 2 999 0 -1.8 93.075
## 3328 39 294 2 999 0 -1.8 92.893
## 3329 27 141 1 999 0 1.4 93.918
## 3330 48 54 1 999 0 -1.7 94.055
## 3331 31 560 2 999 0 -0.1 93.200
## 3332 26 123 1 999 0 1.4 94.465
## 3333 55 1136 1 999 0 1.4 94.465
## 3334 30 126 4 999 0 1.4 93.918
## 3335 29 196 4 999 0 1.4 93.918
## 3336 43 277 1 999 0 1.1 93.994
## 3337 33 215 3 999 0 1.1 93.994
## 3338 44 96 2 999 0 1.1 93.994
## 3339 40 91 3 999 0 1.1 93.994
## 3340 28 337 4 999 0 1.1 93.994
## 3341 49 258 2 999 0 1.4 93.918
## 3342 43 312 1 999 0 1.1 93.994
## 3343 38 171 2 999 0 -1.8 92.893
## 3344 54 843 2 999 0 1.1 93.994
## 3345 44 128 2 999 0 1.4 93.918
## 3346 31 198 2 999 0 1.4 94.465
## 3347 43 247 6 999 0 -1.8 92.893
## 3348 25 354 1 999 0 1.4 93.918
## 3349 46 124 4 999 0 -1.8 93.075
## 3350 28 28 2 999 0 -1.8 92.893
## 3351 50 38 1 999 0 -1.8 93.075
## 3352 48 716 3 999 0 1.4 93.918
## 3353 33 60 9 999 0 1.4 94.465
## 3354 47 194 1 999 0 1.1 93.994
## 3355 30 171 3 999 0 1.4 93.918
## 3356 31 55 1 999 0 1.1 93.994
## 3357 50 680 2 999 0 1.1 93.994
## 3358 33 11 3 999 0 -1.8 93.075
## 3359 56 86 4 999 0 1.4 93.918
## 3360 45 296 1 999 0 1.4 93.918
## 3361 30 114 2 999 0 1.1 93.994
## 3362 39 23 1 999 0 1.4 94.465
## 3363 30 295 4 999 0 1.4 93.918
## 3364 45 223 1 999 0 1.1 93.994
## 3365 27 336 9 999 0 -1.8 92.893
## 3366 40 335 1 999 0 -1.8 93.075
## 3367 39 178 1 999 0 1.4 94.465
## 3368 26 161 3 999 0 1.1 93.994
## 3369 50 88 2 999 0 1.4 93.444
## 3370 36 280 2 999 0 1.4 94.465
## 3371 45 188 1 999 0 -0.1 93.200
## 3372 34 150 2 999 0 1.1 93.994
## 3373 31 535 2 999 0 1.1 93.994
## 3374 38 361 2 999 0 1.4 94.465
## 3375 32 209 2 999 0 1.4 93.918
## 3376 33 305 2 999 0 -1.8 92.893
## 3377 34 560 1 999 0 1.4 93.918
## 3378 31 103 1 999 0 1.4 93.444
## 3379 24 209 1 999 0 -1.8 93.075
## 3380 41 105 2 999 0 1.4 93.444
## 3381 35 146 1 999 0 1.1 93.994
## 3382 38 30 4 999 0 -1.8 92.893
## 3383 29 556 1 999 0 -1.8 92.893
## 3384 53 53 1 999 0 -0.1 93.200
## 3385 82 185 2 999 0 -3.4 92.431
## 3386 29 234 3 999 0 1.4 93.444
## 3387 46 453 2 999 0 -1.8 93.075
## 3388 31 488 3 999 0 1.1 93.994
## 3389 47 126 3 999 0 1.4 93.918
## 3390 33 109 1 999 0 1.1 93.994
## 3391 52 199 7 999 0 1.4 93.918
## 3392 54 743 1 999 0 -1.8 93.075
## 3393 50 248 1 999 0 1.1 93.994
## 3394 32 443 2 999 0 1.4 94.465
## 3395 23 354 3 999 0 -1.8 93.075
## 3396 31 297 3 999 0 1.1 93.994
## 3397 36 230 2 999 0 1.4 93.918
## 3398 29 117 1 999 0 1.4 93.918
## 3399 38 234 1 999 0 1.4 93.444
## 3400 18 72 2 999 0 -3.4 92.379
## 3401 31 84 1 999 0 -2.9 92.963
## 3402 47 1122 1 999 0 -1.8 93.075
## 3403 31 375 2 999 0 -1.7 94.027
## 3404 43 380 1 999 0 1.4 93.918
## 3405 36 257 2 999 0 -1.8 92.893
## 3406 28 63 1 999 0 -1.8 93.075
## 3407 40 114 2 999 0 1.1 93.994
## 3408 29 215 1 999 0 -1.8 93.369
## 3409 38 240 1 999 0 1.1 93.994
## 3410 32 325 1 999 0 1.1 93.994
## 3411 49 537 5 999 0 1.4 94.465
## 3412 31 79 3 999 0 -1.8 92.893
## 3413 43 327 4 999 0 -1.8 92.893
## 3414 51 70 3 999 0 1.4 93.918
## 3415 51 212 1 999 0 -2.9 92.201
## 3416 38 141 3 999 0 1.1 93.994
## 3417 34 139 1 999 0 1.1 93.994
## 3418 35 85 2 999 0 1.4 93.918
## 3419 40 119 2 999 0 1.4 93.918
## 3420 39 690 3 999 0 1.4 93.918
## 3421 32 247 1 999 0 1.4 93.444
## 3422 26 256 1 999 0 1.4 93.918
## 3423 45 572 4 999 0 1.4 94.465
## 3424 29 119 1 999 0 -1.8 92.893
## 3425 75 247 2 999 0 -3.4 92.431
## 3426 44 360 3 999 0 1.4 94.465
## 3427 55 197 1 999 0 1.4 93.918
## 3428 32 72 2 999 0 1.1 93.994
## 3429 59 477 1 999 0 1.1 93.994
## 3430 31 153 3 999 0 1.4 93.918
## 3431 25 21 7 999 0 -1.8 92.893
## 3432 33 66 7 999 0 1.4 93.918
## 3433 34 110 2 999 0 -0.1 93.200
## 3434 41 146 1 999 0 1.4 93.444
## 3435 36 33 2 999 0 1.1 93.994
## 3436 48 195 2 999 0 -1.8 93.369
## 3437 51 280 2 999 0 -0.1 93.200
## 3438 31 133 1 999 0 1.4 93.918
## 3439 37 91 2 999 0 -2.9 92.469
## 3440 55 197 9 999 0 1.1 93.994
## 3441 35 297 4 999 0 -1.8 92.893
## 3442 30 3094 2 999 0 1.1 93.994
## 3443 28 419 2 999 0 1.4 94.465
## 3444 58 160 1 999 0 -2.9 92.469
## 3445 60 442 2 999 0 1.1 93.994
## 3446 53 298 5 999 0 1.1 93.994
## 3447 31 325 3 999 0 1.4 94.465
## 3448 35 116 7 999 0 1.4 93.444
## 3449 53 82 2 999 0 1.4 93.444
## 3450 35 159 1 999 0 1.4 93.444
## 3451 29 164 3 999 0 -1.8 92.893
## 3452 37 297 2 999 0 -1.8 92.893
## 3453 43 613 1 999 0 -3.4 92.379
## 3454 42 212 1 999 0 -1.8 92.893
## 3455 29 147 1 999 0 1.1 93.994
## 3456 32 182 1 999 0 1.4 93.918
## 3457 36 143 2 999 0 -3.4 92.431
## 3458 42 159 1 999 0 1.1 93.994
## 3459 53 107 3 999 0 -2.9 92.963
## 3460 50 192 1 999 0 1.4 93.918
## 3461 44 668 7 999 0 1.1 93.994
## 3462 36 210 1 999 0 1.1 93.994
## 3463 44 73 3 999 0 1.4 94.465
## 3464 27 86 9 999 0 1.4 93.918
## 3465 43 1212 1 999 0 1.4 93.918
## 3466 57 127 4 999 0 1.4 93.444
## 3467 55 228 2 999 0 1.4 94.465
## 3468 41 442 11 999 0 1.4 94.465
## 3469 49 75 2 999 0 1.4 93.918
## 3470 41 239 3 999 0 1.1 93.994
## 3471 35 471 1 999 0 -2.9 92.201
## 3472 29 111 1 999 0 1.4 93.444
## 3473 48 169 1 999 0 1.4 93.918
## 3474 37 492 9 999 0 1.1 93.994
## 3475 32 123 1 999 0 1.4 94.465
## 3476 34 126 1 999 0 1.4 94.465
## 3477 28 199 1 999 0 -1.8 92.893
## 3478 41 128 2 999 0 -1.7 94.215
## 3479 46 127 1 999 0 1.1 93.994
## 3480 30 341 1 999 0 -1.8 93.369
## 3481 52 867 2 999 0 1.4 93.918
## 3482 42 64 2 999 0 1.1 93.994
## 3483 43 362 1 999 0 1.4 93.918
## 3484 37 219 2 999 0 1.1 93.994
## 3485 50 207 3 999 0 -1.8 92.893
## 3486 30 67 1 999 0 1.4 94.465
## 3487 55 288 2 999 0 -0.1 93.200
## 3488 34 165 2 999 0 1.1 93.994
## 3489 41 548 2 999 0 1.4 94.465
## 3490 43 196 1 999 0 1.1 93.994
## 3491 45 16 11 999 0 1.4 93.444
## 3492 31 159 2 999 0 1.1 93.994
## 3493 30 444 5 999 0 1.4 93.918
## 3494 38 54 8 999 0 1.4 93.918
## 3495 33 273 1 999 0 1.1 93.994
## 3496 28 113 1 999 0 -1.8 92.893
## 3497 35 17 7 999 0 -1.8 92.893
## 3498 45 212 5 999 0 1.1 93.994
## 3499 52 161 1 999 0 1.4 93.918
## 3500 32 396 3 999 0 1.1 93.994
## 3501 35 228 2 999 0 1.4 93.918
## 3502 59 121 6 999 0 -2.9 92.201
## 3503 35 217 1 999 0 1.4 93.444
## 3504 42 257 1 999 0 -1.8 93.075
## 3505 50 433 4 999 0 1.4 93.918
## 3506 70 411 1 999 0 -1.7 94.027
## 3507 45 133 9 999 0 1.4 93.444
## 3508 48 486 2 999 0 -1.8 92.893
## 3509 34 227 15 999 0 1.4 94.465
## 3510 29 68 2 999 0 -1.8 92.893
## 3511 31 176 2 999 0 1.1 93.994
## 3512 58 100 2 999 0 -2.9 92.963
## 3513 52 88 1 999 0 1.4 93.918
## 3514 46 132 1 999 0 -0.1 93.200
## 3515 33 340 1 999 0 -0.1 93.200
## 3516 39 125 2 999 0 1.4 93.444
## 3517 40 343 1 999 0 1.4 93.444
## 3518 57 212 1 999 0 1.1 93.994
## 3519 52 128 3 999 0 1.4 93.918
## 3520 45 168 4 999 0 1.4 93.918
## 3521 26 802 2 999 0 -1.8 92.893
## 3522 31 125 1 999 0 -1.8 92.893
## 3523 27 38 9 999 0 1.1 93.994
## 3524 33 292 1 999 0 -0.1 93.200
## 3525 45 103 1 999 0 1.4 93.444
## 3526 41 52 6 999 0 1.4 93.918
## 3527 30 249 2 999 0 1.1 93.994
## 3528 50 106 3 999 0 1.4 93.444
## 3529 43 222 2 999 0 -0.1 93.200
## 3530 36 120 2 999 0 1.1 93.994
## 3531 35 30 1 999 0 1.4 93.444
## 3532 43 269 1 999 0 1.4 93.444
## 3533 29 420 1 999 0 1.1 93.994
## 3534 37 37 1 999 0 1.4 93.918
## 3535 30 332 1 999 0 1.4 93.918
## 3536 51 101 2 999 0 -0.1 93.200
## 3537 28 185 5 999 0 1.1 93.994
## 3538 29 122 12 999 0 1.4 93.918
## 3539 38 129 2 999 0 1.4 94.465
## 3540 42 175 4 999 0 -2.9 92.201
## 3541 55 266 2 999 0 1.4 94.465
## 3542 59 166 1 999 0 1.1 93.994
## 3543 56 366 1 999 0 1.4 93.444
## 3544 32 207 1 999 0 1.4 93.918
## 3545 42 70 1 999 0 -0.1 93.200
## 3546 45 702 4 999 0 1.1 93.994
## 3547 56 136 3 999 0 -1.8 93.075
## 3548 39 182 4 999 0 1.4 94.465
## 3549 46 93 15 999 0 1.4 93.444
## 3550 41 863 1 999 0 1.1 93.994
## 3551 25 83 2 999 0 1.4 93.918
## 3552 27 275 1 999 0 -1.8 92.893
## 3553 36 159 2 999 0 1.4 93.444
## 3554 35 189 1 999 0 1.4 93.444
## 3555 29 90 2 999 0 1.4 93.444
## 3556 33 466 1 999 0 1.4 93.918
## 3557 29 78 1 999 0 1.1 93.994
## 3558 49 285 1 999 0 1.4 94.465
## 3559 43 24 13 999 0 1.4 93.444
## 3560 52 437 3 999 0 -1.8 92.893
## 3561 32 282 1 999 0 -2.9 92.201
## 3562 43 258 2 999 0 1.1 93.994
## 3563 32 93 1 999 0 1.1 93.994
## 3564 41 396 2 999 0 1.4 93.918
## 3565 45 553 2 999 0 1.4 94.465
## 3566 35 35 10 999 0 1.4 93.444
## 3567 20 169 1 999 0 -3.4 92.431
## 3568 35 12 12 999 0 1.4 93.918
## 3569 47 268 6 999 0 1.1 93.994
## 3570 46 93 3 999 0 1.4 93.918
## 3571 34 354 2 999 0 -0.1 93.200
## 3572 38 22 3 999 0 -1.8 93.075
## 3573 35 192 3 999 0 1.4 93.918
## 3574 34 86 4 999 0 1.1 93.994
## 3575 29 238 3 999 0 1.1 93.994
## 3576 40 837 2 999 0 1.4 93.918
## 3577 36 235 4 999 0 -1.8 92.893
## 3578 43 267 2 999 0 1.1 93.994
## 3579 40 141 3 999 0 -3.4 92.649
## 3580 30 124 2 999 0 1.4 93.918
## 3581 50 102 1 999 0 -0.1 93.200
## 3582 40 162 4 999 0 1.4 93.918
## 3583 53 40 5 999 0 -1.8 92.893
## 3584 26 106 3 999 0 1.4 93.918
## 3585 39 245 2 999 0 1.4 93.918
## 3586 39 155 3 999 0 1.1 93.994
## 3587 30 146 3 999 0 1.4 93.444
## 3588 34 228 1 999 0 1.1 93.994
## 3589 39 1053 2 999 0 1.4 94.465
## 3590 31 85 4 999 0 1.4 93.918
## 3591 31 624 5 999 0 1.4 93.918
## 3592 29 808 1 999 0 1.4 93.918
## 3593 48 60 1 999 0 -0.1 93.200
## 3594 54 834 9 999 0 1.4 93.444
## 3595 32 792 1 999 0 1.4 93.918
## 3596 44 193 2 999 0 1.4 93.918
## 3597 32 223 2 999 0 1.4 94.465
## 3598 27 236 2 999 0 1.4 93.918
## 3599 39 333 1 999 0 -1.8 92.893
## 3600 32 827 2 999 0 -1.8 92.893
## 3601 46 513 5 999 0 1.4 93.918
## 3602 41 272 1 999 0 -1.7 94.027
## 3603 37 121 2 999 0 -1.8 92.893
## 3604 33 331 1 999 0 1.4 93.444
## 3605 35 123 2 999 0 1.1 93.994
## 3606 44 109 1 999 0 1.1 93.994
## 3607 57 181 4 999 0 -0.1 93.200
## 3608 36 445 4 999 0 1.4 93.918
## 3609 52 326 11 999 0 1.4 93.918
## 3610 50 203 2 999 0 1.4 93.444
## 3611 35 215 1 999 0 -1.8 92.893
## 3612 40 83 5 999 0 -1.8 93.075
## 3613 39 831 4 999 0 -1.8 92.893
## 3614 39 85 1 999 0 -1.8 92.893
## 3615 30 235 3 999 0 1.4 93.918
## 3616 40 265 2 999 0 1.4 93.918
## 3617 55 413 1 999 0 1.1 93.994
## 3618 49 119 4 999 0 1.4 93.444
## 3619 45 1026 2 999 0 1.4 93.444
## 3620 50 36 1 999 0 1.4 93.444
## 3621 32 419 2 999 0 1.4 93.918
## 3622 42 559 3 999 0 1.1 93.994
## 3623 40 15 7 999 0 -1.8 92.893
## 3624 24 722 3 999 0 1.4 93.918
## 3625 30 34 1 999 0 1.4 93.918
## 3626 33 854 1 999 0 1.4 93.918
## 3627 56 102 1 999 0 1.4 93.444
## 3628 42 364 1 999 0 1.1 93.994
## 3629 35 33 12 999 0 1.4 93.918
## 3630 32 79 3 999 0 1.4 93.918
## 3631 31 314 3 999 0 1.4 93.444
## 3632 31 419 3 999 0 1.4 93.444
## 3633 34 2462 2 999 0 -0.1 93.200
## 3634 34 218 1 999 0 1.4 93.918
## 3635 85 129 3 999 0 -1.8 93.075
## 3636 35 540 2 999 0 -0.1 93.200
## 3637 42 149 1 999 0 -0.1 93.200
## 3638 31 105 6 999 0 -0.1 93.200
## 3639 53 460 1 999 0 1.1 93.994
## 3640 39 21 8 999 0 1.4 94.465
## 3641 44 79 1 999 0 1.4 93.444
## 3642 32 49 1 999 0 -1.8 92.893
## 3643 46 114 2 999 0 -1.8 92.893
## 3644 38 1272 1 999 0 -1.8 92.893
## 3645 32 1048 1 999 0 -2.9 92.963
## 3646 43 318 7 999 0 1.4 93.918
## 3647 50 35 3 999 0 -0.1 93.200
## 3648 39 102 1 999 0 -0.1 93.200
## 3649 32 112 1 999 0 1.1 93.994
## 3650 37 71 15 999 0 1.4 93.918
## 3651 37 76 1 999 0 1.4 93.444
## 3652 34 11 3 999 0 1.4 93.918
## 3653 41 84 5 999 0 1.4 93.444
## 3654 41 240 2 999 0 1.1 93.994
## 3655 35 272 1 999 0 -1.8 93.075
## 3656 30 344 1 999 0 1.4 94.465
## 3657 39 742 1 999 0 1.4 93.918
## 3658 41 1111 3 999 0 1.1 93.994
## 3659 57 76 1 999 0 -0.1 93.200
## 3660 57 102 7 999 0 -1.8 92.893
## 3661 54 111 2 999 0 1.4 93.918
## 3662 56 68 2 999 0 1.4 93.444
## 3663 57 76 5 999 0 1.1 93.994
## 3664 32 77 2 999 0 -1.8 92.893
## 3665 32 167 1 999 0 1.1 93.994
## 3666 36 90 2 999 0 1.4 94.465
## 3667 41 1575 1 999 0 1.1 93.994
## 3668 46 549 1 999 0 -1.8 92.893
## 3669 27 84 14 999 0 1.1 93.994
## 3670 26 192 1 999 0 1.4 93.918
## 3671 32 83 2 999 0 1.4 94.465
## 3672 34 264 1 999 0 1.4 93.918
## 3673 29 178 1 999 0 1.4 93.918
## 3674 41 295 3 999 0 1.4 94.465
## 3675 45 71 2 999 0 1.4 94.465
## 3676 35 405 2 999 0 1.4 94.465
## 3677 33 153 7 999 0 1.4 93.444
## 3678 45 116 1 999 0 1.1 93.994
## 3679 35 57 1 999 0 -0.1 93.200
## 3680 49 173 1 999 0 1.1 93.994
## 3681 37 363 1 999 0 -1.7 94.055
## 3682 32 296 2 999 0 -0.1 93.200
## 3683 27 322 1 999 0 1.1 93.994
## 3684 36 7 6 999 0 -1.8 92.893
## 3685 45 482 3 999 0 1.4 93.444
## 3686 49 326 3 999 0 1.4 93.918
## 3687 43 238 3 999 0 -1.8 92.893
## 3688 28 225 3 999 0 1.4 93.918
## 3689 33 85 8 999 0 1.4 93.918
## 3690 36 109 3 999 0 -3.4 92.431
## 3691 33 125 3 999 0 1.1 93.994
## 3692 47 93 1 999 0 1.4 93.444
## 3693 39 297 1 999 0 1.1 93.994
## 3694 37 233 3 999 0 -1.8 93.075
## 3695 56 60 20 999 0 1.4 94.465
## 3696 32 66 2 999 0 -3.4 92.649
## 3697 39 87 5 999 0 1.1 93.994
## 3698 30 88 3 999 0 -1.8 92.843
## 3699 30 720 1 999 0 1.4 93.444
## 3700 23 271 2 999 0 1.4 93.918
## 3701 35 114 1 999 0 1.4 94.465
## 3702 39 5 2 999 0 1.1 93.994
## 3703 52 101 1 999 0 1.4 93.444
## 3704 44 90 4 999 0 -0.1 93.200
## 3705 31 94 4 999 0 1.4 94.465
## 3706 27 51 5 999 0 1.1 93.994
## 3707 56 92 1 999 0 -0.1 93.200
## 3708 41 479 1 999 0 -0.1 93.200
## 3709 62 154 2 999 0 -2.9 92.201
## 3710 37 168 1 999 0 1.1 93.994
## 3711 48 90 2 999 0 -0.1 93.200
## 3712 45 102 5 999 0 -1.8 92.893
## 3713 41 146 3 999 0 1.1 93.994
## 3714 38 221 2 999 0 -0.1 93.200
## 3715 45 281 4 999 0 1.4 94.465
## 3716 37 928 1 999 0 -2.9 92.201
## 3717 46 47 1 999 0 1.4 93.918
## 3718 43 288 1 999 0 -2.9 92.963
## 3719 51 229 2 999 0 1.4 93.918
## 3720 41 16 1 999 0 1.1 93.994
## 3721 35 118 4 999 0 1.4 93.918
## 3722 44 64 1 999 0 -1.8 92.893
## 3723 29 176 7 999 0 1.4 94.465
## 3724 38 219 4 999 0 1.1 93.994
## 3725 35 107 1 999 0 -1.8 93.075
## 3726 26 88 4 999 0 -1.8 92.893
## 3727 29 1147 2 999 0 1.1 93.994
## 3728 28 169 1 999 0 1.4 94.465
## 3729 49 820 1 999 0 -1.8 93.876
## 3730 30 114 2 999 0 -1.8 92.893
## 3731 48 429 6 999 0 1.4 93.444
## 3732 33 89 2 999 0 1.4 93.918
## 3733 39 407 1 999 0 -0.1 93.200
## 3734 41 170 1 999 0 -2.9 92.963
## 3735 48 69 19 999 0 1.1 93.994
## 3736 40 163 1 999 0 1.1 93.994
## 3737 27 173 2 999 0 -1.8 92.893
## 3738 56 190 1 999 0 1.4 93.444
## 3739 52 169 2 999 0 1.1 93.994
## 3740 41 127 1 999 0 1.4 93.444
## 3741 52 80 2 999 0 -1.8 92.893
## 3742 36 102 3 999 0 1.4 94.465
## 3743 40 61 2 999 0 1.4 94.465
## 3744 31 733 2 999 0 -1.8 92.893
## 3745 48 159 1 999 0 1.4 93.444
## 3746 38 20 1 999 0 1.1 93.994
## 3747 32 167 2 999 0 1.4 93.918
## 3748 52 26 2 999 0 1.4 94.465
## 3749 33 117 1 999 0 1.4 94.465
## 3750 33 101 3 999 0 1.4 93.444
## 3751 28 263 2 999 0 1.4 93.918
## 3752 48 85 1 999 0 1.4 94.465
## 3753 37 215 1 999 0 -0.1 93.200
## 3754 36 410 4 999 0 -1.8 92.893
## 3755 38 265 9 999 0 1.1 93.994
## 3756 37 277 2 999 0 1.4 93.918
## 3757 40 84 2 999 0 -1.8 92.893
## 3758 42 268 1 999 0 1.4 94.465
## 3759 38 344 1 999 0 -1.8 92.893
## 3760 38 125 2 999 0 1.4 93.918
## 3761 32 260 1 999 0 1.4 93.444
## 3762 35 77 2 999 0 1.4 93.918
## 3763 25 212 2 999 0 1.4 93.918
## 3764 44 168 1 999 0 1.4 93.918
## 3765 33 133 3 999 0 1.1 93.994
## 3766 35 7 1 999 0 -1.7 94.215
## 3767 31 213 1 999 0 -0.1 93.200
## 3768 71 117 3 999 0 -1.8 93.749
## 3769 30 103 7 999 0 1.4 93.444
## 3770 46 358 3 999 0 1.1 93.994
## 3771 28 171 5 999 0 1.4 94.465
## 3772 42 128 5 999 0 1.1 93.994
## 3773 33 83 4 999 0 -3.4 92.649
## 3774 45 269 3 999 0 1.4 93.918
## 3775 48 43 3 999 0 1.4 93.444
## 3776 45 87 3 999 0 1.1 93.994
## 3777 50 137 2 999 0 -1.8 93.075
## 3778 23 80 1 999 0 -2.9 92.201
## 3779 53 368 2 999 0 -1.8 92.893
## 3780 41 128 1 999 0 1.1 93.994
## 3781 34 202 2 999 0 1.1 93.994
## 3782 56 487 1 999 0 -0.1 93.200
## 3783 52 776 4 999 0 -1.8 92.893
## 3784 51 812 1 999 0 1.1 93.994
## 3785 40 21 35 999 0 1.4 93.918
## 3786 27 492 1 999 0 -2.9 92.963
## 3787 35 334 3 999 0 1.1 93.994
## 3788 28 1080 4 999 0 1.4 93.918
## 3789 42 84 2 999 0 1.4 93.918
## 3790 50 193 1 999 0 1.1 93.994
## 3791 29 132 1 999 0 -1.8 93.369
## 3792 39 391 2 999 0 1.1 93.994
## 3793 35 250 1 999 0 1.4 94.465
## 3794 46 146 4 999 0 -1.8 92.893
## 3795 41 59 1 999 0 -0.1 93.200
## 3796 32 360 17 999 0 1.4 93.918
## 3797 39 185 4 999 0 1.1 93.994
## 3798 32 187 1 999 0 -2.9 92.963
## 3799 30 429 2 999 0 -1.8 92.893
## 3800 39 31 3 999 0 1.4 94.465
## 3801 48 472 3 999 0 1.4 93.918
## 3802 45 527 1 999 0 -0.1 93.200
## 3803 50 18 16 999 0 1.1 93.994
## 3804 38 176 2 999 0 1.1 93.994
## 3805 47 16 1 999 0 1.1 93.994
## 3806 49 283 3 999 0 1.1 93.994
## 3807 30 314 2 999 0 1.1 93.994
## 3808 36 375 2 999 0 1.4 94.465
## 3809 57 86 4 999 0 -1.8 92.893
## 3810 50 326 1 999 0 1.1 93.994
## 3811 40 151 1 999 0 1.1 93.994
## 3812 40 190 2 999 0 1.1 93.994
## 3813 53 345 1 999 0 -1.7 94.055
## 3814 38 89 2 999 0 1.4 93.444
## 3815 43 99 4 999 0 -1.8 92.893
## 3816 27 402 1 999 0 1.4 93.918
## 3817 28 896 3 999 0 1.1 93.994
## 3818 27 326 1 999 0 1.4 93.918
## 3819 33 98 1 999 0 -0.1 93.200
## 3820 43 451 1 999 0 1.4 93.918
## 3821 47 9 6 999 0 -0.1 93.200
## 3822 56 69 1 999 0 1.4 94.465
## 3823 34 102 1 999 0 1.1 93.994
## 3824 42 76 1 999 0 -0.1 93.200
## 3825 30 74 1 999 0 -1.8 92.893
## 3826 46 303 3 999 0 1.1 93.994
## 3827 25 52 9 999 0 -1.8 92.893
## 3828 47 42 1 999 0 1.4 94.465
## 3829 35 345 1 999 0 -0.1 93.200
## 3830 77 348 1 999 0 -3.4 92.431
## 3831 49 51 1 999 0 -0.1 93.798
## 3832 25 104 2 999 0 1.1 93.994
## 3833 54 47 2 999 0 -1.8 92.843
## 3834 38 193 1 999 0 1.1 93.994
## 3835 39 51 1 999 0 1.4 93.918
## 3836 51 120 7 999 0 1.1 93.994
## 3837 42 1002 5 999 0 1.1 93.994
## 3838 36 422 3 999 0 1.4 93.918
## 3839 35 318 3 999 0 1.4 93.444
## 3840 43 306 5 999 0 1.4 93.444
## 3841 49 272 4 999 0 1.1 93.994
## 3842 46 344 1 999 0 -1.8 92.893
## 3843 31 383 3 999 0 1.4 93.918
## 3844 50 161 2 999 0 1.4 93.918
## 3845 38 98 1 999 0 1.4 94.465
## 3846 42 504 2 999 0 1.1 93.994
## 3847 47 140 2 999 0 1.4 93.444
## 3848 60 66 3 999 0 -3.4 92.649
## 3849 28 236 2 999 0 1.4 93.918
## 3850 42 418 3 999 0 1.4 93.918
## 3851 52 197 1 999 0 1.1 93.994
## 3852 48 362 1 999 0 1.4 93.444
## 3853 32 330 4 999 0 1.4 93.918
## 3854 45 64 1 999 0 1.4 93.444
## 3855 34 84 3 999 0 1.1 93.994
## 3856 50 541 1 999 0 1.4 93.444
## 3857 38 91 3 999 0 1.4 93.918
## 3858 46 1091 3 999 0 -1.8 92.893
## 3859 38 137 2 999 0 1.4 93.918
## 3860 28 1002 3 999 0 1.4 93.918
## 3861 30 17 5 999 0 1.4 94.465
## 3862 30 163 4 999 0 1.1 93.994
## 3863 59 130 8 999 0 1.4 93.918
## 3864 25 147 1 999 0 1.1 93.994
## 3865 33 73 4 999 0 1.4 93.444
## 3866 45 27 2 999 0 1.4 93.918
## 3867 54 141 2 999 0 -2.9 92.469
## 3868 48 1130 4 999 0 -1.8 92.893
## 3869 35 695 4 999 0 1.1 93.994
## 3870 40 270 1 999 0 1.4 94.465
## 3871 32 96 1 999 0 1.4 93.918
## 3872 39 436 2 999 0 1.4 94.465
## 3873 48 1424 4 999 0 1.4 93.918
## 3874 50 339 2 999 0 1.4 93.918
## 3875 27 407 11 999 0 1.4 93.918
## 3876 21 173 1 999 0 -2.9 92.963
## 3877 41 163 4 999 0 1.4 94.465
## 3878 55 232 2 999 0 -1.8 92.893
## 3879 45 31 2 999 0 1.1 93.994
## 3880 33 350 2 999 0 -1.8 92.893
## 3881 51 16 5 999 0 -1.8 93.075
## 3882 22 345 1 999 0 1.1 93.994
## 3883 35 49 3 999 0 -0.1 93.200
## 3884 30 316 1 999 0 -1.7 94.055
## 3885 35 174 9 999 0 1.4 93.918
## 3886 33 20 8 999 0 1.4 94.465
## 3887 37 172 1 999 0 1.1 93.994
## 3888 43 213 3 999 0 1.1 93.994
## 3889 43 265 1 999 0 1.4 93.918
## 3890 36 567 2 999 0 -1.8 92.893
## 3891 35 26 17 999 0 1.4 93.444
## 3892 38 546 2 999 0 -1.8 92.893
## 3893 43 193 2 999 0 1.4 94.465
## 3894 37 296 1 999 0 1.1 93.994
## 3895 38 63 2 999 0 -0.1 93.200
## 3896 44 252 1 999 0 -1.1 94.601
## 3897 44 143 1 999 0 1.1 93.994
## 3898 44 42 3 999 0 1.4 93.918
## 3899 31 392 7 999 0 -1.8 92.893
## 3900 39 59 4 999 0 1.4 94.465
## 3901 25 476 4 999 0 1.4 93.918
## 3902 47 223 1 999 0 1.4 94.465
## 3903 33 17 5 999 0 -1.8 92.893
## 3904 36 121 2 999 0 1.1 93.994
## 3905 24 154 2 999 0 1.4 93.918
## 3906 48 82 1 999 0 -0.1 93.200
## 3907 74 135 1 999 0 -2.9 92.201
## 3908 34 675 3 999 0 -1.8 92.893
## 3909 37 254 1 999 0 1.4 93.918
## 3910 50 70 3 999 0 1.4 93.444
## 3911 41 105 2 999 0 1.1 93.994
## 3912 54 337 1 999 0 -1.8 92.893
## 3913 41 104 1 999 0 -3.4 92.431
## 3914 34 93 1 999 0 1.4 93.918
## 3915 58 9 1 999 0 -1.1 94.601
## 3916 33 76 2 999 0 -0.1 93.200
## 3917 39 222 2 999 0 1.1 93.994
## 3918 77 393 1 999 0 -1.8 93.876
## 3919 48 413 1 999 0 1.4 93.918
## 3920 26 169 4 999 0 -1.8 92.843
## 3921 24 134 1 999 0 -2.9 92.963
## 3922 48 83 6 999 0 1.4 94.465
## 3923 60 1020 1 999 0 -3.4 92.431
## 3924 48 257 7 999 0 1.1 93.994
## 3925 57 2316 1 999 0 -1.8 93.075
## 3926 32 281 1 999 0 1.4 94.465
## 3927 51 122 5 999 0 1.1 93.994
## 3928 57 108 1 999 0 1.4 93.444
## 3929 53 212 3 999 0 -0.1 93.200
## 3930 52 291 3 999 0 1.4 94.465
## 3931 48 202 1 999 0 1.4 93.918
## 3932 42 422 5 999 0 1.1 93.994
## 3933 39 105 1 999 0 -2.9 92.201
## 3934 48 157 3 999 0 1.4 93.444
## 3935 29 110 2 999 0 -3.4 92.431
## 3936 40 132 2 999 0 -0.1 93.200
## 3937 31 290 9 999 0 1.4 93.444
## 3938 52 86 1 999 0 1.4 93.444
## 3939 41 382 3 999 0 1.4 94.465
## 3940 40 184 4 999 0 1.1 93.994
## 3941 33 265 2 999 0 -1.8 93.369
## 3942 32 175 2 999 0 -1.1 94.199
## 3943 47 211 2 999 0 1.4 94.465
## 3944 34 81 1 999 0 1.1 93.994
## 3945 30 577 1 999 0 1.1 93.994
## 3946 51 41 1 999 0 -1.8 92.893
## 3947 40 374 2 999 0 1.4 93.444
## 3948 30 90 5 999 0 1.4 93.918
## 3949 32 203 2 999 0 1.4 93.918
## 3950 57 161 1 999 0 -1.8 92.893
## 3951 52 76 2 999 0 1.4 93.918
## 3952 46 270 1 999 0 1.4 93.918
## 3953 58 341 12 999 0 1.4 93.918
## 3954 48 221 1 999 0 1.4 94.465
## 3955 42 248 2 999 0 1.1 93.994
## 3956 29 525 1 999 0 1.4 93.918
## 3957 46 165 3 999 0 1.4 93.918
## 3958 33 207 1 999 0 -1.8 93.075
## 3959 36 111 1 999 0 1.4 93.444
## 3960 31 456 6 999 0 1.1 93.994
## 3961 35 59 2 999 0 -1.8 92.893
## 3962 37 246 5 999 0 -3.4 92.431
## 3963 32 331 5 999 0 1.4 93.444
## 3964 36 260 1 999 0 1.4 93.444
## 3965 26 59 2 999 0 -1.8 92.843
## 3966 31 203 2 999 0 1.1 93.994
## 3967 34 1576 3 999 0 1.4 94.465
## 3968 46 235 7 999 0 1.1 93.994
## 3969 36 262 4 999 0 1.4 93.918
## 3970 43 507 2 999 0 -0.1 93.200
## 3971 30 255 1 999 0 1.1 93.994
## 3972 42 279 9 999 0 1.1 93.994
## 3973 33 222 1 999 0 -1.8 92.893
## 3974 25 298 1 999 0 1.4 93.918
## 3975 41 345 3 999 0 1.4 94.465
## 3976 39 440 3 999 0 1.4 94.465
## 3977 39 252 5 999 0 1.4 94.465
## 3978 28 192 1 999 0 -2.9 92.201
## 3979 41 123 2 999 0 1.4 94.465
## 3980 35 325 3 999 0 1.1 93.994
## 3981 40 422 2 999 0 1.4 93.918
## 3982 43 101 1 999 0 1.4 93.444
## 3983 50 209 2 999 0 -0.1 93.200
## 3984 36 428 1 999 0 -0.1 93.200
## 3985 28 442 1 999 0 -1.8 92.893
## 3986 50 199 15 999 0 -1.8 92.893
## 3987 49 560 4 999 0 1.1 93.994
## 3988 56 17 19 999 0 1.4 93.918
## 3989 30 133 1 999 0 -1.8 92.893
## 3990 37 128 1 999 0 1.1 93.994
## 3991 31 257 2 999 0 -0.1 93.200
## 3992 30 103 2 999 0 1.4 93.444
## 3993 44 292 1 999 0 1.4 93.918
## 3994 44 291 3 999 0 -0.1 93.200
## 3995 40 635 3 999 0 1.4 93.918
## 3996 53 63 1 999 0 1.4 94.465
## 3997 55 147 1 999 0 -0.1 93.200
## 3998 51 112 2 999 0 1.1 93.994
## 3999 37 89 1 999 0 -0.1 93.200
## 4000 34 161 3 999 0 1.4 93.444
## 4001 31 179 1 999 0 1.1 93.994
## 4002 31 157 5 999 0 1.1 93.994
## 4003 48 466 1 999 0 -1.8 92.893
## 4004 32 470 4 999 0 1.1 93.994
## 4005 39 714 1 999 0 -1.8 93.075
## 4006 54 109 2 999 0 1.4 93.444
## 4007 39 164 3 999 0 1.4 94.465
## 4008 45 160 1 999 0 1.1 93.994
## 4009 34 435 2 999 0 1.4 93.918
## 4010 45 265 3 999 0 -0.1 93.200
## 4011 29 142 4 999 0 1.4 93.444
## 4012 27 775 1 999 0 -1.8 93.876
## 4013 39 91 5 999 0 1.4 93.918
## 4014 49 146 6 999 0 1.1 93.994
## 4015 45 65 2 999 0 1.4 93.444
## 4016 36 195 1 999 0 -1.8 92.893
## 4017 46 87 1 999 0 -1.8 92.893
## 4018 42 560 3 999 0 -1.8 92.893
## 4019 39 78 2 999 0 -0.1 93.200
## 4020 38 241 1 999 0 1.1 93.994
## 4021 37 166 1 999 0 -1.8 92.893
## 4022 39 251 1 999 0 -1.8 92.893
## 4023 36 86 2 999 0 -1.8 92.843
## 4024 55 1298 1 999 0 1.4 93.918
## 4025 29 214 1 999 0 -1.8 92.893
## 4026 30 857 3 999 0 -0.1 93.200
## 4027 23 408 2 999 0 -3.4 92.431
## 4028 31 346 2 999 0 1.4 94.465
## 4029 30 88 1 999 0 -0.1 93.200
## 4030 50 69 3 999 0 1.4 93.444
## 4031 29 201 1 999 0 -3.4 92.649
## 4032 31 48 2 999 0 1.1 93.994
## 4033 27 13 1 999 0 -1.1 94.199
## 4034 31 102 1 999 0 -1.8 93.075
## 4035 48 126 3 999 0 -1.8 93.075
## 4036 35 215 1 999 0 1.1 93.994
## 4037 34 244 1 999 0 1.4 93.444
## 4038 42 207 1 999 0 1.1 93.994
## 4039 55 181 3 999 0 1.4 93.444
## 4040 38 400 2 999 0 1.4 94.465
## 4041 32 495 1 999 0 -1.8 93.075
## 4042 36 86 2 999 0 -1.8 92.893
## 4043 37 224 7 999 0 1.4 93.444
## 4044 80 156 1 999 0 -1.8 93.369
## 4045 20 325 1 999 0 -1.8 92.843
## 4046 36 171 1 999 0 -1.8 93.075
## 4047 42 87 2 999 0 1.4 94.465
## 4048 33 175 1 999 0 -0.1 93.200
## 4049 35 250 1 999 0 -1.8 93.075
## 4050 28 76 1 999 0 -3.4 92.379
## 4051 25 128 2 999 0 1.4 94.465
## 4052 23 134 1 999 0 1.4 93.918
## 4053 51 24 7 999 0 1.4 93.444
## 4054 32 160 7 999 0 1.4 93.444
## 4055 45 219 1 999 0 -1.8 92.893
## 4056 58 491 2 999 0 1.1 93.994
## 4057 69 616 1 999 0 -1.8 93.075
## 4058 44 236 7 999 0 1.4 93.444
## 4059 31 63 1 999 0 1.4 93.444
## 4060 24 121 2 999 0 1.1 93.994
## 4061 50 152 2 999 0 1.1 93.994
## 4062 52 474 2 999 0 -1.8 93.075
## 4063 26 243 1 999 0 -1.8 92.893
## 4064 28 651 5 999 0 1.4 94.465
## 4065 31 1094 2 999 0 -1.8 92.893
## 4066 35 74 1 999 0 1.1 93.994
## 4067 20 195 2 999 0 -1.8 93.075
## 4068 39 311 2 999 0 -1.8 93.075
## 4069 54 64 2 999 0 1.4 93.444
## 4070 30 56 4 999 0 -0.1 93.200
## 4071 46 231 2 999 0 1.4 94.465
## 4072 33 422 1 999 0 -0.1 93.200
## 4073 55 110 2 999 0 -1.8 93.075
## 4074 37 75 1 999 0 -0.1 93.200
## 4075 54 164 2 999 0 -3.4 92.431
## 4076 59 200 4 999 0 1.1 93.994
## 4077 34 140 1 999 0 1.4 93.444
## 4078 45 93 1 999 0 1.4 94.465
## 4079 30 82 6 999 0 -1.8 93.075
## 4080 24 151 2 999 0 -1.8 92.893
## 4081 57 81 1 999 0 1.1 93.994
## 4082 31 142 3 999 0 1.1 93.994
## 4083 29 141 2 999 0 1.1 93.994
## 4084 45 112 1 999 0 1.4 93.918
## 4085 33 147 1 999 0 1.4 93.444
## 4086 37 133 1 999 0 1.1 93.994
## 4087 36 86 5 999 0 1.4 93.444
## 4088 43 409 1 999 0 1.4 94.465
## 4089 41 316 2 999 0 -1.8 93.075
## 4090 47 100 2 999 0 1.4 93.918
## 4091 43 349 1 999 0 1.4 94.465
## 4092 54 253 3 999 0 1.1 93.994
## 4093 34 42 7 999 0 -0.1 93.200
## 4094 33 789 1 999 0 1.1 93.994
## 4095 42 134 3 999 0 1.4 94.465
## 4096 46 285 5 999 0 -1.8 93.075
## 4097 29 203 1 999 0 1.1 93.994
## 4098 44 76 3 999 0 1.1 93.994
## 4099 80 234 1 999 0 -1.8 93.749
## 4100 29 1052 1 999 0 1.1 93.994
## 4101 36 744 8 999 0 1.4 93.918
## 4102 39 310 1 999 0 1.4 94.465
## 4103 35 480 4 999 0 1.4 93.918
## 4104 33 460 1 999 0 -1.8 93.075
## 4105 45 178 1 999 0 1.1 93.994
## 4106 40 25 1 999 0 1.4 94.465
## 4107 32 81 4 999 0 1.4 93.918
## 4108 35 92 1 999 0 1.4 94.465
## 4109 40 549 1 999 0 -1.8 92.893
## 4110 35 992 2 999 0 1.4 94.465
## 4111 48 106 1 999 0 1.1 93.994
## 4112 31 365 1 999 0 -0.1 93.200
## 4113 40 345 2 999 0 1.1 93.994
## 4114 25 506 2 999 0 -1.8 92.893
## 4115 74 200 1 999 0 -1.8 93.749
## 4116 38 256 3 999 0 1.4 93.444
## 4117 36 18 12 999 0 1.4 93.918
## 4118 46 84 3 999 0 -1.8 92.893
## 4119 43 92 1 999 0 1.1 93.994
## 4120 24 576 2 999 0 1.4 93.918
## 4121 24 334 2 999 0 -1.8 92.893
## 4122 38 322 5 999 0 1.1 93.994
## 4123 34 175 4 999 0 -1.8 92.893
## 4124 42 380 3 999 0 -1.8 93.075
## 4125 30 369 2 999 0 1.1 93.994
## 4126 45 263 1 999 0 -1.8 93.075
## 4127 31 452 3 999 0 -1.8 92.893
## 4128 39 279 1 999 0 -1.8 92.893
## 4129 36 127 1 999 0 -1.8 92.893
## 4130 27 536 5 999 0 1.4 93.918
## 4131 38 69 4 999 0 -0.1 93.200
## 4132 30 80 1 999 0 -2.9 92.963
## 4133 24 196 2 999 0 -1.8 92.893
## 4134 32 100 1 999 0 1.4 93.918
## 4135 30 107 2 999 0 1.1 93.994
## 4136 35 68 1 999 0 -1.8 92.893
## 4137 47 309 1 999 0 1.4 94.465
## 4138 23 804 2 999 0 1.4 93.918
## 4139 34 722 1 999 0 1.4 94.465
## 4140 40 221 2 999 0 1.4 94.465
## 4141 41 50 1 999 0 -1.8 92.893
## 4142 70 320 1 999 0 -2.9 92.201
## 4143 33 370 2 999 0 1.4 93.444
## 4144 53 43 1 999 0 1.4 93.444
## 4145 36 517 3 999 0 1.4 93.918
## 4146 41 834 1 999 0 -1.8 93.075
## 4147 29 144 1 999 0 1.4 93.444
## 4148 38 67 2 999 0 1.4 94.465
## 4149 35 223 2 999 0 -1.8 92.893
## 4150 50 251 2 999 0 -1.8 92.893
## 4151 42 119 1 999 0 1.1 93.994
## 4152 30 156 7 999 0 -0.1 93.200
## 4153 44 515 2 999 0 1.1 93.994
## 4154 48 277 2 999 0 1.4 93.918
## 4155 33 172 2 999 0 -0.1 93.200
## 4156 34 128 1 999 0 1.4 94.465
## 4157 36 57 2 999 0 1.4 94.465
## 4158 43 493 5 999 0 -1.8 92.893
## 4159 55 260 1 999 0 -1.8 93.075
## 4160 32 185 1 999 0 1.4 93.918
## 4161 25 88 1 999 0 1.4 93.918
## 4162 24 103 3 999 0 -1.8 93.075
## 4163 30 248 2 999 0 -0.1 93.200
## 4164 42 51 7 999 0 1.4 93.444
## 4165 36 989 1 999 0 1.1 93.994
## 4166 30 248 5 999 0 1.4 93.918
## 4167 35 17 25 999 0 1.1 93.994
## 4168 36 395 2 999 0 -1.8 92.893
## 4169 49 370 1 999 0 1.4 94.465
## 4170 31 9 17 999 0 1.4 93.918
## 4171 53 48 2 999 0 1.4 93.444
## 4172 34 94 1 999 0 1.4 93.918
## 4173 55 159 1 999 0 -0.1 93.200
## 4174 36 117 1 999 0 1.4 93.444
## 4175 33 98 1 999 0 -0.1 93.200
## 4176 27 101 1 999 0 -1.8 92.893
## 4177 42 253 1 999 0 1.4 93.918
## 4178 30 72 7 999 0 -1.8 92.893
## 4179 41 149 2 999 0 1.1 93.994
## 4180 47 184 3 999 0 -1.8 92.893
## 4181 33 331 1 999 0 1.4 93.444
## 4182 46 445 3 999 0 -2.9 92.201
## 4183 34 87 1 999 0 -1.8 92.893
## 4184 41 92 1 999 0 1.4 93.444
## 4185 52 73 1 999 0 1.4 94.465
## 4186 44 16 9 999 0 -1.8 92.893
## 4187 26 1151 1 999 0 1.4 93.918
## 4188 56 92 3 999 0 1.1 93.994
## 4189 35 307 4 999 0 1.4 93.918
## 4190 49 216 2 999 0 1.4 94.465
## 4191 37 95 6 999 0 1.1 93.994
## 4192 45 276 3 999 0 1.1 93.994
## 4193 49 104 2 999 0 1.1 93.994
## 4194 33 187 2 999 0 -0.1 93.200
## 4195 44 455 2 999 0 -1.8 93.075
## 4196 27 156 1 999 0 -1.8 93.075
## 4197 58 183 2 999 0 1.4 94.465
## 4198 43 176 2 999 0 1.4 94.465
## 4199 30 127 2 999 0 1.4 93.918
## 4200 47 1025 1 999 0 -1.8 93.075
## 4201 34 313 1 999 0 1.4 93.444
## 4202 45 432 1 999 0 -1.8 93.075
## 4203 39 90 2 999 0 1.4 93.444
## 4204 28 1820 4 999 0 1.4 93.918
## 4205 45 360 5 999 0 1.4 93.444
## 4206 30 301 4 999 0 1.4 94.465
## 4207 32 749 8 999 0 1.4 93.918
## 4208 34 114 5 999 0 1.4 93.444
## 4209 44 102 1 999 0 1.4 93.444
## 4210 35 98 1 999 0 1.1 93.994
## 4211 57 30 9 999 0 1.4 93.444
## 4212 26 61 2 999 0 1.4 94.465
## 4213 34 1258 2 999 0 -0.1 93.200
## 4214 57 128 1 999 0 -1.8 92.893
## 4215 53 198 2 999 0 -1.8 93.749
## 4216 28 137 1 999 0 -1.8 93.075
## 4217 44 663 1 999 0 1.4 93.918
## 4218 46 144 10 999 0 1.4 94.465
## 4219 37 113 2 999 0 -1.8 92.893
## 4220 39 129 1 999 0 1.4 93.444
## 4221 31 290 2 999 0 -1.8 92.893
## 4222 32 52 8 999 0 1.1 93.994
## 4223 53 126 1 999 0 -1.8 93.075
## 4224 57 1173 4 999 0 1.4 93.918
## 4225 36 45 3 999 0 1.4 93.444
## 4226 38 55 1 999 0 1.4 94.465
## 4227 56 132 1 999 0 1.4 93.918
## 4228 59 309 5 999 0 1.4 94.465
## 4229 35 371 1 999 0 -0.1 93.200
## 4230 42 121 1 999 0 1.4 93.444
## 4231 29 42 1 999 0 -0.1 93.200
## 4232 48 730 2 999 0 1.4 93.918
## 4233 35 79 1 999 0 -1.8 93.075
## 4234 42 14 6 999 0 -0.1 93.200
## 4235 37 151 2 999 0 1.1 93.994
## 4236 38 69 3 999 0 1.4 94.465
## 4237 53 222 2 999 0 -1.8 93.749
## 4238 28 1148 1 999 0 -1.8 92.893
## 4239 43 20 4 999 0 -0.1 93.200
## 4240 43 88 1 999 0 1.4 93.444
## 4241 44 178 1 999 0 -1.8 93.075
## 4242 38 149 1 999 0 1.4 94.465
## 4243 36 82 3 999 0 -0.1 93.200
## 4244 54 577 3 999 0 1.4 93.918
## 4245 30 262 5 999 0 1.4 94.465
## 4246 41 93 1 999 0 -0.1 93.200
## 4247 41 786 2 999 0 -1.1 94.601
## 4248 37 199 1 999 0 -0.1 93.200
## 4249 32 472 2 999 0 -1.8 93.075
## 4250 31 817 2 999 0 1.4 94.465
## 4251 28 53 1 999 0 1.4 93.918
## 4252 45 702 1 999 0 -1.8 92.893
## 4253 35 270 2 999 0 -1.8 93.075
## 4254 46 99 5 999 0 -2.9 92.201
## 4255 30 273 2 999 0 -0.1 93.200
## 4256 31 12 5 999 0 1.4 93.444
## 4257 54 136 3 999 0 1.4 93.444
## 4258 33 184 1 999 0 -1.8 92.893
## 4259 28 240 1 999 0 -1.8 93.075
## 4260 33 234 1 999 0 1.1 93.994
## 4261 42 259 1 999 0 -3.4 92.431
## 4262 42 160 3 999 0 1.1 93.994
## 4263 51 141 1 999 0 1.1 93.994
## 4264 36 217 3 999 0 1.4 93.444
## 4265 51 187 2 999 0 1.4 93.444
## 4266 48 55 5 999 0 1.4 93.918
## 4267 31 130 2 999 0 1.4 94.465
## 4268 38 137 1 999 0 -1.8 92.843
## 4269 31 306 2 999 0 -1.7 94.027
## 4270 52 331 1 999 0 1.4 93.444
## 4271 26 93 3 999 0 -1.8 92.893
## 4272 73 135 2 999 0 -2.9 92.201
## 4273 47 226 1 999 0 1.4 93.918
## 4274 24 209 1 999 0 -1.8 93.075
## 4275 26 71 1 999 0 1.4 93.918
## 4276 31 395 1 999 0 -0.1 93.200
## 4277 30 27 7 999 0 1.4 94.465
## 4278 31 146 3 999 0 -1.8 92.893
## 4279 43 64 1 999 0 -1.8 93.075
## 4280 53 578 2 999 0 -2.9 92.963
## 4281 29 86 1 999 0 -1.8 93.075
## 4282 29 108 5 999 0 -1.7 94.055
## 4283 30 243 3 999 0 -1.8 93.075
## 4284 57 41 1 999 0 -1.8 93.075
## 4285 45 521 1 999 0 1.4 94.465
## 4286 30 329 2 999 0 -0.1 93.200
## 4287 43 53 1 999 0 1.4 93.918
## 4288 42 52 2 999 0 1.4 93.444
## 4289 30 461 1 999 0 -1.8 93.075
## 4290 37 145 1 999 0 -0.1 93.200
## 4291 45 179 2 999 0 1.1 93.994
## 4292 56 429 1 999 0 -3.0 92.713
## 4293 37 422 2 999 0 1.1 93.994
## 4294 31 127 1 999 0 1.4 94.465
## 4295 52 227 2 999 0 -1.8 93.876
## 4296 52 278 2 999 0 -0.1 93.200
## 4297 41 348 3 999 0 -0.1 93.200
## 4298 43 133 1 999 0 1.4 94.465
## 4299 34 221 1 999 0 1.4 94.465
## 4300 50 162 1 999 0 1.4 93.444
## 4301 35 96 2 999 0 1.4 93.918
## 4302 20 347 2 999 0 -2.9 92.201
## 4303 45 797 1 999 0 -1.8 93.075
## 4304 31 172 1 999 0 -1.8 93.075
## 4305 37 96 2 999 0 1.4 93.918
## 4306 29 122 3 999 0 -1.8 93.075
## 4307 39 125 1 999 0 1.1 93.994
## 4308 37 59 7 999 0 1.4 94.465
## 4309 46 351 3 999 0 -1.8 93.876
## 4310 27 263 2 999 0 1.4 94.465
## 4311 31 131 3 999 0 -0.1 93.200
## 4312 45 398 1 999 0 1.4 93.444
## 4313 30 111 2 999 0 1.4 93.444
## 4314 34 71 1 999 0 1.1 93.994
## 4315 30 41 1 999 0 1.1 93.994
## 4316 37 465 1 999 0 -1.8 93.075
## 4317 81 50 3 999 0 -2.9 92.201
## 4318 45 254 2 999 0 -0.1 93.200
## 4319 30 80 3 999 0 -1.8 93.075
## 4320 37 345 1 999 0 -1.8 92.893
## 4321 49 268 1 999 0 1.4 93.918
## 4322 43 104 1 999 0 -1.8 93.075
## 4323 50 77 1 999 0 1.4 94.465
## 4324 32 315 4 999 0 -2.9 92.469
## 4325 28 363 2 999 0 1.4 93.918
## 4326 34 266 4 999 0 1.4 94.465
## 4327 58 322 2 999 0 1.4 94.465
## 4328 46 180 2 999 0 1.4 93.444
## 4329 56 258 1 999 0 -0.1 93.200
## 4330 25 712 2 999 0 -1.8 93.075
## 4331 23 228 1 999 0 1.4 93.918
## 4332 38 770 2 999 0 1.1 93.994
## 4333 29 427 3 999 0 -1.8 93.075
## 4334 41 241 3 999 0 1.4 93.918
## 4335 48 222 2 999 0 1.1 93.994
## 4336 46 375 2 999 0 -1.8 93.075
## 4337 58 178 2 999 0 -0.1 93.200
## 4338 29 82 2 999 0 1.4 93.444
## 4339 48 663 2 999 0 1.4 93.444
## 4340 55 772 4 999 0 -1.8 93.075
## 4341 32 60 1 999 0 1.1 93.994
## 4342 41 82 4 999 0 -1.8 93.075
## 4343 51 410 3 999 0 1.1 93.994
## 4344 32 657 4 999 0 -1.8 93.075
## 4345 38 282 1 999 0 -1.8 92.893
## 4346 36 91 1 999 0 1.4 94.465
## 4347 35 352 4 999 0 1.1 93.994
## 4348 35 855 1 999 0 -1.8 93.075
## 4349 33 178 2 999 0 1.1 93.994
## 4350 32 23 4 999 0 1.1 93.994
## 4351 35 448 3 999 0 1.4 93.444
## 4352 50 684 1 999 0 1.4 93.918
## 4353 31 120 1 999 0 1.1 93.994
## 4354 49 349 3 999 0 -1.8 93.075
## 4355 45 201 1 999 0 -2.9 92.963
## 4356 61 165 2 999 0 -1.8 93.749
## 4357 28 64 1 999 0 -2.9 92.201
## 4358 30 85 6 999 0 1.4 93.918
## 4359 35 165 1 999 0 1.1 93.994
## 4360 39 108 3 999 0 1.1 93.994
## 4361 56 141 1 999 0 -1.8 93.075
## 4362 59 247 1 999 0 1.1 93.994
## 4363 34 484 5 999 0 1.1 93.994
## 4364 38 326 1 999 0 1.4 93.444
## 4365 47 185 7 999 0 1.1 93.994
## 4366 56 871 3 999 0 -0.1 93.200
## 4367 50 283 3 999 0 1.1 93.994
## 4368 38 172 1 999 0 -0.1 93.200
## 4369 33 1867 6 999 0 1.1 93.994
## 4370 35 137 1 999 0 -0.1 93.200
## 4371 50 586 1 999 0 1.4 94.465
## 4372 27 311 1 999 0 -1.8 92.893
## 4373 55 230 4 999 0 1.1 93.994
## 4374 47 186 9 999 0 -2.9 92.469
## 4375 31 277 1 999 0 -0.1 93.200
## 4376 48 602 3 999 0 1.4 93.444
## 4377 51 39 1 999 0 1.1 93.994
## 4378 25 113 1 999 0 -1.8 93.075
## 4379 36 103 3 999 0 1.1 93.994
## 4380 30 341 1 999 0 -1.8 92.893
## 4381 52 191 1 999 0 1.4 93.918
## 4382 37 98 3 999 0 1.4 93.918
## 4383 48 619 1 999 0 -1.8 93.075
## 4384 25 81 3 999 0 1.4 93.918
## 4385 48 13 14 999 0 1.4 93.444
## 4386 51 341 1 999 0 -1.8 93.075
## 4387 33 530 1 999 0 -1.8 93.075
## 4388 35 330 3 999 0 1.1 93.994
## 4389 77 165 7 999 0 -1.8 93.749
## 4390 37 322 1 999 0 -1.1 94.601
## 4391 26 273 4 999 0 -1.8 92.893
## 4392 31 239 2 999 0 -0.1 93.200
## 4393 46 398 3 999 0 1.4 93.444
## 4394 58 321 2 999 0 -0.1 93.200
## 4395 35 1579 2 999 0 1.4 93.444
## 4396 39 237 1 999 0 -1.8 93.075
## 4397 31 42 1 999 0 -1.8 92.893
## 4398 29 131 1 999 0 -2.9 92.201
## 4399 34 84 1 999 0 1.1 93.994
## 4400 36 287 1 999 0 1.1 93.994
## 4401 41 324 1 999 0 -1.7 94.027
## 4402 29 63 2 999 0 1.4 94.465
## 4403 45 425 2 999 0 1.4 93.444
## 4404 35 20 1 999 0 1.1 93.994
## 4405 38 109 3 999 0 1.4 93.918
## 4406 25 234 6 999 0 1.4 93.918
## 4407 37 125 4 999 0 1.1 93.994
## 4408 25 271 5 999 0 1.4 93.918
## 4409 34 30 1 999 0 -0.1 93.200
## 4410 57 699 3 999 0 1.1 93.994
## 4411 44 311 1 999 0 1.4 93.918
## 4412 31 230 1 999 0 -0.1 93.200
## 4413 40 681 6 999 0 -1.8 92.893
## 4414 48 429 2 999 0 -1.8 93.075
## 4415 18 108 1 999 0 -1.8 93.075
## 4416 52 208 2 999 0 1.4 94.465
## 4417 28 229 1 999 0 1.4 93.918
## 4418 42 919 1 999 0 1.4 94.465
## 4419 51 191 5 999 0 1.1 93.994
## 4420 25 125 2 999 0 -2.9 92.963
## 4421 30 252 1 999 0 -1.8 92.893
## 4422 45 542 3 999 0 1.4 94.465
## 4423 41 203 2 999 0 1.4 94.465
## 4424 34 957 2 999 0 -1.8 92.893
## 4425 33 90 5 999 0 -1.8 92.893
## 4426 49 136 3 999 0 1.1 93.994
## 4427 52 160 6 999 0 1.4 93.918
## 4428 48 108 2 999 0 1.4 93.918
## 4429 44 351 1 999 0 1.4 94.465
## 4430 35 150 1 999 0 -1.8 93.075
## 4431 48 361 2 999 0 1.4 94.465
## 4432 57 399 2 999 0 -0.1 93.200
## 4433 38 61 1 999 0 -0.1 93.200
## 4434 35 504 3 999 0 1.1 93.994
## 4435 35 1806 2 999 0 -1.8 92.893
## 4436 30 104 1 999 0 1.4 93.444
## 4437 49 81 1 999 0 -3.4 92.431
## 4438 36 120 3 999 0 1.4 93.444
## 4439 59 285 1 999 0 1.1 93.994
## 4440 29 227 1 999 0 1.4 93.918
## 4441 37 535 1 999 0 1.4 93.444
## 4442 48 288 3 999 0 -3.4 92.431
## 4443 53 135 1 999 0 1.1 93.994
## 4444 43 172 2 999 0 -1.8 92.893
## 4445 43 176 1 999 0 -1.8 93.075
## 4446 53 446 1 999 0 1.4 93.444
## 4447 27 5 3 999 0 1.4 93.918
## 4448 56 92 2 999 0 1.4 94.465
## 4449 48 182 1 999 0 1.1 93.994
## 4450 42 193 1 999 0 1.1 93.994
## 4451 47 117 1 999 0 1.4 93.444
## 4452 57 21 1 999 0 -0.1 93.200
## 4453 45 237 2 999 0 1.4 94.465
## 4454 49 216 2 999 0 -1.8 93.075
## 4455 50 102 1 999 0 1.4 93.918
## 4456 88 82 2 999 0 -1.8 92.843
## 4457 54 773 2 999 0 1.4 93.918
## 4458 34 511 1 999 0 1.4 94.465
## 4459 27 310 3 999 0 1.1 93.994
## 4460 40 190 2 999 0 -1.8 92.893
## 4461 66 110 2 999 0 -1.8 92.893
## 4462 41 184 4 999 0 1.4 93.918
## 4463 24 127 1 999 0 -1.8 93.075
## 4464 34 251 3 999 0 1.4 93.918
## 4465 48 178 1 999 0 1.1 93.994
## 4466 35 77 4 999 0 1.4 93.918
## 4467 42 705 1 999 0 1.1 93.994
## 4468 21 240 1 999 0 -1.8 92.893
## 4469 43 124 8 999 0 1.4 93.918
## 4470 39 175 5 999 0 1.1 93.994
## 4471 35 203 1 999 0 1.4 93.918
## 4472 43 50 1 999 0 1.4 93.918
## 4473 46 146 1 999 0 -1.8 93.075
## 4474 57 199 2 999 0 -0.1 93.200
## 4475 31 185 3 999 0 -1.8 92.893
## 4476 43 367 2 999 0 1.1 93.994
## 4477 38 35 25 999 0 1.4 93.918
## 4478 48 122 1 999 0 1.4 94.465
## 4479 36 8 24 999 0 1.4 93.918
## 4480 37 138 1 999 0 -0.1 93.200
## 4481 34 205 1 999 0 1.1 93.994
## 4482 39 6 12 999 0 1.4 93.918
## 4483 36 31 1 999 0 -1.8 92.893
## 4484 39 106 1 999 0 1.4 94.465
## 4485 36 189 3 999 0 1.4 93.918
## 4486 37 261 1 999 0 -1.8 93.075
## 4487 44 408 11 999 0 1.4 93.918
## 4488 35 510 3 999 0 -2.9 92.963
## 4489 47 65 7 999 0 1.1 93.994
## 4490 58 64 1 999 0 1.4 93.444
## 4491 37 54 2 999 0 1.1 93.994
## 4492 33 1321 2 999 0 1.1 93.994
## 4493 44 139 2 999 0 1.1 93.994
## 4494 41 120 2 999 0 1.4 93.444
## 4495 39 72 1 999 0 1.4 94.465
## 4496 42 316 1 999 0 -0.1 93.200
## 4497 46 246 3 999 0 1.1 93.994
## 4498 32 12 15 999 0 1.4 93.444
## 4499 39 453 1 999 0 1.4 94.465
## 4500 42 829 5 999 0 1.4 93.918
## 4501 42 144 1 999 0 -1.8 93.075
## 4502 31 348 1 999 0 -1.8 92.893
## 4503 47 178 2 999 0 1.1 93.994
## 4504 48 264 1 999 0 -3.4 92.431
## 4505 29 105 2 999 0 -1.8 93.075
## 4506 27 279 3 999 0 1.4 93.918
## 4507 30 188 1 999 0 -1.8 93.075
## 4508 27 1237 7 999 0 1.4 93.918
## 4509 41 184 1 999 0 1.4 93.918
## 4510 59 425 6 999 0 1.1 93.994
## 4511 25 18 3 999 0 1.4 94.465
## 4512 34 48 4 999 0 -0.1 93.200
## 4513 28 571 1 999 0 -1.8 93.075
## 4514 52 4199 3 999 0 1.4 93.444
## 4515 29 53 1 999 0 1.4 94.465
## 4516 27 84 3 999 0 1.4 93.918
## 4517 32 633 1 999 0 -1.8 92.893
## 4518 46 183 1 999 0 1.1 93.994
## 4519 27 297 1 999 0 -1.8 93.075
## 4520 30 118 2 999 0 1.4 94.465
## 4521 49 312 3 999 0 1.1 93.994
## 4522 33 201 1 999 0 1.4 93.444
## 4523 28 28 5 999 0 1.4 93.918
## 4524 34 262 1 999 0 -1.8 92.893
## 4525 29 190 1 999 0 1.4 94.465
## 4526 33 51 5 999 0 1.4 93.444
## 4527 58 158 1 999 0 -0.1 93.200
## 4528 31 290 1 999 0 -0.1 93.200
## 4529 30 739 2 999 0 -1.8 93.075
## 4530 41 597 1 999 0 -1.8 92.893
## 4531 27 438 2 999 0 1.1 93.994
## 4532 46 249 1 999 0 -1.8 93.075
## 4533 28 376 2 999 0 1.1 93.994
## 4534 49 259 2 999 0 -2.9 92.963
## 4535 43 320 3 999 0 1.4 94.465
## 4536 29 258 1 999 0 1.4 93.918
## 4537 30 162 1 999 0 1.1 93.994
## 4538 38 81 2 999 0 1.1 93.994
## 4539 55 178 1 999 0 1.4 94.465
## 4540 35 125 7 999 0 1.4 93.444
## 4541 31 119 1 999 0 -1.8 93.075
## 4542 24 282 1 999 0 1.4 93.918
## 4543 56 1925 1 999 0 -1.8 92.893
## 4544 39 95 1 999 0 -0.1 93.200
## 4545 36 317 2 999 0 -0.1 93.200
## 4546 29 376 2 999 0 -1.8 92.893
## 4547 38 619 4 999 0 1.1 93.994
## 4548 31 124 3 999 0 1.4 93.444
## 4549 35 133 2 999 0 1.1 93.994
## 4550 48 642 3 999 0 1.4 93.444
## 4551 42 272 2 999 0 -1.8 92.893
## 4552 88 402 2 999 0 -2.9 92.201
## 4553 56 88 2 999 0 -0.1 93.200
## 4554 51 870 3 999 0 1.4 93.918
## 4555 39 123 3 999 0 -1.8 92.893
## 4556 30 78 1 999 0 1.4 93.444
## 4557 32 65 8 999 0 1.4 93.444
## 4558 39 64 4 999 0 1.1 93.994
## 4559 25 312 5 999 0 1.4 93.918
## 4560 55 270 1 999 0 1.4 94.465
## 4561 37 262 2 999 0 -1.8 92.893
## 4562 27 1170 1 999 0 1.1 93.994
## 4563 39 179 1 999 0 1.4 93.444
## 4564 36 371 1 999 0 -0.1 93.200
## 4565 41 100 2 999 0 1.4 93.444
## 4566 35 390 2 999 0 -1.1 94.199
## 4567 53 144 1 999 0 1.4 93.918
## 4568 31 265 3 999 0 1.4 93.444
## 4569 60 101 3 999 0 1.1 93.994
## 4570 39 73 1 999 0 -0.1 93.200
## 4571 41 539 1 999 0 1.4 93.918
## 4572 31 1059 2 999 0 -0.1 93.200
## 4573 59 374 4 999 0 1.1 93.994
## 4574 37 232 1 999 0 1.4 94.465
## 4575 44 214 2 999 0 1.4 93.444
## 4576 33 55 1 999 0 -0.1 93.200
## 4577 24 210 6 999 0 -1.8 92.893
## 4578 39 110 4 999 0 1.4 94.465
## 4579 36 147 5 999 0 1.1 93.994
## 4580 55 159 2 999 0 1.4 93.444
## 4581 32 356 1 999 0 1.4 93.444
## 4582 37 161 1 999 0 -2.9 92.201
## 4583 52 176 2 999 0 -0.1 93.200
## 4584 36 164 2 999 0 -1.8 92.893
## 4585 50 367 2 999 0 1.4 93.918
## 4586 39 109 4 999 0 1.1 93.994
## 4587 29 160 1 999 0 1.4 93.918
## 4588 28 61 6 999 0 -1.8 92.893
## 4589 48 700 2 999 0 1.4 94.465
## 4590 57 162 1 999 0 1.4 93.918
## 4591 35 169 7 999 0 1.4 93.918
## 4592 35 305 2 999 0 -0.1 93.200
## 4593 41 158 1 999 0 1.1 93.994
## 4594 31 184 1 999 0 -0.1 93.200
## 4595 37 173 1 999 0 -1.1 94.199
## 4596 36 744 6 999 0 1.1 93.994
## 4597 49 575 2 999 0 1.4 93.444
## 4598 31 732 2 999 0 1.1 93.994
## 4599 41 231 2 999 0 1.4 94.465
## 4600 36 543 1 999 0 -3.4 92.379
## 4601 32 19 1 999 0 1.4 94.465
## 4602 57 77 2 999 0 1.4 93.444
## 4603 59 265 1 999 0 1.4 93.444
## 4604 52 201 1 999 0 1.1 93.994
## 4605 35 787 1 999 0 1.4 93.444
## 4606 34 28 1 999 0 1.4 93.918
## 4607 41 35 1 999 0 -1.8 92.893
## 4608 59 368 2 999 0 -2.9 92.963
## 4609 50 80 2 999 0 1.4 94.465
## 4610 44 246 2 999 0 -1.8 92.893
## 4611 55 146 1 999 0 1.4 94.465
## 4612 45 773 5 999 0 1.4 93.444
## 4613 37 210 2 999 0 1.4 93.444
## 4614 35 205 5 999 0 1.1 93.994
## 4615 43 104 1 999 0 1.4 94.465
## 4616 31 61 2 999 0 1.4 93.918
## 4617 43 51 1 999 0 1.4 93.918
## 4618 29 47 4 999 0 -1.8 92.893
## 4619 35 477 1 999 0 1.1 93.994
## 4620 79 86 2 999 0 -2.9 92.201
## 4621 54 202 3 999 0 1.1 93.994
## 4622 45 77 9 999 0 1.4 93.444
## 4623 57 202 1 999 0 1.4 93.444
## 4624 32 370 1 999 0 -0.1 93.200
## 4625 43 211 3 999 0 1.4 93.444
## 4626 47 1231 2 999 0 1.4 93.444
## 4627 31 1037 4 999 0 1.4 93.444
## 4628 39 73 1 999 0 1.1 93.994
## 4629 48 171 5 999 0 1.4 93.918
## 4630 36 300 1 999 0 1.4 93.444
## 4631 32 213 2 999 0 -1.8 92.893
## 4632 30 80 1 999 0 1.1 93.994
## 4633 35 240 3 999 0 1.1 93.994
## 4634 34 85 2 999 0 1.4 93.918
## 4635 38 168 1 999 0 1.4 93.918
## 4636 34 144 1 999 0 -0.1 93.200
## 4637 58 415 7 999 0 1.1 93.994
## 4638 36 350 3 999 0 -1.8 92.893
## 4639 32 52 5 999 0 1.4 94.465
## 4640 37 175 3 999 0 1.4 93.918
## 4641 54 225 2 999 0 1.4 93.918
## 4642 36 231 1 999 0 -0.1 93.200
## 4643 32 81 1 999 0 1.4 93.444
## 4644 25 244 1 999 0 -1.1 94.767
## 4645 45 64 18 999 0 1.4 93.444
## 4646 25 99 1 999 0 -2.9 92.201
## 4647 40 106 4 999 0 1.4 93.918
## 4648 35 473 1 999 0 1.1 93.994
## 4649 32 251 4 999 0 -0.1 93.200
## 4650 38 738 2 999 0 -0.1 93.200
## 4651 41 234 1 999 0 -0.1 93.200
## 4652 41 259 1 999 0 1.1 93.994
## 4653 48 101 1 999 0 1.4 93.444
## 4654 54 197 1 999 0 -1.8 92.893
## 4655 40 141 1 999 0 1.4 93.444
## 4656 40 245 4 999 0 1.1 93.994
## 4657 37 82 1 999 0 1.4 94.465
## 4658 54 250 1 999 0 1.4 93.444
## 4659 32 59 1 999 0 -0.1 93.200
## 4660 51 1226 3 999 0 -1.7 94.027
## 4661 36 558 1 999 0 -1.8 92.893
## 4662 25 75 1 999 0 -2.9 92.201
## 4663 30 362 6 999 0 -1.8 92.893
## 4664 31 397 2 999 0 1.4 94.465
## 4665 32 489 2 999 0 1.4 93.918
## 4666 39 158 1 999 0 1.4 93.444
## 4667 34 1065 1 999 0 1.4 93.918
## 4668 41 83 1 999 0 1.4 94.465
## 4669 33 321 1 999 0 1.4 93.444
## 4670 52 121 3 999 0 1.4 93.444
## 4671 32 29 9 999 0 1.4 93.444
## 4672 57 259 2 999 0 1.4 93.444
## 4673 32 168 1 999 0 1.4 93.444
## 4674 37 312 6 999 0 1.1 93.994
## 4675 41 237 2 999 0 1.4 94.465
## 4676 39 206 1 999 0 1.1 93.994
## 4677 39 291 2 999 0 -0.1 93.200
## 4678 47 487 3 999 0 1.4 93.444
## 4679 49 158 2 999 0 1.4 93.444
## 4680 41 186 2 999 0 1.4 93.918
## 4681 35 228 3 999 0 1.1 93.994
## 4682 42 650 2 999 0 1.4 93.918
## 4683 56 141 12 999 0 -1.8 93.075
## 4684 26 139 1 999 0 -1.8 92.843
## 4685 30 162 1 999 0 1.4 93.444
## 4686 29 137 2 999 0 1.4 93.444
## 4687 47 369 1 999 0 -1.8 93.075
## 4688 30 22 4 999 0 -1.8 92.893
## 4689 51 269 10 999 0 1.1 93.994
## 4690 40 477 2 999 0 -2.9 92.201
## 4691 26 400 2 999 0 1.4 94.465
## 4692 56 134 1 999 0 1.1 93.994
## 4693 35 490 7 999 0 1.4 93.918
## 4694 46 871 2 999 0 1.4 93.444
## 4695 37 118 1 999 0 1.1 93.994
## 4696 35 250 1 999 0 1.4 93.918
## 4697 38 86 1 999 0 -0.1 93.200
## 4698 45 90 3 999 0 1.1 93.994
## 4699 50 196 2 999 0 1.4 93.918
## 4700 49 487 1 999 0 1.4 94.465
## 4701 43 398 1 999 0 1.4 93.444
## 4702 56 403 5 999 0 1.4 94.465
## 4703 32 31 5 999 0 1.4 94.465
## 4704 45 391 1 999 0 1.4 93.918
## 4705 32 68 1 999 0 1.4 93.444
## 4706 35 12 12 999 0 1.4 93.444
## 4707 46 155 1 999 0 1.4 93.918
## 4708 30 91 2 999 0 1.4 93.918
## 4709 56 584 1 999 0 -1.8 93.075
## 4710 58 60 24 999 0 1.4 93.918
## 4711 40 314 2 999 0 1.4 94.465
## 4712 53 123 1 999 0 1.4 93.444
## 4713 23 22 6 999 0 -1.8 92.893
## 4714 27 101 14 999 0 1.4 93.918
## 4715 30 11 12 999 0 1.4 93.918
## 4716 41 349 1 999 0 -0.1 93.200
## 4717 29 633 1 999 0 1.4 93.918
## 4718 32 129 1 999 0 1.4 93.918
## 4719 32 1906 3 999 0 1.1 93.994
## 4720 30 52 1 999 0 1.4 93.444
## 4721 42 171 3 999 0 1.4 93.918
## 4722 40 237 4 999 0 1.4 93.918
## 4723 49 232 4 999 0 1.4 93.444
## 4724 23 523 2 999 0 1.4 93.918
## 4725 41 27 3 999 0 1.4 93.444
## 4726 46 121 1 999 0 1.4 93.918
## 4727 25 783 1 999 0 1.4 93.918
## 4728 51 507 2 999 0 1.4 93.444
## 4729 34 51 2 999 0 1.4 93.918
## 4730 50 162 1 999 0 1.4 93.918
## 4731 27 191 2 999 0 -1.8 93.369
## 4732 31 634 1 999 0 1.4 93.918
## 4733 27 112 2 999 0 -1.8 92.893
## 4734 35 92 2 999 0 1.4 93.444
## 4735 33 96 2 999 0 1.4 94.465
## 4736 55 55 8 999 0 1.4 93.918
## 4737 32 285 1 999 0 1.4 93.918
## 4738 38 403 2 999 0 1.1 93.994
## 4739 40 296 3 999 0 1.4 93.918
## 4740 41 266 1 999 0 1.4 93.444
## 4741 41 67 13 999 0 1.4 93.444
## 4742 33 480 2 999 0 -1.8 92.893
## 4743 55 101 5 999 0 1.4 93.918
## 4744 41 385 1 999 0 1.4 94.465
## 4745 38 119 1 999 0 1.4 93.444
## 4746 47 125 1 999 0 -0.1 93.200
## 4747 26 49 1 999 0 1.4 93.918
## 4748 39 134 2 999 0 1.4 93.918
## 4749 29 303 1 999 0 1.4 93.918
## 4750 30 123 1 999 0 1.1 93.994
## 4751 24 165 3 999 0 -1.8 93.369
## 4752 33 302 3 999 0 1.4 93.444
## 4753 42 935 1 999 0 1.4 93.444
## 4754 28 131 4 999 0 -1.8 92.843
## 4755 29 61 1 999 0 1.4 93.444
## 4756 52 140 2 999 0 1.4 93.444
## 4757 53 418 1 999 0 1.1 93.994
## 4758 31 141 1 999 0 1.1 93.994
## 4759 41 21 20 999 0 1.4 93.918
## 4760 58 48 6 999 0 1.4 93.918
## 4761 53 64 1 999 0 1.4 93.444
## 4762 50 255 1 999 0 1.4 94.465
## 4763 35 154 1 999 0 1.4 93.444
## 4764 48 106 2 999 0 1.4 93.444
## 4765 32 35 1 999 0 1.4 93.918
## 4766 31 342 1 999 0 1.4 93.918
## 4767 34 111 3 999 0 -2.9 92.963
## 4768 53 322 1 999 0 -0.1 93.200
## 4769 37 70 9 999 0 1.4 93.918
## 4770 39 257 1 999 0 1.4 93.444
## 4771 38 992 1 999 0 1.4 94.465
## 4772 27 135 3 999 0 1.4 93.918
## 4773 48 82 1 999 0 1.1 93.994
## 4774 38 182 2 999 0 -0.1 93.200
## 4775 57 101 1 999 0 1.4 94.465
## 4776 33 143 4 999 0 1.4 93.918
## 4777 32 78 3 999 0 1.4 93.444
## 4778 31 259 4 999 0 -1.8 92.893
## 4779 44 221 1 999 0 1.4 93.918
## 4780 31 40 1 999 0 1.4 93.444
## 4781 44 150 1 999 0 1.4 93.444
## 4782 45 350 4 999 0 1.1 93.994
## 4783 34 1000 1 999 0 1.1 93.994
## 4784 32 228 2 999 0 1.4 93.444
## 4785 31 105 1 999 0 1.4 94.465
## 4786 56 163 2 999 0 1.4 93.444
## 4787 35 195 1 999 0 -1.8 92.893
## 4788 32 51 1 999 0 -1.8 92.893
## 4789 43 359 1 999 0 1.4 93.918
## 4790 27 568 8 999 0 -1.8 92.893
## 4791 52 60 3 999 0 1.4 94.465
## 4792 31 467 1 999 0 1.4 93.918
## 4793 25 84 5 999 0 1.4 93.918
## 4794 32 443 4 999 0 1.4 93.918
## 4795 36 379 1 999 0 1.4 93.444
## 4796 41 31 1 999 0 1.4 94.465
## 4797 32 140 1 999 0 1.1 93.994
## 4798 24 109 5 999 0 1.4 93.918
## 4799 60 223 2 999 0 1.1 93.994
## 4800 34 1256 1 999 0 -0.1 93.200
## 4801 36 208 5 999 0 1.4 93.918
## 4802 26 432 1 999 0 -2.9 92.469
## 4803 35 126 2 999 0 -1.8 92.893
## 4804 31 387 1 999 0 -2.9 92.201
## 4805 30 148 20 999 0 1.4 93.918
## 4806 31 262 1 999 0 1.4 93.918
## 4807 34 48 2 999 0 -0.1 93.200
## 4808 26 270 7 999 0 1.4 93.918
## 4809 43 142 2 999 0 -1.8 92.893
## 4810 52 152 1 999 0 1.4 93.444
## 4811 34 652 1 999 0 1.4 93.918
## 4812 30 215 1 999 0 1.4 93.918
## 4813 35 71 1 999 0 1.4 94.465
## 4814 23 795 1 999 0 1.4 93.918
## 4815 32 415 2 999 0 -1.7 94.215
## 4816 43 287 1 999 0 1.4 93.918
## 4817 40 89 4 999 0 1.1 93.994
## 4818 38 201 2 999 0 -2.9 92.201
## 4819 73 76 1 999 0 -2.9 92.201
## 4820 30 75 2 999 0 -0.1 93.200
## 4821 37 137 2 999 0 1.1 93.994
## 4822 53 241 1 999 0 1.4 93.444
## 4823 53 58 2 999 0 1.4 93.918
## 4824 37 11 7 999 0 1.4 94.465
## 4825 47 1569 1 999 0 1.4 93.918
## 4826 35 343 2 999 0 1.1 93.994
## 4827 43 732 2 999 0 1.4 93.918
## 4828 44 202 3 999 0 1.4 93.444
## 4829 53 190 1 999 0 -2.9 92.201
## 4830 54 192 3 999 0 1.1 93.994
## 4831 54 213 1 999 0 1.4 93.444
## 4832 36 156 2 999 0 1.4 93.444
## 4833 32 246 3 999 0 -3.4 92.379
## 4834 39 124 1 999 0 1.1 93.994
## 4835 33 762 3 999 0 -1.8 92.893
## 4836 44 330 3 999 0 1.4 93.918
## 4837 54 71 5 999 0 1.4 93.918
## 4838 32 122 17 999 0 1.4 93.918
## 4839 29 20 1 999 0 -1.8 92.893
## 4840 44 39 1 999 0 -0.1 93.200
## 4841 48 337 1 999 0 1.4 93.918
## 4842 36 10 3 999 0 1.4 93.918
## 4843 33 155 2 999 0 1.1 93.994
## 4844 29 249 3 999 0 1.4 93.918
## 4845 32 432 3 999 0 1.4 93.444
## 4846 71 1112 1 999 0 -2.9 92.201
## 4847 44 318 2 999 0 1.1 93.994
## 4848 55 172 4 999 0 1.1 93.994
## 4849 43 73 3 999 0 -0.1 93.200
## 4850 59 300 1 999 0 1.4 93.918
## 4851 34 467 1 999 0 1.4 93.918
## 4852 58 63 5 999 0 -0.1 93.200
## 4853 33 444 1 999 0 -1.8 92.893
## 4854 44 222 2 999 0 1.4 93.444
## 4855 44 107 3 999 0 1.4 93.444
## 4856 56 86 3 999 0 1.4 93.918
## 4857 34 149 3 999 0 1.4 93.444
## 4858 32 165 1 999 0 1.4 93.918
## 4859 51 103 1 999 0 -0.1 93.200
## 4860 32 62 1 999 0 1.1 93.994
## 4861 35 806 1 999 0 1.1 93.994
## 4862 37 520 7 999 0 1.4 93.918
## 4863 34 100 4 999 0 1.1 93.994
## 4864 38 390 3 999 0 -0.1 93.200
## 4865 25 384 1 999 0 1.4 93.918
## 4866 39 185 1 999 0 1.4 93.444
## 4867 30 312 3 999 0 1.1 93.994
## 4868 41 167 1 999 0 -0.1 93.200
## 4869 46 993 6 999 0 1.4 94.465
## 4870 40 123 3 999 0 1.4 93.444
## 4871 45 141 3 999 0 -1.8 92.893
## 4872 47 114 1 999 0 1.4 93.918
## 4873 31 32 1 999 0 -1.8 92.893
## 4874 42 214 1 999 0 1.1 93.994
## 4875 44 118 3 999 0 1.4 94.465
## 4876 35 98 2 999 0 1.1 93.994
## 4877 55 58 2 999 0 1.4 93.918
## 4878 24 211 8 999 0 1.4 93.918
## 4879 36 139 1 999 0 1.4 93.444
## 4880 40 243 1 999 0 -2.9 92.469
## 4881 39 253 1 999 0 1.4 93.444
## 4882 39 381 4 999 0 1.4 93.444
## 4883 31 220 1 999 0 -0.1 93.200
## 4884 39 80 3 999 0 1.4 93.444
## 4885 23 141 3 999 0 1.4 93.918
## 4886 32 82 1 999 0 -2.9 92.963
## 4887 41 256 1 999 0 -1.8 92.893
## 4888 57 278 4 999 0 1.1 93.994
## 4889 30 935 4 999 0 1.4 93.918
## 4890 31 140 3 999 0 1.4 93.444
## 4891 27 43 2 999 0 1.1 93.994
## 4892 42 56 1 999 0 -1.8 92.893
## 4893 29 92 1 999 0 1.4 93.918
## 4894 53 158 8 999 0 1.4 93.444
## 4895 45 69 1 999 0 1.4 94.465
## 4896 38 170 3 999 0 1.4 93.918
## 4897 27 287 2 999 0 1.4 93.918
## 4898 35 234 2 999 0 1.4 93.444
## 4899 48 256 3 999 0 -0.1 93.200
## 4900 54 594 3 999 0 1.4 94.465
## 4901 37 123 1 999 0 -1.8 92.893
## 4902 44 102 1 999 0 -1.8 92.893
## 4903 56 626 5 999 0 1.4 93.918
## 4904 39 582 1 999 0 1.4 94.465
## 4905 29 184 3 999 0 1.4 93.444
## 4906 37 413 4 999 0 1.4 93.918
## 4907 45 378 1 999 0 1.1 93.994
## 4908 40 14 5 999 0 1.4 93.444
## 4909 51 781 1 999 0 1.4 94.465
## 4910 39 187 1 999 0 1.4 93.918
## 4911 50 66 2 999 0 1.4 93.444
## 4912 36 156 4 999 0 -0.1 93.200
## 4913 47 258 2 999 0 1.4 94.465
## 4914 31 126 4 999 0 -1.8 93.075
## 4915 37 364 4 999 0 1.1 93.994
## 4916 40 467 6 999 0 -1.8 92.893
## 4917 36 333 3 999 0 1.1 93.994
## 4918 27 143 1 999 0 -1.8 92.893
## 4919 30 331 4 999 0 1.1 93.994
## 4920 48 21 2 999 0 1.4 93.918
## 4921 36 55 7 999 0 1.4 93.918
## 4922 30 305 1 999 0 -0.1 93.200
## 4923 37 900 2 999 0 1.1 93.994
## 4924 30 45 1 999 0 1.4 93.918
## 4925 49 602 1 999 0 1.4 93.918
## 4926 35 34 31 999 0 1.4 94.465
## 4927 39 342 2 999 0 1.1 93.994
## 4928 34 8 8 999 0 1.4 93.444
## 4929 30 385 1 999 0 -0.1 93.200
## 4930 56 176 7 999 0 1.4 93.444
## 4931 56 242 3 999 0 1.1 93.994
## 4932 41 21 1 999 0 1.4 94.465
## 4933 40 90 2 999 0 1.4 93.918
## 4934 30 171 6 999 0 1.4 93.444
## 4935 49 106 12 999 0 1.4 93.918
## 4936 46 566 2 999 0 1.1 93.994
## 4937 55 181 1 999 0 1.4 93.444
## 4938 31 345 1 999 0 1.1 93.994
## 4939 35 117 2 999 0 -1.8 92.843
## 4940 40 89 6 999 0 1.4 94.465
## 4941 54 823 1 999 0 1.4 93.918
## 4942 38 574 1 999 0 -1.8 92.893
## 4943 40 142 8 999 0 1.4 93.444
## 4944 45 92 1 999 0 1.4 93.918
## 4945 30 116 3 999 0 1.4 94.465
## 4946 39 266 9 999 0 1.4 93.918
## 4947 49 146 1 999 0 1.4 93.918
## 4948 58 162 2 999 0 1.1 93.994
## 4949 43 435 3 999 0 1.4 94.465
## 4950 35 344 1 999 0 1.4 94.465
## 4951 55 169 5 999 0 1.4 93.444
## 4952 35 72 1 999 0 -1.8 93.075
## 4953 43 312 2 999 0 1.4 93.918
## 4954 39 163 1 999 0 1.4 93.444
## 4955 34 181 1 999 0 1.4 93.918
## 4956 33 341 1 999 0 -0.1 93.200
## 4957 58 81 1 999 0 1.4 93.918
## 4958 45 116 1 999 0 1.4 94.465
## 4959 35 215 1 999 0 -1.8 92.893
## 4960 31 176 1 999 0 -1.8 92.893
## 4961 31 107 1 999 0 -0.1 93.200
## 4962 34 114 2 999 0 1.4 93.918
## 4963 45 222 1 999 0 1.4 94.465
## 4964 33 82 1 999 0 1.1 93.994
## 4965 35 51 3 999 0 1.4 93.444
## 4966 57 203 1 999 0 1.1 93.994
## 4967 43 154 2 999 0 1.1 93.994
## 4968 43 315 2 999 0 1.1 93.994
## 4969 32 128 3 999 0 1.1 93.994
## 4970 29 130 3 999 0 1.4 93.918
## 4971 29 694 2 999 0 1.4 94.465
## 4972 21 106 1 999 0 -2.9 92.963
## 4973 28 285 1 999 0 1.1 93.994
## 4974 47 202 3 999 0 1.4 93.918
## 4975 32 50 6 999 0 1.4 93.918
## 4976 36 42 1 999 0 -0.1 93.200
## 4977 66 328 1 999 0 -1.8 93.369
## 4978 47 362 2 999 0 1.4 93.918
## 4979 57 412 7 999 0 1.4 94.465
## 4980 59 1268 2 999 0 1.4 94.465
## 4981 59 91 1 999 0 1.4 93.444
## 4982 33 482 1 999 0 -1.8 92.893
## 4983 44 284 5 999 0 1.1 93.994
## 4984 40 355 1 999 0 -2.9 92.963
## 4985 57 379 2 999 0 1.1 93.994
## 4986 29 11 5 999 0 -1.8 92.893
## 4987 33 100 1 999 0 -0.1 93.200
## 4988 38 114 1 999 0 -1.8 92.893
## 4989 29 211 1 999 0 1.4 93.918
## 4990 57 236 1 999 0 -1.8 92.893
## 4991 39 157 5 999 0 1.4 93.918
## 4992 51 179 4 999 0 1.4 93.918
## 4993 30 338 1 999 0 1.4 94.465
## 4994 47 78 1 999 0 1.4 94.465
## 4995 39 175 2 999 0 1.1 93.994
## 4996 31 656 3 999 0 1.4 93.918
## 4997 38 152 2 999 0 -1.8 92.893
## 4998 44 50 2 999 0 1.4 94.465
## 4999 38 517 5 999 0 1.4 93.918
## cons.conf.idx euribor3m nr.employed job_encoded marital_encoded
## 1 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2 -37.5 0.878 4963.6 0.8854962 0.8586118
## 3 -47.1 1.405 5099.1 0.9229145 0.8983567
## 4 -46.2 1.250 5099.1 0.8798814 0.8983567
## 5 -46.2 1.250 5099.1 0.9229145 0.8983567
## 6 -46.2 1.250 5099.1 0.9229145 0.8586118
## 7 -31.4 0.861 5076.2 0.7666667 0.8983567
## 8 -47.1 1.365 5099.1 0.6868132 0.8586118
## 9 -47.1 1.410 5099.1 0.9229145 0.8983567
## 10 -46.2 1.344 5099.1 0.8854962 0.8983567
## 11 -26.9 0.742 5017.5 0.9229145 0.8586118
## 12 -46.2 1.299 5099.1 0.8798814 0.9007315
## 13 -42.0 4.076 5195.8 0.9074675 0.8586118
## 14 -46.2 1.354 5099.1 0.9271523 0.8983567
## 15 -47.1 1.479 5099.1 0.9074675 0.8983567
## 16 -46.2 1.313 5099.1 0.8798814 0.8586118
## 17 -46.2 1.250 5099.1 0.9229145 0.8586118
## 18 -47.1 1.405 5099.1 0.8874842 0.9007315
## 19 -46.2 1.291 5099.1 0.9229145 0.8983567
## 20 -46.2 1.313 5099.1 0.8874842 0.8983567
## 21 -47.1 1.415 5099.1 0.8798814 0.9007315
## 22 -42.0 4.191 5195.8 0.8798814 0.8983567
## 23 -46.2 1.313 5099.1 0.9229145 0.8983567
## 24 -42.0 4.076 5195.8 0.8854962 0.8983567
## 25 -46.2 1.266 5099.1 0.9229145 0.8983567
## 26 -39.8 0.761 4991.6 0.9074675 0.8983567
## 27 -42.0 4.076 5195.8 0.9229145 0.8983567
## 28 -46.2 1.266 5099.1 0.9198606 0.8983567
## 29 -46.2 1.244 5099.1 0.8854962 0.8983567
## 30 -46.2 1.250 5099.1 0.9271523 0.8983567
## 31 -46.2 1.250 5099.1 0.9229145 0.9007315
## 32 -47.1 1.405 5099.1 0.9229145 0.9007315
## 33 -37.5 0.879 4963.6 0.8854962 0.8586118
## 34 -46.2 1.266 5099.1 0.8798814 0.8586118
## 35 -46.2 1.299 5099.1 0.8798814 0.8586118
## 36 -47.1 1.405 5099.1 0.9074675 0.8983567
## 37 -46.2 1.313 5099.1 0.9229145 0.8983567
## 38 -46.2 1.327 5099.1 0.9229145 0.9007315
## 39 -46.2 1.250 5099.1 0.8798814 0.8983567
## 40 -26.9 0.720 5017.5 0.7666667 0.9007315
## 41 -42.0 4.076 5195.8 0.8798814 0.8983567
## 42 -46.2 1.313 5099.1 0.9229145 0.8586118
## 43 -31.4 0.825 5076.2 0.9074675 0.8983567
## 44 -46.2 1.354 5099.1 0.9074675 0.8983567
## 45 -47.1 1.445 5099.1 0.7666667 0.8983567
## 46 -47.1 1.405 5099.1 0.8854962 0.9007315
## 47 -46.2 1.354 5099.1 0.8854962 0.8983567
## 48 -38.3 0.904 4991.6 0.7666667 0.8983567
## 49 -42.0 4.191 5195.8 0.8798814 0.9007315
## 50 -26.9 0.744 5017.5 0.7666667 0.8983567
## 51 -40.8 1.215 5076.2 0.8798814 0.8983567
## 52 -47.1 1.405 5099.1 0.8798814 0.8586118
## 53 -46.2 1.327 5099.1 0.8798814 0.8586118
## 54 -47.1 1.400 5099.1 0.8854962 0.8586118
## 55 -46.2 1.266 5099.1 0.8798814 0.8983567
## 56 -46.2 1.250 5099.1 0.8798814 0.8983567
## 57 -31.4 0.879 5076.2 0.8798814 0.8586118
## 58 -47.1 1.365 5099.1 0.8854962 0.9007315
## 59 -47.1 1.405 5099.1 0.9229145 0.9007315
## 60 -34.8 0.654 5008.7 0.8798814 0.8983567
## 61 -46.2 1.299 5099.1 0.8798814 0.9007315
## 62 -40.0 0.697 5008.7 0.7666667 0.8983567
## 63 -46.2 1.259 5099.1 0.7666667 0.8983567
## 64 -30.1 0.714 5017.5 0.8798814 0.8983567
## 65 -42.0 4.021 5195.8 0.9074675 0.8983567
## 66 -42.0 4.120 5195.8 0.8854962 0.8983567
## 67 -47.1 1.405 5099.1 0.8874842 0.8586118
## 68 -37.5 0.879 4963.6 0.8854962 0.8586118
## 69 -46.2 1.334 5099.1 0.8798814 0.8983567
## 70 -40.3 0.885 4991.6 0.8798814 0.8586118
## 71 -46.2 1.244 5099.1 0.8798814 0.8983567
## 72 -46.2 1.354 5099.1 0.8854962 0.8983567
## 73 -46.2 1.250 5099.1 0.9229145 0.8983567
## 74 -46.2 1.281 5099.1 0.8798814 0.8586118
## 75 -46.2 1.250 5099.1 0.8854962 0.8586118
## 76 -46.2 1.266 5099.1 0.8854962 0.8983567
## 77 -50.8 1.050 4963.6 0.8798814 0.8983567
## 78 -47.1 1.410 5099.1 0.9229145 0.8586118
## 79 -40.8 1.262 5076.2 0.8798814 0.8586118
## 80 -46.2 1.291 5099.1 0.9229145 0.8586118
## 81 -50.8 1.049 4963.6 0.8798814 0.9007315
## 82 -47.1 1.405 5099.1 0.9198606 0.8983567
## 83 -40.3 0.885 4991.6 0.8032787 0.8586118
## 84 -42.0 4.191 5195.8 0.8854962 0.8983567
## 85 -47.1 1.405 5099.1 0.8854962 0.8983567
## 86 -46.2 1.266 5099.1 0.8874842 0.8983567
## 87 -42.0 4.153 5195.8 0.8854962 0.8983567
## 88 -46.2 1.291 5099.1 0.8854962 0.8983567
## 89 -42.0 4.153 5195.8 0.8798814 0.8586118
## 90 -46.2 1.344 5099.1 0.9229145 0.8983567
## 91 -42.0 4.076 5195.8 0.8798814 0.8586118
## 92 -40.8 1.215 5076.2 0.8798814 0.8983567
## 93 -46.2 1.299 5099.1 0.8798814 0.8586118
## 94 -38.3 0.891 4991.6 0.9198606 0.9007315
## 95 -42.0 4.076 5195.8 0.8854962 0.8586118
## 96 -42.0 4.076 5195.8 0.9271523 0.8983567
## 97 -49.5 0.977 4963.6 0.6868132 0.8586118
## 98 -47.1 1.423 5099.1 0.9229145 0.8586118
## 99 -46.2 1.313 5099.1 0.9229145 0.8586118
## 100 -37.5 0.879 4963.6 0.8854962 0.8586118
## 101 -31.4 0.861 5076.2 0.8854962 0.8586118
## 102 -46.2 1.250 5099.1 0.8874842 0.8983567
## 103 -38.3 0.899 4991.6 0.7666667 0.8983567
## 104 -47.1 1.483 5099.1 0.9229145 0.8586118
## 105 -42.0 4.153 5195.8 0.9074675 0.8586118
## 106 -40.0 0.668 5008.7 0.8874842 0.8983567
## 107 -46.2 1.266 5099.1 0.8798814 0.8586118
## 108 -47.1 1.405 5099.1 0.9229145 0.8983567
## 109 -46.2 1.291 5099.1 0.8874842 0.8983567
## 110 -34.8 0.654 5008.7 0.8798814 0.8586118
## 111 -39.8 0.702 4991.6 0.7666667 0.9007315
## 112 -42.0 4.120 5195.8 0.9198606 0.8983567
## 113 -26.9 0.737 5017.5 0.9074675 0.8586118
## 114 -40.8 1.266 5076.2 0.9074675 0.8586118
## 115 -46.2 1.344 5099.1 0.8854962 0.8586118
## 116 -47.1 1.410 5099.1 0.9229145 0.8586118
## 117 -30.1 0.714 5017.5 0.9271523 0.8983567
## 118 -46.2 1.344 5099.1 0.9229145 0.8983567
## 119 -34.8 0.635 5008.7 0.8874842 0.8983567
## 120 -31.4 0.884 5076.2 0.8854962 0.8586118
## 121 -47.1 1.405 5099.1 0.9229145 0.8983567
## 122 -47.1 1.405 5099.1 0.8851675 0.8586118
## 123 -46.2 1.299 5099.1 0.8874842 0.8586118
## 124 -31.4 0.849 5076.2 0.7666667 0.8983567
## 125 -31.4 0.869 5076.2 0.9229145 0.8983567
## 126 -46.2 1.250 5099.1 0.8874842 0.9007315
## 127 -42.0 4.021 5195.8 0.7666667 0.8983567
## 128 -42.0 4.120 5195.8 0.9074675 0.8983567
## 129 -46.2 1.250 5099.1 0.9271523 0.8586118
## 130 -46.2 1.250 5099.1 0.8874842 0.8983567
## 131 -40.8 1.206 5076.2 0.8798814 0.8586118
## 132 -30.1 0.714 5017.5 0.8798814 0.8586118
## 133 -40.8 1.262 5076.2 0.8798814 0.8983567
## 134 -46.2 1.281 5099.1 0.8874842 0.8586118
## 135 -40.3 0.876 4991.6 0.8960396 0.8983567
## 136 -47.1 1.405 5099.1 0.9074675 0.8983567
## 137 -46.2 1.250 5099.1 0.8798814 0.9007315
## 138 -33.6 0.979 5076.2 0.9074675 0.9007315
## 139 -47.1 1.453 5099.1 0.8874842 0.8983567
## 140 -42.0 4.021 5195.8 0.8798814 0.8586118
## 141 -47.1 1.405 5099.1 0.9229145 0.8983567
## 142 -31.4 0.854 5076.2 0.8798814 0.8983567
## 143 -42.0 4.120 5195.8 0.9229145 0.8586118
## 144 -30.1 0.719 5017.5 0.8798814 0.8983567
## 145 -31.4 0.883 5076.2 0.8798814 0.8586118
## 146 -46.2 1.266 5099.1 0.8874842 0.8983567
## 147 -46.2 1.291 5099.1 0.8854962 0.8983567
## 148 -47.1 1.405 5099.1 0.9074675 0.8983567
## 149 -38.3 0.891 4991.6 0.8798814 0.8983567
## 150 -42.0 4.021 5195.8 0.8874842 0.8586118
## 151 -42.0 4.153 5195.8 0.8854962 0.8983567
## 152 -38.3 0.899 4991.6 0.6868132 0.8586118
## 153 -47.1 1.405 5099.1 0.9229145 0.8983567
## 154 -47.1 1.405 5099.1 0.8874842 0.8586118
## 155 -42.0 4.191 5195.8 0.8960396 0.8983567
## 156 -46.2 1.354 5099.1 0.8854962 0.8586118
## 157 -46.2 1.281 5099.1 0.8798814 0.8586118
## 158 -46.2 1.354 5099.1 0.8798814 0.8586118
## 159 -46.2 1.313 5099.1 0.8798814 0.8983567
## 160 -47.1 1.435 5099.1 0.8798814 0.8586118
## 161 -50.0 1.811 5099.1 0.6868132 0.8586118
## 162 -42.0 4.191 5195.8 0.9074675 0.9007315
## 163 -46.2 1.299 5099.1 0.8854962 0.8983567
## 164 -47.1 1.405 5099.1 0.9271523 0.8586118
## 165 -42.0 4.021 5195.8 0.8854962 0.8586118
## 166 -47.1 1.405 5099.1 0.8851675 0.8983567
## 167 -40.8 1.262 5076.2 0.8854962 0.8586118
## 168 -47.1 1.435 5099.1 0.6868132 0.8586118
## 169 -40.3 0.827 4991.6 0.7666667 0.9007315
## 170 -46.2 1.250 5099.1 0.9229145 0.8983567
## 171 -40.8 1.262 5076.2 0.7666667 0.8983567
## 172 -46.2 1.344 5099.1 0.9229145 0.8983567
## 173 -34.8 0.639 5008.7 0.7666667 0.8983567
## 174 -46.2 1.250 5099.1 0.8874842 0.8586118
## 175 -47.1 1.405 5099.1 0.8798814 0.8983567
## 176 -31.4 0.861 5076.2 0.7666667 0.8983567
## 177 -46.2 1.266 5099.1 0.8798814 0.8983567
## 178 -46.2 1.291 5099.1 0.8798814 0.8586118
## 179 -42.0 4.153 5195.8 0.8854962 0.8983567
## 180 -30.1 0.718 5017.5 0.7666667 0.8983567
## 181 -42.0 4.021 5195.8 0.9229145 0.8983567
## 182 -47.1 1.405 5099.1 0.8798814 0.8586118
## 183 -46.2 1.344 5099.1 0.9229145 0.8586118
## 184 -46.2 1.266 5099.1 0.8874842 0.8586118
## 185 -42.0 4.153 5195.8 0.9074675 0.8586118
## 186 -49.5 0.987 4963.6 0.9198606 0.8983567
## 187 -30.1 0.716 5017.5 0.8960396 0.9007315
## 188 -47.1 1.405 5099.1 0.8874842 0.8586118
## 189 -46.2 1.291 5099.1 0.8874842 0.8983567
## 190 -47.1 1.466 5099.1 0.8854962 0.8983567
## 191 -46.2 1.299 5099.1 0.8854962 0.8586118
## 192 -33.0 0.715 5023.5 0.6868132 0.8586118
## 193 -26.9 0.731 5017.5 0.8798814 0.8586118
## 194 -42.0 4.076 5195.8 0.9229145 0.8983567
## 195 -46.2 1.291 5099.1 0.8854962 0.8586118
## 196 -46.2 1.281 5099.1 0.8798814 0.8586118
## 197 -46.2 1.313 5099.1 0.9229145 0.8983567
## 198 -46.2 1.354 5099.1 0.8960396 0.8983567
## 199 -42.0 4.191 5195.8 0.8854962 0.8983567
## 200 -47.1 1.410 5099.1 0.9229145 0.8983567
## 201 -46.2 1.281 5099.1 0.9229145 0.8983567
## 202 -47.1 1.410 5099.1 0.8854962 0.8983567
## 203 -40.8 1.262 5076.2 0.8874842 0.8586118
## 204 -46.2 1.244 5099.1 0.8854962 0.8586118
## 205 -42.0 4.153 5195.8 0.8851675 0.8983567
## 206 -37.5 0.878 4963.6 0.8874842 0.8586118
## 207 -39.8 0.754 4991.6 0.9229145 0.8586118
## 208 -31.4 0.883 5076.2 0.9074675 0.8983567
## 209 -42.0 4.153 5195.8 0.8798814 0.8983567
## 210 -31.4 0.821 5076.2 0.8854962 0.8586118
## 211 -46.2 1.281 5099.1 0.8798814 0.8983567
## 212 -42.0 4.021 5195.8 0.8854962 0.8586118
## 213 -46.2 1.344 5099.1 0.9229145 0.8983567
## 214 -46.2 1.313 5099.1 0.8874842 0.8983567
## 215 -42.0 4.120 5195.8 0.8798814 0.8983567
## 216 -40.3 0.846 4991.6 0.9229145 0.8586118
## 217 -47.1 1.405 5099.1 0.9229145 0.8983567
## 218 -47.1 1.405 5099.1 0.8798814 0.8983567
## 219 -42.0 4.153 5195.8 0.9198606 0.8983567
## 220 -40.8 1.262 5076.2 0.8851675 0.8983567
## 221 -38.3 0.904 4991.6 0.9229145 0.8983567
## 222 -42.0 4.021 5195.8 0.7666667 0.8586118
## 223 -26.9 0.739 5017.5 0.8798814 0.8586118
## 224 -40.3 0.899 4991.6 0.8798814 0.9007315
## 225 -46.2 1.334 5099.1 0.8798814 0.8983567
## 226 -42.0 4.076 5195.8 0.8854962 0.8983567
## 227 -46.2 1.299 5099.1 0.8854962 0.8983567
## 228 -31.4 0.821 5076.2 0.8854962 0.8983567
## 229 -47.1 1.410 5099.1 0.9229145 0.8983567
## 230 -30.1 0.714 5017.5 0.9074675 0.8983567
## 231 -42.0 4.120 5195.8 0.8798814 0.8983567
## 232 -30.1 0.716 5017.5 0.9074675 0.8983567
## 233 -42.0 4.153 5195.8 0.9074675 0.8983567
## 234 -31.4 0.873 5076.2 0.7666667 0.8983567
## 235 -46.2 1.299 5099.1 0.8854962 0.8983567
## 236 -42.0 4.021 5195.8 0.8798814 0.8983567
## 237 -29.8 0.741 5017.5 0.9229145 0.8983567
## 238 -46.2 1.266 5099.1 0.9229145 0.8983567
## 239 -46.2 1.299 5099.1 0.8874842 0.8586118
## 240 -42.0 4.021 5195.8 0.8854962 0.8983567
## 241 -26.9 0.743 5017.5 0.8854962 0.8983567
## 242 -31.4 0.881 5076.2 0.8851675 0.8983567
## 243 -47.1 1.365 5099.1 0.8874842 0.8983567
## 244 -31.4 0.884 5076.2 0.8854962 0.8586118
## 245 -46.2 1.334 5099.1 0.8798814 0.9007315
## 246 -37.5 0.878 4963.6 0.9074675 0.8983567
## 247 -46.2 1.264 5099.1 0.8854962 0.8586118
## 248 -46.2 1.244 5099.1 0.8798814 0.8983567
## 249 -46.2 1.299 5099.1 0.8854962 0.8586118
## 250 -29.8 0.755 5017.5 0.8798814 0.9007315
## 251 -47.1 1.423 5099.1 0.8798814 0.8586118
## 252 -30.1 0.718 5017.5 0.7666667 0.8983567
## 253 -40.3 0.884 4991.6 0.8874842 0.8586118
## 254 -46.2 1.344 5099.1 0.8798814 0.8586118
## 255 -47.1 1.405 5099.1 0.8854962 0.9007315
## 256 -39.8 0.742 4991.6 0.8854962 0.8983567
## 257 -46.2 1.250 5099.1 0.9229145 0.9007315
## 258 -46.2 1.344 5099.1 0.8874842 0.8983567
## 259 -47.1 1.410 5099.1 0.8874842 0.8586118
## 260 -42.0 4.191 5195.8 0.9271523 0.8983567
## 261 -46.2 1.266 5099.1 0.9229145 0.8983567
## 262 -49.5 1.032 4963.6 0.9074675 0.8983567
## 263 -31.4 0.821 5076.2 0.9198606 0.8586118
## 264 -38.3 0.904 4991.6 0.6868132 0.8586118
## 265 -47.1 1.405 5099.1 0.9229145 0.9007315
## 266 -26.9 0.740 5017.5 0.9074675 0.8983567
## 267 -46.2 1.266 5099.1 0.8874842 0.8983567
## 268 -46.2 1.291 5099.1 0.8798814 0.8586118
## 269 -47.1 1.405 5099.1 0.8854962 0.8586118
## 270 -42.0 4.120 5195.8 0.8960396 0.8983567
## 271 -46.2 1.291 5099.1 0.9229145 0.8983567
## 272 -47.1 1.405 5099.1 0.9074675 0.8983567
## 273 -40.3 0.790 4991.6 0.8874842 0.8586118
## 274 -47.1 1.405 5099.1 0.9229145 0.8586118
## 275 -46.2 1.266 5099.1 0.9229145 0.8983567
## 276 -46.2 1.250 5099.1 0.8798814 0.9007315
## 277 -40.3 0.896 4991.6 0.8798814 0.8586118
## 278 -46.2 1.244 5099.1 0.9229145 0.8586118
## 279 -46.2 1.264 5099.1 0.7666667 0.8983567
## 280 -31.4 0.861 5076.2 0.8798814 0.8586118
## 281 -46.2 1.344 5099.1 0.8854962 0.8983567
## 282 -42.0 4.191 5195.8 0.9229145 0.8983567
## 283 -46.2 1.344 5099.1 0.9229145 0.8983567
## 284 -42.0 4.191 5195.8 0.9271523 0.8983567
## 285 -46.2 1.266 5099.1 0.8798814 0.8586118
## 286 -49.5 0.982 4963.6 0.9229145 0.8586118
## 287 -40.3 0.896 4991.6 0.9198606 0.8983567
## 288 -46.2 1.250 5099.1 0.9229145 0.8586118
## 289 -47.1 1.405 5099.1 0.6868132 0.8586118
## 290 -46.2 1.327 5099.1 0.9271523 0.8983567
## 291 -46.2 1.250 5099.1 0.8854962 0.8586118
## 292 -42.0 4.076 5195.8 0.9074675 0.8983567
## 293 -46.2 1.291 5099.1 0.9229145 0.8983567
## 294 -46.2 1.327 5099.1 0.9229145 0.8983567
## 295 -42.0 4.191 5195.8 0.9229145 0.9007315
## 296 -40.3 0.885 4991.6 0.8798814 0.8586118
## 297 -46.2 1.250 5099.1 0.9229145 0.8586118
## 298 -46.2 1.281 5099.1 0.6868132 0.8586118
## 299 -47.1 1.410 5099.1 0.9229145 0.8983567
## 300 -46.2 1.299 5099.1 0.8798814 0.8586118
## 301 -46.2 1.291 5099.1 0.8854962 0.8983567
## 302 -42.0 4.153 5195.8 0.9229145 0.8983567
## 303 -46.2 1.313 5099.1 0.9074675 0.8586118
## 304 -42.0 4.120 5195.8 0.9074675 0.8983567
## 305 -42.0 4.153 5195.8 0.8874842 0.9007315
## 306 -34.6 0.644 5008.7 0.6868132 0.8586118
## 307 -34.8 0.655 5008.7 0.7666667 0.9007315
## 308 -47.1 1.405 5099.1 0.9229145 0.8983567
## 309 -47.1 1.365 5099.1 0.8798814 0.8983567
## 310 -31.4 0.883 5076.2 0.8798814 0.8983567
## 311 -42.0 4.120 5195.8 0.8798814 0.8983567
## 312 -42.0 4.153 5195.8 0.8960396 0.8983567
## 313 -30.1 0.716 5017.5 0.8032787 0.8983567
## 314 -30.1 0.719 5017.5 0.9229145 0.8983567
## 315 -46.2 1.291 5099.1 0.8798814 0.8586118
## 316 -46.2 1.313 5099.1 0.9229145 0.8983567
## 317 -46.2 1.270 5099.1 0.8798814 0.8983567
## 318 -26.9 0.739 5017.5 0.6868132 0.8586118
## 319 -34.6 0.640 5008.7 0.8854962 0.8983567
## 320 -47.1 1.466 5099.1 0.9229145 0.8983567
## 321 -46.2 1.266 5099.1 0.9229145 0.8586118
## 322 -46.2 1.291 5099.1 0.9229145 0.8983567
## 323 -46.2 1.291 5099.1 0.9229145 0.8983567
## 324 -42.0 4.153 5195.8 0.8798814 0.9007315
## 325 -33.0 0.707 5023.5 0.8854962 0.8586118
## 326 -46.2 1.313 5099.1 0.9229145 0.8586118
## 327 -38.3 0.900 4991.6 0.9229145 0.8983567
## 328 -26.9 0.739 5017.5 0.8798814 0.8586118
## 329 -46.2 1.313 5099.1 0.9229145 0.8983567
## 330 -46.2 1.299 5099.1 0.8798814 0.8586118
## 331 -46.2 1.291 5099.1 0.8874842 0.8586118
## 332 -46.2 1.250 5099.1 0.8798814 0.8983567
## 333 -50.8 1.041 4963.6 0.8854962 0.8983567
## 334 -42.0 4.021 5195.8 0.8798814 0.8586118
## 335 -38.3 0.898 4991.6 0.6868132 0.8586118
## 336 -26.9 0.739 5017.5 0.9271523 0.8983567
## 337 -46.2 1.266 5099.1 0.8874842 0.8586118
## 338 -46.2 1.344 5099.1 0.9271523 0.8983567
## 339 -46.2 1.299 5099.1 0.8874842 0.8983567
## 340 -46.2 1.250 5099.1 0.8874842 0.8586118
## 341 -42.0 4.191 5195.8 0.9271523 0.9007315
## 342 -46.2 1.313 5099.1 0.8798814 0.8586118
## 343 -30.1 0.720 5017.5 0.8960396 0.9007315
## 344 -46.2 1.281 5099.1 0.8854962 0.8586118
## 345 -46.2 1.334 5099.1 0.8874842 0.8983567
## 346 -40.3 0.782 4991.6 0.8798814 0.8586118
## 347 -47.1 1.405 5099.1 0.8798814 0.8586118
## 348 -46.2 1.281 5099.1 0.7666667 0.9007315
## 349 -42.0 4.021 5195.8 0.9198606 0.8586118
## 350 -46.2 1.354 5099.1 0.9229145 0.8983567
## 351 -40.8 1.260 5076.2 0.8851675 0.8983567
## 352 -47.1 1.365 5099.1 0.7666667 0.8983567
## 353 -46.2 1.281 5099.1 0.9074675 0.8983567
## 354 -30.1 0.722 5017.5 0.8854962 0.9007315
## 355 -42.0 4.120 5195.8 0.8874842 0.8983567
## 356 -42.0 4.191 5195.8 0.9271523 0.8983567
## 357 -46.2 1.334 5099.1 0.9198606 0.8983567
## 358 -46.2 1.291 5099.1 0.8960396 0.8586118
## 359 -42.0 4.191 5195.8 0.9229145 0.8983567
## 360 -47.1 1.479 5099.1 0.8960396 0.8983567
## 361 -46.2 1.244 5099.1 0.8854962 0.8586118
## 362 -46.2 1.291 5099.1 0.9074675 0.8586118
## 363 -46.2 1.281 5099.1 0.9229145 0.8983567
## 364 -42.0 4.076 5195.8 0.8960396 0.9007315
## 365 -26.9 0.739 5017.5 0.9198606 0.8586118
## 366 -38.3 0.904 4991.6 0.9074675 0.8983567
## 367 -34.6 0.642 5008.7 0.8960396 0.9007315
## 368 -40.8 1.268 5076.2 0.8798814 0.8586118
## 369 -46.2 1.313 5099.1 0.8854962 0.8983567
## 370 -46.2 1.313 5099.1 0.8798814 0.9007315
## 371 -40.3 0.840 4991.6 0.8798814 0.8586118
## 372 -26.9 0.722 5017.5 0.8798814 0.8983567
## 373 -46.2 1.281 5099.1 0.9229145 0.8586118
## 374 -46.2 1.266 5099.1 0.8798814 0.8586118
## 375 -46.2 1.266 5099.1 0.8798814 0.8983567
## 376 -40.8 1.262 5076.2 0.8854962 0.8586118
## 377 -46.2 1.244 5099.1 0.8854962 0.8586118
## 378 -50.0 1.757 5099.1 0.8798814 0.8586118
## 379 -26.9 0.728 5017.5 0.9229145 0.8983567
## 380 -38.3 0.904 4991.6 0.7666667 0.9007315
## 381 -46.2 1.281 5099.1 0.8854962 0.9007315
## 382 -46.2 1.327 5099.1 0.9074675 0.8983567
## 383 -42.0 4.120 5195.8 0.8874842 0.8983567
## 384 -46.2 1.281 5099.1 0.9229145 0.8983567
## 385 -30.1 0.714 5017.5 0.6868132 0.8586118
## 386 -47.1 1.405 5099.1 0.9229145 0.8586118
## 387 -46.2 1.291 5099.1 0.8798814 0.9007315
## 388 -46.2 1.313 5099.1 0.8854962 0.8586118
## 389 -46.2 1.281 5099.1 0.9198606 0.8983567
## 390 -47.1 1.410 5099.1 0.8874842 0.8586118
## 391 -46.2 1.299 5099.1 0.9074675 0.8983567
## 392 -42.0 4.021 5195.8 0.9229145 0.8983567
## 393 -46.2 1.334 5099.1 0.8798814 0.8586118
## 394 -40.8 1.281 5076.2 0.8798814 0.8586118
## 395 -47.1 1.410 5099.1 0.9229145 0.9007315
## 396 -49.5 1.037 4963.6 0.8798814 0.8983567
## 397 -31.4 0.869 5076.2 0.8798814 0.8586118
## 398 -47.1 1.405 5099.1 0.9229145 0.8983567
## 399 -46.2 1.250 5099.1 0.8798814 0.8586118
## 400 -42.0 4.120 5195.8 0.9271523 0.8983567
## 401 -46.2 1.334 5099.1 0.8874842 0.8983567
## 402 -46.2 1.250 5099.1 0.9229145 0.8983567
## 403 -30.1 0.719 5017.5 0.9229145 0.8983567
## 404 -47.1 1.405 5099.1 0.9074675 0.8983567
## 405 -40.8 1.262 5076.2 0.8798814 0.8586118
## 406 -30.1 0.722 5017.5 0.9198606 0.8586118
## 407 -47.1 1.479 5099.1 0.8874842 0.8983567
## 408 -46.2 1.327 5099.1 0.8874842 0.8983567
## 409 -47.1 1.405 5099.1 0.8874842 0.8586118
## 410 -40.8 1.262 5076.2 0.9198606 0.8586118
## 411 -46.2 1.327 5099.1 0.8851675 0.8586118
## 412 -46.2 1.344 5099.1 0.9229145 0.9007315
## 413 -42.0 4.120 5195.8 0.9229145 0.8586118
## 414 -42.0 4.120 5195.8 0.8798814 0.8586118
## 415 -42.0 4.120 5195.8 0.7666667 0.8983567
## 416 -46.2 1.266 5099.1 0.9229145 0.8586118
## 417 -47.1 1.423 5099.1 0.9229145 0.8983567
## 418 -30.1 0.714 5017.5 0.7666667 0.8586118
## 419 -46.2 1.313 5099.1 0.8798814 0.8983567
## 420 -47.1 1.405 5099.1 0.9229145 0.8983567
## 421 -42.0 4.021 5195.8 0.8854962 0.8586118
## 422 -31.4 0.834 5076.2 0.7666667 0.9007315
## 423 -42.0 4.191 5195.8 0.8798814 0.8983567
## 424 -46.2 1.266 5099.1 0.8854962 0.8586118
## 425 -46.2 1.291 5099.1 0.8798814 0.8983567
## 426 -46.2 1.281 5099.1 0.8798814 0.8983567
## 427 -34.8 0.654 5008.7 0.9074675 0.8983567
## 428 -46.2 1.291 5099.1 0.8798814 0.8983567
## 429 -29.8 0.788 5017.5 0.7666667 0.8983567
## 430 -46.2 1.299 5099.1 0.8032787 0.8586118
## 431 -46.2 1.266 5099.1 0.8798814 0.8983567
## 432 -47.1 1.405 5099.1 0.8798814 0.8586118
## 433 -46.2 1.334 5099.1 0.9229145 0.8983567
## 434 -39.8 0.702 4991.6 0.8798814 0.8586118
## 435 -46.2 1.266 5099.1 0.8874842 0.8983567
## 436 -46.2 1.281 5099.1 0.8798814 0.8983567
## 437 -42.0 4.076 5195.8 0.8854962 0.8983567
## 438 -42.0 4.191 5195.8 0.9271523 0.8983567
## 439 -42.0 4.120 5195.8 0.9271523 0.8983567
## 440 -46.2 1.281 5099.1 0.8854962 0.8586118
## 441 -47.1 1.445 5099.1 0.9229145 0.8983567
## 442 -47.1 1.410 5099.1 0.9229145 0.8983567
## 443 -40.3 0.840 4991.6 0.6868132 0.8586118
## 444 -26.9 0.742 5017.5 0.8854962 0.8983567
## 445 -31.4 0.879 5076.2 0.9198606 0.8586118
## 446 -46.2 1.281 5099.1 0.8960396 0.8983567
## 447 -49.5 0.942 4963.6 0.6868132 0.8586118
## 448 -46.2 1.281 5099.1 0.9229145 0.8586118
## 449 -46.2 1.327 5099.1 0.9229145 0.8983567
## 450 -37.5 0.877 4963.6 0.8854962 0.8586118
## 451 -47.1 1.405 5099.1 0.7666667 0.8983567
## 452 -49.5 0.965 4963.6 0.7666667 0.8983567
## 453 -46.2 1.299 5099.1 0.9229145 0.8983567
## 454 -46.2 1.266 5099.1 0.9229145 0.8983567
## 455 -26.9 0.754 5017.5 0.7666667 0.8983567
## 456 -46.2 1.266 5099.1 0.6868132 0.8586118
## 457 -46.2 1.299 5099.1 0.8874842 0.8586118
## 458 -42.0 4.120 5195.8 0.9271523 0.8983567
## 459 -46.2 1.281 5099.1 0.9229145 0.8983567
## 460 -46.2 1.291 5099.1 0.9229145 0.8983567
## 461 -29.8 0.809 5017.5 0.7666667 0.8983567
## 462 -46.2 1.313 5099.1 0.6868132 0.8586118
## 463 -42.0 4.021 5195.8 0.8960396 0.8983567
## 464 -42.0 4.021 5195.8 0.8854962 0.9007315
## 465 -42.0 4.191 5195.8 0.9229145 0.8983567
## 466 -47.1 1.405 5099.1 0.9074675 0.8586118
## 467 -47.1 1.405 5099.1 0.8854962 0.8586118
## 468 -46.2 1.313 5099.1 0.9229145 0.8983567
## 469 -40.0 0.699 5008.7 0.8854962 0.8586118
## 470 -37.5 0.886 4963.6 0.8798814 0.8983567
## 471 -46.2 1.334 5099.1 0.8798814 0.8983567
## 472 -40.8 1.260 5076.2 0.8798814 0.8586118
## 473 -42.0 4.076 5195.8 0.8798814 0.9007315
## 474 -46.2 1.291 5099.1 0.8874842 0.8983567
## 475 -46.2 1.299 5099.1 0.8874842 0.8983567
## 476 -31.4 0.879 5076.2 0.8798814 0.8983567
## 477 -40.0 0.684 5008.7 0.9074675 0.8983567
## 478 -34.6 0.635 5008.7 0.7666667 0.9007315
## 479 -46.2 1.344 5099.1 0.9229145 0.8983567
## 480 -46.2 1.344 5099.1 0.9229145 0.8586118
## 481 -33.0 0.715 5023.5 0.8854962 0.8983567
## 482 -42.0 4.153 5195.8 0.8854962 0.8586118
## 483 -31.4 0.873 5076.2 0.8798814 0.8983567
## 484 -29.8 0.750 5017.5 0.9074675 0.9007315
## 485 -42.0 4.076 5195.8 0.8798814 0.8586118
## 486 -31.4 0.851 5076.2 0.8798814 0.8586118
## 487 -42.0 4.021 5195.8 0.9271523 0.8983567
## 488 -42.0 4.076 5195.8 0.9074675 0.8983567
## 489 -46.2 1.334 5099.1 0.9271523 0.8983567
## 490 -30.1 0.714 5017.5 0.6868132 0.8586118
## 491 -37.5 0.886 4963.6 0.7666667 0.8983567
## 492 -46.2 1.291 5099.1 0.9229145 0.8983567
## 493 -46.2 1.281 5099.1 0.8874842 0.8586118
## 494 -38.3 0.900 4991.6 0.8798814 0.8586118
## 495 -47.1 1.405 5099.1 0.9229145 0.8983567
## 496 -46.2 1.334 5099.1 0.8798814 0.8983567
## 497 -42.0 4.153 5195.8 0.8851675 0.8983567
## 498 -46.2 1.334 5099.1 0.8854962 0.8983567
## 499 -46.2 1.299 5099.1 0.8798814 0.8586118
## 500 -40.8 1.262 5076.2 0.8854962 0.8586118
## 501 -42.0 4.076 5195.8 0.8851675 0.8586118
## 502 -46.2 1.344 5099.1 0.8854962 0.9007315
## 503 -42.0 4.153 5195.8 0.8798814 0.8983567
## 504 -40.0 0.677 5008.7 0.8874842 0.8983567
## 505 -29.8 0.788 5017.5 0.7666667 0.8983567
## 506 -46.2 1.334 5099.1 0.9229145 0.8586118
## 507 -46.2 1.313 5099.1 0.9229145 0.8983567
## 508 -42.0 4.021 5195.8 0.9229145 0.8983567
## 509 -46.2 1.344 5099.1 0.8874842 0.8983567
## 510 -42.0 4.120 5195.8 0.8798814 0.8983567
## 511 -47.1 1.410 5099.1 0.9229145 0.8983567
## 512 -47.1 1.405 5099.1 0.9229145 0.8983567
## 513 -30.1 0.715 5017.5 0.8798814 0.9007315
## 514 -46.2 1.299 5099.1 0.8854962 0.9007315
## 515 -42.0 4.021 5195.8 0.8854962 0.8586118
## 516 -47.1 1.405 5099.1 0.8874842 0.8586118
## 517 -46.2 1.334 5099.1 0.9198606 0.9007315
## 518 -46.2 1.344 5099.1 0.9271523 0.8983567
## 519 -31.4 0.883 5076.2 0.8798814 0.8983567
## 520 -39.8 0.742 4991.6 0.9198606 0.9007315
## 521 -46.2 1.327 5099.1 0.8854962 0.8586118
## 522 -46.2 1.266 5099.1 0.8798814 0.8983567
## 523 -46.2 1.327 5099.1 0.8874842 0.8983567
## 524 -47.1 1.445 5099.1 0.8874842 0.8983567
## 525 -46.2 1.250 5099.1 0.8854962 0.8983567
## 526 -46.2 1.299 5099.1 0.8798814 0.8586118
## 527 -42.0 4.120 5195.8 0.9271523 0.8983567
## 528 -46.2 1.299 5099.1 0.9271523 0.8983567
## 529 -46.2 1.344 5099.1 0.8798814 0.8586118
## 530 -46.2 1.266 5099.1 0.9271523 0.8983567
## 531 -47.1 1.479 5099.1 0.8874842 0.8983567
## 532 -47.1 1.405 5099.1 0.9074675 0.9007315
## 533 -46.2 1.291 5099.1 0.9074675 0.8586118
## 534 -40.3 0.827 4991.6 0.6868132 0.8586118
## 535 -42.0 4.120 5195.8 0.8798814 0.8983567
## 536 -39.8 0.704 4991.6 0.8798814 0.8586118
## 537 -40.0 0.692 5008.7 0.7666667 0.8983567
## 538 -46.2 1.250 5099.1 0.9074675 0.8586118
## 539 -46.2 1.250 5099.1 0.8874842 0.8586118
## 540 -46.2 1.344 5099.1 0.6868132 0.8586118
## 541 -26.9 0.728 5017.5 0.8798814 0.8586118
## 542 -40.0 0.668 5008.7 0.7666667 0.8983567
## 543 -46.2 1.266 5099.1 0.8854962 0.8983567
## 544 -42.0 4.021 5195.8 0.7666667 0.8983567
## 545 -46.2 1.354 5099.1 0.8798814 0.8586118
## 546 -31.4 0.869 5076.2 0.8854962 0.8983567
## 547 -46.2 1.327 5099.1 0.8854962 0.8586118
## 548 -42.0 4.153 5195.8 0.9074675 0.8983567
## 549 -38.3 0.898 4991.6 0.9198606 0.8586118
## 550 -37.5 0.886 4963.6 0.8798814 0.9007315
## 551 -46.2 1.266 5099.1 0.8798814 0.8983567
## 552 -46.2 1.313 5099.1 0.8854962 0.8983567
## 553 -47.1 1.415 5099.1 0.9229145 0.8983567
## 554 -47.1 1.410 5099.1 0.9229145 0.8983567
## 555 -37.5 0.881 4963.6 0.7666667 0.8983567
## 556 -47.1 1.405 5099.1 0.8798814 0.9007315
## 557 -47.1 1.410 5099.1 0.9229145 0.8586118
## 558 -34.6 0.640 5008.7 0.8854962 0.8983567
## 559 -46.2 1.266 5099.1 0.9229145 0.8586118
## 560 -42.0 4.191 5195.8 0.9271523 0.9007315
## 561 -46.2 1.281 5099.1 0.8798814 0.8586118
## 562 -38.3 0.904 4991.6 0.8854962 0.8983567
## 563 -47.1 1.453 5099.1 0.6868132 0.8586118
## 564 -42.0 4.021 5195.8 0.9074675 0.8983567
## 565 -46.2 1.281 5099.1 0.8798814 0.8983567
## 566 -47.1 1.405 5099.1 0.8854962 0.9007315
## 567 -46.2 1.313 5099.1 0.8874842 0.8586118
## 568 -31.4 0.838 5076.2 0.8798814 0.9007315
## 569 -46.2 1.313 5099.1 0.9229145 0.8983567
## 570 -46.2 1.244 5099.1 0.9229145 0.8983567
## 571 -47.1 1.466 5099.1 0.9229145 0.8983567
## 572 -46.2 1.327 5099.1 0.9229145 0.8983567
## 573 -46.2 1.299 5099.1 0.8874842 0.8983567
## 574 -46.2 1.291 5099.1 0.9229145 0.8586118
## 575 -34.8 0.636 5008.7 0.8798814 0.8586118
## 576 -47.1 1.415 5099.1 0.8798814 0.8983567
## 577 -46.2 1.244 5099.1 0.9074675 0.9007315
## 578 -46.2 1.266 5099.1 0.9229145 0.9007315
## 579 -40.8 1.260 5076.2 0.6868132 0.8586118
## 580 -33.0 0.715 5023.5 0.7666667 0.8983567
## 581 -47.1 1.405 5099.1 0.8798814 0.8983567
## 582 -42.0 4.191 5195.8 0.9271523 0.8983567
## 583 -37.5 0.881 4963.6 0.8798814 0.8586118
## 584 -46.2 1.334 5099.1 0.9229145 0.8983567
## 585 -46.2 1.299 5099.1 0.9229145 0.8983567
## 586 -39.8 0.761 4991.6 0.7666667 0.9007315
## 587 -46.2 1.334 5099.1 0.9229145 0.9007315
## 588 -42.0 4.076 5195.8 0.8798814 0.8586118
## 589 -47.1 1.405 5099.1 0.8874842 0.8983567
## 590 -46.2 1.299 5099.1 0.9229145 0.9007315
## 591 -46.2 1.313 5099.1 0.9229145 0.8983567
## 592 -46.2 1.281 5099.1 0.8798814 0.9007315
## 593 -46.2 1.244 5099.1 0.8798814 0.9007315
## 594 -42.0 4.120 5195.8 0.8854962 0.9007315
## 595 -42.0 4.153 5195.8 0.9271523 0.8983567
## 596 -46.2 1.334 5099.1 0.9074675 0.8983567
## 597 -42.0 4.153 5195.8 0.8851675 0.8983567
## 598 -42.0 4.076 5195.8 0.8854962 0.9007315
## 599 -34.8 0.655 5008.7 0.7666667 0.8983567
## 600 -49.5 1.000 4963.6 0.8854962 0.8983567
## 601 -42.0 4.021 5195.8 0.8854962 0.8983567
## 602 -42.0 4.076 5195.8 0.8854962 0.9007315
## 603 -42.0 4.120 5195.8 0.9074675 0.8586118
## 604 -42.0 4.153 5195.8 0.9229145 0.8586118
## 605 -46.2 1.250 5099.1 0.8874842 0.8983567
## 606 -31.4 0.884 5076.2 0.8854962 0.8983567
## 607 -42.0 4.120 5195.8 0.9229145 0.8586118
## 608 -40.3 0.835 4991.6 0.6868132 0.8586118
## 609 -46.2 1.281 5099.1 0.9198606 0.8586118
## 610 -46.2 1.299 5099.1 0.8854962 0.8983567
## 611 -46.2 1.327 5099.1 0.9074675 0.8983567
## 612 -47.1 1.372 5099.1 0.7666667 0.8983567
## 613 -46.2 1.299 5099.1 0.9271523 0.8983567
## 614 -46.2 1.334 5099.1 0.8874842 0.8586118
## 615 -46.2 1.291 5099.1 0.8798814 0.8586118
## 616 -47.1 1.365 5099.1 0.8851675 0.8983567
## 617 -47.1 1.410 5099.1 0.9271523 0.9007315
## 618 -40.3 0.835 4991.6 0.8874842 0.8586118
## 619 -47.1 1.405 5099.1 0.9229145 0.8983567
## 620 -46.2 1.281 5099.1 0.8798814 0.8586118
## 621 -47.1 1.405 5099.1 0.8798814 0.8586118
## 622 -46.2 1.313 5099.1 0.8798814 0.8586118
## 623 -42.0 4.191 5195.8 0.8851675 0.8983567
## 624 -38.3 0.898 4991.6 0.8874842 0.8586118
## 625 -46.2 1.299 5099.1 0.8854962 0.8586118
## 626 -46.2 1.266 5099.1 0.8798814 0.8983567
## 627 -42.0 4.120 5195.8 0.9229145 0.8983567
## 628 -34.8 0.654 5008.7 0.8874842 0.8983567
## 629 -46.2 1.266 5099.1 0.9229145 0.8983567
## 630 -26.9 0.742 5017.5 0.8854962 0.9007315
## 631 -42.0 4.153 5195.8 0.8798814 0.8586118
## 632 -47.1 1.483 5099.1 0.8874842 0.8983567
## 633 -49.5 0.977 4963.6 0.8874842 0.8983567
## 634 -30.1 0.719 5017.5 0.8854962 0.8586118
## 635 -26.9 0.735 5017.5 0.8798814 0.8586118
## 636 -46.2 1.264 5099.1 0.8798814 0.8586118
## 637 -46.2 1.327 5099.1 0.8874842 0.8983567
## 638 -42.0 4.120 5195.8 0.8798814 0.8586118
## 639 -46.2 1.281 5099.1 0.8854962 0.8983567
## 640 -42.0 4.021 5195.8 0.8798814 0.8983567
## 641 -42.0 4.021 5195.8 0.8798814 0.8586118
## 642 -42.0 4.120 5195.8 0.6868132 0.8983567
## 643 -46.2 1.266 5099.1 0.9229145 0.8983567
## 644 -46.2 1.291 5099.1 0.8874842 0.8983567
## 645 -40.3 0.846 4991.6 0.9229145 0.8586118
## 646 -46.2 1.344 5099.1 0.9271523 0.8983567
## 647 -34.8 0.651 5008.7 0.9198606 0.8586118
## 648 -46.2 1.291 5099.1 0.9198606 0.8586118
## 649 -42.0 4.286 5195.8 0.8798814 0.8983567
## 650 -46.2 1.266 5099.1 0.8874842 0.8586118
## 651 -46.2 1.344 5099.1 0.9074675 0.8586118
## 652 -31.4 0.873 5076.2 0.8854962 0.8983567
## 653 -31.4 0.879 5076.2 0.8854962 0.8983567
## 654 -42.0 4.120 5195.8 0.8874842 0.8983567
## 655 -42.0 4.153 5195.8 0.9198606 0.8983567
## 656 -42.0 4.021 5195.8 0.9229145 0.8983567
## 657 -46.2 1.266 5099.1 0.8798814 0.8586118
## 658 -40.0 0.683 5008.7 0.8798814 0.8586118
## 659 -46.2 1.344 5099.1 0.9271523 0.8983567
## 660 -47.1 1.405 5099.1 0.8854962 0.8586118
## 661 -46.2 1.313 5099.1 0.8874842 0.8983567
## 662 -46.2 1.299 5099.1 0.8798814 0.8586118
## 663 -46.2 1.281 5099.1 0.9074675 0.8983567
## 664 -46.2 1.344 5099.1 0.8798814 0.8983567
## 665 -46.2 1.266 5099.1 0.8874842 0.8586118
## 666 -46.2 1.344 5099.1 0.7666667 0.8983567
## 667 -42.0 4.153 5195.8 0.9074675 0.8983567
## 668 -42.0 4.021 5195.8 0.8854962 0.8983567
## 669 -50.8 1.048 4963.6 0.8798814 0.8586118
## 670 -47.1 1.405 5099.1 0.9229145 0.8586118
## 671 -46.2 1.291 5099.1 0.9229145 0.8586118
## 672 -47.1 1.405 5099.1 0.9229145 0.8983567
## 673 -46.2 1.334 5099.1 0.7666667 0.8983567
## 674 -47.1 1.410 5099.1 0.8851675 0.8983567
## 675 -46.2 1.344 5099.1 0.8960396 0.8983567
## 676 -42.0 4.120 5195.8 0.8798814 0.8983567
## 677 -47.1 1.365 5099.1 0.8874842 0.8983567
## 678 -46.2 1.281 5099.1 0.8798814 0.8983567
## 679 -46.2 1.281 5099.1 0.9229145 0.8586118
## 680 -46.2 1.266 5099.1 0.9271523 0.9007315
## 681 -42.0 4.191 5195.8 0.8851675 0.9007315
## 682 -31.4 0.861 5076.2 0.7666667 0.8983567
## 683 -46.2 1.291 5099.1 0.7666667 0.9007315
## 684 -39.8 0.702 4991.6 0.8874842 0.8586118
## 685 -42.0 4.120 5195.8 0.9074675 0.9007315
## 686 -46.2 1.291 5099.1 0.9229145 0.8983567
## 687 -46.2 1.313 5099.1 0.8798814 0.8586118
## 688 -42.0 4.021 5195.8 0.8798814 0.8983567
## 689 -46.2 1.291 5099.1 0.9229145 0.9007315
## 690 -46.2 1.327 5099.1 0.9229145 0.8983567
## 691 -42.0 4.120 5195.8 0.8798814 0.8983567
## 692 -47.1 1.405 5099.1 0.9229145 0.8586118
## 693 -40.3 0.899 4991.6 0.9074675 0.8983567
## 694 -47.1 1.365 5099.1 0.7666667 0.8983567
## 695 -46.2 1.291 5099.1 0.8874842 0.8586118
## 696 -34.8 0.651 5008.7 0.8854962 0.8983567
## 697 -47.1 1.405 5099.1 0.9229145 0.8586118
## 698 -42.0 4.076 5195.8 0.9229145 0.9007315
## 699 -30.1 0.716 5017.5 0.7666667 0.9007315
## 700 -42.0 4.191 5195.8 0.8874842 0.8983567
## 701 -46.2 1.299 5099.1 0.8798814 0.8983567
## 702 -46.2 1.281 5099.1 0.8874842 0.8586118
## 703 -46.2 1.250 5099.1 0.8798814 0.8586118
## 704 -46.2 1.291 5099.1 0.8798814 0.9007315
## 705 -46.2 1.299 5099.1 0.8798814 0.8586118
## 706 -38.3 0.904 4991.6 0.8798814 0.8586118
## 707 -46.2 1.313 5099.1 0.8854962 0.8983567
## 708 -46.2 1.313 5099.1 0.9229145 0.8586118
## 709 -42.0 4.076 5195.8 0.9229145 0.9007315
## 710 -46.2 1.250 5099.1 0.8798814 0.8586118
## 711 -42.0 4.153 5195.8 0.8798814 0.8983567
## 712 -42.0 4.076 5195.8 0.9271523 0.8983567
## 713 -46.2 1.334 5099.1 0.9229145 0.8586118
## 714 -30.1 0.720 5017.5 0.8851675 0.8983567
## 715 -42.0 4.120 5195.8 0.8854962 0.8983567
## 716 -46.2 1.334 5099.1 0.8874842 0.8586118
## 717 -42.0 4.120 5195.8 0.8798814 0.8586118
## 718 -46.2 1.334 5099.1 0.8874842 0.8983567
## 719 -46.2 1.264 5099.1 0.8854962 0.8586118
## 720 -46.2 1.344 5099.1 0.8874842 0.8983567
## 721 -42.0 4.120 5195.8 0.9074675 0.8586118
## 722 -46.2 1.281 5099.1 0.9229145 0.8983567
## 723 -46.2 1.313 5099.1 0.9074675 0.8983567
## 724 -42.0 4.076 5195.8 0.9198606 0.9007315
## 725 -49.5 0.987 4963.6 0.7666667 0.9007315
## 726 -31.4 0.883 5076.2 0.8798814 0.8983567
## 727 -46.2 1.264 5099.1 0.8851675 0.8983567
## 728 -46.2 1.299 5099.1 0.9229145 0.9007315
## 729 -34.8 0.654 5008.7 0.8854962 0.8586118
## 730 -47.1 1.405 5099.1 0.8874842 0.8983567
## 731 -42.0 4.021 5195.8 0.8854962 0.9007315
## 732 -46.2 1.244 5099.1 0.8874842 0.8586118
## 733 -46.2 1.334 5099.1 0.8798814 0.8983567
## 734 -31.4 0.879 5076.2 0.7666667 0.8983567
## 735 -42.0 4.153 5195.8 0.9074675 0.8983567
## 736 -47.1 1.365 5099.1 0.8854962 0.8983567
## 737 -39.8 0.727 4991.6 0.8798814 0.8983567
## 738 -47.1 1.453 5099.1 0.9229145 0.8983567
## 739 -40.8 1.266 5076.2 0.6868132 0.8586118
## 740 -31.4 0.883 5076.2 0.8798814 0.9007315
## 741 -26.9 0.740 5017.5 0.8798814 0.8983567
## 742 -46.2 1.281 5099.1 0.8854962 0.8983567
## 743 -46.2 1.327 5099.1 0.9229145 0.8983567
## 744 -46.2 1.334 5099.1 0.9074675 0.8586118
## 745 -46.2 1.327 5099.1 0.8798814 0.8586118
## 746 -46.2 1.299 5099.1 0.9271523 0.8983567
## 747 -46.2 1.281 5099.1 0.8874842 0.9007315
## 748 -46.2 1.344 5099.1 0.6868132 0.8586118
## 749 -46.2 1.344 5099.1 0.9229145 0.8983567
## 750 -40.3 0.884 4991.6 0.8854962 0.8586118
## 751 -46.2 1.299 5099.1 0.9074675 0.8983567
## 752 -46.2 1.327 5099.1 0.8798814 0.8586118
## 753 -40.8 1.262 5076.2 0.8032787 0.8586118
## 754 -46.2 1.291 5099.1 0.8798814 0.8586118
## 755 -47.1 1.410 5099.1 0.9229145 0.8983567
## 756 -47.1 1.405 5099.1 0.7666667 0.8983567
## 757 -42.0 4.021 5195.8 0.8798814 0.8586118
## 758 -42.0 4.120 5195.8 0.9074675 0.8983567
## 759 -42.0 4.153 5195.8 0.9198606 0.8983567
## 760 -46.2 1.281 5099.1 0.8854962 0.8983567
## 761 -40.0 0.692 5008.7 0.9074675 0.8983567
## 762 -47.1 1.405 5099.1 0.9229145 0.8983567
## 763 -42.0 4.076 5195.8 0.8798814 0.8983567
## 764 -31.4 0.884 5076.2 0.8798814 0.8983567
## 765 -46.2 1.250 5099.1 0.8960396 0.8983567
## 766 -29.8 0.750 5017.5 0.8960396 0.9007315
## 767 -46.2 1.327 5099.1 0.8874842 0.8983567
## 768 -34.8 0.653 5008.7 0.6868132 0.8586118
## 769 -50.8 1.050 4963.6 0.8874842 0.8983567
## 770 -29.8 0.773 5017.5 0.8798814 0.8586118
## 771 -50.8 1.048 4963.6 0.8798814 0.8586118
## 772 -46.2 1.334 5099.1 0.8874842 0.8586118
## 773 -46.2 1.291 5099.1 0.8854962 0.9007315
## 774 -46.2 1.334 5099.1 0.8798814 0.8586118
## 775 -34.6 0.644 5008.7 0.8798814 0.8983567
## 776 -26.9 0.742 5017.5 0.6868132 0.8586118
## 777 -26.9 0.740 5017.5 0.9074675 0.8983567
## 778 -47.1 1.365 5099.1 0.7666667 0.8983567
## 779 -46.2 1.259 5099.1 0.6868132 0.8586118
## 780 -40.3 0.884 4991.6 0.8874842 0.8983567
## 781 -29.8 0.788 5017.5 0.7666667 0.8983567
## 782 -26.9 0.728 5017.5 0.8960396 0.8983567
## 783 -49.5 1.016 4963.6 0.8874842 0.9007315
## 784 -42.0 4.153 5195.8 0.9229145 0.8983567
## 785 -49.5 0.977 4963.6 0.8874842 0.8983567
## 786 -46.2 1.281 5099.1 0.8874842 0.8983567
## 787 -29.8 0.739 5017.5 0.7666667 0.8586118
## 788 -46.2 1.244 5099.1 0.8854962 0.8983567
## 789 -26.9 0.740 5017.5 0.9198606 0.8983567
## 790 -46.2 1.299 5099.1 0.8854962 0.8823529
## 791 -34.6 0.642 5008.7 0.8960396 0.8983567
## 792 -46.2 1.334 5099.1 0.9229145 0.8983567
## 793 -42.0 4.191 5195.8 0.9198606 0.8983567
## 794 -37.5 0.884 4963.6 0.9074675 0.9007315
## 795 -42.0 4.153 5195.8 0.8854962 0.8983567
## 796 -46.2 1.334 5099.1 0.9229145 0.9007315
## 797 -31.4 0.838 5076.2 0.8854962 0.8983567
## 798 -42.0 4.191 5195.8 0.9229145 0.8983567
## 799 -34.8 0.654 5008.7 0.7666667 0.9007315
## 800 -42.0 4.021 5195.8 0.8874842 0.8983567
## 801 -40.8 1.260 5076.2 0.8798814 0.9007315
## 802 -31.4 0.884 5076.2 0.8851675 0.8983567
## 803 -46.2 1.250 5099.1 0.9229145 0.8586118
## 804 -46.2 1.266 5099.1 0.6868132 0.8586118
## 805 -46.2 1.281 5099.1 0.8874842 0.8983567
## 806 -47.1 1.435 5099.1 0.8874842 0.8983567
## 807 -49.5 1.016 4963.6 0.6868132 0.8586118
## 808 -38.3 0.900 4991.6 0.6868132 0.8586118
## 809 -42.0 4.076 5195.8 0.9074675 0.9007315
## 810 -30.1 0.716 5017.5 0.7666667 0.8983567
## 811 -42.0 4.120 5195.8 0.9229145 0.8983567
## 812 -47.1 1.405 5099.1 0.8798814 0.8983567
## 813 -46.2 1.281 5099.1 0.9229145 0.8586118
## 814 -46.2 1.281 5099.1 0.9229145 0.8586118
## 815 -38.3 0.898 4991.6 0.8798814 0.8983567
## 816 -46.2 1.244 5099.1 0.9074675 0.8983567
## 817 -42.0 4.120 5195.8 0.8798814 0.8586118
## 818 -42.0 4.153 5195.8 0.8874842 0.9007315
## 819 -26.9 0.740 5017.5 0.8798814 0.8983567
## 820 -36.1 4.963 5228.1 0.8798814 0.9007315
## 821 -42.0 4.021 5195.8 0.8874842 0.8983567
## 822 -46.2 1.313 5099.1 0.9229145 0.8983567
## 823 -50.0 1.574 5099.1 0.9074675 0.8983567
## 824 -36.1 4.964 5228.1 0.8798814 0.8586118
## 825 -46.2 1.250 5099.1 0.9198606 0.9007315
## 826 -36.1 4.964 5228.1 0.8874842 0.8983567
## 827 -46.2 1.250 5099.1 0.8798814 0.8983567
## 828 -36.1 4.966 5228.1 0.9229145 0.8983567
## 829 -36.1 4.964 5228.1 0.8798814 0.8983567
## 830 -31.4 0.869 5076.2 0.8874842 0.8586118
## 831 -36.1 4.966 5228.1 0.8854962 0.8586118
## 832 -36.4 4.857 5191.0 0.8798814 0.9007315
## 833 -42.7 4.957 5228.1 0.9198606 0.8983567
## 834 -36.4 4.859 5191.0 0.9229145 0.8983567
## 835 -47.1 1.405 5099.1 0.8854962 0.8586118
## 836 -36.4 4.855 5191.0 0.8854962 0.8983567
## 837 -41.8 4.959 5228.1 0.8798814 0.9007315
## 838 -42.7 4.962 5228.1 0.9229145 0.8983567
## 839 -41.8 4.959 5228.1 0.8854962 0.8586118
## 840 -36.4 4.864 5191.0 0.8854962 0.8983567
## 841 -47.1 1.405 5099.1 0.8854962 0.8983567
## 842 -47.1 1.405 5099.1 0.9229145 0.8983567
## 843 -36.4 4.857 5191.0 0.8960396 0.9007315
## 844 -47.1 1.479 5099.1 0.9074675 0.8983567
## 845 -47.1 1.405 5099.1 0.9229145 0.8983567
## 846 -47.1 1.405 5099.1 0.9198606 0.8983567
## 847 -46.2 1.250 5099.1 0.8798814 0.8983567
## 848 -46.2 1.313 5099.1 0.9271523 0.8983567
## 849 -42.7 4.963 5228.1 0.9229145 0.8586118
## 850 -46.2 1.313 5099.1 0.9229145 0.8586118
## 851 -41.8 4.959 5228.1 0.9229145 0.8586118
## 852 -46.2 1.313 5099.1 0.9229145 0.8983567
## 853 -47.1 1.400 5099.1 0.9074675 0.8983567
## 854 -46.2 1.250 5099.1 0.9229145 0.8983567
## 855 -36.1 4.964 5228.1 0.8854962 0.8586118
## 856 -46.2 1.250 5099.1 0.9074675 0.8586118
## 857 -36.4 4.855 5191.0 0.9229145 0.8983567
## 858 -42.7 4.957 5228.1 0.8854962 0.8586118
## 859 -47.1 1.405 5099.1 0.9074675 0.8983567
## 860 -47.1 1.405 5099.1 0.8854962 0.9007315
## 861 -36.4 4.864 5191.0 0.9074675 0.8983567
## 862 -46.2 1.250 5099.1 0.9229145 0.8586118
## 863 -46.2 1.313 5099.1 0.8874842 0.8983567
## 864 -42.7 4.963 5228.1 0.9198606 0.9007315
## 865 -36.4 4.857 5191.0 0.8798814 0.8983567
## 866 -36.4 4.859 5191.0 0.8798814 0.8586118
## 867 -42.7 4.963 5228.1 0.9229145 0.8983567
## 868 -47.1 1.405 5099.1 0.8874842 0.8586118
## 869 -47.1 1.405 5099.1 0.9229145 0.8586118
## 870 -36.4 4.859 5191.0 0.8798814 0.8983567
## 871 -42.7 4.957 5228.1 0.9229145 0.8586118
## 872 -47.1 1.479 5099.1 0.8854962 0.8586118
## 873 -46.2 1.250 5099.1 0.9074675 0.8983567
## 874 -47.1 1.405 5099.1 0.9074675 0.8586118
## 875 -36.4 4.864 5191.0 0.8798814 0.8983567
## 876 -42.7 4.957 5228.1 0.8798814 0.8586118
## 877 -42.7 4.957 5228.1 0.9229145 0.8586118
## 878 -46.2 1.354 5099.1 0.8798814 0.8586118
## 879 -36.4 4.855 5191.0 0.8851675 0.8983567
## 880 -36.4 4.864 5191.0 0.9229145 0.8983567
## 881 -36.1 4.966 5228.1 0.8798814 0.8983567
## 882 -36.4 4.864 5191.0 0.8874842 0.9007315
## 883 -47.1 1.405 5099.1 0.9074675 0.9007315
## 884 -36.4 4.857 5191.0 0.8798814 0.9007315
## 885 -41.8 4.959 5228.1 0.8798814 0.8586118
## 886 -42.7 4.959 5228.1 0.8854962 0.8586118
## 887 -36.4 4.857 5191.0 0.8798814 0.8983567
## 888 -36.4 4.857 5191.0 0.9271523 0.8983567
## 889 -41.8 4.967 5228.1 0.8854962 0.8983567
## 890 -42.0 4.021 5195.8 0.9074675 0.8983567
## 891 -36.4 4.857 5191.0 0.9074675 0.8983567
## 892 -40.8 1.268 5076.2 0.9074675 0.8586118
## 893 -46.2 1.313 5099.1 0.9229145 0.8983567
## 894 -41.8 4.967 5228.1 0.9074675 0.8983567
## 895 -36.4 4.859 5191.0 0.8874842 0.9007315
## 896 -37.5 0.878 4963.6 0.8874842 0.8586118
## 897 -36.4 4.857 5191.0 0.9229145 0.8983567
## 898 -46.2 1.313 5099.1 0.9229145 0.8983567
## 899 -47.1 1.405 5099.1 0.9074675 0.8983567
## 900 -36.1 4.964 5228.1 0.8798814 0.8983567
## 901 -42.7 4.959 5228.1 0.8854962 0.8983567
## 902 -47.1 1.405 5099.1 0.8854962 0.8983567
## 903 -47.1 1.405 5099.1 0.8798814 0.8983567
## 904 -36.4 4.858 5191.0 0.8874842 0.8983567
## 905 -41.8 4.959 5228.1 0.9229145 0.8983567
## 906 -41.8 4.967 5228.1 0.9271523 0.8983567
## 907 -36.1 4.963 5228.1 0.8798814 0.8983567
## 908 -41.8 4.967 5228.1 0.8960396 0.8983567
## 909 -36.1 4.964 5228.1 0.8851675 0.8983567
## 910 -36.4 4.859 5191.0 0.9074675 0.9007315
## 911 -36.4 4.859 5191.0 0.8854962 0.8983567
## 912 -36.4 4.864 5191.0 0.8960396 0.8983567
## 913 -41.8 4.959 5228.1 0.9229145 0.8983567
## 914 -41.8 4.967 5228.1 0.9229145 0.8983567
## 915 -42.7 4.962 5228.1 0.8874842 0.8586118
## 916 -36.1 4.964 5228.1 0.8854962 0.8983567
## 917 -36.4 4.859 5191.0 0.9229145 0.8983567
## 918 -36.1 4.964 5228.1 0.9198606 0.8983567
## 919 -47.1 1.405 5099.1 0.8854962 0.8586118
## 920 -41.8 4.959 5228.1 0.8874842 0.8983567
## 921 -42.7 4.962 5228.1 0.9229145 0.8983567
## 922 -41.8 4.967 5228.1 0.9229145 0.8983567
## 923 -36.4 4.855 5191.0 0.9229145 0.8983567
## 924 -41.8 4.967 5228.1 0.8874842 0.8983567
## 925 -46.2 1.250 5099.1 0.8854962 0.8586118
## 926 -42.7 4.959 5228.1 0.9229145 0.8983567
## 927 -42.0 4.021 5195.8 0.8798814 0.8586118
## 928 -47.1 1.405 5099.1 0.9229145 0.9007315
## 929 -36.1 4.963 5228.1 0.9229145 0.8983567
## 930 -42.7 4.962 5228.1 0.9229145 0.8586118
## 931 -41.8 4.947 5228.1 0.9074675 0.8983567
## 932 -36.4 4.859 5191.0 0.9229145 0.8983567
## 933 -36.4 4.864 5191.0 0.9198606 0.8983567
## 934 -42.0 4.021 5195.8 0.8854962 0.8586118
## 935 -47.1 1.405 5099.1 0.9229145 0.8983567
## 936 -46.2 1.313 5099.1 0.9229145 0.8983567
## 937 -36.4 4.859 5191.0 0.8874842 0.8983567
## 938 -42.7 4.960 5228.1 0.8874842 0.8983567
## 939 -42.7 4.957 5228.1 0.9229145 0.8983567
## 940 -36.1 4.966 5228.1 0.8798814 0.8983567
## 941 -42.7 4.957 5228.1 0.8798814 0.8983567
## 942 -36.4 4.864 5191.0 0.8874842 0.8586118
## 943 -41.8 4.967 5228.1 0.7666667 0.8983567
## 944 -36.1 4.963 5228.1 0.7666667 0.8983567
## 945 -42.7 4.957 5228.1 0.8874842 0.9007315
## 946 -36.4 4.864 5191.0 0.8798814 0.8983567
## 947 -41.8 4.967 5228.1 0.9229145 0.8983567
## 948 -42.7 4.957 5228.1 0.8798814 0.8983567
## 949 -41.8 4.967 5228.1 0.8798814 0.9007315
## 950 -42.7 4.957 5228.1 0.8874842 0.9007315
## 951 -42.7 4.957 5228.1 0.9229145 0.8983567
## 952 -46.2 1.313 5099.1 0.9229145 0.8983567
## 953 -36.1 4.963 5228.1 0.9074675 0.8983567
## 954 -47.1 1.405 5099.1 0.6868132 0.8586118
## 955 -41.8 4.959 5228.1 0.9229145 0.8983567
## 956 -36.4 4.859 5191.0 0.8874842 0.9007315
## 957 -46.2 1.259 5099.1 0.8798814 0.8983567
## 958 -42.7 4.959 5228.1 0.9229145 0.8983567
## 959 -36.1 4.963 5228.1 0.8798814 0.8586118
## 960 -42.7 4.957 5228.1 0.9198606 0.8983567
## 961 -36.4 4.864 5191.0 0.9229145 0.9007315
## 962 -36.1 4.963 5228.1 0.8854962 0.8586118
## 963 -47.1 1.405 5099.1 0.8798814 0.9007315
## 964 -46.2 1.259 5099.1 0.8798814 0.8983567
## 965 -42.7 4.963 5228.1 0.6868132 0.8586118
## 966 -36.1 4.964 5228.1 0.8854962 0.9007315
## 967 -42.0 4.021 5195.8 0.9229145 0.8983567
## 968 -42.7 4.962 5228.1 0.7666667 0.8983567
## 969 -36.4 4.857 5191.0 0.8798814 0.8586118
## 970 -36.1 4.963 5228.1 0.8854962 0.9007315
## 971 -42.7 4.957 5228.1 0.8798814 0.8586118
## 972 -42.7 4.963 5228.1 0.8874842 0.8983567
## 973 -41.8 4.967 5228.1 0.8798814 0.8983567
## 974 -37.5 0.878 4963.6 0.8874842 0.8586118
## 975 -36.4 4.864 5191.0 0.8854962 0.8983567
## 976 -36.4 4.857 5191.0 0.8960396 0.8983567
## 977 -42.0 4.021 5195.8 0.8798814 0.8586118
## 978 -42.7 4.962 5228.1 0.8854962 0.8983567
## 979 -41.8 4.960 5228.1 0.8854962 0.9007315
## 980 -42.7 4.963 5228.1 0.8798814 0.8983567
## 981 -36.4 4.857 5191.0 0.8798814 0.9007315
## 982 -36.4 4.864 5191.0 0.8874842 0.8983567
## 983 -47.1 1.405 5099.1 0.8798814 0.8586118
## 984 -41.8 4.959 5228.1 0.6868132 0.8586118
## 985 -41.8 4.959 5228.1 0.9074675 0.8983567
## 986 -47.1 1.405 5099.1 0.8798814 0.8586118
## 987 -36.4 4.864 5191.0 0.8854962 0.8983567
## 988 -31.4 0.881 5076.2 0.8854962 0.8983567
## 989 -36.4 4.859 5191.0 0.8798814 0.9007315
## 990 -46.2 1.250 5099.1 0.9229145 0.8983567
## 991 -41.8 4.959 5228.1 0.8854962 0.8586118
## 992 -42.0 4.021 5195.8 0.9229145 0.9007315
## 993 -36.1 4.966 5228.1 0.8798814 0.8983567
## 994 -36.4 4.855 5191.0 0.9271523 0.8983567
## 995 -46.2 1.250 5099.1 0.9198606 0.8983567
## 996 -41.8 4.959 5228.1 0.9198606 0.8586118
## 997 -46.2 1.313 5099.1 0.9229145 0.8983567
## 998 -46.2 1.250 5099.1 0.9074675 0.8983567
## 999 -36.4 4.857 5191.0 0.8854962 0.8586118
## 1000 -47.1 1.405 5099.1 0.8874842 0.8983567
## 1001 -41.8 4.967 5228.1 0.8851675 0.8983567
## 1002 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1003 -42.7 4.957 5228.1 0.9074675 0.8586118
## 1004 -36.4 4.855 5191.0 0.8032787 0.8823529
## 1005 -40.8 1.268 5076.2 0.9074675 0.8586118
## 1006 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1007 -46.2 1.313 5099.1 0.9271523 0.9007315
## 1008 -36.4 4.864 5191.0 0.9229145 0.8586118
## 1009 -37.5 0.883 4963.6 0.7666667 0.8983567
## 1010 -47.1 1.405 5099.1 0.8854962 0.8586118
## 1011 -42.7 4.962 5228.1 0.9271523 0.8983567
## 1012 -42.7 4.962 5228.1 0.7666667 0.8586118
## 1013 -42.7 4.957 5228.1 0.8854962 0.8586118
## 1014 -36.1 4.964 5228.1 0.9271523 0.8983567
## 1015 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1016 -47.1 1.405 5099.1 0.8798814 0.8586118
## 1017 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1018 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1019 -46.2 1.250 5099.1 0.8854962 0.8586118
## 1020 -46.2 1.250 5099.1 0.8874842 0.9007315
## 1021 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1022 -42.7 4.962 5228.1 0.8851675 0.8983567
## 1023 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1024 -41.8 4.959 5228.1 0.9229145 0.8823529
## 1025 -42.7 4.959 5228.1 0.8854962 0.8586118
## 1026 -41.8 4.959 5228.1 0.9271523 0.8983567
## 1027 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1028 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1029 -42.7 4.962 5228.1 0.8851675 0.8586118
## 1030 -42.7 4.957 5228.1 0.8798814 0.8586118
## 1031 -36.1 4.964 5228.1 0.8854962 0.8586118
## 1032 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1033 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1034 -36.1 4.963 5228.1 0.8854962 0.9007315
## 1035 -31.4 0.881 5076.2 0.7666667 0.8983567
## 1036 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1037 -42.7 4.963 5228.1 0.8960396 0.8983567
## 1038 -42.7 4.963 5228.1 0.7666667 0.8983567
## 1039 -36.4 4.864 5191.0 0.9074675 0.8983567
## 1040 -39.8 0.748 4991.6 0.7666667 0.9007315
## 1041 -41.8 4.959 5228.1 0.9229145 0.9007315
## 1042 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1043 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1044 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1045 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1046 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1047 -46.2 1.313 5099.1 0.8851675 0.8983567
## 1048 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1049 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1050 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1051 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1052 -47.1 1.405 5099.1 0.8854962 0.8586118
## 1053 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1054 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1055 -42.7 4.963 5228.1 0.8854962 0.8983567
## 1056 -41.8 4.967 5228.1 0.8851675 0.8983567
## 1057 -47.1 1.405 5099.1 0.9074675 0.8983567
## 1058 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1059 -41.8 4.959 5228.1 0.8798814 0.9007315
## 1060 -47.1 1.405 5099.1 0.9074675 0.8983567
## 1061 -42.7 4.959 5228.1 0.9229145 0.8983567
## 1062 -40.8 1.268 5076.2 0.8854962 0.8586118
## 1063 -40.8 1.260 5076.2 0.8854962 0.8586118
## 1064 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1065 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1066 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1067 -36.4 4.859 5191.0 0.9271523 0.8983567
## 1068 -42.7 4.963 5228.1 0.9271523 0.8983567
## 1069 -36.1 4.966 5228.1 0.8960396 0.8983567
## 1070 -31.4 0.881 5076.2 0.8798814 0.8586118
## 1071 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1072 -36.4 4.857 5191.0 0.8798814 0.8983567
## 1073 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1074 -36.1 4.964 5228.1 0.8854962 0.8586118
## 1075 -41.8 4.967 5228.1 0.9271523 0.8983567
## 1076 -42.7 4.962 5228.1 0.8960396 0.8586118
## 1077 -36.1 4.966 5228.1 0.9198606 0.8983567
## 1078 -47.1 1.405 5099.1 0.8798814 0.8983567
## 1079 -42.0 4.021 5195.8 0.9229145 0.8586118
## 1080 -31.4 0.881 5076.2 0.8874842 0.8586118
## 1081 -47.1 1.405 5099.1 0.7666667 0.8983567
## 1082 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1083 -36.1 4.964 5228.1 0.8854962 0.8586118
## 1084 -41.8 4.959 5228.1 0.9074675 0.8983567
## 1085 -47.1 1.405 5099.1 0.9074675 0.8983567
## 1086 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1087 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1088 -46.2 1.259 5099.1 0.8798814 0.8983567
## 1089 -41.8 4.967 5228.1 0.9198606 0.8586118
## 1090 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1091 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1092 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1093 -36.1 4.963 5228.1 0.8854962 0.8983567
## 1094 -47.1 1.405 5099.1 0.9074675 0.8983567
## 1095 -42.7 4.963 5228.1 0.8798814 0.8983567
## 1096 -41.8 4.967 5228.1 0.9074675 0.8983567
## 1097 -36.1 4.964 5228.1 0.8798814 0.8586118
## 1098 -42.0 4.021 5195.8 0.8874842 0.8586118
## 1099 -46.2 1.313 5099.1 0.9229145 0.8586118
## 1100 -31.4 0.881 5076.2 0.6868132 0.8586118
## 1101 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1102 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1103 -47.1 1.405 5099.1 0.8798814 0.8586118
## 1104 -42.7 4.962 5228.1 0.8798814 0.9007315
## 1105 -41.8 4.967 5228.1 0.8798814 0.8983567
## 1106 -42.7 4.957 5228.1 0.8798814 0.8586118
## 1107 -36.4 4.859 5191.0 0.9074675 0.8983567
## 1108 -36.4 4.855 5191.0 0.8874842 0.8983567
## 1109 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1110 -36.4 4.855 5191.0 0.9271523 0.8983567
## 1111 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1112 -36.4 4.859 5191.0 0.8854962 0.8983567
## 1113 -36.4 4.859 5191.0 0.8798814 0.8983567
## 1114 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1115 -36.4 4.857 5191.0 0.9229145 0.9007315
## 1116 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1117 -36.1 4.963 5228.1 0.7666667 0.8983567
## 1118 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1119 -42.0 4.021 5195.8 0.8960396 0.8983567
## 1120 -47.1 1.405 5099.1 0.9229145 0.9007315
## 1121 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1122 -36.4 4.857 5191.0 0.9198606 0.8983567
## 1123 -41.8 4.947 5228.1 0.9271523 0.8983567
## 1124 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1125 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1126 -42.7 4.957 5228.1 0.9229145 0.8983567
## 1127 -36.4 4.864 5191.0 0.9229145 0.8586118
## 1128 -36.4 4.857 5191.0 0.9271523 0.8983567
## 1129 -46.2 1.250 5099.1 0.8874842 0.8586118
## 1130 -42.7 4.962 5228.1 0.9198606 0.8983567
## 1131 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1132 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1133 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1134 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1135 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1136 -42.0 4.021 5195.8 0.8854962 0.8586118
## 1137 -41.8 4.947 5228.1 0.9074675 0.8983567
## 1138 -36.1 4.965 5228.1 0.8854962 0.9007315
## 1139 -46.2 1.250 5099.1 0.9198606 0.8983567
## 1140 -42.7 4.962 5228.1 0.8798814 0.8586118
## 1141 -42.7 4.962 5228.1 0.7666667 0.8983567
## 1142 -36.1 4.963 5228.1 0.8960396 0.8983567
## 1143 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1144 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1145 -42.7 4.963 5228.1 0.9229145 0.9007315
## 1146 -42.0 4.021 5195.8 0.8854962 0.9007315
## 1147 -42.7 4.963 5228.1 0.8874842 0.8586118
## 1148 -36.4 4.855 5191.0 0.8798814 0.8586118
## 1149 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1150 -42.0 4.021 5195.8 0.9074675 0.8983567
## 1151 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1152 -41.8 4.967 5228.1 0.8798814 0.8983567
## 1153 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1154 -30.1 0.718 5017.5 0.9229145 0.8983567
## 1155 -38.3 0.905 4991.6 0.8032787 0.8983567
## 1156 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1157 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1158 -47.1 1.405 5099.1 0.8874842 0.8983567
## 1159 -36.1 4.963 5228.1 0.8854962 0.8586118
## 1160 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1161 -41.8 4.967 5228.1 0.9229145 0.8586118
## 1162 -46.2 1.313 5099.1 0.9271523 0.9007315
## 1163 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1164 -47.1 1.405 5099.1 0.9271523 0.8983567
## 1165 -46.2 1.250 5099.1 0.8874842 0.8983567
## 1166 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1167 -36.4 4.857 5191.0 0.9271523 0.8983567
## 1168 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1169 -36.4 4.859 5191.0 0.8960396 0.9007315
## 1170 -41.8 4.959 5228.1 0.8874842 0.8983567
## 1171 -47.1 1.405 5099.1 0.6868132 0.8586118
## 1172 -36.1 4.963 5228.1 0.8798814 0.9007315
## 1173 -42.0 4.021 5195.8 0.8854962 0.8983567
## 1174 -36.4 4.859 5191.0 0.9074675 0.9007315
## 1175 -46.2 1.250 5099.1 0.8854962 0.9007315
## 1176 -36.1 4.964 5228.1 0.8874842 0.8983567
## 1177 -42.0 4.021 5195.8 0.8854962 0.9007315
## 1178 -47.1 1.405 5099.1 0.9074675 0.8983567
## 1179 -41.8 4.967 5228.1 0.8798814 0.9007315
## 1180 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1181 -46.2 1.313 5099.1 0.8798814 0.8586118
## 1182 -36.1 4.963 5228.1 0.8854962 0.8983567
## 1183 -42.0 4.021 5195.8 0.9198606 0.8983567
## 1184 -36.4 4.857 5191.0 0.8874842 0.8983567
## 1185 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1186 -36.4 4.855 5191.0 0.8851675 0.8983567
## 1187 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1188 -41.8 4.947 5228.1 0.8798814 0.8586118
## 1189 -41.8 4.967 5228.1 0.8874842 0.9007315
## 1190 -42.7 4.957 5228.1 0.8854962 0.8586118
## 1191 -42.7 4.963 5228.1 0.6868132 0.8586118
## 1192 -42.0 4.021 5195.8 0.9074675 0.8983567
## 1193 -38.3 0.905 4991.6 0.9271523 0.8586118
## 1194 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1195 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1196 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1197 -41.8 4.967 5228.1 0.8798814 0.8983567
## 1198 -33.0 0.714 5023.5 0.8960396 0.8983567
## 1199 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1200 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1201 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1202 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1203 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1204 -49.5 1.029 4963.6 0.6868132 0.8586118
## 1205 -47.1 1.405 5099.1 0.9074675 0.9007315
## 1206 -47.1 1.405 5099.1 0.9229145 0.8586118
## 1207 -36.4 4.857 5191.0 0.8798814 0.9007315
## 1208 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1209 -42.7 4.962 5228.1 0.9271523 0.9007315
## 1210 -36.4 4.864 5191.0 0.8874842 0.8983567
## 1211 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1212 -42.0 4.021 5195.8 0.8854962 0.8983567
## 1213 -40.8 1.268 5076.2 0.8798814 0.8586118
## 1214 -46.2 1.313 5099.1 0.8874842 0.8983567
## 1215 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1216 -34.8 0.649 5008.7 0.8874842 0.8586118
## 1217 -41.8 4.967 5228.1 0.8854962 0.9007315
## 1218 -42.7 4.963 5228.1 0.6868132 0.8586118
## 1219 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1220 -38.3 0.890 4991.6 0.8798814 0.8983567
## 1221 -42.7 4.957 5228.1 0.8874842 0.8983567
## 1222 -50.0 1.531 5099.1 0.8798814 0.8983567
## 1223 -36.1 4.966 5228.1 0.8854962 0.9007315
## 1224 -47.1 1.405 5099.1 0.8798814 0.8983567
## 1225 -36.4 4.855 5191.0 0.9229145 0.8586118
## 1226 -42.7 4.957 5228.1 0.8874842 0.8586118
## 1227 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1228 -50.0 1.531 5099.1 0.8960396 0.8983567
## 1229 -41.8 4.959 5228.1 0.8874842 0.8823529
## 1230 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1231 -31.4 0.869 5076.2 0.8851675 0.8983567
## 1232 -42.7 4.959 5228.1 0.8798814 0.8586118
## 1233 -36.1 4.964 5228.1 0.8854962 0.8586118
## 1234 -34.6 0.644 5008.7 0.7666667 0.8983567
## 1235 -42.7 4.963 5228.1 0.8798814 0.8983567
## 1236 -46.2 1.250 5099.1 0.9074675 0.8586118
## 1237 -36.4 4.857 5191.0 0.9198606 0.8983567
## 1238 -47.1 1.405 5099.1 0.9271523 0.8983567
## 1239 -42.7 4.957 5228.1 0.8874842 0.9007315
## 1240 -46.2 1.250 5099.1 0.8874842 0.8586118
## 1241 -46.2 1.313 5099.1 0.8874842 0.8983567
## 1242 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1243 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1244 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1245 -50.8 1.040 4963.6 0.8874842 0.8983567
## 1246 -50.0 1.726 5099.1 0.8854962 0.8586118
## 1247 -41.8 4.947 5228.1 0.9229145 0.8586118
## 1248 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1249 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1250 -36.1 4.963 5228.1 0.7666667 0.8983567
## 1251 -36.4 4.864 5191.0 0.8854962 0.8983567
## 1252 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1253 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1254 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1255 -47.1 1.405 5099.1 0.9271523 0.8983567
## 1256 -42.7 4.963 5228.1 0.9271523 0.9007315
## 1257 -42.7 4.963 5228.1 0.8798814 0.9007315
## 1258 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1259 -42.0 4.021 5195.8 0.8798814 0.9007315
## 1260 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1261 -36.1 4.964 5228.1 0.8960396 0.8983567
## 1262 -36.4 4.864 5191.0 0.9271523 0.8983567
## 1263 -36.1 4.964 5228.1 0.8874842 0.8983567
## 1264 -42.7 4.963 5228.1 0.9229145 0.9007315
## 1265 -42.7 4.963 5228.1 0.8874842 0.8983567
## 1266 -42.7 4.957 5228.1 0.8960396 0.9007315
## 1267 -42.0 4.021 5195.8 0.8798814 0.8586118
## 1268 -41.8 4.947 5228.1 0.9229145 0.8983567
## 1269 -36.4 4.859 5191.0 0.6868132 0.8586118
## 1270 -42.7 4.960 5228.1 0.9074675 0.8586118
## 1271 -40.8 1.268 5076.2 0.8798814 0.8586118
## 1272 -42.0 4.191 5195.8 0.7666667 0.9007315
## 1273 -36.1 4.963 5228.1 0.8798814 0.9007315
## 1274 -41.8 4.967 5228.1 0.8851675 0.8983567
## 1275 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1276 -46.2 1.313 5099.1 0.9229145 0.8586118
## 1277 -42.0 4.021 5195.8 0.8854962 0.8586118
## 1278 -41.8 4.959 5228.1 0.8960396 0.8983567
## 1279 -36.4 4.855 5191.0 0.8851675 0.8983567
## 1280 -36.4 4.864 5191.0 0.8798814 0.9007315
## 1281 -31.4 0.881 5076.2 0.8798814 0.8586118
## 1282 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1283 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1284 -36.1 4.966 5228.1 0.8874842 0.8983567
## 1285 -42.7 4.959 5228.1 0.9229145 0.8983567
## 1286 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1287 -36.1 4.966 5228.1 0.8854962 0.8586118
## 1288 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1289 -36.1 4.964 5228.1 0.8798814 0.8983567
## 1290 -36.1 4.963 5228.1 0.7666667 0.8983567
## 1291 -36.4 4.857 5191.0 0.9198606 0.8586118
## 1292 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1293 -46.2 1.244 5099.1 0.9074675 0.8983567
## 1294 -42.7 4.957 5228.1 0.8874842 0.8586118
## 1295 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1296 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1297 -42.0 4.021 5195.8 0.8854962 0.8983567
## 1298 -41.8 4.865 5228.1 0.9271523 0.8983567
## 1299 -47.1 1.405 5099.1 0.8798814 0.9007315
## 1300 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1301 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1302 -36.1 4.966 5228.1 0.8874842 0.8983567
## 1303 -41.8 4.959 5228.1 0.9074675 0.9007315
## 1304 -40.8 1.266 5076.2 0.9074675 0.8983567
## 1305 -42.0 4.021 5195.8 0.8854962 0.8586118
## 1306 -47.1 1.400 5099.1 0.8032787 0.8983567
## 1307 -46.2 1.250 5099.1 0.8874842 0.8983567
## 1308 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1309 -36.4 4.857 5191.0 0.9074675 0.8983567
## 1310 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1311 -39.8 0.720 4991.6 0.8854962 0.8586118
## 1312 -42.0 4.021 5195.8 0.8854962 0.8586118
## 1313 -36.1 4.963 5228.1 0.8032787 0.8983567
## 1314 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1315 -31.4 0.881 5076.2 0.7666667 0.8983567
## 1316 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1317 -36.1 4.964 5228.1 0.8798814 0.8586118
## 1318 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1319 -40.8 1.268 5076.2 0.9198606 0.8586118
## 1320 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1321 -31.4 0.881 5076.2 0.8854962 0.8586118
## 1322 -36.4 4.859 5191.0 0.9229145 0.8586118
## 1323 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1324 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1325 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1326 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1327 -42.7 4.957 5228.1 0.9229145 0.9007315
## 1328 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1329 -42.7 4.960 5228.1 0.8798814 0.8983567
## 1330 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1331 -31.4 0.881 5076.2 0.8798814 0.8586118
## 1332 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1333 -42.7 4.962 5228.1 0.9229145 0.8586118
## 1334 -36.4 4.864 5191.0 0.8874842 0.8983567
## 1335 -31.4 0.869 5076.2 0.9229145 0.8983567
## 1336 -36.4 4.864 5191.0 0.9074675 0.8983567
## 1337 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1338 -41.8 4.967 5228.1 0.8798814 0.9007315
## 1339 -46.2 1.250 5099.1 0.8874842 0.9007315
## 1340 -36.4 4.859 5191.0 0.8798814 0.9007315
## 1341 -42.7 4.957 5228.1 0.8798814 0.8586118
## 1342 -41.8 4.959 5228.1 0.8874842 0.8983567
## 1343 -47.1 1.405 5099.1 0.9229145 0.8823529
## 1344 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1345 -40.3 0.889 4991.6 0.8798814 0.8983567
## 1346 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1347 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1348 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1349 -31.4 0.849 5076.2 0.8798814 0.8983567
## 1350 -42.7 4.962 5228.1 0.8854962 0.9007315
## 1351 -36.4 4.855 5191.0 0.8798814 0.8586118
## 1352 -41.8 4.959 5228.1 0.7666667 0.8983567
## 1353 -42.0 4.191 5195.8 0.9198606 0.8983567
## 1354 -47.1 1.392 5099.1 0.8798814 0.9007315
## 1355 -36.4 4.855 5191.0 0.9229145 0.8586118
## 1356 -40.8 1.268 5076.2 0.6868132 0.8586118
## 1357 -33.6 1.048 5076.2 0.8798814 0.8586118
## 1358 -36.1 4.963 5228.1 0.8874842 0.8983567
## 1359 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1360 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1361 -36.4 4.859 5191.0 0.8854962 0.8983567
## 1362 -36.4 4.857 5191.0 0.8798814 0.9007315
## 1363 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1364 -36.4 4.859 5191.0 0.7666667 0.8983567
## 1365 -36.1 4.966 5228.1 0.8854962 0.8586118
## 1366 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1367 -41.8 4.967 5228.1 0.9074675 0.8983567
## 1368 -41.8 4.967 5228.1 0.8960396 0.8983567
## 1369 -36.1 4.966 5228.1 0.8854962 0.8586118
## 1370 -36.1 4.965 5228.1 0.9198606 0.8983567
## 1371 -42.7 4.957 5228.1 0.9229145 0.8983567
## 1372 -47.1 1.405 5099.1 0.8854962 0.8586118
## 1373 -42.7 4.960 5228.1 0.8874842 0.8983567
## 1374 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1375 -36.4 4.855 5191.0 0.8798814 0.9007315
## 1376 -36.4 4.857 5191.0 0.8854962 0.9007315
## 1377 -46.2 1.244 5099.1 0.8874842 0.9007315
## 1378 -42.0 4.021 5195.8 0.9074675 0.8586118
## 1379 -42.7 4.963 5228.1 0.8798814 0.8586118
## 1380 -42.7 4.960 5228.1 0.8798814 0.8983567
## 1381 -42.7 4.962 5228.1 0.8874842 0.8983567
## 1382 -46.2 1.313 5099.1 0.8854962 0.8586118
## 1383 -36.4 4.859 5191.0 0.8798814 0.8983567
## 1384 -36.4 4.864 5191.0 0.8874842 0.8586118
## 1385 -42.7 4.957 5228.1 0.8854962 0.8586118
## 1386 -36.4 4.859 5191.0 0.8854962 0.8983567
## 1387 -42.0 4.021 5195.8 0.8854962 0.9007315
## 1388 -36.4 4.864 5191.0 0.8798814 0.8586118
## 1389 -26.9 0.720 5017.5 0.8798814 0.8586118
## 1390 -47.1 1.479 5099.1 0.8798814 0.8983567
## 1391 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1392 -42.0 4.021 5195.8 0.9198606 0.8983567
## 1393 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1394 -36.1 4.964 5228.1 0.8874842 0.8983567
## 1395 -41.8 4.959 5228.1 0.9229145 0.9007315
## 1396 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1397 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1398 -34.6 0.645 5008.7 0.8798814 0.8983567
## 1399 -36.4 4.857 5191.0 0.9074675 0.9007315
## 1400 -46.2 1.250 5099.1 0.9198606 0.9007315
## 1401 -41.8 4.967 5228.1 0.8851675 0.8983567
## 1402 -36.4 4.859 5191.0 0.9198606 0.8983567
## 1403 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1404 -42.7 4.957 5228.1 0.8798814 0.8983567
## 1405 -31.4 0.825 5076.2 0.8854962 0.8586118
## 1406 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1407 -41.8 4.967 5228.1 0.7666667 0.8983567
## 1408 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1409 -46.2 1.354 5099.1 0.8874842 0.8983567
## 1410 -36.1 4.964 5228.1 0.9074675 0.8983567
## 1411 -47.1 1.405 5099.1 0.8798814 0.8586118
## 1412 -36.4 4.859 5191.0 0.9229145 0.9007315
## 1413 -42.7 4.962 5228.1 0.8798814 0.8586118
## 1414 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1415 -46.2 1.299 5099.1 0.9229145 0.8586118
## 1416 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1417 -29.8 0.773 5017.5 0.7666667 0.8983567
## 1418 -47.1 1.405 5099.1 0.9198606 0.8983567
## 1419 -41.8 4.947 5228.1 0.8854962 0.9007315
## 1420 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1421 -36.1 4.963 5228.1 0.9229145 0.8983567
## 1422 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1423 -36.4 4.857 5191.0 0.8854962 0.8983567
## 1424 -29.8 0.741 5017.5 0.8854962 0.8586118
## 1425 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1426 -42.7 4.963 5228.1 0.9229145 0.8586118
## 1427 -47.1 1.400 5099.1 0.7666667 0.8983567
## 1428 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1429 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1430 -42.7 4.960 5228.1 0.8854962 0.8983567
## 1431 -41.8 4.947 5228.1 0.8798814 0.8983567
## 1432 -42.7 4.957 5228.1 0.8798814 0.8586118
## 1433 -42.7 4.960 5228.1 0.8874842 0.9007315
## 1434 -36.4 4.855 5191.0 0.8854962 0.8983567
## 1435 -42.7 4.963 5228.1 0.9229145 0.9007315
## 1436 -36.4 4.855 5191.0 0.8874842 0.8983567
## 1437 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1438 -42.7 4.963 5228.1 0.8798814 0.8586118
## 1439 -42.7 4.959 5228.1 0.7666667 0.8983567
## 1440 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1441 -47.1 1.405 5099.1 0.8854962 0.8586118
## 1442 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1443 -42.7 4.960 5228.1 0.8798814 0.8983567
## 1444 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1445 -41.8 4.947 5228.1 0.8798814 0.8983567
## 1446 -36.4 4.857 5191.0 0.8874842 0.8983567
## 1447 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1448 -36.1 4.964 5228.1 0.9198606 0.8983567
## 1449 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1450 -40.8 1.268 5076.2 0.6868132 0.8586118
## 1451 -41.8 4.959 5228.1 0.8854962 0.8586118
## 1452 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1453 -41.8 4.959 5228.1 0.8960396 0.8983567
## 1454 -42.7 4.962 5228.1 0.8798814 0.8586118
## 1455 -42.7 4.963 5228.1 0.9229145 0.8586118
## 1456 -36.1 4.963 5228.1 0.9229145 0.8983567
## 1457 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1458 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1459 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1460 -42.7 4.963 5228.1 0.8798814 0.8983567
## 1461 -36.4 4.859 5191.0 0.8798814 0.8983567
## 1462 -36.4 4.855 5191.0 0.8798814 0.9007315
## 1463 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1464 -36.4 4.859 5191.0 0.9229145 0.8586118
## 1465 -42.7 4.962 5228.1 0.7666667 0.8983567
## 1466 -42.7 4.962 5228.1 0.9229145 0.9007315
## 1467 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1468 -41.8 4.959 5228.1 0.8798814 0.9007315
## 1469 -39.8 0.732 4991.6 0.8798814 0.8983567
## 1470 -36.4 4.857 5191.0 0.8874842 0.8983567
## 1471 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1472 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1473 -42.7 4.957 5228.1 0.8854962 0.8983567
## 1474 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1475 -36.4 4.859 5191.0 0.8854962 0.8586118
## 1476 -41.8 4.947 5228.1 0.9229145 0.8983567
## 1477 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1478 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1479 -42.0 4.021 5195.8 0.9074675 0.8586118
## 1480 -42.7 4.957 5228.1 0.8798814 0.8983567
## 1481 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1482 -36.4 4.859 5191.0 0.9198606 0.8586118
## 1483 -42.7 4.962 5228.1 0.8854962 0.8586118
## 1484 -36.4 4.859 5191.0 0.8854962 0.8983567
## 1485 -42.7 4.959 5228.1 0.8798814 0.8586118
## 1486 -36.4 4.855 5191.0 0.9074675 0.8983567
## 1487 -47.1 1.405 5099.1 0.8874842 0.8983567
## 1488 -41.8 4.947 5228.1 0.9229145 0.8983567
## 1489 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1490 -46.2 1.259 5099.1 0.8854962 0.8586118
## 1491 -46.2 1.250 5099.1 0.8874842 0.8586118
## 1492 -42.7 4.957 5228.1 0.8854962 0.8586118
## 1493 -42.7 4.959 5228.1 0.8854962 0.8983567
## 1494 -46.2 1.313 5099.1 0.9229145 0.8586118
## 1495 -42.7 4.957 5228.1 0.9229145 0.8586118
## 1496 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1497 -42.7 4.962 5228.1 0.8854962 0.9007315
## 1498 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1499 -42.0 4.021 5195.8 0.9074675 0.8983567
## 1500 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1501 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1502 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1503 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1504 -36.4 4.857 5191.0 0.9271523 0.8983567
## 1505 -47.1 1.400 5099.1 0.8798814 0.8983567
## 1506 -42.0 4.191 5195.8 0.9229145 0.8983567
## 1507 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1508 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1509 -41.8 4.947 5228.1 0.9198606 0.8586118
## 1510 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1511 -36.4 4.859 5191.0 0.9229145 0.8586118
## 1512 -36.1 4.966 5228.1 0.9074675 0.8983567
## 1513 -46.2 1.259 5099.1 0.6868132 0.8586118
## 1514 -41.8 4.865 5228.1 0.9074675 0.8983567
## 1515 -50.0 1.531 5099.1 0.8798814 0.8983567
## 1516 -42.7 4.957 5228.1 0.8874842 0.8586118
## 1517 -36.4 4.864 5191.0 0.8854962 0.8983567
## 1518 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1519 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1520 -42.7 4.959 5228.1 0.9229145 0.8983567
## 1521 -36.1 4.963 5228.1 0.8874842 0.8983567
## 1522 -41.8 4.959 5228.1 0.8854962 0.8586118
## 1523 -36.1 4.963 5228.1 0.9198606 0.8983567
## 1524 -36.1 4.964 5228.1 0.9198606 0.8983567
## 1525 -41.8 4.959 5228.1 0.8854962 0.9007315
## 1526 -36.1 4.964 5228.1 0.8851675 0.8983567
## 1527 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1528 -42.7 4.963 5228.1 0.8798814 0.8983567
## 1529 -42.0 4.021 5195.8 0.8854962 0.8983567
## 1530 -36.4 4.859 5191.0 0.8854962 0.9007315
## 1531 -42.0 4.021 5195.8 0.7666667 0.8586118
## 1532 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1533 -36.4 4.857 5191.0 0.9074675 0.9007315
## 1534 -41.8 4.959 5228.1 0.9271523 0.8983567
## 1535 -36.4 4.859 5191.0 0.8874842 0.8983567
## 1536 -36.4 4.864 5191.0 0.9198606 0.8983567
## 1537 -36.4 4.855 5191.0 0.9229145 0.8586118
## 1538 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1539 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1540 -41.8 4.959 5228.1 0.8851675 0.8983567
## 1541 -36.4 4.855 5191.0 0.7666667 0.8983567
## 1542 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1543 -42.7 4.960 5228.1 0.9229145 0.8586118
## 1544 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1545 -36.4 4.857 5191.0 0.8874842 0.8983567
## 1546 -42.0 4.021 5195.8 0.8798814 0.9007315
## 1547 -41.8 4.967 5228.1 0.8798814 0.8983567
## 1548 -36.4 4.855 5191.0 0.8854962 0.8586118
## 1549 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1550 -46.2 1.250 5099.1 0.9229145 0.8586118
## 1551 -41.8 4.947 5228.1 0.8798814 0.8586118
## 1552 -42.7 4.960 5228.1 0.9229145 0.8983567
## 1553 -41.8 4.959 5228.1 0.8874842 0.8586118
## 1554 -42.0 4.021 5195.8 0.8854962 0.8983567
## 1555 -42.0 4.021 5195.8 0.8798814 0.9007315
## 1556 -36.1 4.963 5228.1 0.8854962 0.8586118
## 1557 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1558 -47.1 1.400 5099.1 0.9229145 0.8586118
## 1559 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1560 -46.2 1.250 5099.1 0.9229145 0.9007315
## 1561 -42.7 4.962 5228.1 0.9074675 0.8983567
## 1562 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1563 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1564 -42.7 4.962 5228.1 0.9229145 0.8586118
## 1565 -36.1 4.965 5228.1 0.8798814 0.8983567
## 1566 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1567 -46.2 1.250 5099.1 0.9229145 0.9007315
## 1568 -36.4 4.864 5191.0 0.8960396 0.8983567
## 1569 -31.4 0.869 5076.2 0.7666667 0.8983567
## 1570 -46.2 1.250 5099.1 0.8874842 0.8586118
## 1571 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1572 -36.4 4.859 5191.0 0.8798814 0.8983567
## 1573 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1574 -36.1 4.964 5228.1 0.8854962 0.8586118
## 1575 -46.2 1.313 5099.1 0.8874842 0.8983567
## 1576 -31.4 0.825 5076.2 0.6868132 0.8586118
## 1577 -42.0 4.021 5195.8 0.9198606 0.8983567
## 1578 -36.4 4.858 5191.0 0.9229145 0.8983567
## 1579 -42.7 4.962 5228.1 0.8854962 0.8586118
## 1580 -46.2 1.313 5099.1 0.9074675 0.8586118
## 1581 -41.8 4.959 5228.1 0.7666667 0.8983567
## 1582 -36.4 4.864 5191.0 0.8874842 0.8983567
## 1583 -36.4 4.855 5191.0 0.9074675 0.8983567
## 1584 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1585 -42.0 4.191 5195.8 0.9074675 0.8983567
## 1586 -36.1 4.966 5228.1 0.9074675 0.8983567
## 1587 -36.4 4.855 5191.0 0.9229145 0.8586118
## 1588 -41.8 4.960 5228.1 0.9229145 0.9007315
## 1589 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1590 -31.4 0.849 5076.2 0.6868132 0.8586118
## 1591 -36.4 4.864 5191.0 0.9198606 0.8983567
## 1592 -36.4 4.857 5191.0 0.8854962 0.8983567
## 1593 -36.4 4.859 5191.0 0.9229145 0.8983567
## 1594 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1595 -46.2 1.250 5099.1 0.9271523 0.8983567
## 1596 -41.8 4.865 5228.1 0.9198606 0.8983567
## 1597 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1598 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1599 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1600 -42.0 4.021 5195.8 0.8874842 0.8586118
## 1601 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1602 -36.4 4.855 5191.0 0.8874842 0.9007315
## 1603 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1604 -41.8 4.959 5228.1 0.8874842 0.8983567
## 1605 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1606 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1607 -42.0 4.021 5195.8 0.8960396 0.8983567
## 1608 -36.1 4.970 5228.1 0.8851675 0.8983567
## 1609 -40.8 1.268 5076.2 0.9074675 0.8983567
## 1610 -47.1 1.405 5099.1 0.8798814 0.9007315
## 1611 -41.8 4.959 5228.1 0.9229145 0.8586118
## 1612 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1613 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1614 -36.1 4.964 5228.1 0.8854962 0.8983567
## 1615 -36.4 4.859 5191.0 0.8854962 0.8983567
## 1616 -42.0 4.021 5195.8 0.8960396 0.8983567
## 1617 -42.0 4.021 5195.8 0.9198606 0.8983567
## 1618 -46.2 1.313 5099.1 0.9229145 0.8586118
## 1619 -42.7 4.959 5228.1 0.8798814 0.8586118
## 1620 -46.2 1.354 5099.1 0.8854962 0.8983567
## 1621 -36.4 4.855 5191.0 0.8874842 0.8586118
## 1622 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1623 -46.2 1.250 5099.1 0.9074675 0.8983567
## 1624 -42.0 4.021 5195.8 0.9074675 0.8983567
## 1625 -47.1 1.405 5099.1 0.8798814 0.8586118
## 1626 -36.4 4.864 5191.0 0.9198606 0.8983567
## 1627 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1628 -46.2 1.244 5099.1 0.8798814 0.8983567
## 1629 -33.6 1.059 5076.2 0.7666667 0.8983567
## 1630 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1631 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1632 -36.4 4.857 5191.0 0.9198606 0.8983567
## 1633 -36.4 4.859 5191.0 0.8960396 0.8586118
## 1634 -42.0 4.021 5195.8 0.8798814 0.9007315
## 1635 -26.9 0.730 5017.5 0.9198606 0.8586118
## 1636 -46.2 1.259 5099.1 0.8854962 0.8586118
## 1637 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1638 -42.7 4.963 5228.1 0.8874842 0.8983567
## 1639 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1640 -41.8 4.959 5228.1 0.8854962 0.8983567
## 1641 -36.4 4.857 5191.0 0.8798814 0.8586118
## 1642 -41.8 4.959 5228.1 0.9271523 0.8586118
## 1643 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1644 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1645 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1646 -36.1 4.966 5228.1 0.8854962 0.8586118
## 1647 -40.8 1.268 5076.2 0.7666667 0.8983567
## 1648 -36.4 4.858 5191.0 0.8874842 0.8983567
## 1649 -41.8 4.947 5228.1 0.8960396 0.8983567
## 1650 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1651 -47.1 1.405 5099.1 0.8854962 0.8983567
## 1652 -36.1 4.964 5228.1 0.8798814 0.9007315
## 1653 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1654 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1655 -40.8 1.268 5076.2 0.8798814 0.8983567
## 1656 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1657 -47.1 1.405 5099.1 0.9271523 0.9007315
## 1658 -36.4 4.857 5191.0 0.8798814 0.9007315
## 1659 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1660 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1661 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1662 -46.2 1.250 5099.1 0.8874842 0.8586118
## 1663 -46.2 1.313 5099.1 0.9074675 0.8983567
## 1664 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1665 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1666 -36.4 4.864 5191.0 0.8854962 0.8586118
## 1667 -41.8 4.959 5228.1 0.9198606 0.8586118
## 1668 -41.8 4.967 5228.1 0.8874842 0.8586118
## 1669 -26.9 0.752 5017.5 0.8851675 0.8586118
## 1670 -42.7 4.960 5228.1 0.8874842 0.8983567
## 1671 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1672 -41.8 4.959 5228.1 0.7666667 0.9007315
## 1673 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1674 -49.5 0.993 4963.6 0.6868132 0.8586118
## 1675 -36.4 4.859 5191.0 0.9229145 0.9007315
## 1676 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1677 -47.1 1.405 5099.1 0.8854962 0.9007315
## 1678 -41.8 4.865 5228.1 0.9229145 0.8983567
## 1679 -36.4 4.857 5191.0 0.8851675 0.8983567
## 1680 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1681 -41.8 4.959 5228.1 0.9271523 0.8586118
## 1682 -46.2 1.250 5099.1 0.8854962 0.8586118
## 1683 -26.9 0.752 5017.5 0.7666667 0.8983567
## 1684 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1685 -36.4 4.857 5191.0 0.9074675 0.8983567
## 1686 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1687 -46.2 1.354 5099.1 0.8798814 0.8983567
## 1688 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1689 -42.0 4.021 5195.8 0.8798814 0.9007315
## 1690 -47.1 1.405 5099.1 0.8798814 0.8586118
## 1691 -36.4 4.857 5191.0 0.8874842 0.8586118
## 1692 -46.2 1.244 5099.1 0.8798814 0.8586118
## 1693 -36.1 4.965 5228.1 0.8798814 0.8586118
## 1694 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1695 -42.7 4.957 5228.1 0.9229145 0.8983567
## 1696 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1697 -47.1 1.405 5099.1 0.9229145 0.9007315
## 1698 -41.8 4.961 5228.1 0.9229145 0.8983567
## 1699 -40.4 5.045 5195.8 0.8798814 0.9007315
## 1700 -42.7 4.963 5228.1 0.9229145 0.9007315
## 1701 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1702 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1703 -36.4 4.857 5191.0 0.8854962 0.8983567
## 1704 -33.6 1.059 5076.2 0.8854962 0.8586118
## 1705 -42.7 4.957 5228.1 0.9229145 0.9007315
## 1706 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1707 -26.9 0.739 5017.5 0.8798814 0.8586118
## 1708 -36.4 4.864 5191.0 0.8854962 0.8983567
## 1709 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1710 -40.8 1.268 5076.2 0.8798814 0.8983567
## 1711 -46.2 1.327 5099.1 0.8851675 0.9007315
## 1712 -34.8 0.646 5008.7 0.8798814 0.8586118
## 1713 -42.7 4.963 5228.1 0.8798814 0.8586118
## 1714 -41.8 4.959 5228.1 0.9271523 0.8983567
## 1715 -42.7 4.959 5228.1 0.8854962 0.8983567
## 1716 -47.1 1.405 5099.1 0.8798814 0.8586118
## 1717 -36.4 4.855 5191.0 0.8854962 0.8983567
## 1718 -36.4 4.855 5191.0 0.9074675 0.8983567
## 1719 -36.1 4.966 5228.1 0.8798814 0.9007315
## 1720 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1721 -42.0 4.191 5195.8 0.9074675 0.8983567
## 1722 -42.7 4.957 5228.1 0.9198606 0.8983567
## 1723 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1724 -26.9 0.730 5017.5 0.6868132 0.8586118
## 1725 -46.2 1.259 5099.1 0.8960396 0.8586118
## 1726 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1727 -42.0 4.021 5195.8 0.8798814 0.9007315
## 1728 -26.9 0.730 5017.5 0.8854962 0.8586118
## 1729 -42.7 4.962 5228.1 0.8874842 0.8983567
## 1730 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1731 -42.0 4.021 5195.8 0.9271523 0.8983567
## 1732 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1733 -36.1 4.964 5228.1 0.8798814 0.8983567
## 1734 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1735 -33.6 1.048 5076.2 0.8874842 0.8586118
## 1736 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1737 -42.7 4.962 5228.1 0.8874842 0.8983567
## 1738 -36.4 4.864 5191.0 0.8874842 0.8983567
## 1739 -36.4 4.859 5191.0 0.9074675 0.8983567
## 1740 -42.0 4.021 5195.8 0.8798814 0.8586118
## 1741 -36.4 4.855 5191.0 0.9271523 0.8983567
## 1742 -36.1 4.966 5228.1 0.8798814 0.9007315
## 1743 -36.4 4.859 5191.0 0.8874842 0.8586118
## 1744 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1745 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1746 -41.8 4.959 5228.1 0.9198606 0.8983567
## 1747 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1748 -36.4 4.857 5191.0 0.9229145 0.9007315
## 1749 -41.8 4.959 5228.1 0.9074675 0.9007315
## 1750 -47.1 1.405 5099.1 0.8854962 0.8586118
## 1751 -46.2 1.264 5099.1 0.8798814 0.9007315
## 1752 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1753 -36.1 4.964 5228.1 0.8960396 0.8983567
## 1754 -41.8 4.967 5228.1 0.9229145 0.9007315
## 1755 -36.4 4.855 5191.0 0.9198606 0.8983567
## 1756 -42.0 4.021 5195.8 0.9198606 0.8586118
## 1757 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1758 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1759 -42.7 4.957 5228.1 0.8854962 0.8983567
## 1760 -36.1 4.963 5228.1 0.8854962 0.8983567
## 1761 -42.7 4.962 5228.1 0.8798814 0.8586118
## 1762 -42.0 4.021 5195.8 0.8854962 0.8983567
## 1763 -41.8 4.967 5228.1 0.8960396 0.8983567
## 1764 -36.4 4.859 5191.0 0.7666667 0.8983567
## 1765 -41.8 4.967 5228.1 0.9229145 0.8586118
## 1766 -36.1 4.965 5228.1 0.9229145 0.8983567
## 1767 -36.4 4.859 5191.0 0.8874842 0.8983567
## 1768 -36.4 4.857 5191.0 0.8854962 0.8586118
## 1769 -36.4 4.857 5191.0 0.8798814 0.8586118
## 1770 -47.1 1.405 5099.1 0.9271523 0.8983567
## 1771 -41.8 4.967 5228.1 0.9229145 0.8586118
## 1772 -46.2 1.313 5099.1 0.9229145 0.8983567
## 1773 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1774 -36.4 4.859 5191.0 0.9074675 0.8983567
## 1775 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1776 -36.1 4.964 5228.1 0.9198606 0.8983567
## 1777 -31.4 0.881 5076.2 0.8798814 0.8586118
## 1778 -36.4 4.855 5191.0 0.8960396 0.8983567
## 1779 -41.8 4.959 5228.1 0.8874842 0.8983567
## 1780 -46.2 1.250 5099.1 0.9198606 0.8983567
## 1781 -42.7 4.957 5228.1 0.9198606 0.8586118
## 1782 -29.8 0.762 5017.5 0.8798814 0.8983567
## 1783 -47.1 1.405 5099.1 0.8874842 0.8983567
## 1784 -36.1 4.964 5228.1 0.8854962 0.8586118
## 1785 -42.7 4.962 5228.1 0.8854962 0.8586118
## 1786 -36.1 4.964 5228.1 0.7666667 0.8983567
## 1787 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1788 -36.4 4.864 5191.0 0.8798814 0.8586118
## 1789 -42.7 4.962 5228.1 0.9074675 0.8983567
## 1790 -41.8 4.967 5228.1 0.8874842 0.8983567
## 1791 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1792 -42.7 4.959 5228.1 0.7666667 0.8983567
## 1793 -36.1 4.964 5228.1 0.8798814 0.8983567
## 1794 -29.8 0.803 5017.5 0.9074675 0.8983567
## 1795 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1796 -41.8 4.961 5228.1 0.8854962 0.9007315
## 1797 -36.1 4.963 5228.1 0.8854962 0.9007315
## 1798 -31.4 0.849 5076.2 0.7666667 0.8983567
## 1799 -42.7 4.957 5228.1 0.6868132 0.8586118
## 1800 -46.2 1.299 5099.1 0.9229145 0.8983567
## 1801 -42.7 4.957 5228.1 0.8798814 0.8586118
## 1802 -29.8 0.773 5017.5 0.8798814 0.8586118
## 1803 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1804 -42.0 4.021 5195.8 0.8854962 0.8586118
## 1805 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1806 -36.1 4.965 5228.1 0.8874842 0.8983567
## 1807 -36.1 4.964 5228.1 0.9229145 0.8983567
## 1808 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1809 -36.1 4.965 5228.1 0.8798814 0.8983567
## 1810 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1811 -41.8 4.959 5228.1 0.7666667 0.8983567
## 1812 -36.4 4.855 5191.0 0.9074675 0.8983567
## 1813 -41.8 4.958 5228.1 0.8798814 0.8983567
## 1814 -42.7 4.962 5228.1 0.9074675 0.9007315
## 1815 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1816 -41.8 4.967 5228.1 0.9229145 0.8983567
## 1817 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1818 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1819 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1820 -42.7 4.962 5228.1 0.8798814 0.8586118
## 1821 -36.4 4.864 5191.0 0.9229145 0.9007315
## 1822 -42.7 4.957 5228.1 0.9229145 0.9007315
## 1823 -46.2 1.250 5099.1 0.9229145 0.9007315
## 1824 -46.2 1.313 5099.1 0.9229145 0.8586118
## 1825 -36.1 4.965 5228.1 0.8798814 0.8586118
## 1826 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1827 -36.4 4.857 5191.0 0.8798814 0.8983567
## 1828 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1829 -47.1 1.405 5099.1 0.9271523 0.8983567
## 1830 -46.2 1.259 5099.1 0.8798814 0.8983567
## 1831 -36.4 4.858 5191.0 0.8854962 0.9007315
## 1832 -41.8 4.967 5228.1 0.9074675 0.8983567
## 1833 -41.8 4.959 5228.1 0.8798814 0.8983567
## 1834 -33.6 1.059 5076.2 0.8798814 0.9007315
## 1835 -47.1 1.405 5099.1 0.6868132 0.8586118
## 1836 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1837 -41.8 4.967 5228.1 0.8854962 0.8983567
## 1838 -42.7 4.957 5228.1 0.9229145 0.8586118
## 1839 -36.1 4.963 5228.1 0.8854962 0.8586118
## 1840 -36.1 4.966 5228.1 0.8798814 0.8983567
## 1841 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1842 -36.1 4.963 5228.1 0.8798814 0.9007315
## 1843 -36.4 4.855 5191.0 0.9074675 0.8586118
## 1844 -36.4 4.857 5191.0 0.8854962 0.9007315
## 1845 -36.4 4.864 5191.0 0.9074675 0.8983567
## 1846 -36.4 4.855 5191.0 0.8854962 0.8983567
## 1847 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1848 -42.0 4.021 5195.8 0.9271523 0.9007315
## 1849 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1850 -46.2 1.313 5099.1 0.9074675 0.8983567
## 1851 -42.0 4.021 5195.8 0.9074675 0.8586118
## 1852 -36.4 4.855 5191.0 0.9074675 0.8983567
## 1853 -36.4 4.859 5191.0 0.8851675 0.8983567
## 1854 -36.1 4.964 5228.1 0.8854962 0.9007315
## 1855 -42.0 4.021 5195.8 0.8798814 0.8586118
## 1856 -42.7 4.963 5228.1 0.9074675 0.9007315
## 1857 -36.1 4.963 5228.1 0.8798814 0.8983567
## 1858 -38.3 0.890 4991.6 0.8798814 0.8586118
## 1859 -36.1 4.964 5228.1 0.8960396 0.8983567
## 1860 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1861 -36.4 4.859 5191.0 0.8874842 0.8983567
## 1862 -39.8 0.732 4991.6 0.9271523 0.8983567
## 1863 -40.8 1.268 5076.2 0.6868132 0.8983567
## 1864 -29.8 0.803 5017.5 0.8874842 0.9007315
## 1865 -39.8 0.707 4991.6 0.8874842 0.8983567
## 1866 -36.4 4.864 5191.0 0.9229145 0.8586118
## 1867 -36.4 4.855 5191.0 0.8874842 0.8983567
## 1868 -41.8 4.967 5228.1 0.9229145 0.9007315
## 1869 -41.8 4.959 5228.1 0.9074675 0.8983567
## 1870 -46.2 1.250 5099.1 0.9229145 0.9007315
## 1871 -36.4 4.855 5191.0 0.8874842 0.8983567
## 1872 -36.4 4.855 5191.0 0.9229145 0.8586118
## 1873 -46.2 1.250 5099.1 0.8854962 0.8983567
## 1874 -36.1 4.965 5228.1 0.8960396 0.8983567
## 1875 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1876 -36.4 4.857 5191.0 0.8854962 0.8983567
## 1877 -36.1 4.966 5228.1 0.9229145 0.8983567
## 1878 -40.8 1.266 5076.2 0.7666667 0.9007315
## 1879 -41.8 4.959 5228.1 0.7666667 0.8983567
## 1880 -41.8 4.959 5228.1 0.7666667 0.8983567
## 1881 -42.0 4.021 5195.8 0.9229145 0.8586118
## 1882 -31.4 0.869 5076.2 0.7666667 0.8983567
## 1883 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1884 -36.4 4.859 5191.0 0.9198606 0.8586118
## 1885 -36.4 4.860 5191.0 0.8874842 0.8586118
## 1886 -42.7 4.962 5228.1 0.8874842 0.9007315
## 1887 -47.1 1.405 5099.1 0.9074675 0.8983567
## 1888 -47.1 1.405 5099.1 0.8854962 0.8586118
## 1889 -41.8 4.947 5228.1 0.8874842 0.9007315
## 1890 -36.4 4.857 5191.0 0.8798814 0.9007315
## 1891 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1892 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1893 -42.7 4.963 5228.1 0.8874842 0.8586118
## 1894 -41.8 4.959 5228.1 0.8798814 0.8586118
## 1895 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1896 -36.4 4.860 5191.0 0.9229145 0.8983567
## 1897 -41.8 4.959 5228.1 0.7666667 0.8983567
## 1898 -36.1 4.966 5228.1 0.8854962 0.8983567
## 1899 -36.4 4.859 5191.0 0.8798814 0.8586118
## 1900 -41.8 4.960 5228.1 0.9229145 0.8983567
## 1901 -46.2 1.250 5099.1 0.8854962 0.8586118
## 1902 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1903 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1904 -36.4 4.859 5191.0 0.7666667 0.9007315
## 1905 -33.0 0.718 5023.5 0.8798814 0.8983567
## 1906 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1907 -46.2 1.250 5099.1 0.7666667 0.9007315
## 1908 -42.0 4.021 5195.8 0.9229145 0.8983567
## 1909 -36.1 4.963 5228.1 0.8854962 0.8586118
## 1910 -42.7 4.957 5228.1 0.9074675 0.8586118
## 1911 -36.1 4.966 5228.1 0.8854962 0.9007315
## 1912 -47.1 1.405 5099.1 0.8854962 0.8983567
## 1913 -47.1 1.405 5099.1 0.8854962 0.8983567
## 1914 -40.8 1.268 5076.2 0.8854962 0.8983567
## 1915 -36.4 4.858 5191.0 0.8798814 0.9007315
## 1916 -42.0 4.076 5195.8 0.8854962 0.8983567
## 1917 -46.2 1.250 5099.1 0.8798814 0.8586118
## 1918 -42.7 4.963 5228.1 0.9229145 0.8586118
## 1919 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1920 -42.7 4.960 5228.1 0.8874842 0.8983567
## 1921 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1922 -36.4 4.864 5191.0 0.8798814 0.8983567
## 1923 -36.1 4.964 5228.1 0.8798814 0.8983567
## 1924 -41.8 4.865 5228.1 0.9229145 0.8983567
## 1925 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1926 -36.4 4.857 5191.0 0.8874842 0.8983567
## 1927 -42.7 4.962 5228.1 0.9074675 0.8983567
## 1928 -36.4 4.855 5191.0 0.8851675 0.8983567
## 1929 -36.4 4.857 5191.0 0.9229145 0.8983567
## 1930 -36.4 4.859 5191.0 0.8851675 0.8983567
## 1931 -36.4 4.859 5191.0 0.9229145 0.9007315
## 1932 -36.4 4.864 5191.0 0.9229145 0.8983567
## 1933 -42.7 4.962 5228.1 0.9229145 0.8983567
## 1934 -36.4 4.864 5191.0 0.8874842 0.8983567
## 1935 -36.4 4.857 5191.0 0.8798814 0.8983567
## 1936 -47.1 1.365 5099.1 0.9074675 0.8983567
## 1937 -47.1 1.405 5099.1 0.8798814 0.8983567
## 1938 -46.2 1.250 5099.1 0.8798814 0.8983567
## 1939 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1940 -46.2 1.250 5099.1 0.9229145 0.8586118
## 1941 -40.0 0.695 5008.7 0.8874842 0.8586118
## 1942 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1943 -41.8 4.960 5228.1 0.9074675 0.8983567
## 1944 -41.8 4.947 5228.1 0.8798814 0.8983567
## 1945 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1946 -41.8 4.947 5228.1 0.9198606 0.8586118
## 1947 -39.8 0.732 4991.6 0.7666667 0.9007315
## 1948 -47.1 1.405 5099.1 0.9229145 0.8983567
## 1949 -42.7 4.962 5228.1 0.8798814 0.9007315
## 1950 -42.0 4.021 5195.8 0.8798814 0.8983567
## 1951 -42.7 4.959 5228.1 0.8874842 0.8983567
## 1952 -36.1 4.966 5228.1 0.8798814 0.8586118
## 1953 -42.7 4.962 5228.1 0.9074675 0.8983567
## 1954 -36.4 4.864 5191.0 0.8798814 0.8586118
## 1955 -42.7 4.963 5228.1 0.9229145 0.8983567
## 1956 -42.0 4.021 5195.8 0.8874842 0.8983567
## 1957 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1958 -36.4 4.859 5191.0 0.8798814 0.9007315
## 1959 -47.1 1.405 5099.1 0.8854962 0.8983567
## 1960 -36.4 4.855 5191.0 0.9229145 0.9007315
## 1961 -36.4 4.864 5191.0 0.8798814 0.9007315
## 1962 -40.8 1.268 5076.2 0.8798814 0.8586118
## 1963 -36.4 4.855 5191.0 0.9229145 0.8983567
## 1964 -41.8 4.959 5228.1 0.9229145 0.8983567
## 1965 -36.1 4.970 5228.1 0.7666667 0.8983567
## 1966 -36.4 4.857 5191.0 0.8798814 0.8586118
## 1967 -46.2 1.313 5099.1 0.8798814 0.8983567
## 1968 -31.4 0.869 5076.2 0.6868132 0.8586118
## 1969 -42.7 4.962 5228.1 0.7666667 0.8586118
## 1970 -36.4 4.855 5191.0 0.8798814 0.8983567
## 1971 -46.2 1.327 5099.1 0.9229145 0.8983567
## 1972 -42.7 4.960 5228.1 0.9229145 0.8983567
## 1973 -42.0 4.021 5195.8 0.8851675 0.8983567
## 1974 -46.2 1.250 5099.1 0.8854962 0.8586118
## 1975 -42.0 4.021 5195.8 0.8874842 0.9007315
## 1976 -46.2 1.313 5099.1 0.9074675 0.8586118
## 1977 -36.4 4.864 5191.0 0.8874842 0.8983567
## 1978 -42.0 4.021 5195.8 0.8874842 0.8983567
## 1979 -36.4 4.857 5191.0 0.9271523 0.8983567
## 1980 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1981 -46.2 1.250 5099.1 0.8854962 0.9007315
## 1982 -41.8 4.960 5228.1 0.9229145 0.8983567
## 1983 -36.1 4.963 5228.1 0.8798814 0.8586118
## 1984 -42.0 4.021 5195.8 0.8874842 0.8586118
## 1985 -46.2 1.250 5099.1 0.9229145 0.8983567
## 1986 -36.4 4.857 5191.0 0.9229145 0.8586118
## 1987 -41.8 4.967 5228.1 0.8854962 0.9007315
## 1988 -46.2 1.250 5099.1 0.9229145 0.8586118
## 1989 -36.4 4.864 5191.0 0.8798814 0.9007315
## 1990 -42.0 4.191 5195.8 0.8854962 0.8983567
## 1991 -47.1 1.405 5099.1 0.8798814 0.9007315
## 1992 -42.7 4.962 5228.1 0.8798814 0.8983567
## 1993 -42.7 4.960 5228.1 0.8798814 0.8983567
## 1994 -42.7 4.962 5228.1 0.8854962 0.8983567
## 1995 -42.7 4.957 5228.1 0.8798814 0.8586118
## 1996 -42.0 4.021 5195.8 0.9074675 0.8586118
## 1997 -41.8 4.958 5228.1 0.8854962 0.9007315
## 1998 -42.0 4.021 5195.8 0.9198606 0.8983567
## 1999 -46.2 1.313 5099.1 0.8798814 0.8586118
## 2000 -36.4 4.857 5191.0 0.7666667 0.9007315
## 2001 -36.4 4.864 5191.0 0.8854962 0.8586118
## 2002 -36.4 4.858 5191.0 0.8798814 0.8586118
## 2003 -36.4 4.864 5191.0 0.9229145 0.9007315
## 2004 -42.0 4.021 5195.8 0.8798814 0.9007315
## 2005 -42.7 4.960 5228.1 0.8874842 0.9007315
## 2006 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2007 -36.4 4.864 5191.0 0.7666667 0.9007315
## 2008 -36.4 4.855 5191.0 0.8798814 0.8983567
## 2009 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2010 -36.4 4.864 5191.0 0.9229145 0.8586118
## 2011 -46.2 1.266 5099.1 0.6868132 0.8586118
## 2012 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2013 -46.2 1.244 5099.1 0.6868132 0.8586118
## 2014 -41.8 4.967 5228.1 0.9271523 0.8983567
## 2015 -47.1 1.405 5099.1 0.9229145 0.8586118
## 2016 -31.4 0.825 5076.2 0.6868132 0.8586118
## 2017 -42.7 4.957 5228.1 0.8851675 0.9007315
## 2018 -36.1 4.964 5228.1 0.9198606 0.8983567
## 2019 -47.1 1.405 5099.1 0.8854962 0.9007315
## 2020 -36.4 4.864 5191.0 0.9229145 0.8586118
## 2021 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2022 -41.8 4.959 5228.1 0.8798814 0.8983567
## 2023 -42.0 4.191 5195.8 0.9229145 0.8983567
## 2024 -36.4 4.855 5191.0 0.8874842 0.8586118
## 2025 -36.4 4.859 5191.0 0.8798814 0.8983567
## 2026 -42.7 4.962 5228.1 0.9229145 0.9007315
## 2027 -36.1 4.964 5228.1 0.7666667 0.8983567
## 2028 -36.4 4.857 5191.0 0.8960396 0.8983567
## 2029 -42.7 4.963 5228.1 0.9229145 0.8983567
## 2030 -41.8 4.959 5228.1 0.8798814 0.8983567
## 2031 -47.1 1.410 5099.1 0.9271523 0.8983567
## 2032 -41.8 4.959 5228.1 0.9229145 0.8586118
## 2033 -42.0 4.021 5195.8 0.8874842 0.9007315
## 2034 -36.4 4.855 5191.0 0.9074675 0.8983567
## 2035 -47.1 1.406 5099.1 0.8798814 0.8983567
## 2036 -46.2 1.250 5099.1 0.9229145 0.8983567
## 2037 -36.1 4.966 5228.1 0.8874842 0.8983567
## 2038 -42.0 4.021 5195.8 0.9271523 0.8983567
## 2039 -31.4 0.881 5076.2 0.6868132 0.8586118
## 2040 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2041 -40.8 1.268 5076.2 0.8798814 0.8983567
## 2042 -42.7 4.957 5228.1 0.9229145 0.8983567
## 2043 -42.0 4.021 5195.8 0.9271523 0.8983567
## 2044 -42.7 4.957 5228.1 0.9229145 0.9007315
## 2045 -41.8 4.967 5228.1 0.8851675 0.8586118
## 2046 -36.4 4.855 5191.0 0.9229145 0.8983567
## 2047 -46.2 1.250 5099.1 0.9271523 0.9007315
## 2048 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2049 -42.0 4.021 5195.8 0.8798814 0.8983567
## 2050 -42.7 4.963 5228.1 0.9271523 0.8983567
## 2051 -36.4 4.864 5191.0 0.9229145 0.8586118
## 2052 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2053 -36.1 4.966 5228.1 0.9271523 0.8983567
## 2054 -42.7 4.957 5228.1 0.8798814 0.8983567
## 2055 -46.2 1.250 5099.1 0.9229145 0.8983567
## 2056 -42.7 4.959 5228.1 0.9229145 0.8983567
## 2057 -42.7 4.962 5228.1 0.8851675 0.8983567
## 2058 -46.2 1.250 5099.1 0.8854962 0.8586118
## 2059 -36.1 4.966 5228.1 0.8854962 0.8983567
## 2060 -47.1 1.365 5099.1 0.8798814 0.9007315
## 2061 -42.7 4.959 5228.1 0.8874842 0.9007315
## 2062 -46.2 1.244 5099.1 0.9229145 0.8983567
## 2063 -47.1 1.405 5099.1 0.8798814 0.8586118
## 2064 -36.4 4.864 5191.0 0.9229145 0.9007315
## 2065 -36.4 4.859 5191.0 0.9229145 0.8983567
## 2066 -36.4 4.857 5191.0 0.9198606 0.8983567
## 2067 -41.8 4.959 5228.1 0.9271523 0.8983567
## 2068 -36.4 4.855 5191.0 0.9074675 0.8983567
## 2069 -41.8 4.865 5228.1 0.8798814 0.8983567
## 2070 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2071 -31.4 0.849 5076.2 0.7666667 0.8983567
## 2072 -41.8 4.866 5228.1 0.8854962 0.9007315
## 2073 -46.2 1.250 5099.1 0.8798814 0.8586118
## 2074 -36.1 4.965 5228.1 0.8798814 0.9007315
## 2075 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2076 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2077 -26.9 0.739 5017.5 0.8798814 0.8586118
## 2078 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2079 -46.2 1.313 5099.1 0.8854962 0.8983567
## 2080 -36.4 4.859 5191.0 0.9074675 0.8983567
## 2081 -36.4 4.857 5191.0 0.8874842 0.8586118
## 2082 -36.4 4.857 5191.0 0.8798814 0.9007315
## 2083 -29.8 0.803 5017.5 0.8798814 0.8586118
## 2084 -42.0 4.021 5195.8 0.8798814 0.8983567
## 2085 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2086 -36.4 4.857 5191.0 0.8874842 0.9007315
## 2087 -46.2 1.244 5099.1 0.8798814 0.8586118
## 2088 -36.4 4.855 5191.0 0.8874842 0.8983567
## 2089 -41.8 4.967 5228.1 0.9198606 0.8983567
## 2090 -36.4 4.859 5191.0 0.7666667 0.8983567
## 2091 -36.4 4.859 5191.0 0.8854962 0.8586118
## 2092 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2093 -42.7 4.963 5228.1 0.8854962 0.8586118
## 2094 -36.4 4.864 5191.0 0.9229145 0.8983567
## 2095 -42.7 4.963 5228.1 0.7666667 0.8983567
## 2096 -46.2 1.250 5099.1 0.9229145 0.8586118
## 2097 -42.7 4.963 5228.1 0.9271523 0.8586118
## 2098 -36.4 4.864 5191.0 0.8874842 0.8586118
## 2099 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2100 -36.1 4.963 5228.1 0.9198606 0.8983567
## 2101 -46.2 1.250 5099.1 0.9074675 0.8983567
## 2102 -46.2 1.250 5099.1 0.8798814 0.8586118
## 2103 -36.4 4.859 5191.0 0.8854962 0.8983567
## 2104 -36.4 4.855 5191.0 0.8854962 0.8983567
## 2105 -42.0 4.021 5195.8 0.8874842 0.8586118
## 2106 -41.8 4.865 5228.1 0.8851675 0.9007315
## 2107 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2108 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2109 -47.1 1.405 5099.1 0.9271523 0.8983567
## 2110 -42.0 4.021 5195.8 0.8798814 0.8983567
## 2111 -47.1 1.405 5099.1 0.8798814 0.8586118
## 2112 -50.8 1.050 4963.6 0.6868132 0.8586118
## 2113 -46.2 1.250 5099.1 0.8798814 0.8586118
## 2114 -36.4 4.855 5191.0 0.9229145 0.9007315
## 2115 -36.1 4.970 5228.1 0.8960396 0.8983567
## 2116 -42.7 4.963 5228.1 0.9229145 0.8586118
## 2117 -36.4 4.864 5191.0 0.8798814 0.8983567
## 2118 -46.2 1.250 5099.1 0.8874842 0.8983567
## 2119 -36.4 4.857 5191.0 0.9074675 0.9007315
## 2120 -46.2 1.250 5099.1 0.8854962 0.8586118
## 2121 -36.1 4.964 5228.1 0.9229145 0.8983567
## 2122 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2123 -36.1 4.964 5228.1 0.8798814 0.8586118
## 2124 -41.8 4.959 5228.1 0.8798814 0.8983567
## 2125 -46.2 1.299 5099.1 0.8032787 0.8586118
## 2126 -36.1 4.963 5228.1 0.8798814 0.9007315
## 2127 -26.9 0.720 5017.5 0.7666667 0.9007315
## 2128 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2129 -46.2 1.354 5099.1 0.8798814 0.8983567
## 2130 -30.1 0.714 5017.5 0.8798814 0.8586118
## 2131 -46.2 1.354 5099.1 0.8851675 0.8586118
## 2132 -41.8 4.865 5228.1 0.8854962 0.8586118
## 2133 -42.7 4.959 5228.1 0.9074675 0.8983567
## 2134 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2135 -41.8 4.967 5228.1 0.9229145 0.9007315
## 2136 -36.4 4.859 5191.0 0.8854962 0.8983567
## 2137 -36.1 4.966 5228.1 0.8854962 0.8983567
## 2138 -36.4 4.857 5191.0 0.9074675 0.8586118
## 2139 -36.1 4.964 5228.1 0.9229145 0.8983567
## 2140 -36.1 4.963 5228.1 0.8798814 0.8586118
## 2141 -42.7 4.963 5228.1 0.8851675 0.8983567
## 2142 -42.7 4.963 5228.1 0.8798814 0.8983567
## 2143 -36.4 4.857 5191.0 0.8854962 0.8586118
## 2144 -42.0 4.021 5195.8 0.8798814 0.9007315
## 2145 -36.4 4.864 5191.0 0.8854962 0.8983567
## 2146 -42.0 4.021 5195.8 0.8798814 0.8983567
## 2147 -46.2 1.313 5099.1 0.8798814 0.8983567
## 2148 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2149 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2150 -41.8 4.959 5228.1 0.9198606 0.8983567
## 2151 -46.2 1.250 5099.1 0.8851675 0.8983567
## 2152 -46.2 1.250 5099.1 0.9229145 0.8586118
## 2153 -46.2 1.250 5099.1 0.9229145 0.8586118
## 2154 -41.8 4.959 5228.1 0.8854962 0.8586118
## 2155 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2156 -36.4 4.855 5191.0 0.8854962 0.9007315
## 2157 -42.7 4.959 5228.1 0.9271523 0.8983567
## 2158 -46.2 1.250 5099.1 0.9074675 0.8983567
## 2159 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2160 -36.4 4.857 5191.0 0.8874842 0.9007315
## 2161 -50.8 1.028 4963.6 0.7666667 0.9007315
## 2162 -41.8 4.961 5228.1 0.8798814 0.8586118
## 2163 -47.1 1.405 5099.1 0.8874842 0.8586118
## 2164 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2165 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2166 -36.4 4.855 5191.0 0.9271523 0.8983567
## 2167 -42.0 4.021 5195.8 0.8960396 0.8983567
## 2168 -26.9 0.720 5017.5 0.7666667 0.9007315
## 2169 -42.7 4.958 5228.1 0.8798814 0.8586118
## 2170 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2171 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2172 -46.2 1.313 5099.1 0.8874842 0.8586118
## 2173 -41.8 4.967 5228.1 0.8798814 0.8983567
## 2174 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2175 -50.0 1.531 5099.1 0.8798814 0.8983567
## 2176 -36.4 4.857 5191.0 0.8851675 0.8983567
## 2177 -42.0 4.021 5195.8 0.7666667 0.8983567
## 2178 -46.2 1.313 5099.1 0.8874842 0.8983567
## 2179 -42.0 4.021 5195.8 0.9074675 0.8983567
## 2180 -29.8 0.741 5017.5 0.7666667 0.8983567
## 2181 -46.2 1.250 5099.1 0.9229145 0.8586118
## 2182 -46.2 1.250 5099.1 0.8854962 0.8983567
## 2183 -36.4 4.855 5191.0 0.9074675 0.8586118
## 2184 -41.8 4.865 5228.1 0.8854962 0.8586118
## 2185 -42.0 4.021 5195.8 0.9074675 0.8983567
## 2186 -36.1 4.964 5228.1 0.9229145 0.8983567
## 2187 -36.4 4.855 5191.0 0.8798814 0.8983567
## 2188 -42.7 4.958 5228.1 0.9229145 0.8586118
## 2189 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2190 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2191 -36.1 4.965 5228.1 0.9074675 0.8983567
## 2192 -36.4 4.857 5191.0 0.9271523 0.8983567
## 2193 -42.0 4.191 5195.8 0.9229145 0.8983567
## 2194 -42.7 4.960 5228.1 0.8874842 0.8586118
## 2195 -36.4 4.864 5191.0 0.9074675 0.8983567
## 2196 -41.8 4.967 5228.1 0.9271523 0.8983567
## 2197 -42.7 4.963 5228.1 0.8874842 0.8586118
## 2198 -41.8 4.967 5228.1 0.8854962 0.8983567
## 2199 -42.0 4.021 5195.8 0.8854962 0.8983567
## 2200 -42.0 4.021 5195.8 0.8854962 0.8586118
## 2201 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2202 -46.2 1.250 5099.1 0.9074675 0.8983567
## 2203 -46.2 1.313 5099.1 0.9074675 0.8586118
## 2204 -36.4 4.864 5191.0 0.9229145 0.8983567
## 2205 -46.2 1.250 5099.1 0.8798814 0.8983567
## 2206 -36.4 4.855 5191.0 0.8874842 0.9007315
## 2207 -37.5 0.882 4963.6 0.8874842 0.8586118
## 2208 -42.0 4.021 5195.8 0.9229145 0.8983567
## 2209 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2210 -50.0 1.640 5099.1 0.9198606 0.8586118
## 2211 -41.8 4.959 5228.1 0.8798814 0.8983567
## 2212 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2213 -36.4 4.855 5191.0 0.8798814 0.8983567
## 2214 -42.0 4.021 5195.8 0.9229145 0.8983567
## 2215 -41.8 4.967 5228.1 0.8798814 0.8586118
## 2216 -41.8 4.865 5228.1 0.8798814 0.8586118
## 2217 -42.7 4.963 5228.1 0.9229145 0.8983567
## 2218 -36.4 4.855 5191.0 0.8874842 0.8586118
## 2219 -42.7 4.962 5228.1 0.8960396 0.8983567
## 2220 -42.7 4.957 5228.1 0.8798814 0.8983567
## 2221 -42.0 4.021 5195.8 0.9074675 0.8983567
## 2222 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2223 -36.4 4.859 5191.0 0.9229145 0.8983567
## 2224 -42.7 4.960 5228.1 0.8798814 0.8586118
## 2225 -46.2 1.250 5099.1 0.8874842 0.8983567
## 2226 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2227 -42.0 4.021 5195.8 0.9198606 0.8983567
## 2228 -42.0 4.021 5195.8 0.8798814 0.9007315
## 2229 -40.0 0.699 5008.7 0.8851675 0.8983567
## 2230 -42.7 4.957 5228.1 0.9229145 0.8983567
## 2231 -36.1 4.962 5228.1 0.8798814 0.9007315
## 2232 -36.4 4.859 5191.0 0.8960396 0.8586118
## 2233 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2234 -42.7 4.957 5228.1 0.8798814 0.8983567
## 2235 -42.0 4.021 5195.8 0.9198606 0.8983567
## 2236 -36.4 4.857 5191.0 0.8032787 0.8983567
## 2237 -42.7 4.957 5228.1 0.9229145 0.8586118
## 2238 -41.8 4.967 5228.1 0.9229145 0.8983567
## 2239 -42.0 4.021 5195.8 0.8798814 0.8586118
## 2240 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2241 -46.2 1.250 5099.1 0.8854962 0.8586118
## 2242 -36.1 4.970 5228.1 0.8798814 0.8586118
## 2243 -36.4 4.859 5191.0 0.9074675 0.8983567
## 2244 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2245 -36.1 4.964 5228.1 0.8854962 0.9007315
## 2246 -42.0 4.021 5195.8 0.8960396 0.8983567
## 2247 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2248 -42.0 4.021 5195.8 0.8851675 0.8586118
## 2249 -36.4 4.855 5191.0 0.8874842 0.8983567
## 2250 -36.4 4.864 5191.0 0.8854962 0.8983567
## 2251 -42.0 4.021 5195.8 0.9074675 0.8983567
## 2252 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2253 -46.2 1.259 5099.1 0.8798814 0.8983567
## 2254 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2255 -29.8 0.773 5017.5 0.8798814 0.8983567
## 2256 -42.0 4.021 5195.8 0.9271523 0.8983567
## 2257 -42.0 4.021 5195.8 0.8798814 0.8983567
## 2258 -41.8 4.967 5228.1 0.7666667 0.8983567
## 2259 -36.4 4.857 5191.0 0.9229145 0.8586118
## 2260 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2261 -42.0 4.021 5195.8 0.8798814 0.8586118
## 2262 -36.4 4.857 5191.0 0.7666667 0.8983567
## 2263 -41.8 4.961 5228.1 0.8854962 0.8586118
## 2264 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2265 -40.0 0.684 5008.7 0.8854962 0.9007315
## 2266 -46.2 1.313 5099.1 0.8798814 0.9007315
## 2267 -33.6 0.921 5076.2 0.8798814 0.8983567
## 2268 -36.4 4.864 5191.0 0.9198606 0.8983567
## 2269 -36.1 4.963 5228.1 0.9074675 0.8983567
## 2270 -42.0 4.191 5195.8 0.9074675 0.8983567
## 2271 -42.7 4.963 5228.1 0.8798814 0.8983567
## 2272 -41.8 4.967 5228.1 0.8798814 0.8586118
## 2273 -36.1 4.965 5228.1 0.9271523 0.8983567
## 2274 -36.4 4.864 5191.0 0.8851675 0.9007315
## 2275 -46.2 1.313 5099.1 0.8854962 0.8983567
## 2276 -42.0 4.021 5195.8 0.9229145 0.8983567
## 2277 -42.0 4.021 5195.8 0.8854962 0.8983567
## 2278 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2279 -36.4 4.864 5191.0 0.8874842 0.8983567
## 2280 -36.1 4.965 5228.1 0.8798814 0.8586118
## 2281 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2282 -42.0 4.021 5195.8 0.9198606 0.8983567
## 2283 -36.4 4.859 5191.0 0.8798814 0.8983567
## 2284 -42.7 4.960 5228.1 0.8874842 0.9007315
## 2285 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2286 -36.1 4.964 5228.1 0.8798814 0.9007315
## 2287 -42.7 4.963 5228.1 0.9229145 0.8983567
## 2288 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2289 -36.1 4.964 5228.1 0.8854962 0.8586118
## 2290 -36.4 4.858 5191.0 0.6868132 0.8586118
## 2291 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2292 -41.8 4.865 5228.1 0.8798814 0.8586118
## 2293 -47.1 1.405 5099.1 0.8798814 0.8586118
## 2294 -36.4 4.857 5191.0 0.8851675 0.8983567
## 2295 -36.4 4.859 5191.0 0.8960396 0.8983567
## 2296 -46.2 1.250 5099.1 0.8854962 0.8586118
## 2297 -36.4 4.857 5191.0 0.8960396 0.8983567
## 2298 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2299 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2300 -36.4 4.857 5191.0 0.8798814 0.9007315
## 2301 -36.1 4.963 5228.1 0.8854962 0.9007315
## 2302 -40.8 1.266 5076.2 0.8854962 0.8983567
## 2303 -36.1 4.965 5228.1 0.9074675 0.8983567
## 2304 -42.7 4.963 5228.1 0.8874842 0.8586118
## 2305 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2306 -50.0 1.520 5099.1 0.8854962 0.8586118
## 2307 -36.4 4.858 5191.0 0.9074675 0.8983567
## 2308 -41.8 4.959 5228.1 0.9074675 0.8983567
## 2309 -36.1 4.965 5228.1 0.9198606 0.8983567
## 2310 -36.4 4.857 5191.0 0.8854962 0.8586118
## 2311 -36.4 4.859 5191.0 0.8854962 0.8983567
## 2312 -36.4 4.857 5191.0 0.9198606 0.8983567
## 2313 -42.7 4.962 5228.1 0.9229145 0.9007315
## 2314 -36.1 4.964 5228.1 0.9229145 0.8983567
## 2315 -36.4 4.859 5191.0 0.8854962 0.8586118
## 2316 -42.7 4.957 5228.1 0.8798814 0.8983567
## 2317 -36.4 4.855 5191.0 0.9074675 0.8983567
## 2318 -36.4 4.859 5191.0 0.8874842 0.8983567
## 2319 -46.2 1.313 5099.1 0.8798814 0.8983567
## 2320 -42.7 4.962 5228.1 0.7666667 0.8983567
## 2321 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2322 -36.4 4.858 5191.0 0.9229145 0.9007315
## 2323 -41.8 4.961 5228.1 0.8798814 0.8983567
## 2324 -46.2 1.313 5099.1 0.9229145 0.8983567
## 2325 -41.8 4.967 5228.1 0.9229145 0.8983567
## 2326 -41.8 4.959 5228.1 0.8798814 0.8983567
## 2327 -36.1 4.964 5228.1 0.8960396 0.8983567
## 2328 -42.0 4.021 5195.8 0.8798814 0.8586118
## 2329 -36.4 4.855 5191.0 0.9229145 0.8983567
## 2330 -42.0 4.021 5195.8 0.9074675 0.8983567
## 2331 -41.8 4.959 5228.1 0.9271523 0.8983567
## 2332 -36.1 4.964 5228.1 0.8854962 0.8586118
## 2333 -41.8 4.959 5228.1 0.9229145 0.8983567
## 2334 -36.4 4.857 5191.0 0.8798814 0.8586118
## 2335 -41.8 4.959 5228.1 0.8874842 0.8983567
## 2336 -42.7 4.957 5228.1 0.9271523 0.8586118
## 2337 -36.4 4.855 5191.0 0.8874842 0.8983567
## 2338 -37.5 0.879 4963.6 0.8854962 0.8586118
## 2339 -36.4 4.857 5191.0 0.8851675 0.8983567
## 2340 -36.4 4.855 5191.0 0.9271523 0.8983567
## 2341 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2342 -42.7 4.957 5228.1 0.8798814 0.8586118
## 2343 -36.4 4.855 5191.0 0.9229145 0.8586118
## 2344 -42.0 4.076 5195.8 0.8874842 0.9007315
## 2345 -41.8 4.961 5228.1 0.9074675 0.8983567
## 2346 -46.2 1.313 5099.1 0.8960396 0.8983567
## 2347 -36.4 4.857 5191.0 0.6868132 0.8586118
## 2348 -42.0 4.021 5195.8 0.9229145 0.8983567
## 2349 -36.4 4.855 5191.0 0.9229145 0.8983567
## 2350 -41.8 4.959 5228.1 0.8798814 0.8983567
## 2351 -42.0 4.191 5195.8 0.9271523 0.8983567
## 2352 -42.7 4.960 5228.1 0.8854962 0.8983567
## 2353 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2354 -36.1 4.963 5228.1 0.8798814 0.8586118
## 2355 -36.4 4.858 5191.0 0.8854962 0.8983567
## 2356 -47.1 1.405 5099.1 0.9198606 0.8586118
## 2357 -47.1 1.405 5099.1 0.8798814 0.8586118
## 2358 -41.8 4.961 5228.1 0.8798814 0.9007315
## 2359 -47.1 1.405 5099.1 0.8854962 0.8983567
## 2360 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2361 -41.8 4.865 5228.1 0.9074675 0.8983567
## 2362 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2363 -36.4 4.857 5191.0 0.9271523 0.9007315
## 2364 -36.1 4.970 5228.1 0.7666667 0.8983567
## 2365 -41.8 4.865 5228.1 0.9229145 0.9007315
## 2366 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2367 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2368 -36.4 4.857 5191.0 0.8854962 0.9007315
## 2369 -46.2 1.244 5099.1 0.8798814 0.8983567
## 2370 -47.1 1.405 5099.1 0.9074675 0.8983567
## 2371 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2372 -47.1 1.466 5099.1 0.7666667 0.9007315
## 2373 -31.4 0.861 5076.2 0.9074675 0.8586118
## 2374 -46.2 1.299 5099.1 0.8798814 0.8983567
## 2375 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2376 -49.5 1.000 4963.6 0.7666667 0.8983567
## 2377 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2378 -42.7 4.962 5228.1 0.8960396 0.8983567
## 2379 -36.1 4.963 5228.1 0.8854962 0.8586118
## 2380 -36.4 4.857 5191.0 0.7666667 0.8586118
## 2381 -42.7 4.960 5228.1 0.8854962 0.8586118
## 2382 -36.4 4.858 5191.0 0.8798814 0.8983567
## 2383 -36.1 4.965 5228.1 0.8854962 0.8586118
## 2384 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2385 -41.8 4.865 5228.1 0.8798814 0.8586118
## 2386 -42.0 4.191 5195.8 0.9229145 0.8983567
## 2387 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2388 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2389 -47.1 1.405 5099.1 0.9074675 0.8983567
## 2390 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2391 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2392 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2393 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2394 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2395 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2396 -36.1 4.970 5228.1 0.8854962 0.8983567
## 2397 -49.5 1.032 4963.6 0.8798814 0.9007315
## 2398 -46.2 1.244 5099.1 0.8851675 0.8983567
## 2399 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2400 -46.2 1.244 5099.1 0.6868132 0.8586118
## 2401 -42.7 4.960 5228.1 0.9074675 0.8983567
## 2402 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2403 -41.8 4.960 5228.1 0.9074675 0.8983567
## 2404 -46.2 1.244 5099.1 0.8854962 0.8586118
## 2405 -26.9 0.739 5017.5 0.7666667 0.8983567
## 2406 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2407 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2408 -36.1 4.970 5228.1 0.8798814 0.8983567
## 2409 -41.8 4.865 5228.1 0.8854962 0.8983567
## 2410 -42.0 4.191 5195.8 0.9229145 0.8983567
## 2411 -46.2 1.264 5099.1 0.9229145 0.8586118
## 2412 -36.1 4.963 5228.1 0.8854962 0.8586118
## 2413 -41.8 4.865 5228.1 0.8798814 0.8983567
## 2414 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2415 -42.0 4.191 5195.8 0.9198606 0.8586118
## 2416 -47.1 1.405 5099.1 0.8874842 0.8586118
## 2417 -36.1 4.970 5228.1 0.9074675 0.8983567
## 2418 -47.1 1.405 5099.1 0.8854962 0.8586118
## 2419 -47.1 1.405 5099.1 0.8798814 0.8983567
## 2420 -41.8 4.947 5228.1 0.8854962 0.8586118
## 2421 -47.1 1.466 5099.1 0.8874842 0.8586118
## 2422 -41.8 4.866 5228.1 0.9074675 0.8586118
## 2423 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2424 -41.8 4.961 5228.1 0.9198606 0.8983567
## 2425 -31.4 0.861 5076.2 0.9074675 0.8983567
## 2426 -42.7 4.960 5228.1 0.9271523 0.8983567
## 2427 -36.1 4.965 5228.1 0.7666667 0.8983567
## 2428 -46.2 1.299 5099.1 0.8854962 0.8586118
## 2429 -47.1 1.405 5099.1 0.7666667 0.8983567
## 2430 -41.8 4.960 5228.1 0.8854962 0.8983567
## 2431 -33.0 0.709 5023.5 0.6868132 0.8586118
## 2432 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2433 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2434 -36.4 4.857 5191.0 0.8874842 0.9007315
## 2435 -42.7 4.960 5228.1 0.8874842 0.8586118
## 2436 -36.1 4.965 5228.1 0.9074675 0.8983567
## 2437 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2438 -42.7 4.962 5228.1 0.9198606 0.9007315
## 2439 -47.1 1.392 5099.1 0.9229145 0.8586118
## 2440 -41.8 4.961 5228.1 0.8798814 0.9007315
## 2441 -36.4 4.857 5191.0 0.8960396 0.9007315
## 2442 -36.1 4.970 5228.1 0.8854962 0.8983567
## 2443 -42.7 4.960 5228.1 0.8854962 0.8586118
## 2444 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2445 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2446 -26.9 0.731 5017.5 0.8798814 0.8586118
## 2447 -42.7 4.960 5228.1 0.9198606 0.8983567
## 2448 -41.8 4.961 5228.1 0.8854962 0.8983567
## 2449 -38.3 0.888 4991.6 0.8798814 0.8983567
## 2450 -30.1 0.722 5017.5 0.8798814 0.8983567
## 2451 -36.1 4.970 5228.1 0.8960396 0.8983567
## 2452 -47.1 1.405 5099.1 0.8854962 0.8586118
## 2453 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2454 -41.8 4.961 5228.1 0.8798814 0.9007315
## 2455 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2456 -46.2 1.299 5099.1 0.8798814 0.8586118
## 2457 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2458 -42.7 4.962 5228.1 0.9198606 0.8983567
## 2459 -42.7 4.960 5228.1 0.8854962 0.8586118
## 2460 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2461 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2462 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2463 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2464 -36.4 4.857 5191.0 0.8798814 0.9007315
## 2465 -41.8 4.865 5228.1 0.8874842 0.8586118
## 2466 -41.8 4.865 5228.1 0.8798814 0.8983567
## 2467 -42.7 4.960 5228.1 0.8854962 0.8983567
## 2468 -41.8 4.960 5228.1 0.8798814 0.8586118
## 2469 -46.2 1.299 5099.1 0.9229145 0.8586118
## 2470 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2471 -46.2 1.299 5099.1 0.9271523 0.8983567
## 2472 -42.7 4.960 5228.1 0.8874842 0.8983567
## 2473 -36.1 4.965 5228.1 0.8854962 0.9007315
## 2474 -42.0 4.191 5195.8 0.8874842 0.9007315
## 2475 -40.4 5.000 5195.8 0.8854962 0.9007315
## 2476 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2477 -40.8 1.266 5076.2 0.8851675 0.8983567
## 2478 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2479 -41.8 4.961 5228.1 0.8798814 0.8586118
## 2480 -41.8 4.961 5228.1 0.8798814 0.8983567
## 2481 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2482 -42.7 4.960 5228.1 0.8874842 0.8983567
## 2483 -38.3 0.896 4991.6 0.8798814 0.8586118
## 2484 -36.4 4.857 5191.0 0.9271523 0.8983567
## 2485 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2486 -41.8 4.865 5228.1 0.8854962 0.8983567
## 2487 -46.2 1.354 5099.1 0.8798814 0.8983567
## 2488 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2489 -42.7 4.960 5228.1 0.8854962 0.8586118
## 2490 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2491 -36.1 4.970 5228.1 0.7666667 0.8983567
## 2492 -36.4 4.857 5191.0 0.9271523 0.8983567
## 2493 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2494 -41.8 4.960 5228.1 0.8798814 0.9007315
## 2495 -42.0 4.191 5195.8 0.9074675 0.8983567
## 2496 -39.8 0.720 4991.6 0.8854962 0.8983567
## 2497 -46.2 1.299 5099.1 0.9229145 0.8586118
## 2498 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2499 -36.1 4.963 5228.1 0.9074675 0.8983567
## 2500 -42.7 4.962 5228.1 0.9074675 0.8586118
## 2501 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2502 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2503 -36.1 4.970 5228.1 0.8854962 0.8983567
## 2504 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2505 -36.1 4.963 5228.1 0.8798814 0.8586118
## 2506 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2507 -36.1 4.970 5228.1 0.9229145 0.8983567
## 2508 -42.7 4.958 5228.1 0.9229145 0.8983567
## 2509 -36.1 4.965 5228.1 0.8798814 0.8586118
## 2510 -36.1 4.963 5228.1 0.9198606 0.8983567
## 2511 -47.1 1.405 5099.1 0.9074675 0.8983567
## 2512 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2513 -42.7 4.960 5228.1 0.8798814 0.8586118
## 2514 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2515 -41.8 4.865 5228.1 0.8874842 0.8983567
## 2516 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2517 -42.7 4.960 5228.1 0.8798814 0.8586118
## 2518 -36.4 4.857 5191.0 0.9229145 0.8586118
## 2519 -41.8 4.960 5228.1 0.9229145 0.8983567
## 2520 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2521 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2522 -47.1 1.405 5099.1 0.8798814 0.8586118
## 2523 -36.4 4.858 5191.0 0.8854962 0.8586118
## 2524 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2525 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2526 -41.8 4.960 5228.1 0.8960396 0.8983567
## 2527 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2528 -42.7 4.960 5228.1 0.8854962 0.8586118
## 2529 -36.4 4.857 5191.0 0.9229145 0.8586118
## 2530 -42.7 4.962 5228.1 0.8854962 0.8983567
## 2531 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2532 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2533 -47.1 1.466 5099.1 0.9229145 0.8586118
## 2534 -36.4 4.858 5191.0 0.8798814 0.8983567
## 2535 -36.1 4.970 5228.1 0.8960396 0.8983567
## 2536 -46.2 1.354 5099.1 0.9074675 0.8983567
## 2537 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2538 -42.7 4.960 5228.1 0.9229145 0.9007315
## 2539 -46.2 1.244 5099.1 0.8874842 0.8586118
## 2540 -41.8 4.960 5228.1 0.9229145 0.8983567
## 2541 -36.4 4.857 5191.0 0.9229145 0.8586118
## 2542 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2543 -36.1 4.970 5228.1 0.8798814 0.8586118
## 2544 -36.4 4.858 5191.0 0.8798814 0.9007315
## 2545 -36.4 4.857 5191.0 0.9229145 0.8586118
## 2546 -40.8 1.281 5076.2 0.8854962 0.8983567
## 2547 -36.4 4.857 5191.0 0.7666667 0.8983567
## 2548 -36.1 4.965 5228.1 0.9074675 0.8983567
## 2549 -38.3 0.904 4991.6 0.8854962 0.8983567
## 2550 -42.7 4.962 5228.1 0.9271523 0.8586118
## 2551 -30.1 0.714 5017.5 0.9229145 0.8586118
## 2552 -42.7 4.960 5228.1 0.8798814 0.8586118
## 2553 -46.2 1.244 5099.1 0.7666667 0.9007315
## 2554 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2555 -47.1 1.405 5099.1 0.9074675 0.8983567
## 2556 -42.7 4.960 5228.1 0.7666667 0.8983567
## 2557 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2558 -42.0 4.191 5195.8 0.9074675 0.8983567
## 2559 -36.4 4.857 5191.0 0.9074675 0.9007315
## 2560 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2561 -36.1 4.963 5228.1 0.8854962 0.8586118
## 2562 -42.7 4.960 5228.1 0.8874842 0.8983567
## 2563 -50.0 1.811 5099.1 0.8798814 0.8586118
## 2564 -36.4 4.857 5191.0 0.8851675 0.8983567
## 2565 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2566 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2567 -42.7 4.960 5228.1 0.8854962 0.8983567
## 2568 -36.1 4.965 5228.1 0.8960396 0.8983567
## 2569 -38.3 0.896 4991.6 0.8854962 0.8586118
## 2570 -41.8 4.865 5228.1 0.9229145 0.9007315
## 2571 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2572 -36.1 4.965 5228.1 0.7666667 0.8983567
## 2573 -46.2 1.244 5099.1 0.8798814 0.8586118
## 2574 -36.1 4.970 5228.1 0.8032787 0.8983567
## 2575 -40.8 1.215 5076.2 0.8798814 0.8586118
## 2576 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2577 -46.2 1.244 5099.1 0.8798814 0.8586118
## 2578 -38.3 0.896 4991.6 0.7666667 0.8586118
## 2579 -41.8 4.961 5228.1 0.8854962 0.8983567
## 2580 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2581 -38.3 0.896 4991.6 0.8798814 0.8983567
## 2582 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2583 -40.8 1.266 5076.2 0.9074675 0.8983567
## 2584 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2585 -36.1 4.965 5228.1 0.8854962 0.8983567
## 2586 -46.2 1.244 5099.1 0.9229145 0.8586118
## 2587 -50.0 1.520 5099.1 0.6868132 0.8586118
## 2588 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2589 -40.8 1.260 5076.2 0.8874842 0.9007315
## 2590 -47.1 1.405 5099.1 0.8854962 0.8983567
## 2591 -46.2 1.299 5099.1 0.9271523 0.8983567
## 2592 -36.1 4.965 5228.1 0.9074675 0.8983567
## 2593 -36.1 4.965 5228.1 0.9198606 0.8983567
## 2594 -36.4 4.857 5191.0 0.8854962 0.8586118
## 2595 -36.1 4.965 5228.1 0.9074675 0.8586118
## 2596 -42.7 4.968 5228.1 0.9074675 0.8983567
## 2597 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2598 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2599 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2600 -41.8 4.961 5228.1 0.9229145 0.8586118
## 2601 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2602 -36.4 4.857 5191.0 0.6868132 0.8586118
## 2603 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2604 -40.0 0.685 5008.7 0.8798814 0.8983567
## 2605 -36.4 4.857 5191.0 0.8851675 0.8983567
## 2606 -46.2 1.244 5099.1 0.9074675 0.9007315
## 2607 -50.8 1.039 4963.6 0.8798814 0.8586118
## 2608 -41.8 4.960 5228.1 0.9229145 0.9007315
## 2609 -36.4 4.858 5191.0 0.6868132 0.8586118
## 2610 -40.3 0.793 4991.6 0.8854962 0.8586118
## 2611 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2612 -41.8 4.865 5228.1 0.8874842 0.8586118
## 2613 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2614 -42.0 4.191 5195.8 0.9074675 0.8983567
## 2615 -41.8 4.958 5228.1 0.9074675 0.8586118
## 2616 -41.8 4.960 5228.1 0.9074675 0.8983567
## 2617 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2618 -46.2 1.244 5099.1 0.9271523 0.9007315
## 2619 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2620 -42.7 4.962 5228.1 0.9271523 0.8983567
## 2621 -42.7 4.962 5228.1 0.8960396 0.9007315
## 2622 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2623 -42.7 4.960 5228.1 0.9074675 0.8983567
## 2624 -41.8 4.960 5228.1 0.8874842 0.8586118
## 2625 -36.1 4.965 5228.1 0.8798814 0.9007315
## 2626 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2627 -36.4 4.858 5191.0 0.9074675 0.8983567
## 2628 -50.0 1.703 5099.1 0.7666667 0.8586118
## 2629 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2630 -36.4 4.857 5191.0 0.8854962 0.8586118
## 2631 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2632 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2633 -46.2 1.299 5099.1 0.8854962 0.8586118
## 2634 -36.4 4.858 5191.0 0.8798814 0.8983567
## 2635 -42.7 4.960 5228.1 0.9229145 0.9007315
## 2636 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2637 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2638 -36.4 4.857 5191.0 0.7666667 0.8983567
## 2639 -36.1 4.970 5228.1 0.8798814 0.8586118
## 2640 -36.1 4.963 5228.1 0.7666667 0.9007315
## 2641 -42.7 4.960 5228.1 0.9229145 0.9007315
## 2642 -41.8 4.866 5228.1 0.8874842 0.8586118
## 2643 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2644 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2645 -49.5 1.000 4963.6 0.8854962 0.9007315
## 2646 -42.7 4.960 5228.1 0.8798814 0.8586118
## 2647 -36.1 4.970 5228.1 0.8798814 0.9007315
## 2648 -36.1 4.965 5228.1 0.8960396 0.8983567
## 2649 -36.4 4.855 5191.0 0.8798814 0.8983567
## 2650 -42.0 4.191 5195.8 0.9271523 0.8983567
## 2651 -40.8 1.260 5076.2 0.8798814 0.8586118
## 2652 -41.8 4.865 5228.1 0.9074675 0.8586118
## 2653 -36.1 4.965 5228.1 0.8874842 0.8983567
## 2654 -36.1 4.963 5228.1 0.9229145 0.8983567
## 2655 -46.2 1.354 5099.1 0.7666667 0.8983567
## 2656 -42.7 4.962 5228.1 0.9198606 0.8983567
## 2657 -42.7 4.962 5228.1 0.9271523 0.8983567
## 2658 -46.2 1.244 5099.1 0.9074675 0.9007315
## 2659 -36.1 4.965 5228.1 0.8854962 0.8586118
## 2660 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2661 -30.1 0.715 5017.5 0.8798814 0.8586118
## 2662 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2663 -47.1 1.405 5099.1 0.7666667 0.9007315
## 2664 -50.0 1.811 5099.1 0.8798814 0.8983567
## 2665 -47.1 1.466 5099.1 0.8798814 0.8586118
## 2666 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2667 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2668 -38.3 0.898 4991.6 0.7666667 0.8983567
## 2669 -42.7 4.960 5228.1 0.8960396 0.9007315
## 2670 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2671 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2672 -46.2 1.264 5099.1 0.8798814 0.8983567
## 2673 -29.8 0.797 5017.5 0.8798814 0.8983567
## 2674 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2675 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2676 -42.0 4.191 5195.8 0.8798814 0.8983567
## 2677 -41.8 4.961 5228.1 0.8854962 0.8983567
## 2678 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2679 -42.7 4.960 5228.1 0.8854962 0.8983567
## 2680 -36.4 4.857 5191.0 0.8874842 0.9007315
## 2681 -26.9 0.739 5017.5 0.7666667 0.8983567
## 2682 -42.0 4.191 5195.8 0.8851675 0.8983567
## 2683 -42.0 4.191 5195.8 0.8960396 0.8983567
## 2684 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2685 -47.1 1.405 5099.1 0.9229145 0.8586118
## 2686 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2687 -42.7 4.960 5228.1 0.8874842 0.8983567
## 2688 -36.1 4.965 5228.1 0.8798814 0.9007315
## 2689 -36.4 4.857 5191.0 0.8798814 0.9007315
## 2690 -30.1 0.719 5017.5 0.8798814 0.8983567
## 2691 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2692 -36.4 4.857 5191.0 0.8854962 0.9007315
## 2693 -42.7 4.962 5228.1 0.8032787 0.8983567
## 2694 -42.0 4.191 5195.8 0.8798814 0.8983567
## 2695 -36.4 4.857 5191.0 0.9198606 0.8983567
## 2696 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2697 -36.4 4.857 5191.0 0.9074675 0.8983567
## 2698 -42.7 4.962 5228.1 0.8874842 0.8586118
## 2699 -40.8 1.260 5076.2 0.7666667 0.8983567
## 2700 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2701 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2702 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2703 -36.1 4.970 5228.1 0.8854962 0.8983567
## 2704 -40.0 0.697 5008.7 0.8851675 0.8586118
## 2705 -42.7 4.960 5228.1 0.8854962 0.8983567
## 2706 -41.8 4.960 5228.1 0.8798814 0.8586118
## 2707 -41.8 4.865 5228.1 0.8798814 0.8983567
## 2708 -41.8 4.960 5228.1 0.7666667 0.8983567
## 2709 -42.7 4.962 5228.1 0.8798814 0.8586118
## 2710 -36.4 4.857 5191.0 0.9271523 0.8983567
## 2711 -42.0 4.191 5195.8 0.8798814 0.8983567
## 2712 -47.1 1.405 5099.1 0.6868132 0.8586118
## 2713 -36.4 4.860 5191.0 0.8798814 0.8983567
## 2714 -36.4 4.857 5191.0 0.7666667 0.8983567
## 2715 -42.0 4.191 5195.8 0.9074675 0.8983567
## 2716 -42.7 4.960 5228.1 0.9271523 0.8983567
## 2717 -47.1 1.405 5099.1 0.8798814 0.8586118
## 2718 -41.8 4.865 5228.1 0.8874842 0.8983567
## 2719 -34.6 0.642 5008.7 0.8798814 0.8586118
## 2720 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2721 -42.0 4.076 5195.8 0.9229145 0.8983567
## 2722 -40.8 1.215 5076.2 0.8854962 0.9007315
## 2723 -41.8 4.865 5228.1 0.8798814 0.9007315
## 2724 -42.7 4.962 5228.1 0.8854962 0.9007315
## 2725 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2726 -30.1 0.714 5017.5 0.8874842 0.8983567
## 2727 -41.8 4.961 5228.1 0.9074675 0.8983567
## 2728 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2729 -36.4 4.858 5191.0 0.9229145 0.8586118
## 2730 -42.7 4.962 5228.1 0.9074675 0.8983567
## 2731 -42.0 4.191 5195.8 0.8874842 0.9007315
## 2732 -46.2 1.299 5099.1 0.9074675 0.8983567
## 2733 -42.0 4.191 5195.8 0.8798814 0.8983567
## 2734 -42.7 4.960 5228.1 0.8874842 0.8983567
## 2735 -42.7 4.962 5228.1 0.9198606 0.8983567
## 2736 -47.1 1.405 5099.1 0.9074675 0.9007315
## 2737 -46.2 1.244 5099.1 0.8798814 0.8983567
## 2738 -41.8 4.960 5228.1 0.8854962 0.8983567
## 2739 -46.2 1.244 5099.1 0.8798814 0.8586118
## 2740 -34.8 0.646 5008.7 0.8854962 0.8983567
## 2741 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2742 -46.2 1.354 5099.1 0.7666667 0.8983567
## 2743 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2744 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2745 -42.0 4.191 5195.8 0.8854962 0.8983567
## 2746 -36.1 4.965 5228.1 0.8798814 0.8586118
## 2747 -42.7 4.962 5228.1 0.9074675 0.9007315
## 2748 -40.3 0.793 4991.6 0.8798814 0.9007315
## 2749 -41.8 4.961 5228.1 0.8798814 0.8983567
## 2750 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2751 -36.1 4.970 5228.1 0.8874842 0.8983567
## 2752 -36.1 4.965 5228.1 0.8854962 0.8586118
## 2753 -41.8 4.961 5228.1 0.8874842 0.8983567
## 2754 -50.0 1.811 5099.1 0.9229145 0.8586118
## 2755 -42.7 4.962 5228.1 0.8854962 0.9007315
## 2756 -41.8 4.865 5228.1 0.9198606 0.8983567
## 2757 -42.7 4.962 5228.1 0.9074675 0.8983567
## 2758 -33.0 0.717 5023.5 0.8960396 0.8586118
## 2759 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2760 -42.7 4.960 5228.1 0.8798814 0.9007315
## 2761 -36.1 4.965 5228.1 0.8798814 0.9007315
## 2762 -42.7 4.962 5228.1 0.8798814 0.9007315
## 2763 -42.0 4.076 5195.8 0.8874842 0.8983567
## 2764 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2765 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2766 -42.0 4.191 5195.8 0.8798814 0.8983567
## 2767 -36.4 4.857 5191.0 0.9074675 0.9007315
## 2768 -42.7 4.962 5228.1 0.9229145 0.9007315
## 2769 -42.7 4.962 5228.1 0.9074675 0.9007315
## 2770 -42.0 4.191 5195.8 0.8874842 0.8983567
## 2771 -46.2 1.354 5099.1 0.8798814 0.8983567
## 2772 -42.0 4.191 5195.8 0.9074675 0.8983567
## 2773 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2774 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2775 -42.7 4.962 5228.1 0.9198606 0.8983567
## 2776 -36.1 4.970 5228.1 0.8854962 0.9007315
## 2777 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2778 -36.4 4.857 5191.0 0.9198606 0.8983567
## 2779 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2780 -36.4 4.857 5191.0 0.8854962 0.9007315
## 2781 -36.1 4.970 5228.1 0.7666667 0.8983567
## 2782 -36.4 4.858 5191.0 0.8798814 0.8586118
## 2783 -36.1 4.963 5228.1 0.8960396 0.8983567
## 2784 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2785 -41.8 4.866 5228.1 0.9229145 0.8983567
## 2786 -46.2 1.244 5099.1 0.8854962 0.9007315
## 2787 -46.2 1.244 5099.1 0.8798814 0.8983567
## 2788 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2789 -34.6 0.642 5008.7 0.8798814 0.8586118
## 2790 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2791 -46.2 1.244 5099.1 0.9074675 0.8983567
## 2792 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2793 -40.8 1.266 5076.2 0.8798814 0.8983567
## 2794 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2795 -46.2 1.244 5099.1 0.9229145 0.8586118
## 2796 -42.7 4.968 5228.1 0.9198606 0.8983567
## 2797 -41.8 4.960 5228.1 0.8798814 0.8586118
## 2798 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2799 -36.4 4.858 5191.0 0.8798814 0.8983567
## 2800 -41.8 4.865 5228.1 0.8798814 0.8983567
## 2801 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2802 -42.7 4.962 5228.1 0.8851675 0.9007315
## 2803 -41.8 4.865 5228.1 0.8874842 0.9007315
## 2804 -42.7 4.961 5228.1 0.9074675 0.8983567
## 2805 -46.2 1.354 5099.1 0.9229145 0.8983567
## 2806 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2807 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2808 -36.1 4.965 5228.1 0.8854962 0.9007315
## 2809 -37.5 0.882 4963.6 0.9229145 0.8983567
## 2810 -42.7 4.962 5228.1 0.8874842 0.8983567
## 2811 -36.1 4.965 5228.1 0.8854962 0.9007315
## 2812 -46.2 1.266 5099.1 0.8798814 0.8586118
## 2813 -36.1 4.963 5228.1 0.8854962 0.8586118
## 2814 -36.4 4.857 5191.0 0.8874842 0.8983567
## 2815 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2816 -36.1 4.963 5228.1 0.8798814 0.8983567
## 2817 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2818 -36.4 4.857 5191.0 0.8851675 0.8983567
## 2819 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2820 -46.2 1.244 5099.1 0.8798814 0.9007315
## 2821 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2822 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2823 -42.7 4.962 5228.1 0.8798814 0.9007315
## 2824 -42.0 4.191 5195.8 0.8854962 0.8983567
## 2825 -41.8 4.866 5228.1 0.9271523 0.8983567
## 2826 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2827 -42.0 4.191 5195.8 0.8798814 0.8983567
## 2828 -41.8 4.958 5228.1 0.8798814 0.8983567
## 2829 -42.7 4.962 5228.1 0.8960396 0.8983567
## 2830 -42.7 4.960 5228.1 0.8798814 0.8586118
## 2831 -41.8 4.865 5228.1 0.8032787 0.8983567
## 2832 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2833 -46.2 1.244 5099.1 0.8798814 0.8586118
## 2834 -42.7 4.962 5228.1 0.8854962 0.8983567
## 2835 -41.8 4.958 5228.1 0.9198606 0.8586118
## 2836 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2837 -42.7 4.960 5228.1 0.8874842 0.8983567
## 2838 -46.2 1.244 5099.1 0.8798814 0.8586118
## 2839 -46.2 1.299 5099.1 0.9229145 0.8586118
## 2840 -46.2 1.299 5099.1 0.9229145 0.8983567
## 2841 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2842 -42.7 4.962 5228.1 0.8854962 0.8983567
## 2843 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2844 -41.8 4.866 5228.1 0.9229145 0.8983567
## 2845 -36.1 4.962 5228.1 0.9074675 0.8983567
## 2846 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2847 -46.2 1.354 5099.1 0.7666667 0.8983567
## 2848 -40.3 0.827 4991.6 0.8798814 0.8586118
## 2849 -41.8 4.865 5228.1 0.7666667 0.8983567
## 2850 -26.9 0.739 5017.5 0.8874842 0.8586118
## 2851 -50.0 1.703 5099.1 0.9074675 0.8586118
## 2852 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2853 -36.4 4.857 5191.0 0.9229145 0.9007315
## 2854 -41.8 4.960 5228.1 0.9271523 0.8983567
## 2855 -42.7 4.962 5228.1 0.9229145 0.8983567
## 2856 -46.2 1.244 5099.1 0.8874842 0.8983567
## 2857 -41.8 4.947 5228.1 0.8798814 0.8983567
## 2858 -31.4 0.884 5076.2 0.9229145 0.8983567
## 2859 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2860 -41.8 4.960 5228.1 0.9229145 0.8983567
## 2861 -47.1 1.405 5099.1 0.9229145 0.8586118
## 2862 -41.8 4.865 5228.1 0.8874842 0.9007315
## 2863 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2864 -46.2 1.354 5099.1 0.8854962 0.8983567
## 2865 -46.2 1.244 5099.1 0.8798814 0.8983567
## 2866 -36.1 4.965 5228.1 0.8960396 0.8983567
## 2867 -46.2 1.244 5099.1 0.8851675 0.8983567
## 2868 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2869 -36.1 4.965 5228.1 0.8960396 0.8983567
## 2870 -36.4 4.858 5191.0 0.8032787 0.8983567
## 2871 -41.8 4.961 5228.1 0.9271523 0.8983567
## 2872 -47.1 1.405 5099.1 0.7666667 0.9007315
## 2873 -42.7 4.962 5228.1 0.8798814 0.9007315
## 2874 -36.1 4.965 5228.1 0.8798814 0.9007315
## 2875 -46.2 1.354 5099.1 0.8874842 0.8983567
## 2876 -42.7 4.960 5228.1 0.8874842 0.9007315
## 2877 -42.7 4.962 5228.1 0.8854962 0.9007315
## 2878 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2879 -47.1 1.405 5099.1 0.9198606 0.8983567
## 2880 -41.8 4.865 5228.1 0.8874842 0.8983567
## 2881 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2882 -42.0 4.191 5195.8 0.9271523 0.8983567
## 2883 -47.1 1.405 5099.1 0.9229145 0.8983567
## 2884 -42.7 4.962 5228.1 0.8798814 0.9007315
## 2885 -41.8 4.961 5228.1 0.6868132 0.8586118
## 2886 -42.0 4.191 5195.8 0.8854962 0.8983567
## 2887 -47.1 1.405 5099.1 0.9198606 0.8586118
## 2888 -50.0 1.538 5099.1 0.6868132 0.8586118
## 2889 -42.0 4.076 5195.8 0.7666667 0.8983567
## 2890 -41.8 4.865 5228.1 0.8798814 0.8983567
## 2891 -41.8 4.960 5228.1 0.9229145 0.8983567
## 2892 -42.7 4.962 5228.1 0.9074675 0.8983567
## 2893 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2894 -47.1 1.405 5099.1 0.8874842 0.9007315
## 2895 -34.6 0.642 5008.7 0.8798814 0.8983567
## 2896 -42.0 4.191 5195.8 0.8854962 0.8983567
## 2897 -36.4 4.858 5191.0 0.9074675 0.8983567
## 2898 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2899 -36.4 4.858 5191.0 0.8874842 0.9007315
## 2900 -36.1 4.963 5228.1 0.8798814 0.8586118
## 2901 -36.4 4.857 5191.0 0.7666667 0.9007315
## 2902 -36.1 4.962 5228.1 0.9198606 0.8983567
## 2903 -41.8 4.865 5228.1 0.9229145 0.8586118
## 2904 -41.8 4.961 5228.1 0.9074675 0.8983567
## 2905 -42.7 4.960 5228.1 0.8798814 0.8983567
## 2906 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2907 -36.4 4.857 5191.0 0.9074675 0.9007315
## 2908 -46.2 1.299 5099.1 0.8798814 0.8586118
## 2909 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2910 -42.7 4.962 5228.1 0.9229145 0.8586118
## 2911 -42.7 4.962 5228.1 0.8874842 0.9007315
## 2912 -42.7 4.962 5228.1 0.8798814 0.9007315
## 2913 -46.2 1.354 5099.1 0.9229145 0.8983567
## 2914 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2915 -36.1 4.963 5228.1 0.8851675 0.9007315
## 2916 -36.4 4.857 5191.0 0.8874842 0.8983567
## 2917 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2918 -42.0 4.191 5195.8 0.9271523 0.8983567
## 2919 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2920 -36.4 4.857 5191.0 0.8798814 0.8586118
## 2921 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2922 -42.0 4.191 5195.8 0.8854962 0.8983567
## 2923 -36.1 4.970 5228.1 0.8854962 0.8983567
## 2924 -42.0 4.733 5195.8 0.8798814 0.8983567
## 2925 -31.4 0.821 5076.2 0.8798814 0.8983567
## 2926 -36.1 4.963 5228.1 0.8854962 0.9007315
## 2927 -41.8 4.865 5228.1 0.9229145 0.8983567
## 2928 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2929 -36.4 4.857 5191.0 0.8798814 0.8586118
## 2930 -36.4 4.857 5191.0 0.8798814 0.8983567
## 2931 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2932 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2933 -42.0 4.191 5195.8 0.8874842 0.9007315
## 2934 -36.4 4.858 5191.0 0.9271523 0.8983567
## 2935 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2936 -42.0 4.191 5195.8 0.9074675 0.9007315
## 2937 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2938 -36.1 4.965 5228.1 0.9229145 0.8983567
## 2939 -42.0 4.191 5195.8 0.9229145 0.8983567
## 2940 -46.2 1.299 5099.1 0.9198606 0.8586118
## 2941 -36.1 4.963 5228.1 0.9074675 0.8983567
## 2942 -41.8 4.961 5228.1 0.6868132 0.8586118
## 2943 -42.7 4.958 5228.1 0.9229145 0.8983567
## 2944 -42.7 4.962 5228.1 0.8798814 0.8983567
## 2945 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2946 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2947 -42.7 4.960 5228.1 0.9229145 0.8586118
## 2948 -29.8 0.739 5017.5 0.7666667 0.8586118
## 2949 -36.1 4.963 5228.1 0.9229145 0.8983567
## 2950 -47.1 1.405 5099.1 0.9229145 0.9007315
## 2951 -36.1 4.965 5228.1 0.8798814 0.8983567
## 2952 -42.0 4.191 5195.8 0.7666667 0.8983567
## 2953 -46.2 1.299 5099.1 0.8798814 0.9007315
## 2954 -42.7 4.962 5228.1 0.8960396 0.9007315
## 2955 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2956 -47.1 1.405 5099.1 0.8854962 0.8586118
## 2957 -46.2 1.344 5099.1 0.9229145 0.8983567
## 2958 -36.1 4.965 5228.1 0.8798814 0.8586118
## 2959 -31.4 0.884 5076.2 0.8798814 0.8586118
## 2960 -40.8 1.266 5076.2 0.8854962 0.8983567
## 2961 -41.8 4.865 5228.1 0.9074675 0.8983567
## 2962 -36.1 4.968 5228.1 0.8854962 0.8983567
## 2963 -36.1 4.963 5228.1 0.8798814 0.8586118
## 2964 -47.1 1.466 5099.1 0.9074675 0.9007315
## 2965 -36.4 4.858 5191.0 0.9198606 0.8983567
## 2966 -46.2 1.299 5099.1 0.8798814 0.8983567
## 2967 -36.4 4.855 5191.0 0.9229145 0.8586118
## 2968 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2969 -36.4 4.858 5191.0 0.8874842 0.8586118
## 2970 -36.4 4.857 5191.0 0.8874842 0.8983567
## 2971 -47.1 1.365 5099.1 0.8798814 0.8586118
## 2972 -47.1 1.405 5099.1 0.9271523 0.8983567
## 2973 -36.1 4.963 5228.1 0.8854962 0.8983567
## 2974 -36.4 4.857 5191.0 0.9229145 0.8983567
## 2975 -47.1 1.405 5099.1 0.8874842 0.8983567
## 2976 -31.4 0.821 5076.2 0.8798814 0.8983567
## 2977 -46.2 1.299 5099.1 0.8874842 0.8983567
## 2978 -41.8 4.961 5228.1 0.9229145 0.8983567
## 2979 -38.3 0.904 4991.6 0.8798814 0.8586118
## 2980 -42.0 4.191 5195.8 0.9271523 0.8983567
## 2981 -42.7 4.963 5228.1 0.8874842 0.8983567
## 2982 -36.1 4.965 5228.1 0.9198606 0.8983567
## 2983 -41.8 4.961 5228.1 0.9271523 0.8983567
## 2984 -36.1 4.965 5228.1 0.8854962 0.9007315
## 2985 -42.7 4.962 5228.1 0.9271523 0.8586118
## 2986 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2987 -42.7 4.960 5228.1 0.9229145 0.8983567
## 2988 -42.7 4.962 5228.1 0.8874842 0.9007315
## 2989 -41.8 4.961 5228.1 0.8854962 0.8983567
## 2990 -47.1 1.466 5099.1 0.9229145 0.8983567
## 2991 -36.4 4.858 5191.0 0.9229145 0.8983567
## 2992 -42.7 4.962 5228.1 0.9198606 0.8983567
## 2993 -47.1 1.483 5099.1 0.8854962 0.8586118
## 2994 -42.0 4.191 5195.8 0.8851675 0.8983567
## 2995 -33.0 0.706 5023.5 0.8854962 0.8983567
## 2996 -42.0 4.191 5195.8 0.8798814 0.9007315
## 2997 -36.4 4.857 5191.0 0.8854962 0.8983567
## 2998 -41.8 4.960 5228.1 0.8874842 0.8983567
## 2999 -42.7 4.963 5228.1 0.9229145 0.8586118
## 3000 -42.7 4.962 5228.1 0.8874842 0.8983567
## 3001 -36.1 4.963 5228.1 0.8854962 0.9007315
## 3002 -42.0 3.879 5195.8 0.9271523 0.8586118
## 3003 -36.1 4.965 5228.1 0.8854962 0.8586118
## 3004 -36.4 4.857 5191.0 0.8874842 0.9007315
## 3005 -47.1 1.410 5099.1 0.9229145 0.8983567
## 3006 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3007 -42.7 4.962 5228.1 0.8854962 0.8586118
## 3008 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3009 -36.4 4.856 5191.0 0.8798814 0.8983567
## 3010 -33.0 0.706 5023.5 0.9198606 0.8983567
## 3011 -33.0 0.709 5023.5 0.8854962 0.8586118
## 3012 -47.1 1.365 5099.1 0.8798814 0.8586118
## 3013 -36.4 4.860 5191.0 0.8854962 0.9007315
## 3014 -41.8 4.960 5228.1 0.8798814 0.8586118
## 3015 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3016 -46.2 1.354 5099.1 0.8874842 0.8983567
## 3017 -42.7 4.962 5228.1 0.8874842 0.8586118
## 3018 -47.1 1.410 5099.1 0.9074675 0.8983567
## 3019 -36.1 4.965 5228.1 0.8874842 0.8983567
## 3020 -42.7 4.968 5228.1 0.8874842 0.9007315
## 3021 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3022 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3023 -42.7 4.962 5228.1 0.9074675 0.8983567
## 3024 -36.1 4.970 5228.1 0.9074675 0.8983567
## 3025 -47.1 1.410 5099.1 0.9271523 0.8983567
## 3026 -36.4 4.860 5191.0 0.8032787 0.8983567
## 3027 -42.0 4.191 5195.8 0.8854962 0.8983567
## 3028 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3029 -36.1 4.964 5228.1 0.8854962 0.8586118
## 3030 -42.7 4.960 5228.1 0.8874842 0.8983567
## 3031 -41.8 4.961 5228.1 0.8798814 0.8983567
## 3032 -47.1 1.410 5099.1 0.9074675 0.8586118
## 3033 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3034 -36.1 4.965 5228.1 0.8854962 0.8586118
## 3035 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3036 -36.4 4.860 5191.0 0.9198606 0.8983567
## 3037 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3038 -46.2 1.264 5099.1 0.9198606 0.8983567
## 3039 -42.7 4.960 5228.1 0.9074675 0.8983567
## 3040 -42.7 4.960 5228.1 0.9229145 0.9007315
## 3041 -47.1 1.410 5099.1 0.8798814 0.8586118
## 3042 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3043 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3044 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3045 -36.1 4.970 5228.1 0.9229145 0.8983567
## 3046 -42.0 4.191 5195.8 0.8874842 0.9007315
## 3047 -36.1 4.965 5228.1 0.7666667 0.8983567
## 3048 -36.1 4.963 5228.1 0.8851675 0.9007315
## 3049 -42.7 4.962 5228.1 0.8854962 0.8586118
## 3050 -36.1 4.970 5228.1 0.9074675 0.9007315
## 3051 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3052 -42.0 4.191 5195.8 0.8874842 0.8983567
## 3053 -36.1 4.965 5228.1 0.8798814 0.8586118
## 3054 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3055 -36.1 4.965 5228.1 0.8798814 0.9007315
## 3056 -42.7 4.962 5228.1 0.9198606 0.8983567
## 3057 -41.8 4.866 5228.1 0.9229145 0.9007315
## 3058 -42.7 4.963 5228.1 0.9229145 0.8983567
## 3059 -36.4 4.860 5191.0 0.8851675 0.9007315
## 3060 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3061 -36.4 4.858 5191.0 0.8798814 0.8983567
## 3062 -46.2 1.266 5099.1 0.8798814 0.8983567
## 3063 -47.1 1.365 5099.1 0.8854962 0.9007315
## 3064 -42.7 4.961 5228.1 0.9229145 0.8983567
## 3065 -36.1 4.962 5228.1 0.8960396 0.8983567
## 3066 -46.2 1.244 5099.1 0.8798814 0.8983567
## 3067 -46.2 1.244 5099.1 0.9229145 0.8983567
## 3068 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3069 -40.8 1.260 5076.2 0.6868132 0.8586118
## 3070 -47.1 1.410 5099.1 0.9074675 0.8983567
## 3071 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3072 -46.2 1.244 5099.1 0.9229145 0.8586118
## 3073 -42.7 4.960 5228.1 0.9074675 0.8983567
## 3074 -46.2 1.264 5099.1 0.8798814 0.8983567
## 3075 -42.7 4.968 5228.1 0.8798814 0.8586118
## 3076 -47.1 1.365 5099.1 0.9074675 0.8983567
## 3077 -36.1 4.970 5228.1 0.7666667 0.8983567
## 3078 -42.7 4.960 5228.1 0.9271523 0.8983567
## 3079 -46.2 1.264 5099.1 0.8798814 0.8983567
## 3080 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3081 -42.0 4.076 5195.8 0.8874842 0.8586118
## 3082 -30.1 0.714 5017.5 0.9074675 0.8983567
## 3083 -41.8 4.866 5228.1 0.9229145 0.8983567
## 3084 -36.1 4.965 5228.1 0.9074675 0.8983567
## 3085 -41.8 4.947 5228.1 0.9198606 0.8586118
## 3086 -40.8 1.262 5076.2 0.8798814 0.8586118
## 3087 -42.7 4.958 5228.1 0.9271523 0.8983567
## 3088 -41.8 4.960 5228.1 0.9229145 0.8983567
## 3089 -50.0 1.520 5099.1 0.8854962 0.8586118
## 3090 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3091 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3092 -47.1 1.410 5099.1 0.8798814 0.8586118
## 3093 -46.2 1.266 5099.1 0.9229145 0.8983567
## 3094 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3095 -36.1 4.964 5228.1 0.9229145 0.8983567
## 3096 -42.0 4.191 5195.8 0.8798814 0.8586118
## 3097 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3098 -42.7 4.968 5228.1 0.8854962 0.8586118
## 3099 -36.4 4.855 5191.0 0.8798814 0.8983567
## 3100 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3101 -50.0 1.703 5099.1 0.9074675 0.8586118
## 3102 -41.8 4.960 5228.1 0.8854962 0.8983567
## 3103 -41.8 4.960 5228.1 0.9229145 0.8983567
## 3104 -41.8 4.866 5228.1 0.9229145 0.8983567
## 3105 -47.1 1.410 5099.1 0.8874842 0.8586118
## 3106 -36.4 4.860 5191.0 0.8874842 0.8983567
## 3107 -50.0 1.520 5099.1 0.8798814 0.8586118
## 3108 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3109 -42.7 4.960 5228.1 0.8798814 0.8586118
## 3110 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3111 -46.2 1.266 5099.1 0.8874842 0.8983567
## 3112 -36.4 4.857 5191.0 0.7666667 0.8586118
## 3113 -46.2 1.354 5099.1 0.8798814 0.8983567
## 3114 -47.1 1.405 5099.1 0.9229145 0.8586118
## 3115 -42.7 4.962 5228.1 0.8960396 0.8983567
## 3116 -42.7 4.968 5228.1 0.8960396 0.8983567
## 3117 -41.8 4.960 5228.1 0.9271523 0.8586118
## 3118 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3119 -42.7 4.963 5228.1 0.9229145 0.8983567
## 3120 -42.7 4.963 5228.1 0.8798814 0.8586118
## 3121 -36.1 4.968 5228.1 0.8798814 0.8983567
## 3122 -36.4 4.857 5191.0 0.9229145 0.8586118
## 3123 -30.1 0.722 5017.5 0.8798814 0.8983567
## 3124 -36.1 4.968 5228.1 0.8960396 0.8983567
## 3125 -36.1 4.963 5228.1 0.8854962 0.8983567
## 3126 -47.1 1.405 5099.1 0.8874842 0.8586118
## 3127 -42.7 4.962 5228.1 0.9271523 0.8586118
## 3128 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3129 -42.7 4.960 5228.1 0.8854962 0.9007315
## 3130 -36.1 4.965 5228.1 0.9229145 0.8983567
## 3131 -42.0 4.191 5195.8 0.8874842 0.8983567
## 3132 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3133 -41.8 4.865 5228.1 0.9229145 0.8586118
## 3134 -46.2 1.244 5099.1 0.8854962 0.8586118
## 3135 -42.7 4.962 5228.1 0.8851675 0.8983567
## 3136 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3137 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3138 -41.8 4.960 5228.1 0.9229145 0.8983567
## 3139 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3140 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3141 -47.1 1.405 5099.1 0.8960396 0.8983567
## 3142 -47.1 1.410 5099.1 0.9229145 0.8983567
## 3143 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3144 -39.8 0.720 4991.6 0.8798814 0.8983567
## 3145 -41.8 4.961 5228.1 0.8798814 0.8983567
## 3146 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3147 -36.4 4.860 5191.0 0.8851675 0.8983567
## 3148 -47.1 1.405 5099.1 0.8854962 0.8983567
## 3149 -36.4 4.855 5191.0 0.8798814 0.8983567
## 3150 -47.1 1.406 5099.1 0.7666667 0.8983567
## 3151 -42.7 4.960 5228.1 0.8798814 0.9007315
## 3152 -47.1 1.405 5099.1 0.8798814 0.8586118
## 3153 -46.2 1.266 5099.1 0.8798814 0.8983567
## 3154 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3155 -42.7 4.968 5228.1 0.8874842 0.8983567
## 3156 -46.2 1.264 5099.1 0.8798814 0.8983567
## 3157 -42.7 4.963 5228.1 0.9074675 0.8983567
## 3158 -36.4 4.858 5191.0 0.9271523 0.9007315
## 3159 -47.1 1.405 5099.1 0.8854962 0.9007315
## 3160 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3161 -42.7 4.960 5228.1 0.9229145 0.8586118
## 3162 -36.4 4.860 5191.0 0.9229145 0.8586118
## 3163 -47.1 1.405 5099.1 0.8798814 0.8983567
## 3164 -36.1 4.965 5228.1 0.7666667 0.8983567
## 3165 -42.7 4.968 5228.1 0.8798814 0.8586118
## 3166 -41.8 4.961 5228.1 0.9198606 0.8983567
## 3167 -47.1 1.365 5099.1 0.8798814 0.8586118
## 3168 -42.7 4.963 5228.1 0.7666667 0.8983567
## 3169 -36.4 4.855 5191.0 0.8798814 0.8586118
## 3170 -47.1 1.405 5099.1 0.6868132 0.8586118
## 3171 -42.0 4.076 5195.8 0.8798814 0.8983567
## 3172 -40.8 1.266 5076.2 0.8960396 0.8983567
## 3173 -36.1 4.965 5228.1 0.9074675 0.8586118
## 3174 -36.4 4.858 5191.0 0.8874842 0.8586118
## 3175 -42.0 4.076 5195.8 0.9271523 0.8983567
## 3176 -36.4 4.857 5191.0 0.8851675 0.8983567
## 3177 -47.1 1.405 5099.1 0.8798814 0.8586118
## 3178 -46.2 1.266 5099.1 0.8854962 0.8586118
## 3179 -41.8 4.865 5228.1 0.7666667 0.8983567
## 3180 -42.0 4.076 5195.8 0.8798814 0.8983567
## 3181 -36.4 4.858 5191.0 0.9198606 0.9007315
## 3182 -42.0 4.406 5195.8 0.6868132 0.8586118
## 3183 -47.1 1.405 5099.1 0.9229145 0.8983567
## 3184 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3185 -36.1 4.963 5228.1 0.8798814 0.9007315
## 3186 -36.1 4.965 5228.1 0.8798814 0.8983567
## 3187 -46.2 1.266 5099.1 0.8798814 0.8586118
## 3188 -42.7 4.962 5228.1 0.8960396 0.8586118
## 3189 -41.8 4.960 5228.1 0.8798814 0.8983567
## 3190 -46.2 1.244 5099.1 0.8851675 0.9007315
## 3191 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3192 -36.4 4.857 5191.0 0.6868132 0.8586118
## 3193 -41.8 4.961 5228.1 0.8854962 0.8983567
## 3194 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3195 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3196 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3197 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3198 -46.2 1.299 5099.1 0.9271523 0.8586118
## 3199 -42.0 4.076 5195.8 0.9198606 0.8586118
## 3200 -47.1 1.483 5099.1 0.9229145 0.8983567
## 3201 -47.1 1.365 5099.1 0.9271523 0.8983567
## 3202 -41.8 4.961 5228.1 0.9229145 0.8823529
## 3203 -47.1 1.410 5099.1 0.8798814 0.8586118
## 3204 -36.1 4.962 5228.1 0.8854962 0.8586118
## 3205 -42.7 4.958 5228.1 0.9229145 0.8586118
## 3206 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3207 -42.0 4.191 5195.8 0.8854962 0.8983567
## 3208 -42.7 4.963 5228.1 0.9198606 0.8983567
## 3209 -47.1 1.466 5099.1 0.7666667 0.8983567
## 3210 -42.7 4.962 5228.1 0.9271523 0.9007315
## 3211 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3212 -47.1 1.406 5099.1 0.8798814 0.8586118
## 3213 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3214 -41.8 4.866 5228.1 0.9229145 0.9007315
## 3215 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3216 -36.4 4.860 5191.0 0.9074675 0.8983567
## 3217 -36.1 4.963 5228.1 0.8874842 0.8983567
## 3218 -47.1 1.410 5099.1 0.8854962 0.8983567
## 3219 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3220 -46.2 1.327 5099.1 0.8854962 0.8586118
## 3221 -42.0 4.076 5195.8 0.9074675 0.8983567
## 3222 -36.1 4.968 5228.1 0.8798814 0.8983567
## 3223 -42.7 4.962 5228.1 0.8874842 0.8983567
## 3224 -36.4 4.855 5191.0 0.9229145 0.8983567
## 3225 -42.7 4.962 5228.1 0.7666667 0.8586118
## 3226 -36.1 4.965 5228.1 0.8960396 0.8983567
## 3227 -41.8 4.961 5228.1 0.8854962 0.8983567
## 3228 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3229 -36.1 4.965 5228.1 0.9198606 0.8983567
## 3230 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3231 -46.2 1.266 5099.1 0.8798814 0.8983567
## 3232 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3233 -47.1 1.410 5099.1 0.8854962 0.8983567
## 3234 -36.4 4.857 5191.0 0.9229145 0.8586118
## 3235 -41.8 4.960 5228.1 0.8854962 0.8983567
## 3236 -36.4 4.855 5191.0 0.9229145 0.8983567
## 3237 -42.7 4.960 5228.1 0.8854962 0.8586118
## 3238 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3239 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3240 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3241 -42.7 4.962 5228.1 0.9198606 0.9007315
## 3242 -42.7 4.963 5228.1 0.9229145 0.8983567
## 3243 -36.1 4.963 5228.1 0.8798814 0.9007315
## 3244 -46.2 1.266 5099.1 0.6868132 0.8586118
## 3245 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3246 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3247 -47.1 1.405 5099.1 0.8854962 0.8586118
## 3248 -36.1 4.963 5228.1 0.9198606 0.8983567
## 3249 -42.0 4.076 5195.8 0.8798814 0.8983567
## 3250 -42.7 4.962 5228.1 0.8874842 0.8586118
## 3251 -46.2 1.244 5099.1 0.8854962 0.8983567
## 3252 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3253 -42.7 4.958 5228.1 0.9229145 0.8983567
## 3254 -30.1 0.716 5017.5 0.7666667 0.8983567
## 3255 -41.8 4.958 5228.1 0.9271523 0.9007315
## 3256 -41.8 4.961 5228.1 0.8854962 0.8983567
## 3257 -36.1 4.963 5228.1 0.8798814 0.8983567
## 3258 -29.8 0.771 5017.5 0.7666667 0.8983567
## 3259 -41.8 4.958 5228.1 0.8798814 0.8586118
## 3260 -41.8 4.866 5228.1 0.8854962 0.8983567
## 3261 -36.1 4.963 5228.1 0.8854962 0.8586118
## 3262 -42.0 4.076 5195.8 0.8874842 0.8983567
## 3263 -42.7 4.962 5228.1 0.8960396 0.8983567
## 3264 -46.2 1.244 5099.1 0.8798814 0.9007315
## 3265 -36.1 4.965 5228.1 0.8960396 0.8983567
## 3266 -47.1 1.405 5099.1 0.7666667 0.8983567
## 3267 -29.8 0.797 5017.5 0.8854962 0.8983567
## 3268 -46.2 1.354 5099.1 0.8798814 0.8983567
## 3269 -46.2 1.244 5099.1 0.8798814 0.8983567
## 3270 -47.1 1.410 5099.1 0.8874842 0.8983567
## 3271 -46.2 1.354 5099.1 0.8798814 0.8983567
## 3272 -36.4 4.857 5191.0 0.9229145 0.8586118
## 3273 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3274 -31.4 0.884 5076.2 0.8874842 0.8586118
## 3275 -41.8 4.865 5228.1 0.8798814 0.8586118
## 3276 -36.1 4.963 5228.1 0.8854962 0.9007315
## 3277 -46.2 1.327 5099.1 0.8798814 0.8586118
## 3278 -41.8 4.961 5228.1 0.6868132 0.8983567
## 3279 -42.7 4.962 5228.1 0.8874842 0.8983567
## 3280 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3281 -36.4 4.860 5191.0 0.8874842 0.8983567
## 3282 -42.7 4.962 5228.1 0.9271523 0.8983567
## 3283 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3284 -42.7 4.962 5228.1 0.8854962 0.8983567
## 3285 -36.4 4.858 5191.0 0.8798814 0.8983567
## 3286 -47.1 1.365 5099.1 0.8854962 0.8586118
## 3287 -47.1 1.410 5099.1 0.8854962 0.8983567
## 3288 -36.1 4.970 5228.1 0.8798814 0.8983567
## 3289 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3290 -30.1 0.714 5017.5 0.9198606 0.8586118
## 3291 -31.4 0.884 5076.2 0.6868132 0.8983567
## 3292 -41.8 4.865 5228.1 0.8874842 0.8983567
## 3293 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3294 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3295 -26.9 0.740 5017.5 0.8798814 0.9007315
## 3296 -42.7 4.960 5228.1 0.8874842 0.8586118
## 3297 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3298 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3299 -47.1 1.466 5099.1 0.8798814 0.8983567
## 3300 -36.1 4.962 5228.1 0.8798814 0.8983567
## 3301 -47.1 1.365 5099.1 0.8798814 0.8586118
## 3302 -42.7 4.962 5228.1 0.8854962 0.9007315
## 3303 -41.8 4.865 5228.1 0.8874842 0.8983567
## 3304 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3305 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3306 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3307 -36.4 4.857 5191.0 0.9229145 0.9007315
## 3308 -46.2 1.299 5099.1 0.8854962 0.8586118
## 3309 -46.2 1.266 5099.1 0.9229145 0.8983567
## 3310 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3311 -47.1 1.405 5099.1 0.8798814 0.8983567
## 3312 -42.7 4.963 5228.1 0.8798814 0.8586118
## 3313 -36.1 4.962 5228.1 0.8854962 0.8983567
## 3314 -42.7 4.963 5228.1 0.8854962 0.8983567
## 3315 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3316 -47.1 1.435 5099.1 0.9229145 0.8983567
## 3317 -42.0 4.076 5195.8 0.8854962 0.8586118
## 3318 -33.6 1.048 5076.2 0.6868132 0.8586118
## 3319 -47.1 1.365 5099.1 0.9074675 0.8983567
## 3320 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3321 -36.4 4.858 5191.0 0.9074675 0.9007315
## 3322 -41.8 4.961 5228.1 0.9229145 0.8586118
## 3323 -41.8 4.961 5228.1 0.9229145 0.8586118
## 3324 -36.4 4.857 5191.0 0.8960396 0.9007315
## 3325 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3326 -42.7 4.963 5228.1 0.8798814 0.8983567
## 3327 -47.1 1.410 5099.1 0.9198606 0.8983567
## 3328 -46.2 1.299 5099.1 0.8874842 0.8983567
## 3329 -42.7 4.963 5228.1 0.8798814 0.8983567
## 3330 -39.8 0.711 4991.6 0.8798814 0.8983567
## 3331 -42.0 4.191 5195.8 0.8798814 0.8586118
## 3332 -41.8 4.961 5228.1 0.8854962 0.8983567
## 3333 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3334 -42.7 4.960 5228.1 0.8854962 0.8586118
## 3335 -42.7 4.968 5228.1 0.9074675 0.8983567
## 3336 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3337 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3338 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3339 -36.4 4.855 5191.0 0.8798814 0.8983567
## 3340 -36.4 4.855 5191.0 0.8854962 0.8586118
## 3341 -42.7 4.962 5228.1 0.9074675 0.8983567
## 3342 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3343 -46.2 1.299 5099.1 0.8874842 0.8983567
## 3344 -36.4 4.857 5191.0 0.9074675 0.9007315
## 3345 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3346 -41.8 4.947 5228.1 0.9229145 0.8983567
## 3347 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3348 -42.7 4.960 5228.1 0.9271523 0.8586118
## 3349 -47.1 1.405 5099.1 0.8874842 0.8983567
## 3350 -46.2 1.244 5099.1 0.8798814 0.8586118
## 3351 -47.1 1.405 5099.1 0.8854962 0.8983567
## 3352 -42.7 4.962 5228.1 0.9229145 0.9007315
## 3353 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3354 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3355 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3356 -36.4 4.860 5191.0 0.8798814 0.8983567
## 3357 -36.4 4.857 5191.0 0.8874842 0.9007315
## 3358 -47.1 1.405 5099.1 0.9229145 0.8983567
## 3359 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3360 -42.7 4.962 5228.1 0.8798814 0.9007315
## 3361 -36.4 4.857 5191.0 0.6868132 0.8586118
## 3362 -41.8 4.961 5228.1 0.9074675 0.8983567
## 3363 -42.7 4.961 5228.1 0.9271523 0.8586118
## 3364 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3365 -46.2 1.354 5099.1 0.8854962 0.8586118
## 3366 -47.1 1.365 5099.1 0.8854962 0.9007315
## 3367 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3368 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3369 -36.1 4.968 5228.1 0.8798814 0.8983567
## 3370 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3371 -42.0 4.191 5195.8 0.9229145 0.9007315
## 3372 -36.4 4.857 5191.0 0.9198606 0.8586118
## 3373 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3374 -41.8 4.958 5228.1 0.8798814 0.8983567
## 3375 -42.7 4.962 5228.1 0.8798814 0.8586118
## 3376 -46.2 1.244 5099.1 0.8798814 0.8586118
## 3377 -42.7 4.963 5228.1 0.8854962 0.8586118
## 3378 -36.1 4.964 5228.1 0.8798814 0.8586118
## 3379 -47.1 1.365 5099.1 0.6868132 0.8586118
## 3380 -36.1 4.963 5228.1 0.8854962 0.8983567
## 3381 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3382 -46.2 1.299 5099.1 0.9271523 0.8586118
## 3383 -46.2 1.327 5099.1 0.8798814 0.8983567
## 3384 -42.0 4.191 5195.8 0.8960396 0.8983567
## 3385 -26.9 0.722 5017.5 0.7666667 0.8586118
## 3386 -36.1 4.964 5228.1 0.8854962 0.8586118
## 3387 -47.1 1.410 5099.1 0.9198606 0.9007315
## 3388 -36.4 4.857 5191.0 0.8798814 0.9007315
## 3389 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3390 -36.4 4.860 5191.0 0.8874842 0.9007315
## 3391 -42.7 4.960 5228.1 0.8851675 0.8983567
## 3392 -47.1 1.410 5099.1 0.9229145 0.8983567
## 3393 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3394 -41.8 4.961 5228.1 0.8854962 0.8586118
## 3395 -47.1 1.365 5099.1 0.6868132 0.8586118
## 3396 -36.4 4.860 5191.0 0.8874842 0.8983567
## 3397 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3398 -42.7 4.968 5228.1 0.8798814 0.8586118
## 3399 -36.1 4.966 5228.1 0.8854962 0.8983567
## 3400 -29.8 0.809 5017.5 0.6868132 0.8586118
## 3401 -40.8 1.266 5076.2 0.8874842 0.8983567
## 3402 -47.1 1.410 5099.1 0.8798814 0.8586118
## 3403 -38.3 0.904 4991.6 0.6868132 0.8586118
## 3404 -42.7 4.962 5228.1 0.9271523 0.8983567
## 3405 -46.2 1.354 5099.1 0.9271523 0.8983567
## 3406 -47.1 1.365 5099.1 0.8798814 0.8983567
## 3407 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3408 -34.8 0.639 5008.7 0.8798814 0.8586118
## 3409 -36.4 4.857 5191.0 0.8032787 0.8983567
## 3410 -36.4 4.860 5191.0 0.8960396 0.8983567
## 3411 -41.8 4.865 5228.1 0.8798814 0.9007315
## 3412 -46.2 1.354 5099.1 0.8798814 0.9007315
## 3413 -46.2 1.327 5099.1 0.9229145 0.8586118
## 3414 -42.7 4.962 5228.1 0.7666667 0.9007315
## 3415 -31.4 0.829 5076.2 0.8798814 0.8983567
## 3416 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3417 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3418 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3419 -42.7 4.962 5228.1 0.8874842 0.8983567
## 3420 -42.7 4.960 5228.1 0.8854962 0.8586118
## 3421 -36.1 4.965 5228.1 0.8798814 0.8983567
## 3422 -42.7 4.960 5228.1 0.8874842 0.8586118
## 3423 -41.8 4.865 5228.1 0.9074675 0.9007315
## 3424 -46.2 1.244 5099.1 0.8798814 0.8586118
## 3425 -26.9 0.722 5017.5 0.7666667 0.9007315
## 3426 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3427 -42.7 4.966 5228.1 0.8798814 0.8983567
## 3428 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3429 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3430 -42.7 4.960 5228.1 0.9229145 0.8586118
## 3431 -46.2 1.244 5099.1 0.6868132 0.8586118
## 3432 -42.7 4.958 5228.1 0.9074675 0.8983567
## 3433 -42.0 4.191 5195.8 0.8798814 0.8586118
## 3434 -36.1 4.964 5228.1 0.8798814 0.9007315
## 3435 -36.4 4.857 5191.0 0.8851675 0.8983567
## 3436 -34.8 0.646 5008.7 0.8851675 0.8983567
## 3437 -42.0 4.153 5195.8 0.8798814 0.8983567
## 3438 -42.7 4.963 5228.1 0.9229145 0.8586118
## 3439 -33.6 0.944 5076.2 0.8874842 0.8983567
## 3440 -36.4 4.860 5191.0 0.8854962 0.8983567
## 3441 -46.2 1.354 5099.1 0.8874842 0.8983567
## 3442 -36.4 4.857 5191.0 0.9198606 0.8983567
## 3443 -41.8 4.961 5228.1 0.9271523 0.8586118
## 3444 -33.6 1.072 5076.2 0.8854962 0.8983567
## 3445 -36.4 4.855 5191.0 0.9271523 0.8983567
## 3446 -36.4 4.855 5191.0 0.7666667 0.8983567
## 3447 -41.8 4.960 5228.1 0.9229145 0.8586118
## 3448 -36.1 4.965 5228.1 0.9074675 0.9007315
## 3449 -36.1 4.963 5228.1 0.7666667 0.9007315
## 3450 -36.1 4.968 5228.1 0.8854962 0.8586118
## 3451 -46.2 1.266 5099.1 0.8874842 0.8586118
## 3452 -46.2 1.244 5099.1 0.9198606 0.8586118
## 3453 -29.8 0.766 5017.5 0.9198606 0.8983567
## 3454 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3455 -36.4 4.858 5191.0 0.8854962 0.8586118
## 3456 -42.7 4.963 5228.1 0.8854962 0.8983567
## 3457 -26.9 0.739 5017.5 0.9074675 0.8983567
## 3458 -36.4 4.860 5191.0 0.9229145 0.9007315
## 3459 -40.8 1.281 5076.2 0.7666667 0.8586118
## 3460 -42.7 4.963 5228.1 0.9074675 0.8586118
## 3461 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3462 -36.4 4.857 5191.0 0.8874842 0.8586118
## 3463 -41.8 4.865 5228.1 0.9229145 0.9007315
## 3464 -42.7 4.960 5228.1 0.8798814 0.8586118
## 3465 -42.7 4.960 5228.1 0.8874842 0.8983567
## 3466 -36.1 4.965 5228.1 0.8798814 0.8983567
## 3467 -41.8 4.865 5228.1 0.7666667 0.9007315
## 3468 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3469 -42.7 4.968 5228.1 0.8854962 0.8983567
## 3470 -36.4 4.857 5191.0 0.9271523 0.8983567
## 3471 -31.4 0.883 5076.2 0.8798814 0.8586118
## 3472 -36.1 4.965 5228.1 0.8854962 0.8586118
## 3473 -42.7 4.960 5228.1 0.9229145 0.9007315
## 3474 -36.4 4.858 5191.0 0.9229145 0.8586118
## 3475 -41.8 4.961 5228.1 0.8960396 0.8586118
## 3476 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3477 -46.2 1.266 5099.1 0.9229145 0.8983567
## 3478 -40.3 0.793 4991.6 0.8798814 0.9007315
## 3479 -36.4 4.860 5191.0 0.9271523 0.9007315
## 3480 -34.8 0.646 5008.7 0.8851675 0.8586118
## 3481 -42.7 4.962 5228.1 0.8798814 0.9007315
## 3482 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3483 -42.7 4.962 5228.1 0.9271523 0.8983567
## 3484 -36.4 4.855 5191.0 0.9229145 0.8983567
## 3485 -46.2 1.244 5099.1 0.8960396 0.8983567
## 3486 -41.8 4.866 5228.1 0.8854962 0.8586118
## 3487 -42.0 4.191 5195.8 0.8798814 0.9007315
## 3488 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3489 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3490 -36.4 4.855 5191.0 0.8798814 0.8983567
## 3491 -36.1 4.962 5228.1 0.8874842 0.8983567
## 3492 -36.4 4.857 5191.0 0.9074675 0.8586118
## 3493 -42.7 4.968 5228.1 0.8874842 0.8586118
## 3494 -42.7 4.960 5228.1 0.9074675 0.8983567
## 3495 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3496 -46.2 1.244 5099.1 0.9229145 0.8586118
## 3497 -46.2 1.266 5099.1 0.8798814 0.8983567
## 3498 -36.4 4.857 5191.0 0.8798814 0.9007315
## 3499 -42.7 4.960 5228.1 0.9074675 0.8983567
## 3500 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3501 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3502 -31.4 0.883 5076.2 0.8960396 0.8983567
## 3503 -36.1 4.965 5228.1 0.8854962 0.8586118
## 3504 -47.1 1.405 5099.1 0.8874842 0.8983567
## 3505 -42.7 4.962 5228.1 0.9198606 0.9007315
## 3506 -38.3 0.899 4991.6 0.8854962 0.8983567
## 3507 -36.1 4.962 5228.1 0.8874842 0.8983567
## 3508 -46.2 1.244 5099.1 0.8874842 0.8983567
## 3509 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3510 -46.2 1.244 5099.1 0.8854962 0.8586118
## 3511 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3512 -40.8 1.215 5076.2 0.7666667 0.8983567
## 3513 -42.7 4.960 5228.1 0.8960396 0.8983567
## 3514 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3515 -42.0 4.076 5195.8 0.9229145 0.8983567
## 3516 -36.1 4.965 5228.1 0.8798814 0.9007315
## 3517 -36.1 4.964 5228.1 0.8798814 0.8983567
## 3518 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3519 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3520 -42.7 4.962 5228.1 0.9198606 0.9007315
## 3521 -46.2 1.299 5099.1 0.6868132 0.8586118
## 3522 -46.2 1.299 5099.1 0.9074675 0.8586118
## 3523 -36.4 4.860 5191.0 0.6868132 0.8586118
## 3524 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3525 -36.1 4.965 5228.1 0.9229145 0.8983567
## 3526 -42.7 4.968 5228.1 0.9198606 0.9007315
## 3527 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3528 -36.1 4.965 5228.1 0.9229145 0.8983567
## 3529 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3530 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3531 -36.1 4.968 5228.1 0.8854962 0.8586118
## 3532 -36.1 4.965 5228.1 0.9074675 0.9007315
## 3533 -36.4 4.858 5191.0 0.8854962 0.8586118
## 3534 -42.7 4.960 5228.1 0.9229145 0.8586118
## 3535 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3536 -42.0 4.076 5195.8 0.9198606 0.8983567
## 3537 -36.4 4.857 5191.0 0.9198606 0.8983567
## 3538 -42.7 4.962 5228.1 0.8798814 0.8586118
## 3539 -41.8 4.961 5228.1 0.8854962 0.8983567
## 3540 -31.4 0.883 5076.2 0.8851675 0.8983567
## 3541 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3542 -36.4 4.855 5191.0 0.9229145 0.8983567
## 3543 -36.1 4.964 5228.1 0.9229145 0.8983567
## 3544 -42.7 4.963 5228.1 0.8874842 0.9007315
## 3545 -42.0 4.191 5195.8 0.8798814 0.9007315
## 3546 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3547 -47.1 1.405 5099.1 0.8854962 0.8983567
## 3548 -41.8 4.947 5228.1 0.8854962 0.8586118
## 3549 -36.1 4.962 5228.1 0.8854962 0.9007315
## 3550 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3551 -42.7 4.960 5228.1 0.8798814 0.8586118
## 3552 -46.2 1.299 5099.1 0.8854962 0.8983567
## 3553 -36.1 4.965 5228.1 0.8798814 0.8586118
## 3554 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3555 -36.1 4.964 5228.1 0.8798814 0.8586118
## 3556 -42.7 4.963 5228.1 0.9198606 0.8983567
## 3557 -36.4 4.858 5191.0 0.8874842 0.8586118
## 3558 -41.8 4.866 5228.1 0.9271523 0.8983567
## 3559 -36.1 4.962 5228.1 0.8798814 0.8983567
## 3560 -46.2 1.354 5099.1 0.8798814 0.8586118
## 3561 -31.4 0.873 5076.2 0.9229145 0.8586118
## 3562 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3563 -36.4 4.855 5191.0 0.8798814 0.8983567
## 3564 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3565 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3566 -36.1 4.962 5228.1 0.8854962 0.8983567
## 3567 -26.9 0.739 5017.5 0.6868132 0.8586118
## 3568 -42.7 4.968 5228.1 0.8854962 0.8983567
## 3569 -36.4 4.858 5191.0 0.9074675 0.8983567
## 3570 -42.7 4.962 5228.1 0.8874842 0.8983567
## 3571 -42.0 4.076 5195.8 0.8854962 0.8586118
## 3572 -47.1 1.405 5099.1 0.8874842 0.8983567
## 3573 -42.7 4.962 5228.1 0.9198606 0.8983567
## 3574 -36.4 4.857 5191.0 0.9198606 0.8983567
## 3575 -36.4 4.858 5191.0 0.8874842 0.8983567
## 3576 -42.7 4.962 5228.1 0.8798814 0.9007315
## 3577 -46.2 1.327 5099.1 0.8854962 0.8586118
## 3578 -36.4 4.857 5191.0 0.8032787 0.8983567
## 3579 -30.1 0.714 5017.5 0.8854962 0.8586118
## 3580 -42.7 4.961 5228.1 0.8798814 0.8586118
## 3581 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3582 -42.7 4.960 5228.1 0.8874842 0.8983567
## 3583 -46.2 1.354 5099.1 0.8798814 0.8983567
## 3584 -42.7 4.960 5228.1 0.8798814 0.8586118
## 3585 -42.7 4.968 5228.1 0.9074675 0.8983567
## 3586 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3587 -36.1 4.963 5228.1 0.8798814 0.8983567
## 3588 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3589 -41.8 4.866 5228.1 0.9271523 0.8586118
## 3590 -42.7 4.962 5228.1 0.8798814 0.8586118
## 3591 -42.7 4.960 5228.1 0.8874842 0.8983567
## 3592 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3593 -42.0 4.076 5195.8 0.8851675 0.8983567
## 3594 -36.1 4.964 5228.1 0.8874842 0.8983567
## 3595 -42.7 4.963 5228.1 0.8798814 0.8586118
## 3596 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3597 -41.8 4.960 5228.1 0.8874842 0.8586118
## 3598 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3599 -46.2 1.299 5099.1 0.9229145 0.8586118
## 3600 -46.2 1.244 5099.1 0.9229145 0.9007315
## 3601 -42.7 4.961 5228.1 0.8854962 0.9007315
## 3602 -38.3 0.904 4991.6 0.8798814 0.9007315
## 3603 -46.2 1.244 5099.1 0.8798814 0.9007315
## 3604 -36.1 4.963 5228.1 0.8851675 0.9007315
## 3605 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3606 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3607 -42.0 4.191 5195.8 0.8854962 0.9007315
## 3608 -42.7 4.960 5228.1 0.9229145 0.8586118
## 3609 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3610 -36.1 4.962 5228.1 0.8798814 0.8983567
## 3611 -46.2 1.299 5099.1 0.8874842 0.9007315
## 3612 -47.1 1.405 5099.1 0.9229145 0.8983567
## 3613 -46.2 1.327 5099.1 0.8854962 0.8983567
## 3614 -46.2 1.299 5099.1 0.9229145 0.8586118
## 3615 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3616 -42.7 4.958 5228.1 0.8960396 0.9007315
## 3617 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3618 -36.1 4.963 5228.1 0.8851675 0.8983567
## 3619 -36.1 4.963 5228.1 0.8874842 0.8983567
## 3620 -36.1 4.970 5228.1 0.9229145 0.8983567
## 3621 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3622 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3623 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3624 -42.7 4.960 5228.1 0.8798814 0.8586118
## 3625 -42.7 4.968 5228.1 0.8851675 0.8983567
## 3626 -42.7 4.963 5228.1 0.9229145 0.8586118
## 3627 -36.1 4.968 5228.1 0.8798814 0.8983567
## 3628 -36.4 4.857 5191.0 0.8960396 0.8983567
## 3629 -42.7 4.968 5228.1 0.9198606 0.8983567
## 3630 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3631 -36.1 4.963 5228.1 0.8854962 0.8983567
## 3632 -36.1 4.963 5228.1 0.8798814 0.8586118
## 3633 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3634 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3635 -47.1 1.405 5099.1 0.7666667 0.8983567
## 3636 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3637 -42.0 4.191 5195.8 0.8854962 0.8983567
## 3638 -42.0 4.076 5195.8 0.8798814 0.8983567
## 3639 -36.4 4.857 5191.0 0.7666667 0.9007315
## 3640 -41.8 4.961 5228.1 0.8851675 0.8983567
## 3641 -36.1 4.963 5228.1 0.9229145 0.8983567
## 3642 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3643 -46.2 1.299 5099.1 0.9074675 0.8586118
## 3644 -46.2 1.291 5099.1 0.9271523 0.8983567
## 3645 -40.8 1.266 5076.2 0.8854962 0.8586118
## 3646 -42.7 4.962 5228.1 0.9229145 0.8983567
## 3647 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3648 -42.0 4.191 5195.8 0.9074675 0.8983567
## 3649 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3650 -42.7 4.960 5228.1 0.8798814 0.8586118
## 3651 -36.1 4.965 5228.1 0.8854962 0.8586118
## 3652 -42.7 4.968 5228.1 0.8854962 0.8983567
## 3653 -36.1 4.962 5228.1 0.8798814 0.8983567
## 3654 -36.4 4.857 5191.0 0.9074675 0.9007315
## 3655 -47.1 1.466 5099.1 0.8854962 0.8983567
## 3656 -41.8 4.955 5228.1 0.8798814 0.8983567
## 3657 -42.7 4.963 5228.1 0.9198606 0.8983567
## 3658 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3659 -42.0 4.191 5195.8 0.9074675 0.8983567
## 3660 -46.2 1.244 5099.1 0.8798814 0.8586118
## 3661 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3662 -36.1 4.963 5228.1 0.7666667 0.8983567
## 3663 -36.4 4.857 5191.0 0.8854962 0.8983567
## 3664 -46.2 1.354 5099.1 0.6868132 0.8586118
## 3665 -36.4 4.857 5191.0 0.8874842 0.8586118
## 3666 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3667 -36.4 4.857 5191.0 0.9229145 0.9007315
## 3668 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3669 -36.4 4.860 5191.0 0.8851675 0.8983567
## 3670 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3671 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3672 -42.7 4.960 5228.1 0.9074675 0.8586118
## 3673 -42.7 4.966 5228.1 0.9229145 0.9007315
## 3674 -41.8 4.961 5228.1 0.8874842 0.8586118
## 3675 -41.8 4.865 5228.1 0.8874842 0.8983567
## 3676 -41.8 4.961 5228.1 0.9074675 0.8983567
## 3677 -36.1 4.963 5228.1 0.8854962 0.8983567
## 3678 -36.4 4.855 5191.0 0.9229145 0.8983567
## 3679 -42.0 4.191 5195.8 0.8851675 0.8983567
## 3680 -36.4 4.860 5191.0 0.8874842 0.9007315
## 3681 -39.8 0.754 4991.6 0.9198606 0.8983567
## 3682 -42.0 4.153 5195.8 0.9229145 0.8983567
## 3683 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3684 -46.2 1.354 5099.1 0.9074675 0.8983567
## 3685 -36.1 4.970 5228.1 0.8854962 0.9007315
## 3686 -42.7 4.960 5228.1 0.8851675 0.9007315
## 3687 -46.2 1.354 5099.1 0.8798814 0.8983567
## 3688 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3689 -42.7 4.961 5228.1 0.8874842 0.8983567
## 3690 -26.9 0.739 5017.5 0.9074675 0.8983567
## 3691 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3692 -36.1 4.964 5228.1 0.8798814 0.8983567
## 3693 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3694 -47.1 1.405 5099.1 0.9229145 0.8983567
## 3695 -41.8 4.866 5228.1 0.7666667 0.8983567
## 3696 -30.1 0.714 5017.5 0.9198606 0.8983567
## 3697 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3698 -50.0 1.811 5099.1 0.9074675 0.8983567
## 3699 -36.1 4.965 5228.1 0.8854962 0.8586118
## 3700 -42.7 4.958 5228.1 0.9074675 0.8586118
## 3701 -41.8 4.961 5228.1 0.8854962 0.8983567
## 3702 -36.4 4.858 5191.0 0.8874842 0.8983567
## 3703 -36.1 4.968 5228.1 0.8854962 0.9007315
## 3704 -42.0 4.076 5195.8 0.8798814 0.8586118
## 3705 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3706 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3707 -42.0 4.191 5195.8 0.8874842 0.8983567
## 3708 -42.0 4.191 5195.8 0.8798814 0.9007315
## 3709 -31.4 0.873 5076.2 0.7666667 0.8983567
## 3710 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3711 -42.0 4.076 5195.8 0.9074675 0.8586118
## 3712 -46.2 1.244 5099.1 0.9229145 0.8586118
## 3713 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3714 -42.0 4.191 5195.8 0.9074675 0.8983567
## 3715 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3716 -31.4 0.851 5076.2 0.6868132 0.8586118
## 3717 -42.7 4.960 5228.1 0.9229145 0.8586118
## 3718 -40.8 1.266 5076.2 0.8798814 0.8983567
## 3719 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3720 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3721 -42.7 4.962 5228.1 0.8854962 0.8586118
## 3722 -46.2 1.264 5099.1 0.9229145 0.8586118
## 3723 -41.8 4.955 5228.1 0.8798814 0.8983567
## 3724 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3725 -47.1 1.405 5099.1 0.9229145 0.8983567
## 3726 -46.2 1.266 5099.1 0.9229145 0.8586118
## 3727 -36.4 4.857 5191.0 0.8854962 0.8586118
## 3728 -41.8 4.866 5228.1 0.8032787 0.8586118
## 3729 -40.0 0.699 5008.7 0.8854962 0.8983567
## 3730 -46.2 1.244 5099.1 0.8798814 0.8586118
## 3731 -36.1 4.965 5228.1 0.8798814 0.8983567
## 3732 -42.7 4.962 5228.1 0.8854962 0.8586118
## 3733 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3734 -40.8 1.260 5076.2 0.8851675 0.8586118
## 3735 -36.4 4.856 5191.0 0.8854962 0.8586118
## 3736 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3737 -46.2 1.354 5099.1 0.9229145 0.8823529
## 3738 -36.1 4.968 5228.1 0.8854962 0.8983567
## 3739 -36.4 4.855 5191.0 0.9198606 0.8586118
## 3740 -36.1 4.964 5228.1 0.8854962 0.8586118
## 3741 -46.2 1.244 5099.1 0.8798814 0.9007315
## 3742 -41.8 4.961 5228.1 0.9229145 0.8983567
## 3743 -41.8 4.865 5228.1 0.9074675 0.8983567
## 3744 -46.2 1.299 5099.1 0.8854962 0.8983567
## 3745 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3746 -36.4 4.857 5191.0 0.8854962 0.8586118
## 3747 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3748 -41.8 4.961 5228.1 0.7666667 0.9007315
## 3749 -41.8 4.961 5228.1 0.9074675 0.8983567
## 3750 -36.1 4.965 5228.1 0.8960396 0.8983567
## 3751 -42.7 4.962 5228.1 0.8851675 0.8983567
## 3752 -41.8 4.961 5228.1 0.8851675 0.8983567
## 3753 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3754 -46.2 1.354 5099.1 0.9271523 0.8983567
## 3755 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3756 -42.7 4.960 5228.1 0.9198606 0.8586118
## 3757 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3758 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3759 -46.2 1.299 5099.1 0.8798814 0.9007315
## 3760 -42.7 4.960 5228.1 0.8798814 0.9007315
## 3761 -36.1 4.962 5228.1 0.9074675 0.8586118
## 3762 -42.7 4.962 5228.1 0.8798814 0.8586118
## 3763 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3764 -42.7 4.968 5228.1 0.8854962 0.8983567
## 3765 -36.4 4.857 5191.0 0.8854962 0.9007315
## 3766 -40.3 0.876 4991.6 0.9229145 0.8983567
## 3767 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3768 -34.6 0.645 5008.7 0.7666667 0.8983567
## 3769 -36.1 4.962 5228.1 0.8798814 0.9007315
## 3770 -36.4 4.858 5191.0 0.8798814 0.8983567
## 3771 -41.8 4.864 5228.1 0.6868132 0.8586118
## 3772 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3773 -30.1 0.722 5017.5 0.8798814 0.8983567
## 3774 -42.7 4.966 5228.1 0.9074675 0.8586118
## 3775 -36.1 4.963 5228.1 0.8854962 0.8983567
## 3776 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3777 -47.1 1.405 5099.1 0.8798814 0.9007315
## 3778 -31.4 0.861 5076.2 0.6868132 0.8586118
## 3779 -46.2 1.244 5099.1 0.9074675 0.8983567
## 3780 -36.4 4.858 5191.0 0.8798814 0.9007315
## 3781 -36.4 4.857 5191.0 0.8874842 0.9007315
## 3782 -42.0 4.076 5195.8 0.9074675 0.9007315
## 3783 -46.2 1.299 5099.1 0.8798814 0.8586118
## 3784 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3785 -42.7 4.968 5228.1 0.8874842 0.8983567
## 3786 -40.8 1.266 5076.2 0.8854962 0.8983567
## 3787 -36.4 4.860 5191.0 0.8874842 0.8586118
## 3788 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3789 -42.7 4.962 5228.1 0.9198606 0.8983567
## 3790 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3791 -34.8 0.652 5008.7 0.8798814 0.8586118
## 3792 -36.4 4.860 5191.0 0.8798814 0.8586118
## 3793 -41.8 4.961 5228.1 0.8798814 0.8983567
## 3794 -46.2 1.327 5099.1 0.8798814 0.8983567
## 3795 -42.0 4.191 5195.8 0.8851675 0.8983567
## 3796 -42.7 4.963 5228.1 0.9229145 0.8983567
## 3797 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3798 -40.8 1.215 5076.2 0.8854962 0.8586118
## 3799 -46.2 1.299 5099.1 0.9229145 0.8983567
## 3800 -41.8 4.865 5228.1 0.9198606 0.8983567
## 3801 -42.7 4.962 5228.1 0.8798814 0.8586118
## 3802 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3803 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3804 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3805 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3806 -36.4 4.857 5191.0 0.8960396 0.8983567
## 3807 -36.4 4.857 5191.0 0.8874842 0.8983567
## 3808 -41.8 4.960 5228.1 0.8798814 0.8983567
## 3809 -46.2 1.244 5099.1 0.8854962 0.9007315
## 3810 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3811 -36.4 4.857 5191.0 0.8854962 0.9007315
## 3812 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3813 -39.8 0.754 4991.6 0.9074675 0.9007315
## 3814 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3815 -46.2 1.354 5099.1 0.9229145 0.8983567
## 3816 -42.7 4.963 5228.1 0.9229145 0.8586118
## 3817 -36.4 4.857 5191.0 0.9271523 0.8983567
## 3818 -42.7 4.962 5228.1 0.9229145 0.8586118
## 3819 -42.0 4.733 5195.8 0.8798814 0.8983567
## 3820 -42.7 4.960 5228.1 0.8874842 0.8983567
## 3821 -42.0 4.076 5195.8 0.9229145 0.8983567
## 3822 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3823 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3824 -42.0 4.191 5195.8 0.8854962 0.8983567
## 3825 -46.2 1.244 5099.1 0.9229145 0.8586118
## 3826 -36.4 4.857 5191.0 0.8798814 0.9007315
## 3827 -46.2 1.244 5099.1 0.6868132 0.8586118
## 3828 -41.8 4.865 5228.1 0.9271523 0.8586118
## 3829 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3830 -26.9 0.743 5017.5 0.7666667 0.8983567
## 3831 -40.4 4.912 5195.8 0.8798814 0.8586118
## 3832 -36.4 4.858 5191.0 0.8874842 0.8983567
## 3833 -50.0 1.560 5099.1 0.8798814 0.8983567
## 3834 -36.4 4.860 5191.0 0.8874842 0.8586118
## 3835 -42.7 4.960 5228.1 0.9229145 0.8983567
## 3836 -36.4 4.858 5191.0 0.8798814 0.8586118
## 3837 -36.4 4.857 5191.0 0.9198606 0.8983567
## 3838 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3839 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3840 -36.1 4.964 5228.1 0.8960396 0.9007315
## 3841 -36.4 4.855 5191.0 0.8851675 0.8983567
## 3842 -46.2 1.264 5099.1 0.8798814 0.8586118
## 3843 -42.7 4.958 5228.1 0.9198606 0.8823529
## 3844 -42.7 4.962 5228.1 0.9074675 0.8983567
## 3845 -41.8 4.961 5228.1 0.8798814 0.8586118
## 3846 -36.4 4.857 5191.0 0.8854962 0.8586118
## 3847 -36.1 4.970 5228.1 0.8874842 0.8983567
## 3848 -30.1 0.722 5017.5 0.8960396 0.8983567
## 3849 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3850 -42.7 4.962 5228.1 0.8798814 0.8586118
## 3851 -36.4 4.857 5191.0 0.8798814 0.9007315
## 3852 -36.1 4.963 5228.1 0.9229145 0.8983567
## 3853 -42.7 4.962 5228.1 0.8854962 0.8983567
## 3854 -36.1 4.968 5228.1 0.9198606 0.8983567
## 3855 -36.4 4.858 5191.0 0.9229145 0.8586118
## 3856 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3857 -42.7 4.962 5228.1 0.6868132 0.8586118
## 3858 -46.2 1.354 5099.1 0.9229145 0.8983567
## 3859 -42.7 4.962 5228.1 0.8854962 0.9007315
## 3860 -42.7 4.960 5228.1 0.8854962 0.8586118
## 3861 -41.8 4.961 5228.1 0.9229145 0.8586118
## 3862 -36.4 4.857 5191.0 0.9229145 0.8586118
## 3863 -42.7 4.968 5228.1 0.8854962 0.8983567
## 3864 -36.4 4.855 5191.0 0.8874842 0.9007315
## 3865 -36.1 4.963 5228.1 0.8798814 0.8983567
## 3866 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3867 -33.6 0.899 5076.2 0.8851675 0.8983567
## 3868 -46.2 1.344 5099.1 0.8874842 0.8983567
## 3869 -36.4 4.857 5191.0 0.8798814 0.9007315
## 3870 -41.8 4.960 5228.1 0.8798814 0.8586118
## 3871 -42.7 4.963 5228.1 0.9229145 0.8983567
## 3872 -41.8 4.961 5228.1 0.8798814 0.8586118
## 3873 -42.7 4.961 5228.1 0.8798814 0.9007315
## 3874 -42.7 4.960 5228.1 0.8798814 0.8983567
## 3875 -42.7 4.960 5228.1 0.8854962 0.8586118
## 3876 -40.8 1.260 5076.2 0.8798814 0.8586118
## 3877 -41.8 4.960 5228.1 0.8851675 0.9007315
## 3878 -46.2 1.291 5099.1 0.8798814 0.8983567
## 3879 -36.4 4.855 5191.0 0.9229145 0.8983567
## 3880 -46.2 1.266 5099.1 0.8798814 0.8983567
## 3881 -47.1 1.405 5099.1 0.9229145 0.9007315
## 3882 -36.4 4.858 5191.0 0.8874842 0.8586118
## 3883 -42.0 4.191 5195.8 0.8798814 0.9007315
## 3884 -39.8 0.742 4991.6 0.8798814 0.8586118
## 3885 -42.7 4.961 5228.1 0.8874842 0.8983567
## 3886 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3887 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3888 -36.4 4.857 5191.0 0.9074675 0.8983567
## 3889 -42.7 4.962 5228.1 0.8854962 0.8586118
## 3890 -46.2 1.244 5099.1 0.6868132 0.8586118
## 3891 -36.1 4.962 5228.1 0.8854962 0.8586118
## 3892 -46.2 1.291 5099.1 0.8874842 0.8586118
## 3893 -41.8 4.960 5228.1 0.8798814 0.8983567
## 3894 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3895 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3896 -49.5 1.000 4963.6 0.8798814 0.8983567
## 3897 -36.4 4.857 5191.0 0.9074675 0.8983567
## 3898 -42.7 4.962 5228.1 0.8798814 0.8983567
## 3899 -46.2 1.354 5099.1 0.9229145 0.8983567
## 3900 -41.8 4.865 5228.1 0.8854962 0.8983567
## 3901 -42.7 4.963 5228.1 0.8798814 0.8586118
## 3902 -41.8 4.958 5228.1 0.8854962 0.8983567
## 3903 -46.2 1.266 5099.1 0.8798814 0.8586118
## 3904 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3905 -42.7 4.962 5228.1 0.6868132 0.8586118
## 3906 -42.0 4.191 5195.8 0.9198606 0.9007315
## 3907 -31.4 0.883 5076.2 0.7666667 0.8983567
## 3908 -46.2 1.354 5099.1 0.8874842 0.8983567
## 3909 -42.7 4.960 5228.1 0.9271523 0.8983567
## 3910 -36.1 4.963 5228.1 0.8798814 0.8983567
## 3911 -36.4 4.858 5191.0 0.9229145 0.8983567
## 3912 -46.2 1.264 5099.1 0.8798814 0.8586118
## 3913 -26.9 0.739 5017.5 0.9229145 0.8983567
## 3914 -42.7 4.966 5228.1 0.9229145 0.8983567
## 3915 -49.5 0.953 4963.6 0.8798814 0.8983567
## 3916 -42.0 4.191 5195.8 0.8798814 0.9007315
## 3917 -36.4 4.858 5191.0 0.8798814 0.8983567
## 3918 -40.0 0.697 5008.7 0.7666667 0.9007315
## 3919 -42.7 4.968 5228.1 0.9271523 0.8983567
## 3920 -50.0 1.811 5099.1 0.6868132 0.8586118
## 3921 -40.8 1.262 5076.2 0.8032787 0.8586118
## 3922 -41.8 4.865 5228.1 0.8851675 0.8586118
## 3923 -26.9 0.739 5017.5 0.7666667 0.8983567
## 3924 -36.4 4.860 5191.0 0.8854962 0.8586118
## 3925 -47.1 1.466 5099.1 0.9229145 0.8983567
## 3926 -41.8 4.958 5228.1 0.8854962 0.8983567
## 3927 -36.4 4.857 5191.0 0.8798814 0.9007315
## 3928 -36.1 4.970 5228.1 0.8798814 0.8983567
## 3929 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3930 -41.8 4.961 5228.1 0.9271523 0.8983567
## 3931 -42.7 4.966 5228.1 0.9271523 0.8983567
## 3932 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3933 -31.4 0.873 5076.2 0.9074675 0.8983567
## 3934 -36.1 4.968 5228.1 0.8854962 0.8983567
## 3935 -26.9 0.731 5017.5 0.8798814 0.8586118
## 3936 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3937 -36.1 4.963 5228.1 0.8854962 0.8586118
## 3938 -36.1 4.968 5228.1 0.8854962 0.9007315
## 3939 -41.8 4.960 5228.1 0.8854962 0.8586118
## 3940 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3941 -34.8 0.652 5008.7 0.9198606 0.8586118
## 3942 -37.5 0.879 4963.6 0.8854962 0.8983567
## 3943 -41.8 4.958 5228.1 0.9229145 0.8983567
## 3944 -36.4 4.858 5191.0 0.8798814 0.8983567
## 3945 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3946 -46.2 1.266 5099.1 0.8798814 0.9007315
## 3947 -36.1 4.964 5228.1 0.8798814 0.8983567
## 3948 -42.7 4.960 5228.1 0.9229145 0.8586118
## 3949 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3950 -46.2 1.299 5099.1 0.8854962 0.8983567
## 3951 -42.7 4.962 5228.1 0.8874842 0.8983567
## 3952 -42.7 4.963 5228.1 0.9229145 0.8586118
## 3953 -42.7 4.962 5228.1 0.8854962 0.9007315
## 3954 -41.8 4.960 5228.1 0.8854962 0.8983567
## 3955 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3956 -42.7 4.963 5228.1 0.8854962 0.8983567
## 3957 -42.7 4.968 5228.1 0.8854962 0.9007315
## 3958 -47.1 1.405 5099.1 0.9229145 0.8983567
## 3959 -36.1 4.968 5228.1 0.8798814 0.8983567
## 3960 -36.4 4.857 5191.0 0.8874842 0.8586118
## 3961 -46.2 1.244 5099.1 0.8960396 0.8983567
## 3962 -26.9 0.740 5017.5 0.9229145 0.8983567
## 3963 -36.1 4.965 5228.1 0.8854962 0.8983567
## 3964 -36.1 4.963 5228.1 0.8798814 0.8586118
## 3965 -50.0 1.811 5099.1 0.6868132 0.8586118
## 3966 -36.4 4.860 5191.0 0.9229145 0.8983567
## 3967 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3968 -36.4 4.858 5191.0 0.9229145 0.9007315
## 3969 -42.7 4.962 5228.1 0.8960396 0.8983567
## 3970 -42.0 4.191 5195.8 0.8798814 0.8586118
## 3971 -36.4 4.857 5191.0 0.8798814 0.8586118
## 3972 -36.4 4.860 5191.0 0.9074675 0.9007315
## 3973 -46.2 1.244 5099.1 0.9229145 0.8586118
## 3974 -42.7 4.958 5228.1 0.8798814 0.8983567
## 3975 -41.8 4.865 5228.1 0.9229145 0.8983567
## 3976 -41.8 4.960 5228.1 0.9271523 0.8983567
## 3977 -41.8 4.865 5228.1 0.8798814 0.8983567
## 3978 -31.4 0.861 5076.2 0.8798814 0.8586118
## 3979 -41.8 4.961 5228.1 0.9229145 0.8586118
## 3980 -36.4 4.857 5191.0 0.8798814 0.8983567
## 3981 -42.7 4.961 5228.1 0.9271523 0.8983567
## 3982 -36.1 4.966 5228.1 0.8798814 0.8983567
## 3983 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3984 -42.0 4.076 5195.8 0.8798814 0.8586118
## 3985 -46.2 1.291 5099.1 0.9229145 0.8983567
## 3986 -46.2 1.266 5099.1 0.8874842 0.9007315
## 3987 -36.4 4.857 5191.0 0.9229145 0.8983567
## 3988 -42.7 4.960 5228.1 0.8854962 0.8983567
## 3989 -46.2 1.299 5099.1 0.8798814 0.8586118
## 3990 -36.4 4.858 5191.0 0.9229145 0.8586118
## 3991 -42.0 4.191 5195.8 0.9229145 0.8983567
## 3992 -36.1 4.968 5228.1 0.8854962 0.8586118
## 3993 -42.7 4.962 5228.1 0.9074675 0.8983567
## 3994 -42.0 4.191 5195.8 0.9271523 0.8983567
## 3995 -42.7 4.961 5228.1 0.8798814 0.8586118
## 3996 -41.8 4.961 5228.1 0.8798814 0.8586118
## 3997 -42.0 4.191 5195.8 0.8798814 0.8983567
## 3998 -36.4 4.857 5191.0 0.9271523 0.9007315
## 3999 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4000 -36.1 4.968 5228.1 0.8798814 0.8586118
## 4001 -36.4 4.858 5191.0 0.9198606 0.8983567
## 4002 -36.4 4.857 5191.0 0.8798814 0.8983567
## 4003 -46.2 1.299 5099.1 0.8798814 0.9007315
## 4004 -36.4 4.858 5191.0 0.8798814 0.8586118
## 4005 -47.1 1.405 5099.1 0.8854962 0.8586118
## 4006 -36.1 4.964 5228.1 0.9229145 0.8983567
## 4007 -41.8 4.961 5228.1 0.9198606 0.8983567
## 4008 -36.4 4.860 5191.0 0.8032787 0.8983567
## 4009 -42.7 4.962 5228.1 0.9229145 0.8586118
## 4010 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4011 -36.1 4.962 5228.1 0.8798814 0.8586118
## 4012 -40.0 0.701 5008.7 0.6868132 0.8586118
## 4013 -42.7 4.968 5228.1 0.8874842 0.8586118
## 4014 -36.4 4.857 5191.0 0.8854962 0.8983567
## 4015 -36.1 4.968 5228.1 0.9198606 0.8983567
## 4016 -46.2 1.299 5099.1 0.9229145 0.8983567
## 4017 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4018 -46.2 1.327 5099.1 0.9229145 0.8586118
## 4019 -42.0 4.191 5195.8 0.9229145 0.8586118
## 4020 -36.4 4.858 5191.0 0.9229145 0.8983567
## 4021 -46.2 1.327 5099.1 0.8874842 0.8983567
## 4022 -46.2 1.291 5099.1 0.8854962 0.8586118
## 4023 -50.0 1.538 5099.1 0.9074675 0.8983567
## 4024 -42.7 4.962 5228.1 0.8032787 0.8983567
## 4025 -46.2 1.299 5099.1 0.8854962 0.8586118
## 4026 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4027 -26.9 0.722 5017.5 0.8854962 0.8983567
## 4028 -41.8 4.961 5228.1 0.8798814 0.8983567
## 4029 -42.0 4.191 5195.8 0.8874842 0.8586118
## 4030 -36.1 4.965 5228.1 0.9229145 0.8983567
## 4031 -30.1 0.715 5017.5 0.8960396 0.8586118
## 4032 -36.4 4.858 5191.0 0.9229145 0.8983567
## 4033 -37.5 0.879 4963.6 0.8798814 0.8586118
## 4034 -47.1 1.365 5099.1 0.8798814 0.8586118
## 4035 -47.1 1.365 5099.1 0.9271523 0.8983567
## 4036 -36.4 4.860 5191.0 0.8854962 0.8983567
## 4037 -36.1 4.964 5228.1 0.8854962 0.8586118
## 4038 -36.4 4.860 5191.0 0.9198606 0.8983567
## 4039 -36.1 4.968 5228.1 0.7666667 0.8983567
## 4040 -41.8 4.866 5228.1 0.8874842 0.8983567
## 4041 -47.1 1.410 5099.1 0.8798814 0.8586118
## 4042 -46.2 1.291 5099.1 0.9229145 0.8983567
## 4043 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4044 -34.8 0.635 5008.7 0.7666667 0.8983567
## 4045 -50.0 1.538 5099.1 0.6868132 0.8586118
## 4046 -47.1 1.365 5099.1 0.9229145 0.8983567
## 4047 -41.8 4.866 5228.1 0.8851675 0.8983567
## 4048 -42.0 4.076 5195.8 0.9229145 0.8586118
## 4049 -47.1 1.410 5099.1 0.8798814 0.8983567
## 4050 -29.8 0.819 5017.5 0.9074675 0.8586118
## 4051 -41.8 4.866 5228.1 0.8854962 0.8586118
## 4052 -42.7 4.958 5228.1 0.9074675 0.8586118
## 4053 -36.1 4.962 5228.1 0.8798814 0.9007315
## 4054 -36.1 4.963 5228.1 0.8874842 0.8983567
## 4055 -46.2 1.327 5099.1 0.9229145 0.9007315
## 4056 -36.4 4.860 5191.0 0.9198606 0.9007315
## 4057 -47.1 1.365 5099.1 0.7666667 0.8983567
## 4058 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4059 -36.1 4.968 5228.1 0.9198606 0.8983567
## 4060 -36.4 4.857 5191.0 0.8851675 0.8586118
## 4061 -36.4 4.860 5191.0 0.9229145 0.8586118
## 4062 -47.1 1.410 5099.1 0.9229145 0.9007315
## 4063 -46.2 1.266 5099.1 0.8874842 0.8586118
## 4064 -41.8 4.958 5228.1 0.9074675 0.8586118
## 4065 -46.2 1.266 5099.1 0.8798814 0.8586118
## 4066 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4067 -47.1 1.365 5099.1 0.6868132 0.8586118
## 4068 -47.1 1.483 5099.1 0.9229145 0.8586118
## 4069 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4070 -42.0 4.076 5195.8 0.8798814 0.8586118
## 4071 -41.8 4.864 5228.1 0.8851675 0.9007315
## 4072 -42.0 4.076 5195.8 0.8874842 0.8983567
## 4073 -47.1 1.365 5099.1 0.8798814 0.8983567
## 4074 -42.0 4.076 5195.8 0.9229145 0.9007315
## 4075 -26.9 0.722 5017.5 0.7666667 0.8983567
## 4076 -36.4 4.860 5191.0 0.9271523 0.8983567
## 4077 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4078 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4079 -47.1 1.483 5099.1 0.8798814 0.8983567
## 4080 -46.2 1.266 5099.1 0.9074675 0.8586118
## 4081 -36.4 4.860 5191.0 0.9074675 0.9007315
## 4082 -36.4 4.859 5191.0 0.8798814 0.8586118
## 4083 -36.4 4.855 5191.0 0.8798814 0.8586118
## 4084 -42.7 4.963 5228.1 0.9229145 0.9007315
## 4085 -36.1 4.962 5228.1 0.8874842 0.8983567
## 4086 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4087 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4088 -41.8 4.866 5228.1 0.8851675 0.8983567
## 4089 -47.1 1.410 5099.1 0.9229145 0.9007315
## 4090 -42.7 4.962 5228.1 0.8854962 0.9007315
## 4091 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4092 -36.4 4.860 5191.0 0.9229145 0.8586118
## 4093 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4094 -36.4 4.855 5191.0 0.8874842 0.8586118
## 4095 -41.8 4.864 5228.1 0.9229145 0.9007315
## 4096 -47.1 1.410 5099.1 0.9271523 0.8983567
## 4097 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4098 -36.4 4.860 5191.0 0.9229145 0.9007315
## 4099 -34.6 0.644 5008.7 0.7666667 0.9007315
## 4100 -36.4 4.856 5191.0 0.8798814 0.8586118
## 4101 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4102 -41.8 4.962 5228.1 0.9229145 0.9007315
## 4103 -42.7 4.963 5228.1 0.8854962 0.8586118
## 4104 -47.1 1.365 5099.1 0.9229145 0.8586118
## 4105 -36.4 4.860 5191.0 0.9074675 0.8983567
## 4106 -41.8 4.864 5228.1 0.8798814 0.8586118
## 4107 -42.7 4.968 5228.1 0.8798814 0.9007315
## 4108 -41.8 4.866 5228.1 0.9229145 0.8983567
## 4109 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4110 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4111 -36.4 4.856 5191.0 0.9229145 0.9007315
## 4112 -42.0 4.076 5195.8 0.8798814 0.8586118
## 4113 -36.4 4.855 5191.0 0.9074675 0.8983567
## 4114 -46.2 1.266 5099.1 0.9074675 0.8983567
## 4115 -34.6 0.644 5008.7 0.7666667 0.8983567
## 4116 -36.1 4.968 5228.1 0.8960396 0.8983567
## 4117 -42.7 4.968 5228.1 0.8798814 0.8983567
## 4118 -46.2 1.291 5099.1 0.9229145 0.8983567
## 4119 -36.4 4.855 5191.0 0.8851675 0.8983567
## 4120 -42.7 4.962 5228.1 0.8874842 0.8586118
## 4121 -46.2 1.266 5099.1 0.9198606 0.8586118
## 4122 -36.4 4.857 5191.0 0.9271523 0.8983567
## 4123 -46.2 1.327 5099.1 0.9074675 0.8983567
## 4124 -47.1 1.410 5099.1 0.8798814 0.9007315
## 4125 -36.4 4.855 5191.0 0.8854962 0.8983567
## 4126 -47.1 1.410 5099.1 0.9229145 0.8983567
## 4127 -46.2 1.266 5099.1 0.8874842 0.8586118
## 4128 -46.2 1.327 5099.1 0.8798814 0.8983567
## 4129 -46.2 1.327 5099.1 0.8798814 0.8586118
## 4130 -42.7 4.958 5228.1 0.9229145 0.9007315
## 4131 -42.0 4.076 5195.8 0.9074675 0.8586118
## 4132 -40.8 1.260 5076.2 0.8798814 0.8983567
## 4133 -46.2 1.266 5099.1 0.9271523 0.8586118
## 4134 -42.7 4.963 5228.1 0.8854962 0.8586118
## 4135 -36.4 4.860 5191.0 0.8798814 0.8586118
## 4136 -46.2 1.266 5099.1 0.9074675 0.8586118
## 4137 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4138 -42.7 4.958 5228.1 0.9074675 0.8586118
## 4139 -41.8 4.961 5228.1 0.8874842 0.8983567
## 4140 -41.8 4.866 5228.1 0.8798814 0.8983567
## 4141 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4142 -31.4 0.883 5076.2 0.7666667 0.8983567
## 4143 -36.1 4.964 5228.1 0.8798814 0.8586118
## 4144 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4145 -42.7 4.968 5228.1 0.9229145 0.8983567
## 4146 -47.1 1.365 5099.1 0.8854962 0.9007315
## 4147 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4148 -41.8 4.866 5228.1 0.8798814 0.8586118
## 4149 -46.2 1.266 5099.1 0.8874842 0.8983567
## 4150 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4151 -36.4 4.860 5191.0 0.8798814 0.9007315
## 4152 -42.0 4.076 5195.8 0.8874842 0.8983567
## 4153 -36.4 4.860 5191.0 0.8854962 0.8983567
## 4154 -42.7 4.961 5228.1 0.8851675 0.8983567
## 4155 -42.0 4.076 5195.8 0.8798814 0.8586118
## 4156 -41.8 4.866 5228.1 0.8798814 0.8586118
## 4157 -41.8 4.962 5228.1 0.8874842 0.8983567
## 4158 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4159 -47.1 1.365 5099.1 0.8798814 0.9007315
## 4160 -42.7 4.958 5228.1 0.8798814 0.8586118
## 4161 -42.7 4.958 5228.1 0.8874842 0.8586118
## 4162 -47.1 1.365 5099.1 0.8798814 0.8586118
## 4163 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4164 -36.1 4.968 5228.1 0.8798814 0.8983567
## 4165 -36.4 4.855 5191.0 0.9229145 0.8586118
## 4166 -42.7 4.968 5228.1 0.8874842 0.8586118
## 4167 -36.4 4.860 5191.0 0.8851675 0.8983567
## 4168 -46.2 1.291 5099.1 0.9229145 0.8983567
## 4169 -41.8 4.961 5228.1 0.8798814 0.9007315
## 4170 -42.7 4.968 5228.1 0.8874842 0.8586118
## 4171 -36.1 4.962 5228.1 0.9198606 0.8983567
## 4172 -42.7 4.968 5228.1 0.8851675 0.8983567
## 4173 -42.0 4.076 5195.8 0.9074675 0.9007315
## 4174 -36.1 4.968 5228.1 0.8798814 0.8586118
## 4175 -42.0 4.076 5195.8 0.8874842 0.9007315
## 4176 -46.2 1.327 5099.1 0.9229145 0.8586118
## 4177 -42.7 4.968 5228.1 0.9074675 0.8983567
## 4178 -46.2 1.266 5099.1 0.8798814 0.8983567
## 4179 -36.4 4.856 5191.0 0.9074675 0.8983567
## 4180 -46.2 1.291 5099.1 0.9271523 0.9007315
## 4181 -36.1 4.962 5228.1 0.8874842 0.8983567
## 4182 -31.4 0.829 5076.2 0.8798814 0.8983567
## 4183 -46.2 1.281 5099.1 0.8874842 0.8586118
## 4184 -36.1 4.964 5228.1 0.8960396 0.8983567
## 4185 -41.8 4.866 5228.1 0.9074675 0.9007315
## 4186 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4187 -42.7 4.958 5228.1 0.8960396 0.8983567
## 4188 -36.4 4.860 5191.0 0.9074675 0.8983567
## 4189 -42.7 4.968 5228.1 0.8854962 0.8586118
## 4190 -41.8 4.961 5228.1 0.9074675 0.8983567
## 4191 -36.4 4.860 5191.0 0.9074675 0.8823529
## 4192 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4193 -36.4 4.860 5191.0 0.9198606 0.8983567
## 4194 -42.0 4.076 5195.8 0.8851675 0.8586118
## 4195 -47.1 1.365 5099.1 0.9229145 0.8983567
## 4196 -47.1 1.410 5099.1 0.9229145 0.8586118
## 4197 -41.8 4.864 5228.1 0.9229145 0.8983567
## 4198 -41.8 4.961 5228.1 0.8854962 0.8983567
## 4199 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4200 -47.1 1.410 5099.1 0.8798814 0.8586118
## 4201 -36.1 4.964 5228.1 0.8854962 0.8586118
## 4202 -47.1 1.410 5099.1 0.9229145 0.8983567
## 4203 -36.1 4.968 5228.1 0.8798814 0.8983567
## 4204 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4205 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4206 -41.8 4.955 5228.1 0.8798814 0.8586118
## 4207 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4208 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4209 -36.1 4.965 5228.1 0.8798814 0.8983567
## 4210 -36.4 4.860 5191.0 0.8851675 0.9007315
## 4211 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4212 -41.8 4.866 5228.1 0.9229145 0.8586118
## 4213 -42.0 4.076 5195.8 0.9074675 0.9007315
## 4214 -46.2 1.327 5099.1 0.7666667 0.8983567
## 4215 -34.6 0.640 5008.7 0.9074675 0.9007315
## 4216 -47.1 1.410 5099.1 0.8854962 0.8983567
## 4217 -42.7 4.961 5228.1 0.8854962 0.8983567
## 4218 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4219 -46.2 1.327 5099.1 0.8798814 0.8983567
## 4220 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4221 -46.2 1.344 5099.1 0.8798814 0.9007315
## 4222 -36.4 4.860 5191.0 0.8874842 0.8983567
## 4223 -47.1 1.365 5099.1 0.8854962 0.8983567
## 4224 -42.7 4.962 5228.1 0.8851675 0.8983567
## 4225 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4226 -41.8 4.961 5228.1 0.8851675 0.8983567
## 4227 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4228 -41.8 4.958 5228.1 0.8874842 0.8983567
## 4229 -42.0 4.076 5195.8 0.6868132 0.8983567
## 4230 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4231 -42.0 4.153 5195.8 0.9229145 0.8983567
## 4232 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4233 -47.1 1.410 5099.1 0.8851675 0.8983567
## 4234 -42.0 4.076 5195.8 0.9229145 0.9007315
## 4235 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4236 -41.8 4.958 5228.1 0.9074675 0.8586118
## 4237 -34.6 0.640 5008.7 0.9074675 0.9007315
## 4238 -46.2 1.327 5099.1 0.8798814 0.9007315
## 4239 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4240 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4241 -47.1 1.410 5099.1 0.9229145 0.8983567
## 4242 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4243 -42.0 4.076 5195.8 0.9229145 0.8586118
## 4244 -42.7 4.962 5228.1 0.7666667 0.8586118
## 4245 -41.8 4.961 5228.1 0.9229145 0.8586118
## 4246 -42.0 4.153 5195.8 0.8798814 0.8586118
## 4247 -49.5 0.987 4963.6 0.8798814 0.8586118
## 4248 -42.0 4.153 5195.8 0.9271523 0.8586118
## 4249 -47.1 1.410 5099.1 0.8874842 0.8586118
## 4250 -41.8 4.866 5228.1 0.8854962 0.8586118
## 4251 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4252 -46.2 1.327 5099.1 0.8854962 0.8983567
## 4253 -47.1 1.406 5099.1 0.8854962 0.8983567
## 4254 -31.4 0.883 5076.2 0.9229145 0.8983567
## 4255 -42.0 4.153 5195.8 0.9198606 0.8983567
## 4256 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4257 -36.1 4.964 5228.1 0.9198606 0.8983567
## 4258 -46.2 1.291 5099.1 0.9229145 0.8586118
## 4259 -47.1 1.483 5099.1 0.9229145 0.8586118
## 4260 -36.4 4.855 5191.0 0.9074675 0.8983567
## 4261 -26.9 0.741 5017.5 0.9074675 0.9007315
## 4262 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4263 -36.4 4.857 5191.0 0.8874842 0.8983567
## 4264 -36.1 4.966 5228.1 0.8854962 0.8586118
## 4265 -36.1 4.964 5228.1 0.9229145 0.8983567
## 4266 -42.7 4.968 5228.1 0.8874842 0.8983567
## 4267 -41.8 4.866 5228.1 0.9271523 0.8983567
## 4268 -50.0 1.757 5099.1 0.8854962 0.8983567
## 4269 -38.3 0.904 4991.6 0.6868132 0.8586118
## 4270 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4271 -46.2 1.270 5099.1 0.6868132 0.8586118
## 4272 -31.4 0.873 5076.2 0.7666667 0.8983567
## 4273 -42.7 4.957 5228.1 0.8854962 0.9007315
## 4274 -47.1 1.365 5099.1 0.6868132 0.8586118
## 4275 -42.7 4.963 5228.1 0.9198606 0.8586118
## 4276 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4277 -41.8 4.866 5228.1 0.9074675 0.8586118
## 4278 -46.2 1.266 5099.1 0.9074675 0.8586118
## 4279 -47.1 1.365 5099.1 0.8854962 0.8586118
## 4280 -40.8 1.260 5076.2 0.9229145 0.8983567
## 4281 -47.1 1.406 5099.1 0.6868132 0.8586118
## 4282 -39.8 0.767 4991.6 0.8798814 0.8586118
## 4283 -47.1 1.483 5099.1 0.8798814 0.8983567
## 4284 -47.1 1.365 5099.1 0.7666667 0.8983567
## 4285 -41.8 4.961 5228.1 0.8798814 0.8983567
## 4286 -42.0 4.076 5195.8 0.9198606 0.8983567
## 4287 -42.7 4.962 5228.1 0.8960396 0.9007315
## 4288 -36.1 4.964 5228.1 0.9198606 0.8983567
## 4289 -47.1 1.365 5099.1 0.8798814 0.8983567
## 4290 -42.0 4.076 5195.8 0.8851675 0.8586118
## 4291 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4292 -33.0 0.714 5023.5 0.7666667 0.8983567
## 4293 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4294 -41.8 4.961 5228.1 0.8854962 0.8586118
## 4295 -40.0 0.677 5008.7 0.8798814 0.8983567
## 4296 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4297 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4298 -41.8 4.866 5228.1 0.9229145 0.8586118
## 4299 -41.8 4.866 5228.1 0.9074675 0.8983567
## 4300 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4301 -42.7 4.962 5228.1 0.8874842 0.9007315
## 4302 -31.4 0.873 5076.2 0.6868132 0.8586118
## 4303 -47.1 1.410 5099.1 0.9229145 0.8983567
## 4304 -47.1 1.410 5099.1 0.9229145 0.8983567
## 4305 -42.7 4.961 5228.1 0.8874842 0.8586118
## 4306 -47.1 1.410 5099.1 0.8798814 0.8983567
## 4307 -36.4 4.857 5191.0 0.8854962 0.8983567
## 4308 -41.8 4.866 5228.1 0.9271523 0.8983567
## 4309 -40.0 0.692 5008.7 0.8798814 0.8983567
## 4310 -41.8 4.866 5228.1 0.8798814 0.8586118
## 4311 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4312 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4313 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4314 -36.4 4.856 5191.0 0.9229145 0.8586118
## 4315 -36.4 4.860 5191.0 0.9229145 0.8586118
## 4316 -47.1 1.365 5099.1 0.9198606 0.8586118
## 4317 -31.4 0.838 5076.2 0.7666667 0.8983567
## 4318 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4319 -47.1 1.483 5099.1 0.8798814 0.8983567
## 4320 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4321 -42.7 4.963 5228.1 0.9229145 0.8983567
## 4322 -47.1 1.365 5099.1 0.8798814 0.8983567
## 4323 -41.8 4.958 5228.1 0.8798814 0.8983567
## 4324 -33.6 1.018 5076.2 0.8798814 0.8586118
## 4325 -42.7 4.963 5228.1 0.8874842 0.8586118
## 4326 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4327 -41.8 4.955 5228.1 0.8874842 0.8983567
## 4328 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4329 -42.0 4.076 5195.8 0.7666667 0.8983567
## 4330 -47.1 1.365 5099.1 0.8032787 0.8586118
## 4331 -42.7 4.963 5228.1 0.9229145 0.8586118
## 4332 -36.4 4.860 5191.0 0.8854962 0.8983567
## 4333 -47.1 1.365 5099.1 0.8798814 0.8586118
## 4334 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4335 -36.4 4.857 5191.0 0.9271523 0.8983567
## 4336 -47.1 1.410 5099.1 0.8854962 0.8983567
## 4337 -42.0 4.076 5195.8 0.8798814 0.9007315
## 4338 -36.1 4.962 5228.1 0.9074675 0.8586118
## 4339 -36.1 4.968 5228.1 0.8798814 0.8983567
## 4340 -47.1 1.410 5099.1 0.9229145 0.8983567
## 4341 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4342 -47.1 1.423 5099.1 0.8798814 0.9007315
## 4343 -36.4 4.860 5191.0 0.9074675 0.8983567
## 4344 -47.1 1.410 5099.1 0.9229145 0.9007315
## 4345 -46.2 1.327 5099.1 0.9229145 0.9007315
## 4346 -41.8 4.958 5228.1 0.9271523 0.8983567
## 4347 -36.4 4.857 5191.0 0.8798814 0.8586118
## 4348 -47.1 1.423 5099.1 0.9229145 0.8983567
## 4349 -36.4 4.855 5191.0 0.9074675 0.8983567
## 4350 -36.4 4.855 5191.0 0.8851675 0.9007315
## 4351 -36.1 4.964 5228.1 0.9074675 0.8983567
## 4352 -42.7 4.963 5228.1 0.8874842 0.9007315
## 4353 -36.4 4.860 5191.0 0.9229145 0.8586118
## 4354 -47.1 1.483 5099.1 0.8798814 0.8983567
## 4355 -40.8 1.206 5076.2 0.9198606 0.8586118
## 4356 -34.6 0.659 5008.7 0.7666667 0.8983567
## 4357 -31.4 0.851 5076.2 0.8854962 0.8586118
## 4358 -42.7 4.963 5228.1 0.9198606 0.8983567
## 4359 -36.4 4.860 5191.0 0.9271523 0.8983567
## 4360 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4361 -47.1 1.365 5099.1 0.9271523 0.8983567
## 4362 -36.4 4.860 5191.0 0.7666667 0.9007315
## 4363 -36.4 4.860 5191.0 0.9074675 0.8983567
## 4364 -36.1 4.968 5228.1 0.8798814 0.8983567
## 4365 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4366 -42.0 4.076 5195.8 0.8874842 0.8983567
## 4367 -36.4 4.855 5191.0 0.9271523 0.8983567
## 4368 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4369 -36.4 4.860 5191.0 0.9229145 0.9007315
## 4370 -42.0 4.076 5195.8 0.9229145 0.8586118
## 4371 -41.8 4.959 5228.1 0.9229145 0.8983567
## 4372 -46.2 1.266 5099.1 0.8854962 0.8586118
## 4373 -36.4 4.855 5191.0 0.8798814 0.9007315
## 4374 -33.6 0.908 5076.2 0.8798814 0.8983567
## 4375 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4376 -36.1 4.962 5228.1 0.9229145 0.8983567
## 4377 -36.4 4.855 5191.0 0.8851675 0.8983567
## 4378 -47.1 1.365 5099.1 0.9198606 0.8586118
## 4379 -36.4 4.855 5191.0 0.8798814 0.8983567
## 4380 -46.2 1.266 5099.1 0.8854962 0.8983567
## 4381 -42.7 4.962 5228.1 0.8854962 0.8983567
## 4382 -42.7 4.968 5228.1 0.8874842 0.9007315
## 4383 -47.1 1.365 5099.1 0.9271523 0.8983567
## 4384 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4385 -36.1 4.962 5228.1 0.9229145 0.8983567
## 4386 -47.1 1.365 5099.1 0.8854962 0.8983567
## 4387 -47.1 1.435 5099.1 0.8854962 0.8586118
## 4388 -36.4 4.855 5191.0 0.8854962 0.8983567
## 4389 -34.6 0.644 5008.7 0.7666667 0.8983567
## 4390 -49.5 0.987 4963.6 0.8798814 0.8586118
## 4391 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4392 -42.0 4.076 5195.8 0.8798814 0.8586118
## 4393 -36.1 4.963 5228.1 0.9229145 0.8983567
## 4394 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4395 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4396 -47.1 1.365 5099.1 0.8874842 0.8983567
## 4397 -46.2 1.266 5099.1 0.9229145 0.8586118
## 4398 -31.4 0.851 5076.2 0.8798814 0.8983567
## 4399 -36.4 4.860 5191.0 0.9074675 0.8586118
## 4400 -36.4 4.855 5191.0 0.8874842 0.8983567
## 4401 -38.3 0.904 4991.6 0.9271523 0.8983567
## 4402 -41.8 4.961 5228.1 0.8798814 0.8586118
## 4403 -36.1 4.964 5228.1 0.9229145 0.8983567
## 4404 -36.4 4.855 5191.0 0.8032787 0.8983567
## 4405 -42.7 4.961 5228.1 0.8874842 0.8586118
## 4406 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4407 -36.4 4.860 5191.0 0.8874842 0.8983567
## 4408 -42.7 4.958 5228.1 0.8798814 0.8586118
## 4409 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4410 -36.4 4.857 5191.0 0.9074675 0.8983567
## 4411 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4412 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4413 -46.2 1.270 5099.1 0.9229145 0.8983567
## 4414 -47.1 1.435 5099.1 0.9229145 0.8983567
## 4415 -47.1 1.365 5099.1 0.6868132 0.8586118
## 4416 -41.8 4.961 5228.1 0.8854962 0.8983567
## 4417 -42.7 4.963 5228.1 0.9198606 0.8983567
## 4418 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4419 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4420 -40.8 1.260 5076.2 0.8851675 0.8983567
## 4421 -46.2 1.327 5099.1 0.9229145 0.8586118
## 4422 -41.8 4.958 5228.1 0.9229145 0.9007315
## 4423 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4424 -46.2 1.327 5099.1 0.8874842 0.8586118
## 4425 -46.2 1.266 5099.1 0.8854962 0.8983567
## 4426 -36.4 4.860 5191.0 0.8798814 0.9007315
## 4427 -42.7 4.958 5228.1 0.9229145 0.9007315
## 4428 -42.7 4.963 5228.1 0.8854962 0.9007315
## 4429 -41.8 4.958 5228.1 0.8798814 0.8983567
## 4430 -47.1 1.435 5099.1 0.8874842 0.8983567
## 4431 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4432 -42.0 4.076 5195.8 0.8798814 0.9007315
## 4433 -42.0 4.153 5195.8 0.9074675 0.8983567
## 4434 -36.4 4.860 5191.0 0.8854962 0.8983567
## 4435 -46.2 1.327 5099.1 0.9229145 0.8586118
## 4436 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4437 -26.9 0.754 5017.5 0.8854962 0.9007315
## 4438 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4439 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4440 -42.7 4.963 5228.1 0.9271523 0.8983567
## 4441 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4442 -26.9 0.722 5017.5 0.8854962 0.8983567
## 4443 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4444 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4445 -47.1 1.410 5099.1 0.9074675 0.8983567
## 4446 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4447 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4448 -41.8 4.961 5228.1 0.7666667 0.8983567
## 4449 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4450 -36.4 4.855 5191.0 0.8798814 0.8983567
## 4451 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4452 -42.0 4.700 5195.8 0.7666667 0.9007315
## 4453 -41.8 4.961 5228.1 0.9074675 0.8586118
## 4454 -47.1 1.365 5099.1 0.8798814 0.8983567
## 4455 -42.7 4.963 5228.1 0.8798814 0.8586118
## 4456 -50.0 1.663 5099.1 0.7666667 0.9007315
## 4457 -42.7 4.962 5228.1 0.8851675 0.8983567
## 4458 -41.8 4.866 5228.1 0.8874842 0.8983567
## 4459 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4460 -46.2 1.266 5099.1 0.9074675 0.8983567
## 4461 -46.2 1.270 5099.1 0.8032787 0.8983567
## 4462 -42.7 4.961 5228.1 0.9229145 0.8983567
## 4463 -47.1 1.410 5099.1 0.8798814 0.8586118
## 4464 -42.7 4.968 5228.1 0.8854962 0.9007315
## 4465 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4466 -42.7 4.961 5228.1 0.8854962 0.9007315
## 4467 -36.4 4.856 5191.0 0.8854962 0.8983567
## 4468 -46.2 1.266 5099.1 0.8798814 0.8586118
## 4469 -42.7 4.968 5228.1 0.8874842 0.8983567
## 4470 -36.4 4.855 5191.0 0.9198606 0.8983567
## 4471 -42.7 4.961 5228.1 0.8960396 0.8983567
## 4472 -42.7 4.958 5228.1 0.8854962 0.8983567
## 4473 -47.1 1.365 5099.1 0.8874842 0.8983567
## 4474 -42.0 4.076 5195.8 0.9271523 0.8983567
## 4475 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4476 -36.4 4.860 5191.0 0.8032787 0.8983567
## 4477 -42.7 4.968 5228.1 0.8798814 0.8983567
## 4478 -41.8 4.961 5228.1 0.8874842 0.9007315
## 4479 -42.7 4.968 5228.1 0.9229145 0.8586118
## 4480 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4481 -36.4 4.860 5191.0 0.9198606 0.8983567
## 4482 -42.7 4.968 5228.1 0.9229145 0.8586118
## 4483 -46.2 1.327 5099.1 0.8854962 0.9007315
## 4484 -41.8 4.958 5228.1 0.8798814 0.9007315
## 4485 -42.7 4.968 5228.1 0.8851675 0.8586118
## 4486 -47.1 1.365 5099.1 0.8798814 0.8586118
## 4487 -42.7 4.958 5228.1 0.8854962 0.8586118
## 4488 -40.8 1.260 5076.2 0.8798814 0.8983567
## 4489 -36.4 4.860 5191.0 0.9229145 0.9007315
## 4490 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4491 -36.4 4.860 5191.0 0.8854962 0.8586118
## 4492 -36.4 4.859 5191.0 0.8851675 0.9007315
## 4493 -36.4 4.857 5191.0 0.8854962 0.8586118
## 4494 -36.1 4.964 5228.1 0.8798814 0.9007315
## 4495 -41.8 4.958 5228.1 0.8851675 0.8983567
## 4496 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4497 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4498 -36.1 4.962 5228.1 0.8798814 0.8586118
## 4499 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4500 -42.7 4.963 5228.1 0.9229145 0.8983567
## 4501 -47.1 1.483 5099.1 0.8854962 0.9007315
## 4502 -46.2 1.266 5099.1 0.8874842 0.8983567
## 4503 -36.4 4.860 5191.0 0.8874842 0.8983567
## 4504 -26.9 0.722 5017.5 0.8854962 0.8983567
## 4505 -47.1 1.410 5099.1 0.8874842 0.8586118
## 4506 -42.7 4.962 5228.1 0.9198606 0.8586118
## 4507 -47.1 1.435 5099.1 0.9198606 0.8586118
## 4508 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4509 -42.7 4.962 5228.1 0.8854962 0.8586118
## 4510 -36.4 4.855 5191.0 0.7666667 0.8983567
## 4511 -41.8 4.866 5228.1 0.8874842 0.8586118
## 4512 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4513 -47.1 1.365 5099.1 0.8798814 0.8586118
## 4514 -36.1 4.963 5228.1 0.9229145 0.8983567
## 4515 -41.8 4.866 5228.1 0.9271523 0.9007315
## 4516 -42.7 4.968 5228.1 0.8798814 0.8983567
## 4517 -46.2 1.327 5099.1 0.8798814 0.9007315
## 4518 -36.4 4.857 5191.0 0.8960396 0.8983567
## 4519 -47.1 1.410 5099.1 0.8874842 0.8586118
## 4520 -41.8 4.864 5228.1 0.9229145 0.8983567
## 4521 -36.4 4.855 5191.0 0.8798814 0.9007315
## 4522 -36.1 4.962 5228.1 0.8851675 0.8586118
## 4523 -42.7 4.968 5228.1 0.8854962 0.8586118
## 4524 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4525 -41.8 4.955 5228.1 0.9229145 0.8983567
## 4526 -36.1 4.962 5228.1 0.8874842 0.8983567
## 4527 -42.0 4.153 5195.8 0.9229145 0.8983567
## 4528 -42.0 4.076 5195.8 0.9271523 0.8586118
## 4529 -47.1 1.483 5099.1 0.8798814 0.8983567
## 4530 -46.2 1.334 5099.1 0.9229145 0.8586118
## 4531 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4532 -47.1 1.483 5099.1 0.9074675 0.8983567
## 4533 -36.4 4.855 5191.0 0.8798814 0.8586118
## 4534 -40.8 1.235 5076.2 0.8798814 0.8983567
## 4535 -41.8 4.962 5228.1 0.9229145 0.8983567
## 4536 -42.7 4.958 5228.1 0.8798814 0.8586118
## 4537 -36.4 4.855 5191.0 0.8798814 0.8983567
## 4538 -36.4 4.856 5191.0 0.9229145 0.9007315
## 4539 -41.8 4.961 5228.1 0.8798814 0.8983567
## 4540 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4541 -47.1 1.365 5099.1 0.8798814 0.8586118
## 4542 -42.7 4.958 5228.1 0.8798814 0.8586118
## 4543 -46.2 1.291 5099.1 0.8798814 0.8983567
## 4544 -42.0 4.153 5195.8 0.9198606 0.8983567
## 4545 -42.0 4.076 5195.8 0.9198606 0.8983567
## 4546 -46.2 1.266 5099.1 0.9198606 0.8983567
## 4547 -36.4 4.860 5191.0 0.6868132 0.8586118
## 4548 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4549 -36.4 4.860 5191.0 0.8854962 0.8983567
## 4550 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4551 -46.2 1.344 5099.1 0.9229145 0.8983567
## 4552 -31.4 0.873 5076.2 0.7666667 0.9007315
## 4553 -42.0 4.076 5195.8 0.8798814 0.9007315
## 4554 -42.7 4.962 5228.1 0.8960396 0.9007315
## 4555 -46.2 1.327 5099.1 0.8798814 0.8983567
## 4556 -36.1 4.968 5228.1 0.8854962 0.8586118
## 4557 -36.1 4.964 5228.1 0.8854962 0.8586118
## 4558 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4559 -42.7 4.958 5228.1 0.8854962 0.8586118
## 4560 -41.8 4.958 5228.1 0.9229145 0.9007315
## 4561 -46.2 1.327 5099.1 0.8874842 0.8983567
## 4562 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4563 -36.1 4.963 5228.1 0.8960396 0.8983567
## 4564 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4565 -36.1 4.962 5228.1 0.8854962 0.9007315
## 4566 -37.5 0.878 4963.6 0.8854962 0.8983567
## 4567 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4568 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4569 -36.4 4.860 5191.0 0.9271523 0.8983567
## 4570 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4571 -42.7 4.958 5228.1 0.8854962 0.8983567
## 4572 -42.0 4.076 5195.8 0.8874842 0.8586118
## 4573 -36.4 4.860 5191.0 0.9074675 0.8983567
## 4574 -41.8 4.961 5228.1 0.9229145 0.9007315
## 4575 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4576 -42.0 4.076 5195.8 0.9271523 0.8983567
## 4577 -46.2 1.266 5099.1 0.8798814 0.8586118
## 4578 -41.8 4.958 5228.1 0.8798814 0.8586118
## 4579 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4580 -36.1 4.963 5228.1 0.9229145 0.8983567
## 4581 -36.1 4.964 5228.1 0.8798814 0.8586118
## 4582 -31.4 0.883 5076.2 0.9229145 0.8983567
## 4583 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4584 -46.2 1.266 5099.1 0.9074675 0.8983567
## 4585 -42.7 4.962 5228.1 0.9074675 0.8983567
## 4586 -36.4 4.855 5191.0 0.7666667 0.8586118
## 4587 -42.7 4.963 5228.1 0.8798814 0.8983567
## 4588 -46.2 1.266 5099.1 0.9271523 0.8983567
## 4589 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4590 -42.7 4.961 5228.1 0.8798814 0.9007315
## 4591 -42.7 4.958 5228.1 0.8851675 0.9007315
## 4592 -42.0 4.076 5195.8 0.9198606 0.8983567
## 4593 -36.4 4.860 5191.0 0.8874842 0.8983567
## 4594 -42.0 4.076 5195.8 0.9229145 0.8586118
## 4595 -37.5 0.879 4963.6 0.8798814 0.8983567
## 4596 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4597 -36.1 4.963 5228.1 0.8874842 0.8983567
## 4598 -36.4 4.855 5191.0 0.9229145 0.8586118
## 4599 -41.8 4.866 5228.1 0.8874842 0.8983567
## 4600 -29.8 0.766 5017.5 0.8798814 0.8983567
## 4601 -41.8 4.866 5228.1 0.8960396 0.8983567
## 4602 -36.1 4.962 5228.1 0.9074675 0.8983567
## 4603 -36.1 4.964 5228.1 0.7666667 0.8983567
## 4604 -36.4 4.860 5191.0 0.8874842 0.9007315
## 4605 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4606 -42.7 4.958 5228.1 0.8854962 0.8586118
## 4607 -46.2 1.327 5099.1 0.9074675 0.8983567
## 4608 -40.8 1.262 5076.2 0.7666667 0.9007315
## 4609 -41.8 4.866 5228.1 0.9229145 0.8983567
## 4610 -46.2 1.266 5099.1 0.8854962 0.8586118
## 4611 -41.8 4.958 5228.1 0.9229145 0.8983567
## 4612 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4613 -36.1 4.962 5228.1 0.8854962 0.8586118
## 4614 -36.4 4.860 5191.0 0.8960396 0.8983567
## 4615 -41.8 4.961 5228.1 0.8854962 0.8586118
## 4616 -42.7 4.963 5228.1 0.8798814 0.8586118
## 4617 -42.7 4.968 5228.1 0.8798814 0.8983567
## 4618 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4619 -36.4 4.855 5191.0 0.9271523 0.8983567
## 4620 -31.4 0.883 5076.2 0.7666667 0.8983567
## 4621 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4622 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4623 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4624 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4625 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4626 -36.1 4.964 5228.1 0.8798814 0.8983567
## 4627 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4628 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4629 -42.7 4.963 5228.1 0.8854962 0.8983567
## 4630 -36.1 4.963 5228.1 0.8798814 0.8586118
## 4631 -46.2 1.327 5099.1 0.8874842 0.8983567
## 4632 -36.4 4.855 5191.0 0.8874842 0.8983567
## 4633 -36.4 4.855 5191.0 0.8874842 0.8586118
## 4634 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4635 -42.7 4.966 5228.1 0.8854962 0.8586118
## 4636 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4637 -36.4 4.860 5191.0 0.9074675 0.9007315
## 4638 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4639 -41.8 4.958 5228.1 0.8854962 0.8983567
## 4640 -42.7 4.968 5228.1 0.8798814 0.8983567
## 4641 -42.7 4.958 5228.1 0.9229145 0.8983567
## 4642 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4643 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4644 -50.8 1.041 4963.6 0.6868132 0.8586118
## 4645 -36.1 4.962 5228.1 0.8874842 0.8983567
## 4646 -31.4 0.873 5076.2 0.8798814 0.8586118
## 4647 -42.7 4.968 5228.1 0.8798814 0.8983567
## 4648 -36.4 4.860 5191.0 0.8874842 0.8983567
## 4649 -42.0 4.076 5195.8 0.8874842 0.8983567
## 4650 -42.0 4.076 5195.8 0.9229145 0.8983567
## 4651 -42.0 4.592 5195.8 0.8798814 0.8586118
## 4652 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4653 -36.1 4.963 5228.1 0.8874842 0.8983567
## 4654 -46.2 1.344 5099.1 0.9229145 0.8983567
## 4655 -36.1 4.964 5228.1 0.9198606 0.8983567
## 4656 -36.4 4.856 5191.0 0.9229145 0.8586118
## 4657 -41.8 4.866 5228.1 0.8854962 0.8983567
## 4658 -36.1 4.964 5228.1 0.8874842 0.8983567
## 4659 -42.0 4.076 5195.8 0.9229145 0.9007315
## 4660 -38.3 0.899 4991.6 0.8854962 0.8983567
## 4661 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4662 -31.4 0.851 5076.2 0.6868132 0.8586118
## 4663 -46.2 1.266 5099.1 0.9229145 0.8586118
## 4664 -41.8 4.864 5228.1 0.9229145 0.8983567
## 4665 -42.7 4.958 5228.1 0.9074675 0.9007315
## 4666 -36.1 4.964 5228.1 0.8798814 0.9007315
## 4667 -42.7 4.963 5228.1 0.8854962 0.8586118
## 4668 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4669 -36.1 4.963 5228.1 0.8960396 0.9007315
## 4670 -36.1 4.963 5228.1 0.8851675 0.8983567
## 4671 -36.1 4.962 5228.1 0.9198606 0.8983567
## 4672 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4673 -36.1 4.965 5228.1 0.8854962 0.8586118
## 4674 -36.4 4.860 5191.0 0.8798814 0.9007315
## 4675 -41.8 4.866 5228.1 0.9229145 0.8983567
## 4676 -36.4 4.860 5191.0 0.8874842 0.8586118
## 4677 -42.0 4.076 5195.8 0.9271523 0.8983567
## 4678 -36.1 4.968 5228.1 0.9271523 0.8983567
## 4679 -36.1 4.968 5228.1 0.8874842 0.8983567
## 4680 -42.7 4.962 5228.1 0.8854962 0.8586118
## 4681 -36.4 4.860 5191.0 0.8798814 0.8983567
## 4682 -42.7 4.955 5228.1 0.9074675 0.8983567
## 4683 -47.1 1.415 5099.1 0.9271523 0.8983567
## 4684 -50.0 1.650 5099.1 0.9074675 0.8586118
## 4685 -36.1 4.963 5228.1 0.8798814 0.8586118
## 4686 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4687 -47.1 1.453 5099.1 0.9229145 0.8586118
## 4688 -46.2 1.291 5099.1 0.8798814 0.8983567
## 4689 -36.4 4.857 5191.0 0.9074675 0.9007315
## 4690 -31.4 0.873 5076.2 0.8798814 0.8983567
## 4691 -41.8 4.866 5228.1 0.9198606 0.8983567
## 4692 -36.4 4.860 5191.0 0.8798814 0.9007315
## 4693 -42.7 4.958 5228.1 0.8798814 0.8983567
## 4694 -36.1 4.965 5228.1 0.8798814 0.8983567
## 4695 -36.4 4.857 5191.0 0.8851675 0.8983567
## 4696 -42.7 4.963 5228.1 0.8798814 0.8586118
## 4697 -42.0 4.076 5195.8 0.9198606 0.8983567
## 4698 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4699 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4700 -41.8 4.866 5228.1 0.8798814 0.9007315
## 4701 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4702 -41.8 4.958 5228.1 0.9074675 0.8983567
## 4703 -41.8 4.864 5228.1 0.9229145 0.8983567
## 4704 -42.7 4.968 5228.1 0.9074675 0.8983567
## 4705 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4706 -36.1 4.965 5228.1 0.8854962 0.8983567
## 4707 -42.7 4.963 5228.1 0.9229145 0.8586118
## 4708 -42.7 4.958 5228.1 0.8854962 0.8586118
## 4709 -47.1 1.423 5099.1 0.9074675 0.8983567
## 4710 -42.7 4.961 5228.1 0.7666667 0.9007315
## 4711 -41.8 4.866 5228.1 0.8798814 0.8983567
## 4712 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4713 -46.2 1.266 5099.1 0.8798814 0.8586118
## 4714 -42.7 4.962 5228.1 0.8874842 0.8586118
## 4715 -42.7 4.958 5228.1 0.9271523 0.8586118
## 4716 -42.0 4.153 5195.8 0.9198606 0.9007315
## 4717 -42.7 4.963 5228.1 0.9229145 0.8586118
## 4718 -42.7 4.961 5228.1 0.8798814 0.8983567
## 4719 -36.4 4.857 5191.0 0.8854962 0.8983567
## 4720 -36.1 4.966 5228.1 0.8798814 0.8586118
## 4721 -42.7 4.958 5228.1 0.9198606 0.8586118
## 4722 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4723 -36.1 4.966 5228.1 0.9229145 0.8983567
## 4724 -42.7 4.962 5228.1 0.9229145 0.8586118
## 4725 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4726 -42.7 4.963 5228.1 0.9229145 0.8586118
## 4727 -42.7 4.963 5228.1 0.8854962 0.8586118
## 4728 -36.1 4.968 5228.1 0.8798814 0.8983567
## 4729 -42.7 4.962 5228.1 0.8798814 0.8586118
## 4730 -42.7 4.962 5228.1 0.9074675 0.8983567
## 4731 -34.8 0.637 5008.7 0.8798814 0.8586118
## 4732 -42.7 4.963 5228.1 0.8798814 0.8983567
## 4733 -46.2 1.291 5099.1 0.6868132 0.8586118
## 4734 -36.1 4.968 5228.1 0.8854962 0.8586118
## 4735 -41.8 4.961 5228.1 0.8798814 0.8983567
## 4736 -42.7 4.968 5228.1 0.7666667 0.8983567
## 4737 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4738 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4739 -42.7 4.963 5228.1 0.8854962 0.8983567
## 4740 -36.1 4.964 5228.1 0.8798814 0.8983567
## 4741 -36.1 4.962 5228.1 0.8798814 0.8983567
## 4742 -46.2 1.266 5099.1 0.8854962 0.8586118
## 4743 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4744 -41.8 4.958 5228.1 0.8874842 0.8983567
## 4745 -36.1 4.966 5228.1 0.8798814 0.8983567
## 4746 -42.0 4.153 5195.8 0.8874842 0.8983567
## 4747 -42.7 4.968 5228.1 0.9229145 0.8983567
## 4748 -42.7 4.958 5228.1 0.8798814 0.8983567
## 4749 -42.7 4.962 5228.1 0.8798814 0.8586118
## 4750 -36.4 4.856 5191.0 0.8854962 0.8983567
## 4751 -34.8 0.643 5008.7 0.8854962 0.8586118
## 4752 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4753 -36.1 4.964 5228.1 0.8854962 0.8586118
## 4754 -50.0 1.538 5099.1 0.8798814 0.8586118
## 4755 -36.1 4.968 5228.1 0.8798814 0.8586118
## 4756 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4757 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4758 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4759 -42.7 4.962 5228.1 0.9271523 0.8586118
## 4760 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4761 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4762 -41.8 4.961 5228.1 0.9074675 0.8586118
## 4763 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4764 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4765 -42.7 4.968 5228.1 0.8854962 0.8586118
## 4766 -42.7 4.962 5228.1 0.9229145 0.8586118
## 4767 -40.8 1.260 5076.2 0.9074675 0.8983567
## 4768 -42.0 4.076 5195.8 0.8854962 0.8983567
## 4769 -42.7 4.961 5228.1 0.9074675 0.8983567
## 4770 -36.1 4.968 5228.1 0.8798814 0.8586118
## 4771 -41.8 4.864 5228.1 0.8798814 0.8586118
## 4772 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4773 -36.4 4.856 5191.0 0.8798814 0.8983567
## 4774 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4775 -41.8 4.962 5228.1 0.8960396 0.8983567
## 4776 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4777 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4778 -46.2 1.266 5099.1 0.8854962 0.8586118
## 4779 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4780 -36.1 4.963 5228.1 0.8798814 0.8586118
## 4781 -36.1 4.963 5228.1 0.8960396 0.8983567
## 4782 -36.4 4.857 5191.0 0.8854962 0.8983567
## 4783 -36.4 4.860 5191.0 0.8874842 0.8983567
## 4784 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4785 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4786 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4787 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4788 -46.2 1.344 5099.1 0.8854962 0.8586118
## 4789 -42.7 4.955 5228.1 0.8854962 0.8586118
## 4790 -46.2 1.270 5099.1 0.8854962 0.8586118
## 4791 -41.8 4.866 5228.1 0.9229145 0.8983567
## 4792 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4793 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4794 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4795 -36.1 4.963 5228.1 0.8798814 0.8586118
## 4796 -41.8 4.961 5228.1 0.8874842 0.8983567
## 4797 -36.4 4.856 5191.0 0.8874842 0.8983567
## 4798 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4799 -36.4 4.855 5191.0 0.7666667 0.9007315
## 4800 -42.0 4.076 5195.8 0.9074675 0.8983567
## 4801 -42.7 4.968 5228.1 0.9229145 0.8983567
## 4802 -33.6 1.044 5076.2 0.6868132 0.8586118
## 4803 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4804 -31.4 0.883 5076.2 0.8798814 0.8586118
## 4805 -42.7 4.963 5228.1 0.9198606 0.8983567
## 4806 -42.7 4.958 5228.1 0.9198606 0.9007315
## 4807 -42.0 4.076 5195.8 0.6868132 0.9007315
## 4808 -42.7 4.963 5228.1 0.8854962 0.8983567
## 4809 -46.2 1.291 5099.1 0.8874842 0.8983567
## 4810 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4811 -42.7 4.966 5228.1 0.9074675 0.8983567
## 4812 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4813 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4814 -42.7 4.958 5228.1 0.9074675 0.8586118
## 4815 -40.3 0.846 4991.6 0.8874842 0.8586118
## 4816 -42.7 4.962 5228.1 0.8798814 0.8586118
## 4817 -36.4 4.855 5191.0 0.8798814 0.8983567
## 4818 -31.4 0.851 5076.2 0.8798814 0.9007315
## 4819 -31.4 0.854 5076.2 0.7666667 0.8983567
## 4820 -42.0 4.076 5195.8 0.8874842 0.8983567
## 4821 -36.4 4.857 5191.0 0.9229145 0.8586118
## 4822 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4823 -42.7 4.962 5228.1 0.7666667 0.8983567
## 4824 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4825 -42.7 4.961 5228.1 0.8854962 0.8983567
## 4826 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4827 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4828 -36.1 4.964 5228.1 0.8854962 0.8983567
## 4829 -31.4 0.883 5076.2 0.8854962 0.8983567
## 4830 -36.4 4.860 5191.0 0.9229145 0.9007315
## 4831 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4832 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4833 -29.8 0.768 5017.5 0.8854962 0.8983567
## 4834 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4835 -46.2 1.344 5099.1 0.7666667 0.8983567
## 4836 -42.7 4.958 5228.1 0.8854962 0.8586118
## 4837 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4838 -42.7 4.958 5228.1 0.8798814 0.8983567
## 4839 -46.2 1.266 5099.1 0.8854962 0.8586118
## 4840 -42.0 4.076 5195.8 0.9229145 0.8586118
## 4841 -42.7 4.961 5228.1 0.9229145 0.8983567
## 4842 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4843 -36.4 4.855 5191.0 0.8874842 0.8823529
## 4844 -42.7 4.962 5228.1 0.9229145 0.8983567
## 4845 -36.1 4.966 5228.1 0.8854962 0.8586118
## 4846 -31.4 0.829 5076.2 0.7666667 0.8983567
## 4847 -36.4 4.860 5191.0 0.9229145 0.9007315
## 4848 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4849 -42.0 4.076 5195.8 0.9229145 0.9007315
## 4850 -42.7 4.968 5228.1 0.8874842 0.8983567
## 4851 -42.7 4.963 5228.1 0.6868132 0.9007315
## 4852 -42.0 4.076 5195.8 0.9229145 0.9007315
## 4853 -46.2 1.266 5099.1 0.8798814 0.8983567
## 4854 -36.1 4.963 5228.1 0.9229145 0.8983567
## 4855 -36.1 4.968 5228.1 0.9198606 0.8983567
## 4856 -42.7 4.961 5228.1 0.8798814 0.9007315
## 4857 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4858 -42.7 4.963 5228.1 0.8874842 0.8586118
## 4859 -42.0 4.153 5195.8 0.9229145 0.8983567
## 4860 -36.4 4.860 5191.0 0.8798814 0.8586118
## 4861 -36.4 4.856 5191.0 0.8874842 0.9007315
## 4862 -42.7 4.961 5228.1 0.8874842 0.8983567
## 4863 -36.4 4.860 5191.0 0.8854962 0.8586118
## 4864 -42.0 4.153 5195.8 0.9074675 0.8983567
## 4865 -42.7 4.963 5228.1 0.8874842 0.8586118
## 4866 -36.1 4.966 5228.1 0.9074675 0.8983567
## 4867 -36.4 4.857 5191.0 0.9074675 0.8586118
## 4868 -42.0 4.076 5195.8 0.9074675 0.9007315
## 4869 -41.8 4.958 5228.1 0.8854962 0.8983567
## 4870 -36.1 4.968 5228.1 0.8798814 0.8586118
## 4871 -46.2 1.270 5099.1 0.8874842 0.8983567
## 4872 -42.7 4.958 5228.1 0.9229145 0.8983567
## 4873 -46.2 1.291 5099.1 0.8851675 0.8983567
## 4874 -36.4 4.856 5191.0 0.8798814 0.9007315
## 4875 -41.8 4.961 5228.1 0.8874842 0.9007315
## 4876 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4877 -42.7 4.962 5228.1 0.9271523 0.8983567
## 4878 -42.7 4.961 5228.1 0.9229145 0.8983567
## 4879 -36.1 4.963 5228.1 0.8854962 0.8983567
## 4880 -33.6 1.044 5076.2 0.8798814 0.8983567
## 4881 -36.1 4.968 5228.1 0.8854962 0.8983567
## 4882 -36.1 4.963 5228.1 0.8798814 0.8983567
## 4883 -42.0 4.076 5195.8 0.8874842 0.8983567
## 4884 -36.1 4.964 5228.1 0.9074675 0.8983567
## 4885 -42.7 4.962 5228.1 0.8798814 0.8586118
## 4886 -40.8 1.262 5076.2 0.8798814 0.8983567
## 4887 -46.2 1.291 5099.1 0.9074675 0.8983567
## 4888 -36.4 4.860 5191.0 0.9074675 0.8983567
## 4889 -42.7 4.961 5228.1 0.8798814 0.8983567
## 4890 -36.1 4.962 5228.1 0.8798814 0.8586118
## 4891 -36.4 4.855 5191.0 0.8854962 0.8586118
## 4892 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4893 -42.7 4.962 5228.1 0.9229145 0.8586118
## 4894 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4895 -41.8 4.961 5228.1 0.9074675 0.8586118
## 4896 -42.7 4.961 5228.1 0.8854962 0.8586118
## 4897 -42.7 4.961 5228.1 0.8798814 0.8586118
## 4898 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4899 -42.0 4.120 5195.8 0.8798814 0.8983567
## 4900 -41.8 4.866 5228.1 0.8854962 0.8586118
## 4901 -46.2 1.266 5099.1 0.9074675 0.8983567
## 4902 -46.2 1.327 5099.1 0.9229145 0.8983567
## 4903 -42.7 4.962 5228.1 0.8851675 0.8983567
## 4904 -41.8 4.958 5228.1 0.9271523 0.8983567
## 4905 -36.1 4.963 5228.1 0.8798814 0.8586118
## 4906 -42.7 4.958 5228.1 0.9229145 0.8983567
## 4907 -36.4 4.856 5191.0 0.8874842 0.8983567
## 4908 -36.1 4.962 5228.1 0.8798814 0.8586118
## 4909 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4910 -42.7 4.962 5228.1 0.8874842 0.9007315
## 4911 -36.1 4.968 5228.1 0.9229145 0.8983567
## 4912 -42.0 4.076 5195.8 0.8854962 0.9007315
## 4913 -41.8 4.864 5228.1 0.9229145 0.9007315
## 4914 -47.1 1.405 5099.1 0.8854962 0.8586118
## 4915 -36.4 4.855 5191.0 0.9229145 0.8983567
## 4916 -46.2 1.266 5099.1 0.9229145 0.9007315
## 4917 -36.4 4.860 5191.0 0.9229145 0.8586118
## 4918 -46.2 1.266 5099.1 0.8798814 0.8983567
## 4919 -36.4 4.860 5191.0 0.9229145 0.8586118
## 4920 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4921 -42.7 4.968 5228.1 0.9271523 0.8983567
## 4922 -42.0 4.076 5195.8 0.8798814 0.8983567
## 4923 -36.4 4.860 5191.0 0.8798814 0.8586118
## 4924 -42.7 4.963 5228.1 0.9229145 0.8586118
## 4925 -42.7 4.958 5228.1 0.8798814 0.9007315
## 4926 -41.8 4.961 5228.1 0.9229145 0.8983567
## 4927 -36.4 4.856 5191.0 0.8874842 0.8983567
## 4928 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4929 -42.0 4.076 5195.8 0.9198606 0.8586118
## 4930 -36.1 4.963 5228.1 0.9198606 0.8983567
## 4931 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4932 -41.8 4.866 5228.1 0.9074675 0.8983567
## 4933 -42.7 4.961 5228.1 0.9074675 0.8983567
## 4934 -36.1 4.963 5228.1 0.8854962 0.8586118
## 4935 -42.7 4.961 5228.1 0.9229145 0.8983567
## 4936 -36.4 4.856 5191.0 0.9229145 0.8983567
## 4937 -36.1 4.965 5228.1 0.8854962 0.9007315
## 4938 -36.4 4.856 5191.0 0.8798814 0.8983567
## 4939 -50.0 1.538 5099.1 0.8798814 0.8983567
## 4940 -41.8 4.958 5228.1 0.8798814 0.8983567
## 4941 -42.7 4.962 5228.1 0.8854962 0.8983567
## 4942 -46.2 1.327 5099.1 0.8798814 0.8983567
## 4943 -36.1 4.962 5228.1 0.8854962 0.8983567
## 4944 -42.7 4.962 5228.1 0.8798814 0.8983567
## 4945 -41.8 4.961 5228.1 0.9229145 0.9007315
## 4946 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4947 -42.7 4.962 5228.1 0.8874842 0.9007315
## 4948 -36.4 4.855 5191.0 0.8798814 0.8983567
## 4949 -41.8 4.864 5228.1 0.9074675 0.8983567
## 4950 -41.8 4.958 5228.1 0.8854962 0.8983567
## 4951 -36.1 4.964 5228.1 0.9198606 0.8983567
## 4952 -47.1 1.423 5099.1 0.8798814 0.8983567
## 4953 -42.7 4.962 5228.1 0.9074675 0.8586118
## 4954 -36.1 4.968 5228.1 0.8854962 0.8586118
## 4955 -42.7 4.963 5228.1 0.9229145 0.9007315
## 4956 -42.0 4.153 5195.8 0.9074675 0.8983567
## 4957 -42.7 4.961 5228.1 0.7666667 0.8983567
## 4958 -41.8 4.955 5228.1 0.8854962 0.8586118
## 4959 -46.2 1.344 5099.1 0.8874842 0.8983567
## 4960 -46.2 1.266 5099.1 0.8798814 0.8983567
## 4961 -42.0 4.153 5195.8 0.6868132 0.8586118
## 4962 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4963 -41.8 4.866 5228.1 0.9229145 0.8983567
## 4964 -36.4 4.857 5191.0 0.9271523 0.8983567
## 4965 -36.1 4.964 5228.1 0.9271523 0.8983567
## 4966 -36.4 4.859 5191.0 0.7666667 0.8983567
## 4967 -36.4 4.855 5191.0 0.9229145 0.9007315
## 4968 -36.4 4.857 5191.0 0.8798814 0.8983567
## 4969 -36.4 4.860 5191.0 0.9229145 0.8983567
## 4970 -42.7 4.968 5228.1 0.8798814 0.8586118
## 4971 -41.8 4.959 5228.1 0.8798814 0.8586118
## 4972 -40.8 1.262 5076.2 0.9074675 0.8586118
## 4973 -36.4 4.857 5191.0 0.8874842 0.8983567
## 4974 -42.7 4.962 5228.1 0.8854962 0.9007315
## 4975 -42.7 4.968 5228.1 0.8854962 0.8983567
## 4976 -42.0 4.076 5195.8 0.8798814 0.8586118
## 4977 -34.8 0.655 5008.7 0.7666667 0.8983567
## 4978 -42.7 4.962 5228.1 0.8854962 0.8983567
## 4979 -41.8 4.961 5228.1 0.9074675 0.8983567
## 4980 -41.8 4.958 5228.1 0.9271523 0.9007315
## 4981 -36.1 4.964 5228.1 0.7666667 0.8983567
## 4982 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4983 -36.4 4.860 5191.0 0.8854962 0.8983567
## 4984 -40.8 1.252 5076.2 0.8851675 0.8586118
## 4985 -36.4 4.857 5191.0 0.9074675 0.8983567
## 4986 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4987 -42.0 4.076 5195.8 0.8874842 0.8586118
## 4988 -46.2 1.291 5099.1 0.8874842 0.8586118
## 4989 -42.7 4.966 5228.1 0.8798814 0.8586118
## 4990 -46.2 1.334 5099.1 0.9271523 0.9007315
## 4991 -42.7 4.961 5228.1 0.9229145 0.8983567
## 4992 -42.7 4.962 5228.1 0.8960396 0.8983567
## 4993 -41.8 4.864 5228.1 0.9229145 0.8983567
## 4994 -41.8 4.961 5228.1 0.9271523 0.8983567
## 4995 -36.4 4.856 5191.0 0.9229145 0.8983567
## 4996 -42.7 4.961 5228.1 0.9229145 0.8983567
## 4997 -46.2 1.266 5099.1 0.9229145 0.8983567
## 4998 -41.8 4.961 5228.1 0.8854962 0.9007315
## 4999 -42.7 4.958 5228.1 0.9271523 0.8983567
## education_encoded default_encoded housing_encoded loan_encoded
## 1 0.9156328 0.8709579 0.8932935 0.8845984
## 2 0.8967552 0.8709579 0.8816392 0.8845984
## 3 0.9057377 0.9512195 0.8816392 0.8845984
## 4 0.8657143 0.8709579 0.8932935 0.8845984
## 5 0.8880126 0.8709579 0.8816392 0.8845984
## 6 0.9156328 0.8709579 0.8816392 0.8996840
## 7 0.8880126 0.8709579 0.8932935 0.8845984
## 8 0.8657143 0.8709579 0.8816392 0.8845984
## 9 0.9156328 0.8709579 0.8932935 0.8845984
## 10 0.8657143 0.8709579 0.8816392 0.8845984
## 11 0.9156328 0.8709579 0.8932935 0.8845984
## 12 0.8880126 0.8709579 0.8816392 0.8996840
## 13 0.8657143 0.8709579 0.8932935 0.8845984
## 14 0.9057377 0.8709579 0.8816392 0.8845984
## 15 0.8657143 0.8709579 0.8932935 0.8845984
## 16 0.8657143 0.8709579 0.8816392 0.8845984
## 17 0.9156328 0.8709579 0.8932935 0.8845984
## 18 0.8880126 0.8709579 0.8816392 0.8845984
## 19 0.8880126 0.8709579 0.8816392 0.8996840
## 20 0.8880126 0.8709579 0.8816392 0.8845984
## 21 0.8657143 0.8709579 0.8816392 0.8845984
## 22 0.8657143 0.8709579 0.8816392 0.8845984
## 23 0.8880126 0.8709579 0.8816392 0.8845984
## 24 0.8967552 0.8709579 0.8816392 0.8845984
## 25 0.9156328 0.8709579 0.8932935 0.8845984
## 26 0.8657143 0.8709579 0.8932935 0.8845984
## 27 0.9075630 0.8709579 0.8932935 0.8845984
## 28 0.8880126 0.8709579 0.8816392 0.8845984
## 29 0.8657143 0.8709579 0.8816392 0.8845984
## 30 0.8880126 0.8709579 0.8816392 0.8996840
## 31 0.8348348 0.9512195 0.8932935 0.8845984
## 32 0.9057377 0.8709579 0.8816392 0.8996840
## 33 0.8657143 0.8709579 0.8816392 0.8845984
## 34 0.8657143 0.8709579 0.8816392 0.8845984
## 35 0.8657143 0.8709579 0.8816392 0.8845984
## 36 0.8657143 0.8709579 0.8932935 0.8845984
## 37 0.9156328 0.9512195 0.8816392 0.8845984
## 38 0.8880126 0.8709579 0.8932935 0.8845984
## 39 0.9156328 0.9512195 0.8816392 0.8845984
## 40 0.9057377 0.8709579 0.8932935 0.8845984
## 41 0.8880126 0.8709579 0.8816392 0.8845984
## 42 0.8880126 0.8709579 0.8816392 0.8845984
## 43 0.8657143 0.9512195 0.8816392 0.8845984
## 44 0.8880126 0.8709579 0.8816392 0.8845984
## 45 0.8348348 0.8709579 0.8932935 0.8845984
## 46 0.8657143 0.8709579 0.8932935 0.8996840
## 47 0.8657143 0.8709579 0.8932935 0.8996840
## 48 0.9075630 0.8709579 0.8932935 0.8845984
## 49 0.8657143 0.8709579 0.8816392 0.8845984
## 50 0.8880126 0.8709579 0.8816392 0.8845984
## 51 0.8657143 0.8709579 0.8816392 0.8845984
## 52 0.8880126 0.8709579 0.8816392 0.8845984
## 53 0.9156328 0.8709579 0.8932935 0.8845984
## 54 0.8657143 0.8709579 0.8816392 0.8845984
## 55 0.8880126 0.8709579 0.8816392 0.8845984
## 56 0.9057377 0.8709579 0.8816392 0.8845984
## 57 0.8657143 0.8709579 0.8816392 0.8845984
## 58 0.8967552 0.8709579 0.8932935 0.8845984
## 59 0.9075630 0.9512195 0.8816392 0.8996840
## 60 0.8967552 0.8709579 0.8932935 0.8996840
## 61 0.8880126 0.8709579 0.8816392 0.8845984
## 62 0.9156328 0.8709579 0.8816392 0.8845984
## 63 0.9156328 0.8709579 0.8816392 0.8996840
## 64 0.8657143 0.8709579 0.8816392 0.8845984
## 65 0.8657143 0.8709579 0.8816392 0.8845984
## 66 0.8967552 0.9512195 0.8816392 0.8845984
## 67 0.8880126 0.8709579 0.8816392 0.8845984
## 68 0.8657143 0.8709579 0.8816392 0.8845984
## 69 0.8880126 0.8709579 0.8816392 0.8845984
## 70 0.8657143 0.8709579 0.8932935 0.8845984
## 71 0.8657143 0.8709579 0.8816392 0.8845984
## 72 0.8880126 0.8709579 0.8932935 0.8845984
## 73 0.8880126 0.8709579 0.8932935 0.8845984
## 74 0.8880126 0.8709579 0.8816392 0.8845984
## 75 0.8657143 0.8709579 0.8932935 0.8845984
## 76 0.8657143 0.8709579 0.8932935 0.8996840
## 77 0.8657143 0.8709579 0.8932935 0.8845984
## 78 0.9057377 0.8709579 0.8816392 0.8996840
## 79 0.8880126 0.8709579 0.8816392 0.8845984
## 80 0.9156328 0.8709579 0.8816392 0.8845984
## 81 0.8880126 0.8709579 0.8816392 0.8996840
## 82 0.8657143 0.8709579 0.8932935 0.8845984
## 83 0.8657143 0.8709579 0.8816392 0.8845984
## 84 0.8967552 0.8709579 0.8816392 0.8845984
## 85 0.9057377 0.8709579 0.8932935 0.8845984
## 86 0.8880126 0.8709579 0.8932935 0.8845984
## 87 0.9057377 0.8709579 0.8932935 0.8845984
## 88 0.8967552 0.8709579 0.8816392 0.8845984
## 89 0.8657143 0.8709579 0.8816392 0.8845984
## 90 0.9156328 0.8709579 0.8816392 0.8845984
## 91 0.8657143 0.8709579 0.8816392 0.8996840
## 92 0.8880126 0.8709579 0.8816392 0.8845984
## 93 0.8880126 0.8709579 0.8932935 0.8845984
## 94 0.8967552 0.8709579 0.8816392 0.8845984
## 95 0.8967552 0.8709579 0.8816392 0.8845984
## 96 0.8967552 0.8709579 0.8816392 0.8845984
## 97 0.8348348 0.8709579 0.8932935 0.8845984
## 98 0.9156328 0.8709579 0.8816392 0.8845984
## 99 0.9075630 0.8709579 0.8816392 0.8845984
## 100 0.8967552 0.8709579 0.8932935 0.8845984
## 101 0.8967552 0.8709579 0.8932935 0.8845984
## 102 0.8880126 0.8709579 0.8816392 0.8845984
## 103 0.8657143 0.8709579 0.8932935 0.8845984
## 104 0.8880126 0.8709579 0.8932935 0.8996840
## 105 0.8880126 0.9512195 0.8932935 0.8845984
## 106 0.8880126 0.8709579 0.8932935 0.8845984
## 107 0.8657143 0.8709579 0.8816392 0.8845984
## 108 0.8880126 0.8709579 0.8816392 0.8845984
## 109 0.8880126 0.8709579 0.8932935 0.8845984
## 110 0.8657143 0.8709579 0.8816392 0.8845984
## 111 0.8967552 0.8709579 0.8932935 0.8845984
## 112 0.8657143 0.8709579 0.8816392 0.8845984
## 113 0.8657143 0.8709579 0.8816392 0.8845984
## 114 0.9156328 0.8709579 0.8932935 0.8845984
## 115 0.8967552 0.8709579 0.8932935 0.8845984
## 116 0.9075630 0.8709579 0.8816392 0.8845984
## 117 0.8657143 0.8709579 0.8816392 0.8845984
## 118 0.8880126 0.8709579 0.8932935 0.8845984
## 119 0.8880126 0.8709579 0.8932935 0.8845984
## 120 0.8348348 0.8709579 0.8816392 0.8845984
## 121 0.9156328 0.8709579 0.8932935 0.8845984
## 122 0.9156328 0.8709579 0.8932935 0.8845984
## 123 0.8880126 0.8709579 0.8816392 0.8845984
## 124 0.9075630 0.8709579 0.8816392 0.8996840
## 125 0.9075630 0.8709579 0.8816392 0.8845984
## 126 0.8657143 0.8709579 0.8932935 0.8845984
## 127 0.8967552 0.9512195 0.8816392 0.8996840
## 128 0.9057377 0.8709579 0.8816392 0.8845984
## 129 0.8657143 0.8709579 0.8816392 0.8996840
## 130 0.8880126 0.8709579 0.8816392 0.8845984
## 131 0.8880126 0.8709579 0.8816392 0.8845984
## 132 0.8657143 0.8709579 0.8932935 0.8845984
## 133 0.8657143 0.8709579 0.8816392 0.8845984
## 134 0.9057377 0.9512195 0.8816392 0.8996840
## 135 0.9075630 0.8709579 0.8932935 0.8996840
## 136 0.8657143 0.8709579 0.8932935 0.8996840
## 137 0.8880126 0.9512195 0.8816392 0.8845984
## 138 0.8657143 0.8709579 0.8932935 0.8845984
## 139 0.8348348 0.8709579 0.8816392 0.8845984
## 140 0.8348348 0.8709579 0.8932935 0.8845984
## 141 0.9156328 0.8709579 0.8816392 0.8845984
## 142 0.8657143 0.8709579 0.8816392 0.8845984
## 143 0.9156328 0.8709579 0.8932935 0.8845984
## 144 0.8880126 0.8709579 0.8816392 0.8845984
## 145 0.8657143 0.8709579 0.8932935 0.8845984
## 146 0.8880126 0.8709579 0.8932935 0.8845984
## 147 0.8967552 0.8709579 0.8932935 0.8845984
## 148 0.8657143 0.8709579 0.8816392 0.8845984
## 149 0.8880126 0.8709579 0.8816392 0.8845984
## 150 0.8880126 0.8709579 0.8816392 0.8845984
## 151 0.8880126 0.8709579 0.8932935 0.8845984
## 152 0.8880126 0.8709579 0.8816392 0.8845984
## 153 0.9156328 0.8709579 0.8816392 0.8845984
## 154 0.8880126 0.8709579 0.8932935 0.8845984
## 155 0.8657143 0.8709579 0.8932935 0.8845984
## 156 0.8967552 0.8709579 0.8816392 0.8845984
## 157 0.8880126 0.8709579 0.8816392 0.8845984
## 158 0.8880126 0.8709579 0.8816392 0.8996840
## 159 0.9156328 0.8709579 0.8816392 0.8845984
## 160 0.8657143 0.8709579 0.8932935 0.8845984
## 161 0.9156328 0.8709579 0.8816392 0.8996840
## 162 0.8657143 0.8709579 0.8816392 0.8845984
## 163 0.8657143 0.8709579 0.8932935 0.8845984
## 164 0.8657143 0.8709579 0.8816392 0.8996840
## 165 0.8967552 0.8709579 0.8816392 0.8845984
## 166 0.9156328 0.9512195 0.8816392 0.8845984
## 167 0.8657143 0.8709579 0.8816392 0.8845984
## 168 0.8880126 0.8709579 0.8816392 0.8845984
## 169 0.9075630 0.8709579 0.8932935 0.8996840
## 170 0.9057377 0.8709579 0.8816392 0.8845984
## 171 0.9075630 0.8709579 0.8932935 0.8845984
## 172 0.9057377 0.9512195 0.8932935 0.8845984
## 173 0.9156328 0.8709579 0.8932935 0.8845984
## 174 0.8880126 0.8709579 0.8932935 0.8845984
## 175 0.8657143 0.8709579 0.8816392 0.8845984
## 176 0.9156328 0.8709579 0.8816392 0.8845984
## 177 0.9156328 0.8709579 0.8816392 0.8845984
## 178 0.8657143 0.8709579 0.8932935 0.8845984
## 179 0.9156328 0.8709579 0.8816392 0.8845984
## 180 0.8967552 0.8709579 0.8932935 0.8845984
## 181 0.9156328 0.9512195 0.8816392 0.8845984
## 182 0.8657143 0.8709579 0.8932935 0.8845984
## 183 0.9075630 0.9512195 0.8932935 0.8845984
## 184 0.8880126 0.8709579 0.8932935 0.8996840
## 185 0.8657143 0.8709579 0.8816392 0.8845984
## 186 0.8657143 0.8709579 0.8932935 0.8845984
## 187 0.9075630 0.8709579 0.8816392 0.8845984
## 188 0.8880126 0.8709579 0.8932935 0.8845984
## 189 0.9057377 0.8709579 0.8932935 0.8845984
## 190 0.8967552 0.8709579 0.8932935 0.8845984
## 191 0.8967552 0.8709579 0.8932935 0.8845984
## 192 0.9156328 0.8709579 0.8816392 0.8845984
## 193 0.8657143 0.8709579 0.8816392 0.8845984
## 194 0.9156328 0.8709579 0.8816392 0.8845984
## 195 0.8967552 0.8709579 0.8932935 0.8845984
## 196 0.8657143 0.8709579 0.8932935 0.8845984
## 197 0.9075630 0.8709579 0.8816392 0.8845984
## 198 0.8880126 0.8709579 0.8816392 0.8996840
## 199 0.8348348 0.8709579 0.8932935 0.8845984
## 200 0.9156328 0.8709579 0.8932935 0.8845984
## 201 0.9156328 0.9512195 0.8816392 0.8845984
## 202 0.8967552 0.8709579 0.8816392 0.8845984
## 203 0.8967552 0.8709579 0.8816392 0.8845984
## 204 0.9156328 0.8709579 0.8932935 0.8845984
## 205 0.9156328 0.9512195 0.8932935 0.8996840
## 206 0.8967552 0.8709579 0.8816392 0.8845984
## 207 0.8880126 0.8709579 0.8932935 0.8845984
## 208 0.8657143 0.8709579 0.8932935 0.8845984
## 209 0.8880126 0.8709579 0.8816392 0.8845984
## 210 0.8967552 0.8709579 0.8816392 0.8845984
## 211 0.8657143 0.8709579 0.8816392 0.8996840
## 212 0.8657143 0.8709579 0.8816392 0.8845984
## 213 0.9057377 0.8709579 0.8816392 0.8845984
## 214 0.8880126 0.8709579 0.8816392 0.8845984
## 215 0.8880126 0.8709579 0.8816392 0.8845984
## 216 0.8880126 0.8709579 0.8816392 0.8845984
## 217 0.9057377 0.8709579 0.8932935 0.8845984
## 218 0.8657143 0.9512195 0.8932935 0.8845984
## 219 0.9075630 0.8709579 0.8816392 0.8996840
## 220 0.9156328 0.8709579 0.8932935 0.8845984
## 221 0.9156328 0.8709579 0.8932935 0.8996840
## 222 0.8657143 0.8709579 0.8932935 0.8845984
## 223 0.8880126 0.8709579 0.8816392 0.8845984
## 224 0.8657143 0.8709579 0.8816392 0.8845984
## 225 0.8880126 0.9512195 0.8816392 0.8845984
## 226 0.9057377 0.8709579 0.8816392 0.8845984
## 227 0.8880126 0.8709579 0.8816392 0.8845984
## 228 0.8967552 0.8709579 0.8816392 0.8845984
## 229 0.9075630 0.9512195 0.8816392 0.8845984
## 230 0.8657143 0.8709579 0.8816392 0.8996840
## 231 0.8657143 0.8709579 0.8816392 0.8845984
## 232 0.8657143 0.8709579 0.8816392 0.8845984
## 233 0.8657143 0.8709579 0.8816392 0.8996840
## 234 0.9075630 0.8709579 0.8932935 0.8845984
## 235 0.8657143 0.8709579 0.8816392 0.8845984
## 236 0.8967552 0.8709579 0.8932935 0.8845984
## 237 0.9075630 0.8709579 0.8932935 0.8845984
## 238 0.9075630 0.8709579 0.8932935 0.8845984
## 239 0.8880126 0.8709579 0.9032258 0.9032258
## 240 0.8657143 0.8709579 0.8932935 0.8845984
## 241 0.8657143 0.8709579 0.8816392 0.8845984
## 242 0.8967552 0.8709579 0.8816392 0.8845984
## 243 0.8880126 0.8709579 0.8816392 0.8845984
## 244 0.8657143 0.8709579 0.8816392 0.8845984
## 245 0.8880126 0.8709579 0.8816392 0.8845984
## 246 0.8657143 0.8709579 0.8932935 0.8845984
## 247 0.8967552 0.8709579 0.8932935 0.8996840
## 248 0.8880126 0.8709579 0.8816392 0.8845984
## 249 0.8657143 0.8709579 0.8932935 0.8845984
## 250 0.8880126 0.8709579 0.8816392 0.8845984
## 251 0.8880126 0.8709579 0.8816392 0.8845984
## 252 0.9075630 0.8709579 0.8932935 0.8845984
## 253 0.8880126 0.8709579 0.8816392 0.8845984
## 254 0.8880126 0.8709579 0.8816392 0.8845984
## 255 0.8967552 0.8709579 0.8816392 0.8845984
## 256 0.8967552 0.8709579 0.8932935 0.8845984
## 257 0.9075630 0.8709579 0.8816392 0.8845984
## 258 0.8880126 0.9512195 0.8816392 0.8845984
## 259 0.8880126 0.8709579 0.8816392 0.8845984
## 260 0.9075630 0.8709579 0.8816392 0.8845984
## 261 0.8880126 0.8709579 0.8932935 0.8845984
## 262 0.8657143 0.8709579 0.9032258 0.9032258
## 263 0.8657143 0.8709579 0.8816392 0.8845984
## 264 0.8880126 0.8709579 0.8932935 0.8845984
## 265 0.9075630 0.9512195 0.8816392 0.8845984
## 266 0.8657143 0.8709579 0.8932935 0.8845984
## 267 0.8880126 0.8709579 0.8816392 0.8845984
## 268 0.8657143 0.8709579 0.8816392 0.8845984
## 269 0.8657143 0.8709579 0.8816392 0.8845984
## 270 0.9057377 0.8709579 0.8816392 0.8845984
## 271 0.9156328 0.9512195 0.8932935 0.8996840
## 272 0.8657143 0.9512195 0.8932935 0.8996840
## 273 0.8880126 0.8709579 0.9032258 0.9032258
## 274 0.8967552 0.9512195 0.8816392 0.8996840
## 275 0.9075630 0.8709579 0.8932935 0.8845984
## 276 0.8880126 0.8709579 0.8932935 0.8845984
## 277 0.8657143 0.8709579 0.8932935 0.8996840
## 278 0.9156328 0.8709579 0.8932935 0.8845984
## 279 0.8880126 0.8709579 0.8816392 0.8845984
## 280 0.8657143 0.8709579 0.8816392 0.8845984
## 281 0.8967552 0.8709579 0.8816392 0.8845984
## 282 0.9156328 0.8709579 0.8932935 0.8845984
## 283 0.9057377 0.8709579 0.8816392 0.8845984
## 284 0.8657143 0.8709579 0.8816392 0.8996840
## 285 0.8657143 0.8709579 0.8816392 0.8996840
## 286 0.8880126 0.8709579 0.8932935 0.8845984
## 287 0.8657143 0.8709579 0.9032258 0.9032258
## 288 0.8967552 0.8709579 0.8816392 0.8845984
## 289 0.8880126 0.8709579 0.8816392 0.8845984
## 290 0.8880126 0.8709579 0.8816392 0.8845984
## 291 0.8657143 0.8709579 0.8932935 0.8845984
## 292 0.8348348 0.8709579 0.8816392 0.8845984
## 293 0.9156328 0.8709579 0.8932935 0.8845984
## 294 0.9075630 0.8709579 0.8932935 0.8845984
## 295 0.9156328 0.8709579 0.8932935 0.8845984
## 296 0.8880126 0.8709579 0.8816392 0.8845984
## 297 0.8880126 0.8709579 0.8816392 0.8996840
## 298 0.8880126 0.8709579 0.8816392 0.8996840
## 299 0.9075630 0.9512195 0.8816392 0.8845984
## 300 0.8657143 0.8709579 0.8816392 0.8845984
## 301 0.8657143 0.9512195 0.9032258 0.9032258
## 302 0.9075630 0.9512195 0.8816392 0.8996840
## 303 0.8657143 0.8709579 0.8816392 0.8845984
## 304 0.8657143 0.8709579 0.8932935 0.8996840
## 305 0.8967552 0.8709579 0.8932935 0.8845984
## 306 0.9075630 0.8709579 0.8816392 0.8996840
## 307 0.8967552 0.8709579 0.8816392 0.8845984
## 308 0.9075630 0.8709579 0.8932935 0.8845984
## 309 0.8657143 0.8709579 0.8816392 0.8845984
## 310 0.8657143 0.8709579 0.8816392 0.8845984
## 311 0.8657143 0.8709579 0.8932935 0.8845984
## 312 0.9075630 0.8709579 0.8932935 0.8845984
## 313 0.9156328 0.8709579 0.8932935 0.8996840
## 314 0.9075630 0.8709579 0.8816392 0.8996840
## 315 0.8880126 0.8709579 0.8932935 0.8845984
## 316 0.8880126 0.8709579 0.8932935 0.8996840
## 317 0.8657143 0.8709579 0.8816392 0.8845984
## 318 0.8880126 0.8709579 0.8932935 0.8845984
## 319 0.8657143 0.8709579 0.9032258 0.9032258
## 320 0.9057377 0.8709579 0.8816392 0.8845984
## 321 0.9156328 0.8709579 0.8932935 0.8845984
## 322 0.8880126 0.8709579 0.8816392 0.8845984
## 323 0.9057377 0.8709579 0.8816392 0.8845984
## 324 0.8880126 0.8709579 0.8932935 0.8845984
## 325 0.8657143 0.8709579 0.8816392 0.8845984
## 326 0.9156328 0.8709579 0.8816392 0.8845984
## 327 0.9156328 0.8709579 0.8932935 0.8845984
## 328 0.8657143 0.8709579 0.8932935 0.8845984
## 329 0.8880126 0.8709579 0.8932935 0.8845984
## 330 0.8880126 0.8709579 0.8816392 0.8845984
## 331 0.8657143 0.8709579 0.8816392 0.8996840
## 332 0.8657143 0.8709579 0.8816392 0.8845984
## 333 0.8348348 0.8709579 0.8816392 0.8845984
## 334 0.8657143 0.8709579 0.8932935 0.8845984
## 335 0.8348348 0.8709579 0.8816392 0.8845984
## 336 0.8967552 0.8709579 0.8816392 0.8996840
## 337 0.8880126 0.8709579 0.8816392 0.8996840
## 338 0.9075630 0.8709579 0.8932935 0.8845984
## 339 0.8880126 0.8709579 0.8932935 0.8845984
## 340 0.8880126 0.8709579 0.8816392 0.8996840
## 341 0.8657143 0.8709579 0.8816392 0.8845984
## 342 0.8657143 0.8709579 0.8932935 0.8845984
## 343 0.8967552 0.8709579 0.8816392 0.8845984
## 344 0.8967552 0.8709579 0.8816392 0.8845984
## 345 0.8880126 0.9512195 0.8932935 0.8845984
## 346 0.8880126 0.8709579 0.8932935 0.8845984
## 347 0.8657143 0.8709579 0.9032258 0.9032258
## 348 0.8657143 0.8709579 0.8816392 0.8845984
## 349 0.8657143 0.8709579 0.8932935 0.8845984
## 350 0.9156328 0.8709579 0.8816392 0.8845984
## 351 0.9156328 0.8709579 0.8932935 0.8845984
## 352 0.8880126 0.8709579 0.8932935 0.8845984
## 353 0.8657143 0.8709579 0.8816392 0.8996840
## 354 0.8880126 0.8709579 0.8816392 0.8845984
## 355 0.9057377 0.8709579 0.8932935 0.8845984
## 356 0.8880126 0.8709579 0.8816392 0.8845984
## 357 0.8657143 0.9512195 0.9032258 0.9032258
## 358 0.8880126 0.8709579 0.8932935 0.8845984
## 359 0.9156328 0.8709579 0.8816392 0.8845984
## 360 0.8348348 0.8709579 0.8816392 0.8845984
## 361 0.8967552 0.8709579 0.8816392 0.8845984
## 362 0.8657143 0.8709579 0.8816392 0.8845984
## 363 0.8880126 0.8709579 0.8816392 0.8845984
## 364 0.8880126 0.8709579 0.8816392 0.8845984
## 365 0.8967552 0.8709579 0.8816392 0.8996840
## 366 0.8657143 0.8709579 0.8816392 0.8845984
## 367 0.9075630 0.8709579 0.8816392 0.8845984
## 368 0.8657143 0.8709579 0.8816392 0.8845984
## 369 0.8967552 0.8709579 0.8932935 0.8845984
## 370 0.8880126 0.8709579 0.8932935 0.8845984
## 371 0.8880126 0.8709579 0.8816392 0.8845984
## 372 0.8657143 0.8709579 0.8932935 0.8845984
## 373 0.8880126 0.8709579 0.8932935 0.8845984
## 374 0.8657143 0.8709579 0.8816392 0.8845984
## 375 0.8880126 0.8709579 0.8816392 0.8845984
## 376 0.8967552 0.8709579 0.8932935 0.8845984
## 377 0.8967552 0.8709579 0.8816392 0.8845984
## 378 0.8657143 0.8709579 0.9032258 0.9032258
## 379 0.9156328 0.8709579 0.8816392 0.8845984
## 380 0.9075630 0.9512195 0.8816392 0.8845984
## 381 0.8880126 0.8709579 0.8816392 0.8845984
## 382 0.8348348 0.8709579 0.8932935 0.8845984
## 383 0.8880126 0.8709579 0.8932935 0.8845984
## 384 0.9057377 0.8709579 0.8932935 0.8996840
## 385 0.8348348 0.8709579 0.8816392 0.8845984
## 386 0.9156328 0.9512195 0.8932935 0.8845984
## 387 0.8657143 0.8709579 0.8816392 0.8845984
## 388 0.8657143 0.8709579 0.8932935 0.8845984
## 389 0.9156328 0.8709579 0.8932935 0.8996840
## 390 0.8880126 0.8709579 0.8816392 0.8845984
## 391 0.8657143 0.8709579 0.8816392 0.8845984
## 392 0.9156328 0.8709579 0.8932935 0.8845984
## 393 0.8657143 0.8709579 0.8932935 0.8845984
## 394 0.8657143 0.8709579 0.8932935 0.8845984
## 395 0.9075630 0.8709579 0.8816392 0.8845984
## 396 0.8880126 0.8709579 0.8932935 0.8845984
## 397 0.8657143 0.8709579 0.8816392 0.8845984
## 398 0.9156328 0.8709579 0.8816392 0.8845984
## 399 0.8880126 0.8709579 0.8816392 0.8845984
## 400 0.9057377 0.8709579 0.8932935 0.8845984
## 401 0.8880126 0.8709579 0.8932935 0.8996840
## 402 0.9057377 0.8709579 0.8816392 0.8845984
## 403 0.9057377 0.8709579 0.8816392 0.8845984
## 404 0.8967552 0.8709579 0.8816392 0.8845984
## 405 0.8880126 0.8709579 0.8816392 0.8845984
## 406 0.8657143 0.8709579 0.8816392 0.8845984
## 407 0.8880126 0.8709579 0.8816392 0.8845984
## 408 0.8880126 0.8709579 0.9032258 0.9032258
## 409 0.8880126 0.8709579 0.8816392 0.8845984
## 410 0.8967552 0.8709579 0.8932935 0.8845984
## 411 0.8657143 0.8709579 0.8932935 0.8845984
## 412 0.8880126 0.8709579 0.8816392 0.8845984
## 413 0.8880126 0.8709579 0.8932935 0.8845984
## 414 0.8657143 0.8709579 0.8932935 0.8845984
## 415 0.8657143 0.9512195 0.8932935 0.8845984
## 416 0.9075630 0.8709579 0.8816392 0.8845984
## 417 0.9156328 0.8709579 0.8932935 0.8845984
## 418 0.8657143 0.8709579 0.8932935 0.8845984
## 419 0.8657143 0.8709579 0.8932935 0.8845984
## 420 0.8880126 0.8709579 0.8816392 0.8845984
## 421 0.8967552 0.8709579 0.8816392 0.8845984
## 422 0.8657143 0.8709579 0.8816392 0.8845984
## 423 0.8657143 0.9512195 0.8932935 0.8845984
## 424 0.8967552 0.8709579 0.8932935 0.8845984
## 425 0.8880126 0.9512195 0.8816392 0.8845984
## 426 0.8880126 0.8709579 0.8816392 0.8845984
## 427 0.8657143 0.8709579 0.8932935 0.8845984
## 428 0.8880126 0.8709579 0.8816392 0.8845984
## 429 0.9075630 0.8709579 0.8932935 0.8845984
## 430 0.8880126 0.9512195 0.8816392 0.8996840
## 431 0.8657143 0.8709579 0.8816392 0.8845984
## 432 0.8880126 0.8709579 0.8816392 0.8845984
## 433 0.8880126 0.9512195 0.8816392 0.8845984
## 434 0.8657143 0.8709579 0.8816392 0.8845984
## 435 0.9057377 0.8709579 0.8816392 0.8845984
## 436 0.8880126 0.8709579 0.8816392 0.8845984
## 437 0.8880126 0.8709579 0.8816392 0.8845984
## 438 0.8657143 0.8709579 0.8816392 0.8996840
## 439 0.8657143 0.8709579 0.8932935 0.8996840
## 440 0.8657143 0.8709579 0.8932935 0.8845984
## 441 0.9156328 0.8709579 0.8816392 0.8845984
## 442 0.9156328 0.8709579 0.8816392 0.8845984
## 443 0.8967552 0.8709579 0.8816392 0.8845984
## 444 0.8657143 0.8709579 0.8816392 0.8845984
## 445 0.8657143 0.8709579 0.8932935 0.8845984
## 446 0.9075630 0.8709579 0.8816392 0.8845984
## 447 0.8657143 0.8709579 0.8816392 0.8845984
## 448 0.9156328 0.8709579 0.8932935 0.8845984
## 449 0.9156328 0.8709579 0.8816392 0.8845984
## 450 0.8967552 0.8709579 0.8932935 0.8845984
## 451 0.9075630 0.8709579 0.8816392 0.8845984
## 452 0.9075630 0.9512195 0.8932935 0.8845984
## 453 0.9075630 0.9512195 0.8816392 0.8845984
## 454 0.9075630 0.8709579 0.8816392 0.8996840
## 455 0.9075630 0.8709579 0.8816392 0.8845984
## 456 0.8348348 0.8709579 0.8816392 0.8845984
## 457 0.8880126 0.8709579 0.8816392 0.8845984
## 458 0.8657143 0.8709579 0.8932935 0.8996840
## 459 0.9057377 0.8709579 0.8816392 0.8845984
## 460 0.9075630 0.8709579 0.8816392 0.8996840
## 461 0.8967552 0.8709579 0.8816392 0.8845984
## 462 0.8657143 0.8709579 0.8932935 0.8845984
## 463 0.9075630 0.8709579 0.8816392 0.8996840
## 464 0.8880126 0.8709579 0.8932935 0.8845984
## 465 0.9075630 0.8709579 0.8816392 0.8996840
## 466 0.8657143 0.8709579 0.8932935 0.8845984
## 467 0.8967552 0.8709579 0.8816392 0.8996840
## 468 0.8348348 0.9512195 0.8932935 0.8845984
## 469 0.8880126 0.8709579 0.8816392 0.8845984
## 470 0.8657143 0.8709579 0.8932935 0.8996840
## 471 0.8880126 0.8709579 0.8816392 0.8845984
## 472 0.9156328 0.8709579 0.9032258 0.9032258
## 473 0.8657143 0.8709579 0.8932935 0.8845984
## 474 0.8880126 0.8709579 0.8816392 0.8845984
## 475 0.9057377 0.9512195 0.8816392 0.8845984
## 476 0.8657143 0.8709579 0.8816392 0.8845984
## 477 0.8657143 0.8709579 0.8932935 0.8845984
## 478 0.9075630 0.8709579 0.8932935 0.8845984
## 479 0.9156328 0.9512195 0.8816392 0.8845984
## 480 0.9156328 0.8709579 0.8932935 0.8996840
## 481 0.8348348 0.8709579 0.8816392 0.8845984
## 482 0.8657143 0.8709579 0.8816392 0.8996840
## 483 0.8657143 0.9512195 0.8816392 0.8845984
## 484 0.8657143 0.8709579 0.8932935 0.8845984
## 485 0.8657143 0.8709579 0.8816392 0.8845984
## 486 0.8657143 0.8709579 0.8932935 0.8845984
## 487 0.8657143 0.8709579 0.8932935 0.8845984
## 488 0.8880126 0.8709579 0.8816392 0.8996840
## 489 0.8657143 0.9512195 0.8816392 0.8845984
## 490 0.8880126 0.8709579 0.8932935 0.8845984
## 491 0.8967552 0.8709579 0.8932935 0.8845984
## 492 0.9075630 0.8709579 0.8932935 0.8845984
## 493 0.8880126 0.8709579 0.8816392 0.8845984
## 494 0.8657143 0.8709579 0.8932935 0.8845984
## 495 0.9156328 0.9512195 0.8816392 0.8845984
## 496 0.8967552 0.8709579 0.8816392 0.8845984
## 497 0.8880126 0.8709579 0.8932935 0.8845984
## 498 0.8967552 0.8709579 0.8816392 0.8845984
## 499 0.9156328 0.8709579 0.8932935 0.8845984
## 500 0.8657143 0.8709579 0.8932935 0.8845984
## 501 0.8657143 0.8709579 0.8816392 0.8845984
## 502 0.9057377 0.8709579 0.8816392 0.8845984
## 503 0.8657143 0.8709579 0.8932935 0.8996840
## 504 0.8880126 0.8709579 0.8932935 0.8845984
## 505 0.8348348 0.8709579 0.8816392 0.8996840
## 506 0.8967552 0.8709579 0.8932935 0.8845984
## 507 0.9156328 0.9512195 0.8816392 0.8996840
## 508 0.9156328 0.8709579 0.8816392 0.8996840
## 509 0.8880126 0.8709579 0.8932935 0.8996840
## 510 0.8657143 0.8709579 0.8816392 0.8845984
## 511 0.8348348 0.8709579 0.8816392 0.8845984
## 512 0.9156328 0.9512195 0.8932935 0.8845984
## 513 0.8657143 0.8709579 0.8816392 0.8845984
## 514 0.8967552 0.8709579 0.8932935 0.8845984
## 515 0.8967552 0.8709579 0.8816392 0.8845984
## 516 0.8880126 0.8709579 0.8932935 0.8845984
## 517 0.8657143 0.8709579 0.8932935 0.8845984
## 518 0.8348348 0.9512195 0.8816392 0.8845984
## 519 0.8657143 0.8709579 0.8816392 0.8845984
## 520 0.8967552 0.8709579 0.8816392 0.8996840
## 521 0.8657143 0.8709579 0.8932935 0.8845984
## 522 0.8657143 0.8709579 0.8932935 0.8845984
## 523 0.9156328 0.8709579 0.8932935 0.8845984
## 524 0.8880126 0.8709579 0.8816392 0.8845984
## 525 0.8967552 0.8709579 0.8816392 0.8845984
## 526 0.8657143 0.8709579 0.8932935 0.8845984
## 527 0.8880126 0.8709579 0.8932935 0.8845984
## 528 0.9057377 0.9512195 0.8816392 0.8996840
## 529 0.8967552 0.8709579 0.8816392 0.8845984
## 530 0.9057377 0.8709579 0.8816392 0.8845984
## 531 0.8880126 0.8709579 0.8816392 0.8845984
## 532 0.8967552 0.8709579 0.8816392 0.8845984
## 533 0.8967552 0.8709579 0.8932935 0.8845984
## 534 0.8880126 0.8709579 0.8816392 0.8996840
## 535 0.8657143 0.8709579 0.8816392 0.8845984
## 536 0.8657143 0.8709579 0.8816392 0.8845984
## 537 0.8967552 0.8709579 0.9032258 0.9032258
## 538 0.8657143 0.8709579 0.8816392 0.8845984
## 539 0.8880126 0.8709579 0.8932935 0.8845984
## 540 0.8880126 0.9512195 0.8932935 0.8845984
## 541 0.8657143 0.8709579 0.8932935 0.8845984
## 542 0.9156328 0.8709579 0.8932935 0.8845984
## 543 0.9057377 0.9512195 0.8932935 0.8845984
## 544 0.8967552 0.8709579 0.8932935 0.8845984
## 545 0.8880126 0.8709579 0.8816392 0.8845984
## 546 0.8967552 0.8709579 0.8816392 0.8845984
## 547 0.8657143 0.8709579 0.8816392 0.8845984
## 548 0.9075630 0.8709579 0.8816392 0.8845984
## 549 0.8657143 0.8709579 0.8932935 0.8845984
## 550 0.8880126 0.8709579 0.8816392 0.8996840
## 551 0.8967552 0.8709579 0.8932935 0.8996840
## 552 0.8967552 0.8709579 0.8816392 0.8996840
## 553 0.9156328 0.8709579 0.8932935 0.8845984
## 554 0.9057377 0.8709579 0.8816392 0.8845984
## 555 0.8348348 0.8709579 0.8932935 0.8845984
## 556 0.8657143 0.8709579 0.8932935 0.8996840
## 557 0.8880126 0.8709579 0.8816392 0.8845984
## 558 0.8967552 0.8709579 0.8932935 0.8845984
## 559 0.9156328 0.8709579 0.8816392 0.8845984
## 560 0.8657143 0.8709579 0.8816392 0.8845984
## 561 0.8880126 0.8709579 0.8816392 0.8996840
## 562 0.8967552 0.8709579 0.8816392 0.8845984
## 563 0.8657143 0.8709579 0.8816392 0.8845984
## 564 0.8657143 0.8709579 0.8932935 0.8996840
## 565 0.8657143 0.8709579 0.8932935 0.8845984
## 566 0.8967552 0.9512195 0.8932935 0.8845984
## 567 0.8967552 0.8709579 0.8932935 0.8845984
## 568 0.8880126 0.8709579 0.8816392 0.8845984
## 569 0.9156328 0.8709579 0.8932935 0.8845984
## 570 0.9156328 0.8709579 0.8816392 0.8996840
## 571 0.9156328 0.9512195 0.8816392 0.8845984
## 572 0.9156328 0.8709579 0.8932935 0.8845984
## 573 0.8657143 0.8709579 0.8816392 0.8845984
## 574 0.9075630 0.8709579 0.8816392 0.8845984
## 575 0.8657143 0.8709579 0.8932935 0.8845984
## 576 0.8657143 0.8709579 0.8932935 0.8845984
## 577 0.8880126 0.8709579 0.8932935 0.8845984
## 578 0.9057377 0.9512195 0.8816392 0.8845984
## 579 0.8880126 0.8709579 0.8816392 0.8996840
## 580 0.9075630 0.8709579 0.8816392 0.8845984
## 581 0.8967552 0.8709579 0.8816392 0.8996840
## 582 0.8657143 0.9512195 0.8932935 0.8845984
## 583 0.8657143 0.8709579 0.8816392 0.8845984
## 584 0.9156328 0.8709579 0.8932935 0.8845984
## 585 0.9057377 0.8709579 0.8932935 0.8845984
## 586 0.8880126 0.8709579 0.8932935 0.8845984
## 587 0.8880126 0.9512195 0.8932935 0.8845984
## 588 0.8657143 0.8709579 0.8816392 0.8845984
## 589 0.8880126 0.9512195 0.8816392 0.8845984
## 590 0.9075630 0.8709579 0.8816392 0.8845984
## 591 0.8348348 0.9512195 0.8932935 0.8845984
## 592 0.9156328 0.8709579 0.8932935 0.8845984
## 593 0.8880126 0.8709579 0.8816392 0.8996840
## 594 0.8880126 0.8709579 0.8816392 0.8845984
## 595 0.9075630 0.8709579 0.8816392 0.8845984
## 596 0.8657143 0.8709579 0.8932935 0.8845984
## 597 0.8880126 0.8709579 0.8816392 0.8845984
## 598 0.8657143 0.8709579 0.8816392 0.8845984
## 599 0.8967552 0.8709579 0.8932935 0.8845984
## 600 0.8880126 0.8709579 0.8816392 0.8996840
## 601 0.8967552 0.8709579 0.8932935 0.8845984
## 602 0.8880126 0.8709579 0.8932935 0.8845984
## 603 0.8657143 0.8709579 0.8816392 0.8996840
## 604 0.8880126 0.9512195 0.8932935 0.8845984
## 605 0.8880126 0.8709579 0.8816392 0.8845984
## 606 0.8967552 0.8709579 0.8932935 0.8845984
## 607 0.9075630 0.9512195 0.8932935 0.8845984
## 608 0.8880126 0.8709579 0.8816392 0.8996840
## 609 0.8967552 0.8709579 0.8816392 0.8845984
## 610 0.8657143 0.8709579 0.8932935 0.8845984
## 611 0.8657143 0.8709579 0.8816392 0.8996840
## 612 0.8880126 0.8709579 0.8816392 0.8845984
## 613 0.9156328 0.8709579 0.8932935 0.8845984
## 614 0.8880126 0.8709579 0.8816392 0.8845984
## 615 0.8880126 0.9512195 0.8816392 0.8845984
## 616 0.8657143 0.8709579 0.8932935 0.8845984
## 617 0.8657143 0.8709579 0.8816392 0.8845984
## 618 0.8967552 0.8709579 0.8932935 0.8845984
## 619 0.9156328 0.8709579 0.8932935 0.8845984
## 620 0.9156328 0.8709579 0.8816392 0.8845984
## 621 0.8880126 0.8709579 0.8816392 0.8845984
## 622 0.8880126 0.8709579 0.8816392 0.8845984
## 623 0.8880126 0.8709579 0.8932935 0.8845984
## 624 0.8880126 0.8709579 0.8816392 0.8845984
## 625 0.8657143 0.8709579 0.8932935 0.8845984
## 626 0.8657143 0.8709579 0.8816392 0.8845984
## 627 0.9156328 0.8709579 0.8816392 0.8845984
## 628 0.8880126 0.9512195 0.8816392 0.8845984
## 629 0.9057377 0.9512195 0.8932935 0.8845984
## 630 0.8967552 0.8709579 0.8932935 0.8996840
## 631 0.8657143 0.8709579 0.8816392 0.8845984
## 632 0.9156328 0.8709579 0.8816392 0.8845984
## 633 0.8967552 0.8709579 0.8932935 0.8845984
## 634 0.8967552 0.8709579 0.8932935 0.8996840
## 635 0.8657143 0.8709579 0.8932935 0.8996840
## 636 0.8657143 0.8709579 0.8932935 0.8845984
## 637 0.8880126 0.8709579 0.8816392 0.8845984
## 638 0.8880126 0.8709579 0.8816392 0.8845984
## 639 0.8880126 0.8709579 0.8932935 0.8845984
## 640 0.8657143 0.8709579 0.8816392 0.8996840
## 641 0.8880126 0.8709579 0.8816392 0.8845984
## 642 0.8657143 0.8709579 0.8932935 0.8845984
## 643 0.9057377 0.8709579 0.8932935 0.8996840
## 644 0.9156328 0.8709579 0.8932935 0.8845984
## 645 0.9156328 0.8709579 0.8932935 0.8845984
## 646 0.8967552 0.8709579 0.8932935 0.8996840
## 647 0.8657143 0.8709579 0.8816392 0.8845984
## 648 0.8880126 0.8709579 0.8932935 0.8845984
## 649 0.8880126 0.8709579 0.8816392 0.8845984
## 650 0.8880126 0.8709579 0.8932935 0.8845984
## 651 0.8657143 0.8709579 0.8932935 0.8845984
## 652 0.8657143 0.8709579 0.8816392 0.8845984
## 653 0.8967552 0.8709579 0.8932935 0.8845984
## 654 0.8880126 0.8709579 0.8816392 0.8845984
## 655 0.9075630 0.8709579 0.8816392 0.8996840
## 656 0.9057377 0.8709579 0.8816392 0.8996840
## 657 0.8880126 0.8709579 0.8816392 0.8996840
## 658 0.8880126 0.8709579 0.8816392 0.8845984
## 659 0.9075630 0.8709579 0.8816392 0.8845984
## 660 0.8967552 0.8709579 0.8932935 0.8845984
## 661 0.8880126 0.8709579 0.8932935 0.8996840
## 662 0.8967552 0.8709579 0.8816392 0.8845984
## 663 0.9057377 0.9512195 0.8932935 0.8845984
## 664 0.8880126 0.8709579 0.8816392 0.8845984
## 665 0.8880126 0.8709579 0.9032258 0.9032258
## 666 0.9057377 0.8709579 0.8932935 0.8845984
## 667 0.9075630 0.8709579 0.8932935 0.8845984
## 668 0.8880126 0.9512195 0.8816392 0.8845984
## 669 0.8880126 0.8709579 0.8932935 0.8845984
## 670 0.9156328 0.9512195 0.8932935 0.8845984
## 671 0.8880126 0.8709579 0.8816392 0.8845984
## 672 0.9156328 0.8709579 0.8816392 0.8845984
## 673 0.9075630 0.8709579 0.8816392 0.8845984
## 674 0.9075630 0.9512195 0.8816392 0.8845984
## 675 0.9156328 0.9512195 0.8816392 0.8845984
## 676 0.8657143 0.8709579 0.8816392 0.8845984
## 677 0.8880126 0.8709579 0.8816392 0.8845984
## 678 0.8880126 0.8709579 0.8816392 0.8996840
## 679 0.9156328 0.8709579 0.8932935 0.8845984
## 680 0.8657143 0.9512195 0.8932935 0.8845984
## 681 0.8880126 0.8709579 0.8932935 0.8845984
## 682 0.8348348 0.8709579 0.8932935 0.8845984
## 683 0.8967552 0.8709579 0.8816392 0.8845984
## 684 0.8348348 0.8709579 0.8816392 0.8845984
## 685 0.8657143 0.8709579 0.8816392 0.8845984
## 686 0.9156328 0.8709579 0.8816392 0.8845984
## 687 0.8880126 0.8709579 0.8816392 0.8845984
## 688 0.8657143 0.9512195 0.8932935 0.8845984
## 689 0.9156328 0.8709579 0.8932935 0.8845984
## 690 0.8967552 0.9512195 0.8816392 0.8845984
## 691 0.8657143 0.8709579 0.8816392 0.8845984
## 692 0.9156328 0.9512195 0.8816392 0.8845984
## 693 0.8880126 0.8709579 0.8816392 0.8845984
## 694 0.9075630 0.8709579 0.8816392 0.8845984
## 695 0.9156328 0.9512195 0.8816392 0.8845984
## 696 0.8657143 0.8709579 0.8816392 0.8996840
## 697 0.9156328 0.9512195 0.8816392 0.8845984
## 698 0.9156328 0.8709579 0.8816392 0.8845984
## 699 0.9075630 0.8709579 0.8816392 0.8845984
## 700 0.8967552 0.8709579 0.8816392 0.8996840
## 701 0.8657143 0.8709579 0.8932935 0.8845984
## 702 0.8880126 0.8709579 0.8816392 0.8845984
## 703 0.8657143 0.8709579 0.8932935 0.8845984
## 704 0.8880126 0.8709579 0.8816392 0.8845984
## 705 0.8657143 0.8709579 0.8932935 0.8996840
## 706 0.8657143 0.8709579 0.8932935 0.8845984
## 707 0.8657143 0.8709579 0.8816392 0.8845984
## 708 0.9057377 0.9512195 0.8816392 0.8845984
## 709 0.9075630 0.8709579 0.8932935 0.8845984
## 710 0.8880126 0.8709579 0.9032258 0.9032258
## 711 0.8880126 0.8709579 0.8932935 0.8845984
## 712 0.8657143 0.8709579 0.8816392 0.8845984
## 713 0.8880126 0.8709579 0.8932935 0.8845984
## 714 0.8880126 0.8709579 0.8932935 0.8996840
## 715 0.9156328 0.8709579 0.8932935 0.8996840
## 716 0.8880126 0.8709579 0.8932935 0.8996840
## 717 0.8880126 0.8709579 0.8816392 0.8845984
## 718 0.8880126 0.8709579 0.8816392 0.8996840
## 719 0.8967552 0.8709579 0.8816392 0.8845984
## 720 0.8880126 0.8709579 0.8816392 0.8845984
## 721 0.8657143 0.8709579 0.8932935 0.8845984
## 722 0.9075630 0.9512195 0.8816392 0.8845984
## 723 0.8657143 0.8709579 0.8932935 0.8845984
## 724 0.8657143 0.8709579 0.8816392 0.8845984
## 725 0.9075630 0.8709579 0.8816392 0.8845984
## 726 0.8657143 0.8709579 0.8816392 0.8845984
## 727 0.9156328 0.8709579 0.8816392 0.8845984
## 728 0.9075630 0.9512195 0.8816392 0.8996840
## 729 0.8657143 0.8709579 0.8932935 0.8845984
## 730 0.9156328 0.8709579 0.8816392 0.8845984
## 731 0.8967552 0.8709579 0.8932935 0.8845984
## 732 0.8657143 0.8709579 0.8816392 0.8996840
## 733 0.8657143 0.9512195 0.8932935 0.8845984
## 734 0.8657143 0.8709579 0.8816392 0.8845984
## 735 0.8657143 0.8709579 0.8932935 0.8845984
## 736 0.8967552 0.8709579 0.8816392 0.8845984
## 737 0.8880126 0.8709579 0.8816392 0.8845984
## 738 0.9156328 0.9512195 0.8932935 0.8845984
## 739 0.8880126 0.9512195 0.8932935 0.8845984
## 740 0.8967552 0.8709579 0.8932935 0.8845984
## 741 0.8657143 0.8709579 0.8816392 0.8845984
## 742 0.9156328 0.8709579 0.8816392 0.8845984
## 743 0.9156328 0.9512195 0.8932935 0.8845984
## 744 0.8657143 0.8709579 0.8816392 0.8996840
## 745 0.8657143 0.8709579 0.8816392 0.8996840
## 746 0.9156328 0.8709579 0.8816392 0.8845984
## 747 0.9156328 0.8709579 0.8932935 0.8845984
## 748 0.8880126 0.9512195 0.8932935 0.8996840
## 749 0.9057377 0.9512195 0.8816392 0.8845984
## 750 0.9156328 0.8709579 0.8932935 0.8845984
## 751 0.9156328 0.9512195 0.8816392 0.8845984
## 752 0.8880126 0.8709579 0.8932935 0.8845984
## 753 0.8657143 0.8709579 0.8932935 0.8845984
## 754 0.8657143 0.8709579 0.8932935 0.8845984
## 755 0.8880126 0.9512195 0.8816392 0.8845984
## 756 0.9075630 0.8709579 0.8816392 0.8845984
## 757 0.8657143 0.9512195 0.8932935 0.8845984
## 758 0.8657143 0.8709579 0.8932935 0.8845984
## 759 0.9156328 0.8709579 0.8816392 0.8845984
## 760 0.9156328 0.8709579 0.8816392 0.8845984
## 761 0.9156328 0.8709579 0.8816392 0.8845984
## 762 0.9156328 0.8709579 0.8932935 0.8845984
## 763 0.8657143 0.8709579 0.8816392 0.8845984
## 764 0.8880126 0.8709579 0.8932935 0.8845984
## 765 0.8880126 0.9512195 0.8816392 0.8845984
## 766 0.9075630 0.8709579 0.8932935 0.8845984
## 767 0.8880126 0.8709579 0.9032258 0.9032258
## 768 0.8657143 0.8709579 0.8816392 0.8845984
## 769 0.8880126 0.8709579 0.8816392 0.8845984
## 770 0.8880126 0.8709579 0.8816392 0.8845984
## 771 0.8880126 0.8709579 0.8932935 0.8845984
## 772 0.8880126 0.8709579 0.8932935 0.8845984
## 773 0.8880126 0.8709579 0.8932935 0.8845984
## 774 0.8880126 0.8709579 0.8816392 0.8845984
## 775 0.8657143 0.8709579 0.8816392 0.8845984
## 776 0.9156328 0.8709579 0.9032258 0.9032258
## 777 0.8657143 0.8709579 0.8816392 0.8845984
## 778 0.8657143 0.8709579 0.8816392 0.8845984
## 779 0.8880126 0.8709579 0.8932935 0.8845984
## 780 0.8880126 0.8709579 0.8816392 0.8845984
## 781 0.8348348 0.8709579 0.8932935 0.8845984
## 782 0.8880126 0.8709579 0.8932935 0.8845984
## 783 0.8880126 0.8709579 0.8816392 0.8845984
## 784 0.9156328 0.8709579 0.8816392 0.8845984
## 785 0.8657143 0.8709579 0.8816392 0.8845984
## 786 0.8880126 0.8709579 0.8932935 0.8845984
## 787 0.8657143 0.8709579 0.8932935 0.8845984
## 788 0.8880126 0.9512195 0.8932935 0.8845984
## 789 0.8657143 0.8709579 0.8932935 0.8845984
## 790 0.9057377 0.8709579 0.8932935 0.8845984
## 791 0.9075630 0.8709579 0.8816392 0.8845984
## 792 0.9057377 0.9512195 0.8816392 0.8845984
## 793 0.8657143 0.8709579 0.8932935 0.8845984
## 794 0.8657143 0.8709579 0.8816392 0.8845984
## 795 0.8657143 0.8709579 0.9032258 0.9032258
## 796 0.8880126 0.9512195 0.8816392 0.8845984
## 797 0.8348348 0.8709579 0.8932935 0.8845984
## 798 0.8880126 0.9512195 0.8816392 0.8845984
## 799 0.9075630 0.8709579 0.8816392 0.8845984
## 800 0.8880126 0.8709579 0.8816392 0.8845984
## 801 0.8880126 0.8709579 0.8932935 0.8845984
## 802 0.8657143 0.8709579 0.8816392 0.8845984
## 803 0.8880126 0.8709579 0.8932935 0.8845984
## 804 0.8880126 0.9512195 0.8816392 0.8845984
## 805 0.9156328 0.8709579 0.8816392 0.8845984
## 806 0.8880126 0.8709579 0.8816392 0.8845984
## 807 0.8348348 0.8709579 0.8816392 0.8845984
## 808 0.8348348 0.8709579 0.8816392 0.8845984
## 809 0.8657143 0.8709579 0.8816392 0.8845984
## 810 0.9156328 0.8709579 0.8932935 0.8845984
## 811 0.9075630 0.8709579 0.8816392 0.8845984
## 812 0.8657143 0.8709579 0.8816392 0.8845984
## 813 0.8880126 0.8709579 0.8932935 0.8996840
## 814 0.9057377 0.9512195 0.8932935 0.8845984
## 815 0.8657143 0.8709579 0.8816392 0.8845984
## 816 0.8880126 0.8709579 0.8932935 0.8845984
## 817 0.8657143 0.8709579 0.8932935 0.8845984
## 818 0.8880126 0.8709579 0.8932935 0.8845984
## 819 0.8348348 0.8709579 0.8816392 0.8845984
## 820 0.8657143 0.8709579 0.8816392 0.8845984
## 821 0.8348348 0.8709579 0.8932935 0.8845984
## 822 0.9156328 0.8709579 0.8932935 0.8845984
## 823 0.8348348 0.8709579 0.8932935 0.8845984
## 824 0.8880126 0.8709579 0.8932935 0.8845984
## 825 0.8657143 0.8709579 0.8932935 0.8996840
## 826 0.8348348 0.8709579 0.8932935 0.8845984
## 827 0.8880126 0.8709579 0.8932935 0.8845984
## 828 0.8880126 0.8709579 0.8932935 0.8845984
## 829 0.8967552 0.8709579 0.8816392 0.8996840
## 830 0.8880126 0.8709579 0.8932935 0.8845984
## 831 0.8967552 0.8709579 0.8816392 0.8845984
## 832 0.8880126 0.8709579 0.8932935 0.8845984
## 833 0.8880126 0.9512195 0.8932935 0.8845984
## 834 0.9057377 0.9512195 0.8816392 0.8845984
## 835 0.8880126 0.8709579 0.8816392 0.8845984
## 836 0.8967552 0.8709579 0.8816392 0.8845984
## 837 0.8880126 0.8709579 0.8932935 0.8996840
## 838 0.9156328 0.8709579 0.8932935 0.8845984
## 839 0.8348348 0.8709579 0.8932935 0.8845984
## 840 0.8967552 0.9512195 0.9032258 0.9032258
## 841 0.8967552 0.9512195 0.8932935 0.8845984
## 842 0.9156328 0.8709579 0.8932935 0.8845984
## 843 0.9075630 0.8709579 0.8816392 0.8845984
## 844 0.8657143 0.9512195 0.8932935 0.8845984
## 845 0.9156328 0.9512195 0.8932935 0.8845984
## 846 0.8657143 0.8709579 0.8932935 0.8845984
## 847 0.8880126 0.8709579 0.8932935 0.8845984
## 848 0.8657143 0.8709579 0.8816392 0.8845984
## 849 0.8880126 0.8709579 0.8932935 0.8845984
## 850 0.9156328 0.8709579 0.8932935 0.8845984
## 851 0.8967552 0.8709579 0.8932935 0.8845984
## 852 0.8880126 0.8709579 0.8932935 0.8996840
## 853 0.8880126 0.8709579 0.8816392 0.8845984
## 854 0.9156328 0.9512195 0.8816392 0.8845984
## 855 0.8657143 0.9512195 0.8816392 0.8845984
## 856 0.8967552 0.8709579 0.8932935 0.8845984
## 857 0.9057377 0.8709579 0.8932935 0.8845984
## 858 0.8348348 0.8709579 0.8932935 0.8845984
## 859 0.8657143 0.9512195 0.8816392 0.8845984
## 860 0.8967552 0.8709579 0.8816392 0.8845984
## 861 0.9075630 0.9512195 0.8932935 0.8996840
## 862 0.9075630 0.8709579 0.8816392 0.8845984
## 863 0.8880126 0.8709579 0.8816392 0.8845984
## 864 0.8967552 0.8709579 0.8932935 0.8845984
## 865 0.8880126 0.9512195 0.8816392 0.8845984
## 866 0.8880126 0.8709579 0.8932935 0.8845984
## 867 0.9057377 0.9512195 0.8816392 0.8845984
## 868 0.8880126 0.8709579 0.8932935 0.8845984
## 869 0.9057377 0.8709579 0.8816392 0.8845984
## 870 0.8880126 0.8709579 0.8932935 0.8996840
## 871 0.8657143 0.8709579 0.8932935 0.8845984
## 872 0.8880126 0.8709579 0.8932935 0.8845984
## 873 0.8657143 0.8709579 0.8816392 0.8845984
## 874 0.8657143 0.8709579 0.8816392 0.8845984
## 875 0.8880126 0.8709579 0.8932935 0.8845984
## 876 0.8657143 0.8709579 0.8932935 0.8845984
## 877 0.9075630 0.9512195 0.8932935 0.8845984
## 878 0.8657143 0.8709579 0.8932935 0.8845984
## 879 0.9156328 0.8709579 0.8816392 0.8996840
## 880 0.8967552 0.8709579 0.9032258 0.9032258
## 881 0.8657143 0.8709579 0.8816392 0.8845984
## 882 0.8880126 0.8709579 0.8932935 0.8845984
## 883 0.8657143 0.8709579 0.8932935 0.8996840
## 884 0.8880126 0.8709579 0.8932935 0.8845984
## 885 0.9156328 0.9512195 0.8816392 0.8996840
## 886 0.8967552 0.9512195 0.8816392 0.8845984
## 887 0.8657143 0.8709579 0.8816392 0.8845984
## 888 0.8657143 0.8709579 0.8932935 0.8996840
## 889 0.8657143 0.8709579 0.8932935 0.8845984
## 890 0.9057377 0.8709579 0.8932935 0.8845984
## 891 0.9075630 0.9512195 0.8932935 0.8845984
## 892 0.8657143 0.8709579 0.8816392 0.8845984
## 893 0.9156328 0.8709579 0.8932935 0.8996840
## 894 0.9057377 0.9512195 0.8816392 0.8845984
## 895 0.8880126 0.8709579 0.8816392 0.8996840
## 896 0.8880126 0.8709579 0.8932935 0.8845984
## 897 0.8967552 0.8709579 0.8816392 0.8996840
## 898 0.9156328 0.8709579 0.8816392 0.8845984
## 899 0.8657143 0.8709579 0.8816392 0.8845984
## 900 0.8348348 0.8709579 0.8816392 0.8845984
## 901 0.8657143 0.8709579 0.8816392 0.8845984
## 902 0.8967552 0.9512195 0.8932935 0.8845984
## 903 0.8657143 0.8709579 0.8816392 0.8845984
## 904 0.8880126 0.9512195 0.8816392 0.8996840
## 905 0.9075630 0.8709579 0.8932935 0.8845984
## 906 0.8657143 0.9512195 0.8816392 0.8845984
## 907 0.8657143 0.8709579 0.8816392 0.8845984
## 908 0.8657143 0.8709579 0.8816392 0.8845984
## 909 0.8880126 0.9512195 0.8816392 0.8845984
## 910 0.8657143 0.8709579 0.8932935 0.8845984
## 911 0.8967552 0.9512195 0.8816392 0.8845984
## 912 0.8880126 0.8709579 0.8816392 0.8996840
## 913 0.9156328 0.9512195 0.8932935 0.8845984
## 914 0.9057377 0.8709579 0.9032258 0.9032258
## 915 0.8880126 0.8709579 0.8932935 0.8845984
## 916 0.8880126 0.8709579 0.8816392 0.8996840
## 917 0.9057377 0.9512195 0.8816392 0.8996840
## 918 0.8657143 0.8709579 0.8816392 0.8996840
## 919 0.8657143 0.8709579 0.8932935 0.8845984
## 920 0.9057377 0.8709579 0.8932935 0.8845984
## 921 0.8348348 0.9512195 0.8932935 0.8845984
## 922 0.9156328 0.9512195 0.8816392 0.8996840
## 923 0.9156328 0.8709579 0.8932935 0.8845984
## 924 0.8880126 0.9512195 0.9032258 0.9032258
## 925 0.8967552 0.8709579 0.8816392 0.8845984
## 926 0.9156328 0.8709579 0.8816392 0.8845984
## 927 0.8967552 0.8709579 0.8816392 0.8845984
## 928 0.9075630 0.8709579 0.8932935 0.8845984
## 929 0.9156328 0.8709579 0.8932935 0.8845984
## 930 0.9075630 0.8709579 0.8816392 0.8996840
## 931 0.9156328 0.8709579 0.8816392 0.8996840
## 932 0.9057377 0.9512195 0.8816392 0.8845984
## 933 0.9075630 0.9512195 0.8816392 0.8845984
## 934 0.8880126 0.8709579 0.8932935 0.8845984
## 935 0.8348348 0.8709579 0.8816392 0.8996840
## 936 0.9156328 0.8709579 0.8932935 0.8845984
## 937 0.9156328 0.9512195 0.8932935 0.8996840
## 938 0.8880126 0.9512195 0.8932935 0.8845984
## 939 0.9156328 0.8709579 0.8932935 0.8845984
## 940 0.8880126 0.9512195 0.8932935 0.8845984
## 941 0.8967552 0.8709579 0.8932935 0.8845984
## 942 0.8880126 0.8709579 0.8816392 0.8845984
## 943 0.9075630 0.9512195 0.8932935 0.8845984
## 944 0.8348348 0.8709579 0.8816392 0.8996840
## 945 0.9156328 0.8709579 0.8932935 0.8845984
## 946 0.8657143 0.8709579 0.8816392 0.8845984
## 947 0.9156328 0.8709579 0.8816392 0.8845984
## 948 0.8880126 0.8709579 0.9032258 0.9032258
## 949 0.8657143 0.8709579 0.8816392 0.8845984
## 950 0.8880126 0.9512195 0.8932935 0.8996840
## 951 0.9156328 0.9512195 0.8816392 0.8845984
## 952 0.8657143 0.8709579 0.8816392 0.8845984
## 953 0.8657143 0.8709579 0.8932935 0.8845984
## 954 0.8348348 0.8709579 0.8816392 0.8845984
## 955 0.9075630 0.8709579 0.8816392 0.8845984
## 956 0.8348348 0.9512195 0.8816392 0.8996840
## 957 0.8880126 0.8709579 0.8816392 0.8845984
## 958 0.9057377 0.8709579 0.8816392 0.8845984
## 959 0.8657143 0.8709579 0.8932935 0.8845984
## 960 0.9156328 0.9512195 0.8932935 0.8845984
## 961 0.9075630 0.8709579 0.8816392 0.8845984
## 962 0.8657143 0.8709579 0.8932935 0.8845984
## 963 0.8880126 0.8709579 0.8932935 0.8845984
## 964 0.9057377 0.8709579 0.8816392 0.8845984
## 965 0.8880126 0.8709579 0.8816392 0.8845984
## 966 0.8967552 0.9512195 0.8816392 0.8845984
## 967 0.9057377 0.8709579 0.8816392 0.8845984
## 968 0.9075630 0.9512195 0.8816392 0.8845984
## 969 0.8880126 0.8709579 0.8932935 0.8996840
## 970 0.8880126 0.8709579 0.8816392 0.8845984
## 971 0.8657143 0.8709579 0.8932935 0.8845984
## 972 0.8880126 0.9512195 0.8816392 0.8845984
## 973 0.8880126 0.8709579 0.8932935 0.8845984
## 974 0.8880126 0.8709579 0.8816392 0.8996840
## 975 0.8880126 0.8709579 0.8816392 0.8845984
## 976 0.8880126 0.9512195 0.8932935 0.8845984
## 977 0.8880126 0.8709579 0.8816392 0.8845984
## 978 0.8967552 0.9512195 0.8816392 0.8996840
## 979 0.8967552 0.8709579 0.8816392 0.8845984
## 980 0.8657143 0.8709579 0.8932935 0.8996840
## 981 0.8880126 0.8709579 0.8816392 0.8845984
## 982 0.8880126 0.8709579 0.8932935 0.8845984
## 983 0.8657143 0.8709579 0.8816392 0.8845984
## 984 0.8348348 0.9512195 0.8816392 0.8845984
## 985 0.8657143 0.8709579 0.8816392 0.8845984
## 986 0.8657143 0.8709579 0.8932935 0.8845984
## 987 0.8880126 0.8709579 0.8932935 0.8845984
## 988 0.8967552 0.8709579 0.8816392 0.8845984
## 989 0.9156328 0.9512195 0.8816392 0.8845984
## 990 0.8880126 0.8709579 0.8816392 0.8845984
## 991 0.8967552 0.8709579 0.9032258 0.9032258
## 992 0.9156328 0.8709579 0.8932935 0.8845984
## 993 0.9156328 0.8709579 0.8816392 0.8845984
## 994 0.8880126 0.8709579 0.8932935 0.8845984
## 995 0.8967552 0.9512195 0.8932935 0.8845984
## 996 0.8657143 0.8709579 0.8932935 0.8845984
## 997 0.8880126 0.8709579 0.8816392 0.8845984
## 998 0.8657143 0.8709579 0.8932935 0.8845984
## 999 0.8967552 0.8709579 0.8816392 0.8845984
## 1000 0.8880126 0.8709579 0.8816392 0.8845984
## 1001 0.8657143 0.8709579 0.8932935 0.8845984
## 1002 0.8880126 0.8709579 0.8816392 0.8996840
## 1003 0.9156328 0.8709579 0.8816392 0.8996840
## 1004 0.8657143 0.8709579 0.8932935 0.8845984
## 1005 0.8657143 0.8709579 0.8932935 0.8996840
## 1006 0.8657143 0.8709579 0.8816392 0.8845984
## 1007 0.9057377 0.8709579 0.8816392 0.8845984
## 1008 0.9156328 0.9512195 0.8932935 0.8845984
## 1009 0.8967552 0.8709579 0.8932935 0.8845984
## 1010 0.8967552 0.8709579 0.8816392 0.8845984
## 1011 0.9057377 0.9512195 0.8932935 0.8845984
## 1012 0.9075630 0.8709579 0.8932935 0.8845984
## 1013 0.8967552 0.8709579 0.8932935 0.8845984
## 1014 0.8880126 0.8709579 0.8932935 0.8845984
## 1015 0.8657143 0.8709579 0.8932935 0.8996840
## 1016 0.9057377 0.9512195 0.8932935 0.8996840
## 1017 0.9156328 0.8709579 0.8932935 0.8845984
## 1018 0.8880126 0.8709579 0.8816392 0.8845984
## 1019 0.8967552 0.8709579 0.8816392 0.8845984
## 1020 0.8880126 0.8709579 0.8816392 0.8845984
## 1021 0.9156328 0.8709579 0.8816392 0.8845984
## 1022 0.8880126 0.9512195 0.8932935 0.8845984
## 1023 0.8657143 0.8709579 0.8932935 0.8996840
## 1024 0.9156328 0.9512195 0.8932935 0.8845984
## 1025 0.8967552 0.8709579 0.8932935 0.8845984
## 1026 0.8657143 0.9512195 0.8932935 0.8845984
## 1027 0.8348348 0.8709579 0.8816392 0.8845984
## 1028 0.8657143 0.8709579 0.8932935 0.8996840
## 1029 0.9156328 0.8709579 0.8932935 0.8845984
## 1030 0.8657143 0.8709579 0.8932935 0.8845984
## 1031 0.8967552 0.8709579 0.8816392 0.8845984
## 1032 0.8880126 0.8709579 0.8932935 0.8845984
## 1033 0.9156328 0.8709579 0.8816392 0.8996840
## 1034 0.8967552 0.8709579 0.8816392 0.8996840
## 1035 0.9075630 0.8709579 0.8816392 0.8996840
## 1036 0.9057377 0.9512195 0.8816392 0.8996840
## 1037 0.9075630 0.9512195 0.8932935 0.8845984
## 1038 0.9156328 0.9512195 0.8816392 0.8845984
## 1039 0.9156328 0.8709579 0.8932935 0.8845984
## 1040 0.8967552 0.8709579 0.8816392 0.8845984
## 1041 0.9057377 0.9512195 0.8932935 0.8845984
## 1042 0.8880126 0.8709579 0.8932935 0.8845984
## 1043 0.8967552 0.9512195 0.8932935 0.8845984
## 1044 0.8880126 0.8709579 0.8932935 0.8845984
## 1045 0.9075630 0.8709579 0.8932935 0.8845984
## 1046 0.9156328 0.8709579 0.8816392 0.8845984
## 1047 0.9156328 0.8709579 0.8816392 0.8996840
## 1048 0.8967552 0.8709579 0.8816392 0.8845984
## 1049 0.9057377 0.8709579 0.8816392 0.8845984
## 1050 0.8880126 0.8709579 0.8932935 0.8845984
## 1051 0.9057377 0.8709579 0.8816392 0.8845984
## 1052 0.8967552 0.8709579 0.8816392 0.8845984
## 1053 0.8880126 0.9512195 0.8932935 0.8845984
## 1054 0.8657143 0.8709579 0.8816392 0.8845984
## 1055 0.8348348 0.8709579 0.8932935 0.8845984
## 1056 0.8880126 0.9512195 0.8816392 0.8845984
## 1057 0.8967552 0.8709579 0.8816392 0.8845984
## 1058 0.8880126 0.8709579 0.8816392 0.8845984
## 1059 0.8880126 0.8709579 0.8932935 0.8845984
## 1060 0.8657143 0.8709579 0.8816392 0.8845984
## 1061 0.9156328 0.9512195 0.8932935 0.8845984
## 1062 0.8657143 0.8709579 0.8816392 0.8845984
## 1063 0.9156328 0.8709579 0.8932935 0.8845984
## 1064 0.8880126 0.8709579 0.8816392 0.8845984
## 1065 0.9156328 0.9512195 0.8932935 0.8845984
## 1066 0.9156328 0.8709579 0.8932935 0.8996840
## 1067 0.8657143 0.9512195 0.8816392 0.8845984
## 1068 0.9156328 0.8709579 0.8816392 0.8845984
## 1069 0.9075630 0.8709579 0.8816392 0.8845984
## 1070 0.8657143 0.8709579 0.8816392 0.8845984
## 1071 0.9156328 0.8709579 0.8932935 0.8845984
## 1072 0.8967552 0.8709579 0.8816392 0.8845984
## 1073 0.8880126 0.9512195 0.8932935 0.8845984
## 1074 0.8967552 0.8709579 0.8932935 0.8996840
## 1075 0.9156328 0.8709579 0.8932935 0.8845984
## 1076 0.9075630 0.9512195 0.8816392 0.8845984
## 1077 0.8657143 0.8709579 0.8816392 0.8845984
## 1078 0.8880126 0.8709579 0.8816392 0.8996840
## 1079 0.9057377 0.8709579 0.8816392 0.8996840
## 1080 0.8657143 0.8709579 0.8816392 0.8845984
## 1081 0.9075630 0.8709579 0.8816392 0.8845984
## 1082 0.9156328 0.8709579 0.8932935 0.8845984
## 1083 0.8967552 0.8709579 0.8932935 0.8845984
## 1084 0.8657143 0.8709579 0.8932935 0.8845984
## 1085 0.8657143 0.8709579 0.8816392 0.8845984
## 1086 0.9156328 0.9512195 0.8932935 0.8845984
## 1087 0.8880126 0.8709579 0.8932935 0.8996840
## 1088 0.8657143 0.8709579 0.8816392 0.8845984
## 1089 0.8657143 0.8709579 0.8932935 0.8845984
## 1090 0.8967552 0.8709579 0.8932935 0.8845984
## 1091 0.9156328 0.8709579 0.8816392 0.8996840
## 1092 0.8880126 0.9512195 0.9032258 0.9032258
## 1093 0.8967552 0.8709579 0.8816392 0.8845984
## 1094 0.9156328 0.8709579 0.8932935 0.8845984
## 1095 0.8657143 0.8709579 0.8932935 0.8845984
## 1096 0.8657143 0.8709579 0.8816392 0.8845984
## 1097 0.8657143 0.8709579 0.8816392 0.8845984
## 1098 0.8880126 0.8709579 0.8932935 0.8845984
## 1099 0.8880126 0.8709579 0.8932935 0.8845984
## 1100 0.8880126 0.8709579 0.8932935 0.8845984
## 1101 0.8880126 0.8709579 0.8816392 0.8845984
## 1102 0.8657143 0.9512195 0.8816392 0.8845984
## 1103 0.8880126 0.8709579 0.8932935 0.8845984
## 1104 0.8880126 0.8709579 0.8932935 0.8845984
## 1105 0.8880126 0.8709579 0.8932935 0.8845984
## 1106 0.8657143 0.8709579 0.8816392 0.8845984
## 1107 0.8657143 0.8709579 0.8932935 0.8845984
## 1108 0.9156328 0.8709579 0.8816392 0.8845984
## 1109 0.9156328 0.8709579 0.8932935 0.8845984
## 1110 0.9075630 0.9512195 0.8932935 0.8845984
## 1111 0.8880126 0.9512195 0.8816392 0.8845984
## 1112 0.8880126 0.8709579 0.8816392 0.8845984
## 1113 0.8657143 0.8709579 0.8816392 0.8845984
## 1114 0.8967552 0.8709579 0.8932935 0.8845984
## 1115 0.9057377 0.8709579 0.8932935 0.8845984
## 1116 0.9156328 0.9512195 0.8932935 0.8845984
## 1117 0.9075630 0.8709579 0.8816392 0.8996840
## 1118 0.9156328 0.9512195 0.8932935 0.8845984
## 1119 0.9075630 0.8709579 0.8932935 0.8845984
## 1120 0.9057377 0.8709579 0.8816392 0.8845984
## 1121 0.8880126 0.8709579 0.8932935 0.8845984
## 1122 0.9156328 0.8709579 0.8932935 0.8845984
## 1123 0.9156328 0.8709579 0.8932935 0.8845984
## 1124 0.8880126 0.8709579 0.8932935 0.8845984
## 1125 0.9075630 0.9512195 0.8816392 0.8845984
## 1126 0.9156328 0.8709579 0.8932935 0.8845984
## 1127 0.8348348 0.9512195 0.8932935 0.8845984
## 1128 0.8880126 0.8709579 0.8816392 0.8845984
## 1129 0.8880126 0.8709579 0.8816392 0.8845984
## 1130 0.9075630 0.9512195 0.8816392 0.8845984
## 1131 0.9156328 0.8709579 0.8816392 0.8845984
## 1132 0.8967552 0.9512195 0.8932935 0.8845984
## 1133 0.9075630 0.9512195 0.8816392 0.8845984
## 1134 0.8657143 0.9512195 0.8932935 0.8845984
## 1135 0.9156328 0.8709579 0.8816392 0.8996840
## 1136 0.8967552 0.8709579 0.8932935 0.8845984
## 1137 0.8657143 0.8709579 0.8932935 0.8845984
## 1138 0.8967552 0.9512195 0.8932935 0.8996840
## 1139 0.8967552 0.8709579 0.8932935 0.8996840
## 1140 0.8348348 0.8709579 0.8932935 0.8845984
## 1141 0.8880126 0.9512195 0.8816392 0.8845984
## 1142 0.9075630 0.8709579 0.8816392 0.8845984
## 1143 0.9156328 0.8709579 0.9032258 0.9032258
## 1144 0.9156328 0.8709579 0.8816392 0.8845984
## 1145 0.9156328 0.8709579 0.8932935 0.8845984
## 1146 0.8657143 0.9512195 0.8932935 0.8845984
## 1147 0.8880126 0.8709579 0.8816392 0.8845984
## 1148 0.9156328 0.8709579 0.8932935 0.8845984
## 1149 0.8967552 0.8709579 0.8932935 0.8845984
## 1150 0.8657143 0.8709579 0.8932935 0.8996840
## 1151 0.9156328 0.9512195 0.8816392 0.8845984
## 1152 0.8880126 0.8709579 0.8932935 0.8845984
## 1153 0.8657143 0.8709579 0.8932935 0.8845984
## 1154 0.9057377 0.8709579 0.8816392 0.8845984
## 1155 0.8348348 0.8709579 0.8816392 0.8845984
## 1156 0.9156328 0.8709579 0.8816392 0.8845984
## 1157 0.8880126 0.8709579 0.8816392 0.8845984
## 1158 0.8880126 0.8709579 0.8932935 0.8845984
## 1159 0.8880126 0.8709579 0.8816392 0.8845984
## 1160 0.8880126 0.9512195 0.8816392 0.8845984
## 1161 0.8348348 0.8709579 0.8932935 0.8996840
## 1162 0.8657143 0.9512195 0.8932935 0.8845984
## 1163 0.8657143 0.8709579 0.8932935 0.8845984
## 1164 0.8657143 0.8709579 0.8816392 0.8845984
## 1165 0.9057377 0.8709579 0.8816392 0.8845984
## 1166 0.8348348 0.8709579 0.8816392 0.8845984
## 1167 0.8657143 0.8709579 0.8816392 0.8845984
## 1168 0.9075630 0.9512195 0.8932935 0.8845984
## 1169 0.9075630 0.9512195 0.8932935 0.8845984
## 1170 0.8880126 0.8709579 0.8932935 0.8845984
## 1171 0.8348348 0.8709579 0.8816392 0.8845984
## 1172 0.8657143 0.9512195 0.8932935 0.8845984
## 1173 0.8967552 0.8709579 0.8932935 0.8845984
## 1174 0.8657143 0.8709579 0.8932935 0.8845984
## 1175 0.8967552 0.8709579 0.8816392 0.8845984
## 1176 0.8348348 0.8709579 0.8932935 0.8845984
## 1177 0.8880126 0.8709579 0.8816392 0.8845984
## 1178 0.8880126 0.9512195 0.8816392 0.8845984
## 1179 0.8657143 0.8709579 0.8932935 0.8845984
## 1180 0.8967552 0.8709579 0.8932935 0.8845984
## 1181 0.8657143 0.8709579 0.8816392 0.8845984
## 1182 0.8967552 0.8709579 0.8816392 0.8996840
## 1183 0.8657143 0.8709579 0.8816392 0.8845984
## 1184 0.8880126 0.8709579 0.8932935 0.8845984
## 1185 0.9075630 0.9512195 0.8816392 0.8996840
## 1186 0.9156328 0.9512195 0.8932935 0.8845984
## 1187 0.9075630 0.8709579 0.9032258 0.9032258
## 1188 0.8967552 0.8709579 0.8816392 0.8996840
## 1189 0.9156328 0.8709579 0.8932935 0.8845984
## 1190 0.8967552 0.8709579 0.8816392 0.8845984
## 1191 0.8880126 0.9512195 0.8932935 0.8845984
## 1192 0.8657143 0.8709579 0.8816392 0.8845984
## 1193 0.8967552 0.8709579 0.8816392 0.8845984
## 1194 0.9156328 0.8709579 0.8932935 0.8996840
## 1195 0.9075630 0.9512195 0.8816392 0.8845984
## 1196 0.9156328 0.8709579 0.8816392 0.8845984
## 1197 0.8880126 0.8709579 0.8816392 0.8845984
## 1198 0.8967552 0.8709579 0.8816392 0.8845984
## 1199 0.8657143 0.8709579 0.8932935 0.8845984
## 1200 0.8657143 0.8709579 0.8932935 0.8996840
## 1201 0.9156328 0.8709579 0.8932935 0.8845984
## 1202 0.9156328 0.8709579 0.8816392 0.8845984
## 1203 0.8967552 0.8709579 0.8816392 0.8845984
## 1204 0.8880126 0.8709579 0.8816392 0.8845984
## 1205 0.8880126 0.8709579 0.8816392 0.8845984
## 1206 0.9156328 0.8709579 0.8932935 0.8845984
## 1207 0.9156328 0.8709579 0.8932935 0.8845984
## 1208 0.9156328 0.8709579 0.8816392 0.8845984
## 1209 0.8880126 0.8709579 0.9032258 0.9032258
## 1210 0.8880126 0.8709579 0.8816392 0.8845984
## 1211 0.9156328 0.8709579 0.8932935 0.8996840
## 1212 0.8967552 0.8709579 0.8932935 0.8845984
## 1213 0.8880126 0.8709579 0.8932935 0.8845984
## 1214 0.8880126 0.8709579 0.8816392 0.8845984
## 1215 0.8657143 0.8709579 0.8932935 0.8845984
## 1216 0.8657143 0.8709579 0.8932935 0.8845984
## 1217 0.9156328 0.8709579 0.8932935 0.8845984
## 1218 0.9075630 0.8709579 0.8932935 0.8845984
## 1219 0.9156328 0.9512195 0.8816392 0.8845984
## 1220 0.8657143 0.8709579 0.8816392 0.8845984
## 1221 0.8880126 0.8709579 0.8816392 0.8845984
## 1222 0.8657143 0.8709579 0.8816392 0.8845984
## 1223 0.8657143 0.8709579 0.8816392 0.8845984
## 1224 0.8880126 0.8709579 0.8816392 0.8845984
## 1225 0.9075630 0.8709579 0.8932935 0.8845984
## 1226 0.8880126 0.8709579 0.8816392 0.8845984
## 1227 0.8657143 0.8709579 0.8932935 0.8845984
## 1228 0.8880126 0.8709579 0.8816392 0.8845984
## 1229 0.8880126 0.8709579 0.8932935 0.8845984
## 1230 0.8967552 0.9512195 0.8816392 0.8845984
## 1231 0.8967552 0.8709579 0.8932935 0.8845984
## 1232 0.8880126 0.8709579 0.8816392 0.8845984
## 1233 0.8967552 0.8709579 0.8932935 0.8845984
## 1234 0.8657143 0.8709579 0.8816392 0.8845984
## 1235 0.8880126 0.8709579 0.8932935 0.8845984
## 1236 0.8657143 0.8709579 0.8932935 0.8845984
## 1237 0.8657143 0.8709579 0.8816392 0.8845984
## 1238 0.8657143 0.8709579 0.8816392 0.8845984
## 1239 0.8880126 0.8709579 0.8932935 0.8845984
## 1240 0.9057377 0.9512195 0.8816392 0.8845984
## 1241 0.8880126 0.8709579 0.8932935 0.8845984
## 1242 0.9156328 0.8709579 0.8932935 0.8996840
## 1243 0.9075630 0.8709579 0.8816392 0.8845984
## 1244 0.8657143 0.8709579 0.8816392 0.8845984
## 1245 0.8880126 0.8709579 0.8816392 0.8845984
## 1246 0.8967552 0.8709579 0.8816392 0.8996840
## 1247 0.9057377 0.8709579 0.8932935 0.8845984
## 1248 0.9156328 0.8709579 0.8932935 0.8996840
## 1249 0.9057377 0.9512195 0.8932935 0.8845984
## 1250 0.9075630 0.8709579 0.8816392 0.8845984
## 1251 0.8657143 0.8709579 0.8816392 0.8845984
## 1252 0.8657143 0.8709579 0.8816392 0.8845984
## 1253 0.9075630 0.9512195 0.9032258 0.9032258
## 1254 0.8880126 0.8709579 0.8932935 0.8845984
## 1255 0.8657143 0.9512195 0.8932935 0.8845984
## 1256 0.9075630 0.8709579 0.8932935 0.8845984
## 1257 0.9156328 0.8709579 0.8932935 0.8845984
## 1258 0.9156328 0.9512195 0.8932935 0.8845984
## 1259 0.8657143 0.8709579 0.8932935 0.8845984
## 1260 0.9156328 0.8709579 0.8932935 0.8996840
## 1261 0.9075630 0.8709579 0.8816392 0.8845984
## 1262 0.8657143 0.9512195 0.8932935 0.8845984
## 1263 0.8880126 0.9512195 0.8816392 0.8996840
## 1264 0.9075630 0.8709579 0.8816392 0.8845984
## 1265 0.8880126 0.8709579 0.8816392 0.8845984
## 1266 0.9075630 0.9512195 0.8932935 0.8845984
## 1267 0.8657143 0.8709579 0.8816392 0.8996840
## 1268 0.9057377 0.8709579 0.8932935 0.8845984
## 1269 0.8880126 0.8709579 0.9032258 0.9032258
## 1270 0.8657143 0.8709579 0.8816392 0.8845984
## 1271 0.8657143 0.8709579 0.8932935 0.8845984
## 1272 0.8967552 0.8709579 0.8932935 0.8845984
## 1273 0.8657143 0.8709579 0.8816392 0.8845984
## 1274 0.9156328 0.8709579 0.8932935 0.8845984
## 1275 0.8967552 0.8709579 0.8816392 0.8845984
## 1276 0.9156328 0.8709579 0.8932935 0.8845984
## 1277 0.8967552 0.8709579 0.8816392 0.8996840
## 1278 0.9075630 0.9512195 0.8816392 0.8845984
## 1279 0.8880126 0.9512195 0.8816392 0.8845984
## 1280 0.8880126 0.8709579 0.8816392 0.8845984
## 1281 0.8657143 0.8709579 0.8816392 0.8845984
## 1282 0.9075630 0.9512195 0.8932935 0.8996840
## 1283 0.9075630 0.8709579 0.8816392 0.8845984
## 1284 0.8880126 0.8709579 0.8816392 0.8845984
## 1285 0.9057377 0.9512195 0.8932935 0.8996840
## 1286 0.9075630 0.9512195 0.8932935 0.8845984
## 1287 0.8967552 0.8709579 0.8816392 0.8996840
## 1288 0.8880126 0.9512195 0.8816392 0.8845984
## 1289 0.8657143 0.8709579 0.8816392 0.8845984
## 1290 0.8657143 0.8709579 0.8816392 0.8845984
## 1291 0.8657143 0.8709579 0.8932935 0.8996840
## 1292 0.8880126 0.9512195 0.8816392 0.8845984
## 1293 0.8657143 0.8709579 0.8932935 0.8845984
## 1294 0.8880126 0.8709579 0.8816392 0.8845984
## 1295 0.8967552 0.8709579 0.8932935 0.8845984
## 1296 0.8967552 0.9512195 0.8932935 0.8845984
## 1297 0.8657143 0.8709579 0.8816392 0.8845984
## 1298 0.8657143 0.8709579 0.8932935 0.8996840
## 1299 0.8348348 0.8709579 0.8932935 0.8845984
## 1300 0.8348348 0.9512195 0.8816392 0.8845984
## 1301 0.9075630 0.9512195 0.8932935 0.8845984
## 1302 0.8967552 0.8709579 0.8932935 0.8996840
## 1303 0.8657143 0.8709579 0.8932935 0.8845984
## 1304 0.8657143 0.8709579 0.8816392 0.8845984
## 1305 0.8657143 0.8709579 0.8816392 0.8996840
## 1306 0.9075630 0.8709579 0.8932935 0.8996840
## 1307 0.8880126 0.8709579 0.8932935 0.8996840
## 1308 0.9156328 0.9512195 0.8816392 0.8845984
## 1309 0.8657143 0.8709579 0.8816392 0.8845984
## 1310 0.8880126 0.8709579 0.8816392 0.8996840
## 1311 0.8657143 0.8709579 0.8932935 0.8845984
## 1312 0.8657143 0.8709579 0.8932935 0.8845984
## 1313 0.8348348 0.9512195 0.8932935 0.8845984
## 1314 0.9057377 0.8709579 0.8932935 0.8996840
## 1315 0.9075630 0.8709579 0.8816392 0.8845984
## 1316 0.8967552 0.8709579 0.8816392 0.8996840
## 1317 0.8657143 0.8709579 0.8816392 0.8996840
## 1318 0.8348348 0.8709579 0.8932935 0.8845984
## 1319 0.8657143 0.8709579 0.8816392 0.8845984
## 1320 0.8967552 0.8709579 0.8932935 0.8996840
## 1321 0.8967552 0.8709579 0.8932935 0.8845984
## 1322 0.9075630 0.8709579 0.8816392 0.8845984
## 1323 0.8657143 0.8709579 0.8932935 0.8845984
## 1324 0.8657143 0.8709579 0.8932935 0.8996840
## 1325 0.8657143 0.8709579 0.8932935 0.8845984
## 1326 0.8348348 0.9512195 0.8816392 0.8996840
## 1327 0.9075630 0.9512195 0.8816392 0.8845984
## 1328 0.9075630 0.8709579 0.8932935 0.8845984
## 1329 0.8657143 0.8709579 0.8816392 0.8845984
## 1330 0.8657143 0.8709579 0.8932935 0.8845984
## 1331 0.8880126 0.8709579 0.8816392 0.8845984
## 1332 0.9156328 0.8709579 0.8816392 0.8845984
## 1333 0.9156328 0.8709579 0.8932935 0.8845984
## 1334 0.8880126 0.8709579 0.8816392 0.8996840
## 1335 0.9075630 0.8709579 0.8816392 0.8996840
## 1336 0.9156328 0.9512195 0.8932935 0.8845984
## 1337 0.8348348 0.9512195 0.8932935 0.8845984
## 1338 0.8657143 0.9512195 0.8816392 0.8845984
## 1339 0.9075630 0.8709579 0.8932935 0.8845984
## 1340 0.9156328 0.8709579 0.8816392 0.8845984
## 1341 0.8657143 0.8709579 0.8932935 0.8845984
## 1342 0.8880126 0.9512195 0.8932935 0.8845984
## 1343 0.9075630 0.8709579 0.8932935 0.8845984
## 1344 0.9057377 0.8709579 0.8816392 0.8845984
## 1345 0.8657143 0.8709579 0.8932935 0.8845984
## 1346 0.8880126 0.8709579 0.8932935 0.8996840
## 1347 0.9156328 0.8709579 0.8816392 0.8845984
## 1348 0.8880126 0.8709579 0.8932935 0.8845984
## 1349 0.8657143 0.8709579 0.8932935 0.8845984
## 1350 0.8348348 0.9512195 0.8932935 0.8845984
## 1351 0.8880126 0.8709579 0.8932935 0.8845984
## 1352 0.9057377 0.8709579 0.8816392 0.8845984
## 1353 0.8657143 0.9512195 0.8932935 0.8845984
## 1354 0.8657143 0.8709579 0.8932935 0.8845984
## 1355 0.9156328 0.8709579 0.8816392 0.8845984
## 1356 0.8657143 0.8709579 0.8932935 0.8845984
## 1357 0.8657143 0.8709579 0.8816392 0.8845984
## 1358 0.8880126 0.8709579 0.8816392 0.8845984
## 1359 0.8657143 0.8709579 0.8816392 0.8845984
## 1360 0.8657143 0.8709579 0.8816392 0.8845984
## 1361 0.9156328 0.8709579 0.8932935 0.8845984
## 1362 0.8880126 0.8709579 0.8816392 0.8845984
## 1363 0.8657143 0.8709579 0.8816392 0.8845984
## 1364 0.8348348 0.9512195 0.8816392 0.8845984
## 1365 0.8657143 0.8709579 0.8816392 0.8845984
## 1366 0.9156328 0.9512195 0.8816392 0.8996840
## 1367 0.8657143 0.8709579 0.8932935 0.8996840
## 1368 0.8657143 0.8709579 0.8816392 0.8845984
## 1369 0.8967552 0.8709579 0.8816392 0.8845984
## 1370 0.9156328 0.8709579 0.8932935 0.8996840
## 1371 0.9057377 0.9512195 0.8816392 0.8845984
## 1372 0.8657143 0.8709579 0.8932935 0.8845984
## 1373 0.8880126 0.9512195 0.8816392 0.8845984
## 1374 0.9156328 0.9512195 0.8816392 0.8996840
## 1375 0.8657143 0.8709579 0.8816392 0.8845984
## 1376 0.8967552 0.8709579 0.8932935 0.8845984
## 1377 0.8880126 0.8709579 0.8932935 0.8845984
## 1378 0.8657143 0.8709579 0.8816392 0.8845984
## 1379 0.8657143 0.8709579 0.8932935 0.8845984
## 1380 0.8657143 0.8709579 0.8816392 0.8845984
## 1381 0.8880126 0.8709579 0.8932935 0.8996840
## 1382 0.8967552 0.8709579 0.8816392 0.8845984
## 1383 0.8657143 0.8709579 0.8816392 0.8845984
## 1384 0.8880126 0.8709579 0.8932935 0.8845984
## 1385 0.8657143 0.8709579 0.8932935 0.8845984
## 1386 0.8967552 0.8709579 0.8932935 0.8845984
## 1387 0.9156328 0.8709579 0.8932935 0.8845984
## 1388 0.8657143 0.9512195 0.8932935 0.8845984
## 1389 0.8657143 0.8709579 0.8816392 0.8845984
## 1390 0.8880126 0.8709579 0.8816392 0.8845984
## 1391 0.8657143 0.8709579 0.8816392 0.8845984
## 1392 0.8657143 0.8709579 0.8816392 0.8845984
## 1393 0.9156328 0.9512195 0.8932935 0.8996840
## 1394 0.8880126 0.8709579 0.8932935 0.8845984
## 1395 0.9075630 0.8709579 0.8816392 0.8845984
## 1396 0.8657143 0.8709579 0.8816392 0.8996840
## 1397 0.9156328 0.8709579 0.8816392 0.8845984
## 1398 0.8657143 0.8709579 0.8816392 0.8845984
## 1399 0.8657143 0.8709579 0.8816392 0.8845984
## 1400 0.8657143 0.8709579 0.8816392 0.8845984
## 1401 0.8657143 0.8709579 0.8932935 0.8845984
## 1402 0.8657143 0.8709579 0.8816392 0.8845984
## 1403 0.8657143 0.8709579 0.8932935 0.8845984
## 1404 0.8657143 0.8709579 0.8816392 0.8845984
## 1405 0.8967552 0.8709579 0.8932935 0.8845984
## 1406 0.8880126 0.9512195 0.8816392 0.8845984
## 1407 0.9075630 0.9512195 0.8932935 0.8996840
## 1408 0.9057377 0.8709579 0.8932935 0.8996840
## 1409 0.8880126 0.8709579 0.8816392 0.8845984
## 1410 0.8657143 0.8709579 0.9032258 0.9032258
## 1411 0.8880126 0.8709579 0.8932935 0.8845984
## 1412 0.9156328 0.9512195 0.8932935 0.8845984
## 1413 0.8880126 0.8709579 0.8816392 0.8845984
## 1414 0.9057377 0.8709579 0.8816392 0.8845984
## 1415 0.9156328 0.8709579 0.8816392 0.8845984
## 1416 0.9156328 0.9512195 0.8932935 0.8996840
## 1417 0.8880126 0.8709579 0.8932935 0.8845984
## 1418 0.8657143 0.8709579 0.8932935 0.8845984
## 1419 0.9075630 0.8709579 0.8816392 0.8845984
## 1420 0.8657143 0.8709579 0.8816392 0.8845984
## 1421 0.9156328 0.9512195 0.8932935 0.8845984
## 1422 0.8657143 0.8709579 0.8816392 0.8845984
## 1423 0.8880126 0.8709579 0.8816392 0.8845984
## 1424 0.9156328 0.8709579 0.8932935 0.8845984
## 1425 0.8348348 0.8709579 0.8932935 0.8845984
## 1426 0.9057377 0.8709579 0.8932935 0.8845984
## 1427 0.8657143 0.8709579 0.8932935 0.8845984
## 1428 0.9075630 0.8709579 0.8932935 0.8845984
## 1429 0.9156328 0.9512195 0.8816392 0.8845984
## 1430 0.8967552 0.8709579 0.8816392 0.8996840
## 1431 0.8880126 0.8709579 0.8816392 0.8996840
## 1432 0.8880126 0.8709579 0.8932935 0.8845984
## 1433 0.8880126 0.8709579 0.8932935 0.8996840
## 1434 0.8967552 0.8709579 0.8932935 0.8845984
## 1435 0.9156328 0.8709579 0.8816392 0.8845984
## 1436 0.8880126 0.8709579 0.8932935 0.8845984
## 1437 0.8880126 0.8709579 0.8932935 0.8996840
## 1438 0.8880126 0.9512195 0.8932935 0.8845984
## 1439 0.9075630 0.9512195 0.8932935 0.8845984
## 1440 0.8967552 0.8709579 0.8932935 0.8845984
## 1441 0.8967552 0.8709579 0.8816392 0.8845984
## 1442 0.9075630 0.9512195 0.8932935 0.8996840
## 1443 0.8880126 0.8709579 0.8816392 0.8845984
## 1444 0.8880126 0.8709579 0.8932935 0.8845984
## 1445 0.8880126 0.8709579 0.8816392 0.8845984
## 1446 0.8880126 0.8709579 0.8816392 0.8845984
## 1447 0.8880126 0.9512195 0.8816392 0.8845984
## 1448 0.8967552 0.8709579 0.8816392 0.8845984
## 1449 0.9156328 0.8709579 0.8816392 0.8845984
## 1450 0.8348348 0.8709579 0.8932935 0.8845984
## 1451 0.8967552 0.8709579 0.8932935 0.8845984
## 1452 0.9057377 0.8709579 0.8816392 0.8845984
## 1453 0.8880126 0.8709579 0.8932935 0.8996840
## 1454 0.8657143 0.8709579 0.8932935 0.8845984
## 1455 0.9057377 0.9512195 0.8932935 0.8996840
## 1456 0.8967552 0.8709579 0.8932935 0.8845984
## 1457 0.8657143 0.8709579 0.8816392 0.8845984
## 1458 0.9156328 0.8709579 0.8932935 0.8996840
## 1459 0.8657143 0.8709579 0.8932935 0.8996840
## 1460 0.8880126 0.9512195 0.8816392 0.8996840
## 1461 0.8657143 0.8709579 0.8932935 0.8845984
## 1462 0.8880126 0.8709579 0.8816392 0.8845984
## 1463 0.8967552 0.8709579 0.8816392 0.8996840
## 1464 0.9156328 0.8709579 0.8816392 0.8845984
## 1465 0.9075630 0.9512195 0.8816392 0.8996840
## 1466 0.9156328 0.8709579 0.8932935 0.8996840
## 1467 0.8348348 0.8709579 0.8816392 0.8996840
## 1468 0.8880126 0.8709579 0.8816392 0.8845984
## 1469 0.8657143 0.8709579 0.8932935 0.8845984
## 1470 0.8880126 0.8709579 0.8932935 0.8996840
## 1471 0.9156328 0.8709579 0.8932935 0.8845984
## 1472 0.8657143 0.8709579 0.8932935 0.8845984
## 1473 0.9156328 0.8709579 0.8816392 0.8845984
## 1474 0.9156328 0.8709579 0.8932935 0.8845984
## 1475 0.8967552 0.8709579 0.8816392 0.8845984
## 1476 0.9156328 0.8709579 0.8932935 0.8845984
## 1477 0.9156328 0.8709579 0.8816392 0.8845984
## 1478 0.9075630 0.8709579 0.8816392 0.8845984
## 1479 0.8657143 0.8709579 0.9032258 0.9032258
## 1480 0.8657143 0.8709579 0.8932935 0.8845984
## 1481 0.9156328 0.8709579 0.8816392 0.8845984
## 1482 0.8657143 0.8709579 0.8816392 0.8845984
## 1483 0.8967552 0.8709579 0.8816392 0.8845984
## 1484 0.8657143 0.8709579 0.8932935 0.8845984
## 1485 0.8657143 0.8709579 0.8816392 0.8845984
## 1486 0.9156328 0.9512195 0.8932935 0.8845984
## 1487 0.9057377 0.8709579 0.8932935 0.8996840
## 1488 0.9156328 0.9512195 0.8932935 0.8845984
## 1489 0.9057377 0.8709579 0.8816392 0.8845984
## 1490 0.8967552 0.8709579 0.8816392 0.8845984
## 1491 0.8348348 0.8709579 0.8816392 0.8845984
## 1492 0.8880126 0.8709579 0.8932935 0.8845984
## 1493 0.9156328 0.9512195 0.8816392 0.8845984
## 1494 0.9057377 0.9512195 0.8932935 0.8845984
## 1495 0.9156328 0.8709579 0.8932935 0.8845984
## 1496 0.9075630 0.8709579 0.8816392 0.8845984
## 1497 0.8967552 0.8709579 0.8816392 0.8845984
## 1498 0.9075630 0.9512195 0.9032258 0.9032258
## 1499 0.8657143 0.8709579 0.8932935 0.8845984
## 1500 0.8967552 0.8709579 0.8932935 0.8845984
## 1501 0.8967552 0.8709579 0.8932935 0.8845984
## 1502 0.9156328 0.8709579 0.8932935 0.8845984
## 1503 0.8880126 0.8709579 0.8932935 0.8845984
## 1504 0.8657143 0.8709579 0.8932935 0.8845984
## 1505 0.8880126 0.8709579 0.8932935 0.8845984
## 1506 0.9156328 0.8709579 0.8816392 0.8845984
## 1507 0.9057377 0.9512195 0.8932935 0.8845984
## 1508 0.9156328 0.9512195 0.8932935 0.8845984
## 1509 0.8657143 0.8709579 0.8816392 0.8845984
## 1510 0.9156328 0.8709579 0.8816392 0.8996840
## 1511 0.8880126 0.8709579 0.8816392 0.8845984
## 1512 0.8880126 0.8709579 0.8932935 0.8845984
## 1513 0.8967552 0.8709579 0.8932935 0.8996840
## 1514 0.8657143 0.8709579 0.8816392 0.8996840
## 1515 0.8657143 0.8709579 0.8816392 0.8845984
## 1516 0.8880126 0.9512195 0.8816392 0.8845984
## 1517 0.8657143 0.8709579 0.8932935 0.8845984
## 1518 0.8348348 0.9512195 0.8932935 0.8996840
## 1519 0.9075630 0.9512195 0.8932935 0.8996840
## 1520 0.8348348 0.8709579 0.8816392 0.8845984
## 1521 0.8348348 0.8709579 0.8932935 0.8845984
## 1522 0.8880126 0.8709579 0.8816392 0.8845984
## 1523 0.8657143 0.8709579 0.8932935 0.8845984
## 1524 0.8657143 0.8709579 0.8816392 0.8845984
## 1525 0.9156328 0.8709579 0.8932935 0.8845984
## 1526 0.8657143 0.8709579 0.8932935 0.8845984
## 1527 0.8880126 0.8709579 0.8932935 0.8845984
## 1528 0.8880126 0.8709579 0.8932935 0.8845984
## 1529 0.8657143 0.8709579 0.8816392 0.8845984
## 1530 0.8967552 0.8709579 0.8816392 0.8845984
## 1531 0.8657143 0.9512195 0.8932935 0.8845984
## 1532 0.8348348 0.8709579 0.8932935 0.8845984
## 1533 0.8657143 0.8709579 0.8816392 0.8845984
## 1534 0.8967552 0.8709579 0.8816392 0.8845984
## 1535 0.9156328 0.8709579 0.8932935 0.8845984
## 1536 0.8967552 0.9512195 0.8932935 0.8845984
## 1537 0.8880126 0.8709579 0.8932935 0.8845984
## 1538 0.9156328 0.8709579 0.8816392 0.8845984
## 1539 0.8880126 0.8709579 0.8816392 0.8845984
## 1540 0.8880126 0.9512195 0.8932935 0.8845984
## 1541 0.8880126 0.8709579 0.8932935 0.8845984
## 1542 0.8967552 0.8709579 0.8932935 0.8845984
## 1543 0.8657143 0.8709579 0.8932935 0.8845984
## 1544 0.9075630 0.8709579 0.8932935 0.8845984
## 1545 0.8967552 0.8709579 0.8816392 0.8845984
## 1546 0.8657143 0.9512195 0.8816392 0.8845984
## 1547 0.8967552 0.8709579 0.8816392 0.8996840
## 1548 0.8967552 0.8709579 0.8816392 0.8845984
## 1549 0.8657143 0.8709579 0.8932935 0.8845984
## 1550 0.9156328 0.8709579 0.8816392 0.8845984
## 1551 0.8880126 0.8709579 0.8932935 0.8845984
## 1552 0.9156328 0.9512195 0.8816392 0.8845984
## 1553 0.9057377 0.8709579 0.8816392 0.8845984
## 1554 0.8880126 0.9512195 0.8816392 0.8845984
## 1555 0.9156328 0.8709579 0.8932935 0.8845984
## 1556 0.8967552 0.8709579 0.8816392 0.8845984
## 1557 0.8348348 0.8709579 0.8932935 0.8845984
## 1558 0.9156328 0.8709579 0.8816392 0.8845984
## 1559 0.9156328 0.9512195 0.8816392 0.8845984
## 1560 0.9156328 0.8709579 0.8816392 0.8996840
## 1561 0.9156328 0.8709579 0.8816392 0.8845984
## 1562 0.8967552 0.8709579 0.8816392 0.8845984
## 1563 0.8967552 0.8709579 0.8932935 0.8845984
## 1564 0.9075630 0.8709579 0.8816392 0.8845984
## 1565 0.8657143 0.8709579 0.8932935 0.8845984
## 1566 0.9156328 0.9512195 0.8816392 0.8845984
## 1567 0.9075630 0.8709579 0.8932935 0.8845984
## 1568 0.8880126 0.8709579 0.8932935 0.8845984
## 1569 0.8348348 0.8709579 0.8932935 0.8845984
## 1570 0.8880126 0.8709579 0.8932935 0.8845984
## 1571 0.8880126 0.8709579 0.8816392 0.8996840
## 1572 0.8657143 0.8709579 0.8816392 0.8845984
## 1573 0.8880126 0.9512195 0.8932935 0.8845984
## 1574 0.8967552 0.8709579 0.8932935 0.8845984
## 1575 0.9075630 0.9512195 0.8816392 0.8845984
## 1576 0.8657143 0.8709579 0.8816392 0.8845984
## 1577 0.8657143 0.8709579 0.8816392 0.8845984
## 1578 0.9075630 0.8709579 0.8816392 0.8845984
## 1579 0.8967552 0.8709579 0.8816392 0.8845984
## 1580 0.8657143 0.8709579 0.8932935 0.8845984
## 1581 0.8967552 0.9512195 0.8816392 0.8845984
## 1582 0.8880126 0.8709579 0.8816392 0.8845984
## 1583 0.9075630 0.8709579 0.8816392 0.8845984
## 1584 0.9156328 0.8709579 0.8932935 0.8845984
## 1585 0.9156328 0.8709579 0.8816392 0.8845984
## 1586 0.8657143 0.8709579 0.8932935 0.8845984
## 1587 0.9057377 0.8709579 0.8932935 0.8845984
## 1588 0.9057377 0.8709579 0.8932935 0.8845984
## 1589 0.8880126 0.8709579 0.8816392 0.8845984
## 1590 0.8880126 0.8709579 0.8932935 0.8845984
## 1591 0.8657143 0.8709579 0.8932935 0.8845984
## 1592 0.8880126 0.8709579 0.8816392 0.8845984
## 1593 0.9075630 0.9512195 0.8932935 0.8845984
## 1594 0.9156328 0.8709579 0.8932935 0.8996840
## 1595 0.8880126 0.8709579 0.8816392 0.8845984
## 1596 0.8657143 0.8709579 0.8932935 0.8845984
## 1597 0.8967552 0.8709579 0.8816392 0.8845984
## 1598 0.9075630 0.8709579 0.8816392 0.8996840
## 1599 0.9156328 0.8709579 0.8932935 0.8996840
## 1600 0.8880126 0.8709579 0.8816392 0.8845984
## 1601 0.8880126 0.8709579 0.8816392 0.8845984
## 1602 0.8880126 0.8709579 0.8932935 0.8845984
## 1603 0.9156328 0.9512195 0.8932935 0.8845984
## 1604 0.9057377 0.8709579 0.8816392 0.8845984
## 1605 0.9156328 0.9512195 0.8932935 0.8845984
## 1606 0.9057377 0.9512195 0.8932935 0.8845984
## 1607 0.8880126 0.8709579 0.8932935 0.8845984
## 1608 0.8657143 0.8709579 0.8816392 0.8845984
## 1609 0.8657143 0.8709579 0.8932935 0.8845984
## 1610 0.8880126 0.8709579 0.8932935 0.8845984
## 1611 0.9156328 0.9512195 0.8932935 0.8996840
## 1612 0.9156328 0.9512195 0.8816392 0.8845984
## 1613 0.8657143 0.9512195 0.8932935 0.8845984
## 1614 0.8967552 0.8709579 0.8932935 0.8996840
## 1615 0.8967552 0.8709579 0.8816392 0.8845984
## 1616 0.8657143 0.9512195 0.8816392 0.8845984
## 1617 0.8657143 0.8709579 0.8932935 0.8845984
## 1618 0.9075630 0.9512195 0.8816392 0.8845984
## 1619 0.8657143 0.8709579 0.8932935 0.8845984
## 1620 0.8967552 0.8709579 0.8932935 0.8845984
## 1621 0.8880126 0.8709579 0.8932935 0.8845984
## 1622 0.9075630 0.8709579 0.8816392 0.8845984
## 1623 0.8657143 0.8709579 0.8932935 0.8845984
## 1624 0.9156328 0.8709579 0.8816392 0.8845984
## 1625 0.8880126 0.8709579 0.8816392 0.8845984
## 1626 0.8967552 0.9512195 0.8816392 0.8845984
## 1627 0.8880126 0.8709579 0.8816392 0.8845984
## 1628 0.8880126 0.8709579 0.8816392 0.8845984
## 1629 0.8880126 0.8709579 0.8816392 0.8996840
## 1630 0.9156328 0.8709579 0.8816392 0.8845984
## 1631 0.9057377 0.8709579 0.8816392 0.8845984
## 1632 0.9156328 0.9512195 0.8816392 0.8996840
## 1633 0.8880126 0.8709579 0.8932935 0.8845984
## 1634 0.8657143 0.8709579 0.8816392 0.8845984
## 1635 0.8657143 0.8709579 0.8932935 0.8845984
## 1636 0.8657143 0.8709579 0.8932935 0.8845984
## 1637 0.9075630 0.8709579 0.8816392 0.8845984
## 1638 0.8880126 0.8709579 0.8816392 0.8845984
## 1639 0.8657143 0.8709579 0.8816392 0.8845984
## 1640 0.8348348 0.8709579 0.8932935 0.8845984
## 1641 0.9156328 0.8709579 0.8932935 0.8845984
## 1642 0.8657143 0.9512195 0.8932935 0.8845984
## 1643 0.8967552 0.8709579 0.8816392 0.8845984
## 1644 0.8657143 0.8709579 0.8932935 0.8845984
## 1645 0.9156328 0.8709579 0.8816392 0.8845984
## 1646 0.8880126 0.8709579 0.8816392 0.8845984
## 1647 0.8880126 0.8709579 0.8816392 0.8996840
## 1648 0.9057377 0.8709579 0.8816392 0.8845984
## 1649 0.9075630 0.8709579 0.8932935 0.8996840
## 1650 0.9075630 0.8709579 0.8932935 0.8845984
## 1651 0.8967552 0.8709579 0.8816392 0.8845984
## 1652 0.8657143 0.8709579 0.9032258 0.9032258
## 1653 0.8880126 0.8709579 0.8816392 0.8845984
## 1654 0.8348348 0.8709579 0.8932935 0.8845984
## 1655 0.8657143 0.8709579 0.8816392 0.8845984
## 1656 0.8880126 0.8709579 0.8932935 0.8845984
## 1657 0.8657143 0.9512195 0.8816392 0.8845984
## 1658 0.8657143 0.8709579 0.8816392 0.8845984
## 1659 0.8880126 0.8709579 0.8932935 0.8845984
## 1660 0.9156328 0.8709579 0.8816392 0.8845984
## 1661 0.8657143 0.9512195 0.8816392 0.8996840
## 1662 0.8880126 0.8709579 0.8816392 0.8845984
## 1663 0.8657143 0.8709579 0.8816392 0.8845984
## 1664 0.8657143 0.8709579 0.8816392 0.8845984
## 1665 0.8880126 0.9512195 0.8932935 0.8845984
## 1666 0.8967552 0.8709579 0.8816392 0.8845984
## 1667 0.8657143 0.8709579 0.9032258 0.9032258
## 1668 0.8967552 0.8709579 0.8932935 0.8845984
## 1669 0.9075630 0.8709579 0.8816392 0.8996840
## 1670 0.9075630 0.9512195 0.8932935 0.8845984
## 1671 0.8657143 0.8709579 0.8932935 0.8845984
## 1672 0.9075630 0.9512195 0.8932935 0.8845984
## 1673 0.9075630 0.8709579 0.8932935 0.8845984
## 1674 0.8967552 0.8709579 0.8816392 0.8845984
## 1675 0.9075630 0.9512195 0.8932935 0.8845984
## 1676 0.8880126 0.8709579 0.8932935 0.8996840
## 1677 0.9156328 0.8709579 0.8816392 0.8845984
## 1678 0.9075630 0.9512195 0.8932935 0.8845984
## 1679 0.8967552 0.8709579 0.8816392 0.8845984
## 1680 0.9075630 0.8709579 0.8816392 0.8845984
## 1681 0.8880126 0.8709579 0.8816392 0.8845984
## 1682 0.8967552 0.8709579 0.8932935 0.8845984
## 1683 0.9057377 0.8709579 0.8816392 0.8845984
## 1684 0.8657143 0.9512195 0.8932935 0.8845984
## 1685 0.8348348 0.9512195 0.8932935 0.8845984
## 1686 0.8657143 0.8709579 0.8932935 0.8845984
## 1687 0.8657143 0.8709579 0.8932935 0.8996840
## 1688 0.9156328 0.8709579 0.8816392 0.8845984
## 1689 0.8880126 0.8709579 0.8816392 0.8845984
## 1690 0.8967552 0.8709579 0.8816392 0.8996840
## 1691 0.8348348 0.8709579 0.8932935 0.8996840
## 1692 0.8657143 0.8709579 0.8816392 0.8996840
## 1693 0.8657143 0.8709579 0.8932935 0.8845984
## 1694 0.8880126 0.9512195 0.8816392 0.8845984
## 1695 0.9057377 0.8709579 0.8932935 0.8845984
## 1696 0.8657143 0.8709579 0.8816392 0.8845984
## 1697 0.9057377 0.9512195 0.8816392 0.8845984
## 1698 0.9156328 0.9512195 0.8932935 0.8845984
## 1699 0.8880126 0.8709579 0.8816392 0.8845984
## 1700 0.8880126 0.9512195 0.8932935 0.8845984
## 1701 0.8657143 0.8709579 0.8816392 0.8996840
## 1702 0.9075630 0.9512195 0.8816392 0.8845984
## 1703 0.8967552 0.8709579 0.8816392 0.8996840
## 1704 0.8657143 0.8709579 0.8932935 0.8845984
## 1705 0.8348348 0.8709579 0.8816392 0.8845984
## 1706 0.8880126 0.8709579 0.8816392 0.8845984
## 1707 0.8657143 0.8709579 0.8816392 0.8845984
## 1708 0.9057377 0.8709579 0.8816392 0.8845984
## 1709 0.8967552 0.8709579 0.8816392 0.8996840
## 1710 0.8348348 0.8709579 0.8932935 0.8845984
## 1711 0.8657143 0.8709579 0.8932935 0.8845984
## 1712 0.8880126 0.8709579 0.8816392 0.8996840
## 1713 0.8880126 0.8709579 0.8816392 0.8845984
## 1714 0.9156328 0.9512195 0.8816392 0.8845984
## 1715 0.8657143 0.8709579 0.8816392 0.8845984
## 1716 0.8880126 0.8709579 0.8816392 0.8845984
## 1717 0.8967552 0.8709579 0.8816392 0.8845984
## 1718 0.8657143 0.8709579 0.8816392 0.8845984
## 1719 0.8880126 0.8709579 0.8816392 0.8845984
## 1720 0.8967552 0.8709579 0.8932935 0.8845984
## 1721 0.8657143 0.8709579 0.8932935 0.8845984
## 1722 0.8657143 0.9512195 0.8932935 0.8845984
## 1723 0.8348348 0.9512195 0.8816392 0.8845984
## 1724 0.8880126 0.8709579 0.8816392 0.8845984
## 1725 0.8657143 0.8709579 0.8932935 0.8845984
## 1726 0.9156328 0.9512195 0.8932935 0.8845984
## 1727 0.9156328 0.8709579 0.8932935 0.8845984
## 1728 0.8657143 0.8709579 0.8816392 0.8845984
## 1729 0.8880126 0.8709579 0.8816392 0.8845984
## 1730 0.8880126 0.8709579 0.8816392 0.8845984
## 1731 0.8657143 0.8709579 0.8816392 0.8845984
## 1732 0.8967552 0.8709579 0.8816392 0.8845984
## 1733 0.8657143 0.8709579 0.8932935 0.8845984
## 1734 0.9075630 0.9512195 0.8932935 0.8996840
## 1735 0.8657143 0.8709579 0.8816392 0.8845984
## 1736 0.8348348 0.8709579 0.8932935 0.8845984
## 1737 0.8880126 0.8709579 0.8816392 0.8845984
## 1738 0.8880126 0.9512195 0.9032258 0.9032258
## 1739 0.8657143 0.8709579 0.9032258 0.9032258
## 1740 0.8348348 0.8709579 0.8816392 0.8845984
## 1741 0.8880126 0.9512195 0.8816392 0.8845984
## 1742 0.8657143 0.9512195 0.8816392 0.8845984
## 1743 0.8880126 0.8709579 0.8816392 0.8845984
## 1744 0.8657143 0.9512195 0.8932935 0.8845984
## 1745 0.9057377 0.8709579 0.8816392 0.8845984
## 1746 0.9057377 0.9512195 0.8932935 0.8845984
## 1747 0.8348348 0.8709579 0.8816392 0.8845984
## 1748 0.9057377 0.8709579 0.8816392 0.8845984
## 1749 0.8880126 0.8709579 0.8816392 0.8845984
## 1750 0.8967552 0.8709579 0.8816392 0.8845984
## 1751 0.8657143 0.8709579 0.8932935 0.8996840
## 1752 0.8967552 0.8709579 0.8816392 0.8845984
## 1753 0.9075630 0.8709579 0.8932935 0.8845984
## 1754 0.9156328 0.8709579 0.9032258 0.9032258
## 1755 0.8657143 0.8709579 0.8816392 0.8845984
## 1756 0.8657143 0.8709579 0.8932935 0.8845984
## 1757 0.9156328 0.8709579 0.8816392 0.8845984
## 1758 0.9156328 0.8709579 0.8816392 0.8845984
## 1759 0.8967552 0.8709579 0.8816392 0.8845984
## 1760 0.8967552 0.8709579 0.8816392 0.8845984
## 1761 0.8657143 0.8709579 0.8816392 0.8845984
## 1762 0.9156328 0.9512195 0.8932935 0.8845984
## 1763 0.9156328 0.8709579 0.8816392 0.8996840
## 1764 0.8657143 0.8709579 0.8816392 0.8996840
## 1765 0.8880126 0.8709579 0.8816392 0.8845984
## 1766 0.9075630 0.8709579 0.8932935 0.8996840
## 1767 0.8880126 0.8709579 0.8816392 0.8845984
## 1768 0.8657143 0.8709579 0.8816392 0.8845984
## 1769 0.8657143 0.8709579 0.8816392 0.8996840
## 1770 0.8880126 0.8709579 0.8816392 0.8845984
## 1771 0.8880126 0.8709579 0.8816392 0.8845984
## 1772 0.9156328 0.8709579 0.8932935 0.8845984
## 1773 0.9156328 0.9512195 0.8816392 0.8845984
## 1774 0.8657143 0.8709579 0.8816392 0.8996840
## 1775 0.9075630 0.8709579 0.8932935 0.8845984
## 1776 0.8880126 0.8709579 0.8816392 0.8845984
## 1777 0.8657143 0.8709579 0.8932935 0.8845984
## 1778 0.9057377 0.9512195 0.8816392 0.8845984
## 1779 0.8880126 0.8709579 0.8816392 0.8845984
## 1780 0.8880126 0.8709579 0.8932935 0.8845984
## 1781 0.8657143 0.8709579 0.8816392 0.8845984
## 1782 0.8657143 0.8709579 0.8932935 0.8845984
## 1783 0.8880126 0.8709579 0.8932935 0.8845984
## 1784 0.8880126 0.9512195 0.8816392 0.8996840
## 1785 0.8880126 0.8709579 0.8932935 0.8845984
## 1786 0.8967552 0.8709579 0.8816392 0.8845984
## 1787 0.9156328 0.8709579 0.8932935 0.8845984
## 1788 0.8657143 0.8709579 0.8932935 0.8845984
## 1789 0.8657143 0.8709579 0.8816392 0.8845984
## 1790 0.8880126 0.9512195 0.8932935 0.8845984
## 1791 0.9075630 0.9512195 0.8932935 0.8845984
## 1792 0.8967552 0.9512195 0.8816392 0.8845984
## 1793 0.8657143 0.9512195 0.8816392 0.8845984
## 1794 0.8348348 0.8709579 0.8932935 0.8845984
## 1795 0.9075630 0.8709579 0.8816392 0.8845984
## 1796 0.8967552 0.8709579 0.8816392 0.8845984
## 1797 0.8657143 0.8709579 0.8932935 0.8996840
## 1798 0.8348348 0.8709579 0.8932935 0.8845984
## 1799 0.8657143 0.8709579 0.8816392 0.8845984
## 1800 0.9075630 0.8709579 0.8932935 0.8845984
## 1801 0.8657143 0.8709579 0.8816392 0.8996840
## 1802 0.8880126 0.8709579 0.8816392 0.8845984
## 1803 0.8657143 0.8709579 0.8932935 0.8845984
## 1804 0.8348348 0.8709579 0.8816392 0.8845984
## 1805 0.9075630 0.8709579 0.8932935 0.8845984
## 1806 0.8880126 0.9512195 0.8932935 0.8845984
## 1807 0.9156328 0.8709579 0.8816392 0.8845984
## 1808 0.8657143 0.8709579 0.8932935 0.8845984
## 1809 0.8657143 0.9512195 0.8932935 0.8845984
## 1810 0.9057377 0.8709579 0.8932935 0.8845984
## 1811 0.9156328 0.9512195 0.8932935 0.8845984
## 1812 0.8880126 0.8709579 0.8816392 0.8845984
## 1813 0.8657143 0.8709579 0.8932935 0.8845984
## 1814 0.8657143 0.8709579 0.8932935 0.8845984
## 1815 0.9156328 0.9512195 0.8816392 0.8845984
## 1816 0.9075630 0.8709579 0.8932935 0.8845984
## 1817 0.9156328 0.9512195 0.8932935 0.8996840
## 1818 0.8348348 0.8709579 0.8932935 0.8845984
## 1819 0.9156328 0.9512195 0.8932935 0.8845984
## 1820 0.8880126 0.9512195 0.8816392 0.8996840
## 1821 0.9156328 0.8709579 0.8932935 0.8845984
## 1822 0.9057377 0.9512195 0.8932935 0.8845984
## 1823 0.8880126 0.8709579 0.8932935 0.8845984
## 1824 0.9057377 0.8709579 0.8816392 0.8845984
## 1825 0.8657143 0.8709579 0.8932935 0.8845984
## 1826 0.8880126 0.9512195 0.8816392 0.8845984
## 1827 0.9156328 0.8709579 0.8816392 0.8845984
## 1828 0.8657143 0.8709579 0.8816392 0.8845984
## 1829 0.9156328 0.8709579 0.8816392 0.8845984
## 1830 0.8348348 0.8709579 0.8816392 0.8845984
## 1831 0.8967552 0.8709579 0.8932935 0.8845984
## 1832 0.8880126 0.9512195 0.8932935 0.8845984
## 1833 0.8880126 0.9512195 0.8932935 0.8845984
## 1834 0.8657143 0.8709579 0.8816392 0.8845984
## 1835 0.8348348 0.8709579 0.8816392 0.8845984
## 1836 0.8657143 0.8709579 0.8816392 0.8845984
## 1837 0.8657143 0.8709579 0.8932935 0.8845984
## 1838 0.9075630 0.9512195 0.8932935 0.8845984
## 1839 0.8657143 0.8709579 0.8932935 0.8845984
## 1840 0.8880126 0.9512195 0.8932935 0.8845984
## 1841 0.9075630 0.8709579 0.8932935 0.8845984
## 1842 0.8657143 0.8709579 0.8816392 0.8996840
## 1843 0.8657143 0.8709579 0.8816392 0.8996840
## 1844 0.8657143 0.8709579 0.8932935 0.8845984
## 1845 0.9156328 0.8709579 0.8816392 0.8845984
## 1846 0.8880126 0.8709579 0.8816392 0.8845984
## 1847 0.8348348 0.8709579 0.8932935 0.8845984
## 1848 0.8880126 0.8709579 0.8816392 0.8845984
## 1849 0.8348348 0.9512195 0.8932935 0.8845984
## 1850 0.8657143 0.8709579 0.8932935 0.8845984
## 1851 0.8657143 0.9512195 0.8932935 0.8845984
## 1852 0.9075630 0.8709579 0.8816392 0.8845984
## 1853 0.9075630 0.9512195 0.8932935 0.8845984
## 1854 0.8967552 0.8709579 0.8932935 0.8845984
## 1855 0.8657143 0.8709579 0.8816392 0.8996840
## 1856 0.8657143 0.8709579 0.8932935 0.8845984
## 1857 0.8657143 0.9512195 0.8816392 0.8996840
## 1858 0.8880126 0.8709579 0.9032258 0.9032258
## 1859 0.9075630 0.8709579 0.8932935 0.8845984
## 1860 0.9057377 0.9512195 0.8932935 0.8996840
## 1861 0.8880126 0.9512195 0.8816392 0.8845984
## 1862 0.8657143 0.8709579 0.8816392 0.8845984
## 1863 0.8657143 0.8709579 0.8932935 0.8845984
## 1864 0.8880126 0.8709579 0.8816392 0.8845984
## 1865 0.8880126 0.8709579 0.8932935 0.8996840
## 1866 0.8880126 0.8709579 0.8816392 0.8845984
## 1867 0.8967552 0.9512195 0.8932935 0.8845984
## 1868 0.8348348 0.8709579 0.8932935 0.8845984
## 1869 0.8657143 0.8709579 0.8816392 0.8845984
## 1870 0.9156328 0.8709579 0.8816392 0.8845984
## 1871 0.8880126 0.8709579 0.8816392 0.8845984
## 1872 0.9075630 0.8709579 0.8816392 0.8845984
## 1873 0.8967552 0.8709579 0.8816392 0.8845984
## 1874 0.9057377 0.8709579 0.8932935 0.8845984
## 1875 0.8657143 0.8709579 0.8932935 0.8996840
## 1876 0.8967552 0.8709579 0.8816392 0.8845984
## 1877 0.9057377 0.9512195 0.8932935 0.8845984
## 1878 0.8967552 0.8709579 0.8816392 0.8845984
## 1879 0.8657143 0.8709579 0.8816392 0.8845984
## 1880 0.9075630 0.9512195 0.8932935 0.8996840
## 1881 0.8967552 0.8709579 0.8932935 0.8845984
## 1882 0.8967552 0.8709579 0.8816392 0.8845984
## 1883 0.9057377 0.9512195 0.8932935 0.8845984
## 1884 0.8880126 0.8709579 0.8816392 0.8845984
## 1885 0.8880126 0.9512195 0.8932935 0.8845984
## 1886 0.8880126 0.8709579 0.8816392 0.8996840
## 1887 0.9057377 0.8709579 0.8816392 0.8845984
## 1888 0.8657143 0.8709579 0.8932935 0.8845984
## 1889 0.8880126 0.8709579 0.8816392 0.8845984
## 1890 0.8657143 0.8709579 0.8932935 0.8845984
## 1891 0.9156328 0.9512195 0.8816392 0.8845984
## 1892 0.8657143 0.9512195 0.8932935 0.8845984
## 1893 0.8880126 0.8709579 0.8816392 0.8845984
## 1894 0.8657143 0.9512195 0.8816392 0.8845984
## 1895 0.9075630 0.9512195 0.8932935 0.8845984
## 1896 0.8967552 0.8709579 0.8816392 0.8996840
## 1897 0.9075630 0.9512195 0.8932935 0.8845984
## 1898 0.8880126 0.8709579 0.8816392 0.8996840
## 1899 0.8880126 0.8709579 0.8932935 0.8845984
## 1900 0.9156328 0.8709579 0.8816392 0.8845984
## 1901 0.8967552 0.8709579 0.8816392 0.8845984
## 1902 0.9156328 0.8709579 0.8932935 0.8845984
## 1903 0.9057377 0.9512195 0.8932935 0.8845984
## 1904 0.9075630 0.8709579 0.8816392 0.8845984
## 1905 0.8657143 0.8709579 0.9032258 0.9032258
## 1906 0.8967552 0.8709579 0.8816392 0.8845984
## 1907 0.8657143 0.8709579 0.8816392 0.8845984
## 1908 0.9075630 0.8709579 0.8816392 0.8845984
## 1909 0.8657143 0.9512195 0.8932935 0.8845984
## 1910 0.8657143 0.8709579 0.8816392 0.8845984
## 1911 0.8967552 0.8709579 0.8816392 0.8845984
## 1912 0.8967552 0.9512195 0.8816392 0.8845984
## 1913 0.8967552 0.9512195 0.8816392 0.8845984
## 1914 0.9156328 0.8709579 0.8932935 0.8845984
## 1915 0.8657143 0.8709579 0.8932935 0.8845984
## 1916 0.8657143 0.8709579 0.8932935 0.8845984
## 1917 0.9156328 0.8709579 0.8816392 0.8845984
## 1918 0.9156328 0.8709579 0.8932935 0.8845984
## 1919 0.8880126 0.8709579 0.8932935 0.8845984
## 1920 0.9156328 0.8709579 0.8816392 0.8845984
## 1921 0.9075630 0.9512195 0.8816392 0.8845984
## 1922 0.8348348 0.8709579 0.8816392 0.8845984
## 1923 0.8880126 0.8709579 0.8816392 0.8845984
## 1924 0.8880126 0.8709579 0.8932935 0.8845984
## 1925 0.9057377 0.8709579 0.8932935 0.8996840
## 1926 0.8880126 0.9512195 0.8932935 0.8845984
## 1927 0.9156328 0.9512195 0.8816392 0.8996840
## 1928 0.8880126 0.8709579 0.8932935 0.8845984
## 1929 0.8967552 0.8709579 0.9032258 0.9032258
## 1930 0.9156328 0.9512195 0.8816392 0.8845984
## 1931 0.9057377 0.8709579 0.8816392 0.8845984
## 1932 0.8880126 0.8709579 0.8932935 0.8845984
## 1933 0.9075630 0.9512195 0.8932935 0.8845984
## 1934 0.8880126 0.8709579 0.8932935 0.8996840
## 1935 0.8348348 0.8709579 0.8932935 0.8845984
## 1936 0.8967552 0.8709579 0.8932935 0.8845984
## 1937 0.8880126 0.9512195 0.9032258 0.9032258
## 1938 0.8880126 0.8709579 0.8816392 0.8845984
## 1939 0.9057377 0.9512195 0.8932935 0.8845984
## 1940 0.8880126 0.8709579 0.8932935 0.8845984
## 1941 0.9156328 0.8709579 0.8816392 0.8845984
## 1942 0.9156328 0.8709579 0.8816392 0.8845984
## 1943 0.8657143 0.8709579 0.8816392 0.8845984
## 1944 0.8880126 0.8709579 0.8932935 0.8845984
## 1945 0.8967552 0.8709579 0.8932935 0.8845984
## 1946 0.8657143 0.8709579 0.8816392 0.8845984
## 1947 0.8880126 0.8709579 0.8816392 0.8845984
## 1948 0.8348348 0.8709579 0.8932935 0.8845984
## 1949 0.8880126 0.8709579 0.8816392 0.8845984
## 1950 0.8657143 0.8709579 0.8932935 0.8845984
## 1951 0.8880126 0.8709579 0.8816392 0.8845984
## 1952 0.8657143 0.8709579 0.8932935 0.8845984
## 1953 0.8657143 0.8709579 0.8932935 0.8845984
## 1954 0.8657143 0.8709579 0.8932935 0.8845984
## 1955 0.9057377 0.8709579 0.8932935 0.8845984
## 1956 0.8880126 0.9512195 0.8816392 0.8845984
## 1957 0.8880126 0.8709579 0.8932935 0.8845984
## 1958 0.8657143 0.8709579 0.8932935 0.8845984
## 1959 0.8967552 0.8709579 0.8932935 0.8845984
## 1960 0.9075630 0.8709579 0.8932935 0.8845984
## 1961 0.8880126 0.8709579 0.8816392 0.8845984
## 1962 0.8657143 0.8709579 0.8816392 0.8845984
## 1963 0.9075630 0.9512195 0.9032258 0.9032258
## 1964 0.8348348 0.8709579 0.8932935 0.8845984
## 1965 0.8880126 0.8709579 0.8816392 0.8845984
## 1966 0.8348348 0.8709579 0.8932935 0.8996840
## 1967 0.8657143 0.8709579 0.8816392 0.8845984
## 1968 0.8880126 0.8709579 0.8932935 0.8845984
## 1969 0.8348348 0.9512195 0.8816392 0.8996840
## 1970 0.8967552 0.9512195 0.8816392 0.8845984
## 1971 0.9075630 0.8709579 0.8932935 0.8845984
## 1972 0.9075630 0.8709579 0.8932935 0.8845984
## 1973 0.8657143 0.8709579 0.8816392 0.8996840
## 1974 0.8657143 0.8709579 0.8816392 0.8996840
## 1975 0.8880126 0.8709579 0.8816392 0.8845984
## 1976 0.8657143 0.8709579 0.8816392 0.8845984
## 1977 0.8880126 0.9512195 0.8932935 0.8845984
## 1978 0.9057377 0.8709579 0.8816392 0.8845984
## 1979 0.9057377 0.9512195 0.9032258 0.9032258
## 1980 0.8348348 0.9512195 0.8816392 0.8845984
## 1981 0.8967552 0.8709579 0.8932935 0.8845984
## 1982 0.9075630 0.9512195 0.8816392 0.8845984
## 1983 0.8657143 0.8709579 0.8816392 0.8845984
## 1984 0.8880126 0.9512195 0.8932935 0.8845984
## 1985 0.9156328 0.9512195 0.8816392 0.8845984
## 1986 0.9057377 0.8709579 0.8816392 0.8845984
## 1987 0.9075630 0.8709579 0.8932935 0.8845984
## 1988 0.9156328 0.8709579 0.8932935 0.8845984
## 1989 0.8880126 0.8709579 0.8932935 0.8845984
## 1990 0.8967552 0.9512195 0.8816392 0.8845984
## 1991 0.9156328 0.8709579 0.8816392 0.8845984
## 1992 0.8348348 0.9512195 0.8816392 0.8845984
## 1993 0.8880126 0.8709579 0.8816392 0.8845984
## 1994 0.8967552 0.8709579 0.8816392 0.8996840
## 1995 0.8657143 0.8709579 0.8932935 0.8845984
## 1996 0.8880126 0.8709579 0.8932935 0.8845984
## 1997 0.8967552 0.9512195 0.8932935 0.8845984
## 1998 0.8967552 0.8709579 0.8932935 0.8845984
## 1999 0.8657143 0.8709579 0.8932935 0.8845984
## 2000 0.8967552 0.8709579 0.8932935 0.8845984
## 2001 0.8657143 0.8709579 0.8816392 0.8845984
## 2002 0.8657143 0.8709579 0.8816392 0.8845984
## 2003 0.9075630 0.9512195 0.8816392 0.8845984
## 2004 0.9156328 0.8709579 0.8816392 0.8845984
## 2005 0.8880126 0.8709579 0.8816392 0.8845984
## 2006 0.9156328 0.9512195 0.8816392 0.8845984
## 2007 0.9156328 0.8709579 0.8932935 0.8845984
## 2008 0.8880126 0.8709579 0.8932935 0.8996840
## 2009 0.8880126 0.8709579 0.8816392 0.8845984
## 2010 0.9156328 0.8709579 0.8816392 0.8996840
## 2011 0.8880126 0.8709579 0.8932935 0.8845984
## 2012 0.8880126 0.8709579 0.8932935 0.8996840
## 2013 0.8657143 0.8709579 0.8816392 0.8845984
## 2014 0.8657143 0.8709579 0.8816392 0.8845984
## 2015 0.9156328 0.8709579 0.8816392 0.8845984
## 2016 0.8348348 0.9512195 0.8816392 0.8845984
## 2017 0.8657143 0.8709579 0.8816392 0.8996840
## 2018 0.9156328 0.9512195 0.8816392 0.8845984
## 2019 0.8967552 0.8709579 0.8932935 0.8845984
## 2020 0.9156328 0.9512195 0.8932935 0.8845984
## 2021 0.9156328 0.8709579 0.8816392 0.8845984
## 2022 0.8657143 0.8709579 0.8816392 0.8996840
## 2023 0.9075630 0.8709579 0.8816392 0.8845984
## 2024 0.8880126 0.8709579 0.8932935 0.8845984
## 2025 0.8880126 0.8709579 0.8932935 0.8845984
## 2026 0.9156328 0.8709579 0.8816392 0.8996840
## 2027 0.9075630 0.9512195 0.8816392 0.8845984
## 2028 0.9156328 0.8709579 0.8816392 0.8845984
## 2029 0.9156328 0.9512195 0.8816392 0.8845984
## 2030 0.8657143 0.8709579 0.8932935 0.8845984
## 2031 0.8000000 0.8709579 0.8816392 0.8845984
## 2032 0.9156328 0.8709579 0.8816392 0.8845984
## 2033 0.8880126 0.9512195 0.8816392 0.8845984
## 2034 0.8657143 0.8709579 0.8816392 0.8996840
## 2035 0.8657143 0.8709579 0.8816392 0.8996840
## 2036 0.8967552 0.8709579 0.8816392 0.8996840
## 2037 0.8880126 0.8709579 0.8816392 0.8845984
## 2038 0.9057377 0.8709579 0.8816392 0.8845984
## 2039 0.8880126 0.8709579 0.8816392 0.8845984
## 2040 0.8967552 0.9512195 0.8932935 0.8845984
## 2041 0.8657143 0.8709579 0.8816392 0.8845984
## 2042 0.9156328 0.8709579 0.8816392 0.8845984
## 2043 0.8657143 0.8709579 0.8932935 0.8845984
## 2044 0.9156328 0.8709579 0.8816392 0.8845984
## 2045 0.8880126 0.9512195 0.8816392 0.8845984
## 2046 0.9156328 0.8709579 0.8816392 0.8845984
## 2047 0.8348348 0.8709579 0.8932935 0.8845984
## 2048 0.9156328 0.8709579 0.8932935 0.8845984
## 2049 0.8880126 0.8709579 0.8816392 0.8845984
## 2050 0.8967552 0.9512195 0.8816392 0.8845984
## 2051 0.8348348 0.9512195 0.8932935 0.8845984
## 2052 0.8880126 0.8709579 0.8816392 0.8845984
## 2053 0.8880126 0.8709579 0.9032258 0.9032258
## 2054 0.8657143 0.8709579 0.8816392 0.8996840
## 2055 0.9075630 0.8709579 0.8932935 0.8845984
## 2056 0.9156328 0.8709579 0.8932935 0.8845984
## 2057 0.8880126 0.9512195 0.8816392 0.8845984
## 2058 0.8967552 0.8709579 0.8816392 0.8845984
## 2059 0.8657143 0.8709579 0.8816392 0.8845984
## 2060 0.8880126 0.8709579 0.8816392 0.8845984
## 2061 0.8880126 0.8709579 0.8816392 0.8996840
## 2062 0.9156328 0.8709579 0.8816392 0.8845984
## 2063 0.8880126 0.8709579 0.8816392 0.8845984
## 2064 0.9075630 0.8709579 0.8816392 0.8845984
## 2065 0.8880126 0.8709579 0.8932935 0.8845984
## 2066 0.8657143 0.8709579 0.8816392 0.8845984
## 2067 0.8657143 0.8709579 0.8932935 0.8845984
## 2068 0.8348348 0.9512195 0.8816392 0.8845984
## 2069 0.8657143 0.8709579 0.8816392 0.8845984
## 2070 0.9075630 0.8709579 0.8932935 0.8845984
## 2071 0.8657143 0.8709579 0.8816392 0.8845984
## 2072 0.8967552 0.8709579 0.8932935 0.8845984
## 2073 0.8657143 0.8709579 0.8816392 0.8845984
## 2074 0.8657143 0.9512195 0.8932935 0.8996840
## 2075 0.8880126 0.8709579 0.8816392 0.8845984
## 2076 0.9156328 0.9512195 0.8816392 0.8845984
## 2077 0.8880126 0.8709579 0.8816392 0.8845984
## 2078 0.8657143 0.8709579 0.8816392 0.8845984
## 2079 0.8967552 0.8709579 0.8816392 0.8845984
## 2080 0.8967552 0.8709579 0.8932935 0.8845984
## 2081 0.9057377 0.8709579 0.8932935 0.8845984
## 2082 0.8880126 0.8709579 0.8816392 0.8845984
## 2083 0.8657143 0.8709579 0.8816392 0.8845984
## 2084 0.9156328 0.8709579 0.8816392 0.8996840
## 2085 0.9075630 0.8709579 0.8816392 0.8845984
## 2086 0.8657143 0.8709579 0.8932935 0.8996840
## 2087 0.8657143 0.8709579 0.8932935 0.8996840
## 2088 0.8880126 0.9512195 0.8932935 0.8845984
## 2089 0.8967552 0.8709579 0.8816392 0.8845984
## 2090 0.9075630 0.9512195 0.8932935 0.8845984
## 2091 0.8657143 0.8709579 0.8932935 0.8845984
## 2092 0.8657143 0.8709579 0.9032258 0.9032258
## 2093 0.8967552 0.8709579 0.8932935 0.8845984
## 2094 0.9057377 0.9512195 0.8816392 0.8845984
## 2095 0.9156328 0.9512195 0.8932935 0.8845984
## 2096 0.9156328 0.8709579 0.8816392 0.8845984
## 2097 0.8657143 0.8709579 0.8932935 0.8845984
## 2098 0.8348348 0.8709579 0.8816392 0.8845984
## 2099 0.9057377 0.8709579 0.8816392 0.8845984
## 2100 0.8657143 0.8709579 0.8816392 0.8845984
## 2101 0.8657143 0.9512195 0.8816392 0.8996840
## 2102 0.8657143 0.9512195 0.8816392 0.8845984
## 2103 0.8348348 0.9512195 0.8932935 0.8996840
## 2104 0.8967552 0.8709579 0.8932935 0.8845984
## 2105 0.8657143 0.8709579 0.8816392 0.8845984
## 2106 0.8967552 0.8709579 0.8932935 0.8845984
## 2107 0.8967552 0.8709579 0.8816392 0.8845984
## 2108 0.8657143 0.8709579 0.8816392 0.8845984
## 2109 0.8657143 0.8709579 0.8816392 0.8996840
## 2110 0.8657143 0.8709579 0.8932935 0.8845984
## 2111 0.8880126 0.8709579 0.8816392 0.8996840
## 2112 0.8880126 0.8709579 0.8816392 0.8996840
## 2113 0.8967552 0.8709579 0.8932935 0.8996840
## 2114 0.9156328 0.8709579 0.8816392 0.8845984
## 2115 0.9075630 0.9512195 0.8816392 0.8845984
## 2116 0.9075630 0.9512195 0.8816392 0.8845984
## 2117 0.8880126 0.8709579 0.8932935 0.8996840
## 2118 0.8657143 0.8709579 0.8932935 0.8996840
## 2119 0.8657143 0.8709579 0.8932935 0.8845984
## 2120 0.8967552 0.8709579 0.9032258 0.9032258
## 2121 0.9057377 0.9512195 0.8816392 0.8845984
## 2122 0.8657143 0.8709579 0.8932935 0.8845984
## 2123 0.8657143 0.8709579 0.8932935 0.8845984
## 2124 0.8657143 0.8709579 0.8932935 0.8845984
## 2125 0.8880126 0.9512195 0.8816392 0.8996840
## 2126 0.8657143 0.8709579 0.9032258 0.9032258
## 2127 0.9075630 0.8709579 0.8816392 0.8845984
## 2128 0.9075630 0.9512195 0.8816392 0.8996840
## 2129 0.8657143 0.8709579 0.8816392 0.8845984
## 2130 0.8657143 0.8709579 0.8816392 0.8845984
## 2131 0.9156328 0.8709579 0.8816392 0.8845984
## 2132 0.8967552 0.8709579 0.8816392 0.8845984
## 2133 0.8880126 0.8709579 0.8932935 0.8996840
## 2134 0.8657143 0.8709579 0.9032258 0.9032258
## 2135 0.9075630 0.9512195 0.8932935 0.8845984
## 2136 0.9156328 0.8709579 0.8816392 0.8845984
## 2137 0.8967552 0.8709579 0.8932935 0.8845984
## 2138 0.8657143 0.8709579 0.8816392 0.8845984
## 2139 0.9057377 0.9512195 0.8816392 0.8845984
## 2140 0.8657143 0.8709579 0.8816392 0.8845984
## 2141 0.8657143 0.9512195 0.8932935 0.8996840
## 2142 0.8880126 0.9512195 0.8932935 0.8845984
## 2143 0.8880126 0.8709579 0.8932935 0.8845984
## 2144 0.8657143 0.8709579 0.8932935 0.8845984
## 2145 0.8967552 0.8709579 0.8816392 0.8845984
## 2146 0.8880126 0.8709579 0.8816392 0.8845984
## 2147 0.8657143 0.9512195 0.8816392 0.8845984
## 2148 0.9156328 0.8709579 0.8932935 0.8845984
## 2149 0.9156328 0.8709579 0.8816392 0.8845984
## 2150 0.8967552 0.8709579 0.8932935 0.8996840
## 2151 0.8657143 0.8709579 0.8816392 0.8845984
## 2152 0.9075630 0.8709579 0.8816392 0.8845984
## 2153 0.9156328 0.8709579 0.8932935 0.8845984
## 2154 0.8967552 0.9512195 0.8932935 0.8845984
## 2155 0.8657143 0.8709579 0.8932935 0.8996840
## 2156 0.8967552 0.8709579 0.8816392 0.8845984
## 2157 0.9075630 0.8709579 0.8816392 0.8845984
## 2158 0.8657143 0.8709579 0.8932935 0.8845984
## 2159 0.9156328 0.8709579 0.8816392 0.8996840
## 2160 0.8880126 0.9512195 0.8932935 0.8845984
## 2161 0.8967552 0.8709579 0.8816392 0.8845984
## 2162 0.8967552 0.8709579 0.8932935 0.8996840
## 2163 0.8348348 0.8709579 0.8816392 0.8845984
## 2164 0.8657143 0.8709579 0.8932935 0.8845984
## 2165 0.9075630 0.8709579 0.8932935 0.8845984
## 2166 0.9156328 0.8709579 0.8816392 0.8845984
## 2167 0.8880126 0.8709579 0.8932935 0.8996840
## 2168 0.9057377 0.8709579 0.8932935 0.8845984
## 2169 0.8657143 0.8709579 0.8816392 0.8996840
## 2170 0.8000000 0.9512195 0.8932935 0.8996840
## 2171 0.9075630 0.8709579 0.8932935 0.8845984
## 2172 0.8880126 0.8709579 0.8932935 0.8845984
## 2173 0.8657143 0.8709579 0.8932935 0.8845984
## 2174 0.8880126 0.8709579 0.8816392 0.8845984
## 2175 0.8657143 0.8709579 0.8932935 0.8845984
## 2176 0.8657143 0.8709579 0.8932935 0.8845984
## 2177 0.9075630 0.8709579 0.8816392 0.8845984
## 2178 0.8880126 0.9512195 0.8932935 0.8845984
## 2179 0.8657143 0.8709579 0.8932935 0.8996840
## 2180 0.8880126 0.8709579 0.8816392 0.8845984
## 2181 0.9156328 0.8709579 0.8816392 0.8845984
## 2182 0.8657143 0.8709579 0.8816392 0.8845984
## 2183 0.8657143 0.8709579 0.8816392 0.8996840
## 2184 0.8657143 0.8709579 0.8932935 0.8845984
## 2185 0.8657143 0.8709579 0.8816392 0.8996840
## 2186 0.9075630 0.9512195 0.8816392 0.8845984
## 2187 0.8657143 0.8709579 0.8816392 0.8845984
## 2188 0.9156328 0.8709579 0.8816392 0.8845984
## 2189 0.9156328 0.9512195 0.8816392 0.8845984
## 2190 0.9156328 0.8709579 0.8816392 0.8845984
## 2191 0.8657143 0.8709579 0.8816392 0.8996840
## 2192 0.8657143 0.9512195 0.8932935 0.8996840
## 2193 0.9075630 0.9512195 0.8932935 0.8996840
## 2194 0.9156328 0.8709579 0.8932935 0.8845984
## 2195 0.9156328 0.8709579 0.8932935 0.8845984
## 2196 0.8880126 0.8709579 0.8816392 0.8845984
## 2197 0.8880126 0.9512195 0.8816392 0.8845984
## 2198 0.8967552 0.9512195 0.8932935 0.8845984
## 2199 0.8967552 0.8709579 0.8816392 0.8845984
## 2200 0.8880126 0.8709579 0.8816392 0.8996840
## 2201 0.8348348 0.9512195 0.8816392 0.8845984
## 2202 0.9057377 0.9512195 0.8932935 0.8996840
## 2203 0.8657143 0.8709579 0.8816392 0.8845984
## 2204 0.8348348 0.9512195 0.8816392 0.8996840
## 2205 0.8657143 0.8709579 0.8816392 0.8845984
## 2206 0.9156328 0.8709579 0.8816392 0.8845984
## 2207 0.8880126 0.8709579 0.8932935 0.8996840
## 2208 0.9156328 0.9512195 0.8816392 0.8845984
## 2209 0.9156328 0.8709579 0.8816392 0.8845984
## 2210 0.8657143 0.8709579 0.8932935 0.8845984
## 2211 0.8657143 0.8709579 0.8816392 0.8845984
## 2212 0.9156328 0.8709579 0.8816392 0.8845984
## 2213 0.8880126 0.8709579 0.8932935 0.8845984
## 2214 0.9156328 0.8709579 0.8816392 0.8845984
## 2215 0.8880126 0.8709579 0.8816392 0.8845984
## 2216 0.9075630 0.9512195 0.8816392 0.8845984
## 2217 0.9057377 0.8709579 0.8816392 0.8845984
## 2218 0.8880126 0.8709579 0.8932935 0.8845984
## 2219 0.9075630 0.9512195 0.8932935 0.8845984
## 2220 0.8880126 0.8709579 0.8932935 0.8845984
## 2221 0.8657143 0.8709579 0.8932935 0.8845984
## 2222 0.8880126 0.8709579 0.8816392 0.8845984
## 2223 0.9075630 0.9512195 0.8932935 0.8845984
## 2224 0.8880126 0.8709579 0.8816392 0.8845984
## 2225 0.8880126 0.9512195 0.8932935 0.8845984
## 2226 0.8967552 0.8709579 0.8932935 0.8845984
## 2227 0.8657143 0.8709579 0.8816392 0.8845984
## 2228 0.8880126 0.8709579 0.8816392 0.8845984
## 2229 0.8880126 0.8709579 0.8932935 0.8845984
## 2230 0.9075630 0.9512195 0.8932935 0.8845984
## 2231 0.8657143 0.8709579 0.8816392 0.8845984
## 2232 0.9156328 0.8709579 0.8932935 0.8845984
## 2233 0.8967552 0.8709579 0.8816392 0.8996840
## 2234 0.8657143 0.8709579 0.8932935 0.8996840
## 2235 0.8657143 0.8709579 0.8816392 0.8845984
## 2236 0.8348348 0.9512195 0.8816392 0.8845984
## 2237 0.9057377 0.8709579 0.8932935 0.8996840
## 2238 0.9156328 0.9512195 0.8932935 0.8996840
## 2239 0.8880126 0.8709579 0.8816392 0.8845984
## 2240 0.8657143 0.8709579 0.8816392 0.8845984
## 2241 0.8967552 0.8709579 0.8932935 0.8845984
## 2242 0.8657143 0.8709579 0.8816392 0.8845984
## 2243 0.8657143 0.8709579 0.8932935 0.8845984
## 2244 0.9156328 0.9512195 0.8816392 0.8845984
## 2245 0.8880126 0.8709579 0.8816392 0.8845984
## 2246 0.9075630 0.9512195 0.8932935 0.8845984
## 2247 0.8657143 0.8709579 0.8932935 0.8845984
## 2248 0.9156328 0.8709579 0.8932935 0.8845984
## 2249 0.8880126 0.9512195 0.8932935 0.8845984
## 2250 0.8967552 0.9512195 0.8816392 0.8845984
## 2251 0.8657143 0.8709579 0.8816392 0.8845984
## 2252 0.8348348 0.9512195 0.8932935 0.8996840
## 2253 0.8657143 0.8709579 0.8816392 0.8845984
## 2254 0.8657143 0.8709579 0.8816392 0.8845984
## 2255 0.8657143 0.8709579 0.8932935 0.8845984
## 2256 0.8657143 0.8709579 0.8816392 0.8996840
## 2257 0.8880126 0.8709579 0.8816392 0.8845984
## 2258 0.8657143 0.8709579 0.8816392 0.8845984
## 2259 0.8967552 0.8709579 0.8932935 0.8845984
## 2260 0.9156328 0.8709579 0.8932935 0.8996840
## 2261 0.8657143 0.8709579 0.8816392 0.8845984
## 2262 0.8657143 0.8709579 0.8932935 0.8845984
## 2263 0.9156328 0.8709579 0.8932935 0.8845984
## 2264 0.9156328 0.8709579 0.8932935 0.8996840
## 2265 0.8967552 0.8709579 0.8932935 0.8996840
## 2266 0.8967552 0.8709579 0.8816392 0.8845984
## 2267 0.8657143 0.8709579 0.9032258 0.9032258
## 2268 0.8880126 0.8709579 0.8932935 0.8845984
## 2269 0.8657143 0.8709579 0.8932935 0.8845984
## 2270 0.8657143 0.8709579 0.8932935 0.8845984
## 2271 0.8657143 0.8709579 0.8932935 0.8845984
## 2272 0.8657143 0.8709579 0.8932935 0.8996840
## 2273 0.8657143 0.9512195 0.8816392 0.8845984
## 2274 0.8880126 0.8709579 0.8932935 0.8845984
## 2275 0.8967552 0.8709579 0.8932935 0.8845984
## 2276 0.8880126 0.8709579 0.8816392 0.8996840
## 2277 0.9156328 0.8709579 0.8932935 0.8845984
## 2278 0.9156328 0.8709579 0.8932935 0.8845984
## 2279 0.9075630 0.8709579 0.8932935 0.8845984
## 2280 0.8657143 0.8709579 0.8932935 0.8996840
## 2281 0.9075630 0.9512195 0.8932935 0.8845984
## 2282 0.8657143 0.8709579 0.8816392 0.8996840
## 2283 0.8348348 0.8709579 0.8816392 0.8845984
## 2284 0.8880126 0.8709579 0.8816392 0.8845984
## 2285 0.8967552 0.8709579 0.8932935 0.8996840
## 2286 0.8657143 0.8709579 0.8816392 0.8845984
## 2287 0.9057377 0.8709579 0.8932935 0.8845984
## 2288 0.9057377 0.8709579 0.8932935 0.8845984
## 2289 0.8880126 0.8709579 0.8816392 0.8845984
## 2290 0.8657143 0.8709579 0.8816392 0.8845984
## 2291 0.8657143 0.8709579 0.8932935 0.8845984
## 2292 0.8348348 0.8709579 0.8816392 0.8845984
## 2293 0.8657143 0.8709579 0.8932935 0.8845984
## 2294 0.9075630 0.9512195 0.8816392 0.8845984
## 2295 0.8880126 0.8709579 0.8932935 0.8845984
## 2296 0.8657143 0.8709579 0.8932935 0.8996840
## 2297 0.9075630 0.9512195 0.8816392 0.8845984
## 2298 0.8880126 0.8709579 0.8816392 0.8845984
## 2299 0.8880126 0.9512195 0.8932935 0.8845984
## 2300 0.8880126 0.8709579 0.8932935 0.8845984
## 2301 0.8967552 0.8709579 0.8816392 0.8845984
## 2302 0.8657143 0.8709579 0.8816392 0.8996840
## 2303 0.8657143 0.8709579 0.8816392 0.8845984
## 2304 0.9057377 0.8709579 0.8932935 0.8845984
## 2305 0.9057377 0.8709579 0.8932935 0.8845984
## 2306 0.8657143 0.8709579 0.8816392 0.8845984
## 2307 0.8348348 0.8709579 0.8932935 0.8845984
## 2308 0.8348348 0.8709579 0.8816392 0.8845984
## 2309 0.8967552 0.8709579 0.8816392 0.8845984
## 2310 0.8967552 0.8709579 0.8816392 0.8845984
## 2311 0.8967552 0.8709579 0.8816392 0.8845984
## 2312 0.9156328 0.9512195 0.8816392 0.8845984
## 2313 0.8348348 0.8709579 0.8932935 0.8996840
## 2314 0.9156328 0.9512195 0.8932935 0.8845984
## 2315 0.8967552 0.9512195 0.8816392 0.8996840
## 2316 0.8657143 0.9512195 0.8932935 0.8845984
## 2317 0.8657143 0.8709579 0.8932935 0.8996840
## 2318 0.8880126 0.8709579 0.8816392 0.8845984
## 2319 0.8880126 0.9512195 0.8816392 0.8845984
## 2320 0.8657143 0.8709579 0.8816392 0.8845984
## 2321 0.8348348 0.8709579 0.8932935 0.8845984
## 2322 0.8348348 0.8709579 0.8932935 0.8845984
## 2323 0.8880126 0.9512195 0.8932935 0.8996840
## 2324 0.9156328 0.8709579 0.8816392 0.8845984
## 2325 0.8880126 0.8709579 0.8816392 0.8845984
## 2326 0.8657143 0.8709579 0.8932935 0.8845984
## 2327 0.8967552 0.8709579 0.8816392 0.8845984
## 2328 0.8880126 0.8709579 0.8816392 0.8845984
## 2329 0.9156328 0.8709579 0.8932935 0.8845984
## 2330 0.8657143 0.8709579 0.8932935 0.8845984
## 2331 0.8657143 0.8709579 0.8932935 0.8845984
## 2332 0.8880126 0.8709579 0.8816392 0.8845984
## 2333 0.9075630 0.9512195 0.8816392 0.8845984
## 2334 0.8880126 0.9512195 0.8932935 0.8845984
## 2335 0.8880126 0.8709579 0.8932935 0.8845984
## 2336 0.8967552 0.8709579 0.8932935 0.8845984
## 2337 0.8880126 0.9512195 0.8816392 0.8845984
## 2338 0.8657143 0.8709579 0.8932935 0.8845984
## 2339 0.9057377 0.8709579 0.8816392 0.8996840
## 2340 0.8657143 0.8709579 0.8932935 0.8845984
## 2341 0.8657143 0.9512195 0.8816392 0.8845984
## 2342 0.8348348 0.8709579 0.8816392 0.8845984
## 2343 0.9075630 0.8709579 0.8932935 0.8845984
## 2344 0.8880126 0.8709579 0.8816392 0.8845984
## 2345 0.8657143 0.8709579 0.8932935 0.8845984
## 2346 0.9075630 0.8709579 0.8816392 0.8845984
## 2347 0.8657143 0.8709579 0.8816392 0.8845984
## 2348 0.8880126 0.8709579 0.8816392 0.8845984
## 2349 0.9057377 0.9512195 0.8816392 0.8845984
## 2350 0.8657143 0.8709579 0.8816392 0.8845984
## 2351 0.8657143 0.9512195 0.8816392 0.8845984
## 2352 0.8967552 0.9512195 0.8932935 0.8845984
## 2353 0.9075630 0.9512195 0.8816392 0.8845984
## 2354 0.8657143 0.8709579 0.8932935 0.8845984
## 2355 0.8967552 0.8709579 0.8816392 0.8845984
## 2356 0.8657143 0.8709579 0.8816392 0.8845984
## 2357 0.8657143 0.8709579 0.8816392 0.8845984
## 2358 0.8657143 0.8709579 0.8816392 0.8845984
## 2359 0.8967552 0.8709579 0.8816392 0.8845984
## 2360 0.8657143 0.8709579 0.8932935 0.8845984
## 2361 0.9057377 0.9512195 0.8932935 0.8845984
## 2362 0.9057377 0.8709579 0.8816392 0.8845984
## 2363 0.8880126 0.8709579 0.8932935 0.8845984
## 2364 0.8657143 0.9512195 0.8816392 0.8845984
## 2365 0.9075630 0.9512195 0.8816392 0.8845984
## 2366 0.9156328 0.9512195 0.8932935 0.8845984
## 2367 0.8657143 0.8709579 0.8932935 0.8845984
## 2368 0.8967552 0.9512195 0.8816392 0.8845984
## 2369 0.8880126 0.8709579 0.8816392 0.8996840
## 2370 0.8657143 0.8709579 0.8932935 0.8845984
## 2371 0.9156328 0.8709579 0.8932935 0.8845984
## 2372 0.8880126 0.8709579 0.8816392 0.8845984
## 2373 0.8657143 0.8709579 0.8932935 0.8845984
## 2374 0.8657143 0.8709579 0.8816392 0.8845984
## 2375 0.8880126 0.8709579 0.8816392 0.8845984
## 2376 0.8657143 0.8709579 0.8816392 0.8845984
## 2377 0.9057377 0.8709579 0.8816392 0.8845984
## 2378 0.9075630 0.8709579 0.8932935 0.8845984
## 2379 0.8657143 0.8709579 0.8932935 0.8845984
## 2380 0.8880126 0.8709579 0.8816392 0.8996840
## 2381 0.8880126 0.9512195 0.8932935 0.8845984
## 2382 0.8657143 0.8709579 0.8816392 0.8845984
## 2383 0.8880126 0.8709579 0.8816392 0.8845984
## 2384 0.8657143 0.9512195 0.8932935 0.8845984
## 2385 0.8657143 0.9512195 0.8932935 0.8845984
## 2386 0.8348348 0.8709579 0.8932935 0.8845984
## 2387 0.9156328 0.8709579 0.8816392 0.8996840
## 2388 0.8880126 0.8709579 0.8932935 0.8845984
## 2389 0.8657143 0.8709579 0.8816392 0.8996840
## 2390 0.8967552 0.8709579 0.8816392 0.8845984
## 2391 0.9057377 0.8709579 0.8816392 0.8845984
## 2392 0.9156328 0.8709579 0.8932935 0.8845984
## 2393 0.9075630 0.8709579 0.8932935 0.8845984
## 2394 0.8967552 0.9512195 0.8932935 0.8845984
## 2395 0.9075630 0.8709579 0.8932935 0.8845984
## 2396 0.8657143 0.8709579 0.8816392 0.8845984
## 2397 0.8657143 0.8709579 0.8816392 0.8845984
## 2398 0.8967552 0.8709579 0.8816392 0.8845984
## 2399 0.9057377 0.8709579 0.8932935 0.8845984
## 2400 0.8880126 0.8709579 0.8816392 0.8845984
## 2401 0.8657143 0.8709579 0.8816392 0.8845984
## 2402 0.8967552 0.9512195 0.8816392 0.8845984
## 2403 0.8880126 0.8709579 0.8816392 0.8845984
## 2404 0.8967552 0.8709579 0.8816392 0.8996840
## 2405 0.8967552 0.8709579 0.8932935 0.8845984
## 2406 0.9057377 0.8709579 0.8932935 0.8845984
## 2407 0.8657143 0.8709579 0.8816392 0.8845984
## 2408 0.9057377 0.8709579 0.8816392 0.8845984
## 2409 0.8967552 0.8709579 0.8816392 0.8845984
## 2410 0.9057377 0.9512195 0.8816392 0.8845984
## 2411 0.8967552 0.8709579 0.8932935 0.8845984
## 2412 0.8880126 0.8709579 0.8932935 0.8845984
## 2413 0.8657143 0.8709579 0.8816392 0.8845984
## 2414 0.8348348 0.9512195 0.8816392 0.8845984
## 2415 0.8657143 0.8709579 0.8816392 0.8845984
## 2416 0.8880126 0.9512195 0.8932935 0.8996840
## 2417 0.8657143 0.9512195 0.8816392 0.8845984
## 2418 0.9156328 0.8709579 0.9032258 0.9032258
## 2419 0.8657143 0.8709579 0.8816392 0.8996840
## 2420 0.8657143 0.8709579 0.8932935 0.8845984
## 2421 0.8880126 0.8709579 0.8932935 0.8845984
## 2422 0.8657143 0.9512195 0.8932935 0.8996840
## 2423 0.9156328 0.8709579 0.8816392 0.8845984
## 2424 0.8657143 0.8709579 0.8932935 0.8845984
## 2425 0.8657143 0.8709579 0.8932935 0.8845984
## 2426 0.9075630 0.8709579 0.8816392 0.8845984
## 2427 0.9156328 0.9512195 0.8932935 0.8996840
## 2428 0.8967552 0.8709579 0.8932935 0.8845984
## 2429 0.9075630 0.8709579 0.8816392 0.8996840
## 2430 0.8657143 0.9512195 0.8932935 0.8845984
## 2431 0.8657143 0.8709579 0.8932935 0.8845984
## 2432 0.9057377 0.8709579 0.8816392 0.8845984
## 2433 0.8880126 0.8709579 0.8816392 0.8996840
## 2434 0.8880126 0.9512195 0.8816392 0.8845984
## 2435 0.8880126 0.8709579 0.8816392 0.8845984
## 2436 0.8657143 0.8709579 0.8932935 0.8845984
## 2437 0.9057377 0.9512195 0.8816392 0.8996840
## 2438 0.8657143 0.8709579 0.8816392 0.8845984
## 2439 0.9156328 0.8709579 0.8932935 0.8845984
## 2440 0.8657143 0.8709579 0.8932935 0.8845984
## 2441 0.8880126 0.9512195 0.8816392 0.8845984
## 2442 0.8657143 0.8709579 0.8816392 0.8845984
## 2443 0.8967552 0.8709579 0.8932935 0.8845984
## 2444 0.8657143 0.8709579 0.8932935 0.8845984
## 2445 0.8657143 0.8709579 0.8816392 0.8845984
## 2446 0.8880126 0.8709579 0.8932935 0.8845984
## 2447 0.8880126 0.8709579 0.8932935 0.8845984
## 2448 0.9156328 0.8709579 0.8932935 0.8845984
## 2449 0.8880126 0.8709579 0.8816392 0.8845984
## 2450 0.9156328 0.8709579 0.8932935 0.8845984
## 2451 0.9075630 0.8709579 0.8932935 0.8996840
## 2452 0.8967552 0.8709579 0.8816392 0.8845984
## 2453 0.9156328 0.8709579 0.8816392 0.8845984
## 2454 0.8880126 0.8709579 0.8816392 0.8845984
## 2455 0.9075630 0.9512195 0.8816392 0.8996840
## 2456 0.8657143 0.8709579 0.8816392 0.8845984
## 2457 0.8880126 0.8709579 0.8932935 0.8845984
## 2458 0.8348348 0.9512195 0.8816392 0.8845984
## 2459 0.8967552 0.9512195 0.8932935 0.8845984
## 2460 0.9057377 0.9512195 0.8816392 0.8845984
## 2461 0.8967552 0.8709579 0.8816392 0.8845984
## 2462 0.8967552 0.8709579 0.8816392 0.8845984
## 2463 0.9057377 0.9512195 0.8816392 0.8845984
## 2464 0.9156328 0.9512195 0.8816392 0.8845984
## 2465 0.8880126 0.8709579 0.8816392 0.8845984
## 2466 0.8348348 0.8709579 0.8816392 0.8845984
## 2467 0.8967552 0.9512195 0.8932935 0.8845984
## 2468 0.8657143 0.8709579 0.8932935 0.8845984
## 2469 0.8657143 0.9512195 0.8816392 0.8845984
## 2470 0.8967552 0.9512195 0.8816392 0.8845984
## 2471 0.9156328 0.8709579 0.8932935 0.8845984
## 2472 0.9075630 0.9512195 0.8932935 0.8845984
## 2473 0.8967552 0.8709579 0.8816392 0.8845984
## 2474 0.8880126 0.9512195 0.8816392 0.8845984
## 2475 0.8967552 0.8709579 0.9032258 0.9032258
## 2476 0.9156328 0.8709579 0.8816392 0.8996840
## 2477 0.9156328 0.8709579 0.8816392 0.8845984
## 2478 0.9075630 0.9512195 0.8816392 0.8845984
## 2479 0.8657143 0.8709579 0.8816392 0.8845984
## 2480 0.8880126 0.9512195 0.8816392 0.8845984
## 2481 0.8880126 0.8709579 0.8816392 0.8845984
## 2482 0.8880126 0.8709579 0.8816392 0.8845984
## 2483 0.8657143 0.8709579 0.8816392 0.8845984
## 2484 0.8657143 0.9512195 0.8816392 0.8845984
## 2485 0.9156328 0.8709579 0.8816392 0.8845984
## 2486 0.8967552 0.8709579 0.8932935 0.8845984
## 2487 0.8967552 0.8709579 0.8816392 0.8845984
## 2488 0.8880126 0.8709579 0.8932935 0.8845984
## 2489 0.8657143 0.8709579 0.8932935 0.8996840
## 2490 0.9156328 0.8709579 0.8816392 0.8996840
## 2491 0.8657143 0.8709579 0.8816392 0.8845984
## 2492 0.8657143 0.9512195 0.8932935 0.8845984
## 2493 0.9156328 0.9512195 0.8816392 0.8845984
## 2494 0.8657143 0.8709579 0.8932935 0.8845984
## 2495 0.9075630 0.8709579 0.8932935 0.8845984
## 2496 0.8657143 0.8709579 0.8816392 0.8845984
## 2497 0.8967552 0.8709579 0.8932935 0.8845984
## 2498 0.9156328 0.9512195 0.8816392 0.8845984
## 2499 0.8657143 0.8709579 0.8932935 0.8845984
## 2500 0.8348348 0.8709579 0.8932935 0.8996840
## 2501 0.8880126 0.8709579 0.8816392 0.8845984
## 2502 0.9156328 0.8709579 0.8932935 0.8845984
## 2503 0.8880126 0.8709579 0.8816392 0.8845984
## 2504 0.8880126 0.8709579 0.8816392 0.8845984
## 2505 0.8657143 0.8709579 0.8932935 0.8845984
## 2506 0.9075630 0.9512195 0.8816392 0.8996840
## 2507 0.9156328 0.8709579 0.8932935 0.8845984
## 2508 0.9075630 0.8709579 0.8932935 0.8996840
## 2509 0.8657143 0.8709579 0.8816392 0.8845984
## 2510 0.9057377 0.9512195 0.8932935 0.8845984
## 2511 0.8657143 0.8709579 0.8816392 0.8845984
## 2512 0.8880126 0.9512195 0.8816392 0.8845984
## 2513 0.8657143 0.8709579 0.8816392 0.8996840
## 2514 0.8657143 0.8709579 0.8932935 0.8845984
## 2515 0.9057377 0.8709579 0.8932935 0.8845984
## 2516 0.8880126 0.8709579 0.8816392 0.8845984
## 2517 0.8657143 0.8709579 0.8932935 0.8845984
## 2518 0.8880126 0.8709579 0.8932935 0.8996840
## 2519 0.9075630 0.9512195 0.8816392 0.8845984
## 2520 0.8880126 0.9512195 0.8932935 0.8845984
## 2521 0.8657143 0.9512195 0.8816392 0.8845984
## 2522 0.8657143 0.9512195 0.8932935 0.8845984
## 2523 0.8967552 0.8709579 0.8932935 0.8845984
## 2524 0.9075630 0.8709579 0.8816392 0.8845984
## 2525 0.9057377 0.8709579 0.8816392 0.8845984
## 2526 0.8967552 0.8709579 0.8932935 0.8845984
## 2527 0.9057377 0.9512195 0.8816392 0.8996840
## 2528 0.8967552 0.8709579 0.8816392 0.8996840
## 2529 0.9075630 0.8709579 0.8932935 0.8845984
## 2530 0.8657143 0.8709579 0.8816392 0.8845984
## 2531 0.8657143 0.8709579 0.8932935 0.8845984
## 2532 0.8967552 0.8709579 0.8816392 0.8996840
## 2533 0.9156328 0.8709579 0.8932935 0.8845984
## 2534 0.8880126 0.8709579 0.8816392 0.8845984
## 2535 0.9075630 0.9512195 0.8816392 0.8845984
## 2536 0.8657143 0.8709579 0.8932935 0.8996840
## 2537 0.8967552 0.8709579 0.8932935 0.8845984
## 2538 0.9156328 0.8709579 0.8932935 0.8845984
## 2539 0.8657143 0.8709579 0.8816392 0.8996840
## 2540 0.9156328 0.8709579 0.8932935 0.8845984
## 2541 0.8880126 0.9512195 0.8816392 0.8845984
## 2542 0.8657143 0.8709579 0.8932935 0.8845984
## 2543 0.8657143 0.8709579 0.8932935 0.8996840
## 2544 0.8967552 0.8709579 0.8932935 0.8845984
## 2545 0.9156328 0.9512195 0.8816392 0.8845984
## 2546 0.8967552 0.8709579 0.8932935 0.8845984
## 2547 0.9075630 0.9512195 0.8932935 0.8845984
## 2548 0.8657143 0.8709579 0.8932935 0.8845984
## 2549 0.9156328 0.8709579 0.8816392 0.8845984
## 2550 0.8657143 0.8709579 0.8932935 0.8845984
## 2551 0.8880126 0.8709579 0.9032258 0.9032258
## 2552 0.8967552 0.8709579 0.8816392 0.8845984
## 2553 0.8967552 0.8709579 0.8816392 0.8845984
## 2554 0.8880126 0.8709579 0.8816392 0.8845984
## 2555 0.8657143 0.8709579 0.8932935 0.8845984
## 2556 0.9075630 0.9512195 0.8932935 0.8845984
## 2557 0.9156328 0.8709579 0.8932935 0.8845984
## 2558 0.8880126 0.8709579 0.8816392 0.8845984
## 2559 0.8880126 0.9512195 0.8816392 0.8845984
## 2560 0.8657143 0.8709579 0.8816392 0.8845984
## 2561 0.8657143 0.8709579 0.8932935 0.8845984
## 2562 0.8880126 0.8709579 0.8816392 0.8996840
## 2563 0.8657143 0.8709579 0.8816392 0.8845984
## 2564 0.9156328 0.9512195 0.8816392 0.8845984
## 2565 0.9156328 0.8709579 0.8932935 0.8845984
## 2566 0.8967552 0.8709579 0.8932935 0.8845984
## 2567 0.8657143 0.8709579 0.8932935 0.8845984
## 2568 0.9075630 0.8709579 0.8816392 0.8845984
## 2569 0.9156328 0.8709579 0.8932935 0.8845984
## 2570 0.9075630 0.9512195 0.8932935 0.8845984
## 2571 0.9156328 0.8709579 0.8932935 0.8845984
## 2572 0.8880126 0.9512195 0.8932935 0.8845984
## 2573 0.8880126 0.8709579 0.8816392 0.8845984
## 2574 0.8348348 0.8709579 0.8816392 0.8996840
## 2575 0.8657143 0.8709579 0.8816392 0.8845984
## 2576 0.8657143 0.8709579 0.8932935 0.8845984
## 2577 0.8657143 0.8709579 0.8816392 0.8845984
## 2578 0.8880126 0.8709579 0.8932935 0.8845984
## 2579 0.8967552 0.8709579 0.8932935 0.8845984
## 2580 0.9057377 0.9512195 0.8816392 0.8845984
## 2581 0.8967552 0.8709579 0.8932935 0.8845984
## 2582 0.8348348 0.8709579 0.8932935 0.8845984
## 2583 0.8657143 0.8709579 0.8932935 0.8845984
## 2584 0.9075630 0.8709579 0.8816392 0.8996840
## 2585 0.8880126 0.8709579 0.8932935 0.8845984
## 2586 0.8880126 0.8709579 0.8816392 0.8845984
## 2587 0.9075630 0.8709579 0.8932935 0.8845984
## 2588 0.8657143 0.8709579 0.8816392 0.8845984
## 2589 0.8880126 0.8709579 0.8816392 0.8996840
## 2590 0.8967552 0.8709579 0.8816392 0.8996840
## 2591 0.9075630 0.9512195 0.8816392 0.8845984
## 2592 0.8657143 0.8709579 0.8816392 0.8845984
## 2593 0.8657143 0.8709579 0.8932935 0.8845984
## 2594 0.8657143 0.9512195 0.8816392 0.8996840
## 2595 0.8657143 0.8709579 0.8932935 0.8845984
## 2596 0.8657143 0.8709579 0.8816392 0.8845984
## 2597 0.8657143 0.8709579 0.8816392 0.8845984
## 2598 0.8880126 0.8709579 0.8816392 0.8845984
## 2599 0.9156328 0.9512195 0.8816392 0.8845984
## 2600 0.9156328 0.8709579 0.8816392 0.8845984
## 2601 0.8880126 0.8709579 0.8816392 0.8996840
## 2602 0.8657143 0.9512195 0.8816392 0.8996840
## 2603 0.8657143 0.8709579 0.8932935 0.8845984
## 2604 0.8967552 0.8709579 0.8932935 0.8845984
## 2605 0.9156328 0.9512195 0.8932935 0.8845984
## 2606 0.8967552 0.8709579 0.8816392 0.8845984
## 2607 0.8657143 0.8709579 0.8816392 0.8845984
## 2608 0.9156328 0.9512195 0.8932935 0.8845984
## 2609 0.8880126 0.8709579 0.8932935 0.8845984
## 2610 0.8657143 0.8709579 0.8816392 0.8845984
## 2611 0.8967552 0.8709579 0.8816392 0.8845984
## 2612 0.8880126 0.8709579 0.8932935 0.8845984
## 2613 0.8880126 0.8709579 0.8816392 0.8996840
## 2614 0.8657143 0.8709579 0.8932935 0.8845984
## 2615 0.8657143 0.8709579 0.8932935 0.8845984
## 2616 0.8657143 0.8709579 0.8932935 0.8845984
## 2617 0.8880126 0.8709579 0.8816392 0.8845984
## 2618 0.8657143 0.8709579 0.8816392 0.8845984
## 2619 0.8967552 0.8709579 0.8816392 0.8845984
## 2620 0.8657143 0.8709579 0.8932935 0.8845984
## 2621 0.9075630 0.8709579 0.8816392 0.8845984
## 2622 0.8967552 0.8709579 0.8816392 0.8845984
## 2623 0.8657143 0.9512195 0.8932935 0.8845984
## 2624 0.8880126 0.8709579 0.8816392 0.8845984
## 2625 0.8657143 0.8709579 0.8816392 0.8845984
## 2626 0.8657143 0.8709579 0.8932935 0.8845984
## 2627 0.9075630 0.9512195 0.8932935 0.8845984
## 2628 0.8657143 0.8709579 0.8816392 0.8996840
## 2629 0.9075630 0.9512195 0.8816392 0.8845984
## 2630 0.8967552 0.8709579 0.8816392 0.8996840
## 2631 0.8657143 0.8709579 0.8816392 0.8845984
## 2632 0.8967552 0.8709579 0.8816392 0.8996840
## 2633 0.9156328 0.8709579 0.8932935 0.8996840
## 2634 0.8657143 0.8709579 0.8932935 0.8845984
## 2635 0.9156328 0.9512195 0.8816392 0.8996840
## 2636 0.8657143 0.9512195 0.8932935 0.8845984
## 2637 0.8880126 0.8709579 0.8816392 0.8996840
## 2638 0.8348348 0.9512195 0.8932935 0.8845984
## 2639 0.8657143 0.8709579 0.8816392 0.8845984
## 2640 0.8967552 0.8709579 0.8932935 0.8845984
## 2641 0.9057377 0.9512195 0.8932935 0.8996840
## 2642 0.8967552 0.9512195 0.8932935 0.8845984
## 2643 0.9156328 0.8709579 0.8932935 0.8845984
## 2644 0.8657143 0.8709579 0.8816392 0.8845984
## 2645 0.8967552 0.8709579 0.8816392 0.8996840
## 2646 0.8880126 0.9512195 0.8932935 0.8845984
## 2647 0.8657143 0.8709579 0.8932935 0.8996840
## 2648 0.9075630 0.8709579 0.8816392 0.8845984
## 2649 0.8880126 0.8709579 0.8816392 0.8845984
## 2650 0.8657143 0.8709579 0.8816392 0.8845984
## 2651 0.8880126 0.8709579 0.8932935 0.8996840
## 2652 0.8657143 0.8709579 0.8816392 0.8845984
## 2653 0.8880126 0.8709579 0.8932935 0.8845984
## 2654 0.9156328 0.8709579 0.8816392 0.8996840
## 2655 0.9057377 0.8709579 0.8932935 0.8845984
## 2656 0.8348348 0.9512195 0.8932935 0.8845984
## 2657 0.9156328 0.8709579 0.8816392 0.8845984
## 2658 0.8657143 0.8709579 0.8932935 0.8845984
## 2659 0.8967552 0.8709579 0.8816392 0.8996840
## 2660 0.9156328 0.8709579 0.8816392 0.8845984
## 2661 0.8880126 0.8709579 0.9032258 0.9032258
## 2662 0.8657143 0.8709579 0.8816392 0.8845984
## 2663 0.9075630 0.9512195 0.8816392 0.8845984
## 2664 0.8657143 0.8709579 0.8816392 0.8845984
## 2665 0.8880126 0.8709579 0.8932935 0.8845984
## 2666 0.9075630 0.8709579 0.8816392 0.8845984
## 2667 0.8967552 0.8709579 0.8932935 0.8845984
## 2668 0.9075630 0.8709579 0.8816392 0.8845984
## 2669 0.9075630 0.9512195 0.8932935 0.8845984
## 2670 0.8657143 0.8709579 0.8816392 0.8845984
## 2671 0.9075630 0.8709579 0.8932935 0.8845984
## 2672 0.8657143 0.8709579 0.8816392 0.8845984
## 2673 0.8657143 0.8709579 0.8816392 0.8845984
## 2674 0.9156328 0.8709579 0.8932935 0.8996840
## 2675 0.8657143 0.8709579 0.8816392 0.8845984
## 2676 0.8657143 0.8709579 0.8816392 0.8845984
## 2677 0.9156328 0.8709579 0.8816392 0.8845984
## 2678 0.8967552 0.9512195 0.8816392 0.8845984
## 2679 0.8348348 0.9512195 0.8816392 0.8845984
## 2680 0.8880126 0.8709579 0.8932935 0.8845984
## 2681 0.9075630 0.8709579 0.8932935 0.8845984
## 2682 0.9156328 0.8709579 0.8816392 0.8845984
## 2683 0.9156328 0.8709579 0.8816392 0.8996840
## 2684 0.8967552 0.8709579 0.8816392 0.8845984
## 2685 0.9156328 0.9512195 0.8816392 0.8845984
## 2686 0.8657143 0.8709579 0.8816392 0.8845984
## 2687 0.8880126 0.8709579 0.8816392 0.8996840
## 2688 0.8657143 0.9512195 0.8932935 0.8845984
## 2689 0.8657143 0.8709579 0.8816392 0.8845984
## 2690 0.8657143 0.8709579 0.8932935 0.8996840
## 2691 0.9057377 0.9512195 0.8932935 0.8845984
## 2692 0.8967552 0.8709579 0.8816392 0.8845984
## 2693 0.8348348 0.9512195 0.8816392 0.8845984
## 2694 0.8657143 0.8709579 0.8816392 0.8845984
## 2695 0.9156328 0.9512195 0.8932935 0.8845984
## 2696 0.9075630 0.9512195 0.8816392 0.8845984
## 2697 0.8657143 0.8709579 0.8816392 0.8845984
## 2698 0.8880126 0.8709579 0.8932935 0.8845984
## 2699 0.8348348 0.8709579 0.8816392 0.8845984
## 2700 0.8880126 0.8709579 0.8932935 0.8845984
## 2701 0.9156328 0.8709579 0.8816392 0.8845984
## 2702 0.9057377 0.8709579 0.8932935 0.8845984
## 2703 0.8967552 0.8709579 0.8816392 0.8845984
## 2704 0.8880126 0.8709579 0.8932935 0.8996840
## 2705 0.8967552 0.9512195 0.8932935 0.8845984
## 2706 0.8348348 0.8709579 0.8816392 0.8845984
## 2707 0.8880126 0.8709579 0.8932935 0.8845984
## 2708 0.9075630 0.9512195 0.8932935 0.8845984
## 2709 0.8657143 0.8709579 0.8932935 0.8845984
## 2710 0.8880126 0.8709579 0.8932935 0.8845984
## 2711 0.9156328 0.8709579 0.8816392 0.8845984
## 2712 0.8348348 0.8709579 0.8816392 0.8996840
## 2713 0.8880126 0.8709579 0.8816392 0.8845984
## 2714 0.9075630 0.9512195 0.8816392 0.8845984
## 2715 0.8657143 0.8709579 0.8816392 0.8845984
## 2716 0.8348348 0.9512195 0.8816392 0.8845984
## 2717 0.9057377 0.8709579 0.8932935 0.8845984
## 2718 0.8880126 0.8709579 0.8932935 0.8845984
## 2719 0.8657143 0.8709579 0.8816392 0.8845984
## 2720 0.9156328 0.8709579 0.8932935 0.8996840
## 2721 0.9156328 0.8709579 0.8932935 0.8996840
## 2722 0.8657143 0.8709579 0.8932935 0.8845984
## 2723 0.8657143 0.8709579 0.8816392 0.8845984
## 2724 0.8657143 0.9512195 0.8816392 0.8996840
## 2725 0.8657143 0.9512195 0.8816392 0.8845984
## 2726 0.9156328 0.8709579 0.8816392 0.8996840
## 2727 0.9057377 0.9512195 0.8816392 0.8845984
## 2728 0.9075630 0.8709579 0.8816392 0.8845984
## 2729 0.9156328 0.8709579 0.8932935 0.8845984
## 2730 0.8657143 0.9512195 0.8816392 0.8845984
## 2731 0.8880126 0.8709579 0.8816392 0.8996840
## 2732 0.9057377 0.8709579 0.8816392 0.8845984
## 2733 0.8657143 0.8709579 0.8816392 0.8845984
## 2734 0.8880126 0.8709579 0.8816392 0.8845984
## 2735 0.8657143 0.8709579 0.8932935 0.8996840
## 2736 0.8657143 0.9512195 0.9032258 0.9032258
## 2737 0.8880126 0.8709579 0.8932935 0.8845984
## 2738 0.8657143 0.8709579 0.9032258 0.9032258
## 2739 0.8657143 0.8709579 0.8816392 0.8845984
## 2740 0.8967552 0.8709579 0.8932935 0.8845984
## 2741 0.8880126 0.8709579 0.8932935 0.8845984
## 2742 0.9075630 0.8709579 0.8932935 0.8845984
## 2743 0.8880126 0.8709579 0.8816392 0.8845984
## 2744 0.8880126 0.8709579 0.8816392 0.8845984
## 2745 0.8967552 0.8709579 0.8816392 0.8996840
## 2746 0.8657143 0.8709579 0.8932935 0.8845984
## 2747 0.8880126 0.8709579 0.8932935 0.8845984
## 2748 0.8657143 0.8709579 0.8932935 0.8845984
## 2749 0.8880126 0.8709579 0.8932935 0.8845984
## 2750 0.9156328 0.8709579 0.8932935 0.8845984
## 2751 0.8880126 0.9512195 0.8816392 0.8845984
## 2752 0.8657143 0.8709579 0.8816392 0.8996840
## 2753 0.9057377 0.9512195 0.8932935 0.8845984
## 2754 0.8967552 0.8709579 0.8932935 0.8845984
## 2755 0.8657143 0.8709579 0.8932935 0.8845984
## 2756 0.9075630 0.9512195 0.8816392 0.8996840
## 2757 0.9075630 0.8709579 0.8816392 0.8845984
## 2758 0.8657143 0.8709579 0.8932935 0.8996840
## 2759 0.8880126 0.9512195 0.8932935 0.8845984
## 2760 0.8967552 0.8709579 0.8932935 0.8845984
## 2761 0.8657143 0.8709579 0.8816392 0.8996840
## 2762 0.9156328 0.8709579 0.8932935 0.8845984
## 2763 0.8880126 0.9512195 0.8932935 0.8845984
## 2764 0.8657143 0.9512195 0.8932935 0.8845984
## 2765 0.8657143 0.8709579 0.8816392 0.8996840
## 2766 0.8880126 0.8709579 0.8816392 0.8845984
## 2767 0.8657143 0.8709579 0.8932935 0.8845984
## 2768 0.9156328 0.8709579 0.8816392 0.8996840
## 2769 0.8657143 0.9512195 0.8816392 0.8845984
## 2770 0.8880126 0.8709579 0.8816392 0.8845984
## 2771 0.8880126 0.8709579 0.8932935 0.8845984
## 2772 0.9156328 0.8709579 0.8816392 0.8845984
## 2773 0.8657143 0.9512195 0.8932935 0.8845984
## 2774 0.8880126 0.8709579 0.8816392 0.8845984
## 2775 0.8657143 0.9512195 0.9032258 0.9032258
## 2776 0.8657143 0.8709579 0.8816392 0.8996840
## 2777 0.9156328 0.9512195 0.8816392 0.8996840
## 2778 0.8657143 0.9512195 0.8932935 0.8845984
## 2779 0.9057377 0.9512195 0.8932935 0.8845984
## 2780 0.8967552 0.8709579 0.8816392 0.8845984
## 2781 0.8657143 0.9512195 0.8932935 0.8845984
## 2782 0.8880126 0.8709579 0.8932935 0.8996840
## 2783 0.9075630 0.9512195 0.8816392 0.8845984
## 2784 0.9156328 0.8709579 0.8932935 0.8845984
## 2785 0.9156328 0.8709579 0.8816392 0.8845984
## 2786 0.8967552 0.8709579 0.8816392 0.8845984
## 2787 0.8657143 0.8709579 0.8816392 0.8996840
## 2788 0.8657143 0.8709579 0.8932935 0.8845984
## 2789 0.8657143 0.8709579 0.8816392 0.8845984
## 2790 0.8657143 0.8709579 0.8816392 0.8845984
## 2791 0.8657143 0.8709579 0.8932935 0.8845984
## 2792 0.8880126 0.8709579 0.8816392 0.8845984
## 2793 0.8657143 0.8709579 0.8816392 0.8845984
## 2794 0.8880126 0.9512195 0.8816392 0.8845984
## 2795 0.8880126 0.9512195 0.8816392 0.8845984
## 2796 0.8657143 0.8709579 0.8816392 0.8845984
## 2797 0.8880126 0.8709579 0.8932935 0.8845984
## 2798 0.9075630 0.8709579 0.8932935 0.8845984
## 2799 0.8880126 0.8709579 0.8932935 0.8845984
## 2800 0.8657143 0.8709579 0.8816392 0.8845984
## 2801 0.9156328 0.8709579 0.8816392 0.8845984
## 2802 0.9156328 0.8709579 0.8816392 0.8845984
## 2803 0.8880126 0.9512195 0.8816392 0.8845984
## 2804 0.9156328 0.8709579 0.8932935 0.8845984
## 2805 0.9075630 0.8709579 0.8816392 0.8845984
## 2806 0.8657143 0.9512195 0.8816392 0.8845984
## 2807 0.8348348 0.8709579 0.8816392 0.8845984
## 2808 0.8880126 0.8709579 0.8932935 0.8845984
## 2809 0.9156328 0.8709579 0.8816392 0.8845984
## 2810 0.8967552 0.8709579 0.8816392 0.8996840
## 2811 0.8967552 0.9512195 0.8932935 0.8845984
## 2812 0.8657143 0.8709579 0.8816392 0.8845984
## 2813 0.8657143 0.8709579 0.8816392 0.8845984
## 2814 0.8880126 0.9512195 0.8816392 0.8845984
## 2815 0.9075630 0.9512195 0.8816392 0.8845984
## 2816 0.8657143 0.8709579 0.8816392 0.8845984
## 2817 0.9075630 0.9512195 0.8932935 0.8845984
## 2818 0.8880126 0.9512195 0.8932935 0.8845984
## 2819 0.8880126 0.8709579 0.8932935 0.8845984
## 2820 0.8348348 0.9512195 0.8932935 0.8845984
## 2821 0.8880126 0.8709579 0.8816392 0.8845984
## 2822 0.8657143 0.8709579 0.8816392 0.8845984
## 2823 0.8657143 0.8709579 0.8932935 0.8845984
## 2824 0.8967552 0.8709579 0.8932935 0.8845984
## 2825 0.8657143 0.9512195 0.8816392 0.8845984
## 2826 0.9156328 0.8709579 0.9032258 0.9032258
## 2827 0.8657143 0.8709579 0.8932935 0.8845984
## 2828 0.9156328 0.9512195 0.8932935 0.8845984
## 2829 0.9075630 0.9512195 0.8816392 0.8845984
## 2830 0.8657143 0.8709579 0.8816392 0.8845984
## 2831 0.8880126 0.9512195 0.8932935 0.8845984
## 2832 0.9156328 0.8709579 0.8932935 0.8845984
## 2833 0.8657143 0.8709579 0.8816392 0.8845984
## 2834 0.8967552 0.8709579 0.8816392 0.8996840
## 2835 0.8657143 0.8709579 0.8816392 0.8996840
## 2836 0.9057377 0.8709579 0.8816392 0.8845984
## 2837 0.8880126 0.9512195 0.8932935 0.8845984
## 2838 0.8657143 0.8709579 0.8816392 0.8845984
## 2839 0.8967552 0.8709579 0.8816392 0.8845984
## 2840 0.9075630 0.8709579 0.8932935 0.8845984
## 2841 0.9156328 0.8709579 0.8816392 0.8845984
## 2842 0.8967552 0.8709579 0.8932935 0.8845984
## 2843 0.8880126 0.8709579 0.8816392 0.8845984
## 2844 0.9075630 0.8709579 0.8932935 0.8845984
## 2845 0.8657143 0.8709579 0.8816392 0.8845984
## 2846 0.9156328 0.8709579 0.8932935 0.8845984
## 2847 0.9057377 0.8709579 0.8816392 0.8845984
## 2848 0.8657143 0.9512195 0.8932935 0.8845984
## 2849 0.8657143 0.9512195 0.8816392 0.8845984
## 2850 0.8880126 0.8709579 0.8816392 0.8845984
## 2851 0.8657143 0.8709579 0.8816392 0.8845984
## 2852 0.9156328 0.9512195 0.8932935 0.8996840
## 2853 0.9057377 0.8709579 0.8932935 0.8845984
## 2854 0.9057377 0.8709579 0.8932935 0.8845984
## 2855 0.9156328 0.8709579 0.8816392 0.8845984
## 2856 0.8880126 0.8709579 0.8816392 0.8845984
## 2857 0.8657143 0.8709579 0.8932935 0.8845984
## 2858 0.9156328 0.8709579 0.8932935 0.8845984
## 2859 0.8880126 0.9512195 0.8816392 0.8996840
## 2860 0.9057377 0.9512195 0.8816392 0.8845984
## 2861 0.9075630 0.8709579 0.8816392 0.8845984
## 2862 0.9156328 0.8709579 0.8932935 0.8845984
## 2863 0.9156328 0.9512195 0.8932935 0.8845984
## 2864 0.8967552 0.8709579 0.8816392 0.8845984
## 2865 0.8657143 0.8709579 0.8816392 0.8996840
## 2866 0.9075630 0.8709579 0.8816392 0.8845984
## 2867 0.8880126 0.8709579 0.8816392 0.8845984
## 2868 0.9057377 0.9512195 0.8932935 0.8996840
## 2869 0.9075630 0.9512195 0.8816392 0.8996840
## 2870 0.9057377 0.8709579 0.8816392 0.8996840
## 2871 0.8967552 0.9512195 0.8932935 0.8845984
## 2872 0.9075630 0.8709579 0.8932935 0.8845984
## 2873 0.8880126 0.8709579 0.8816392 0.8845984
## 2874 0.8657143 0.8709579 0.8816392 0.8845984
## 2875 0.8967552 0.8709579 0.8932935 0.8845984
## 2876 0.8348348 0.8709579 0.8932935 0.8845984
## 2877 0.8967552 0.8709579 0.8816392 0.8996840
## 2878 0.8967552 0.8709579 0.8816392 0.8996840
## 2879 0.8967552 0.8709579 0.9032258 0.9032258
## 2880 0.9075630 0.9512195 0.8932935 0.8845984
## 2881 0.9156328 0.8709579 0.8932935 0.8845984
## 2882 0.8657143 0.9512195 0.8816392 0.8845984
## 2883 0.9057377 0.8709579 0.8932935 0.8845984
## 2884 0.8657143 0.8709579 0.8932935 0.8845984
## 2885 0.8880126 0.8709579 0.8932935 0.8845984
## 2886 0.8967552 0.8709579 0.8816392 0.8845984
## 2887 0.8657143 0.8709579 0.8816392 0.8845984
## 2888 0.9156328 0.8709579 0.8816392 0.8845984
## 2889 0.8657143 0.8709579 0.9032258 0.9032258
## 2890 0.8657143 0.8709579 0.8932935 0.8996840
## 2891 0.9057377 0.8709579 0.8932935 0.8845984
## 2892 0.8880126 0.9512195 0.8816392 0.8845984
## 2893 0.8657143 0.9512195 0.8816392 0.8845984
## 2894 0.8880126 0.8709579 0.8816392 0.8845984
## 2895 0.8880126 0.8709579 0.8816392 0.8845984
## 2896 0.9156328 0.8709579 0.8932935 0.8845984
## 2897 0.8657143 0.9512195 0.8816392 0.8845984
## 2898 0.8880126 0.8709579 0.8816392 0.8845984
## 2899 0.8880126 0.9512195 0.8816392 0.8996840
## 2900 0.8880126 0.8709579 0.8932935 0.8845984
## 2901 0.8967552 0.8709579 0.8816392 0.8845984
## 2902 0.9057377 0.9512195 0.8816392 0.8845984
## 2903 0.9075630 0.8709579 0.8816392 0.8996840
## 2904 0.8880126 0.8709579 0.8816392 0.8845984
## 2905 0.8880126 0.8709579 0.8816392 0.8996840
## 2906 0.8657143 0.9512195 0.8816392 0.8845984
## 2907 0.8657143 0.8709579 0.8816392 0.8845984
## 2908 0.8657143 0.8709579 0.8932935 0.8845984
## 2909 0.9156328 0.8709579 0.8932935 0.8845984
## 2910 0.9156328 0.8709579 0.8816392 0.8845984
## 2911 0.8880126 0.9512195 0.8816392 0.8845984
## 2912 0.9057377 0.9512195 0.8932935 0.8996840
## 2913 0.9075630 0.8709579 0.8816392 0.8845984
## 2914 0.9156328 0.8709579 0.8816392 0.8845984
## 2915 0.8967552 0.8709579 0.8932935 0.8845984
## 2916 0.8880126 0.8709579 0.8932935 0.8845984
## 2917 0.8348348 0.9512195 0.8932935 0.8845984
## 2918 0.9156328 0.8709579 0.8816392 0.8845984
## 2919 0.9075630 0.9512195 0.8816392 0.8845984
## 2920 0.8880126 0.8709579 0.8932935 0.8845984
## 2921 0.8880126 0.9512195 0.8816392 0.8845984
## 2922 0.9057377 0.8709579 0.8816392 0.8845984
## 2923 0.8967552 0.8709579 0.8932935 0.8845984
## 2924 0.8657143 0.8709579 0.8816392 0.8845984
## 2925 0.8880126 0.8709579 0.8932935 0.8845984
## 2926 0.8657143 0.9512195 0.8932935 0.8845984
## 2927 0.9156328 0.9512195 0.8932935 0.8845984
## 2928 0.9057377 0.9512195 0.8932935 0.8845984
## 2929 0.8657143 0.8709579 0.8932935 0.8845984
## 2930 0.8880126 0.8709579 0.8932935 0.8845984
## 2931 0.9075630 0.9512195 0.8932935 0.8996840
## 2932 0.9156328 0.8709579 0.8816392 0.8845984
## 2933 0.8880126 0.8709579 0.8816392 0.8845984
## 2934 0.8967552 0.8709579 0.8932935 0.8845984
## 2935 0.9156328 0.9512195 0.8816392 0.8845984
## 2936 0.8657143 0.8709579 0.8816392 0.8845984
## 2937 0.8657143 0.8709579 0.8932935 0.8845984
## 2938 0.9075630 0.8709579 0.8816392 0.8845984
## 2939 0.9075630 0.8709579 0.8932935 0.8845984
## 2940 0.8657143 0.8709579 0.8816392 0.8845984
## 2941 0.8657143 0.8709579 0.8816392 0.8845984
## 2942 0.8880126 0.8709579 0.8932935 0.8845984
## 2943 0.9075630 0.8709579 0.8816392 0.8845984
## 2944 0.8880126 0.8709579 0.8816392 0.8996840
## 2945 0.9057377 0.9512195 0.8816392 0.8845984
## 2946 0.8657143 0.8709579 0.8932935 0.8845984
## 2947 0.8880126 0.8709579 0.8816392 0.8845984
## 2948 0.8657143 0.8709579 0.8816392 0.8845984
## 2949 0.9156328 0.9512195 0.8932935 0.8845984
## 2950 0.9057377 0.8709579 0.8816392 0.8845984
## 2951 0.8967552 0.8709579 0.8932935 0.8845984
## 2952 0.8657143 0.8709579 0.8932935 0.8845984
## 2953 0.8880126 0.8709579 0.8816392 0.8845984
## 2954 0.8657143 0.9512195 0.8816392 0.8845984
## 2955 0.9075630 0.9512195 0.8816392 0.8845984
## 2956 0.8348348 0.8709579 0.8932935 0.8845984
## 2957 0.9156328 0.8709579 0.8816392 0.8845984
## 2958 0.8657143 0.8709579 0.8932935 0.8845984
## 2959 0.8880126 0.8709579 0.8816392 0.8996840
## 2960 0.8967552 0.8709579 0.8816392 0.8845984
## 2961 0.8657143 0.8709579 0.8932935 0.8845984
## 2962 0.8967552 0.9512195 0.8816392 0.8845984
## 2963 0.8657143 0.8709579 0.8932935 0.8845984
## 2964 0.8657143 0.8709579 0.8816392 0.8845984
## 2965 0.8880126 0.9512195 0.8932935 0.8845984
## 2966 0.8880126 0.8709579 0.8816392 0.8845984
## 2967 0.9075630 0.9512195 0.8932935 0.8845984
## 2968 0.8657143 0.8709579 0.8932935 0.8845984
## 2969 0.8880126 0.9512195 0.8816392 0.8845984
## 2970 0.9057377 0.8709579 0.8932935 0.8845984
## 2971 0.8657143 0.8709579 0.8932935 0.8845984
## 2972 0.9156328 0.8709579 0.8816392 0.8996840
## 2973 0.8657143 0.8709579 0.8932935 0.8845984
## 2974 0.9075630 0.8709579 0.8816392 0.8996840
## 2975 0.8880126 0.8709579 0.8816392 0.8996840
## 2976 0.8657143 0.8709579 0.8816392 0.8845984
## 2977 0.8880126 0.8709579 0.8816392 0.8996840
## 2978 0.9156328 0.9512195 0.8932935 0.8845984
## 2979 0.8657143 0.8709579 0.8932935 0.8845984
## 2980 0.9156328 0.9512195 0.8932935 0.8845984
## 2981 0.8880126 0.9512195 0.8932935 0.8845984
## 2982 0.9156328 0.9512195 0.8816392 0.8845984
## 2983 0.8657143 0.9512195 0.9032258 0.9032258
## 2984 0.8657143 0.8709579 0.8816392 0.8845984
## 2985 0.8657143 0.8709579 0.8932935 0.8845984
## 2986 0.8967552 0.8709579 0.8932935 0.8845984
## 2987 0.8348348 0.9512195 0.8932935 0.8845984
## 2988 0.8880126 0.8709579 0.8932935 0.8845984
## 2989 0.8880126 0.8709579 0.8932935 0.8845984
## 2990 0.9156328 0.8709579 0.8932935 0.8996840
## 2991 0.9156328 0.8709579 0.8816392 0.8845984
## 2992 0.8657143 0.9512195 0.8816392 0.8845984
## 2993 0.8967552 0.8709579 0.8932935 0.8845984
## 2994 0.8657143 0.8709579 0.8816392 0.8845984
## 2995 0.8967552 0.8709579 0.8816392 0.8845984
## 2996 0.8880126 0.8709579 0.8816392 0.8845984
## 2997 0.8967552 0.9512195 0.8932935 0.8996840
## 2998 0.8657143 0.8709579 0.8816392 0.8845984
## 2999 0.9156328 0.9512195 0.8816392 0.8845984
## 3000 0.8967552 0.8709579 0.8816392 0.8845984
## 3001 0.8657143 0.9512195 0.8932935 0.8845984
## 3002 0.8967552 0.8709579 0.8816392 0.8845984
## 3003 0.8967552 0.8709579 0.8932935 0.8845984
## 3004 0.8880126 0.8709579 0.8816392 0.8845984
## 3005 0.9075630 0.8709579 0.8932935 0.8845984
## 3006 0.9156328 0.8709579 0.8816392 0.8845984
## 3007 0.8967552 0.9512195 0.8932935 0.8845984
## 3008 0.8880126 0.8709579 0.8932935 0.8845984
## 3009 0.8657143 0.8709579 0.8932935 0.8845984
## 3010 0.8657143 0.8709579 0.8932935 0.8996840
## 3011 0.8657143 0.8709579 0.8816392 0.8845984
## 3012 0.8880126 0.8709579 0.8932935 0.8845984
## 3013 0.8657143 0.8709579 0.8932935 0.8996840
## 3014 0.8880126 0.9512195 0.8932935 0.8845984
## 3015 0.8880126 0.9512195 0.8932935 0.8845984
## 3016 0.8967552 0.8709579 0.8816392 0.8996840
## 3017 0.9156328 0.8709579 0.8816392 0.8845984
## 3018 0.8657143 0.8709579 0.8816392 0.8845984
## 3019 0.8880126 0.9512195 0.8932935 0.8845984
## 3020 0.8880126 0.8709579 0.8932935 0.8996840
## 3021 0.9057377 0.8709579 0.8816392 0.8845984
## 3022 0.8967552 0.8709579 0.8816392 0.8845984
## 3023 0.8657143 0.8709579 0.8932935 0.8845984
## 3024 0.8657143 0.9512195 0.8932935 0.8845984
## 3025 0.9156328 0.8709579 0.8932935 0.8996840
## 3026 0.8880126 0.9512195 0.8932935 0.8845984
## 3027 0.8967552 0.8709579 0.8816392 0.8845984
## 3028 0.8880126 0.8709579 0.8932935 0.8845984
## 3029 0.8657143 0.8709579 0.8816392 0.8845984
## 3030 0.8880126 0.9512195 0.8816392 0.8845984
## 3031 0.8880126 0.8709579 0.8932935 0.8845984
## 3032 0.8657143 0.8709579 0.8932935 0.8845984
## 3033 0.9156328 0.8709579 0.8816392 0.8845984
## 3034 0.8967552 0.8709579 0.8932935 0.8845984
## 3035 0.9075630 0.9512195 0.8816392 0.8845984
## 3036 0.8657143 0.8709579 0.8932935 0.8996840
## 3037 0.8657143 0.8709579 0.8816392 0.8845984
## 3038 0.8657143 0.8709579 0.8932935 0.8845984
## 3039 0.8657143 0.9512195 0.8816392 0.8845984
## 3040 0.9156328 0.8709579 0.8932935 0.8845984
## 3041 0.8657143 0.8709579 0.8816392 0.8845984
## 3042 0.9156328 0.9512195 0.8816392 0.8845984
## 3043 0.9057377 0.9512195 0.8816392 0.8845984
## 3044 0.8657143 0.9512195 0.8816392 0.8845984
## 3045 0.9156328 0.8709579 0.8932935 0.8845984
## 3046 0.8880126 0.8709579 0.8932935 0.8845984
## 3047 0.9075630 0.9512195 0.8932935 0.8845984
## 3048 0.8967552 0.8709579 0.8932935 0.8845984
## 3049 0.8657143 0.9512195 0.8932935 0.8845984
## 3050 0.8880126 0.8709579 0.8816392 0.8845984
## 3051 0.8657143 0.8709579 0.8816392 0.8845984
## 3052 0.8880126 0.8709579 0.8816392 0.8996840
## 3053 0.8657143 0.9512195 0.8816392 0.8996840
## 3054 0.9156328 0.9512195 0.8932935 0.8845984
## 3055 0.8657143 0.9512195 0.8932935 0.8845984
## 3056 0.8657143 0.8709579 0.8932935 0.8845984
## 3057 0.9075630 0.8709579 0.8932935 0.8845984
## 3058 0.8657143 0.8709579 0.8932935 0.8845984
## 3059 0.9156328 0.9512195 0.8932935 0.8845984
## 3060 0.8880126 0.8709579 0.8932935 0.8845984
## 3061 0.8657143 0.8709579 0.8816392 0.8996840
## 3062 0.8657143 0.9512195 0.8932935 0.8845984
## 3063 0.8967552 0.8709579 0.9032258 0.9032258
## 3064 0.8880126 0.8709579 0.8816392 0.8845984
## 3065 0.8657143 0.8709579 0.8816392 0.8996840
## 3066 0.8657143 0.8709579 0.8816392 0.8845984
## 3067 0.9156328 0.9512195 0.8816392 0.8996840
## 3068 0.9156328 0.8709579 0.8932935 0.8996840
## 3069 0.8348348 0.8709579 0.8816392 0.8845984
## 3070 0.9057377 0.8709579 0.8816392 0.8845984
## 3071 0.9156328 0.9512195 0.8816392 0.8845984
## 3072 0.8880126 0.9512195 0.8932935 0.8845984
## 3073 0.8967552 0.8709579 0.8816392 0.8845984
## 3074 0.8657143 0.8709579 0.8816392 0.8845984
## 3075 0.8657143 0.8709579 0.8816392 0.8845984
## 3076 0.8657143 0.8709579 0.8932935 0.8845984
## 3077 0.8657143 0.9512195 0.8816392 0.8845984
## 3078 0.8657143 0.8709579 0.8816392 0.8845984
## 3079 0.8657143 0.8709579 0.8816392 0.8845984
## 3080 0.8657143 0.9512195 0.8816392 0.8996840
## 3081 0.9057377 0.8709579 0.8932935 0.8845984
## 3082 0.8657143 0.8709579 0.8932935 0.8845984
## 3083 0.9156328 0.8709579 0.8932935 0.8845984
## 3084 0.8657143 0.8709579 0.8932935 0.8845984
## 3085 0.8657143 0.9512195 0.8932935 0.8996840
## 3086 0.8657143 0.8709579 0.8816392 0.8845984
## 3087 0.9075630 0.9512195 0.8816392 0.8845984
## 3088 0.9057377 0.8709579 0.8816392 0.8845984
## 3089 0.8657143 0.8709579 0.8932935 0.8845984
## 3090 0.8880126 0.9512195 0.8932935 0.8845984
## 3091 0.8657143 0.8709579 0.8932935 0.8845984
## 3092 0.8657143 0.8709579 0.8816392 0.8845984
## 3093 0.9156328 0.8709579 0.8816392 0.8845984
## 3094 0.8967552 0.8709579 0.8932935 0.8845984
## 3095 0.8348348 0.9512195 0.8932935 0.8996840
## 3096 0.8880126 0.9512195 0.8816392 0.8845984
## 3097 0.9156328 0.8709579 0.8932935 0.8845984
## 3098 0.8967552 0.8709579 0.8816392 0.8845984
## 3099 0.8880126 0.8709579 0.8932935 0.8845984
## 3100 0.8880126 0.9512195 0.8816392 0.8845984
## 3101 0.8657143 0.8709579 0.8816392 0.8845984
## 3102 0.8967552 0.9512195 0.8932935 0.8845984
## 3103 0.9075630 0.9512195 0.8932935 0.8845984
## 3104 0.8348348 0.8709579 0.8932935 0.8845984
## 3105 0.8657143 0.8709579 0.8816392 0.8845984
## 3106 0.9156328 0.8709579 0.8932935 0.8845984
## 3107 0.8657143 0.8709579 0.8816392 0.8996840
## 3108 0.9156328 0.8709579 0.8816392 0.8845984
## 3109 0.8657143 0.8709579 0.8816392 0.8845984
## 3110 0.8880126 0.8709579 0.8816392 0.8845984
## 3111 0.8880126 0.8709579 0.8816392 0.8845984
## 3112 0.8880126 0.8709579 0.8816392 0.8845984
## 3113 0.8880126 0.8709579 0.8932935 0.8845984
## 3114 0.9075630 0.8709579 0.8816392 0.8845984
## 3115 0.9075630 0.9512195 0.8816392 0.8845984
## 3116 0.9075630 0.9512195 0.8932935 0.8845984
## 3117 0.9156328 0.8709579 0.8932935 0.8845984
## 3118 0.8967552 0.8709579 0.8932935 0.8996840
## 3119 0.9156328 0.8709579 0.8816392 0.8845984
## 3120 0.8880126 0.8709579 0.8932935 0.8845984
## 3121 0.8657143 0.8709579 0.8816392 0.8845984
## 3122 0.9075630 0.9512195 0.8816392 0.8845984
## 3123 0.8880126 0.8709579 0.8816392 0.8845984
## 3124 0.8880126 0.9512195 0.8932935 0.8845984
## 3125 0.8880126 0.9512195 0.8932935 0.8845984
## 3126 0.8880126 0.8709579 0.8816392 0.8845984
## 3127 0.9156328 0.8709579 0.8932935 0.8845984
## 3128 0.9075630 0.8709579 0.8932935 0.8845984
## 3129 0.8657143 0.8709579 0.8932935 0.8845984
## 3130 0.8348348 0.9512195 0.8816392 0.8845984
## 3131 0.9075630 0.8709579 0.8816392 0.8845984
## 3132 0.8880126 0.9512195 0.8932935 0.8845984
## 3133 0.8880126 0.8709579 0.8816392 0.8845984
## 3134 0.8657143 0.8709579 0.8816392 0.8845984
## 3135 0.9156328 0.9512195 0.8816392 0.8845984
## 3136 0.8880126 0.8709579 0.8816392 0.8845984
## 3137 0.8880126 0.9512195 0.8816392 0.8845984
## 3138 0.9156328 0.9512195 0.8932935 0.8845984
## 3139 0.9075630 0.9512195 0.8816392 0.8845984
## 3140 0.8880126 0.8709579 0.8816392 0.8845984
## 3141 0.9057377 0.9512195 0.9032258 0.9032258
## 3142 0.8348348 0.8709579 0.8932935 0.8845984
## 3143 0.8657143 0.8709579 0.8932935 0.8845984
## 3144 0.8657143 0.8709579 0.8816392 0.8845984
## 3145 0.8657143 0.9512195 0.8932935 0.8845984
## 3146 0.8880126 0.8709579 0.8816392 0.8845984
## 3147 0.8880126 0.8709579 0.8932935 0.8996840
## 3148 0.9156328 0.8709579 0.8816392 0.8996840
## 3149 0.8657143 0.8709579 0.8816392 0.8996840
## 3150 0.9156328 0.8709579 0.8932935 0.8845984
## 3151 0.9156328 0.8709579 0.8816392 0.8845984
## 3152 0.8657143 0.8709579 0.8816392 0.8845984
## 3153 0.8657143 0.8709579 0.8932935 0.8845984
## 3154 0.9075630 0.9512195 0.8932935 0.8845984
## 3155 0.8880126 0.8709579 0.8932935 0.8845984
## 3156 0.8657143 0.8709579 0.9032258 0.9032258
## 3157 0.8657143 0.8709579 0.8932935 0.8845984
## 3158 0.8657143 0.8709579 0.8816392 0.8996840
## 3159 0.9156328 0.8709579 0.8932935 0.8845984
## 3160 0.9057377 0.8709579 0.8932935 0.8845984
## 3161 0.9156328 0.8709579 0.8816392 0.8845984
## 3162 0.9156328 0.9512195 0.8816392 0.8845984
## 3163 0.8880126 0.8709579 0.8932935 0.8845984
## 3164 0.9156328 0.8709579 0.8816392 0.8845984
## 3165 0.8880126 0.8709579 0.8932935 0.8845984
## 3166 0.9075630 0.9512195 0.8932935 0.8845984
## 3167 0.8880126 0.8709579 0.8816392 0.8845984
## 3168 0.9075630 0.8709579 0.8816392 0.8845984
## 3169 0.8880126 0.8709579 0.9032258 0.9032258
## 3170 0.8348348 0.8709579 0.9032258 0.9032258
## 3171 0.8657143 0.8709579 0.8932935 0.8845984
## 3172 0.9075630 0.8709579 0.8932935 0.8845984
## 3173 0.8657143 0.8709579 0.8932935 0.8845984
## 3174 0.9057377 0.8709579 0.8816392 0.8996840
## 3175 0.8967552 0.8709579 0.8816392 0.8845984
## 3176 0.9075630 0.9512195 0.8932935 0.8845984
## 3177 0.8657143 0.9512195 0.8932935 0.8845984
## 3178 0.8967552 0.8709579 0.8816392 0.8996840
## 3179 0.9075630 0.8709579 0.8816392 0.8845984
## 3180 0.8657143 0.8709579 0.8932935 0.8845984
## 3181 0.9156328 0.8709579 0.8932935 0.8996840
## 3182 0.8657143 0.8709579 0.8816392 0.8845984
## 3183 0.9156328 0.9512195 0.8816392 0.8845984
## 3184 0.8880126 0.8709579 0.8816392 0.8996840
## 3185 0.8657143 0.9512195 0.8816392 0.8845984
## 3186 0.8657143 0.8709579 0.8816392 0.8996840
## 3187 0.8880126 0.8709579 0.8932935 0.8845984
## 3188 0.8880126 0.8709579 0.8816392 0.8996840
## 3189 0.8880126 0.8709579 0.8932935 0.8845984
## 3190 0.9057377 0.8709579 0.8932935 0.8845984
## 3191 0.8967552 0.8709579 0.8932935 0.8845984
## 3192 0.9156328 0.8709579 0.8816392 0.8845984
## 3193 0.8967552 0.8709579 0.8816392 0.8996840
## 3194 0.8880126 0.8709579 0.9032258 0.9032258
## 3195 0.8880126 0.8709579 0.8816392 0.8845984
## 3196 0.8348348 0.8709579 0.8932935 0.8845984
## 3197 0.8000000 0.9512195 0.8932935 0.8845984
## 3198 0.8967552 0.8709579 0.8816392 0.8845984
## 3199 0.8880126 0.8709579 0.8816392 0.8996840
## 3200 0.9156328 0.9512195 0.8816392 0.8845984
## 3201 0.8657143 0.8709579 0.8932935 0.8845984
## 3202 0.9057377 0.9512195 0.8932935 0.8845984
## 3203 0.8657143 0.8709579 0.8816392 0.8845984
## 3204 0.8657143 0.8709579 0.8932935 0.8845984
## 3205 0.9057377 0.9512195 0.8816392 0.8845984
## 3206 0.9156328 0.8709579 0.8816392 0.8845984
## 3207 0.8967552 0.8709579 0.8932935 0.8996840
## 3208 0.9156328 0.9512195 0.8932935 0.8845984
## 3209 0.9075630 0.8709579 0.8816392 0.8845984
## 3210 0.8657143 0.8709579 0.9032258 0.9032258
## 3211 0.8880126 0.8709579 0.8932935 0.8845984
## 3212 0.8657143 0.8709579 0.8932935 0.8845984
## 3213 0.8880126 0.8709579 0.8816392 0.8845984
## 3214 0.8967552 0.8709579 0.9032258 0.9032258
## 3215 0.8880126 0.8709579 0.8816392 0.8996840
## 3216 0.9057377 0.8709579 0.8816392 0.8845984
## 3217 0.9057377 0.8709579 0.8816392 0.8845984
## 3218 0.8967552 0.8709579 0.8816392 0.8845984
## 3219 0.9075630 0.9512195 0.8932935 0.8845984
## 3220 0.8657143 0.9512195 0.8816392 0.8845984
## 3221 0.8657143 0.8709579 0.8816392 0.8845984
## 3222 0.8657143 0.8709579 0.8932935 0.8845984
## 3223 0.8880126 0.9512195 0.8816392 0.8845984
## 3224 0.9057377 0.9512195 0.8816392 0.8996840
## 3225 0.8967552 0.9512195 0.8816392 0.8845984
## 3226 0.9075630 0.9512195 0.8816392 0.8845984
## 3227 0.8967552 0.8709579 0.8932935 0.8845984
## 3228 0.9156328 0.8709579 0.8932935 0.8845984
## 3229 0.8657143 0.9512195 0.8816392 0.8845984
## 3230 0.8880126 0.8709579 0.8816392 0.8845984
## 3231 0.8657143 0.8709579 0.8816392 0.8845984
## 3232 0.8967552 0.8709579 0.8816392 0.8996840
## 3233 0.9156328 0.8709579 0.8932935 0.8845984
## 3234 0.9156328 0.8709579 0.8816392 0.8845984
## 3235 0.9156328 0.8709579 0.8816392 0.8845984
## 3236 0.8967552 0.9512195 0.8816392 0.8845984
## 3237 0.8657143 0.8709579 0.8816392 0.8845984
## 3238 0.8880126 0.9512195 0.8816392 0.8996840
## 3239 0.8880126 0.9512195 0.8932935 0.8845984
## 3240 0.8967552 0.8709579 0.8932935 0.8845984
## 3241 0.8880126 0.9512195 0.8932935 0.8845984
## 3242 0.8880126 0.8709579 0.8932935 0.8996840
## 3243 0.8657143 0.8709579 0.8816392 0.8845984
## 3244 0.8657143 0.8709579 0.8816392 0.8845984
## 3245 0.9156328 0.8709579 0.8816392 0.8845984
## 3246 0.8657143 0.8709579 0.8816392 0.8845984
## 3247 0.8657143 0.8709579 0.8816392 0.8845984
## 3248 0.8657143 0.8709579 0.8932935 0.8845984
## 3249 0.8657143 0.8709579 0.8932935 0.8845984
## 3250 0.8880126 0.8709579 0.8932935 0.8845984
## 3251 0.8967552 0.8709579 0.8816392 0.8996840
## 3252 0.8880126 0.9512195 0.8816392 0.8845984
## 3253 0.9156328 0.9512195 0.8932935 0.8845984
## 3254 0.9057377 0.8709579 0.8816392 0.8845984
## 3255 0.8348348 0.8709579 0.8816392 0.8845984
## 3256 0.9156328 0.9512195 0.8816392 0.8845984
## 3257 0.8657143 0.9512195 0.8816392 0.8845984
## 3258 0.8348348 0.8709579 0.8816392 0.8845984
## 3259 0.8657143 0.9512195 0.8932935 0.8845984
## 3260 0.8967552 0.8709579 0.8932935 0.8845984
## 3261 0.8880126 0.8709579 0.8816392 0.8845984
## 3262 0.8880126 0.9512195 0.8816392 0.8845984
## 3263 0.9075630 0.8709579 0.8816392 0.8845984
## 3264 0.9156328 0.8709579 0.8816392 0.8845984
## 3265 0.8657143 0.9512195 0.8932935 0.8996840
## 3266 0.8657143 0.8709579 0.8932935 0.8845984
## 3267 0.8967552 0.8709579 0.8816392 0.8845984
## 3268 0.8657143 0.8709579 0.8816392 0.8845984
## 3269 0.8657143 0.8709579 0.8816392 0.8845984
## 3270 0.8880126 0.8709579 0.8816392 0.8845984
## 3271 0.8880126 0.8709579 0.8816392 0.8845984
## 3272 0.9075630 0.8709579 0.8816392 0.8845984
## 3273 0.9156328 0.8709579 0.8932935 0.8845984
## 3274 0.8657143 0.8709579 0.9032258 0.9032258
## 3275 0.8657143 0.8709579 0.8932935 0.8845984
## 3276 0.8657143 0.9512195 0.8816392 0.8845984
## 3277 0.8880126 0.8709579 0.8932935 0.8845984
## 3278 0.8880126 0.9512195 0.8932935 0.8845984
## 3279 0.9057377 0.9512195 0.8816392 0.8845984
## 3280 0.8657143 0.8709579 0.8816392 0.8845984
## 3281 0.9057377 0.8709579 0.8816392 0.8845984
## 3282 0.8657143 0.8709579 0.8816392 0.8845984
## 3283 0.9156328 0.8709579 0.8816392 0.8845984
## 3284 0.8657143 0.9512195 0.8932935 0.8996840
## 3285 0.8880126 0.8709579 0.8932935 0.8845984
## 3286 0.8657143 0.8709579 0.8816392 0.8845984
## 3287 0.8657143 0.8709579 0.8816392 0.8845984
## 3288 0.8880126 0.8709579 0.8932935 0.8845984
## 3289 0.9075630 0.9512195 0.8932935 0.8845984
## 3290 0.8657143 0.8709579 0.8816392 0.8845984
## 3291 0.8967552 0.8709579 0.8816392 0.8845984
## 3292 0.8880126 0.8709579 0.8932935 0.8845984
## 3293 0.8880126 0.8709579 0.8932935 0.8845984
## 3294 0.8967552 0.8709579 0.8932935 0.8845984
## 3295 0.8880126 0.8709579 0.8932935 0.8845984
## 3296 0.8880126 0.8709579 0.8932935 0.8845984
## 3297 0.9156328 0.8709579 0.8816392 0.8845984
## 3298 0.9075630 0.9512195 0.8932935 0.8845984
## 3299 0.8880126 0.8709579 0.8932935 0.8845984
## 3300 0.8657143 0.8709579 0.8816392 0.8845984
## 3301 0.8657143 0.8709579 0.8816392 0.8845984
## 3302 0.8967552 0.8709579 0.8932935 0.8996840
## 3303 0.8880126 0.8709579 0.8932935 0.8845984
## 3304 0.8880126 0.8709579 0.8816392 0.8845984
## 3305 0.8348348 0.8709579 0.8816392 0.8845984
## 3306 0.9156328 0.9512195 0.8932935 0.8845984
## 3307 0.9075630 0.9512195 0.8816392 0.8845984
## 3308 0.8967552 0.8709579 0.8816392 0.8845984
## 3309 0.9075630 0.8709579 0.8816392 0.8845984
## 3310 0.8880126 0.8709579 0.8816392 0.8845984
## 3311 0.8657143 0.8709579 0.8816392 0.8845984
## 3312 0.8657143 0.8709579 0.8816392 0.8845984
## 3313 0.8657143 0.8709579 0.9032258 0.9032258
## 3314 0.9156328 0.8709579 0.8816392 0.8845984
## 3315 0.8657143 0.8709579 0.8932935 0.8845984
## 3316 0.9156328 0.8709579 0.8816392 0.8845984
## 3317 0.8967552 0.8709579 0.8816392 0.8845984
## 3318 0.8880126 0.8709579 0.8932935 0.8845984
## 3319 0.8657143 0.9512195 0.8816392 0.8845984
## 3320 0.8880126 0.8709579 0.8932935 0.8845984
## 3321 0.8880126 0.8709579 0.9032258 0.9032258
## 3322 0.8880126 0.8709579 0.9032258 0.9032258
## 3323 0.9156328 0.8709579 0.8816392 0.8845984
## 3324 0.8657143 0.8709579 0.8932935 0.8845984
## 3325 0.8657143 0.9512195 0.8816392 0.8845984
## 3326 0.8880126 0.8709579 0.8932935 0.8845984
## 3327 0.8657143 0.8709579 0.8816392 0.8845984
## 3328 0.8880126 0.8709579 0.8932935 0.8845984
## 3329 0.8880126 0.8709579 0.8816392 0.8845984
## 3330 0.8880126 0.8709579 0.8816392 0.8845984
## 3331 0.8880126 0.8709579 0.8932935 0.8845984
## 3332 0.9057377 0.8709579 0.8932935 0.8845984
## 3333 0.9075630 0.9512195 0.8816392 0.8845984
## 3334 0.8657143 0.8709579 0.8816392 0.8996840
## 3335 0.8657143 0.8709579 0.8816392 0.8845984
## 3336 0.8348348 0.8709579 0.8932935 0.8845984
## 3337 0.9156328 0.8709579 0.9032258 0.9032258
## 3338 0.8880126 0.8709579 0.8816392 0.8845984
## 3339 0.8657143 0.9512195 0.8816392 0.8996840
## 3340 0.8967552 0.8709579 0.8816392 0.8996840
## 3341 0.8880126 0.8709579 0.8932935 0.8845984
## 3342 0.8880126 0.8709579 0.8816392 0.8845984
## 3343 0.8880126 0.9512195 0.8932935 0.8845984
## 3344 0.8657143 0.8709579 0.8816392 0.8845984
## 3345 0.9156328 0.9512195 0.8932935 0.8845984
## 3346 0.9156328 0.8709579 0.8816392 0.8845984
## 3347 0.9156328 0.8709579 0.8816392 0.8845984
## 3348 0.8967552 0.8709579 0.8816392 0.8845984
## 3349 0.8880126 0.8709579 0.8932935 0.8845984
## 3350 0.8657143 0.8709579 0.8816392 0.8845984
## 3351 0.8967552 0.8709579 0.8816392 0.8845984
## 3352 0.8880126 0.9512195 0.8932935 0.8996840
## 3353 0.8880126 0.8709579 0.8932935 0.8996840
## 3354 0.8967552 0.9512195 0.8932935 0.8845984
## 3355 0.9156328 0.8709579 0.8932935 0.8845984
## 3356 0.8880126 0.8709579 0.8932935 0.8845984
## 3357 0.8967552 0.8709579 0.8932935 0.8845984
## 3358 0.9156328 0.9512195 0.8932935 0.8845984
## 3359 0.9156328 0.9512195 0.8932935 0.8845984
## 3360 0.9057377 0.8709579 0.8932935 0.8996840
## 3361 0.8348348 0.9512195 0.8816392 0.8845984
## 3362 0.8657143 0.8709579 0.8816392 0.8845984
## 3363 0.8880126 0.8709579 0.8932935 0.8996840
## 3364 0.8348348 0.9512195 0.8932935 0.8845984
## 3365 0.8657143 0.8709579 0.8816392 0.8845984
## 3366 0.8657143 0.8709579 0.8816392 0.8845984
## 3367 0.8657143 0.8709579 0.8932935 0.8845984
## 3368 0.9156328 0.8709579 0.8816392 0.8845984
## 3369 0.8657143 0.8709579 0.8932935 0.8845984
## 3370 0.9156328 0.9512195 0.8932935 0.8996840
## 3371 0.9156328 0.9512195 0.8816392 0.8845984
## 3372 0.8657143 0.8709579 0.8816392 0.8845984
## 3373 0.9156328 0.8709579 0.8932935 0.8845984
## 3374 0.8657143 0.8709579 0.8932935 0.8845984
## 3375 0.8657143 0.8709579 0.9032258 0.9032258
## 3376 0.8657143 0.8709579 0.8932935 0.8845984
## 3377 0.8657143 0.8709579 0.8816392 0.8845984
## 3378 0.8657143 0.9512195 0.8932935 0.8996840
## 3379 0.8880126 0.8709579 0.8816392 0.8845984
## 3380 0.8967552 0.8709579 0.8816392 0.8845984
## 3381 0.9057377 0.8709579 0.8816392 0.8845984
## 3382 0.8657143 0.8709579 0.8816392 0.8845984
## 3383 0.8880126 0.8709579 0.8816392 0.8845984
## 3384 0.8657143 0.8709579 0.8932935 0.8845984
## 3385 0.9075630 0.8709579 0.8816392 0.8845984
## 3386 0.8657143 0.8709579 0.8816392 0.8845984
## 3387 0.9156328 0.8709579 0.8816392 0.8845984
## 3388 0.8880126 0.8709579 0.8932935 0.8845984
## 3389 0.9057377 0.8709579 0.8932935 0.8845984
## 3390 0.8880126 0.8709579 0.8816392 0.8845984
## 3391 0.8348348 0.8709579 0.8816392 0.8845984
## 3392 0.9075630 0.8709579 0.8816392 0.8845984
## 3393 0.8880126 0.8709579 0.8816392 0.8845984
## 3394 0.8657143 0.8709579 0.8932935 0.8845984
## 3395 0.8880126 0.8709579 0.8816392 0.8845984
## 3396 0.9057377 0.9512195 0.8816392 0.8845984
## 3397 0.8657143 0.8709579 0.8816392 0.8996840
## 3398 0.8657143 0.8709579 0.8932935 0.8845984
## 3399 0.8880126 0.8709579 0.9032258 0.9032258
## 3400 0.8348348 0.8709579 0.9032258 0.9032258
## 3401 0.9156328 0.8709579 0.8932935 0.8845984
## 3402 0.8880126 0.8709579 0.8816392 0.8996840
## 3403 0.8348348 0.8709579 0.8816392 0.8845984
## 3404 0.8880126 0.8709579 0.8816392 0.8845984
## 3405 0.9156328 0.8709579 0.8932935 0.8845984
## 3406 0.8657143 0.8709579 0.8816392 0.8845984
## 3407 0.8348348 0.8709579 0.8932935 0.8845984
## 3408 0.8657143 0.8709579 0.8816392 0.8845984
## 3409 0.9057377 0.8709579 0.8816392 0.8845984
## 3410 0.9075630 0.8709579 0.8816392 0.8845984
## 3411 0.8880126 0.8709579 0.8816392 0.8845984
## 3412 0.8657143 0.8709579 0.8816392 0.8996840
## 3413 0.9156328 0.8709579 0.8816392 0.8845984
## 3414 0.8967552 0.8709579 0.8816392 0.8845984
## 3415 0.8657143 0.8709579 0.8816392 0.8845984
## 3416 0.8657143 0.8709579 0.8932935 0.8845984
## 3417 0.9156328 0.9512195 0.8816392 0.8845984
## 3418 0.8880126 0.8709579 0.8816392 0.8845984
## 3419 0.9057377 0.8709579 0.8932935 0.8845984
## 3420 0.8967552 0.8709579 0.8932935 0.8845984
## 3421 0.8657143 0.8709579 0.8932935 0.8845984
## 3422 0.8880126 0.8709579 0.8816392 0.8845984
## 3423 0.8657143 0.8709579 0.8932935 0.8845984
## 3424 0.8880126 0.8709579 0.8816392 0.8845984
## 3425 0.9075630 0.8709579 0.8932935 0.8845984
## 3426 0.8880126 0.8709579 0.8932935 0.8845984
## 3427 0.9156328 0.9512195 0.8816392 0.8845984
## 3428 0.8880126 0.8709579 0.9032258 0.9032258
## 3429 0.8657143 0.8709579 0.8932935 0.8845984
## 3430 0.9075630 0.9512195 0.8816392 0.8845984
## 3431 0.8880126 0.8709579 0.8816392 0.8845984
## 3432 0.8657143 0.8709579 0.8932935 0.8845984
## 3433 0.8657143 0.8709579 0.8932935 0.8845984
## 3434 0.8657143 0.9512195 0.8932935 0.8845984
## 3435 0.8348348 0.9512195 0.8932935 0.8845984
## 3436 0.8657143 0.8709579 0.8816392 0.8845984
## 3437 0.8880126 0.8709579 0.8816392 0.8845984
## 3438 0.9075630 0.8709579 0.8816392 0.8845984
## 3439 0.8880126 0.8709579 0.8816392 0.8845984
## 3440 0.8657143 0.8709579 0.8816392 0.8845984
## 3441 0.8880126 0.8709579 0.8932935 0.8845984
## 3442 0.9156328 0.8709579 0.8932935 0.8845984
## 3443 0.8880126 0.8709579 0.8816392 0.8845984
## 3444 0.8657143 0.9512195 0.8816392 0.8845984
## 3445 0.9075630 0.8709579 0.8816392 0.8845984
## 3446 0.9057377 0.9512195 0.8932935 0.8996840
## 3447 0.8880126 0.8709579 0.8816392 0.8996840
## 3448 0.8657143 0.8709579 0.8932935 0.8996840
## 3449 0.8967552 0.8709579 0.9032258 0.9032258
## 3450 0.8657143 0.8709579 0.8816392 0.8845984
## 3451 0.8880126 0.8709579 0.8816392 0.8845984
## 3452 0.9075630 0.8709579 0.8932935 0.8996840
## 3453 0.8880126 0.8709579 0.8816392 0.8845984
## 3454 0.9075630 0.8709579 0.8932935 0.8845984
## 3455 0.8657143 0.8709579 0.9032258 0.9032258
## 3456 0.8880126 0.8709579 0.8932935 0.8845984
## 3457 0.9075630 0.8709579 0.8932935 0.8845984
## 3458 0.9156328 0.8709579 0.8932935 0.8845984
## 3459 0.9075630 0.8709579 0.8816392 0.8845984
## 3460 0.8657143 0.8709579 0.8932935 0.8845984
## 3461 0.9057377 0.8709579 0.8816392 0.8996840
## 3462 0.9057377 0.9512195 0.8816392 0.8845984
## 3463 0.8348348 0.8709579 0.8932935 0.8996840
## 3464 0.8657143 0.8709579 0.8932935 0.8845984
## 3465 0.8880126 0.8709579 0.8816392 0.8996840
## 3466 0.8880126 0.9512195 0.8816392 0.8996840
## 3467 0.9057377 0.9512195 0.8932935 0.8845984
## 3468 0.8967552 0.9512195 0.8816392 0.8845984
## 3469 0.9156328 0.9512195 0.8816392 0.8845984
## 3470 0.8657143 0.9512195 0.8816392 0.8845984
## 3471 0.8657143 0.8709579 0.8816392 0.8996840
## 3472 0.8967552 0.8709579 0.8816392 0.8845984
## 3473 0.9075630 0.9512195 0.8816392 0.8996840
## 3474 0.8657143 0.8709579 0.8816392 0.8845984
## 3475 0.9075630 0.8709579 0.8816392 0.8996840
## 3476 0.8967552 0.8709579 0.8816392 0.8996840
## 3477 0.9156328 0.9512195 0.8816392 0.8845984
## 3478 0.8657143 0.8709579 0.8932935 0.8845984
## 3479 0.8657143 0.8709579 0.8932935 0.8845984
## 3480 0.8967552 0.8709579 0.8816392 0.8845984
## 3481 0.8657143 0.8709579 0.8816392 0.8845984
## 3482 0.8657143 0.8709579 0.8932935 0.8845984
## 3483 0.8880126 0.8709579 0.8932935 0.8845984
## 3484 0.9075630 0.8709579 0.8932935 0.8845984
## 3485 0.9156328 0.8709579 0.8932935 0.8845984
## 3486 0.8967552 0.8709579 0.9032258 0.9032258
## 3487 0.8657143 0.8709579 0.8816392 0.8845984
## 3488 0.8657143 0.8709579 0.8932935 0.8996840
## 3489 0.8880126 0.8709579 0.9032258 0.9032258
## 3490 0.8880126 0.8709579 0.8932935 0.8845984
## 3491 0.8967552 0.8709579 0.8816392 0.8845984
## 3492 0.8880126 0.8709579 0.8816392 0.8845984
## 3493 0.8880126 0.8709579 0.8932935 0.8845984
## 3494 0.8880126 0.8709579 0.8816392 0.8845984
## 3495 0.8348348 0.8709579 0.8816392 0.8845984
## 3496 0.8967552 0.8709579 0.8816392 0.8845984
## 3497 0.8657143 0.8709579 0.8932935 0.8996840
## 3498 0.8657143 0.9512195 0.8816392 0.8845984
## 3499 0.8657143 0.8709579 0.8816392 0.8996840
## 3500 0.8880126 0.8709579 0.8816392 0.8845984
## 3501 0.8657143 0.8709579 0.8816392 0.8996840
## 3502 0.9075630 0.8709579 0.8816392 0.8845984
## 3503 0.8657143 0.8709579 0.8816392 0.8845984
## 3504 0.8657143 0.8709579 0.8816392 0.8845984
## 3505 0.8657143 0.9512195 0.8816392 0.8845984
## 3506 0.8348348 0.8709579 0.8932935 0.8845984
## 3507 0.8967552 0.8709579 0.8816392 0.8996840
## 3508 0.8348348 0.8709579 0.8932935 0.8845984
## 3509 0.9156328 0.8709579 0.8932935 0.8845984
## 3510 0.8657143 0.8709579 0.8932935 0.8845984
## 3511 0.9057377 0.9512195 0.8932935 0.8845984
## 3512 0.8967552 0.8709579 0.8816392 0.8996840
## 3513 0.9075630 0.8709579 0.8816392 0.8845984
## 3514 0.9156328 0.8709579 0.8816392 0.8845984
## 3515 0.9156328 0.9512195 0.8816392 0.8845984
## 3516 0.8657143 0.8709579 0.8932935 0.8845984
## 3517 0.8657143 0.9512195 0.8816392 0.8845984
## 3518 0.8657143 0.8709579 0.8932935 0.8996840
## 3519 0.9156328 0.9512195 0.8932935 0.8845984
## 3520 0.8657143 0.8709579 0.8816392 0.8845984
## 3521 0.9075630 0.8709579 0.8932935 0.8996840
## 3522 0.8657143 0.8709579 0.8816392 0.8845984
## 3523 0.8880126 0.9512195 0.8816392 0.8845984
## 3524 0.9156328 0.9512195 0.8816392 0.8996840
## 3525 0.8880126 0.8709579 0.8816392 0.8845984
## 3526 0.8657143 0.8709579 0.8932935 0.8996840
## 3527 0.9156328 0.8709579 0.8932935 0.8845984
## 3528 0.9156328 0.9512195 0.8932935 0.8845984
## 3529 0.8657143 0.8709579 0.8932935 0.8845984
## 3530 0.8657143 0.8709579 0.8816392 0.8845984
## 3531 0.8657143 0.8709579 0.8816392 0.8996840
## 3532 0.8657143 0.8709579 0.8816392 0.8845984
## 3533 0.8657143 0.8709579 0.8816392 0.8845984
## 3534 0.9057377 0.9512195 0.8932935 0.8845984
## 3535 0.9156328 0.8709579 0.8816392 0.8845984
## 3536 0.8657143 0.8709579 0.8816392 0.8845984
## 3537 0.8967552 0.8709579 0.8932935 0.8845984
## 3538 0.8657143 0.8709579 0.8816392 0.8845984
## 3539 0.9156328 0.8709579 0.8932935 0.8845984
## 3540 0.8348348 0.8709579 0.8932935 0.8845984
## 3541 0.9075630 0.9512195 0.8816392 0.8996840
## 3542 0.9057377 0.8709579 0.8816392 0.8845984
## 3543 0.9075630 0.8709579 0.8816392 0.8845984
## 3544 0.8880126 0.8709579 0.8816392 0.8845984
## 3545 0.8880126 0.8709579 0.8816392 0.8845984
## 3546 0.9075630 0.9512195 0.8932935 0.8845984
## 3547 0.8967552 0.9512195 0.8932935 0.8845984
## 3548 0.8967552 0.8709579 0.8816392 0.8845984
## 3549 0.8967552 0.8709579 0.8932935 0.8845984
## 3550 0.8880126 0.8709579 0.8932935 0.8996840
## 3551 0.9156328 0.8709579 0.8932935 0.8845984
## 3552 0.8967552 0.8709579 0.8816392 0.8845984
## 3553 0.8657143 0.9512195 0.8816392 0.8845984
## 3554 0.8967552 0.8709579 0.8932935 0.8845984
## 3555 0.8880126 0.8709579 0.8932935 0.8845984
## 3556 0.9156328 0.9512195 0.8932935 0.8845984
## 3557 0.8657143 0.9512195 0.8816392 0.8845984
## 3558 0.9075630 0.9512195 0.8932935 0.8845984
## 3559 0.8657143 0.8709579 0.8816392 0.8845984
## 3560 0.8880126 0.8709579 0.8932935 0.8845984
## 3561 0.9156328 0.8709579 0.8816392 0.8845984
## 3562 0.9156328 0.9512195 0.8932935 0.8845984
## 3563 0.9057377 0.8709579 0.8932935 0.8845984
## 3564 0.8657143 0.8709579 0.8932935 0.8996840
## 3565 0.9075630 0.9512195 0.8816392 0.8845984
## 3566 0.8657143 0.8709579 0.8816392 0.8845984
## 3567 0.8880126 0.8709579 0.8932935 0.8996840
## 3568 0.8967552 0.8709579 0.9032258 0.9032258
## 3569 0.9075630 0.9512195 0.8932935 0.8845984
## 3570 0.8880126 0.8709579 0.8932935 0.8845984
## 3571 0.8657143 0.8709579 0.8816392 0.8845984
## 3572 0.8880126 0.8709579 0.8816392 0.8845984
## 3573 0.8657143 0.8709579 0.8816392 0.8845984
## 3574 0.8657143 0.8709579 0.8816392 0.8996840
## 3575 0.9156328 0.8709579 0.8816392 0.8845984
## 3576 0.8880126 0.8709579 0.8932935 0.8845984
## 3577 0.8657143 0.8709579 0.8932935 0.8845984
## 3578 0.8348348 0.8709579 0.8816392 0.8845984
## 3579 0.8657143 0.8709579 0.8932935 0.8845984
## 3580 0.8657143 0.8709579 0.8816392 0.8845984
## 3581 0.8657143 0.9512195 0.8932935 0.8845984
## 3582 0.8880126 0.8709579 0.8932935 0.8996840
## 3583 0.9156328 0.8709579 0.8932935 0.8845984
## 3584 0.8348348 0.8709579 0.8932935 0.8996840
## 3585 0.8880126 0.8709579 0.8932935 0.8996840
## 3586 0.9057377 0.8709579 0.8932935 0.8996840
## 3587 0.8657143 0.8709579 0.8932935 0.8845984
## 3588 0.8880126 0.8709579 0.8932935 0.8845984
## 3589 0.9057377 0.8709579 0.8932935 0.8845984
## 3590 0.8880126 0.8709579 0.8816392 0.8845984
## 3591 0.8880126 0.8709579 0.8932935 0.8845984
## 3592 0.9156328 0.8709579 0.8816392 0.8845984
## 3593 0.8657143 0.8709579 0.8816392 0.8845984
## 3594 0.8880126 0.8709579 0.8816392 0.8845984
## 3595 0.8657143 0.8709579 0.8932935 0.8845984
## 3596 0.8880126 0.9512195 0.8932935 0.8845984
## 3597 0.8880126 0.8709579 0.8932935 0.8845984
## 3598 0.9156328 0.8709579 0.8816392 0.8845984
## 3599 0.9156328 0.8709579 0.8816392 0.8845984
## 3600 0.9075630 0.8709579 0.8932935 0.8845984
## 3601 0.8967552 0.8709579 0.8816392 0.8845984
## 3602 0.8880126 0.8709579 0.9032258 0.9032258
## 3603 0.8657143 0.9512195 0.8816392 0.8996840
## 3604 0.8967552 0.8709579 0.8816392 0.8845984
## 3605 0.8880126 0.8709579 0.8816392 0.8845984
## 3606 0.9156328 0.9512195 0.8932935 0.8845984
## 3607 0.8967552 0.8709579 0.8816392 0.8845984
## 3608 0.9156328 0.9512195 0.8816392 0.8845984
## 3609 0.8348348 0.8709579 0.8932935 0.8996840
## 3610 0.8657143 0.8709579 0.8816392 0.8845984
## 3611 0.8657143 0.8709579 0.8816392 0.8845984
## 3612 0.9057377 0.8709579 0.8932935 0.8845984
## 3613 0.8967552 0.8709579 0.8932935 0.8996840
## 3614 0.9156328 0.8709579 0.8816392 0.8845984
## 3615 0.9156328 0.8709579 0.8816392 0.8845984
## 3616 0.8880126 0.9512195 0.8932935 0.8996840
## 3617 0.9075630 0.9512195 0.8816392 0.8845984
## 3618 0.8880126 0.8709579 0.8816392 0.8845984
## 3619 0.8880126 0.8709579 0.8932935 0.8845984
## 3620 0.9156328 0.9512195 0.8816392 0.8845984
## 3621 0.9075630 0.9512195 0.8816392 0.8996840
## 3622 0.9156328 0.9512195 0.8932935 0.8845984
## 3623 0.9075630 0.8709579 0.8932935 0.8845984
## 3624 0.8880126 0.8709579 0.8816392 0.8845984
## 3625 0.8880126 0.8709579 0.8816392 0.8845984
## 3626 0.9057377 0.8709579 0.8932935 0.8845984
## 3627 0.9057377 0.9512195 0.8932935 0.8845984
## 3628 0.9075630 0.8709579 0.8816392 0.8845984
## 3629 0.8657143 0.8709579 0.8816392 0.8845984
## 3630 0.9156328 0.8709579 0.8932935 0.8845984
## 3631 0.8657143 0.8709579 0.8816392 0.8845984
## 3632 0.8657143 0.8709579 0.8932935 0.8845984
## 3633 0.8657143 0.9512195 0.8816392 0.8845984
## 3634 0.9057377 0.8709579 0.8816392 0.8996840
## 3635 0.9075630 0.9512195 0.8816392 0.8845984
## 3636 0.8880126 0.8709579 0.8932935 0.8845984
## 3637 0.8967552 0.8709579 0.8816392 0.8845984
## 3638 0.8657143 0.8709579 0.8932935 0.8845984
## 3639 0.9075630 0.8709579 0.8932935 0.8845984
## 3640 0.8657143 0.9512195 0.8932935 0.8845984
## 3641 0.9075630 0.8709579 0.8816392 0.8845984
## 3642 0.9156328 0.8709579 0.8932935 0.8996840
## 3643 0.8657143 0.8709579 0.8932935 0.8996840
## 3644 0.8348348 0.9512195 0.8932935 0.8845984
## 3645 0.8657143 0.8709579 0.8932935 0.8845984
## 3646 0.9156328 0.8709579 0.8816392 0.8845984
## 3647 0.9156328 0.8709579 0.8816392 0.8996840
## 3648 0.8657143 0.8709579 0.8932935 0.8845984
## 3649 0.8657143 0.8709579 0.8932935 0.8845984
## 3650 0.8880126 0.8709579 0.8932935 0.8845984
## 3651 0.8967552 0.8709579 0.8816392 0.8845984
## 3652 0.8967552 0.8709579 0.8816392 0.8845984
## 3653 0.8657143 0.8709579 0.8932935 0.8845984
## 3654 0.9156328 0.8709579 0.8816392 0.8996840
## 3655 0.8967552 0.8709579 0.8816392 0.8845984
## 3656 0.8880126 0.8709579 0.9032258 0.9032258
## 3657 0.9156328 0.8709579 0.8932935 0.8845984
## 3658 0.8348348 0.8709579 0.8816392 0.8996840
## 3659 0.8657143 0.8709579 0.8816392 0.8845984
## 3660 0.8880126 0.8709579 0.9032258 0.9032258
## 3661 0.8348348 0.8709579 0.8932935 0.8845984
## 3662 0.9057377 0.8709579 0.8932935 0.8845984
## 3663 0.8657143 0.9512195 0.8932935 0.8996840
## 3664 0.8348348 0.8709579 0.8932935 0.8996840
## 3665 0.9057377 0.8709579 0.8932935 0.8845984
## 3666 0.9075630 0.8709579 0.8932935 0.8845984
## 3667 0.9075630 0.9512195 0.8816392 0.8845984
## 3668 0.9075630 0.8709579 0.8816392 0.8845984
## 3669 0.9156328 0.8709579 0.8932935 0.8845984
## 3670 0.8967552 0.8709579 0.8932935 0.8845984
## 3671 0.8880126 0.8709579 0.8816392 0.8845984
## 3672 0.8880126 0.8709579 0.8932935 0.8845984
## 3673 0.8880126 0.8709579 0.8816392 0.8845984
## 3674 0.8880126 0.8709579 0.8932935 0.8845984
## 3675 0.9156328 0.8709579 0.8932935 0.8845984
## 3676 0.8880126 0.8709579 0.8816392 0.8845984
## 3677 0.8657143 0.9512195 0.8816392 0.8845984
## 3678 0.9075630 0.9512195 0.8816392 0.8845984
## 3679 0.9075630 0.8709579 0.8816392 0.8845984
## 3680 0.9057377 0.9512195 0.8816392 0.8845984
## 3681 0.8657143 0.8709579 0.8932935 0.8845984
## 3682 0.9156328 0.8709579 0.8932935 0.8845984
## 3683 0.9156328 0.9512195 0.8932935 0.8845984
## 3684 0.8657143 0.8709579 0.8816392 0.8845984
## 3685 0.8880126 0.8709579 0.8816392 0.8996840
## 3686 0.9156328 0.9512195 0.8932935 0.8845984
## 3687 0.8967552 0.8709579 0.8816392 0.8996840
## 3688 0.9156328 0.8709579 0.8816392 0.8845984
## 3689 0.8880126 0.8709579 0.8932935 0.8845984
## 3690 0.9075630 0.8709579 0.8816392 0.8845984
## 3691 0.9156328 0.9512195 0.8816392 0.8845984
## 3692 0.8657143 0.8709579 0.8932935 0.8845984
## 3693 0.9057377 0.8709579 0.8816392 0.8845984
## 3694 0.8880126 0.8709579 0.8816392 0.8845984
## 3695 0.9156328 0.9512195 0.8816392 0.8845984
## 3696 0.8657143 0.8709579 0.8932935 0.8845984
## 3697 0.8967552 0.8709579 0.8932935 0.8845984
## 3698 0.8657143 0.8709579 0.8932935 0.8845984
## 3699 0.8657143 0.8709579 0.8816392 0.8845984
## 3700 0.8657143 0.8709579 0.8932935 0.8845984
## 3701 0.8657143 0.8709579 0.8932935 0.8845984
## 3702 0.8880126 0.9512195 0.8932935 0.8845984
## 3703 0.8880126 0.8709579 0.8816392 0.8845984
## 3704 0.8657143 0.8709579 0.8816392 0.8996840
## 3705 0.9156328 0.8709579 0.8816392 0.8845984
## 3706 0.9075630 0.8709579 0.8816392 0.8845984
## 3707 0.8880126 0.8709579 0.8932935 0.8845984
## 3708 0.8657143 0.8709579 0.8816392 0.8845984
## 3709 0.8657143 0.9512195 0.8932935 0.8845984
## 3710 0.9057377 0.8709579 0.8932935 0.8845984
## 3711 0.8657143 0.8709579 0.8816392 0.8845984
## 3712 0.8880126 0.9512195 0.8932935 0.8996840
## 3713 0.8880126 0.9512195 0.8816392 0.8996840
## 3714 0.8657143 0.8709579 0.8932935 0.8845984
## 3715 0.8657143 0.8709579 0.8932935 0.8845984
## 3716 0.8348348 0.8709579 0.8932935 0.8845984
## 3717 0.9057377 0.9512195 0.8816392 0.8845984
## 3718 0.8880126 0.9512195 0.8816392 0.8845984
## 3719 0.8657143 0.9512195 0.8932935 0.8845984
## 3720 0.8880126 0.8709579 0.8932935 0.8996840
## 3721 0.8657143 0.8709579 0.8816392 0.8845984
## 3722 0.8967552 0.8709579 0.8816392 0.8845984
## 3723 0.8657143 0.8709579 0.8932935 0.8845984
## 3724 0.8880126 0.8709579 0.8932935 0.8845984
## 3725 0.9075630 0.9512195 0.8816392 0.8845984
## 3726 0.9156328 0.9512195 0.8816392 0.8845984
## 3727 0.8657143 0.8709579 0.8932935 0.8845984
## 3728 0.8348348 0.9512195 0.8816392 0.8845984
## 3729 0.8657143 0.8709579 0.8816392 0.8845984
## 3730 0.8657143 0.8709579 0.8816392 0.8845984
## 3731 0.8880126 0.8709579 0.8932935 0.8996840
## 3732 0.9156328 0.8709579 0.8932935 0.8845984
## 3733 0.8657143 0.8709579 0.8816392 0.8845984
## 3734 0.9075630 0.8709579 0.8932935 0.8845984
## 3735 0.8348348 0.8709579 0.9032258 0.9032258
## 3736 0.8657143 0.9512195 0.8816392 0.8845984
## 3737 0.8880126 0.8709579 0.8932935 0.8845984
## 3738 0.8967552 0.9512195 0.8932935 0.8996840
## 3739 0.8657143 0.9512195 0.8816392 0.8845984
## 3740 0.8657143 0.8709579 0.8816392 0.8845984
## 3741 0.8880126 0.8709579 0.8816392 0.8996840
## 3742 0.8967552 0.9512195 0.8816392 0.8996840
## 3743 0.8657143 0.8709579 0.9032258 0.9032258
## 3744 0.8657143 0.8709579 0.8932935 0.8845984
## 3745 0.8657143 0.8709579 0.8816392 0.8996840
## 3746 0.8657143 0.8709579 0.8932935 0.8996840
## 3747 0.8967552 0.8709579 0.8932935 0.8845984
## 3748 0.9075630 0.9512195 0.8816392 0.8996840
## 3749 0.8880126 0.8709579 0.8932935 0.8996840
## 3750 0.8880126 0.8709579 0.8816392 0.8845984
## 3751 0.8657143 0.8709579 0.8816392 0.8845984
## 3752 0.9156328 0.8709579 0.8816392 0.8845984
## 3753 0.8657143 0.9512195 0.8816392 0.8845984
## 3754 0.8657143 0.8709579 0.8932935 0.8845984
## 3755 0.8880126 0.9512195 0.8816392 0.8845984
## 3756 0.9075630 0.8709579 0.9032258 0.9032258
## 3757 0.9075630 0.8709579 0.8932935 0.8845984
## 3758 0.8348348 0.9512195 0.8932935 0.8845984
## 3759 0.8880126 0.8709579 0.8932935 0.8845984
## 3760 0.8880126 0.8709579 0.8932935 0.8996840
## 3761 0.8657143 0.8709579 0.8816392 0.8845984
## 3762 0.8657143 0.8709579 0.8816392 0.8845984
## 3763 0.9156328 0.8709579 0.8816392 0.8996840
## 3764 0.8967552 0.8709579 0.8816392 0.8845984
## 3765 0.8967552 0.8709579 0.8932935 0.8845984
## 3766 0.8880126 0.8709579 0.8816392 0.8845984
## 3767 0.9156328 0.8709579 0.8932935 0.8996840
## 3768 0.9075630 0.8709579 0.8932935 0.8845984
## 3769 0.8657143 0.8709579 0.8932935 0.8845984
## 3770 0.8880126 0.9512195 0.8816392 0.8996840
## 3771 0.8657143 0.9512195 0.8932935 0.8845984
## 3772 0.9075630 0.9512195 0.8816392 0.8845984
## 3773 0.8657143 0.8709579 0.8816392 0.8845984
## 3774 0.8657143 0.8709579 0.8932935 0.8996840
## 3775 0.8967552 0.9512195 0.8932935 0.8845984
## 3776 0.8348348 0.9512195 0.8932935 0.8845984
## 3777 0.9156328 0.8709579 0.8816392 0.8996840
## 3778 0.8880126 0.8709579 0.8932935 0.8845984
## 3779 0.8657143 0.8709579 0.8932935 0.8845984
## 3780 0.8657143 0.9512195 0.8816392 0.8845984
## 3781 0.9156328 0.9512195 0.8932935 0.8996840
## 3782 0.8657143 0.8709579 0.8816392 0.8845984
## 3783 0.9075630 0.8709579 0.8932935 0.8845984
## 3784 0.9156328 0.8709579 0.8816392 0.8845984
## 3785 0.9156328 0.8709579 0.8932935 0.8845984
## 3786 0.8967552 0.8709579 0.8816392 0.8845984
## 3787 0.8880126 0.9512195 0.8816392 0.8845984
## 3788 0.9156328 0.8709579 0.8816392 0.8845984
## 3789 0.8657143 0.8709579 0.8932935 0.8845984
## 3790 0.9075630 0.9512195 0.8816392 0.8845984
## 3791 0.8348348 0.8709579 0.8816392 0.8845984
## 3792 0.8657143 0.9512195 0.8932935 0.8845984
## 3793 0.8880126 0.8709579 0.8932935 0.8845984
## 3794 0.8880126 0.8709579 0.8816392 0.8845984
## 3795 0.9075630 0.8709579 0.8816392 0.8845984
## 3796 0.9075630 0.9512195 0.8932935 0.8845984
## 3797 0.8880126 0.8709579 0.9032258 0.9032258
## 3798 0.8967552 0.8709579 0.8816392 0.8996840
## 3799 0.9057377 0.8709579 0.8816392 0.8996840
## 3800 0.8657143 0.8709579 0.8816392 0.8996840
## 3801 0.8657143 0.8709579 0.8932935 0.8845984
## 3802 0.8880126 0.8709579 0.8816392 0.8845984
## 3803 0.9075630 0.9512195 0.8932935 0.8845984
## 3804 0.9057377 0.8709579 0.8816392 0.8845984
## 3805 0.8880126 0.9512195 0.8816392 0.8845984
## 3806 0.9075630 0.8709579 0.8932935 0.8845984
## 3807 0.8880126 0.9512195 0.8932935 0.8845984
## 3808 0.8657143 0.8709579 0.9032258 0.9032258
## 3809 0.9057377 0.8709579 0.8816392 0.8845984
## 3810 0.8880126 0.9512195 0.8932935 0.8845984
## 3811 0.8967552 0.8709579 0.8932935 0.8845984
## 3812 0.8657143 0.8709579 0.8816392 0.8996840
## 3813 0.8657143 0.8709579 0.8932935 0.8845984
## 3814 0.8880126 0.8709579 0.8932935 0.8845984
## 3815 0.9156328 0.8709579 0.8816392 0.8996840
## 3816 0.9156328 0.8709579 0.8816392 0.8845984
## 3817 0.9156328 0.8709579 0.8932935 0.8845984
## 3818 0.9057377 0.8709579 0.8932935 0.8845984
## 3819 0.8657143 0.8709579 0.8932935 0.8845984
## 3820 0.8967552 0.8709579 0.8816392 0.8845984
## 3821 0.9057377 0.8709579 0.8816392 0.8996840
## 3822 0.8657143 0.8709579 0.8932935 0.8996840
## 3823 0.9075630 0.8709579 0.8816392 0.8845984
## 3824 0.8967552 0.8709579 0.8816392 0.8845984
## 3825 0.9156328 0.8709579 0.8932935 0.8845984
## 3826 0.8657143 0.9512195 0.8932935 0.8845984
## 3827 0.8880126 0.8709579 0.8816392 0.8845984
## 3828 0.8657143 0.9512195 0.8816392 0.8845984
## 3829 0.8967552 0.8709579 0.8816392 0.8845984
## 3830 0.8657143 0.8709579 0.8932935 0.8996840
## 3831 0.8657143 0.8709579 0.8816392 0.8845984
## 3832 0.8880126 0.9512195 0.8816392 0.8996840
## 3833 0.8657143 0.8709579 0.8932935 0.8845984
## 3834 0.9156328 0.8709579 0.8816392 0.8845984
## 3835 0.9156328 0.9512195 0.8932935 0.8996840
## 3836 0.8657143 0.8709579 0.8932935 0.8845984
## 3837 0.8657143 0.8709579 0.8816392 0.8845984
## 3838 0.9057377 0.8709579 0.8816392 0.8845984
## 3839 0.8657143 0.8709579 0.8816392 0.8845984
## 3840 0.8967552 0.8709579 0.8932935 0.8996840
## 3841 0.8657143 0.8709579 0.8816392 0.8996840
## 3842 0.8657143 0.8709579 0.8932935 0.8845984
## 3843 0.8967552 0.8709579 0.8932935 0.8996840
## 3844 0.8657143 0.8709579 0.8816392 0.8845984
## 3845 0.9156328 0.8709579 0.8932935 0.8845984
## 3846 0.9156328 0.8709579 0.8932935 0.8845984
## 3847 0.8880126 0.8709579 0.8816392 0.8845984
## 3848 0.8657143 0.8709579 0.8816392 0.8845984
## 3849 0.9156328 0.8709579 0.8816392 0.8845984
## 3850 0.9156328 0.9512195 0.8816392 0.8845984
## 3851 0.8657143 0.8709579 0.8932935 0.8845984
## 3852 0.9057377 0.8709579 0.8932935 0.8845984
## 3853 0.8967552 0.8709579 0.8816392 0.8996840
## 3854 0.9075630 0.8709579 0.8932935 0.8845984
## 3855 0.9156328 0.8709579 0.8932935 0.8845984
## 3856 0.8657143 0.8709579 0.8816392 0.8845984
## 3857 0.8348348 0.9512195 0.8932935 0.8845984
## 3858 0.9057377 0.8709579 0.8816392 0.8845984
## 3859 0.8657143 0.8709579 0.8816392 0.8845984
## 3860 0.8967552 0.8709579 0.8816392 0.8845984
## 3861 0.9075630 0.8709579 0.8932935 0.8845984
## 3862 0.9156328 0.8709579 0.8816392 0.8996840
## 3863 0.8880126 0.9512195 0.8932935 0.8845984
## 3864 0.8880126 0.8709579 0.8816392 0.8845984
## 3865 0.8657143 0.8709579 0.9032258 0.9032258
## 3866 0.8348348 0.9512195 0.8816392 0.8845984
## 3867 0.8657143 0.8709579 0.8816392 0.8996840
## 3868 0.9075630 0.8709579 0.8932935 0.8845984
## 3869 0.8657143 0.8709579 0.8932935 0.8845984
## 3870 0.8657143 0.9512195 0.8932935 0.8996840
## 3871 0.9075630 0.8709579 0.8816392 0.8845984
## 3872 0.8657143 0.8709579 0.8816392 0.8845984
## 3873 0.9156328 0.8709579 0.8932935 0.8845984
## 3874 0.8880126 0.9512195 0.8816392 0.8845984
## 3875 0.8880126 0.8709579 0.8816392 0.8845984
## 3876 0.8880126 0.8709579 0.8932935 0.8845984
## 3877 0.8880126 0.8709579 0.8932935 0.8845984
## 3878 0.8880126 0.9512195 0.8816392 0.8845984
## 3879 0.9156328 0.9512195 0.8932935 0.8845984
## 3880 0.8880126 0.8709579 0.8932935 0.8845984
## 3881 0.9075630 0.8709579 0.8932935 0.8996840
## 3882 0.8880126 0.8709579 0.8816392 0.8845984
## 3883 0.8880126 0.8709579 0.8932935 0.8845984
## 3884 0.8657143 0.8709579 0.8816392 0.8845984
## 3885 0.8348348 0.9512195 0.8816392 0.8996840
## 3886 0.8657143 0.8709579 0.8816392 0.8845984
## 3887 0.8657143 0.8709579 0.8932935 0.8845984
## 3888 0.8657143 0.9512195 0.8932935 0.8996840
## 3889 0.8967552 0.9512195 0.8816392 0.8845984
## 3890 0.8348348 0.9512195 0.8816392 0.8845984
## 3891 0.8657143 0.8709579 0.8932935 0.8845984
## 3892 0.9057377 0.8709579 0.8816392 0.8845984
## 3893 0.8880126 0.8709579 0.8932935 0.8845984
## 3894 0.9075630 0.9512195 0.8932935 0.8845984
## 3895 0.8880126 0.8709579 0.8816392 0.8845984
## 3896 0.8657143 0.8709579 0.8816392 0.8845984
## 3897 0.8657143 0.8709579 0.8816392 0.8845984
## 3898 0.8880126 0.8709579 0.8932935 0.8845984
## 3899 0.9057377 0.8709579 0.8816392 0.8845984
## 3900 0.8967552 0.8709579 0.8816392 0.8845984
## 3901 0.8880126 0.8709579 0.8816392 0.8845984
## 3902 0.8967552 0.8709579 0.8932935 0.8845984
## 3903 0.8657143 0.8709579 0.8932935 0.8845984
## 3904 0.9156328 0.8709579 0.8816392 0.8845984
## 3905 0.8880126 0.9512195 0.8816392 0.8845984
## 3906 0.8880126 0.8709579 0.8816392 0.8845984
## 3907 0.8880126 0.8709579 0.8932935 0.8845984
## 3908 0.8967552 0.8709579 0.8816392 0.8996840
## 3909 0.9057377 0.8709579 0.8816392 0.8845984
## 3910 0.8657143 0.8709579 0.8932935 0.8845984
## 3911 0.9156328 0.9512195 0.8932935 0.8845984
## 3912 0.8657143 0.8709579 0.8932935 0.8845984
## 3913 0.9156328 0.8709579 0.8932935 0.8845984
## 3914 0.9057377 0.8709579 0.8816392 0.8845984
## 3915 0.8657143 0.8709579 0.8816392 0.8845984
## 3916 0.8657143 0.8709579 0.8816392 0.8845984
## 3917 0.9075630 0.8709579 0.8932935 0.8845984
## 3918 0.9075630 0.8709579 0.8932935 0.8845984
## 3919 0.8657143 0.8709579 0.8816392 0.8845984
## 3920 0.9156328 0.8709579 0.8816392 0.8845984
## 3921 0.8657143 0.8709579 0.8816392 0.8996840
## 3922 0.9075630 0.8709579 0.8816392 0.8845984
## 3923 0.9075630 0.8709579 0.8816392 0.8845984
## 3924 0.8348348 0.9512195 0.8932935 0.8845984
## 3925 0.8880126 0.8709579 0.8816392 0.8996840
## 3926 0.8657143 0.8709579 0.8932935 0.8845984
## 3927 0.8657143 0.8709579 0.8932935 0.8845984
## 3928 0.8880126 0.8709579 0.8816392 0.8845984
## 3929 0.8967552 0.8709579 0.8816392 0.8996840
## 3930 0.9156328 0.9512195 0.8932935 0.8845984
## 3931 0.9057377 0.8709579 0.8816392 0.8845984
## 3932 0.8657143 0.8709579 0.8816392 0.8845984
## 3933 0.8657143 0.8709579 0.8932935 0.8845984
## 3934 0.8880126 0.8709579 0.8932935 0.8845984
## 3935 0.8657143 0.8709579 0.8816392 0.8845984
## 3936 0.9156328 0.8709579 0.8816392 0.8845984
## 3937 0.8657143 0.8709579 0.8816392 0.8845984
## 3938 0.8657143 0.8709579 0.8932935 0.8996840
## 3939 0.8657143 0.8709579 0.8932935 0.8845984
## 3940 0.9156328 0.9512195 0.8816392 0.8996840
## 3941 0.8657143 0.8709579 0.8816392 0.8845984
## 3942 0.8657143 0.8709579 0.8932935 0.8845984
## 3943 0.9075630 0.8709579 0.8816392 0.8845984
## 3944 0.8657143 0.8709579 0.8932935 0.8845984
## 3945 0.8880126 0.8709579 0.8932935 0.8845984
## 3946 0.8657143 0.8709579 0.8816392 0.8845984
## 3947 0.8657143 0.8709579 0.8816392 0.8845984
## 3948 0.9156328 0.8709579 0.8816392 0.8996840
## 3949 0.8967552 0.8709579 0.8932935 0.8845984
## 3950 0.8880126 0.8709579 0.8932935 0.8996840
## 3951 0.8880126 0.9512195 0.8932935 0.8845984
## 3952 0.9156328 0.9512195 0.8932935 0.8845984
## 3953 0.8348348 0.9512195 0.8816392 0.8845984
## 3954 0.8880126 0.8709579 0.9032258 0.9032258
## 3955 0.8880126 0.8709579 0.8816392 0.8845984
## 3956 0.8657143 0.8709579 0.8932935 0.8996840
## 3957 0.8967552 0.8709579 0.8816392 0.8845984
## 3958 0.8880126 0.8709579 0.8932935 0.8845984
## 3959 0.8657143 0.9512195 0.8932935 0.8845984
## 3960 0.8880126 0.8709579 0.9032258 0.9032258
## 3961 0.8657143 0.8709579 0.8816392 0.8845984
## 3962 0.9057377 0.8709579 0.8932935 0.8845984
## 3963 0.8657143 0.8709579 0.8932935 0.8996840
## 3964 0.8657143 0.8709579 0.8932935 0.8845984
## 3965 0.9156328 0.8709579 0.8816392 0.8845984
## 3966 0.9156328 0.8709579 0.8816392 0.8845984
## 3967 0.9057377 0.8709579 0.8932935 0.8996840
## 3968 0.9075630 0.8709579 0.8932935 0.8845984
## 3969 0.9075630 0.8709579 0.8932935 0.8845984
## 3970 0.8657143 0.8709579 0.8932935 0.8845984
## 3971 0.8657143 0.8709579 0.8816392 0.8845984
## 3972 0.8657143 0.8709579 0.8932935 0.8845984
## 3973 0.8880126 0.8709579 0.8932935 0.8845984
## 3974 0.8880126 0.8709579 0.8932935 0.8845984
## 3975 0.9156328 0.8709579 0.8932935 0.8845984
## 3976 0.8880126 0.8709579 0.9032258 0.9032258
## 3977 0.8880126 0.9512195 0.8816392 0.8845984
## 3978 0.8657143 0.8709579 0.8932935 0.8845984
## 3979 0.9156328 0.8709579 0.8932935 0.8845984
## 3980 0.8657143 0.8709579 0.8816392 0.8845984
## 3981 0.8880126 0.8709579 0.8932935 0.8845984
## 3982 0.8657143 0.9512195 0.8932935 0.8845984
## 3983 0.8657143 0.9512195 0.8816392 0.8845984
## 3984 0.8657143 0.8709579 0.8932935 0.8845984
## 3985 0.9075630 0.8709579 0.8932935 0.8845984
## 3986 0.8880126 0.8709579 0.8816392 0.8845984
## 3987 0.8880126 0.8709579 0.8932935 0.8845984
## 3988 0.8657143 0.9512195 0.8932935 0.8845984
## 3989 0.8880126 0.8709579 0.8932935 0.8845984
## 3990 0.8967552 0.8709579 0.8932935 0.8845984
## 3991 0.9156328 0.8709579 0.8816392 0.8996840
## 3992 0.8657143 0.9512195 0.8816392 0.8845984
## 3993 0.8880126 0.9512195 0.8932935 0.8996840
## 3994 0.8967552 0.8709579 0.8816392 0.8845984
## 3995 0.8880126 0.8709579 0.8816392 0.8845984
## 3996 0.9057377 0.8709579 0.8816392 0.8845984
## 3997 0.8880126 0.9512195 0.8816392 0.8845984
## 3998 0.8657143 0.9512195 0.8932935 0.8996840
## 3999 0.8657143 0.8709579 0.8932935 0.8845984
## 4000 0.8657143 0.8709579 0.8932935 0.8845984
## 4001 0.8657143 0.8709579 0.8932935 0.8996840
## 4002 0.8880126 0.9512195 0.8816392 0.8996840
## 4003 0.8880126 0.9512195 0.8816392 0.8996840
## 4004 0.8657143 0.8709579 0.8932935 0.8845984
## 4005 0.8967552 0.8709579 0.8932935 0.8845984
## 4006 0.9075630 0.8709579 0.8816392 0.8845984
## 4007 0.9075630 0.9512195 0.8816392 0.8845984
## 4008 0.8348348 0.8709579 0.8932935 0.8996840
## 4009 0.8880126 0.8709579 0.8816392 0.8845984
## 4010 0.9057377 0.8709579 0.8816392 0.8845984
## 4011 0.8657143 0.8709579 0.8932935 0.8845984
## 4012 0.9156328 0.8709579 0.8816392 0.8996840
## 4013 0.8880126 0.8709579 0.8816392 0.8845984
## 4014 0.9156328 0.8709579 0.8816392 0.8845984
## 4015 0.9075630 0.8709579 0.8932935 0.8845984
## 4016 0.9057377 0.8709579 0.8816392 0.8845984
## 4017 0.9075630 0.8709579 0.8932935 0.8845984
## 4018 0.9075630 0.8709579 0.8816392 0.8845984
## 4019 0.9156328 0.8709579 0.8816392 0.8845984
## 4020 0.9075630 0.8709579 0.8932935 0.8845984
## 4021 0.9156328 0.8709579 0.8816392 0.8845984
## 4022 0.8967552 0.8709579 0.8932935 0.8845984
## 4023 0.8657143 0.8709579 0.8816392 0.8845984
## 4024 0.9075630 0.8709579 0.8816392 0.8845984
## 4025 0.9156328 0.8709579 0.8816392 0.8845984
## 4026 0.8657143 0.8709579 0.8816392 0.8845984
## 4027 0.8967552 0.8709579 0.8816392 0.8996840
## 4028 0.8880126 0.8709579 0.8932935 0.8845984
## 4029 0.8880126 0.8709579 0.8932935 0.8845984
## 4030 0.9075630 0.8709579 0.8816392 0.8996840
## 4031 0.8657143 0.8709579 0.8932935 0.8996840
## 4032 0.9156328 0.8709579 0.8816392 0.8845984
## 4033 0.8657143 0.8709579 0.8816392 0.8845984
## 4034 0.8657143 0.8709579 0.8816392 0.8996840
## 4035 0.8657143 0.8709579 0.8816392 0.8845984
## 4036 0.8657143 0.9512195 0.8932935 0.8845984
## 4037 0.8657143 0.8709579 0.8816392 0.8845984
## 4038 0.8657143 0.8709579 0.8932935 0.8845984
## 4039 0.8967552 0.8709579 0.8816392 0.8845984
## 4040 0.9075630 0.8709579 0.8816392 0.8845984
## 4041 0.8657143 0.8709579 0.8816392 0.8845984
## 4042 0.8348348 0.8709579 0.8816392 0.8845984
## 4043 0.8967552 0.8709579 0.8816392 0.8845984
## 4044 0.9075630 0.8709579 0.8816392 0.8845984
## 4045 0.9156328 0.8709579 0.8816392 0.8845984
## 4046 0.9156328 0.8709579 0.8932935 0.8845984
## 4047 0.9057377 0.9512195 0.8932935 0.8845984
## 4048 0.9156328 0.8709579 0.8816392 0.8845984
## 4049 0.8657143 0.8709579 0.8932935 0.8845984
## 4050 0.8657143 0.8709579 0.8816392 0.8845984
## 4051 0.8657143 0.8709579 0.8816392 0.8996840
## 4052 0.8657143 0.8709579 0.8816392 0.8845984
## 4053 0.8657143 0.9512195 0.8816392 0.8845984
## 4054 0.8967552 0.9512195 0.8816392 0.8845984
## 4055 0.9057377 0.9512195 0.8816392 0.8845984
## 4056 0.8348348 0.8709579 0.8816392 0.8845984
## 4057 0.8657143 0.8709579 0.8816392 0.8845984
## 4058 0.8967552 0.8709579 0.8816392 0.8845984
## 4059 0.9075630 0.9512195 0.8816392 0.8845984
## 4060 0.8657143 0.8709579 0.8932935 0.8996840
## 4061 0.9075630 0.8709579 0.8932935 0.8845984
## 4062 0.9075630 0.8709579 0.8932935 0.8845984
## 4063 0.8880126 0.8709579 0.8932935 0.8845984
## 4064 0.8657143 0.8709579 0.8932935 0.8845984
## 4065 0.8880126 0.8709579 0.8816392 0.8845984
## 4066 0.9156328 0.8709579 0.8816392 0.8845984
## 4067 0.8880126 0.8709579 0.8816392 0.8845984
## 4068 0.9156328 0.8709579 0.8932935 0.8845984
## 4069 0.8967552 0.8709579 0.8816392 0.8996840
## 4070 0.8880126 0.8709579 0.8932935 0.8845984
## 4071 0.9156328 0.8709579 0.8816392 0.8845984
## 4072 0.8880126 0.8709579 0.8816392 0.8996840
## 4073 0.8348348 0.8709579 0.8816392 0.8845984
## 4074 0.8967552 0.8709579 0.8816392 0.8845984
## 4075 0.9075630 0.8709579 0.8932935 0.8996840
## 4076 0.9156328 0.8709579 0.8932935 0.8845984
## 4077 0.8657143 0.8709579 0.8816392 0.8845984
## 4078 0.9156328 0.9512195 0.8816392 0.8996840
## 4079 0.8657143 0.8709579 0.8816392 0.8996840
## 4080 0.8657143 0.8709579 0.8816392 0.8845984
## 4081 0.8657143 0.8709579 0.8816392 0.8845984
## 4082 0.8657143 0.8709579 0.8932935 0.8845984
## 4083 0.8657143 0.8709579 0.8932935 0.8845984
## 4084 0.8880126 0.9512195 0.8816392 0.8996840
## 4085 0.8967552 0.8709579 0.8816392 0.8845984
## 4086 0.8880126 0.8709579 0.8816392 0.8845984
## 4087 0.8657143 0.8709579 0.8816392 0.8845984
## 4088 0.8657143 0.9512195 0.8816392 0.8845984
## 4089 0.9075630 0.8709579 0.8932935 0.8996840
## 4090 0.8880126 0.8709579 0.8816392 0.8845984
## 4091 0.9075630 0.9512195 0.8932935 0.8845984
## 4092 0.9075630 0.8709579 0.8932935 0.8845984
## 4093 0.8967552 0.8709579 0.8816392 0.8996840
## 4094 0.8880126 0.8709579 0.8816392 0.8845984
## 4095 0.9075630 0.8709579 0.8932935 0.8845984
## 4096 0.8657143 0.8709579 0.8816392 0.8996840
## 4097 0.8657143 0.8709579 0.8816392 0.8845984
## 4098 0.8348348 0.8709579 0.8932935 0.8845984
## 4099 0.9075630 0.8709579 0.8816392 0.8845984
## 4100 0.8880126 0.8709579 0.8816392 0.8845984
## 4101 0.8657143 0.8709579 0.8816392 0.8845984
## 4102 0.9156328 0.8709579 0.8816392 0.8845984
## 4103 0.8657143 0.8709579 0.8932935 0.8845984
## 4104 0.9075630 0.8709579 0.8816392 0.8996840
## 4105 0.8348348 0.9512195 0.8932935 0.8845984
## 4106 0.8880126 0.8709579 0.8932935 0.8996840
## 4107 0.8880126 0.8709579 0.9032258 0.9032258
## 4108 0.9156328 0.8709579 0.8932935 0.8845984
## 4109 0.9156328 0.8709579 0.8816392 0.8996840
## 4110 0.8880126 0.8709579 0.8932935 0.8845984
## 4111 0.9075630 0.9512195 0.8932935 0.8845984
## 4112 0.8657143 0.8709579 0.8932935 0.8845984
## 4113 0.8657143 0.8709579 0.8816392 0.8845984
## 4114 0.8657143 0.8709579 0.8932935 0.8845984
## 4115 0.8657143 0.8709579 0.8932935 0.8845984
## 4116 0.9057377 0.8709579 0.8816392 0.8845984
## 4117 0.8880126 0.8709579 0.8932935 0.8996840
## 4118 0.9156328 0.9512195 0.8932935 0.8845984
## 4119 0.9075630 0.8709579 0.8932935 0.8845984
## 4120 0.8880126 0.8709579 0.8816392 0.8845984
## 4121 0.8657143 0.8709579 0.8932935 0.8845984
## 4122 0.8657143 0.8709579 0.8932935 0.8845984
## 4123 0.9075630 0.8709579 0.8932935 0.8845984
## 4124 0.8880126 0.8709579 0.8932935 0.8845984
## 4125 0.8967552 0.8709579 0.8932935 0.8845984
## 4126 0.8348348 0.8709579 0.8816392 0.8845984
## 4127 0.8880126 0.9512195 0.8816392 0.8845984
## 4128 0.9156328 0.8709579 0.8816392 0.8845984
## 4129 0.8880126 0.8709579 0.8816392 0.8996840
## 4130 0.8348348 0.8709579 0.8932935 0.8845984
## 4131 0.8657143 0.8709579 0.8932935 0.8845984
## 4132 0.8967552 0.8709579 0.8816392 0.8845984
## 4133 0.8657143 0.8709579 0.8932935 0.8845984
## 4134 0.8657143 0.8709579 0.8816392 0.8845984
## 4135 0.8880126 0.8709579 0.8932935 0.8845984
## 4136 0.8657143 0.8709579 0.8932935 0.8845984
## 4137 0.9075630 0.8709579 0.8816392 0.8845984
## 4138 0.8657143 0.8709579 0.8816392 0.8996840
## 4139 0.9057377 0.8709579 0.8932935 0.8845984
## 4140 0.8880126 0.8709579 0.8932935 0.8845984
## 4141 0.9156328 0.8709579 0.9032258 0.9032258
## 4142 0.9075630 0.9512195 0.8816392 0.8845984
## 4143 0.8657143 0.8709579 0.8816392 0.8845984
## 4144 0.8967552 0.9512195 0.8816392 0.8845984
## 4145 0.9057377 0.9512195 0.8816392 0.8845984
## 4146 0.8967552 0.8709579 0.8816392 0.8845984
## 4147 0.8880126 0.8709579 0.8816392 0.8845984
## 4148 0.8880126 0.9512195 0.8816392 0.8845984
## 4149 0.8880126 0.8709579 0.8816392 0.8845984
## 4150 0.9075630 0.8709579 0.8932935 0.8845984
## 4151 0.8880126 0.8709579 0.8816392 0.8845984
## 4152 0.8880126 0.8709579 0.8816392 0.8845984
## 4153 0.8967552 0.8709579 0.8816392 0.8845984
## 4154 0.8657143 0.8709579 0.8932935 0.8845984
## 4155 0.8880126 0.8709579 0.8816392 0.8845984
## 4156 0.8657143 0.8709579 0.8932935 0.8845984
## 4157 0.8880126 0.9512195 0.8816392 0.8996840
## 4158 0.9075630 0.8709579 0.8816392 0.8845984
## 4159 0.8657143 0.8709579 0.8932935 0.8845984
## 4160 0.9156328 0.8709579 0.8932935 0.8845984
## 4161 0.9057377 0.9512195 0.8932935 0.8845984
## 4162 0.8657143 0.8709579 0.8816392 0.8845984
## 4163 0.8657143 0.8709579 0.8932935 0.8845984
## 4164 0.8657143 0.9512195 0.8816392 0.8845984
## 4165 0.9057377 0.8709579 0.8932935 0.8845984
## 4166 0.8880126 0.8709579 0.8816392 0.8845984
## 4167 0.8657143 0.8709579 0.8932935 0.8845984
## 4168 0.9156328 0.8709579 0.8932935 0.8845984
## 4169 0.8880126 0.8709579 0.8932935 0.8845984
## 4170 0.8880126 0.8709579 0.8932935 0.8996840
## 4171 0.8657143 0.8709579 0.8816392 0.8996840
## 4172 0.8880126 0.8709579 0.9032258 0.9032258
## 4173 0.8657143 0.8709579 0.8816392 0.8845984
## 4174 0.8657143 0.8709579 0.8816392 0.8845984
## 4175 0.8880126 0.8709579 0.8932935 0.8996840
## 4176 0.9156328 0.9512195 0.8816392 0.8996840
## 4177 0.9156328 0.8709579 0.8816392 0.8845984
## 4178 0.8657143 0.8709579 0.8932935 0.8845984
## 4179 0.8348348 0.9512195 0.8816392 0.8845984
## 4180 0.9156328 0.8709579 0.8932935 0.8845984
## 4181 0.8967552 0.8709579 0.8816392 0.8996840
## 4182 0.8657143 0.8709579 0.8816392 0.8845984
## 4183 0.8880126 0.8709579 0.8816392 0.8996840
## 4184 0.9075630 0.9512195 0.8816392 0.8845984
## 4185 0.8657143 0.8709579 0.8816392 0.8996840
## 4186 0.9057377 0.8709579 0.8816392 0.8845984
## 4187 0.9075630 0.8709579 0.8816392 0.8845984
## 4188 0.9057377 0.8709579 0.8932935 0.8996840
## 4189 0.8967552 0.8709579 0.8816392 0.8845984
## 4190 0.8657143 0.8709579 0.8932935 0.8845984
## 4191 0.8880126 0.8709579 0.8932935 0.8845984
## 4192 0.9075630 0.8709579 0.8816392 0.8845984
## 4193 0.8967552 0.8709579 0.9032258 0.9032258
## 4194 0.8657143 0.8709579 0.8932935 0.8845984
## 4195 0.9156328 0.8709579 0.8816392 0.8845984
## 4196 0.9075630 0.8709579 0.8816392 0.8845984
## 4197 0.8880126 0.8709579 0.8816392 0.8845984
## 4198 0.9156328 0.9512195 0.8816392 0.8845984
## 4199 0.8657143 0.8709579 0.8932935 0.8996840
## 4200 0.8880126 0.8709579 0.8932935 0.8845984
## 4201 0.8657143 0.8709579 0.8816392 0.8845984
## 4202 0.8348348 0.8709579 0.8816392 0.8845984
## 4203 0.8657143 0.8709579 0.8816392 0.8845984
## 4204 0.9075630 0.8709579 0.8816392 0.8845984
## 4205 0.8967552 0.9512195 0.8816392 0.8845984
## 4206 0.8657143 0.8709579 0.8932935 0.8845984
## 4207 0.8657143 0.8709579 0.8932935 0.8996840
## 4208 0.8657143 0.9512195 0.8816392 0.8845984
## 4209 0.8657143 0.8709579 0.8932935 0.8845984
## 4210 0.9075630 0.8709579 0.8816392 0.8845984
## 4211 0.8657143 0.9512195 0.8816392 0.8996840
## 4212 0.9156328 0.8709579 0.8816392 0.8845984
## 4213 0.8657143 0.8709579 0.8816392 0.8996840
## 4214 0.9057377 0.8709579 0.8816392 0.8845984
## 4215 0.8657143 0.8709579 0.8932935 0.8845984
## 4216 0.9156328 0.8709579 0.8816392 0.8845984
## 4217 0.8967552 0.9512195 0.8816392 0.8845984
## 4218 0.9057377 0.8709579 0.8932935 0.8845984
## 4219 0.8880126 0.9512195 0.8816392 0.8845984
## 4220 0.8967552 0.8709579 0.8932935 0.8845984
## 4221 0.8657143 0.8709579 0.8932935 0.8845984
## 4222 0.8880126 0.8709579 0.8816392 0.8845984
## 4223 0.8657143 0.8709579 0.8932935 0.8996840
## 4224 0.8657143 0.8709579 0.8816392 0.8845984
## 4225 0.8967552 0.8709579 0.8816392 0.8845984
## 4226 0.9075630 0.9512195 0.8932935 0.8845984
## 4227 0.9075630 0.8709579 0.8816392 0.8845984
## 4228 0.8880126 0.8709579 0.8932935 0.8845984
## 4229 0.9156328 0.8709579 0.8816392 0.8845984
## 4230 0.8657143 0.8709579 0.8816392 0.8845984
## 4231 0.9156328 0.8709579 0.8816392 0.8845984
## 4232 0.8348348 0.8709579 0.8932935 0.8845984
## 4233 0.8967552 0.8709579 0.8816392 0.8845984
## 4234 0.9075630 0.9512195 0.8932935 0.8845984
## 4235 0.9075630 0.8709579 0.8816392 0.8845984
## 4236 0.8657143 0.8709579 0.8816392 0.8845984
## 4237 0.8657143 0.8709579 0.8816392 0.8845984
## 4238 0.8657143 0.8709579 0.8816392 0.8845984
## 4239 0.9057377 0.8709579 0.8816392 0.8845984
## 4240 0.8880126 0.8709579 0.8816392 0.8845984
## 4241 0.9075630 0.8709579 0.8816392 0.8845984
## 4242 0.9075630 0.9512195 0.8932935 0.8845984
## 4243 0.9057377 0.8709579 0.8816392 0.8845984
## 4244 0.8880126 0.8709579 0.8816392 0.8845984
## 4245 0.8348348 0.8709579 0.8932935 0.8996840
## 4246 0.8657143 0.8709579 0.8932935 0.8845984
## 4247 0.8880126 0.8709579 0.8932935 0.8845984
## 4248 0.8657143 0.8709579 0.8932935 0.8845984
## 4249 0.8880126 0.8709579 0.8932935 0.8845984
## 4250 0.8657143 0.9512195 0.8816392 0.8845984
## 4251 0.8967552 0.8709579 0.8932935 0.8845984
## 4252 0.8967552 0.8709579 0.8816392 0.8996840
## 4253 0.8657143 0.8709579 0.8932935 0.8845984
## 4254 0.8967552 0.8709579 0.8932935 0.8845984
## 4255 0.8967552 0.9512195 0.8816392 0.8845984
## 4256 0.8657143 0.8709579 0.8816392 0.8996840
## 4257 0.8880126 0.8709579 0.8816392 0.8845984
## 4258 0.9075630 0.8709579 0.8816392 0.8845984
## 4259 0.8880126 0.8709579 0.8816392 0.8845984
## 4260 0.8880126 0.9512195 0.8932935 0.8845984
## 4261 0.8348348 0.8709579 0.8816392 0.8845984
## 4262 0.9075630 0.9512195 0.8816392 0.8845984
## 4263 0.8348348 0.9512195 0.8932935 0.8845984
## 4264 0.8967552 0.8709579 0.9032258 0.9032258
## 4265 0.9156328 0.9512195 0.8932935 0.8845984
## 4266 0.8967552 0.9512195 0.8816392 0.8845984
## 4267 0.8657143 0.8709579 0.8816392 0.8845984
## 4268 0.8967552 0.8709579 0.8932935 0.8996840
## 4269 0.8348348 0.8709579 0.8816392 0.8845984
## 4270 0.8348348 0.8709579 0.8932935 0.8845984
## 4271 0.8880126 0.8709579 0.8932935 0.8845984
## 4272 0.8967552 0.8709579 0.8816392 0.8845984
## 4273 0.8967552 0.8709579 0.8816392 0.8845984
## 4274 0.8880126 0.8709579 0.8932935 0.8996840
## 4275 0.8967552 0.8709579 0.8816392 0.8845984
## 4276 0.8657143 0.8709579 0.8816392 0.8845984
## 4277 0.8657143 0.8709579 0.8932935 0.8845984
## 4278 0.8657143 0.8709579 0.8816392 0.8996840
## 4279 0.8657143 0.8709579 0.8932935 0.8845984
## 4280 0.9156328 0.8709579 0.8932935 0.8996840
## 4281 0.8880126 0.8709579 0.8932935 0.8845984
## 4282 0.8880126 0.8709579 0.8932935 0.8845984
## 4283 0.8657143 0.8709579 0.8816392 0.8845984
## 4284 0.8657143 0.8709579 0.8816392 0.8996840
## 4285 0.9156328 0.8709579 0.8932935 0.8845984
## 4286 0.8967552 0.8709579 0.8816392 0.8845984
## 4287 0.9057377 0.9512195 0.8932935 0.8996840
## 4288 0.9075630 0.9512195 0.8816392 0.8845984
## 4289 0.8657143 0.8709579 0.8816392 0.8845984
## 4290 0.8657143 0.8709579 0.8816392 0.8845984
## 4291 0.9075630 0.9512195 0.8932935 0.8845984
## 4292 0.9075630 0.8709579 0.8932935 0.8845984
## 4293 0.9156328 0.9512195 0.8932935 0.8845984
## 4294 0.8967552 0.9512195 0.8932935 0.8996840
## 4295 0.8657143 0.8709579 0.8816392 0.8845984
## 4296 0.8657143 0.8709579 0.8932935 0.8845984
## 4297 0.9156328 0.8709579 0.8816392 0.8845984
## 4298 0.8967552 0.8709579 0.8932935 0.8845984
## 4299 0.8657143 0.8709579 0.8932935 0.8845984
## 4300 0.8348348 0.8709579 0.8816392 0.8845984
## 4301 0.8880126 0.8709579 0.9032258 0.9032258
## 4302 0.8880126 0.8709579 0.8932935 0.8845984
## 4303 0.8348348 0.8709579 0.8816392 0.8845984
## 4304 0.9156328 0.8709579 0.8816392 0.8845984
## 4305 0.8880126 0.8709579 0.8932935 0.8996840
## 4306 0.8657143 0.8709579 0.8816392 0.8996840
## 4307 0.8967552 0.8709579 0.8932935 0.8845984
## 4308 0.8657143 0.8709579 0.9032258 0.9032258
## 4309 0.8657143 0.8709579 0.8932935 0.8845984
## 4310 0.8657143 0.8709579 0.8932935 0.8996840
## 4311 0.8657143 0.8709579 0.8816392 0.8845984
## 4312 0.8967552 0.8709579 0.8932935 0.8845984
## 4313 0.8657143 0.8709579 0.8932935 0.8845984
## 4314 0.9156328 0.8709579 0.8932935 0.8845984
## 4315 0.9075630 0.8709579 0.8932935 0.8845984
## 4316 0.8657143 0.8709579 0.8816392 0.8845984
## 4317 0.8880126 0.8709579 0.8932935 0.8845984
## 4318 0.8348348 0.8709579 0.8816392 0.8996840
## 4319 0.8657143 0.8709579 0.8816392 0.8845984
## 4320 0.9075630 0.8709579 0.8932935 0.8845984
## 4321 0.9156328 0.8709579 0.8816392 0.8845984
## 4322 0.8657143 0.8709579 0.8932935 0.8845984
## 4323 0.8657143 0.8709579 0.8932935 0.8845984
## 4324 0.8657143 0.8709579 0.8816392 0.8845984
## 4325 0.8657143 0.8709579 0.8932935 0.8845984
## 4326 0.9156328 0.9512195 0.8816392 0.8845984
## 4327 0.9075630 0.8709579 0.8932935 0.8845984
## 4328 0.8880126 0.8709579 0.9032258 0.9032258
## 4329 0.9075630 0.8709579 0.8816392 0.8996840
## 4330 0.8657143 0.8709579 0.8816392 0.8845984
## 4331 0.8880126 0.8709579 0.8932935 0.8845984
## 4332 0.8657143 0.8709579 0.8816392 0.8845984
## 4333 0.8967552 0.8709579 0.8932935 0.8845984
## 4334 0.8880126 0.8709579 0.8816392 0.8996840
## 4335 0.8657143 0.8709579 0.8816392 0.8845984
## 4336 0.8657143 0.8709579 0.8816392 0.8845984
## 4337 0.8657143 0.8709579 0.8932935 0.8845984
## 4338 0.8657143 0.8709579 0.8816392 0.8845984
## 4339 0.8880126 0.8709579 0.8932935 0.8845984
## 4340 0.9075630 0.8709579 0.8816392 0.8996840
## 4341 0.9057377 0.9512195 0.8932935 0.8845984
## 4342 0.8657143 0.8709579 0.8932935 0.8845984
## 4343 0.8657143 0.8709579 0.8816392 0.8845984
## 4344 0.9075630 0.8709579 0.8932935 0.8845984
## 4345 0.8880126 0.8709579 0.8932935 0.8845984
## 4346 0.8880126 0.8709579 0.8932935 0.8996840
## 4347 0.8967552 0.9512195 0.8816392 0.8845984
## 4348 0.9156328 0.8709579 0.8816392 0.8845984
## 4349 0.8657143 0.8709579 0.8932935 0.8845984
## 4350 0.9075630 0.8709579 0.9032258 0.9032258
## 4351 0.8880126 0.8709579 0.8816392 0.8845984
## 4352 0.9057377 0.8709579 0.8932935 0.8996840
## 4353 0.8880126 0.8709579 0.8816392 0.8845984
## 4354 0.9057377 0.9512195 0.8816392 0.8845984
## 4355 0.9156328 0.8709579 0.8816392 0.8845984
## 4356 0.9156328 0.8709579 0.8932935 0.8845984
## 4357 0.8967552 0.8709579 0.8816392 0.8845984
## 4358 0.8657143 0.8709579 0.8816392 0.8845984
## 4359 0.9156328 0.8709579 0.8932935 0.8996840
## 4360 0.9057377 0.8709579 0.8932935 0.8845984
## 4361 0.8657143 0.8709579 0.8816392 0.8845984
## 4362 0.9075630 0.9512195 0.8816392 0.8845984
## 4363 0.8967552 0.9512195 0.8932935 0.8845984
## 4364 0.8657143 0.8709579 0.8932935 0.8845984
## 4365 0.9156328 0.8709579 0.8816392 0.8845984
## 4366 0.8880126 0.8709579 0.8932935 0.8845984
## 4367 0.9156328 0.8709579 0.8816392 0.8845984
## 4368 0.8967552 0.8709579 0.8816392 0.8845984
## 4369 0.9156328 0.9512195 0.8932935 0.8845984
## 4370 0.9057377 0.8709579 0.8932935 0.8845984
## 4371 0.9057377 0.9512195 0.8932935 0.8845984
## 4372 0.8967552 0.8709579 0.8932935 0.8845984
## 4373 0.8657143 0.8709579 0.8816392 0.8845984
## 4374 0.8657143 0.8709579 0.8932935 0.8845984
## 4375 0.9156328 0.8709579 0.8932935 0.8845984
## 4376 0.9156328 0.8709579 0.8816392 0.8845984
## 4377 0.8880126 0.8709579 0.8816392 0.8845984
## 4378 0.8657143 0.8709579 0.8816392 0.8845984
## 4379 0.8880126 0.8709579 0.8816392 0.8845984
## 4380 0.8967552 0.8709579 0.8816392 0.8845984
## 4381 0.8967552 0.8709579 0.8932935 0.8845984
## 4382 0.8880126 0.8709579 0.8932935 0.8845984
## 4383 0.8657143 0.8709579 0.8932935 0.8845984
## 4384 0.9156328 0.8709579 0.8932935 0.8845984
## 4385 0.9156328 0.8709579 0.8932935 0.8845984
## 4386 0.8967552 0.8709579 0.8816392 0.8845984
## 4387 0.8657143 0.8709579 0.8816392 0.8845984
## 4388 0.8657143 0.8709579 0.8816392 0.8845984
## 4389 0.8880126 0.8709579 0.8816392 0.8845984
## 4390 0.8880126 0.8709579 0.8932935 0.8845984
## 4391 0.9156328 0.9512195 0.8932935 0.8845984
## 4392 0.8657143 0.8709579 0.8816392 0.8845984
## 4393 0.9057377 0.9512195 0.8816392 0.8845984
## 4394 0.8967552 0.8709579 0.8932935 0.8845984
## 4395 0.8657143 0.8709579 0.9032258 0.9032258
## 4396 0.8657143 0.8709579 0.8932935 0.8845984
## 4397 0.9156328 0.8709579 0.8816392 0.8845984
## 4398 0.8657143 0.8709579 0.8932935 0.8845984
## 4399 0.9156328 0.8709579 0.8816392 0.8845984
## 4400 0.8880126 0.8709579 0.8816392 0.8845984
## 4401 0.8657143 0.8709579 0.8816392 0.8845984
## 4402 0.8880126 0.8709579 0.8816392 0.8845984
## 4403 0.9057377 0.8709579 0.8816392 0.8996840
## 4404 0.9156328 0.8709579 0.8816392 0.8996840
## 4405 0.8880126 0.9512195 0.8816392 0.8845984
## 4406 0.8880126 0.8709579 0.8932935 0.8996840
## 4407 0.8967552 0.9512195 0.8932935 0.8845984
## 4408 0.8657143 0.8709579 0.8816392 0.8845984
## 4409 0.8657143 0.8709579 0.8816392 0.8845984
## 4410 0.8967552 0.9512195 0.8816392 0.8845984
## 4411 0.9075630 0.8709579 0.8816392 0.8845984
## 4412 0.8967552 0.9512195 0.8932935 0.8845984
## 4413 0.9075630 0.8709579 0.8816392 0.8845984
## 4414 0.9156328 0.9512195 0.8816392 0.8996840
## 4415 0.9075630 0.8709579 0.8932935 0.8845984
## 4416 0.8348348 0.9512195 0.8932935 0.8845984
## 4417 0.8657143 0.8709579 0.8816392 0.8845984
## 4418 0.9057377 0.8709579 0.8932935 0.8845984
## 4419 0.9156328 0.8709579 0.8932935 0.8845984
## 4420 0.8880126 0.8709579 0.8932935 0.8845984
## 4421 0.9156328 0.8709579 0.8932935 0.8996840
## 4422 0.9156328 0.8709579 0.8816392 0.8845984
## 4423 0.9156328 0.9512195 0.8932935 0.8845984
## 4424 0.8880126 0.8709579 0.8932935 0.8845984
## 4425 0.8880126 0.8709579 0.8816392 0.8845984
## 4426 0.8880126 0.8709579 0.8932935 0.8845984
## 4427 0.9075630 0.9512195 0.8932935 0.8845984
## 4428 0.8967552 0.8709579 0.8816392 0.8845984
## 4429 0.8657143 0.8709579 0.8816392 0.8845984
## 4430 0.9156328 0.8709579 0.8816392 0.8845984
## 4431 0.9057377 0.9512195 0.8932935 0.8845984
## 4432 0.8657143 0.9512195 0.8932935 0.8845984
## 4433 0.8657143 0.8709579 0.8932935 0.8845984
## 4434 0.8967552 0.8709579 0.8932935 0.8845984
## 4435 0.9156328 0.8709579 0.8932935 0.8845984
## 4436 0.8657143 0.8709579 0.8816392 0.8845984
## 4437 0.8348348 0.8709579 0.8816392 0.8996840
## 4438 0.8657143 0.9512195 0.8816392 0.8845984
## 4439 0.8880126 0.8709579 0.8816392 0.8845984
## 4440 0.8967552 0.8709579 0.8932935 0.8845984
## 4441 0.8657143 0.9512195 0.8932935 0.8845984
## 4442 0.8880126 0.8709579 0.8932935 0.8996840
## 4443 0.8657143 0.8709579 0.8816392 0.8845984
## 4444 0.9057377 0.9512195 0.8816392 0.8845984
## 4445 0.8657143 0.9512195 0.8932935 0.8845984
## 4446 0.9075630 0.9512195 0.8816392 0.8845984
## 4447 0.8880126 0.8709579 0.8816392 0.8845984
## 4448 0.9075630 0.8709579 0.8932935 0.8845984
## 4449 0.9057377 0.8709579 0.8816392 0.8996840
## 4450 0.8657143 0.8709579 0.8932935 0.8845984
## 4451 0.8967552 0.8709579 0.8816392 0.8845984
## 4452 0.8657143 0.8709579 0.8816392 0.8845984
## 4453 0.9156328 0.8709579 0.8816392 0.8845984
## 4454 0.8880126 0.8709579 0.8816392 0.8845984
## 4455 0.8657143 0.8709579 0.8932935 0.8845984
## 4456 0.9075630 0.8709579 0.8816392 0.8996840
## 4457 0.8657143 0.8709579 0.8816392 0.8845984
## 4458 0.8880126 0.8709579 0.8932935 0.8845984
## 4459 0.9075630 0.8709579 0.8816392 0.8845984
## 4460 0.8657143 0.9512195 0.8932935 0.8845984
## 4461 0.9075630 0.8709579 0.8816392 0.8996840
## 4462 0.9156328 0.8709579 0.8932935 0.8845984
## 4463 0.8657143 0.8709579 0.8816392 0.8845984
## 4464 0.8348348 0.8709579 0.8816392 0.8845984
## 4465 0.8967552 0.8709579 0.8816392 0.8845984
## 4466 0.8967552 0.8709579 0.8932935 0.8845984
## 4467 0.9057377 0.8709579 0.8816392 0.8845984
## 4468 0.8880126 0.8709579 0.8932935 0.8996840
## 4469 0.9057377 0.8709579 0.8932935 0.8996840
## 4470 0.8880126 0.8709579 0.8816392 0.8845984
## 4471 0.9075630 0.8709579 0.8932935 0.8996840
## 4472 0.9156328 0.8709579 0.8816392 0.8845984
## 4473 0.8880126 0.8709579 0.8932935 0.8845984
## 4474 0.8880126 0.8709579 0.8932935 0.8845984
## 4475 0.9156328 0.8709579 0.8932935 0.8845984
## 4476 0.8880126 0.9512195 0.8816392 0.8996840
## 4477 0.9057377 0.8709579 0.8932935 0.8845984
## 4478 0.9057377 0.9512195 0.8816392 0.8845984
## 4479 0.8880126 0.8709579 0.8816392 0.8845984
## 4480 0.9075630 0.8709579 0.8816392 0.8845984
## 4481 0.8967552 0.8709579 0.8932935 0.8845984
## 4482 0.9075630 0.9512195 0.8816392 0.8845984
## 4483 0.8967552 0.8709579 0.8932935 0.8845984
## 4484 0.8967552 0.8709579 0.8816392 0.8996840
## 4485 0.8348348 0.9512195 0.8932935 0.8845984
## 4486 0.8657143 0.8709579 0.8816392 0.8845984
## 4487 0.8967552 0.8709579 0.8816392 0.8845984
## 4488 0.8657143 0.8709579 0.8932935 0.8845984
## 4489 0.9156328 0.9512195 0.8816392 0.8845984
## 4490 0.8880126 0.8709579 0.8816392 0.8996840
## 4491 0.8880126 0.9512195 0.8816392 0.8845984
## 4492 0.9156328 0.8709579 0.8932935 0.8845984
## 4493 0.8967552 0.8709579 0.8816392 0.8996840
## 4494 0.8657143 0.9512195 0.8932935 0.8845984
## 4495 0.8657143 0.8709579 0.8816392 0.8845984
## 4496 0.8657143 0.8709579 0.8932935 0.8845984
## 4497 0.9075630 0.8709579 0.8932935 0.8845984
## 4498 0.8657143 0.8709579 0.8816392 0.8845984
## 4499 0.9057377 0.9512195 0.8816392 0.8845984
## 4500 0.9156328 0.8709579 0.8816392 0.8845984
## 4501 0.8967552 0.8709579 0.8816392 0.8996840
## 4502 0.8880126 0.8709579 0.8816392 0.8845984
## 4503 0.8880126 0.8709579 0.9032258 0.9032258
## 4504 0.8880126 0.8709579 0.8932935 0.8845984
## 4505 0.9156328 0.9512195 0.8816392 0.8845984
## 4506 0.8967552 0.8709579 0.8816392 0.8845984
## 4507 0.8657143 0.8709579 0.8932935 0.8845984
## 4508 0.8657143 0.8709579 0.8932935 0.8845984
## 4509 0.8657143 0.8709579 0.8816392 0.8996840
## 4510 0.8657143 0.8709579 0.8932935 0.8845984
## 4511 0.8967552 0.8709579 0.8816392 0.8845984
## 4512 0.8657143 0.8709579 0.9032258 0.9032258
## 4513 0.8880126 0.8709579 0.8932935 0.8845984
## 4514 0.9075630 0.8709579 0.8932935 0.8845984
## 4515 0.9156328 0.8709579 0.8816392 0.8845984
## 4516 0.8880126 0.9512195 0.8932935 0.8845984
## 4517 0.8880126 0.8709579 0.8816392 0.8845984
## 4518 0.9075630 0.9512195 0.8932935 0.8845984
## 4519 0.8657143 0.8709579 0.8816392 0.8845984
## 4520 0.8348348 0.8709579 0.8932935 0.8996840
## 4521 0.9156328 0.8709579 0.8816392 0.8845984
## 4522 0.8657143 0.8709579 0.8816392 0.8996840
## 4523 0.8967552 0.8709579 0.8932935 0.8845984
## 4524 0.9075630 0.9512195 0.8932935 0.8996840
## 4525 0.9156328 0.8709579 0.8932935 0.8996840
## 4526 0.8967552 0.8709579 0.8816392 0.8845984
## 4527 0.9156328 0.8709579 0.8816392 0.8845984
## 4528 0.8880126 0.8709579 0.8932935 0.8845984
## 4529 0.8657143 0.8709579 0.8816392 0.8996840
## 4530 0.9156328 0.8709579 0.8816392 0.8845984
## 4531 0.9075630 0.9512195 0.8932935 0.8845984
## 4532 0.8657143 0.8709579 0.8932935 0.8845984
## 4533 0.9156328 0.8709579 0.8816392 0.8996840
## 4534 0.8657143 0.8709579 0.8932935 0.8845984
## 4535 0.9075630 0.9512195 0.8816392 0.8996840
## 4536 0.8657143 0.8709579 0.8816392 0.8996840
## 4537 0.8880126 0.8709579 0.8816392 0.8996840
## 4538 0.8348348 0.9512195 0.9032258 0.9032258
## 4539 0.8880126 0.8709579 0.8816392 0.8845984
## 4540 0.8657143 0.8709579 0.8816392 0.8996840
## 4541 0.8880126 0.8709579 0.8816392 0.8845984
## 4542 0.8880126 0.9512195 0.8816392 0.8845984
## 4543 0.8657143 0.8709579 0.8816392 0.8845984
## 4544 0.8657143 0.8709579 0.8816392 0.8845984
## 4545 0.9156328 0.8709579 0.8816392 0.8845984
## 4546 0.8657143 0.8709579 0.8932935 0.8845984
## 4547 0.8657143 0.8709579 0.8932935 0.8845984
## 4548 0.8880126 0.8709579 0.8932935 0.8845984
## 4549 0.8657143 0.9512195 0.8816392 0.8845984
## 4550 0.8348348 0.9512195 0.9032258 0.9032258
## 4551 0.9075630 0.8709579 0.8932935 0.8845984
## 4552 0.9075630 0.8709579 0.8816392 0.8845984
## 4553 0.8657143 0.8709579 0.8816392 0.8845984
## 4554 0.8880126 0.8709579 0.8816392 0.8845984
## 4555 0.9057377 0.8709579 0.8816392 0.8845984
## 4556 0.8657143 0.9512195 0.8816392 0.8845984
## 4557 0.8657143 0.8709579 0.8932935 0.8996840
## 4558 0.8880126 0.9512195 0.8816392 0.8845984
## 4559 0.8967552 0.8709579 0.8816392 0.8845984
## 4560 0.9075630 0.9512195 0.8932935 0.8845984
## 4561 0.8880126 0.8709579 0.8932935 0.8845984
## 4562 0.9156328 0.8709579 0.8932935 0.8996840
## 4563 0.9075630 0.8709579 0.8932935 0.8845984
## 4564 0.8880126 0.9512195 0.8816392 0.8845984
## 4565 0.8967552 0.8709579 0.8816392 0.8996840
## 4566 0.8967552 0.8709579 0.8816392 0.8845984
## 4567 0.8967552 0.8709579 0.8816392 0.8845984
## 4568 0.8657143 0.8709579 0.8816392 0.8996840
## 4569 0.9075630 0.8709579 0.9032258 0.9032258
## 4570 0.8657143 0.8709579 0.8932935 0.8845984
## 4571 0.8967552 0.8709579 0.8816392 0.8996840
## 4572 0.8880126 0.8709579 0.8816392 0.8845984
## 4573 0.9075630 0.9512195 0.8816392 0.8845984
## 4574 0.9156328 0.8709579 0.8932935 0.8845984
## 4575 0.8657143 0.8709579 0.8932935 0.8845984
## 4576 0.8657143 0.8709579 0.8932935 0.8845984
## 4577 0.8967552 0.8709579 0.8932935 0.8845984
## 4578 0.8880126 0.8709579 0.8932935 0.8845984
## 4579 0.9156328 0.8709579 0.8932935 0.8845984
## 4580 0.9156328 0.9512195 0.9032258 0.9032258
## 4581 0.8657143 0.8709579 0.8932935 0.8845984
## 4582 0.9156328 0.8709579 0.8816392 0.8996840
## 4583 0.9156328 0.8709579 0.8932935 0.8845984
## 4584 0.8657143 0.8709579 0.8932935 0.8845984
## 4585 0.8657143 0.9512195 0.9032258 0.9032258
## 4586 0.8880126 0.8709579 0.8932935 0.8845984
## 4587 0.8657143 0.9512195 0.8932935 0.8996840
## 4588 0.8880126 0.8709579 0.8816392 0.8845984
## 4589 0.8880126 0.8709579 0.8816392 0.8845984
## 4590 0.8880126 0.9512195 0.8816392 0.8845984
## 4591 0.9156328 0.8709579 0.8932935 0.8845984
## 4592 0.8880126 0.8709579 0.8816392 0.8845984
## 4593 0.8657143 0.8709579 0.8932935 0.8845984
## 4594 0.8880126 0.8709579 0.8932935 0.8845984
## 4595 0.8657143 0.8709579 0.8932935 0.8996840
## 4596 0.9156328 0.9512195 0.8816392 0.8845984
## 4597 0.9075630 0.8709579 0.8932935 0.8845984
## 4598 0.9156328 0.8709579 0.8932935 0.8845984
## 4599 0.8880126 0.8709579 0.8932935 0.8845984
## 4600 0.8880126 0.8709579 0.8932935 0.8845984
## 4601 0.9057377 0.9512195 0.8932935 0.8845984
## 4602 0.8657143 0.8709579 0.8816392 0.8845984
## 4603 0.9075630 0.8709579 0.8816392 0.8996840
## 4604 0.8880126 0.8709579 0.8816392 0.8845984
## 4605 0.8880126 0.8709579 0.8932935 0.8845984
## 4606 0.8967552 0.8709579 0.8932935 0.8845984
## 4607 0.8657143 0.8709579 0.8932935 0.8996840
## 4608 0.8657143 0.8709579 0.8932935 0.8845984
## 4609 0.9075630 0.8709579 0.9032258 0.9032258
## 4610 0.8967552 0.9512195 0.8816392 0.8996840
## 4611 0.9075630 0.8709579 0.8932935 0.8845984
## 4612 0.9156328 0.8709579 0.8816392 0.8845984
## 4613 0.8657143 0.8709579 0.8816392 0.8845984
## 4614 0.9075630 0.9512195 0.8932935 0.8996840
## 4615 0.8967552 0.8709579 0.9032258 0.9032258
## 4616 0.8657143 0.8709579 0.9032258 0.9032258
## 4617 0.8348348 0.8709579 0.8816392 0.8845984
## 4618 0.9156328 0.8709579 0.8932935 0.8845984
## 4619 0.8657143 0.8709579 0.8816392 0.8996840
## 4620 0.8348348 0.8709579 0.8932935 0.8845984
## 4621 0.8657143 0.8709579 0.9032258 0.9032258
## 4622 0.8657143 0.8709579 0.8816392 0.8845984
## 4623 0.8657143 0.8709579 0.8816392 0.8845984
## 4624 0.8967552 0.8709579 0.8816392 0.8845984
## 4625 0.8967552 0.8709579 0.8932935 0.8845984
## 4626 0.8657143 0.8709579 0.9032258 0.9032258
## 4627 0.8657143 0.8709579 0.8816392 0.8845984
## 4628 0.8657143 0.8709579 0.8932935 0.8845984
## 4629 0.9057377 0.8709579 0.8932935 0.8845984
## 4630 0.8657143 0.8709579 0.8816392 0.8845984
## 4631 0.8880126 0.8709579 0.8932935 0.8845984
## 4632 0.8880126 0.9512195 0.8932935 0.8845984
## 4633 0.9075630 0.8709579 0.8932935 0.8996840
## 4634 0.8657143 0.8709579 0.8932935 0.8845984
## 4635 0.8657143 0.9512195 0.8816392 0.8996840
## 4636 0.8967552 0.8709579 0.8932935 0.8845984
## 4637 0.8657143 0.8709579 0.8932935 0.8845984
## 4638 0.9075630 0.9512195 0.8816392 0.8996840
## 4639 0.9156328 0.9512195 0.8932935 0.8845984
## 4640 0.8657143 0.8709579 0.8932935 0.8996840
## 4641 0.9156328 0.9512195 0.8932935 0.8845984
## 4642 0.8880126 0.8709579 0.8816392 0.8845984
## 4643 0.8967552 0.9512195 0.8932935 0.8996840
## 4644 0.8880126 0.8709579 0.8932935 0.8845984
## 4645 0.8967552 0.8709579 0.8932935 0.8845984
## 4646 0.8657143 0.8709579 0.8932935 0.8996840
## 4647 0.9156328 0.8709579 0.8816392 0.8845984
## 4648 0.9057377 0.8709579 0.8816392 0.8845984
## 4649 0.9156328 0.9512195 0.8816392 0.8845984
## 4650 0.9156328 0.8709579 0.8932935 0.8845984
## 4651 0.8880126 0.8709579 0.8816392 0.8845984
## 4652 0.9057377 0.8709579 0.8932935 0.8845984
## 4653 0.8880126 0.9512195 0.8816392 0.8996840
## 4654 0.8880126 0.9512195 0.8816392 0.8996840
## 4655 0.8657143 0.8709579 0.8816392 0.8845984
## 4656 0.9156328 0.8709579 0.8932935 0.8845984
## 4657 0.8657143 0.8709579 0.8932935 0.8845984
## 4658 0.8880126 0.8709579 0.8816392 0.8845984
## 4659 0.8657143 0.8709579 0.8816392 0.8845984
## 4660 0.8967552 0.8709579 0.8816392 0.8845984
## 4661 0.9075630 0.8709579 0.8816392 0.8996840
## 4662 0.8657143 0.8709579 0.8932935 0.8845984
## 4663 0.9156328 0.8709579 0.8932935 0.8845984
## 4664 0.9156328 0.8709579 0.8932935 0.8845984
## 4665 0.8657143 0.9512195 0.8816392 0.8845984
## 4666 0.8657143 0.8709579 0.8816392 0.8996840
## 4667 0.8657143 0.8709579 0.8816392 0.8996840
## 4668 0.9156328 0.9512195 0.8816392 0.8845984
## 4669 0.8967552 0.8709579 0.8816392 0.8845984
## 4670 0.9075630 0.8709579 0.8932935 0.8845984
## 4671 0.8880126 0.8709579 0.8816392 0.8845984
## 4672 0.8657143 0.8709579 0.8932935 0.8845984
## 4673 0.8657143 0.8709579 0.8816392 0.8845984
## 4674 0.9156328 0.9512195 0.8932935 0.8845984
## 4675 0.9156328 0.9512195 0.8932935 0.8845984
## 4676 0.8880126 0.9512195 0.8932935 0.8845984
## 4677 0.8967552 0.8709579 0.8816392 0.8845984
## 4678 0.8657143 0.8709579 0.8932935 0.8845984
## 4679 0.8880126 0.8709579 0.8816392 0.8845984
## 4680 0.8657143 0.8709579 0.8932935 0.8845984
## 4681 0.8880126 0.8709579 0.8816392 0.8845984
## 4682 0.8657143 0.8709579 0.8932935 0.8996840
## 4683 0.9156328 0.8709579 0.8816392 0.8845984
## 4684 0.8657143 0.8709579 0.8932935 0.8845984
## 4685 0.8657143 0.8709579 0.8816392 0.8845984
## 4686 0.8657143 0.9512195 0.8932935 0.8996840
## 4687 0.9075630 0.9512195 0.8932935 0.8845984
## 4688 0.8657143 0.8709579 0.8932935 0.8845984
## 4689 0.8657143 0.8709579 0.8932935 0.8845984
## 4690 0.8880126 0.8709579 0.8932935 0.8845984
## 4691 0.8657143 0.8709579 0.8816392 0.8845984
## 4692 0.8348348 0.9512195 0.8816392 0.8845984
## 4693 0.8880126 0.8709579 0.8932935 0.8845984
## 4694 0.8880126 0.8709579 0.8932935 0.8996840
## 4695 0.8967552 0.8709579 0.8932935 0.8845984
## 4696 0.8657143 0.9512195 0.8932935 0.8845984
## 4697 0.8967552 0.8709579 0.8816392 0.8845984
## 4698 0.9156328 0.9512195 0.8932935 0.8845984
## 4699 0.8880126 0.8709579 0.8816392 0.8845984
## 4700 0.8657143 0.8709579 0.8932935 0.8845984
## 4701 0.8657143 0.8709579 0.8816392 0.8996840
## 4702 0.8657143 0.8709579 0.8932935 0.8845984
## 4703 0.9057377 0.8709579 0.9032258 0.9032258
## 4704 0.8657143 0.8709579 0.8816392 0.8845984
## 4705 0.8967552 0.9512195 0.8932935 0.8845984
## 4706 0.8657143 0.8709579 0.8816392 0.8845984
## 4707 0.9156328 0.9512195 0.8816392 0.8845984
## 4708 0.8657143 0.8709579 0.8816392 0.8845984
## 4709 0.9156328 0.9512195 0.8932935 0.8845984
## 4710 0.8967552 0.8709579 0.8932935 0.8845984
## 4711 0.8880126 0.8709579 0.8932935 0.8845984
## 4712 0.8967552 0.8709579 0.8816392 0.8845984
## 4713 0.8880126 0.8709579 0.8932935 0.8845984
## 4714 0.8880126 0.8709579 0.8932935 0.8845984
## 4715 0.8657143 0.8709579 0.8816392 0.8845984
## 4716 0.8657143 0.8709579 0.8932935 0.8845984
## 4717 0.9156328 0.8709579 0.8816392 0.8845984
## 4718 0.9156328 0.8709579 0.8816392 0.8845984
## 4719 0.8967552 0.8709579 0.8932935 0.8845984
## 4720 0.8657143 0.8709579 0.8932935 0.8845984
## 4721 0.8967552 0.8709579 0.8816392 0.8845984
## 4722 0.8880126 0.8709579 0.8816392 0.8845984
## 4723 0.9057377 0.8709579 0.8816392 0.8845984
## 4724 0.9156328 0.8709579 0.8816392 0.8845984
## 4725 0.8657143 0.8709579 0.8816392 0.8845984
## 4726 0.9156328 0.9512195 0.8932935 0.8845984
## 4727 0.8967552 0.8709579 0.8816392 0.8845984
## 4728 0.8657143 0.9512195 0.8816392 0.8845984
## 4729 0.8348348 0.9512195 0.8816392 0.8845984
## 4730 0.8967552 0.8709579 0.8932935 0.8845984
## 4731 0.8657143 0.8709579 0.8932935 0.8845984
## 4732 0.8880126 0.8709579 0.8932935 0.8845984
## 4733 0.8880126 0.8709579 0.8932935 0.8845984
## 4734 0.8657143 0.8709579 0.8932935 0.8845984
## 4735 0.8880126 0.8709579 0.8932935 0.8845984
## 4736 0.9156328 0.9512195 0.8816392 0.8845984
## 4737 0.9075630 0.9512195 0.8932935 0.8845984
## 4738 0.9075630 0.8709579 0.8816392 0.8845984
## 4739 0.8657143 0.8709579 0.8816392 0.8845984
## 4740 0.8657143 0.8709579 0.8816392 0.8845984
## 4741 0.8657143 0.8709579 0.8932935 0.8845984
## 4742 0.8967552 0.8709579 0.8932935 0.8845984
## 4743 0.8967552 0.8709579 0.8816392 0.8996840
## 4744 0.9156328 0.8709579 0.8816392 0.8845984
## 4745 0.8657143 0.8709579 0.8816392 0.8845984
## 4746 0.8880126 0.8709579 0.9032258 0.9032258
## 4747 0.8880126 0.8709579 0.8816392 0.8845984
## 4748 0.8880126 0.9512195 0.8932935 0.8996840
## 4749 0.8880126 0.8709579 0.8816392 0.8845984
## 4750 0.8657143 0.9512195 0.8932935 0.8845984
## 4751 0.8967552 0.8709579 0.8816392 0.8845984
## 4752 0.8657143 0.8709579 0.8932935 0.8845984
## 4753 0.8657143 0.8709579 0.8816392 0.8845984
## 4754 0.8880126 0.8709579 0.8816392 0.8845984
## 4755 0.8880126 0.8709579 0.8816392 0.8845984
## 4756 0.8348348 0.8709579 0.8816392 0.8845984
## 4757 0.8967552 0.8709579 0.8816392 0.8996840
## 4758 0.9156328 0.8709579 0.8816392 0.8845984
## 4759 0.8880126 0.8709579 0.8816392 0.8996840
## 4760 0.9075630 0.8709579 0.8816392 0.8845984
## 4761 0.9156328 0.9512195 0.8816392 0.8996840
## 4762 0.8657143 0.8709579 0.8932935 0.8845984
## 4763 0.8967552 0.8709579 0.8932935 0.8845984
## 4764 0.9156328 0.9512195 0.8932935 0.8845984
## 4765 0.8967552 0.8709579 0.8932935 0.8845984
## 4766 0.9156328 0.8709579 0.8816392 0.8845984
## 4767 0.8657143 0.8709579 0.8816392 0.8845984
## 4768 0.8967552 0.8709579 0.8816392 0.8845984
## 4769 0.8348348 0.8709579 0.8816392 0.8845984
## 4770 0.8880126 0.8709579 0.8932935 0.8845984
## 4771 0.8657143 0.9512195 0.8816392 0.8845984
## 4772 0.8880126 0.8709579 0.8932935 0.8845984
## 4773 0.8880126 0.8709579 0.8932935 0.8845984
## 4774 0.8657143 0.8709579 0.8816392 0.8845984
## 4775 0.9075630 0.8709579 0.8932935 0.8845984
## 4776 0.8967552 0.8709579 0.8816392 0.8845984
## 4777 0.8880126 0.8709579 0.8816392 0.8845984
## 4778 0.8657143 0.8709579 0.8816392 0.8845984
## 4779 0.8967552 0.8709579 0.8932935 0.8845984
## 4780 0.8657143 0.8709579 0.8932935 0.8845984
## 4781 0.9075630 0.8709579 0.8816392 0.8845984
## 4782 0.8967552 0.8709579 0.8816392 0.8845984
## 4783 0.9057377 0.8709579 0.8816392 0.8996840
## 4784 0.8657143 0.8709579 0.8816392 0.8845984
## 4785 0.9057377 0.8709579 0.8816392 0.8996840
## 4786 0.9075630 0.9512195 0.8932935 0.8845984
## 4787 0.9075630 0.8709579 0.8816392 0.8996840
## 4788 0.8657143 0.8709579 0.8816392 0.8845984
## 4789 0.8967552 0.8709579 0.8816392 0.8996840
## 4790 0.8657143 0.8709579 0.8816392 0.8845984
## 4791 0.8348348 0.9512195 0.8816392 0.8845984
## 4792 0.9075630 0.8709579 0.8816392 0.8845984
## 4793 0.8880126 0.8709579 0.8816392 0.8845984
## 4794 0.8657143 0.8709579 0.8816392 0.8845984
## 4795 0.8657143 0.8709579 0.8816392 0.8845984
## 4796 0.8880126 0.9512195 0.8816392 0.8996840
## 4797 0.8880126 0.8709579 0.8932935 0.8845984
## 4798 0.8880126 0.8709579 0.8816392 0.8996840
## 4799 0.8880126 0.8709579 0.8816392 0.8845984
## 4800 0.8657143 0.8709579 0.8932935 0.8845984
## 4801 0.9057377 0.9512195 0.8932935 0.8845984
## 4802 0.8880126 0.8709579 0.8816392 0.8845984
## 4803 0.9057377 0.8709579 0.8932935 0.8845984
## 4804 0.8657143 0.8709579 0.8932935 0.8845984
## 4805 0.8657143 0.8709579 0.8816392 0.8845984
## 4806 0.8657143 0.8709579 0.9032258 0.9032258
## 4807 0.8657143 0.8709579 0.8816392 0.8845984
## 4808 0.8657143 0.8709579 0.8932935 0.8845984
## 4809 0.9057377 0.8709579 0.9032258 0.9032258
## 4810 0.9156328 0.8709579 0.8816392 0.8845984
## 4811 0.8657143 0.8709579 0.8816392 0.8845984
## 4812 0.8657143 0.8709579 0.8932935 0.8996840
## 4813 0.8348348 0.8709579 0.8932935 0.8845984
## 4814 0.8657143 0.8709579 0.8932935 0.8845984
## 4815 0.8348348 0.8709579 0.8932935 0.8996840
## 4816 0.8880126 0.8709579 0.8816392 0.8845984
## 4817 0.8880126 0.9512195 0.8816392 0.8845984
## 4818 0.8967552 0.8709579 0.8932935 0.8845984
## 4819 0.9075630 0.9512195 0.8932935 0.8845984
## 4820 0.8880126 0.8709579 0.8816392 0.8845984
## 4821 0.8967552 0.8709579 0.8932935 0.8845984
## 4822 0.9156328 0.8709579 0.8816392 0.8845984
## 4823 0.9156328 0.8709579 0.8816392 0.8996840
## 4824 0.8967552 0.8709579 0.8932935 0.8845984
## 4825 0.9156328 0.8709579 0.9032258 0.9032258
## 4826 0.9156328 0.8709579 0.8932935 0.8845984
## 4827 0.9156328 0.9512195 0.8816392 0.8845984
## 4828 0.8967552 0.8709579 0.8932935 0.8845984
## 4829 0.8967552 0.8709579 0.8816392 0.8845984
## 4830 0.9075630 0.8709579 0.8932935 0.8845984
## 4831 0.8967552 0.9512195 0.8932935 0.8845984
## 4832 0.8657143 0.8709579 0.8816392 0.8845984
## 4833 0.8657143 0.8709579 0.8932935 0.8845984
## 4834 0.9057377 0.8709579 0.8932935 0.8845984
## 4835 0.8880126 0.8709579 0.8816392 0.8845984
## 4836 0.8967552 0.8709579 0.8932935 0.8845984
## 4837 0.9075630 0.9512195 0.8816392 0.8996840
## 4838 0.8657143 0.8709579 0.8816392 0.8845984
## 4839 0.9156328 0.8709579 0.8932935 0.8845984
## 4840 0.9057377 0.9512195 0.8816392 0.8845984
## 4841 0.9057377 0.8709579 0.8932935 0.8996840
## 4842 0.8657143 0.8709579 0.8816392 0.8845984
## 4843 0.8880126 0.8709579 0.8816392 0.8996840
## 4844 0.9156328 0.8709579 0.8932935 0.8845984
## 4845 0.8657143 0.8709579 0.8932935 0.8845984
## 4846 0.8657143 0.8709579 0.8816392 0.8845984
## 4847 0.9057377 0.9512195 0.8816392 0.8845984
## 4848 0.9156328 0.9512195 0.8816392 0.8845984
## 4849 0.9156328 0.8709579 0.9032258 0.9032258
## 4850 0.8880126 0.8709579 0.8816392 0.8845984
## 4851 0.9057377 0.8709579 0.8816392 0.8845984
## 4852 0.9075630 0.8709579 0.8816392 0.8845984
## 4853 0.8657143 0.8709579 0.8816392 0.8996840
## 4854 0.9057377 0.8709579 0.8816392 0.8996840
## 4855 0.8657143 0.8709579 0.8932935 0.8845984
## 4856 0.8657143 0.8709579 0.8816392 0.8845984
## 4857 0.8657143 0.8709579 0.8816392 0.8845984
## 4858 0.9156328 0.8709579 0.8816392 0.8845984
## 4859 0.9075630 0.9512195 0.8932935 0.8845984
## 4860 0.8657143 0.8709579 0.8932935 0.8845984
## 4861 0.8967552 0.9512195 0.8932935 0.8845984
## 4862 0.8880126 0.8709579 0.8816392 0.8845984
## 4863 0.8967552 0.8709579 0.8932935 0.8845984
## 4864 0.9156328 0.8709579 0.8816392 0.8845984
## 4865 0.8967552 0.8709579 0.8816392 0.8845984
## 4866 0.8657143 0.8709579 0.9032258 0.9032258
## 4867 0.8657143 0.8709579 0.8816392 0.8845984
## 4868 0.9057377 0.8709579 0.8816392 0.8845984
## 4869 0.8657143 0.9512195 0.8932935 0.8996840
## 4870 0.8657143 0.8709579 0.8816392 0.8845984
## 4871 0.8880126 0.8709579 0.8816392 0.8996840
## 4872 0.9075630 0.9512195 0.8816392 0.8996840
## 4873 0.8967552 0.8709579 0.8816392 0.8845984
## 4874 0.8657143 0.8709579 0.8932935 0.8845984
## 4875 0.8880126 0.8709579 0.8932935 0.8845984
## 4876 0.9075630 0.8709579 0.8932935 0.8845984
## 4877 0.8657143 0.9512195 0.8932935 0.8845984
## 4878 0.8967552 0.8709579 0.8932935 0.8845984
## 4879 0.8657143 0.8709579 0.8816392 0.8845984
## 4880 0.8657143 0.8709579 0.8816392 0.8845984
## 4881 0.8967552 0.8709579 0.8816392 0.8845984
## 4882 0.8657143 0.9512195 0.8816392 0.8996840
## 4883 0.8880126 0.8709579 0.8816392 0.8845984
## 4884 0.8657143 0.8709579 0.8816392 0.8845984
## 4885 0.8880126 0.8709579 0.8816392 0.8845984
## 4886 0.8657143 0.8709579 0.8816392 0.8996840
## 4887 0.8880126 0.9512195 0.8932935 0.8845984
## 4888 0.8657143 0.8709579 0.8816392 0.8845984
## 4889 0.8880126 0.8709579 0.8932935 0.8845984
## 4890 0.8657143 0.8709579 0.8816392 0.8996840
## 4891 0.8880126 0.8709579 0.8816392 0.8845984
## 4892 0.9057377 0.8709579 0.8816392 0.8845984
## 4893 0.9057377 0.8709579 0.8816392 0.8845984
## 4894 0.8967552 0.9512195 0.8816392 0.8845984
## 4895 0.9156328 0.8709579 0.8816392 0.8845984
## 4896 0.8967552 0.8709579 0.8816392 0.8845984
## 4897 0.8657143 0.9512195 0.8932935 0.8996840
## 4898 0.8967552 0.8709579 0.8816392 0.8845984
## 4899 0.8657143 0.8709579 0.8816392 0.8845984
## 4900 0.8657143 0.9512195 0.8932935 0.8845984
## 4901 0.8657143 0.8709579 0.8932935 0.8996840
## 4902 0.9057377 0.8709579 0.8816392 0.8845984
## 4903 0.8348348 0.8709579 0.8932935 0.8845984
## 4904 0.8880126 0.8709579 0.8816392 0.8845984
## 4905 0.8657143 0.8709579 0.8816392 0.8845984
## 4906 0.8880126 0.9512195 0.8932935 0.8845984
## 4907 0.8880126 0.9512195 0.8816392 0.8845984
## 4908 0.8657143 0.8709579 0.8932935 0.8996840
## 4909 0.9075630 0.9512195 0.8932935 0.8996840
## 4910 0.8880126 0.8709579 0.8932935 0.8996840
## 4911 0.9075630 0.9512195 0.8816392 0.8845984
## 4912 0.8967552 0.8709579 0.9032258 0.9032258
## 4913 0.9156328 0.9512195 0.8932935 0.8996840
## 4914 0.8657143 0.8709579 0.8932935 0.8845984
## 4915 0.9156328 0.9512195 0.8816392 0.8845984
## 4916 0.9156328 0.9512195 0.8932935 0.8845984
## 4917 0.9156328 0.8709579 0.8932935 0.8845984
## 4918 0.8967552 0.8709579 0.8816392 0.8845984
## 4919 0.9075630 0.9512195 0.8816392 0.8996840
## 4920 0.8967552 0.8709579 0.8816392 0.8845984
## 4921 0.8657143 0.9512195 0.8816392 0.8845984
## 4922 0.8348348 0.8709579 0.8816392 0.8845984
## 4923 0.8657143 0.8709579 0.8816392 0.8845984
## 4924 0.9156328 0.8709579 0.8816392 0.8845984
## 4925 0.8880126 0.8709579 0.8932935 0.8845984
## 4926 0.9057377 0.8709579 0.8932935 0.8845984
## 4927 0.8880126 0.8709579 0.8932935 0.8845984
## 4928 0.8657143 0.8709579 0.8932935 0.8845984
## 4929 0.8657143 0.8709579 0.8932935 0.8845984
## 4930 0.9156328 0.8709579 0.8816392 0.8845984
## 4931 0.9075630 0.8709579 0.8816392 0.8845984
## 4932 0.8657143 0.8709579 0.8932935 0.8845984
## 4933 0.8657143 0.8709579 0.8816392 0.8845984
## 4934 0.8967552 0.8709579 0.8816392 0.8845984
## 4935 0.9075630 0.9512195 0.8816392 0.8845984
## 4936 0.9075630 0.9512195 0.8816392 0.8845984
## 4937 0.8657143 0.8709579 0.8932935 0.8845984
## 4938 0.8880126 0.9512195 0.8932935 0.8845984
## 4939 0.8880126 0.8709579 0.8816392 0.8845984
## 4940 0.8880126 0.9512195 0.8932935 0.8845984
## 4941 0.9057377 0.8709579 0.8816392 0.8845984
## 4942 0.8880126 0.8709579 0.8816392 0.8996840
## 4943 0.8967552 0.8709579 0.8816392 0.8845984
## 4944 0.8348348 0.9512195 0.8816392 0.8845984
## 4945 0.9156328 0.8709579 0.8816392 0.8845984
## 4946 0.8880126 0.8709579 0.8932935 0.8845984
## 4947 0.8880126 0.8709579 0.8816392 0.8845984
## 4948 0.8657143 0.8709579 0.8932935 0.8996840
## 4949 0.8657143 0.8709579 0.8816392 0.8996840
## 4950 0.9057377 0.8709579 0.8816392 0.8996840
## 4951 0.9075630 0.9512195 0.9032258 0.9032258
## 4952 0.8657143 0.8709579 0.8932935 0.8845984
## 4953 0.8657143 0.9512195 0.8932935 0.8845984
## 4954 0.8657143 0.8709579 0.8932935 0.8845984
## 4955 0.9156328 0.8709579 0.8816392 0.8845984
## 4956 0.8657143 0.8709579 0.8816392 0.8845984
## 4957 0.9075630 0.8709579 0.8932935 0.8845984
## 4958 0.8967552 0.9512195 0.8816392 0.8996840
## 4959 0.8880126 0.9512195 0.8816392 0.8845984
## 4960 0.8657143 0.8709579 0.8932935 0.8845984
## 4961 0.8880126 0.8709579 0.8816392 0.8996840
## 4962 0.8657143 0.8709579 0.8932935 0.8996840
## 4963 0.9057377 0.9512195 0.8816392 0.8845984
## 4964 0.9156328 0.9512195 0.8932935 0.8845984
## 4965 0.8657143 0.8709579 0.8816392 0.8845984
## 4966 0.8657143 0.9512195 0.8932935 0.8845984
## 4967 0.9075630 0.9512195 0.8932935 0.8845984
## 4968 0.8880126 0.8709579 0.8932935 0.8996840
## 4969 0.9156328 0.9512195 0.8932935 0.8845984
## 4970 0.8880126 0.8709579 0.8932935 0.8996840
## 4971 0.8657143 0.8709579 0.8816392 0.8845984
## 4972 0.8657143 0.8709579 0.9032258 0.9032258
## 4973 0.8348348 0.8709579 0.8816392 0.8845984
## 4974 0.8880126 0.8709579 0.8932935 0.8845984
## 4975 0.8657143 0.8709579 0.8816392 0.8996840
## 4976 0.8657143 0.8709579 0.8816392 0.8845984
## 4977 0.8967552 0.8709579 0.8932935 0.8845984
## 4978 0.8967552 0.9512195 0.8816392 0.8845984
## 4979 0.8657143 0.9512195 0.8816392 0.8845984
## 4980 0.8880126 0.9512195 0.8816392 0.8845984
## 4981 0.8657143 0.9512195 0.8932935 0.8845984
## 4982 0.9156328 0.8709579 0.8816392 0.8845984
## 4983 0.8967552 0.9512195 0.8932935 0.8845984
## 4984 0.9075630 0.8709579 0.8932935 0.8845984
## 4985 0.8657143 0.8709579 0.8816392 0.8845984
## 4986 0.9156328 0.9512195 0.8816392 0.8996840
## 4987 0.8880126 0.8709579 0.8816392 0.8845984
## 4988 0.9156328 0.8709579 0.8932935 0.8845984
## 4989 0.8657143 0.8709579 0.8816392 0.8845984
## 4990 0.9156328 0.8709579 0.8816392 0.8845984
## 4991 0.9075630 0.9512195 0.8816392 0.8996840
## 4992 0.9075630 0.8709579 0.8816392 0.8845984
## 4993 0.9057377 0.8709579 0.8932935 0.8845984
## 4994 0.8967552 0.9512195 0.8816392 0.8845984
## 4995 0.9156328 0.8709579 0.8816392 0.8845984
## 4996 0.9156328 0.9512195 0.8816392 0.8996840
## 4997 0.8880126 0.9512195 0.8816392 0.8845984
## 4998 0.8967552 0.8709579 0.8932935 0.8996840
## 4999 0.9057377 0.9512195 0.8932935 0.8845984
## contact_encoded month_encoded day_of_week_encoded poutcome_encoded
## 1 0.9439160 0.9321055 0.9090369 0.8534799
## 2 0.8540864 0.5408163 0.8890339 0.8534799
## 3 0.8540864 0.8148148 0.9090369 0.8534799
## 4 0.8540864 0.9321055 0.8890339 0.8534799
## 5 0.8540864 0.9321055 0.8890339 0.8534799
## 6 0.8540864 0.9321055 0.8890339 0.8534799
## 7 0.8540864 0.8877722 0.9090369 0.8534799
## 8 0.8540864 0.8148148 0.8791400 0.8534799
## 9 0.8540864 0.8148148 0.8791400 0.8534799
## 10 0.8540864 0.9321055 0.8721351 0.8534799
## 11 0.8540864 0.6137931 0.8721351 0.8534799
## 12 0.8540864 0.9321055 0.9090369 0.8534799
## 13 0.8540864 0.9010727 0.8791400 0.8534799
## 14 0.8540864 0.9321055 0.9090369 0.8534799
## 15 0.9439160 0.8148148 0.8890339 0.8534799
## 16 0.8540864 0.9321055 0.8890339 0.8534799
## 17 0.9439160 0.9321055 0.8890339 0.8534799
## 18 0.8540864 0.8148148 0.9090369 0.8534799
## 19 0.8540864 0.9321055 0.8721351 0.8534799
## 20 0.8540864 0.9321055 0.8890339 0.8534799
## 21 0.8540864 0.8148148 0.8874696 0.8534799
## 22 0.8540864 0.9010727 0.9090369 0.8534799
## 23 0.8540864 0.9321055 0.8890339 0.8534799
## 24 0.8540864 0.9010727 0.8791400 0.8534799
## 25 0.8540864 0.9321055 0.8791400 0.8534799
## 26 0.8540864 0.8864504 0.8721351 0.8534799
## 27 0.8540864 0.9010727 0.8791400 0.8534799
## 28 0.8540864 0.9321055 0.8791400 0.8534799
## 29 0.8540864 0.9321055 0.9090369 0.8534799
## 30 0.8540864 0.9321055 0.8890339 0.8534799
## 31 0.8540864 0.9321055 0.8890339 0.8534799
## 32 0.8540864 0.8148148 0.9090369 0.8534799
## 33 0.8540864 0.5408163 0.8890339 0.8534799
## 34 0.8540864 0.9321055 0.8721351 0.8534799
## 35 0.8540864 0.9321055 0.9090369 0.8534799
## 36 0.8540864 0.8148148 0.8890339 0.8534799
## 37 0.8540864 0.9321055 0.8890339 0.8534799
## 38 0.8540864 0.9321055 0.8791400 0.8534799
## 39 0.8540864 0.9321055 0.8890339 0.8534799
## 40 0.8540864 0.6137931 0.8890339 0.8534799
## 41 0.8540864 0.9010727 0.8791400 0.8534799
## 42 0.8540864 0.9321055 0.8890339 0.8534799
## 43 0.8540864 0.8877722 0.8890339 0.8534799
## 44 0.8540864 0.9321055 0.9090369 0.8534799
## 45 0.8540864 0.8148148 0.8874696 0.8534799
## 46 0.8540864 0.8148148 0.8890339 0.8534799
## 47 0.8540864 0.9321055 0.9090369 0.8534799
## 48 0.8540864 0.8877722 0.8791400 0.8534799
## 49 0.9439160 0.9010727 0.9090369 0.8534799
## 50 0.8540864 0.6137931 0.8721351 0.8534799
## 51 0.8540864 0.8864504 0.9090369 0.8534799
## 52 0.8540864 0.8148148 0.8890339 0.8534799
## 53 0.8540864 0.9321055 0.8791400 0.8534799
## 54 0.8540864 0.8148148 0.8890339 0.8534799
## 55 0.8540864 0.9321055 0.8721351 0.8534799
## 56 0.8540864 0.9321055 0.8890339 0.8534799
## 57 0.8540864 0.8877722 0.8874696 0.8534799
## 58 0.8540864 0.8148148 0.8791400 0.8534799
## 59 0.8540864 0.8148148 0.9090369 0.8534799
## 60 0.9439160 0.4949495 0.8791400 0.8534799
## 61 0.8540864 0.9321055 0.9090369 0.8534799
## 62 0.8540864 0.9321055 0.8874696 0.8534799
## 63 0.8540864 0.9321055 0.8890339 0.8534799
## 64 0.8540864 0.9010727 0.9090369 0.8534799
## 65 0.8540864 0.9010727 0.8890339 0.8534799
## 66 0.8540864 0.9010727 0.8874696 0.8534799
## 67 0.8540864 0.8148148 0.9090369 0.8534799
## 68 0.8540864 0.5408163 0.8890339 0.8534799
## 69 0.8540864 0.9321055 0.8874696 0.8534799
## 70 0.8540864 0.9080000 0.8890339 0.8534799
## 71 0.8540864 0.9321055 0.9090369 0.8534799
## 72 0.8540864 0.9321055 0.9090369 0.8534799
## 73 0.8540864 0.9321055 0.8890339 0.8534799
## 74 0.8540864 0.9321055 0.8874696 0.8534799
## 75 0.8540864 0.9321055 0.8890339 0.8534799
## 76 0.8540864 0.9321055 0.8791400 0.8534799
## 77 0.8540864 0.9010727 0.9090369 0.8534799
## 78 0.8540864 0.8148148 0.8791400 0.8534799
## 79 0.8540864 0.8864504 0.8721351 0.8534799
## 80 0.8540864 0.9321055 0.8721351 0.8534799
## 81 0.8540864 0.9010727 0.8721351 0.8534799
## 82 0.8540864 0.8148148 0.9090369 0.8534799
## 83 0.8540864 0.9080000 0.8890339 0.8534799
## 84 0.8540864 0.9010727 0.9090369 0.8534799
## 85 0.8540864 0.8148148 0.9090369 0.8534799
## 86 0.9439160 0.9321055 0.8791400 0.8534799
## 87 0.8540864 0.9010727 0.8721351 0.8534799
## 88 0.8540864 0.9321055 0.8721351 0.8534799
## 89 0.8540864 0.9010727 0.8721351 0.8534799
## 90 0.8540864 0.9321055 0.8721351 0.8534799
## 91 0.8540864 0.9010727 0.8791400 0.8534799
## 92 0.8540864 0.8864504 0.9090369 0.8534799
## 93 0.8540864 0.9321055 0.9090369 0.8534799
## 94 0.9439160 0.8877722 0.9090369 0.8534799
## 95 0.8540864 0.9010727 0.8791400 0.8534799
## 96 0.8540864 0.9010727 0.8791400 0.8534799
## 97 0.8540864 0.6137931 0.9090369 0.8534799
## 98 0.8540864 0.8148148 0.8721351 0.8534799
## 99 0.8540864 0.9321055 0.8890339 0.8534799
## 100 0.8540864 0.5408163 0.9090369 0.8534799
## 101 0.8540864 0.8877722 0.9090369 0.8534799
## 102 0.8540864 0.9321055 0.8890339 0.8534799
## 103 0.8540864 0.8877722 0.8791400 0.8534799
## 104 0.8540864 0.8148148 0.8791400 0.8534799
## 105 0.8540864 0.9010727 0.8721351 0.8534799
## 106 0.8540864 0.9321055 0.8721351 0.8534799
## 107 0.8540864 0.9321055 0.8791400 0.8534799
## 108 0.8540864 0.8148148 0.9090369 0.8534799
## 109 0.8540864 0.9321055 0.8721351 0.8534799
## 110 0.8540864 0.4949495 0.8791400 0.8534799
## 111 0.9439160 0.8864504 0.8721351 0.8534799
## 112 0.9439160 0.9010727 0.8874696 0.8534799
## 113 0.8540864 0.6137931 0.8721351 0.8534799
## 114 0.8540864 0.8864504 0.9090369 0.8534799
## 115 0.8540864 0.9321055 0.8721351 0.8534799
## 116 0.8540864 0.8148148 0.8791400 0.8534799
## 117 0.8540864 0.9010727 0.9090369 0.8534799
## 118 0.8540864 0.9321055 0.8721351 0.8534799
## 119 0.8540864 0.4949495 0.9090369 0.8534799
## 120 0.8540864 0.8877722 0.8721351 0.8534799
## 121 0.8540864 0.8148148 0.8890339 0.8534799
## 122 0.8540864 0.8148148 0.8890339 0.8534799
## 123 0.8540864 0.9321055 0.9090369 0.8534799
## 124 0.8540864 0.8877722 0.8890339 0.8534799
## 125 0.8540864 0.8877722 0.8890339 0.8534799
## 126 0.8540864 0.9321055 0.8890339 0.8534799
## 127 0.8540864 0.9010727 0.8890339 0.8534799
## 128 0.8540864 0.9010727 0.8874696 0.8534799
## 129 0.8540864 0.9321055 0.8890339 0.8534799
## 130 0.8540864 0.9321055 0.8890339 0.8534799
## 131 0.8540864 0.8864504 0.8721351 0.8534799
## 132 0.8540864 0.9010727 0.8791400 0.8534799
## 133 0.8540864 0.8864504 0.8721351 0.8534799
## 134 0.9439160 0.9321055 0.8874696 0.8534799
## 135 0.8540864 0.9080000 0.8721351 0.8534799
## 136 0.8540864 0.8148148 0.9090369 0.8534799
## 137 0.8540864 0.9321055 0.8890339 0.8534799
## 138 0.8540864 0.9080000 0.8874696 0.8534799
## 139 0.8540864 0.8148148 0.8721351 0.8534799
## 140 0.8540864 0.9010727 0.8890339 0.8534799
## 141 0.8540864 0.8148148 0.8890339 0.8534799
## 142 0.8540864 0.8877722 0.8874696 0.8534799
## 143 0.8540864 0.9010727 0.8874696 0.8534799
## 144 0.8540864 0.9010727 0.8874696 0.8534799
## 145 0.8540864 0.8877722 0.8791400 0.8534799
## 146 0.8540864 0.9321055 0.8791400 0.8534799
## 147 0.8540864 0.9321055 0.8721351 0.8534799
## 148 0.8540864 0.8148148 0.9090369 0.8534799
## 149 0.9439160 0.8877722 0.8791400 0.8534799
## 150 0.8540864 0.9010727 0.8890339 0.8534799
## 151 0.8540864 0.9010727 0.8721351 0.8534799
## 152 0.8540864 0.8877722 0.8721351 0.8534799
## 153 0.8540864 0.8148148 0.9090369 0.8534799
## 154 0.8540864 0.8148148 0.9090369 0.8534799
## 155 0.8540864 0.9010727 0.9090369 0.8534799
## 156 0.8540864 0.9321055 0.9090369 0.8534799
## 157 0.8540864 0.9321055 0.8874696 0.8534799
## 158 0.8540864 0.9321055 0.9090369 0.8534799
## 159 0.9439160 0.9321055 0.8890339 0.8534799
## 160 0.8540864 0.8148148 0.8791400 0.8534799
## 161 0.8540864 0.4949495 0.9090369 0.8534799
## 162 0.8540864 0.9010727 0.9090369 0.8534799
## 163 0.8540864 0.9321055 0.9090369 0.8534799
## 164 0.8540864 0.8148148 0.9090369 0.8534799
## 165 0.8540864 0.9010727 0.8890339 0.8534799
## 166 0.9439160 0.8148148 0.8890339 0.8534799
## 167 0.8540864 0.8864504 0.8721351 0.8534799
## 168 0.8540864 0.8148148 0.8791400 0.8534799
## 169 0.8540864 0.9080000 0.9090369 0.8534799
## 170 0.8540864 0.9321055 0.8890339 0.8534799
## 171 0.8540864 0.8864504 0.8721351 0.8534799
## 172 0.8540864 0.9321055 0.8721351 0.8534799
## 173 0.8540864 0.4949495 0.9090369 0.8534799
## 174 0.8540864 0.9321055 0.8890339 0.8534799
## 175 0.9439160 0.8148148 0.8874696 0.8534799
## 176 0.8540864 0.8877722 0.9090369 0.8534799
## 177 0.8540864 0.9321055 0.8721351 0.8534799
## 178 0.8540864 0.9321055 0.8721351 0.8534799
## 179 0.8540864 0.9010727 0.8721351 0.8534799
## 180 0.8540864 0.9010727 0.8890339 0.8534799
## 181 0.8540864 0.9010727 0.8890339 0.8534799
## 182 0.8540864 0.8148148 0.9090369 0.8534799
## 183 0.8540864 0.9321055 0.8721351 0.8534799
## 184 0.9439160 0.9321055 0.8791400 0.8534799
## 185 0.8540864 0.9010727 0.8721351 0.8534799
## 186 0.8540864 0.6137931 0.8791400 0.8534799
## 187 0.8540864 0.9010727 0.8874696 0.8534799
## 188 0.8540864 0.8148148 0.8890339 0.8534799
## 189 0.8540864 0.9321055 0.8721351 0.8534799
## 190 0.8540864 0.8148148 0.9090369 0.8534799
## 191 0.8540864 0.9321055 0.9090369 0.8534799
## 192 0.8540864 0.3750000 0.9090369 0.8534799
## 193 0.8540864 0.6137931 0.9090369 0.8534799
## 194 0.8540864 0.9010727 0.8791400 0.8534799
## 195 0.8540864 0.9321055 0.8721351 0.8534799
## 196 0.8540864 0.9321055 0.8874696 0.8534799
## 197 0.8540864 0.9321055 0.8890339 0.8534799
## 198 0.9439160 0.9321055 0.9090369 0.8534799
## 199 0.8540864 0.9010727 0.9090369 0.8534799
## 200 0.8540864 0.8148148 0.8791400 0.8534799
## 201 0.9439160 0.9321055 0.8874696 0.8534799
## 202 0.8540864 0.8148148 0.8791400 0.8534799
## 203 0.8540864 0.8864504 0.8721351 0.8534799
## 204 0.9439160 0.9321055 0.9090369 0.8534799
## 205 0.8540864 0.9010727 0.8721351 0.8534799
## 206 0.8540864 0.5408163 0.8791400 0.8534799
## 207 0.8540864 0.8864504 0.9090369 0.8534799
## 208 0.8540864 0.8877722 0.8721351 0.8534799
## 209 0.8540864 0.9010727 0.8721351 0.8534799
## 210 0.8540864 0.8877722 0.9090369 0.8534799
## 211 0.8540864 0.9321055 0.8874696 0.8534799
## 212 0.8540864 0.9010727 0.8890339 0.8534799
## 213 0.8540864 0.9321055 0.8721351 0.8534799
## 214 0.8540864 0.9321055 0.8890339 0.8534799
## 215 0.8540864 0.9010727 0.8874696 0.8534799
## 216 0.8540864 0.9080000 0.8791400 0.8534799
## 217 0.8540864 0.8148148 0.8890339 0.8534799
## 218 0.8540864 0.8148148 0.8890339 0.8534799
## 219 0.8540864 0.9010727 0.8721351 0.8534799
## 220 0.8540864 0.8864504 0.8721351 0.8534799
## 221 0.8540864 0.8877722 0.8721351 0.8534799
## 222 0.8540864 0.9010727 0.8890339 0.8534799
## 223 0.9439160 0.6137931 0.8890339 0.8534799
## 224 0.9439160 0.9080000 0.8791400 0.8534799
## 225 0.8540864 0.9321055 0.8874696 0.8534799
## 226 0.9439160 0.9010727 0.8791400 0.8534799
## 227 0.8540864 0.9321055 0.9090369 0.8534799
## 228 0.8540864 0.8877722 0.9090369 0.8534799
## 229 0.8540864 0.8148148 0.8791400 0.8534799
## 230 0.8540864 0.9010727 0.9090369 0.8534799
## 231 0.8540864 0.9010727 0.8874696 0.8534799
## 232 0.8540864 0.9010727 0.8874696 0.8534799
## 233 0.8540864 0.9010727 0.8721351 0.8534799
## 234 0.8540864 0.8877722 0.8791400 0.8534799
## 235 0.8540864 0.9321055 0.9090369 0.8534799
## 236 0.8540864 0.9010727 0.8890339 0.8534799
## 237 0.8540864 0.5408163 0.8890339 0.8534799
## 238 0.8540864 0.9321055 0.8791400 0.8534799
## 239 0.8540864 0.9321055 0.9090369 0.8534799
## 240 0.8540864 0.9010727 0.8890339 0.8534799
## 241 0.8540864 0.6137931 0.9090369 0.8534799
## 242 0.8540864 0.8877722 0.8890339 0.8534799
## 243 0.8540864 0.8148148 0.8791400 0.8534799
## 244 0.8540864 0.8877722 0.8721351 0.8534799
## 245 0.8540864 0.9321055 0.8874696 0.8534799
## 246 0.8540864 0.5408163 0.8791400 0.8534799
## 247 0.8540864 0.9321055 0.9090369 0.8534799
## 248 0.8540864 0.9321055 0.9090369 0.8534799
## 249 0.8540864 0.9321055 0.9090369 0.8534799
## 250 0.8540864 0.5408163 0.8721351 0.8534799
## 251 0.8540864 0.8148148 0.8721351 0.8534799
## 252 0.9439160 0.9010727 0.8890339 0.8534799
## 253 0.8540864 0.9080000 0.8791400 0.8534799
## 254 0.8540864 0.9321055 0.8721351 0.8534799
## 255 0.8540864 0.8148148 0.8890339 0.8534799
## 256 0.8540864 0.8864504 0.8791400 0.8534799
## 257 0.9439160 0.9321055 0.8890339 0.8534799
## 258 0.8540864 0.9321055 0.8721351 0.8534799
## 259 0.8540864 0.8148148 0.8791400 0.8534799
## 260 0.8540864 0.9010727 0.9090369 0.8534799
## 261 0.8540864 0.9321055 0.8791400 0.8534799
## 262 0.8540864 0.6137931 0.9090369 0.8534799
## 263 0.8540864 0.8877722 0.9090369 0.8534799
## 264 0.8540864 0.8877722 0.8791400 0.8534799
## 265 0.8540864 0.8148148 0.9090369 0.8534799
## 266 0.8540864 0.6137931 0.8874696 0.8534799
## 267 0.8540864 0.9321055 0.8791400 0.8534799
## 268 0.8540864 0.9321055 0.8721351 0.8534799
## 269 0.8540864 0.8148148 0.8890339 0.8534799
## 270 0.8540864 0.9010727 0.8874696 0.8534799
## 271 0.8540864 0.9321055 0.8721351 0.8534799
## 272 0.8540864 0.8148148 0.8890339 0.8534799
## 273 0.8540864 0.9080000 0.8890339 0.8534799
## 274 0.9439160 0.8148148 0.9090369 0.8534799
## 275 0.8540864 0.9321055 0.8791400 0.8534799
## 276 0.8540864 0.9321055 0.8890339 0.8534799
## 277 0.8540864 0.9080000 0.8890339 0.8534799
## 278 0.8540864 0.9321055 0.9090369 0.8534799
## 279 0.8540864 0.9321055 0.9090369 0.8534799
## 280 0.8540864 0.8877722 0.9090369 0.8534799
## 281 0.8540864 0.9321055 0.8721351 0.8534799
## 282 0.8540864 0.9010727 0.9090369 0.8534799
## 283 0.8540864 0.9321055 0.8721351 0.8534799
## 284 0.8540864 0.9010727 0.9090369 0.8534799
## 285 0.8540864 0.9321055 0.8791400 0.8534799
## 286 0.8540864 0.6137931 0.8721351 0.8534799
## 287 0.8540864 0.9080000 0.8890339 0.8534799
## 288 0.8540864 0.9321055 0.8890339 0.8534799
## 289 0.8540864 0.8148148 0.9090369 0.8534799
## 290 0.8540864 0.9321055 0.8791400 0.8534799
## 291 0.8540864 0.9321055 0.8890339 0.8534799
## 292 0.8540864 0.9010727 0.8791400 0.8534799
## 293 0.8540864 0.9321055 0.8721351 0.8534799
## 294 0.8540864 0.9321055 0.8791400 0.8534799
## 295 0.8540864 0.9010727 0.9090369 0.8534799
## 296 0.8540864 0.9080000 0.8890339 0.8534799
## 297 0.8540864 0.9321055 0.8890339 0.8534799
## 298 0.8540864 0.9321055 0.8874696 0.8534799
## 299 0.8540864 0.8148148 0.8791400 0.8534799
## 300 0.8540864 0.9321055 0.9090369 0.8534799
## 301 0.8540864 0.9321055 0.8721351 0.8534799
## 302 0.9439160 0.9010727 0.8721351 0.8534799
## 303 0.8540864 0.9321055 0.8890339 0.8534799
## 304 0.8540864 0.9010727 0.8874696 0.8534799
## 305 0.8540864 0.9010727 0.8721351 0.8534799
## 306 0.8540864 0.8148148 0.8721351 0.8534799
## 307 0.8540864 0.4949495 0.8721351 0.8534799
## 308 0.8540864 0.8148148 0.9090369 0.8534799
## 309 0.8540864 0.8148148 0.8791400 0.8534799
## 310 0.8540864 0.8877722 0.8721351 0.8534799
## 311 0.8540864 0.9010727 0.8874696 0.8534799
## 312 0.8540864 0.9010727 0.8721351 0.8534799
## 313 0.8540864 0.9010727 0.8874696 0.8534799
## 314 0.8540864 0.9010727 0.9090369 0.8534799
## 315 0.8540864 0.9321055 0.8721351 0.8534799
## 316 0.8540864 0.9321055 0.8890339 0.8534799
## 317 0.8540864 0.9321055 0.8874696 0.8534799
## 318 0.8540864 0.6137931 0.8890339 0.8534799
## 319 0.8540864 0.8148148 0.8791400 0.8534799
## 320 0.8540864 0.8148148 0.9090369 0.8534799
## 321 0.8540864 0.9321055 0.8791400 0.8534799
## 322 0.8540864 0.9321055 0.8721351 0.8534799
## 323 0.8540864 0.9321055 0.8721351 0.8534799
## 324 0.8540864 0.9010727 0.8721351 0.8534799
## 325 0.8540864 0.3750000 0.8721351 0.8534799
## 326 0.8540864 0.9321055 0.8890339 0.8534799
## 327 0.8540864 0.8877722 0.8874696 0.8534799
## 328 0.8540864 0.6137931 0.9090369 0.8534799
## 329 0.8540864 0.9321055 0.8890339 0.8534799
## 330 0.8540864 0.9321055 0.9090369 0.8534799
## 331 0.8540864 0.9321055 0.8721351 0.8534799
## 332 0.8540864 0.9321055 0.8890339 0.8534799
## 333 0.8540864 0.9010727 0.8791400 0.8534799
## 334 0.8540864 0.9010727 0.8890339 0.8534799
## 335 0.8540864 0.8877722 0.9090369 0.8534799
## 336 0.8540864 0.6137931 0.9090369 0.8534799
## 337 0.8540864 0.9321055 0.8791400 0.8534799
## 338 0.8540864 0.9321055 0.8721351 0.8534799
## 339 0.9439160 0.9321055 0.9090369 0.8534799
## 340 0.8540864 0.9321055 0.8890339 0.8534799
## 341 0.8540864 0.9010727 0.9090369 0.8534799
## 342 0.8540864 0.9321055 0.8890339 0.8534799
## 343 0.8540864 0.9010727 0.8721351 0.8534799
## 344 0.8540864 0.9321055 0.8874696 0.8534799
## 345 0.8540864 0.9321055 0.8874696 0.8534799
## 346 0.9439160 0.9080000 0.8791400 0.8534799
## 347 0.8540864 0.8148148 0.9090369 0.8534799
## 348 0.8540864 0.9321055 0.8874696 0.8534799
## 349 0.8540864 0.9010727 0.8890339 0.8534799
## 350 0.8540864 0.9321055 0.9090369 0.8534799
## 351 0.8540864 0.8864504 0.9090369 0.8534799
## 352 0.8540864 0.8148148 0.8791400 0.8534799
## 353 0.8540864 0.9321055 0.8874696 0.8534799
## 354 0.8540864 0.9010727 0.9090369 0.8534799
## 355 0.8540864 0.9010727 0.8874696 0.8534799
## 356 0.9439160 0.9010727 0.9090369 0.8534799
## 357 0.8540864 0.9321055 0.8874696 0.8534799
## 358 0.8540864 0.9321055 0.8721351 0.8534799
## 359 0.8540864 0.9010727 0.9090369 0.8534799
## 360 0.8540864 0.8148148 0.8890339 0.8534799
## 361 0.8540864 0.9321055 0.9090369 0.8534799
## 362 0.8540864 0.9321055 0.8721351 0.8534799
## 363 0.8540864 0.9321055 0.8874696 0.8534799
## 364 0.8540864 0.9010727 0.8791400 0.8534799
## 365 0.9439160 0.6137931 0.8890339 0.8534799
## 366 0.8540864 0.8877722 0.9090369 0.8534799
## 367 0.9439160 0.8148148 0.9090369 0.8534799
## 368 0.8540864 0.8864504 0.8890339 0.8534799
## 369 0.8540864 0.9321055 0.8890339 0.8534799
## 370 0.8540864 0.9321055 0.8890339 0.8534799
## 371 0.8540864 0.9080000 0.8874696 0.8534799
## 372 0.8540864 0.6137931 0.8791400 0.8534799
## 373 0.8540864 0.9321055 0.8874696 0.8534799
## 374 0.8540864 0.9321055 0.8791400 0.8534799
## 375 0.8540864 0.9321055 0.8721351 0.8534799
## 376 0.8540864 0.8864504 0.8721351 0.8534799
## 377 0.8540864 0.9321055 0.9090369 0.8534799
## 378 0.8540864 0.4949495 0.8791400 0.8534799
## 379 0.8540864 0.6137931 0.8721351 0.8534799
## 380 0.8540864 0.8877722 0.8721351 0.8534799
## 381 0.8540864 0.9321055 0.8874696 0.8534799
## 382 0.8540864 0.9321055 0.8791400 0.8534799
## 383 0.8540864 0.9010727 0.8874696 0.8534799
## 384 0.8540864 0.9321055 0.8874696 0.8534799
## 385 0.8540864 0.9010727 0.9090369 0.8534799
## 386 0.8540864 0.8148148 0.8890339 0.8534799
## 387 0.8540864 0.9321055 0.8721351 0.8534799
## 388 0.8540864 0.9321055 0.8890339 0.8534799
## 389 0.8540864 0.9321055 0.8874696 0.8534799
## 390 0.8540864 0.8148148 0.8791400 0.8534799
## 391 0.8540864 0.9321055 0.9090369 0.8534799
## 392 0.8540864 0.9010727 0.8890339 0.8534799
## 393 0.8540864 0.9321055 0.8874696 0.8534799
## 394 0.8540864 0.8864504 0.9090369 0.8534799
## 395 0.8540864 0.8148148 0.8791400 0.8534799
## 396 0.8540864 0.6137931 0.8721351 0.8534799
## 397 0.8540864 0.8877722 0.8890339 0.8534799
## 398 0.8540864 0.8148148 0.9090369 0.8534799
## 399 0.8540864 0.9321055 0.8890339 0.8534799
## 400 0.8540864 0.9010727 0.8874696 0.8534799
## 401 0.8540864 0.9321055 0.8874696 0.8534799
## 402 0.8540864 0.9321055 0.8890339 0.8534799
## 403 0.8540864 0.9010727 0.9090369 0.8534799
## 404 0.8540864 0.8148148 0.8890339 0.8534799
## 405 0.8540864 0.8864504 0.8721351 0.8534799
## 406 0.8540864 0.9010727 0.9090369 0.8534799
## 407 0.8540864 0.8148148 0.8890339 0.8534799
## 408 0.8540864 0.9321055 0.8791400 0.8534799
## 409 0.8540864 0.8148148 0.8890339 0.8534799
## 410 0.8540864 0.8864504 0.8721351 0.8534799
## 411 0.8540864 0.9321055 0.8791400 0.8534799
## 412 0.8540864 0.9321055 0.8721351 0.8534799
## 413 0.8540864 0.9010727 0.8874696 0.8534799
## 414 0.8540864 0.9010727 0.8874696 0.8534799
## 415 0.8540864 0.9010727 0.8874696 0.8534799
## 416 0.8540864 0.9321055 0.8791400 0.8534799
## 417 0.8540864 0.8148148 0.8721351 0.8534799
## 418 0.8540864 0.9010727 0.8791400 0.8534799
## 419 0.8540864 0.9321055 0.8890339 0.8534799
## 420 0.8540864 0.8148148 0.9090369 0.8534799
## 421 0.8540864 0.9010727 0.8890339 0.8534799
## 422 0.8540864 0.8877722 0.8874696 0.8534799
## 423 0.8540864 0.9010727 0.9090369 0.8534799
## 424 0.8540864 0.9321055 0.8791400 0.8534799
## 425 0.8540864 0.9321055 0.8721351 0.8534799
## 426 0.8540864 0.9321055 0.8874696 0.8534799
## 427 0.8540864 0.4949495 0.8791400 0.8534799
## 428 0.8540864 0.9321055 0.8721351 0.8534799
## 429 0.9439160 0.5408163 0.8721351 0.8534799
## 430 0.8540864 0.9321055 0.9090369 0.8534799
## 431 0.8540864 0.9321055 0.8791400 0.8534799
## 432 0.8540864 0.8148148 0.9090369 0.8534799
## 433 0.8540864 0.9321055 0.8874696 0.8534799
## 434 0.8540864 0.8864504 0.8721351 0.8534799
## 435 0.8540864 0.9321055 0.8791400 0.8534799
## 436 0.8540864 0.9321055 0.8874696 0.8534799
## 437 0.9439160 0.9010727 0.8791400 0.8534799
## 438 0.9439160 0.9010727 0.9090369 0.8534799
## 439 0.8540864 0.9010727 0.8874696 0.8534799
## 440 0.9439160 0.9321055 0.8874696 0.8534799
## 441 0.8540864 0.8148148 0.8874696 0.8534799
## 442 0.8540864 0.8148148 0.8791400 0.8534799
## 443 0.8540864 0.9080000 0.8874696 0.8534799
## 444 0.8540864 0.6137931 0.8874696 0.8534799
## 445 0.8540864 0.8877722 0.8874696 0.8534799
## 446 0.8540864 0.9321055 0.8874696 0.8534799
## 447 0.8540864 0.6137931 0.8890339 0.8534799
## 448 0.9439160 0.9321055 0.8874696 0.8534799
## 449 0.8540864 0.9321055 0.8791400 0.8534799
## 450 0.8540864 0.5408163 0.8721351 0.8534799
## 451 0.8540864 0.8148148 0.8874696 0.8534799
## 452 0.8540864 0.6137931 0.8791400 0.8534799
## 453 0.8540864 0.9321055 0.9090369 0.8534799
## 454 0.8540864 0.9321055 0.8791400 0.8534799
## 455 0.8540864 0.6137931 0.8791400 0.8534799
## 456 0.8540864 0.9321055 0.8721351 0.8534799
## 457 0.8540864 0.9321055 0.9090369 0.8534799
## 458 0.8540864 0.9010727 0.8874696 0.8534799
## 459 0.8540864 0.9321055 0.8874696 0.8534799
## 460 0.8540864 0.9321055 0.8721351 0.8534799
## 461 0.8540864 0.5408163 0.8791400 0.8534799
## 462 0.8540864 0.9321055 0.8890339 0.8534799
## 463 0.8540864 0.9010727 0.8890339 0.8534799
## 464 0.8540864 0.9010727 0.8890339 0.8534799
## 465 0.8540864 0.9010727 0.9090369 0.8534799
## 466 0.8540864 0.8148148 0.8890339 0.8534799
## 467 0.8540864 0.8148148 0.9090369 0.8534799
## 468 0.8540864 0.9321055 0.8890339 0.8534799
## 469 0.8540864 0.9321055 0.8890339 0.8534799
## 470 0.8540864 0.5408163 0.8874696 0.8534799
## 471 0.8540864 0.9321055 0.8874696 0.8534799
## 472 0.8540864 0.8864504 0.8874696 0.8534799
## 473 0.9439160 0.9010727 0.8791400 0.8534799
## 474 0.8540864 0.9321055 0.8721351 0.8534799
## 475 0.8540864 0.9321055 0.9090369 0.8534799
## 476 0.8540864 0.8877722 0.8874696 0.8534799
## 477 0.8540864 0.9321055 0.8890339 0.8534799
## 478 0.8540864 0.8148148 0.8791400 0.8534799
## 479 0.8540864 0.9321055 0.8721351 0.8534799
## 480 0.8540864 0.9321055 0.8721351 0.8534799
## 481 0.8540864 0.3750000 0.9090369 0.8534799
## 482 0.8540864 0.9010727 0.8721351 0.8534799
## 483 0.8540864 0.8877722 0.8791400 0.8534799
## 484 0.8540864 0.5408163 0.8721351 0.8534799
## 485 0.8540864 0.9010727 0.8791400 0.8534799
## 486 0.8540864 0.8877722 0.8791400 0.8534799
## 487 0.8540864 0.9010727 0.8890339 0.8534799
## 488 0.8540864 0.9010727 0.8791400 0.8534799
## 489 0.8540864 0.9321055 0.8874696 0.8534799
## 490 0.8540864 0.9010727 0.8890339 0.8534799
## 491 0.8540864 0.5408163 0.8874696 0.8534799
## 492 0.8540864 0.9321055 0.8721351 0.8534799
## 493 0.8540864 0.9321055 0.8874696 0.8534799
## 494 0.9439160 0.8877722 0.8874696 0.8534799
## 495 0.8540864 0.8148148 0.8890339 0.8534799
## 496 0.8540864 0.9321055 0.8874696 0.8534799
## 497 0.8540864 0.9010727 0.8721351 0.8534799
## 498 0.8540864 0.9321055 0.8874696 0.8534799
## 499 0.8540864 0.9321055 0.9090369 0.8534799
## 500 0.8540864 0.8864504 0.8721351 0.8534799
## 501 0.8540864 0.9010727 0.8791400 0.8534799
## 502 0.8540864 0.9321055 0.8721351 0.8534799
## 503 0.8540864 0.9010727 0.8721351 0.8534799
## 504 0.8540864 0.9321055 0.8791400 0.8534799
## 505 0.8540864 0.5408163 0.8721351 0.8534799
## 506 0.8540864 0.9321055 0.8874696 0.8534799
## 507 0.9439160 0.9321055 0.8890339 0.8534799
## 508 0.8540864 0.9010727 0.8890339 0.8534799
## 509 0.8540864 0.9321055 0.8721351 0.8534799
## 510 0.8540864 0.9010727 0.8874696 0.8534799
## 511 0.8540864 0.8148148 0.8791400 0.8534799
## 512 0.8540864 0.8148148 0.8890339 0.8534799
## 513 0.8540864 0.9010727 0.8721351 0.8534799
## 514 0.8540864 0.9321055 0.9090369 0.8534799
## 515 0.8540864 0.9010727 0.8890339 0.8534799
## 516 0.8540864 0.8148148 0.8890339 0.8534799
## 517 0.8540864 0.9321055 0.8874696 0.8534799
## 518 0.9439160 0.9321055 0.8721351 0.8534799
## 519 0.8540864 0.8877722 0.8721351 0.8534799
## 520 0.8540864 0.8864504 0.8791400 0.8534799
## 521 0.9439160 0.9321055 0.8791400 0.8534799
## 522 0.8540864 0.9321055 0.8721351 0.8534799
## 523 0.8540864 0.9321055 0.8791400 0.8534799
## 524 0.8540864 0.8148148 0.8874696 0.8534799
## 525 0.8540864 0.9321055 0.8890339 0.8534799
## 526 0.8540864 0.9321055 0.9090369 0.8534799
## 527 0.8540864 0.9010727 0.8874696 0.8534799
## 528 0.8540864 0.9321055 0.9090369 0.8534799
## 529 0.8540864 0.9321055 0.8721351 0.8534799
## 530 0.8540864 0.9321055 0.8791400 0.8534799
## 531 0.8540864 0.8148148 0.8890339 0.8534799
## 532 0.8540864 0.8148148 0.8890339 0.8534799
## 533 0.8540864 0.9321055 0.8721351 0.8534799
## 534 0.8540864 0.9080000 0.9090369 0.8534799
## 535 0.8540864 0.9010727 0.8874696 0.8534799
## 536 0.8540864 0.8864504 0.8874696 0.8534799
## 537 0.8540864 0.9321055 0.8791400 0.8534799
## 538 0.8540864 0.9321055 0.8890339 0.8534799
## 539 0.8540864 0.9321055 0.8890339 0.8534799
## 540 0.8540864 0.9321055 0.8721351 0.8534799
## 541 0.8540864 0.6137931 0.8721351 0.8534799
## 542 0.8540864 0.9321055 0.8721351 0.8534799
## 543 0.8540864 0.9321055 0.8791400 0.8534799
## 544 0.8540864 0.9010727 0.8890339 0.8534799
## 545 0.8540864 0.9321055 0.9090369 0.8534799
## 546 0.8540864 0.8877722 0.8890339 0.8534799
## 547 0.8540864 0.9321055 0.8791400 0.8534799
## 548 0.8540864 0.9010727 0.8721351 0.8534799
## 549 0.8540864 0.8877722 0.9090369 0.8534799
## 550 0.9439160 0.5408163 0.8874696 0.8534799
## 551 0.8540864 0.9321055 0.8791400 0.8534799
## 552 0.8540864 0.9321055 0.8890339 0.8534799
## 553 0.8540864 0.8148148 0.8874696 0.8534799
## 554 0.9439160 0.8148148 0.8791400 0.8534799
## 555 0.8540864 0.5408163 0.8721351 0.8534799
## 556 0.8540864 0.8148148 0.9090369 0.8534799
## 557 0.9439160 0.8148148 0.8791400 0.8534799
## 558 0.8540864 0.8148148 0.8791400 0.8534799
## 559 0.8540864 0.9321055 0.8791400 0.8534799
## 560 0.8540864 0.9010727 0.9090369 0.8534799
## 561 0.8540864 0.9321055 0.8874696 0.8534799
## 562 0.8540864 0.8877722 0.8791400 0.8534799
## 563 0.8540864 0.8148148 0.8721351 0.8534799
## 564 0.8540864 0.9010727 0.8890339 0.8534799
## 565 0.8540864 0.9321055 0.8874696 0.8534799
## 566 0.8540864 0.8148148 0.9090369 0.8534799
## 567 0.8540864 0.9321055 0.8890339 0.8534799
## 568 0.8540864 0.8877722 0.8721351 0.8534799
## 569 0.8540864 0.9321055 0.8890339 0.8534799
## 570 0.8540864 0.9321055 0.9090369 0.8534799
## 571 0.9439160 0.8148148 0.9090369 0.8534799
## 572 0.8540864 0.9321055 0.8791400 0.8534799
## 573 0.8540864 0.9321055 0.9090369 0.8534799
## 574 0.9439160 0.9321055 0.8721351 0.8534799
## 575 0.8540864 0.4949495 0.8890339 0.8534799
## 576 0.8540864 0.8148148 0.8874696 0.8534799
## 577 0.8540864 0.9321055 0.9090369 0.8534799
## 578 0.8540864 0.9321055 0.8791400 0.8534799
## 579 0.8540864 0.8864504 0.8874696 0.8534799
## 580 0.8540864 0.3750000 0.8874696 0.8534799
## 581 0.8540864 0.8148148 0.9090369 0.8534799
## 582 0.8540864 0.9010727 0.9090369 0.8534799
## 583 0.8540864 0.5408163 0.8721351 0.8534799
## 584 0.8540864 0.9321055 0.8874696 0.8534799
## 585 0.8540864 0.9321055 0.9090369 0.8534799
## 586 0.8540864 0.8864504 0.8721351 0.8534799
## 587 0.8540864 0.9321055 0.8874696 0.8534799
## 588 0.8540864 0.9010727 0.8791400 0.8534799
## 589 0.8540864 0.8148148 0.9090369 0.8534799
## 590 0.8540864 0.9321055 0.9090369 0.8534799
## 591 0.8540864 0.9321055 0.8890339 0.8534799
## 592 0.9439160 0.9321055 0.8874696 0.8534799
## 593 0.8540864 0.9321055 0.9090369 0.8534799
## 594 0.9439160 0.9010727 0.8874696 0.8534799
## 595 0.8540864 0.9010727 0.8721351 0.8534799
## 596 0.8540864 0.9321055 0.8874696 0.8534799
## 597 0.8540864 0.9010727 0.8721351 0.8534799
## 598 0.8540864 0.9010727 0.8791400 0.8534799
## 599 0.8540864 0.4949495 0.8721351 0.8534799
## 600 0.8540864 0.6137931 0.9090369 0.8534799
## 601 0.8540864 0.9010727 0.8890339 0.8534799
## 602 0.8540864 0.9010727 0.8791400 0.8534799
## 603 0.8540864 0.9010727 0.8874696 0.8534799
## 604 0.8540864 0.9010727 0.8721351 0.8534799
## 605 0.8540864 0.9321055 0.8890339 0.8534799
## 606 0.8540864 0.8877722 0.9090369 0.8534799
## 607 0.8540864 0.9010727 0.8874696 0.8534799
## 608 0.8540864 0.9080000 0.8721351 0.8534799
## 609 0.8540864 0.9321055 0.8874696 0.8534799
## 610 0.8540864 0.9321055 0.9090369 0.8534799
## 611 0.8540864 0.9321055 0.8791400 0.8534799
## 612 0.8540864 0.8148148 0.8874696 0.8534799
## 613 0.8540864 0.9321055 0.9090369 0.8534799
## 614 0.8540864 0.9321055 0.8874696 0.8534799
## 615 0.8540864 0.9321055 0.8721351 0.8534799
## 616 0.8540864 0.8148148 0.8791400 0.8534799
## 617 0.8540864 0.8148148 0.8791400 0.8534799
## 618 0.8540864 0.9080000 0.8721351 0.8534799
## 619 0.8540864 0.8148148 0.9090369 0.8534799
## 620 0.9439160 0.9321055 0.8874696 0.8534799
## 621 0.8540864 0.8148148 0.8890339 0.8534799
## 622 0.8540864 0.9321055 0.8890339 0.8534799
## 623 0.8540864 0.9010727 0.9090369 0.8534799
## 624 0.8540864 0.8877722 0.9090369 0.8534799
## 625 0.8540864 0.9321055 0.9090369 0.8534799
## 626 0.8540864 0.9321055 0.8721351 0.8534799
## 627 0.8540864 0.9010727 0.8874696 0.8534799
## 628 0.8540864 0.4949495 0.8791400 0.8534799
## 629 0.8540864 0.9321055 0.8791400 0.8534799
## 630 0.8540864 0.6137931 0.8721351 0.8534799
## 631 0.8540864 0.9010727 0.8721351 0.8534799
## 632 0.8540864 0.8148148 0.8791400 0.8534799
## 633 0.8540864 0.6137931 0.9090369 0.8534799
## 634 0.8540864 0.9010727 0.8874696 0.8534799
## 635 0.8540864 0.6137931 0.8874696 0.8534799
## 636 0.8540864 0.9321055 0.9090369 0.8534799
## 637 0.8540864 0.9321055 0.8791400 0.8534799
## 638 0.8540864 0.9010727 0.8874696 0.8534799
## 639 0.8540864 0.9321055 0.8874696 0.8534799
## 640 0.8540864 0.9010727 0.8890339 0.8534799
## 641 0.8540864 0.9010727 0.8890339 0.8534799
## 642 0.8540864 0.9010727 0.8874696 0.8534799
## 643 0.8540864 0.9321055 0.8791400 0.8534799
## 644 0.8540864 0.9321055 0.8721351 0.8534799
## 645 0.8540864 0.9080000 0.8791400 0.8534799
## 646 0.8540864 0.9321055 0.8721351 0.8534799
## 647 0.9439160 0.4949495 0.8874696 0.8534799
## 648 0.8540864 0.9321055 0.8721351 0.8534799
## 649 0.9439160 0.9010727 0.8874696 0.8534799
## 650 0.8540864 0.9321055 0.8791400 0.8534799
## 651 0.8540864 0.9321055 0.8721351 0.8534799
## 652 0.8540864 0.8877722 0.8791400 0.8534799
## 653 0.8540864 0.8877722 0.8874696 0.8534799
## 654 0.8540864 0.9010727 0.8874696 0.8534799
## 655 0.8540864 0.9010727 0.8721351 0.8534799
## 656 0.8540864 0.9010727 0.8890339 0.8534799
## 657 0.8540864 0.9321055 0.8791400 0.8534799
## 658 0.8540864 0.9321055 0.8791400 0.8534799
## 659 0.8540864 0.9321055 0.8721351 0.8534799
## 660 0.8540864 0.8148148 0.9090369 0.8534799
## 661 0.8540864 0.9321055 0.8890339 0.8534799
## 662 0.8540864 0.9321055 0.9090369 0.8534799
## 663 0.8540864 0.9321055 0.8874696 0.8534799
## 664 0.8540864 0.9321055 0.8721351 0.8534799
## 665 0.8540864 0.9321055 0.8791400 0.8534799
## 666 0.8540864 0.9321055 0.8721351 0.8534799
## 667 0.8540864 0.9010727 0.8721351 0.8534799
## 668 0.8540864 0.9010727 0.8890339 0.8534799
## 669 0.8540864 0.9010727 0.9090369 0.8534799
## 670 0.8540864 0.8148148 0.9090369 0.8534799
## 671 0.8540864 0.9321055 0.8721351 0.8534799
## 672 0.8540864 0.8148148 0.8890339 0.8534799
## 673 0.8540864 0.9321055 0.8874696 0.8534799
## 674 0.8540864 0.8148148 0.8791400 0.8534799
## 675 0.8540864 0.9321055 0.8721351 0.8534799
## 676 0.8540864 0.9010727 0.8874696 0.8534799
## 677 0.8540864 0.8148148 0.8791400 0.8534799
## 678 0.8540864 0.9321055 0.8874696 0.8534799
## 679 0.8540864 0.9321055 0.8874696 0.8534799
## 680 0.9439160 0.9321055 0.8791400 0.8534799
## 681 0.8540864 0.9010727 0.9090369 0.8534799
## 682 0.8540864 0.8877722 0.9090369 0.8534799
## 683 0.9439160 0.9321055 0.8721351 0.8534799
## 684 0.8540864 0.8864504 0.8721351 0.8534799
## 685 0.8540864 0.9010727 0.8874696 0.8534799
## 686 0.8540864 0.9321055 0.8721351 0.8534799
## 687 0.8540864 0.9321055 0.8890339 0.8534799
## 688 0.8540864 0.9010727 0.8890339 0.8534799
## 689 0.8540864 0.9321055 0.8721351 0.8534799
## 690 0.8540864 0.9321055 0.8791400 0.8534799
## 691 0.8540864 0.9010727 0.8874696 0.8534799
## 692 0.8540864 0.8148148 0.8890339 0.8534799
## 693 0.8540864 0.9080000 0.8791400 0.8534799
## 694 0.8540864 0.8148148 0.8791400 0.8534799
## 695 0.8540864 0.9321055 0.8721351 0.8534799
## 696 0.8540864 0.4949495 0.8874696 0.8534799
## 697 0.8540864 0.8148148 0.9090369 0.8534799
## 698 0.8540864 0.9010727 0.8791400 0.8534799
## 699 0.8540864 0.9010727 0.8874696 0.8534799
## 700 0.8540864 0.9010727 0.9090369 0.8534799
## 701 0.8540864 0.9321055 0.9090369 0.8534799
## 702 0.8540864 0.9321055 0.8874696 0.8534799
## 703 0.8540864 0.9321055 0.8890339 0.8534799
## 704 0.8540864 0.9321055 0.8721351 0.8534799
## 705 0.8540864 0.9321055 0.9090369 0.8534799
## 706 0.8540864 0.8877722 0.8791400 0.8534799
## 707 0.8540864 0.9321055 0.8890339 0.8534799
## 708 0.8540864 0.9321055 0.8890339 0.8534799
## 709 0.8540864 0.9010727 0.8791400 0.8534799
## 710 0.8540864 0.9321055 0.8890339 0.8534799
## 711 0.8540864 0.9010727 0.8721351 0.8534799
## 712 0.8540864 0.9010727 0.8791400 0.8534799
## 713 0.8540864 0.9321055 0.8874696 0.8534799
## 714 0.8540864 0.9010727 0.8721351 0.8534799
## 715 0.8540864 0.9010727 0.8874696 0.8534799
## 716 0.8540864 0.9321055 0.8874696 0.8534799
## 717 0.8540864 0.9010727 0.8874696 0.8534799
## 718 0.8540864 0.9321055 0.8874696 0.8534799
## 719 0.8540864 0.9321055 0.9090369 0.8534799
## 720 0.8540864 0.9321055 0.8721351 0.8534799
## 721 0.8540864 0.9010727 0.8874696 0.8534799
## 722 0.8540864 0.9321055 0.8874696 0.8534799
## 723 0.8540864 0.9321055 0.8890339 0.8534799
## 724 0.8540864 0.9010727 0.8791400 0.8534799
## 725 0.8540864 0.6137931 0.8791400 0.8534799
## 726 0.8540864 0.8877722 0.8721351 0.8534799
## 727 0.8540864 0.9321055 0.9090369 0.8534799
## 728 0.8540864 0.9321055 0.9090369 0.8534799
## 729 0.8540864 0.4949495 0.8791400 0.8534799
## 730 0.9439160 0.8148148 0.9090369 0.8534799
## 731 0.8540864 0.9010727 0.8890339 0.8534799
## 732 0.8540864 0.9321055 0.9090369 0.8534799
## 733 0.8540864 0.9321055 0.8874696 0.8534799
## 734 0.8540864 0.8877722 0.8874696 0.8534799
## 735 0.8540864 0.9010727 0.8721351 0.8534799
## 736 0.8540864 0.8148148 0.8791400 0.8534799
## 737 0.8540864 0.8864504 0.8874696 0.8534799
## 738 0.8540864 0.8148148 0.8721351 0.8534799
## 739 0.8540864 0.8864504 0.9090369 0.8534799
## 740 0.8540864 0.8877722 0.8721351 0.8534799
## 741 0.8540864 0.6137931 0.8791400 0.8534799
## 742 0.8540864 0.9321055 0.8874696 0.8534799
## 743 0.8540864 0.9321055 0.8791400 0.8534799
## 744 0.8540864 0.9321055 0.8874696 0.8534799
## 745 0.8540864 0.9321055 0.8791400 0.8534799
## 746 0.8540864 0.9321055 0.9090369 0.8534799
## 747 0.8540864 0.9321055 0.8874696 0.8534799
## 748 0.8540864 0.9321055 0.8721351 0.8534799
## 749 0.8540864 0.9321055 0.8721351 0.8534799
## 750 0.9439160 0.9080000 0.8791400 0.8534799
## 751 0.8540864 0.9321055 0.9090369 0.8534799
## 752 0.8540864 0.9321055 0.8791400 0.8534799
## 753 0.8540864 0.8864504 0.8721351 0.8534799
## 754 0.8540864 0.9321055 0.8721351 0.8534799
## 755 0.8540864 0.8148148 0.8791400 0.8534799
## 756 0.8540864 0.8148148 0.8874696 0.8534799
## 757 0.8540864 0.9010727 0.8890339 0.8534799
## 758 0.8540864 0.9010727 0.8874696 0.8534799
## 759 0.8540864 0.9010727 0.8721351 0.8534799
## 760 0.8540864 0.9321055 0.8874696 0.8534799
## 761 0.8540864 0.9321055 0.8791400 0.8534799
## 762 0.8540864 0.8148148 0.8890339 0.8534799
## 763 0.8540864 0.9010727 0.8791400 0.8534799
## 764 0.8540864 0.8877722 0.8874696 0.8534799
## 765 0.8540864 0.9321055 0.8890339 0.8534799
## 766 0.8540864 0.5408163 0.8721351 0.8534799
## 767 0.8540864 0.9321055 0.8791400 0.8534799
## 768 0.9439160 0.4949495 0.8890339 0.8534799
## 769 0.8540864 0.9010727 0.9090369 0.8534799
## 770 0.8540864 0.5408163 0.8890339 0.8534799
## 771 0.8540864 0.9010727 0.9090369 0.8534799
## 772 0.8540864 0.9321055 0.8874696 0.8534799
## 773 0.8540864 0.9321055 0.8721351 0.8534799
## 774 0.8540864 0.9321055 0.8874696 0.8534799
## 775 0.8540864 0.8148148 0.8791400 0.8534799
## 776 0.8540864 0.6137931 0.8721351 0.8534799
## 777 0.8540864 0.6137931 0.8874696 0.8534799
## 778 0.8540864 0.8148148 0.8791400 0.8534799
## 779 0.8540864 0.9321055 0.8890339 0.8534799
## 780 0.8540864 0.9080000 0.8791400 0.8534799
## 781 0.8540864 0.5408163 0.8721351 0.8534799
## 782 0.8540864 0.6137931 0.8721351 0.8534799
## 783 0.8540864 0.6137931 0.8874696 0.8534799
## 784 0.8540864 0.9010727 0.8721351 0.8534799
## 785 0.8540864 0.6137931 0.9090369 0.8534799
## 786 0.8540864 0.9321055 0.8874696 0.8534799
## 787 0.8540864 0.5408163 0.9090369 0.8534799
## 788 0.8540864 0.9321055 0.9090369 0.8534799
## 789 0.8540864 0.6137931 0.8874696 0.8534799
## 790 0.8540864 0.9321055 0.9090369 0.8534799
## 791 0.9439160 0.8148148 0.8874696 0.8534799
## 792 0.8540864 0.9321055 0.8874696 0.8534799
## 793 0.8540864 0.9010727 0.9090369 0.8534799
## 794 0.8540864 0.5408163 0.8791400 0.8534799
## 795 0.8540864 0.9010727 0.8721351 0.8534799
## 796 0.8540864 0.9321055 0.8874696 0.8534799
## 797 0.8540864 0.8877722 0.8721351 0.8534799
## 798 0.8540864 0.9010727 0.9090369 0.8534799
## 799 0.8540864 0.4949495 0.8791400 0.8534799
## 800 0.9439160 0.9010727 0.8890339 0.8534799
## 801 0.8540864 0.8864504 0.8874696 0.8534799
## 802 0.8540864 0.8877722 0.8721351 0.8534799
## 803 0.9439160 0.9321055 0.8890339 0.8534799
## 804 0.8540864 0.9321055 0.8791400 0.8534799
## 805 0.8540864 0.9321055 0.8874696 0.8534799
## 806 0.8540864 0.8148148 0.8791400 0.8534799
## 807 0.8540864 0.6137931 0.8874696 0.8534799
## 808 0.8540864 0.8877722 0.8874696 0.8534799
## 809 0.8540864 0.9010727 0.8791400 0.8534799
## 810 0.8540864 0.9010727 0.8874696 0.8534799
## 811 0.9439160 0.9010727 0.8874696 0.8534799
## 812 0.8540864 0.8148148 0.9090369 0.8534799
## 813 0.8540864 0.9321055 0.8874696 0.8534799
## 814 0.8540864 0.9321055 0.8874696 0.8534799
## 815 0.8540864 0.8877722 0.9090369 0.8534799
## 816 0.8540864 0.9321055 0.9090369 0.8534799
## 817 0.8540864 0.9010727 0.8874696 0.8534799
## 818 0.8540864 0.9010727 0.8721351 0.8534799
## 819 0.8540864 0.6137931 0.8874696 0.8534799
## 820 0.8540864 0.8877722 0.8890339 0.9110335
## 821 0.8540864 0.9010727 0.8890339 0.9110335
## 822 0.9439160 0.9321055 0.8890339 0.9110335
## 823 0.8540864 0.4949495 0.8890339 0.9110335
## 824 0.8540864 0.8877722 0.8890339 0.9110335
## 825 0.8540864 0.9321055 0.8890339 0.9110335
## 826 0.8540864 0.8877722 0.8890339 0.9110335
## 827 0.8540864 0.9321055 0.8890339 0.9110335
## 828 0.8540864 0.8877722 0.8890339 0.9110335
## 829 0.8540864 0.8877722 0.8890339 0.9110335
## 830 0.8540864 0.8877722 0.8890339 0.9110335
## 831 0.8540864 0.8877722 0.8890339 0.9110335
## 832 0.9439160 0.9321055 0.8890339 0.9110335
## 833 0.8540864 0.9080000 0.8890339 0.9110335
## 834 0.9439160 0.9321055 0.8890339 0.9110335
## 835 0.8540864 0.8148148 0.8890339 0.9110335
## 836 0.9439160 0.9321055 0.8890339 0.9110335
## 837 0.9439160 0.8864504 0.8890339 0.9110335
## 838 0.8540864 0.9080000 0.8890339 0.9110335
## 839 0.9439160 0.8864504 0.8890339 0.9110335
## 840 0.9439160 0.9321055 0.8890339 0.9110335
## 841 0.8540864 0.8148148 0.8890339 0.9110335
## 842 0.8540864 0.8148148 0.8890339 0.9110335
## 843 0.9439160 0.9321055 0.9090369 0.9110335
## 844 0.8540864 0.8148148 0.8890339 0.9110335
## 845 0.8540864 0.8148148 0.8890339 0.9110335
## 846 0.8540864 0.8148148 0.8890339 0.9110335
## 847 0.8540864 0.9321055 0.8890339 0.9110335
## 848 0.9439160 0.9321055 0.8890339 0.9110335
## 849 0.8540864 0.9080000 0.8890339 0.9110335
## 850 0.8540864 0.9321055 0.8890339 0.9110335
## 851 0.9439160 0.8864504 0.8890339 0.9110335
## 852 0.8540864 0.9321055 0.8890339 0.9110335
## 853 0.8540864 0.8148148 0.8890339 0.9110335
## 854 0.8540864 0.9321055 0.8890339 0.9110335
## 855 0.8540864 0.8877722 0.8890339 0.9110335
## 856 0.8540864 0.9321055 0.8890339 0.9110335
## 857 0.9439160 0.9321055 0.8890339 0.9110335
## 858 0.8540864 0.9080000 0.8890339 0.9110335
## 859 0.9439160 0.8148148 0.8890339 0.9110335
## 860 0.8540864 0.8148148 0.8890339 0.9110335
## 861 0.9439160 0.9321055 0.8890339 0.9110335
## 862 0.8540864 0.9321055 0.8890339 0.9110335
## 863 0.8540864 0.9321055 0.8890339 0.9110335
## 864 0.8540864 0.9080000 0.8890339 0.9110335
## 865 0.9439160 0.9321055 0.8890339 0.9110335
## 866 0.9439160 0.9321055 0.8890339 0.9110335
## 867 0.9439160 0.9080000 0.8890339 0.9110335
## 868 0.8540864 0.8148148 0.8890339 0.9110335
## 869 0.8540864 0.8148148 0.8890339 0.9110335
## 870 0.9439160 0.9321055 0.8890339 0.9110335
## 871 0.8540864 0.9080000 0.8890339 0.9110335
## 872 0.8540864 0.8148148 0.8890339 0.9110335
## 873 0.8540864 0.9321055 0.8890339 0.9110335
## 874 0.8540864 0.8148148 0.8890339 0.9110335
## 875 0.9439160 0.9321055 0.8890339 0.9110335
## 876 0.8540864 0.9080000 0.8890339 0.9110335
## 877 0.8540864 0.9080000 0.8890339 0.9110335
## 878 0.9439160 0.9321055 0.9090369 0.9110335
## 879 0.9439160 0.9321055 0.8890339 0.9110335
## 880 0.9439160 0.9321055 0.8890339 0.9110335
## 881 0.8540864 0.8877722 0.8890339 0.9110335
## 882 0.9439160 0.9321055 0.8890339 0.9110335
## 883 0.8540864 0.8148148 0.8890339 0.9110335
## 884 0.9439160 0.9321055 0.8890339 0.9110335
## 885 0.9439160 0.8864504 0.8890339 0.9110335
## 886 0.9439160 0.9080000 0.8890339 0.9110335
## 887 0.9439160 0.9321055 0.8890339 0.9110335
## 888 0.9439160 0.9321055 0.8890339 0.9110335
## 889 0.9439160 0.8864504 0.8890339 0.9110335
## 890 0.8540864 0.9010727 0.8890339 0.9110335
## 891 0.9439160 0.9321055 0.8890339 0.9110335
## 892 0.8540864 0.8864504 0.8890339 0.9110335
## 893 0.8540864 0.9321055 0.8890339 0.9110335
## 894 0.9439160 0.8864504 0.8890339 0.9110335
## 895 0.9439160 0.9321055 0.8890339 0.9110335
## 896 0.8540864 0.5408163 0.8890339 0.9110335
## 897 0.9439160 0.9321055 0.8890339 0.9110335
## 898 0.8540864 0.9321055 0.8890339 0.9110335
## 899 0.8540864 0.8148148 0.8890339 0.9110335
## 900 0.8540864 0.8877722 0.8890339 0.9110335
## 901 0.9439160 0.9080000 0.8890339 0.9110335
## 902 0.8540864 0.8148148 0.8890339 0.9110335
## 903 0.8540864 0.8148148 0.8890339 0.9110335
## 904 0.9439160 0.9321055 0.9090369 0.9110335
## 905 0.9439160 0.8864504 0.8890339 0.9110335
## 906 0.9439160 0.8864504 0.8890339 0.9110335
## 907 0.8540864 0.8877722 0.8890339 0.9110335
## 908 0.9439160 0.8864504 0.8890339 0.9110335
## 909 0.8540864 0.8877722 0.8890339 0.9110335
## 910 0.9439160 0.9321055 0.8890339 0.9110335
## 911 0.9439160 0.9321055 0.8890339 0.9110335
## 912 0.9439160 0.9321055 0.8890339 0.9110335
## 913 0.9439160 0.8864504 0.8890339 0.9110335
## 914 0.9439160 0.8864504 0.8890339 0.9110335
## 915 0.8540864 0.9080000 0.8890339 0.9110335
## 916 0.8540864 0.8877722 0.8890339 0.9110335
## 917 0.9439160 0.9321055 0.8890339 0.9110335
## 918 0.8540864 0.8877722 0.8890339 0.9110335
## 919 0.8540864 0.8148148 0.8890339 0.9110335
## 920 0.9439160 0.8864504 0.8890339 0.9110335
## 921 0.8540864 0.9080000 0.8890339 0.9110335
## 922 0.9439160 0.8864504 0.8890339 0.9110335
## 923 0.9439160 0.9321055 0.8890339 0.9110335
## 924 0.9439160 0.8864504 0.8890339 0.9110335
## 925 0.8540864 0.9321055 0.8890339 0.9110335
## 926 0.8540864 0.9080000 0.8890339 0.9110335
## 927 0.9439160 0.9010727 0.8890339 0.9110335
## 928 0.8540864 0.8148148 0.8890339 0.9110335
## 929 0.8540864 0.8877722 0.8890339 0.9110335
## 930 0.8540864 0.9080000 0.8890339 0.9110335
## 931 0.9439160 0.8864504 0.8890339 0.9110335
## 932 0.9439160 0.9321055 0.8890339 0.9110335
## 933 0.9439160 0.9321055 0.8890339 0.9110335
## 934 0.8540864 0.9010727 0.8890339 0.9110335
## 935 0.8540864 0.8148148 0.8890339 0.9110335
## 936 0.8540864 0.9321055 0.8890339 0.9110335
## 937 0.9439160 0.9321055 0.8890339 0.9110335
## 938 0.8540864 0.9080000 0.9090369 0.9110335
## 939 0.8540864 0.9080000 0.8890339 0.9110335
## 940 0.8540864 0.8877722 0.8890339 0.9110335
## 941 0.8540864 0.9080000 0.8890339 0.9110335
## 942 0.9439160 0.9321055 0.8890339 0.9110335
## 943 0.9439160 0.8864504 0.8890339 0.9110335
## 944 0.8540864 0.8877722 0.8890339 0.9110335
## 945 0.8540864 0.9080000 0.8890339 0.9110335
## 946 0.9439160 0.9321055 0.8890339 0.9110335
## 947 0.9439160 0.8864504 0.8890339 0.9110335
## 948 0.8540864 0.9080000 0.8890339 0.9110335
## 949 0.9439160 0.8864504 0.8890339 0.9110335
## 950 0.8540864 0.9080000 0.8890339 0.9110335
## 951 0.8540864 0.9080000 0.8890339 0.9110335
## 952 0.8540864 0.9321055 0.8890339 0.9110335
## 953 0.8540864 0.8877722 0.8890339 0.9110335
## 954 0.8540864 0.8148148 0.8890339 0.9110335
## 955 0.9439160 0.8864504 0.8890339 0.9110335
## 956 0.9439160 0.9321055 0.8890339 0.9110335
## 957 0.8540864 0.9321055 0.8890339 0.9110335
## 958 0.9439160 0.9080000 0.8890339 0.9110335
## 959 0.8540864 0.8877722 0.8890339 0.9110335
## 960 0.8540864 0.9080000 0.8890339 0.9110335
## 961 0.9439160 0.9321055 0.8890339 0.9110335
## 962 0.9439160 0.8877722 0.8890339 0.9110335
## 963 0.9439160 0.8148148 0.8890339 0.9110335
## 964 0.8540864 0.9321055 0.8890339 0.9110335
## 965 0.8540864 0.9080000 0.8890339 0.9110335
## 966 0.8540864 0.8877722 0.8890339 0.9110335
## 967 0.8540864 0.9010727 0.8890339 0.9110335
## 968 0.8540864 0.9080000 0.8890339 0.9110335
## 969 0.9439160 0.9321055 0.8890339 0.9110335
## 970 0.8540864 0.8877722 0.8890339 0.9110335
## 971 0.8540864 0.9080000 0.8890339 0.9110335
## 972 0.8540864 0.9080000 0.8890339 0.9110335
## 973 0.9439160 0.8864504 0.8890339 0.9110335
## 974 0.9439160 0.5408163 0.8890339 0.9110335
## 975 0.9439160 0.9321055 0.8890339 0.9110335
## 976 0.9439160 0.9321055 0.8890339 0.9110335
## 977 0.8540864 0.9010727 0.8890339 0.9110335
## 978 0.8540864 0.9080000 0.8890339 0.9110335
## 979 0.9439160 0.8864504 0.9090369 0.9110335
## 980 0.9439160 0.9080000 0.8890339 0.9110335
## 981 0.9439160 0.9321055 0.8890339 0.9110335
## 982 0.9439160 0.9321055 0.8890339 0.9110335
## 983 0.8540864 0.8148148 0.8890339 0.9110335
## 984 0.9439160 0.8864504 0.8890339 0.9110335
## 985 0.9439160 0.8864504 0.8890339 0.9110335
## 986 0.9439160 0.8148148 0.8890339 0.9110335
## 987 0.9439160 0.9321055 0.8890339 0.9110335
## 988 0.9439160 0.8877722 0.8890339 0.9110335
## 989 0.9439160 0.9321055 0.8890339 0.9110335
## 990 0.8540864 0.9321055 0.8890339 0.9110335
## 991 0.9439160 0.8864504 0.8890339 0.9110335
## 992 0.8540864 0.9010727 0.8890339 0.9110335
## 993 0.8540864 0.8877722 0.8890339 0.9110335
## 994 0.9439160 0.9321055 0.8890339 0.9110335
## 995 0.8540864 0.9321055 0.8890339 0.9110335
## 996 0.9439160 0.8864504 0.8890339 0.9110335
## 997 0.8540864 0.9321055 0.8890339 0.9110335
## 998 0.8540864 0.9321055 0.8890339 0.9110335
## 999 0.9439160 0.9321055 0.8890339 0.9110335
## 1000 0.9439160 0.8148148 0.8890339 0.9110335
## 1001 0.9439160 0.8864504 0.8890339 0.9110335
## 1002 0.9439160 0.8864504 0.8890339 0.9110335
## 1003 0.8540864 0.9080000 0.8890339 0.9110335
## 1004 0.9439160 0.9321055 0.8890339 0.9110335
## 1005 0.8540864 0.8864504 0.8890339 0.9110335
## 1006 0.8540864 0.8877722 0.8890339 0.9110335
## 1007 0.8540864 0.9321055 0.8890339 0.9110335
## 1008 0.9439160 0.9321055 0.8890339 0.9110335
## 1009 0.8540864 0.5408163 0.8890339 0.9110335
## 1010 0.8540864 0.8148148 0.8890339 0.9110335
## 1011 0.8540864 0.9080000 0.8890339 0.9110335
## 1012 0.9439160 0.9080000 0.8890339 0.9110335
## 1013 0.8540864 0.9080000 0.8890339 0.9110335
## 1014 0.8540864 0.8877722 0.8890339 0.9110335
## 1015 0.8540864 0.9080000 0.8890339 0.9110335
## 1016 0.8540864 0.8148148 0.8890339 0.9110335
## 1017 0.9439160 0.9321055 0.8890339 0.9110335
## 1018 0.8540864 0.9321055 0.8890339 0.9110335
## 1019 0.8540864 0.9321055 0.8890339 0.9110335
## 1020 0.8540864 0.9321055 0.8890339 0.9110335
## 1021 0.9439160 0.9321055 0.8890339 0.9110335
## 1022 0.8540864 0.9080000 0.8890339 0.9110335
## 1023 0.8540864 0.9080000 0.8890339 0.9110335
## 1024 0.9439160 0.8864504 0.8890339 0.9110335
## 1025 0.9439160 0.9080000 0.8890339 0.9110335
## 1026 0.9439160 0.8864504 0.8890339 0.9110335
## 1027 0.9439160 0.9321055 0.8890339 0.9110335
## 1028 0.9439160 0.8877722 0.8890339 0.9110335
## 1029 0.8540864 0.9080000 0.8890339 0.9110335
## 1030 0.8540864 0.9080000 0.8890339 0.9110335
## 1031 0.8540864 0.8877722 0.8890339 0.9110335
## 1032 0.9439160 0.8864504 0.8890339 0.9110335
## 1033 0.8540864 0.9321055 0.8890339 0.9110335
## 1034 0.8540864 0.8877722 0.8890339 0.9110335
## 1035 0.8540864 0.8877722 0.8890339 0.9110335
## 1036 0.9439160 0.9321055 0.8890339 0.9110335
## 1037 0.8540864 0.9080000 0.8890339 0.9110335
## 1038 0.8540864 0.9080000 0.8890339 0.9110335
## 1039 0.9439160 0.9321055 0.8890339 0.9110335
## 1040 0.9439160 0.8864504 0.8890339 0.9110335
## 1041 0.9439160 0.8864504 0.8890339 0.9110335
## 1042 0.8540864 0.8877722 0.8890339 0.9110335
## 1043 0.9439160 0.8864504 0.8890339 0.9110335
## 1044 0.8540864 0.9321055 0.8890339 0.9110335
## 1045 0.8540864 0.8877722 0.8890339 0.9110335
## 1046 0.8540864 0.8148148 0.8890339 0.9110335
## 1047 0.8540864 0.9321055 0.8890339 0.9110335
## 1048 0.8540864 0.9080000 0.8890339 0.9110335
## 1049 0.9439160 0.9321055 0.8890339 0.9110335
## 1050 0.8540864 0.9321055 0.8890339 0.9110335
## 1051 0.8540864 0.8877722 0.8890339 0.9110335
## 1052 0.8540864 0.8148148 0.8890339 0.9110335
## 1053 0.9439160 0.9321055 0.8890339 0.9110335
## 1054 0.8540864 0.9080000 0.8890339 0.9110335
## 1055 0.8540864 0.9080000 0.8890339 0.9110335
## 1056 0.9439160 0.8864504 0.8890339 0.9110335
## 1057 0.8540864 0.8148148 0.8890339 0.9110335
## 1058 0.9439160 0.8864504 0.8890339 0.9110335
## 1059 0.9439160 0.8864504 0.8890339 0.9110335
## 1060 0.8540864 0.8148148 0.8890339 0.9110335
## 1061 0.8540864 0.9080000 0.8890339 0.9110335
## 1062 0.8540864 0.8864504 0.8890339 0.9110335
## 1063 0.8540864 0.8864504 0.9090369 0.9110335
## 1064 0.9439160 0.8864504 0.8890339 0.9110335
## 1065 0.8540864 0.9080000 0.8890339 0.9110335
## 1066 0.9439160 0.9321055 0.8890339 0.9110335
## 1067 0.9439160 0.9321055 0.8890339 0.9110335
## 1068 0.8540864 0.9080000 0.8890339 0.9110335
## 1069 0.8540864 0.8877722 0.8890339 0.9110335
## 1070 0.8540864 0.8877722 0.8890339 0.9110335
## 1071 0.8540864 0.9010727 0.8890339 0.9110335
## 1072 0.9439160 0.9321055 0.8890339 0.9110335
## 1073 0.8540864 0.9321055 0.8890339 0.9110335
## 1074 0.8540864 0.8877722 0.8890339 0.9110335
## 1075 0.9439160 0.8864504 0.8890339 0.9110335
## 1076 0.8540864 0.9080000 0.9090369 0.9110335
## 1077 0.8540864 0.8877722 0.8890339 0.9110335
## 1078 0.8540864 0.8148148 0.8890339 0.9110335
## 1079 0.8540864 0.9010727 0.8890339 0.9110335
## 1080 0.8540864 0.8877722 0.8890339 0.9110335
## 1081 0.8540864 0.8148148 0.8890339 0.9110335
## 1082 0.8540864 0.9080000 0.8890339 0.9110335
## 1083 0.8540864 0.8877722 0.8890339 0.9110335
## 1084 0.9439160 0.8864504 0.8890339 0.9110335
## 1085 0.8540864 0.8148148 0.8890339 0.9110335
## 1086 0.9439160 0.9321055 0.8890339 0.9110335
## 1087 0.8540864 0.9321055 0.8890339 0.9110335
## 1088 0.8540864 0.9321055 0.8890339 0.9110335
## 1089 0.9439160 0.8864504 0.8890339 0.9110335
## 1090 0.9439160 0.8864504 0.8890339 0.9110335
## 1091 0.9439160 0.9321055 0.8890339 0.9110335
## 1092 0.8540864 0.8877722 0.8890339 0.9110335
## 1093 0.8540864 0.8877722 0.8890339 0.9110335
## 1094 0.8540864 0.8148148 0.8890339 0.9110335
## 1095 0.8540864 0.9080000 0.8890339 0.9110335
## 1096 0.9439160 0.8864504 0.8890339 0.9110335
## 1097 0.8540864 0.8877722 0.8890339 0.9110335
## 1098 0.8540864 0.9010727 0.8890339 0.9110335
## 1099 0.8540864 0.9321055 0.8890339 0.9110335
## 1100 0.8540864 0.8877722 0.8890339 0.9110335
## 1101 0.9439160 0.9321055 0.8890339 0.9110335
## 1102 0.8540864 0.8877722 0.8890339 0.9110335
## 1103 0.8540864 0.8148148 0.8890339 0.9110335
## 1104 0.8540864 0.9080000 0.8890339 0.9110335
## 1105 0.9439160 0.8864504 0.8890339 0.9110335
## 1106 0.8540864 0.9080000 0.8890339 0.9110335
## 1107 0.9439160 0.9321055 0.8890339 0.9110335
## 1108 0.9439160 0.9321055 0.8890339 0.9110335
## 1109 0.9439160 0.9321055 0.8890339 0.9110335
## 1110 0.9439160 0.9321055 0.8890339 0.9110335
## 1111 0.9439160 0.8864504 0.8890339 0.9110335
## 1112 0.9439160 0.9321055 0.8890339 0.9110335
## 1113 0.9439160 0.9321055 0.8890339 0.9110335
## 1114 0.8540864 0.8877722 0.8890339 0.9110335
## 1115 0.9439160 0.9321055 0.8890339 0.9110335
## 1116 0.8540864 0.9321055 0.8890339 0.9110335
## 1117 0.8540864 0.8877722 0.8890339 0.9110335
## 1118 0.9439160 0.8864504 0.8890339 0.9110335
## 1119 0.8540864 0.9010727 0.8890339 0.9110335
## 1120 0.8540864 0.8148148 0.8890339 0.9110335
## 1121 0.8540864 0.9080000 0.8890339 0.9110335
## 1122 0.9439160 0.9321055 0.8890339 0.9110335
## 1123 0.9439160 0.8864504 0.8890339 0.9110335
## 1124 0.9439160 0.9321055 0.8890339 0.9110335
## 1125 0.9439160 0.9321055 0.8890339 0.9110335
## 1126 0.8540864 0.9080000 0.8890339 0.9110335
## 1127 0.9439160 0.9321055 0.8890339 0.9110335
## 1128 0.9439160 0.9321055 0.8890339 0.9110335
## 1129 0.8540864 0.9321055 0.8890339 0.9110335
## 1130 0.8540864 0.9080000 0.8890339 0.9110335
## 1131 0.9439160 0.9321055 0.8890339 0.9110335
## 1132 0.9439160 0.8864504 0.8890339 0.9110335
## 1133 0.9439160 0.9321055 0.8890339 0.9110335
## 1134 0.8540864 0.8877722 0.8890339 0.9110335
## 1135 0.9439160 0.9321055 0.8890339 0.9110335
## 1136 0.8540864 0.9010727 0.8890339 0.9110335
## 1137 0.9439160 0.8864504 0.8890339 0.9110335
## 1138 0.8540864 0.8877722 0.9090369 0.9110335
## 1139 0.9439160 0.9321055 0.8890339 0.9110335
## 1140 0.8540864 0.9080000 0.8890339 0.9110335
## 1141 0.9439160 0.9080000 0.8890339 0.9110335
## 1142 0.9439160 0.8877722 0.8890339 0.9110335
## 1143 0.9439160 0.8864504 0.8890339 0.9110335
## 1144 0.8540864 0.8148148 0.8890339 0.9110335
## 1145 0.8540864 0.9080000 0.8890339 0.9110335
## 1146 0.8540864 0.9010727 0.8890339 0.9110335
## 1147 0.8540864 0.9080000 0.8890339 0.9110335
## 1148 0.9439160 0.9321055 0.8890339 0.9110335
## 1149 0.9439160 0.8864504 0.8890339 0.9110335
## 1150 0.8540864 0.9010727 0.8890339 0.9110335
## 1151 0.9439160 0.8864504 0.8890339 0.9110335
## 1152 0.9439160 0.8864504 0.8890339 0.9110335
## 1153 0.8540864 0.9080000 0.8890339 0.9110335
## 1154 0.8540864 0.9010727 0.8890339 0.9110335
## 1155 0.9439160 0.8877722 0.8890339 0.9110335
## 1156 0.9439160 0.8864504 0.8890339 0.9110335
## 1157 0.9439160 0.8864504 0.8890339 0.9110335
## 1158 0.8540864 0.8148148 0.8890339 0.9110335
## 1159 0.8540864 0.8877722 0.8890339 0.9110335
## 1160 0.9439160 0.8864504 0.8890339 0.9110335
## 1161 0.9439160 0.8864504 0.8890339 0.9110335
## 1162 0.8540864 0.9321055 0.8890339 0.9110335
## 1163 0.8540864 0.9080000 0.8890339 0.9110335
## 1164 0.8540864 0.8148148 0.8890339 0.9110335
## 1165 0.8540864 0.9321055 0.8890339 0.9110335
## 1166 0.9439160 0.8864504 0.8890339 0.9110335
## 1167 0.9439160 0.9321055 0.8890339 0.9110335
## 1168 0.8540864 0.8877722 0.8890339 0.9110335
## 1169 0.9439160 0.9321055 0.8890339 0.9110335
## 1170 0.9439160 0.8864504 0.8890339 0.9110335
## 1171 0.8540864 0.8148148 0.8890339 0.9110335
## 1172 0.9439160 0.8877722 0.8890339 0.9110335
## 1173 0.8540864 0.9010727 0.8890339 0.9110335
## 1174 0.9439160 0.9321055 0.8890339 0.9110335
## 1175 0.8540864 0.9321055 0.8890339 0.9110335
## 1176 0.8540864 0.8877722 0.8890339 0.9110335
## 1177 0.8540864 0.9010727 0.8890339 0.9110335
## 1178 0.8540864 0.8148148 0.8890339 0.9110335
## 1179 0.9439160 0.8864504 0.8890339 0.9110335
## 1180 0.9439160 0.8864504 0.8890339 0.9110335
## 1181 0.8540864 0.9321055 0.8890339 0.9110335
## 1182 0.8540864 0.8877722 0.8890339 0.9110335
## 1183 0.8540864 0.9010727 0.8890339 0.9110335
## 1184 0.9439160 0.9321055 0.8890339 0.9110335
## 1185 0.8540864 0.9080000 0.8890339 0.9110335
## 1186 0.9439160 0.9321055 0.8890339 0.9110335
## 1187 0.9439160 0.8864504 0.8890339 0.9110335
## 1188 0.9439160 0.8864504 0.8890339 0.9110335
## 1189 0.9439160 0.8864504 0.8890339 0.9110335
## 1190 0.8540864 0.9080000 0.8890339 0.9110335
## 1191 0.8540864 0.9080000 0.8890339 0.9110335
## 1192 0.9439160 0.9010727 0.8890339 0.9110335
## 1193 0.9439160 0.8877722 0.8890339 0.9110335
## 1194 0.9439160 0.9321055 0.8890339 0.9110335
## 1195 0.8540864 0.8877722 0.8890339 0.9110335
## 1196 0.9439160 0.8864504 0.8890339 0.9110335
## 1197 0.9439160 0.8864504 0.8890339 0.9110335
## 1198 0.8540864 0.3750000 0.8890339 0.9110335
## 1199 0.8540864 0.8877722 0.8890339 0.9110335
## 1200 0.8540864 0.8877722 0.8890339 0.9110335
## 1201 0.9439160 0.8864504 0.8890339 0.9110335
## 1202 0.8540864 0.8877722 0.8890339 0.9110335
## 1203 0.8540864 0.8877722 0.8890339 0.9110335
## 1204 0.8540864 0.6137931 0.8890339 0.9110335
## 1205 0.8540864 0.8148148 0.8890339 0.9110335
## 1206 0.8540864 0.8148148 0.8890339 0.9110335
## 1207 0.9439160 0.9321055 0.8890339 0.9110335
## 1208 0.9439160 0.9321055 0.8890339 0.9110335
## 1209 0.8540864 0.9080000 0.8890339 0.9110335
## 1210 0.9439160 0.9321055 0.8890339 0.9110335
## 1211 0.9439160 0.9080000 0.8890339 0.9110335
## 1212 0.8540864 0.9010727 0.8890339 0.9110335
## 1213 0.8540864 0.8864504 0.8890339 0.9110335
## 1214 0.8540864 0.9321055 0.8890339 0.9110335
## 1215 0.8540864 0.8877722 0.8890339 0.9110335
## 1216 0.8540864 0.4949495 0.8890339 0.9110335
## 1217 0.9439160 0.8864504 0.8890339 0.9110335
## 1218 0.8540864 0.9080000 0.8890339 0.9110335
## 1219 0.8540864 0.9321055 0.8890339 0.9110335
## 1220 0.9439160 0.8877722 0.8890339 0.9110335
## 1221 0.8540864 0.9080000 0.8890339 0.9110335
## 1222 0.8540864 0.4949495 0.8890339 0.9110335
## 1223 0.8540864 0.8877722 0.8890339 0.9110335
## 1224 0.8540864 0.8148148 0.8890339 0.9110335
## 1225 0.9439160 0.9321055 0.8890339 0.9110335
## 1226 0.9439160 0.9080000 0.8890339 0.9110335
## 1227 0.9439160 0.9010727 0.8890339 0.9110335
## 1228 0.8540864 0.4949495 0.8890339 0.9110335
## 1229 0.9439160 0.8864504 0.8890339 0.9110335
## 1230 0.8540864 0.8877722 0.8890339 0.9110335
## 1231 0.9439160 0.8877722 0.8890339 0.9110335
## 1232 0.9439160 0.9080000 0.8890339 0.9110335
## 1233 0.8540864 0.8877722 0.8890339 0.9110335
## 1234 0.8540864 0.8148148 0.8890339 0.9110335
## 1235 0.8540864 0.9080000 0.8890339 0.9110335
## 1236 0.8540864 0.9321055 0.8890339 0.9110335
## 1237 0.9439160 0.9321055 0.8890339 0.9110335
## 1238 0.8540864 0.8148148 0.8890339 0.9110335
## 1239 0.8540864 0.9080000 0.8890339 0.9110335
## 1240 0.8540864 0.9321055 0.8890339 0.9110335
## 1241 0.8540864 0.9321055 0.8890339 0.9110335
## 1242 0.9439160 0.9321055 0.8890339 0.9110335
## 1243 0.9439160 0.9321055 0.8890339 0.9110335
## 1244 0.9439160 0.9321055 0.8890339 0.9110335
## 1245 0.8540864 0.9010727 0.8890339 0.9110335
## 1246 0.8540864 0.4949495 0.8890339 0.9110335
## 1247 0.9439160 0.8864504 0.8890339 0.9110335
## 1248 0.8540864 0.9321055 0.8890339 0.9110335
## 1249 0.9439160 0.9321055 0.8890339 0.9110335
## 1250 0.8540864 0.8877722 0.8890339 0.9110335
## 1251 0.9439160 0.9321055 0.8890339 0.9110335
## 1252 0.8540864 0.9010727 0.8890339 0.9110335
## 1253 0.9439160 0.8864504 0.8890339 0.9110335
## 1254 0.8540864 0.9321055 0.8890339 0.9110335
## 1255 0.8540864 0.8148148 0.8890339 0.9110335
## 1256 0.8540864 0.9080000 0.8890339 0.9110335
## 1257 0.8540864 0.9080000 0.8890339 0.9110335
## 1258 0.9439160 0.8864504 0.8890339 0.9110335
## 1259 0.8540864 0.9010727 0.8890339 0.9110335
## 1260 0.8540864 0.8877722 0.8890339 0.9110335
## 1261 0.8540864 0.8877722 0.8890339 0.9110335
## 1262 0.9439160 0.9321055 0.8890339 0.9110335
## 1263 0.8540864 0.8877722 0.8890339 0.9110335
## 1264 0.8540864 0.9080000 0.8890339 0.9110335
## 1265 0.8540864 0.9080000 0.8890339 0.9110335
## 1266 0.8540864 0.9080000 0.8890339 0.9110335
## 1267 0.8540864 0.9010727 0.8890339 0.9110335
## 1268 0.9439160 0.8864504 0.8890339 0.9110335
## 1269 0.9439160 0.9321055 0.8890339 0.9110335
## 1270 0.8540864 0.9080000 0.9090369 0.9110335
## 1271 0.8540864 0.8864504 0.8890339 0.9110335
## 1272 0.8540864 0.9010727 0.9090369 0.9110335
## 1273 0.8540864 0.8877722 0.8890339 0.9110335
## 1274 0.9439160 0.8864504 0.8890339 0.9110335
## 1275 0.9439160 0.8864504 0.8890339 0.9110335
## 1276 0.8540864 0.9321055 0.8890339 0.9110335
## 1277 0.8540864 0.9010727 0.8890339 0.9110335
## 1278 0.9439160 0.8864504 0.8890339 0.9110335
## 1279 0.9439160 0.9321055 0.8890339 0.9110335
## 1280 0.9439160 0.9321055 0.8890339 0.9110335
## 1281 0.8540864 0.8877722 0.8890339 0.9110335
## 1282 0.8540864 0.9080000 0.8890339 0.9110335
## 1283 0.9439160 0.8864504 0.8890339 0.9110335
## 1284 0.8540864 0.8877722 0.8890339 0.9110335
## 1285 0.9439160 0.9080000 0.8890339 0.9110335
## 1286 0.9439160 0.8864504 0.8890339 0.9110335
## 1287 0.8540864 0.8877722 0.8890339 0.9110335
## 1288 0.8540864 0.9080000 0.8890339 0.9110335
## 1289 0.8540864 0.8877722 0.8890339 0.9110335
## 1290 0.8540864 0.8877722 0.8890339 0.9110335
## 1291 0.9439160 0.9321055 0.9090369 0.9110335
## 1292 0.9439160 0.9321055 0.8890339 0.9110335
## 1293 0.8540864 0.9321055 0.9090369 0.9110335
## 1294 0.8540864 0.9080000 0.8890339 0.9110335
## 1295 0.8540864 0.8877722 0.8890339 0.9110335
## 1296 0.9439160 0.8864504 0.8890339 0.9110335
## 1297 0.8540864 0.9010727 0.8890339 0.9110335
## 1298 0.9439160 0.8864504 0.9090369 0.9110335
## 1299 0.8540864 0.8148148 0.8890339 0.9110335
## 1300 0.8540864 0.8877722 0.8890339 0.9110335
## 1301 0.8540864 0.9321055 0.8890339 0.9110335
## 1302 0.8540864 0.8877722 0.8890339 0.9110335
## 1303 0.9439160 0.8864504 0.8890339 0.9110335
## 1304 0.8540864 0.8864504 0.9090369 0.9110335
## 1305 0.8540864 0.9010727 0.8890339 0.9110335
## 1306 0.8540864 0.8148148 0.8890339 0.9110335
## 1307 0.8540864 0.9321055 0.8890339 0.9110335
## 1308 0.9439160 0.9321055 0.8890339 0.9110335
## 1309 0.9439160 0.9321055 0.8890339 0.9110335
## 1310 0.8540864 0.9321055 0.8890339 0.9110335
## 1311 0.8540864 0.8864504 0.9090369 0.9110335
## 1312 0.8540864 0.9010727 0.8890339 0.9110335
## 1313 0.8540864 0.8877722 0.8890339 0.9110335
## 1314 0.8540864 0.9080000 0.8890339 0.9110335
## 1315 0.8540864 0.8877722 0.8890339 0.9110335
## 1316 0.8540864 0.9321055 0.8890339 0.9110335
## 1317 0.8540864 0.8877722 0.8890339 0.9110335
## 1318 0.8540864 0.8148148 0.8890339 0.9110335
## 1319 0.8540864 0.8864504 0.8890339 0.9110335
## 1320 0.9439160 0.9321055 0.8890339 0.9110335
## 1321 0.8540864 0.8877722 0.8890339 0.9110335
## 1322 0.9439160 0.9321055 0.8890339 0.9110335
## 1323 0.9439160 0.8864504 0.8890339 0.9110335
## 1324 0.9439160 0.9321055 0.8890339 0.9110335
## 1325 0.8540864 0.9080000 0.8890339 0.9110335
## 1326 0.8540864 0.8877722 0.8890339 0.9110335
## 1327 0.8540864 0.9080000 0.8890339 0.9110335
## 1328 0.8540864 0.8877722 0.8890339 0.9110335
## 1329 0.8540864 0.9080000 0.9090369 0.9110335
## 1330 0.8540864 0.9321055 0.8890339 0.9110335
## 1331 0.8540864 0.8877722 0.8890339 0.9110335
## 1332 0.9439160 0.9321055 0.8890339 0.9110335
## 1333 0.8540864 0.9080000 0.8890339 0.9110335
## 1334 0.9439160 0.9321055 0.8890339 0.9110335
## 1335 0.8540864 0.8877722 0.8890339 0.9110335
## 1336 0.9439160 0.9321055 0.8890339 0.9110335
## 1337 0.9439160 0.8864504 0.8890339 0.9110335
## 1338 0.9439160 0.8864504 0.8890339 0.9110335
## 1339 0.8540864 0.9321055 0.8890339 0.9110335
## 1340 0.9439160 0.9321055 0.8890339 0.9110335
## 1341 0.8540864 0.9080000 0.8890339 0.9110335
## 1342 0.9439160 0.8864504 0.8890339 0.9110335
## 1343 0.8540864 0.8148148 0.8890339 0.9110335
## 1344 0.9439160 0.9321055 0.8890339 0.9110335
## 1345 0.9439160 0.9080000 0.9090369 0.9110335
## 1346 0.9439160 0.9321055 0.8890339 0.9110335
## 1347 0.9439160 0.9321055 0.8890339 0.9110335
## 1348 0.9439160 0.9321055 0.8890339 0.9110335
## 1349 0.8540864 0.8877722 0.8890339 0.9110335
## 1350 0.8540864 0.9080000 0.8890339 0.9110335
## 1351 0.9439160 0.9321055 0.8890339 0.9110335
## 1352 0.9439160 0.8864504 0.8890339 0.9110335
## 1353 0.8540864 0.9010727 0.9090369 0.9110335
## 1354 0.8540864 0.8148148 0.9090369 0.9110335
## 1355 0.9439160 0.9321055 0.8890339 0.9110335
## 1356 0.8540864 0.8864504 0.8890339 0.9110335
## 1357 0.8540864 0.9080000 0.9090369 0.9110335
## 1358 0.8540864 0.8877722 0.8890339 0.9110335
## 1359 0.8540864 0.8877722 0.8890339 0.9110335
## 1360 0.8540864 0.8877722 0.8890339 0.9110335
## 1361 0.9439160 0.9321055 0.8890339 0.9110335
## 1362 0.9439160 0.9321055 0.8890339 0.9110335
## 1363 0.8540864 0.8877722 0.8890339 0.9110335
## 1364 0.9439160 0.9321055 0.8890339 0.9110335
## 1365 0.8540864 0.8877722 0.8890339 0.9110335
## 1366 0.9439160 0.8864504 0.8890339 0.9110335
## 1367 0.9439160 0.8864504 0.8890339 0.9110335
## 1368 0.9439160 0.8864504 0.8890339 0.9110335
## 1369 0.8540864 0.8877722 0.8890339 0.9110335
## 1370 0.8540864 0.8877722 0.9090369 0.9110335
## 1371 0.8540864 0.9080000 0.8890339 0.9110335
## 1372 0.8540864 0.8148148 0.8890339 0.9110335
## 1373 0.8540864 0.9080000 0.9090369 0.9110335
## 1374 0.8540864 0.9010727 0.8890339 0.9110335
## 1375 0.9439160 0.9321055 0.8890339 0.9110335
## 1376 0.9439160 0.9321055 0.8890339 0.9110335
## 1377 0.8540864 0.9321055 0.9090369 0.9110335
## 1378 0.8540864 0.9010727 0.8890339 0.9110335
## 1379 0.9439160 0.9080000 0.8890339 0.9110335
## 1380 0.8540864 0.9080000 0.9090369 0.9110335
## 1381 0.8540864 0.9080000 0.8890339 0.9110335
## 1382 0.8540864 0.9321055 0.8890339 0.9110335
## 1383 0.9439160 0.9321055 0.8890339 0.9110335
## 1384 0.9439160 0.9321055 0.8890339 0.9110335
## 1385 0.8540864 0.9080000 0.8890339 0.9110335
## 1386 0.9439160 0.9321055 0.8890339 0.9110335
## 1387 0.8540864 0.9010727 0.8890339 0.9110335
## 1388 0.9439160 0.9321055 0.8890339 0.9110335
## 1389 0.8540864 0.6137931 0.8890339 0.9110335
## 1390 0.8540864 0.8148148 0.8890339 0.9110335
## 1391 0.9439160 0.8864504 0.8890339 0.9110335
## 1392 0.8540864 0.9010727 0.8890339 0.9110335
## 1393 0.9439160 0.9321055 0.8890339 0.9110335
## 1394 0.8540864 0.8877722 0.8890339 0.9110335
## 1395 0.9439160 0.8864504 0.8890339 0.9110335
## 1396 0.8540864 0.9321055 0.8890339 0.9110335
## 1397 0.9439160 0.9321055 0.8890339 0.9110335
## 1398 0.8540864 0.8148148 0.8890339 0.9110335
## 1399 0.9439160 0.9321055 0.9090369 0.9110335
## 1400 0.9439160 0.9321055 0.8890339 0.9110335
## 1401 0.9439160 0.8864504 0.8890339 0.9110335
## 1402 0.9439160 0.9321055 0.8890339 0.9110335
## 1403 0.8540864 0.8877722 0.9090369 0.9110335
## 1404 0.8540864 0.9080000 0.8890339 0.9110335
## 1405 0.8540864 0.8877722 0.8890339 0.9110335
## 1406 0.8540864 0.8877722 0.8890339 0.9110335
## 1407 0.9439160 0.8864504 0.8890339 0.9110335
## 1408 0.8540864 0.8148148 0.8890339 0.9110335
## 1409 0.8540864 0.9321055 0.9090369 0.9110335
## 1410 0.8540864 0.8877722 0.8890339 0.9110335
## 1411 0.8540864 0.8148148 0.8890339 0.9110335
## 1412 0.9439160 0.9321055 0.8890339 0.9110335
## 1413 0.8540864 0.9080000 0.8890339 0.9110335
## 1414 0.9439160 0.8864504 0.8890339 0.9110335
## 1415 0.8540864 0.9321055 0.9090369 0.9110335
## 1416 0.9439160 0.8864504 0.8890339 0.9110335
## 1417 0.8540864 0.5408163 0.8890339 0.9110335
## 1418 0.8540864 0.8148148 0.8890339 0.9110335
## 1419 0.9439160 0.8864504 0.8890339 0.9110335
## 1420 0.8540864 0.9321055 0.8890339 0.9110335
## 1421 0.8540864 0.8877722 0.8890339 0.9110335
## 1422 0.9439160 0.9321055 0.8890339 0.9110335
## 1423 0.9439160 0.9321055 0.8890339 0.9110335
## 1424 0.8540864 0.5408163 0.8890339 0.9110335
## 1425 0.8540864 0.9080000 0.8890339 0.9110335
## 1426 0.8540864 0.9080000 0.8890339 0.9110335
## 1427 0.8540864 0.8148148 0.8890339 0.9110335
## 1428 0.8540864 0.8148148 0.8890339 0.9110335
## 1429 0.9439160 0.8864504 0.8890339 0.9110335
## 1430 0.9439160 0.9080000 0.9090369 0.9110335
## 1431 0.9439160 0.8864504 0.8890339 0.9110335
## 1432 0.8540864 0.9080000 0.8890339 0.9110335
## 1433 0.8540864 0.9080000 0.9090369 0.9110335
## 1434 0.9439160 0.9321055 0.8890339 0.9110335
## 1435 0.8540864 0.9080000 0.8890339 0.9110335
## 1436 0.9439160 0.9321055 0.8890339 0.9110335
## 1437 0.9439160 0.9321055 0.8890339 0.9110335
## 1438 0.8540864 0.9080000 0.8890339 0.9110335
## 1439 0.9439160 0.9080000 0.8890339 0.9110335
## 1440 0.9439160 0.8864504 0.8890339 0.9110335
## 1441 0.8540864 0.8148148 0.9090369 0.9110335
## 1442 0.9439160 0.9321055 0.8890339 0.9110335
## 1443 0.8540864 0.9080000 0.9090369 0.9110335
## 1444 0.9439160 0.9321055 0.8890339 0.9110335
## 1445 0.9439160 0.8864504 0.8890339 0.9110335
## 1446 0.9439160 0.9321055 0.9090369 0.9110335
## 1447 0.9439160 0.9321055 0.8890339 0.9110335
## 1448 0.8540864 0.8877722 0.8890339 0.9110335
## 1449 0.8540864 0.9010727 0.8890339 0.9110335
## 1450 0.9439160 0.8864504 0.8890339 0.9110335
## 1451 0.9439160 0.8864504 0.8890339 0.9110335
## 1452 0.8540864 0.8877722 0.8890339 0.9110335
## 1453 0.9439160 0.8864504 0.8890339 0.9110335
## 1454 0.8540864 0.9080000 0.9090369 0.9110335
## 1455 0.8540864 0.9080000 0.8890339 0.9110335
## 1456 0.8540864 0.8877722 0.8890339 0.9110335
## 1457 0.8540864 0.8877722 0.8890339 0.9110335
## 1458 0.9439160 0.9321055 0.8890339 0.9110335
## 1459 0.9439160 0.9321055 0.8890339 0.9110335
## 1460 0.8540864 0.9080000 0.8890339 0.9110335
## 1461 0.9439160 0.9321055 0.8890339 0.9110335
## 1462 0.9439160 0.9321055 0.8890339 0.9110335
## 1463 0.9439160 0.9321055 0.8890339 0.9110335
## 1464 0.9439160 0.9321055 0.8890339 0.9110335
## 1465 0.8540864 0.9080000 0.8890339 0.9110335
## 1466 0.8540864 0.9080000 0.9090369 0.9110335
## 1467 0.9439160 0.9321055 0.9090369 0.9110335
## 1468 0.9439160 0.8864504 0.8890339 0.9110335
## 1469 0.9439160 0.8864504 0.8890339 0.9110335
## 1470 0.9439160 0.9321055 0.9090369 0.9110335
## 1471 0.9439160 0.8864504 0.8890339 0.9110335
## 1472 0.8540864 0.8877722 0.8890339 0.9110335
## 1473 0.8540864 0.9080000 0.8890339 0.9110335
## 1474 0.8540864 0.8877722 0.8890339 0.9110335
## 1475 0.9439160 0.9321055 0.8890339 0.9110335
## 1476 0.9439160 0.8864504 0.8890339 0.9110335
## 1477 0.8540864 0.8877722 0.8890339 0.9110335
## 1478 0.8540864 0.9010727 0.8890339 0.9110335
## 1479 0.9439160 0.9010727 0.8890339 0.9110335
## 1480 0.8540864 0.9080000 0.8890339 0.9110335
## 1481 0.8540864 0.8148148 0.8890339 0.9110335
## 1482 0.9439160 0.9321055 0.8890339 0.9110335
## 1483 0.8540864 0.9080000 0.9090369 0.9110335
## 1484 0.9439160 0.9321055 0.8890339 0.9110335
## 1485 0.9439160 0.9080000 0.8890339 0.9110335
## 1486 0.9439160 0.9321055 0.8890339 0.9110335
## 1487 0.8540864 0.8148148 0.8890339 0.9110335
## 1488 0.9439160 0.8864504 0.8890339 0.9110335
## 1489 0.8540864 0.8877722 0.8890339 0.9110335
## 1490 0.8540864 0.9321055 0.8890339 0.9110335
## 1491 0.8540864 0.9321055 0.8890339 0.9110335
## 1492 0.8540864 0.9080000 0.8890339 0.9110335
## 1493 0.8540864 0.9080000 0.8890339 0.9110335
## 1494 0.8540864 0.9321055 0.8890339 0.9110335
## 1495 0.8540864 0.9080000 0.8890339 0.9110335
## 1496 0.9439160 0.9321055 0.8890339 0.9110335
## 1497 0.9439160 0.9080000 0.8890339 0.9110335
## 1498 0.9439160 0.9321055 0.8890339 0.9110335
## 1499 0.8540864 0.9010727 0.8890339 0.9110335
## 1500 0.9439160 0.8864504 0.8890339 0.9110335
## 1501 0.9439160 0.9321055 0.8890339 0.9110335
## 1502 0.9439160 0.8864504 0.8890339 0.9110335
## 1503 0.9439160 0.8864504 0.8890339 0.9110335
## 1504 0.9439160 0.9321055 0.8890339 0.9110335
## 1505 0.8540864 0.8148148 0.8890339 0.9110335
## 1506 0.8540864 0.9010727 0.9090369 0.9110335
## 1507 0.8540864 0.9321055 0.8890339 0.9110335
## 1508 0.8540864 0.9080000 0.8890339 0.9110335
## 1509 0.9439160 0.8864504 0.9090369 0.9110335
## 1510 0.8540864 0.9321055 0.8890339 0.9110335
## 1511 0.9439160 0.9321055 0.8890339 0.9110335
## 1512 0.8540864 0.8877722 0.8890339 0.9110335
## 1513 0.8540864 0.9321055 0.8890339 0.9110335
## 1514 0.9439160 0.8864504 0.9090369 0.9110335
## 1515 0.8540864 0.4949495 0.8890339 0.9110335
## 1516 0.8540864 0.9080000 0.8890339 0.9110335
## 1517 0.9439160 0.9321055 0.8890339 0.9110335
## 1518 0.9439160 0.8864504 0.8890339 0.9110335
## 1519 0.8540864 0.9321055 0.8890339 0.9110335
## 1520 0.9439160 0.9080000 0.8890339 0.9110335
## 1521 0.9439160 0.8877722 0.8890339 0.9110335
## 1522 0.9439160 0.8864504 0.8890339 0.9110335
## 1523 0.8540864 0.8877722 0.8890339 0.9110335
## 1524 0.8540864 0.8877722 0.8890339 0.9110335
## 1525 0.9439160 0.8864504 0.8890339 0.9110335
## 1526 0.8540864 0.8877722 0.8890339 0.9110335
## 1527 0.9439160 0.9321055 0.8890339 0.9110335
## 1528 0.8540864 0.9080000 0.8890339 0.9110335
## 1529 0.9439160 0.9010727 0.8890339 0.9110335
## 1530 0.9439160 0.9321055 0.8890339 0.9110335
## 1531 0.8540864 0.9010727 0.8890339 0.9110335
## 1532 0.9439160 0.9321055 0.8890339 0.9110335
## 1533 0.9439160 0.9321055 0.9090369 0.9110335
## 1534 0.9439160 0.8864504 0.8890339 0.9110335
## 1535 0.9439160 0.9321055 0.8890339 0.9110335
## 1536 0.9439160 0.9321055 0.8890339 0.9110335
## 1537 0.9439160 0.9321055 0.8890339 0.9110335
## 1538 0.8540864 0.9080000 0.8890339 0.9110335
## 1539 0.8540864 0.9010727 0.8890339 0.9110335
## 1540 0.9439160 0.8864504 0.8890339 0.9110335
## 1541 0.9439160 0.9321055 0.8890339 0.9110335
## 1542 0.8540864 0.9080000 0.8890339 0.9110335
## 1543 0.8540864 0.9080000 0.9090369 0.9110335
## 1544 0.8540864 0.8877722 0.8890339 0.9110335
## 1545 0.9439160 0.9321055 0.8890339 0.9110335
## 1546 0.8540864 0.9010727 0.8890339 0.9110335
## 1547 0.9439160 0.8864504 0.8890339 0.9110335
## 1548 0.9439160 0.9321055 0.8890339 0.9110335
## 1549 0.8540864 0.9321055 0.8890339 0.9110335
## 1550 0.8540864 0.9321055 0.8890339 0.9110335
## 1551 0.9439160 0.8864504 0.8890339 0.9110335
## 1552 0.8540864 0.9080000 0.9090369 0.9110335
## 1553 0.9439160 0.8864504 0.8890339 0.9110335
## 1554 0.8540864 0.9010727 0.8890339 0.9110335
## 1555 0.8540864 0.9010727 0.8890339 0.9110335
## 1556 0.8540864 0.8877722 0.8890339 0.9110335
## 1557 0.9439160 0.8864504 0.8890339 0.9110335
## 1558 0.8540864 0.8148148 0.8890339 0.9110335
## 1559 0.8540864 0.9080000 0.8890339 0.9110335
## 1560 0.8540864 0.9321055 0.8890339 0.9110335
## 1561 0.9439160 0.9080000 0.8890339 0.9110335
## 1562 0.8540864 0.8877722 0.8890339 0.9110335
## 1563 0.9439160 0.8864504 0.8890339 0.9110335
## 1564 0.8540864 0.9080000 0.8890339 0.9110335
## 1565 0.8540864 0.8877722 0.9090369 0.9110335
## 1566 0.9439160 0.9321055 0.8890339 0.9110335
## 1567 0.8540864 0.9321055 0.8890339 0.9110335
## 1568 0.9439160 0.9321055 0.8890339 0.9110335
## 1569 0.8540864 0.8877722 0.8890339 0.9110335
## 1570 0.8540864 0.9321055 0.8890339 0.9110335
## 1571 0.9439160 0.9321055 0.8890339 0.9110335
## 1572 0.9439160 0.9321055 0.8890339 0.9110335
## 1573 0.8540864 0.8877722 0.8890339 0.9110335
## 1574 0.8540864 0.8877722 0.8890339 0.9110335
## 1575 0.8540864 0.9321055 0.8890339 0.9110335
## 1576 0.8540864 0.8877722 0.8890339 0.9110335
## 1577 0.8540864 0.9010727 0.8890339 0.9110335
## 1578 0.9439160 0.9321055 0.9090369 0.9110335
## 1579 0.8540864 0.9080000 0.8890339 0.9110335
## 1580 0.8540864 0.9321055 0.8890339 0.9110335
## 1581 0.9439160 0.8864504 0.8890339 0.9110335
## 1582 0.9439160 0.9321055 0.8890339 0.9110335
## 1583 0.9439160 0.9321055 0.8890339 0.9110335
## 1584 0.9439160 0.9080000 0.8890339 0.9110335
## 1585 0.8540864 0.9010727 0.9090369 0.9110335
## 1586 0.8540864 0.8877722 0.8890339 0.9110335
## 1587 0.9439160 0.9321055 0.8890339 0.9110335
## 1588 0.9439160 0.8864504 0.9090369 0.9110335
## 1589 0.9439160 0.8864504 0.8890339 0.9110335
## 1590 0.8540864 0.8877722 0.8890339 0.9110335
## 1591 0.9439160 0.9321055 0.8890339 0.9110335
## 1592 0.9439160 0.9321055 0.8890339 0.9110335
## 1593 0.9439160 0.9321055 0.8890339 0.9110335
## 1594 0.8540864 0.9080000 0.8890339 0.9110335
## 1595 0.8540864 0.9321055 0.8890339 0.9110335
## 1596 0.9439160 0.8864504 0.9090369 0.9110335
## 1597 0.8540864 0.9321055 0.8890339 0.9110335
## 1598 0.9439160 0.8864504 0.8890339 0.9110335
## 1599 0.8540864 0.9080000 0.8890339 0.9110335
## 1600 0.8540864 0.9010727 0.8890339 0.9110335
## 1601 0.9439160 0.9321055 0.8890339 0.9110335
## 1602 0.9439160 0.9321055 0.8890339 0.9110335
## 1603 0.9439160 0.8864504 0.8890339 0.9110335
## 1604 0.9439160 0.8864504 0.8890339 0.9110335
## 1605 0.9439160 0.9321055 0.8890339 0.9110335
## 1606 0.9439160 0.8864504 0.8890339 0.9110335
## 1607 0.8540864 0.9010727 0.8890339 0.9110335
## 1608 0.8540864 0.8877722 0.9090369 0.9110335
## 1609 0.9439160 0.8864504 0.8890339 0.9110335
## 1610 0.8540864 0.8148148 0.8890339 0.9110335
## 1611 0.9439160 0.8864504 0.8890339 0.9110335
## 1612 0.9439160 0.9321055 0.8890339 0.9110335
## 1613 0.8540864 0.9010727 0.8890339 0.9110335
## 1614 0.8540864 0.8877722 0.8890339 0.9110335
## 1615 0.9439160 0.9321055 0.8890339 0.9110335
## 1616 0.8540864 0.9010727 0.8890339 0.9110335
## 1617 0.8540864 0.9010727 0.8890339 0.9110335
## 1618 0.8540864 0.9321055 0.8890339 0.9110335
## 1619 0.9439160 0.9080000 0.8890339 0.9110335
## 1620 0.8540864 0.9321055 0.9090369 0.9110335
## 1621 0.9439160 0.9321055 0.8890339 0.9110335
## 1622 0.9439160 0.8864504 0.8890339 0.9110335
## 1623 0.8540864 0.9321055 0.8890339 0.9110335
## 1624 0.9439160 0.9010727 0.8890339 0.9110335
## 1625 0.8540864 0.8148148 0.8890339 0.9110335
## 1626 0.9439160 0.9321055 0.8890339 0.9110335
## 1627 0.9439160 0.9321055 0.8890339 0.9110335
## 1628 0.8540864 0.9321055 0.9090369 0.9110335
## 1629 0.8540864 0.9080000 0.8890339 0.9110335
## 1630 0.9439160 0.8864504 0.8890339 0.9110335
## 1631 0.8540864 0.9080000 0.8890339 0.9110335
## 1632 0.9439160 0.9321055 0.9090369 0.9110335
## 1633 0.9439160 0.9321055 0.8890339 0.9110335
## 1634 0.8540864 0.9010727 0.8890339 0.9110335
## 1635 0.8540864 0.6137931 0.8890339 0.9110335
## 1636 0.8540864 0.9321055 0.8890339 0.9110335
## 1637 0.9439160 0.9321055 0.8890339 0.9110335
## 1638 0.8540864 0.9080000 0.8890339 0.9110335
## 1639 0.8540864 0.9321055 0.8890339 0.9110335
## 1640 0.9439160 0.8864504 0.8890339 0.9110335
## 1641 0.9439160 0.9321055 0.8890339 0.9110335
## 1642 0.9439160 0.8864504 0.8890339 0.9110335
## 1643 0.9439160 0.9321055 0.8890339 0.9110335
## 1644 0.9439160 0.8877722 0.8890339 0.9110335
## 1645 0.8540864 0.8148148 0.8890339 0.9110335
## 1646 0.8540864 0.8877722 0.8890339 0.9110335
## 1647 0.8540864 0.8864504 0.8890339 0.9110335
## 1648 0.9439160 0.9321055 0.9090369 0.9110335
## 1649 0.9439160 0.8864504 0.8890339 0.9110335
## 1650 0.9439160 0.8864504 0.8890339 0.9110335
## 1651 0.8540864 0.8148148 0.8890339 0.9110335
## 1652 0.8540864 0.8877722 0.8890339 0.9110335
## 1653 0.9439160 0.9321055 0.8890339 0.9110335
## 1654 0.9439160 0.9321055 0.8890339 0.9110335
## 1655 0.9439160 0.8864504 0.8890339 0.9110335
## 1656 0.8540864 0.9321055 0.8890339 0.9110335
## 1657 0.9439160 0.8148148 0.9090369 0.9110335
## 1658 0.9439160 0.9321055 0.8890339 0.9110335
## 1659 0.8540864 0.9080000 0.9090369 0.9110335
## 1660 0.8540864 0.9321055 0.8890339 0.9110335
## 1661 0.9439160 0.9321055 0.8890339 0.9110335
## 1662 0.8540864 0.9321055 0.8890339 0.9110335
## 1663 0.8540864 0.9321055 0.8890339 0.9110335
## 1664 0.8540864 0.8877722 0.8890339 0.9110335
## 1665 0.9439160 0.8864504 0.8890339 0.9110335
## 1666 0.9439160 0.9321055 0.8890339 0.9110335
## 1667 0.9439160 0.8864504 0.8890339 0.9110335
## 1668 0.9439160 0.8864504 0.8890339 0.9110335
## 1669 0.8540864 0.6137931 0.8890339 0.9110335
## 1670 0.8540864 0.9080000 0.9090369 0.9110335
## 1671 0.8540864 0.9080000 0.8890339 0.9110335
## 1672 0.9439160 0.8864504 0.8890339 0.9110335
## 1673 0.9439160 0.8864504 0.8890339 0.9110335
## 1674 0.9439160 0.6137931 0.8890339 0.9110335
## 1675 0.9439160 0.9321055 0.8890339 0.9110335
## 1676 0.9439160 0.9321055 0.8890339 0.9110335
## 1677 0.8540864 0.8148148 0.8890339 0.9110335
## 1678 0.9439160 0.8864504 0.9090369 0.9110335
## 1679 0.9439160 0.9321055 0.8890339 0.9110335
## 1680 0.9439160 0.9321055 0.8890339 0.9110335
## 1681 0.9439160 0.8864504 0.8890339 0.9110335
## 1682 0.8540864 0.9321055 0.8890339 0.9110335
## 1683 0.8540864 0.6137931 0.8890339 0.9110335
## 1684 0.9439160 0.9321055 0.8890339 0.9110335
## 1685 0.9439160 0.9321055 0.8890339 0.9110335
## 1686 0.9439160 0.8864504 0.8890339 0.9110335
## 1687 0.8540864 0.9321055 0.9090369 0.9110335
## 1688 0.8540864 0.9010727 0.8890339 0.9110335
## 1689 0.8540864 0.9010727 0.8890339 0.9110335
## 1690 0.8540864 0.8148148 0.8890339 0.9110335
## 1691 0.9439160 0.9321055 0.8890339 0.9110335
## 1692 0.8540864 0.9321055 0.9090369 0.9110335
## 1693 0.8540864 0.8877722 0.9090369 0.9110335
## 1694 0.8540864 0.9080000 0.9090369 0.9110335
## 1695 0.8540864 0.9080000 0.8890339 0.9110335
## 1696 0.8540864 0.9321055 0.8890339 0.9110335
## 1697 0.8540864 0.8148148 0.8890339 0.9110335
## 1698 0.9439160 0.8864504 0.9090369 0.9110335
## 1699 0.9439160 0.6137931 0.8890339 0.9110335
## 1700 0.8540864 0.9080000 0.8890339 0.9110335
## 1701 0.8540864 0.9080000 0.8890339 0.9110335
## 1702 0.8540864 0.8148148 0.8890339 0.9110335
## 1703 0.9439160 0.9321055 0.9090369 0.9110335
## 1704 0.8540864 0.9080000 0.8890339 0.9110335
## 1705 0.8540864 0.9080000 0.8890339 0.9110335
## 1706 0.8540864 0.9321055 0.8890339 0.9110335
## 1707 0.8540864 0.6137931 0.8890339 0.9110335
## 1708 0.9439160 0.9321055 0.8890339 0.9110335
## 1709 0.9439160 0.9321055 0.8890339 0.9110335
## 1710 0.8540864 0.8864504 0.8890339 0.9110335
## 1711 0.8540864 0.9321055 0.8791400 0.9110335
## 1712 0.8540864 0.4949495 0.9090369 0.9110335
## 1713 0.8540864 0.9080000 0.8890339 0.9110335
## 1714 0.9439160 0.8864504 0.8890339 0.9110335
## 1715 0.9439160 0.9080000 0.8890339 0.9110335
## 1716 0.8540864 0.8148148 0.9090369 0.9110335
## 1717 0.9439160 0.9321055 0.8890339 0.9110335
## 1718 0.9439160 0.9321055 0.8890339 0.9110335
## 1719 0.8540864 0.8877722 0.8890339 0.9110335
## 1720 0.8540864 0.9080000 0.8890339 0.9110335
## 1721 0.8540864 0.9010727 0.9090369 0.9110335
## 1722 0.8540864 0.9080000 0.8890339 0.9110335
## 1723 0.8540864 0.8877722 0.8890339 0.9110335
## 1724 0.8540864 0.6137931 0.8890339 0.9110335
## 1725 0.8540864 0.9321055 0.8890339 0.9110335
## 1726 0.9439160 0.9321055 0.8890339 0.9110335
## 1727 0.8540864 0.9010727 0.8890339 0.9110335
## 1728 0.8540864 0.6137931 0.8890339 0.9110335
## 1729 0.8540864 0.9080000 0.8890339 0.9110335
## 1730 0.8540864 0.9321055 0.8890339 0.9110335
## 1731 0.8540864 0.9010727 0.8890339 0.9110335
## 1732 0.9439160 0.9321055 0.9090369 0.9110335
## 1733 0.8540864 0.8877722 0.8890339 0.9110335
## 1734 0.9439160 0.8864504 0.8890339 0.9110335
## 1735 0.8540864 0.9080000 0.9090369 0.9110335
## 1736 0.9439160 0.9321055 0.8890339 0.9110335
## 1737 0.8540864 0.9080000 0.8890339 0.9110335
## 1738 0.9439160 0.9321055 0.8890339 0.9110335
## 1739 0.9439160 0.9321055 0.8890339 0.9110335
## 1740 0.8540864 0.9010727 0.8890339 0.9110335
## 1741 0.9439160 0.9321055 0.8890339 0.9110335
## 1742 0.8540864 0.8877722 0.8890339 0.9110335
## 1743 0.9439160 0.9321055 0.8890339 0.9110335
## 1744 0.8540864 0.8877722 0.8890339 0.9110335
## 1745 0.9439160 0.9321055 0.8890339 0.9110335
## 1746 0.9439160 0.8864504 0.8890339 0.9110335
## 1747 0.9439160 0.9321055 0.9090369 0.9110335
## 1748 0.9439160 0.9321055 0.8890339 0.9110335
## 1749 0.9439160 0.8864504 0.8890339 0.9110335
## 1750 0.9439160 0.8148148 0.8890339 0.9110335
## 1751 0.8540864 0.9321055 0.9090369 0.9110335
## 1752 0.8540864 0.9080000 0.9090369 0.9110335
## 1753 0.8540864 0.8877722 0.8890339 0.9110335
## 1754 0.9439160 0.8864504 0.8890339 0.9110335
## 1755 0.9439160 0.9321055 0.8890339 0.9110335
## 1756 0.9439160 0.9010727 0.8890339 0.9110335
## 1757 0.8540864 0.9321055 0.8890339 0.9110335
## 1758 0.9439160 0.8864504 0.8890339 0.9110335
## 1759 0.8540864 0.9080000 0.8890339 0.9110335
## 1760 0.8540864 0.8877722 0.9090369 0.9110335
## 1761 0.9439160 0.9080000 0.9090369 0.9110335
## 1762 0.8540864 0.9010727 0.8890339 0.9110335
## 1763 0.9439160 0.8864504 0.8890339 0.9110335
## 1764 0.9439160 0.9321055 0.8890339 0.9110335
## 1765 0.9439160 0.8864504 0.8890339 0.9110335
## 1766 0.8540864 0.8877722 0.9090369 0.9110335
## 1767 0.9439160 0.9321055 0.8890339 0.9110335
## 1768 0.9439160 0.9321055 0.8890339 0.9110335
## 1769 0.9439160 0.9321055 0.8890339 0.9110335
## 1770 0.8540864 0.8148148 0.9090369 0.9110335
## 1771 0.9439160 0.8864504 0.8890339 0.9110335
## 1772 0.8540864 0.9321055 0.8890339 0.9110335
## 1773 0.9439160 0.9321055 0.8890339 0.9110335
## 1774 0.9439160 0.9321055 0.8890339 0.9110335
## 1775 0.9439160 0.9321055 0.8890339 0.9110335
## 1776 0.8540864 0.8877722 0.8890339 0.9110335
## 1777 0.8540864 0.8877722 0.8890339 0.9110335
## 1778 0.9439160 0.9321055 0.8890339 0.9110335
## 1779 0.9439160 0.8864504 0.8890339 0.9110335
## 1780 0.8540864 0.9321055 0.8890339 0.9110335
## 1781 0.8540864 0.9080000 0.8890339 0.9110335
## 1782 0.8540864 0.5408163 0.8890339 0.9110335
## 1783 0.8540864 0.8148148 0.8890339 0.9110335
## 1784 0.8540864 0.8877722 0.8890339 0.9110335
## 1785 0.8540864 0.9080000 0.8890339 0.9110335
## 1786 0.8540864 0.8877722 0.8890339 0.9110335
## 1787 0.9439160 0.9321055 0.8890339 0.9110335
## 1788 0.9439160 0.9321055 0.8890339 0.9110335
## 1789 0.9439160 0.9080000 0.8890339 0.9110335
## 1790 0.9439160 0.8864504 0.8890339 0.9110335
## 1791 0.9439160 0.9321055 0.8890339 0.9110335
## 1792 0.8540864 0.9080000 0.8890339 0.9110335
## 1793 0.8540864 0.8877722 0.8890339 0.9110335
## 1794 0.8540864 0.5408163 0.8890339 0.9110335
## 1795 0.8540864 0.9080000 0.8890339 0.9110335
## 1796 0.9439160 0.8864504 0.9090369 0.9110335
## 1797 0.8540864 0.8877722 0.8890339 0.9110335
## 1798 0.8540864 0.8877722 0.8890339 0.9110335
## 1799 0.8540864 0.9080000 0.8890339 0.9110335
## 1800 0.8540864 0.9321055 0.9090369 0.9110335
## 1801 0.8540864 0.9080000 0.8890339 0.9110335
## 1802 0.8540864 0.5408163 0.8890339 0.9110335
## 1803 0.8540864 0.9321055 0.8890339 0.9110335
## 1804 0.8540864 0.9010727 0.8890339 0.9110335
## 1805 0.8540864 0.9321055 0.8890339 0.9110335
## 1806 0.8540864 0.8877722 0.9090369 0.9110335
## 1807 0.8540864 0.8877722 0.8890339 0.9110335
## 1808 0.9439160 0.9080000 0.8890339 0.9110335
## 1809 0.8540864 0.8877722 0.9090369 0.9110335
## 1810 0.8540864 0.9321055 0.8890339 0.9110335
## 1811 0.9439160 0.8864504 0.8890339 0.9110335
## 1812 0.9439160 0.9321055 0.8890339 0.9110335
## 1813 0.9439160 0.8864504 0.9090369 0.9110335
## 1814 0.9439160 0.9080000 0.9090369 0.9110335
## 1815 0.9439160 0.9321055 0.8890339 0.9110335
## 1816 0.9439160 0.8864504 0.8890339 0.9110335
## 1817 0.9439160 0.9321055 0.8890339 0.9110335
## 1818 0.9439160 0.9321055 0.8890339 0.9110335
## 1819 0.9439160 0.8864504 0.8890339 0.9110335
## 1820 0.8540864 0.9080000 0.9090369 0.9110335
## 1821 0.9439160 0.9321055 0.8890339 0.9110335
## 1822 0.8540864 0.9080000 0.8890339 0.9110335
## 1823 0.8540864 0.9321055 0.8890339 0.9110335
## 1824 0.8540864 0.9321055 0.8890339 0.9110335
## 1825 0.8540864 0.8877722 0.9090369 0.9110335
## 1826 0.9439160 0.8864504 0.8890339 0.9110335
## 1827 0.9439160 0.9321055 0.8890339 0.9110335
## 1828 0.9439160 0.8864504 0.8890339 0.9110335
## 1829 0.8540864 0.8148148 0.8890339 0.9110335
## 1830 0.8540864 0.9321055 0.8890339 0.9110335
## 1831 0.9439160 0.9321055 0.9090369 0.9110335
## 1832 0.9439160 0.8864504 0.8890339 0.9110335
## 1833 0.9439160 0.8864504 0.8890339 0.9110335
## 1834 0.8540864 0.9080000 0.8890339 0.9110335
## 1835 0.9439160 0.8148148 0.8890339 0.9110335
## 1836 0.8540864 0.8877722 0.8890339 0.9110335
## 1837 0.9439160 0.8864504 0.8890339 0.9110335
## 1838 0.9439160 0.9080000 0.8890339 0.9110335
## 1839 0.8540864 0.8877722 0.8890339 0.9110335
## 1840 0.8540864 0.8877722 0.8890339 0.9110335
## 1841 0.8540864 0.8877722 0.8890339 0.9110335
## 1842 0.8540864 0.8877722 0.8890339 0.9110335
## 1843 0.9439160 0.9321055 0.8890339 0.9110335
## 1844 0.9439160 0.9321055 0.8890339 0.9110335
## 1845 0.9439160 0.9321055 0.8890339 0.9110335
## 1846 0.9439160 0.9321055 0.8890339 0.9110335
## 1847 0.9439160 0.9010727 0.8890339 0.9110335
## 1848 0.8540864 0.9010727 0.8890339 0.9110335
## 1849 0.9439160 0.9321055 0.8890339 0.9110335
## 1850 0.8540864 0.9321055 0.8890339 0.9110335
## 1851 0.8540864 0.9010727 0.8890339 0.9110335
## 1852 0.9439160 0.9321055 0.8890339 0.9110335
## 1853 0.9439160 0.9321055 0.8890339 0.9110335
## 1854 0.8540864 0.8877722 0.8890339 0.9110335
## 1855 0.8540864 0.9010727 0.8890339 0.9110335
## 1856 0.8540864 0.9080000 0.8791400 0.9110335
## 1857 0.8540864 0.8877722 0.8890339 0.9110335
## 1858 0.9439160 0.8877722 0.8890339 0.9110335
## 1859 0.8540864 0.8877722 0.8890339 0.9110335
## 1860 0.9439160 0.9321055 0.8890339 0.9110335
## 1861 0.9439160 0.9321055 0.8890339 0.9110335
## 1862 0.9439160 0.8864504 0.8890339 0.9110335
## 1863 0.8540864 0.8864504 0.8890339 0.9110335
## 1864 0.8540864 0.5408163 0.8890339 0.9110335
## 1865 0.9439160 0.8864504 0.8890339 0.9110335
## 1866 0.9439160 0.9321055 0.8890339 0.9110335
## 1867 0.9439160 0.9321055 0.8890339 0.9110335
## 1868 0.9439160 0.8864504 0.8890339 0.9110335
## 1869 0.9439160 0.8864504 0.8890339 0.9110335
## 1870 0.8540864 0.9321055 0.8890339 0.9110335
## 1871 0.9439160 0.9321055 0.8890339 0.9110335
## 1872 0.9439160 0.9321055 0.8890339 0.9110335
## 1873 0.8540864 0.9321055 0.8890339 0.9110335
## 1874 0.8540864 0.8877722 0.9090369 0.9110335
## 1875 0.9439160 0.9321055 0.8890339 0.9110335
## 1876 0.9439160 0.9321055 0.8890339 0.9110335
## 1877 0.8540864 0.8877722 0.8890339 0.9110335
## 1878 0.8540864 0.8864504 0.9090369 0.9110335
## 1879 0.9439160 0.8864504 0.8890339 0.9110335
## 1880 0.9439160 0.8864504 0.8890339 0.9110335
## 1881 0.8540864 0.9010727 0.8890339 0.9110335
## 1882 0.8540864 0.8877722 0.8890339 0.9110335
## 1883 0.8540864 0.9321055 0.8890339 0.9110335
## 1884 0.9439160 0.9321055 0.8890339 0.9110335
## 1885 0.9439160 0.9321055 0.8791400 0.9110335
## 1886 0.8540864 0.9080000 0.9090369 0.9110335
## 1887 0.8540864 0.8148148 0.8890339 0.9110335
## 1888 0.8540864 0.8148148 0.9090369 0.9110335
## 1889 0.9439160 0.8864504 0.8890339 0.9110335
## 1890 0.9439160 0.9321055 0.8890339 0.9110335
## 1891 0.8540864 0.9321055 0.8890339 0.9110335
## 1892 0.8540864 0.9010727 0.8890339 0.9110335
## 1893 0.8540864 0.9080000 0.8890339 0.9110335
## 1894 0.9439160 0.8864504 0.8890339 0.9110335
## 1895 0.8540864 0.9080000 0.8890339 0.9110335
## 1896 0.9439160 0.9321055 0.8791400 0.9110335
## 1897 0.9439160 0.8864504 0.8890339 0.9110335
## 1898 0.8540864 0.8877722 0.8890339 0.9110335
## 1899 0.9439160 0.9321055 0.8890339 0.9110335
## 1900 0.9439160 0.8864504 0.9090369 0.9110335
## 1901 0.9439160 0.9321055 0.8890339 0.9110335
## 1902 0.9439160 0.8864504 0.8890339 0.9110335
## 1903 0.9439160 0.8864504 0.8890339 0.9110335
## 1904 0.9439160 0.9321055 0.8890339 0.9110335
## 1905 0.8540864 0.3750000 0.8890339 0.9110335
## 1906 0.9439160 0.9080000 0.8890339 0.9110335
## 1907 0.8540864 0.9321055 0.8890339 0.9110335
## 1908 0.8540864 0.9010727 0.8890339 0.9110335
## 1909 0.8540864 0.8877722 0.9090369 0.9110335
## 1910 0.8540864 0.9080000 0.8890339 0.9110335
## 1911 0.8540864 0.8877722 0.8890339 0.9110335
## 1912 0.8540864 0.8148148 0.9090369 0.9110335
## 1913 0.8540864 0.8148148 0.8890339 0.9110335
## 1914 0.9439160 0.8864504 0.8890339 0.9110335
## 1915 0.9439160 0.9321055 0.9090369 0.9110335
## 1916 0.8540864 0.9010727 0.8791400 0.9110335
## 1917 0.9439160 0.9321055 0.8890339 0.9110335
## 1918 0.8540864 0.9080000 0.8890339 0.9110335
## 1919 0.8540864 0.9010727 0.8890339 0.9110335
## 1920 0.9439160 0.9080000 0.9090369 0.9110335
## 1921 0.9439160 0.8864504 0.8890339 0.9110335
## 1922 0.9439160 0.9321055 0.8890339 0.9110335
## 1923 0.8540864 0.8877722 0.8890339 0.9110335
## 1924 0.9439160 0.8864504 0.9090369 0.9110335
## 1925 0.9439160 0.9321055 0.9090369 0.9110335
## 1926 0.9439160 0.9321055 0.8890339 0.9110335
## 1927 0.8540864 0.9080000 0.9090369 0.9110335
## 1928 0.9439160 0.9321055 0.8890339 0.9110335
## 1929 0.9439160 0.9321055 0.8890339 0.9110335
## 1930 0.9439160 0.9321055 0.8890339 0.9110335
## 1931 0.9439160 0.9321055 0.8890339 0.9110335
## 1932 0.9439160 0.9321055 0.8890339 0.9110335
## 1933 0.8540864 0.9080000 0.9090369 0.9110335
## 1934 0.9439160 0.9321055 0.8890339 0.9110335
## 1935 0.9439160 0.9321055 0.8890339 0.9110335
## 1936 0.8540864 0.8148148 0.8791400 0.9110335
## 1937 0.8540864 0.8148148 0.8890339 0.9110335
## 1938 0.8540864 0.9321055 0.8890339 0.9110335
## 1939 0.8540864 0.8148148 0.8890339 0.9110335
## 1940 0.8540864 0.9321055 0.8890339 0.9110335
## 1941 0.8540864 0.9321055 0.8890339 0.9110335
## 1942 0.9439160 0.9010727 0.8890339 0.9110335
## 1943 0.9439160 0.8864504 0.9090369 0.9110335
## 1944 0.9439160 0.8864504 0.8890339 0.9110335
## 1945 0.8540864 0.8148148 0.8890339 0.9110335
## 1946 0.9439160 0.8864504 0.8890339 0.9110335
## 1947 0.8540864 0.8864504 0.8890339 0.9110335
## 1948 0.8540864 0.8148148 0.8890339 0.9110335
## 1949 0.8540864 0.9080000 0.8890339 0.9110335
## 1950 0.8540864 0.9010727 0.8890339 0.9110335
## 1951 0.8540864 0.9080000 0.8890339 0.9110335
## 1952 0.8540864 0.8877722 0.8890339 0.9110335
## 1953 0.8540864 0.9080000 0.8890339 0.9110335
## 1954 0.9439160 0.9321055 0.8890339 0.9110335
## 1955 0.8540864 0.9080000 0.8890339 0.9110335
## 1956 0.8540864 0.9010727 0.8890339 0.9110335
## 1957 0.8540864 0.9080000 0.8890339 0.9110335
## 1958 0.9439160 0.9321055 0.8890339 0.9110335
## 1959 0.8540864 0.8148148 0.8890339 0.9110335
## 1960 0.9439160 0.9321055 0.8890339 0.9110335
## 1961 0.9439160 0.9321055 0.8890339 0.9110335
## 1962 0.9439160 0.8864504 0.8890339 0.9110335
## 1963 0.9439160 0.9321055 0.8890339 0.9110335
## 1964 0.9439160 0.8864504 0.8890339 0.9110335
## 1965 0.8540864 0.8877722 0.9090369 0.9110335
## 1966 0.9439160 0.9321055 0.8890339 0.9110335
## 1967 0.8540864 0.9321055 0.8890339 0.9110335
## 1968 0.8540864 0.8877722 0.8890339 0.9110335
## 1969 0.8540864 0.9080000 0.9090369 0.9110335
## 1970 0.9439160 0.9321055 0.8890339 0.9110335
## 1971 0.8540864 0.9321055 0.8791400 0.9110335
## 1972 0.8540864 0.9080000 0.9090369 0.9110335
## 1973 0.8540864 0.9010727 0.8890339 0.9110335
## 1974 0.8540864 0.9321055 0.8890339 0.9110335
## 1975 0.8540864 0.9010727 0.8890339 0.9110335
## 1976 0.8540864 0.9321055 0.8890339 0.9110335
## 1977 0.9439160 0.9321055 0.8890339 0.9110335
## 1978 0.8540864 0.9010727 0.8890339 0.9110335
## 1979 0.9439160 0.9321055 0.8890339 0.9110335
## 1980 0.9439160 0.9321055 0.8890339 0.9110335
## 1981 0.8540864 0.9321055 0.8890339 0.9110335
## 1982 0.9439160 0.8864504 0.9090369 0.9110335
## 1983 0.8540864 0.8877722 0.9090369 0.9110335
## 1984 0.8540864 0.9010727 0.8890339 0.9110335
## 1985 0.8540864 0.9321055 0.8890339 0.9110335
## 1986 0.9439160 0.9321055 0.8890339 0.9110335
## 1987 0.9439160 0.8864504 0.8890339 0.9110335
## 1988 0.8540864 0.9321055 0.8890339 0.9110335
## 1989 0.9439160 0.9321055 0.8890339 0.9110335
## 1990 0.9439160 0.9010727 0.9090369 0.9110335
## 1991 0.8540864 0.8148148 0.8890339 0.9110335
## 1992 0.8540864 0.9080000 0.8890339 0.9110335
## 1993 0.8540864 0.9080000 0.9090369 0.9110335
## 1994 0.8540864 0.9080000 0.8791400 0.9110335
## 1995 0.8540864 0.9080000 0.8890339 0.9110335
## 1996 0.8540864 0.9010727 0.8890339 0.9110335
## 1997 0.9439160 0.8864504 0.8791400 0.9110335
## 1998 0.9439160 0.9010727 0.8890339 0.9110335
## 1999 0.8540864 0.9321055 0.8890339 0.9110335
## 2000 0.9439160 0.9321055 0.9090369 0.9110335
## 2001 0.9439160 0.9321055 0.8890339 0.9110335
## 2002 0.9439160 0.9321055 0.9090369 0.9110335
## 2003 0.9439160 0.9321055 0.8890339 0.9110335
## 2004 0.8540864 0.9010727 0.8890339 0.9110335
## 2005 0.8540864 0.9080000 0.9090369 0.9110335
## 2006 0.9439160 0.8864504 0.9090369 0.9110335
## 2007 0.9439160 0.9321055 0.8890339 0.9110335
## 2008 0.9439160 0.9321055 0.8890339 0.9110335
## 2009 0.8540864 0.9080000 0.8890339 0.9110335
## 2010 0.9439160 0.9321055 0.8890339 0.9110335
## 2011 0.8540864 0.9321055 0.8791400 0.9110335
## 2012 0.9439160 0.9321055 0.9090369 0.9110335
## 2013 0.8540864 0.9321055 0.9090369 0.9110335
## 2014 0.9439160 0.8864504 0.8890339 0.9110335
## 2015 0.8540864 0.8148148 0.8890339 0.9110335
## 2016 0.8540864 0.8877722 0.8890339 0.9110335
## 2017 0.8540864 0.9080000 0.8890339 0.9110335
## 2018 0.8540864 0.8877722 0.8890339 0.9110335
## 2019 0.8540864 0.8148148 0.8890339 0.9110335
## 2020 0.9439160 0.9321055 0.8890339 0.9110335
## 2021 0.8540864 0.9321055 0.8890339 0.9110335
## 2022 0.9439160 0.8864504 0.8890339 0.9110335
## 2023 0.8540864 0.9010727 0.9090369 0.9110335
## 2024 0.9439160 0.9321055 0.8890339 0.9110335
## 2025 0.9439160 0.9321055 0.8890339 0.9110335
## 2026 0.8540864 0.9080000 0.9090369 0.9110335
## 2027 0.8540864 0.8877722 0.8890339 0.9110335
## 2028 0.9439160 0.9321055 0.9090369 0.9110335
## 2029 0.8540864 0.9080000 0.8890339 0.9110335
## 2030 0.9439160 0.8864504 0.8890339 0.9110335
## 2031 0.8540864 0.8148148 0.8791400 0.9110335
## 2032 0.9439160 0.8864504 0.8890339 0.9110335
## 2033 0.8540864 0.9010727 0.8890339 0.9110335
## 2034 0.9439160 0.9321055 0.8890339 0.9110335
## 2035 0.8540864 0.8148148 0.8791400 0.9110335
## 2036 0.8540864 0.9321055 0.8890339 0.9110335
## 2037 0.8540864 0.8877722 0.8890339 0.9110335
## 2038 0.9439160 0.9010727 0.8890339 0.9110335
## 2039 0.8540864 0.8877722 0.8890339 0.9110335
## 2040 0.9439160 0.9321055 0.8890339 0.9110335
## 2041 0.8540864 0.8864504 0.8890339 0.9110335
## 2042 0.8540864 0.9080000 0.8890339 0.9110335
## 2043 0.8540864 0.9010727 0.8890339 0.9110335
## 2044 0.8540864 0.9080000 0.8890339 0.9110335
## 2045 0.9439160 0.8864504 0.8890339 0.9110335
## 2046 0.9439160 0.9321055 0.8890339 0.9110335
## 2047 0.8540864 0.9321055 0.8890339 0.9110335
## 2048 0.9439160 0.9321055 0.8890339 0.9110335
## 2049 0.8540864 0.9010727 0.8890339 0.9110335
## 2050 0.8540864 0.9080000 0.8890339 0.9110335
## 2051 0.9439160 0.9321055 0.8890339 0.9110335
## 2052 0.8540864 0.9080000 0.8890339 0.9110335
## 2053 0.8540864 0.8877722 0.8890339 0.9110335
## 2054 0.8540864 0.9080000 0.8890339 0.9110335
## 2055 0.8540864 0.9321055 0.8890339 0.9110335
## 2056 0.9439160 0.9080000 0.8890339 0.9110335
## 2057 0.8540864 0.9080000 0.8890339 0.9110335
## 2058 0.8540864 0.9321055 0.8890339 0.9110335
## 2059 0.8540864 0.8877722 0.8890339 0.9110335
## 2060 0.8540864 0.8148148 0.8791400 0.9110335
## 2061 0.8540864 0.9080000 0.8890339 0.9110335
## 2062 0.8540864 0.9321055 0.9090369 0.9110335
## 2063 0.8540864 0.8148148 0.8890339 0.9110335
## 2064 0.9439160 0.9321055 0.8890339 0.9110335
## 2065 0.9439160 0.9321055 0.8890339 0.9110335
## 2066 0.9439160 0.9321055 0.8890339 0.9110335
## 2067 0.9439160 0.8864504 0.8890339 0.9110335
## 2068 0.9439160 0.9321055 0.8890339 0.9110335
## 2069 0.9439160 0.8864504 0.9090369 0.9110335
## 2070 0.9439160 0.9321055 0.8890339 0.9110335
## 2071 0.8540864 0.8877722 0.8890339 0.9110335
## 2072 0.9439160 0.8864504 0.8791400 0.9110335
## 2073 0.8540864 0.9321055 0.8890339 0.9110335
## 2074 0.8540864 0.8877722 0.9090369 0.9110335
## 2075 0.8540864 0.9321055 0.8890339 0.9110335
## 2076 0.9439160 0.9321055 0.8890339 0.9110335
## 2077 0.8540864 0.6137931 0.8890339 0.9110335
## 2078 0.8540864 0.8877722 0.9090369 0.9110335
## 2079 0.8540864 0.9321055 0.8890339 0.9110335
## 2080 0.9439160 0.9321055 0.8890339 0.9110335
## 2081 0.9439160 0.9321055 0.8890339 0.9110335
## 2082 0.9439160 0.9321055 0.9090369 0.9110335
## 2083 0.8540864 0.5408163 0.8890339 0.9110335
## 2084 0.8540864 0.9010727 0.8890339 0.9110335
## 2085 0.8540864 0.9321055 0.9090369 0.9110335
## 2086 0.9439160 0.9321055 0.8890339 0.9110335
## 2087 0.8540864 0.9321055 0.9090369 0.9110335
## 2088 0.9439160 0.9321055 0.8890339 0.9110335
## 2089 0.9439160 0.8864504 0.8890339 0.9110335
## 2090 0.9439160 0.9321055 0.8890339 0.9110335
## 2091 0.9439160 0.9321055 0.8890339 0.9110335
## 2092 0.8540864 0.9080000 0.8890339 0.9110335
## 2093 0.8540864 0.9080000 0.8890339 0.9110335
## 2094 0.9439160 0.9321055 0.8890339 0.9110335
## 2095 0.8540864 0.9080000 0.8890339 0.9110335
## 2096 0.8540864 0.9321055 0.8890339 0.9110335
## 2097 0.9439160 0.9080000 0.8890339 0.9110335
## 2098 0.9439160 0.9321055 0.8890339 0.9110335
## 2099 0.9439160 0.8864504 0.8890339 0.9110335
## 2100 0.8540864 0.8877722 0.8890339 0.9110335
## 2101 0.8540864 0.9321055 0.8890339 0.9110335
## 2102 0.8540864 0.9321055 0.8890339 0.9110335
## 2103 0.9439160 0.9321055 0.8890339 0.9110335
## 2104 0.9439160 0.9321055 0.8890339 0.9110335
## 2105 0.8540864 0.9010727 0.8890339 0.9110335
## 2106 0.9439160 0.8864504 0.9090369 0.9110335
## 2107 0.8540864 0.8877722 0.9090369 0.9110335
## 2108 0.8540864 0.8877722 0.9090369 0.9110335
## 2109 0.9439160 0.8148148 0.8890339 0.9110335
## 2110 0.8540864 0.9010727 0.8890339 0.9110335
## 2111 0.8540864 0.8148148 0.9090369 0.9110335
## 2112 0.8540864 0.9010727 0.9090369 0.9110335
## 2113 0.8540864 0.9321055 0.8890339 0.9110335
## 2114 0.9439160 0.9321055 0.8890339 0.9110335
## 2115 0.8540864 0.8877722 0.9090369 0.9110335
## 2116 0.9439160 0.9080000 0.8890339 0.9110335
## 2117 0.9439160 0.9321055 0.8890339 0.9110335
## 2118 0.8540864 0.9321055 0.8890339 0.9110335
## 2119 0.9439160 0.9321055 0.9090369 0.9110335
## 2120 0.8540864 0.9321055 0.8890339 0.9110335
## 2121 0.8540864 0.8877722 0.8791400 0.9110335
## 2122 0.9439160 0.9080000 0.8890339 0.9110335
## 2123 0.8540864 0.8877722 0.8890339 0.9110335
## 2124 0.9439160 0.8864504 0.8890339 0.9110335
## 2125 0.8540864 0.9321055 0.9090369 0.9110335
## 2126 0.8540864 0.8877722 0.8890339 0.9110335
## 2127 0.9439160 0.6137931 0.8890339 0.9110335
## 2128 0.8540864 0.9321055 0.9090369 0.9110335
## 2129 0.9439160 0.9321055 0.9090369 0.9110335
## 2130 0.8540864 0.9010727 0.8890339 0.9110335
## 2131 0.9439160 0.9321055 0.9090369 0.9110335
## 2132 0.9439160 0.8864504 0.9090369 0.9110335
## 2133 0.9439160 0.9080000 0.8890339 0.9110335
## 2134 0.8540864 0.8877722 0.9090369 0.9110335
## 2135 0.9439160 0.8864504 0.8890339 0.9110335
## 2136 0.9439160 0.9321055 0.8890339 0.9110335
## 2137 0.8540864 0.8877722 0.8890339 0.9110335
## 2138 0.9439160 0.9321055 0.8890339 0.9110335
## 2139 0.8540864 0.8877722 0.8890339 0.9110335
## 2140 0.8540864 0.8877722 0.9090369 0.9110335
## 2141 0.8540864 0.9080000 0.8890339 0.9110335
## 2142 0.8540864 0.9080000 0.8890339 0.9110335
## 2143 0.9439160 0.9321055 0.9090369 0.9110335
## 2144 0.8540864 0.9010727 0.8890339 0.9110335
## 2145 0.9439160 0.9321055 0.8890339 0.9110335
## 2146 0.8540864 0.9010727 0.8890339 0.9110335
## 2147 0.8540864 0.9321055 0.8890339 0.9110335
## 2148 0.9439160 0.9321055 0.8890339 0.9110335
## 2149 0.8540864 0.9080000 0.9090369 0.9110335
## 2150 0.9439160 0.8864504 0.8890339 0.9110335
## 2151 0.9439160 0.9321055 0.8890339 0.9110335
## 2152 0.8540864 0.9321055 0.8890339 0.9110335
## 2153 0.8540864 0.9321055 0.8890339 0.9110335
## 2154 0.9439160 0.8864504 0.8890339 0.9110335
## 2155 0.9439160 0.9321055 0.9090369 0.9110335
## 2156 0.9439160 0.9321055 0.8791400 0.9110335
## 2157 0.9439160 0.9080000 0.8890339 0.9110335
## 2158 0.8540864 0.9321055 0.8890339 0.9110335
## 2159 0.8540864 0.9321055 0.8890339 0.9110335
## 2160 0.9439160 0.9321055 0.9090369 0.9110335
## 2161 0.8540864 0.9010727 0.8890339 0.9110335
## 2162 0.9439160 0.8864504 0.9090369 0.9110335
## 2163 0.8540864 0.8148148 0.8890339 0.9110335
## 2164 0.9439160 0.9080000 0.9090369 0.9110335
## 2165 0.9439160 0.9321055 0.8890339 0.9110335
## 2166 0.9439160 0.9321055 0.8791400 0.9110335
## 2167 0.8540864 0.9010727 0.8890339 0.9110335
## 2168 0.9439160 0.6137931 0.8890339 0.9110335
## 2169 0.8540864 0.9080000 0.8791400 0.9110335
## 2170 0.9439160 0.9321055 0.8890339 0.9110335
## 2171 0.8540864 0.8148148 0.8890339 0.9110335
## 2172 0.8540864 0.9321055 0.8890339 0.9110335
## 2173 0.9439160 0.8864504 0.8890339 0.9110335
## 2174 0.8540864 0.9321055 0.8890339 0.9110335
## 2175 0.8540864 0.4949495 0.8890339 0.9110335
## 2176 0.9439160 0.9321055 0.8890339 0.9110335
## 2177 0.8540864 0.9010727 0.8890339 0.9110335
## 2178 0.8540864 0.9321055 0.8890339 0.9110335
## 2179 0.9439160 0.9010727 0.8890339 0.9110335
## 2180 0.8540864 0.5408163 0.8890339 0.9110335
## 2181 0.8540864 0.9321055 0.8890339 0.9110335
## 2182 0.8540864 0.9321055 0.8890339 0.9110335
## 2183 0.9439160 0.9321055 0.8890339 0.9110335
## 2184 0.9439160 0.8864504 0.9090369 0.9110335
## 2185 0.8540864 0.9010727 0.8890339 0.9110335
## 2186 0.8540864 0.8877722 0.8890339 0.9110335
## 2187 0.9439160 0.9321055 0.8890339 0.9110335
## 2188 0.8540864 0.9080000 0.8791400 0.9110335
## 2189 0.9439160 0.8864504 0.8890339 0.9110335
## 2190 0.8540864 0.9321055 0.8890339 0.9110335
## 2191 0.8540864 0.8877722 0.9090369 0.9110335
## 2192 0.9439160 0.9321055 0.8890339 0.9110335
## 2193 0.8540864 0.9010727 0.9090369 0.9110335
## 2194 0.8540864 0.9080000 0.9090369 0.9110335
## 2195 0.9439160 0.9321055 0.8890339 0.9110335
## 2196 0.9439160 0.8864504 0.8890339 0.9110335
## 2197 0.8540864 0.9080000 0.8890339 0.9110335
## 2198 0.9439160 0.8864504 0.8890339 0.9110335
## 2199 0.8540864 0.9010727 0.8890339 0.9110335
## 2200 0.8540864 0.9010727 0.8890339 0.9110335
## 2201 0.9439160 0.9321055 0.8890339 0.9110335
## 2202 0.8540864 0.9321055 0.8890339 0.9110335
## 2203 0.8540864 0.9321055 0.8890339 0.9110335
## 2204 0.9439160 0.9321055 0.8890339 0.9110335
## 2205 0.8540864 0.9321055 0.8890339 0.9110335
## 2206 0.9439160 0.9321055 0.8890339 0.9110335
## 2207 0.9439160 0.5408163 0.9090369 0.9110335
## 2208 0.9439160 0.9010727 0.8890339 0.9110335
## 2209 0.9439160 0.8864504 0.8890339 0.9110335
## 2210 0.8540864 0.4949495 0.8890339 0.9110335
## 2211 0.9439160 0.8864504 0.8890339 0.9110335
## 2212 0.9439160 0.9321055 0.8890339 0.9110335
## 2213 0.9439160 0.9321055 0.8890339 0.9110335
## 2214 0.8540864 0.9010727 0.8890339 0.9110335
## 2215 0.9439160 0.8864504 0.8890339 0.9110335
## 2216 0.9439160 0.8864504 0.9090369 0.9110335
## 2217 0.8540864 0.9080000 0.8890339 0.9110335
## 2218 0.9439160 0.9321055 0.8890339 0.9110335
## 2219 0.8540864 0.9080000 0.9090369 0.9110335
## 2220 0.8540864 0.9080000 0.8890339 0.9110335
## 2221 0.8540864 0.9010727 0.8890339 0.9110335
## 2222 0.9439160 0.9321055 0.8890339 0.9110335
## 2223 0.9439160 0.9321055 0.8890339 0.9110335
## 2224 0.8540864 0.9080000 0.9090369 0.9110335
## 2225 0.8540864 0.9321055 0.8890339 0.9110335
## 2226 0.8540864 0.9080000 0.9090369 0.9110335
## 2227 0.8540864 0.9010727 0.8890339 0.9110335
## 2228 0.8540864 0.9010727 0.8890339 0.9110335
## 2229 0.9439160 0.9321055 0.8890339 0.9110335
## 2230 0.8540864 0.9080000 0.8890339 0.9110335
## 2231 0.8540864 0.8877722 0.8791400 0.9110335
## 2232 0.9439160 0.9321055 0.8890339 0.9110335
## 2233 0.8540864 0.8877722 0.9090369 0.9110335
## 2234 0.8540864 0.9080000 0.8890339 0.9110335
## 2235 0.8540864 0.9010727 0.8890339 0.9110335
## 2236 0.9439160 0.9321055 0.9090369 0.9110335
## 2237 0.8540864 0.9080000 0.8890339 0.9110335
## 2238 0.9439160 0.8864504 0.8890339 0.9110335
## 2239 0.8540864 0.9010727 0.8890339 0.9110335
## 2240 0.9439160 0.9321055 0.8890339 0.9110335
## 2241 0.8540864 0.9321055 0.8890339 0.9110335
## 2242 0.8540864 0.8877722 0.9090369 0.9110335
## 2243 0.9439160 0.9321055 0.8890339 0.9110335
## 2244 0.9439160 0.8864504 0.8890339 0.9110335
## 2245 0.8540864 0.8877722 0.8890339 0.9110335
## 2246 0.9439160 0.9010727 0.8890339 0.9110335
## 2247 0.8540864 0.8148148 0.9090369 0.9110335
## 2248 0.8540864 0.9010727 0.8890339 0.9110335
## 2249 0.9439160 0.9321055 0.8890339 0.9110335
## 2250 0.9439160 0.9321055 0.8890339 0.9110335
## 2251 0.8540864 0.9010727 0.8890339 0.9110335
## 2252 0.8540864 0.9080000 0.9090369 0.9110335
## 2253 0.8540864 0.9321055 0.8890339 0.9110335
## 2254 0.8540864 0.9080000 0.8890339 0.9110335
## 2255 0.9439160 0.5408163 0.8890339 0.9110335
## 2256 0.8540864 0.9010727 0.8890339 0.9110335
## 2257 0.8540864 0.9010727 0.8890339 0.9110335
## 2258 0.9439160 0.8864504 0.8890339 0.9110335
## 2259 0.9439160 0.9321055 0.8890339 0.9110335
## 2260 0.9439160 0.8864504 0.8890339 0.9110335
## 2261 0.8540864 0.9010727 0.8890339 0.9110335
## 2262 0.9439160 0.9321055 0.8890339 0.9110335
## 2263 0.9439160 0.8864504 0.9090369 0.9110335
## 2264 0.9439160 0.9321055 0.8890339 0.9110335
## 2265 0.9439160 0.9321055 0.8890339 0.9110335
## 2266 0.9439160 0.9321055 0.8890339 0.9110335
## 2267 0.9439160 0.9080000 0.8890339 0.9110335
## 2268 0.9439160 0.9321055 0.8890339 0.9110335
## 2269 0.9439160 0.8877722 0.8890339 0.9110335
## 2270 0.8540864 0.9010727 0.9090369 0.9110335
## 2271 0.8540864 0.9080000 0.8890339 0.9110335
## 2272 0.9439160 0.8864504 0.8890339 0.9110335
## 2273 0.8540864 0.8877722 0.9090369 0.9110335
## 2274 0.9439160 0.9321055 0.8890339 0.9110335
## 2275 0.8540864 0.9321055 0.8890339 0.9110335
## 2276 0.8540864 0.9010727 0.8890339 0.9110335
## 2277 0.8540864 0.9010727 0.8890339 0.9110335
## 2278 0.8540864 0.9321055 0.8890339 0.9110335
## 2279 0.9439160 0.9321055 0.8890339 0.9110335
## 2280 0.8540864 0.8877722 0.9090369 0.9110335
## 2281 0.9439160 0.9321055 0.8890339 0.9110335
## 2282 0.8540864 0.9010727 0.8890339 0.9110335
## 2283 0.9439160 0.9321055 0.8890339 0.9110335
## 2284 0.8540864 0.9080000 0.9090369 0.9110335
## 2285 0.8540864 0.9080000 0.9090369 0.9110335
## 2286 0.8540864 0.8877722 0.8890339 0.9110335
## 2287 0.8540864 0.9080000 0.8890339 0.9110335
## 2288 0.9439160 0.8864504 0.8890339 0.9110335
## 2289 0.8540864 0.8877722 0.8890339 0.9110335
## 2290 0.9439160 0.9321055 0.9090369 0.9110335
## 2291 0.8540864 0.8877722 0.8890339 0.9110335
## 2292 0.9439160 0.8864504 0.9090369 0.9110335
## 2293 0.8540864 0.8148148 0.9090369 0.9110335
## 2294 0.9439160 0.9321055 0.9090369 0.9110335
## 2295 0.9439160 0.9321055 0.8890339 0.9110335
## 2296 0.9439160 0.9321055 0.8890339 0.9110335
## 2297 0.9439160 0.9321055 0.9090369 0.9110335
## 2298 0.8540864 0.9080000 0.8890339 0.9110335
## 2299 0.8540864 0.9080000 0.9090369 0.9110335
## 2300 0.9439160 0.9321055 0.8890339 0.9110335
## 2301 0.8540864 0.8877722 0.8890339 0.9110335
## 2302 0.8540864 0.8864504 0.9090369 0.9110335
## 2303 0.8540864 0.8877722 0.9090369 0.9110335
## 2304 0.8540864 0.9080000 0.8890339 0.9110335
## 2305 0.9439160 0.9321055 0.8890339 0.9110335
## 2306 0.8540864 0.4949495 0.9090369 0.9110335
## 2307 0.9439160 0.9321055 0.9090369 0.9110335
## 2308 0.9439160 0.8864504 0.8890339 0.9110335
## 2309 0.8540864 0.8877722 0.9090369 0.9110335
## 2310 0.9439160 0.9321055 0.8890339 0.9110335
## 2311 0.9439160 0.9321055 0.8890339 0.9110335
## 2312 0.9439160 0.9321055 0.8890339 0.9110335
## 2313 0.8540864 0.9080000 0.9090369 0.9110335
## 2314 0.8540864 0.8877722 0.8890339 0.9110335
## 2315 0.9439160 0.9321055 0.8890339 0.9110335
## 2316 0.8540864 0.9080000 0.8890339 0.9110335
## 2317 0.9439160 0.9321055 0.8890339 0.9110335
## 2318 0.9439160 0.9321055 0.8890339 0.9110335
## 2319 0.9439160 0.9321055 0.8890339 0.9110335
## 2320 0.8540864 0.9080000 0.9090369 0.9110335
## 2321 0.9439160 0.9321055 0.8890339 0.9110335
## 2322 0.9439160 0.9321055 0.9090369 0.9110335
## 2323 0.9439160 0.8864504 0.8791400 0.9110335
## 2324 0.8540864 0.9321055 0.8890339 0.9110335
## 2325 0.9439160 0.8864504 0.8890339 0.9110335
## 2326 0.9439160 0.8864504 0.8890339 0.9110335
## 2327 0.8540864 0.8877722 0.8890339 0.9110335
## 2328 0.8540864 0.9010727 0.8890339 0.9110335
## 2329 0.9439160 0.9321055 0.8890339 0.9110335
## 2330 0.8540864 0.9010727 0.8890339 0.9110335
## 2331 0.9439160 0.8864504 0.8890339 0.9110335
## 2332 0.8540864 0.8877722 0.8791400 0.9110335
## 2333 0.9439160 0.8864504 0.8890339 0.9110335
## 2334 0.9439160 0.9321055 0.9090369 0.9110335
## 2335 0.9439160 0.8864504 0.8890339 0.9110335
## 2336 0.8540864 0.9080000 0.8890339 0.9110335
## 2337 0.9439160 0.9321055 0.8890339 0.9110335
## 2338 0.8540864 0.5408163 0.8890339 0.9110335
## 2339 0.9439160 0.9321055 0.9090369 0.9110335
## 2340 0.9439160 0.9321055 0.8890339 0.9110335
## 2341 0.8540864 0.8877722 0.9090369 0.9110335
## 2342 0.8540864 0.9080000 0.8890339 0.9110335
## 2343 0.9439160 0.9321055 0.8890339 0.9110335
## 2344 0.8540864 0.9010727 0.8791400 0.9110335
## 2345 0.9439160 0.8864504 0.9090369 0.9110335
## 2346 0.8540864 0.9321055 0.8890339 0.9110335
## 2347 0.9439160 0.9321055 0.9090369 0.9110335
## 2348 0.8540864 0.9010727 0.8890339 0.9110335
## 2349 0.9439160 0.9321055 0.8791400 0.9110335
## 2350 0.9439160 0.8864504 0.8890339 0.9110335
## 2351 0.8540864 0.9010727 0.9090369 0.9110335
## 2352 0.8540864 0.9080000 0.9090369 0.9110335
## 2353 0.9439160 0.9321055 0.9090369 0.9110335
## 2354 0.8540864 0.8877722 0.9090369 0.9110335
## 2355 0.9439160 0.9321055 0.9090369 0.9110335
## 2356 0.8540864 0.8148148 0.9090369 0.9110335
## 2357 0.8540864 0.8148148 0.9090369 0.9110335
## 2358 0.9439160 0.8864504 0.8791400 0.9110335
## 2359 0.8540864 0.8148148 0.9090369 0.9110335
## 2360 0.9439160 0.9321055 0.9090369 0.9110335
## 2361 0.9439160 0.8864504 0.9090369 0.9110335
## 2362 0.9439160 0.8148148 0.9090369 0.9110335
## 2363 0.9439160 0.9321055 0.9090369 0.9110335
## 2364 0.8540864 0.8877722 0.9090369 0.9110335
## 2365 0.9439160 0.8864504 0.9090369 0.9110335
## 2366 0.8540864 0.8148148 0.9090369 0.9110335
## 2367 0.9439160 0.9321055 0.9090369 0.9110335
## 2368 0.9439160 0.9321055 0.9090369 0.9110335
## 2369 0.8540864 0.9321055 0.9090369 0.9110335
## 2370 0.8540864 0.8148148 0.9090369 0.9110335
## 2371 0.8540864 0.8877722 0.9090369 0.9110335
## 2372 0.8540864 0.8148148 0.9090369 0.9110335
## 2373 0.8540864 0.8877722 0.9090369 0.9110335
## 2374 0.8540864 0.9321055 0.9090369 0.9110335
## 2375 0.8540864 0.9080000 0.9090369 0.9110335
## 2376 0.8540864 0.6137931 0.9090369 0.9110335
## 2377 0.8540864 0.8148148 0.9090369 0.9110335
## 2378 0.8540864 0.9080000 0.9090369 0.9110335
## 2379 0.8540864 0.8877722 0.9090369 0.9110335
## 2380 0.9439160 0.9321055 0.9090369 0.9110335
## 2381 0.8540864 0.9080000 0.9090369 0.9110335
## 2382 0.9439160 0.9321055 0.9090369 0.9110335
## 2383 0.8540864 0.8877722 0.9090369 0.9110335
## 2384 0.9439160 0.9321055 0.9090369 0.9110335
## 2385 0.9439160 0.8864504 0.9090369 0.9110335
## 2386 0.8540864 0.9010727 0.9090369 0.9110335
## 2387 0.9439160 0.8864504 0.9090369 0.9110335
## 2388 0.8540864 0.8877722 0.9090369 0.9110335
## 2389 0.8540864 0.8148148 0.9090369 0.9110335
## 2390 0.8540864 0.8877722 0.9090369 0.9110335
## 2391 0.8540864 0.9080000 0.9090369 0.9110335
## 2392 0.8540864 0.8148148 0.9090369 0.9110335
## 2393 0.8540864 0.8877722 0.9090369 0.9110335
## 2394 0.9439160 0.9321055 0.9090369 0.9110335
## 2395 0.9439160 0.8864504 0.9090369 0.9110335
## 2396 0.8540864 0.8877722 0.9090369 0.9110335
## 2397 0.9439160 0.6137931 0.9090369 0.9110335
## 2398 0.9439160 0.9321055 0.9090369 0.9110335
## 2399 0.9439160 0.8864504 0.9090369 0.9110335
## 2400 0.8540864 0.9321055 0.9090369 0.9110335
## 2401 0.8540864 0.9080000 0.9090369 0.9110335
## 2402 0.8540864 0.8877722 0.9090369 0.9110335
## 2403 0.9439160 0.8864504 0.9090369 0.9110335
## 2404 0.8540864 0.9321055 0.9090369 0.9110335
## 2405 0.9439160 0.6137931 0.9090369 0.9110335
## 2406 0.9439160 0.8864504 0.9090369 0.9110335
## 2407 0.8540864 0.8877722 0.9090369 0.9110335
## 2408 0.8540864 0.8877722 0.9090369 0.9110335
## 2409 0.9439160 0.8864504 0.9090369 0.9110335
## 2410 0.8540864 0.9010727 0.9090369 0.9110335
## 2411 0.8540864 0.9321055 0.9090369 0.9110335
## 2412 0.8540864 0.8877722 0.9090369 0.9110335
## 2413 0.9439160 0.8864504 0.9090369 0.9110335
## 2414 0.8540864 0.9080000 0.9090369 0.9110335
## 2415 0.8540864 0.9010727 0.9090369 0.9110335
## 2416 0.8540864 0.8148148 0.9090369 0.9110335
## 2417 0.8540864 0.8877722 0.9090369 0.9110335
## 2418 0.9439160 0.8148148 0.9090369 0.9110335
## 2419 0.8540864 0.8148148 0.9090369 0.9110335
## 2420 0.9439160 0.8864504 0.9090369 0.9110335
## 2421 0.8540864 0.8148148 0.9090369 0.9110335
## 2422 0.9439160 0.8864504 0.8791400 0.9110335
## 2423 0.8540864 0.8877722 0.9090369 0.9110335
## 2424 0.9439160 0.8864504 0.9090369 0.9110335
## 2425 0.9439160 0.8877722 0.9090369 0.9110335
## 2426 0.8540864 0.9080000 0.9090369 0.9110335
## 2427 0.8540864 0.8877722 0.9090369 0.9110335
## 2428 0.8540864 0.9321055 0.9090369 0.9110335
## 2429 0.8540864 0.8148148 0.9090369 0.9110335
## 2430 0.9439160 0.8864504 0.9090369 0.9110335
## 2431 0.9439160 0.3750000 0.9090369 0.9110335
## 2432 0.9439160 0.9321055 0.9090369 0.9110335
## 2433 0.9439160 0.9080000 0.9090369 0.9110335
## 2434 0.9439160 0.9321055 0.9090369 0.9110335
## 2435 0.8540864 0.9080000 0.9090369 0.9110335
## 2436 0.8540864 0.8877722 0.9090369 0.9110335
## 2437 0.8540864 0.9080000 0.9090369 0.9110335
## 2438 0.9439160 0.9080000 0.9090369 0.9110335
## 2439 0.8540864 0.8148148 0.9090369 0.9110335
## 2440 0.9439160 0.8864504 0.9090369 0.9110335
## 2441 0.9439160 0.9321055 0.9090369 0.9110335
## 2442 0.8540864 0.8877722 0.9090369 0.9110335
## 2443 0.8540864 0.9080000 0.9090369 0.9110335
## 2444 0.8540864 0.9080000 0.9090369 0.9110335
## 2445 0.9439160 0.9321055 0.9090369 0.9110335
## 2446 0.8540864 0.6137931 0.9090369 0.9110335
## 2447 0.8540864 0.9080000 0.9090369 0.9110335
## 2448 0.9439160 0.8864504 0.9090369 0.9110335
## 2449 0.9439160 0.8877722 0.9090369 0.9110335
## 2450 0.8540864 0.9010727 0.9090369 0.9110335
## 2451 0.8540864 0.8877722 0.9090369 0.9110335
## 2452 0.8540864 0.8148148 0.9090369 0.9110335
## 2453 0.8540864 0.8877722 0.9090369 0.9110335
## 2454 0.9439160 0.8864504 0.9090369 0.9110335
## 2455 0.9439160 0.9321055 0.9090369 0.9110335
## 2456 0.8540864 0.9321055 0.9090369 0.9110335
## 2457 0.8540864 0.9080000 0.9090369 0.9110335
## 2458 0.9439160 0.9080000 0.9090369 0.9110335
## 2459 0.8540864 0.9080000 0.9090369 0.9110335
## 2460 0.9439160 0.9321055 0.9090369 0.9110335
## 2461 0.8540864 0.8877722 0.9090369 0.9110335
## 2462 0.8540864 0.8877722 0.9090369 0.9110335
## 2463 0.8540864 0.9080000 0.9090369 0.9110335
## 2464 0.9439160 0.9321055 0.9090369 0.9110335
## 2465 0.9439160 0.8864504 0.9090369 0.9110335
## 2466 0.9439160 0.8864504 0.9090369 0.9110335
## 2467 0.8540864 0.9080000 0.9090369 0.9110335
## 2468 0.9439160 0.8864504 0.9090369 0.9110335
## 2469 0.8540864 0.9321055 0.9090369 0.9110335
## 2470 0.8540864 0.8877722 0.8791400 0.9110335
## 2471 0.8540864 0.9321055 0.9090369 0.9110335
## 2472 0.8540864 0.9080000 0.9090369 0.9110335
## 2473 0.8540864 0.8877722 0.9090369 0.9110335
## 2474 0.8540864 0.9010727 0.9090369 0.9110335
## 2475 0.9439160 0.6137931 0.9090369 0.9110335
## 2476 0.9439160 0.9321055 0.9090369 0.9110335
## 2477 0.8540864 0.8864504 0.9090369 0.9110335
## 2478 0.8540864 0.9080000 0.9090369 0.9110335
## 2479 0.9439160 0.8864504 0.9090369 0.9110335
## 2480 0.9439160 0.8864504 0.9090369 0.9110335
## 2481 0.8540864 0.9080000 0.9090369 0.9110335
## 2482 0.8540864 0.9080000 0.9090369 0.9110335
## 2483 0.8540864 0.8877722 0.9090369 0.9110335
## 2484 0.9439160 0.9321055 0.9090369 0.9110335
## 2485 0.8540864 0.9080000 0.9090369 0.9110335
## 2486 0.9439160 0.8864504 0.9090369 0.9110335
## 2487 0.8540864 0.9321055 0.9090369 0.9110335
## 2488 0.8540864 0.8148148 0.9090369 0.9110335
## 2489 0.8540864 0.9080000 0.9090369 0.9110335
## 2490 0.9439160 0.9321055 0.9090369 0.9110335
## 2491 0.8540864 0.8877722 0.9090369 0.9110335
## 2492 0.9439160 0.9321055 0.9090369 0.9110335
## 2493 0.8540864 0.9080000 0.9090369 0.9110335
## 2494 0.9439160 0.8864504 0.9090369 0.9110335
## 2495 0.8540864 0.9010727 0.9090369 0.9110335
## 2496 0.8540864 0.8864504 0.9090369 0.9110335
## 2497 0.8540864 0.9321055 0.9090369 0.9110335
## 2498 0.8540864 0.8148148 0.9090369 0.9110335
## 2499 0.8540864 0.8877722 0.9090369 0.9110335
## 2500 0.8540864 0.9080000 0.9090369 0.9110335
## 2501 0.8540864 0.9080000 0.9090369 0.9110335
## 2502 0.8540864 0.9080000 0.9090369 0.9110335
## 2503 0.8540864 0.8877722 0.9090369 0.9110335
## 2504 0.8540864 0.9080000 0.9090369 0.9110335
## 2505 0.8540864 0.8877722 0.9090369 0.9110335
## 2506 0.8540864 0.9080000 0.9090369 0.9110335
## 2507 0.8540864 0.8877722 0.9090369 0.9110335
## 2508 0.8540864 0.9080000 0.8791400 0.9110335
## 2509 0.8540864 0.8877722 0.9090369 0.9110335
## 2510 0.8540864 0.8877722 0.9090369 0.9110335
## 2511 0.8540864 0.8148148 0.9090369 0.9110335
## 2512 0.8540864 0.8148148 0.9090369 0.9110335
## 2513 0.9439160 0.9080000 0.9090369 0.9110335
## 2514 0.8540864 0.8877722 0.9090369 0.9110335
## 2515 0.9439160 0.8864504 0.9090369 0.9110335
## 2516 0.8540864 0.9080000 0.9090369 0.9110335
## 2517 0.8540864 0.9080000 0.9090369 0.9110335
## 2518 0.9439160 0.9321055 0.9090369 0.9110335
## 2519 0.9439160 0.8864504 0.9090369 0.9110335
## 2520 0.8540864 0.9080000 0.9090369 0.9110335
## 2521 0.8540864 0.8877722 0.9090369 0.9110335
## 2522 0.8540864 0.8148148 0.9090369 0.9110335
## 2523 0.9439160 0.9321055 0.9090369 0.9110335
## 2524 0.8540864 0.9080000 0.9090369 0.9110335
## 2525 0.8540864 0.9080000 0.9090369 0.9110335
## 2526 0.9439160 0.8864504 0.9090369 0.9110335
## 2527 0.8540864 0.9080000 0.9090369 0.9110335
## 2528 0.8540864 0.9080000 0.9090369 0.9110335
## 2529 0.9439160 0.9321055 0.9090369 0.9110335
## 2530 0.8540864 0.9080000 0.9090369 0.9110335
## 2531 0.9439160 0.9321055 0.9090369 0.9110335
## 2532 0.8540864 0.8877722 0.9090369 0.9110335
## 2533 0.8540864 0.8148148 0.9090369 0.9110335
## 2534 0.9439160 0.9321055 0.9090369 0.9110335
## 2535 0.8540864 0.8877722 0.9090369 0.9110335
## 2536 0.8540864 0.9321055 0.9090369 0.9110335
## 2537 0.8540864 0.8877722 0.9090369 0.9110335
## 2538 0.8540864 0.9080000 0.9090369 0.9110335
## 2539 0.8540864 0.9321055 0.9090369 0.9110335
## 2540 0.9439160 0.8864504 0.9090369 0.9110335
## 2541 0.9439160 0.9321055 0.9090369 0.9110335
## 2542 0.9439160 0.9321055 0.9090369 0.9110335
## 2543 0.8540864 0.8877722 0.9090369 0.9110335
## 2544 0.9439160 0.9321055 0.9090369 0.9110335
## 2545 0.9439160 0.9321055 0.9090369 0.9110335
## 2546 0.8540864 0.8864504 0.9090369 0.9110335
## 2547 0.9439160 0.9321055 0.9090369 0.9110335
## 2548 0.8540864 0.8877722 0.9090369 0.9110335
## 2549 0.8540864 0.8877722 0.9090369 0.9110335
## 2550 0.8540864 0.9080000 0.9090369 0.9110335
## 2551 0.8540864 0.9010727 0.9090369 0.9110335
## 2552 0.8540864 0.9080000 0.9090369 0.9110335
## 2553 0.8540864 0.9321055 0.9090369 0.9110335
## 2554 0.9439160 0.9321055 0.9090369 0.9110335
## 2555 0.8540864 0.8148148 0.9090369 0.9110335
## 2556 0.8540864 0.9080000 0.9090369 0.9110335
## 2557 0.8540864 0.9080000 0.9090369 0.9110335
## 2558 0.8540864 0.9010727 0.9090369 0.9110335
## 2559 0.9439160 0.9321055 0.9090369 0.9110335
## 2560 0.9439160 0.9321055 0.9090369 0.9110335
## 2561 0.8540864 0.8877722 0.9090369 0.9110335
## 2562 0.9439160 0.9080000 0.9090369 0.9110335
## 2563 0.8540864 0.4949495 0.9090369 0.9110335
## 2564 0.9439160 0.9321055 0.9090369 0.9110335
## 2565 0.8540864 0.9080000 0.9090369 0.9110335
## 2566 0.8540864 0.9080000 0.9090369 0.9110335
## 2567 0.8540864 0.9080000 0.9090369 0.9110335
## 2568 0.8540864 0.8877722 0.9090369 0.9110335
## 2569 0.8540864 0.8877722 0.9090369 0.9110335
## 2570 0.9439160 0.8864504 0.9090369 0.9110335
## 2571 0.8540864 0.8148148 0.9090369 0.9110335
## 2572 0.8540864 0.8877722 0.9090369 0.9110335
## 2573 0.8540864 0.9321055 0.9090369 0.9110335
## 2574 0.8540864 0.8877722 0.9090369 0.9110335
## 2575 0.8540864 0.8864504 0.9090369 0.9110335
## 2576 0.8540864 0.9080000 0.9090369 0.9110335
## 2577 0.8540864 0.9321055 0.9090369 0.9110335
## 2578 0.8540864 0.8877722 0.9090369 0.9110335
## 2579 0.9439160 0.8864504 0.9090369 0.9110335
## 2580 0.9439160 0.9321055 0.9090369 0.9110335
## 2581 0.8540864 0.8877722 0.9090369 0.9110335
## 2582 0.8540864 0.9080000 0.9090369 0.9110335
## 2583 0.8540864 0.8864504 0.9090369 0.9110335
## 2584 0.9439160 0.9321055 0.9090369 0.9110335
## 2585 0.8540864 0.8877722 0.9090369 0.9110335
## 2586 0.8540864 0.9321055 0.9090369 0.9110335
## 2587 0.8540864 0.4949495 0.9090369 0.9110335
## 2588 0.9439160 0.9321055 0.9090369 0.9110335
## 2589 0.8540864 0.8864504 0.8791400 0.9110335
## 2590 0.8540864 0.8148148 0.9090369 0.9110335
## 2591 0.9439160 0.9321055 0.9090369 0.9110335
## 2592 0.8540864 0.8877722 0.9090369 0.9110335
## 2593 0.8540864 0.8877722 0.9090369 0.9110335
## 2594 0.9439160 0.9321055 0.9090369 0.9110335
## 2595 0.8540864 0.8877722 0.9090369 0.9110335
## 2596 0.8540864 0.9080000 0.8791400 0.9110335
## 2597 0.9439160 0.9321055 0.9090369 0.9110335
## 2598 0.8540864 0.9080000 0.9090369 0.9110335
## 2599 0.8540864 0.9080000 0.9090369 0.9110335
## 2600 0.9439160 0.8864504 0.9090369 0.9110335
## 2601 0.8540864 0.8148148 0.9090369 0.9110335
## 2602 0.9439160 0.9321055 0.9090369 0.9110335
## 2603 0.8540864 0.8877722 0.9090369 0.9110335
## 2604 0.9439160 0.9321055 0.9090369 0.9110335
## 2605 0.9439160 0.9321055 0.9090369 0.9110335
## 2606 0.8540864 0.9321055 0.9090369 0.9110335
## 2607 0.8540864 0.9010727 0.9090369 0.9110335
## 2608 0.9439160 0.8864504 0.9090369 0.9110335
## 2609 0.9439160 0.9321055 0.9090369 0.9110335
## 2610 0.8540864 0.9080000 0.9090369 0.9110335
## 2611 0.8540864 0.8877722 0.9090369 0.9110335
## 2612 0.9439160 0.8864504 0.9090369 0.9110335
## 2613 0.8540864 0.9080000 0.9090369 0.9110335
## 2614 0.8540864 0.9010727 0.9090369 0.9110335
## 2615 0.9439160 0.8864504 0.9090369 0.9110335
## 2616 0.9439160 0.8864504 0.9090369 0.9110335
## 2617 0.8540864 0.9080000 0.9090369 0.9110335
## 2618 0.9439160 0.9321055 0.9090369 0.9110335
## 2619 0.8540864 0.8877722 0.9090369 0.9110335
## 2620 0.8540864 0.9080000 0.9090369 0.9110335
## 2621 0.8540864 0.9080000 0.9090369 0.9110335
## 2622 0.8540864 0.8877722 0.9090369 0.9110335
## 2623 0.8540864 0.9080000 0.9090369 0.9110335
## 2624 0.9439160 0.8864504 0.9090369 0.9110335
## 2625 0.8540864 0.8877722 0.9090369 0.9110335
## 2626 0.9439160 0.9080000 0.9090369 0.9110335
## 2627 0.9439160 0.9321055 0.9090369 0.9110335
## 2628 0.8540864 0.4949495 0.9090369 0.9110335
## 2629 0.9439160 0.9321055 0.9090369 0.9110335
## 2630 0.9439160 0.9321055 0.9090369 0.9110335
## 2631 0.8540864 0.8877722 0.9090369 0.9110335
## 2632 0.8540864 0.8877722 0.9090369 0.9110335
## 2633 0.8540864 0.9321055 0.9090369 0.9110335
## 2634 0.9439160 0.9321055 0.9090369 0.9110335
## 2635 0.8540864 0.9080000 0.9090369 0.9110335
## 2636 0.8540864 0.9080000 0.9090369 0.9110335
## 2637 0.8540864 0.9080000 0.9090369 0.9110335
## 2638 0.9439160 0.9321055 0.9090369 0.9110335
## 2639 0.8540864 0.8877722 0.9090369 0.9110335
## 2640 0.8540864 0.8877722 0.9090369 0.9110335
## 2641 0.9439160 0.9080000 0.9090369 0.9110335
## 2642 0.9439160 0.8864504 0.8791400 0.9110335
## 2643 0.8540864 0.8148148 0.9090369 0.9110335
## 2644 0.8540864 0.8877722 0.9090369 0.9110335
## 2645 0.8540864 0.6137931 0.9090369 0.9110335
## 2646 0.8540864 0.9080000 0.9090369 0.9110335
## 2647 0.8540864 0.8877722 0.9090369 0.9110335
## 2648 0.8540864 0.8877722 0.9090369 0.9110335
## 2649 0.9439160 0.9321055 0.8791400 0.9110335
## 2650 0.8540864 0.9010727 0.9090369 0.9110335
## 2651 0.8540864 0.8864504 0.9090369 0.9110335
## 2652 0.9439160 0.8864504 0.9090369 0.9110335
## 2653 0.8540864 0.8877722 0.9090369 0.9110335
## 2654 0.8540864 0.8877722 0.9090369 0.9110335
## 2655 0.8540864 0.9321055 0.9090369 0.9110335
## 2656 0.8540864 0.9080000 0.9090369 0.9110335
## 2657 0.8540864 0.9080000 0.9090369 0.9110335
## 2658 0.8540864 0.9321055 0.9090369 0.9110335
## 2659 0.8540864 0.8877722 0.9090369 0.9110335
## 2660 0.8540864 0.9321055 0.9090369 0.9110335
## 2661 0.8540864 0.9010727 0.9090369 0.9110335
## 2662 0.8540864 0.8877722 0.9090369 0.9110335
## 2663 0.8540864 0.8148148 0.9090369 0.9110335
## 2664 0.8540864 0.4949495 0.9090369 0.9110335
## 2665 0.8540864 0.8148148 0.9090369 0.9110335
## 2666 0.8540864 0.8148148 0.9090369 0.9110335
## 2667 0.9439160 0.9321055 0.9090369 0.9110335
## 2668 0.8540864 0.8877722 0.9090369 0.9110335
## 2669 0.8540864 0.9080000 0.9090369 0.9110335
## 2670 0.8540864 0.8877722 0.9090369 0.9110335
## 2671 0.8540864 0.9080000 0.9090369 0.9110335
## 2672 0.9439160 0.9321055 0.9090369 0.9110335
## 2673 0.8540864 0.5408163 0.9090369 0.9110335
## 2674 0.8540864 0.8148148 0.9090369 0.9110335
## 2675 0.8540864 0.8877722 0.9090369 0.9110335
## 2676 0.8540864 0.9010727 0.9090369 0.9110335
## 2677 0.9439160 0.8864504 0.9090369 0.9110335
## 2678 0.8540864 0.8877722 0.8791400 0.9110335
## 2679 0.8540864 0.9080000 0.9090369 0.9110335
## 2680 0.9439160 0.9321055 0.9090369 0.9110335
## 2681 0.8540864 0.6137931 0.9090369 0.9110335
## 2682 0.8540864 0.9010727 0.9090369 0.9110335
## 2683 0.8540864 0.9010727 0.9090369 0.9110335
## 2684 0.9439160 0.9321055 0.9090369 0.9110335
## 2685 0.8540864 0.8148148 0.9090369 0.9110335
## 2686 0.8540864 0.8877722 0.9090369 0.9110335
## 2687 0.8540864 0.9080000 0.9090369 0.9110335
## 2688 0.8540864 0.8877722 0.9090369 0.9110335
## 2689 0.9439160 0.9321055 0.9090369 0.9110335
## 2690 0.9439160 0.9010727 0.9090369 0.9110335
## 2691 0.8540864 0.9080000 0.9090369 0.9110335
## 2692 0.9439160 0.9321055 0.9090369 0.9110335
## 2693 0.8540864 0.9080000 0.9090369 0.9110335
## 2694 0.8540864 0.9010727 0.9090369 0.9110335
## 2695 0.9439160 0.9321055 0.9090369 0.9110335
## 2696 0.9439160 0.8864504 0.9090369 0.9110335
## 2697 0.9439160 0.9321055 0.9090369 0.9110335
## 2698 0.8540864 0.9080000 0.9090369 0.9110335
## 2699 0.8540864 0.8864504 0.9090369 0.9110335
## 2700 0.8540864 0.8148148 0.9090369 0.9110335
## 2701 0.8540864 0.9080000 0.9090369 0.9110335
## 2702 0.8540864 0.9321055 0.9090369 0.9110335
## 2703 0.8540864 0.8877722 0.9090369 0.9110335
## 2704 0.8540864 0.9321055 0.9090369 0.9110335
## 2705 0.9439160 0.9080000 0.9090369 0.9110335
## 2706 0.9439160 0.8864504 0.9090369 0.9110335
## 2707 0.9439160 0.8864504 0.9090369 0.9110335
## 2708 0.9439160 0.8864504 0.9090369 0.9110335
## 2709 0.8540864 0.9080000 0.9090369 0.9110335
## 2710 0.9439160 0.9321055 0.9090369 0.9110335
## 2711 0.8540864 0.9010727 0.9090369 0.9110335
## 2712 0.8540864 0.8148148 0.9090369 0.9110335
## 2713 0.9439160 0.9321055 0.8791400 0.9110335
## 2714 0.9439160 0.9321055 0.9090369 0.9110335
## 2715 0.8540864 0.9010727 0.9090369 0.9110335
## 2716 0.8540864 0.9080000 0.9090369 0.9110335
## 2717 0.8540864 0.8148148 0.9090369 0.9110335
## 2718 0.9439160 0.8864504 0.9090369 0.9110335
## 2719 0.8540864 0.8148148 0.9090369 0.9110335
## 2720 0.8540864 0.9080000 0.9090369 0.9110335
## 2721 0.8540864 0.9010727 0.8791400 0.9110335
## 2722 0.8540864 0.8864504 0.9090369 0.9110335
## 2723 0.9439160 0.8864504 0.9090369 0.9110335
## 2724 0.9439160 0.9080000 0.9090369 0.9110335
## 2725 0.8540864 0.8877722 0.9090369 0.9110335
## 2726 0.8540864 0.9010727 0.9090369 0.9110335
## 2727 0.9439160 0.8864504 0.9090369 0.9110335
## 2728 0.8540864 0.9321055 0.9090369 0.9110335
## 2729 0.9439160 0.9321055 0.9090369 0.9110335
## 2730 0.8540864 0.9080000 0.9090369 0.9110335
## 2731 0.8540864 0.9010727 0.9090369 0.9110335
## 2732 0.8540864 0.9321055 0.9090369 0.9110335
## 2733 0.8540864 0.9010727 0.9090369 0.9110335
## 2734 0.8540864 0.9080000 0.9090369 0.9110335
## 2735 0.8540864 0.9080000 0.9090369 0.9110335
## 2736 0.8540864 0.8148148 0.9090369 0.9110335
## 2737 0.8540864 0.9321055 0.9090369 0.9110335
## 2738 0.9439160 0.8864504 0.9090369 0.9110335
## 2739 0.8540864 0.9321055 0.9090369 0.9110335
## 2740 0.8540864 0.4949495 0.9090369 0.9110335
## 2741 0.8540864 0.9080000 0.9090369 0.9110335
## 2742 0.8540864 0.9321055 0.9090369 0.9110335
## 2743 0.9439160 0.9080000 0.9090369 0.9110335
## 2744 0.8540864 0.8877722 0.9090369 0.9110335
## 2745 0.8540864 0.9010727 0.9090369 0.9110335
## 2746 0.8540864 0.8877722 0.9090369 0.9110335
## 2747 0.8540864 0.9080000 0.9090369 0.9110335
## 2748 0.8540864 0.9080000 0.9090369 0.9110335
## 2749 0.9439160 0.8864504 0.9090369 0.9110335
## 2750 0.9439160 0.9321055 0.9090369 0.9110335
## 2751 0.8540864 0.8877722 0.9090369 0.9110335
## 2752 0.8540864 0.8877722 0.9090369 0.9110335
## 2753 0.9439160 0.8864504 0.9090369 0.9110335
## 2754 0.8540864 0.4949495 0.9090369 0.9110335
## 2755 0.8540864 0.9080000 0.9090369 0.9110335
## 2756 0.9439160 0.8864504 0.9090369 0.9110335
## 2757 0.8540864 0.9080000 0.9090369 0.9110335
## 2758 0.8540864 0.3750000 0.9090369 0.9110335
## 2759 0.8540864 0.8148148 0.9090369 0.9110335
## 2760 0.8540864 0.9080000 0.9090369 0.9110335
## 2761 0.8540864 0.8877722 0.9090369 0.9110335
## 2762 0.8540864 0.9080000 0.9090369 0.9110335
## 2763 0.8540864 0.9010727 0.8791400 0.9110335
## 2764 0.9439160 0.9321055 0.9090369 0.9110335
## 2765 0.8540864 0.8877722 0.9090369 0.9110335
## 2766 0.8540864 0.9010727 0.9090369 0.9110335
## 2767 0.9439160 0.9321055 0.9090369 0.9110335
## 2768 0.8540864 0.9080000 0.9090369 0.9110335
## 2769 0.8540864 0.9080000 0.9090369 0.9110335
## 2770 0.8540864 0.9010727 0.9090369 0.9110335
## 2771 0.8540864 0.9321055 0.9090369 0.9110335
## 2772 0.8540864 0.9010727 0.9090369 0.9110335
## 2773 0.8540864 0.8877722 0.9090369 0.9110335
## 2774 0.8540864 0.9080000 0.9090369 0.9110335
## 2775 0.9439160 0.9080000 0.9090369 0.9110335
## 2776 0.8540864 0.8877722 0.9090369 0.9110335
## 2777 0.9439160 0.9321055 0.9090369 0.9110335
## 2778 0.9439160 0.9321055 0.9090369 0.9110335
## 2779 0.8540864 0.9080000 0.9090369 0.9110335
## 2780 0.9439160 0.9321055 0.9090369 0.9110335
## 2781 0.8540864 0.8877722 0.9090369 0.9110335
## 2782 0.9439160 0.9321055 0.9090369 0.9110335
## 2783 0.8540864 0.8877722 0.9090369 0.9110335
## 2784 0.8540864 0.9080000 0.9090369 0.9110335
## 2785 0.9439160 0.8864504 0.8791400 0.9110335
## 2786 0.8540864 0.9321055 0.9090369 0.9110335
## 2787 0.8540864 0.9321055 0.9090369 0.9110335
## 2788 0.8540864 0.8877722 0.9090369 0.9110335
## 2789 0.8540864 0.8148148 0.9090369 0.9110335
## 2790 0.8540864 0.8877722 0.9090369 0.9110335
## 2791 0.8540864 0.9321055 0.9090369 0.9110335
## 2792 0.8540864 0.8877722 0.8791400 0.9110335
## 2793 0.8540864 0.8864504 0.9090369 0.9110335
## 2794 0.8540864 0.8148148 0.9090369 0.9110335
## 2795 0.8540864 0.9321055 0.9090369 0.9110335
## 2796 0.9439160 0.9080000 0.8791400 0.9110335
## 2797 0.9439160 0.8864504 0.9090369 0.9110335
## 2798 0.9439160 0.9080000 0.9090369 0.9110335
## 2799 0.9439160 0.9321055 0.9090369 0.9110335
## 2800 0.9439160 0.8864504 0.9090369 0.9110335
## 2801 0.8540864 0.9080000 0.9090369 0.9110335
## 2802 0.8540864 0.9080000 0.9090369 0.9110335
## 2803 0.9439160 0.8864504 0.9090369 0.9110335
## 2804 0.8540864 0.9080000 0.8721351 0.9110335
## 2805 0.8540864 0.9321055 0.9090369 0.9110335
## 2806 0.8540864 0.8877722 0.9090369 0.9110335
## 2807 0.8540864 0.9080000 0.9090369 0.9110335
## 2808 0.8540864 0.8877722 0.9090369 0.9110335
## 2809 0.8540864 0.5408163 0.9090369 0.9110335
## 2810 0.8540864 0.9080000 0.9090369 0.9110335
## 2811 0.8540864 0.8877722 0.9090369 0.9110335
## 2812 0.8540864 0.9321055 0.8791400 0.9110335
## 2813 0.8540864 0.8877722 0.9090369 0.9110335
## 2814 0.9439160 0.9321055 0.9090369 0.9110335
## 2815 0.9439160 0.8864504 0.9090369 0.9110335
## 2816 0.8540864 0.8877722 0.9090369 0.9110335
## 2817 0.9439160 0.9321055 0.9090369 0.9110335
## 2818 0.9439160 0.9321055 0.9090369 0.9110335
## 2819 0.8540864 0.9080000 0.9090369 0.9110335
## 2820 0.8540864 0.9321055 0.9090369 0.9110335
## 2821 0.9439160 0.9321055 0.9090369 0.9110335
## 2822 0.9439160 0.9321055 0.9090369 0.9110335
## 2823 0.9439160 0.9080000 0.9090369 0.9110335
## 2824 0.9439160 0.9010727 0.9090369 0.9110335
## 2825 0.9439160 0.8864504 0.8791400 0.9110335
## 2826 0.8540864 0.8148148 0.9090369 0.9110335
## 2827 0.8540864 0.9010727 0.9090369 0.9110335
## 2828 0.9439160 0.8864504 0.8791400 0.9110335
## 2829 0.9439160 0.9080000 0.9090369 0.9110335
## 2830 0.8540864 0.9080000 0.9090369 0.9110335
## 2831 0.9439160 0.8864504 0.9090369 0.9110335
## 2832 0.9439160 0.8864504 0.9090369 0.9110335
## 2833 0.8540864 0.9321055 0.9090369 0.9110335
## 2834 0.8540864 0.9080000 0.9090369 0.9110335
## 2835 0.9439160 0.8864504 0.9090369 0.9110335
## 2836 0.8540864 0.8877722 0.9090369 0.9110335
## 2837 0.8540864 0.9080000 0.9090369 0.9110335
## 2838 0.8540864 0.9321055 0.9090369 0.9110335
## 2839 0.8540864 0.9321055 0.9090369 0.9110335
## 2840 0.8540864 0.9321055 0.9090369 0.9110335
## 2841 0.8540864 0.8877722 0.9090369 0.9110335
## 2842 0.8540864 0.9080000 0.9090369 0.9110335
## 2843 0.9439160 0.8864504 0.9090369 0.9110335
## 2844 0.9439160 0.8864504 0.8791400 0.9110335
## 2845 0.8540864 0.8877722 0.8791400 0.9110335
## 2846 0.9439160 0.9321055 0.9090369 0.9110335
## 2847 0.8540864 0.9321055 0.9090369 0.9110335
## 2848 0.8540864 0.9080000 0.9090369 0.9110335
## 2849 0.9439160 0.8864504 0.9090369 0.9110335
## 2850 0.8540864 0.6137931 0.9090369 0.9110335
## 2851 0.8540864 0.4949495 0.9090369 0.9110335
## 2852 0.8540864 0.8148148 0.9090369 0.9110335
## 2853 0.9439160 0.9321055 0.9090369 0.9110335
## 2854 0.9439160 0.8864504 0.9090369 0.9110335
## 2855 0.8540864 0.9080000 0.9090369 0.9110335
## 2856 0.8540864 0.9321055 0.9090369 0.9110335
## 2857 0.9439160 0.8864504 0.9090369 0.9110335
## 2858 0.8540864 0.8877722 0.9090369 0.9110335
## 2859 0.9439160 0.8864504 0.9090369 0.9110335
## 2860 0.9439160 0.8864504 0.9090369 0.9110335
## 2861 0.8540864 0.8148148 0.9090369 0.9110335
## 2862 0.9439160 0.8864504 0.9090369 0.9110335
## 2863 0.9439160 0.8864504 0.9090369 0.9110335
## 2864 0.8540864 0.9321055 0.9090369 0.9110335
## 2865 0.9439160 0.9321055 0.9090369 0.9110335
## 2866 0.8540864 0.8877722 0.9090369 0.9110335
## 2867 0.8540864 0.9321055 0.9090369 0.9110335
## 2868 0.8540864 0.9080000 0.9090369 0.9110335
## 2869 0.8540864 0.8877722 0.9090369 0.9110335
## 2870 0.9439160 0.9321055 0.9090369 0.9110335
## 2871 0.9439160 0.8864504 0.9090369 0.9110335
## 2872 0.8540864 0.8148148 0.9090369 0.9110335
## 2873 0.8540864 0.9080000 0.9090369 0.9110335
## 2874 0.8540864 0.8877722 0.9090369 0.9110335
## 2875 0.8540864 0.9321055 0.9090369 0.9110335
## 2876 0.8540864 0.9080000 0.9090369 0.9110335
## 2877 0.8540864 0.9080000 0.9090369 0.9110335
## 2878 0.8540864 0.8877722 0.9090369 0.9110335
## 2879 0.8540864 0.8148148 0.9090369 0.9110335
## 2880 0.9439160 0.8864504 0.9090369 0.9110335
## 2881 0.9439160 0.9321055 0.9090369 0.9110335
## 2882 0.8540864 0.9010727 0.9090369 0.9110335
## 2883 0.8540864 0.8148148 0.9090369 0.9110335
## 2884 0.8540864 0.9080000 0.9090369 0.9110335
## 2885 0.9439160 0.8864504 0.9090369 0.9110335
## 2886 0.8540864 0.9010727 0.9090369 0.9110335
## 2887 0.8540864 0.8148148 0.9090369 0.9110335
## 2888 0.8540864 0.4949495 0.8791400 0.9110335
## 2889 0.8540864 0.9010727 0.8791400 0.9110335
## 2890 0.9439160 0.8864504 0.9090369 0.9110335
## 2891 0.9439160 0.8864504 0.9090369 0.9110335
## 2892 0.8540864 0.9080000 0.9090369 0.9110335
## 2893 0.9439160 0.9321055 0.9090369 0.9110335
## 2894 0.8540864 0.8148148 0.9090369 0.9110335
## 2895 0.8540864 0.8148148 0.9090369 0.9110335
## 2896 0.8540864 0.9010727 0.9090369 0.9110335
## 2897 0.9439160 0.9321055 0.9090369 0.9110335
## 2898 0.8540864 0.9080000 0.9090369 0.9110335
## 2899 0.9439160 0.9321055 0.9090369 0.9110335
## 2900 0.8540864 0.8877722 0.9090369 0.9110335
## 2901 0.9439160 0.9321055 0.9090369 0.9110335
## 2902 0.8540864 0.8877722 0.8791400 0.9110335
## 2903 0.9439160 0.8864504 0.9090369 0.9110335
## 2904 0.9439160 0.8864504 0.9090369 0.9110335
## 2905 0.8540864 0.9080000 0.9090369 0.9110335
## 2906 0.9439160 0.9321055 0.9090369 0.9110335
## 2907 0.9439160 0.9321055 0.9090369 0.9110335
## 2908 0.8540864 0.9321055 0.9090369 0.9110335
## 2909 0.8540864 0.8877722 0.9090369 0.9110335
## 2910 0.8540864 0.9080000 0.9090369 0.9110335
## 2911 0.8540864 0.9080000 0.9090369 0.9110335
## 2912 0.8540864 0.9080000 0.9090369 0.9110335
## 2913 0.8540864 0.9321055 0.9090369 0.9110335
## 2914 0.8540864 0.8877722 0.9090369 0.9110335
## 2915 0.8540864 0.8877722 0.9090369 0.9110335
## 2916 0.9439160 0.9321055 0.9090369 0.9110335
## 2917 0.9439160 0.9321055 0.9090369 0.9110335
## 2918 0.8540864 0.9010727 0.9090369 0.9110335
## 2919 0.9439160 0.9321055 0.9090369 0.9110335
## 2920 0.9439160 0.9321055 0.9090369 0.9110335
## 2921 0.8540864 0.9080000 0.9090369 0.9110335
## 2922 0.9439160 0.9010727 0.9090369 0.9110335
## 2923 0.8540864 0.8877722 0.9090369 0.9110335
## 2924 0.9439160 0.9010727 0.9090369 0.9110335
## 2925 0.8540864 0.8877722 0.9090369 0.9110335
## 2926 0.8540864 0.8877722 0.9090369 0.9110335
## 2927 0.9439160 0.8864504 0.9090369 0.9110335
## 2928 0.9439160 0.9321055 0.9090369 0.9110335
## 2929 0.9439160 0.9321055 0.9090369 0.9110335
## 2930 0.9439160 0.9321055 0.9090369 0.9110335
## 2931 0.9439160 0.9321055 0.9090369 0.9110335
## 2932 0.8540864 0.8877722 0.9090369 0.9110335
## 2933 0.8540864 0.9010727 0.9090369 0.9110335
## 2934 0.9439160 0.9321055 0.9090369 0.9110335
## 2935 0.8540864 0.9080000 0.9090369 0.9110335
## 2936 0.8540864 0.9010727 0.9090369 0.9110335
## 2937 0.8540864 0.9080000 0.9090369 0.9110335
## 2938 0.8540864 0.8877722 0.9090369 0.9110335
## 2939 0.8540864 0.9010727 0.9090369 0.9110335
## 2940 0.8540864 0.9321055 0.9090369 0.9110335
## 2941 0.8540864 0.8877722 0.9090369 0.9110335
## 2942 0.9439160 0.8864504 0.9090369 0.9110335
## 2943 0.8540864 0.9080000 0.8791400 0.9110335
## 2944 0.8540864 0.9080000 0.9090369 0.9110335
## 2945 0.9439160 0.9321055 0.9090369 0.9110335
## 2946 0.8540864 0.8877722 0.9090369 0.9110335
## 2947 0.9439160 0.9080000 0.9090369 0.9110335
## 2948 0.9439160 0.5408163 0.9090369 0.9110335
## 2949 0.8540864 0.8877722 0.8721351 0.9110335
## 2950 0.8540864 0.8148148 0.9090369 0.9110335
## 2951 0.8540864 0.8877722 0.9090369 0.9110335
## 2952 0.8540864 0.9010727 0.9090369 0.9110335
## 2953 0.8540864 0.9321055 0.9090369 0.9110335
## 2954 0.8540864 0.9080000 0.9090369 0.9110335
## 2955 0.9439160 0.8864504 0.9090369 0.9110335
## 2956 0.8540864 0.8148148 0.9090369 0.9110335
## 2957 0.8540864 0.9321055 0.8721351 0.9110335
## 2958 0.8540864 0.8877722 0.9090369 0.9110335
## 2959 0.8540864 0.8877722 0.9090369 0.9110335
## 2960 0.8540864 0.8864504 0.9090369 0.9110335
## 2961 0.9439160 0.8864504 0.9090369 0.9110335
## 2962 0.8540864 0.8877722 0.8791400 0.9110335
## 2963 0.8540864 0.8877722 0.9090369 0.9110335
## 2964 0.8540864 0.8148148 0.9090369 0.9110335
## 2965 0.9439160 0.9321055 0.9090369 0.9110335
## 2966 0.8540864 0.9321055 0.9090369 0.9110335
## 2967 0.9439160 0.9321055 0.8791400 0.9110335
## 2968 0.9439160 0.8877722 0.9090369 0.9110335
## 2969 0.9439160 0.9321055 0.9090369 0.9110335
## 2970 0.9439160 0.9321055 0.9090369 0.9110335
## 2971 0.8540864 0.8148148 0.8791400 0.9110335
## 2972 0.9439160 0.8148148 0.9090369 0.9110335
## 2973 0.8540864 0.8877722 0.9090369 0.9110335
## 2974 0.9439160 0.9321055 0.9090369 0.9110335
## 2975 0.8540864 0.8148148 0.9090369 0.9110335
## 2976 0.8540864 0.8877722 0.9090369 0.9110335
## 2977 0.8540864 0.9321055 0.9090369 0.9110335
## 2978 0.9439160 0.8864504 0.8791400 0.9110335
## 2979 0.8540864 0.8877722 0.8791400 0.9110335
## 2980 0.9439160 0.9010727 0.9090369 0.9110335
## 2981 0.8540864 0.9080000 0.8791400 0.9110335
## 2982 0.8540864 0.8877722 0.9090369 0.9110335
## 2983 0.9439160 0.8864504 0.8791400 0.9110335
## 2984 0.8540864 0.8877722 0.9090369 0.9110335
## 2985 0.8540864 0.9080000 0.9090369 0.9110335
## 2986 0.9439160 0.9321055 0.9090369 0.9110335
## 2987 0.8540864 0.9080000 0.9090369 0.9110335
## 2988 0.8540864 0.9080000 0.9090369 0.9110335
## 2989 0.9439160 0.8864504 0.8721351 0.9110335
## 2990 0.8540864 0.8148148 0.9090369 0.9110335
## 2991 0.9439160 0.9321055 0.9090369 0.9110335
## 2992 0.9439160 0.9080000 0.9090369 0.9110335
## 2993 0.8540864 0.8148148 0.8791400 0.9110335
## 2994 0.9439160 0.9010727 0.9090369 0.9110335
## 2995 0.9439160 0.3750000 0.9090369 0.9110335
## 2996 0.9439160 0.9010727 0.9090369 0.9110335
## 2997 0.9439160 0.9321055 0.9090369 0.9110335
## 2998 0.9439160 0.8864504 0.9090369 0.9110335
## 2999 0.8540864 0.9080000 0.8791400 0.9110335
## 3000 0.8540864 0.9080000 0.9090369 0.9110335
## 3001 0.8540864 0.8877722 0.9090369 0.9110335
## 3002 0.9439160 0.9010727 0.8791400 0.9110335
## 3003 0.8540864 0.8877722 0.9090369 0.9110335
## 3004 0.9439160 0.9321055 0.9090369 0.9110335
## 3005 0.8540864 0.8148148 0.8791400 0.9110335
## 3006 0.9439160 0.9321055 0.9090369 0.9110335
## 3007 0.8540864 0.9080000 0.8721351 0.9110335
## 3008 0.8540864 0.9080000 0.8791400 0.9110335
## 3009 0.9439160 0.9321055 0.8721351 0.9110335
## 3010 0.8540864 0.3750000 0.9090369 0.9110335
## 3011 0.8540864 0.3750000 0.9090369 0.9110335
## 3012 0.8540864 0.8148148 0.8791400 0.9110335
## 3013 0.9439160 0.9321055 0.8791400 0.9110335
## 3014 0.9439160 0.8864504 0.9090369 0.9110335
## 3015 0.9439160 0.8864504 0.9090369 0.9110335
## 3016 0.8540864 0.9321055 0.9090369 0.9110335
## 3017 0.8540864 0.9080000 0.8791400 0.9110335
## 3018 0.8540864 0.8148148 0.8791400 0.9110335
## 3019 0.8540864 0.8877722 0.9090369 0.9110335
## 3020 0.8540864 0.9080000 0.8791400 0.9110335
## 3021 0.8540864 0.9080000 0.9090369 0.9110335
## 3022 0.9439160 0.8864504 0.9090369 0.9110335
## 3023 0.8540864 0.9080000 0.9090369 0.9110335
## 3024 0.8540864 0.8877722 0.9090369 0.9110335
## 3025 0.8540864 0.8148148 0.8791400 0.9110335
## 3026 0.9439160 0.9321055 0.8791400 0.9110335
## 3027 0.8540864 0.9010727 0.9090369 0.9110335
## 3028 0.8540864 0.9080000 0.9090369 0.9110335
## 3029 0.8540864 0.8877722 0.8791400 0.9110335
## 3030 0.8540864 0.9080000 0.9090369 0.9110335
## 3031 0.9439160 0.8864504 0.9090369 0.9110335
## 3032 0.8540864 0.8148148 0.8791400 0.9110335
## 3033 0.9439160 0.9080000 0.9090369 0.9110335
## 3034 0.8540864 0.8877722 0.9090369 0.9110335
## 3035 0.9439160 0.9321055 0.9090369 0.9110335
## 3036 0.9439160 0.9321055 0.8791400 0.9110335
## 3037 0.8540864 0.9010727 0.9090369 0.9110335
## 3038 0.8540864 0.9321055 0.9090369 0.9110335
## 3039 0.8540864 0.9080000 0.9090369 0.9110335
## 3040 0.9439160 0.9080000 0.9090369 0.9110335
## 3041 0.8540864 0.8148148 0.8791400 0.9110335
## 3042 0.9439160 0.9321055 0.9090369 0.9110335
## 3043 0.9439160 0.9321055 0.9090369 0.9110335
## 3044 0.8540864 0.9080000 0.9090369 0.9110335
## 3045 0.8540864 0.8877722 0.9090369 0.9110335
## 3046 0.9439160 0.9010727 0.9090369 0.9110335
## 3047 0.8540864 0.8877722 0.9090369 0.9110335
## 3048 0.8540864 0.8877722 0.9090369 0.9110335
## 3049 0.9439160 0.9080000 0.9090369 0.9110335
## 3050 0.8540864 0.8877722 0.9090369 0.9110335
## 3051 0.9439160 0.9321055 0.9090369 0.9110335
## 3052 0.8540864 0.9010727 0.9090369 0.9110335
## 3053 0.8540864 0.8877722 0.9090369 0.9110335
## 3054 0.9439160 0.9321055 0.9090369 0.9110335
## 3055 0.8540864 0.8877722 0.9090369 0.9110335
## 3056 0.8540864 0.9080000 0.8791400 0.9110335
## 3057 0.9439160 0.8864504 0.8791400 0.9110335
## 3058 0.8540864 0.9080000 0.8791400 0.9110335
## 3059 0.9439160 0.9321055 0.8791400 0.9110335
## 3060 0.9439160 0.9321055 0.9090369 0.9110335
## 3061 0.9439160 0.9321055 0.9090369 0.9110335
## 3062 0.8540864 0.9321055 0.8791400 0.9110335
## 3063 0.8540864 0.8148148 0.8791400 0.9110335
## 3064 0.8540864 0.9080000 0.8721351 0.9110335
## 3065 0.8540864 0.8877722 0.8791400 0.9110335
## 3066 0.8540864 0.9321055 0.9090369 0.9110335
## 3067 0.8540864 0.9321055 0.9090369 0.9110335
## 3068 0.9439160 0.8864504 0.9090369 0.9110335
## 3069 0.8540864 0.8864504 0.9090369 0.9110335
## 3070 0.8540864 0.8148148 0.8791400 0.9110335
## 3071 0.9439160 0.8864504 0.9090369 0.9110335
## 3072 0.8540864 0.9321055 0.9090369 0.9110335
## 3073 0.8540864 0.9080000 0.9090369 0.9110335
## 3074 0.8540864 0.9321055 0.9090369 0.9110335
## 3075 0.8540864 0.9080000 0.8791400 0.9110335
## 3076 0.8540864 0.8148148 0.8791400 0.9110335
## 3077 0.8540864 0.8877722 0.9090369 0.9110335
## 3078 0.8540864 0.9080000 0.9090369 0.9110335
## 3079 0.9439160 0.9321055 0.9090369 0.9110335
## 3080 0.9439160 0.9321055 0.9090369 0.9110335
## 3081 0.8540864 0.9010727 0.8791400 0.9110335
## 3082 0.8540864 0.9010727 0.9090369 0.9110335
## 3083 0.9439160 0.8864504 0.8791400 0.9110335
## 3084 0.8540864 0.8877722 0.9090369 0.9110335
## 3085 0.9439160 0.8864504 0.9090369 0.9110335
## 3086 0.9439160 0.8864504 0.8721351 0.9110335
## 3087 0.9439160 0.9080000 0.8791400 0.9110335
## 3088 0.9439160 0.8864504 0.9090369 0.9110335
## 3089 0.8540864 0.4949495 0.9090369 0.9110335
## 3090 0.9439160 0.9321055 0.8721351 0.9110335
## 3091 0.8540864 0.8877722 0.9090369 0.9110335
## 3092 0.8540864 0.8148148 0.8791400 0.9110335
## 3093 0.9439160 0.9321055 0.8791400 0.9110335
## 3094 0.8540864 0.9080000 0.9090369 0.9110335
## 3095 0.8540864 0.8877722 0.8791400 0.9110335
## 3096 0.8540864 0.9010727 0.9090369 0.9110335
## 3097 0.8540864 0.9080000 0.9090369 0.9110335
## 3098 0.8540864 0.9080000 0.8791400 0.9110335
## 3099 0.9439160 0.9321055 0.8791400 0.9110335
## 3100 0.9439160 0.8864504 0.9090369 0.9110335
## 3101 0.8540864 0.4949495 0.9090369 0.9110335
## 3102 0.9439160 0.8864504 0.9090369 0.9110335
## 3103 0.9439160 0.8864504 0.9090369 0.9110335
## 3104 0.9439160 0.8864504 0.8791400 0.9110335
## 3105 0.8540864 0.8148148 0.8791400 0.9110335
## 3106 0.9439160 0.9321055 0.8791400 0.9110335
## 3107 0.8540864 0.4949495 0.9090369 0.9110335
## 3108 0.9439160 0.8864504 0.9090369 0.9110335
## 3109 0.8540864 0.9080000 0.9090369 0.9110335
## 3110 0.9439160 0.9321055 0.9090369 0.9110335
## 3111 0.8540864 0.9321055 0.8791400 0.9110335
## 3112 0.9439160 0.9321055 0.9090369 0.9110335
## 3113 0.9439160 0.9321055 0.9090369 0.9110335
## 3114 0.8540864 0.8148148 0.9090369 0.9110335
## 3115 0.8540864 0.9080000 0.9090369 0.9110335
## 3116 0.8540864 0.9080000 0.8791400 0.9110335
## 3117 0.9439160 0.8864504 0.9090369 0.9110335
## 3118 0.8540864 0.8877722 0.9090369 0.9110335
## 3119 0.8540864 0.9080000 0.8791400 0.9110335
## 3120 0.9439160 0.9080000 0.8791400 0.9110335
## 3121 0.8540864 0.8877722 0.8791400 0.9110335
## 3122 0.9439160 0.9321055 0.9090369 0.9110335
## 3123 0.9439160 0.9010727 0.9090369 0.9110335
## 3124 0.8540864 0.8877722 0.8791400 0.9110335
## 3125 0.8540864 0.8877722 0.9090369 0.9110335
## 3126 0.8540864 0.8148148 0.9090369 0.9110335
## 3127 0.8540864 0.9080000 0.9090369 0.9110335
## 3128 0.9439160 0.8864504 0.8791400 0.9110335
## 3129 0.8540864 0.9080000 0.9090369 0.9110335
## 3130 0.8540864 0.8877722 0.9090369 0.9110335
## 3131 0.8540864 0.9010727 0.9090369 0.9110335
## 3132 0.9439160 0.9321055 0.9090369 0.9110335
## 3133 0.9439160 0.8864504 0.9090369 0.9110335
## 3134 0.8540864 0.9321055 0.9090369 0.9110335
## 3135 0.8540864 0.9080000 0.9090369 0.9110335
## 3136 0.9439160 0.9321055 0.9090369 0.9110335
## 3137 0.8540864 0.9010727 0.9090369 0.9110335
## 3138 0.9439160 0.8864504 0.9090369 0.9110335
## 3139 0.9439160 0.9321055 0.9090369 0.9110335
## 3140 0.9439160 0.9321055 0.9090369 0.9110335
## 3141 0.8540864 0.8148148 0.9090369 0.9110335
## 3142 0.8540864 0.8148148 0.8791400 0.9110335
## 3143 0.9439160 0.8864504 0.9090369 0.9110335
## 3144 0.8540864 0.8864504 0.9090369 0.9110335
## 3145 0.9439160 0.8864504 0.9090369 0.9110335
## 3146 0.8540864 0.9080000 0.9090369 0.9110335
## 3147 0.9439160 0.9321055 0.8791400 0.9110335
## 3148 0.8540864 0.8148148 0.9090369 0.9110335
## 3149 0.9439160 0.9321055 0.8791400 0.9110335
## 3150 0.9439160 0.8148148 0.8791400 0.9110335
## 3151 0.8540864 0.9080000 0.9090369 0.9110335
## 3152 0.8540864 0.8148148 0.9090369 0.9110335
## 3153 0.8540864 0.9321055 0.8791400 0.9110335
## 3154 0.9439160 0.9321055 0.8791400 0.9110335
## 3155 0.8540864 0.9080000 0.8791400 0.9110335
## 3156 0.8540864 0.9321055 0.9090369 0.9110335
## 3157 0.8540864 0.9080000 0.8791400 0.9110335
## 3158 0.9439160 0.9321055 0.9090369 0.9110335
## 3159 0.8540864 0.8148148 0.9090369 0.9110335
## 3160 0.8540864 0.9321055 0.9090369 0.9110335
## 3161 0.9439160 0.9080000 0.9090369 0.9110335
## 3162 0.9439160 0.9321055 0.8791400 0.9110335
## 3163 0.8540864 0.8148148 0.9090369 0.9110335
## 3164 0.8540864 0.8877722 0.9090369 0.9110335
## 3165 0.8540864 0.9080000 0.8791400 0.9110335
## 3166 0.9439160 0.8864504 0.9090369 0.9110335
## 3167 0.8540864 0.8148148 0.8791400 0.9110335
## 3168 0.8540864 0.9080000 0.8791400 0.9110335
## 3169 0.9439160 0.9321055 0.8791400 0.9110335
## 3170 0.8540864 0.8148148 0.9090369 0.9110335
## 3171 0.8540864 0.9010727 0.8791400 0.9110335
## 3172 0.8540864 0.8864504 0.9090369 0.9110335
## 3173 0.8540864 0.8877722 0.9090369 0.9110335
## 3174 0.9439160 0.9321055 0.9090369 0.9110335
## 3175 0.8540864 0.9010727 0.8791400 0.9110335
## 3176 0.9439160 0.9321055 0.9090369 0.9110335
## 3177 0.8540864 0.8148148 0.9090369 0.9110335
## 3178 0.8540864 0.9321055 0.8791400 0.9110335
## 3179 0.9439160 0.8864504 0.9090369 0.9110335
## 3180 0.8540864 0.9010727 0.8791400 0.9110335
## 3181 0.9439160 0.9321055 0.9090369 0.9110335
## 3182 0.9439160 0.9010727 0.9090369 0.9110335
## 3183 0.8540864 0.8148148 0.9090369 0.9110335
## 3184 0.9439160 0.9080000 0.9090369 0.9110335
## 3185 0.8540864 0.8877722 0.9090369 0.9110335
## 3186 0.8540864 0.8877722 0.9090369 0.9110335
## 3187 0.8540864 0.9321055 0.8791400 0.9110335
## 3188 0.8540864 0.9080000 0.9090369 0.9110335
## 3189 0.9439160 0.8864504 0.9090369 0.9110335
## 3190 0.8540864 0.9321055 0.9090369 0.9110335
## 3191 0.8540864 0.9080000 0.9090369 0.9110335
## 3192 0.9439160 0.9321055 0.9090369 0.9110335
## 3193 0.9439160 0.8864504 0.9090369 0.9110335
## 3194 0.8540864 0.9080000 0.9090369 0.9110335
## 3195 0.8540864 0.9080000 0.9090369 0.9110335
## 3196 0.8540864 0.9080000 0.9090369 0.9110335
## 3197 0.8540864 0.9080000 0.9090369 0.9110335
## 3198 0.8540864 0.9321055 0.9090369 0.9110335
## 3199 0.8540864 0.9010727 0.8791400 0.9110335
## 3200 0.8540864 0.8148148 0.8791400 0.9110335
## 3201 0.9439160 0.8148148 0.8791400 0.9110335
## 3202 0.9439160 0.8864504 0.9090369 0.9110335
## 3203 0.8540864 0.8148148 0.8791400 0.9110335
## 3204 0.8540864 0.8877722 0.8791400 0.9110335
## 3205 0.8540864 0.9080000 0.8791400 0.9110335
## 3206 0.8540864 0.9010727 0.9090369 0.9110335
## 3207 0.8540864 0.9010727 0.9090369 0.9110335
## 3208 0.8540864 0.9080000 0.8791400 0.9110335
## 3209 0.8540864 0.8148148 0.9090369 0.9110335
## 3210 0.8540864 0.9080000 0.9090369 0.9110335
## 3211 0.8540864 0.9080000 0.9090369 0.9110335
## 3212 0.8540864 0.8148148 0.8791400 0.9110335
## 3213 0.9439160 0.9321055 0.9090369 0.9110335
## 3214 0.9439160 0.8864504 0.8791400 0.9110335
## 3215 0.8540864 0.9010727 0.9090369 0.9110335
## 3216 0.9439160 0.9321055 0.8791400 0.9110335
## 3217 0.8540864 0.8877722 0.9090369 0.9110335
## 3218 0.8540864 0.8148148 0.8791400 0.9110335
## 3219 0.9439160 0.9321055 0.9090369 0.9110335
## 3220 0.8540864 0.9321055 0.8791400 0.9110335
## 3221 0.8540864 0.9010727 0.8791400 0.9110335
## 3222 0.8540864 0.8877722 0.8791400 0.9110335
## 3223 0.9439160 0.9080000 0.9090369 0.9110335
## 3224 0.9439160 0.9321055 0.8791400 0.9110335
## 3225 0.8540864 0.9080000 0.8791400 0.9110335
## 3226 0.8540864 0.8877722 0.9090369 0.9110335
## 3227 0.9439160 0.8864504 0.8791400 0.9110335
## 3228 0.9439160 0.9321055 0.9090369 0.9110335
## 3229 0.8540864 0.8877722 0.9090369 0.9110335
## 3230 0.8540864 0.9080000 0.9090369 0.9110335
## 3231 0.8540864 0.9321055 0.8791400 0.9110335
## 3232 0.8540864 0.8877722 0.9090369 0.9110335
## 3233 0.8540864 0.8148148 0.8791400 0.9110335
## 3234 0.9439160 0.9321055 0.9090369 0.9110335
## 3235 0.9439160 0.8864504 0.9090369 0.9110335
## 3236 0.9439160 0.9321055 0.8791400 0.9110335
## 3237 0.8540864 0.9080000 0.9090369 0.9110335
## 3238 0.8540864 0.8877722 0.9090369 0.9110335
## 3239 0.8540864 0.9080000 0.9090369 0.9110335
## 3240 0.8540864 0.9080000 0.9090369 0.9110335
## 3241 0.9439160 0.9080000 0.9090369 0.9110335
## 3242 0.8540864 0.9080000 0.8791400 0.9110335
## 3243 0.8540864 0.8877722 0.9090369 0.9110335
## 3244 0.8540864 0.9321055 0.8791400 0.9110335
## 3245 0.8540864 0.9010727 0.9090369 0.9110335
## 3246 0.9439160 0.9321055 0.9090369 0.9110335
## 3247 0.8540864 0.8148148 0.9090369 0.9110335
## 3248 0.8540864 0.8877722 0.8791400 0.9110335
## 3249 0.8540864 0.9010727 0.8791400 0.9110335
## 3250 0.9439160 0.9080000 0.9090369 0.9110335
## 3251 0.8540864 0.9321055 0.9090369 0.9110335
## 3252 0.8540864 0.9080000 0.9090369 0.9110335
## 3253 0.8540864 0.9080000 0.8791400 0.9110335
## 3254 0.8540864 0.9010727 0.8791400 0.9110335
## 3255 0.9439160 0.8864504 0.8791400 0.9110335
## 3256 0.9439160 0.8864504 0.8791400 0.9110335
## 3257 0.8540864 0.8877722 0.8791400 0.9110335
## 3258 0.8540864 0.5408163 0.9090369 0.9110335
## 3259 0.9439160 0.8864504 0.8791400 0.9110335
## 3260 0.9439160 0.8864504 0.8791400 0.9110335
## 3261 0.8540864 0.8877722 0.9090369 0.9110335
## 3262 0.8540864 0.9010727 0.8791400 0.9110335
## 3263 0.8540864 0.9080000 0.9090369 0.9110335
## 3264 0.9439160 0.9321055 0.9090369 0.9110335
## 3265 0.8540864 0.8877722 0.9090369 0.9110335
## 3266 0.8540864 0.8148148 0.9090369 0.9110335
## 3267 0.8540864 0.5408163 0.9090369 0.9110335
## 3268 0.8540864 0.9321055 0.9090369 0.9110335
## 3269 0.8540864 0.9321055 0.9090369 0.9110335
## 3270 0.8540864 0.8148148 0.8791400 0.9110335
## 3271 0.8540864 0.9321055 0.9090369 0.9110335
## 3272 0.9439160 0.9321055 0.9090369 0.9110335
## 3273 0.9439160 0.9321055 0.9090369 0.9110335
## 3274 0.8540864 0.8877722 0.9090369 0.9110335
## 3275 0.9439160 0.8864504 0.9090369 0.9110335
## 3276 0.8540864 0.8877722 0.9090369 0.9110335
## 3277 0.8540864 0.9321055 0.8791400 0.9110335
## 3278 0.9439160 0.8864504 0.8791400 0.9110335
## 3279 0.8540864 0.9080000 0.9090369 0.9110335
## 3280 0.8540864 0.9010727 0.9090369 0.9110335
## 3281 0.9439160 0.9321055 0.8791400 0.9110335
## 3282 0.9439160 0.9080000 0.9090369 0.9110335
## 3283 0.8540864 0.9080000 0.9090369 0.9110335
## 3284 0.8540864 0.9080000 0.8791400 0.9110335
## 3285 0.9439160 0.9321055 0.9090369 0.9110335
## 3286 0.8540864 0.8148148 0.8791400 0.9110335
## 3287 0.8540864 0.8148148 0.8791400 0.9110335
## 3288 0.8540864 0.8877722 0.9090369 0.9110335
## 3289 0.9439160 0.8864504 0.9090369 0.9110335
## 3290 0.8540864 0.9010727 0.9090369 0.9110335
## 3291 0.8540864 0.8877722 0.9090369 0.9110335
## 3292 0.9439160 0.8864504 0.9090369 0.9110335
## 3293 0.9439160 0.8877722 0.9090369 0.9110335
## 3294 0.8540864 0.8877722 0.9090369 0.9110335
## 3295 0.8540864 0.6137931 0.8791400 0.9110335
## 3296 0.8540864 0.9080000 0.9090369 0.9110335
## 3297 0.8540864 0.9080000 0.9090369 0.9110335
## 3298 0.9439160 0.8864504 0.9090369 0.9110335
## 3299 0.8540864 0.8148148 0.9090369 0.9110335
## 3300 0.8540864 0.8877722 0.8791400 0.9110335
## 3301 0.8540864 0.8148148 0.8791400 0.9110335
## 3302 0.9439160 0.9080000 0.9090369 0.9110335
## 3303 0.9439160 0.8864504 0.9090369 0.9110335
## 3304 0.8540864 0.9080000 0.8791400 0.9110335
## 3305 0.9439160 0.9321055 0.9090369 0.9110335
## 3306 0.9439160 0.9321055 0.9090369 0.9110335
## 3307 0.9439160 0.9321055 0.9090369 0.9110335
## 3308 0.8540864 0.9321055 0.9090369 0.9110335
## 3309 0.8540864 0.9321055 0.8791400 0.9110335
## 3310 0.8540864 0.9010727 0.9090369 0.9110335
## 3311 0.8540864 0.8148148 0.9090369 0.9110335
## 3312 0.8540864 0.9080000 0.8791400 0.9110335
## 3313 0.8540864 0.8877722 0.8791400 0.9110335
## 3314 0.8540864 0.9080000 0.8791400 0.9110335
## 3315 0.8540864 0.8877722 0.9090369 0.9110335
## 3316 0.8540864 0.8148148 0.8791400 0.9110335
## 3317 0.8540864 0.9010727 0.8791400 0.9110335
## 3318 0.8540864 0.9080000 0.9090369 0.9110335
## 3319 0.8540864 0.8148148 0.8791400 0.9110335
## 3320 0.8540864 0.9080000 0.9090369 0.9110335
## 3321 0.9439160 0.9321055 0.9090369 0.9110335
## 3322 0.9439160 0.8864504 0.9090369 0.9110335
## 3323 0.9439160 0.8864504 0.9090369 0.9110335
## 3324 0.9439160 0.9321055 0.8721351 0.9110335
## 3325 0.8540864 0.8877722 0.9090369 0.9110335
## 3326 0.8540864 0.9080000 0.8791400 0.9110335
## 3327 0.8540864 0.8148148 0.8791400 0.9110335
## 3328 0.8540864 0.9321055 0.9090369 0.9110335
## 3329 0.8540864 0.9080000 0.8791400 0.9110335
## 3330 0.9439160 0.8864504 0.9090369 0.9110335
## 3331 0.8540864 0.9010727 0.9090369 0.9110335
## 3332 0.9439160 0.8864504 0.9090369 0.9110335
## 3333 0.9439160 0.8864504 0.8791400 0.9110335
## 3334 0.8540864 0.9080000 0.9090369 0.9110335
## 3335 0.8540864 0.9080000 0.8791400 0.9110335
## 3336 0.9439160 0.9321055 0.9090369 0.9110335
## 3337 0.9439160 0.9321055 0.9090369 0.9110335
## 3338 0.9439160 0.9321055 0.9090369 0.9110335
## 3339 0.9439160 0.9321055 0.8791400 0.9110335
## 3340 0.9439160 0.9321055 0.8791400 0.9110335
## 3341 0.9439160 0.9080000 0.8791400 0.9110335
## 3342 0.9439160 0.9321055 0.9090369 0.9110335
## 3343 0.8540864 0.9321055 0.9090369 0.9110335
## 3344 0.9439160 0.9321055 0.9090369 0.9110335
## 3345 0.8540864 0.9080000 0.8791400 0.9110335
## 3346 0.9439160 0.8864504 0.9090369 0.9110335
## 3347 0.8540864 0.9321055 0.9090369 0.9110335
## 3348 0.8540864 0.9080000 0.9090369 0.9110335
## 3349 0.8540864 0.8148148 0.9090369 0.9110335
## 3350 0.8540864 0.9321055 0.9090369 0.9110335
## 3351 0.8540864 0.8148148 0.9090369 0.9110335
## 3352 0.9439160 0.9080000 0.9090369 0.9110335
## 3353 0.9439160 0.8864504 0.9090369 0.9110335
## 3354 0.9439160 0.9321055 0.9090369 0.9110335
## 3355 0.8540864 0.9080000 0.9090369 0.9110335
## 3356 0.9439160 0.9321055 0.8791400 0.9110335
## 3357 0.9439160 0.9321055 0.9090369 0.9110335
## 3358 0.8540864 0.8148148 0.9090369 0.9110335
## 3359 0.9439160 0.9080000 0.9090369 0.9110335
## 3360 0.9439160 0.9080000 0.9090369 0.9110335
## 3361 0.9439160 0.9321055 0.9090369 0.9110335
## 3362 0.9439160 0.8864504 0.9090369 0.9110335
## 3363 0.8540864 0.9080000 0.8721351 0.9110335
## 3364 0.9439160 0.9321055 0.9090369 0.9110335
## 3365 0.9439160 0.9321055 0.9090369 0.9110335
## 3366 0.8540864 0.8148148 0.8791400 0.9110335
## 3367 0.9439160 0.8864504 0.9090369 0.9110335
## 3368 0.9439160 0.9321055 0.9090369 0.9110335
## 3369 0.8540864 0.8877722 0.8791400 0.9110335
## 3370 0.9439160 0.8864504 0.9090369 0.9110335
## 3371 0.8540864 0.9010727 0.9090369 0.9110335
## 3372 0.9439160 0.9321055 0.9090369 0.9110335
## 3373 0.9439160 0.9321055 0.8791400 0.9110335
## 3374 0.9439160 0.8864504 0.8791400 0.9110335
## 3375 0.8540864 0.9080000 0.9090369 0.9110335
## 3376 0.8540864 0.9321055 0.9090369 0.9110335
## 3377 0.8540864 0.9080000 0.8791400 0.9110335
## 3378 0.8540864 0.8877722 0.8791400 0.9110335
## 3379 0.8540864 0.8148148 0.8791400 0.9110335
## 3380 0.8540864 0.8877722 0.9090369 0.9110335
## 3381 0.9439160 0.9321055 0.9090369 0.9110335
## 3382 0.9439160 0.9321055 0.9090369 0.9110335
## 3383 0.8540864 0.9321055 0.8791400 0.9110335
## 3384 0.8540864 0.9010727 0.9090369 0.9110335
## 3385 0.8540864 0.6137931 0.8791400 0.9110335
## 3386 0.9439160 0.8877722 0.8791400 0.9110335
## 3387 0.8540864 0.8148148 0.8791400 0.9110335
## 3388 0.9439160 0.9321055 0.9090369 0.9110335
## 3389 0.8540864 0.9080000 0.9090369 0.9110335
## 3390 0.9439160 0.9321055 0.8791400 0.9110335
## 3391 0.8540864 0.9080000 0.9090369 0.9110335
## 3392 0.8540864 0.8148148 0.8791400 0.9110335
## 3393 0.9439160 0.9321055 0.9090369 0.9110335
## 3394 0.9439160 0.8864504 0.9090369 0.9110335
## 3395 0.8540864 0.8148148 0.8791400 0.9110335
## 3396 0.9439160 0.9321055 0.8791400 0.9110335
## 3397 0.8540864 0.9080000 0.9090369 0.9110335
## 3398 0.8540864 0.9080000 0.8791400 0.9110335
## 3399 0.8540864 0.8877722 0.8721351 0.9110335
## 3400 0.8540864 0.5408163 0.8791400 0.9110335
## 3401 0.8540864 0.8864504 0.9090369 0.9110335
## 3402 0.8540864 0.8148148 0.8791400 0.9110335
## 3403 0.8540864 0.8877722 0.8791400 0.9110335
## 3404 0.8540864 0.9080000 0.8791400 0.9110335
## 3405 0.8540864 0.9321055 0.9090369 0.9110335
## 3406 0.8540864 0.8148148 0.8791400 0.9110335
## 3407 0.9439160 0.9321055 0.9090369 0.9110335
## 3408 0.8540864 0.4949495 0.9090369 0.9110335
## 3409 0.9439160 0.9321055 0.9090369 0.9110335
## 3410 0.9439160 0.9321055 0.8791400 0.9110335
## 3411 0.9439160 0.8864504 0.9090369 0.9110335
## 3412 0.8540864 0.9321055 0.9090369 0.9110335
## 3413 0.8540864 0.9321055 0.8791400 0.9110335
## 3414 0.8540864 0.9080000 0.9090369 0.9110335
## 3415 0.8540864 0.8877722 0.8791400 0.9110335
## 3416 0.9439160 0.9321055 0.8721351 0.9110335
## 3417 0.9439160 0.9321055 0.8791400 0.9110335
## 3418 0.8540864 0.9080000 0.9090369 0.9110335
## 3419 0.8540864 0.9080000 0.9090369 0.9110335
## 3420 0.8540864 0.9080000 0.9090369 0.9110335
## 3421 0.8540864 0.8877722 0.9090369 0.9110335
## 3422 0.8540864 0.9080000 0.9090369 0.9110335
## 3423 0.9439160 0.8864504 0.9090369 0.9110335
## 3424 0.8540864 0.9321055 0.9090369 0.9110335
## 3425 0.8540864 0.6137931 0.8791400 0.9110335
## 3426 0.9439160 0.8864504 0.9090369 0.9110335
## 3427 0.9439160 0.9080000 0.8791400 0.9110335
## 3428 0.9439160 0.9321055 0.9090369 0.9110335
## 3429 0.9439160 0.9321055 0.9090369 0.9110335
## 3430 0.8540864 0.9080000 0.9090369 0.9110335
## 3431 0.9439160 0.9321055 0.9090369 0.9110335
## 3432 0.8540864 0.9080000 0.8791400 0.9110335
## 3433 0.8540864 0.9010727 0.9090369 0.9110335
## 3434 0.8540864 0.8877722 0.8791400 0.9110335
## 3435 0.9439160 0.9321055 0.9090369 0.9110335
## 3436 0.8540864 0.4949495 0.9090369 0.9110335
## 3437 0.8540864 0.9010727 0.8721351 0.9110335
## 3438 0.8540864 0.9080000 0.8791400 0.9110335
## 3439 0.8540864 0.9080000 0.9090369 0.9110335
## 3440 0.9439160 0.9321055 0.8791400 0.9110335
## 3441 0.8540864 0.9321055 0.9090369 0.9110335
## 3442 0.9439160 0.9321055 0.8721351 0.9110335
## 3443 0.9439160 0.8864504 0.9090369 0.9110335
## 3444 0.8540864 0.9080000 0.8791400 0.9110335
## 3445 0.9439160 0.9321055 0.8791400 0.9110335
## 3446 0.9439160 0.9321055 0.8791400 0.9110335
## 3447 0.9439160 0.8864504 0.9090369 0.9110335
## 3448 0.8540864 0.8877722 0.9090369 0.9110335
## 3449 0.8540864 0.8877722 0.9090369 0.9110335
## 3450 0.8540864 0.8877722 0.8791400 0.9110335
## 3451 0.8540864 0.9321055 0.8791400 0.9110335
## 3452 0.8540864 0.9321055 0.9090369 0.9110335
## 3453 0.8540864 0.5408163 0.8791400 0.9110335
## 3454 0.8540864 0.9321055 0.9090369 0.9110335
## 3455 0.9439160 0.9321055 0.9090369 0.9110335
## 3456 0.8540864 0.9080000 0.8791400 0.9110335
## 3457 0.8540864 0.6137931 0.9090369 0.9110335
## 3458 0.9439160 0.9321055 0.8791400 0.9110335
## 3459 0.8540864 0.8864504 0.9090369 0.9110335
## 3460 0.8540864 0.9080000 0.8791400 0.9110335
## 3461 0.9439160 0.9321055 0.9090369 0.9110335
## 3462 0.9439160 0.9321055 0.9090369 0.9110335
## 3463 0.9439160 0.8864504 0.9090369 0.9110335
## 3464 0.9439160 0.9080000 0.9090369 0.9110335
## 3465 0.8540864 0.9080000 0.9090369 0.9110335
## 3466 0.8540864 0.8877722 0.9090369 0.9110335
## 3467 0.9439160 0.8864504 0.9090369 0.9110335
## 3468 0.9439160 0.8864504 0.9090369 0.9110335
## 3469 0.8540864 0.9080000 0.8791400 0.9110335
## 3470 0.9439160 0.9321055 0.9090369 0.9110335
## 3471 0.8540864 0.8877722 0.8791400 0.9110335
## 3472 0.8540864 0.8877722 0.9090369 0.9110335
## 3473 0.8540864 0.9080000 0.9090369 0.9110335
## 3474 0.9439160 0.9321055 0.9090369 0.9110335
## 3475 0.9439160 0.8864504 0.9090369 0.9110335
## 3476 0.9439160 0.8864504 0.9090369 0.9110335
## 3477 0.8540864 0.9321055 0.8791400 0.9110335
## 3478 0.8540864 0.9080000 0.9090369 0.9110335
## 3479 0.9439160 0.9321055 0.8791400 0.9110335
## 3480 0.8540864 0.4949495 0.9090369 0.9110335
## 3481 0.8540864 0.9080000 0.9090369 0.9110335
## 3482 0.9439160 0.9321055 0.9090369 0.9110335
## 3483 0.8540864 0.9080000 0.8791400 0.9110335
## 3484 0.9439160 0.9321055 0.8791400 0.9110335
## 3485 0.8540864 0.9321055 0.9090369 0.9110335
## 3486 0.9439160 0.8864504 0.8791400 0.9110335
## 3487 0.8540864 0.9010727 0.9090369 0.9110335
## 3488 0.9439160 0.9321055 0.9090369 0.9110335
## 3489 0.9439160 0.8864504 0.9090369 0.9110335
## 3490 0.9439160 0.9321055 0.8791400 0.9110335
## 3491 0.8540864 0.8877722 0.8791400 0.9110335
## 3492 0.9439160 0.9321055 0.9090369 0.9110335
## 3493 0.9439160 0.9080000 0.8791400 0.9110335
## 3494 0.8540864 0.9080000 0.9090369 0.9110335
## 3495 0.9439160 0.9321055 0.9090369 0.9110335
## 3496 0.8540864 0.9321055 0.9090369 0.9110335
## 3497 0.8540864 0.9321055 0.8791400 0.9110335
## 3498 0.9439160 0.9321055 0.9090369 0.9110335
## 3499 0.8540864 0.9080000 0.9090369 0.9110335
## 3500 0.9439160 0.9321055 0.9090369 0.9110335
## 3501 0.8540864 0.9080000 0.9090369 0.9110335
## 3502 0.8540864 0.8877722 0.8791400 0.9110335
## 3503 0.8540864 0.8877722 0.9090369 0.9110335
## 3504 0.8540864 0.8148148 0.9090369 0.9110335
## 3505 0.8540864 0.9080000 0.9090369 0.9110335
## 3506 0.8540864 0.8877722 0.8791400 0.9110335
## 3507 0.8540864 0.8877722 0.8791400 0.9110335
## 3508 0.8540864 0.9321055 0.9090369 0.9110335
## 3509 0.9439160 0.8864504 0.9090369 0.9110335
## 3510 0.8540864 0.9321055 0.9090369 0.9110335
## 3511 0.9439160 0.9321055 0.8791400 0.9110335
## 3512 0.9439160 0.8864504 0.9090369 0.9110335
## 3513 0.8540864 0.9080000 0.9090369 0.9110335
## 3514 0.8540864 0.9010727 0.9090369 0.9110335
## 3515 0.8540864 0.9010727 0.8791400 0.9110335
## 3516 0.8540864 0.8877722 0.9090369 0.9110335
## 3517 0.8540864 0.8877722 0.8791400 0.9110335
## 3518 0.9439160 0.9321055 0.9090369 0.9110335
## 3519 0.8540864 0.9080000 0.9090369 0.9110335
## 3520 0.8540864 0.9080000 0.9090369 0.9110335
## 3521 0.8540864 0.9321055 0.9090369 0.9110335
## 3522 0.8540864 0.9321055 0.9090369 0.9110335
## 3523 0.9439160 0.9321055 0.8791400 0.9110335
## 3524 0.9439160 0.9010727 0.9090369 0.9110335
## 3525 0.8540864 0.8877722 0.9090369 0.9110335
## 3526 0.8540864 0.9080000 0.8791400 0.9110335
## 3527 0.9439160 0.9321055 0.9090369 0.9110335
## 3528 0.8540864 0.8877722 0.9090369 0.9110335
## 3529 0.8540864 0.9010727 0.9090369 0.9110335
## 3530 0.9439160 0.9321055 0.9090369 0.9110335
## 3531 0.8540864 0.8877722 0.8791400 0.9110335
## 3532 0.8540864 0.8877722 0.9090369 0.9110335
## 3533 0.9439160 0.9321055 0.9090369 0.9110335
## 3534 0.9439160 0.9080000 0.9090369 0.9110335
## 3535 0.8540864 0.9080000 0.9090369 0.9110335
## 3536 0.8540864 0.9010727 0.8791400 0.9110335
## 3537 0.9439160 0.9321055 0.9090369 0.9110335
## 3538 0.9439160 0.9080000 0.8791400 0.9110335
## 3539 0.9439160 0.8864504 0.8791400 0.9110335
## 3540 0.8540864 0.8877722 0.8791400 0.9110335
## 3541 0.9439160 0.8864504 0.9090369 0.9110335
## 3542 0.9439160 0.9321055 0.8791400 0.9110335
## 3543 0.8540864 0.8877722 0.8791400 0.9110335
## 3544 0.8540864 0.9080000 0.8791400 0.9110335
## 3545 0.8540864 0.9010727 0.9090369 0.9110335
## 3546 0.9439160 0.9321055 0.9090369 0.9110335
## 3547 0.8540864 0.8148148 0.9090369 0.9110335
## 3548 0.9439160 0.8864504 0.9090369 0.9110335
## 3549 0.8540864 0.8877722 0.8791400 0.9110335
## 3550 0.9439160 0.9321055 0.9090369 0.9110335
## 3551 0.8540864 0.9080000 0.9090369 0.9110335
## 3552 0.8540864 0.9321055 0.9090369 0.9110335
## 3553 0.8540864 0.8877722 0.9090369 0.9110335
## 3554 0.8540864 0.8877722 0.9090369 0.9110335
## 3555 0.8540864 0.8877722 0.8791400 0.9110335
## 3556 0.8540864 0.9080000 0.8791400 0.9110335
## 3557 0.9439160 0.9321055 0.9090369 0.9110335
## 3558 0.9439160 0.8864504 0.8791400 0.9110335
## 3559 0.8540864 0.8877722 0.8791400 0.9110335
## 3560 0.8540864 0.9321055 0.9090369 0.9110335
## 3561 0.8540864 0.8877722 0.8791400 0.9110335
## 3562 0.9439160 0.9321055 0.9090369 0.9110335
## 3563 0.9439160 0.9321055 0.8791400 0.9110335
## 3564 0.8540864 0.9080000 0.9090369 0.9110335
## 3565 0.9439160 0.8864504 0.9090369 0.9110335
## 3566 0.8540864 0.8877722 0.8791400 0.9110335
## 3567 0.8540864 0.6137931 0.9090369 0.9110335
## 3568 0.8540864 0.9080000 0.8791400 0.9110335
## 3569 0.9439160 0.9321055 0.9090369 0.9110335
## 3570 0.8540864 0.9080000 0.9090369 0.9110335
## 3571 0.8540864 0.9010727 0.8791400 0.9110335
## 3572 0.8540864 0.8148148 0.9090369 0.9110335
## 3573 0.8540864 0.9080000 0.9090369 0.9110335
## 3574 0.9439160 0.9321055 0.9090369 0.9110335
## 3575 0.9439160 0.9321055 0.9090369 0.9110335
## 3576 0.8540864 0.9080000 0.9090369 0.9110335
## 3577 0.8540864 0.9321055 0.8791400 0.9110335
## 3578 0.9439160 0.9321055 0.9090369 0.9110335
## 3579 0.8540864 0.9010727 0.9090369 0.9110335
## 3580 0.8540864 0.9080000 0.8721351 0.9110335
## 3581 0.8540864 0.9010727 0.9090369 0.9110335
## 3582 0.8540864 0.9080000 0.9090369 0.9110335
## 3583 0.9439160 0.9321055 0.9090369 0.9110335
## 3584 0.8540864 0.9080000 0.9090369 0.9110335
## 3585 0.8540864 0.9080000 0.8791400 0.9110335
## 3586 0.9439160 0.9321055 0.9090369 0.9110335
## 3587 0.8540864 0.8877722 0.9090369 0.9110335
## 3588 0.9439160 0.9321055 0.9090369 0.9110335
## 3589 0.9439160 0.8864504 0.8791400 0.9110335
## 3590 0.8540864 0.9080000 0.8721351 0.9110335
## 3591 0.8540864 0.9080000 0.9090369 0.9110335
## 3592 0.8540864 0.9080000 0.9090369 0.9110335
## 3593 0.8540864 0.9010727 0.8791400 0.9110335
## 3594 0.8540864 0.8877722 0.8791400 0.9110335
## 3595 0.8540864 0.9080000 0.8791400 0.9110335
## 3596 0.9439160 0.9080000 0.9090369 0.9110335
## 3597 0.9439160 0.8864504 0.9090369 0.9110335
## 3598 0.9439160 0.9080000 0.9090369 0.9110335
## 3599 0.8540864 0.9321055 0.9090369 0.9110335
## 3600 0.8540864 0.9321055 0.9090369 0.9110335
## 3601 0.8540864 0.9080000 0.8721351 0.9110335
## 3602 0.8540864 0.8877722 0.8791400 0.9110335
## 3603 0.8540864 0.9321055 0.9090369 0.9110335
## 3604 0.9439160 0.8877722 0.9090369 0.9110335
## 3605 0.9439160 0.9321055 0.9090369 0.9110335
## 3606 0.9439160 0.9321055 0.9090369 0.9110335
## 3607 0.8540864 0.9010727 0.9090369 0.9110335
## 3608 0.8540864 0.9080000 0.9090369 0.9110335
## 3609 0.8540864 0.9080000 0.9090369 0.9110335
## 3610 0.8540864 0.8877722 0.8791400 0.9110335
## 3611 0.8540864 0.9321055 0.9090369 0.9110335
## 3612 0.8540864 0.8148148 0.9090369 0.9110335
## 3613 0.8540864 0.9321055 0.8791400 0.9110335
## 3614 0.8540864 0.9321055 0.9090369 0.9110335
## 3615 0.8540864 0.9080000 0.9090369 0.9110335
## 3616 0.9439160 0.9080000 0.8791400 0.9110335
## 3617 0.9439160 0.9321055 0.9090369 0.9110335
## 3618 0.8540864 0.8877722 0.9090369 0.9110335
## 3619 0.8540864 0.8877722 0.8791400 0.9110335
## 3620 0.8540864 0.8877722 0.9090369 0.9110335
## 3621 0.8540864 0.9080000 0.9090369 0.9110335
## 3622 0.9439160 0.9321055 0.9090369 0.9110335
## 3623 0.8540864 0.9321055 0.9090369 0.9110335
## 3624 0.9439160 0.9080000 0.9090369 0.9110335
## 3625 0.8540864 0.9080000 0.8791400 0.9110335
## 3626 0.8540864 0.9080000 0.8791400 0.9110335
## 3627 0.8540864 0.8877722 0.8791400 0.9110335
## 3628 0.9439160 0.9321055 0.9090369 0.9110335
## 3629 0.9439160 0.9080000 0.8791400 0.9110335
## 3630 0.8540864 0.9080000 0.8791400 0.9110335
## 3631 0.8540864 0.8877722 0.9090369 0.9110335
## 3632 0.8540864 0.8877722 0.8791400 0.9110335
## 3633 0.8540864 0.9010727 0.9090369 0.9110335
## 3634 0.8540864 0.9080000 0.9090369 0.9110335
## 3635 0.8540864 0.8148148 0.8721351 0.9110335
## 3636 0.8540864 0.9010727 0.9090369 0.9110335
## 3637 0.8540864 0.9010727 0.9090369 0.9110335
## 3638 0.9439160 0.9010727 0.8791400 0.9110335
## 3639 0.9439160 0.9321055 0.9090369 0.9110335
## 3640 0.9439160 0.8864504 0.8791400 0.9110335
## 3641 0.8540864 0.8877722 0.9090369 0.9110335
## 3642 0.8540864 0.9321055 0.9090369 0.9110335
## 3643 0.8540864 0.9321055 0.9090369 0.9110335
## 3644 0.8540864 0.9321055 0.8721351 0.9110335
## 3645 0.8540864 0.8864504 0.9090369 0.9110335
## 3646 0.8540864 0.9080000 0.9090369 0.9110335
## 3647 0.8540864 0.9010727 0.9090369 0.9110335
## 3648 0.8540864 0.9010727 0.9090369 0.9110335
## 3649 0.9439160 0.9321055 0.9090369 0.9110335
## 3650 0.8540864 0.9080000 0.9090369 0.9110335
## 3651 0.8540864 0.8877722 0.9090369 0.9110335
## 3652 0.8540864 0.9080000 0.8791400 0.9110335
## 3653 0.8540864 0.8877722 0.8791400 0.9110335
## 3654 0.9439160 0.9321055 0.9090369 0.9110335
## 3655 0.8540864 0.8148148 0.9090369 0.9110335
## 3656 0.9439160 0.8864504 0.8791400 0.9110335
## 3657 0.8540864 0.9080000 0.8791400 0.9110335
## 3658 0.9439160 0.9321055 0.9090369 0.9110335
## 3659 0.9439160 0.9010727 0.9090369 0.9110335
## 3660 0.9439160 0.9321055 0.9090369 0.9110335
## 3661 0.8540864 0.9080000 0.9090369 0.9110335
## 3662 0.8540864 0.8877722 0.9090369 0.9110335
## 3663 0.9439160 0.9321055 0.9090369 0.9110335
## 3664 0.8540864 0.9321055 0.9090369 0.9110335
## 3665 0.9439160 0.9321055 0.9090369 0.9110335
## 3666 0.9439160 0.8864504 0.9090369 0.9110335
## 3667 0.9439160 0.9321055 0.9090369 0.9110335
## 3668 0.8540864 0.9321055 0.9090369 0.9110335
## 3669 0.9439160 0.9321055 0.8791400 0.9110335
## 3670 0.8540864 0.9080000 0.9090369 0.9110335
## 3671 0.9439160 0.8864504 0.9090369 0.9110335
## 3672 0.8540864 0.9080000 0.9090369 0.9110335
## 3673 0.9439160 0.9080000 0.8791400 0.9110335
## 3674 0.9439160 0.8864504 0.9090369 0.9110335
## 3675 0.9439160 0.8864504 0.9090369 0.9110335
## 3676 0.9439160 0.8864504 0.8791400 0.9110335
## 3677 0.8540864 0.8877722 0.9090369 0.9110335
## 3678 0.9439160 0.9321055 0.8791400 0.9110335
## 3679 0.8540864 0.9010727 0.9090369 0.9110335
## 3680 0.9439160 0.9321055 0.8791400 0.9110335
## 3681 0.9439160 0.8864504 0.9090369 0.9110335
## 3682 0.9439160 0.9010727 0.8721351 0.9110335
## 3683 0.9439160 0.9321055 0.9090369 0.9110335
## 3684 0.8540864 0.9321055 0.9090369 0.9110335
## 3685 0.8540864 0.8877722 0.9090369 0.9110335
## 3686 0.8540864 0.9080000 0.9090369 0.9110335
## 3687 0.8540864 0.9321055 0.9090369 0.9110335
## 3688 0.8540864 0.9080000 0.9090369 0.9110335
## 3689 0.8540864 0.9080000 0.8721351 0.9110335
## 3690 0.8540864 0.6137931 0.9090369 0.9110335
## 3691 0.9439160 0.9321055 0.9090369 0.9110335
## 3692 0.8540864 0.8877722 0.8791400 0.9110335
## 3693 0.9439160 0.9321055 0.9090369 0.9110335
## 3694 0.8540864 0.8148148 0.9090369 0.9110335
## 3695 0.9439160 0.8864504 0.8791400 0.9110335
## 3696 0.8540864 0.9010727 0.8791400 0.9110335
## 3697 0.9439160 0.9321055 0.9090369 0.9110335
## 3698 0.9439160 0.4949495 0.9090369 0.9110335
## 3699 0.8540864 0.8877722 0.9090369 0.9110335
## 3700 0.8540864 0.9080000 0.8791400 0.9110335
## 3701 0.9439160 0.8864504 0.9090369 0.9110335
## 3702 0.9439160 0.9321055 0.9090369 0.9110335
## 3703 0.8540864 0.8877722 0.8791400 0.9110335
## 3704 0.8540864 0.9010727 0.8791400 0.9110335
## 3705 0.9439160 0.8864504 0.9090369 0.9110335
## 3706 0.9439160 0.9321055 0.9090369 0.9110335
## 3707 0.9439160 0.9010727 0.9090369 0.9110335
## 3708 0.8540864 0.9010727 0.9090369 0.9110335
## 3709 0.8540864 0.8877722 0.8791400 0.9110335
## 3710 0.9439160 0.9321055 0.9090369 0.9110335
## 3711 0.8540864 0.9010727 0.8791400 0.9110335
## 3712 0.8540864 0.9321055 0.9090369 0.9110335
## 3713 0.9439160 0.9321055 0.9090369 0.9110335
## 3714 0.8540864 0.9010727 0.9090369 0.9110335
## 3715 0.9439160 0.8864504 0.9090369 0.9110335
## 3716 0.8540864 0.8877722 0.8791400 0.9110335
## 3717 0.8540864 0.9080000 0.9090369 0.9110335
## 3718 0.8540864 0.8864504 0.9090369 0.9110335
## 3719 0.8540864 0.9080000 0.8791400 0.9110335
## 3720 0.9439160 0.9321055 0.9090369 0.9110335
## 3721 0.8540864 0.9080000 0.9090369 0.9110335
## 3722 0.8540864 0.9321055 0.9090369 0.9110335
## 3723 0.9439160 0.8864504 0.8791400 0.9110335
## 3724 0.9439160 0.9321055 0.9090369 0.9110335
## 3725 0.8540864 0.8148148 0.9090369 0.9110335
## 3726 0.8540864 0.9321055 0.8791400 0.9110335
## 3727 0.9439160 0.9321055 0.9090369 0.9110335
## 3728 0.9439160 0.8864504 0.8791400 0.9110335
## 3729 0.8540864 0.9321055 0.8791400 0.9110335
## 3730 0.8540864 0.9321055 0.9090369 0.9110335
## 3731 0.8540864 0.8877722 0.9090369 0.9110335
## 3732 0.8540864 0.9080000 0.8791400 0.9110335
## 3733 0.8540864 0.9010727 0.9090369 0.9110335
## 3734 0.8540864 0.8864504 0.9090369 0.9110335
## 3735 0.9439160 0.9321055 0.8721351 0.9110335
## 3736 0.9439160 0.9321055 0.9090369 0.9110335
## 3737 0.8540864 0.9321055 0.9090369 0.9110335
## 3738 0.8540864 0.8877722 0.8791400 0.9110335
## 3739 0.9439160 0.9321055 0.8791400 0.9110335
## 3740 0.8540864 0.8877722 0.8791400 0.9110335
## 3741 0.8540864 0.9321055 0.9090369 0.9110335
## 3742 0.9439160 0.8864504 0.8721351 0.9110335
## 3743 0.9439160 0.8864504 0.9090369 0.9110335
## 3744 0.8540864 0.9321055 0.9090369 0.9110335
## 3745 0.8540864 0.8877722 0.9090369 0.9110335
## 3746 0.9439160 0.9321055 0.9090369 0.9110335
## 3747 0.8540864 0.9080000 0.9090369 0.9110335
## 3748 0.9439160 0.8864504 0.8791400 0.9110335
## 3749 0.9439160 0.8864504 0.9090369 0.9110335
## 3750 0.8540864 0.8877722 0.9090369 0.9110335
## 3751 0.8540864 0.9080000 0.8791400 0.9110335
## 3752 0.9439160 0.8864504 0.9090369 0.9110335
## 3753 0.9439160 0.9010727 0.9090369 0.9110335
## 3754 0.9439160 0.9321055 0.9090369 0.9110335
## 3755 0.9439160 0.9321055 0.9090369 0.9110335
## 3756 0.8540864 0.9080000 0.9090369 0.9110335
## 3757 0.8540864 0.9321055 0.9090369 0.9110335
## 3758 0.9439160 0.8864504 0.9090369 0.9110335
## 3759 0.8540864 0.9321055 0.9090369 0.9110335
## 3760 0.8540864 0.9080000 0.9090369 0.9110335
## 3761 0.8540864 0.8877722 0.8791400 0.9110335
## 3762 0.8540864 0.9080000 0.9090369 0.9110335
## 3763 0.8540864 0.9080000 0.8791400 0.9110335
## 3764 0.9439160 0.9080000 0.8791400 0.9110335
## 3765 0.9439160 0.9321055 0.9090369 0.9110335
## 3766 0.9439160 0.9080000 0.8721351 0.9110335
## 3767 0.8540864 0.9010727 0.9090369 0.9110335
## 3768 0.8540864 0.8148148 0.9090369 0.9110335
## 3769 0.8540864 0.8877722 0.8791400 0.9110335
## 3770 0.9439160 0.9321055 0.9090369 0.9110335
## 3771 0.9439160 0.8864504 0.8721351 0.9110335
## 3772 0.9439160 0.9321055 0.9090369 0.9110335
## 3773 0.9439160 0.9010727 0.9090369 0.9110335
## 3774 0.9439160 0.9080000 0.8791400 0.9110335
## 3775 0.8540864 0.8877722 0.9090369 0.9110335
## 3776 0.9439160 0.9321055 0.9090369 0.9110335
## 3777 0.8540864 0.8148148 0.9090369 0.9110335
## 3778 0.8540864 0.8877722 0.9090369 0.9110335
## 3779 0.8540864 0.9321055 0.9090369 0.9110335
## 3780 0.9439160 0.9321055 0.9090369 0.9110335
## 3781 0.9439160 0.9321055 0.9090369 0.9110335
## 3782 0.8540864 0.9010727 0.8791400 0.9110335
## 3783 0.8540864 0.9321055 0.9090369 0.9110335
## 3784 0.9439160 0.9321055 0.9090369 0.9110335
## 3785 0.9439160 0.9080000 0.8791400 0.9110335
## 3786 0.8540864 0.8864504 0.9090369 0.9110335
## 3787 0.9439160 0.9321055 0.8791400 0.9110335
## 3788 0.8540864 0.9080000 0.9090369 0.9110335
## 3789 0.8540864 0.9080000 0.9090369 0.9110335
## 3790 0.9439160 0.9321055 0.9090369 0.9110335
## 3791 0.8540864 0.4949495 0.9090369 0.9110335
## 3792 0.9439160 0.9321055 0.8791400 0.9110335
## 3793 0.9439160 0.8864504 0.9090369 0.9110335
## 3794 0.9439160 0.9321055 0.8791400 0.9110335
## 3795 0.8540864 0.9010727 0.9090369 0.9110335
## 3796 0.8540864 0.9080000 0.8791400 0.9110335
## 3797 0.9439160 0.9321055 0.9090369 0.9110335
## 3798 0.8540864 0.8864504 0.9090369 0.9110335
## 3799 0.8540864 0.9321055 0.9090369 0.9110335
## 3800 0.9439160 0.8864504 0.9090369 0.9110335
## 3801 0.8540864 0.9080000 0.9090369 0.9110335
## 3802 0.8540864 0.9010727 0.9090369 0.9110335
## 3803 0.9439160 0.9321055 0.8791400 0.9110335
## 3804 0.9439160 0.9321055 0.8791400 0.9110335
## 3805 0.9439160 0.9321055 0.9090369 0.9110335
## 3806 0.9439160 0.9321055 0.8721351 0.9110335
## 3807 0.9439160 0.9321055 0.9090369 0.9110335
## 3808 0.9439160 0.8864504 0.9090369 0.9110335
## 3809 0.8540864 0.9321055 0.9090369 0.9110335
## 3810 0.9439160 0.9321055 0.9090369 0.9110335
## 3811 0.9439160 0.9321055 0.9090369 0.9110335
## 3812 0.9439160 0.9321055 0.9090369 0.9110335
## 3813 0.8540864 0.8864504 0.9090369 0.9110335
## 3814 0.8540864 0.8877722 0.8721351 0.9110335
## 3815 0.8540864 0.9321055 0.9090369 0.9110335
## 3816 0.8540864 0.9080000 0.8791400 0.9110335
## 3817 0.9439160 0.9321055 0.9090369 0.9110335
## 3818 0.8540864 0.9080000 0.8791400 0.9110335
## 3819 0.9439160 0.9010727 0.9090369 0.9110335
## 3820 0.8540864 0.9080000 0.9090369 0.9110335
## 3821 0.8540864 0.9010727 0.8791400 0.9110335
## 3822 0.9439160 0.8864504 0.9090369 0.9110335
## 3823 0.9439160 0.9321055 0.9090369 0.9110335
## 3824 0.9439160 0.9010727 0.9090369 0.9110335
## 3825 0.8540864 0.9321055 0.9090369 0.9110335
## 3826 0.9439160 0.9321055 0.9090369 0.9110335
## 3827 0.9439160 0.9321055 0.9090369 0.9110335
## 3828 0.9439160 0.8864504 0.9090369 0.9110335
## 3829 0.8540864 0.9010727 0.9090369 0.9110335
## 3830 0.8540864 0.6137931 0.9090369 0.9110335
## 3831 0.9439160 0.6137931 0.9090369 0.9110335
## 3832 0.9439160 0.9321055 0.9090369 0.9110335
## 3833 0.8540864 0.4949495 0.9090369 0.9110335
## 3834 0.9439160 0.9321055 0.8791400 0.9110335
## 3835 0.8540864 0.9080000 0.9090369 0.9110335
## 3836 0.9439160 0.9321055 0.9090369 0.9110335
## 3837 0.9439160 0.9321055 0.9090369 0.9110335
## 3838 0.8540864 0.9080000 0.9090369 0.9110335
## 3839 0.8540864 0.8877722 0.9090369 0.9110335
## 3840 0.8540864 0.8877722 0.8791400 0.9110335
## 3841 0.9439160 0.9321055 0.8791400 0.9110335
## 3842 0.8540864 0.9321055 0.9090369 0.9110335
## 3843 0.8540864 0.9080000 0.8791400 0.9110335
## 3844 0.8540864 0.9080000 0.8791400 0.9110335
## 3845 0.9439160 0.8864504 0.8721351 0.9110335
## 3846 0.9439160 0.9321055 0.9090369 0.9110335
## 3847 0.8540864 0.8877722 0.9090369 0.9110335
## 3848 0.8540864 0.9010727 0.9090369 0.9110335
## 3849 0.8540864 0.9080000 0.9090369 0.9110335
## 3850 0.8540864 0.9080000 0.9090369 0.9110335
## 3851 0.9439160 0.9321055 0.9090369 0.9110335
## 3852 0.8540864 0.8877722 0.8791400 0.9110335
## 3853 0.8540864 0.9080000 0.9090369 0.9110335
## 3854 0.8540864 0.8877722 0.8791400 0.9110335
## 3855 0.9439160 0.9321055 0.9090369 0.9110335
## 3856 0.8540864 0.8877722 0.8721351 0.9110335
## 3857 0.8540864 0.9080000 0.9090369 0.9110335
## 3858 0.8540864 0.9321055 0.9090369 0.9110335
## 3859 0.8540864 0.9080000 0.8791400 0.9110335
## 3860 0.8540864 0.9080000 0.9090369 0.9110335
## 3861 0.9439160 0.8864504 0.9090369 0.9110335
## 3862 0.9439160 0.9321055 0.9090369 0.9110335
## 3863 0.9439160 0.9080000 0.8791400 0.9110335
## 3864 0.9439160 0.9321055 0.8791400 0.9110335
## 3865 0.8540864 0.8877722 0.9090369 0.9110335
## 3866 0.9439160 0.9080000 0.8791400 0.9110335
## 3867 0.8540864 0.9080000 0.8791400 0.9110335
## 3868 0.8540864 0.9321055 0.8721351 0.9110335
## 3869 0.9439160 0.9321055 0.9090369 0.9110335
## 3870 0.9439160 0.8864504 0.9090369 0.9110335
## 3871 0.8540864 0.9080000 0.8791400 0.9110335
## 3872 0.9439160 0.8864504 0.9090369 0.9110335
## 3873 0.8540864 0.9080000 0.8721351 0.9110335
## 3874 0.8540864 0.9080000 0.9090369 0.9110335
## 3875 0.8540864 0.9080000 0.9090369 0.9110335
## 3876 0.8540864 0.8864504 0.9090369 0.9110335
## 3877 0.9439160 0.8864504 0.9090369 0.9110335
## 3878 0.8540864 0.9321055 0.8721351 0.9110335
## 3879 0.9439160 0.9321055 0.8791400 0.9110335
## 3880 0.8540864 0.9321055 0.8791400 0.9110335
## 3881 0.8540864 0.8148148 0.9090369 0.9110335
## 3882 0.9439160 0.9321055 0.9090369 0.9110335
## 3883 0.8540864 0.9010727 0.9090369 0.9110335
## 3884 0.9439160 0.8864504 0.8791400 0.9110335
## 3885 0.8540864 0.9080000 0.8721351 0.9110335
## 3886 0.9439160 0.8864504 0.9090369 0.9110335
## 3887 0.9439160 0.9321055 0.9090369 0.9110335
## 3888 0.9439160 0.9321055 0.9090369 0.9110335
## 3889 0.8540864 0.9080000 0.8721351 0.9110335
## 3890 0.8540864 0.9321055 0.9090369 0.9110335
## 3891 0.8540864 0.8877722 0.8791400 0.9110335
## 3892 0.8540864 0.9321055 0.8721351 0.9110335
## 3893 0.9439160 0.8864504 0.9090369 0.9110335
## 3894 0.9439160 0.9321055 0.9090369 0.9110335
## 3895 0.8540864 0.9010727 0.9090369 0.9110335
## 3896 0.8540864 0.6137931 0.9090369 0.9110335
## 3897 0.9439160 0.9321055 0.8721351 0.9110335
## 3898 0.8540864 0.9080000 0.8791400 0.9110335
## 3899 0.8540864 0.9321055 0.9090369 0.9110335
## 3900 0.9439160 0.8864504 0.9090369 0.9110335
## 3901 0.8540864 0.9080000 0.8791400 0.9110335
## 3902 0.9439160 0.8864504 0.8791400 0.9110335
## 3903 0.8540864 0.9321055 0.8791400 0.9110335
## 3904 0.9439160 0.9321055 0.9090369 0.9110335
## 3905 0.8540864 0.9080000 0.8721351 0.9110335
## 3906 0.8540864 0.9010727 0.9090369 0.9110335
## 3907 0.8540864 0.8877722 0.8791400 0.9110335
## 3908 0.8540864 0.9321055 0.9090369 0.9110335
## 3909 0.8540864 0.9080000 0.9090369 0.9110335
## 3910 0.8540864 0.8877722 0.9090369 0.9110335
## 3911 0.9439160 0.9321055 0.9090369 0.9110335
## 3912 0.8540864 0.9321055 0.9090369 0.9110335
## 3913 0.8540864 0.6137931 0.9090369 0.9110335
## 3914 0.9439160 0.9080000 0.8791400 0.9110335
## 3915 0.9439160 0.6137931 0.9090369 0.9110335
## 3916 0.8540864 0.9010727 0.9090369 0.9110335
## 3917 0.9439160 0.9321055 0.9090369 0.9110335
## 3918 0.8540864 0.9321055 0.8721351 0.9110335
## 3919 0.8540864 0.9080000 0.8791400 0.9110335
## 3920 0.9439160 0.4949495 0.9090369 0.9110335
## 3921 0.8540864 0.8864504 0.8721351 0.9110335
## 3922 0.9439160 0.8864504 0.9090369 0.9110335
## 3923 0.8540864 0.6137931 0.9090369 0.9110335
## 3924 0.9439160 0.9321055 0.8791400 0.9110335
## 3925 0.8540864 0.8148148 0.9090369 0.9110335
## 3926 0.9439160 0.8864504 0.8791400 0.9110335
## 3927 0.9439160 0.9321055 0.9090369 0.9110335
## 3928 0.8540864 0.8877722 0.9090369 0.9110335
## 3929 0.8540864 0.9010727 0.9090369 0.9110335
## 3930 0.9439160 0.8864504 0.9090369 0.9110335
## 3931 0.9439160 0.9080000 0.8791400 0.9110335
## 3932 0.9439160 0.9321055 0.9090369 0.9110335
## 3933 0.8540864 0.8877722 0.8791400 0.9110335
## 3934 0.8540864 0.8877722 0.8791400 0.9110335
## 3935 0.8540864 0.6137931 0.9090369 0.9110335
## 3936 0.9439160 0.9010727 0.9090369 0.9110335
## 3937 0.8540864 0.8877722 0.8721351 0.9110335
## 3938 0.8540864 0.8877722 0.8721351 0.9110335
## 3939 0.9439160 0.8864504 0.9090369 0.9110335
## 3940 0.9439160 0.9321055 0.9090369 0.9110335
## 3941 0.8540864 0.4949495 0.9090369 0.9110335
## 3942 0.8540864 0.5408163 0.9090369 0.9110335
## 3943 0.9439160 0.8864504 0.8791400 0.9110335
## 3944 0.9439160 0.9321055 0.9090369 0.9110335
## 3945 0.9439160 0.9321055 0.9090369 0.9110335
## 3946 0.8540864 0.9321055 0.8721351 0.9110335
## 3947 0.8540864 0.8877722 0.8791400 0.9110335
## 3948 0.8540864 0.9080000 0.9090369 0.9110335
## 3949 0.8540864 0.9080000 0.9090369 0.9110335
## 3950 0.8540864 0.9321055 0.9090369 0.9110335
## 3951 0.8540864 0.9080000 0.9090369 0.9110335
## 3952 0.8540864 0.9080000 0.8791400 0.9110335
## 3953 0.8540864 0.9080000 0.9090369 0.9110335
## 3954 0.9439160 0.8864504 0.9090369 0.9110335
## 3955 0.9439160 0.9321055 0.9090369 0.9110335
## 3956 0.8540864 0.9080000 0.8791400 0.9110335
## 3957 0.8540864 0.9080000 0.8791400 0.9110335
## 3958 0.8540864 0.8148148 0.9090369 0.9110335
## 3959 0.8540864 0.8877722 0.8791400 0.9110335
## 3960 0.9439160 0.9321055 0.9090369 0.9110335
## 3961 0.8540864 0.9321055 0.9090369 0.9110335
## 3962 0.8540864 0.6137931 0.8791400 0.9110335
## 3963 0.8540864 0.8877722 0.9090369 0.9110335
## 3964 0.8540864 0.8877722 0.8721351 0.9110335
## 3965 0.8540864 0.4949495 0.9090369 0.9110335
## 3966 0.9439160 0.9321055 0.8791400 0.9110335
## 3967 0.9439160 0.8864504 0.9090369 0.9110335
## 3968 0.9439160 0.9321055 0.9090369 0.9110335
## 3969 0.8540864 0.9080000 0.9090369 0.9110335
## 3970 0.8540864 0.9010727 0.9090369 0.9110335
## 3971 0.9439160 0.9321055 0.9090369 0.9110335
## 3972 0.9439160 0.9321055 0.8791400 0.9110335
## 3973 0.8540864 0.9321055 0.9090369 0.9110335
## 3974 0.8540864 0.9080000 0.8791400 0.9110335
## 3975 0.9439160 0.8864504 0.9090369 0.9110335
## 3976 0.9439160 0.8864504 0.9090369 0.9110335
## 3977 0.9439160 0.8864504 0.9090369 0.9110335
## 3978 0.8540864 0.8877722 0.9090369 0.9110335
## 3979 0.9439160 0.8864504 0.9090369 0.9110335
## 3980 0.9439160 0.9321055 0.9090369 0.9110335
## 3981 0.8540864 0.9080000 0.8721351 0.9110335
## 3982 0.8540864 0.8877722 0.8721351 0.9110335
## 3983 0.8540864 0.9010727 0.9090369 0.9110335
## 3984 0.8540864 0.9010727 0.8791400 0.9110335
## 3985 0.8540864 0.9321055 0.8721351 0.9110335
## 3986 0.8540864 0.9321055 0.8791400 0.9110335
## 3987 0.9439160 0.9321055 0.9090369 0.9110335
## 3988 0.8540864 0.9080000 0.9090369 0.9110335
## 3989 0.8540864 0.9321055 0.9090369 0.9110335
## 3990 0.9439160 0.9321055 0.9090369 0.9110335
## 3991 0.8540864 0.9010727 0.9090369 0.9110335
## 3992 0.8540864 0.8877722 0.8791400 0.9110335
## 3993 0.8540864 0.9080000 0.9090369 0.9110335
## 3994 0.9439160 0.9010727 0.9090369 0.9110335
## 3995 0.8540864 0.9080000 0.8721351 0.9110335
## 3996 0.9439160 0.8864504 0.9090369 0.9110335
## 3997 0.8540864 0.9010727 0.9090369 0.9110335
## 3998 0.9439160 0.9321055 0.9090369 0.9110335
## 3999 0.8540864 0.9010727 0.8791400 0.9110335
## 4000 0.8540864 0.8877722 0.8791400 0.9110335
## 4001 0.9439160 0.9321055 0.9090369 0.9110335
## 4002 0.9439160 0.9321055 0.9090369 0.9110335
## 4003 0.8540864 0.9321055 0.9090369 0.9110335
## 4004 0.9439160 0.9321055 0.9090369 0.9110335
## 4005 0.8540864 0.8148148 0.9090369 0.9110335
## 4006 0.8540864 0.8877722 0.8791400 0.9110335
## 4007 0.9439160 0.8864504 0.9090369 0.9110335
## 4008 0.9439160 0.9321055 0.8791400 0.9110335
## 4009 0.8540864 0.9080000 0.9090369 0.9110335
## 4010 0.8540864 0.9010727 0.8791400 0.9110335
## 4011 0.8540864 0.8877722 0.8791400 0.9110335
## 4012 0.8540864 0.9321055 0.9090369 0.9110335
## 4013 0.8540864 0.9080000 0.8791400 0.9110335
## 4014 0.9439160 0.9321055 0.9090369 0.9110335
## 4015 0.8540864 0.8877722 0.8791400 0.9110335
## 4016 0.8540864 0.9321055 0.9090369 0.9110335
## 4017 0.8540864 0.9321055 0.8791400 0.9110335
## 4018 0.8540864 0.9321055 0.8791400 0.9110335
## 4019 0.8540864 0.9010727 0.9090369 0.9110335
## 4020 0.9439160 0.9321055 0.9090369 0.9110335
## 4021 0.8540864 0.9321055 0.8791400 0.9110335
## 4022 0.8540864 0.9321055 0.8721351 0.9110335
## 4023 0.8540864 0.4949495 0.8791400 0.9110335
## 4024 0.8540864 0.9080000 0.8791400 0.9110335
## 4025 0.8540864 0.9321055 0.9090369 0.9110335
## 4026 0.8540864 0.9010727 0.8791400 0.9110335
## 4027 0.8540864 0.6137931 0.8791400 0.9110335
## 4028 0.9439160 0.8864504 0.9090369 0.9110335
## 4029 0.8540864 0.9010727 0.9090369 0.9110335
## 4030 0.8540864 0.8877722 0.9090369 0.9110335
## 4031 0.9439160 0.9010727 0.9090369 0.9110335
## 4032 0.9439160 0.9321055 0.9090369 0.9110335
## 4033 0.9439160 0.5408163 0.9090369 0.9110335
## 4034 0.8540864 0.8148148 0.8791400 0.9110335
## 4035 0.8540864 0.8148148 0.8791400 0.9110335
## 4036 0.9439160 0.9321055 0.8791400 0.9110335
## 4037 0.8540864 0.8877722 0.8791400 0.9110335
## 4038 0.9439160 0.9321055 0.8791400 0.9110335
## 4039 0.8540864 0.8877722 0.8791400 0.9110335
## 4040 0.9439160 0.8864504 0.8791400 0.9110335
## 4041 0.8540864 0.8148148 0.8791400 0.9110335
## 4042 0.8540864 0.9321055 0.8721351 0.9110335
## 4043 0.8540864 0.8877722 0.8791400 0.9110335
## 4044 0.8540864 0.4949495 0.8791400 0.9110335
## 4045 0.8540864 0.4949495 0.8791400 0.9110335
## 4046 0.8540864 0.8148148 0.8791400 0.9110335
## 4047 0.9439160 0.8864504 0.8791400 0.9110335
## 4048 0.8540864 0.9010727 0.8791400 0.9110335
## 4049 0.8540864 0.8148148 0.8791400 0.9110335
## 4050 0.8540864 0.5408163 0.8721351 0.9110335
## 4051 0.9439160 0.8864504 0.8791400 0.9110335
## 4052 0.8540864 0.9080000 0.8791400 0.9110335
## 4053 0.8540864 0.8877722 0.8791400 0.9110335
## 4054 0.8540864 0.8877722 0.8791400 0.9110335
## 4055 0.8540864 0.9321055 0.8791400 0.9110335
## 4056 0.9439160 0.9321055 0.8791400 0.9110335
## 4057 0.8540864 0.8148148 0.8791400 0.9110335
## 4058 0.8540864 0.8877722 0.8791400 0.9110335
## 4059 0.8540864 0.8877722 0.8791400 0.9110335
## 4060 0.9439160 0.9321055 0.8721351 0.9110335
## 4061 0.9439160 0.9321055 0.8791400 0.9110335
## 4062 0.8540864 0.8148148 0.8791400 0.9110335
## 4063 0.8540864 0.9321055 0.8791400 0.9110335
## 4064 0.9439160 0.8864504 0.8791400 0.9110335
## 4065 0.8540864 0.9321055 0.8791400 0.9110335
## 4066 0.9439160 0.9321055 0.8791400 0.9110335
## 4067 0.8540864 0.8148148 0.8791400 0.9110335
## 4068 0.8540864 0.8148148 0.8791400 0.9110335
## 4069 0.8540864 0.8877722 0.8791400 0.9110335
## 4070 0.8540864 0.9010727 0.8791400 0.9110335
## 4071 0.9439160 0.8864504 0.8721351 0.9110335
## 4072 0.8540864 0.9010727 0.8791400 0.9110335
## 4073 0.8540864 0.8148148 0.8791400 0.9110335
## 4074 0.8540864 0.9010727 0.8791400 0.9110335
## 4075 0.8540864 0.6137931 0.8791400 0.9110335
## 4076 0.9439160 0.9321055 0.8791400 0.9110335
## 4077 0.8540864 0.8877722 0.8791400 0.9110335
## 4078 0.9439160 0.8864504 0.8791400 0.9110335
## 4079 0.8540864 0.8148148 0.8791400 0.9110335
## 4080 0.9439160 0.9321055 0.8791400 0.9110335
## 4081 0.9439160 0.9321055 0.8791400 0.9110335
## 4082 0.9439160 0.9321055 0.8874696 0.9110335
## 4083 0.9439160 0.9321055 0.8791400 0.9110335
## 4084 0.8540864 0.9080000 0.8791400 0.9110335
## 4085 0.8540864 0.8877722 0.8791400 0.9110335
## 4086 0.9439160 0.9321055 0.8791400 0.9110335
## 4087 0.8540864 0.8877722 0.8791400 0.9110335
## 4088 0.9439160 0.8864504 0.8791400 0.9110335
## 4089 0.8540864 0.8148148 0.8791400 0.9110335
## 4090 0.8540864 0.9080000 0.8791400 0.9110335
## 4091 0.9439160 0.8864504 0.8791400 0.9110335
## 4092 0.9439160 0.9321055 0.8791400 0.9110335
## 4093 0.8540864 0.9010727 0.8791400 0.9110335
## 4094 0.9439160 0.9321055 0.8791400 0.9110335
## 4095 0.9439160 0.8864504 0.8721351 0.9110335
## 4096 0.8540864 0.8148148 0.8791400 0.9110335
## 4097 0.9439160 0.9321055 0.8791400 0.9110335
## 4098 0.9439160 0.9321055 0.8791400 0.9110335
## 4099 0.8540864 0.8148148 0.8791400 0.9110335
## 4100 0.9439160 0.9321055 0.8721351 0.9110335
## 4101 0.8540864 0.9080000 0.8791400 0.9110335
## 4102 0.9439160 0.8864504 0.8874696 0.9110335
## 4103 0.8540864 0.9080000 0.8791400 0.9110335
## 4104 0.8540864 0.8148148 0.8791400 0.9110335
## 4105 0.9439160 0.9321055 0.8791400 0.9110335
## 4106 0.9439160 0.8864504 0.8721351 0.9110335
## 4107 0.8540864 0.9080000 0.8791400 0.9110335
## 4108 0.9439160 0.8864504 0.8791400 0.9110335
## 4109 0.8540864 0.9321055 0.8791400 0.9110335
## 4110 0.9439160 0.8864504 0.8791400 0.9110335
## 4111 0.9439160 0.9321055 0.8721351 0.9110335
## 4112 0.8540864 0.9010727 0.8791400 0.9110335
## 4113 0.9439160 0.9321055 0.8791400 0.9110335
## 4114 0.8540864 0.9321055 0.8791400 0.9110335
## 4115 0.8540864 0.8148148 0.8791400 0.9110335
## 4116 0.8540864 0.8877722 0.8791400 0.9110335
## 4117 0.8540864 0.9080000 0.8791400 0.9110335
## 4118 0.8540864 0.9321055 0.8721351 0.9110335
## 4119 0.9439160 0.9321055 0.8791400 0.9110335
## 4120 0.8540864 0.9080000 0.8791400 0.9110335
## 4121 0.8540864 0.9321055 0.8791400 0.9110335
## 4122 0.9439160 0.9321055 0.8721351 0.9110335
## 4123 0.8540864 0.9321055 0.8791400 0.9110335
## 4124 0.8540864 0.8148148 0.8791400 0.9110335
## 4125 0.9439160 0.9321055 0.8791400 0.9110335
## 4126 0.8540864 0.8148148 0.8791400 0.9110335
## 4127 0.8540864 0.9321055 0.8791400 0.9110335
## 4128 0.8540864 0.9321055 0.8791400 0.9110335
## 4129 0.8540864 0.9321055 0.8791400 0.9110335
## 4130 0.8540864 0.9080000 0.8791400 0.9110335
## 4131 0.8540864 0.9010727 0.8791400 0.9110335
## 4132 0.8540864 0.8864504 0.8791400 0.9110335
## 4133 0.8540864 0.9321055 0.8791400 0.9110335
## 4134 0.8540864 0.9080000 0.8791400 0.9110335
## 4135 0.9439160 0.9321055 0.8791400 0.9110335
## 4136 0.8540864 0.9321055 0.8721351 0.9110335
## 4137 0.9439160 0.8864504 0.8791400 0.9110335
## 4138 0.8540864 0.9080000 0.8791400 0.9110335
## 4139 0.9439160 0.8864504 0.8791400 0.9110335
## 4140 0.9439160 0.8864504 0.8791400 0.9110335
## 4141 0.8540864 0.9321055 0.8791400 0.9110335
## 4142 0.8540864 0.8877722 0.8791400 0.9110335
## 4143 0.8540864 0.8877722 0.8791400 0.9110335
## 4144 0.8540864 0.8877722 0.8791400 0.9110335
## 4145 0.8540864 0.9080000 0.8791400 0.9110335
## 4146 0.8540864 0.8148148 0.8791400 0.9110335
## 4147 0.8540864 0.8877722 0.8791400 0.9110335
## 4148 0.9439160 0.8864504 0.8791400 0.9110335
## 4149 0.8540864 0.9321055 0.8791400 0.9110335
## 4150 0.8540864 0.9321055 0.8791400 0.9110335
## 4151 0.9439160 0.9321055 0.8791400 0.9110335
## 4152 0.9439160 0.9010727 0.8791400 0.9110335
## 4153 0.9439160 0.9321055 0.8791400 0.9110335
## 4154 0.8540864 0.9080000 0.8721351 0.9110335
## 4155 0.8540864 0.9010727 0.8791400 0.9110335
## 4156 0.9439160 0.8864504 0.8791400 0.9110335
## 4157 0.9439160 0.8864504 0.8874696 0.9110335
## 4158 0.8540864 0.9321055 0.8791400 0.9110335
## 4159 0.8540864 0.8148148 0.8791400 0.9110335
## 4160 0.8540864 0.9080000 0.8791400 0.9110335
## 4161 0.8540864 0.9080000 0.8791400 0.9110335
## 4162 0.8540864 0.8148148 0.8791400 0.9110335
## 4163 0.8540864 0.9010727 0.8791400 0.9110335
## 4164 0.8540864 0.8877722 0.8791400 0.9110335
## 4165 0.9439160 0.9321055 0.8791400 0.9110335
## 4166 0.8540864 0.9080000 0.8791400 0.9110335
## 4167 0.9439160 0.9321055 0.8791400 0.9110335
## 4168 0.8540864 0.9321055 0.8721351 0.9110335
## 4169 0.9439160 0.8864504 0.8791400 0.9110335
## 4170 0.8540864 0.9080000 0.8791400 0.9110335
## 4171 0.9439160 0.8877722 0.8791400 0.9110335
## 4172 0.8540864 0.9080000 0.8791400 0.9110335
## 4173 0.8540864 0.9010727 0.8791400 0.9110335
## 4174 0.8540864 0.8877722 0.8791400 0.9110335
## 4175 0.8540864 0.9010727 0.8791400 0.9110335
## 4176 0.8540864 0.9321055 0.8791400 0.9110335
## 4177 0.8540864 0.9080000 0.8791400 0.9110335
## 4178 0.9439160 0.9321055 0.8791400 0.9110335
## 4179 0.9439160 0.9321055 0.8874696 0.9110335
## 4180 0.8540864 0.9321055 0.8721351 0.9110335
## 4181 0.8540864 0.8877722 0.8791400 0.9110335
## 4182 0.8540864 0.8877722 0.8791400 0.9110335
## 4183 0.8540864 0.9321055 0.8874696 0.9110335
## 4184 0.8540864 0.8877722 0.8791400 0.9110335
## 4185 0.9439160 0.8864504 0.8791400 0.9110335
## 4186 0.8540864 0.9321055 0.8791400 0.9110335
## 4187 0.8540864 0.9080000 0.8791400 0.9110335
## 4188 0.9439160 0.9321055 0.8791400 0.9110335
## 4189 0.8540864 0.9080000 0.8791400 0.9110335
## 4190 0.9439160 0.8864504 0.8791400 0.9110335
## 4191 0.9439160 0.9321055 0.8791400 0.9110335
## 4192 0.9439160 0.9321055 0.8791400 0.9110335
## 4193 0.9439160 0.9321055 0.8791400 0.9110335
## 4194 0.8540864 0.9010727 0.8791400 0.9110335
## 4195 0.9439160 0.8148148 0.8791400 0.9110335
## 4196 0.8540864 0.8148148 0.8791400 0.9110335
## 4197 0.9439160 0.8864504 0.8721351 0.9110335
## 4198 0.9439160 0.8864504 0.8791400 0.9110335
## 4199 0.8540864 0.9080000 0.8721351 0.9110335
## 4200 0.8540864 0.8148148 0.8791400 0.9110335
## 4201 0.9439160 0.8877722 0.8791400 0.9110335
## 4202 0.8540864 0.8148148 0.8791400 0.9110335
## 4203 0.8540864 0.8877722 0.8791400 0.9110335
## 4204 0.8540864 0.9080000 0.8791400 0.9110335
## 4205 0.8540864 0.8877722 0.8791400 0.9110335
## 4206 0.9439160 0.8864504 0.8791400 0.9110335
## 4207 0.8540864 0.9080000 0.8791400 0.9110335
## 4208 0.8540864 0.8877722 0.8791400 0.9110335
## 4209 0.8540864 0.8877722 0.8721351 0.9110335
## 4210 0.9439160 0.9321055 0.8791400 0.9110335
## 4211 0.8540864 0.8877722 0.8791400 0.9110335
## 4212 0.9439160 0.8864504 0.8791400 0.9110335
## 4213 0.8540864 0.9010727 0.8791400 0.9110335
## 4214 0.8540864 0.9321055 0.8791400 0.9110335
## 4215 0.8540864 0.8148148 0.8791400 0.9110335
## 4216 0.8540864 0.8148148 0.8791400 0.9110335
## 4217 0.8540864 0.9080000 0.8721351 0.9110335
## 4218 0.9439160 0.8864504 0.8791400 0.9110335
## 4219 0.8540864 0.9321055 0.8791400 0.9110335
## 4220 0.8540864 0.8877722 0.8791400 0.9110335
## 4221 0.8540864 0.9321055 0.8721351 0.9110335
## 4222 0.9439160 0.9321055 0.8791400 0.9110335
## 4223 0.8540864 0.8148148 0.8791400 0.9110335
## 4224 0.8540864 0.9080000 0.8791400 0.9110335
## 4225 0.8540864 0.8877722 0.8791400 0.9110335
## 4226 0.9439160 0.8864504 0.8791400 0.9110335
## 4227 0.8540864 0.9080000 0.8791400 0.9110335
## 4228 0.9439160 0.8864504 0.8791400 0.9110335
## 4229 0.8540864 0.9010727 0.8791400 0.9110335
## 4230 0.8540864 0.8877722 0.8791400 0.9110335
## 4231 0.8540864 0.9010727 0.8721351 0.9110335
## 4232 0.8540864 0.9080000 0.8791400 0.9110335
## 4233 0.8540864 0.8148148 0.8791400 0.9110335
## 4234 0.8540864 0.9010727 0.8791400 0.9110335
## 4235 0.9439160 0.9321055 0.8791400 0.9110335
## 4236 0.9439160 0.8864504 0.8791400 0.9110335
## 4237 0.8540864 0.8148148 0.8791400 0.9110335
## 4238 0.8540864 0.9321055 0.8791400 0.9110335
## 4239 0.9439160 0.9010727 0.8791400 0.9110335
## 4240 0.8540864 0.8877722 0.8721351 0.9110335
## 4241 0.8540864 0.8148148 0.8791400 0.9110335
## 4242 0.9439160 0.8864504 0.8791400 0.9110335
## 4243 0.8540864 0.9010727 0.8791400 0.9110335
## 4244 0.8540864 0.9080000 0.8791400 0.9110335
## 4245 0.9439160 0.8864504 0.8791400 0.9110335
## 4246 0.8540864 0.9010727 0.8721351 0.9110335
## 4247 0.8540864 0.6137931 0.8791400 0.9110335
## 4248 0.8540864 0.9010727 0.8721351 0.9110335
## 4249 0.8540864 0.8148148 0.8791400 0.9110335
## 4250 0.9439160 0.8864504 0.8791400 0.9110335
## 4251 0.8540864 0.9080000 0.8791400 0.9110335
## 4252 0.8540864 0.9321055 0.8791400 0.9110335
## 4253 0.8540864 0.8148148 0.8791400 0.9110335
## 4254 0.8540864 0.8877722 0.8791400 0.9110335
## 4255 0.8540864 0.9010727 0.8721351 0.9110335
## 4256 0.8540864 0.8877722 0.8791400 0.9110335
## 4257 0.8540864 0.8877722 0.8791400 0.9110335
## 4258 0.8540864 0.9321055 0.8721351 0.9110335
## 4259 0.9439160 0.8148148 0.8791400 0.9110335
## 4260 0.9439160 0.9321055 0.8791400 0.9110335
## 4261 0.9439160 0.6137931 0.8791400 0.9110335
## 4262 0.9439160 0.9321055 0.8791400 0.9110335
## 4263 0.9439160 0.9321055 0.8721351 0.9110335
## 4264 0.8540864 0.8877722 0.8721351 0.9110335
## 4265 0.8540864 0.8877722 0.8791400 0.9110335
## 4266 0.8540864 0.9080000 0.8791400 0.9110335
## 4267 0.9439160 0.8864504 0.8791400 0.9110335
## 4268 0.8540864 0.4949495 0.8791400 0.9110335
## 4269 0.8540864 0.8877722 0.8791400 0.9110335
## 4270 0.8540864 0.8877722 0.8791400 0.9110335
## 4271 0.8540864 0.9321055 0.8791400 0.9110335
## 4272 0.8540864 0.8877722 0.8791400 0.9110335
## 4273 0.8540864 0.9080000 0.8874696 0.9110335
## 4274 0.8540864 0.8148148 0.8791400 0.9110335
## 4275 0.8540864 0.9080000 0.8791400 0.9110335
## 4276 0.8540864 0.9010727 0.8791400 0.9110335
## 4277 0.9439160 0.8864504 0.8791400 0.9110335
## 4278 0.8540864 0.9321055 0.8791400 0.9110335
## 4279 0.8540864 0.8148148 0.8791400 0.9110335
## 4280 0.8540864 0.8864504 0.8791400 0.9110335
## 4281 0.8540864 0.8148148 0.8791400 0.9110335
## 4282 0.8540864 0.8864504 0.8874696 0.9110335
## 4283 0.8540864 0.8148148 0.8791400 0.9110335
## 4284 0.9439160 0.8148148 0.8791400 0.9110335
## 4285 0.9439160 0.8864504 0.8791400 0.9110335
## 4286 0.8540864 0.9010727 0.8791400 0.9110335
## 4287 0.8540864 0.9080000 0.8791400 0.9110335
## 4288 0.8540864 0.8877722 0.8791400 0.9110335
## 4289 0.8540864 0.8148148 0.8791400 0.9110335
## 4290 0.8540864 0.9010727 0.8791400 0.9110335
## 4291 0.9439160 0.9321055 0.8791400 0.9110335
## 4292 0.8540864 0.3750000 0.8791400 0.9110335
## 4293 0.9439160 0.9321055 0.8791400 0.9110335
## 4294 0.9439160 0.8864504 0.8791400 0.9110335
## 4295 0.8540864 0.9321055 0.8791400 0.9110335
## 4296 0.8540864 0.9010727 0.8791400 0.9110335
## 4297 0.8540864 0.9010727 0.8791400 0.9110335
## 4298 0.9439160 0.8864504 0.8791400 0.9110335
## 4299 0.9439160 0.8864504 0.8791400 0.9110335
## 4300 0.8540864 0.8877722 0.8791400 0.9110335
## 4301 0.8540864 0.9080000 0.8721351 0.9110335
## 4302 0.8540864 0.8877722 0.8791400 0.9110335
## 4303 0.8540864 0.8148148 0.8791400 0.9110335
## 4304 0.8540864 0.8148148 0.8791400 0.9110335
## 4305 0.8540864 0.9080000 0.8721351 0.9110335
## 4306 0.9439160 0.8148148 0.8791400 0.9110335
## 4307 0.9439160 0.9321055 0.8721351 0.9110335
## 4308 0.9439160 0.8864504 0.8791400 0.9110335
## 4309 0.9439160 0.9321055 0.8791400 0.9110335
## 4310 0.9439160 0.8864504 0.8791400 0.9110335
## 4311 0.8540864 0.9010727 0.8791400 0.9110335
## 4312 0.8540864 0.8877722 0.8791400 0.9110335
## 4313 0.8540864 0.8877722 0.8721351 0.9110335
## 4314 0.9439160 0.9321055 0.8721351 0.9110335
## 4315 0.9439160 0.9321055 0.8791400 0.9110335
## 4316 0.8540864 0.8148148 0.8791400 0.9110335
## 4317 0.8540864 0.8877722 0.8721351 0.9110335
## 4318 0.8540864 0.9010727 0.8791400 0.9110335
## 4319 0.8540864 0.8148148 0.8791400 0.9110335
## 4320 0.8540864 0.9321055 0.8791400 0.9110335
## 4321 0.8540864 0.9080000 0.8791400 0.9110335
## 4322 0.8540864 0.8148148 0.8791400 0.9110335
## 4323 0.9439160 0.8864504 0.8791400 0.9110335
## 4324 0.8540864 0.9080000 0.8791400 0.9110335
## 4325 0.8540864 0.9080000 0.8791400 0.9110335
## 4326 0.9439160 0.8864504 0.8791400 0.9110335
## 4327 0.9439160 0.8864504 0.8791400 0.9110335
## 4328 0.8540864 0.8877722 0.8791400 0.9110335
## 4329 0.8540864 0.9010727 0.8791400 0.9110335
## 4330 0.9439160 0.8148148 0.8791400 0.9110335
## 4331 0.8540864 0.9080000 0.8791400 0.9110335
## 4332 0.9439160 0.9321055 0.8791400 0.9110335
## 4333 0.8540864 0.8148148 0.8791400 0.9110335
## 4334 0.8540864 0.9080000 0.8791400 0.9110335
## 4335 0.9439160 0.9321055 0.8721351 0.9110335
## 4336 0.8540864 0.8148148 0.8791400 0.9110335
## 4337 0.8540864 0.9010727 0.8791400 0.9110335
## 4338 0.8540864 0.8877722 0.8791400 0.9110335
## 4339 0.8540864 0.8877722 0.8791400 0.9110335
## 4340 0.8540864 0.8148148 0.8791400 0.9110335
## 4341 0.9439160 0.9321055 0.8791400 0.9110335
## 4342 0.8540864 0.8148148 0.8721351 0.9110335
## 4343 0.9439160 0.9321055 0.8791400 0.9110335
## 4344 0.8540864 0.8148148 0.8791400 0.9110335
## 4345 0.8540864 0.9321055 0.8791400 0.9110335
## 4346 0.9439160 0.8864504 0.8791400 0.9110335
## 4347 0.9439160 0.9321055 0.8721351 0.9110335
## 4348 0.8540864 0.8148148 0.8721351 0.9110335
## 4349 0.9439160 0.9321055 0.8791400 0.9110335
## 4350 0.9439160 0.9321055 0.8791400 0.9110335
## 4351 0.8540864 0.8877722 0.8791400 0.9110335
## 4352 0.8540864 0.9080000 0.8874696 0.9110335
## 4353 0.9439160 0.9321055 0.8791400 0.9110335
## 4354 0.8540864 0.8148148 0.8791400 0.9110335
## 4355 0.8540864 0.8864504 0.8721351 0.9110335
## 4356 0.8540864 0.8148148 0.8791400 0.9110335
## 4357 0.8540864 0.8877722 0.8791400 0.9110335
## 4358 0.9439160 0.9080000 0.8791400 0.9110335
## 4359 0.9439160 0.9321055 0.8791400 0.9110335
## 4360 0.9439160 0.9321055 0.8791400 0.9110335
## 4361 0.9439160 0.8148148 0.8791400 0.9110335
## 4362 0.9439160 0.9321055 0.8791400 0.9110335
## 4363 0.9439160 0.9321055 0.8791400 0.9110335
## 4364 0.8540864 0.8877722 0.8791400 0.9110335
## 4365 0.9439160 0.9321055 0.8791400 0.9110335
## 4366 0.9439160 0.9010727 0.8791400 0.9110335
## 4367 0.9439160 0.9321055 0.8791400 0.9110335
## 4368 0.9439160 0.9010727 0.8791400 0.9110335
## 4369 0.9439160 0.9321055 0.8791400 0.9110335
## 4370 0.8540864 0.9010727 0.8791400 0.9110335
## 4371 0.9439160 0.8864504 0.8874696 0.9110335
## 4372 0.8540864 0.9321055 0.8791400 0.9110335
## 4373 0.9439160 0.9321055 0.8791400 0.9110335
## 4374 0.9439160 0.9080000 0.8721351 0.9110335
## 4375 0.8540864 0.9010727 0.8791400 0.9110335
## 4376 0.8540864 0.8877722 0.8791400 0.9110335
## 4377 0.9439160 0.9321055 0.8791400 0.9110335
## 4378 0.8540864 0.8148148 0.8791400 0.9110335
## 4379 0.9439160 0.9321055 0.8791400 0.9110335
## 4380 0.8540864 0.9321055 0.8791400 0.9110335
## 4381 0.8540864 0.9080000 0.8791400 0.9110335
## 4382 0.8540864 0.9080000 0.8791400 0.9110335
## 4383 0.8540864 0.8148148 0.8791400 0.9110335
## 4384 0.8540864 0.9080000 0.8791400 0.9110335
## 4385 0.8540864 0.8877722 0.8791400 0.9110335
## 4386 0.8540864 0.8148148 0.8791400 0.9110335
## 4387 0.8540864 0.8148148 0.8791400 0.9110335
## 4388 0.9439160 0.9321055 0.8791400 0.9110335
## 4389 0.8540864 0.8148148 0.8791400 0.9110335
## 4390 0.8540864 0.6137931 0.8791400 0.9110335
## 4391 0.8540864 0.9321055 0.8791400 0.9110335
## 4392 0.8540864 0.9010727 0.8791400 0.9110335
## 4393 0.8540864 0.8877722 0.8721351 0.9110335
## 4394 0.8540864 0.9010727 0.8791400 0.9110335
## 4395 0.8540864 0.8877722 0.8791400 0.9110335
## 4396 0.8540864 0.8148148 0.8791400 0.9110335
## 4397 0.8540864 0.9321055 0.8791400 0.9110335
## 4398 0.8540864 0.8877722 0.8791400 0.9110335
## 4399 0.9439160 0.9321055 0.8791400 0.9110335
## 4400 0.9439160 0.9321055 0.8791400 0.9110335
## 4401 0.8540864 0.8877722 0.8791400 0.9110335
## 4402 0.9439160 0.8864504 0.8791400 0.9110335
## 4403 0.8540864 0.8877722 0.8791400 0.9110335
## 4404 0.9439160 0.9321055 0.8791400 0.9110335
## 4405 0.8540864 0.9080000 0.8721351 0.9110335
## 4406 0.8540864 0.9080000 0.8721351 0.9110335
## 4407 0.9439160 0.9321055 0.8791400 0.9110335
## 4408 0.8540864 0.9080000 0.8791400 0.9110335
## 4409 0.9439160 0.9010727 0.8791400 0.9110335
## 4410 0.9439160 0.9321055 0.8721351 0.9110335
## 4411 0.8540864 0.9080000 0.8791400 0.9110335
## 4412 0.8540864 0.9010727 0.8791400 0.9110335
## 4413 0.8540864 0.9321055 0.8791400 0.9110335
## 4414 0.8540864 0.8148148 0.8791400 0.9110335
## 4415 0.8540864 0.8148148 0.8791400 0.9110335
## 4416 0.9439160 0.8864504 0.8791400 0.9110335
## 4417 0.8540864 0.9080000 0.8874696 0.9110335
## 4418 0.9439160 0.8864504 0.8791400 0.9110335
## 4419 0.9439160 0.9321055 0.8791400 0.9110335
## 4420 0.8540864 0.8864504 0.8791400 0.9110335
## 4421 0.8540864 0.9321055 0.8791400 0.9110335
## 4422 0.9439160 0.8864504 0.8791400 0.9110335
## 4423 0.9439160 0.8864504 0.8791400 0.9110335
## 4424 0.8540864 0.9321055 0.8791400 0.9110335
## 4425 0.8540864 0.9321055 0.8791400 0.9110335
## 4426 0.9439160 0.9321055 0.8791400 0.9110335
## 4427 0.8540864 0.9080000 0.8791400 0.9110335
## 4428 0.8540864 0.9080000 0.8791400 0.9110335
## 4429 0.9439160 0.8864504 0.8791400 0.9110335
## 4430 0.8540864 0.8148148 0.8791400 0.9110335
## 4431 0.9439160 0.8864504 0.8791400 0.9110335
## 4432 0.8540864 0.9010727 0.8791400 0.9110335
## 4433 0.8540864 0.9010727 0.8721351 0.9110335
## 4434 0.9439160 0.9321055 0.8791400 0.9110335
## 4435 0.8540864 0.9321055 0.8791400 0.9110335
## 4436 0.8540864 0.8877722 0.8791400 0.9110335
## 4437 0.8540864 0.6137931 0.8791400 0.9110335
## 4438 0.8540864 0.8877722 0.8721351 0.9110335
## 4439 0.9439160 0.9321055 0.8791400 0.9110335
## 4440 0.8540864 0.9080000 0.8791400 0.9110335
## 4441 0.8540864 0.8877722 0.8791400 0.9110335
## 4442 0.8540864 0.6137931 0.8791400 0.9110335
## 4443 0.9439160 0.9321055 0.8791400 0.9110335
## 4444 0.8540864 0.9321055 0.8791400 0.9110335
## 4445 0.8540864 0.8148148 0.8791400 0.9110335
## 4446 0.8540864 0.8877722 0.8791400 0.9110335
## 4447 0.8540864 0.9080000 0.8791400 0.9110335
## 4448 0.9439160 0.8864504 0.8791400 0.9110335
## 4449 0.9439160 0.9321055 0.8791400 0.9110335
## 4450 0.9439160 0.9321055 0.8791400 0.9110335
## 4451 0.8540864 0.8877722 0.8791400 0.9110335
## 4452 0.9439160 0.9010727 0.8721351 0.9110335
## 4453 0.9439160 0.8864504 0.8791400 0.9110335
## 4454 0.8540864 0.8148148 0.8791400 0.9110335
## 4455 0.8540864 0.9080000 0.8874696 0.9110335
## 4456 0.8540864 0.4949495 0.8874696 0.9110335
## 4457 0.8540864 0.9080000 0.8791400 0.9110335
## 4458 0.9439160 0.8864504 0.8791400 0.9110335
## 4459 0.9439160 0.9321055 0.8791400 0.9110335
## 4460 0.8540864 0.9321055 0.8791400 0.9110335
## 4461 0.8540864 0.9321055 0.8791400 0.9110335
## 4462 0.8540864 0.9080000 0.8721351 0.9110335
## 4463 0.8540864 0.8148148 0.8791400 0.9110335
## 4464 0.9439160 0.9080000 0.8791400 0.9110335
## 4465 0.9439160 0.9321055 0.8791400 0.9110335
## 4466 0.8540864 0.9080000 0.8721351 0.9110335
## 4467 0.9439160 0.9321055 0.8721351 0.9110335
## 4468 0.8540864 0.9321055 0.8791400 0.9110335
## 4469 0.8540864 0.9080000 0.8791400 0.9110335
## 4470 0.9439160 0.9321055 0.8791400 0.9110335
## 4471 0.8540864 0.9080000 0.8721351 0.9110335
## 4472 0.8540864 0.9080000 0.8791400 0.9110335
## 4473 0.8540864 0.8148148 0.8791400 0.9110335
## 4474 0.8540864 0.9010727 0.8791400 0.9110335
## 4475 0.8540864 0.9321055 0.8791400 0.9110335
## 4476 0.9439160 0.9321055 0.8791400 0.9110335
## 4477 0.8540864 0.9080000 0.8791400 0.9110335
## 4478 0.9439160 0.8864504 0.8791400 0.9110335
## 4479 0.8540864 0.9080000 0.8791400 0.9110335
## 4480 0.8540864 0.9010727 0.8791400 0.9110335
## 4481 0.9439160 0.9321055 0.8791400 0.9110335
## 4482 0.8540864 0.9080000 0.8791400 0.9110335
## 4483 0.8540864 0.9321055 0.8791400 0.9110335
## 4484 0.9439160 0.8864504 0.8791400 0.9110335
## 4485 0.8540864 0.9080000 0.8791400 0.9110335
## 4486 0.8540864 0.8148148 0.8791400 0.9110335
## 4487 0.8540864 0.9080000 0.8791400 0.9110335
## 4488 0.8540864 0.8864504 0.8791400 0.9110335
## 4489 0.9439160 0.9321055 0.8791400 0.9110335
## 4490 0.9439160 0.8877722 0.8791400 0.9110335
## 4491 0.9439160 0.9321055 0.8791400 0.9110335
## 4492 0.9439160 0.9321055 0.8874696 0.9110335
## 4493 0.9439160 0.9321055 0.8721351 0.9110335
## 4494 0.8540864 0.8877722 0.8791400 0.9110335
## 4495 0.9439160 0.8864504 0.8791400 0.9110335
## 4496 0.8540864 0.9010727 0.8791400 0.9110335
## 4497 0.9439160 0.9321055 0.8791400 0.9110335
## 4498 0.8540864 0.8877722 0.8791400 0.9110335
## 4499 0.9439160 0.8864504 0.8791400 0.9110335
## 4500 0.8540864 0.9080000 0.8791400 0.9110335
## 4501 0.8540864 0.8148148 0.8791400 0.9110335
## 4502 0.8540864 0.9321055 0.8791400 0.9110335
## 4503 0.9439160 0.9321055 0.8791400 0.9110335
## 4504 0.8540864 0.6137931 0.8791400 0.9110335
## 4505 0.8540864 0.8148148 0.8791400 0.9110335
## 4506 0.8540864 0.9080000 0.8721351 0.9110335
## 4507 0.8540864 0.8148148 0.8791400 0.9110335
## 4508 0.8540864 0.9080000 0.8721351 0.9110335
## 4509 0.8540864 0.9080000 0.8874696 0.9110335
## 4510 0.9439160 0.9321055 0.8791400 0.9110335
## 4511 0.9439160 0.8864504 0.8791400 0.9110335
## 4512 0.8540864 0.9010727 0.8791400 0.9110335
## 4513 0.8540864 0.8148148 0.8791400 0.9110335
## 4514 0.9439160 0.8877722 0.8791400 0.9110335
## 4515 0.9439160 0.8864504 0.8791400 0.9110335
## 4516 0.8540864 0.9080000 0.8791400 0.9110335
## 4517 0.8540864 0.9321055 0.8791400 0.9110335
## 4518 0.9439160 0.9321055 0.8874696 0.9110335
## 4519 0.8540864 0.8148148 0.8791400 0.9110335
## 4520 0.9439160 0.8864504 0.8721351 0.9110335
## 4521 0.9439160 0.9321055 0.8791400 0.9110335
## 4522 0.8540864 0.8877722 0.8791400 0.9110335
## 4523 0.8540864 0.9080000 0.8791400 0.9110335
## 4524 0.8540864 0.9321055 0.8791400 0.9110335
## 4525 0.9439160 0.8864504 0.8791400 0.9110335
## 4526 0.8540864 0.8877722 0.8791400 0.9110335
## 4527 0.8540864 0.9010727 0.8721351 0.9110335
## 4528 0.8540864 0.9010727 0.8791400 0.9110335
## 4529 0.8540864 0.8148148 0.8791400 0.9110335
## 4530 0.8540864 0.9321055 0.8874696 0.9110335
## 4531 0.9439160 0.9321055 0.8791400 0.9110335
## 4532 0.8540864 0.8148148 0.8791400 0.9110335
## 4533 0.9439160 0.9321055 0.8791400 0.9110335
## 4534 0.8540864 0.8864504 0.8791400 0.9110335
## 4535 0.9439160 0.8864504 0.8874696 0.9110335
## 4536 0.8540864 0.9080000 0.8791400 0.9110335
## 4537 0.9439160 0.9321055 0.8791400 0.9110335
## 4538 0.9439160 0.9321055 0.8721351 0.9110335
## 4539 0.9439160 0.8864504 0.8791400 0.9110335
## 4540 0.8540864 0.8877722 0.8791400 0.9110335
## 4541 0.8540864 0.8148148 0.8791400 0.9110335
## 4542 0.8540864 0.9080000 0.8791400 0.9110335
## 4543 0.8540864 0.9321055 0.8721351 0.9110335
## 4544 0.8540864 0.9010727 0.8721351 0.9110335
## 4545 0.8540864 0.9010727 0.8791400 0.9110335
## 4546 0.8540864 0.9321055 0.8721351 0.9110335
## 4547 0.9439160 0.9321055 0.8791400 0.9110335
## 4548 0.8540864 0.8877722 0.8791400 0.9110335
## 4549 0.9439160 0.9321055 0.8791400 0.9110335
## 4550 0.8540864 0.8877722 0.8791400 0.9110335
## 4551 0.8540864 0.9321055 0.8721351 0.9110335
## 4552 0.8540864 0.8877722 0.8791400 0.9110335
## 4553 0.8540864 0.9010727 0.8791400 0.9110335
## 4554 0.8540864 0.9080000 0.8791400 0.9110335
## 4555 0.9439160 0.9321055 0.8791400 0.9110335
## 4556 0.8540864 0.8877722 0.8791400 0.9110335
## 4557 0.8540864 0.8877722 0.8791400 0.9110335
## 4558 0.9439160 0.9321055 0.8791400 0.9110335
## 4559 0.8540864 0.9080000 0.8791400 0.9110335
## 4560 0.9439160 0.8864504 0.8791400 0.9110335
## 4561 0.8540864 0.9321055 0.8791400 0.9110335
## 4562 0.9439160 0.9321055 0.8791400 0.9110335
## 4563 0.8540864 0.8877722 0.8791400 0.9110335
## 4564 0.8540864 0.9010727 0.8791400 0.9110335
## 4565 0.8540864 0.8877722 0.8791400 0.9110335
## 4566 0.8540864 0.5408163 0.8791400 0.9110335
## 4567 0.9439160 0.9080000 0.8791400 0.9110335
## 4568 0.8540864 0.8877722 0.8791400 0.9110335
## 4569 0.9439160 0.9321055 0.8791400 0.9110335
## 4570 0.8540864 0.9010727 0.8791400 0.9110335
## 4571 0.8540864 0.9080000 0.8791400 0.9110335
## 4572 0.8540864 0.9010727 0.8791400 0.9110335
## 4573 0.9439160 0.9321055 0.8791400 0.9110335
## 4574 0.9439160 0.8864504 0.8791400 0.9110335
## 4575 0.8540864 0.8877722 0.8791400 0.9110335
## 4576 0.8540864 0.9010727 0.8791400 0.9110335
## 4577 0.8540864 0.9321055 0.8791400 0.9110335
## 4578 0.9439160 0.8864504 0.8791400 0.9110335
## 4579 0.9439160 0.9321055 0.8791400 0.9110335
## 4580 0.8540864 0.8877722 0.8791400 0.9110335
## 4581 0.8540864 0.8877722 0.8791400 0.9110335
## 4582 0.8540864 0.8877722 0.8791400 0.9110335
## 4583 0.8540864 0.9010727 0.8791400 0.9110335
## 4584 0.8540864 0.9321055 0.8791400 0.9110335
## 4585 0.8540864 0.9080000 0.8791400 0.9110335
## 4586 0.9439160 0.9321055 0.8791400 0.9110335
## 4587 0.8540864 0.9080000 0.8791400 0.9110335
## 4588 0.8540864 0.9321055 0.8791400 0.9110335
## 4589 0.9439160 0.8864504 0.8791400 0.9110335
## 4590 0.8540864 0.9080000 0.8721351 0.9110335
## 4591 0.8540864 0.9080000 0.8791400 0.9110335
## 4592 0.8540864 0.9010727 0.8791400 0.9110335
## 4593 0.9439160 0.9321055 0.8791400 0.9110335
## 4594 0.8540864 0.9010727 0.8791400 0.9110335
## 4595 0.8540864 0.5408163 0.8791400 0.9110335
## 4596 0.9439160 0.9321055 0.8791400 0.9110335
## 4597 0.8540864 0.8877722 0.8791400 0.9110335
## 4598 0.9439160 0.9321055 0.8791400 0.9110335
## 4599 0.9439160 0.8864504 0.8791400 0.9110335
## 4600 0.8540864 0.5408163 0.8791400 0.9110335
## 4601 0.9439160 0.8864504 0.8791400 0.9110335
## 4602 0.8540864 0.8877722 0.8791400 0.9110335
## 4603 0.8540864 0.8877722 0.8791400 0.9110335
## 4604 0.9439160 0.9321055 0.8791400 0.9110335
## 4605 0.8540864 0.8877722 0.8791400 0.9110335
## 4606 0.8540864 0.9080000 0.8791400 0.9110335
## 4607 0.8540864 0.9321055 0.8791400 0.9110335
## 4608 0.8540864 0.8864504 0.8721351 0.9110335
## 4609 0.9439160 0.8864504 0.8791400 0.9110335
## 4610 0.8540864 0.9321055 0.8791400 0.9110335
## 4611 0.9439160 0.8864504 0.8791400 0.9110335
## 4612 0.8540864 0.8877722 0.8791400 0.9110335
## 4613 0.8540864 0.8877722 0.8791400 0.9110335
## 4614 0.9439160 0.9321055 0.8791400 0.9110335
## 4615 0.9439160 0.8864504 0.8791400 0.9110335
## 4616 0.8540864 0.9080000 0.8874696 0.9110335
## 4617 0.8540864 0.9080000 0.8791400 0.9110335
## 4618 0.9439160 0.9321055 0.8791400 0.9110335
## 4619 0.9439160 0.9321055 0.8791400 0.9110335
## 4620 0.8540864 0.8877722 0.8791400 0.9110335
## 4621 0.9439160 0.9321055 0.8791400 0.9110335
## 4622 0.8540864 0.8877722 0.8791400 0.9110335
## 4623 0.8540864 0.8877722 0.8791400 0.9110335
## 4624 0.8540864 0.9010727 0.8791400 0.9110335
## 4625 0.8540864 0.8877722 0.8791400 0.9110335
## 4626 0.8540864 0.8877722 0.8791400 0.9110335
## 4627 0.8540864 0.8877722 0.8791400 0.9110335
## 4628 0.9439160 0.9321055 0.8791400 0.9110335
## 4629 0.8540864 0.9080000 0.8791400 0.9110335
## 4630 0.8540864 0.8877722 0.8791400 0.9110335
## 4631 0.8540864 0.9321055 0.8791400 0.9110335
## 4632 0.9439160 0.9321055 0.8791400 0.9110335
## 4633 0.9439160 0.9321055 0.8791400 0.9110335
## 4634 0.8540864 0.9080000 0.8791400 0.9110335
## 4635 0.9439160 0.9080000 0.8791400 0.9110335
## 4636 0.8540864 0.9010727 0.8791400 0.9110335
## 4637 0.9439160 0.9321055 0.8791400 0.9110335
## 4638 0.8540864 0.9321055 0.8791400 0.9110335
## 4639 0.9439160 0.8864504 0.8791400 0.9110335
## 4640 0.8540864 0.9080000 0.8791400 0.9110335
## 4641 0.8540864 0.9080000 0.8791400 0.9110335
## 4642 0.8540864 0.9010727 0.8791400 0.9110335
## 4643 0.8540864 0.8877722 0.8791400 0.9110335
## 4644 0.8540864 0.9010727 0.8791400 0.9110335
## 4645 0.9439160 0.8877722 0.8791400 0.9110335
## 4646 0.8540864 0.8877722 0.8791400 0.9110335
## 4647 0.8540864 0.9080000 0.8791400 0.9110335
## 4648 0.9439160 0.9321055 0.8791400 0.9110335
## 4649 0.8540864 0.9010727 0.8791400 0.9110335
## 4650 0.8540864 0.9010727 0.8791400 0.9110335
## 4651 0.9439160 0.9010727 0.8791400 0.9110335
## 4652 0.9439160 0.9321055 0.8791400 0.9110335
## 4653 0.8540864 0.8877722 0.8791400 0.9110335
## 4654 0.8540864 0.9321055 0.8721351 0.9110335
## 4655 0.8540864 0.8877722 0.8791400 0.9110335
## 4656 0.9439160 0.9321055 0.8721351 0.9110335
## 4657 0.9439160 0.8864504 0.8791400 0.9110335
## 4658 0.8540864 0.8877722 0.8791400 0.9110335
## 4659 0.9439160 0.9010727 0.8791400 0.9110335
## 4660 0.8540864 0.8877722 0.8791400 0.9110335
## 4661 0.8540864 0.9321055 0.8791400 0.9110335
## 4662 0.8540864 0.8877722 0.8791400 0.9110335
## 4663 0.8540864 0.9321055 0.8791400 0.9110335
## 4664 0.9439160 0.8864504 0.8721351 0.9110335
## 4665 0.8540864 0.9080000 0.8791400 0.9110335
## 4666 0.8540864 0.8877722 0.8791400 0.9110335
## 4667 0.8540864 0.9080000 0.8791400 0.9110335
## 4668 0.9439160 0.8864504 0.8791400 0.9110335
## 4669 0.8540864 0.8877722 0.8791400 0.9110335
## 4670 0.8540864 0.8877722 0.8721351 0.9110335
## 4671 0.8540864 0.8877722 0.8791400 0.9110335
## 4672 0.8540864 0.8877722 0.8791400 0.9110335
## 4673 0.8540864 0.8877722 0.8874696 0.9110335
## 4674 0.9439160 0.9321055 0.8791400 0.9110335
## 4675 0.9439160 0.8864504 0.8791400 0.9110335
## 4676 0.9439160 0.9321055 0.8791400 0.9110335
## 4677 0.8540864 0.9010727 0.8791400 0.9110335
## 4678 0.8540864 0.8877722 0.8721351 0.9110335
## 4679 0.8540864 0.8877722 0.8721351 0.9110335
## 4680 0.8540864 0.9080000 0.8791400 0.9110335
## 4681 0.9439160 0.9321055 0.8791400 0.9110335
## 4682 0.9439160 0.9080000 0.8721351 0.9110335
## 4683 0.8540864 0.8148148 0.8874696 0.9110335
## 4684 0.8540864 0.4949495 0.8791400 0.9110335
## 4685 0.8540864 0.8877722 0.8791400 0.9110335
## 4686 0.8540864 0.8877722 0.8721351 0.9110335
## 4687 0.8540864 0.8148148 0.8721351 0.9110335
## 4688 0.8540864 0.9321055 0.8721351 0.9110335
## 4689 0.9439160 0.9321055 0.8721351 0.9110335
## 4690 0.8540864 0.8877722 0.8791400 0.9110335
## 4691 0.9439160 0.8864504 0.8791400 0.9110335
## 4692 0.9439160 0.9321055 0.8791400 0.9110335
## 4693 0.8540864 0.9080000 0.8791400 0.9110335
## 4694 0.8540864 0.8877722 0.8874696 0.9110335
## 4695 0.9439160 0.9321055 0.8721351 0.9110335
## 4696 0.8540864 0.9080000 0.8791400 0.9110335
## 4697 0.8540864 0.9010727 0.8791400 0.9110335
## 4698 0.9439160 0.9321055 0.8791400 0.9110335
## 4699 0.8540864 0.9080000 0.8791400 0.9110335
## 4700 0.9439160 0.8864504 0.8791400 0.9110335
## 4701 0.8540864 0.8877722 0.8791400 0.9110335
## 4702 0.9439160 0.8864504 0.8791400 0.9110335
## 4703 0.9439160 0.8864504 0.8721351 0.9110335
## 4704 0.8540864 0.9080000 0.8791400 0.9110335
## 4705 0.8540864 0.8877722 0.8791400 0.9110335
## 4706 0.8540864 0.8877722 0.8721351 0.9110335
## 4707 0.8540864 0.9080000 0.8791400 0.9110335
## 4708 0.8540864 0.9080000 0.8791400 0.9110335
## 4709 0.8540864 0.8148148 0.8721351 0.9110335
## 4710 0.8540864 0.9080000 0.8721351 0.9110335
## 4711 0.9439160 0.8864504 0.8791400 0.9110335
## 4712 0.8540864 0.8877722 0.8721351 0.9110335
## 4713 0.8540864 0.9321055 0.8791400 0.9110335
## 4714 0.9439160 0.9080000 0.8791400 0.9110335
## 4715 0.8540864 0.9080000 0.8791400 0.9110335
## 4716 0.8540864 0.9010727 0.8721351 0.9110335
## 4717 0.8540864 0.9080000 0.8791400 0.9110335
## 4718 0.8540864 0.9080000 0.8721351 0.9110335
## 4719 0.9439160 0.9321055 0.8721351 0.9110335
## 4720 0.8540864 0.8877722 0.8721351 0.9110335
## 4721 0.9439160 0.9080000 0.8791400 0.9110335
## 4722 0.8540864 0.9080000 0.8721351 0.9110335
## 4723 0.8540864 0.8877722 0.8721351 0.9110335
## 4724 0.8540864 0.9080000 0.8791400 0.9110335
## 4725 0.8540864 0.8877722 0.8721351 0.9110335
## 4726 0.8540864 0.9080000 0.8791400 0.9110335
## 4727 0.8540864 0.9080000 0.8791400 0.9110335
## 4728 0.8540864 0.8877722 0.8721351 0.9110335
## 4729 0.8540864 0.9080000 0.8791400 0.9110335
## 4730 0.8540864 0.9080000 0.8791400 0.9110335
## 4731 0.8540864 0.4949495 0.8721351 0.9110335
## 4732 0.8540864 0.9080000 0.8791400 0.9110335
## 4733 0.8540864 0.9321055 0.8721351 0.9110335
## 4734 0.8540864 0.8877722 0.8791400 0.9110335
## 4735 0.9439160 0.8864504 0.8721351 0.9110335
## 4736 0.8540864 0.9080000 0.8791400 0.9110335
## 4737 0.8540864 0.9080000 0.8874696 0.9110335
## 4738 0.9439160 0.9321055 0.8791400 0.9110335
## 4739 0.8540864 0.9080000 0.8791400 0.9110335
## 4740 0.8540864 0.8877722 0.8791400 0.9110335
## 4741 0.8540864 0.8877722 0.8791400 0.9110335
## 4742 0.8540864 0.9321055 0.8791400 0.9110335
## 4743 0.8540864 0.9080000 0.8791400 0.9110335
## 4744 0.9439160 0.8864504 0.8791400 0.9110335
## 4745 0.8540864 0.8877722 0.8721351 0.9110335
## 4746 0.8540864 0.9010727 0.8721351 0.9110335
## 4747 0.8540864 0.9080000 0.8791400 0.9110335
## 4748 0.8540864 0.9080000 0.8791400 0.9110335
## 4749 0.8540864 0.9080000 0.8721351 0.9110335
## 4750 0.9439160 0.9321055 0.8721351 0.9110335
## 4751 0.9439160 0.4949495 0.8791400 0.9110335
## 4752 0.8540864 0.8877722 0.8721351 0.9110335
## 4753 0.8540864 0.8877722 0.8791400 0.9110335
## 4754 0.8540864 0.4949495 0.8791400 0.9110335
## 4755 0.8540864 0.8877722 0.8791400 0.9110335
## 4756 0.8540864 0.8877722 0.8791400 0.9110335
## 4757 0.9439160 0.9321055 0.8791400 0.9110335
## 4758 0.9439160 0.9321055 0.8791400 0.9110335
## 4759 0.8540864 0.9080000 0.8791400 0.9110335
## 4760 0.9439160 0.9080000 0.8791400 0.9110335
## 4761 0.8540864 0.8877722 0.8791400 0.9110335
## 4762 0.9439160 0.8864504 0.8721351 0.9110335
## 4763 0.8540864 0.8877722 0.8791400 0.9110335
## 4764 0.8540864 0.8877722 0.8791400 0.9110335
## 4765 0.8540864 0.9080000 0.8791400 0.9110335
## 4766 0.8540864 0.9080000 0.8721351 0.9110335
## 4767 0.9439160 0.8864504 0.8791400 0.9110335
## 4768 0.8540864 0.9010727 0.8791400 0.9110335
## 4769 0.8540864 0.9080000 0.8721351 0.9110335
## 4770 0.8540864 0.8877722 0.8791400 0.9110335
## 4771 0.9439160 0.8864504 0.8721351 0.9110335
## 4772 0.9439160 0.9080000 0.8791400 0.9110335
## 4773 0.9439160 0.9321055 0.8721351 0.9110335
## 4774 0.8540864 0.9010727 0.8791400 0.9110335
## 4775 0.9439160 0.8864504 0.8874696 0.9110335
## 4776 0.8540864 0.9080000 0.8791400 0.9110335
## 4777 0.8540864 0.8877722 0.8721351 0.9110335
## 4778 0.8540864 0.9321055 0.8791400 0.9110335
## 4779 0.8540864 0.9080000 0.8791400 0.9110335
## 4780 0.8540864 0.8877722 0.8791400 0.9110335
## 4781 0.8540864 0.8877722 0.8791400 0.9110335
## 4782 0.9439160 0.9321055 0.8721351 0.9110335
## 4783 0.9439160 0.9321055 0.8791400 0.9110335
## 4784 0.8540864 0.8877722 0.8791400 0.9110335
## 4785 0.9439160 0.8864504 0.8721351 0.9110335
## 4786 0.8540864 0.8877722 0.8791400 0.9110335
## 4787 0.8540864 0.9321055 0.8791400 0.9110335
## 4788 0.8540864 0.9321055 0.8721351 0.9110335
## 4789 0.9439160 0.9080000 0.8721351 0.9110335
## 4790 0.8540864 0.9321055 0.8791400 0.9110335
## 4791 0.9439160 0.8864504 0.8791400 0.9110335
## 4792 0.8540864 0.9080000 0.8791400 0.9110335
## 4793 0.8540864 0.9080000 0.8721351 0.9110335
## 4794 0.9439160 0.9080000 0.8791400 0.9110335
## 4795 0.8540864 0.8877722 0.8791400 0.9110335
## 4796 0.9439160 0.8864504 0.8721351 0.9110335
## 4797 0.9439160 0.9321055 0.8721351 0.9110335
## 4798 0.8540864 0.9080000 0.8791400 0.9110335
## 4799 0.9439160 0.9321055 0.8791400 0.9110335
## 4800 0.8540864 0.9010727 0.8791400 0.9110335
## 4801 0.9439160 0.9080000 0.8791400 0.9110335
## 4802 0.8540864 0.9080000 0.8721351 0.9110335
## 4803 0.8540864 0.9321055 0.8791400 0.9110335
## 4804 0.9439160 0.8877722 0.8721351 0.9110335
## 4805 0.9439160 0.9080000 0.8791400 0.9110335
## 4806 0.8540864 0.9080000 0.8791400 0.9110335
## 4807 0.8540864 0.9010727 0.8791400 0.9110335
## 4808 0.9439160 0.9080000 0.8791400 0.9110335
## 4809 0.8540864 0.9321055 0.8721351 0.9110335
## 4810 0.8540864 0.8877722 0.8791400 0.9110335
## 4811 0.9439160 0.9080000 0.8791400 0.9110335
## 4812 0.9439160 0.9080000 0.8721351 0.9110335
## 4813 0.9439160 0.8864504 0.8791400 0.9110335
## 4814 0.8540864 0.9080000 0.8791400 0.9110335
## 4815 0.8540864 0.9080000 0.8791400 0.9110335
## 4816 0.9439160 0.9080000 0.8721351 0.9110335
## 4817 0.9439160 0.9321055 0.8791400 0.9110335
## 4818 0.8540864 0.8877722 0.8791400 0.9110335
## 4819 0.8540864 0.8877722 0.8874696 0.9110335
## 4820 0.8540864 0.9010727 0.8791400 0.9110335
## 4821 0.9439160 0.9321055 0.8721351 0.9110335
## 4822 0.8540864 0.8877722 0.8721351 0.9110335
## 4823 0.8540864 0.9080000 0.8791400 0.9110335
## 4824 0.9439160 0.8864504 0.8791400 0.9110335
## 4825 0.8540864 0.9080000 0.8721351 0.9110335
## 4826 0.9439160 0.9321055 0.8791400 0.9110335
## 4827 0.8540864 0.9080000 0.8791400 0.9110335
## 4828 0.8540864 0.8877722 0.8874696 0.9110335
## 4829 0.8540864 0.8877722 0.8791400 0.9110335
## 4830 0.9439160 0.9321055 0.8791400 0.9110335
## 4831 0.8540864 0.8877722 0.8721351 0.9110335
## 4832 0.8540864 0.8877722 0.8721351 0.9110335
## 4833 0.8540864 0.5408163 0.8874696 0.9110335
## 4834 0.9439160 0.9321055 0.8791400 0.9110335
## 4835 0.8540864 0.9321055 0.8721351 0.9110335
## 4836 0.8540864 0.9080000 0.8791400 0.9110335
## 4837 0.8540864 0.9080000 0.8791400 0.9110335
## 4838 0.8540864 0.9080000 0.8791400 0.9110335
## 4839 0.8540864 0.9321055 0.8791400 0.9110335
## 4840 0.8540864 0.9010727 0.8791400 0.9110335
## 4841 0.8540864 0.9080000 0.8721351 0.9110335
## 4842 0.8540864 0.9080000 0.8791400 0.9110335
## 4843 0.9439160 0.9321055 0.8791400 0.9110335
## 4844 0.8540864 0.9080000 0.8721351 0.9110335
## 4845 0.8540864 0.8877722 0.8721351 0.9110335
## 4846 0.8540864 0.8877722 0.8791400 0.9110335
## 4847 0.9439160 0.9321055 0.8791400 0.9110335
## 4848 0.9439160 0.9321055 0.8791400 0.9110335
## 4849 0.8540864 0.9010727 0.8791400 0.9110335
## 4850 0.8540864 0.9080000 0.8791400 0.9110335
## 4851 0.8540864 0.9080000 0.8791400 0.9110335
## 4852 0.8540864 0.9010727 0.8791400 0.9110335
## 4853 0.8540864 0.9321055 0.8791400 0.9110335
## 4854 0.8540864 0.8877722 0.8721351 0.9110335
## 4855 0.8540864 0.8877722 0.8791400 0.9110335
## 4856 0.8540864 0.9080000 0.8721351 0.9110335
## 4857 0.8540864 0.8877722 0.8721351 0.9110335
## 4858 0.8540864 0.9080000 0.8791400 0.9110335
## 4859 0.8540864 0.9010727 0.8721351 0.9110335
## 4860 0.9439160 0.9321055 0.8791400 0.9110335
## 4861 0.9439160 0.9321055 0.8721351 0.9110335
## 4862 0.8540864 0.9080000 0.8721351 0.9110335
## 4863 0.9439160 0.9321055 0.8791400 0.9110335
## 4864 0.8540864 0.9010727 0.8721351 0.9110335
## 4865 0.8540864 0.9080000 0.8791400 0.9110335
## 4866 0.8540864 0.8877722 0.8721351 0.9110335
## 4867 0.9439160 0.9321055 0.8721351 0.9110335
## 4868 0.8540864 0.9010727 0.8791400 0.9110335
## 4869 0.9439160 0.8864504 0.8791400 0.9110335
## 4870 0.8540864 0.8877722 0.8791400 0.9110335
## 4871 0.8540864 0.9321055 0.8791400 0.9110335
## 4872 0.8540864 0.9080000 0.8791400 0.9110335
## 4873 0.8540864 0.9321055 0.8721351 0.9110335
## 4874 0.9439160 0.9321055 0.8721351 0.9110335
## 4875 0.9439160 0.8864504 0.8721351 0.9110335
## 4876 0.9439160 0.9321055 0.8791400 0.9110335
## 4877 0.8540864 0.9080000 0.8791400 0.9110335
## 4878 0.8540864 0.9080000 0.8721351 0.9110335
## 4879 0.8540864 0.8877722 0.8721351 0.9110335
## 4880 0.8540864 0.9080000 0.8721351 0.9110335
## 4881 0.8540864 0.8877722 0.8791400 0.9110335
## 4882 0.8540864 0.8877722 0.8791400 0.9110335
## 4883 0.8540864 0.9010727 0.8791400 0.9110335
## 4884 0.8540864 0.8877722 0.8791400 0.9110335
## 4885 0.8540864 0.9080000 0.8721351 0.9110335
## 4886 0.8540864 0.8864504 0.8721351 0.9110335
## 4887 0.8540864 0.9321055 0.8721351 0.9110335
## 4888 0.9439160 0.9321055 0.8791400 0.9110335
## 4889 0.8540864 0.9080000 0.8721351 0.9110335
## 4890 0.8540864 0.8877722 0.8791400 0.9110335
## 4891 0.9439160 0.9321055 0.8791400 0.9110335
## 4892 0.8540864 0.9321055 0.8791400 0.9110335
## 4893 0.8540864 0.9080000 0.8791400 0.9110335
## 4894 0.8540864 0.8877722 0.8791400 0.9110335
## 4895 0.9439160 0.8864504 0.8791400 0.9110335
## 4896 0.8540864 0.9080000 0.8721351 0.9110335
## 4897 0.9439160 0.9080000 0.8721351 0.9110335
## 4898 0.8540864 0.8877722 0.8791400 0.9110335
## 4899 0.8540864 0.9010727 0.8874696 0.9110335
## 4900 0.9439160 0.8864504 0.8791400 0.9110335
## 4901 0.8540864 0.9321055 0.8791400 0.9110335
## 4902 0.8540864 0.9321055 0.8791400 0.9110335
## 4903 0.9439160 0.9080000 0.8791400 0.9110335
## 4904 0.9439160 0.8864504 0.8791400 0.9110335
## 4905 0.8540864 0.8877722 0.8791400 0.9110335
## 4906 0.8540864 0.9080000 0.8791400 0.9110335
## 4907 0.9439160 0.9321055 0.8721351 0.9110335
## 4908 0.8540864 0.8877722 0.8791400 0.9110335
## 4909 0.9439160 0.8864504 0.8721351 0.9110335
## 4910 0.8540864 0.9080000 0.8791400 0.9110335
## 4911 0.8540864 0.8877722 0.8721351 0.9110335
## 4912 0.8540864 0.9010727 0.8791400 0.9110335
## 4913 0.9439160 0.8864504 0.8721351 0.9110335
## 4914 0.9439160 0.8148148 0.8721351 0.9110335
## 4915 0.9439160 0.9321055 0.8791400 0.9110335
## 4916 0.8540864 0.9321055 0.8791400 0.9110335
## 4917 0.9439160 0.9321055 0.8791400 0.9110335
## 4918 0.8540864 0.9321055 0.8791400 0.9110335
## 4919 0.9439160 0.9321055 0.8791400 0.9110335
## 4920 0.8540864 0.9080000 0.8791400 0.9110335
## 4921 0.8540864 0.9080000 0.8791400 0.9110335
## 4922 0.8540864 0.9010727 0.8791400 0.9110335
## 4923 0.9439160 0.9321055 0.8791400 0.9110335
## 4924 0.8540864 0.9080000 0.8791400 0.9110335
## 4925 0.8540864 0.9080000 0.8791400 0.9110335
## 4926 0.9439160 0.8864504 0.8791400 0.9110335
## 4927 0.9439160 0.9321055 0.8721351 0.9110335
## 4928 0.8540864 0.8877722 0.8791400 0.9110335
## 4929 0.8540864 0.9010727 0.8791400 0.9110335
## 4930 0.8540864 0.8877722 0.8791400 0.9110335
## 4931 0.9439160 0.9321055 0.8791400 0.9110335
## 4932 0.9439160 0.8864504 0.8791400 0.9110335
## 4933 0.8540864 0.9080000 0.8721351 0.9110335
## 4934 0.8540864 0.8877722 0.8721351 0.9110335
## 4935 0.8540864 0.9080000 0.8721351 0.9110335
## 4936 0.9439160 0.9321055 0.8721351 0.9110335
## 4937 0.8540864 0.8877722 0.8721351 0.9110335
## 4938 0.9439160 0.9321055 0.8721351 0.9110335
## 4939 0.8540864 0.4949495 0.8791400 0.9110335
## 4940 0.9439160 0.8864504 0.8791400 0.9110335
## 4941 0.8540864 0.9080000 0.8791400 0.9110335
## 4942 0.8540864 0.9321055 0.8791400 0.9110335
## 4943 0.8540864 0.8877722 0.8791400 0.9110335
## 4944 0.8540864 0.9080000 0.8791400 0.9110335
## 4945 0.9439160 0.8864504 0.8721351 0.9110335
## 4946 0.8540864 0.9080000 0.8791400 0.9110335
## 4947 0.8540864 0.9080000 0.8721351 0.9110335
## 4948 0.9439160 0.9321055 0.8791400 0.9110335
## 4949 0.9439160 0.8864504 0.8721351 0.9110335
## 4950 0.9439160 0.8864504 0.8791400 0.9110335
## 4951 0.8540864 0.8877722 0.8791400 0.9110335
## 4952 0.8540864 0.8148148 0.8721351 0.9110335
## 4953 0.8540864 0.9080000 0.8721351 0.9110335
## 4954 0.8540864 0.8877722 0.8791400 0.9110335
## 4955 0.8540864 0.9080000 0.8791400 0.9110335
## 4956 0.8540864 0.9010727 0.8721351 0.9110335
## 4957 0.8540864 0.9080000 0.8721351 0.9110335
## 4958 0.9439160 0.8864504 0.8791400 0.9110335
## 4959 0.8540864 0.9321055 0.8721351 0.9110335
## 4960 0.8540864 0.9321055 0.8721351 0.9110335
## 4961 0.8540864 0.9010727 0.8721351 0.9110335
## 4962 0.8540864 0.9080000 0.8791400 0.9110335
## 4963 0.9439160 0.8864504 0.8791400 0.9110335
## 4964 0.9439160 0.9321055 0.8721351 0.9110335
## 4965 0.8540864 0.8877722 0.8791400 0.9110335
## 4966 0.9439160 0.9321055 0.8874696 0.9110335
## 4967 0.9439160 0.9321055 0.8791400 0.9110335
## 4968 0.9439160 0.9321055 0.8721351 0.9110335
## 4969 0.9439160 0.9321055 0.8791400 0.9110335
## 4970 0.8540864 0.9080000 0.8791400 0.9110335
## 4971 0.9439160 0.8864504 0.8874696 0.9110335
## 4972 0.8540864 0.8864504 0.8721351 0.9110335
## 4973 0.9439160 0.9321055 0.8721351 0.9110335
## 4974 0.8540864 0.9080000 0.8791400 0.9110335
## 4975 0.9439160 0.9080000 0.8791400 0.9110335
## 4976 0.9439160 0.9010727 0.8791400 0.9110335
## 4977 0.8540864 0.4949495 0.8721351 0.9110335
## 4978 0.8540864 0.9080000 0.8721351 0.9110335
## 4979 0.9439160 0.8864504 0.8721351 0.9110335
## 4980 0.9439160 0.8864504 0.8791400 0.9110335
## 4981 0.8540864 0.8877722 0.8791400 0.9110335
## 4982 0.8540864 0.9321055 0.8721351 0.9110335
## 4983 0.9439160 0.9321055 0.8791400 0.9110335
## 4984 0.8540864 0.8864504 0.8721351 0.9110335
## 4985 0.9439160 0.9321055 0.8721351 0.9110335
## 4986 0.8540864 0.9321055 0.8791400 0.9110335
## 4987 0.8540864 0.9010727 0.8791400 0.9110335
## 4988 0.8540864 0.9321055 0.8721351 0.9110335
## 4989 0.9439160 0.9080000 0.8791400 0.9110335
## 4990 0.8540864 0.9321055 0.8874696 0.9110335
## 4991 0.8540864 0.9080000 0.8721351 0.9110335
## 4992 0.9439160 0.9080000 0.8791400 0.9110335
## 4993 0.9439160 0.8864504 0.8721351 0.9110335
## 4994 0.9439160 0.8864504 0.8721351 0.9110335
## 4995 0.9439160 0.9321055 0.8721351 0.9110335
## 4996 0.8540864 0.9080000 0.8721351 0.9110335
## 4997 0.8540864 0.9321055 0.8791400 0.9110335
## 4998 0.9439160 0.8864504 0.8721351 0.9110335
## 4999 0.9439160 0.9080000 0.8791400 0.9110335
## [ reached 'max' / getOption("max.print") -- omitted 3238 rows ]
logistic_model <- glm(y ~ ., data = train_data, family = "binomial")
logistic_preds <- predict(logistic_model, test_data, type = "response")
logistic_preds_class <- ifelse(logistic_preds > 0.5, "yes", "no")
test_data$y <- factor(test_data$y, levels = c("yes", "no"))
logistic_preds_class <- factor(logistic_preds_class, levels = levels(test_data$y))
conf_matrix <- table(Predicted = logistic_preds_class, Actual = test_data$y)
logistic_accuracy <- sum(diag(conf_matrix)) / sum(conf_matrix)
print("Confusion Matrix:")
## [1] "Confusion Matrix:"
print(conf_matrix)
## Actual
## Predicted yes no
## yes 379 199
## no 549 7110
print(paste("Accuracy:", round(logistic_accuracy, 4)))
## [1] "Accuracy: 0.9092"
rf_model <- randomForest(y ~ ., data = train_data, ntree = 100)
rf_preds <- predict(rf_model, test_data)
test_data$y <- factor(test_data$y, levels = c("yes", "no"))
rf_preds <- factor(rf_preds, levels = levels(test_data$y))
conf_matrix <- table(Predicted = rf_preds, Actual = test_data$y)
rf_accuracy <- sum(diag(conf_matrix)) / sum(conf_matrix)
print("Confusion Matrix:")
## [1] "Confusion Matrix:"
print(conf_matrix)
## Actual
## Predicted yes no
## yes 358 183
## no 570 7126
print(paste("Accuracy:", round(rf_accuracy, 4)))
## [1] "Accuracy: 0.9086"
svm_model <- svm(y ~ ., data = train_data, kernel = "linear")
svm_preds <- predict(svm_model, test_data)
test_data$y <- factor(test_data$y, levels = c("yes", "no"))
svm_preds <- factor(svm_preds, levels = levels(test_data$y))
conf_matrix <- table(Predicted = svm_preds, Actual = test_data$y)
svm_accuracy <- sum(diag(conf_matrix)) / sum(conf_matrix)
print("Confusion Matrix:")
## [1] "Confusion Matrix:"
print(conf_matrix)
## Actual
## Predicted yes no
## yes 280 136
## no 648 7173
print(paste("Accuracy:", round(svm_accuracy, 4)))
## [1] "Accuracy: 0.9048"
logistic_preds <- predict(logistic_model, test_data, type = "response")
svm_preds <- predict(svm_model, test_data, type = "response")
if (is.factor(svm_preds)) {
svm_preds <- as.numeric(as.character(svm_preds))
}
## Warning: NAs introduced by coercion
svm_preds[is.na(svm_preds)] <- 0.5
rf_preds <- predict(rf_model, test_data, type = "prob")[, 2]
logistic_preds_class <- ifelse(logistic_preds > 0.5, "yes", "no")
svm_preds_class <- ifelse(svm_preds > 0.5, "yes", "no")
rf_preds_class <- ifelse(rf_preds > 0.5, "yes", "no")
logistic_numeric <- as.numeric(logistic_preds_class == "yes")
svm_numeric <- as.numeric(svm_preds_class == "yes")
rf_numeric <- as.numeric(rf_preds_class == "yes")
stacking_data <- data.frame(
logistic = logistic_numeric,
random_forest = rf_numeric,
svm = svm_numeric,
y = as.numeric(test_data$y == "yes")
)
stacking_data[is.na(stacking_data)] <- 0
set.seed(123)
stacking_idx <- createDataPartition(stacking_data$y, p = 0.8, list = FALSE)
train_stacking <- stacking_data[stacking_idx, ]
test_stacking <- stacking_data[-stacking_idx, ]
stacking_model <- glm(y ~ ., data = train_stacking, family = "binomial")
stacking_preds <- predict(stacking_model, test_stacking, type = "response")
stacking_preds_class <- ifelse(stacking_preds > 0.5, 1, 0)
conf_matrix <- table(Predicted = stacking_preds_class, Actual = test_stacking$y)
stacking_accuracy <- sum(diag(conf_matrix)) / sum(conf_matrix)
print("Confusion Matrix:")
## [1] "Confusion Matrix:"
print(conf_matrix)
## Actual
## Predicted 0 1
## 0 1456 124
## 1 25 42
print(paste("Accuracy:", round(stacking_accuracy, 4)))
## [1] "Accuracy: 0.9095"
library(ggplot2)
model_accuracies <- data.frame(
Model = c("Logistic Regression", "Random Forest", "SVM", "Stacking Ensemble"),
Accuracy = c(
logistic_accuracy,
rf_accuracy,
svm_accuracy,
stacking_accuracy
)
)
model_accuracies$Index <- 1:nrow(model_accuracies)
p <- ggplot(model_accuracies, aes(x = Index, y = Accuracy, group = 1)) +
geom_line(color = "blue", size = 1) +
geom_point(size = 3, color = "red") +
geom_text(aes(label = round(Accuracy, 4)), vjust = -1, size = 4) +
scale_x_continuous(
breaks = model_accuracies$Index,
labels = model_accuracies$Model
) +
coord_cartesian(ylim = c(min(model_accuracies$Accuracy) - 0.01, max(model_accuracies$Accuracy) + 0.01)) +
theme_minimal(base_size = 10) +
labs(
title = "Model Accuracy Comparison Curve",
x = "Models",
y = "Accuracy"
) +
theme(
axis.text.x = element_text(angle = 45, hjust = 1),
plot.title = element_text(size = 12, face = "bold")
)
## Warning: Using `size` aesthetic for lines was deprecated in ggplot2 3.4.0.
## ℹ Please use `linewidth` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
print(p)

ggsave("model_accuracy_comparison.png", plot = p, width = 6, height = 4, dpi = 150)